summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tableconversion.py93
-rw-r--r--wireviz/Choppy Wiring Tables.zipbin0 -> 8311 bytes
-rw-r--r--wireviz/Choppy_ECU_12FB.csv66
-rw-r--r--wireviz/Choppy_ECU_12FB.gv14
-rw-r--r--wireviz/Choppy_ECU_12FB.html2339
-rw-r--r--wireviz/Choppy_ECU_12FB.pngbin2188867 -> 2001077 bytes
-rw-r--r--wireviz/Choppy_ECU_12FB.svg2339
-rw-r--r--wireviz/Choppy_ECU_12FB.yml11
-rw-r--r--wireviz/Choppy_ECU_C1.bom.tsv4
-rw-r--r--wireviz/Choppy_ECU_C1.csv58
-rw-r--r--wireviz/Choppy_ECU_C1.gv179
-rw-r--r--wireviz/Choppy_ECU_C1.html2245
-rw-r--r--wireviz/Choppy_ECU_C1.pngbin1959273 -> 2081380 bytes
-rw-r--r--wireviz/Choppy_ECU_C1.svg2239
-rw-r--r--wireviz/Choppy_ECU_C1.yml26
-rw-r--r--wireviz/Choppy_ECU_C2.csv26
-rw-r--r--wireviz/Choppy_IB_1X.bom.tsv97
-rw-r--r--wireviz/Choppy_IB_1X.csv82
-rw-r--r--wireviz/Choppy_IB_1X.gv597
-rw-r--r--wireviz/Choppy_IB_1X.html4010
-rw-r--r--wireviz/Choppy_IB_1X.pngbin2498532 -> 1998929 bytes
-rw-r--r--wireviz/Choppy_IB_1X.svg3908
-rw-r--r--wireviz/Choppy_IB_1X.yml147
-rw-r--r--wireviz/Choppy_IB_CEX.csv143
-rw-r--r--wireviz/Choppy_IB_CEX.yml17
-rw-r--r--wireviz/Choppy_IB_PPS_J1.csv15
-rw-r--r--wireviz/Choppy_IB_PPS_J1.yml4
-rw-r--r--wireviz/Choppy_IB_PPS_main.csv36
-rw-r--r--wireviz/Choppy_IB_VPX_J10.csv28
-rw-r--r--wireviz/Choppy_IB_VPX_J10.yml2
-rw-r--r--wireviz/Choppy_IB_VPX_J12.csv30
-rw-r--r--wireviz/Choppy_IB_VPX_J8.csv21
-rw-r--r--wireviz/Choppy_IB_VPX_J8.yml8
33 files changed, 8511 insertions, 10273 deletions
diff --git a/tableconversion.py b/tableconversion.py
index 71b56a5..a9f436d 100644
--- a/tableconversion.py
+++ b/tableconversion.py
@@ -23,6 +23,11 @@ def parse_wireviz_yml(file_path):
connectorwpin = str(connection[1])
connector = connectorwpin[2:connectorwpin.find("':")]
connectorwires = str(connection[0])
+ elif(len(connection)==4):
+ connectorwpin = str(connection[3])
+ connector = connectorwpin[2:connectorwpin.find("':")].strip("'")
+ connectorwires = str(connection[2])
+
#currently skipping all abnormal conditions
if connectorlist.count(connector) < 1:
continue
@@ -35,14 +40,25 @@ def parse_wireviz_yml(file_path):
connectorpinsadjusted.append(x)
else:
connectorpinsadjusted.append(pins)
+ #connectorpinsadjusted= list(map(int,connectorpinsadjusted))
bundle = connectorwires[2:connectorwires.find("':")]
bundlewires = connectorwires[connectorwires.find(" [")+2:connectorwires.rfind("]}")].split(",")
+ # print(bundlewires)
+ # bundlewiresadjusted = []
+ # for wire in bundlewires:
+ # if str(wire).count("-") > 0:
+ # wirerange = wire.strip("' ").split("-")
+ # for x in range(int(wirerange[0]),int(wirerange[1])+1):
+ # bundlewiresadjusted.append(x)
+ # else:
+ # bundlewiresadjusted.append(wire)
+ # print(bundlewiresadjusted)
connector2pinsadjusted = []
-
- if len(connection) > 2:
+ if len(connection) == 3:
connector2wpin = str(connection[2])
connector2 = connector2wpin[2:connector2wpin.find("':")]
+ print(connector2)
connector2pins = connector2wpin[connector2wpin.find(" [")+2:connector2wpin.rfind("]}")].split(",")
for pins in connector2pins:
idcount=idcount+1
@@ -60,65 +76,108 @@ def parse_wireviz_yml(file_path):
else:
connector2pinsadjusted = connector2pins
for x in range(0,len(connectorpinsadjusted)):
- ident = str(ord(connector[0]))[:1]+str(ord(str(connectorpinsadjusted[x])[-1]))[-1]+str(ord(str(connector2pinsadjusted[x])[-1]))[-1]+str(ord(wires[bundle]['colors'][x][0]))+str(idcount)[-1]
- ident = ident.strip(" ")
pin1 = connectorpinsadjusted[x]
+ con1type = "Unspecified"
pin2 = connector2pinsadjusted[x]
+ con2type = "Unspecified"
notes = ""
- if str(connectors[connector]).count("'pinlabels':"):
+ if str(connectors[connector.strip("'")]).count("'pinlabels':"):
stringarray = list(map(str,connectors[connector]['pinlabels']))
- if stringarray.count(connectorpinsadjusted[x][1:-1]):
+ if stringarray.count(str(connectorpinsadjusted[x])[1:-1]):
pin1= connectors[connector]['pins'][stringarray.index(connectorpinsadjusted[x][1:-1])]
- if str(connectors[connector2.strip("'")]).count("'pinlabels':")and not(str(connector2pinsadjusted[x]).isnumeric()):
- stringarray = list(map(str,connectors[connector2]['pinlabels']))
- print(connector2pinsadjusted)
- if stringarray.count(connector2pinsadjusted[x].strip(" ")[1:-1]):
- pin2= connectors[connector2]['pins'][stringarray.index(connector2pinsadjusted[x].strip(" ")[1:-1])]
+ if str(connectors[connector]).count("'type':"):
+ con1type = connectors[connector]['type']
+ if not connectorlist.count(connector2) < 1:
+ if str(connectors[connector2.strip("'")]).count("'pinlabels':")and not(str(connector2pinsadjusted[x]).isnumeric()):
+ stringarray = list(map(str,connectors[connector2]['pinlabels']))
+ if stringarray.count(connector2pinsadjusted[x].strip(" ")[1:-1]):
+ pin2= connectors[connector2]['pins'][stringarray.index(connector2pinsadjusted[x].strip(" ")[1:-1])]
+ if str(connectors[connector2.strip("'")]).count("'type':"):
+ con2type = connectors[connector2.strip("'")]['type']
if str(wires[bundle]).find("'notes':") > 0:
notes = wires[bundle]['notes']
+ ident = str(ord(connector[0]))[0]+str(ord(str(pin1)[-1]))[-1]+str(ord(str(pin2)[-1]))[-1]+str(ord(wires[bundle]['colors'][x][0]))+str(idcount)[-1]
+ ident = ident.strip(" ")
wire_info.append({
'Identifier': ident,
'End 1': connector,
+ 'Type 1': con1type,
'Pin 1': pin1,
'Length': wires[bundle]['length'],
'Color': wires[bundle]['colors'][x],
'Gauge': wires[bundle]['gauge'],
'End 2': connector2,
+ 'Type 2': con2type,
'Pin 2': pin2,
'Notes': notes,
})
- else:
+ elif len(connection) == 2:
idcount=idcount+1
for x in range(0,len(connectorpinsadjusted)):
- ident = str(ord(connector[0]))[:1]+str(ord(str(connectorpinsadjusted[x])[-1]))[-1]+"0"+str(ord(wires[bundle]['colors'][x][0]))+str(idcount)[-1]
- ident = ident.strip(" ")
+ pin1 = connectorpinsadjusted[x]
+ con1type = "Unspecified"
notes = ""
- if str(connectors[connector]).count("'pinlabels':"):
+ if str(connectors[connector]).count("'pinlabels':") and not str(connectors[connector]['pins']).count(str(pin1)):
stringarray = list(map(str,connectors[connector]['pinlabels']))
if stringarray.count(connectorpinsadjusted[x][1:-1]):
pin1= connectors[connector]['pins'][stringarray.index(connectorpinsadjusted[x][1:-1])]
+ if str(connectors[connector]).count("'type':"):
+ con1type = connectors[connector]['type']
if str(wires[bundle]).find("'notes':") > 0:
notes = wires[bundle]['notes']
+ ident = str(ord(connector[0]))[0]+str(ord(str(pin1)[-1]))[-1]+"0"+str(ord(wires[bundle]['colors'][x][0]))+str(idcount)[-1]
+ ident = ident.strip(" ")
wire_info.append({
'Identifier': ident,
'End 1': connector,
+ 'Type 1': con1type,
'Pin 1': connectorpinsadjusted[x],
'Length': wires[bundle]['length'],
'Color': wires[bundle]['colors'][x],
'Gauge': wires[bundle]['gauge'],
'End 2': "----",
+ 'Type 2': "----",
'Pin 2': "----",
'Notes': notes,
})
+ elif len(connection) == 4:
+ idcount=idcount+1
+ for x in range(0,len(connectorpinsadjusted)):
+ pin1 = connectorpinsadjusted[x]
+ con1type = "Unspecified"
+ notes = ""
+ if str(connectors[connector]).count("'pinlabels':"):
+ stringarray = list(map(str,connectors[connector]['pinlabels']))
+ if stringarray.count(str(connectorpinsadjusted[x])[1:-1]):
+ pin1= connectors[connector]['pins'][stringarray.index(connectorpinsadjusted[x][1:-1])]
+ if str(connectors[connector]).count("'type':"):
+ con1type = connectors[connector]['type']
+ if str(wires[bundle]).find("'notes':") > 0:
+ notes = wires[bundle]['notes']
+ ident = str(ord(connector[0]))[0]+str(ord(str(pin1)[-1]))[-1]+"S"+str(ord(wires[bundle]['colors'][x][0]))+str(idcount)[-1]
+ ident = ident.strip(" ")
+ wire_info.append({
+ 'Identifier': ident,
+ 'End 1': "Splice",
+ 'Type 1': "Crimp Splice",
+ 'Pin 1': "-",
+ 'Length': wires[bundle]['length'],
+ 'Color': wires[bundle]['colors'][x],
+ 'Gauge': wires[bundle]['gauge'],
+ 'End 2': connector,
+ 'Type 2': con1type,
+ 'Pin 2': pin1,
+ 'Notes': notes,
+ })
# Create a DataFrame to display the data as a table
- wire_df = pd.DataFrame(wire_info, columns=['Identifier','End 1', 'Pin 1', 'Length', 'Color', 'Gauge', 'End 2', 'Pin 2', 'Notes'])
+ wire_df = pd.DataFrame(wire_info, columns=['Identifier','End 1','Type 1', 'Pin 1', 'Length', 'Color', 'Gauge', 'End 2','Type 2', 'Pin 2', 'Notes'])
return wire_df
# Path to your WireViz YML file
-file_path = 'wireviz/Choppy_ECU_C1.yml'
+file_path = 'wireviz/Choppy_IB_1X.yml'
wire_table = parse_wireviz_yml(file_path)
# Display the table
diff --git a/wireviz/Choppy Wiring Tables.zip b/wireviz/Choppy Wiring Tables.zip
new file mode 100644
index 0000000..45bc334
--- /dev/null
+++ b/wireviz/Choppy Wiring Tables.zip
Binary files differ
diff --git a/wireviz/Choppy_ECU_12FB.csv b/wireviz/Choppy_ECU_12FB.csv
index 8936f26..fdfefdd 100644
--- a/wireviz/Choppy_ECU_12FB.csv
+++ b/wireviz/Choppy_ECU_12FB.csv
@@ -1,32 +1,34 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2,Notes
-0,699711,ECUM,3,16.5 Inches,GN,18 AWG,ECU1,'B4',
-1,699712,ECUM,4,16.5 Inches,GN,18 AWG,ECU1,'C4',
-2,699823,ECUM,1,50 Inches,RD,14 AWG,Coil Pack 1,'E',12 Inch difference between outermost coils.
-3,690824,Coil Pack 2,'E',50 Inches,RD,14 AWG,----,----,12 Inch difference between outermost coils.
-4,690825,Coil Pack 3,'E',50 Inches,RD,14 AWG,----,----,12 Inch difference between outermost coils.
-5,690826,Coil Pack 4,'E',50 Inches,RD,14 AWG,----,----,12 Inch difference between outermost coils.
-6,699717,ECUM,2,16.5 Inches,GN,18 AWG,ECU1,'L4',
-7,659828,ECUM,7,16.5 Inches,RD,14 AWG,ECU1,'M4',
-8,659829,ECUM,7,40 Inches,RD,18 AWG,Fuel Injector 2,1,
-9,790820,Fuel Injector 1,1,40 Inches,RD,18 AWG,----,----,
-10,622711,ECUF,4,27 Inches,GN,14 AWG,MAF Sensor,4,
-11,669822,ECUM,8,20 Inches,RD,18 AWG,Servo Power,1,Servo Wire is Long Enough
-12,609824,ECUF,12,10 Inches,RD,14 AWG,Fuse Block,2,
-13,649824,ECUF, 6,10 Inches,RD,14 AWG,Fuse Block,4,
-14,699825,ECUF,11,10 Inches,RD,18 AWG,Fuse Block,6,
-15,819827,Positive Bus Bar,3,10 Inches,RD,14 AWG,Fuse Block,1,
-16,819827,Positive Bus Bar, 3,10 Inches,RD,14 AWG,Fuse Block,5,
-17,820828,Positive Bus Bar,4,170 Inches,RD,14 AWG,KillSwitch,2,
-18,719829,KillSwitch,3,170 Inches,RD,14 AWG,Fuse Block,3,
-19,699710,ECUF,3,37 Inches,GN,18 AWG,Tachometer,A,Pre-attached wire is of sufficient length to reach ECU.
-20,691821,ECUM,7,21 Inches,RD,18 AWG,LSU,3,
-21,691662,ECUF,5,10 Inches,BK,18 AWG,Negative Bus Bar,3,
-22,699713,Coil Pack 1,C,10 Inches,GY,18 AWG,Engine GND','Engine GND',
-23,699714,Coil Pack 4,C,10 Inches,GY,18 AWG,Engine GND','Engine GND',
-24,699715,Coil Pack 3,C,6 Inches,GY,18 AWG,Engine GND','Engine GND',
-25,699716,Coil Pack 2,C,6 Inches,GY,18 AWG,Engine GND','Engine GND',
-26,692667,Coil Pack 1,D,60 Inches,BK,18 AWG,Negative Bus Bar,4,
-27,692668,Coil Pack 2,D,60 Inches,BK,18 AWG,Negative Bus Bar,4,
-28,692669,Coil Pack 3,D,60 Inches,BK,18 AWG,Negative Bus Bar,4,
-29,692660,Coil Pack 4,D,60 Inches,BK,18 AWG,Negative Bus Bar,4,
-30,890661,Servo Power,2,20 Inches,BK,18 AWG,Negative Bus Bar,2,
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,619711,ECUM,Delphi 15336209,3,16.5 Inches,GN,18 AWG,ECU1,Molex 643203311,'B4',
+1,629712,ECUM,Delphi 15336209,4,16.5 Inches,GN,18 AWG,ECU1,Molex 643203311,'C4',
+2,699823,ECUM,Delphi 15336209,1,50 Inches,RD,14 AWG,Coil Pack 1,Delphi 12162825,'E',12 Inch difference between outermost coils.
+3,699824,ECUM,Delphi 15336209,1,50 Inches,RD,14 AWG,Coil Pack 2,Delphi 12162825,'E',12 Inch difference between outermost coils.
+4,699825,ECUM,Delphi 15336209,1,50 Inches,RD,14 AWG,Coil Pack 3,Delphi 12162825,'E',12 Inch difference between outermost coils.
+5,699826,ECUM,Delphi 15336209,1,50 Inches,RD,14 AWG,Coil Pack 4,Delphi 12162825,'E',12 Inch difference between outermost coils.
+6,609717,ECUM,Delphi 15336209,2,16.5 Inches,GN,18 AWG,ECU1,Molex 643203311,'L4',
+7,659828,ECUM,Delphi 15336209,7,16.5 Inches,RD,14 AWG,ECU1,Molex 643203311,'M4',
+8,659829,ECUM,Delphi 15336209,7,40 Inches,RD,18 AWG,Fuel Injector 2,90980-11875,1,
+9,659820,ECUM,Delphi 15336209,7,40 Inches,RD,18 AWG,Fuel Injector 1,90980-11875,1,
+10,622711,ECUF,Delphi 15336205,4,27 Inches,GN,14 AWG,MAF Sensor,Bosch 1928405138,4,
+11,669822,ECUM,Delphi 15336209,8,20 Inches,RD,18 AWG,Servo Power,DTM04-2P,1,Servo Wire is Long Enough
+12,600824,ECUF,Delphi 15336205,12,10 Inches,RD,14 AWG,Fuse Block,TE 2319023-1,2,
+13,642824,ECUF,Delphi 15336205, 6,10 Inches,RD,14 AWG,Fuse Block,TE 2319023-1,4,
+14,694825,ECUF,Delphi 15336205,11,10 Inches,RD,18 AWG,Fuse Block,TE 2319023-1,6,
+15,819827,Positive Bus Bar,Pike Industries Busbar,3,10 Inches,RD,14 AWG,Fuse Block,TE 2319023-1,1,
+16,813827,Positive Bus Bar,Pike Industries Busbar, 3,10 Inches,RD,14 AWG,Fuse Block,TE 2319023-1,5,
+17,820828,Positive Bus Bar,Pike Industries Busbar,4,170 Inches,RD,14 AWG,KillSwitch,MS24658-22D,2,
+18,711829,KillSwitch,MS24658-22D,3,170 Inches,RD,14 AWG,Fuse Block,TE 2319023-1,3,
+19,615710,ECUF,Delphi 15336205,3,37 Inches,GN,18 AWG,Tachometer,DT04-3P,A,Pre-attached wire is of sufficient length to reach ECU.
+20,651821,ECUM,Delphi 15336209,7,21 Inches,RD,18 AWG,LSU,D261.205.356-01,3,
+21,631662,ECUF,Delphi 15336205,5,10 Inches,BK,18 AWG,Negative Bus Bar,Pike Industries Busbar,3,
+22,679713,Coil Pack 1,Delphi 12162825,C,10 Inches,GY,18 AWG,Engine GND',Unspecified,'Engine GND',
+23,679714,Coil Pack 4,Delphi 12162825,C,10 Inches,GY,18 AWG,Engine GND',Unspecified,'Engine GND',
+24,679715,Coil Pack 3,Delphi 12162825,C,6 Inches,GY,18 AWG,Engine GND',Unspecified,'Engine GND',
+25,679716,Coil Pack 2,Delphi 12162825,C,6 Inches,GY,18 AWG,Engine GND',Unspecified,'Engine GND',
+26,682667,Coil Pack 1,Delphi 12162825,D,60 Inches,BK,18 AWG,Negative Bus Bar,Pike Industries Busbar,4,
+27,682668,Coil Pack 2,Delphi 12162825,D,60 Inches,BK,18 AWG,Negative Bus Bar,Pike Industries Busbar,4,
+28,682669,Coil Pack 3,Delphi 12162825,D,60 Inches,BK,18 AWG,Negative Bus Bar,Pike Industries Busbar,4,
+29,682660,Coil Pack 4,Delphi 12162825,D,60 Inches,BK,18 AWG,Negative Bus Bar,Pike Industries Busbar,4,
+30,800661,Servo Power,DTM04-2P,2,20 Inches,BK,18 AWG,Negative Bus Bar,Pike Industries Busbar,2,
+31,869662,Tachometer,DT04-3P,B,60 Inches,BK,18 AWG,Engine GND',Unspecified,'Engine GND',Distance is from ECU to engine ground.
+32,69S663,Splice,Crimp Splice,-,50 Inches,BN,14 AWG,Engine GND,Engine GND,'Engine GND',Ring Terminal On Block.
diff --git a/wireviz/Choppy_ECU_12FB.gv b/wireviz/Choppy_ECU_12FB.gv
index 9c30287..0dbf3dc 100644
--- a/wireviz/Choppy_ECU_12FB.gv
+++ b/wireviz/Choppy_ECU_12FB.gv
@@ -649,14 +649,17 @@ graph {
<tr>
<td port="p1l">A</td>
<td>12V</td>
+ <td port="p1r">A</td>
</tr>
<tr>
<td port="p2l">B</td>
<td>GND</td>
+ <td port="p2r">B</td>
</tr>
<tr>
<td port="p3l">C</td>
<td>Out</td>
+ <td port="p3r">C</td>
</tr>
</table>
</td></tr>
@@ -805,10 +808,13 @@ graph {
ECUM:p1r:e -- W1:w1:w
W1:w1:e -- "Coil Pack 1":p5l:w
edge [color="#000000:#ff0000:#000000"]
+ ECUM:p1r:e -- W1:w1:w
W1:w1:e -- "Coil Pack 2":p5l:w
edge [color="#000000:#ff0000:#000000"]
+ ECUM:p1r:e -- W1:w1:w
W1:w1:e -- "Coil Pack 3":p5l:w
edge [color="#000000:#ff0000:#000000"]
+ ECUM:p1r:e -- W1:w1:w
W1:w1:e -- "Coil Pack 4":p5l:w
W1 [label=<
<table border="0" cellspacing="0" cellpadding="0">
@@ -1444,8 +1450,8 @@ graph {
</table>
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
edge [color="#000000:#000000:#000000"]
- "_Engine GND_5":e -- W12:w1:w
- W12:w1:e -- Tachometer:p2l:w
+ Tachometer:p2r:e -- W12:w1:w
+ W12:w1:e -- "_Engine GND_5":w
W12 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -1464,11 +1470,11 @@ graph {
<table border="0" cellspacing="0" cellborder="0">
<tr><td>&nbsp;</td></tr>
<tr>
- <td></td>
+ <td>Tachometer:B:GND</td>
<td>
BK
</td>
- <td>Tachometer:B:GND</td>
+ <td></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
diff --git a/wireviz/Choppy_ECU_12FB.html b/wireviz/Choppy_ECU_12FB.html
index 7401c67..33d9d5e 100644
--- a/wireviz/Choppy_ECU_12FB.html
+++ b/wireviz/Choppy_ECU_12FB.html
@@ -10,1519 +10,1546 @@
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
-<svg width="2450pt" height="5025pt"
- viewBox="0.00 0.00 2450.00 5024.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 5020.5)">
-<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-5020.5 2446,-5020.5 2446,4 -4,4"/>
+<svg width="3084pt" height="4827pt"
+ viewBox="0.00 0.00 3084.00 4827.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 4823)">
+<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-4823 3080,-4823 3080,4 -4,4"/>
<!-- ECUM -->
<g id="node1" class="node">
<title>ECUM</title>
-<polygon fill="#ffffff" stroke="black" points="236,-1871 0,-1871 0,-1486.5 236,-1486.5 236,-1871"/>
-<polygon fill="none" stroke="black" points="0,-1846.5 0,-1871 236,-1871 236,-1846.5 0,-1846.5"/>
-<text text-anchor="start" x="97.38" y="-1853.7" font-family="arial" font-size="14.00">ECUM</text>
-<polygon fill="none" stroke="black" points="0,-1822 0,-1846.5 157.38,-1846.5 157.38,-1822 0,-1822"/>
-<text text-anchor="start" x="23.56" y="-1829.2" font-family="arial" font-size="14.00">Delphi 15336209</text>
-<polygon fill="none" stroke="black" points="157.38,-1822 157.38,-1846.5 236,-1846.5 236,-1822 157.38,-1822"/>
-<text text-anchor="start" x="180.94" y="-1829.2" font-family="arial" font-size="14.00">7&#45;pin</text>
-<polygon fill="none" stroke="black" points="0,-1798 0,-1822 158.5,-1822 158.5,-1798 0,-1798"/>
-<text text-anchor="start" x="56.38" y="-1804.7" font-family="arial" font-size="14.00">Ignition</text>
-<polygon fill="none" stroke="black" points="158.5,-1798 158.5,-1822 236,-1822 236,-1798 158.5,-1798"/>
-<text text-anchor="start" x="193.12" y="-1804.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="0,-1774 0,-1798 158.5,-1798 158.5,-1774 0,-1774"/>
-<text text-anchor="start" x="63.5" y="-1780.7" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="158.5,-1774 158.5,-1798 236,-1798 236,-1774 158.5,-1774"/>
-<text text-anchor="start" x="193.12" y="-1780.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="0,-1750 0,-1774 158.5,-1774 158.5,-1750 0,-1750"/>
-<text text-anchor="start" x="44" y="-1756.7" font-family="arial" font-size="14.00">Extra Out 1</text>
-<polygon fill="none" stroke="black" points="158.5,-1750 158.5,-1774 236,-1774 236,-1750 158.5,-1750"/>
-<text text-anchor="start" x="193.12" y="-1756.7" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="0,-1726 0,-1750 158.5,-1750 158.5,-1726 0,-1726"/>
-<text text-anchor="start" x="44" y="-1732.7" font-family="arial" font-size="14.00">Extra Out 2</text>
-<polygon fill="none" stroke="black" points="158.5,-1726 158.5,-1750 236,-1750 236,-1726 158.5,-1726"/>
-<text text-anchor="start" x="193.12" y="-1732.7" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="0,-1702 0,-1726 158.5,-1726 158.5,-1702 0,-1702"/>
-<text text-anchor="start" x="34.62" y="-1708.7" font-family="arial" font-size="14.00">Starter/Exciter</text>
-<polygon fill="none" stroke="black" points="158.5,-1702 158.5,-1726 236,-1726 236,-1702 158.5,-1702"/>
-<text text-anchor="start" x="193.12" y="-1708.7" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="0,-1678 0,-1702 158.5,-1702 158.5,-1678 0,-1678"/>
-<text text-anchor="start" x="49.25" y="-1684.7" font-family="arial" font-size="14.00">12V ECU</text>
-<polygon fill="none" stroke="black" points="158.5,-1678 158.5,-1702 236,-1702 236,-1678 158.5,-1678"/>
-<text text-anchor="start" x="193.12" y="-1684.7" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="0,-1654 0,-1678 158.5,-1678 158.5,-1654 0,-1654"/>
-<text text-anchor="start" x="45.5" y="-1660.7" font-family="arial" font-size="14.00">12V Servo</text>
-<polygon fill="none" stroke="black" points="158.5,-1654 158.5,-1678 236,-1678 236,-1654 158.5,-1654"/>
-<text text-anchor="start" x="193.12" y="-1660.7" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="0,-1511 0,-1654 236,-1654 236,-1511 0,-1511"/>
-<image xlink:href="images\ECU3.png" width="228px" height="135px" preserveAspectRatio="xMinYMin meet" x="4" y="-1650"/>
-<polygon fill="none" stroke="black" points="0,-1486.5 0,-1511 236,-1511 236,-1486.5 0,-1486.5"/>
-<text text-anchor="start" x="80.88" y="-1493.7" font-family="arial" font-size="14.00">ECU 12 Pin</text>
+<polygon fill="#ffffff" stroke="black" points="236,-1968.5 0,-1968.5 0,-1584 236,-1584 236,-1968.5"/>
+<polygon fill="none" stroke="black" points="0,-1944 0,-1968.5 236,-1968.5 236,-1944 0,-1944"/>
+<text text-anchor="start" x="97.38" y="-1951.2" font-family="arial" font-size="14.00">ECUM</text>
+<polygon fill="none" stroke="black" points="0,-1919.5 0,-1944 157.38,-1944 157.38,-1919.5 0,-1919.5"/>
+<text text-anchor="start" x="23.56" y="-1926.7" font-family="arial" font-size="14.00">Delphi 15336209</text>
+<polygon fill="none" stroke="black" points="157.38,-1919.5 157.38,-1944 236,-1944 236,-1919.5 157.38,-1919.5"/>
+<text text-anchor="start" x="180.94" y="-1926.7" font-family="arial" font-size="14.00">7&#45;pin</text>
+<polygon fill="none" stroke="black" points="0,-1895.5 0,-1919.5 158.5,-1919.5 158.5,-1895.5 0,-1895.5"/>
+<text text-anchor="start" x="56.38" y="-1902.2" font-family="arial" font-size="14.00">Ignition</text>
+<polygon fill="none" stroke="black" points="158.5,-1895.5 158.5,-1919.5 236,-1919.5 236,-1895.5 158.5,-1895.5"/>
+<text text-anchor="start" x="193.12" y="-1902.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="0,-1871.5 0,-1895.5 158.5,-1895.5 158.5,-1871.5 0,-1871.5"/>
+<text text-anchor="start" x="63.5" y="-1878.2" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="158.5,-1871.5 158.5,-1895.5 236,-1895.5 236,-1871.5 158.5,-1871.5"/>
+<text text-anchor="start" x="193.12" y="-1878.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="0,-1847.5 0,-1871.5 158.5,-1871.5 158.5,-1847.5 0,-1847.5"/>
+<text text-anchor="start" x="44" y="-1854.2" font-family="arial" font-size="14.00">Extra Out 1</text>
+<polygon fill="none" stroke="black" points="158.5,-1847.5 158.5,-1871.5 236,-1871.5 236,-1847.5 158.5,-1847.5"/>
+<text text-anchor="start" x="193.12" y="-1854.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="0,-1823.5 0,-1847.5 158.5,-1847.5 158.5,-1823.5 0,-1823.5"/>
+<text text-anchor="start" x="44" y="-1830.2" font-family="arial" font-size="14.00">Extra Out 2</text>
+<polygon fill="none" stroke="black" points="158.5,-1823.5 158.5,-1847.5 236,-1847.5 236,-1823.5 158.5,-1823.5"/>
+<text text-anchor="start" x="193.12" y="-1830.2" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="0,-1799.5 0,-1823.5 158.5,-1823.5 158.5,-1799.5 0,-1799.5"/>
+<text text-anchor="start" x="34.62" y="-1806.2" font-family="arial" font-size="14.00">Starter/Exciter</text>
+<polygon fill="none" stroke="black" points="158.5,-1799.5 158.5,-1823.5 236,-1823.5 236,-1799.5 158.5,-1799.5"/>
+<text text-anchor="start" x="193.12" y="-1806.2" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="0,-1775.5 0,-1799.5 158.5,-1799.5 158.5,-1775.5 0,-1775.5"/>
+<text text-anchor="start" x="49.25" y="-1782.2" font-family="arial" font-size="14.00">12V ECU</text>
+<polygon fill="none" stroke="black" points="158.5,-1775.5 158.5,-1799.5 236,-1799.5 236,-1775.5 158.5,-1775.5"/>
+<text text-anchor="start" x="193.12" y="-1782.2" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="0,-1751.5 0,-1775.5 158.5,-1775.5 158.5,-1751.5 0,-1751.5"/>
+<text text-anchor="start" x="45.5" y="-1758.2" font-family="arial" font-size="14.00">12V Servo</text>
+<polygon fill="none" stroke="black" points="158.5,-1751.5 158.5,-1775.5 236,-1775.5 236,-1751.5 158.5,-1751.5"/>
+<text text-anchor="start" x="193.12" y="-1758.2" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="0,-1608.5 0,-1751.5 236,-1751.5 236,-1608.5 0,-1608.5"/>
+<image xlink:href="images\ECU3.png" width="228px" height="135px" preserveAspectRatio="xMinYMin meet" x="4" y="-1747.5"/>
+<polygon fill="none" stroke="black" points="0,-1584 0,-1608.5 236,-1608.5 236,-1584 0,-1584"/>
+<text text-anchor="start" x="80.88" y="-1591.2" font-family="arial" font-size="14.00">ECU 12 Pin</text>
</g>
<!-- W1 -->
<g id="node25" class="node">
<title>W1</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="727.5,-2592.5 382.5,-2592.5 382.5,-2453 727.5,-2453 727.5,-2592.5"/>
-<polygon fill="none" stroke="black" points="382.5,-2568 382.5,-2592.5 727.5,-2592.5 727.5,-2568 382.5,-2568"/>
-<text text-anchor="start" x="543.75" y="-2575.2" font-family="arial" font-size="14.00">W1</text>
-<polygon fill="none" stroke="black" points="382.5,-2543.5 382.5,-2568 464,-2568 464,-2543.5 382.5,-2543.5"/>
-<text text-anchor="start" x="415.75" y="-2550.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="464,-2543.5 464,-2568 586,-2568 586,-2543.5 464,-2543.5"/>
-<text text-anchor="start" x="497.25" y="-2550.7" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="586,-2543.5 586,-2568 727.5,-2568 727.5,-2543.5 586,-2543.5"/>
-<text text-anchor="start" x="619.25" y="-2550.7" font-family="arial" font-size="14.00">50.0 Inches</text>
-<text text-anchor="start" x="433.62" y="-2528.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="384.12" y="-2508.2" font-family="arial" font-size="14.00">ECUM:1:Ignition</text>
-<text text-anchor="start" x="490.12" y="-2508.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="548.5" y="-2508.2" font-family="arial" font-size="14.00">Coil Pack 1:E:Switched 12V</text>
-<polygon fill="#000000" stroke="none" points="382.5,-2501.5 382.5,-2503.5 727.5,-2503.5 727.5,-2501.5 382.5,-2501.5"/>
-<polygon fill="#ff0000" stroke="none" points="382.5,-2499.5 382.5,-2501.5 727.5,-2501.5 727.5,-2499.5 382.5,-2499.5"/>
-<polygon fill="#000000" stroke="none" points="382.5,-2497.5 382.5,-2499.5 727.5,-2499.5 727.5,-2497.5 382.5,-2497.5"/>
-<text text-anchor="start" x="433.62" y="-2482.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="382.5,-2453 382.5,-2477.5 727.5,-2477.5 727.5,-2453 382.5,-2453"/>
-<text text-anchor="start" x="416.25" y="-2460.2" font-family="arial" font-size="14.00">12 Inch difference between outermost coils.</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="727.5,-2169 382.5,-2169 382.5,-2029.5 727.5,-2029.5 727.5,-2169"/>
+<polygon fill="none" stroke="black" points="382.5,-2144.5 382.5,-2169 727.5,-2169 727.5,-2144.5 382.5,-2144.5"/>
+<text text-anchor="start" x="543.75" y="-2151.7" font-family="arial" font-size="14.00">W1</text>
+<polygon fill="none" stroke="black" points="382.5,-2120 382.5,-2144.5 464,-2144.5 464,-2120 382.5,-2120"/>
+<text text-anchor="start" x="415.75" y="-2127.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="464,-2120 464,-2144.5 586,-2144.5 586,-2120 464,-2120"/>
+<text text-anchor="start" x="497.25" y="-2127.2" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="586,-2120 586,-2144.5 727.5,-2144.5 727.5,-2120 586,-2120"/>
+<text text-anchor="start" x="619.25" y="-2127.2" font-family="arial" font-size="14.00">50.0 Inches</text>
+<text text-anchor="start" x="433.62" y="-2104.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="384.12" y="-2084.7" font-family="arial" font-size="14.00">ECUM:1:Ignition</text>
+<text text-anchor="start" x="490.12" y="-2084.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="548.5" y="-2084.7" font-family="arial" font-size="14.00">Coil Pack 1:E:Switched 12V</text>
+<polygon fill="#000000" stroke="none" points="382.5,-2078 382.5,-2080 727.5,-2080 727.5,-2078 382.5,-2078"/>
+<polygon fill="#ff0000" stroke="none" points="382.5,-2076 382.5,-2078 727.5,-2078 727.5,-2076 382.5,-2076"/>
+<polygon fill="#000000" stroke="none" points="382.5,-2074 382.5,-2076 727.5,-2076 727.5,-2074 382.5,-2074"/>
+<text text-anchor="start" x="433.62" y="-2058.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="382.5,-2029.5 382.5,-2054 727.5,-2054 727.5,-2029.5 382.5,-2029.5"/>
+<text text-anchor="start" x="416.25" y="-2036.7" font-family="arial" font-size="14.00">12 Inch difference between outermost coils.</text>
</g>
<!-- ECUM&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>ECUM:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1808C551.27,-1811.14 69.51,-2501.64 381.5,-2498.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1810C549.63,-1810 67.87,-2500.5 381.5,-2500.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1812C547.99,-1808.86 66.23,-2499.36 381.5,-2502.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.32,-1905.62C337.19,-1872.1 284.13,-2041.6 382.18,-2075.12"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1871.5 282.22,-2041 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.68,-1909.38C333.37,-1870.9 280.31,-2040.4 380.82,-2078.88"/>
+</g>
+<!-- ECUM&#45;&#45;W1 -->
+<g id="edge3" class="edge">
+<title>ECUM:e&#45;&#45;W1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.76,-1905.51C337.19,-1896.1 284.13,-2065.6 381.74,-2075.01"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1895.5 282.22,-2065 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.24,-1909.49C333.37,-1894.9 280.31,-2064.4 381.26,-2078.99"/>
+</g>
+<!-- ECUM&#45;&#45;W1 -->
+<g id="edge5" class="edge">
+<title>ECUM:e&#45;&#45;W1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.24,-1905.51C337.19,-1920.1 284.13,-2089.6 381.26,-2075.01"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1919.5 282.22,-2089 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.76,-1909.49C333.37,-1918.9 280.31,-2088.4 381.74,-2078.99"/>
+</g>
+<!-- ECUM&#45;&#45;W1 -->
+<g id="edge7" class="edge">
+<title>ECUM:e&#45;&#45;W1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.68,-1905.62C337.19,-1944.1 284.13,-2113.6 380.82,-2075.12"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1943.5 282.22,-2113 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.32,-1909.38C333.37,-1942.9 280.31,-2112.4 382.18,-2078.88"/>
</g>
<!-- W2 -->
<g id="node26" class="node">
<title>W2</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="712.5,-984.25 397.5,-984.25 397.5,-869.25 712.5,-869.25 712.5,-984.25"/>
-<polygon fill="none" stroke="black" points="397.5,-959.75 397.5,-984.25 712.5,-984.25 712.5,-959.75 397.5,-959.75"/>
-<text text-anchor="start" x="543.75" y="-966.95" font-family="arial" font-size="14.00">W2</text>
-<polygon fill="none" stroke="black" points="397.5,-935.25 397.5,-959.75 469,-959.75 469,-935.25 397.5,-935.25"/>
-<text text-anchor="start" x="425.75" y="-942.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="469,-935.25 469,-959.75 581,-959.75 581,-935.25 469,-935.25"/>
-<text text-anchor="start" x="497.25" y="-942.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="581,-935.25 581,-959.75 712.5,-959.75 712.5,-935.25 581,-935.25"/>
-<text text-anchor="start" x="609.25" y="-942.45" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="456.12" y="-919.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="399.5" y="-899.95" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
-<text text-anchor="start" x="520.12" y="-899.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="578.12" y="-899.95" font-family="arial" font-size="14.00">Fuel Injector 2:1:12V</text>
-<polygon fill="#000000" stroke="none" points="397.5,-893.25 397.5,-895.25 712.5,-895.25 712.5,-893.25 397.5,-893.25"/>
-<polygon fill="#ff0000" stroke="none" points="397.5,-891.25 397.5,-893.25 712.5,-893.25 712.5,-891.25 397.5,-891.25"/>
-<polygon fill="#000000" stroke="none" points="397.5,-889.25 397.5,-891.25 712.5,-891.25 712.5,-889.25 397.5,-889.25"/>
-<text text-anchor="start" x="456.12" y="-873.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="712.5,-1432.75 397.5,-1432.75 397.5,-1317.75 712.5,-1317.75 712.5,-1432.75"/>
+<polygon fill="none" stroke="black" points="397.5,-1408.25 397.5,-1432.75 712.5,-1432.75 712.5,-1408.25 397.5,-1408.25"/>
+<text text-anchor="start" x="543.75" y="-1415.45" font-family="arial" font-size="14.00">W2</text>
+<polygon fill="none" stroke="black" points="397.5,-1383.75 397.5,-1408.25 469,-1408.25 469,-1383.75 397.5,-1383.75"/>
+<text text-anchor="start" x="425.75" y="-1390.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="469,-1383.75 469,-1408.25 581,-1408.25 581,-1383.75 469,-1383.75"/>
+<text text-anchor="start" x="497.25" y="-1390.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="581,-1383.75 581,-1408.25 712.5,-1408.25 712.5,-1383.75 581,-1383.75"/>
+<text text-anchor="start" x="609.25" y="-1390.95" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="456.12" y="-1368.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="399.5" y="-1348.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
+<text text-anchor="start" x="520.12" y="-1348.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="578.12" y="-1348.45" font-family="arial" font-size="14.00">Fuel Injector 2:1:12V</text>
+<polygon fill="#000000" stroke="none" points="397.5,-1341.75 397.5,-1343.75 712.5,-1343.75 712.5,-1341.75 397.5,-1341.75"/>
+<polygon fill="#ff0000" stroke="none" points="397.5,-1339.75 397.5,-1341.75 712.5,-1341.75 712.5,-1339.75 397.5,-1339.75"/>
+<polygon fill="#000000" stroke="none" points="397.5,-1337.75 397.5,-1339.75 712.5,-1339.75 712.5,-1337.75 397.5,-1337.75"/>
+<text text-anchor="start" x="456.12" y="-1322.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W2 -->
-<g id="edge6" class="edge">
+<g id="edge9" class="edge">
<title>ECUM:e&#45;&#45;W2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1688C596.03,-1691.15 33.21,-893.4 396.5,-890.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1690C597.66,-1690 34.84,-892.25 396.5,-892.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1692C599.29,-1688.85 36.47,-891.1 396.5,-894.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1785.5C445.25,-1788.51 183.79,-1341.76 396.5,-1338.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1787.5C446.98,-1787.5 185.52,-1340.75 396.5,-1340.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1789.5C448.71,-1786.49 187.25,-1339.74 396.5,-1342.75"/>
</g>
<!-- W3 -->
<g id="node27" class="node">
<title>W3</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="730,-1950.25 380,-1950.25 380,-1783.25 730,-1783.25 730,-1950.25"/>
-<polygon fill="none" stroke="black" points="380,-1925.75 380,-1950.25 730,-1950.25 730,-1925.75 380,-1925.75"/>
-<text text-anchor="start" x="543.75" y="-1932.95" font-family="arial" font-size="14.00">W3</text>
-<polygon fill="none" stroke="black" points="380,-1901.25 380,-1925.75 463.17,-1925.75 463.17,-1901.25 380,-1901.25"/>
-<text text-anchor="start" x="414.08" y="-1908.45" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="463.17,-1901.25 463.17,-1925.75 586.83,-1925.75 586.83,-1901.25 463.17,-1901.25"/>
-<text text-anchor="start" x="497.25" y="-1908.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="586.83,-1901.25 586.83,-1925.75 730,-1925.75 730,-1901.25 586.83,-1901.25"/>
-<text text-anchor="start" x="620.92" y="-1908.45" font-family="arial" font-size="14.00">16.5 Inches</text>
-<text text-anchor="start" x="443.62" y="-1885.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="381.75" y="-1865.95" font-family="arial" font-size="14.00">ECUM:3:Extra Out 1</text>
-<text text-anchor="start" x="512.62" y="-1865.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="572.62" y="-1865.95" font-family="arial" font-size="14.00">ECU1:B4:Extra Output 1</text>
-<polygon fill="#000000" stroke="none" points="380,-1859.25 380,-1861.25 730,-1861.25 730,-1859.25 380,-1859.25"/>
-<polygon fill="#00ff00" stroke="none" points="380,-1857.25 380,-1859.25 730,-1859.25 730,-1857.25 380,-1857.25"/>
-<polygon fill="#000000" stroke="none" points="380,-1855.25 380,-1857.25 730,-1857.25 730,-1855.25 380,-1855.25"/>
-<text text-anchor="start" x="381.75" y="-1839.95" font-family="arial" font-size="14.00">ECUM:4:Extra Out 2</text>
-<text text-anchor="start" x="512.62" y="-1839.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="572.25" y="-1839.95" font-family="arial" font-size="14.00">ECU1:C4:Extra Output 2</text>
-<polygon fill="#000000" stroke="none" points="380,-1833.25 380,-1835.25 730,-1835.25 730,-1833.25 380,-1833.25"/>
-<polygon fill="#00ff00" stroke="none" points="380,-1831.25 380,-1833.25 730,-1833.25 730,-1831.25 380,-1831.25"/>
-<polygon fill="#000000" stroke="none" points="380,-1829.25 380,-1831.25 730,-1831.25 730,-1829.25 380,-1829.25"/>
-<text text-anchor="start" x="401.25" y="-1813.95" font-family="arial" font-size="14.00">ECUM:2:GND</text>
-<text text-anchor="start" x="513.38" y="-1813.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="570.75" y="-1813.95" font-family="arial" font-size="14.00">ECU1:L4:Engine Ground</text>
-<polygon fill="#000000" stroke="none" points="380,-1807.25 380,-1809.25 730,-1809.25 730,-1807.25 380,-1807.25"/>
-<polygon fill="#895956" stroke="none" points="380,-1805.25 380,-1807.25 730,-1807.25 730,-1805.25 380,-1805.25"/>
-<polygon fill="#000000" stroke="none" points="380,-1803.25 380,-1805.25 730,-1805.25 730,-1803.25 380,-1803.25"/>
-<text text-anchor="start" x="443.62" y="-1787.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="730,-1952.75 380,-1952.75 380,-1785.75 730,-1785.75 730,-1952.75"/>
+<polygon fill="none" stroke="black" points="380,-1928.25 380,-1952.75 730,-1952.75 730,-1928.25 380,-1928.25"/>
+<text text-anchor="start" x="543.75" y="-1935.45" font-family="arial" font-size="14.00">W3</text>
+<polygon fill="none" stroke="black" points="380,-1903.75 380,-1928.25 463.17,-1928.25 463.17,-1903.75 380,-1903.75"/>
+<text text-anchor="start" x="414.08" y="-1910.95" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="463.17,-1903.75 463.17,-1928.25 586.83,-1928.25 586.83,-1903.75 463.17,-1903.75"/>
+<text text-anchor="start" x="497.25" y="-1910.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="586.83,-1903.75 586.83,-1928.25 730,-1928.25 730,-1903.75 586.83,-1903.75"/>
+<text text-anchor="start" x="620.92" y="-1910.95" font-family="arial" font-size="14.00">16.5 Inches</text>
+<text text-anchor="start" x="443.62" y="-1888.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="381.75" y="-1868.45" font-family="arial" font-size="14.00">ECUM:3:Extra Out 1</text>
+<text text-anchor="start" x="512.62" y="-1868.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="572.62" y="-1868.45" font-family="arial" font-size="14.00">ECU1:B4:Extra Output 1</text>
+<polygon fill="#000000" stroke="none" points="380,-1861.75 380,-1863.75 730,-1863.75 730,-1861.75 380,-1861.75"/>
+<polygon fill="#00ff00" stroke="none" points="380,-1859.75 380,-1861.75 730,-1861.75 730,-1859.75 380,-1859.75"/>
+<polygon fill="#000000" stroke="none" points="380,-1857.75 380,-1859.75 730,-1859.75 730,-1857.75 380,-1857.75"/>
+<text text-anchor="start" x="381.75" y="-1842.45" font-family="arial" font-size="14.00">ECUM:4:Extra Out 2</text>
+<text text-anchor="start" x="512.62" y="-1842.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="572.25" y="-1842.45" font-family="arial" font-size="14.00">ECU1:C4:Extra Output 2</text>
+<polygon fill="#000000" stroke="none" points="380,-1835.75 380,-1837.75 730,-1837.75 730,-1835.75 380,-1835.75"/>
+<polygon fill="#00ff00" stroke="none" points="380,-1833.75 380,-1835.75 730,-1835.75 730,-1833.75 380,-1833.75"/>
+<polygon fill="#000000" stroke="none" points="380,-1831.75 380,-1833.75 730,-1833.75 730,-1831.75 380,-1831.75"/>
+<text text-anchor="start" x="401.25" y="-1816.45" font-family="arial" font-size="14.00">ECUM:2:GND</text>
+<text text-anchor="start" x="513.38" y="-1816.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="570.75" y="-1816.45" font-family="arial" font-size="14.00">ECU1:L4:Engine Ground</text>
+<polygon fill="#000000" stroke="none" points="380,-1809.75 380,-1811.75 730,-1811.75 730,-1809.75 380,-1809.75"/>
+<polygon fill="#895956" stroke="none" points="380,-1807.75 380,-1809.75 730,-1809.75 730,-1807.75 380,-1807.75"/>
+<polygon fill="#000000" stroke="none" points="380,-1805.75 380,-1807.75 730,-1807.75 730,-1805.75 380,-1805.75"/>
+<text text-anchor="start" x="443.62" y="-1790.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W3 -->
-<g id="edge9" class="edge">
+<g id="edge12" class="edge">
<title>ECUM:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1760C314.97,-1762.21 305.01,-1858.46 380,-1856.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1762C312.98,-1762 303.02,-1858.25 380,-1858.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1764C310.99,-1761.79 301.03,-1858.04 380,-1860.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1857.5C300.16,-1857.51 316.15,-1858.76 380,-1858.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1859.5C300,-1859.5 316,-1860.75 380,-1860.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1861.5C299.85,-1861.49 315.84,-1862.74 380,-1862.75"/>
</g>
<!-- ECUM&#45;&#45;W3 -->
-<g id="edge11" class="edge">
+<g id="edge14" class="edge">
<title>ECUM:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1736C314.48,-1738.19 305.5,-1832.44 380,-1830.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1738C312.49,-1738 303.51,-1832.25 380,-1832.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1740C310.5,-1737.81 301.52,-1832.06 380,-1834.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1833.5C299.91,-1833.5 315.91,-1832.75 380,-1832.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1835.5C300,-1835.5 316,-1834.75 380,-1834.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1837.5C300.09,-1837.5 316.09,-1836.75 380,-1836.75"/>
</g>
<!-- ECUM&#45;&#45;W3 -->
-<g id="edge13" class="edge">
+<g id="edge16" class="edge">
<title>ECUM:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1784C302.25,-1784.82 316.99,-1805.07 380,-1804.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M236,-1786C300.63,-1786 315.37,-1806.25 380,-1806.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1788C299.01,-1787.18 313.75,-1807.43 380,-1808.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1881.5C306.11,-1883.51 305.89,-1808.76 380,-1806.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M236,-1883.5C308.11,-1883.5 307.89,-1808.75 380,-1808.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1885.5C310.11,-1883.49 309.89,-1808.74 380,-1810.75"/>
</g>
<!-- W11 -->
<g id="node35" class="node">
<title>W11</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-1551.5 398.5,-1551.5 398.5,-1412 711.5,-1412 711.5,-1551.5"/>
-<polygon fill="none" stroke="black" points="398.5,-1527 398.5,-1551.5 711.5,-1551.5 711.5,-1527 398.5,-1527"/>
-<text text-anchor="start" x="539.62" y="-1534.2" font-family="arial" font-size="14.00">W11</text>
-<polygon fill="none" stroke="black" points="398.5,-1502.5 398.5,-1527 469.33,-1527 469.33,-1502.5 398.5,-1502.5"/>
-<text text-anchor="start" x="426.42" y="-1509.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="469.33,-1502.5 469.33,-1527 580.67,-1527 580.67,-1502.5 469.33,-1502.5"/>
-<text text-anchor="start" x="497.25" y="-1509.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="580.67,-1502.5 580.67,-1527 711.5,-1527 711.5,-1502.5 580.67,-1502.5"/>
-<text text-anchor="start" x="608.58" y="-1509.7" font-family="arial" font-size="14.00">20.0 Inches</text>
-<text text-anchor="start" x="460.62" y="-1487.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="400.25" y="-1467.2" font-family="arial" font-size="14.00">ECUM:8:12V Servo</text>
-<text text-anchor="start" x="528.12" y="-1467.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="586.12" y="-1467.2" font-family="arial" font-size="14.00">Servo Power:1:12V</text>
-<polygon fill="#000000" stroke="none" points="398.5,-1460.5 398.5,-1462.5 711.5,-1462.5 711.5,-1460.5 398.5,-1460.5"/>
-<polygon fill="#ff0000" stroke="none" points="398.5,-1458.5 398.5,-1460.5 711.5,-1460.5 711.5,-1458.5 398.5,-1458.5"/>
-<polygon fill="#000000" stroke="none" points="398.5,-1456.5 398.5,-1458.5 711.5,-1458.5 711.5,-1456.5 398.5,-1456.5"/>
-<text text-anchor="start" x="460.62" y="-1441.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="398.5,-1412 398.5,-1436.5 711.5,-1436.5 711.5,-1412 398.5,-1412"/>
-<text text-anchor="start" x="468" y="-1419.2" font-family="arial" font-size="14.00">Servo Wire is Long Enough</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-630 398.5,-630 398.5,-490.5 711.5,-490.5 711.5,-630"/>
+<polygon fill="none" stroke="black" points="398.5,-605.5 398.5,-630 711.5,-630 711.5,-605.5 398.5,-605.5"/>
+<text text-anchor="start" x="539.62" y="-612.7" font-family="arial" font-size="14.00">W11</text>
+<polygon fill="none" stroke="black" points="398.5,-581 398.5,-605.5 469.33,-605.5 469.33,-581 398.5,-581"/>
+<text text-anchor="start" x="426.42" y="-588.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="469.33,-581 469.33,-605.5 580.67,-605.5 580.67,-581 469.33,-581"/>
+<text text-anchor="start" x="497.25" y="-588.2" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="580.67,-581 580.67,-605.5 711.5,-605.5 711.5,-581 580.67,-581"/>
+<text text-anchor="start" x="608.58" y="-588.2" font-family="arial" font-size="14.00">20.0 Inches</text>
+<text text-anchor="start" x="460.62" y="-565.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="400.25" y="-545.7" font-family="arial" font-size="14.00">ECUM:8:12V Servo</text>
+<text text-anchor="start" x="528.12" y="-545.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="586.12" y="-545.7" font-family="arial" font-size="14.00">Servo Power:1:12V</text>
+<polygon fill="#000000" stroke="none" points="398.5,-539 398.5,-541 711.5,-541 711.5,-539 398.5,-539"/>
+<polygon fill="#ff0000" stroke="none" points="398.5,-537 398.5,-539 711.5,-539 711.5,-537 398.5,-537"/>
+<polygon fill="#000000" stroke="none" points="398.5,-535 398.5,-537 711.5,-537 711.5,-535 398.5,-535"/>
+<text text-anchor="start" x="460.62" y="-519.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="398.5,-490.5 398.5,-515 711.5,-515 711.5,-490.5 398.5,-490.5"/>
+<text text-anchor="start" x="468" y="-497.7" font-family="arial" font-size="14.00">Servo Wire is Long Enough</text>
</g>
<!-- ECUM&#45;&#45;W11 -->
-<g id="edge44" class="edge">
+<g id="edge47" class="edge">
<title>ECUM:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1664C350.62,-1666.65 279.1,-1460.15 397.5,-1457.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1666C352.51,-1666 280.99,-1459.5 397.5,-1459.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1668C354.4,-1665.35 282.88,-1458.85 397.5,-1461.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1761.5C508.78,-1764.1 120.91,-538.6 397.5,-536"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1763.5C510.69,-1763.5 122.81,-538 397.5,-538"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1765.5C512.59,-1762.9 124.72,-537.4 397.5,-540"/>
</g>
<!-- W15 -->
<g id="node39" class="node">
<title>W15</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="709,-1759.25 401,-1759.25 401,-1644.25 709,-1644.25 709,-1759.25"/>
-<polygon fill="none" stroke="black" points="401,-1734.75 401,-1759.25 709,-1759.25 709,-1734.75 401,-1734.75"/>
-<text text-anchor="start" x="539.62" y="-1741.95" font-family="arial" font-size="14.00">W15</text>
-<polygon fill="none" stroke="black" points="401,-1710.25 401,-1734.75 470.17,-1734.75 470.17,-1710.25 401,-1710.25"/>
-<text text-anchor="start" x="428.08" y="-1717.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="470.17,-1710.25 470.17,-1734.75 579.83,-1734.75 579.83,-1710.25 470.17,-1710.25"/>
-<text text-anchor="start" x="497.25" y="-1717.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="579.83,-1710.25 579.83,-1734.75 709,-1734.75 709,-1710.25 579.83,-1710.25"/>
-<text text-anchor="start" x="606.92" y="-1717.45" font-family="arial" font-size="14.00">16.5 Inches</text>
-<text text-anchor="start" x="459.62" y="-1694.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="403" y="-1674.95" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
-<text text-anchor="start" x="523.62" y="-1674.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="581.88" y="-1674.95" font-family="arial" font-size="14.00">ECU1:M4:ECU 12V</text>
-<polygon fill="#000000" stroke="none" points="401,-1668.25 401,-1670.25 709,-1670.25 709,-1668.25 401,-1668.25"/>
-<polygon fill="#ff0000" stroke="none" points="401,-1666.25 401,-1668.25 709,-1668.25 709,-1666.25 401,-1666.25"/>
-<polygon fill="#000000" stroke="none" points="401,-1664.25 401,-1666.25 709,-1666.25 709,-1664.25 401,-1664.25"/>
-<text text-anchor="start" x="459.62" y="-1648.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="709,-1761.75 401,-1761.75 401,-1646.75 709,-1646.75 709,-1761.75"/>
+<polygon fill="none" stroke="black" points="401,-1737.25 401,-1761.75 709,-1761.75 709,-1737.25 401,-1737.25"/>
+<text text-anchor="start" x="539.62" y="-1744.45" font-family="arial" font-size="14.00">W15</text>
+<polygon fill="none" stroke="black" points="401,-1712.75 401,-1737.25 470.17,-1737.25 470.17,-1712.75 401,-1712.75"/>
+<text text-anchor="start" x="428.08" y="-1719.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="470.17,-1712.75 470.17,-1737.25 579.83,-1737.25 579.83,-1712.75 470.17,-1712.75"/>
+<text text-anchor="start" x="497.25" y="-1719.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="579.83,-1712.75 579.83,-1737.25 709,-1737.25 709,-1712.75 579.83,-1712.75"/>
+<text text-anchor="start" x="606.92" y="-1719.95" font-family="arial" font-size="14.00">16.5 Inches</text>
+<text text-anchor="start" x="459.62" y="-1697.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="403" y="-1677.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
+<text text-anchor="start" x="523.62" y="-1677.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="581.88" y="-1677.45" font-family="arial" font-size="14.00">ECU1:M4:ECU 12V</text>
+<polygon fill="#000000" stroke="none" points="401,-1670.75 401,-1672.75 709,-1672.75 709,-1670.75 401,-1670.75"/>
+<polygon fill="#ff0000" stroke="none" points="401,-1668.75 401,-1670.75 709,-1670.75 709,-1668.75 401,-1668.75"/>
+<polygon fill="#000000" stroke="none" points="401,-1666.75 401,-1668.75 709,-1668.75 709,-1666.75 401,-1666.75"/>
+<text text-anchor="start" x="459.62" y="-1651.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W15 -->
-<g id="edge52" class="edge">
+<g id="edge55" class="edge">
<title>ECUM:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1688C307.98,-1688.81 324.81,-1666.06 400,-1665.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1690C309.59,-1690 326.41,-1667.25 400,-1667.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1692C311.19,-1691.19 328.02,-1668.44 400,-1669.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1785.5C323.75,-1787.76 308.29,-1670.01 400,-1667.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1787.5C325.73,-1787.5 310.27,-1669.75 400,-1669.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1789.5C327.71,-1787.24 312.25,-1669.49 400,-1671.75"/>
</g>
<!-- W21 -->
<g id="node43" class="node">
<title>W21</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="681,-561.25 429,-561.25 429,-446.25 681,-446.25 681,-561.25"/>
-<polygon fill="none" stroke="black" points="429,-536.75 429,-561.25 681,-561.25 681,-536.75 429,-536.75"/>
-<text text-anchor="start" x="539.62" y="-543.95" font-family="arial" font-size="14.00">W21</text>
-<polygon fill="none" stroke="black" points="429,-512.25 429,-536.75 479.5,-536.75 479.5,-512.25 429,-512.25"/>
-<text text-anchor="start" x="446.75" y="-519.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="479.5,-512.25 479.5,-536.75 570.5,-536.75 570.5,-512.25 479.5,-512.25"/>
-<text text-anchor="start" x="497.25" y="-519.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="570.5,-512.25 570.5,-536.75 681,-536.75 681,-512.25 570.5,-512.25"/>
-<text text-anchor="start" x="588.25" y="-519.45" font-family="arial" font-size="14.00">21.0 Inches</text>
-<text text-anchor="start" x="487.62" y="-496.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="431" y="-476.95" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
-<text text-anchor="start" x="551.62" y="-476.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="609.62" y="-476.95" font-family="arial" font-size="14.00">LSU:3:12V</text>
-<polygon fill="#000000" stroke="none" points="429,-470.25 429,-472.25 681,-472.25 681,-470.25 429,-470.25"/>
-<polygon fill="#ff0000" stroke="none" points="429,-468.25 429,-470.25 681,-470.25 681,-468.25 429,-468.25"/>
-<polygon fill="#000000" stroke="none" points="429,-466.25 429,-468.25 681,-468.25 681,-466.25 429,-466.25"/>
-<text text-anchor="start" x="487.62" y="-450.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="681,-1118.75 429,-1118.75 429,-1003.75 681,-1003.75 681,-1118.75"/>
+<polygon fill="none" stroke="black" points="429,-1094.25 429,-1118.75 681,-1118.75 681,-1094.25 429,-1094.25"/>
+<text text-anchor="start" x="539.62" y="-1101.45" font-family="arial" font-size="14.00">W21</text>
+<polygon fill="none" stroke="black" points="429,-1069.75 429,-1094.25 479.5,-1094.25 479.5,-1069.75 429,-1069.75"/>
+<text text-anchor="start" x="446.75" y="-1076.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="479.5,-1069.75 479.5,-1094.25 570.5,-1094.25 570.5,-1069.75 479.5,-1069.75"/>
+<text text-anchor="start" x="497.25" y="-1076.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="570.5,-1069.75 570.5,-1094.25 681,-1094.25 681,-1069.75 570.5,-1069.75"/>
+<text text-anchor="start" x="588.25" y="-1076.95" font-family="arial" font-size="14.00">21.0 Inches</text>
+<text text-anchor="start" x="487.62" y="-1054.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="431" y="-1034.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
+<text text-anchor="start" x="551.62" y="-1034.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="609.62" y="-1034.45" font-family="arial" font-size="14.00">LSU:3:12V</text>
+<polygon fill="#000000" stroke="none" points="429,-1027.75 429,-1029.75 681,-1029.75 681,-1027.75 429,-1027.75"/>
+<polygon fill="#ff0000" stroke="none" points="429,-1025.75 429,-1027.75 681,-1027.75 681,-1025.75 429,-1025.75"/>
+<polygon fill="#000000" stroke="none" points="429,-1023.75 429,-1025.75 681,-1025.75 681,-1023.75 429,-1023.75"/>
+<text text-anchor="start" x="487.62" y="-1008.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W21 -->
-<g id="edge60" class="edge">
+<g id="edge63" class="edge">
<title>ECUM:e&#45;&#45;W21:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1688C508.69,-1690.56 151.47,-469.81 428,-467.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1690C510.61,-1690 153.39,-469.25 428,-469.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1692C512.53,-1689.44 155.31,-468.69 428,-471.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1785.5C583.05,-1788.61 77.62,-1027.86 428,-1024.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1787.5C584.71,-1787.5 79.29,-1026.75 428,-1026.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1789.5C586.38,-1786.39 80.95,-1025.64 428,-1028.75"/>
</g>
<!-- ECUF -->
<g id="node2" class="node">
<title>ECUF</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-4445.5 961,-4445.5 961,-4064 1188,-4064 1188,-4445.5"/>
-<polygon fill="none" stroke="black" points="961,-4421 961,-4445.5 1188,-4445.5 1188,-4421 961,-4421"/>
-<text text-anchor="start" x="1055" y="-4428.2" font-family="arial" font-size="14.00">ECUF</text>
-<polygon fill="none" stroke="black" points="961,-4396.5 961,-4421 1113.88,-4421 1113.88,-4396.5 961,-4396.5"/>
-<text text-anchor="start" x="982.31" y="-4403.7" font-family="arial" font-size="14.00">Delphi 15336205</text>
-<polygon fill="none" stroke="black" points="1113.88,-4396.5 1113.88,-4421 1188,-4421 1188,-4396.5 1113.88,-4396.5"/>
-<text text-anchor="start" x="1135.19" y="-4403.7" font-family="arial" font-size="14.00">7&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-4372.5 961,-4396.5 1111,-4396.5 1111,-4372.5 961,-4372.5"/>
-<text text-anchor="start" x="991.38" y="-4379.2" font-family="arial" font-size="14.00">Starter/Exciter</text>
-<polygon fill="none" stroke="black" points="1111,-4372.5 1111,-4396.5 1188,-4396.5 1188,-4372.5 1111,-4372.5"/>
-<text text-anchor="start" x="1145.38" y="-4379.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="961,-4348.5 961,-4372.5 1111,-4372.5 1111,-4348.5 961,-4348.5"/>
-<text text-anchor="start" x="1000.75" y="-4355.2" font-family="arial" font-size="14.00">Extra Out 2</text>
-<polygon fill="none" stroke="black" points="1111,-4348.5 1111,-4372.5 1188,-4372.5 1188,-4348.5 1111,-4348.5"/>
-<text text-anchor="start" x="1145.38" y="-4355.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="961,-4324.5 961,-4348.5 1111,-4348.5 1111,-4324.5 961,-4324.5"/>
-<text text-anchor="start" x="1000.75" y="-4331.2" font-family="arial" font-size="14.00">Extra Out 1</text>
-<polygon fill="none" stroke="black" points="1111,-4324.5 1111,-4348.5 1188,-4348.5 1188,-4324.5 1111,-4324.5"/>
-<text text-anchor="start" x="1145.38" y="-4331.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="961,-4300.5 961,-4324.5 1111,-4324.5 1111,-4300.5 961,-4300.5"/>
-<text text-anchor="start" x="1020.25" y="-4307.2" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="1111,-4300.5 1111,-4324.5 1188,-4324.5 1188,-4300.5 1111,-4300.5"/>
-<text text-anchor="start" x="1145.38" y="-4307.2" font-family="arial" font-size="14.00">5</text>
-<polygon fill="none" stroke="black" points="961,-4276.5 961,-4300.5 1111,-4300.5 1111,-4276.5 961,-4276.5"/>
-<text text-anchor="start" x="1013.12" y="-4283.2" font-family="arial" font-size="14.00">Ignition</text>
-<polygon fill="none" stroke="black" points="1111,-4276.5 1111,-4300.5 1188,-4300.5 1188,-4276.5 1111,-4276.5"/>
-<text text-anchor="start" x="1145.38" y="-4283.2" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="961,-4252.5 961,-4276.5 1111,-4276.5 1111,-4252.5 961,-4252.5"/>
-<text text-anchor="start" x="1002.25" y="-4259.2" font-family="arial" font-size="14.00">12V Servo</text>
-<polygon fill="none" stroke="black" points="1111,-4252.5 1111,-4276.5 1188,-4276.5 1188,-4252.5 1111,-4252.5"/>
-<text text-anchor="start" x="1141.25" y="-4259.2" font-family="arial" font-size="14.00">11</text>
-<polygon fill="none" stroke="black" points="961,-4228.5 961,-4252.5 1111,-4252.5 1111,-4228.5 961,-4228.5"/>
-<text text-anchor="start" x="1006" y="-4235.2" font-family="arial" font-size="14.00">12V ECU</text>
-<polygon fill="none" stroke="black" points="1111,-4228.5 1111,-4252.5 1188,-4252.5 1188,-4228.5 1111,-4228.5"/>
-<text text-anchor="start" x="1141.25" y="-4235.2" font-family="arial" font-size="14.00">12</text>
-<polygon fill="none" stroke="black" points="961,-4088.5 961,-4228.5 1188,-4228.5 1188,-4088.5 961,-4088.5"/>
-<image xlink:href="images\ECU4.png" width="219px" height="132px" preserveAspectRatio="xMinYMin meet" x="965" y="-4224.5"/>
-<polygon fill="none" stroke="black" points="961,-4064 961,-4088.5 1188,-4088.5 1188,-4064 961,-4064"/>
-<text text-anchor="start" x="965" y="-4071.2" font-family="arial" font-size="14.00">ECU 12 Pin Connector to Fusebox</text>
+<polygon fill="#ffffff" stroke="black" points="1188,-4238 961,-4238 961,-3856.5 1188,-3856.5 1188,-4238"/>
+<polygon fill="none" stroke="black" points="961,-4213.5 961,-4238 1188,-4238 1188,-4213.5 961,-4213.5"/>
+<text text-anchor="start" x="1055" y="-4220.7" font-family="arial" font-size="14.00">ECUF</text>
+<polygon fill="none" stroke="black" points="961,-4189 961,-4213.5 1113.88,-4213.5 1113.88,-4189 961,-4189"/>
+<text text-anchor="start" x="982.31" y="-4196.2" font-family="arial" font-size="14.00">Delphi 15336205</text>
+<polygon fill="none" stroke="black" points="1113.88,-4189 1113.88,-4213.5 1188,-4213.5 1188,-4189 1113.88,-4189"/>
+<text text-anchor="start" x="1135.19" y="-4196.2" font-family="arial" font-size="14.00">7&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-4165 961,-4189 1111,-4189 1111,-4165 961,-4165"/>
+<text text-anchor="start" x="991.38" y="-4171.7" font-family="arial" font-size="14.00">Starter/Exciter</text>
+<polygon fill="none" stroke="black" points="1111,-4165 1111,-4189 1188,-4189 1188,-4165 1111,-4165"/>
+<text text-anchor="start" x="1145.38" y="-4171.7" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="961,-4141 961,-4165 1111,-4165 1111,-4141 961,-4141"/>
+<text text-anchor="start" x="1000.75" y="-4147.7" font-family="arial" font-size="14.00">Extra Out 2</text>
+<polygon fill="none" stroke="black" points="1111,-4141 1111,-4165 1188,-4165 1188,-4141 1111,-4141"/>
+<text text-anchor="start" x="1145.38" y="-4147.7" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="961,-4117 961,-4141 1111,-4141 1111,-4117 961,-4117"/>
+<text text-anchor="start" x="1000.75" y="-4123.7" font-family="arial" font-size="14.00">Extra Out 1</text>
+<polygon fill="none" stroke="black" points="1111,-4117 1111,-4141 1188,-4141 1188,-4117 1111,-4117"/>
+<text text-anchor="start" x="1145.38" y="-4123.7" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="961,-4093 961,-4117 1111,-4117 1111,-4093 961,-4093"/>
+<text text-anchor="start" x="1020.25" y="-4099.7" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="1111,-4093 1111,-4117 1188,-4117 1188,-4093 1111,-4093"/>
+<text text-anchor="start" x="1145.38" y="-4099.7" font-family="arial" font-size="14.00">5</text>
+<polygon fill="none" stroke="black" points="961,-4069 961,-4093 1111,-4093 1111,-4069 961,-4069"/>
+<text text-anchor="start" x="1013.12" y="-4075.7" font-family="arial" font-size="14.00">Ignition</text>
+<polygon fill="none" stroke="black" points="1111,-4069 1111,-4093 1188,-4093 1188,-4069 1111,-4069"/>
+<text text-anchor="start" x="1145.38" y="-4075.7" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="961,-4045 961,-4069 1111,-4069 1111,-4045 961,-4045"/>
+<text text-anchor="start" x="1002.25" y="-4051.7" font-family="arial" font-size="14.00">12V Servo</text>
+<polygon fill="none" stroke="black" points="1111,-4045 1111,-4069 1188,-4069 1188,-4045 1111,-4045"/>
+<text text-anchor="start" x="1141.25" y="-4051.7" font-family="arial" font-size="14.00">11</text>
+<polygon fill="none" stroke="black" points="961,-4021 961,-4045 1111,-4045 1111,-4021 961,-4021"/>
+<text text-anchor="start" x="1006" y="-4027.7" font-family="arial" font-size="14.00">12V ECU</text>
+<polygon fill="none" stroke="black" points="1111,-4021 1111,-4045 1188,-4045 1188,-4021 1111,-4021"/>
+<text text-anchor="start" x="1141.25" y="-4027.7" font-family="arial" font-size="14.00">12</text>
+<polygon fill="none" stroke="black" points="961,-3881 961,-4021 1188,-4021 1188,-3881 961,-3881"/>
+<image xlink:href="images\ECU4.png" width="219px" height="132px" preserveAspectRatio="xMinYMin meet" x="965" y="-4017"/>
+<polygon fill="none" stroke="black" points="961,-3856.5 961,-3881 1188,-3881 1188,-3856.5 961,-3856.5"/>
+<text text-anchor="start" x="965" y="-3863.7" font-family="arial" font-size="14.00">ECU 12 Pin Connector to Fusebox</text>
</g>
<!-- W4 -->
<g id="node28" class="node">
<title>W4</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1753,-4369.25 1456,-4369.25 1456,-4228.25 1753,-4228.25 1753,-4369.25"/>
-<polygon fill="none" stroke="black" points="1456,-4344.75 1456,-4369.25 1753,-4369.25 1753,-4344.75 1456,-4344.75"/>
-<text text-anchor="start" x="1593.25" y="-4351.95" font-family="arial" font-size="14.00">W4</text>
-<polygon fill="none" stroke="black" points="1456,-4320.25 1456,-4344.75 1521.5,-4344.75 1521.5,-4320.25 1456,-4320.25"/>
-<text text-anchor="start" x="1481.25" y="-4327.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1521.5,-4320.25 1521.5,-4344.75 1627.5,-4344.75 1627.5,-4320.25 1521.5,-4320.25"/>
-<text text-anchor="start" x="1546.75" y="-4327.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1627.5,-4320.25 1627.5,-4344.75 1753,-4344.75 1753,-4320.25 1627.5,-4320.25"/>
-<text text-anchor="start" x="1652.75" y="-4327.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1517.62" y="-4304.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1458" y="-4284.95" font-family="arial" font-size="14.00">ECUF:12:12V ECU</text>
-<text text-anchor="start" x="1584.62" y="-4284.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1642.62" y="-4284.95" font-family="arial" font-size="14.00">Fuse Block:2:F1&#45;</text>
-<polygon fill="#000000" stroke="none" points="1456,-4278.25 1456,-4280.25 1753,-4280.25 1753,-4278.25 1456,-4278.25"/>
-<polygon fill="#ff0000" stroke="none" points="1456,-4276.25 1456,-4278.25 1753,-4278.25 1753,-4276.25 1456,-4276.25"/>
-<polygon fill="#000000" stroke="none" points="1456,-4274.25 1456,-4276.25 1753,-4276.25 1753,-4274.25 1456,-4274.25"/>
-<text text-anchor="start" x="1469.25" y="-4258.95" font-family="arial" font-size="14.00">ECUF:6:Ignition</text>
-<text text-anchor="start" x="1584.62" y="-4258.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1642.62" y="-4258.95" font-family="arial" font-size="14.00">Fuse Block:4:F2&#45;</text>
-<polygon fill="#000000" stroke="none" points="1456,-4252.25 1456,-4254.25 1753,-4254.25 1753,-4252.25 1456,-4252.25"/>
-<polygon fill="#ff0000" stroke="none" points="1456,-4250.25 1456,-4252.25 1753,-4252.25 1753,-4250.25 1456,-4250.25"/>
-<polygon fill="#000000" stroke="none" points="1456,-4248.25 1456,-4250.25 1753,-4250.25 1753,-4248.25 1456,-4248.25"/>
-<text text-anchor="start" x="1517.62" y="-4232.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1753,-4090.75 1456,-4090.75 1456,-3949.75 1753,-3949.75 1753,-4090.75"/>
+<polygon fill="none" stroke="black" points="1456,-4066.25 1456,-4090.75 1753,-4090.75 1753,-4066.25 1456,-4066.25"/>
+<text text-anchor="start" x="1593.25" y="-4073.45" font-family="arial" font-size="14.00">W4</text>
+<polygon fill="none" stroke="black" points="1456,-4041.75 1456,-4066.25 1521.5,-4066.25 1521.5,-4041.75 1456,-4041.75"/>
+<text text-anchor="start" x="1481.25" y="-4048.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1521.5,-4041.75 1521.5,-4066.25 1627.5,-4066.25 1627.5,-4041.75 1521.5,-4041.75"/>
+<text text-anchor="start" x="1546.75" y="-4048.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1627.5,-4041.75 1627.5,-4066.25 1753,-4066.25 1753,-4041.75 1627.5,-4041.75"/>
+<text text-anchor="start" x="1652.75" y="-4048.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1517.62" y="-4026.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1458" y="-4006.45" font-family="arial" font-size="14.00">ECUF:12:12V ECU</text>
+<text text-anchor="start" x="1584.62" y="-4006.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1642.62" y="-4006.45" font-family="arial" font-size="14.00">Fuse Block:2:F1&#45;</text>
+<polygon fill="#000000" stroke="none" points="1456,-3999.75 1456,-4001.75 1753,-4001.75 1753,-3999.75 1456,-3999.75"/>
+<polygon fill="#ff0000" stroke="none" points="1456,-3997.75 1456,-3999.75 1753,-3999.75 1753,-3997.75 1456,-3997.75"/>
+<polygon fill="#000000" stroke="none" points="1456,-3995.75 1456,-3997.75 1753,-3997.75 1753,-3995.75 1456,-3995.75"/>
+<text text-anchor="start" x="1469.25" y="-3980.45" font-family="arial" font-size="14.00">ECUF:6:Ignition</text>
+<text text-anchor="start" x="1584.62" y="-3980.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1642.62" y="-3980.45" font-family="arial" font-size="14.00">Fuse Block:4:F2&#45;</text>
+<polygon fill="#000000" stroke="none" points="1456,-3973.75 1456,-3975.75 1753,-3975.75 1753,-3973.75 1456,-3973.75"/>
+<polygon fill="#ff0000" stroke="none" points="1456,-3971.75 1456,-3973.75 1753,-3973.75 1753,-3971.75 1456,-3971.75"/>
+<polygon fill="#000000" stroke="none" points="1456,-3969.75 1456,-3971.75 1753,-3971.75 1753,-3969.75 1456,-3969.75"/>
+<text text-anchor="start" x="1517.62" y="-3954.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W4 -->
-<g id="edge16" class="edge">
+<g id="edge19" class="edge">
<title>ECUF:e&#45;&#45;W4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4238.5C1309.95,-4239.31 1337.26,-4276.06 1455,-4275.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4240.5C1308.35,-4240.5 1335.65,-4277.25 1455,-4277.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4242.5C1306.74,-4241.69 1334.05,-4278.44 1455,-4279.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4031C1306.64,-4031.74 1334.24,-3997.49 1455,-3996.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4033C1308.2,-4033 1335.8,-3998.75 1455,-3998.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4035C1309.76,-4034.26 1337.36,-4000.01 1455,-4000.75"/>
</g>
<!-- ECUF&#45;&#45;W4 -->
-<g id="edge18" class="edge">
+<g id="edge21" class="edge">
<title>ECUF:e&#45;&#45;W4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4286.5C1306.76,-4287.32 1334.01,-4250.07 1455,-4249.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4288.5C1308.38,-4288.5 1335.62,-4251.25 1455,-4251.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4290.5C1309.99,-4289.68 1337.24,-4252.43 1455,-4253.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4079C1314.65,-4080.8 1325.37,-3972.55 1455,-3970.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4081C1316.64,-4081 1327.36,-3972.75 1455,-3972.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4083C1318.63,-4081.2 1329.35,-3972.95 1455,-3974.75"/>
</g>
<!-- W7 -->
<g id="node30" class="node">
<title>W7</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1756.5,-3926.25 1452.5,-3926.25 1452.5,-3811.25 1756.5,-3811.25 1756.5,-3926.25"/>
-<polygon fill="none" stroke="black" points="1452.5,-3901.75 1452.5,-3926.25 1756.5,-3926.25 1756.5,-3901.75 1452.5,-3901.75"/>
-<text text-anchor="start" x="1593.25" y="-3908.95" font-family="arial" font-size="14.00">W7</text>
-<polygon fill="none" stroke="black" points="1452.5,-3877.25 1452.5,-3901.75 1520.33,-3901.75 1520.33,-3877.25 1452.5,-3877.25"/>
-<text text-anchor="start" x="1478.92" y="-3884.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1520.33,-3877.25 1520.33,-3901.75 1628.67,-3901.75 1628.67,-3877.25 1520.33,-3877.25"/>
-<text text-anchor="start" x="1546.75" y="-3884.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1628.67,-3877.25 1628.67,-3901.75 1756.5,-3901.75 1756.5,-3877.25 1628.67,-3877.25"/>
-<text text-anchor="start" x="1655.08" y="-3884.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1517.62" y="-3861.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1454.25" y="-3841.95" font-family="arial" font-size="14.00">ECUF:11:12V Servo</text>
-<text text-anchor="start" x="1588.12" y="-3841.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1646.12" y="-3841.95" font-family="arial" font-size="14.00">Fuse Block:6:F3&#45;</text>
-<polygon fill="#000000" stroke="none" points="1452.5,-3835.25 1452.5,-3837.25 1756.5,-3837.25 1756.5,-3835.25 1452.5,-3835.25"/>
-<polygon fill="#ff0000" stroke="none" points="1452.5,-3833.25 1452.5,-3835.25 1756.5,-3835.25 1756.5,-3833.25 1452.5,-3833.25"/>
-<polygon fill="#000000" stroke="none" points="1452.5,-3831.25 1452.5,-3833.25 1756.5,-3833.25 1756.5,-3831.25 1452.5,-3831.25"/>
-<text text-anchor="start" x="1517.62" y="-3815.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1756.5,-3925.75 1452.5,-3925.75 1452.5,-3810.75 1756.5,-3810.75 1756.5,-3925.75"/>
+<polygon fill="none" stroke="black" points="1452.5,-3901.25 1452.5,-3925.75 1756.5,-3925.75 1756.5,-3901.25 1452.5,-3901.25"/>
+<text text-anchor="start" x="1593.25" y="-3908.45" font-family="arial" font-size="14.00">W7</text>
+<polygon fill="none" stroke="black" points="1452.5,-3876.75 1452.5,-3901.25 1520.33,-3901.25 1520.33,-3876.75 1452.5,-3876.75"/>
+<text text-anchor="start" x="1478.92" y="-3883.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1520.33,-3876.75 1520.33,-3901.25 1628.67,-3901.25 1628.67,-3876.75 1520.33,-3876.75"/>
+<text text-anchor="start" x="1546.75" y="-3883.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1628.67,-3876.75 1628.67,-3901.25 1756.5,-3901.25 1756.5,-3876.75 1628.67,-3876.75"/>
+<text text-anchor="start" x="1655.08" y="-3883.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1517.62" y="-3861.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1454.25" y="-3841.45" font-family="arial" font-size="14.00">ECUF:11:12V Servo</text>
+<text text-anchor="start" x="1588.12" y="-3841.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1646.12" y="-3841.45" font-family="arial" font-size="14.00">Fuse Block:6:F3&#45;</text>
+<polygon fill="#000000" stroke="none" points="1452.5,-3834.75 1452.5,-3836.75 1756.5,-3836.75 1756.5,-3834.75 1452.5,-3834.75"/>
+<polygon fill="#ff0000" stroke="none" points="1452.5,-3832.75 1452.5,-3834.75 1756.5,-3834.75 1756.5,-3832.75 1452.5,-3832.75"/>
+<polygon fill="#000000" stroke="none" points="1452.5,-3830.75 1452.5,-3832.75 1756.5,-3832.75 1756.5,-3830.75 1452.5,-3830.75"/>
+<text text-anchor="start" x="1517.62" y="-3815.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W7 -->
-<g id="edge24" class="edge">
+<g id="edge27" class="edge">
<title>ECUF:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4262.5C1411.17,-4265.29 1225.66,-3835.04 1451.5,-3832.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4264.5C1413,-4264.5 1227.5,-3834.25 1451.5,-3834.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4266.5C1414.84,-4263.71 1229.33,-3833.46 1451.5,-3836.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4055C1340.19,-4057.39 1296.38,-3834.14 1451.5,-3831.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4057C1342.15,-4057 1298.35,-3833.75 1451.5,-3833.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4059C1344.12,-4056.61 1300.31,-3833.36 1451.5,-3835.75"/>
</g>
<!-- W16 -->
<g id="node40" class="node">
<title>W16</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1760.5,-4508.25 1448.5,-4508.25 1448.5,-4393.25 1760.5,-4393.25 1760.5,-4508.25"/>
-<polygon fill="none" stroke="black" points="1448.5,-4483.75 1448.5,-4508.25 1760.5,-4508.25 1760.5,-4483.75 1448.5,-4483.75"/>
-<text text-anchor="start" x="1589.12" y="-4490.95" font-family="arial" font-size="14.00">W16</text>
-<polygon fill="none" stroke="black" points="1448.5,-4459.25 1448.5,-4483.75 1519,-4483.75 1519,-4459.25 1448.5,-4459.25"/>
-<text text-anchor="start" x="1476.25" y="-4466.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1519,-4459.25 1519,-4483.75 1630,-4483.75 1630,-4459.25 1519,-4459.25"/>
-<text text-anchor="start" x="1546.75" y="-4466.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1630,-4459.25 1630,-4483.75 1760.5,-4483.75 1760.5,-4459.25 1630,-4459.25"/>
-<text text-anchor="start" x="1657.75" y="-4466.45" font-family="arial" font-size="14.00">27.0 Inches</text>
-<text text-anchor="start" x="1511.12" y="-4443.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1450.38" y="-4423.95" font-family="arial" font-size="14.00">ECUF:4:Extra Out 1</text>
-<text text-anchor="start" x="1579.12" y="-4423.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1637.25" y="-4423.95" font-family="arial" font-size="14.00">MAF Sensor:4:12V</text>
-<polygon fill="#000000" stroke="none" points="1448.5,-4417.25 1448.5,-4419.25 1760.5,-4419.25 1760.5,-4417.25 1448.5,-4417.25"/>
-<polygon fill="#00ff00" stroke="none" points="1448.5,-4415.25 1448.5,-4417.25 1760.5,-4417.25 1760.5,-4415.25 1448.5,-4415.25"/>
-<polygon fill="#000000" stroke="none" points="1448.5,-4413.25 1448.5,-4415.25 1760.5,-4415.25 1760.5,-4413.25 1448.5,-4413.25"/>
-<text text-anchor="start" x="1511.12" y="-4397.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1760.5,-4368.75 1448.5,-4368.75 1448.5,-4253.75 1760.5,-4253.75 1760.5,-4368.75"/>
+<polygon fill="none" stroke="black" points="1448.5,-4344.25 1448.5,-4368.75 1760.5,-4368.75 1760.5,-4344.25 1448.5,-4344.25"/>
+<text text-anchor="start" x="1589.12" y="-4351.45" font-family="arial" font-size="14.00">W16</text>
+<polygon fill="none" stroke="black" points="1448.5,-4319.75 1448.5,-4344.25 1519,-4344.25 1519,-4319.75 1448.5,-4319.75"/>
+<text text-anchor="start" x="1476.25" y="-4326.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1519,-4319.75 1519,-4344.25 1630,-4344.25 1630,-4319.75 1519,-4319.75"/>
+<text text-anchor="start" x="1546.75" y="-4326.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1630,-4319.75 1630,-4344.25 1760.5,-4344.25 1760.5,-4319.75 1630,-4319.75"/>
+<text text-anchor="start" x="1657.75" y="-4326.95" font-family="arial" font-size="14.00">27.0 Inches</text>
+<text text-anchor="start" x="1511.12" y="-4304.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1450.38" y="-4284.45" font-family="arial" font-size="14.00">ECUF:4:Extra Out 1</text>
+<text text-anchor="start" x="1579.12" y="-4284.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1637.25" y="-4284.45" font-family="arial" font-size="14.00">MAF Sensor:4:12V</text>
+<polygon fill="#000000" stroke="none" points="1448.5,-4277.75 1448.5,-4279.75 1760.5,-4279.75 1760.5,-4277.75 1448.5,-4277.75"/>
+<polygon fill="#00ff00" stroke="none" points="1448.5,-4275.75 1448.5,-4277.75 1760.5,-4277.75 1760.5,-4275.75 1448.5,-4275.75"/>
+<polygon fill="#000000" stroke="none" points="1448.5,-4273.75 1448.5,-4275.75 1760.5,-4275.75 1760.5,-4273.75 1448.5,-4273.75"/>
+<text text-anchor="start" x="1511.12" y="-4258.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W16 -->
-<g id="edge54" class="edge">
+<g id="edge57" class="edge">
<title>ECUF:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4334.5C1311.18,-4336.06 1329.22,-4415.81 1447.5,-4414.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4336.5C1309.23,-4336.5 1327.27,-4416.25 1447.5,-4416.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4338.5C1307.28,-4336.94 1325.32,-4416.69 1447.5,-4418.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4127C1323.33,-4129.08 1317.17,-4276.83 1447.5,-4274.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4129C1321.33,-4129 1315.17,-4276.75 1447.5,-4276.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4131C1319.33,-4128.92 1313.17,-4276.67 1447.5,-4278.75"/>
</g>
<!-- W17 -->
<g id="node41" class="node">
<title>W17</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1776.5,-5016.5 1432.5,-5016.5 1432.5,-4877 1776.5,-4877 1776.5,-5016.5"/>
-<polygon fill="none" stroke="black" points="1432.5,-4992 1432.5,-5016.5 1776.5,-5016.5 1776.5,-4992 1432.5,-4992"/>
-<text text-anchor="start" x="1589.12" y="-4999.2" font-family="arial" font-size="14.00">W17</text>
-<polygon fill="none" stroke="black" points="1432.5,-4967.5 1432.5,-4992 1513.67,-4992 1513.67,-4967.5 1432.5,-4967.5"/>
-<text text-anchor="start" x="1465.58" y="-4974.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1513.67,-4967.5 1513.67,-4992 1635.33,-4992 1635.33,-4967.5 1513.67,-4967.5"/>
-<text text-anchor="start" x="1546.75" y="-4974.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1635.33,-4967.5 1635.33,-4992 1776.5,-4992 1776.5,-4967.5 1635.33,-4967.5"/>
-<text text-anchor="start" x="1668.42" y="-4974.7" font-family="arial" font-size="14.00">37.0 Inches</text>
-<text text-anchor="start" x="1500.62" y="-4952.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1439.88" y="-4932.2" font-family="arial" font-size="14.00">ECUF:3:Extra Out 2</text>
-<text text-anchor="start" x="1579.62" y="-4932.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1649" y="-4932.2" font-family="arial" font-size="14.00">Tachometer:A:12V</text>
-<polygon fill="#000000" stroke="none" points="1432.5,-4925.5 1432.5,-4927.5 1776.5,-4927.5 1776.5,-4925.5 1432.5,-4925.5"/>
-<polygon fill="#00ff00" stroke="none" points="1432.5,-4923.5 1432.5,-4925.5 1776.5,-4925.5 1776.5,-4923.5 1432.5,-4923.5"/>
-<polygon fill="#000000" stroke="none" points="1432.5,-4921.5 1432.5,-4923.5 1776.5,-4923.5 1776.5,-4921.5 1432.5,-4921.5"/>
-<text text-anchor="start" x="1500.62" y="-4906.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1432.5,-4877 1432.5,-4901.5 1776.5,-4901.5 1776.5,-4877 1432.5,-4877"/>
-<text text-anchor="start" x="1436.5" y="-4884.2" font-family="arial" font-size="14.00">Pre&#45;attached wire is of sufficient length to reach ECU.</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1776.5,-4532 1432.5,-4532 1432.5,-4392.5 1776.5,-4392.5 1776.5,-4532"/>
+<polygon fill="none" stroke="black" points="1432.5,-4507.5 1432.5,-4532 1776.5,-4532 1776.5,-4507.5 1432.5,-4507.5"/>
+<text text-anchor="start" x="1589.12" y="-4514.7" font-family="arial" font-size="14.00">W17</text>
+<polygon fill="none" stroke="black" points="1432.5,-4483 1432.5,-4507.5 1513.67,-4507.5 1513.67,-4483 1432.5,-4483"/>
+<text text-anchor="start" x="1465.58" y="-4490.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1513.67,-4483 1513.67,-4507.5 1635.33,-4507.5 1635.33,-4483 1513.67,-4483"/>
+<text text-anchor="start" x="1546.75" y="-4490.2" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1635.33,-4483 1635.33,-4507.5 1776.5,-4507.5 1776.5,-4483 1635.33,-4483"/>
+<text text-anchor="start" x="1668.42" y="-4490.2" font-family="arial" font-size="14.00">37.0 Inches</text>
+<text text-anchor="start" x="1500.62" y="-4467.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1439.88" y="-4447.7" font-family="arial" font-size="14.00">ECUF:3:Extra Out 2</text>
+<text text-anchor="start" x="1579.62" y="-4447.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1649" y="-4447.7" font-family="arial" font-size="14.00">Tachometer:A:12V</text>
+<polygon fill="#000000" stroke="none" points="1432.5,-4441 1432.5,-4443 1776.5,-4443 1776.5,-4441 1432.5,-4441"/>
+<polygon fill="#00ff00" stroke="none" points="1432.5,-4439 1432.5,-4441 1776.5,-4441 1776.5,-4439 1432.5,-4439"/>
+<polygon fill="#000000" stroke="none" points="1432.5,-4437 1432.5,-4439 1776.5,-4439 1776.5,-4437 1432.5,-4437"/>
+<text text-anchor="start" x="1500.62" y="-4421.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1432.5,-4392.5 1432.5,-4417 1776.5,-4417 1776.5,-4392.5 1432.5,-4392.5"/>
+<text text-anchor="start" x="1436.5" y="-4399.7" font-family="arial" font-size="14.00">Pre&#45;attached wire is of sufficient length to reach ECU.</text>
</g>
<!-- ECUF&#45;&#45;W17 -->
-<g id="edge56" class="edge">
+<g id="edge59" class="edge">
<title>ECUF:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4358.5C1463.62,-4361.45 1160.41,-4925.45 1431.5,-4922.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4360.5C1461.85,-4360.5 1158.65,-4924.5 1431.5,-4924.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4362.5C1460.09,-4359.55 1156.88,-4923.55 1431.5,-4926.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4151C1357.9,-4153.61 1266.41,-4440.61 1431.5,-4438"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4153C1355.99,-4153 1264.51,-4440 1431.5,-4440"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4155C1354.09,-4152.39 1262.6,-4439.39 1431.5,-4442"/>
</g>
<!-- W18 -->
<g id="node42" class="node">
<title>W18</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1740.5,-4065.25 1468.5,-4065.25 1468.5,-3950.25 1740.5,-3950.25 1740.5,-4065.25"/>
-<polygon fill="none" stroke="black" points="1468.5,-4040.75 1468.5,-4065.25 1740.5,-4065.25 1740.5,-4040.75 1468.5,-4040.75"/>
-<text text-anchor="start" x="1589.12" y="-4047.95" font-family="arial" font-size="14.00">W18</text>
-<polygon fill="none" stroke="black" points="1468.5,-4016.25 1468.5,-4040.75 1525.67,-4040.75 1525.67,-4016.25 1468.5,-4016.25"/>
-<text text-anchor="start" x="1489.58" y="-4023.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1525.67,-4016.25 1525.67,-4040.75 1623.33,-4040.75 1623.33,-4016.25 1525.67,-4016.25"/>
-<text text-anchor="start" x="1546.75" y="-4023.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1623.33,-4016.25 1623.33,-4040.75 1740.5,-4040.75 1740.5,-4016.25 1623.33,-4016.25"/>
-<text text-anchor="start" x="1644.42" y="-4023.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1511.62" y="-4000.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1470.38" y="-3980.95" font-family="arial" font-size="14.00">ECUF:5:GND</text>
-<text text-anchor="start" x="1560.38" y="-3980.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1617.25" y="-3980.95" font-family="arial" font-size="14.00">Negative Bus Bar:3</text>
-<polygon fill="#000000" stroke="none" points="1468.5,-3974.25 1468.5,-3976.25 1740.5,-3976.25 1740.5,-3974.25 1468.5,-3974.25"/>
-<polygon fill="#000000" stroke="none" points="1468.5,-3972.25 1468.5,-3974.25 1740.5,-3974.25 1740.5,-3972.25 1468.5,-3972.25"/>
-<polygon fill="#000000" stroke="none" points="1468.5,-3970.25 1468.5,-3972.25 1740.5,-3972.25 1740.5,-3970.25 1468.5,-3970.25"/>
-<text text-anchor="start" x="1511.62" y="-3954.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1740.5,-4229.75 1468.5,-4229.75 1468.5,-4114.75 1740.5,-4114.75 1740.5,-4229.75"/>
+<polygon fill="none" stroke="black" points="1468.5,-4205.25 1468.5,-4229.75 1740.5,-4229.75 1740.5,-4205.25 1468.5,-4205.25"/>
+<text text-anchor="start" x="1589.12" y="-4212.45" font-family="arial" font-size="14.00">W18</text>
+<polygon fill="none" stroke="black" points="1468.5,-4180.75 1468.5,-4205.25 1525.67,-4205.25 1525.67,-4180.75 1468.5,-4180.75"/>
+<text text-anchor="start" x="1489.58" y="-4187.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1525.67,-4180.75 1525.67,-4205.25 1623.33,-4205.25 1623.33,-4180.75 1525.67,-4180.75"/>
+<text text-anchor="start" x="1546.75" y="-4187.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1623.33,-4180.75 1623.33,-4205.25 1740.5,-4205.25 1740.5,-4180.75 1623.33,-4180.75"/>
+<text text-anchor="start" x="1644.42" y="-4187.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1511.62" y="-4165.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1470.38" y="-4145.45" font-family="arial" font-size="14.00">ECUF:5:GND</text>
+<text text-anchor="start" x="1560.38" y="-4145.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1617.25" y="-4145.45" font-family="arial" font-size="14.00">Negative Bus Bar:3</text>
+<polygon fill="#000000" stroke="none" points="1468.5,-4138.75 1468.5,-4140.75 1740.5,-4140.75 1740.5,-4138.75 1468.5,-4138.75"/>
+<polygon fill="#000000" stroke="none" points="1468.5,-4136.75 1468.5,-4138.75 1740.5,-4138.75 1740.5,-4136.75 1468.5,-4136.75"/>
+<polygon fill="#000000" stroke="none" points="1468.5,-4134.75 1468.5,-4136.75 1740.5,-4136.75 1740.5,-4134.75 1468.5,-4134.75"/>
+<text text-anchor="start" x="1511.62" y="-4119.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W18 -->
-<g id="edge58" class="edge">
+<g id="edge61" class="edge">
<title>ECUF:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4310.5C1382.18,-4313.13 1270.52,-3973.88 1467.5,-3971.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4312.5C1384.08,-4312.5 1272.42,-3973.25 1467.5,-3973.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4314.5C1385.98,-4311.87 1274.32,-3972.62 1467.5,-3975.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4103C1315.12,-4103.67 1344.36,-4136.42 1467.5,-4135.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4105C1313.63,-4105 1342.87,-4137.75 1467.5,-4137.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4107C1312.14,-4106.33 1341.38,-4139.08 1467.5,-4139.75"/>
</g>
<!-- ECU1 -->
<g id="node3" class="node">
<title>ECU1</title>
-<polygon fill="#ffffff" stroke="black" points="1275,-1920 874,-1920 874,-1475.5 1275,-1475.5 1275,-1920"/>
-<polygon fill="none" stroke="black" points="874,-1895.5 874,-1920 1275,-1920 1275,-1895.5 874,-1895.5"/>
-<text text-anchor="start" x="1055.38" y="-1902.7" font-family="arial" font-size="14.00">ECU1</text>
-<polygon fill="none" stroke="black" points="874,-1871 874,-1895.5 1116.5,-1895.5 1116.5,-1871 874,-1871"/>
-<text text-anchor="start" x="937.5" y="-1878.2" font-family="arial" font-size="14.00">Molex 643203311</text>
-<polygon fill="none" stroke="black" points="1116.5,-1871 1116.5,-1895.5 1275,-1895.5 1275,-1871 1116.5,-1871"/>
-<text text-anchor="start" x="1180" y="-1878.2" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="874,-1847 874,-1871 1036.5,-1871 1036.5,-1847 874,-1847"/>
-<text text-anchor="start" x="946.25" y="-1853.7" font-family="arial" font-size="14.00">B4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1847 1036.5,-1871 1275,-1871 1275,-1847 1036.5,-1847"/>
-<text text-anchor="start" x="1110.75" y="-1853.7" font-family="arial" font-size="14.00">Extra Output 1</text>
-<polygon fill="none" stroke="black" points="874,-1823 874,-1847 1036.5,-1847 1036.5,-1823 874,-1823"/>
-<text text-anchor="start" x="945.88" y="-1829.7" font-family="arial" font-size="14.00">C4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1823 1036.5,-1847 1275,-1847 1275,-1823 1036.5,-1823"/>
-<text text-anchor="start" x="1110.75" y="-1829.7" font-family="arial" font-size="14.00">Extra Output 2</text>
-<polygon fill="none" stroke="black" points="874,-1799 874,-1823 1036.5,-1823 1036.5,-1799 874,-1799"/>
-<text text-anchor="start" x="947" y="-1805.7" font-family="arial" font-size="14.00">L4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1799 1036.5,-1823 1275,-1823 1275,-1799 1036.5,-1799"/>
-<text text-anchor="start" x="1108.12" y="-1805.7" font-family="arial" font-size="14.00">Engine Ground</text>
-<polygon fill="none" stroke="black" points="874,-1775 874,-1799 1036.5,-1799 1036.5,-1775 874,-1775"/>
-<text text-anchor="start" x="945.5" y="-1781.7" font-family="arial" font-size="14.00">M4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1775 1036.5,-1799 1275,-1799 1275,-1775 1036.5,-1775"/>
-<text text-anchor="start" x="1125.75" y="-1781.7" font-family="arial" font-size="14.00">ECU 12V</text>
-<polyline fill="none" stroke="black" points="1275,-1500 1275,-1775 874,-1775 874,-1500"/>
-<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="878" y="-1771"/>
-<polyline fill="none" stroke="black" points="874,-1500 874,-1475.5 1275,-1475.5 1275,-1500"/>
-<text text-anchor="start" x="1002.5" y="-1482.7" font-family="arial" font-size="14.00">Connector 643201311</text>
+<polygon fill="#ffffff" stroke="black" points="1275,-1919.5 874,-1919.5 874,-1475 1275,-1475 1275,-1919.5"/>
+<polygon fill="none" stroke="black" points="874,-1895 874,-1919.5 1275,-1919.5 1275,-1895 874,-1895"/>
+<text text-anchor="start" x="1055.38" y="-1902.2" font-family="arial" font-size="14.00">ECU1</text>
+<polygon fill="none" stroke="black" points="874,-1870.5 874,-1895 1116.5,-1895 1116.5,-1870.5 874,-1870.5"/>
+<text text-anchor="start" x="937.5" y="-1877.7" font-family="arial" font-size="14.00">Molex 643203311</text>
+<polygon fill="none" stroke="black" points="1116.5,-1870.5 1116.5,-1895 1275,-1895 1275,-1870.5 1116.5,-1870.5"/>
+<text text-anchor="start" x="1180" y="-1877.7" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="874,-1846.5 874,-1870.5 1036.5,-1870.5 1036.5,-1846.5 874,-1846.5"/>
+<text text-anchor="start" x="946.25" y="-1853.2" font-family="arial" font-size="14.00">B4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1846.5 1036.5,-1870.5 1275,-1870.5 1275,-1846.5 1036.5,-1846.5"/>
+<text text-anchor="start" x="1110.75" y="-1853.2" font-family="arial" font-size="14.00">Extra Output 1</text>
+<polygon fill="none" stroke="black" points="874,-1822.5 874,-1846.5 1036.5,-1846.5 1036.5,-1822.5 874,-1822.5"/>
+<text text-anchor="start" x="945.88" y="-1829.2" font-family="arial" font-size="14.00">C4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1822.5 1036.5,-1846.5 1275,-1846.5 1275,-1822.5 1036.5,-1822.5"/>
+<text text-anchor="start" x="1110.75" y="-1829.2" font-family="arial" font-size="14.00">Extra Output 2</text>
+<polygon fill="none" stroke="black" points="874,-1798.5 874,-1822.5 1036.5,-1822.5 1036.5,-1798.5 874,-1798.5"/>
+<text text-anchor="start" x="947" y="-1805.2" font-family="arial" font-size="14.00">L4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1798.5 1036.5,-1822.5 1275,-1822.5 1275,-1798.5 1036.5,-1798.5"/>
+<text text-anchor="start" x="1108.12" y="-1805.2" font-family="arial" font-size="14.00">Engine Ground</text>
+<polygon fill="none" stroke="black" points="874,-1774.5 874,-1798.5 1036.5,-1798.5 1036.5,-1774.5 874,-1774.5"/>
+<text text-anchor="start" x="945.5" y="-1781.2" font-family="arial" font-size="14.00">M4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1774.5 1036.5,-1798.5 1275,-1798.5 1275,-1774.5 1036.5,-1774.5"/>
+<text text-anchor="start" x="1125.75" y="-1781.2" font-family="arial" font-size="14.00">ECU 12V</text>
+<polyline fill="none" stroke="black" points="1275,-1499.5 1275,-1774.5 874,-1774.5 874,-1499.5"/>
+<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="878" y="-1770.5"/>
+<polyline fill="none" stroke="black" points="874,-1499.5 874,-1475 1275,-1475 1275,-1499.5"/>
+<text text-anchor="start" x="1002.5" y="-1482.2" font-family="arial" font-size="14.00">Connector 643201311</text>
</g>
<!-- Coil Pack 1 -->
<g id="node4" class="node">
<title>Coil Pack 1</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-3396.25 961,-3396.25 961,-3051.25 1188,-3051.25 1188,-3396.25"/>
-<polygon fill="none" stroke="black" points="961,-3371.75 961,-3396.25 1188,-3396.25 1188,-3371.75 961,-3371.75"/>
-<text text-anchor="start" x="1038.5" y="-3378.95" font-family="arial" font-size="14.00">Coil Pack 1</text>
-<polygon fill="none" stroke="black" points="961,-3347.25 961,-3371.75 1113.88,-3371.75 1113.88,-3347.25 961,-3347.25"/>
-<text text-anchor="start" x="982.31" y="-3354.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-3347.25 1113.88,-3371.75 1188,-3371.75 1188,-3347.25 1113.88,-3347.25"/>
-<text text-anchor="start" x="1135.19" y="-3354.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-3323.25 961,-3347.25 1008,-3347.25 1008,-3323.25 961,-3323.25"/>
-<text text-anchor="start" x="979.62" y="-3329.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-3323.25 1008,-3347.25 1141,-3347.25 1141,-3323.25 1008,-3323.25"/>
-<text text-anchor="start" x="1047.12" y="-3329.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-3323.25 1141,-3347.25 1188,-3347.25 1188,-3323.25 1141,-3323.25"/>
-<text text-anchor="start" x="1159.62" y="-3329.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-3299.25 961,-3323.25 1008,-3323.25 1008,-3299.25 961,-3299.25"/>
-<text text-anchor="start" x="979.62" y="-3305.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-3299.25 1008,-3323.25 1141,-3323.25 1141,-3299.25 1008,-3299.25"/>
-<text text-anchor="start" x="1026.12" y="-3305.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-3299.25 1141,-3323.25 1188,-3323.25 1188,-3299.25 1141,-3299.25"/>
-<text text-anchor="start" x="1159.62" y="-3305.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-3275.25 961,-3299.25 1008,-3299.25 1008,-3275.25 961,-3275.25"/>
-<text text-anchor="start" x="979.25" y="-3281.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-3275.25 1008,-3299.25 1141,-3299.25 1141,-3275.25 1008,-3275.25"/>
-<text text-anchor="start" x="1032.12" y="-3281.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-3275.25 1141,-3299.25 1188,-3299.25 1188,-3275.25 1141,-3275.25"/>
-<text text-anchor="start" x="1159.25" y="-3281.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-3251.25 961,-3275.25 1008,-3275.25 1008,-3251.25 961,-3251.25"/>
-<text text-anchor="start" x="979.25" y="-3257.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-3251.25 1008,-3275.25 1141,-3275.25 1141,-3251.25 1008,-3251.25"/>
-<text text-anchor="start" x="1026.88" y="-3257.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-3251.25 1141,-3275.25 1188,-3275.25 1188,-3251.25 1141,-3251.25"/>
-<text text-anchor="start" x="1159.25" y="-3257.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-3227.25 961,-3251.25 1008,-3251.25 1008,-3227.25 961,-3227.25"/>
-<text text-anchor="start" x="979.62" y="-3233.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-3227.25 1008,-3251.25 1141,-3251.25 1141,-3227.25 1008,-3227.25"/>
-<text text-anchor="start" x="1030.62" y="-3233.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-3227.25 1141,-3251.25 1188,-3251.25 1188,-3227.25 1141,-3227.25"/>
-<text text-anchor="start" x="1159.62" y="-3233.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-3051.25 961,-3227.25 1188,-3227.25 1188,-3051.25 961,-3051.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-3223.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-3395.75 961,-3395.75 961,-3050.75 1188,-3050.75 1188,-3395.75"/>
+<polygon fill="none" stroke="black" points="961,-3371.25 961,-3395.75 1188,-3395.75 1188,-3371.25 961,-3371.25"/>
+<text text-anchor="start" x="1038.5" y="-3378.45" font-family="arial" font-size="14.00">Coil Pack 1</text>
+<polygon fill="none" stroke="black" points="961,-3346.75 961,-3371.25 1113.88,-3371.25 1113.88,-3346.75 961,-3346.75"/>
+<text text-anchor="start" x="982.31" y="-3353.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-3346.75 1113.88,-3371.25 1188,-3371.25 1188,-3346.75 1113.88,-3346.75"/>
+<text text-anchor="start" x="1135.19" y="-3353.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-3322.75 961,-3346.75 1008,-3346.75 1008,-3322.75 961,-3322.75"/>
+<text text-anchor="start" x="979.62" y="-3329.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-3322.75 1008,-3346.75 1141,-3346.75 1141,-3322.75 1008,-3322.75"/>
+<text text-anchor="start" x="1047.12" y="-3329.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-3322.75 1141,-3346.75 1188,-3346.75 1188,-3322.75 1141,-3322.75"/>
+<text text-anchor="start" x="1159.62" y="-3329.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-3298.75 961,-3322.75 1008,-3322.75 1008,-3298.75 961,-3298.75"/>
+<text text-anchor="start" x="979.62" y="-3305.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-3298.75 1008,-3322.75 1141,-3322.75 1141,-3298.75 1008,-3298.75"/>
+<text text-anchor="start" x="1026.12" y="-3305.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-3298.75 1141,-3322.75 1188,-3322.75 1188,-3298.75 1141,-3298.75"/>
+<text text-anchor="start" x="1159.62" y="-3305.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-3274.75 961,-3298.75 1008,-3298.75 1008,-3274.75 961,-3274.75"/>
+<text text-anchor="start" x="979.25" y="-3281.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-3274.75 1008,-3298.75 1141,-3298.75 1141,-3274.75 1008,-3274.75"/>
+<text text-anchor="start" x="1032.12" y="-3281.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-3274.75 1141,-3298.75 1188,-3298.75 1188,-3274.75 1141,-3274.75"/>
+<text text-anchor="start" x="1159.25" y="-3281.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-3250.75 961,-3274.75 1008,-3274.75 1008,-3250.75 961,-3250.75"/>
+<text text-anchor="start" x="979.25" y="-3257.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-3250.75 1008,-3274.75 1141,-3274.75 1141,-3250.75 1008,-3250.75"/>
+<text text-anchor="start" x="1026.88" y="-3257.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-3250.75 1141,-3274.75 1188,-3274.75 1188,-3250.75 1141,-3250.75"/>
+<text text-anchor="start" x="1159.25" y="-3257.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-3226.75 961,-3250.75 1008,-3250.75 1008,-3226.75 961,-3226.75"/>
+<text text-anchor="start" x="979.62" y="-3233.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-3226.75 1008,-3250.75 1141,-3250.75 1141,-3226.75 1008,-3226.75"/>
+<text text-anchor="start" x="1030.62" y="-3233.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-3226.75 1141,-3250.75 1188,-3250.75 1188,-3226.75 1141,-3226.75"/>
+<text text-anchor="start" x="1159.62" y="-3233.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-3050.75 961,-3226.75 1188,-3226.75 1188,-3050.75 961,-3050.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-3222.75"/>
</g>
<!-- W10 -->
<g id="node32" class="node">
<title>W10</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-3180.25 1484.5,-3180.25 1484.5,-3039.25 1724.5,-3039.25 1724.5,-3180.25"/>
-<polygon fill="none" stroke="black" points="1484.5,-3155.75 1484.5,-3180.25 1724.5,-3180.25 1724.5,-3155.75 1484.5,-3155.75"/>
-<text text-anchor="start" x="1589.12" y="-3162.95" font-family="arial" font-size="14.00">W10</text>
-<polygon fill="none" stroke="black" points="1484.5,-3131.25 1484.5,-3155.75 1531,-3155.75 1531,-3131.25 1484.5,-3131.25"/>
-<text text-anchor="start" x="1500.25" y="-3138.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1531,-3131.25 1531,-3155.75 1618,-3155.75 1618,-3131.25 1531,-3131.25"/>
-<text text-anchor="start" x="1546.75" y="-3138.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1618,-3131.25 1618,-3155.75 1724.5,-3155.75 1724.5,-3131.25 1618,-3131.25"/>
-<text text-anchor="start" x="1633.75" y="-3138.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1571.62" y="-3115.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1486.12" y="-3095.95" font-family="arial" font-size="14.00">Coil Pack 1:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-3095.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-3089.25 1484.5,-3091.25 1724.5,-3091.25 1724.5,-3089.25 1484.5,-3089.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-3087.25 1484.5,-3089.25 1724.5,-3089.25 1724.5,-3087.25 1484.5,-3087.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-3085.25 1484.5,-3087.25 1724.5,-3087.25 1724.5,-3085.25 1484.5,-3085.25"/>
-<text text-anchor="start" x="1486.12" y="-3069.95" font-family="arial" font-size="14.00">Coil Pack 4:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-3069.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-3063.25 1484.5,-3065.25 1724.5,-3065.25 1724.5,-3063.25 1484.5,-3063.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-3061.25 1484.5,-3063.25 1724.5,-3063.25 1724.5,-3061.25 1484.5,-3061.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-3059.25 1484.5,-3061.25 1724.5,-3061.25 1724.5,-3059.25 1484.5,-3059.25"/>
-<text text-anchor="start" x="1571.62" y="-3043.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-3206.75 1484.5,-3206.75 1484.5,-3065.75 1724.5,-3065.75 1724.5,-3206.75"/>
+<polygon fill="none" stroke="black" points="1484.5,-3182.25 1484.5,-3206.75 1724.5,-3206.75 1724.5,-3182.25 1484.5,-3182.25"/>
+<text text-anchor="start" x="1589.12" y="-3189.45" font-family="arial" font-size="14.00">W10</text>
+<polygon fill="none" stroke="black" points="1484.5,-3157.75 1484.5,-3182.25 1531,-3182.25 1531,-3157.75 1484.5,-3157.75"/>
+<text text-anchor="start" x="1500.25" y="-3164.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1531,-3157.75 1531,-3182.25 1618,-3182.25 1618,-3157.75 1531,-3157.75"/>
+<text text-anchor="start" x="1546.75" y="-3164.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1618,-3157.75 1618,-3182.25 1724.5,-3182.25 1724.5,-3157.75 1618,-3157.75"/>
+<text text-anchor="start" x="1633.75" y="-3164.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1571.62" y="-3142.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1486.12" y="-3122.45" font-family="arial" font-size="14.00">Coil Pack 1:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-3122.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-3115.75 1484.5,-3117.75 1724.5,-3117.75 1724.5,-3115.75 1484.5,-3115.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-3113.75 1484.5,-3115.75 1724.5,-3115.75 1724.5,-3113.75 1484.5,-3113.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-3111.75 1484.5,-3113.75 1724.5,-3113.75 1724.5,-3111.75 1484.5,-3111.75"/>
+<text text-anchor="start" x="1486.12" y="-3096.45" font-family="arial" font-size="14.00">Coil Pack 4:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-3096.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-3089.75 1484.5,-3091.75 1724.5,-3091.75 1724.5,-3089.75 1484.5,-3089.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-3087.75 1484.5,-3089.75 1724.5,-3089.75 1724.5,-3087.75 1484.5,-3087.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-3085.75 1484.5,-3087.75 1724.5,-3087.75 1724.5,-3085.75 1484.5,-3085.75"/>
+<text text-anchor="start" x="1571.62" y="-3070.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 1&#45;&#45;W10 -->
-<g id="edge28" class="edge">
+<g id="edge31" class="edge">
<title>Coil Pack 1:e&#45;&#45;W10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3285.25C1344.98,-3287.46 1323.54,-3088.46 1483.5,-3086.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-3287.25C1346.97,-3287.25 1325.53,-3088.25 1483.5,-3088.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3289.25C1348.96,-3287.04 1327.52,-3088.04 1483.5,-3090.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3284.75C1338.58,-3286.85 1329.93,-3114.85 1483.5,-3112.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-3286.75C1340.58,-3286.75 1331.92,-3114.75 1483.5,-3114.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3288.75C1342.57,-3286.65 1333.92,-3114.65 1483.5,-3116.75"/>
</g>
<!-- W20 -->
<g id="node34" class="node">
<title>W20</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1790,-2920.25 1419,-2920.25 1419,-2727.25 1790,-2727.25 1790,-2920.25"/>
-<polygon fill="none" stroke="black" points="1419,-2895.75 1419,-2920.25 1790,-2920.25 1790,-2895.75 1419,-2895.75"/>
-<text text-anchor="start" x="1589.12" y="-2902.95" font-family="arial" font-size="14.00">W20</text>
-<polygon fill="none" stroke="black" points="1419,-2871.25 1419,-2895.75 1509.17,-2895.75 1509.17,-2871.25 1419,-2871.25"/>
-<text text-anchor="start" x="1456.58" y="-2878.45" font-family="arial" font-size="14.00">4x</text>
-<polygon fill="none" stroke="black" points="1509.17,-2871.25 1509.17,-2895.75 1639.83,-2895.75 1639.83,-2871.25 1509.17,-2871.25"/>
-<text text-anchor="start" x="1546.75" y="-2878.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1639.83,-2871.25 1639.83,-2895.75 1790,-2895.75 1790,-2871.25 1639.83,-2871.25"/>
-<text text-anchor="start" x="1677.42" y="-2878.45" font-family="arial" font-size="14.00">60.0 Inches</text>
-<text text-anchor="start" x="1511.62" y="-2855.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1420.88" y="-2835.95" font-family="arial" font-size="14.00">Coil Pack 1:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2835.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2835.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2829.25 1419,-2831.25 1790,-2831.25 1790,-2829.25 1419,-2829.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2827.25 1419,-2829.25 1790,-2829.25 1790,-2827.25 1419,-2827.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2825.25 1419,-2827.25 1790,-2827.25 1790,-2825.25 1419,-2825.25"/>
-<text text-anchor="start" x="1420.88" y="-2809.95" font-family="arial" font-size="14.00">Coil Pack 2:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2809.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2809.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2803.25 1419,-2805.25 1790,-2805.25 1790,-2803.25 1419,-2803.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2801.25 1419,-2803.25 1790,-2803.25 1790,-2801.25 1419,-2801.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2799.25 1419,-2801.25 1790,-2801.25 1790,-2799.25 1419,-2799.25"/>
-<text text-anchor="start" x="1420.88" y="-2783.95" font-family="arial" font-size="14.00">Coil Pack 3:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2783.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2783.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2777.25 1419,-2779.25 1790,-2779.25 1790,-2777.25 1419,-2777.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2775.25 1419,-2777.25 1790,-2777.25 1790,-2775.25 1419,-2775.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2773.25 1419,-2775.25 1790,-2775.25 1790,-2773.25 1419,-2773.25"/>
-<text text-anchor="start" x="1420.88" y="-2757.95" font-family="arial" font-size="14.00">Coil Pack 4:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2757.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2757.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2751.25 1419,-2753.25 1790,-2753.25 1790,-2751.25 1419,-2751.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2749.25 1419,-2751.25 1790,-2751.25 1790,-2749.25 1419,-2749.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2747.25 1419,-2749.25 1790,-2749.25 1790,-2747.25 1419,-2747.25"/>
-<text text-anchor="start" x="1511.62" y="-2731.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1790,-2801.75 1419,-2801.75 1419,-2608.75 1790,-2608.75 1790,-2801.75"/>
+<polygon fill="none" stroke="black" points="1419,-2777.25 1419,-2801.75 1790,-2801.75 1790,-2777.25 1419,-2777.25"/>
+<text text-anchor="start" x="1589.12" y="-2784.45" font-family="arial" font-size="14.00">W20</text>
+<polygon fill="none" stroke="black" points="1419,-2752.75 1419,-2777.25 1509.17,-2777.25 1509.17,-2752.75 1419,-2752.75"/>
+<text text-anchor="start" x="1456.58" y="-2759.95" font-family="arial" font-size="14.00">4x</text>
+<polygon fill="none" stroke="black" points="1509.17,-2752.75 1509.17,-2777.25 1639.83,-2777.25 1639.83,-2752.75 1509.17,-2752.75"/>
+<text text-anchor="start" x="1546.75" y="-2759.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1639.83,-2752.75 1639.83,-2777.25 1790,-2777.25 1790,-2752.75 1639.83,-2752.75"/>
+<text text-anchor="start" x="1677.42" y="-2759.95" font-family="arial" font-size="14.00">60.0 Inches</text>
+<text text-anchor="start" x="1511.62" y="-2737.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1420.88" y="-2717.45" font-family="arial" font-size="14.00">Coil Pack 1:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2717.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2717.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2710.75 1419,-2712.75 1790,-2712.75 1790,-2710.75 1419,-2710.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2708.75 1419,-2710.75 1790,-2710.75 1790,-2708.75 1419,-2708.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2706.75 1419,-2708.75 1790,-2708.75 1790,-2706.75 1419,-2706.75"/>
+<text text-anchor="start" x="1420.88" y="-2691.45" font-family="arial" font-size="14.00">Coil Pack 2:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2691.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2691.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2684.75 1419,-2686.75 1790,-2686.75 1790,-2684.75 1419,-2684.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2682.75 1419,-2684.75 1790,-2684.75 1790,-2682.75 1419,-2682.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2680.75 1419,-2682.75 1790,-2682.75 1790,-2680.75 1419,-2680.75"/>
+<text text-anchor="start" x="1420.88" y="-2665.45" font-family="arial" font-size="14.00">Coil Pack 3:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2665.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2665.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2658.75 1419,-2660.75 1790,-2660.75 1790,-2658.75 1419,-2658.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2656.75 1419,-2658.75 1790,-2658.75 1790,-2656.75 1419,-2656.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2654.75 1419,-2656.75 1790,-2656.75 1790,-2654.75 1419,-2654.75"/>
+<text text-anchor="start" x="1420.88" y="-2639.45" font-family="arial" font-size="14.00">Coil Pack 4:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2639.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2639.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2632.75 1419,-2634.75 1790,-2634.75 1790,-2632.75 1419,-2632.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2630.75 1419,-2632.75 1790,-2632.75 1790,-2630.75 1419,-2630.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2628.75 1419,-2630.75 1790,-2630.75 1790,-2628.75 1419,-2628.75"/>
+<text text-anchor="start" x="1511.62" y="-2613.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 1&#45;&#45;W20 -->
-<g id="edge36" class="edge">
+<g id="edge39" class="edge">
<title>Coil Pack 1:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3261.25C1405.89,-3264.11 1198.5,-2829.11 1419,-2826.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3263.25C1407.69,-3263.25 1200.31,-2828.25 1419,-2828.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3265.25C1409.5,-3262.39 1202.11,-2827.39 1419,-2830.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3260.75C1453.43,-3263.71 1151.06,-2710.71 1419,-2707.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3262.75C1455.19,-3262.75 1152.81,-2709.75 1419,-2709.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3264.75C1456.94,-3261.79 1154.57,-2708.79 1419,-2711.75"/>
</g>
<!-- Coil Pack 2 -->
<g id="node5" class="node">
<title>Coil Pack 2</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-2658.25 961,-2658.25 961,-2313.25 1188,-2313.25 1188,-2658.25"/>
-<polygon fill="none" stroke="black" points="961,-2633.75 961,-2658.25 1188,-2658.25 1188,-2633.75 961,-2633.75"/>
-<text text-anchor="start" x="1038.5" y="-2640.95" font-family="arial" font-size="14.00">Coil Pack 2</text>
-<polygon fill="none" stroke="black" points="961,-2609.25 961,-2633.75 1113.88,-2633.75 1113.88,-2609.25 961,-2609.25"/>
-<text text-anchor="start" x="982.31" y="-2616.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-2609.25 1113.88,-2633.75 1188,-2633.75 1188,-2609.25 1113.88,-2609.25"/>
-<text text-anchor="start" x="1135.19" y="-2616.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-2585.25 961,-2609.25 1008,-2609.25 1008,-2585.25 961,-2585.25"/>
-<text text-anchor="start" x="979.62" y="-2591.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-2585.25 1008,-2609.25 1141,-2609.25 1141,-2585.25 1008,-2585.25"/>
-<text text-anchor="start" x="1047.12" y="-2591.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-2585.25 1141,-2609.25 1188,-2609.25 1188,-2585.25 1141,-2585.25"/>
-<text text-anchor="start" x="1159.62" y="-2591.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-2561.25 961,-2585.25 1008,-2585.25 1008,-2561.25 961,-2561.25"/>
-<text text-anchor="start" x="979.62" y="-2567.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-2561.25 1008,-2585.25 1141,-2585.25 1141,-2561.25 1008,-2561.25"/>
-<text text-anchor="start" x="1026.12" y="-2567.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2561.25 1141,-2585.25 1188,-2585.25 1188,-2561.25 1141,-2561.25"/>
-<text text-anchor="start" x="1159.62" y="-2567.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-2537.25 961,-2561.25 1008,-2561.25 1008,-2537.25 961,-2537.25"/>
-<text text-anchor="start" x="979.25" y="-2543.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-2537.25 1008,-2561.25 1141,-2561.25 1141,-2537.25 1008,-2537.25"/>
-<text text-anchor="start" x="1032.12" y="-2543.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2537.25 1141,-2561.25 1188,-2561.25 1188,-2537.25 1141,-2537.25"/>
-<text text-anchor="start" x="1159.25" y="-2543.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-2513.25 961,-2537.25 1008,-2537.25 1008,-2513.25 961,-2513.25"/>
-<text text-anchor="start" x="979.25" y="-2519.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-2513.25 1008,-2537.25 1141,-2537.25 1141,-2513.25 1008,-2513.25"/>
-<text text-anchor="start" x="1026.88" y="-2519.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2513.25 1141,-2537.25 1188,-2537.25 1188,-2513.25 1141,-2513.25"/>
-<text text-anchor="start" x="1159.25" y="-2519.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-2489.25 961,-2513.25 1008,-2513.25 1008,-2489.25 961,-2489.25"/>
-<text text-anchor="start" x="979.62" y="-2495.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-2489.25 1008,-2513.25 1141,-2513.25 1141,-2489.25 1008,-2489.25"/>
-<text text-anchor="start" x="1030.62" y="-2495.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-2489.25 1141,-2513.25 1188,-2513.25 1188,-2489.25 1141,-2489.25"/>
-<text text-anchor="start" x="1159.62" y="-2495.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-2313.25 961,-2489.25 1188,-2489.25 1188,-2313.25 961,-2313.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2485.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-2657.75 961,-2657.75 961,-2312.75 1188,-2312.75 1188,-2657.75"/>
+<polygon fill="none" stroke="black" points="961,-2633.25 961,-2657.75 1188,-2657.75 1188,-2633.25 961,-2633.25"/>
+<text text-anchor="start" x="1038.5" y="-2640.45" font-family="arial" font-size="14.00">Coil Pack 2</text>
+<polygon fill="none" stroke="black" points="961,-2608.75 961,-2633.25 1113.88,-2633.25 1113.88,-2608.75 961,-2608.75"/>
+<text text-anchor="start" x="982.31" y="-2615.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-2608.75 1113.88,-2633.25 1188,-2633.25 1188,-2608.75 1113.88,-2608.75"/>
+<text text-anchor="start" x="1135.19" y="-2615.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-2584.75 961,-2608.75 1008,-2608.75 1008,-2584.75 961,-2584.75"/>
+<text text-anchor="start" x="979.62" y="-2591.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-2584.75 1008,-2608.75 1141,-2608.75 1141,-2584.75 1008,-2584.75"/>
+<text text-anchor="start" x="1047.12" y="-2591.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-2584.75 1141,-2608.75 1188,-2608.75 1188,-2584.75 1141,-2584.75"/>
+<text text-anchor="start" x="1159.62" y="-2591.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-2560.75 961,-2584.75 1008,-2584.75 1008,-2560.75 961,-2560.75"/>
+<text text-anchor="start" x="979.62" y="-2567.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-2560.75 1008,-2584.75 1141,-2584.75 1141,-2560.75 1008,-2560.75"/>
+<text text-anchor="start" x="1026.12" y="-2567.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2560.75 1141,-2584.75 1188,-2584.75 1188,-2560.75 1141,-2560.75"/>
+<text text-anchor="start" x="1159.62" y="-2567.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-2536.75 961,-2560.75 1008,-2560.75 1008,-2536.75 961,-2536.75"/>
+<text text-anchor="start" x="979.25" y="-2543.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-2536.75 1008,-2560.75 1141,-2560.75 1141,-2536.75 1008,-2536.75"/>
+<text text-anchor="start" x="1032.12" y="-2543.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2536.75 1141,-2560.75 1188,-2560.75 1188,-2536.75 1141,-2536.75"/>
+<text text-anchor="start" x="1159.25" y="-2543.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-2512.75 961,-2536.75 1008,-2536.75 1008,-2512.75 961,-2512.75"/>
+<text text-anchor="start" x="979.25" y="-2519.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-2512.75 1008,-2536.75 1141,-2536.75 1141,-2512.75 1008,-2512.75"/>
+<text text-anchor="start" x="1026.88" y="-2519.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2512.75 1141,-2536.75 1188,-2536.75 1188,-2512.75 1141,-2512.75"/>
+<text text-anchor="start" x="1159.25" y="-2519.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-2488.75 961,-2512.75 1008,-2512.75 1008,-2488.75 961,-2488.75"/>
+<text text-anchor="start" x="979.62" y="-2495.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-2488.75 1008,-2512.75 1141,-2512.75 1141,-2488.75 1008,-2488.75"/>
+<text text-anchor="start" x="1030.62" y="-2495.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-2488.75 1141,-2512.75 1188,-2512.75 1188,-2488.75 1141,-2488.75"/>
+<text text-anchor="start" x="1159.62" y="-2495.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-2312.75 961,-2488.75 1188,-2488.75 1188,-2312.75 961,-2312.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2484.75"/>
</g>
<!-- W19 -->
<g id="node33" class="node">
<title>W19</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-2512.25 1484.5,-2512.25 1484.5,-2371.25 1724.5,-2371.25 1724.5,-2512.25"/>
-<polygon fill="none" stroke="black" points="1484.5,-2487.75 1484.5,-2512.25 1724.5,-2512.25 1724.5,-2487.75 1484.5,-2487.75"/>
-<text text-anchor="start" x="1589.12" y="-2494.95" font-family="arial" font-size="14.00">W19</text>
-<polygon fill="none" stroke="black" points="1484.5,-2463.25 1484.5,-2487.75 1533.75,-2487.75 1533.75,-2463.25 1484.5,-2463.25"/>
-<text text-anchor="start" x="1501.62" y="-2470.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1533.75,-2463.25 1533.75,-2487.75 1623.5,-2487.75 1623.5,-2463.25 1533.75,-2463.25"/>
-<text text-anchor="start" x="1550.88" y="-2470.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1623.5,-2463.25 1623.5,-2487.75 1724.5,-2487.75 1724.5,-2463.25 1623.5,-2463.25"/>
-<text text-anchor="start" x="1640.62" y="-2470.45" font-family="arial" font-size="14.00">6.0 Inches</text>
-<text text-anchor="start" x="1571.62" y="-2447.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1486.12" y="-2427.95" font-family="arial" font-size="14.00">Coil Pack 3:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-2427.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-2421.25 1484.5,-2423.25 1724.5,-2423.25 1724.5,-2421.25 1484.5,-2421.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-2419.25 1484.5,-2421.25 1724.5,-2421.25 1724.5,-2419.25 1484.5,-2419.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-2417.25 1484.5,-2419.25 1724.5,-2419.25 1724.5,-2417.25 1484.5,-2417.25"/>
-<text text-anchor="start" x="1486.12" y="-2401.95" font-family="arial" font-size="14.00">Coil Pack 2:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-2401.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-2395.25 1484.5,-2397.25 1724.5,-2397.25 1724.5,-2395.25 1484.5,-2395.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-2393.25 1484.5,-2395.25 1724.5,-2395.25 1724.5,-2393.25 1484.5,-2393.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-2391.25 1484.5,-2393.25 1724.5,-2393.25 1724.5,-2391.25 1484.5,-2391.25"/>
-<text text-anchor="start" x="1571.62" y="-2375.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-2507.75 1484.5,-2507.75 1484.5,-2366.75 1724.5,-2366.75 1724.5,-2507.75"/>
+<polygon fill="none" stroke="black" points="1484.5,-2483.25 1484.5,-2507.75 1724.5,-2507.75 1724.5,-2483.25 1484.5,-2483.25"/>
+<text text-anchor="start" x="1589.12" y="-2490.45" font-family="arial" font-size="14.00">W19</text>
+<polygon fill="none" stroke="black" points="1484.5,-2458.75 1484.5,-2483.25 1533.75,-2483.25 1533.75,-2458.75 1484.5,-2458.75"/>
+<text text-anchor="start" x="1501.62" y="-2465.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1533.75,-2458.75 1533.75,-2483.25 1623.5,-2483.25 1623.5,-2458.75 1533.75,-2458.75"/>
+<text text-anchor="start" x="1550.88" y="-2465.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1623.5,-2458.75 1623.5,-2483.25 1724.5,-2483.25 1724.5,-2458.75 1623.5,-2458.75"/>
+<text text-anchor="start" x="1640.62" y="-2465.95" font-family="arial" font-size="14.00">6.0 Inches</text>
+<text text-anchor="start" x="1571.62" y="-2443.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1486.12" y="-2423.45" font-family="arial" font-size="14.00">Coil Pack 3:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-2423.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-2416.75 1484.5,-2418.75 1724.5,-2418.75 1724.5,-2416.75 1484.5,-2416.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-2414.75 1484.5,-2416.75 1724.5,-2416.75 1724.5,-2414.75 1484.5,-2414.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-2412.75 1484.5,-2414.75 1724.5,-2414.75 1724.5,-2412.75 1484.5,-2412.75"/>
+<text text-anchor="start" x="1486.12" y="-2397.45" font-family="arial" font-size="14.00">Coil Pack 2:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-2397.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-2390.75 1484.5,-2392.75 1724.5,-2392.75 1724.5,-2390.75 1484.5,-2390.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-2388.75 1484.5,-2390.75 1724.5,-2390.75 1724.5,-2388.75 1484.5,-2388.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-2386.75 1484.5,-2388.75 1724.5,-2388.75 1724.5,-2386.75 1484.5,-2386.75"/>
+<text text-anchor="start" x="1571.62" y="-2371.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 2&#45;&#45;W19 -->
-<g id="edge34" class="edge">
+<g id="edge37" class="edge">
<title>Coil Pack 2:e&#45;&#45;W19:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2547.25C1334.91,-2549.27 1333.59,-2394.27 1483.5,-2392.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2549.25C1336.91,-2549.25 1335.59,-2394.25 1483.5,-2394.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2551.25C1338.91,-2549.23 1337.59,-2394.23 1483.5,-2396.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2546.75C1335.75,-2548.79 1332.75,-2389.79 1483.5,-2387.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2548.75C1337.75,-2548.75 1334.75,-2389.75 1483.5,-2389.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2550.75C1339.75,-2548.71 1336.75,-2389.71 1483.5,-2391.75"/>
</g>
<!-- Coil Pack 2&#45;&#45;W20 -->
-<g id="edge38" class="edge">
+<g id="edge41" class="edge">
<title>Coil Pack 2:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2523.25C1350.92,-2525.87 1260.88,-2802.87 1419,-2800.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2525.25C1349.02,-2525.25 1258.98,-2802.25 1419,-2802.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2527.25C1347.12,-2524.63 1257.08,-2801.63 1419,-2804.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2522.75C1315.26,-2524.98 1296.72,-2683.98 1419,-2681.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2524.75C1313.27,-2524.75 1294.73,-2683.75 1419,-2683.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2526.75C1311.28,-2524.52 1292.74,-2683.52 1419,-2685.75"/>
</g>
<!-- Coil Pack 3 -->
<g id="node6" class="node">
<title>Coil Pack 3</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-2289.25 961,-2289.25 961,-1944.25 1188,-1944.25 1188,-2289.25"/>
-<polygon fill="none" stroke="black" points="961,-2264.75 961,-2289.25 1188,-2289.25 1188,-2264.75 961,-2264.75"/>
-<text text-anchor="start" x="1038.5" y="-2271.95" font-family="arial" font-size="14.00">Coil Pack 3</text>
-<polygon fill="none" stroke="black" points="961,-2240.25 961,-2264.75 1113.88,-2264.75 1113.88,-2240.25 961,-2240.25"/>
-<text text-anchor="start" x="982.31" y="-2247.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-2240.25 1113.88,-2264.75 1188,-2264.75 1188,-2240.25 1113.88,-2240.25"/>
-<text text-anchor="start" x="1135.19" y="-2247.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-2216.25 961,-2240.25 1008,-2240.25 1008,-2216.25 961,-2216.25"/>
-<text text-anchor="start" x="979.62" y="-2222.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-2216.25 1008,-2240.25 1141,-2240.25 1141,-2216.25 1008,-2216.25"/>
-<text text-anchor="start" x="1047.12" y="-2222.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-2216.25 1141,-2240.25 1188,-2240.25 1188,-2216.25 1141,-2216.25"/>
-<text text-anchor="start" x="1159.62" y="-2222.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-2192.25 961,-2216.25 1008,-2216.25 1008,-2192.25 961,-2192.25"/>
-<text text-anchor="start" x="979.62" y="-2198.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-2192.25 1008,-2216.25 1141,-2216.25 1141,-2192.25 1008,-2192.25"/>
-<text text-anchor="start" x="1026.12" y="-2198.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2192.25 1141,-2216.25 1188,-2216.25 1188,-2192.25 1141,-2192.25"/>
-<text text-anchor="start" x="1159.62" y="-2198.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-2168.25 961,-2192.25 1008,-2192.25 1008,-2168.25 961,-2168.25"/>
-<text text-anchor="start" x="979.25" y="-2174.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-2168.25 1008,-2192.25 1141,-2192.25 1141,-2168.25 1008,-2168.25"/>
-<text text-anchor="start" x="1032.12" y="-2174.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2168.25 1141,-2192.25 1188,-2192.25 1188,-2168.25 1141,-2168.25"/>
-<text text-anchor="start" x="1159.25" y="-2174.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-2144.25 961,-2168.25 1008,-2168.25 1008,-2144.25 961,-2144.25"/>
-<text text-anchor="start" x="979.25" y="-2150.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-2144.25 1008,-2168.25 1141,-2168.25 1141,-2144.25 1008,-2144.25"/>
-<text text-anchor="start" x="1026.88" y="-2150.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2144.25 1141,-2168.25 1188,-2168.25 1188,-2144.25 1141,-2144.25"/>
-<text text-anchor="start" x="1159.25" y="-2150.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-2120.25 961,-2144.25 1008,-2144.25 1008,-2120.25 961,-2120.25"/>
-<text text-anchor="start" x="979.62" y="-2126.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-2120.25 1008,-2144.25 1141,-2144.25 1141,-2120.25 1008,-2120.25"/>
-<text text-anchor="start" x="1030.62" y="-2126.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-2120.25 1141,-2144.25 1188,-2144.25 1188,-2120.25 1141,-2120.25"/>
-<text text-anchor="start" x="1159.62" y="-2126.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-1944.25 961,-2120.25 1188,-2120.25 1188,-1944.25 961,-1944.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2116.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-2288.75 961,-2288.75 961,-1943.75 1188,-1943.75 1188,-2288.75"/>
+<polygon fill="none" stroke="black" points="961,-2264.25 961,-2288.75 1188,-2288.75 1188,-2264.25 961,-2264.25"/>
+<text text-anchor="start" x="1038.5" y="-2271.45" font-family="arial" font-size="14.00">Coil Pack 3</text>
+<polygon fill="none" stroke="black" points="961,-2239.75 961,-2264.25 1113.88,-2264.25 1113.88,-2239.75 961,-2239.75"/>
+<text text-anchor="start" x="982.31" y="-2246.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-2239.75 1113.88,-2264.25 1188,-2264.25 1188,-2239.75 1113.88,-2239.75"/>
+<text text-anchor="start" x="1135.19" y="-2246.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-2215.75 961,-2239.75 1008,-2239.75 1008,-2215.75 961,-2215.75"/>
+<text text-anchor="start" x="979.62" y="-2222.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-2215.75 1008,-2239.75 1141,-2239.75 1141,-2215.75 1008,-2215.75"/>
+<text text-anchor="start" x="1047.12" y="-2222.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-2215.75 1141,-2239.75 1188,-2239.75 1188,-2215.75 1141,-2215.75"/>
+<text text-anchor="start" x="1159.62" y="-2222.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-2191.75 961,-2215.75 1008,-2215.75 1008,-2191.75 961,-2191.75"/>
+<text text-anchor="start" x="979.62" y="-2198.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-2191.75 1008,-2215.75 1141,-2215.75 1141,-2191.75 1008,-2191.75"/>
+<text text-anchor="start" x="1026.12" y="-2198.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2191.75 1141,-2215.75 1188,-2215.75 1188,-2191.75 1141,-2191.75"/>
+<text text-anchor="start" x="1159.62" y="-2198.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-2167.75 961,-2191.75 1008,-2191.75 1008,-2167.75 961,-2167.75"/>
+<text text-anchor="start" x="979.25" y="-2174.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-2167.75 1008,-2191.75 1141,-2191.75 1141,-2167.75 1008,-2167.75"/>
+<text text-anchor="start" x="1032.12" y="-2174.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2167.75 1141,-2191.75 1188,-2191.75 1188,-2167.75 1141,-2167.75"/>
+<text text-anchor="start" x="1159.25" y="-2174.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-2143.75 961,-2167.75 1008,-2167.75 1008,-2143.75 961,-2143.75"/>
+<text text-anchor="start" x="979.25" y="-2150.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-2143.75 1008,-2167.75 1141,-2167.75 1141,-2143.75 1008,-2143.75"/>
+<text text-anchor="start" x="1026.88" y="-2150.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2143.75 1141,-2167.75 1188,-2167.75 1188,-2143.75 1141,-2143.75"/>
+<text text-anchor="start" x="1159.25" y="-2150.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-2119.75 961,-2143.75 1008,-2143.75 1008,-2119.75 961,-2119.75"/>
+<text text-anchor="start" x="979.62" y="-2126.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-2119.75 1008,-2143.75 1141,-2143.75 1141,-2119.75 1008,-2119.75"/>
+<text text-anchor="start" x="1030.62" y="-2126.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-2119.75 1141,-2143.75 1188,-2143.75 1188,-2119.75 1141,-2119.75"/>
+<text text-anchor="start" x="1159.62" y="-2126.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-1943.75 961,-2119.75 1188,-2119.75 1188,-1943.75 961,-1943.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2115.75"/>
</g>
<!-- Coil Pack 3&#45;&#45;W19 -->
-<g id="edge32" class="edge">
+<g id="edge35" class="edge">
<title>Coil Pack 3:e&#45;&#45;W19:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2178.25C1359.82,-2180.6 1316.62,-2420.6 1483.5,-2418.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2180.25C1357.85,-2180.25 1314.65,-2420.25 1483.5,-2420.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2182.25C1355.88,-2179.9 1312.68,-2419.9 1483.5,-2422.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2177.75C1358.7,-2180.09 1317.74,-2416.09 1483.5,-2413.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2179.75C1356.73,-2179.75 1315.77,-2415.75 1483.5,-2415.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2181.75C1354.76,-2179.41 1313.8,-2415.41 1483.5,-2417.75"/>
</g>
<!-- Coil Pack 3&#45;&#45;W20 -->
-<g id="edge40" class="edge">
+<g id="edge43" class="edge">
<title>Coil Pack 3:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2154.25C1484.64,-2157.25 1126.83,-2777.25 1419,-2774.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2156.25C1482.91,-2156.25 1125.09,-2776.25 1419,-2776.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2158.25C1481.17,-2155.25 1123.36,-2775.25 1419,-2778.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2153.75C1436.19,-2156.67 1175.36,-2658.67 1419,-2655.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2155.75C1434.41,-2155.75 1173.59,-2657.75 1419,-2657.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2157.75C1432.64,-2154.83 1171.81,-2656.83 1419,-2659.75"/>
</g>
<!-- Coil Pack 4 -->
<g id="node7" class="node">
<title>Coil Pack 4</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-3027.25 961,-3027.25 961,-2682.25 1188,-2682.25 1188,-3027.25"/>
-<polygon fill="none" stroke="black" points="961,-3002.75 961,-3027.25 1188,-3027.25 1188,-3002.75 961,-3002.75"/>
-<text text-anchor="start" x="1038.5" y="-3009.95" font-family="arial" font-size="14.00">Coil Pack 4</text>
-<polygon fill="none" stroke="black" points="961,-2978.25 961,-3002.75 1113.88,-3002.75 1113.88,-2978.25 961,-2978.25"/>
-<text text-anchor="start" x="982.31" y="-2985.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-2978.25 1113.88,-3002.75 1188,-3002.75 1188,-2978.25 1113.88,-2978.25"/>
-<text text-anchor="start" x="1135.19" y="-2985.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-2954.25 961,-2978.25 1008,-2978.25 1008,-2954.25 961,-2954.25"/>
-<text text-anchor="start" x="979.62" y="-2960.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-2954.25 1008,-2978.25 1141,-2978.25 1141,-2954.25 1008,-2954.25"/>
-<text text-anchor="start" x="1047.12" y="-2960.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-2954.25 1141,-2978.25 1188,-2978.25 1188,-2954.25 1141,-2954.25"/>
-<text text-anchor="start" x="1159.62" y="-2960.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-2930.25 961,-2954.25 1008,-2954.25 1008,-2930.25 961,-2930.25"/>
-<text text-anchor="start" x="979.62" y="-2936.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-2930.25 1008,-2954.25 1141,-2954.25 1141,-2930.25 1008,-2930.25"/>
-<text text-anchor="start" x="1026.12" y="-2936.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2930.25 1141,-2954.25 1188,-2954.25 1188,-2930.25 1141,-2930.25"/>
-<text text-anchor="start" x="1159.62" y="-2936.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-2906.25 961,-2930.25 1008,-2930.25 1008,-2906.25 961,-2906.25"/>
-<text text-anchor="start" x="979.25" y="-2912.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-2906.25 1008,-2930.25 1141,-2930.25 1141,-2906.25 1008,-2906.25"/>
-<text text-anchor="start" x="1032.12" y="-2912.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2906.25 1141,-2930.25 1188,-2930.25 1188,-2906.25 1141,-2906.25"/>
-<text text-anchor="start" x="1159.25" y="-2912.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-2882.25 961,-2906.25 1008,-2906.25 1008,-2882.25 961,-2882.25"/>
-<text text-anchor="start" x="979.25" y="-2888.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-2882.25 1008,-2906.25 1141,-2906.25 1141,-2882.25 1008,-2882.25"/>
-<text text-anchor="start" x="1026.88" y="-2888.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2882.25 1141,-2906.25 1188,-2906.25 1188,-2882.25 1141,-2882.25"/>
-<text text-anchor="start" x="1159.25" y="-2888.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-2858.25 961,-2882.25 1008,-2882.25 1008,-2858.25 961,-2858.25"/>
-<text text-anchor="start" x="979.62" y="-2864.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-2858.25 1008,-2882.25 1141,-2882.25 1141,-2858.25 1008,-2858.25"/>
-<text text-anchor="start" x="1030.62" y="-2864.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-2858.25 1141,-2882.25 1188,-2882.25 1188,-2858.25 1141,-2858.25"/>
-<text text-anchor="start" x="1159.62" y="-2864.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-2682.25 961,-2858.25 1188,-2858.25 1188,-2682.25 961,-2682.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2854.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-3026.75 961,-3026.75 961,-2681.75 1188,-2681.75 1188,-3026.75"/>
+<polygon fill="none" stroke="black" points="961,-3002.25 961,-3026.75 1188,-3026.75 1188,-3002.25 961,-3002.25"/>
+<text text-anchor="start" x="1038.5" y="-3009.45" font-family="arial" font-size="14.00">Coil Pack 4</text>
+<polygon fill="none" stroke="black" points="961,-2977.75 961,-3002.25 1113.88,-3002.25 1113.88,-2977.75 961,-2977.75"/>
+<text text-anchor="start" x="982.31" y="-2984.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-2977.75 1113.88,-3002.25 1188,-3002.25 1188,-2977.75 1113.88,-2977.75"/>
+<text text-anchor="start" x="1135.19" y="-2984.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-2953.75 961,-2977.75 1008,-2977.75 1008,-2953.75 961,-2953.75"/>
+<text text-anchor="start" x="979.62" y="-2960.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-2953.75 1008,-2977.75 1141,-2977.75 1141,-2953.75 1008,-2953.75"/>
+<text text-anchor="start" x="1047.12" y="-2960.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-2953.75 1141,-2977.75 1188,-2977.75 1188,-2953.75 1141,-2953.75"/>
+<text text-anchor="start" x="1159.62" y="-2960.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-2929.75 961,-2953.75 1008,-2953.75 1008,-2929.75 961,-2929.75"/>
+<text text-anchor="start" x="979.62" y="-2936.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-2929.75 1008,-2953.75 1141,-2953.75 1141,-2929.75 1008,-2929.75"/>
+<text text-anchor="start" x="1026.12" y="-2936.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2929.75 1141,-2953.75 1188,-2953.75 1188,-2929.75 1141,-2929.75"/>
+<text text-anchor="start" x="1159.62" y="-2936.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-2905.75 961,-2929.75 1008,-2929.75 1008,-2905.75 961,-2905.75"/>
+<text text-anchor="start" x="979.25" y="-2912.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-2905.75 1008,-2929.75 1141,-2929.75 1141,-2905.75 1008,-2905.75"/>
+<text text-anchor="start" x="1032.12" y="-2912.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2905.75 1141,-2929.75 1188,-2929.75 1188,-2905.75 1141,-2905.75"/>
+<text text-anchor="start" x="1159.25" y="-2912.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-2881.75 961,-2905.75 1008,-2905.75 1008,-2881.75 961,-2881.75"/>
+<text text-anchor="start" x="979.25" y="-2888.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-2881.75 1008,-2905.75 1141,-2905.75 1141,-2881.75 1008,-2881.75"/>
+<text text-anchor="start" x="1026.88" y="-2888.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2881.75 1141,-2905.75 1188,-2905.75 1188,-2881.75 1141,-2881.75"/>
+<text text-anchor="start" x="1159.25" y="-2888.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-2857.75 961,-2881.75 1008,-2881.75 1008,-2857.75 961,-2857.75"/>
+<text text-anchor="start" x="979.62" y="-2864.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-2857.75 1008,-2881.75 1141,-2881.75 1141,-2857.75 1008,-2857.75"/>
+<text text-anchor="start" x="1030.62" y="-2864.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-2857.75 1141,-2881.75 1188,-2881.75 1188,-2857.75 1141,-2857.75"/>
+<text text-anchor="start" x="1159.62" y="-2864.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-2681.75 961,-2857.75 1188,-2857.75 1188,-2681.75 961,-2681.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2853.75"/>
</g>
<!-- Coil Pack 4&#45;&#45;W10 -->
-<g id="edge30" class="edge">
+<g id="edge33" class="edge">
<title>Coil Pack 4:e&#45;&#45;W10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2916.25C1336.7,-2918.21 1339.8,-3062.21 1483.5,-3060.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2918.25C1334.7,-2918.25 1337.8,-3062.25 1483.5,-3062.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2920.25C1332.7,-2918.29 1335.8,-3062.29 1483.5,-3064.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2915.75C1342.35,-2917.85 1334.14,-3088.85 1483.5,-3086.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2917.75C1340.35,-2917.75 1332.15,-3088.75 1483.5,-3088.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2919.75C1338.36,-2917.65 1330.15,-3088.65 1483.5,-3090.75"/>
</g>
<!-- Coil Pack 4&#45;&#45;W20 -->
-<g id="edge42" class="edge">
+<g id="edge45" class="edge">
<title>Coil Pack 4:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2892.25C1307.61,-2894.41 1296.4,-2750.41 1419,-2748.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2894.25C1309.6,-2894.25 1298.4,-2750.25 1419,-2750.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2896.25C1311.6,-2894.09 1300.39,-2750.09 1419,-2752.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2891.75C1342.03,-2894.33 1262.14,-2632.33 1419,-2629.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2893.75C1343.95,-2893.75 1264.05,-2631.75 1419,-2631.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2895.75C1345.86,-2893.17 1265.97,-2631.17 1419,-2633.75"/>
</g>
<!-- Fuel Injector 1 -->
<g id="node8" class="node">
<title>Fuel Injector 1</title>
-<polygon fill="#ffffff" stroke="black" points="1228.5,-953.75 920.5,-953.75 920.5,-623.75 1228.5,-623.75 1228.5,-953.75"/>
-<polygon fill="none" stroke="black" points="920.5,-929.25 920.5,-953.75 1228.5,-953.75 1228.5,-929.25 920.5,-929.25"/>
-<text text-anchor="start" x="1029.12" y="-936.45" font-family="arial" font-size="14.00">Fuel Injector 1</text>
-<polygon fill="none" stroke="black" points="920.5,-904.75 920.5,-929.25 1102.25,-929.25 1102.25,-904.75 920.5,-904.75"/>
-<text text-anchor="start" x="967.88" y="-911.95" font-family="arial" font-size="14.00">90980&#45;11875</text>
-<polygon fill="none" stroke="black" points="1102.25,-904.75 1102.25,-929.25 1228.5,-929.25 1228.5,-904.75 1102.25,-904.75"/>
-<text text-anchor="start" x="1149.62" y="-911.95" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="920.5,-880.75 920.5,-904.75 1051,-904.75 1051,-880.75 920.5,-880.75"/>
-<text text-anchor="start" x="981.62" y="-887.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1051,-880.75 1051,-904.75 1228.5,-904.75 1228.5,-880.75 1051,-880.75"/>
-<text text-anchor="start" x="1126.62" y="-887.45" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="920.5,-856.75 920.5,-880.75 1051,-880.75 1051,-856.75 920.5,-856.75"/>
-<text text-anchor="start" x="981.62" y="-863.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1051,-856.75 1051,-880.75 1228.5,-880.75 1228.5,-856.75 1051,-856.75"/>
-<text text-anchor="start" x="1112" y="-863.45" font-family="arial" font-size="14.00">ECU INJ</text>
-<polygon fill="none" stroke="black" points="920.5,-623.75 920.5,-856.75 1228.5,-856.75 1228.5,-623.75 920.5,-623.75"/>
-<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-852.75"/>
+<polygon fill="#ffffff" stroke="black" points="1228.5,-1402.25 920.5,-1402.25 920.5,-1072.25 1228.5,-1072.25 1228.5,-1402.25"/>
+<polygon fill="none" stroke="black" points="920.5,-1377.75 920.5,-1402.25 1228.5,-1402.25 1228.5,-1377.75 920.5,-1377.75"/>
+<text text-anchor="start" x="1029.12" y="-1384.95" font-family="arial" font-size="14.00">Fuel Injector 1</text>
+<polygon fill="none" stroke="black" points="920.5,-1353.25 920.5,-1377.75 1102.25,-1377.75 1102.25,-1353.25 920.5,-1353.25"/>
+<text text-anchor="start" x="967.88" y="-1360.45" font-family="arial" font-size="14.00">90980&#45;11875</text>
+<polygon fill="none" stroke="black" points="1102.25,-1353.25 1102.25,-1377.75 1228.5,-1377.75 1228.5,-1353.25 1102.25,-1353.25"/>
+<text text-anchor="start" x="1149.62" y="-1360.45" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="920.5,-1329.25 920.5,-1353.25 1051,-1353.25 1051,-1329.25 920.5,-1329.25"/>
+<text text-anchor="start" x="981.62" y="-1335.95" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1051,-1329.25 1051,-1353.25 1228.5,-1353.25 1228.5,-1329.25 1051,-1329.25"/>
+<text text-anchor="start" x="1126.62" y="-1335.95" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="920.5,-1305.25 920.5,-1329.25 1051,-1329.25 1051,-1305.25 920.5,-1305.25"/>
+<text text-anchor="start" x="981.62" y="-1311.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1051,-1305.25 1051,-1329.25 1228.5,-1329.25 1228.5,-1305.25 1051,-1305.25"/>
+<text text-anchor="start" x="1112" y="-1311.95" font-family="arial" font-size="14.00">ECU INJ</text>
+<polygon fill="none" stroke="black" points="920.5,-1072.25 920.5,-1305.25 1228.5,-1305.25 1228.5,-1072.25 920.5,-1072.25"/>
+<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-1301.25"/>
</g>
<!-- Fuel Injector 2 -->
<g id="node9" class="node">
<title>Fuel Injector 2</title>
-<polygon fill="#ffffff" stroke="black" points="1228.5,-599.75 920.5,-599.75 920.5,-269.75 1228.5,-269.75 1228.5,-599.75"/>
-<polygon fill="none" stroke="black" points="920.5,-575.25 920.5,-599.75 1228.5,-599.75 1228.5,-575.25 920.5,-575.25"/>
-<text text-anchor="start" x="1029.12" y="-582.45" font-family="arial" font-size="14.00">Fuel Injector 2</text>
-<polygon fill="none" stroke="black" points="920.5,-550.75 920.5,-575.25 1102.25,-575.25 1102.25,-550.75 920.5,-550.75"/>
-<text text-anchor="start" x="967.88" y="-557.95" font-family="arial" font-size="14.00">90980&#45;11875</text>
-<polygon fill="none" stroke="black" points="1102.25,-550.75 1102.25,-575.25 1228.5,-575.25 1228.5,-550.75 1102.25,-550.75"/>
-<text text-anchor="start" x="1149.62" y="-557.95" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="920.5,-526.75 920.5,-550.75 1051,-550.75 1051,-526.75 920.5,-526.75"/>
-<text text-anchor="start" x="981.62" y="-533.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1051,-526.75 1051,-550.75 1228.5,-550.75 1228.5,-526.75 1051,-526.75"/>
-<text text-anchor="start" x="1126.62" y="-533.45" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="920.5,-502.75 920.5,-526.75 1051,-526.75 1051,-502.75 920.5,-502.75"/>
-<text text-anchor="start" x="981.62" y="-509.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1051,-502.75 1051,-526.75 1228.5,-526.75 1228.5,-502.75 1051,-502.75"/>
-<text text-anchor="start" x="1112" y="-509.45" font-family="arial" font-size="14.00">ECU INJ</text>
-<polygon fill="none" stroke="black" points="920.5,-269.75 920.5,-502.75 1228.5,-502.75 1228.5,-269.75 920.5,-269.75"/>
-<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-498.75"/>
+<polygon fill="#ffffff" stroke="black" points="1228.5,-1048.25 920.5,-1048.25 920.5,-718.25 1228.5,-718.25 1228.5,-1048.25"/>
+<polygon fill="none" stroke="black" points="920.5,-1023.75 920.5,-1048.25 1228.5,-1048.25 1228.5,-1023.75 920.5,-1023.75"/>
+<text text-anchor="start" x="1029.12" y="-1030.95" font-family="arial" font-size="14.00">Fuel Injector 2</text>
+<polygon fill="none" stroke="black" points="920.5,-999.25 920.5,-1023.75 1102.25,-1023.75 1102.25,-999.25 920.5,-999.25"/>
+<text text-anchor="start" x="967.88" y="-1006.45" font-family="arial" font-size="14.00">90980&#45;11875</text>
+<polygon fill="none" stroke="black" points="1102.25,-999.25 1102.25,-1023.75 1228.5,-1023.75 1228.5,-999.25 1102.25,-999.25"/>
+<text text-anchor="start" x="1149.62" y="-1006.45" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="920.5,-975.25 920.5,-999.25 1051,-999.25 1051,-975.25 920.5,-975.25"/>
+<text text-anchor="start" x="981.62" y="-981.95" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1051,-975.25 1051,-999.25 1228.5,-999.25 1228.5,-975.25 1051,-975.25"/>
+<text text-anchor="start" x="1126.62" y="-981.95" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="920.5,-951.25 920.5,-975.25 1051,-975.25 1051,-951.25 920.5,-951.25"/>
+<text text-anchor="start" x="981.62" y="-957.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1051,-951.25 1051,-975.25 1228.5,-975.25 1228.5,-951.25 1051,-951.25"/>
+<text text-anchor="start" x="1112" y="-957.95" font-family="arial" font-size="14.00">ECU INJ</text>
+<polygon fill="none" stroke="black" points="920.5,-718.25 920.5,-951.25 1228.5,-951.25 1228.5,-718.25 920.5,-718.25"/>
+<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-947.25"/>
</g>
<!-- MAF Sensor -->
<g id="node10" class="node">
<title>MAF Sensor</title>
-<polygon fill="#ffffff" stroke="black" points="2342,-4517.5 2034,-4517.5 2034,-4206 2342,-4206 2342,-4517.5"/>
-<polygon fill="none" stroke="black" points="2034,-4493 2034,-4517.5 2342,-4517.5 2342,-4493 2034,-4493"/>
-<text text-anchor="start" x="2148.25" y="-4500.2" font-family="arial" font-size="14.00">MAF Sensor</text>
-<polygon fill="none" stroke="black" points="2034,-4468.5 2034,-4493 2235.62,-4493 2235.62,-4468.5 2034,-4468.5"/>
-<text text-anchor="start" x="2071.44" y="-4475.7" font-family="arial" font-size="14.00">Bosch 1928405138</text>
-<polygon fill="none" stroke="black" points="2235.62,-4468.5 2235.62,-4493 2342,-4493 2342,-4468.5 2235.62,-4468.5"/>
-<text text-anchor="start" x="2273.06" y="-4475.7" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="2034,-4444 2034,-4468.5 2179,-4468.5 2179,-4444 2034,-4444"/>
-<text text-anchor="start" x="2102.38" y="-4451.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="2179,-4444 2179,-4468.5 2342,-4468.5 2342,-4444 2179,-4444"/>
-<text text-anchor="start" x="2247.38" y="-4451.2" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="2034,-4206 2034,-4444 2342,-4444 2342,-4206 2034,-4206"/>
-<image xlink:href="images\MAF.png" width="293.8px" height="226px" preserveAspectRatio="xMinYMin meet" x="2041.1" y="-4438"/>
+<polygon fill="#ffffff" stroke="black" points="2342,-4344 2034,-4344 2034,-4032.5 2342,-4032.5 2342,-4344"/>
+<polygon fill="none" stroke="black" points="2034,-4319.5 2034,-4344 2342,-4344 2342,-4319.5 2034,-4319.5"/>
+<text text-anchor="start" x="2148.25" y="-4326.7" font-family="arial" font-size="14.00">MAF Sensor</text>
+<polygon fill="none" stroke="black" points="2034,-4295 2034,-4319.5 2235.62,-4319.5 2235.62,-4295 2034,-4295"/>
+<text text-anchor="start" x="2071.44" y="-4302.2" font-family="arial" font-size="14.00">Bosch 1928405138</text>
+<polygon fill="none" stroke="black" points="2235.62,-4295 2235.62,-4319.5 2342,-4319.5 2342,-4295 2235.62,-4295"/>
+<text text-anchor="start" x="2273.06" y="-4302.2" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="2034,-4270.5 2034,-4295 2179,-4295 2179,-4270.5 2034,-4270.5"/>
+<text text-anchor="start" x="2102.38" y="-4277.7" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="2179,-4270.5 2179,-4295 2342,-4295 2342,-4270.5 2179,-4270.5"/>
+<text text-anchor="start" x="2247.38" y="-4277.7" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="2034,-4032.5 2034,-4270.5 2342,-4270.5 2342,-4032.5 2034,-4032.5"/>
+<image xlink:href="images\MAF.png" width="293.8px" height="226px" preserveAspectRatio="xMinYMin meet" x="2041.1" y="-4264.5"/>
</g>
<!-- LSU -->
<g id="node11" class="node">
<title>LSU</title>
-<polygon fill="#ffffff" stroke="black" points="1222,-245.5 927,-245.5 927,0 1222,0 1222,-245.5"/>
-<polygon fill="none" stroke="black" points="927,-221 927,-245.5 1222,-245.5 1222,-221 927,-221"/>
-<text text-anchor="start" x="1060.62" y="-228.2" font-family="arial" font-size="14.00">LSU</text>
-<polygon fill="none" stroke="black" points="927,-196.5 927,-221 1115.38,-221 1115.38,-196.5 927,-196.5"/>
-<text text-anchor="start" x="964.56" y="-203.7" font-family="arial" font-size="14.00">D261.205.356&#45;01</text>
-<polygon fill="none" stroke="black" points="1115.38,-196.5 1115.38,-221 1222,-221 1222,-196.5 1115.38,-196.5"/>
-<text text-anchor="start" x="1152.94" y="-203.7" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="927,-172 927,-196.5 1065.5,-196.5 1065.5,-172 927,-172"/>
-<text text-anchor="start" x="992.12" y="-179.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="1065.5,-172 1065.5,-196.5 1222,-196.5 1222,-172 1065.5,-172"/>
-<text text-anchor="start" x="1130.62" y="-179.2" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="927,0 927,-172 1222,-172 1222,0 927,0"/>
-<image xlink:href="images\LSU.png" width="287px" height="164px" preserveAspectRatio="xMinYMin meet" x="931" y="-168"/>
+<polygon fill="#ffffff" stroke="black" points="1222,-694 927,-694 927,-448.5 1222,-448.5 1222,-694"/>
+<polygon fill="none" stroke="black" points="927,-669.5 927,-694 1222,-694 1222,-669.5 927,-669.5"/>
+<text text-anchor="start" x="1060.62" y="-676.7" font-family="arial" font-size="14.00">LSU</text>
+<polygon fill="none" stroke="black" points="927,-645 927,-669.5 1115.38,-669.5 1115.38,-645 927,-645"/>
+<text text-anchor="start" x="964.56" y="-652.2" font-family="arial" font-size="14.00">D261.205.356&#45;01</text>
+<polygon fill="none" stroke="black" points="1115.38,-645 1115.38,-669.5 1222,-669.5 1222,-645 1115.38,-645"/>
+<text text-anchor="start" x="1152.94" y="-652.2" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="927,-620.5 927,-645 1065.5,-645 1065.5,-620.5 927,-620.5"/>
+<text text-anchor="start" x="992.12" y="-627.7" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="1065.5,-620.5 1065.5,-645 1222,-645 1222,-620.5 1065.5,-620.5"/>
+<text text-anchor="start" x="1130.62" y="-627.7" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="927,-448.5 927,-620.5 1222,-620.5 1222,-448.5 927,-448.5"/>
+<image xlink:href="images\LSU.png" width="287px" height="164px" preserveAspectRatio="xMinYMin meet" x="931" y="-616.5"/>
</g>
<!-- Servo Power -->
<g id="node12" class="node">
<title>Servo Power</title>
-<polygon fill="#ffffff" stroke="black" points="1224,-1451 925,-1451 925,-1026.5 1224,-1026.5 1224,-1451"/>
-<polygon fill="none" stroke="black" points="925,-1426.5 925,-1451 1224,-1451 1224,-1426.5 925,-1426.5"/>
-<text text-anchor="start" x="1033.62" y="-1433.7" font-family="arial" font-size="14.00">Servo Power</text>
-<polygon fill="none" stroke="black" points="925,-1402 925,-1426.5 1093.62,-1426.5 1093.62,-1402 925,-1402"/>
-<text text-anchor="start" x="974.44" y="-1409.2" font-family="arial" font-size="14.00">DTM04&#45;2P</text>
-<polygon fill="none" stroke="black" points="1093.62,-1402 1093.62,-1426.5 1224,-1426.5 1224,-1402 1093.62,-1402"/>
-<text text-anchor="start" x="1143.06" y="-1409.2" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="925,-1378 925,-1402 1017,-1402 1017,-1378 925,-1378"/>
-<text text-anchor="start" x="966.88" y="-1384.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1017,-1378 1017,-1402 1132,-1402 1132,-1378 1017,-1378"/>
-<text text-anchor="start" x="1061.38" y="-1384.7" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="1132,-1378 1132,-1402 1224,-1402 1224,-1378 1132,-1378"/>
-<text text-anchor="start" x="1173.88" y="-1384.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="925,-1354 925,-1378 1017,-1378 1017,-1354 925,-1354"/>
-<text text-anchor="start" x="966.88" y="-1360.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1017,-1354 1017,-1378 1132,-1378 1132,-1354 1017,-1354"/>
-<text text-anchor="start" x="1058.75" y="-1360.7" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="1132,-1354 1132,-1378 1224,-1378 1224,-1354 1132,-1354"/>
-<text text-anchor="start" x="1173.88" y="-1360.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="925,-1051 925,-1354 1224,-1354 1224,-1051 925,-1051"/>
-<image xlink:href="images\ServoP.png" width="291px" height="295px" preserveAspectRatio="xMinYMin meet" x="929" y="-1350"/>
-<polygon fill="none" stroke="black" points="925,-1026.5 925,-1051 1224,-1051 1224,-1026.5 925,-1026.5"/>
-<text text-anchor="start" x="1001" y="-1033.7" font-family="arial" font-size="14.00">Crimp mate DTM06&#45;2S</text>
+<polygon fill="#ffffff" stroke="black" points="1224,-424.5 925,-424.5 925,0 1224,0 1224,-424.5"/>
+<polygon fill="none" stroke="black" points="925,-400 925,-424.5 1224,-424.5 1224,-400 925,-400"/>
+<text text-anchor="start" x="1033.62" y="-407.2" font-family="arial" font-size="14.00">Servo Power</text>
+<polygon fill="none" stroke="black" points="925,-375.5 925,-400 1093.62,-400 1093.62,-375.5 925,-375.5"/>
+<text text-anchor="start" x="974.44" y="-382.7" font-family="arial" font-size="14.00">DTM04&#45;2P</text>
+<polygon fill="none" stroke="black" points="1093.62,-375.5 1093.62,-400 1224,-400 1224,-375.5 1093.62,-375.5"/>
+<text text-anchor="start" x="1143.06" y="-382.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="925,-351.5 925,-375.5 1017,-375.5 1017,-351.5 925,-351.5"/>
+<text text-anchor="start" x="966.88" y="-358.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1017,-351.5 1017,-375.5 1132,-375.5 1132,-351.5 1017,-351.5"/>
+<text text-anchor="start" x="1061.38" y="-358.2" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="1132,-351.5 1132,-375.5 1224,-375.5 1224,-351.5 1132,-351.5"/>
+<text text-anchor="start" x="1173.88" y="-358.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="925,-327.5 925,-351.5 1017,-351.5 1017,-327.5 925,-327.5"/>
+<text text-anchor="start" x="966.88" y="-334.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1017,-327.5 1017,-351.5 1132,-351.5 1132,-327.5 1017,-327.5"/>
+<text text-anchor="start" x="1058.75" y="-334.2" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="1132,-327.5 1132,-351.5 1224,-351.5 1224,-327.5 1132,-327.5"/>
+<text text-anchor="start" x="1173.88" y="-334.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="925,-24.5 925,-327.5 1224,-327.5 1224,-24.5 925,-24.5"/>
+<image xlink:href="images\ServoP.png" width="291px" height="295px" preserveAspectRatio="xMinYMin meet" x="929" y="-323.5"/>
+<polygon fill="none" stroke="black" points="925,0 925,-24.5 1224,-24.5 1224,0 925,0"/>
+<text text-anchor="start" x="1001" y="-7.2" font-family="arial" font-size="14.00">Crimp mate DTM06&#45;2S</text>
</g>
<!-- W22 -->
<g id="node44" class="node">
<title>W22</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1762,-1831.25 1447,-1831.25 1447,-1716.25 1762,-1716.25 1762,-1831.25"/>
-<polygon fill="none" stroke="black" points="1447,-1806.75 1447,-1831.25 1762,-1831.25 1762,-1806.75 1447,-1806.75"/>
-<text text-anchor="start" x="1589.12" y="-1813.95" font-family="arial" font-size="14.00">W22</text>
-<polygon fill="none" stroke="black" points="1447,-1782.25 1447,-1806.75 1518.5,-1806.75 1518.5,-1782.25 1447,-1782.25"/>
-<text text-anchor="start" x="1475.25" y="-1789.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1518.5,-1782.25 1518.5,-1806.75 1630.5,-1806.75 1630.5,-1782.25 1518.5,-1782.25"/>
-<text text-anchor="start" x="1546.75" y="-1789.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1630.5,-1782.25 1630.5,-1806.75 1762,-1806.75 1762,-1782.25 1630.5,-1782.25"/>
-<text text-anchor="start" x="1658.75" y="-1789.45" font-family="arial" font-size="14.00">20.0 Inches</text>
-<text text-anchor="start" x="1511.62" y="-1766.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1449" y="-1746.95" font-family="arial" font-size="14.00">Servo Power:2:GND</text>
-<text text-anchor="start" x="1581.88" y="-1746.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1638.75" y="-1746.95" font-family="arial" font-size="14.00">Negative Bus Bar:2</text>
-<polygon fill="#000000" stroke="none" points="1447,-1740.25 1447,-1742.25 1762,-1742.25 1762,-1740.25 1447,-1740.25"/>
-<polygon fill="#000000" stroke="none" points="1447,-1738.25 1447,-1740.25 1762,-1740.25 1762,-1738.25 1447,-1738.25"/>
-<polygon fill="#000000" stroke="none" points="1447,-1736.25 1447,-1738.25 1762,-1738.25 1762,-1736.25 1447,-1736.25"/>
-<text text-anchor="start" x="1511.62" y="-1720.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1762,-898.75 1447,-898.75 1447,-783.75 1762,-783.75 1762,-898.75"/>
+<polygon fill="none" stroke="black" points="1447,-874.25 1447,-898.75 1762,-898.75 1762,-874.25 1447,-874.25"/>
+<text text-anchor="start" x="1589.12" y="-881.45" font-family="arial" font-size="14.00">W22</text>
+<polygon fill="none" stroke="black" points="1447,-849.75 1447,-874.25 1518.5,-874.25 1518.5,-849.75 1447,-849.75"/>
+<text text-anchor="start" x="1475.25" y="-856.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1518.5,-849.75 1518.5,-874.25 1630.5,-874.25 1630.5,-849.75 1518.5,-849.75"/>
+<text text-anchor="start" x="1546.75" y="-856.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1630.5,-849.75 1630.5,-874.25 1762,-874.25 1762,-849.75 1630.5,-849.75"/>
+<text text-anchor="start" x="1658.75" y="-856.95" font-family="arial" font-size="14.00">20.0 Inches</text>
+<text text-anchor="start" x="1511.62" y="-834.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1449" y="-814.45" font-family="arial" font-size="14.00">Servo Power:2:GND</text>
+<text text-anchor="start" x="1581.88" y="-814.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1638.75" y="-814.45" font-family="arial" font-size="14.00">Negative Bus Bar:2</text>
+<polygon fill="#000000" stroke="none" points="1447,-807.75 1447,-809.75 1762,-809.75 1762,-807.75 1447,-807.75"/>
+<polygon fill="#000000" stroke="none" points="1447,-805.75 1447,-807.75 1762,-807.75 1762,-805.75 1447,-805.75"/>
+<polygon fill="#000000" stroke="none" points="1447,-803.75 1447,-805.75 1762,-805.75 1762,-803.75 1447,-803.75"/>
+<text text-anchor="start" x="1511.62" y="-788.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Servo Power&#45;&#45;W22 -->
-<g id="edge62" class="edge">
+<g id="edge65" class="edge">
<title>Servo Power:e&#45;&#45;W22:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-1364C1419.62,-1366.81 1255.04,-1740.06 1446,-1737.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-1366C1417.79,-1366 1253.21,-1739.25 1446,-1739.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-1368C1415.96,-1365.19 1251.38,-1738.44 1446,-1741.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-337.5C1456.51,-340.41 1218.06,-807.66 1446,-804.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-339.5C1454.72,-339.5 1216.28,-806.75 1446,-806.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-341.5C1452.94,-338.59 1214.49,-805.84 1446,-808.75"/>
</g>
<!-- Fuse Block -->
<g id="node13" class="node">
<title>Fuse Block</title>
-<polygon fill="#ffffff" stroke="black" points="2442,-4181.5 1934,-4181.5 1934,-3630 2442,-3630 2442,-4181.5"/>
-<polygon fill="none" stroke="black" points="1934,-4157 1934,-4181.5 2442,-4181.5 2442,-4157 1934,-4157"/>
-<text text-anchor="start" x="2152.38" y="-4164.2" font-family="arial" font-size="14.00">Fuse Block</text>
-<polygon fill="none" stroke="black" points="1934,-4132.5 1934,-4157 2218.75,-4157 2218.75,-4132.5 1934,-4132.5"/>
-<text text-anchor="start" x="2029.88" y="-4139.7" font-family="arial" font-size="14.00">TE 2319023&#45;1</text>
-<polygon fill="none" stroke="black" points="2218.75,-4132.5 2218.75,-4157 2442,-4157 2442,-4132.5 2218.75,-4132.5"/>
-<text text-anchor="start" x="2314.62" y="-4139.7" font-family="arial" font-size="14.00">8&#45;pin</text>
-<polygon fill="none" stroke="black" points="1934,-4108.5 1934,-4132.5 2179.5,-4132.5 2179.5,-4108.5 1934,-4108.5"/>
-<text text-anchor="start" x="2052.62" y="-4115.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2179.5,-4108.5 2179.5,-4132.5 2442,-4132.5 2442,-4108.5 2179.5,-4108.5"/>
-<text text-anchor="start" x="2298" y="-4115.2" font-family="arial" font-size="14.00">F1+</text>
-<polygon fill="none" stroke="black" points="1934,-4084.5 1934,-4108.5 2179.5,-4108.5 2179.5,-4084.5 1934,-4084.5"/>
-<text text-anchor="start" x="2052.62" y="-4091.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2179.5,-4084.5 2179.5,-4108.5 2442,-4108.5 2442,-4084.5 2179.5,-4084.5"/>
-<text text-anchor="start" x="2299.88" y="-4091.2" font-family="arial" font-size="14.00">F1&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-4060.5 1934,-4084.5 2179.5,-4084.5 2179.5,-4060.5 1934,-4060.5"/>
-<text text-anchor="start" x="2052.62" y="-4067.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2179.5,-4060.5 2179.5,-4084.5 2442,-4084.5 2442,-4060.5 2179.5,-4060.5"/>
-<text text-anchor="start" x="2298" y="-4067.2" font-family="arial" font-size="14.00">F2+</text>
-<polygon fill="none" stroke="black" points="1934,-4036.5 1934,-4060.5 2179.5,-4060.5 2179.5,-4036.5 1934,-4036.5"/>
-<text text-anchor="start" x="2052.62" y="-4043.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="2179.5,-4036.5 2179.5,-4060.5 2442,-4060.5 2442,-4036.5 2179.5,-4036.5"/>
-<text text-anchor="start" x="2299.88" y="-4043.2" font-family="arial" font-size="14.00">F2&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-4012.5 1934,-4036.5 2179.5,-4036.5 2179.5,-4012.5 1934,-4012.5"/>
-<text text-anchor="start" x="2052.62" y="-4019.2" font-family="arial" font-size="14.00">5</text>
-<polygon fill="none" stroke="black" points="2179.5,-4012.5 2179.5,-4036.5 2442,-4036.5 2442,-4012.5 2179.5,-4012.5"/>
-<text text-anchor="start" x="2298" y="-4019.2" font-family="arial" font-size="14.00">F3+</text>
-<polygon fill="none" stroke="black" points="1934,-3988.5 1934,-4012.5 2179.5,-4012.5 2179.5,-3988.5 1934,-3988.5"/>
-<text text-anchor="start" x="2052.62" y="-3995.2" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="2179.5,-3988.5 2179.5,-4012.5 2442,-4012.5 2442,-3988.5 2179.5,-3988.5"/>
-<text text-anchor="start" x="2299.88" y="-3995.2" font-family="arial" font-size="14.00">F3&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-3964.5 1934,-3988.5 2179.5,-3988.5 2179.5,-3964.5 1934,-3964.5"/>
-<text text-anchor="start" x="2052.62" y="-3971.2" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="2179.5,-3964.5 2179.5,-3988.5 2442,-3988.5 2442,-3964.5 2179.5,-3964.5"/>
-<text text-anchor="start" x="2298" y="-3971.2" font-family="arial" font-size="14.00">F4+</text>
-<polygon fill="none" stroke="black" points="1934,-3940.5 1934,-3964.5 2179.5,-3964.5 2179.5,-3940.5 1934,-3940.5"/>
-<text text-anchor="start" x="2052.62" y="-3947.2" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="2179.5,-3940.5 2179.5,-3964.5 2442,-3964.5 2442,-3940.5 2179.5,-3940.5"/>
-<text text-anchor="start" x="2299.88" y="-3947.2" font-family="arial" font-size="14.00">F4&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-3654.5 1934,-3940.5 2442,-3940.5 2442,-3654.5 1934,-3654.5"/>
-<image xlink:href="images\FB.png" width="491.88px" height="274px" preserveAspectRatio="xMinYMin meet" x="1942.06" y="-3934.5"/>
-<polygon fill="none" stroke="black" points="1934,-3630 1934,-3654.5 2442,-3654.5 2442,-3630 1934,-3630"/>
-<text text-anchor="start" x="2113.75" y="-3637.2" font-family="arial" font-size="14.00">F1 15A, F2 15A, F3 5A</text>
+<polygon fill="#ffffff" stroke="black" points="2442,-4008 1934,-4008 1934,-3456.5 2442,-3456.5 2442,-4008"/>
+<polygon fill="none" stroke="black" points="1934,-3983.5 1934,-4008 2442,-4008 2442,-3983.5 1934,-3983.5"/>
+<text text-anchor="start" x="2152.38" y="-3990.7" font-family="arial" font-size="14.00">Fuse Block</text>
+<polygon fill="none" stroke="black" points="1934,-3959 1934,-3983.5 2218.75,-3983.5 2218.75,-3959 1934,-3959"/>
+<text text-anchor="start" x="2029.88" y="-3966.2" font-family="arial" font-size="14.00">TE 2319023&#45;1</text>
+<polygon fill="none" stroke="black" points="2218.75,-3959 2218.75,-3983.5 2442,-3983.5 2442,-3959 2218.75,-3959"/>
+<text text-anchor="start" x="2314.62" y="-3966.2" font-family="arial" font-size="14.00">8&#45;pin</text>
+<polygon fill="none" stroke="black" points="1934,-3935 1934,-3959 2179.5,-3959 2179.5,-3935 1934,-3935"/>
+<text text-anchor="start" x="2052.62" y="-3941.7" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2179.5,-3935 2179.5,-3959 2442,-3959 2442,-3935 2179.5,-3935"/>
+<text text-anchor="start" x="2298" y="-3941.7" font-family="arial" font-size="14.00">F1+</text>
+<polygon fill="none" stroke="black" points="1934,-3911 1934,-3935 2179.5,-3935 2179.5,-3911 1934,-3911"/>
+<text text-anchor="start" x="2052.62" y="-3917.7" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2179.5,-3911 2179.5,-3935 2442,-3935 2442,-3911 2179.5,-3911"/>
+<text text-anchor="start" x="2299.88" y="-3917.7" font-family="arial" font-size="14.00">F1&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3887 1934,-3911 2179.5,-3911 2179.5,-3887 1934,-3887"/>
+<text text-anchor="start" x="2052.62" y="-3893.7" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2179.5,-3887 2179.5,-3911 2442,-3911 2442,-3887 2179.5,-3887"/>
+<text text-anchor="start" x="2298" y="-3893.7" font-family="arial" font-size="14.00">F2+</text>
+<polygon fill="none" stroke="black" points="1934,-3863 1934,-3887 2179.5,-3887 2179.5,-3863 1934,-3863"/>
+<text text-anchor="start" x="2052.62" y="-3869.7" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="2179.5,-3863 2179.5,-3887 2442,-3887 2442,-3863 2179.5,-3863"/>
+<text text-anchor="start" x="2299.88" y="-3869.7" font-family="arial" font-size="14.00">F2&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3839 1934,-3863 2179.5,-3863 2179.5,-3839 1934,-3839"/>
+<text text-anchor="start" x="2052.62" y="-3845.7" font-family="arial" font-size="14.00">5</text>
+<polygon fill="none" stroke="black" points="2179.5,-3839 2179.5,-3863 2442,-3863 2442,-3839 2179.5,-3839"/>
+<text text-anchor="start" x="2298" y="-3845.7" font-family="arial" font-size="14.00">F3+</text>
+<polygon fill="none" stroke="black" points="1934,-3815 1934,-3839 2179.5,-3839 2179.5,-3815 1934,-3815"/>
+<text text-anchor="start" x="2052.62" y="-3821.7" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="2179.5,-3815 2179.5,-3839 2442,-3839 2442,-3815 2179.5,-3815"/>
+<text text-anchor="start" x="2299.88" y="-3821.7" font-family="arial" font-size="14.00">F3&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3791 1934,-3815 2179.5,-3815 2179.5,-3791 1934,-3791"/>
+<text text-anchor="start" x="2052.62" y="-3797.7" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="2179.5,-3791 2179.5,-3815 2442,-3815 2442,-3791 2179.5,-3791"/>
+<text text-anchor="start" x="2298" y="-3797.7" font-family="arial" font-size="14.00">F4+</text>
+<polygon fill="none" stroke="black" points="1934,-3767 1934,-3791 2179.5,-3791 2179.5,-3767 1934,-3767"/>
+<text text-anchor="start" x="2052.62" y="-3773.7" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="2179.5,-3767 2179.5,-3791 2442,-3791 2442,-3767 2179.5,-3767"/>
+<text text-anchor="start" x="2299.88" y="-3773.7" font-family="arial" font-size="14.00">F4&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3481 1934,-3767 2442,-3767 2442,-3481 1934,-3481"/>
+<image xlink:href="images\FB.png" width="491.88px" height="274px" preserveAspectRatio="xMinYMin meet" x="1942.06" y="-3761"/>
+<polygon fill="none" stroke="black" points="1934,-3456.5 1934,-3481 2442,-3481 2442,-3456.5 1934,-3456.5"/>
+<text text-anchor="start" x="2113.75" y="-3463.7" font-family="arial" font-size="14.00">F1 15A, F2 15A, F3 5A</text>
</g>
<!-- KillSwitch -->
<g id="node14" class="node">
<title>KillSwitch</title>
-<polygon fill="#ffffff" stroke="black" points="1227,-3737 922,-3737 922,-3420.5 1227,-3420.5 1227,-3737"/>
-<polygon fill="none" stroke="black" points="922,-3712.5 922,-3737 1227,-3737 1227,-3712.5 922,-3712.5"/>
-<text text-anchor="start" x="1044.5" y="-3719.7" font-family="arial" font-size="14.00">KillSwitch</text>
-<polygon fill="none" stroke="black" points="922,-3688 922,-3712.5 1105.62,-3712.5 1105.62,-3688 922,-3688"/>
-<text text-anchor="start" x="966.94" y="-3695.2" font-family="arial" font-size="14.00">MS24658&#45;22D</text>
-<polygon fill="none" stroke="black" points="1105.62,-3688 1105.62,-3712.5 1227,-3712.5 1227,-3688 1105.62,-3688"/>
-<text text-anchor="start" x="1150.56" y="-3695.2" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="922,-3664 922,-3688 1008,-3688 1008,-3664 922,-3664"/>
-<text text-anchor="start" x="960.88" y="-3670.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1008,-3664 1008,-3688 1141,-3688 1141,-3664 1008,-3664"/>
-<text text-anchor="start" x="1064.38" y="-3670.7" font-family="arial" font-size="14.00">NC</text>
-<polygon fill="none" stroke="black" points="1141,-3664 1141,-3688 1227,-3688 1227,-3664 1141,-3664"/>
-<text text-anchor="start" x="1179.88" y="-3670.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="922,-3640 922,-3664 1008,-3664 1008,-3640 922,-3640"/>
-<text text-anchor="start" x="960.88" y="-3646.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1008,-3640 1008,-3664 1141,-3664 1141,-3640 1008,-3640"/>
-<text text-anchor="start" x="1046.75" y="-3646.7" font-family="arial" font-size="14.00">common</text>
-<polygon fill="none" stroke="black" points="1141,-3640 1141,-3664 1227,-3664 1227,-3640 1141,-3640"/>
-<text text-anchor="start" x="1179.88" y="-3646.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="922,-3616 922,-3640 1008,-3640 1008,-3616 922,-3616"/>
-<text text-anchor="start" x="960.88" y="-3622.7" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="1008,-3616 1008,-3640 1141,-3640 1141,-3616 1008,-3616"/>
-<text text-anchor="start" x="1064.75" y="-3622.7" font-family="arial" font-size="14.00">KS</text>
-<polygon fill="none" stroke="black" points="1141,-3616 1141,-3640 1227,-3640 1227,-3616 1141,-3616"/>
-<text text-anchor="start" x="1179.88" y="-3622.7" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="922,-3445 922,-3616 1227,-3616 1227,-3445 922,-3445"/>
-<image xlink:href="images\kill.png" width="297px" height="163px" preserveAspectRatio="xMinYMin meet" x="926" y="-3612"/>
-<polygon fill="none" stroke="black" points="922,-3420.5 922,-3445 1227,-3445 1227,-3420.5 922,-3420.5"/>
-<text text-anchor="start" x="960.5" y="-3427.7" font-family="arial" font-size="14.00">Ring Terminal (Inner Diameter.260&quot;)</text>
+<polygon fill="#ffffff" stroke="black" points="1227,-3736.5 922,-3736.5 922,-3420 1227,-3420 1227,-3736.5"/>
+<polygon fill="none" stroke="black" points="922,-3712 922,-3736.5 1227,-3736.5 1227,-3712 922,-3712"/>
+<text text-anchor="start" x="1044.5" y="-3719.2" font-family="arial" font-size="14.00">KillSwitch</text>
+<polygon fill="none" stroke="black" points="922,-3687.5 922,-3712 1105.62,-3712 1105.62,-3687.5 922,-3687.5"/>
+<text text-anchor="start" x="966.94" y="-3694.7" font-family="arial" font-size="14.00">MS24658&#45;22D</text>
+<polygon fill="none" stroke="black" points="1105.62,-3687.5 1105.62,-3712 1227,-3712 1227,-3687.5 1105.62,-3687.5"/>
+<text text-anchor="start" x="1150.56" y="-3694.7" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="922,-3663.5 922,-3687.5 1008,-3687.5 1008,-3663.5 922,-3663.5"/>
+<text text-anchor="start" x="960.88" y="-3670.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1008,-3663.5 1008,-3687.5 1141,-3687.5 1141,-3663.5 1008,-3663.5"/>
+<text text-anchor="start" x="1064.38" y="-3670.2" font-family="arial" font-size="14.00">NC</text>
+<polygon fill="none" stroke="black" points="1141,-3663.5 1141,-3687.5 1227,-3687.5 1227,-3663.5 1141,-3663.5"/>
+<text text-anchor="start" x="1179.88" y="-3670.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="922,-3639.5 922,-3663.5 1008,-3663.5 1008,-3639.5 922,-3639.5"/>
+<text text-anchor="start" x="960.88" y="-3646.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1008,-3639.5 1008,-3663.5 1141,-3663.5 1141,-3639.5 1008,-3639.5"/>
+<text text-anchor="start" x="1046.75" y="-3646.2" font-family="arial" font-size="14.00">common</text>
+<polygon fill="none" stroke="black" points="1141,-3639.5 1141,-3663.5 1227,-3663.5 1227,-3639.5 1141,-3639.5"/>
+<text text-anchor="start" x="1179.88" y="-3646.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="922,-3615.5 922,-3639.5 1008,-3639.5 1008,-3615.5 922,-3615.5"/>
+<text text-anchor="start" x="960.88" y="-3622.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="1008,-3615.5 1008,-3639.5 1141,-3639.5 1141,-3615.5 1008,-3615.5"/>
+<text text-anchor="start" x="1064.75" y="-3622.2" font-family="arial" font-size="14.00">KS</text>
+<polygon fill="none" stroke="black" points="1141,-3615.5 1141,-3639.5 1227,-3639.5 1227,-3615.5 1141,-3615.5"/>
+<text text-anchor="start" x="1179.88" y="-3622.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="922,-3444.5 922,-3615.5 1227,-3615.5 1227,-3444.5 922,-3444.5"/>
+<image xlink:href="images\kill.png" width="297px" height="163px" preserveAspectRatio="xMinYMin meet" x="926" y="-3611.5"/>
+<polygon fill="none" stroke="black" points="922,-3420 922,-3444.5 1227,-3444.5 1227,-3420 922,-3420"/>
+<text text-anchor="start" x="960.5" y="-3427.2" font-family="arial" font-size="14.00">Ring Terminal (Inner Diameter.260&quot;)</text>
</g>
<!-- W14 -->
<g id="node38" class="node">
<title>W14</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1741,-4204.25 1468,-4204.25 1468,-4089.25 1741,-4089.25 1741,-4204.25"/>
-<polygon fill="none" stroke="black" points="1468,-4179.75 1468,-4204.25 1741,-4204.25 1741,-4179.75 1468,-4179.75"/>
-<text text-anchor="start" x="1589.12" y="-4186.95" font-family="arial" font-size="14.00">W14</text>
-<polygon fill="none" stroke="black" points="1468,-4155.25 1468,-4179.75 1522.75,-4179.75 1522.75,-4155.25 1468,-4155.25"/>
-<text text-anchor="start" x="1487.88" y="-4162.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1522.75,-4155.25 1522.75,-4179.75 1618,-4179.75 1618,-4155.25 1522.75,-4155.25"/>
-<text text-anchor="start" x="1542.62" y="-4162.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1618,-4155.25 1618,-4179.75 1741,-4179.75 1741,-4155.25 1618,-4155.25"/>
-<text text-anchor="start" x="1637.88" y="-4162.45" font-family="arial" font-size="14.00">170.0 Inches</text>
-<text text-anchor="start" x="1515.62" y="-4139.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1469.88" y="-4119.95" font-family="arial" font-size="14.00">KillSwitch:3:KS</text>
-<text text-anchor="start" x="1568.62" y="-4119.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1626.75" y="-4119.95" font-family="arial" font-size="14.00">Fuse Block:3:F2+</text>
-<polygon fill="#000000" stroke="none" points="1468,-4113.25 1468,-4115.25 1741,-4115.25 1741,-4113.25 1468,-4113.25"/>
-<polygon fill="#ff0000" stroke="none" points="1468,-4111.25 1468,-4113.25 1741,-4113.25 1741,-4111.25 1468,-4111.25"/>
-<polygon fill="#000000" stroke="none" points="1468,-4109.25 1468,-4111.25 1741,-4111.25 1741,-4109.25 1468,-4109.25"/>
-<text text-anchor="start" x="1515.62" y="-4093.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1741,-3726.75 1468,-3726.75 1468,-3611.75 1741,-3611.75 1741,-3726.75"/>
+<polygon fill="none" stroke="black" points="1468,-3702.25 1468,-3726.75 1741,-3726.75 1741,-3702.25 1468,-3702.25"/>
+<text text-anchor="start" x="1589.12" y="-3709.45" font-family="arial" font-size="14.00">W14</text>
+<polygon fill="none" stroke="black" points="1468,-3677.75 1468,-3702.25 1522.75,-3702.25 1522.75,-3677.75 1468,-3677.75"/>
+<text text-anchor="start" x="1487.88" y="-3684.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1522.75,-3677.75 1522.75,-3702.25 1618,-3702.25 1618,-3677.75 1522.75,-3677.75"/>
+<text text-anchor="start" x="1542.62" y="-3684.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1618,-3677.75 1618,-3702.25 1741,-3702.25 1741,-3677.75 1618,-3677.75"/>
+<text text-anchor="start" x="1637.88" y="-3684.95" font-family="arial" font-size="14.00">170.0 Inches</text>
+<text text-anchor="start" x="1515.62" y="-3662.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1469.88" y="-3642.45" font-family="arial" font-size="14.00">KillSwitch:3:KS</text>
+<text text-anchor="start" x="1568.62" y="-3642.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1626.75" y="-3642.45" font-family="arial" font-size="14.00">Fuse Block:3:F2+</text>
+<polygon fill="#000000" stroke="none" points="1468,-3635.75 1468,-3637.75 1741,-3637.75 1741,-3635.75 1468,-3635.75"/>
+<polygon fill="#ff0000" stroke="none" points="1468,-3633.75 1468,-3635.75 1741,-3635.75 1741,-3633.75 1468,-3633.75"/>
+<polygon fill="#000000" stroke="none" points="1468,-3631.75 1468,-3633.75 1741,-3633.75 1741,-3631.75 1468,-3631.75"/>
+<text text-anchor="start" x="1515.62" y="-3616.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- KillSwitch&#45;&#45;W14 -->
-<g id="edge50" class="edge">
+<g id="edge53" class="edge">
<title>KillSwitch:e&#45;&#45;W14:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3626C1469.8,-3628.89 1228.78,-4113.14 1467,-4110.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1228,-3628C1468.01,-3628 1226.99,-4112.25 1467,-4112.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3630C1466.22,-3627.11 1225.2,-4111.36 1467,-4114.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3625.5C1334.8,-3625.57 1361.26,-3632.82 1467,-3632.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1228,-3627.5C1334.27,-3627.5 1360.73,-3634.75 1467,-3634.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3629.5C1333.74,-3629.43 1360.2,-3636.68 1467,-3636.75"/>
</g>
<!-- Tachometer -->
<g id="node15" class="node">
<title>Tachometer</title>
-<polygon fill="#ffffff" stroke="black" points="2342,-4985.5 2034,-4985.5 2034,-4542 2342,-4542 2342,-4985.5"/>
-<polygon fill="none" stroke="black" points="2034,-4961 2034,-4985.5 2342,-4985.5 2342,-4961 2034,-4961"/>
-<text text-anchor="start" x="2149.75" y="-4968.2" font-family="arial" font-size="14.00">Tachometer</text>
-<polygon fill="none" stroke="black" points="2034,-4936.5 2034,-4961 2201.5,-4961 2201.5,-4936.5 2034,-4936.5"/>
-<text text-anchor="start" x="2088.5" y="-4943.7" font-family="arial" font-size="14.00">DT04&#45;3P</text>
-<polygon fill="none" stroke="black" points="2201.5,-4936.5 2201.5,-4961 2342,-4961 2342,-4936.5 2201.5,-4936.5"/>
-<text text-anchor="start" x="2256" y="-4943.7" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="2034,-4912.5 2034,-4936.5 2177.5,-4936.5 2177.5,-4912.5 2034,-4912.5"/>
-<text text-anchor="start" x="2100.88" y="-4919.2" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="2177.5,-4912.5 2177.5,-4936.5 2342,-4936.5 2342,-4912.5 2177.5,-4912.5"/>
-<text text-anchor="start" x="2246.62" y="-4919.2" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="2034,-4888.5 2034,-4912.5 2177.5,-4912.5 2177.5,-4888.5 2034,-4888.5"/>
-<text text-anchor="start" x="2100.88" y="-4895.2" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="2177.5,-4888.5 2177.5,-4912.5 2342,-4912.5 2342,-4888.5 2177.5,-4888.5"/>
-<text text-anchor="start" x="2244" y="-4895.2" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="2034,-4864.5 2034,-4888.5 2177.5,-4888.5 2177.5,-4864.5 2034,-4864.5"/>
-<text text-anchor="start" x="2100.5" y="-4871.2" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="2177.5,-4864.5 2177.5,-4888.5 2342,-4888.5 2342,-4864.5 2177.5,-4864.5"/>
-<text text-anchor="start" x="2248.5" y="-4871.2" font-family="arial" font-size="14.00">Out</text>
-<polygon fill="none" stroke="black" points="2034,-4566.5 2034,-4864.5 2342,-4864.5 2342,-4566.5 2034,-4566.5"/>
-<image xlink:href="images\DT04-3P.png" width="295.36px" height="286px" preserveAspectRatio="xMinYMin meet" x="2040.32" y="-4858.5"/>
-<polygon fill="none" stroke="black" points="2034,-4542 2034,-4566.5 2342,-4566.5 2342,-4542 2034,-4542"/>
-<text text-anchor="start" x="2123.88" y="-4549.2" font-family="arial" font-size="14.00">Mates with DT06&#45;3S</text>
+<polygon fill="#ffffff" stroke="black" points="2342,-4812 2034,-4812 2034,-4368.5 2342,-4368.5 2342,-4812"/>
+<polygon fill="none" stroke="black" points="2034,-4787.5 2034,-4812 2342,-4812 2342,-4787.5 2034,-4787.5"/>
+<text text-anchor="start" x="2149.75" y="-4794.7" font-family="arial" font-size="14.00">Tachometer</text>
+<polygon fill="none" stroke="black" points="2034,-4763 2034,-4787.5 2201.5,-4787.5 2201.5,-4763 2034,-4763"/>
+<text text-anchor="start" x="2088.5" y="-4770.2" font-family="arial" font-size="14.00">DT04&#45;3P</text>
+<polygon fill="none" stroke="black" points="2201.5,-4763 2201.5,-4787.5 2342,-4787.5 2342,-4763 2201.5,-4763"/>
+<text text-anchor="start" x="2256" y="-4770.2" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="2034,-4739 2034,-4763 2129.67,-4763 2129.67,-4739 2034,-4739"/>
+<text text-anchor="start" x="2076.96" y="-4745.7" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2129.67,-4739 2129.67,-4763 2246.33,-4763 2246.33,-4739 2129.67,-4739"/>
+<text text-anchor="start" x="2174.88" y="-4745.7" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="2246.33,-4739 2246.33,-4763 2342,-4763 2342,-4739 2246.33,-4739"/>
+<text text-anchor="start" x="2289.29" y="-4745.7" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2034,-4715 2034,-4739 2129.67,-4739 2129.67,-4715 2034,-4715"/>
+<text text-anchor="start" x="2076.96" y="-4721.7" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2129.67,-4715 2129.67,-4739 2246.33,-4739 2246.33,-4715 2129.67,-4715"/>
+<text text-anchor="start" x="2172.25" y="-4721.7" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="2246.33,-4715 2246.33,-4739 2342,-4739 2342,-4715 2246.33,-4715"/>
+<text text-anchor="start" x="2289.29" y="-4721.7" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2034,-4691 2034,-4715 2129.67,-4715 2129.67,-4691 2034,-4691"/>
+<text text-anchor="start" x="2076.58" y="-4697.7" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2129.67,-4691 2129.67,-4715 2246.33,-4715 2246.33,-4691 2129.67,-4691"/>
+<text text-anchor="start" x="2176.75" y="-4697.7" font-family="arial" font-size="14.00">Out</text>
+<polygon fill="none" stroke="black" points="2246.33,-4691 2246.33,-4715 2342,-4715 2342,-4691 2246.33,-4691"/>
+<text text-anchor="start" x="2288.92" y="-4697.7" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2034,-4393 2034,-4691 2342,-4691 2342,-4393 2034,-4393"/>
+<image xlink:href="images\DT04-3P.png" width="295.36px" height="286px" preserveAspectRatio="xMinYMin meet" x="2040.32" y="-4685"/>
+<polygon fill="none" stroke="black" points="2034,-4368.5 2034,-4393 2342,-4393 2342,-4368.5 2034,-4368.5"/>
+<text text-anchor="start" x="2123.88" y="-4375.7" font-family="arial" font-size="14.00">Mates with DT06&#45;3S</text>
+</g>
+<!-- W12 -->
+<g id="node36" class="node">
+<title>W12</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2844.5,-4819 2586,-4819 2586,-4679.5 2844.5,-4679.5 2844.5,-4819"/>
+<polygon fill="none" stroke="black" points="2586,-4794.5 2586,-4819 2844.5,-4819 2844.5,-4794.5 2586,-4794.5"/>
+<text text-anchor="start" x="2699.88" y="-4801.7" font-family="arial" font-size="14.00">W12</text>
+<polygon fill="none" stroke="black" points="2586,-4770 2586,-4794.5 2638.67,-4794.5 2638.67,-4770 2586,-4770"/>
+<text text-anchor="start" x="2604.83" y="-4777.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="2638.67,-4770 2638.67,-4794.5 2731.83,-4794.5 2731.83,-4770 2638.67,-4770"/>
+<text text-anchor="start" x="2657.5" y="-4777.2" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2731.83,-4770 2731.83,-4794.5 2844.5,-4794.5 2844.5,-4770 2731.83,-4770"/>
+<text text-anchor="start" x="2750.67" y="-4777.2" font-family="arial" font-size="14.00">60.0 Inches</text>
+<text text-anchor="start" x="2660.04" y="-4754.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="2599.29" y="-4734.7" font-family="arial" font-size="14.00">Tachometer:B:GND</text>
+<text text-anchor="start" x="2751.12" y="-4734.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="2586,-4728 2586,-4730 2844.5,-4730 2844.5,-4728 2586,-4728"/>
+<polygon fill="#000000" stroke="none" points="2586,-4726 2586,-4728 2844.5,-4728 2844.5,-4726 2586,-4726"/>
+<polygon fill="#000000" stroke="none" points="2586,-4724 2586,-4726 2844.5,-4726 2844.5,-4724 2586,-4724"/>
+<text text-anchor="start" x="2660.04" y="-4708.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="2586,-4679.5 2586,-4704 2844.5,-4704 2844.5,-4679.5 2586,-4679.5"/>
+<text text-anchor="start" x="2590" y="-4686.7" font-family="arial" font-size="14.00">Distance is from ECU to engine ground.</text>
+</g>
+<!-- Tachometer&#45;&#45;W12 -->
+<g id="edge49" class="edge">
+<title>Tachometer:e&#45;&#45;W12:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4725C2451,-4725 2478,-4725 2586,-4725"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4727C2451,-4727 2478,-4727 2586,-4727"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4729C2451,-4729 2478,-4729 2586,-4729"/>
</g>
<!-- Positive Bus Bar -->
<g id="node16" class="node">
<title>Positive Bus Bar</title>
-<polygon fill="#ffffff" stroke="black" points="213,-3901.25 23,-3901.25 23,-3754.25 213,-3754.25 213,-3901.25"/>
-<polygon fill="none" stroke="black" points="23,-3876.75 23,-3901.25 213,-3901.25 213,-3876.75 23,-3876.75"/>
-<text text-anchor="start" x="65.88" y="-3883.95" font-family="arial" font-size="14.00">Positive Bus Bar</text>
-<polygon fill="none" stroke="black" points="23,-3852.25 23,-3876.75 173.5,-3876.75 173.5,-3852.25 23,-3852.25"/>
-<text text-anchor="start" x="27" y="-3859.45" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
-<polygon fill="none" stroke="black" points="173.5,-3852.25 173.5,-3876.75 213,-3876.75 213,-3852.25 173.5,-3852.25"/>
-<text text-anchor="start" x="177.5" y="-3859.45" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="23,-3827.75 23,-3852.25 213,-3852.25 213,-3827.75 23,-3827.75"/>
-<text text-anchor="start" x="113.88" y="-3834.95" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="23,-3803.25 23,-3827.75 213,-3827.75 213,-3803.25 23,-3803.25"/>
-<text text-anchor="start" x="113.88" y="-3810.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="23,-3778.75 23,-3803.25 213,-3803.25 213,-3778.75 23,-3778.75"/>
-<text text-anchor="start" x="113.88" y="-3785.95" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="23,-3754.25 23,-3778.75 213,-3778.75 213,-3754.25 23,-3754.25"/>
-<text text-anchor="start" x="113.88" y="-3761.45" font-family="arial" font-size="14.00">4</text>
+<polygon fill="#ffffff" stroke="black" points="213,-3900.75 23,-3900.75 23,-3753.75 213,-3753.75 213,-3900.75"/>
+<polygon fill="none" stroke="black" points="23,-3876.25 23,-3900.75 213,-3900.75 213,-3876.25 23,-3876.25"/>
+<text text-anchor="start" x="65.88" y="-3883.45" font-family="arial" font-size="14.00">Positive Bus Bar</text>
+<polygon fill="none" stroke="black" points="23,-3851.75 23,-3876.25 173.5,-3876.25 173.5,-3851.75 23,-3851.75"/>
+<text text-anchor="start" x="27" y="-3858.95" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
+<polygon fill="none" stroke="black" points="173.5,-3851.75 173.5,-3876.25 213,-3876.25 213,-3851.75 173.5,-3851.75"/>
+<text text-anchor="start" x="177.5" y="-3858.95" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="23,-3827.25 23,-3851.75 213,-3851.75 213,-3827.25 23,-3827.25"/>
+<text text-anchor="start" x="113.88" y="-3834.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="23,-3802.75 23,-3827.25 213,-3827.25 213,-3802.75 23,-3802.75"/>
+<text text-anchor="start" x="113.88" y="-3809.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="23,-3778.25 23,-3802.75 213,-3802.75 213,-3778.25 23,-3778.25"/>
+<text text-anchor="start" x="113.88" y="-3785.45" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="23,-3753.75 23,-3778.25 213,-3778.25 213,-3753.75 23,-3753.75"/>
+<text text-anchor="start" x="113.88" y="-3760.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W6 -->
<g id="node29" class="node">
<title>W6</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="702,-3908.25 408,-3908.25 408,-3767.25 702,-3767.25 702,-3908.25"/>
-<polygon fill="none" stroke="black" points="408,-3883.75 408,-3908.25 702,-3908.25 702,-3883.75 408,-3883.75"/>
-<text text-anchor="start" x="543.75" y="-3890.95" font-family="arial" font-size="14.00">W6</text>
-<polygon fill="none" stroke="black" points="408,-3859.25 408,-3883.75 472.5,-3883.75 472.5,-3859.25 408,-3859.25"/>
-<text text-anchor="start" x="432.75" y="-3866.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="472.5,-3859.25 472.5,-3883.75 577.5,-3883.75 577.5,-3859.25 472.5,-3859.25"/>
-<text text-anchor="start" x="497.25" y="-3866.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="577.5,-3859.25 577.5,-3883.75 702,-3883.75 702,-3859.25 577.5,-3859.25"/>
-<text text-anchor="start" x="602.25" y="-3866.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="466.12" y="-3843.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="409.88" y="-3823.95" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
-<text text-anchor="start" x="529.62" y="-3823.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="587.75" y="-3823.95" font-family="arial" font-size="14.00">Fuse Block:1:F1+</text>
-<polygon fill="#000000" stroke="none" points="408,-3817.25 408,-3819.25 702,-3819.25 702,-3817.25 408,-3817.25"/>
-<polygon fill="#ff0000" stroke="none" points="408,-3815.25 408,-3817.25 702,-3817.25 702,-3815.25 408,-3815.25"/>
-<polygon fill="#000000" stroke="none" points="408,-3813.25 408,-3815.25 702,-3815.25 702,-3813.25 408,-3813.25"/>
-<text text-anchor="start" x="409.88" y="-3797.95" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
-<text text-anchor="start" x="529.62" y="-3797.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="587.75" y="-3797.95" font-family="arial" font-size="14.00">Fuse Block:5:F3+</text>
-<polygon fill="#000000" stroke="none" points="408,-3791.25 408,-3793.25 702,-3793.25 702,-3791.25 408,-3791.25"/>
-<polygon fill="#ff0000" stroke="none" points="408,-3789.25 408,-3791.25 702,-3791.25 702,-3789.25 408,-3789.25"/>
-<polygon fill="#000000" stroke="none" points="408,-3787.25 408,-3789.25 702,-3789.25 702,-3787.25 408,-3787.25"/>
-<text text-anchor="start" x="466.12" y="-3771.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="702,-3907.75 408,-3907.75 408,-3766.75 702,-3766.75 702,-3907.75"/>
+<polygon fill="none" stroke="black" points="408,-3883.25 408,-3907.75 702,-3907.75 702,-3883.25 408,-3883.25"/>
+<text text-anchor="start" x="543.75" y="-3890.45" font-family="arial" font-size="14.00">W6</text>
+<polygon fill="none" stroke="black" points="408,-3858.75 408,-3883.25 472.5,-3883.25 472.5,-3858.75 408,-3858.75"/>
+<text text-anchor="start" x="432.75" y="-3865.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="472.5,-3858.75 472.5,-3883.25 577.5,-3883.25 577.5,-3858.75 472.5,-3858.75"/>
+<text text-anchor="start" x="497.25" y="-3865.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="577.5,-3858.75 577.5,-3883.25 702,-3883.25 702,-3858.75 577.5,-3858.75"/>
+<text text-anchor="start" x="602.25" y="-3865.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="466.12" y="-3843.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="409.88" y="-3823.45" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
+<text text-anchor="start" x="529.62" y="-3823.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="587.75" y="-3823.45" font-family="arial" font-size="14.00">Fuse Block:1:F1+</text>
+<polygon fill="#000000" stroke="none" points="408,-3816.75 408,-3818.75 702,-3818.75 702,-3816.75 408,-3816.75"/>
+<polygon fill="#ff0000" stroke="none" points="408,-3814.75 408,-3816.75 702,-3816.75 702,-3814.75 408,-3814.75"/>
+<polygon fill="#000000" stroke="none" points="408,-3812.75 408,-3814.75 702,-3814.75 702,-3812.75 408,-3812.75"/>
+<text text-anchor="start" x="409.88" y="-3797.45" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
+<text text-anchor="start" x="529.62" y="-3797.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="587.75" y="-3797.45" font-family="arial" font-size="14.00">Fuse Block:5:F3+</text>
+<polygon fill="#000000" stroke="none" points="408,-3790.75 408,-3792.75 702,-3792.75 702,-3790.75 408,-3790.75"/>
+<polygon fill="#ff0000" stroke="none" points="408,-3788.75 408,-3790.75 702,-3790.75 702,-3788.75 408,-3788.75"/>
+<polygon fill="#000000" stroke="none" points="408,-3786.75 408,-3788.75 702,-3788.75 702,-3786.75 408,-3786.75"/>
+<text text-anchor="start" x="466.12" y="-3771.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Positive Bus Bar&#45;&#45;W6 -->
-<g id="edge20" class="edge">
+<g id="edge23" class="edge">
<title>Positive Bus Bar:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3789C302.08,-3789.76 322.06,-3815.01 407,-3814.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3791C300.51,-3791 320.49,-3816.25 407,-3816.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3793C298.94,-3792.24 318.92,-3817.49 407,-3818.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3788.5C302.08,-3789.26 322.06,-3814.51 407,-3813.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3790.5C300.51,-3790.5 320.49,-3815.75 407,-3815.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3792.5C298.94,-3791.74 318.92,-3816.99 407,-3817.75"/>
</g>
<!-- Positive Bus Bar&#45;&#45;W6 -->
-<g id="edge22" class="edge">
+<g id="edge25" class="edge">
<title>Positive Bus Bar:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3789C299.71,-3789 321.15,-3788.25 407,-3788.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3791C299.78,-3791 321.22,-3790.25 407,-3790.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3793C299.85,-3793 321.29,-3792.25 407,-3792.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3788.5C299.71,-3788.5 321.15,-3787.75 407,-3787.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3790.5C299.78,-3790.5 321.22,-3789.75 407,-3789.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3792.5C299.85,-3792.5 321.29,-3791.75 407,-3791.75"/>
</g>
<!-- W8 -->
<g id="node31" class="node">
<title>W8</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-3743.25 398.5,-3743.25 398.5,-3628.25 711.5,-3628.25 711.5,-3743.25"/>
-<polygon fill="none" stroke="black" points="398.5,-3718.75 398.5,-3743.25 711.5,-3743.25 711.5,-3718.75 398.5,-3718.75"/>
-<text text-anchor="start" x="543.75" y="-3725.95" font-family="arial" font-size="14.00">W8</text>
-<polygon fill="none" stroke="black" points="398.5,-3694.25 398.5,-3718.75 466.58,-3718.75 466.58,-3694.25 398.5,-3694.25"/>
-<text text-anchor="start" x="425.04" y="-3701.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="466.58,-3694.25 466.58,-3718.75 575.17,-3718.75 575.17,-3694.25 466.58,-3694.25"/>
-<text text-anchor="start" x="493.12" y="-3701.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="575.17,-3694.25 575.17,-3718.75 711.5,-3718.75 711.5,-3694.25 575.17,-3694.25"/>
-<text text-anchor="start" x="601.71" y="-3701.45" font-family="arial" font-size="14.00">170.0 Inches</text>
-<text text-anchor="start" x="456.62" y="-3678.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="400.38" y="-3658.95" font-family="arial" font-size="14.00">Positive Bus Bar:4</text>
-<text text-anchor="start" x="520.12" y="-3658.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="578.38" y="-3658.95" font-family="arial" font-size="14.00">KillSwitch:2:common</text>
-<polygon fill="#000000" stroke="none" points="398.5,-3652.25 398.5,-3654.25 711.5,-3654.25 711.5,-3652.25 398.5,-3652.25"/>
-<polygon fill="#ff0000" stroke="none" points="398.5,-3650.25 398.5,-3652.25 711.5,-3652.25 711.5,-3650.25 398.5,-3650.25"/>
-<polygon fill="#000000" stroke="none" points="398.5,-3648.25 398.5,-3650.25 711.5,-3650.25 711.5,-3648.25 398.5,-3648.25"/>
-<text text-anchor="start" x="456.62" y="-3632.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-3742.75 398.5,-3742.75 398.5,-3627.75 711.5,-3627.75 711.5,-3742.75"/>
+<polygon fill="none" stroke="black" points="398.5,-3718.25 398.5,-3742.75 711.5,-3742.75 711.5,-3718.25 398.5,-3718.25"/>
+<text text-anchor="start" x="543.75" y="-3725.45" font-family="arial" font-size="14.00">W8</text>
+<polygon fill="none" stroke="black" points="398.5,-3693.75 398.5,-3718.25 466.58,-3718.25 466.58,-3693.75 398.5,-3693.75"/>
+<text text-anchor="start" x="425.04" y="-3700.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="466.58,-3693.75 466.58,-3718.25 575.17,-3718.25 575.17,-3693.75 466.58,-3693.75"/>
+<text text-anchor="start" x="493.12" y="-3700.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="575.17,-3693.75 575.17,-3718.25 711.5,-3718.25 711.5,-3693.75 575.17,-3693.75"/>
+<text text-anchor="start" x="601.71" y="-3700.95" font-family="arial" font-size="14.00">170.0 Inches</text>
+<text text-anchor="start" x="456.62" y="-3678.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="400.38" y="-3658.45" font-family="arial" font-size="14.00">Positive Bus Bar:4</text>
+<text text-anchor="start" x="520.12" y="-3658.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="578.38" y="-3658.45" font-family="arial" font-size="14.00">KillSwitch:2:common</text>
+<polygon fill="#000000" stroke="none" points="398.5,-3651.75 398.5,-3653.75 711.5,-3653.75 711.5,-3651.75 398.5,-3651.75"/>
+<polygon fill="#ff0000" stroke="none" points="398.5,-3649.75 398.5,-3651.75 711.5,-3651.75 711.5,-3649.75 398.5,-3649.75"/>
+<polygon fill="#000000" stroke="none" points="398.5,-3647.75 398.5,-3649.75 711.5,-3649.75 711.5,-3647.75 398.5,-3647.75"/>
+<text text-anchor="start" x="456.62" y="-3632.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Positive Bus Bar&#45;&#45;W8 -->
-<g id="edge26" class="edge">
+<g id="edge29" class="edge">
<title>Positive Bus Bar:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3764.5C308.31,-3766.66 299.2,-3651.41 397.5,-3649.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3766.5C310.31,-3766.5 301.19,-3651.25 397.5,-3651.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3768.5C312.3,-3766.34 303.19,-3651.09 397.5,-3653.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3764C308.31,-3766.16 299.2,-3650.91 397.5,-3648.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3766C310.31,-3766 301.19,-3650.75 397.5,-3650.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3768C312.3,-3765.84 303.19,-3650.59 397.5,-3652.75"/>
</g>
<!-- Negative Bus Bar -->
<g id="node17" class="node">
<title>Negative Bus Bar</title>
-<polygon fill="#ffffff" stroke="black" points="2283,-2923.25 2093,-2923.25 2093,-2776.25 2283,-2776.25 2283,-2923.25"/>
-<polygon fill="none" stroke="black" points="2093,-2898.75 2093,-2923.25 2283,-2923.25 2283,-2898.75 2093,-2898.75"/>
-<text text-anchor="start" x="2133.25" y="-2905.95" font-family="arial" font-size="14.00">Negative Bus Bar</text>
-<polygon fill="none" stroke="black" points="2093,-2874.25 2093,-2898.75 2243.5,-2898.75 2243.5,-2874.25 2093,-2874.25"/>
-<text text-anchor="start" x="2097" y="-2881.45" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
-<polygon fill="none" stroke="black" points="2243.5,-2874.25 2243.5,-2898.75 2283,-2898.75 2283,-2874.25 2243.5,-2874.25"/>
-<text text-anchor="start" x="2247.5" y="-2881.45" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="2093,-2849.75 2093,-2874.25 2283,-2874.25 2283,-2849.75 2093,-2849.75"/>
-<text text-anchor="start" x="2183.88" y="-2856.95" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2093,-2825.25 2093,-2849.75 2283,-2849.75 2283,-2825.25 2093,-2825.25"/>
-<text text-anchor="start" x="2183.88" y="-2832.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2093,-2800.75 2093,-2825.25 2283,-2825.25 2283,-2800.75 2093,-2800.75"/>
-<text text-anchor="start" x="2183.88" y="-2807.95" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2093,-2776.25 2093,-2800.75 2283,-2800.75 2283,-2776.25 2093,-2776.25"/>
-<text text-anchor="start" x="2183.88" y="-2783.45" font-family="arial" font-size="14.00">4</text>
+<polygon fill="#ffffff" stroke="black" points="2283,-2804.75 2093,-2804.75 2093,-2657.75 2283,-2657.75 2283,-2804.75"/>
+<polygon fill="none" stroke="black" points="2093,-2780.25 2093,-2804.75 2283,-2804.75 2283,-2780.25 2093,-2780.25"/>
+<text text-anchor="start" x="2133.25" y="-2787.45" font-family="arial" font-size="14.00">Negative Bus Bar</text>
+<polygon fill="none" stroke="black" points="2093,-2755.75 2093,-2780.25 2243.5,-2780.25 2243.5,-2755.75 2093,-2755.75"/>
+<text text-anchor="start" x="2097" y="-2762.95" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
+<polygon fill="none" stroke="black" points="2243.5,-2755.75 2243.5,-2780.25 2283,-2780.25 2283,-2755.75 2243.5,-2755.75"/>
+<text text-anchor="start" x="2247.5" y="-2762.95" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="2093,-2731.25 2093,-2755.75 2283,-2755.75 2283,-2731.25 2093,-2731.25"/>
+<text text-anchor="start" x="2183.88" y="-2738.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2093,-2706.75 2093,-2731.25 2283,-2731.25 2283,-2706.75 2093,-2706.75"/>
+<text text-anchor="start" x="2183.88" y="-2713.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2093,-2682.25 2093,-2706.75 2283,-2706.75 2283,-2682.25 2093,-2682.25"/>
+<text text-anchor="start" x="2183.88" y="-2689.45" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2093,-2657.75 2093,-2682.25 2283,-2682.25 2283,-2657.75 2093,-2657.75"/>
+<text text-anchor="start" x="2183.88" y="-2664.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- _Engine GND_1 -->
<g id="node18" class="node">
<title>_Engine GND_1</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-3113 2144.25,-3113 2144.25,-3088.5 2231.75,-3088.5 2231.75,-3113"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3088.5 2144.25,-3113 2231.75,-3113 2231.75,-3088.5 2144.25,-3088.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-3088.5 2144.25,-3113 2231.75,-3113 2231.75,-3088.5 2144.25,-3088.5"/>
-<text text-anchor="start" x="2148.25" y="-3095.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-3138.5 2144.25,-3138.5 2144.25,-3114 2231.75,-3114 2231.75,-3138.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3114 2144.25,-3138.5 2231.75,-3138.5 2231.75,-3114 2144.25,-3114"/>
+<polygon fill="none" stroke="black" points="2144.25,-3114 2144.25,-3138.5 2231.75,-3138.5 2231.75,-3114 2144.25,-3114"/>
+<text text-anchor="start" x="2148.25" y="-3121.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_2 -->
<g id="node19" class="node">
<title>_Engine GND_2</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-3064 2144.25,-3064 2144.25,-3039.5 2231.75,-3039.5 2231.75,-3064"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3039.5 2144.25,-3064 2231.75,-3064 2231.75,-3039.5 2144.25,-3039.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-3039.5 2144.25,-3064 2231.75,-3064 2231.75,-3039.5 2144.25,-3039.5"/>
-<text text-anchor="start" x="2148.25" y="-3046.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-3089.5 2144.25,-3089.5 2144.25,-3065 2231.75,-3065 2231.75,-3089.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3065 2144.25,-3089.5 2231.75,-3089.5 2231.75,-3065 2144.25,-3065"/>
+<polygon fill="none" stroke="black" points="2144.25,-3065 2144.25,-3089.5 2231.75,-3089.5 2231.75,-3065 2144.25,-3065"/>
+<text text-anchor="start" x="2148.25" y="-3072.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_3 -->
<g id="node20" class="node">
<title>_Engine GND_3</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-2444 2144.25,-2444 2144.25,-2419.5 2231.75,-2419.5 2231.75,-2444"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2419.5 2144.25,-2444 2231.75,-2444 2231.75,-2419.5 2144.25,-2419.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-2419.5 2144.25,-2444 2231.75,-2444 2231.75,-2419.5 2144.25,-2419.5"/>
-<text text-anchor="start" x="2148.25" y="-2426.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-2439.5 2144.25,-2439.5 2144.25,-2415 2231.75,-2415 2231.75,-2439.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2415 2144.25,-2439.5 2231.75,-2439.5 2231.75,-2415 2144.25,-2415"/>
+<polygon fill="none" stroke="black" points="2144.25,-2415 2144.25,-2439.5 2231.75,-2439.5 2231.75,-2415 2144.25,-2415"/>
+<text text-anchor="start" x="2148.25" y="-2422.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_4 -->
<g id="node21" class="node">
<title>_Engine GND_4</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-2395 2144.25,-2395 2144.25,-2370.5 2231.75,-2370.5 2231.75,-2395"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2370.5 2144.25,-2395 2231.75,-2395 2231.75,-2370.5 2144.25,-2370.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-2370.5 2144.25,-2395 2231.75,-2395 2231.75,-2370.5 2144.25,-2370.5"/>
-<text text-anchor="start" x="2148.25" y="-2377.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-2390.5 2144.25,-2390.5 2144.25,-2366 2231.75,-2366 2231.75,-2390.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2366 2144.25,-2390.5 2231.75,-2390.5 2231.75,-2366 2144.25,-2366"/>
+<polygon fill="none" stroke="black" points="2144.25,-2366 2144.25,-2390.5 2231.75,-2390.5 2231.75,-2366 2144.25,-2366"/>
+<text text-anchor="start" x="2148.25" y="-2373.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_5 -->
<g id="node22" class="node">
<title>_Engine GND_5</title>
-<polygon fill="#ffffff" stroke="black" points="1118.25,-4773 1030.75,-4773 1030.75,-4748.5 1118.25,-4748.5 1118.25,-4773"/>
-<polygon fill="#aaaaaa" stroke="none" points="1030.75,-4748.5 1030.75,-4773 1118.25,-4773 1118.25,-4748.5 1030.75,-4748.5"/>
-<polygon fill="none" stroke="black" points="1030.75,-4748.5 1030.75,-4773 1118.25,-4773 1118.25,-4748.5 1030.75,-4748.5"/>
-<text text-anchor="start" x="1034.75" y="-4755.7" font-family="arial" font-size="14.00">Engine GND</text>
-</g>
-<!-- W12 -->
-<g id="node36" class="node">
-<title>W12</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1733.75,-4852.5 1475.25,-4852.5 1475.25,-4713 1733.75,-4713 1733.75,-4852.5"/>
-<polygon fill="none" stroke="black" points="1475.25,-4828 1475.25,-4852.5 1733.75,-4852.5 1733.75,-4828 1475.25,-4828"/>
-<text text-anchor="start" x="1589.12" y="-4835.2" font-family="arial" font-size="14.00">W12</text>
-<polygon fill="none" stroke="black" points="1475.25,-4803.5 1475.25,-4828 1527.92,-4828 1527.92,-4803.5 1475.25,-4803.5"/>
-<text text-anchor="start" x="1494.08" y="-4810.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1527.92,-4803.5 1527.92,-4828 1621.08,-4828 1621.08,-4803.5 1527.92,-4803.5"/>
-<text text-anchor="start" x="1546.75" y="-4810.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1621.08,-4803.5 1621.08,-4828 1733.75,-4828 1733.75,-4803.5 1621.08,-4803.5"/>
-<text text-anchor="start" x="1639.92" y="-4810.7" font-family="arial" font-size="14.00">60.0 Inches</text>
-<text text-anchor="start" x="1487.79" y="-4788.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1516.88" y="-4768.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1595.71" y="-4768.2" font-family="arial" font-size="14.00">Tachometer:B:GND</text>
-<polygon fill="#000000" stroke="none" points="1475.25,-4761.5 1475.25,-4763.5 1733.75,-4763.5 1733.75,-4761.5 1475.25,-4761.5"/>
-<polygon fill="#000000" stroke="none" points="1475.25,-4759.5 1475.25,-4761.5 1733.75,-4761.5 1733.75,-4759.5 1475.25,-4759.5"/>
-<polygon fill="#000000" stroke="none" points="1475.25,-4757.5 1475.25,-4759.5 1733.75,-4759.5 1733.75,-4757.5 1475.25,-4757.5"/>
-<text text-anchor="start" x="1487.79" y="-4742.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1475.25,-4713 1475.25,-4737.5 1733.75,-4737.5 1733.75,-4713 1475.25,-4713"/>
-<text text-anchor="start" x="1479.25" y="-4720.2" font-family="arial" font-size="14.00">Distance is from ECU to engine ground.</text>
-</g>
-<!-- _Engine GND_5&#45;&#45;W12 -->
-<g id="edge46" class="edge">
-<title>_Engine GND_5:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1119.25,-4758.75C1277.02,-4758.75 1316.46,-4758.5 1474.25,-4758.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1119.25,-4760.75C1277.03,-4760.75 1316.47,-4760.5 1474.25,-4760.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1119.25,-4762.75C1277.04,-4762.75 1316.48,-4762.5 1474.25,-4762.5"/>
+<polygon fill="#ffffff" stroke="black" points="3076,-4739.5 2988.5,-4739.5 2988.5,-4715 3076,-4715 3076,-4739.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2988.5,-4715 2988.5,-4739.5 3076,-4739.5 3076,-4715 2988.5,-4715"/>
+<polygon fill="none" stroke="black" points="2988.5,-4715 2988.5,-4739.5 3076,-4739.5 3076,-4715 2988.5,-4715"/>
+<text text-anchor="start" x="2992.5" y="-4722.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _S_1 -->
<g id="node23" class="node">
<title>_S_1</title>
-<polygon fill="#ffffff" stroke="black" points="1097.25,-1002 1051.75,-1002 1051.75,-977.5 1097.25,-977.5 1097.25,-1002"/>
-<polygon fill="none" stroke="black" points="1051.75,-977.5 1051.75,-1002 1097.25,-1002 1097.25,-977.5 1051.75,-977.5"/>
-<text text-anchor="start" x="1055.75" y="-984.7" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1097.25,-1450.5 1051.75,-1450.5 1051.75,-1426 1097.25,-1426 1097.25,-1450.5"/>
+<polygon fill="none" stroke="black" points="1051.75,-1426 1051.75,-1450.5 1097.25,-1450.5 1097.25,-1426 1051.75,-1426"/>
+<text text-anchor="start" x="1055.75" y="-1433.2" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- W13 -->
<g id="node37" class="node">
<title>W13</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1689.25,-1081.5 1519.75,-1081.5 1519.75,-942 1689.25,-942 1689.25,-1081.5"/>
-<polygon fill="none" stroke="black" points="1519.75,-1057 1519.75,-1081.5 1689.25,-1081.5 1689.25,-1057 1519.75,-1057"/>
-<text text-anchor="start" x="1589.12" y="-1064.2" font-family="arial" font-size="14.00">W13</text>
-<polygon fill="none" stroke="black" points="1519.75,-1032.5 1519.75,-1057 1542.75,-1057 1542.75,-1032.5 1519.75,-1032.5"/>
-<text text-anchor="start" x="1523.75" y="-1039.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1542.75,-1032.5 1542.75,-1057 1606.25,-1057 1606.25,-1032.5 1542.75,-1032.5"/>
-<text text-anchor="start" x="1546.75" y="-1039.7" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1606.25,-1032.5 1606.25,-1057 1689.25,-1057 1689.25,-1032.5 1606.25,-1032.5"/>
-<text text-anchor="start" x="1610.25" y="-1039.7" font-family="arial" font-size="14.00">50.0 Inches</text>
-<text text-anchor="start" x="1538.29" y="-1017.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1579.38" y="-997.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1519.75,-990.5 1519.75,-992.5 1689.25,-992.5 1689.25,-990.5 1519.75,-990.5"/>
-<polygon fill="#895956" stroke="none" points="1519.75,-988.5 1519.75,-990.5 1689.25,-990.5 1689.25,-988.5 1519.75,-988.5"/>
-<polygon fill="#000000" stroke="none" points="1519.75,-986.5 1519.75,-988.5 1689.25,-988.5 1689.25,-986.5 1519.75,-986.5"/>
-<text text-anchor="start" x="1538.29" y="-971.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1519.75,-942 1519.75,-966.5 1689.25,-966.5 1689.25,-942 1519.75,-942"/>
-<text text-anchor="start" x="1528" y="-949.2" font-family="arial" font-size="14.00">Ring Terminal On Block.</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1689.25,-1530 1519.75,-1530 1519.75,-1390.5 1689.25,-1390.5 1689.25,-1530"/>
+<polygon fill="none" stroke="black" points="1519.75,-1505.5 1519.75,-1530 1689.25,-1530 1689.25,-1505.5 1519.75,-1505.5"/>
+<text text-anchor="start" x="1589.12" y="-1512.7" font-family="arial" font-size="14.00">W13</text>
+<polygon fill="none" stroke="black" points="1519.75,-1481 1519.75,-1505.5 1542.75,-1505.5 1542.75,-1481 1519.75,-1481"/>
+<text text-anchor="start" x="1523.75" y="-1488.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1542.75,-1481 1542.75,-1505.5 1606.25,-1505.5 1606.25,-1481 1542.75,-1481"/>
+<text text-anchor="start" x="1546.75" y="-1488.2" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1606.25,-1481 1606.25,-1505.5 1689.25,-1505.5 1689.25,-1481 1606.25,-1481"/>
+<text text-anchor="start" x="1610.25" y="-1488.2" font-family="arial" font-size="14.00">50.0 Inches</text>
+<text text-anchor="start" x="1538.29" y="-1465.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1579.38" y="-1445.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1519.75,-1439 1519.75,-1441 1689.25,-1441 1689.25,-1439 1519.75,-1439"/>
+<polygon fill="#895956" stroke="none" points="1519.75,-1437 1519.75,-1439 1689.25,-1439 1689.25,-1437 1519.75,-1437"/>
+<polygon fill="#000000" stroke="none" points="1519.75,-1435 1519.75,-1437 1689.25,-1437 1689.25,-1435 1519.75,-1435"/>
+<text text-anchor="start" x="1538.29" y="-1419.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1519.75,-1390.5 1519.75,-1415 1689.25,-1415 1689.25,-1390.5 1519.75,-1390.5"/>
+<text text-anchor="start" x="1528" y="-1397.7" font-family="arial" font-size="14.00">Ring Terminal On Block.</text>
</g>
<!-- _S_1&#45;&#45;W13 -->
-<g id="edge48" class="edge">
+<g id="edge51" class="edge">
<title>_S_1:e&#45;&#45;W13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-987.75C1285.13,-987.75 1331.85,-987.5 1518.75,-987.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1098.25,-989.75C1285.14,-989.75 1331.86,-989.5 1518.75,-989.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-991.75C1285.15,-991.75 1331.87,-991.5 1518.75,-991.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-1436.25C1285.13,-1436.25 1331.85,-1436 1518.75,-1436"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1098.25,-1438.25C1285.14,-1438.25 1331.86,-1438 1518.75,-1438"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-1440.25C1285.15,-1440.25 1331.87,-1440 1518.75,-1440"/>
</g>
<!-- _Engine GND_6 -->
<g id="node24" class="node">
<title>_Engine GND_6</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-1002 2144.25,-1002 2144.25,-977.5 2231.75,-977.5 2231.75,-1002"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-977.5 2144.25,-1002 2231.75,-1002 2231.75,-977.5 2144.25,-977.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-977.5 2144.25,-1002 2231.75,-1002 2231.75,-977.5 2144.25,-977.5"/>
-<text text-anchor="start" x="2148.25" y="-984.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-1450.5 2144.25,-1450.5 2144.25,-1426 2231.75,-1426 2231.75,-1450.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-1426 2144.25,-1450.5 2231.75,-1450.5 2231.75,-1426 2144.25,-1426"/>
+<polygon fill="none" stroke="black" points="2144.25,-1426 2144.25,-1450.5 2231.75,-1450.5 2231.75,-1426 2144.25,-1426"/>
+<text text-anchor="start" x="2148.25" y="-1433.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- W1&#45;&#45;Coil Pack 1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;Coil Pack 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C1074.28,-2501.55 617.62,-3240.3 960,-3237.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C1072.58,-2500.5 615.92,-3239.25 960,-3239.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C1070.88,-2499.45 614.22,-3238.2 960,-3241.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C993.68,-2077.49 698.7,-3239.24 960,-3236.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C991.74,-2077 696.76,-3238.75 960,-3238.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C989.8,-2076.51 694.82,-3238.26 960,-3240.75"/>
</g>
<!-- W1&#45;&#45;Coil Pack 2 -->
-<g id="edge3" class="edge">
+<g id="edge4" class="edge">
<title>W1:e&#45;&#45;Coil Pack 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C831.45,-2498.5 857.17,-2499.25 960,-2499.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C831.39,-2500.5 857.11,-2501.25 960,-2501.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C831.33,-2502.5 857.05,-2503.25 960,-2503.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C944.92,-2077.85 747.21,-2501.6 960,-2498.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C943.11,-2077 745.39,-2500.75 960,-2500.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C941.29,-2076.15 743.58,-2499.9 960,-2502.75"/>
</g>
<!-- W1&#45;&#45;Coil Pack 3 -->
-<g id="edge4" class="edge">
+<g id="edge6" class="edge">
<title>W1:e&#45;&#45;Coil Pack 3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C919.98,-2501.28 764.84,-2133.03 960,-2130.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C921.82,-2500.5 766.68,-2132.25 960,-2132.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C923.66,-2499.72 768.52,-2131.47 960,-2134.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C836.11,-2076.31 856.15,-2131.06 960,-2129.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C834.23,-2077 854.27,-2131.75 960,-2131.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C832.35,-2077.69 852.39,-2132.44 960,-2133.75"/>
</g>
<!-- W1&#45;&#45;Coil Pack 4 -->
-<g id="edge5" class="edge">
+<g id="edge8" class="edge">
<title>W1:e&#45;&#45;Coil Pack 4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C924.23,-2501.28 767.96,-2871.03 960,-2868.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C922.39,-2500.5 766.11,-2870.25 960,-2870.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C920.54,-2499.72 764.27,-2869.47 960,-2872.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C1097.24,-2078.07 594.64,-2870.82 960,-2867.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C1095.55,-2077 592.95,-2869.75 960,-2869.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C1093.86,-2075.93 591.26,-2868.68 960,-2871.75"/>
</g>
<!-- W2&#45;&#45;Fuel Injector 1 -->
-<g id="edge8" class="edge">
+<g id="edge11" class="edge">
<title>W2:e&#45;&#45;Fuel Injector 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-890.25C805.1,-890.25 827.99,-890.75 919.5,-890.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-892.25C805.06,-892.25 827.94,-892.75 919.5,-892.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-894.25C805.01,-894.25 827.9,-894.75 919.5,-894.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1338.75C805.1,-1338.75 827.99,-1339.25 919.5,-1339.25"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-1340.75C805.06,-1340.75 827.94,-1341.25 919.5,-1341.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1342.75C805.01,-1342.75 827.9,-1343.25 919.5,-1343.25"/>
</g>
<!-- W2&#45;&#45;Fuel Injector 2 -->
-<g id="edge7" class="edge">
+<g id="edge10" class="edge">
<title>W2:e&#45;&#45;Fuel Injector 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-890.25C893.51,-893.06 735.83,-539.56 919.5,-536.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-892.25C895.34,-892.25 737.66,-538.75 919.5,-538.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-894.25C897.17,-891.44 739.49,-537.94 919.5,-540.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1338.75C893.51,-1341.56 735.83,-988.06 919.5,-985.25"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-1340.75C895.34,-1340.75 737.66,-987.25 919.5,-987.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1342.75C897.17,-1339.94 739.49,-986.44 919.5,-989.25"/>
</g>
<!-- W3&#45;&#45;ECU1 -->
-<g id="edge10" class="edge">
+<g id="edge13" class="edge">
<title>W3:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1856.25C794.09,-1856.25 810.09,-1857 874,-1857"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1858.25C794,-1858.25 810,-1859 874,-1859"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1860.25C793.91,-1860.25 809.91,-1861 874,-1861"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1858.75C793.73,-1858.77 809.71,-1856.52 874,-1856.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1860.75C794.01,-1860.75 809.99,-1858.5 874,-1858.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1862.75C794.29,-1862.73 810.27,-1860.48 874,-1860.5"/>
</g>
<!-- W3&#45;&#45;ECU1 -->
-<g id="edge12" class="edge">
+<g id="edge15" class="edge">
<title>W3:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1830.25C794.35,-1830.28 810.33,-1833.03 874,-1833"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1832.25C794.01,-1832.25 809.99,-1835 874,-1835"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1834.25C793.67,-1834.22 809.65,-1836.97 874,-1837"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1832.75C793.97,-1832.75 809.97,-1832.5 874,-1832.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1834.75C794,-1834.75 810,-1834.5 874,-1834.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1836.75C794.03,-1836.75 810.03,-1836.5 874,-1836.5"/>
</g>
<!-- W3&#45;&#45;ECU1 -->
-<g id="edge14" class="edge">
+<g id="edge17" class="edge">
<title>W3:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1804.25C794.61,-1804.33 810.54,-1809.08 874,-1809"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1806.25C794.03,-1806.25 809.97,-1811 874,-1811"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1808.25C793.46,-1808.17 809.39,-1812.92 874,-1813"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1806.75C794.22,-1806.76 810.21,-1808.51 874,-1808.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1808.75C794,-1808.75 810,-1810.5 874,-1810.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1810.75C793.79,-1810.74 809.78,-1812.49 874,-1812.5"/>
</g>
<!-- W3&#45;&#45;_S_1 -->
-<g id="edge15" class="edge">
+<g id="edge18" class="edge">
<title>W3:e&#45;&#45;_S_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1804.25C1086.04,-1807.56 614.72,-1263.85 872.61,-1013.31 932.39,-958.16 972.61,-988.15 1050.75,-987.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1806.25C1087.55,-1806.25 616.23,-1262.54 874,-1014.75 931.2,-959.77 971.41,-989.75 1050.75,-989.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1808.25C1089.06,-1804.94 617.75,-1261.23 875.39,-1016.19 930,-961.37 970.22,-991.35 1050.75,-991.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1806.75C894.67,-1809.82 740.7,-1566.08 872.78,-1461.67 937.89,-1413.06 972.54,-1436.6 1050.75,-1436.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1808.75C896.36,-1808.75 742.39,-1565.01 874,-1463.25 936.76,-1414.72 971.41,-1438.25 1050.75,-1438.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1810.75C898.05,-1807.68 744.09,-1563.94 875.22,-1464.83 935.64,-1416.37 970.29,-1439.9 1050.75,-1440.25"/>
</g>
<!-- W4&#45;&#45;Fuse Block -->
-<g id="edge17" class="edge">
+<g id="edge20" class="edge">
<title>W4:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4275.25C1865.44,-4277.75 1818.69,-4097 1934,-4094.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-4277.25C1867.37,-4277.25 1820.63,-4096.5 1934,-4096.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4279.25C1869.31,-4276.75 1822.56,-4096 1934,-4098.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3996.75C1838.8,-3998.58 1845.21,-3922.83 1934,-3921"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-3998.75C1840.8,-3998.75 1847.2,-3923 1934,-3923"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4000.75C1842.79,-3998.92 1849.2,-3923.17 1934,-3925"/>
</g>
<!-- W4&#45;&#45;Fuse Block -->
-<g id="edge19" class="edge">
+<g id="edge22" class="edge">
<title>W4:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4249.25C1872.58,-4251.83 1811.59,-4049.08 1934,-4046.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-4251.25C1874.5,-4251.25 1813.5,-4048.5 1934,-4048.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4253.25C1876.41,-4250.67 1815.42,-4047.92 1934,-4050.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3970.75C1843.04,-3972.79 1840.97,-3875.04 1934,-3873"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-3972.75C1845.04,-3972.75 1842.96,-3875 1934,-3875"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3974.75C1847.03,-3972.71 1844.96,-3874.96 1934,-3877"/>
</g>
<!-- W6&#45;&#45;Fuse Block -->
-<g id="edge21" class="edge">
+<g id="edge24" class="edge">
<title>W6:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3814.25C999.65,-3817.47 652.33,-4266.04 875.31,-4456.24 1182.97,-4722.59 1456.39,-4753.44 1788.85,-4519.11 1943.01,-4413.16 1743.3,-4121.63 1934,-4118.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3816.25C998.07,-3816.25 650.75,-4264.81 874,-4457.75 1182.75,-4724.58 1456.16,-4755.43 1790,-4520.75 1944.66,-4412.03 1744.95,-4120.5 1934,-4120.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3818.25C996.49,-3815.03 649.17,-4263.59 872.69,-4459.26 1182.53,-4726.56 1455.94,-4757.42 1791.15,-4522.39 1946.31,-4410.9 1746.6,-4119.37 1934,-4122.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3813.75C912.22,-3816.81 738,-4096.04 875.5,-4248.92 1057.04,-4454.2 1152.58,-4474.91 1419.49,-4542.31 1580.08,-4583.03 1661.67,-4644.67 1788.76,-4542.68 2002.95,-4376.56 1659.39,-3948.25 1934,-3945"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3815.75C910.53,-3815.75 736.3,-4094.99 874,-4250.25 1056.61,-4456.16 1152.16,-4476.87 1419,-4544.25 1578.87,-4584.62 1660.46,-4646.27 1790,-4544.25 2004.51,-4375.31 1660.95,-3947 1934,-3947"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3817.75C908.83,-3814.69 734.6,-4093.93 872.5,-4251.58 1056.19,-4458.11 1151.73,-4478.82 1418.51,-4546.19 1577.66,-4586.22 1659.25,-4647.86 1791.24,-4545.82 2006.07,-4374.06 1662.51,-3945.75 1934,-3949"/>
</g>
<!-- W6&#45;&#45;Fuse Block -->
-<g id="edge23" class="edge">
+<g id="edge26" class="edge">
<title>W6:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3788.25C944.23,-3788.28 1578.24,-3680.94 1790.97,-3798 1895.64,-3857.98 1817.18,-4025.35 1934,-4022.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3790.25C944.56,-3790.25 1578.57,-3682.91 1790,-3799.75 1893.83,-3857.13 1815.37,-4024.5 1934,-4024.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3792.25C944.9,-3792.22 1578.91,-3684.88 1789.03,-3801.5 1892.02,-3856.28 1813.56,-4023.65 1934,-4026.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3787.75C1185.12,-3788.03 1313.39,-3712.52 1790.35,-3797.28 1858.9,-3810.77 1867.94,-3850.56 1934,-3849"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3789.75C1186.13,-3789.75 1314.41,-3714.24 1790,-3799.25 1856.95,-3811.22 1865.99,-3851 1934,-3851"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3791.75C1187.14,-3791.47 1315.42,-3715.97 1789.65,-3801.22 1855,-3811.66 1864.04,-3851.44 1934,-3853"/>
</g>
<!-- W7&#45;&#45;Fuse Block -->
-<g id="edge25" class="edge">
+<g id="edge28" class="edge">
<title>W7:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3832.25C1867.21,-3834.71 1828.18,-4000.96 1934,-3998.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1757.5,-3834.25C1865.26,-3834.25 1826.24,-4000.5 1934,-4000.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3836.25C1863.32,-3833.79 1824.29,-4000.04 1934,-4002.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3831.75C1835.35,-3831.86 1854.84,-3825.11 1934,-3825"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1757.5,-3833.75C1836,-3833.75 1855.5,-3827 1934,-3827"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3835.75C1836.66,-3835.64 1856.15,-3828.89 1934,-3829"/>
</g>
<!-- W8&#45;&#45;KillSwitch -->
-<g id="edge27" class="edge">
+<g id="edge30" class="edge">
<title>W8:e&#45;&#45;KillSwitch:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3649.25C805.23,-3649.25 828.4,-3650 921,-3650"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-3651.25C805.17,-3651.25 828.33,-3652 921,-3652"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3653.25C805.1,-3653.25 828.27,-3654 921,-3654"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3648.75C805.23,-3648.75 828.4,-3649.5 921,-3649.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-3650.75C805.17,-3650.75 828.33,-3651.5 921,-3651.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3652.75C805.1,-3652.75 828.27,-3653.5 921,-3653.5"/>
</g>
<!-- W10&#45;&#45;_Engine GND_1 -->
-<g id="edge29" class="edge">
+<g id="edge32" class="edge">
<title>W10:e&#45;&#45;_Engine GND_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3086.25C1911.77,-3086.32 1958.02,-3098.82 2143.25,-3098.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3088.25C1911.25,-3088.25 1957.5,-3100.75 2143.25,-3100.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3090.25C1910.73,-3090.18 1956.98,-3102.68 2143.25,-3102.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3112.75C1911.72,-3112.81 1958,-3124.31 2143.25,-3124.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3114.75C1911.24,-3114.75 1957.51,-3126.25 2143.25,-3126.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3116.75C1910.75,-3116.69 1957.03,-3128.19 2143.25,-3128.25"/>
</g>
<!-- W10&#45;&#45;_Engine GND_2 -->
-<g id="edge31" class="edge">
+<g id="edge34" class="edge">
<title>W10:e&#45;&#45;_Engine GND_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3060.25C1910.78,-3060.3 1957.08,-3049.8 2143.25,-3049.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3062.25C1911.23,-3062.25 1957.52,-3051.75 2143.25,-3051.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3064.25C1911.67,-3064.2 1957.97,-3053.7 2143.25,-3053.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3086.75C1910.75,-3086.81 1957.03,-3075.31 2143.25,-3075.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3088.75C1911.24,-3088.75 1957.51,-3077.25 2143.25,-3077.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3090.75C1911.72,-3090.69 1958,-3079.19 2143.25,-3079.25"/>
</g>
<!-- W19&#45;&#45;_Engine GND_3 -->
-<g id="edge33" class="edge">
+<g id="edge36" class="edge">
<title>W19:e&#45;&#45;_Engine GND_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2418.25C1911.72,-2418.31 1958,-2429.81 2143.25,-2429.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2420.25C1911.24,-2420.25 1957.51,-2431.75 2143.25,-2431.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2422.25C1910.75,-2422.19 1957.03,-2433.69 2143.25,-2433.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2413.75C1911.72,-2413.81 1958,-2425.31 2143.25,-2425.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2415.75C1911.24,-2415.75 1957.51,-2427.25 2143.25,-2427.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2417.75C1910.75,-2417.69 1957.03,-2429.19 2143.25,-2429.25"/>
</g>
<!-- W19&#45;&#45;_Engine GND_4 -->
-<g id="edge35" class="edge">
+<g id="edge38" class="edge">
<title>W19:e&#45;&#45;_Engine GND_4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2392.25C1910.75,-2392.31 1957.03,-2380.81 2143.25,-2380.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2394.25C1911.24,-2394.25 1957.51,-2382.75 2143.25,-2382.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2396.25C1911.72,-2396.19 1958,-2384.69 2143.25,-2384.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2387.75C1910.75,-2387.81 1957.03,-2376.31 2143.25,-2376.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2389.75C1911.24,-2389.75 1957.51,-2378.25 2143.25,-2378.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2391.75C1911.72,-2391.69 1958,-2380.19 2143.25,-2380.25"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge37" class="edge">
+<g id="edge40" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2826.25C1923.81,-2827.01 1955.05,-2787.26 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2828.25C1925.38,-2828.25 1956.62,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2830.25C1926.95,-2829.49 1958.19,-2789.74 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2707.75C1923.81,-2708.51 1955.05,-2668.76 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2709.75C1925.38,-2709.75 1956.62,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2711.75C1926.95,-2710.99 1958.19,-2671.24 2092,-2672"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge39" class="edge">
+<g id="edge42" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2800.25C1923.6,-2800.4 1956.87,-2786.65 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2802.25C1924.36,-2802.25 1957.64,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2804.25C1925.13,-2804.1 1958.4,-2790.35 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2681.75C1923.6,-2681.9 1956.87,-2668.15 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2683.75C1924.36,-2683.75 1957.64,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2685.75C1925.13,-2685.6 1958.4,-2671.85 2092,-2672"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge41" class="edge">
+<g id="edge44" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2774.25C1925.02,-2774.37 1958.36,-2786.62 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2776.25C1924.33,-2776.25 1957.67,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2778.25C1923.64,-2778.13 1956.98,-2790.38 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2655.75C1925.02,-2655.87 1958.36,-2668.12 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2657.75C1924.33,-2657.75 1957.67,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2659.75C1923.64,-2659.63 1956.98,-2671.88 2092,-2672"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge43" class="edge">
+<g id="edge46" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2748.25C1926.84,-2748.98 1958.25,-2787.23 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2750.25C1925.29,-2750.25 1956.71,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2752.25C1923.75,-2751.52 1955.16,-2789.77 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2629.75C1926.84,-2630.48 1958.25,-2668.73 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2631.75C1925.29,-2631.75 1956.71,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2633.75C1923.75,-2633.02 1955.16,-2671.27 2092,-2672"/>
</g>
<!-- W11&#45;&#45;Servo Power -->
-<g id="edge45" class="edge">
+<g id="edge48" class="edge">
<title>W11:e&#45;&#45;Servo Power:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-1457.5C809.48,-1459.12 823.09,-1389.62 924,-1388"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-1459.5C811.45,-1459.5 825.05,-1390 924,-1390"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-1461.5C813.41,-1459.88 827.02,-1390.38 924,-1392"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-536C832.4,-538.36 800.17,-363.86 924,-361.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-538C834.36,-538 802.14,-363.5 924,-363.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-540C836.33,-537.64 804.1,-363.14 924,-365.5"/>
</g>
-<!-- W12&#45;&#45;Tachometer -->
-<g id="edge47" class="edge">
-<title>W12:e&#45;&#45;Tachometer:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1734.75,-4758.5C1883.18,-4760.42 1888.57,-4900.42 2033,-4898.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1734.75,-4760.5C1881.18,-4760.5 1886.57,-4900.5 2033,-4900.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1734.75,-4762.5C1879.18,-4760.58 1884.57,-4900.58 2033,-4902.5"/>
+<!-- W12&#45;&#45;_Engine GND_5 -->
+<g id="edge50" class="edge">
+<title>W12:e&#45;&#45;_Engine GND_5:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4725C2908.53,-4725 2924.53,-4725.25 2988.5,-4725.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4727C2908.5,-4727 2924.5,-4727.25 2988.5,-4727.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4729C2908.47,-4729 2924.47,-4729.25 2988.5,-4729.25"/>
</g>
<!-- W13&#45;&#45;_Engine GND_6 -->
-<g id="edge49" class="edge">
+<g id="edge52" class="edge">
<title>W13:e&#45;&#45;_Engine GND_6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-987.5C1891.59,-987.5 1941.93,-987.75 2143.25,-987.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1690.25,-989.5C1891.58,-989.5 1941.92,-989.75 2143.25,-989.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-991.5C1891.57,-991.5 1941.91,-991.75 2143.25,-991.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-1436C1891.59,-1436 1941.93,-1436.25 2143.25,-1436.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1690.25,-1438C1891.58,-1438 1941.92,-1438.25 2143.25,-1438.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-1440C1891.57,-1440 1941.91,-1440.25 2143.25,-1440.25"/>
</g>
<!-- W14&#45;&#45;Fuse Block -->
-<g id="edge51" class="edge">
+<g id="edge54" class="edge">
<title>W14:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-4110.25C1827.32,-4111.44 1845.03,-4071.69 1934,-4070.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1742,-4112.25C1829.14,-4112.25 1846.86,-4072.5 1934,-4072.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-4114.25C1830.97,-4113.06 1848.68,-4073.31 1934,-4074.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-3632.75C1889.05,-3635.45 1790.7,-3899.7 1934,-3897"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1742,-3634.75C1887.17,-3634.75 1788.83,-3899 1934,-3899"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-3636.75C1885.3,-3634.05 1786.95,-3898.3 1934,-3901"/>
</g>
<!-- W15&#45;&#45;ECU1 -->
-<g id="edge53" class="edge">
+<g id="edge56" class="edge">
<title>W15:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1665.25C802.23,-1667.52 785.73,-1787.27 874,-1785"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M710,-1667.25C800.25,-1667.25 783.75,-1787 874,-1787"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1669.25C798.27,-1666.98 781.77,-1786.73 874,-1789"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1667.75C801.46,-1670 786.51,-1786.75 874,-1784.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M710,-1669.75C799.47,-1669.75 784.53,-1786.5 874,-1786.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1671.75C797.49,-1669.5 782.54,-1786.25 874,-1788.5"/>
</g>
<!-- W16&#45;&#45;MAF Sensor -->
-<g id="edge55" class="edge">
+<g id="edge58" class="edge">
<title>W16:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4414.25C1885.12,-4415.12 1912.68,-4455.12 2033,-4454.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1761.5,-4416.25C1883.47,-4416.25 1911.03,-4456.25 2033,-4456.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4418.25C1881.82,-4417.38 1909.38,-4457.38 2033,-4458.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4274.75C1882.59,-4274.79 1912.69,-4280.79 2033,-4280.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1761.5,-4276.75C1882.2,-4276.75 1912.3,-4282.75 2033,-4282.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4278.75C1881.81,-4278.71 1911.91,-4284.71 2033,-4284.75"/>
</g>
<!-- W17&#45;&#45;Tachometer -->
-<g id="edge57" class="edge">
+<g id="edge60" class="edge">
<title>W17:e&#45;&#45;Tachometer:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4922.5C1891.06,-4922.5 1919.44,-4922.5 2033,-4922.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1777.5,-4924.5C1891.06,-4924.5 1919.44,-4924.5 2033,-4924.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4926.5C1891.06,-4926.5 1919.44,-4926.5 2033,-4926.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4438C1958.29,-4440.62 1856.01,-4751.62 2033,-4749"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1777.5,-4440C1956.39,-4440 1854.11,-4751 2033,-4751"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4442C1954.49,-4439.38 1852.21,-4750.38 2033,-4753"/>
</g>
<!-- W18&#45;&#45;Negative Bus Bar -->
-<g id="edge59" class="edge">
+<g id="edge62" class="edge">
<title>W18:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3971.25C1766.3,-3972.13 1774.41,-3960.12 1788.3,-3937.7 2004.62,-3591.84 1774.81,-3407.58 1932.15,-3026.98 1977.66,-2918.52 1971.51,-2813.12 2092,-2811"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3973.25C1767.95,-3973.25 1776.07,-3961.24 1790,-3938.75 2005.88,-3590.28 1776.06,-3406.02 1934,-3027.75 1979.66,-2918.41 1973.51,-2813 2092,-2813"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3975.25C1769.61,-3974.37 1777.73,-3962.36 1791.7,-3939.8 2007.13,-3588.72 1777.31,-3404.46 1935.85,-3028.52 1981.65,-2918.29 1975.5,-2812.88 2092,-2815"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-4135.75C2069.59,-4138.17 1760,-2694.92 2092,-2692.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-4137.75C2071.54,-4137.75 1761.96,-2694.5 2092,-2694.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-4139.75C2073.5,-4137.33 1763.91,-2694.08 2092,-2696.5"/>
</g>
<!-- W21&#45;&#45;LSU -->
-<g id="edge61" class="edge">
+<g id="edge64" class="edge">
<title>W21:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M682,-467.25C846.84,-469.85 757.34,-184.85 926,-182.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M682,-469.25C848.75,-469.25 759.25,-184.25 926,-184.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M682,-471.25C850.66,-468.65 761.16,-183.65 926,-186.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M682,-1024.75C886.13,-1027.53 718.19,-633.53 926,-630.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M682,-1026.75C887.97,-1026.75 720.03,-632.75 926,-632.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M682,-1028.75C889.81,-1025.97 721.87,-631.97 926,-634.75"/>
</g>
<!-- W22&#45;&#45;Negative Bus Bar -->
-<g id="edge63" class="edge">
+<g id="edge66" class="edge">
<title>W22:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1737.25C1928.69,-1739.4 1885.54,-2300.18 1935.9,-2455.13 1992.46,-2631.17 1910.23,-2838.24 2092,-2835.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1739.25C1926.69,-1739.25 1883.54,-2300.03 1934,-2455.75 1990.6,-2630.43 1908.38,-2837.5 2092,-2837.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1741.25C1924.7,-1739.1 1881.55,-2299.87 1932.1,-2456.37 1988.74,-2629.7 1906.52,-2836.76 2092,-2839.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-804.75C1948.71,-806.85 1878.5,-2276.87 1935.9,-2450.62 1979.22,-2582.82 1955.8,-2719.34 2092,-2717"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-806.75C1946.71,-806.75 1876.5,-2276.77 1934,-2451.25 1977.25,-2582.48 1953.83,-2719 2092,-2719"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-808.75C1944.71,-806.65 1874.5,-2276.68 1932.1,-2451.88 1975.28,-2582.14 1951.85,-2718.66 2092,-2721"/>
</g>
</g>
</svg>
diff --git a/wireviz/Choppy_ECU_12FB.png b/wireviz/Choppy_ECU_12FB.png
index 336174f..7d77128 100644
--- a/wireviz/Choppy_ECU_12FB.png
+++ b/wireviz/Choppy_ECU_12FB.png
Binary files differ
diff --git a/wireviz/Choppy_ECU_12FB.svg b/wireviz/Choppy_ECU_12FB.svg
index 3ce174b..0d3c24b 100644
--- a/wireviz/Choppy_ECU_12FB.svg
+++ b/wireviz/Choppy_ECU_12FB.svg
@@ -4,1519 +4,1546 @@
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
-<svg width="2450pt" height="5025pt"
- viewBox="0.00 0.00 2450.00 5024.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 5020.5)">
-<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-5020.5 2446,-5020.5 2446,4 -4,4"/>
+<svg width="3084pt" height="4827pt"
+ viewBox="0.00 0.00 3084.00 4827.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 4823)">
+<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-4823 3080,-4823 3080,4 -4,4"/>
<!-- ECUM -->
<g id="node1" class="node">
<title>ECUM</title>
-<polygon fill="#ffffff" stroke="black" points="236,-1871 0,-1871 0,-1486.5 236,-1486.5 236,-1871"/>
-<polygon fill="none" stroke="black" points="0,-1846.5 0,-1871 236,-1871 236,-1846.5 0,-1846.5"/>
-<text text-anchor="start" x="97.38" y="-1853.7" font-family="arial" font-size="14.00">ECUM</text>
-<polygon fill="none" stroke="black" points="0,-1822 0,-1846.5 157.38,-1846.5 157.38,-1822 0,-1822"/>
-<text text-anchor="start" x="23.56" y="-1829.2" font-family="arial" font-size="14.00">Delphi 15336209</text>
-<polygon fill="none" stroke="black" points="157.38,-1822 157.38,-1846.5 236,-1846.5 236,-1822 157.38,-1822"/>
-<text text-anchor="start" x="180.94" y="-1829.2" font-family="arial" font-size="14.00">7&#45;pin</text>
-<polygon fill="none" stroke="black" points="0,-1798 0,-1822 158.5,-1822 158.5,-1798 0,-1798"/>
-<text text-anchor="start" x="56.38" y="-1804.7" font-family="arial" font-size="14.00">Ignition</text>
-<polygon fill="none" stroke="black" points="158.5,-1798 158.5,-1822 236,-1822 236,-1798 158.5,-1798"/>
-<text text-anchor="start" x="193.12" y="-1804.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="0,-1774 0,-1798 158.5,-1798 158.5,-1774 0,-1774"/>
-<text text-anchor="start" x="63.5" y="-1780.7" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="158.5,-1774 158.5,-1798 236,-1798 236,-1774 158.5,-1774"/>
-<text text-anchor="start" x="193.12" y="-1780.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="0,-1750 0,-1774 158.5,-1774 158.5,-1750 0,-1750"/>
-<text text-anchor="start" x="44" y="-1756.7" font-family="arial" font-size="14.00">Extra Out 1</text>
-<polygon fill="none" stroke="black" points="158.5,-1750 158.5,-1774 236,-1774 236,-1750 158.5,-1750"/>
-<text text-anchor="start" x="193.12" y="-1756.7" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="0,-1726 0,-1750 158.5,-1750 158.5,-1726 0,-1726"/>
-<text text-anchor="start" x="44" y="-1732.7" font-family="arial" font-size="14.00">Extra Out 2</text>
-<polygon fill="none" stroke="black" points="158.5,-1726 158.5,-1750 236,-1750 236,-1726 158.5,-1726"/>
-<text text-anchor="start" x="193.12" y="-1732.7" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="0,-1702 0,-1726 158.5,-1726 158.5,-1702 0,-1702"/>
-<text text-anchor="start" x="34.62" y="-1708.7" font-family="arial" font-size="14.00">Starter/Exciter</text>
-<polygon fill="none" stroke="black" points="158.5,-1702 158.5,-1726 236,-1726 236,-1702 158.5,-1702"/>
-<text text-anchor="start" x="193.12" y="-1708.7" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="0,-1678 0,-1702 158.5,-1702 158.5,-1678 0,-1678"/>
-<text text-anchor="start" x="49.25" y="-1684.7" font-family="arial" font-size="14.00">12V ECU</text>
-<polygon fill="none" stroke="black" points="158.5,-1678 158.5,-1702 236,-1702 236,-1678 158.5,-1678"/>
-<text text-anchor="start" x="193.12" y="-1684.7" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="0,-1654 0,-1678 158.5,-1678 158.5,-1654 0,-1654"/>
-<text text-anchor="start" x="45.5" y="-1660.7" font-family="arial" font-size="14.00">12V Servo</text>
-<polygon fill="none" stroke="black" points="158.5,-1654 158.5,-1678 236,-1678 236,-1654 158.5,-1654"/>
-<text text-anchor="start" x="193.12" y="-1660.7" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="0,-1511 0,-1654 236,-1654 236,-1511 0,-1511"/>
-<image xlink:href="images\ECU3.png" width="228px" height="135px" preserveAspectRatio="xMinYMin meet" x="4" y="-1650"/>
-<polygon fill="none" stroke="black" points="0,-1486.5 0,-1511 236,-1511 236,-1486.5 0,-1486.5"/>
-<text text-anchor="start" x="80.88" y="-1493.7" font-family="arial" font-size="14.00">ECU 12 Pin</text>
+<polygon fill="#ffffff" stroke="black" points="236,-1968.5 0,-1968.5 0,-1584 236,-1584 236,-1968.5"/>
+<polygon fill="none" stroke="black" points="0,-1944 0,-1968.5 236,-1968.5 236,-1944 0,-1944"/>
+<text text-anchor="start" x="97.38" y="-1951.2" font-family="arial" font-size="14.00">ECUM</text>
+<polygon fill="none" stroke="black" points="0,-1919.5 0,-1944 157.38,-1944 157.38,-1919.5 0,-1919.5"/>
+<text text-anchor="start" x="23.56" y="-1926.7" font-family="arial" font-size="14.00">Delphi 15336209</text>
+<polygon fill="none" stroke="black" points="157.38,-1919.5 157.38,-1944 236,-1944 236,-1919.5 157.38,-1919.5"/>
+<text text-anchor="start" x="180.94" y="-1926.7" font-family="arial" font-size="14.00">7&#45;pin</text>
+<polygon fill="none" stroke="black" points="0,-1895.5 0,-1919.5 158.5,-1919.5 158.5,-1895.5 0,-1895.5"/>
+<text text-anchor="start" x="56.38" y="-1902.2" font-family="arial" font-size="14.00">Ignition</text>
+<polygon fill="none" stroke="black" points="158.5,-1895.5 158.5,-1919.5 236,-1919.5 236,-1895.5 158.5,-1895.5"/>
+<text text-anchor="start" x="193.12" y="-1902.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="0,-1871.5 0,-1895.5 158.5,-1895.5 158.5,-1871.5 0,-1871.5"/>
+<text text-anchor="start" x="63.5" y="-1878.2" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="158.5,-1871.5 158.5,-1895.5 236,-1895.5 236,-1871.5 158.5,-1871.5"/>
+<text text-anchor="start" x="193.12" y="-1878.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="0,-1847.5 0,-1871.5 158.5,-1871.5 158.5,-1847.5 0,-1847.5"/>
+<text text-anchor="start" x="44" y="-1854.2" font-family="arial" font-size="14.00">Extra Out 1</text>
+<polygon fill="none" stroke="black" points="158.5,-1847.5 158.5,-1871.5 236,-1871.5 236,-1847.5 158.5,-1847.5"/>
+<text text-anchor="start" x="193.12" y="-1854.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="0,-1823.5 0,-1847.5 158.5,-1847.5 158.5,-1823.5 0,-1823.5"/>
+<text text-anchor="start" x="44" y="-1830.2" font-family="arial" font-size="14.00">Extra Out 2</text>
+<polygon fill="none" stroke="black" points="158.5,-1823.5 158.5,-1847.5 236,-1847.5 236,-1823.5 158.5,-1823.5"/>
+<text text-anchor="start" x="193.12" y="-1830.2" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="0,-1799.5 0,-1823.5 158.5,-1823.5 158.5,-1799.5 0,-1799.5"/>
+<text text-anchor="start" x="34.62" y="-1806.2" font-family="arial" font-size="14.00">Starter/Exciter</text>
+<polygon fill="none" stroke="black" points="158.5,-1799.5 158.5,-1823.5 236,-1823.5 236,-1799.5 158.5,-1799.5"/>
+<text text-anchor="start" x="193.12" y="-1806.2" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="0,-1775.5 0,-1799.5 158.5,-1799.5 158.5,-1775.5 0,-1775.5"/>
+<text text-anchor="start" x="49.25" y="-1782.2" font-family="arial" font-size="14.00">12V ECU</text>
+<polygon fill="none" stroke="black" points="158.5,-1775.5 158.5,-1799.5 236,-1799.5 236,-1775.5 158.5,-1775.5"/>
+<text text-anchor="start" x="193.12" y="-1782.2" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="0,-1751.5 0,-1775.5 158.5,-1775.5 158.5,-1751.5 0,-1751.5"/>
+<text text-anchor="start" x="45.5" y="-1758.2" font-family="arial" font-size="14.00">12V Servo</text>
+<polygon fill="none" stroke="black" points="158.5,-1751.5 158.5,-1775.5 236,-1775.5 236,-1751.5 158.5,-1751.5"/>
+<text text-anchor="start" x="193.12" y="-1758.2" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="0,-1608.5 0,-1751.5 236,-1751.5 236,-1608.5 0,-1608.5"/>
+<image xlink:href="images\ECU3.png" width="228px" height="135px" preserveAspectRatio="xMinYMin meet" x="4" y="-1747.5"/>
+<polygon fill="none" stroke="black" points="0,-1584 0,-1608.5 236,-1608.5 236,-1584 0,-1584"/>
+<text text-anchor="start" x="80.88" y="-1591.2" font-family="arial" font-size="14.00">ECU 12 Pin</text>
</g>
<!-- W1 -->
<g id="node25" class="node">
<title>W1</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="727.5,-2592.5 382.5,-2592.5 382.5,-2453 727.5,-2453 727.5,-2592.5"/>
-<polygon fill="none" stroke="black" points="382.5,-2568 382.5,-2592.5 727.5,-2592.5 727.5,-2568 382.5,-2568"/>
-<text text-anchor="start" x="543.75" y="-2575.2" font-family="arial" font-size="14.00">W1</text>
-<polygon fill="none" stroke="black" points="382.5,-2543.5 382.5,-2568 464,-2568 464,-2543.5 382.5,-2543.5"/>
-<text text-anchor="start" x="415.75" y="-2550.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="464,-2543.5 464,-2568 586,-2568 586,-2543.5 464,-2543.5"/>
-<text text-anchor="start" x="497.25" y="-2550.7" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="586,-2543.5 586,-2568 727.5,-2568 727.5,-2543.5 586,-2543.5"/>
-<text text-anchor="start" x="619.25" y="-2550.7" font-family="arial" font-size="14.00">50.0 Inches</text>
-<text text-anchor="start" x="433.62" y="-2528.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="384.12" y="-2508.2" font-family="arial" font-size="14.00">ECUM:1:Ignition</text>
-<text text-anchor="start" x="490.12" y="-2508.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="548.5" y="-2508.2" font-family="arial" font-size="14.00">Coil Pack 1:E:Switched 12V</text>
-<polygon fill="#000000" stroke="none" points="382.5,-2501.5 382.5,-2503.5 727.5,-2503.5 727.5,-2501.5 382.5,-2501.5"/>
-<polygon fill="#ff0000" stroke="none" points="382.5,-2499.5 382.5,-2501.5 727.5,-2501.5 727.5,-2499.5 382.5,-2499.5"/>
-<polygon fill="#000000" stroke="none" points="382.5,-2497.5 382.5,-2499.5 727.5,-2499.5 727.5,-2497.5 382.5,-2497.5"/>
-<text text-anchor="start" x="433.62" y="-2482.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="382.5,-2453 382.5,-2477.5 727.5,-2477.5 727.5,-2453 382.5,-2453"/>
-<text text-anchor="start" x="416.25" y="-2460.2" font-family="arial" font-size="14.00">12 Inch difference between outermost coils.</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="727.5,-2169 382.5,-2169 382.5,-2029.5 727.5,-2029.5 727.5,-2169"/>
+<polygon fill="none" stroke="black" points="382.5,-2144.5 382.5,-2169 727.5,-2169 727.5,-2144.5 382.5,-2144.5"/>
+<text text-anchor="start" x="543.75" y="-2151.7" font-family="arial" font-size="14.00">W1</text>
+<polygon fill="none" stroke="black" points="382.5,-2120 382.5,-2144.5 464,-2144.5 464,-2120 382.5,-2120"/>
+<text text-anchor="start" x="415.75" y="-2127.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="464,-2120 464,-2144.5 586,-2144.5 586,-2120 464,-2120"/>
+<text text-anchor="start" x="497.25" y="-2127.2" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="586,-2120 586,-2144.5 727.5,-2144.5 727.5,-2120 586,-2120"/>
+<text text-anchor="start" x="619.25" y="-2127.2" font-family="arial" font-size="14.00">50.0 Inches</text>
+<text text-anchor="start" x="433.62" y="-2104.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="384.12" y="-2084.7" font-family="arial" font-size="14.00">ECUM:1:Ignition</text>
+<text text-anchor="start" x="490.12" y="-2084.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="548.5" y="-2084.7" font-family="arial" font-size="14.00">Coil Pack 1:E:Switched 12V</text>
+<polygon fill="#000000" stroke="none" points="382.5,-2078 382.5,-2080 727.5,-2080 727.5,-2078 382.5,-2078"/>
+<polygon fill="#ff0000" stroke="none" points="382.5,-2076 382.5,-2078 727.5,-2078 727.5,-2076 382.5,-2076"/>
+<polygon fill="#000000" stroke="none" points="382.5,-2074 382.5,-2076 727.5,-2076 727.5,-2074 382.5,-2074"/>
+<text text-anchor="start" x="433.62" y="-2058.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="382.5,-2029.5 382.5,-2054 727.5,-2054 727.5,-2029.5 382.5,-2029.5"/>
+<text text-anchor="start" x="416.25" y="-2036.7" font-family="arial" font-size="14.00">12 Inch difference between outermost coils.</text>
</g>
<!-- ECUM&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>ECUM:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1808C551.27,-1811.14 69.51,-2501.64 381.5,-2498.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1810C549.63,-1810 67.87,-2500.5 381.5,-2500.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1812C547.99,-1808.86 66.23,-2499.36 381.5,-2502.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.32,-1905.62C337.19,-1872.1 284.13,-2041.6 382.18,-2075.12"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1871.5 282.22,-2041 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.68,-1909.38C333.37,-1870.9 280.31,-2040.4 380.82,-2078.88"/>
+</g>
+<!-- ECUM&#45;&#45;W1 -->
+<g id="edge3" class="edge">
+<title>ECUM:e&#45;&#45;W1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.76,-1905.51C337.19,-1896.1 284.13,-2065.6 381.74,-2075.01"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1895.5 282.22,-2065 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.24,-1909.49C333.37,-1894.9 280.31,-2064.4 381.26,-2078.99"/>
+</g>
+<!-- ECUM&#45;&#45;W1 -->
+<g id="edge5" class="edge">
+<title>ECUM:e&#45;&#45;W1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.24,-1905.51C337.19,-1920.1 284.13,-2089.6 381.26,-2075.01"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1919.5 282.22,-2089 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.76,-1909.49C333.37,-1918.9 280.31,-2088.4 381.74,-2078.99"/>
+</g>
+<!-- ECUM&#45;&#45;W1 -->
+<g id="edge7" class="edge">
+<title>ECUM:e&#45;&#45;W1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236.68,-1905.62C337.19,-1944.1 284.13,-2113.6 380.82,-2075.12"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1907.5C335.28,-1943.5 282.22,-2113 381.5,-2077"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M235.32,-1909.38C333.37,-1942.9 280.31,-2112.4 382.18,-2078.88"/>
</g>
<!-- W2 -->
<g id="node26" class="node">
<title>W2</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="712.5,-984.25 397.5,-984.25 397.5,-869.25 712.5,-869.25 712.5,-984.25"/>
-<polygon fill="none" stroke="black" points="397.5,-959.75 397.5,-984.25 712.5,-984.25 712.5,-959.75 397.5,-959.75"/>
-<text text-anchor="start" x="543.75" y="-966.95" font-family="arial" font-size="14.00">W2</text>
-<polygon fill="none" stroke="black" points="397.5,-935.25 397.5,-959.75 469,-959.75 469,-935.25 397.5,-935.25"/>
-<text text-anchor="start" x="425.75" y="-942.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="469,-935.25 469,-959.75 581,-959.75 581,-935.25 469,-935.25"/>
-<text text-anchor="start" x="497.25" y="-942.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="581,-935.25 581,-959.75 712.5,-959.75 712.5,-935.25 581,-935.25"/>
-<text text-anchor="start" x="609.25" y="-942.45" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="456.12" y="-919.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="399.5" y="-899.95" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
-<text text-anchor="start" x="520.12" y="-899.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="578.12" y="-899.95" font-family="arial" font-size="14.00">Fuel Injector 2:1:12V</text>
-<polygon fill="#000000" stroke="none" points="397.5,-893.25 397.5,-895.25 712.5,-895.25 712.5,-893.25 397.5,-893.25"/>
-<polygon fill="#ff0000" stroke="none" points="397.5,-891.25 397.5,-893.25 712.5,-893.25 712.5,-891.25 397.5,-891.25"/>
-<polygon fill="#000000" stroke="none" points="397.5,-889.25 397.5,-891.25 712.5,-891.25 712.5,-889.25 397.5,-889.25"/>
-<text text-anchor="start" x="456.12" y="-873.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="712.5,-1432.75 397.5,-1432.75 397.5,-1317.75 712.5,-1317.75 712.5,-1432.75"/>
+<polygon fill="none" stroke="black" points="397.5,-1408.25 397.5,-1432.75 712.5,-1432.75 712.5,-1408.25 397.5,-1408.25"/>
+<text text-anchor="start" x="543.75" y="-1415.45" font-family="arial" font-size="14.00">W2</text>
+<polygon fill="none" stroke="black" points="397.5,-1383.75 397.5,-1408.25 469,-1408.25 469,-1383.75 397.5,-1383.75"/>
+<text text-anchor="start" x="425.75" y="-1390.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="469,-1383.75 469,-1408.25 581,-1408.25 581,-1383.75 469,-1383.75"/>
+<text text-anchor="start" x="497.25" y="-1390.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="581,-1383.75 581,-1408.25 712.5,-1408.25 712.5,-1383.75 581,-1383.75"/>
+<text text-anchor="start" x="609.25" y="-1390.95" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="456.12" y="-1368.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="399.5" y="-1348.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
+<text text-anchor="start" x="520.12" y="-1348.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="578.12" y="-1348.45" font-family="arial" font-size="14.00">Fuel Injector 2:1:12V</text>
+<polygon fill="#000000" stroke="none" points="397.5,-1341.75 397.5,-1343.75 712.5,-1343.75 712.5,-1341.75 397.5,-1341.75"/>
+<polygon fill="#ff0000" stroke="none" points="397.5,-1339.75 397.5,-1341.75 712.5,-1341.75 712.5,-1339.75 397.5,-1339.75"/>
+<polygon fill="#000000" stroke="none" points="397.5,-1337.75 397.5,-1339.75 712.5,-1339.75 712.5,-1337.75 397.5,-1337.75"/>
+<text text-anchor="start" x="456.12" y="-1322.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W2 -->
-<g id="edge6" class="edge">
+<g id="edge9" class="edge">
<title>ECUM:e&#45;&#45;W2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1688C596.03,-1691.15 33.21,-893.4 396.5,-890.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1690C597.66,-1690 34.84,-892.25 396.5,-892.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1692C599.29,-1688.85 36.47,-891.1 396.5,-894.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1785.5C445.25,-1788.51 183.79,-1341.76 396.5,-1338.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1787.5C446.98,-1787.5 185.52,-1340.75 396.5,-1340.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1789.5C448.71,-1786.49 187.25,-1339.74 396.5,-1342.75"/>
</g>
<!-- W3 -->
<g id="node27" class="node">
<title>W3</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="730,-1950.25 380,-1950.25 380,-1783.25 730,-1783.25 730,-1950.25"/>
-<polygon fill="none" stroke="black" points="380,-1925.75 380,-1950.25 730,-1950.25 730,-1925.75 380,-1925.75"/>
-<text text-anchor="start" x="543.75" y="-1932.95" font-family="arial" font-size="14.00">W3</text>
-<polygon fill="none" stroke="black" points="380,-1901.25 380,-1925.75 463.17,-1925.75 463.17,-1901.25 380,-1901.25"/>
-<text text-anchor="start" x="414.08" y="-1908.45" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="463.17,-1901.25 463.17,-1925.75 586.83,-1925.75 586.83,-1901.25 463.17,-1901.25"/>
-<text text-anchor="start" x="497.25" y="-1908.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="586.83,-1901.25 586.83,-1925.75 730,-1925.75 730,-1901.25 586.83,-1901.25"/>
-<text text-anchor="start" x="620.92" y="-1908.45" font-family="arial" font-size="14.00">16.5 Inches</text>
-<text text-anchor="start" x="443.62" y="-1885.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="381.75" y="-1865.95" font-family="arial" font-size="14.00">ECUM:3:Extra Out 1</text>
-<text text-anchor="start" x="512.62" y="-1865.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="572.62" y="-1865.95" font-family="arial" font-size="14.00">ECU1:B4:Extra Output 1</text>
-<polygon fill="#000000" stroke="none" points="380,-1859.25 380,-1861.25 730,-1861.25 730,-1859.25 380,-1859.25"/>
-<polygon fill="#00ff00" stroke="none" points="380,-1857.25 380,-1859.25 730,-1859.25 730,-1857.25 380,-1857.25"/>
-<polygon fill="#000000" stroke="none" points="380,-1855.25 380,-1857.25 730,-1857.25 730,-1855.25 380,-1855.25"/>
-<text text-anchor="start" x="381.75" y="-1839.95" font-family="arial" font-size="14.00">ECUM:4:Extra Out 2</text>
-<text text-anchor="start" x="512.62" y="-1839.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="572.25" y="-1839.95" font-family="arial" font-size="14.00">ECU1:C4:Extra Output 2</text>
-<polygon fill="#000000" stroke="none" points="380,-1833.25 380,-1835.25 730,-1835.25 730,-1833.25 380,-1833.25"/>
-<polygon fill="#00ff00" stroke="none" points="380,-1831.25 380,-1833.25 730,-1833.25 730,-1831.25 380,-1831.25"/>
-<polygon fill="#000000" stroke="none" points="380,-1829.25 380,-1831.25 730,-1831.25 730,-1829.25 380,-1829.25"/>
-<text text-anchor="start" x="401.25" y="-1813.95" font-family="arial" font-size="14.00">ECUM:2:GND</text>
-<text text-anchor="start" x="513.38" y="-1813.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="570.75" y="-1813.95" font-family="arial" font-size="14.00">ECU1:L4:Engine Ground</text>
-<polygon fill="#000000" stroke="none" points="380,-1807.25 380,-1809.25 730,-1809.25 730,-1807.25 380,-1807.25"/>
-<polygon fill="#895956" stroke="none" points="380,-1805.25 380,-1807.25 730,-1807.25 730,-1805.25 380,-1805.25"/>
-<polygon fill="#000000" stroke="none" points="380,-1803.25 380,-1805.25 730,-1805.25 730,-1803.25 380,-1803.25"/>
-<text text-anchor="start" x="443.62" y="-1787.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="730,-1952.75 380,-1952.75 380,-1785.75 730,-1785.75 730,-1952.75"/>
+<polygon fill="none" stroke="black" points="380,-1928.25 380,-1952.75 730,-1952.75 730,-1928.25 380,-1928.25"/>
+<text text-anchor="start" x="543.75" y="-1935.45" font-family="arial" font-size="14.00">W3</text>
+<polygon fill="none" stroke="black" points="380,-1903.75 380,-1928.25 463.17,-1928.25 463.17,-1903.75 380,-1903.75"/>
+<text text-anchor="start" x="414.08" y="-1910.95" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="463.17,-1903.75 463.17,-1928.25 586.83,-1928.25 586.83,-1903.75 463.17,-1903.75"/>
+<text text-anchor="start" x="497.25" y="-1910.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="586.83,-1903.75 586.83,-1928.25 730,-1928.25 730,-1903.75 586.83,-1903.75"/>
+<text text-anchor="start" x="620.92" y="-1910.95" font-family="arial" font-size="14.00">16.5 Inches</text>
+<text text-anchor="start" x="443.62" y="-1888.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="381.75" y="-1868.45" font-family="arial" font-size="14.00">ECUM:3:Extra Out 1</text>
+<text text-anchor="start" x="512.62" y="-1868.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="572.62" y="-1868.45" font-family="arial" font-size="14.00">ECU1:B4:Extra Output 1</text>
+<polygon fill="#000000" stroke="none" points="380,-1861.75 380,-1863.75 730,-1863.75 730,-1861.75 380,-1861.75"/>
+<polygon fill="#00ff00" stroke="none" points="380,-1859.75 380,-1861.75 730,-1861.75 730,-1859.75 380,-1859.75"/>
+<polygon fill="#000000" stroke="none" points="380,-1857.75 380,-1859.75 730,-1859.75 730,-1857.75 380,-1857.75"/>
+<text text-anchor="start" x="381.75" y="-1842.45" font-family="arial" font-size="14.00">ECUM:4:Extra Out 2</text>
+<text text-anchor="start" x="512.62" y="-1842.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="572.25" y="-1842.45" font-family="arial" font-size="14.00">ECU1:C4:Extra Output 2</text>
+<polygon fill="#000000" stroke="none" points="380,-1835.75 380,-1837.75 730,-1837.75 730,-1835.75 380,-1835.75"/>
+<polygon fill="#00ff00" stroke="none" points="380,-1833.75 380,-1835.75 730,-1835.75 730,-1833.75 380,-1833.75"/>
+<polygon fill="#000000" stroke="none" points="380,-1831.75 380,-1833.75 730,-1833.75 730,-1831.75 380,-1831.75"/>
+<text text-anchor="start" x="401.25" y="-1816.45" font-family="arial" font-size="14.00">ECUM:2:GND</text>
+<text text-anchor="start" x="513.38" y="-1816.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="570.75" y="-1816.45" font-family="arial" font-size="14.00">ECU1:L4:Engine Ground</text>
+<polygon fill="#000000" stroke="none" points="380,-1809.75 380,-1811.75 730,-1811.75 730,-1809.75 380,-1809.75"/>
+<polygon fill="#895956" stroke="none" points="380,-1807.75 380,-1809.75 730,-1809.75 730,-1807.75 380,-1807.75"/>
+<polygon fill="#000000" stroke="none" points="380,-1805.75 380,-1807.75 730,-1807.75 730,-1805.75 380,-1805.75"/>
+<text text-anchor="start" x="443.62" y="-1790.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W3 -->
-<g id="edge9" class="edge">
+<g id="edge12" class="edge">
<title>ECUM:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1760C314.97,-1762.21 305.01,-1858.46 380,-1856.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1762C312.98,-1762 303.02,-1858.25 380,-1858.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1764C310.99,-1761.79 301.03,-1858.04 380,-1860.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1857.5C300.16,-1857.51 316.15,-1858.76 380,-1858.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1859.5C300,-1859.5 316,-1860.75 380,-1860.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1861.5C299.85,-1861.49 315.84,-1862.74 380,-1862.75"/>
</g>
<!-- ECUM&#45;&#45;W3 -->
-<g id="edge11" class="edge">
+<g id="edge14" class="edge">
<title>ECUM:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1736C314.48,-1738.19 305.5,-1832.44 380,-1830.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1738C312.49,-1738 303.51,-1832.25 380,-1832.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1740C310.5,-1737.81 301.52,-1832.06 380,-1834.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1833.5C299.91,-1833.5 315.91,-1832.75 380,-1832.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1835.5C300,-1835.5 316,-1834.75 380,-1834.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1837.5C300.09,-1837.5 316.09,-1836.75 380,-1836.75"/>
</g>
<!-- ECUM&#45;&#45;W3 -->
-<g id="edge13" class="edge">
+<g id="edge16" class="edge">
<title>ECUM:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1784C302.25,-1784.82 316.99,-1805.07 380,-1804.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M236,-1786C300.63,-1786 315.37,-1806.25 380,-1806.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1788C299.01,-1787.18 313.75,-1807.43 380,-1808.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1881.5C306.11,-1883.51 305.89,-1808.76 380,-1806.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M236,-1883.5C308.11,-1883.5 307.89,-1808.75 380,-1808.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1885.5C310.11,-1883.49 309.89,-1808.74 380,-1810.75"/>
</g>
<!-- W11 -->
<g id="node35" class="node">
<title>W11</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-1551.5 398.5,-1551.5 398.5,-1412 711.5,-1412 711.5,-1551.5"/>
-<polygon fill="none" stroke="black" points="398.5,-1527 398.5,-1551.5 711.5,-1551.5 711.5,-1527 398.5,-1527"/>
-<text text-anchor="start" x="539.62" y="-1534.2" font-family="arial" font-size="14.00">W11</text>
-<polygon fill="none" stroke="black" points="398.5,-1502.5 398.5,-1527 469.33,-1527 469.33,-1502.5 398.5,-1502.5"/>
-<text text-anchor="start" x="426.42" y="-1509.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="469.33,-1502.5 469.33,-1527 580.67,-1527 580.67,-1502.5 469.33,-1502.5"/>
-<text text-anchor="start" x="497.25" y="-1509.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="580.67,-1502.5 580.67,-1527 711.5,-1527 711.5,-1502.5 580.67,-1502.5"/>
-<text text-anchor="start" x="608.58" y="-1509.7" font-family="arial" font-size="14.00">20.0 Inches</text>
-<text text-anchor="start" x="460.62" y="-1487.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="400.25" y="-1467.2" font-family="arial" font-size="14.00">ECUM:8:12V Servo</text>
-<text text-anchor="start" x="528.12" y="-1467.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="586.12" y="-1467.2" font-family="arial" font-size="14.00">Servo Power:1:12V</text>
-<polygon fill="#000000" stroke="none" points="398.5,-1460.5 398.5,-1462.5 711.5,-1462.5 711.5,-1460.5 398.5,-1460.5"/>
-<polygon fill="#ff0000" stroke="none" points="398.5,-1458.5 398.5,-1460.5 711.5,-1460.5 711.5,-1458.5 398.5,-1458.5"/>
-<polygon fill="#000000" stroke="none" points="398.5,-1456.5 398.5,-1458.5 711.5,-1458.5 711.5,-1456.5 398.5,-1456.5"/>
-<text text-anchor="start" x="460.62" y="-1441.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="398.5,-1412 398.5,-1436.5 711.5,-1436.5 711.5,-1412 398.5,-1412"/>
-<text text-anchor="start" x="468" y="-1419.2" font-family="arial" font-size="14.00">Servo Wire is Long Enough</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-630 398.5,-630 398.5,-490.5 711.5,-490.5 711.5,-630"/>
+<polygon fill="none" stroke="black" points="398.5,-605.5 398.5,-630 711.5,-630 711.5,-605.5 398.5,-605.5"/>
+<text text-anchor="start" x="539.62" y="-612.7" font-family="arial" font-size="14.00">W11</text>
+<polygon fill="none" stroke="black" points="398.5,-581 398.5,-605.5 469.33,-605.5 469.33,-581 398.5,-581"/>
+<text text-anchor="start" x="426.42" y="-588.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="469.33,-581 469.33,-605.5 580.67,-605.5 580.67,-581 469.33,-581"/>
+<text text-anchor="start" x="497.25" y="-588.2" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="580.67,-581 580.67,-605.5 711.5,-605.5 711.5,-581 580.67,-581"/>
+<text text-anchor="start" x="608.58" y="-588.2" font-family="arial" font-size="14.00">20.0 Inches</text>
+<text text-anchor="start" x="460.62" y="-565.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="400.25" y="-545.7" font-family="arial" font-size="14.00">ECUM:8:12V Servo</text>
+<text text-anchor="start" x="528.12" y="-545.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="586.12" y="-545.7" font-family="arial" font-size="14.00">Servo Power:1:12V</text>
+<polygon fill="#000000" stroke="none" points="398.5,-539 398.5,-541 711.5,-541 711.5,-539 398.5,-539"/>
+<polygon fill="#ff0000" stroke="none" points="398.5,-537 398.5,-539 711.5,-539 711.5,-537 398.5,-537"/>
+<polygon fill="#000000" stroke="none" points="398.5,-535 398.5,-537 711.5,-537 711.5,-535 398.5,-535"/>
+<text text-anchor="start" x="460.62" y="-519.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="398.5,-490.5 398.5,-515 711.5,-515 711.5,-490.5 398.5,-490.5"/>
+<text text-anchor="start" x="468" y="-497.7" font-family="arial" font-size="14.00">Servo Wire is Long Enough</text>
</g>
<!-- ECUM&#45;&#45;W11 -->
-<g id="edge44" class="edge">
+<g id="edge47" class="edge">
<title>ECUM:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1664C350.62,-1666.65 279.1,-1460.15 397.5,-1457.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1666C352.51,-1666 280.99,-1459.5 397.5,-1459.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1668C354.4,-1665.35 282.88,-1458.85 397.5,-1461.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1761.5C508.78,-1764.1 120.91,-538.6 397.5,-536"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1763.5C510.69,-1763.5 122.81,-538 397.5,-538"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1765.5C512.59,-1762.9 124.72,-537.4 397.5,-540"/>
</g>
<!-- W15 -->
<g id="node39" class="node">
<title>W15</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="709,-1759.25 401,-1759.25 401,-1644.25 709,-1644.25 709,-1759.25"/>
-<polygon fill="none" stroke="black" points="401,-1734.75 401,-1759.25 709,-1759.25 709,-1734.75 401,-1734.75"/>
-<text text-anchor="start" x="539.62" y="-1741.95" font-family="arial" font-size="14.00">W15</text>
-<polygon fill="none" stroke="black" points="401,-1710.25 401,-1734.75 470.17,-1734.75 470.17,-1710.25 401,-1710.25"/>
-<text text-anchor="start" x="428.08" y="-1717.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="470.17,-1710.25 470.17,-1734.75 579.83,-1734.75 579.83,-1710.25 470.17,-1710.25"/>
-<text text-anchor="start" x="497.25" y="-1717.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="579.83,-1710.25 579.83,-1734.75 709,-1734.75 709,-1710.25 579.83,-1710.25"/>
-<text text-anchor="start" x="606.92" y="-1717.45" font-family="arial" font-size="14.00">16.5 Inches</text>
-<text text-anchor="start" x="459.62" y="-1694.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="403" y="-1674.95" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
-<text text-anchor="start" x="523.62" y="-1674.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="581.88" y="-1674.95" font-family="arial" font-size="14.00">ECU1:M4:ECU 12V</text>
-<polygon fill="#000000" stroke="none" points="401,-1668.25 401,-1670.25 709,-1670.25 709,-1668.25 401,-1668.25"/>
-<polygon fill="#ff0000" stroke="none" points="401,-1666.25 401,-1668.25 709,-1668.25 709,-1666.25 401,-1666.25"/>
-<polygon fill="#000000" stroke="none" points="401,-1664.25 401,-1666.25 709,-1666.25 709,-1664.25 401,-1664.25"/>
-<text text-anchor="start" x="459.62" y="-1648.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="709,-1761.75 401,-1761.75 401,-1646.75 709,-1646.75 709,-1761.75"/>
+<polygon fill="none" stroke="black" points="401,-1737.25 401,-1761.75 709,-1761.75 709,-1737.25 401,-1737.25"/>
+<text text-anchor="start" x="539.62" y="-1744.45" font-family="arial" font-size="14.00">W15</text>
+<polygon fill="none" stroke="black" points="401,-1712.75 401,-1737.25 470.17,-1737.25 470.17,-1712.75 401,-1712.75"/>
+<text text-anchor="start" x="428.08" y="-1719.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="470.17,-1712.75 470.17,-1737.25 579.83,-1737.25 579.83,-1712.75 470.17,-1712.75"/>
+<text text-anchor="start" x="497.25" y="-1719.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="579.83,-1712.75 579.83,-1737.25 709,-1737.25 709,-1712.75 579.83,-1712.75"/>
+<text text-anchor="start" x="606.92" y="-1719.95" font-family="arial" font-size="14.00">16.5 Inches</text>
+<text text-anchor="start" x="459.62" y="-1697.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="403" y="-1677.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
+<text text-anchor="start" x="523.62" y="-1677.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="581.88" y="-1677.45" font-family="arial" font-size="14.00">ECU1:M4:ECU 12V</text>
+<polygon fill="#000000" stroke="none" points="401,-1670.75 401,-1672.75 709,-1672.75 709,-1670.75 401,-1670.75"/>
+<polygon fill="#ff0000" stroke="none" points="401,-1668.75 401,-1670.75 709,-1670.75 709,-1668.75 401,-1668.75"/>
+<polygon fill="#000000" stroke="none" points="401,-1666.75 401,-1668.75 709,-1668.75 709,-1666.75 401,-1666.75"/>
+<text text-anchor="start" x="459.62" y="-1651.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W15 -->
-<g id="edge52" class="edge">
+<g id="edge55" class="edge">
<title>ECUM:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1688C307.98,-1688.81 324.81,-1666.06 400,-1665.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1690C309.59,-1690 326.41,-1667.25 400,-1667.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1692C311.19,-1691.19 328.02,-1668.44 400,-1669.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1785.5C323.75,-1787.76 308.29,-1670.01 400,-1667.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1787.5C325.73,-1787.5 310.27,-1669.75 400,-1669.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1789.5C327.71,-1787.24 312.25,-1669.49 400,-1671.75"/>
</g>
<!-- W21 -->
<g id="node43" class="node">
<title>W21</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="681,-561.25 429,-561.25 429,-446.25 681,-446.25 681,-561.25"/>
-<polygon fill="none" stroke="black" points="429,-536.75 429,-561.25 681,-561.25 681,-536.75 429,-536.75"/>
-<text text-anchor="start" x="539.62" y="-543.95" font-family="arial" font-size="14.00">W21</text>
-<polygon fill="none" stroke="black" points="429,-512.25 429,-536.75 479.5,-536.75 479.5,-512.25 429,-512.25"/>
-<text text-anchor="start" x="446.75" y="-519.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="479.5,-512.25 479.5,-536.75 570.5,-536.75 570.5,-512.25 479.5,-512.25"/>
-<text text-anchor="start" x="497.25" y="-519.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="570.5,-512.25 570.5,-536.75 681,-536.75 681,-512.25 570.5,-512.25"/>
-<text text-anchor="start" x="588.25" y="-519.45" font-family="arial" font-size="14.00">21.0 Inches</text>
-<text text-anchor="start" x="487.62" y="-496.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="431" y="-476.95" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
-<text text-anchor="start" x="551.62" y="-476.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="609.62" y="-476.95" font-family="arial" font-size="14.00">LSU:3:12V</text>
-<polygon fill="#000000" stroke="none" points="429,-470.25 429,-472.25 681,-472.25 681,-470.25 429,-470.25"/>
-<polygon fill="#ff0000" stroke="none" points="429,-468.25 429,-470.25 681,-470.25 681,-468.25 429,-468.25"/>
-<polygon fill="#000000" stroke="none" points="429,-466.25 429,-468.25 681,-468.25 681,-466.25 429,-466.25"/>
-<text text-anchor="start" x="487.62" y="-450.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="681,-1118.75 429,-1118.75 429,-1003.75 681,-1003.75 681,-1118.75"/>
+<polygon fill="none" stroke="black" points="429,-1094.25 429,-1118.75 681,-1118.75 681,-1094.25 429,-1094.25"/>
+<text text-anchor="start" x="539.62" y="-1101.45" font-family="arial" font-size="14.00">W21</text>
+<polygon fill="none" stroke="black" points="429,-1069.75 429,-1094.25 479.5,-1094.25 479.5,-1069.75 429,-1069.75"/>
+<text text-anchor="start" x="446.75" y="-1076.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="479.5,-1069.75 479.5,-1094.25 570.5,-1094.25 570.5,-1069.75 479.5,-1069.75"/>
+<text text-anchor="start" x="497.25" y="-1076.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="570.5,-1069.75 570.5,-1094.25 681,-1094.25 681,-1069.75 570.5,-1069.75"/>
+<text text-anchor="start" x="588.25" y="-1076.95" font-family="arial" font-size="14.00">21.0 Inches</text>
+<text text-anchor="start" x="487.62" y="-1054.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="431" y="-1034.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
+<text text-anchor="start" x="551.62" y="-1034.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="609.62" y="-1034.45" font-family="arial" font-size="14.00">LSU:3:12V</text>
+<polygon fill="#000000" stroke="none" points="429,-1027.75 429,-1029.75 681,-1029.75 681,-1027.75 429,-1027.75"/>
+<polygon fill="#ff0000" stroke="none" points="429,-1025.75 429,-1027.75 681,-1027.75 681,-1025.75 429,-1025.75"/>
+<polygon fill="#000000" stroke="none" points="429,-1023.75 429,-1025.75 681,-1025.75 681,-1023.75 429,-1023.75"/>
+<text text-anchor="start" x="487.62" y="-1008.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM&#45;&#45;W21 -->
-<g id="edge60" class="edge">
+<g id="edge63" class="edge">
<title>ECUM:e&#45;&#45;W21:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1688C508.69,-1690.56 151.47,-469.81 428,-467.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1690C510.61,-1690 153.39,-469.25 428,-469.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1692C512.53,-1689.44 155.31,-468.69 428,-471.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1785.5C583.05,-1788.61 77.62,-1027.86 428,-1024.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1787.5C584.71,-1787.5 79.29,-1026.75 428,-1026.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1789.5C586.38,-1786.39 80.95,-1025.64 428,-1028.75"/>
</g>
<!-- ECUF -->
<g id="node2" class="node">
<title>ECUF</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-4445.5 961,-4445.5 961,-4064 1188,-4064 1188,-4445.5"/>
-<polygon fill="none" stroke="black" points="961,-4421 961,-4445.5 1188,-4445.5 1188,-4421 961,-4421"/>
-<text text-anchor="start" x="1055" y="-4428.2" font-family="arial" font-size="14.00">ECUF</text>
-<polygon fill="none" stroke="black" points="961,-4396.5 961,-4421 1113.88,-4421 1113.88,-4396.5 961,-4396.5"/>
-<text text-anchor="start" x="982.31" y="-4403.7" font-family="arial" font-size="14.00">Delphi 15336205</text>
-<polygon fill="none" stroke="black" points="1113.88,-4396.5 1113.88,-4421 1188,-4421 1188,-4396.5 1113.88,-4396.5"/>
-<text text-anchor="start" x="1135.19" y="-4403.7" font-family="arial" font-size="14.00">7&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-4372.5 961,-4396.5 1111,-4396.5 1111,-4372.5 961,-4372.5"/>
-<text text-anchor="start" x="991.38" y="-4379.2" font-family="arial" font-size="14.00">Starter/Exciter</text>
-<polygon fill="none" stroke="black" points="1111,-4372.5 1111,-4396.5 1188,-4396.5 1188,-4372.5 1111,-4372.5"/>
-<text text-anchor="start" x="1145.38" y="-4379.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="961,-4348.5 961,-4372.5 1111,-4372.5 1111,-4348.5 961,-4348.5"/>
-<text text-anchor="start" x="1000.75" y="-4355.2" font-family="arial" font-size="14.00">Extra Out 2</text>
-<polygon fill="none" stroke="black" points="1111,-4348.5 1111,-4372.5 1188,-4372.5 1188,-4348.5 1111,-4348.5"/>
-<text text-anchor="start" x="1145.38" y="-4355.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="961,-4324.5 961,-4348.5 1111,-4348.5 1111,-4324.5 961,-4324.5"/>
-<text text-anchor="start" x="1000.75" y="-4331.2" font-family="arial" font-size="14.00">Extra Out 1</text>
-<polygon fill="none" stroke="black" points="1111,-4324.5 1111,-4348.5 1188,-4348.5 1188,-4324.5 1111,-4324.5"/>
-<text text-anchor="start" x="1145.38" y="-4331.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="961,-4300.5 961,-4324.5 1111,-4324.5 1111,-4300.5 961,-4300.5"/>
-<text text-anchor="start" x="1020.25" y="-4307.2" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="1111,-4300.5 1111,-4324.5 1188,-4324.5 1188,-4300.5 1111,-4300.5"/>
-<text text-anchor="start" x="1145.38" y="-4307.2" font-family="arial" font-size="14.00">5</text>
-<polygon fill="none" stroke="black" points="961,-4276.5 961,-4300.5 1111,-4300.5 1111,-4276.5 961,-4276.5"/>
-<text text-anchor="start" x="1013.12" y="-4283.2" font-family="arial" font-size="14.00">Ignition</text>
-<polygon fill="none" stroke="black" points="1111,-4276.5 1111,-4300.5 1188,-4300.5 1188,-4276.5 1111,-4276.5"/>
-<text text-anchor="start" x="1145.38" y="-4283.2" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="961,-4252.5 961,-4276.5 1111,-4276.5 1111,-4252.5 961,-4252.5"/>
-<text text-anchor="start" x="1002.25" y="-4259.2" font-family="arial" font-size="14.00">12V Servo</text>
-<polygon fill="none" stroke="black" points="1111,-4252.5 1111,-4276.5 1188,-4276.5 1188,-4252.5 1111,-4252.5"/>
-<text text-anchor="start" x="1141.25" y="-4259.2" font-family="arial" font-size="14.00">11</text>
-<polygon fill="none" stroke="black" points="961,-4228.5 961,-4252.5 1111,-4252.5 1111,-4228.5 961,-4228.5"/>
-<text text-anchor="start" x="1006" y="-4235.2" font-family="arial" font-size="14.00">12V ECU</text>
-<polygon fill="none" stroke="black" points="1111,-4228.5 1111,-4252.5 1188,-4252.5 1188,-4228.5 1111,-4228.5"/>
-<text text-anchor="start" x="1141.25" y="-4235.2" font-family="arial" font-size="14.00">12</text>
-<polygon fill="none" stroke="black" points="961,-4088.5 961,-4228.5 1188,-4228.5 1188,-4088.5 961,-4088.5"/>
-<image xlink:href="images\ECU4.png" width="219px" height="132px" preserveAspectRatio="xMinYMin meet" x="965" y="-4224.5"/>
-<polygon fill="none" stroke="black" points="961,-4064 961,-4088.5 1188,-4088.5 1188,-4064 961,-4064"/>
-<text text-anchor="start" x="965" y="-4071.2" font-family="arial" font-size="14.00">ECU 12 Pin Connector to Fusebox</text>
+<polygon fill="#ffffff" stroke="black" points="1188,-4238 961,-4238 961,-3856.5 1188,-3856.5 1188,-4238"/>
+<polygon fill="none" stroke="black" points="961,-4213.5 961,-4238 1188,-4238 1188,-4213.5 961,-4213.5"/>
+<text text-anchor="start" x="1055" y="-4220.7" font-family="arial" font-size="14.00">ECUF</text>
+<polygon fill="none" stroke="black" points="961,-4189 961,-4213.5 1113.88,-4213.5 1113.88,-4189 961,-4189"/>
+<text text-anchor="start" x="982.31" y="-4196.2" font-family="arial" font-size="14.00">Delphi 15336205</text>
+<polygon fill="none" stroke="black" points="1113.88,-4189 1113.88,-4213.5 1188,-4213.5 1188,-4189 1113.88,-4189"/>
+<text text-anchor="start" x="1135.19" y="-4196.2" font-family="arial" font-size="14.00">7&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-4165 961,-4189 1111,-4189 1111,-4165 961,-4165"/>
+<text text-anchor="start" x="991.38" y="-4171.7" font-family="arial" font-size="14.00">Starter/Exciter</text>
+<polygon fill="none" stroke="black" points="1111,-4165 1111,-4189 1188,-4189 1188,-4165 1111,-4165"/>
+<text text-anchor="start" x="1145.38" y="-4171.7" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="961,-4141 961,-4165 1111,-4165 1111,-4141 961,-4141"/>
+<text text-anchor="start" x="1000.75" y="-4147.7" font-family="arial" font-size="14.00">Extra Out 2</text>
+<polygon fill="none" stroke="black" points="1111,-4141 1111,-4165 1188,-4165 1188,-4141 1111,-4141"/>
+<text text-anchor="start" x="1145.38" y="-4147.7" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="961,-4117 961,-4141 1111,-4141 1111,-4117 961,-4117"/>
+<text text-anchor="start" x="1000.75" y="-4123.7" font-family="arial" font-size="14.00">Extra Out 1</text>
+<polygon fill="none" stroke="black" points="1111,-4117 1111,-4141 1188,-4141 1188,-4117 1111,-4117"/>
+<text text-anchor="start" x="1145.38" y="-4123.7" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="961,-4093 961,-4117 1111,-4117 1111,-4093 961,-4093"/>
+<text text-anchor="start" x="1020.25" y="-4099.7" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="1111,-4093 1111,-4117 1188,-4117 1188,-4093 1111,-4093"/>
+<text text-anchor="start" x="1145.38" y="-4099.7" font-family="arial" font-size="14.00">5</text>
+<polygon fill="none" stroke="black" points="961,-4069 961,-4093 1111,-4093 1111,-4069 961,-4069"/>
+<text text-anchor="start" x="1013.12" y="-4075.7" font-family="arial" font-size="14.00">Ignition</text>
+<polygon fill="none" stroke="black" points="1111,-4069 1111,-4093 1188,-4093 1188,-4069 1111,-4069"/>
+<text text-anchor="start" x="1145.38" y="-4075.7" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="961,-4045 961,-4069 1111,-4069 1111,-4045 961,-4045"/>
+<text text-anchor="start" x="1002.25" y="-4051.7" font-family="arial" font-size="14.00">12V Servo</text>
+<polygon fill="none" stroke="black" points="1111,-4045 1111,-4069 1188,-4069 1188,-4045 1111,-4045"/>
+<text text-anchor="start" x="1141.25" y="-4051.7" font-family="arial" font-size="14.00">11</text>
+<polygon fill="none" stroke="black" points="961,-4021 961,-4045 1111,-4045 1111,-4021 961,-4021"/>
+<text text-anchor="start" x="1006" y="-4027.7" font-family="arial" font-size="14.00">12V ECU</text>
+<polygon fill="none" stroke="black" points="1111,-4021 1111,-4045 1188,-4045 1188,-4021 1111,-4021"/>
+<text text-anchor="start" x="1141.25" y="-4027.7" font-family="arial" font-size="14.00">12</text>
+<polygon fill="none" stroke="black" points="961,-3881 961,-4021 1188,-4021 1188,-3881 961,-3881"/>
+<image xlink:href="images\ECU4.png" width="219px" height="132px" preserveAspectRatio="xMinYMin meet" x="965" y="-4017"/>
+<polygon fill="none" stroke="black" points="961,-3856.5 961,-3881 1188,-3881 1188,-3856.5 961,-3856.5"/>
+<text text-anchor="start" x="965" y="-3863.7" font-family="arial" font-size="14.00">ECU 12 Pin Connector to Fusebox</text>
</g>
<!-- W4 -->
<g id="node28" class="node">
<title>W4</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1753,-4369.25 1456,-4369.25 1456,-4228.25 1753,-4228.25 1753,-4369.25"/>
-<polygon fill="none" stroke="black" points="1456,-4344.75 1456,-4369.25 1753,-4369.25 1753,-4344.75 1456,-4344.75"/>
-<text text-anchor="start" x="1593.25" y="-4351.95" font-family="arial" font-size="14.00">W4</text>
-<polygon fill="none" stroke="black" points="1456,-4320.25 1456,-4344.75 1521.5,-4344.75 1521.5,-4320.25 1456,-4320.25"/>
-<text text-anchor="start" x="1481.25" y="-4327.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1521.5,-4320.25 1521.5,-4344.75 1627.5,-4344.75 1627.5,-4320.25 1521.5,-4320.25"/>
-<text text-anchor="start" x="1546.75" y="-4327.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1627.5,-4320.25 1627.5,-4344.75 1753,-4344.75 1753,-4320.25 1627.5,-4320.25"/>
-<text text-anchor="start" x="1652.75" y="-4327.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1517.62" y="-4304.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1458" y="-4284.95" font-family="arial" font-size="14.00">ECUF:12:12V ECU</text>
-<text text-anchor="start" x="1584.62" y="-4284.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1642.62" y="-4284.95" font-family="arial" font-size="14.00">Fuse Block:2:F1&#45;</text>
-<polygon fill="#000000" stroke="none" points="1456,-4278.25 1456,-4280.25 1753,-4280.25 1753,-4278.25 1456,-4278.25"/>
-<polygon fill="#ff0000" stroke="none" points="1456,-4276.25 1456,-4278.25 1753,-4278.25 1753,-4276.25 1456,-4276.25"/>
-<polygon fill="#000000" stroke="none" points="1456,-4274.25 1456,-4276.25 1753,-4276.25 1753,-4274.25 1456,-4274.25"/>
-<text text-anchor="start" x="1469.25" y="-4258.95" font-family="arial" font-size="14.00">ECUF:6:Ignition</text>
-<text text-anchor="start" x="1584.62" y="-4258.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1642.62" y="-4258.95" font-family="arial" font-size="14.00">Fuse Block:4:F2&#45;</text>
-<polygon fill="#000000" stroke="none" points="1456,-4252.25 1456,-4254.25 1753,-4254.25 1753,-4252.25 1456,-4252.25"/>
-<polygon fill="#ff0000" stroke="none" points="1456,-4250.25 1456,-4252.25 1753,-4252.25 1753,-4250.25 1456,-4250.25"/>
-<polygon fill="#000000" stroke="none" points="1456,-4248.25 1456,-4250.25 1753,-4250.25 1753,-4248.25 1456,-4248.25"/>
-<text text-anchor="start" x="1517.62" y="-4232.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1753,-4090.75 1456,-4090.75 1456,-3949.75 1753,-3949.75 1753,-4090.75"/>
+<polygon fill="none" stroke="black" points="1456,-4066.25 1456,-4090.75 1753,-4090.75 1753,-4066.25 1456,-4066.25"/>
+<text text-anchor="start" x="1593.25" y="-4073.45" font-family="arial" font-size="14.00">W4</text>
+<polygon fill="none" stroke="black" points="1456,-4041.75 1456,-4066.25 1521.5,-4066.25 1521.5,-4041.75 1456,-4041.75"/>
+<text text-anchor="start" x="1481.25" y="-4048.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1521.5,-4041.75 1521.5,-4066.25 1627.5,-4066.25 1627.5,-4041.75 1521.5,-4041.75"/>
+<text text-anchor="start" x="1546.75" y="-4048.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1627.5,-4041.75 1627.5,-4066.25 1753,-4066.25 1753,-4041.75 1627.5,-4041.75"/>
+<text text-anchor="start" x="1652.75" y="-4048.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1517.62" y="-4026.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1458" y="-4006.45" font-family="arial" font-size="14.00">ECUF:12:12V ECU</text>
+<text text-anchor="start" x="1584.62" y="-4006.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1642.62" y="-4006.45" font-family="arial" font-size="14.00">Fuse Block:2:F1&#45;</text>
+<polygon fill="#000000" stroke="none" points="1456,-3999.75 1456,-4001.75 1753,-4001.75 1753,-3999.75 1456,-3999.75"/>
+<polygon fill="#ff0000" stroke="none" points="1456,-3997.75 1456,-3999.75 1753,-3999.75 1753,-3997.75 1456,-3997.75"/>
+<polygon fill="#000000" stroke="none" points="1456,-3995.75 1456,-3997.75 1753,-3997.75 1753,-3995.75 1456,-3995.75"/>
+<text text-anchor="start" x="1469.25" y="-3980.45" font-family="arial" font-size="14.00">ECUF:6:Ignition</text>
+<text text-anchor="start" x="1584.62" y="-3980.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1642.62" y="-3980.45" font-family="arial" font-size="14.00">Fuse Block:4:F2&#45;</text>
+<polygon fill="#000000" stroke="none" points="1456,-3973.75 1456,-3975.75 1753,-3975.75 1753,-3973.75 1456,-3973.75"/>
+<polygon fill="#ff0000" stroke="none" points="1456,-3971.75 1456,-3973.75 1753,-3973.75 1753,-3971.75 1456,-3971.75"/>
+<polygon fill="#000000" stroke="none" points="1456,-3969.75 1456,-3971.75 1753,-3971.75 1753,-3969.75 1456,-3969.75"/>
+<text text-anchor="start" x="1517.62" y="-3954.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W4 -->
-<g id="edge16" class="edge">
+<g id="edge19" class="edge">
<title>ECUF:e&#45;&#45;W4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4238.5C1309.95,-4239.31 1337.26,-4276.06 1455,-4275.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4240.5C1308.35,-4240.5 1335.65,-4277.25 1455,-4277.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4242.5C1306.74,-4241.69 1334.05,-4278.44 1455,-4279.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4031C1306.64,-4031.74 1334.24,-3997.49 1455,-3996.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4033C1308.2,-4033 1335.8,-3998.75 1455,-3998.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4035C1309.76,-4034.26 1337.36,-4000.01 1455,-4000.75"/>
</g>
<!-- ECUF&#45;&#45;W4 -->
-<g id="edge18" class="edge">
+<g id="edge21" class="edge">
<title>ECUF:e&#45;&#45;W4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4286.5C1306.76,-4287.32 1334.01,-4250.07 1455,-4249.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4288.5C1308.38,-4288.5 1335.62,-4251.25 1455,-4251.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4290.5C1309.99,-4289.68 1337.24,-4252.43 1455,-4253.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4079C1314.65,-4080.8 1325.37,-3972.55 1455,-3970.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4081C1316.64,-4081 1327.36,-3972.75 1455,-3972.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4083C1318.63,-4081.2 1329.35,-3972.95 1455,-3974.75"/>
</g>
<!-- W7 -->
<g id="node30" class="node">
<title>W7</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1756.5,-3926.25 1452.5,-3926.25 1452.5,-3811.25 1756.5,-3811.25 1756.5,-3926.25"/>
-<polygon fill="none" stroke="black" points="1452.5,-3901.75 1452.5,-3926.25 1756.5,-3926.25 1756.5,-3901.75 1452.5,-3901.75"/>
-<text text-anchor="start" x="1593.25" y="-3908.95" font-family="arial" font-size="14.00">W7</text>
-<polygon fill="none" stroke="black" points="1452.5,-3877.25 1452.5,-3901.75 1520.33,-3901.75 1520.33,-3877.25 1452.5,-3877.25"/>
-<text text-anchor="start" x="1478.92" y="-3884.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1520.33,-3877.25 1520.33,-3901.75 1628.67,-3901.75 1628.67,-3877.25 1520.33,-3877.25"/>
-<text text-anchor="start" x="1546.75" y="-3884.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1628.67,-3877.25 1628.67,-3901.75 1756.5,-3901.75 1756.5,-3877.25 1628.67,-3877.25"/>
-<text text-anchor="start" x="1655.08" y="-3884.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1517.62" y="-3861.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1454.25" y="-3841.95" font-family="arial" font-size="14.00">ECUF:11:12V Servo</text>
-<text text-anchor="start" x="1588.12" y="-3841.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1646.12" y="-3841.95" font-family="arial" font-size="14.00">Fuse Block:6:F3&#45;</text>
-<polygon fill="#000000" stroke="none" points="1452.5,-3835.25 1452.5,-3837.25 1756.5,-3837.25 1756.5,-3835.25 1452.5,-3835.25"/>
-<polygon fill="#ff0000" stroke="none" points="1452.5,-3833.25 1452.5,-3835.25 1756.5,-3835.25 1756.5,-3833.25 1452.5,-3833.25"/>
-<polygon fill="#000000" stroke="none" points="1452.5,-3831.25 1452.5,-3833.25 1756.5,-3833.25 1756.5,-3831.25 1452.5,-3831.25"/>
-<text text-anchor="start" x="1517.62" y="-3815.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1756.5,-3925.75 1452.5,-3925.75 1452.5,-3810.75 1756.5,-3810.75 1756.5,-3925.75"/>
+<polygon fill="none" stroke="black" points="1452.5,-3901.25 1452.5,-3925.75 1756.5,-3925.75 1756.5,-3901.25 1452.5,-3901.25"/>
+<text text-anchor="start" x="1593.25" y="-3908.45" font-family="arial" font-size="14.00">W7</text>
+<polygon fill="none" stroke="black" points="1452.5,-3876.75 1452.5,-3901.25 1520.33,-3901.25 1520.33,-3876.75 1452.5,-3876.75"/>
+<text text-anchor="start" x="1478.92" y="-3883.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1520.33,-3876.75 1520.33,-3901.25 1628.67,-3901.25 1628.67,-3876.75 1520.33,-3876.75"/>
+<text text-anchor="start" x="1546.75" y="-3883.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1628.67,-3876.75 1628.67,-3901.25 1756.5,-3901.25 1756.5,-3876.75 1628.67,-3876.75"/>
+<text text-anchor="start" x="1655.08" y="-3883.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1517.62" y="-3861.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1454.25" y="-3841.45" font-family="arial" font-size="14.00">ECUF:11:12V Servo</text>
+<text text-anchor="start" x="1588.12" y="-3841.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1646.12" y="-3841.45" font-family="arial" font-size="14.00">Fuse Block:6:F3&#45;</text>
+<polygon fill="#000000" stroke="none" points="1452.5,-3834.75 1452.5,-3836.75 1756.5,-3836.75 1756.5,-3834.75 1452.5,-3834.75"/>
+<polygon fill="#ff0000" stroke="none" points="1452.5,-3832.75 1452.5,-3834.75 1756.5,-3834.75 1756.5,-3832.75 1452.5,-3832.75"/>
+<polygon fill="#000000" stroke="none" points="1452.5,-3830.75 1452.5,-3832.75 1756.5,-3832.75 1756.5,-3830.75 1452.5,-3830.75"/>
+<text text-anchor="start" x="1517.62" y="-3815.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W7 -->
-<g id="edge24" class="edge">
+<g id="edge27" class="edge">
<title>ECUF:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4262.5C1411.17,-4265.29 1225.66,-3835.04 1451.5,-3832.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4264.5C1413,-4264.5 1227.5,-3834.25 1451.5,-3834.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4266.5C1414.84,-4263.71 1229.33,-3833.46 1451.5,-3836.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4055C1340.19,-4057.39 1296.38,-3834.14 1451.5,-3831.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4057C1342.15,-4057 1298.35,-3833.75 1451.5,-3833.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4059C1344.12,-4056.61 1300.31,-3833.36 1451.5,-3835.75"/>
</g>
<!-- W16 -->
<g id="node40" class="node">
<title>W16</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1760.5,-4508.25 1448.5,-4508.25 1448.5,-4393.25 1760.5,-4393.25 1760.5,-4508.25"/>
-<polygon fill="none" stroke="black" points="1448.5,-4483.75 1448.5,-4508.25 1760.5,-4508.25 1760.5,-4483.75 1448.5,-4483.75"/>
-<text text-anchor="start" x="1589.12" y="-4490.95" font-family="arial" font-size="14.00">W16</text>
-<polygon fill="none" stroke="black" points="1448.5,-4459.25 1448.5,-4483.75 1519,-4483.75 1519,-4459.25 1448.5,-4459.25"/>
-<text text-anchor="start" x="1476.25" y="-4466.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1519,-4459.25 1519,-4483.75 1630,-4483.75 1630,-4459.25 1519,-4459.25"/>
-<text text-anchor="start" x="1546.75" y="-4466.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1630,-4459.25 1630,-4483.75 1760.5,-4483.75 1760.5,-4459.25 1630,-4459.25"/>
-<text text-anchor="start" x="1657.75" y="-4466.45" font-family="arial" font-size="14.00">27.0 Inches</text>
-<text text-anchor="start" x="1511.12" y="-4443.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1450.38" y="-4423.95" font-family="arial" font-size="14.00">ECUF:4:Extra Out 1</text>
-<text text-anchor="start" x="1579.12" y="-4423.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1637.25" y="-4423.95" font-family="arial" font-size="14.00">MAF Sensor:4:12V</text>
-<polygon fill="#000000" stroke="none" points="1448.5,-4417.25 1448.5,-4419.25 1760.5,-4419.25 1760.5,-4417.25 1448.5,-4417.25"/>
-<polygon fill="#00ff00" stroke="none" points="1448.5,-4415.25 1448.5,-4417.25 1760.5,-4417.25 1760.5,-4415.25 1448.5,-4415.25"/>
-<polygon fill="#000000" stroke="none" points="1448.5,-4413.25 1448.5,-4415.25 1760.5,-4415.25 1760.5,-4413.25 1448.5,-4413.25"/>
-<text text-anchor="start" x="1511.12" y="-4397.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1760.5,-4368.75 1448.5,-4368.75 1448.5,-4253.75 1760.5,-4253.75 1760.5,-4368.75"/>
+<polygon fill="none" stroke="black" points="1448.5,-4344.25 1448.5,-4368.75 1760.5,-4368.75 1760.5,-4344.25 1448.5,-4344.25"/>
+<text text-anchor="start" x="1589.12" y="-4351.45" font-family="arial" font-size="14.00">W16</text>
+<polygon fill="none" stroke="black" points="1448.5,-4319.75 1448.5,-4344.25 1519,-4344.25 1519,-4319.75 1448.5,-4319.75"/>
+<text text-anchor="start" x="1476.25" y="-4326.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1519,-4319.75 1519,-4344.25 1630,-4344.25 1630,-4319.75 1519,-4319.75"/>
+<text text-anchor="start" x="1546.75" y="-4326.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1630,-4319.75 1630,-4344.25 1760.5,-4344.25 1760.5,-4319.75 1630,-4319.75"/>
+<text text-anchor="start" x="1657.75" y="-4326.95" font-family="arial" font-size="14.00">27.0 Inches</text>
+<text text-anchor="start" x="1511.12" y="-4304.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1450.38" y="-4284.45" font-family="arial" font-size="14.00">ECUF:4:Extra Out 1</text>
+<text text-anchor="start" x="1579.12" y="-4284.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1637.25" y="-4284.45" font-family="arial" font-size="14.00">MAF Sensor:4:12V</text>
+<polygon fill="#000000" stroke="none" points="1448.5,-4277.75 1448.5,-4279.75 1760.5,-4279.75 1760.5,-4277.75 1448.5,-4277.75"/>
+<polygon fill="#00ff00" stroke="none" points="1448.5,-4275.75 1448.5,-4277.75 1760.5,-4277.75 1760.5,-4275.75 1448.5,-4275.75"/>
+<polygon fill="#000000" stroke="none" points="1448.5,-4273.75 1448.5,-4275.75 1760.5,-4275.75 1760.5,-4273.75 1448.5,-4273.75"/>
+<text text-anchor="start" x="1511.12" y="-4258.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W16 -->
-<g id="edge54" class="edge">
+<g id="edge57" class="edge">
<title>ECUF:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4334.5C1311.18,-4336.06 1329.22,-4415.81 1447.5,-4414.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4336.5C1309.23,-4336.5 1327.27,-4416.25 1447.5,-4416.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4338.5C1307.28,-4336.94 1325.32,-4416.69 1447.5,-4418.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4127C1323.33,-4129.08 1317.17,-4276.83 1447.5,-4274.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4129C1321.33,-4129 1315.17,-4276.75 1447.5,-4276.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4131C1319.33,-4128.92 1313.17,-4276.67 1447.5,-4278.75"/>
</g>
<!-- W17 -->
<g id="node41" class="node">
<title>W17</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1776.5,-5016.5 1432.5,-5016.5 1432.5,-4877 1776.5,-4877 1776.5,-5016.5"/>
-<polygon fill="none" stroke="black" points="1432.5,-4992 1432.5,-5016.5 1776.5,-5016.5 1776.5,-4992 1432.5,-4992"/>
-<text text-anchor="start" x="1589.12" y="-4999.2" font-family="arial" font-size="14.00">W17</text>
-<polygon fill="none" stroke="black" points="1432.5,-4967.5 1432.5,-4992 1513.67,-4992 1513.67,-4967.5 1432.5,-4967.5"/>
-<text text-anchor="start" x="1465.58" y="-4974.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1513.67,-4967.5 1513.67,-4992 1635.33,-4992 1635.33,-4967.5 1513.67,-4967.5"/>
-<text text-anchor="start" x="1546.75" y="-4974.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1635.33,-4967.5 1635.33,-4992 1776.5,-4992 1776.5,-4967.5 1635.33,-4967.5"/>
-<text text-anchor="start" x="1668.42" y="-4974.7" font-family="arial" font-size="14.00">37.0 Inches</text>
-<text text-anchor="start" x="1500.62" y="-4952.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1439.88" y="-4932.2" font-family="arial" font-size="14.00">ECUF:3:Extra Out 2</text>
-<text text-anchor="start" x="1579.62" y="-4932.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1649" y="-4932.2" font-family="arial" font-size="14.00">Tachometer:A:12V</text>
-<polygon fill="#000000" stroke="none" points="1432.5,-4925.5 1432.5,-4927.5 1776.5,-4927.5 1776.5,-4925.5 1432.5,-4925.5"/>
-<polygon fill="#00ff00" stroke="none" points="1432.5,-4923.5 1432.5,-4925.5 1776.5,-4925.5 1776.5,-4923.5 1432.5,-4923.5"/>
-<polygon fill="#000000" stroke="none" points="1432.5,-4921.5 1432.5,-4923.5 1776.5,-4923.5 1776.5,-4921.5 1432.5,-4921.5"/>
-<text text-anchor="start" x="1500.62" y="-4906.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1432.5,-4877 1432.5,-4901.5 1776.5,-4901.5 1776.5,-4877 1432.5,-4877"/>
-<text text-anchor="start" x="1436.5" y="-4884.2" font-family="arial" font-size="14.00">Pre&#45;attached wire is of sufficient length to reach ECU.</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1776.5,-4532 1432.5,-4532 1432.5,-4392.5 1776.5,-4392.5 1776.5,-4532"/>
+<polygon fill="none" stroke="black" points="1432.5,-4507.5 1432.5,-4532 1776.5,-4532 1776.5,-4507.5 1432.5,-4507.5"/>
+<text text-anchor="start" x="1589.12" y="-4514.7" font-family="arial" font-size="14.00">W17</text>
+<polygon fill="none" stroke="black" points="1432.5,-4483 1432.5,-4507.5 1513.67,-4507.5 1513.67,-4483 1432.5,-4483"/>
+<text text-anchor="start" x="1465.58" y="-4490.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1513.67,-4483 1513.67,-4507.5 1635.33,-4507.5 1635.33,-4483 1513.67,-4483"/>
+<text text-anchor="start" x="1546.75" y="-4490.2" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1635.33,-4483 1635.33,-4507.5 1776.5,-4507.5 1776.5,-4483 1635.33,-4483"/>
+<text text-anchor="start" x="1668.42" y="-4490.2" font-family="arial" font-size="14.00">37.0 Inches</text>
+<text text-anchor="start" x="1500.62" y="-4467.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1439.88" y="-4447.7" font-family="arial" font-size="14.00">ECUF:3:Extra Out 2</text>
+<text text-anchor="start" x="1579.62" y="-4447.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1649" y="-4447.7" font-family="arial" font-size="14.00">Tachometer:A:12V</text>
+<polygon fill="#000000" stroke="none" points="1432.5,-4441 1432.5,-4443 1776.5,-4443 1776.5,-4441 1432.5,-4441"/>
+<polygon fill="#00ff00" stroke="none" points="1432.5,-4439 1432.5,-4441 1776.5,-4441 1776.5,-4439 1432.5,-4439"/>
+<polygon fill="#000000" stroke="none" points="1432.5,-4437 1432.5,-4439 1776.5,-4439 1776.5,-4437 1432.5,-4437"/>
+<text text-anchor="start" x="1500.62" y="-4421.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1432.5,-4392.5 1432.5,-4417 1776.5,-4417 1776.5,-4392.5 1432.5,-4392.5"/>
+<text text-anchor="start" x="1436.5" y="-4399.7" font-family="arial" font-size="14.00">Pre&#45;attached wire is of sufficient length to reach ECU.</text>
</g>
<!-- ECUF&#45;&#45;W17 -->
-<g id="edge56" class="edge">
+<g id="edge59" class="edge">
<title>ECUF:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4358.5C1463.62,-4361.45 1160.41,-4925.45 1431.5,-4922.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4360.5C1461.85,-4360.5 1158.65,-4924.5 1431.5,-4924.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4362.5C1460.09,-4359.55 1156.88,-4923.55 1431.5,-4926.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4151C1357.9,-4153.61 1266.41,-4440.61 1431.5,-4438"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4153C1355.99,-4153 1264.51,-4440 1431.5,-4440"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4155C1354.09,-4152.39 1262.6,-4439.39 1431.5,-4442"/>
</g>
<!-- W18 -->
<g id="node42" class="node">
<title>W18</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1740.5,-4065.25 1468.5,-4065.25 1468.5,-3950.25 1740.5,-3950.25 1740.5,-4065.25"/>
-<polygon fill="none" stroke="black" points="1468.5,-4040.75 1468.5,-4065.25 1740.5,-4065.25 1740.5,-4040.75 1468.5,-4040.75"/>
-<text text-anchor="start" x="1589.12" y="-4047.95" font-family="arial" font-size="14.00">W18</text>
-<polygon fill="none" stroke="black" points="1468.5,-4016.25 1468.5,-4040.75 1525.67,-4040.75 1525.67,-4016.25 1468.5,-4016.25"/>
-<text text-anchor="start" x="1489.58" y="-4023.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1525.67,-4016.25 1525.67,-4040.75 1623.33,-4040.75 1623.33,-4016.25 1525.67,-4016.25"/>
-<text text-anchor="start" x="1546.75" y="-4023.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1623.33,-4016.25 1623.33,-4040.75 1740.5,-4040.75 1740.5,-4016.25 1623.33,-4016.25"/>
-<text text-anchor="start" x="1644.42" y="-4023.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1511.62" y="-4000.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1470.38" y="-3980.95" font-family="arial" font-size="14.00">ECUF:5:GND</text>
-<text text-anchor="start" x="1560.38" y="-3980.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1617.25" y="-3980.95" font-family="arial" font-size="14.00">Negative Bus Bar:3</text>
-<polygon fill="#000000" stroke="none" points="1468.5,-3974.25 1468.5,-3976.25 1740.5,-3976.25 1740.5,-3974.25 1468.5,-3974.25"/>
-<polygon fill="#000000" stroke="none" points="1468.5,-3972.25 1468.5,-3974.25 1740.5,-3974.25 1740.5,-3972.25 1468.5,-3972.25"/>
-<polygon fill="#000000" stroke="none" points="1468.5,-3970.25 1468.5,-3972.25 1740.5,-3972.25 1740.5,-3970.25 1468.5,-3970.25"/>
-<text text-anchor="start" x="1511.62" y="-3954.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1740.5,-4229.75 1468.5,-4229.75 1468.5,-4114.75 1740.5,-4114.75 1740.5,-4229.75"/>
+<polygon fill="none" stroke="black" points="1468.5,-4205.25 1468.5,-4229.75 1740.5,-4229.75 1740.5,-4205.25 1468.5,-4205.25"/>
+<text text-anchor="start" x="1589.12" y="-4212.45" font-family="arial" font-size="14.00">W18</text>
+<polygon fill="none" stroke="black" points="1468.5,-4180.75 1468.5,-4205.25 1525.67,-4205.25 1525.67,-4180.75 1468.5,-4180.75"/>
+<text text-anchor="start" x="1489.58" y="-4187.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1525.67,-4180.75 1525.67,-4205.25 1623.33,-4205.25 1623.33,-4180.75 1525.67,-4180.75"/>
+<text text-anchor="start" x="1546.75" y="-4187.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1623.33,-4180.75 1623.33,-4205.25 1740.5,-4205.25 1740.5,-4180.75 1623.33,-4180.75"/>
+<text text-anchor="start" x="1644.42" y="-4187.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1511.62" y="-4165.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1470.38" y="-4145.45" font-family="arial" font-size="14.00">ECUF:5:GND</text>
+<text text-anchor="start" x="1560.38" y="-4145.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1617.25" y="-4145.45" font-family="arial" font-size="14.00">Negative Bus Bar:3</text>
+<polygon fill="#000000" stroke="none" points="1468.5,-4138.75 1468.5,-4140.75 1740.5,-4140.75 1740.5,-4138.75 1468.5,-4138.75"/>
+<polygon fill="#000000" stroke="none" points="1468.5,-4136.75 1468.5,-4138.75 1740.5,-4138.75 1740.5,-4136.75 1468.5,-4136.75"/>
+<polygon fill="#000000" stroke="none" points="1468.5,-4134.75 1468.5,-4136.75 1740.5,-4136.75 1740.5,-4134.75 1468.5,-4134.75"/>
+<text text-anchor="start" x="1511.62" y="-4119.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF&#45;&#45;W18 -->
-<g id="edge58" class="edge">
+<g id="edge61" class="edge">
<title>ECUF:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4310.5C1382.18,-4313.13 1270.52,-3973.88 1467.5,-3971.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4312.5C1384.08,-4312.5 1272.42,-3973.25 1467.5,-3973.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4314.5C1385.98,-4311.87 1274.32,-3972.62 1467.5,-3975.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4103C1315.12,-4103.67 1344.36,-4136.42 1467.5,-4135.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4105C1313.63,-4105 1342.87,-4137.75 1467.5,-4137.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4107C1312.14,-4106.33 1341.38,-4139.08 1467.5,-4139.75"/>
</g>
<!-- ECU1 -->
<g id="node3" class="node">
<title>ECU1</title>
-<polygon fill="#ffffff" stroke="black" points="1275,-1920 874,-1920 874,-1475.5 1275,-1475.5 1275,-1920"/>
-<polygon fill="none" stroke="black" points="874,-1895.5 874,-1920 1275,-1920 1275,-1895.5 874,-1895.5"/>
-<text text-anchor="start" x="1055.38" y="-1902.7" font-family="arial" font-size="14.00">ECU1</text>
-<polygon fill="none" stroke="black" points="874,-1871 874,-1895.5 1116.5,-1895.5 1116.5,-1871 874,-1871"/>
-<text text-anchor="start" x="937.5" y="-1878.2" font-family="arial" font-size="14.00">Molex 643203311</text>
-<polygon fill="none" stroke="black" points="1116.5,-1871 1116.5,-1895.5 1275,-1895.5 1275,-1871 1116.5,-1871"/>
-<text text-anchor="start" x="1180" y="-1878.2" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="874,-1847 874,-1871 1036.5,-1871 1036.5,-1847 874,-1847"/>
-<text text-anchor="start" x="946.25" y="-1853.7" font-family="arial" font-size="14.00">B4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1847 1036.5,-1871 1275,-1871 1275,-1847 1036.5,-1847"/>
-<text text-anchor="start" x="1110.75" y="-1853.7" font-family="arial" font-size="14.00">Extra Output 1</text>
-<polygon fill="none" stroke="black" points="874,-1823 874,-1847 1036.5,-1847 1036.5,-1823 874,-1823"/>
-<text text-anchor="start" x="945.88" y="-1829.7" font-family="arial" font-size="14.00">C4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1823 1036.5,-1847 1275,-1847 1275,-1823 1036.5,-1823"/>
-<text text-anchor="start" x="1110.75" y="-1829.7" font-family="arial" font-size="14.00">Extra Output 2</text>
-<polygon fill="none" stroke="black" points="874,-1799 874,-1823 1036.5,-1823 1036.5,-1799 874,-1799"/>
-<text text-anchor="start" x="947" y="-1805.7" font-family="arial" font-size="14.00">L4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1799 1036.5,-1823 1275,-1823 1275,-1799 1036.5,-1799"/>
-<text text-anchor="start" x="1108.12" y="-1805.7" font-family="arial" font-size="14.00">Engine Ground</text>
-<polygon fill="none" stroke="black" points="874,-1775 874,-1799 1036.5,-1799 1036.5,-1775 874,-1775"/>
-<text text-anchor="start" x="945.5" y="-1781.7" font-family="arial" font-size="14.00">M4</text>
-<polygon fill="none" stroke="black" points="1036.5,-1775 1036.5,-1799 1275,-1799 1275,-1775 1036.5,-1775"/>
-<text text-anchor="start" x="1125.75" y="-1781.7" font-family="arial" font-size="14.00">ECU 12V</text>
-<polyline fill="none" stroke="black" points="1275,-1500 1275,-1775 874,-1775 874,-1500"/>
-<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="878" y="-1771"/>
-<polyline fill="none" stroke="black" points="874,-1500 874,-1475.5 1275,-1475.5 1275,-1500"/>
-<text text-anchor="start" x="1002.5" y="-1482.7" font-family="arial" font-size="14.00">Connector 643201311</text>
+<polygon fill="#ffffff" stroke="black" points="1275,-1919.5 874,-1919.5 874,-1475 1275,-1475 1275,-1919.5"/>
+<polygon fill="none" stroke="black" points="874,-1895 874,-1919.5 1275,-1919.5 1275,-1895 874,-1895"/>
+<text text-anchor="start" x="1055.38" y="-1902.2" font-family="arial" font-size="14.00">ECU1</text>
+<polygon fill="none" stroke="black" points="874,-1870.5 874,-1895 1116.5,-1895 1116.5,-1870.5 874,-1870.5"/>
+<text text-anchor="start" x="937.5" y="-1877.7" font-family="arial" font-size="14.00">Molex 643203311</text>
+<polygon fill="none" stroke="black" points="1116.5,-1870.5 1116.5,-1895 1275,-1895 1275,-1870.5 1116.5,-1870.5"/>
+<text text-anchor="start" x="1180" y="-1877.7" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="874,-1846.5 874,-1870.5 1036.5,-1870.5 1036.5,-1846.5 874,-1846.5"/>
+<text text-anchor="start" x="946.25" y="-1853.2" font-family="arial" font-size="14.00">B4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1846.5 1036.5,-1870.5 1275,-1870.5 1275,-1846.5 1036.5,-1846.5"/>
+<text text-anchor="start" x="1110.75" y="-1853.2" font-family="arial" font-size="14.00">Extra Output 1</text>
+<polygon fill="none" stroke="black" points="874,-1822.5 874,-1846.5 1036.5,-1846.5 1036.5,-1822.5 874,-1822.5"/>
+<text text-anchor="start" x="945.88" y="-1829.2" font-family="arial" font-size="14.00">C4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1822.5 1036.5,-1846.5 1275,-1846.5 1275,-1822.5 1036.5,-1822.5"/>
+<text text-anchor="start" x="1110.75" y="-1829.2" font-family="arial" font-size="14.00">Extra Output 2</text>
+<polygon fill="none" stroke="black" points="874,-1798.5 874,-1822.5 1036.5,-1822.5 1036.5,-1798.5 874,-1798.5"/>
+<text text-anchor="start" x="947" y="-1805.2" font-family="arial" font-size="14.00">L4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1798.5 1036.5,-1822.5 1275,-1822.5 1275,-1798.5 1036.5,-1798.5"/>
+<text text-anchor="start" x="1108.12" y="-1805.2" font-family="arial" font-size="14.00">Engine Ground</text>
+<polygon fill="none" stroke="black" points="874,-1774.5 874,-1798.5 1036.5,-1798.5 1036.5,-1774.5 874,-1774.5"/>
+<text text-anchor="start" x="945.5" y="-1781.2" font-family="arial" font-size="14.00">M4</text>
+<polygon fill="none" stroke="black" points="1036.5,-1774.5 1036.5,-1798.5 1275,-1798.5 1275,-1774.5 1036.5,-1774.5"/>
+<text text-anchor="start" x="1125.75" y="-1781.2" font-family="arial" font-size="14.00">ECU 12V</text>
+<polyline fill="none" stroke="black" points="1275,-1499.5 1275,-1774.5 874,-1774.5 874,-1499.5"/>
+<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="878" y="-1770.5"/>
+<polyline fill="none" stroke="black" points="874,-1499.5 874,-1475 1275,-1475 1275,-1499.5"/>
+<text text-anchor="start" x="1002.5" y="-1482.2" font-family="arial" font-size="14.00">Connector 643201311</text>
</g>
<!-- Coil Pack 1 -->
<g id="node4" class="node">
<title>Coil Pack 1</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-3396.25 961,-3396.25 961,-3051.25 1188,-3051.25 1188,-3396.25"/>
-<polygon fill="none" stroke="black" points="961,-3371.75 961,-3396.25 1188,-3396.25 1188,-3371.75 961,-3371.75"/>
-<text text-anchor="start" x="1038.5" y="-3378.95" font-family="arial" font-size="14.00">Coil Pack 1</text>
-<polygon fill="none" stroke="black" points="961,-3347.25 961,-3371.75 1113.88,-3371.75 1113.88,-3347.25 961,-3347.25"/>
-<text text-anchor="start" x="982.31" y="-3354.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-3347.25 1113.88,-3371.75 1188,-3371.75 1188,-3347.25 1113.88,-3347.25"/>
-<text text-anchor="start" x="1135.19" y="-3354.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-3323.25 961,-3347.25 1008,-3347.25 1008,-3323.25 961,-3323.25"/>
-<text text-anchor="start" x="979.62" y="-3329.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-3323.25 1008,-3347.25 1141,-3347.25 1141,-3323.25 1008,-3323.25"/>
-<text text-anchor="start" x="1047.12" y="-3329.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-3323.25 1141,-3347.25 1188,-3347.25 1188,-3323.25 1141,-3323.25"/>
-<text text-anchor="start" x="1159.62" y="-3329.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-3299.25 961,-3323.25 1008,-3323.25 1008,-3299.25 961,-3299.25"/>
-<text text-anchor="start" x="979.62" y="-3305.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-3299.25 1008,-3323.25 1141,-3323.25 1141,-3299.25 1008,-3299.25"/>
-<text text-anchor="start" x="1026.12" y="-3305.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-3299.25 1141,-3323.25 1188,-3323.25 1188,-3299.25 1141,-3299.25"/>
-<text text-anchor="start" x="1159.62" y="-3305.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-3275.25 961,-3299.25 1008,-3299.25 1008,-3275.25 961,-3275.25"/>
-<text text-anchor="start" x="979.25" y="-3281.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-3275.25 1008,-3299.25 1141,-3299.25 1141,-3275.25 1008,-3275.25"/>
-<text text-anchor="start" x="1032.12" y="-3281.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-3275.25 1141,-3299.25 1188,-3299.25 1188,-3275.25 1141,-3275.25"/>
-<text text-anchor="start" x="1159.25" y="-3281.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-3251.25 961,-3275.25 1008,-3275.25 1008,-3251.25 961,-3251.25"/>
-<text text-anchor="start" x="979.25" y="-3257.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-3251.25 1008,-3275.25 1141,-3275.25 1141,-3251.25 1008,-3251.25"/>
-<text text-anchor="start" x="1026.88" y="-3257.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-3251.25 1141,-3275.25 1188,-3275.25 1188,-3251.25 1141,-3251.25"/>
-<text text-anchor="start" x="1159.25" y="-3257.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-3227.25 961,-3251.25 1008,-3251.25 1008,-3227.25 961,-3227.25"/>
-<text text-anchor="start" x="979.62" y="-3233.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-3227.25 1008,-3251.25 1141,-3251.25 1141,-3227.25 1008,-3227.25"/>
-<text text-anchor="start" x="1030.62" y="-3233.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-3227.25 1141,-3251.25 1188,-3251.25 1188,-3227.25 1141,-3227.25"/>
-<text text-anchor="start" x="1159.62" y="-3233.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-3051.25 961,-3227.25 1188,-3227.25 1188,-3051.25 961,-3051.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-3223.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-3395.75 961,-3395.75 961,-3050.75 1188,-3050.75 1188,-3395.75"/>
+<polygon fill="none" stroke="black" points="961,-3371.25 961,-3395.75 1188,-3395.75 1188,-3371.25 961,-3371.25"/>
+<text text-anchor="start" x="1038.5" y="-3378.45" font-family="arial" font-size="14.00">Coil Pack 1</text>
+<polygon fill="none" stroke="black" points="961,-3346.75 961,-3371.25 1113.88,-3371.25 1113.88,-3346.75 961,-3346.75"/>
+<text text-anchor="start" x="982.31" y="-3353.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-3346.75 1113.88,-3371.25 1188,-3371.25 1188,-3346.75 1113.88,-3346.75"/>
+<text text-anchor="start" x="1135.19" y="-3353.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-3322.75 961,-3346.75 1008,-3346.75 1008,-3322.75 961,-3322.75"/>
+<text text-anchor="start" x="979.62" y="-3329.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-3322.75 1008,-3346.75 1141,-3346.75 1141,-3322.75 1008,-3322.75"/>
+<text text-anchor="start" x="1047.12" y="-3329.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-3322.75 1141,-3346.75 1188,-3346.75 1188,-3322.75 1141,-3322.75"/>
+<text text-anchor="start" x="1159.62" y="-3329.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-3298.75 961,-3322.75 1008,-3322.75 1008,-3298.75 961,-3298.75"/>
+<text text-anchor="start" x="979.62" y="-3305.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-3298.75 1008,-3322.75 1141,-3322.75 1141,-3298.75 1008,-3298.75"/>
+<text text-anchor="start" x="1026.12" y="-3305.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-3298.75 1141,-3322.75 1188,-3322.75 1188,-3298.75 1141,-3298.75"/>
+<text text-anchor="start" x="1159.62" y="-3305.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-3274.75 961,-3298.75 1008,-3298.75 1008,-3274.75 961,-3274.75"/>
+<text text-anchor="start" x="979.25" y="-3281.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-3274.75 1008,-3298.75 1141,-3298.75 1141,-3274.75 1008,-3274.75"/>
+<text text-anchor="start" x="1032.12" y="-3281.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-3274.75 1141,-3298.75 1188,-3298.75 1188,-3274.75 1141,-3274.75"/>
+<text text-anchor="start" x="1159.25" y="-3281.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-3250.75 961,-3274.75 1008,-3274.75 1008,-3250.75 961,-3250.75"/>
+<text text-anchor="start" x="979.25" y="-3257.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-3250.75 1008,-3274.75 1141,-3274.75 1141,-3250.75 1008,-3250.75"/>
+<text text-anchor="start" x="1026.88" y="-3257.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-3250.75 1141,-3274.75 1188,-3274.75 1188,-3250.75 1141,-3250.75"/>
+<text text-anchor="start" x="1159.25" y="-3257.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-3226.75 961,-3250.75 1008,-3250.75 1008,-3226.75 961,-3226.75"/>
+<text text-anchor="start" x="979.62" y="-3233.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-3226.75 1008,-3250.75 1141,-3250.75 1141,-3226.75 1008,-3226.75"/>
+<text text-anchor="start" x="1030.62" y="-3233.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-3226.75 1141,-3250.75 1188,-3250.75 1188,-3226.75 1141,-3226.75"/>
+<text text-anchor="start" x="1159.62" y="-3233.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-3050.75 961,-3226.75 1188,-3226.75 1188,-3050.75 961,-3050.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-3222.75"/>
</g>
<!-- W10 -->
<g id="node32" class="node">
<title>W10</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-3180.25 1484.5,-3180.25 1484.5,-3039.25 1724.5,-3039.25 1724.5,-3180.25"/>
-<polygon fill="none" stroke="black" points="1484.5,-3155.75 1484.5,-3180.25 1724.5,-3180.25 1724.5,-3155.75 1484.5,-3155.75"/>
-<text text-anchor="start" x="1589.12" y="-3162.95" font-family="arial" font-size="14.00">W10</text>
-<polygon fill="none" stroke="black" points="1484.5,-3131.25 1484.5,-3155.75 1531,-3155.75 1531,-3131.25 1484.5,-3131.25"/>
-<text text-anchor="start" x="1500.25" y="-3138.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1531,-3131.25 1531,-3155.75 1618,-3155.75 1618,-3131.25 1531,-3131.25"/>
-<text text-anchor="start" x="1546.75" y="-3138.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1618,-3131.25 1618,-3155.75 1724.5,-3155.75 1724.5,-3131.25 1618,-3131.25"/>
-<text text-anchor="start" x="1633.75" y="-3138.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="1571.62" y="-3115.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1486.12" y="-3095.95" font-family="arial" font-size="14.00">Coil Pack 1:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-3095.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-3089.25 1484.5,-3091.25 1724.5,-3091.25 1724.5,-3089.25 1484.5,-3089.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-3087.25 1484.5,-3089.25 1724.5,-3089.25 1724.5,-3087.25 1484.5,-3087.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-3085.25 1484.5,-3087.25 1724.5,-3087.25 1724.5,-3085.25 1484.5,-3085.25"/>
-<text text-anchor="start" x="1486.12" y="-3069.95" font-family="arial" font-size="14.00">Coil Pack 4:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-3069.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-3063.25 1484.5,-3065.25 1724.5,-3065.25 1724.5,-3063.25 1484.5,-3063.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-3061.25 1484.5,-3063.25 1724.5,-3063.25 1724.5,-3061.25 1484.5,-3061.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-3059.25 1484.5,-3061.25 1724.5,-3061.25 1724.5,-3059.25 1484.5,-3059.25"/>
-<text text-anchor="start" x="1571.62" y="-3043.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-3206.75 1484.5,-3206.75 1484.5,-3065.75 1724.5,-3065.75 1724.5,-3206.75"/>
+<polygon fill="none" stroke="black" points="1484.5,-3182.25 1484.5,-3206.75 1724.5,-3206.75 1724.5,-3182.25 1484.5,-3182.25"/>
+<text text-anchor="start" x="1589.12" y="-3189.45" font-family="arial" font-size="14.00">W10</text>
+<polygon fill="none" stroke="black" points="1484.5,-3157.75 1484.5,-3182.25 1531,-3182.25 1531,-3157.75 1484.5,-3157.75"/>
+<text text-anchor="start" x="1500.25" y="-3164.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1531,-3157.75 1531,-3182.25 1618,-3182.25 1618,-3157.75 1531,-3157.75"/>
+<text text-anchor="start" x="1546.75" y="-3164.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1618,-3157.75 1618,-3182.25 1724.5,-3182.25 1724.5,-3157.75 1618,-3157.75"/>
+<text text-anchor="start" x="1633.75" y="-3164.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1571.62" y="-3142.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1486.12" y="-3122.45" font-family="arial" font-size="14.00">Coil Pack 1:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-3122.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-3115.75 1484.5,-3117.75 1724.5,-3117.75 1724.5,-3115.75 1484.5,-3115.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-3113.75 1484.5,-3115.75 1724.5,-3115.75 1724.5,-3113.75 1484.5,-3113.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-3111.75 1484.5,-3113.75 1724.5,-3113.75 1724.5,-3111.75 1484.5,-3111.75"/>
+<text text-anchor="start" x="1486.12" y="-3096.45" font-family="arial" font-size="14.00">Coil Pack 4:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-3096.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-3089.75 1484.5,-3091.75 1724.5,-3091.75 1724.5,-3089.75 1484.5,-3089.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-3087.75 1484.5,-3089.75 1724.5,-3089.75 1724.5,-3087.75 1484.5,-3087.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-3085.75 1484.5,-3087.75 1724.5,-3087.75 1724.5,-3085.75 1484.5,-3085.75"/>
+<text text-anchor="start" x="1571.62" y="-3070.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 1&#45;&#45;W10 -->
-<g id="edge28" class="edge">
+<g id="edge31" class="edge">
<title>Coil Pack 1:e&#45;&#45;W10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3285.25C1344.98,-3287.46 1323.54,-3088.46 1483.5,-3086.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-3287.25C1346.97,-3287.25 1325.53,-3088.25 1483.5,-3088.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3289.25C1348.96,-3287.04 1327.52,-3088.04 1483.5,-3090.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3284.75C1338.58,-3286.85 1329.93,-3114.85 1483.5,-3112.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-3286.75C1340.58,-3286.75 1331.92,-3114.75 1483.5,-3114.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3288.75C1342.57,-3286.65 1333.92,-3114.65 1483.5,-3116.75"/>
</g>
<!-- W20 -->
<g id="node34" class="node">
<title>W20</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1790,-2920.25 1419,-2920.25 1419,-2727.25 1790,-2727.25 1790,-2920.25"/>
-<polygon fill="none" stroke="black" points="1419,-2895.75 1419,-2920.25 1790,-2920.25 1790,-2895.75 1419,-2895.75"/>
-<text text-anchor="start" x="1589.12" y="-2902.95" font-family="arial" font-size="14.00">W20</text>
-<polygon fill="none" stroke="black" points="1419,-2871.25 1419,-2895.75 1509.17,-2895.75 1509.17,-2871.25 1419,-2871.25"/>
-<text text-anchor="start" x="1456.58" y="-2878.45" font-family="arial" font-size="14.00">4x</text>
-<polygon fill="none" stroke="black" points="1509.17,-2871.25 1509.17,-2895.75 1639.83,-2895.75 1639.83,-2871.25 1509.17,-2871.25"/>
-<text text-anchor="start" x="1546.75" y="-2878.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1639.83,-2871.25 1639.83,-2895.75 1790,-2895.75 1790,-2871.25 1639.83,-2871.25"/>
-<text text-anchor="start" x="1677.42" y="-2878.45" font-family="arial" font-size="14.00">60.0 Inches</text>
-<text text-anchor="start" x="1511.62" y="-2855.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1420.88" y="-2835.95" font-family="arial" font-size="14.00">Coil Pack 1:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2835.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2835.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2829.25 1419,-2831.25 1790,-2831.25 1790,-2829.25 1419,-2829.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2827.25 1419,-2829.25 1790,-2829.25 1790,-2827.25 1419,-2827.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2825.25 1419,-2827.25 1790,-2827.25 1790,-2825.25 1419,-2825.25"/>
-<text text-anchor="start" x="1420.88" y="-2809.95" font-family="arial" font-size="14.00">Coil Pack 2:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2809.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2809.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2803.25 1419,-2805.25 1790,-2805.25 1790,-2803.25 1419,-2803.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2801.25 1419,-2803.25 1790,-2803.25 1790,-2801.25 1419,-2801.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2799.25 1419,-2801.25 1790,-2801.25 1790,-2799.25 1419,-2799.25"/>
-<text text-anchor="start" x="1420.88" y="-2783.95" font-family="arial" font-size="14.00">Coil Pack 3:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2783.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2783.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2777.25 1419,-2779.25 1790,-2779.25 1790,-2777.25 1419,-2777.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2775.25 1419,-2777.25 1790,-2777.25 1790,-2775.25 1419,-2775.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2773.25 1419,-2775.25 1790,-2775.25 1790,-2773.25 1419,-2773.25"/>
-<text text-anchor="start" x="1420.88" y="-2757.95" font-family="arial" font-size="14.00">Coil Pack 4:D:Battery Ground</text>
-<text text-anchor="start" x="1609.88" y="-2757.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1666.75" y="-2757.95" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
-<polygon fill="#000000" stroke="none" points="1419,-2751.25 1419,-2753.25 1790,-2753.25 1790,-2751.25 1419,-2751.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2749.25 1419,-2751.25 1790,-2751.25 1790,-2749.25 1419,-2749.25"/>
-<polygon fill="#000000" stroke="none" points="1419,-2747.25 1419,-2749.25 1790,-2749.25 1790,-2747.25 1419,-2747.25"/>
-<text text-anchor="start" x="1511.62" y="-2731.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1790,-2801.75 1419,-2801.75 1419,-2608.75 1790,-2608.75 1790,-2801.75"/>
+<polygon fill="none" stroke="black" points="1419,-2777.25 1419,-2801.75 1790,-2801.75 1790,-2777.25 1419,-2777.25"/>
+<text text-anchor="start" x="1589.12" y="-2784.45" font-family="arial" font-size="14.00">W20</text>
+<polygon fill="none" stroke="black" points="1419,-2752.75 1419,-2777.25 1509.17,-2777.25 1509.17,-2752.75 1419,-2752.75"/>
+<text text-anchor="start" x="1456.58" y="-2759.95" font-family="arial" font-size="14.00">4x</text>
+<polygon fill="none" stroke="black" points="1509.17,-2752.75 1509.17,-2777.25 1639.83,-2777.25 1639.83,-2752.75 1509.17,-2752.75"/>
+<text text-anchor="start" x="1546.75" y="-2759.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1639.83,-2752.75 1639.83,-2777.25 1790,-2777.25 1790,-2752.75 1639.83,-2752.75"/>
+<text text-anchor="start" x="1677.42" y="-2759.95" font-family="arial" font-size="14.00">60.0 Inches</text>
+<text text-anchor="start" x="1511.62" y="-2737.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1420.88" y="-2717.45" font-family="arial" font-size="14.00">Coil Pack 1:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2717.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2717.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2710.75 1419,-2712.75 1790,-2712.75 1790,-2710.75 1419,-2710.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2708.75 1419,-2710.75 1790,-2710.75 1790,-2708.75 1419,-2708.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2706.75 1419,-2708.75 1790,-2708.75 1790,-2706.75 1419,-2706.75"/>
+<text text-anchor="start" x="1420.88" y="-2691.45" font-family="arial" font-size="14.00">Coil Pack 2:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2691.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2691.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2684.75 1419,-2686.75 1790,-2686.75 1790,-2684.75 1419,-2684.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2682.75 1419,-2684.75 1790,-2684.75 1790,-2682.75 1419,-2682.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2680.75 1419,-2682.75 1790,-2682.75 1790,-2680.75 1419,-2680.75"/>
+<text text-anchor="start" x="1420.88" y="-2665.45" font-family="arial" font-size="14.00">Coil Pack 3:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2665.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2665.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2658.75 1419,-2660.75 1790,-2660.75 1790,-2658.75 1419,-2658.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2656.75 1419,-2658.75 1790,-2658.75 1790,-2656.75 1419,-2656.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2654.75 1419,-2656.75 1790,-2656.75 1790,-2654.75 1419,-2654.75"/>
+<text text-anchor="start" x="1420.88" y="-2639.45" font-family="arial" font-size="14.00">Coil Pack 4:D:Battery Ground</text>
+<text text-anchor="start" x="1609.88" y="-2639.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1666.75" y="-2639.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
+<polygon fill="#000000" stroke="none" points="1419,-2632.75 1419,-2634.75 1790,-2634.75 1790,-2632.75 1419,-2632.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2630.75 1419,-2632.75 1790,-2632.75 1790,-2630.75 1419,-2630.75"/>
+<polygon fill="#000000" stroke="none" points="1419,-2628.75 1419,-2630.75 1790,-2630.75 1790,-2628.75 1419,-2628.75"/>
+<text text-anchor="start" x="1511.62" y="-2613.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 1&#45;&#45;W20 -->
-<g id="edge36" class="edge">
+<g id="edge39" class="edge">
<title>Coil Pack 1:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3261.25C1405.89,-3264.11 1198.5,-2829.11 1419,-2826.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3263.25C1407.69,-3263.25 1200.31,-2828.25 1419,-2828.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3265.25C1409.5,-3262.39 1202.11,-2827.39 1419,-2830.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3260.75C1453.43,-3263.71 1151.06,-2710.71 1419,-2707.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3262.75C1455.19,-3262.75 1152.81,-2709.75 1419,-2709.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3264.75C1456.94,-3261.79 1154.57,-2708.79 1419,-2711.75"/>
</g>
<!-- Coil Pack 2 -->
<g id="node5" class="node">
<title>Coil Pack 2</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-2658.25 961,-2658.25 961,-2313.25 1188,-2313.25 1188,-2658.25"/>
-<polygon fill="none" stroke="black" points="961,-2633.75 961,-2658.25 1188,-2658.25 1188,-2633.75 961,-2633.75"/>
-<text text-anchor="start" x="1038.5" y="-2640.95" font-family="arial" font-size="14.00">Coil Pack 2</text>
-<polygon fill="none" stroke="black" points="961,-2609.25 961,-2633.75 1113.88,-2633.75 1113.88,-2609.25 961,-2609.25"/>
-<text text-anchor="start" x="982.31" y="-2616.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-2609.25 1113.88,-2633.75 1188,-2633.75 1188,-2609.25 1113.88,-2609.25"/>
-<text text-anchor="start" x="1135.19" y="-2616.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-2585.25 961,-2609.25 1008,-2609.25 1008,-2585.25 961,-2585.25"/>
-<text text-anchor="start" x="979.62" y="-2591.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-2585.25 1008,-2609.25 1141,-2609.25 1141,-2585.25 1008,-2585.25"/>
-<text text-anchor="start" x="1047.12" y="-2591.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-2585.25 1141,-2609.25 1188,-2609.25 1188,-2585.25 1141,-2585.25"/>
-<text text-anchor="start" x="1159.62" y="-2591.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-2561.25 961,-2585.25 1008,-2585.25 1008,-2561.25 961,-2561.25"/>
-<text text-anchor="start" x="979.62" y="-2567.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-2561.25 1008,-2585.25 1141,-2585.25 1141,-2561.25 1008,-2561.25"/>
-<text text-anchor="start" x="1026.12" y="-2567.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2561.25 1141,-2585.25 1188,-2585.25 1188,-2561.25 1141,-2561.25"/>
-<text text-anchor="start" x="1159.62" y="-2567.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-2537.25 961,-2561.25 1008,-2561.25 1008,-2537.25 961,-2537.25"/>
-<text text-anchor="start" x="979.25" y="-2543.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-2537.25 1008,-2561.25 1141,-2561.25 1141,-2537.25 1008,-2537.25"/>
-<text text-anchor="start" x="1032.12" y="-2543.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2537.25 1141,-2561.25 1188,-2561.25 1188,-2537.25 1141,-2537.25"/>
-<text text-anchor="start" x="1159.25" y="-2543.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-2513.25 961,-2537.25 1008,-2537.25 1008,-2513.25 961,-2513.25"/>
-<text text-anchor="start" x="979.25" y="-2519.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-2513.25 1008,-2537.25 1141,-2537.25 1141,-2513.25 1008,-2513.25"/>
-<text text-anchor="start" x="1026.88" y="-2519.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2513.25 1141,-2537.25 1188,-2537.25 1188,-2513.25 1141,-2513.25"/>
-<text text-anchor="start" x="1159.25" y="-2519.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-2489.25 961,-2513.25 1008,-2513.25 1008,-2489.25 961,-2489.25"/>
-<text text-anchor="start" x="979.62" y="-2495.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-2489.25 1008,-2513.25 1141,-2513.25 1141,-2489.25 1008,-2489.25"/>
-<text text-anchor="start" x="1030.62" y="-2495.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-2489.25 1141,-2513.25 1188,-2513.25 1188,-2489.25 1141,-2489.25"/>
-<text text-anchor="start" x="1159.62" y="-2495.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-2313.25 961,-2489.25 1188,-2489.25 1188,-2313.25 961,-2313.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2485.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-2657.75 961,-2657.75 961,-2312.75 1188,-2312.75 1188,-2657.75"/>
+<polygon fill="none" stroke="black" points="961,-2633.25 961,-2657.75 1188,-2657.75 1188,-2633.25 961,-2633.25"/>
+<text text-anchor="start" x="1038.5" y="-2640.45" font-family="arial" font-size="14.00">Coil Pack 2</text>
+<polygon fill="none" stroke="black" points="961,-2608.75 961,-2633.25 1113.88,-2633.25 1113.88,-2608.75 961,-2608.75"/>
+<text text-anchor="start" x="982.31" y="-2615.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-2608.75 1113.88,-2633.25 1188,-2633.25 1188,-2608.75 1113.88,-2608.75"/>
+<text text-anchor="start" x="1135.19" y="-2615.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-2584.75 961,-2608.75 1008,-2608.75 1008,-2584.75 961,-2584.75"/>
+<text text-anchor="start" x="979.62" y="-2591.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-2584.75 1008,-2608.75 1141,-2608.75 1141,-2584.75 1008,-2584.75"/>
+<text text-anchor="start" x="1047.12" y="-2591.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-2584.75 1141,-2608.75 1188,-2608.75 1188,-2584.75 1141,-2584.75"/>
+<text text-anchor="start" x="1159.62" y="-2591.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-2560.75 961,-2584.75 1008,-2584.75 1008,-2560.75 961,-2560.75"/>
+<text text-anchor="start" x="979.62" y="-2567.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-2560.75 1008,-2584.75 1141,-2584.75 1141,-2560.75 1008,-2560.75"/>
+<text text-anchor="start" x="1026.12" y="-2567.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2560.75 1141,-2584.75 1188,-2584.75 1188,-2560.75 1141,-2560.75"/>
+<text text-anchor="start" x="1159.62" y="-2567.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-2536.75 961,-2560.75 1008,-2560.75 1008,-2536.75 961,-2536.75"/>
+<text text-anchor="start" x="979.25" y="-2543.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-2536.75 1008,-2560.75 1141,-2560.75 1141,-2536.75 1008,-2536.75"/>
+<text text-anchor="start" x="1032.12" y="-2543.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2536.75 1141,-2560.75 1188,-2560.75 1188,-2536.75 1141,-2536.75"/>
+<text text-anchor="start" x="1159.25" y="-2543.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-2512.75 961,-2536.75 1008,-2536.75 1008,-2512.75 961,-2512.75"/>
+<text text-anchor="start" x="979.25" y="-2519.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-2512.75 1008,-2536.75 1141,-2536.75 1141,-2512.75 1008,-2512.75"/>
+<text text-anchor="start" x="1026.88" y="-2519.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2512.75 1141,-2536.75 1188,-2536.75 1188,-2512.75 1141,-2512.75"/>
+<text text-anchor="start" x="1159.25" y="-2519.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-2488.75 961,-2512.75 1008,-2512.75 1008,-2488.75 961,-2488.75"/>
+<text text-anchor="start" x="979.62" y="-2495.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-2488.75 1008,-2512.75 1141,-2512.75 1141,-2488.75 1008,-2488.75"/>
+<text text-anchor="start" x="1030.62" y="-2495.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-2488.75 1141,-2512.75 1188,-2512.75 1188,-2488.75 1141,-2488.75"/>
+<text text-anchor="start" x="1159.62" y="-2495.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-2312.75 961,-2488.75 1188,-2488.75 1188,-2312.75 961,-2312.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2484.75"/>
</g>
<!-- W19 -->
<g id="node33" class="node">
<title>W19</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-2512.25 1484.5,-2512.25 1484.5,-2371.25 1724.5,-2371.25 1724.5,-2512.25"/>
-<polygon fill="none" stroke="black" points="1484.5,-2487.75 1484.5,-2512.25 1724.5,-2512.25 1724.5,-2487.75 1484.5,-2487.75"/>
-<text text-anchor="start" x="1589.12" y="-2494.95" font-family="arial" font-size="14.00">W19</text>
-<polygon fill="none" stroke="black" points="1484.5,-2463.25 1484.5,-2487.75 1533.75,-2487.75 1533.75,-2463.25 1484.5,-2463.25"/>
-<text text-anchor="start" x="1501.62" y="-2470.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1533.75,-2463.25 1533.75,-2487.75 1623.5,-2487.75 1623.5,-2463.25 1533.75,-2463.25"/>
-<text text-anchor="start" x="1550.88" y="-2470.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1623.5,-2463.25 1623.5,-2487.75 1724.5,-2487.75 1724.5,-2463.25 1623.5,-2463.25"/>
-<text text-anchor="start" x="1640.62" y="-2470.45" font-family="arial" font-size="14.00">6.0 Inches</text>
-<text text-anchor="start" x="1571.62" y="-2447.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1486.12" y="-2427.95" font-family="arial" font-size="14.00">Coil Pack 3:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-2427.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-2421.25 1484.5,-2423.25 1724.5,-2423.25 1724.5,-2421.25 1484.5,-2421.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-2419.25 1484.5,-2421.25 1724.5,-2421.25 1724.5,-2419.25 1484.5,-2419.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-2417.25 1484.5,-2419.25 1724.5,-2419.25 1724.5,-2417.25 1484.5,-2417.25"/>
-<text text-anchor="start" x="1486.12" y="-2401.95" font-family="arial" font-size="14.00">Coil Pack 2:C:Head Ground</text>
-<text text-anchor="start" x="1664.5" y="-2401.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1484.5,-2395.25 1484.5,-2397.25 1724.5,-2397.25 1724.5,-2395.25 1484.5,-2395.25"/>
-<polygon fill="#999999" stroke="none" points="1484.5,-2393.25 1484.5,-2395.25 1724.5,-2395.25 1724.5,-2393.25 1484.5,-2393.25"/>
-<polygon fill="#000000" stroke="none" points="1484.5,-2391.25 1484.5,-2393.25 1724.5,-2393.25 1724.5,-2391.25 1484.5,-2391.25"/>
-<text text-anchor="start" x="1571.62" y="-2375.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-2507.75 1484.5,-2507.75 1484.5,-2366.75 1724.5,-2366.75 1724.5,-2507.75"/>
+<polygon fill="none" stroke="black" points="1484.5,-2483.25 1484.5,-2507.75 1724.5,-2507.75 1724.5,-2483.25 1484.5,-2483.25"/>
+<text text-anchor="start" x="1589.12" y="-2490.45" font-family="arial" font-size="14.00">W19</text>
+<polygon fill="none" stroke="black" points="1484.5,-2458.75 1484.5,-2483.25 1533.75,-2483.25 1533.75,-2458.75 1484.5,-2458.75"/>
+<text text-anchor="start" x="1501.62" y="-2465.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1533.75,-2458.75 1533.75,-2483.25 1623.5,-2483.25 1623.5,-2458.75 1533.75,-2458.75"/>
+<text text-anchor="start" x="1550.88" y="-2465.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1623.5,-2458.75 1623.5,-2483.25 1724.5,-2483.25 1724.5,-2458.75 1623.5,-2458.75"/>
+<text text-anchor="start" x="1640.62" y="-2465.95" font-family="arial" font-size="14.00">6.0 Inches</text>
+<text text-anchor="start" x="1571.62" y="-2443.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1486.12" y="-2423.45" font-family="arial" font-size="14.00">Coil Pack 3:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-2423.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-2416.75 1484.5,-2418.75 1724.5,-2418.75 1724.5,-2416.75 1484.5,-2416.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-2414.75 1484.5,-2416.75 1724.5,-2416.75 1724.5,-2414.75 1484.5,-2414.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-2412.75 1484.5,-2414.75 1724.5,-2414.75 1724.5,-2412.75 1484.5,-2412.75"/>
+<text text-anchor="start" x="1486.12" y="-2397.45" font-family="arial" font-size="14.00">Coil Pack 2:C:Head Ground</text>
+<text text-anchor="start" x="1664.5" y="-2397.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1484.5,-2390.75 1484.5,-2392.75 1724.5,-2392.75 1724.5,-2390.75 1484.5,-2390.75"/>
+<polygon fill="#999999" stroke="none" points="1484.5,-2388.75 1484.5,-2390.75 1724.5,-2390.75 1724.5,-2388.75 1484.5,-2388.75"/>
+<polygon fill="#000000" stroke="none" points="1484.5,-2386.75 1484.5,-2388.75 1724.5,-2388.75 1724.5,-2386.75 1484.5,-2386.75"/>
+<text text-anchor="start" x="1571.62" y="-2371.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 2&#45;&#45;W19 -->
-<g id="edge34" class="edge">
+<g id="edge37" class="edge">
<title>Coil Pack 2:e&#45;&#45;W19:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2547.25C1334.91,-2549.27 1333.59,-2394.27 1483.5,-2392.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2549.25C1336.91,-2549.25 1335.59,-2394.25 1483.5,-2394.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2551.25C1338.91,-2549.23 1337.59,-2394.23 1483.5,-2396.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2546.75C1335.75,-2548.79 1332.75,-2389.79 1483.5,-2387.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2548.75C1337.75,-2548.75 1334.75,-2389.75 1483.5,-2389.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2550.75C1339.75,-2548.71 1336.75,-2389.71 1483.5,-2391.75"/>
</g>
<!-- Coil Pack 2&#45;&#45;W20 -->
-<g id="edge38" class="edge">
+<g id="edge41" class="edge">
<title>Coil Pack 2:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2523.25C1350.92,-2525.87 1260.88,-2802.87 1419,-2800.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2525.25C1349.02,-2525.25 1258.98,-2802.25 1419,-2802.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2527.25C1347.12,-2524.63 1257.08,-2801.63 1419,-2804.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2522.75C1315.26,-2524.98 1296.72,-2683.98 1419,-2681.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2524.75C1313.27,-2524.75 1294.73,-2683.75 1419,-2683.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2526.75C1311.28,-2524.52 1292.74,-2683.52 1419,-2685.75"/>
</g>
<!-- Coil Pack 3 -->
<g id="node6" class="node">
<title>Coil Pack 3</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-2289.25 961,-2289.25 961,-1944.25 1188,-1944.25 1188,-2289.25"/>
-<polygon fill="none" stroke="black" points="961,-2264.75 961,-2289.25 1188,-2289.25 1188,-2264.75 961,-2264.75"/>
-<text text-anchor="start" x="1038.5" y="-2271.95" font-family="arial" font-size="14.00">Coil Pack 3</text>
-<polygon fill="none" stroke="black" points="961,-2240.25 961,-2264.75 1113.88,-2264.75 1113.88,-2240.25 961,-2240.25"/>
-<text text-anchor="start" x="982.31" y="-2247.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-2240.25 1113.88,-2264.75 1188,-2264.75 1188,-2240.25 1113.88,-2240.25"/>
-<text text-anchor="start" x="1135.19" y="-2247.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-2216.25 961,-2240.25 1008,-2240.25 1008,-2216.25 961,-2216.25"/>
-<text text-anchor="start" x="979.62" y="-2222.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-2216.25 1008,-2240.25 1141,-2240.25 1141,-2216.25 1008,-2216.25"/>
-<text text-anchor="start" x="1047.12" y="-2222.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-2216.25 1141,-2240.25 1188,-2240.25 1188,-2216.25 1141,-2216.25"/>
-<text text-anchor="start" x="1159.62" y="-2222.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-2192.25 961,-2216.25 1008,-2216.25 1008,-2192.25 961,-2192.25"/>
-<text text-anchor="start" x="979.62" y="-2198.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-2192.25 1008,-2216.25 1141,-2216.25 1141,-2192.25 1008,-2192.25"/>
-<text text-anchor="start" x="1026.12" y="-2198.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2192.25 1141,-2216.25 1188,-2216.25 1188,-2192.25 1141,-2192.25"/>
-<text text-anchor="start" x="1159.62" y="-2198.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-2168.25 961,-2192.25 1008,-2192.25 1008,-2168.25 961,-2168.25"/>
-<text text-anchor="start" x="979.25" y="-2174.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-2168.25 1008,-2192.25 1141,-2192.25 1141,-2168.25 1008,-2168.25"/>
-<text text-anchor="start" x="1032.12" y="-2174.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2168.25 1141,-2192.25 1188,-2192.25 1188,-2168.25 1141,-2168.25"/>
-<text text-anchor="start" x="1159.25" y="-2174.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-2144.25 961,-2168.25 1008,-2168.25 1008,-2144.25 961,-2144.25"/>
-<text text-anchor="start" x="979.25" y="-2150.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-2144.25 1008,-2168.25 1141,-2168.25 1141,-2144.25 1008,-2144.25"/>
-<text text-anchor="start" x="1026.88" y="-2150.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2144.25 1141,-2168.25 1188,-2168.25 1188,-2144.25 1141,-2144.25"/>
-<text text-anchor="start" x="1159.25" y="-2150.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-2120.25 961,-2144.25 1008,-2144.25 1008,-2120.25 961,-2120.25"/>
-<text text-anchor="start" x="979.62" y="-2126.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-2120.25 1008,-2144.25 1141,-2144.25 1141,-2120.25 1008,-2120.25"/>
-<text text-anchor="start" x="1030.62" y="-2126.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-2120.25 1141,-2144.25 1188,-2144.25 1188,-2120.25 1141,-2120.25"/>
-<text text-anchor="start" x="1159.62" y="-2126.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-1944.25 961,-2120.25 1188,-2120.25 1188,-1944.25 961,-1944.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2116.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-2288.75 961,-2288.75 961,-1943.75 1188,-1943.75 1188,-2288.75"/>
+<polygon fill="none" stroke="black" points="961,-2264.25 961,-2288.75 1188,-2288.75 1188,-2264.25 961,-2264.25"/>
+<text text-anchor="start" x="1038.5" y="-2271.45" font-family="arial" font-size="14.00">Coil Pack 3</text>
+<polygon fill="none" stroke="black" points="961,-2239.75 961,-2264.25 1113.88,-2264.25 1113.88,-2239.75 961,-2239.75"/>
+<text text-anchor="start" x="982.31" y="-2246.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-2239.75 1113.88,-2264.25 1188,-2264.25 1188,-2239.75 1113.88,-2239.75"/>
+<text text-anchor="start" x="1135.19" y="-2246.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-2215.75 961,-2239.75 1008,-2239.75 1008,-2215.75 961,-2215.75"/>
+<text text-anchor="start" x="979.62" y="-2222.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-2215.75 1008,-2239.75 1141,-2239.75 1141,-2215.75 1008,-2215.75"/>
+<text text-anchor="start" x="1047.12" y="-2222.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-2215.75 1141,-2239.75 1188,-2239.75 1188,-2215.75 1141,-2215.75"/>
+<text text-anchor="start" x="1159.62" y="-2222.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-2191.75 961,-2215.75 1008,-2215.75 1008,-2191.75 961,-2191.75"/>
+<text text-anchor="start" x="979.62" y="-2198.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-2191.75 1008,-2215.75 1141,-2215.75 1141,-2191.75 1008,-2191.75"/>
+<text text-anchor="start" x="1026.12" y="-2198.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2191.75 1141,-2215.75 1188,-2215.75 1188,-2191.75 1141,-2191.75"/>
+<text text-anchor="start" x="1159.62" y="-2198.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-2167.75 961,-2191.75 1008,-2191.75 1008,-2167.75 961,-2167.75"/>
+<text text-anchor="start" x="979.25" y="-2174.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-2167.75 1008,-2191.75 1141,-2191.75 1141,-2167.75 1008,-2167.75"/>
+<text text-anchor="start" x="1032.12" y="-2174.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2167.75 1141,-2191.75 1188,-2191.75 1188,-2167.75 1141,-2167.75"/>
+<text text-anchor="start" x="1159.25" y="-2174.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-2143.75 961,-2167.75 1008,-2167.75 1008,-2143.75 961,-2143.75"/>
+<text text-anchor="start" x="979.25" y="-2150.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-2143.75 1008,-2167.75 1141,-2167.75 1141,-2143.75 1008,-2143.75"/>
+<text text-anchor="start" x="1026.88" y="-2150.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2143.75 1141,-2167.75 1188,-2167.75 1188,-2143.75 1141,-2143.75"/>
+<text text-anchor="start" x="1159.25" y="-2150.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-2119.75 961,-2143.75 1008,-2143.75 1008,-2119.75 961,-2119.75"/>
+<text text-anchor="start" x="979.62" y="-2126.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-2119.75 1008,-2143.75 1141,-2143.75 1141,-2119.75 1008,-2119.75"/>
+<text text-anchor="start" x="1030.62" y="-2126.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-2119.75 1141,-2143.75 1188,-2143.75 1188,-2119.75 1141,-2119.75"/>
+<text text-anchor="start" x="1159.62" y="-2126.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-1943.75 961,-2119.75 1188,-2119.75 1188,-1943.75 961,-1943.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2115.75"/>
</g>
<!-- Coil Pack 3&#45;&#45;W19 -->
-<g id="edge32" class="edge">
+<g id="edge35" class="edge">
<title>Coil Pack 3:e&#45;&#45;W19:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2178.25C1359.82,-2180.6 1316.62,-2420.6 1483.5,-2418.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2180.25C1357.85,-2180.25 1314.65,-2420.25 1483.5,-2420.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2182.25C1355.88,-2179.9 1312.68,-2419.9 1483.5,-2422.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2177.75C1358.7,-2180.09 1317.74,-2416.09 1483.5,-2413.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2179.75C1356.73,-2179.75 1315.77,-2415.75 1483.5,-2415.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2181.75C1354.76,-2179.41 1313.8,-2415.41 1483.5,-2417.75"/>
</g>
<!-- Coil Pack 3&#45;&#45;W20 -->
-<g id="edge40" class="edge">
+<g id="edge43" class="edge">
<title>Coil Pack 3:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2154.25C1484.64,-2157.25 1126.83,-2777.25 1419,-2774.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2156.25C1482.91,-2156.25 1125.09,-2776.25 1419,-2776.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2158.25C1481.17,-2155.25 1123.36,-2775.25 1419,-2778.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2153.75C1436.19,-2156.67 1175.36,-2658.67 1419,-2655.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2155.75C1434.41,-2155.75 1173.59,-2657.75 1419,-2657.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2157.75C1432.64,-2154.83 1171.81,-2656.83 1419,-2659.75"/>
</g>
<!-- Coil Pack 4 -->
<g id="node7" class="node">
<title>Coil Pack 4</title>
-<polygon fill="#ffffff" stroke="black" points="1188,-3027.25 961,-3027.25 961,-2682.25 1188,-2682.25 1188,-3027.25"/>
-<polygon fill="none" stroke="black" points="961,-3002.75 961,-3027.25 1188,-3027.25 1188,-3002.75 961,-3002.75"/>
-<text text-anchor="start" x="1038.5" y="-3009.95" font-family="arial" font-size="14.00">Coil Pack 4</text>
-<polygon fill="none" stroke="black" points="961,-2978.25 961,-3002.75 1113.88,-3002.75 1113.88,-2978.25 961,-2978.25"/>
-<text text-anchor="start" x="982.31" y="-2985.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1113.88,-2978.25 1113.88,-3002.75 1188,-3002.75 1188,-2978.25 1113.88,-2978.25"/>
-<text text-anchor="start" x="1135.19" y="-2985.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="961,-2954.25 961,-2978.25 1008,-2978.25 1008,-2954.25 961,-2954.25"/>
-<text text-anchor="start" x="979.62" y="-2960.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1008,-2954.25 1008,-2978.25 1141,-2978.25 1141,-2954.25 1008,-2954.25"/>
-<text text-anchor="start" x="1047.12" y="-2960.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1141,-2954.25 1141,-2978.25 1188,-2978.25 1188,-2954.25 1141,-2954.25"/>
-<text text-anchor="start" x="1159.62" y="-2960.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="961,-2930.25 961,-2954.25 1008,-2954.25 1008,-2930.25 961,-2930.25"/>
-<text text-anchor="start" x="979.62" y="-2936.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1008,-2930.25 1008,-2954.25 1141,-2954.25 1141,-2930.25 1008,-2930.25"/>
-<text text-anchor="start" x="1026.12" y="-2936.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2930.25 1141,-2954.25 1188,-2954.25 1188,-2930.25 1141,-2930.25"/>
-<text text-anchor="start" x="1159.62" y="-2936.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="961,-2906.25 961,-2930.25 1008,-2930.25 1008,-2906.25 961,-2906.25"/>
-<text text-anchor="start" x="979.25" y="-2912.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1008,-2906.25 1008,-2930.25 1141,-2930.25 1141,-2906.25 1008,-2906.25"/>
-<text text-anchor="start" x="1032.12" y="-2912.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2906.25 1141,-2930.25 1188,-2930.25 1188,-2906.25 1141,-2906.25"/>
-<text text-anchor="start" x="1159.25" y="-2912.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="961,-2882.25 961,-2906.25 1008,-2906.25 1008,-2882.25 961,-2882.25"/>
-<text text-anchor="start" x="979.25" y="-2888.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1008,-2882.25 1008,-2906.25 1141,-2906.25 1141,-2882.25 1008,-2882.25"/>
-<text text-anchor="start" x="1026.88" y="-2888.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1141,-2882.25 1141,-2906.25 1188,-2906.25 1188,-2882.25 1141,-2882.25"/>
-<text text-anchor="start" x="1159.25" y="-2888.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="961,-2858.25 961,-2882.25 1008,-2882.25 1008,-2858.25 961,-2858.25"/>
-<text text-anchor="start" x="979.62" y="-2864.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1008,-2858.25 1008,-2882.25 1141,-2882.25 1141,-2858.25 1008,-2858.25"/>
-<text text-anchor="start" x="1030.62" y="-2864.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1141,-2858.25 1141,-2882.25 1188,-2882.25 1188,-2858.25 1141,-2858.25"/>
-<text text-anchor="start" x="1159.62" y="-2864.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="961,-2682.25 961,-2858.25 1188,-2858.25 1188,-2682.25 961,-2682.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2854.25"/>
+<polygon fill="#ffffff" stroke="black" points="1188,-3026.75 961,-3026.75 961,-2681.75 1188,-2681.75 1188,-3026.75"/>
+<polygon fill="none" stroke="black" points="961,-3002.25 961,-3026.75 1188,-3026.75 1188,-3002.25 961,-3002.25"/>
+<text text-anchor="start" x="1038.5" y="-3009.45" font-family="arial" font-size="14.00">Coil Pack 4</text>
+<polygon fill="none" stroke="black" points="961,-2977.75 961,-3002.25 1113.88,-3002.25 1113.88,-2977.75 961,-2977.75"/>
+<text text-anchor="start" x="982.31" y="-2984.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1113.88,-2977.75 1113.88,-3002.25 1188,-3002.25 1188,-2977.75 1113.88,-2977.75"/>
+<text text-anchor="start" x="1135.19" y="-2984.95" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="961,-2953.75 961,-2977.75 1008,-2977.75 1008,-2953.75 961,-2953.75"/>
+<text text-anchor="start" x="979.62" y="-2960.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1008,-2953.75 1008,-2977.75 1141,-2977.75 1141,-2953.75 1008,-2953.75"/>
+<text text-anchor="start" x="1047.12" y="-2960.45" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1141,-2953.75 1141,-2977.75 1188,-2977.75 1188,-2953.75 1141,-2953.75"/>
+<text text-anchor="start" x="1159.62" y="-2960.45" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="961,-2929.75 961,-2953.75 1008,-2953.75 1008,-2929.75 961,-2929.75"/>
+<text text-anchor="start" x="979.62" y="-2936.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1008,-2929.75 1008,-2953.75 1141,-2953.75 1141,-2929.75 1008,-2929.75"/>
+<text text-anchor="start" x="1026.12" y="-2936.45" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2929.75 1141,-2953.75 1188,-2953.75 1188,-2929.75 1141,-2929.75"/>
+<text text-anchor="start" x="1159.62" y="-2936.45" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="961,-2905.75 961,-2929.75 1008,-2929.75 1008,-2905.75 961,-2905.75"/>
+<text text-anchor="start" x="979.25" y="-2912.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1008,-2905.75 1008,-2929.75 1141,-2929.75 1141,-2905.75 1008,-2905.75"/>
+<text text-anchor="start" x="1032.12" y="-2912.45" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2905.75 1141,-2929.75 1188,-2929.75 1188,-2905.75 1141,-2905.75"/>
+<text text-anchor="start" x="1159.25" y="-2912.45" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="961,-2881.75 961,-2905.75 1008,-2905.75 1008,-2881.75 961,-2881.75"/>
+<text text-anchor="start" x="979.25" y="-2888.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1008,-2881.75 1008,-2905.75 1141,-2905.75 1141,-2881.75 1008,-2881.75"/>
+<text text-anchor="start" x="1026.88" y="-2888.45" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1141,-2881.75 1141,-2905.75 1188,-2905.75 1188,-2881.75 1141,-2881.75"/>
+<text text-anchor="start" x="1159.25" y="-2888.45" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="961,-2857.75 961,-2881.75 1008,-2881.75 1008,-2857.75 961,-2857.75"/>
+<text text-anchor="start" x="979.62" y="-2864.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1008,-2857.75 1008,-2881.75 1141,-2881.75 1141,-2857.75 1008,-2857.75"/>
+<text text-anchor="start" x="1030.62" y="-2864.45" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1141,-2857.75 1141,-2881.75 1188,-2881.75 1188,-2857.75 1141,-2857.75"/>
+<text text-anchor="start" x="1159.62" y="-2864.45" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="961,-2681.75 961,-2857.75 1188,-2857.75 1188,-2681.75 961,-2681.75"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2853.75"/>
</g>
<!-- Coil Pack 4&#45;&#45;W10 -->
-<g id="edge30" class="edge">
+<g id="edge33" class="edge">
<title>Coil Pack 4:e&#45;&#45;W10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2916.25C1336.7,-2918.21 1339.8,-3062.21 1483.5,-3060.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2918.25C1334.7,-2918.25 1337.8,-3062.25 1483.5,-3062.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2920.25C1332.7,-2918.29 1335.8,-3062.29 1483.5,-3064.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2915.75C1342.35,-2917.85 1334.14,-3088.85 1483.5,-3086.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2917.75C1340.35,-2917.75 1332.15,-3088.75 1483.5,-3088.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2919.75C1338.36,-2917.65 1330.15,-3088.65 1483.5,-3090.75"/>
</g>
<!-- Coil Pack 4&#45;&#45;W20 -->
-<g id="edge42" class="edge">
+<g id="edge45" class="edge">
<title>Coil Pack 4:e&#45;&#45;W20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2892.25C1307.61,-2894.41 1296.4,-2750.41 1419,-2748.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2894.25C1309.6,-2894.25 1298.4,-2750.25 1419,-2750.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2896.25C1311.6,-2894.09 1300.39,-2750.09 1419,-2752.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2891.75C1342.03,-2894.33 1262.14,-2632.33 1419,-2629.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2893.75C1343.95,-2893.75 1264.05,-2631.75 1419,-2631.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2895.75C1345.86,-2893.17 1265.97,-2631.17 1419,-2633.75"/>
</g>
<!-- Fuel Injector 1 -->
<g id="node8" class="node">
<title>Fuel Injector 1</title>
-<polygon fill="#ffffff" stroke="black" points="1228.5,-953.75 920.5,-953.75 920.5,-623.75 1228.5,-623.75 1228.5,-953.75"/>
-<polygon fill="none" stroke="black" points="920.5,-929.25 920.5,-953.75 1228.5,-953.75 1228.5,-929.25 920.5,-929.25"/>
-<text text-anchor="start" x="1029.12" y="-936.45" font-family="arial" font-size="14.00">Fuel Injector 1</text>
-<polygon fill="none" stroke="black" points="920.5,-904.75 920.5,-929.25 1102.25,-929.25 1102.25,-904.75 920.5,-904.75"/>
-<text text-anchor="start" x="967.88" y="-911.95" font-family="arial" font-size="14.00">90980&#45;11875</text>
-<polygon fill="none" stroke="black" points="1102.25,-904.75 1102.25,-929.25 1228.5,-929.25 1228.5,-904.75 1102.25,-904.75"/>
-<text text-anchor="start" x="1149.62" y="-911.95" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="920.5,-880.75 920.5,-904.75 1051,-904.75 1051,-880.75 920.5,-880.75"/>
-<text text-anchor="start" x="981.62" y="-887.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1051,-880.75 1051,-904.75 1228.5,-904.75 1228.5,-880.75 1051,-880.75"/>
-<text text-anchor="start" x="1126.62" y="-887.45" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="920.5,-856.75 920.5,-880.75 1051,-880.75 1051,-856.75 920.5,-856.75"/>
-<text text-anchor="start" x="981.62" y="-863.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1051,-856.75 1051,-880.75 1228.5,-880.75 1228.5,-856.75 1051,-856.75"/>
-<text text-anchor="start" x="1112" y="-863.45" font-family="arial" font-size="14.00">ECU INJ</text>
-<polygon fill="none" stroke="black" points="920.5,-623.75 920.5,-856.75 1228.5,-856.75 1228.5,-623.75 920.5,-623.75"/>
-<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-852.75"/>
+<polygon fill="#ffffff" stroke="black" points="1228.5,-1402.25 920.5,-1402.25 920.5,-1072.25 1228.5,-1072.25 1228.5,-1402.25"/>
+<polygon fill="none" stroke="black" points="920.5,-1377.75 920.5,-1402.25 1228.5,-1402.25 1228.5,-1377.75 920.5,-1377.75"/>
+<text text-anchor="start" x="1029.12" y="-1384.95" font-family="arial" font-size="14.00">Fuel Injector 1</text>
+<polygon fill="none" stroke="black" points="920.5,-1353.25 920.5,-1377.75 1102.25,-1377.75 1102.25,-1353.25 920.5,-1353.25"/>
+<text text-anchor="start" x="967.88" y="-1360.45" font-family="arial" font-size="14.00">90980&#45;11875</text>
+<polygon fill="none" stroke="black" points="1102.25,-1353.25 1102.25,-1377.75 1228.5,-1377.75 1228.5,-1353.25 1102.25,-1353.25"/>
+<text text-anchor="start" x="1149.62" y="-1360.45" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="920.5,-1329.25 920.5,-1353.25 1051,-1353.25 1051,-1329.25 920.5,-1329.25"/>
+<text text-anchor="start" x="981.62" y="-1335.95" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1051,-1329.25 1051,-1353.25 1228.5,-1353.25 1228.5,-1329.25 1051,-1329.25"/>
+<text text-anchor="start" x="1126.62" y="-1335.95" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="920.5,-1305.25 920.5,-1329.25 1051,-1329.25 1051,-1305.25 920.5,-1305.25"/>
+<text text-anchor="start" x="981.62" y="-1311.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1051,-1305.25 1051,-1329.25 1228.5,-1329.25 1228.5,-1305.25 1051,-1305.25"/>
+<text text-anchor="start" x="1112" y="-1311.95" font-family="arial" font-size="14.00">ECU INJ</text>
+<polygon fill="none" stroke="black" points="920.5,-1072.25 920.5,-1305.25 1228.5,-1305.25 1228.5,-1072.25 920.5,-1072.25"/>
+<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-1301.25"/>
</g>
<!-- Fuel Injector 2 -->
<g id="node9" class="node">
<title>Fuel Injector 2</title>
-<polygon fill="#ffffff" stroke="black" points="1228.5,-599.75 920.5,-599.75 920.5,-269.75 1228.5,-269.75 1228.5,-599.75"/>
-<polygon fill="none" stroke="black" points="920.5,-575.25 920.5,-599.75 1228.5,-599.75 1228.5,-575.25 920.5,-575.25"/>
-<text text-anchor="start" x="1029.12" y="-582.45" font-family="arial" font-size="14.00">Fuel Injector 2</text>
-<polygon fill="none" stroke="black" points="920.5,-550.75 920.5,-575.25 1102.25,-575.25 1102.25,-550.75 920.5,-550.75"/>
-<text text-anchor="start" x="967.88" y="-557.95" font-family="arial" font-size="14.00">90980&#45;11875</text>
-<polygon fill="none" stroke="black" points="1102.25,-550.75 1102.25,-575.25 1228.5,-575.25 1228.5,-550.75 1102.25,-550.75"/>
-<text text-anchor="start" x="1149.62" y="-557.95" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="920.5,-526.75 920.5,-550.75 1051,-550.75 1051,-526.75 920.5,-526.75"/>
-<text text-anchor="start" x="981.62" y="-533.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1051,-526.75 1051,-550.75 1228.5,-550.75 1228.5,-526.75 1051,-526.75"/>
-<text text-anchor="start" x="1126.62" y="-533.45" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="920.5,-502.75 920.5,-526.75 1051,-526.75 1051,-502.75 920.5,-502.75"/>
-<text text-anchor="start" x="981.62" y="-509.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1051,-502.75 1051,-526.75 1228.5,-526.75 1228.5,-502.75 1051,-502.75"/>
-<text text-anchor="start" x="1112" y="-509.45" font-family="arial" font-size="14.00">ECU INJ</text>
-<polygon fill="none" stroke="black" points="920.5,-269.75 920.5,-502.75 1228.5,-502.75 1228.5,-269.75 920.5,-269.75"/>
-<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-498.75"/>
+<polygon fill="#ffffff" stroke="black" points="1228.5,-1048.25 920.5,-1048.25 920.5,-718.25 1228.5,-718.25 1228.5,-1048.25"/>
+<polygon fill="none" stroke="black" points="920.5,-1023.75 920.5,-1048.25 1228.5,-1048.25 1228.5,-1023.75 920.5,-1023.75"/>
+<text text-anchor="start" x="1029.12" y="-1030.95" font-family="arial" font-size="14.00">Fuel Injector 2</text>
+<polygon fill="none" stroke="black" points="920.5,-999.25 920.5,-1023.75 1102.25,-1023.75 1102.25,-999.25 920.5,-999.25"/>
+<text text-anchor="start" x="967.88" y="-1006.45" font-family="arial" font-size="14.00">90980&#45;11875</text>
+<polygon fill="none" stroke="black" points="1102.25,-999.25 1102.25,-1023.75 1228.5,-1023.75 1228.5,-999.25 1102.25,-999.25"/>
+<text text-anchor="start" x="1149.62" y="-1006.45" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="920.5,-975.25 920.5,-999.25 1051,-999.25 1051,-975.25 920.5,-975.25"/>
+<text text-anchor="start" x="981.62" y="-981.95" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1051,-975.25 1051,-999.25 1228.5,-999.25 1228.5,-975.25 1051,-975.25"/>
+<text text-anchor="start" x="1126.62" y="-981.95" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="920.5,-951.25 920.5,-975.25 1051,-975.25 1051,-951.25 920.5,-951.25"/>
+<text text-anchor="start" x="981.62" y="-957.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1051,-951.25 1051,-975.25 1228.5,-975.25 1228.5,-951.25 1051,-951.25"/>
+<text text-anchor="start" x="1112" y="-957.95" font-family="arial" font-size="14.00">ECU INJ</text>
+<polygon fill="none" stroke="black" points="920.5,-718.25 920.5,-951.25 1228.5,-951.25 1228.5,-718.25 920.5,-718.25"/>
+<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-947.25"/>
</g>
<!-- MAF Sensor -->
<g id="node10" class="node">
<title>MAF Sensor</title>
-<polygon fill="#ffffff" stroke="black" points="2342,-4517.5 2034,-4517.5 2034,-4206 2342,-4206 2342,-4517.5"/>
-<polygon fill="none" stroke="black" points="2034,-4493 2034,-4517.5 2342,-4517.5 2342,-4493 2034,-4493"/>
-<text text-anchor="start" x="2148.25" y="-4500.2" font-family="arial" font-size="14.00">MAF Sensor</text>
-<polygon fill="none" stroke="black" points="2034,-4468.5 2034,-4493 2235.62,-4493 2235.62,-4468.5 2034,-4468.5"/>
-<text text-anchor="start" x="2071.44" y="-4475.7" font-family="arial" font-size="14.00">Bosch 1928405138</text>
-<polygon fill="none" stroke="black" points="2235.62,-4468.5 2235.62,-4493 2342,-4493 2342,-4468.5 2235.62,-4468.5"/>
-<text text-anchor="start" x="2273.06" y="-4475.7" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="2034,-4444 2034,-4468.5 2179,-4468.5 2179,-4444 2034,-4444"/>
-<text text-anchor="start" x="2102.38" y="-4451.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="2179,-4444 2179,-4468.5 2342,-4468.5 2342,-4444 2179,-4444"/>
-<text text-anchor="start" x="2247.38" y="-4451.2" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="2034,-4206 2034,-4444 2342,-4444 2342,-4206 2034,-4206"/>
-<image xlink:href="images\MAF.png" width="293.8px" height="226px" preserveAspectRatio="xMinYMin meet" x="2041.1" y="-4438"/>
+<polygon fill="#ffffff" stroke="black" points="2342,-4344 2034,-4344 2034,-4032.5 2342,-4032.5 2342,-4344"/>
+<polygon fill="none" stroke="black" points="2034,-4319.5 2034,-4344 2342,-4344 2342,-4319.5 2034,-4319.5"/>
+<text text-anchor="start" x="2148.25" y="-4326.7" font-family="arial" font-size="14.00">MAF Sensor</text>
+<polygon fill="none" stroke="black" points="2034,-4295 2034,-4319.5 2235.62,-4319.5 2235.62,-4295 2034,-4295"/>
+<text text-anchor="start" x="2071.44" y="-4302.2" font-family="arial" font-size="14.00">Bosch 1928405138</text>
+<polygon fill="none" stroke="black" points="2235.62,-4295 2235.62,-4319.5 2342,-4319.5 2342,-4295 2235.62,-4295"/>
+<text text-anchor="start" x="2273.06" y="-4302.2" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="2034,-4270.5 2034,-4295 2179,-4295 2179,-4270.5 2034,-4270.5"/>
+<text text-anchor="start" x="2102.38" y="-4277.7" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="2179,-4270.5 2179,-4295 2342,-4295 2342,-4270.5 2179,-4270.5"/>
+<text text-anchor="start" x="2247.38" y="-4277.7" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="2034,-4032.5 2034,-4270.5 2342,-4270.5 2342,-4032.5 2034,-4032.5"/>
+<image xlink:href="images\MAF.png" width="293.8px" height="226px" preserveAspectRatio="xMinYMin meet" x="2041.1" y="-4264.5"/>
</g>
<!-- LSU -->
<g id="node11" class="node">
<title>LSU</title>
-<polygon fill="#ffffff" stroke="black" points="1222,-245.5 927,-245.5 927,0 1222,0 1222,-245.5"/>
-<polygon fill="none" stroke="black" points="927,-221 927,-245.5 1222,-245.5 1222,-221 927,-221"/>
-<text text-anchor="start" x="1060.62" y="-228.2" font-family="arial" font-size="14.00">LSU</text>
-<polygon fill="none" stroke="black" points="927,-196.5 927,-221 1115.38,-221 1115.38,-196.5 927,-196.5"/>
-<text text-anchor="start" x="964.56" y="-203.7" font-family="arial" font-size="14.00">D261.205.356&#45;01</text>
-<polygon fill="none" stroke="black" points="1115.38,-196.5 1115.38,-221 1222,-221 1222,-196.5 1115.38,-196.5"/>
-<text text-anchor="start" x="1152.94" y="-203.7" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="927,-172 927,-196.5 1065.5,-196.5 1065.5,-172 927,-172"/>
-<text text-anchor="start" x="992.12" y="-179.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="1065.5,-172 1065.5,-196.5 1222,-196.5 1222,-172 1065.5,-172"/>
-<text text-anchor="start" x="1130.62" y="-179.2" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="927,0 927,-172 1222,-172 1222,0 927,0"/>
-<image xlink:href="images\LSU.png" width="287px" height="164px" preserveAspectRatio="xMinYMin meet" x="931" y="-168"/>
+<polygon fill="#ffffff" stroke="black" points="1222,-694 927,-694 927,-448.5 1222,-448.5 1222,-694"/>
+<polygon fill="none" stroke="black" points="927,-669.5 927,-694 1222,-694 1222,-669.5 927,-669.5"/>
+<text text-anchor="start" x="1060.62" y="-676.7" font-family="arial" font-size="14.00">LSU</text>
+<polygon fill="none" stroke="black" points="927,-645 927,-669.5 1115.38,-669.5 1115.38,-645 927,-645"/>
+<text text-anchor="start" x="964.56" y="-652.2" font-family="arial" font-size="14.00">D261.205.356&#45;01</text>
+<polygon fill="none" stroke="black" points="1115.38,-645 1115.38,-669.5 1222,-669.5 1222,-645 1115.38,-645"/>
+<text text-anchor="start" x="1152.94" y="-652.2" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="927,-620.5 927,-645 1065.5,-645 1065.5,-620.5 927,-620.5"/>
+<text text-anchor="start" x="992.12" y="-627.7" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="1065.5,-620.5 1065.5,-645 1222,-645 1222,-620.5 1065.5,-620.5"/>
+<text text-anchor="start" x="1130.62" y="-627.7" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="927,-448.5 927,-620.5 1222,-620.5 1222,-448.5 927,-448.5"/>
+<image xlink:href="images\LSU.png" width="287px" height="164px" preserveAspectRatio="xMinYMin meet" x="931" y="-616.5"/>
</g>
<!-- Servo Power -->
<g id="node12" class="node">
<title>Servo Power</title>
-<polygon fill="#ffffff" stroke="black" points="1224,-1451 925,-1451 925,-1026.5 1224,-1026.5 1224,-1451"/>
-<polygon fill="none" stroke="black" points="925,-1426.5 925,-1451 1224,-1451 1224,-1426.5 925,-1426.5"/>
-<text text-anchor="start" x="1033.62" y="-1433.7" font-family="arial" font-size="14.00">Servo Power</text>
-<polygon fill="none" stroke="black" points="925,-1402 925,-1426.5 1093.62,-1426.5 1093.62,-1402 925,-1402"/>
-<text text-anchor="start" x="974.44" y="-1409.2" font-family="arial" font-size="14.00">DTM04&#45;2P</text>
-<polygon fill="none" stroke="black" points="1093.62,-1402 1093.62,-1426.5 1224,-1426.5 1224,-1402 1093.62,-1402"/>
-<text text-anchor="start" x="1143.06" y="-1409.2" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="925,-1378 925,-1402 1017,-1402 1017,-1378 925,-1378"/>
-<text text-anchor="start" x="966.88" y="-1384.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1017,-1378 1017,-1402 1132,-1402 1132,-1378 1017,-1378"/>
-<text text-anchor="start" x="1061.38" y="-1384.7" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="1132,-1378 1132,-1402 1224,-1402 1224,-1378 1132,-1378"/>
-<text text-anchor="start" x="1173.88" y="-1384.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="925,-1354 925,-1378 1017,-1378 1017,-1354 925,-1354"/>
-<text text-anchor="start" x="966.88" y="-1360.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1017,-1354 1017,-1378 1132,-1378 1132,-1354 1017,-1354"/>
-<text text-anchor="start" x="1058.75" y="-1360.7" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="1132,-1354 1132,-1378 1224,-1378 1224,-1354 1132,-1354"/>
-<text text-anchor="start" x="1173.88" y="-1360.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="925,-1051 925,-1354 1224,-1354 1224,-1051 925,-1051"/>
-<image xlink:href="images\ServoP.png" width="291px" height="295px" preserveAspectRatio="xMinYMin meet" x="929" y="-1350"/>
-<polygon fill="none" stroke="black" points="925,-1026.5 925,-1051 1224,-1051 1224,-1026.5 925,-1026.5"/>
-<text text-anchor="start" x="1001" y="-1033.7" font-family="arial" font-size="14.00">Crimp mate DTM06&#45;2S</text>
+<polygon fill="#ffffff" stroke="black" points="1224,-424.5 925,-424.5 925,0 1224,0 1224,-424.5"/>
+<polygon fill="none" stroke="black" points="925,-400 925,-424.5 1224,-424.5 1224,-400 925,-400"/>
+<text text-anchor="start" x="1033.62" y="-407.2" font-family="arial" font-size="14.00">Servo Power</text>
+<polygon fill="none" stroke="black" points="925,-375.5 925,-400 1093.62,-400 1093.62,-375.5 925,-375.5"/>
+<text text-anchor="start" x="974.44" y="-382.7" font-family="arial" font-size="14.00">DTM04&#45;2P</text>
+<polygon fill="none" stroke="black" points="1093.62,-375.5 1093.62,-400 1224,-400 1224,-375.5 1093.62,-375.5"/>
+<text text-anchor="start" x="1143.06" y="-382.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="925,-351.5 925,-375.5 1017,-375.5 1017,-351.5 925,-351.5"/>
+<text text-anchor="start" x="966.88" y="-358.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1017,-351.5 1017,-375.5 1132,-375.5 1132,-351.5 1017,-351.5"/>
+<text text-anchor="start" x="1061.38" y="-358.2" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="1132,-351.5 1132,-375.5 1224,-375.5 1224,-351.5 1132,-351.5"/>
+<text text-anchor="start" x="1173.88" y="-358.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="925,-327.5 925,-351.5 1017,-351.5 1017,-327.5 925,-327.5"/>
+<text text-anchor="start" x="966.88" y="-334.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1017,-327.5 1017,-351.5 1132,-351.5 1132,-327.5 1017,-327.5"/>
+<text text-anchor="start" x="1058.75" y="-334.2" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="1132,-327.5 1132,-351.5 1224,-351.5 1224,-327.5 1132,-327.5"/>
+<text text-anchor="start" x="1173.88" y="-334.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="925,-24.5 925,-327.5 1224,-327.5 1224,-24.5 925,-24.5"/>
+<image xlink:href="images\ServoP.png" width="291px" height="295px" preserveAspectRatio="xMinYMin meet" x="929" y="-323.5"/>
+<polygon fill="none" stroke="black" points="925,0 925,-24.5 1224,-24.5 1224,0 925,0"/>
+<text text-anchor="start" x="1001" y="-7.2" font-family="arial" font-size="14.00">Crimp mate DTM06&#45;2S</text>
</g>
<!-- W22 -->
<g id="node44" class="node">
<title>W22</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1762,-1831.25 1447,-1831.25 1447,-1716.25 1762,-1716.25 1762,-1831.25"/>
-<polygon fill="none" stroke="black" points="1447,-1806.75 1447,-1831.25 1762,-1831.25 1762,-1806.75 1447,-1806.75"/>
-<text text-anchor="start" x="1589.12" y="-1813.95" font-family="arial" font-size="14.00">W22</text>
-<polygon fill="none" stroke="black" points="1447,-1782.25 1447,-1806.75 1518.5,-1806.75 1518.5,-1782.25 1447,-1782.25"/>
-<text text-anchor="start" x="1475.25" y="-1789.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1518.5,-1782.25 1518.5,-1806.75 1630.5,-1806.75 1630.5,-1782.25 1518.5,-1782.25"/>
-<text text-anchor="start" x="1546.75" y="-1789.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1630.5,-1782.25 1630.5,-1806.75 1762,-1806.75 1762,-1782.25 1630.5,-1782.25"/>
-<text text-anchor="start" x="1658.75" y="-1789.45" font-family="arial" font-size="14.00">20.0 Inches</text>
-<text text-anchor="start" x="1511.62" y="-1766.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1449" y="-1746.95" font-family="arial" font-size="14.00">Servo Power:2:GND</text>
-<text text-anchor="start" x="1581.88" y="-1746.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1638.75" y="-1746.95" font-family="arial" font-size="14.00">Negative Bus Bar:2</text>
-<polygon fill="#000000" stroke="none" points="1447,-1740.25 1447,-1742.25 1762,-1742.25 1762,-1740.25 1447,-1740.25"/>
-<polygon fill="#000000" stroke="none" points="1447,-1738.25 1447,-1740.25 1762,-1740.25 1762,-1738.25 1447,-1738.25"/>
-<polygon fill="#000000" stroke="none" points="1447,-1736.25 1447,-1738.25 1762,-1738.25 1762,-1736.25 1447,-1736.25"/>
-<text text-anchor="start" x="1511.62" y="-1720.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1762,-898.75 1447,-898.75 1447,-783.75 1762,-783.75 1762,-898.75"/>
+<polygon fill="none" stroke="black" points="1447,-874.25 1447,-898.75 1762,-898.75 1762,-874.25 1447,-874.25"/>
+<text text-anchor="start" x="1589.12" y="-881.45" font-family="arial" font-size="14.00">W22</text>
+<polygon fill="none" stroke="black" points="1447,-849.75 1447,-874.25 1518.5,-874.25 1518.5,-849.75 1447,-849.75"/>
+<text text-anchor="start" x="1475.25" y="-856.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1518.5,-849.75 1518.5,-874.25 1630.5,-874.25 1630.5,-849.75 1518.5,-849.75"/>
+<text text-anchor="start" x="1546.75" y="-856.95" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1630.5,-849.75 1630.5,-874.25 1762,-874.25 1762,-849.75 1630.5,-849.75"/>
+<text text-anchor="start" x="1658.75" y="-856.95" font-family="arial" font-size="14.00">20.0 Inches</text>
+<text text-anchor="start" x="1511.62" y="-834.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1449" y="-814.45" font-family="arial" font-size="14.00">Servo Power:2:GND</text>
+<text text-anchor="start" x="1581.88" y="-814.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1638.75" y="-814.45" font-family="arial" font-size="14.00">Negative Bus Bar:2</text>
+<polygon fill="#000000" stroke="none" points="1447,-807.75 1447,-809.75 1762,-809.75 1762,-807.75 1447,-807.75"/>
+<polygon fill="#000000" stroke="none" points="1447,-805.75 1447,-807.75 1762,-807.75 1762,-805.75 1447,-805.75"/>
+<polygon fill="#000000" stroke="none" points="1447,-803.75 1447,-805.75 1762,-805.75 1762,-803.75 1447,-803.75"/>
+<text text-anchor="start" x="1511.62" y="-788.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Servo Power&#45;&#45;W22 -->
-<g id="edge62" class="edge">
+<g id="edge65" class="edge">
<title>Servo Power:e&#45;&#45;W22:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-1364C1419.62,-1366.81 1255.04,-1740.06 1446,-1737.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-1366C1417.79,-1366 1253.21,-1739.25 1446,-1739.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-1368C1415.96,-1365.19 1251.38,-1738.44 1446,-1741.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-337.5C1456.51,-340.41 1218.06,-807.66 1446,-804.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-339.5C1454.72,-339.5 1216.28,-806.75 1446,-806.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-341.5C1452.94,-338.59 1214.49,-805.84 1446,-808.75"/>
</g>
<!-- Fuse Block -->
<g id="node13" class="node">
<title>Fuse Block</title>
-<polygon fill="#ffffff" stroke="black" points="2442,-4181.5 1934,-4181.5 1934,-3630 2442,-3630 2442,-4181.5"/>
-<polygon fill="none" stroke="black" points="1934,-4157 1934,-4181.5 2442,-4181.5 2442,-4157 1934,-4157"/>
-<text text-anchor="start" x="2152.38" y="-4164.2" font-family="arial" font-size="14.00">Fuse Block</text>
-<polygon fill="none" stroke="black" points="1934,-4132.5 1934,-4157 2218.75,-4157 2218.75,-4132.5 1934,-4132.5"/>
-<text text-anchor="start" x="2029.88" y="-4139.7" font-family="arial" font-size="14.00">TE 2319023&#45;1</text>
-<polygon fill="none" stroke="black" points="2218.75,-4132.5 2218.75,-4157 2442,-4157 2442,-4132.5 2218.75,-4132.5"/>
-<text text-anchor="start" x="2314.62" y="-4139.7" font-family="arial" font-size="14.00">8&#45;pin</text>
-<polygon fill="none" stroke="black" points="1934,-4108.5 1934,-4132.5 2179.5,-4132.5 2179.5,-4108.5 1934,-4108.5"/>
-<text text-anchor="start" x="2052.62" y="-4115.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2179.5,-4108.5 2179.5,-4132.5 2442,-4132.5 2442,-4108.5 2179.5,-4108.5"/>
-<text text-anchor="start" x="2298" y="-4115.2" font-family="arial" font-size="14.00">F1+</text>
-<polygon fill="none" stroke="black" points="1934,-4084.5 1934,-4108.5 2179.5,-4108.5 2179.5,-4084.5 1934,-4084.5"/>
-<text text-anchor="start" x="2052.62" y="-4091.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2179.5,-4084.5 2179.5,-4108.5 2442,-4108.5 2442,-4084.5 2179.5,-4084.5"/>
-<text text-anchor="start" x="2299.88" y="-4091.2" font-family="arial" font-size="14.00">F1&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-4060.5 1934,-4084.5 2179.5,-4084.5 2179.5,-4060.5 1934,-4060.5"/>
-<text text-anchor="start" x="2052.62" y="-4067.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2179.5,-4060.5 2179.5,-4084.5 2442,-4084.5 2442,-4060.5 2179.5,-4060.5"/>
-<text text-anchor="start" x="2298" y="-4067.2" font-family="arial" font-size="14.00">F2+</text>
-<polygon fill="none" stroke="black" points="1934,-4036.5 1934,-4060.5 2179.5,-4060.5 2179.5,-4036.5 1934,-4036.5"/>
-<text text-anchor="start" x="2052.62" y="-4043.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="2179.5,-4036.5 2179.5,-4060.5 2442,-4060.5 2442,-4036.5 2179.5,-4036.5"/>
-<text text-anchor="start" x="2299.88" y="-4043.2" font-family="arial" font-size="14.00">F2&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-4012.5 1934,-4036.5 2179.5,-4036.5 2179.5,-4012.5 1934,-4012.5"/>
-<text text-anchor="start" x="2052.62" y="-4019.2" font-family="arial" font-size="14.00">5</text>
-<polygon fill="none" stroke="black" points="2179.5,-4012.5 2179.5,-4036.5 2442,-4036.5 2442,-4012.5 2179.5,-4012.5"/>
-<text text-anchor="start" x="2298" y="-4019.2" font-family="arial" font-size="14.00">F3+</text>
-<polygon fill="none" stroke="black" points="1934,-3988.5 1934,-4012.5 2179.5,-4012.5 2179.5,-3988.5 1934,-3988.5"/>
-<text text-anchor="start" x="2052.62" y="-3995.2" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="2179.5,-3988.5 2179.5,-4012.5 2442,-4012.5 2442,-3988.5 2179.5,-3988.5"/>
-<text text-anchor="start" x="2299.88" y="-3995.2" font-family="arial" font-size="14.00">F3&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-3964.5 1934,-3988.5 2179.5,-3988.5 2179.5,-3964.5 1934,-3964.5"/>
-<text text-anchor="start" x="2052.62" y="-3971.2" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="2179.5,-3964.5 2179.5,-3988.5 2442,-3988.5 2442,-3964.5 2179.5,-3964.5"/>
-<text text-anchor="start" x="2298" y="-3971.2" font-family="arial" font-size="14.00">F4+</text>
-<polygon fill="none" stroke="black" points="1934,-3940.5 1934,-3964.5 2179.5,-3964.5 2179.5,-3940.5 1934,-3940.5"/>
-<text text-anchor="start" x="2052.62" y="-3947.2" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="2179.5,-3940.5 2179.5,-3964.5 2442,-3964.5 2442,-3940.5 2179.5,-3940.5"/>
-<text text-anchor="start" x="2299.88" y="-3947.2" font-family="arial" font-size="14.00">F4&#45;</text>
-<polygon fill="none" stroke="black" points="1934,-3654.5 1934,-3940.5 2442,-3940.5 2442,-3654.5 1934,-3654.5"/>
-<image xlink:href="images\FB.png" width="491.88px" height="274px" preserveAspectRatio="xMinYMin meet" x="1942.06" y="-3934.5"/>
-<polygon fill="none" stroke="black" points="1934,-3630 1934,-3654.5 2442,-3654.5 2442,-3630 1934,-3630"/>
-<text text-anchor="start" x="2113.75" y="-3637.2" font-family="arial" font-size="14.00">F1 15A, F2 15A, F3 5A</text>
+<polygon fill="#ffffff" stroke="black" points="2442,-4008 1934,-4008 1934,-3456.5 2442,-3456.5 2442,-4008"/>
+<polygon fill="none" stroke="black" points="1934,-3983.5 1934,-4008 2442,-4008 2442,-3983.5 1934,-3983.5"/>
+<text text-anchor="start" x="2152.38" y="-3990.7" font-family="arial" font-size="14.00">Fuse Block</text>
+<polygon fill="none" stroke="black" points="1934,-3959 1934,-3983.5 2218.75,-3983.5 2218.75,-3959 1934,-3959"/>
+<text text-anchor="start" x="2029.88" y="-3966.2" font-family="arial" font-size="14.00">TE 2319023&#45;1</text>
+<polygon fill="none" stroke="black" points="2218.75,-3959 2218.75,-3983.5 2442,-3983.5 2442,-3959 2218.75,-3959"/>
+<text text-anchor="start" x="2314.62" y="-3966.2" font-family="arial" font-size="14.00">8&#45;pin</text>
+<polygon fill="none" stroke="black" points="1934,-3935 1934,-3959 2179.5,-3959 2179.5,-3935 1934,-3935"/>
+<text text-anchor="start" x="2052.62" y="-3941.7" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2179.5,-3935 2179.5,-3959 2442,-3959 2442,-3935 2179.5,-3935"/>
+<text text-anchor="start" x="2298" y="-3941.7" font-family="arial" font-size="14.00">F1+</text>
+<polygon fill="none" stroke="black" points="1934,-3911 1934,-3935 2179.5,-3935 2179.5,-3911 1934,-3911"/>
+<text text-anchor="start" x="2052.62" y="-3917.7" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2179.5,-3911 2179.5,-3935 2442,-3935 2442,-3911 2179.5,-3911"/>
+<text text-anchor="start" x="2299.88" y="-3917.7" font-family="arial" font-size="14.00">F1&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3887 1934,-3911 2179.5,-3911 2179.5,-3887 1934,-3887"/>
+<text text-anchor="start" x="2052.62" y="-3893.7" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2179.5,-3887 2179.5,-3911 2442,-3911 2442,-3887 2179.5,-3887"/>
+<text text-anchor="start" x="2298" y="-3893.7" font-family="arial" font-size="14.00">F2+</text>
+<polygon fill="none" stroke="black" points="1934,-3863 1934,-3887 2179.5,-3887 2179.5,-3863 1934,-3863"/>
+<text text-anchor="start" x="2052.62" y="-3869.7" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="2179.5,-3863 2179.5,-3887 2442,-3887 2442,-3863 2179.5,-3863"/>
+<text text-anchor="start" x="2299.88" y="-3869.7" font-family="arial" font-size="14.00">F2&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3839 1934,-3863 2179.5,-3863 2179.5,-3839 1934,-3839"/>
+<text text-anchor="start" x="2052.62" y="-3845.7" font-family="arial" font-size="14.00">5</text>
+<polygon fill="none" stroke="black" points="2179.5,-3839 2179.5,-3863 2442,-3863 2442,-3839 2179.5,-3839"/>
+<text text-anchor="start" x="2298" y="-3845.7" font-family="arial" font-size="14.00">F3+</text>
+<polygon fill="none" stroke="black" points="1934,-3815 1934,-3839 2179.5,-3839 2179.5,-3815 1934,-3815"/>
+<text text-anchor="start" x="2052.62" y="-3821.7" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="2179.5,-3815 2179.5,-3839 2442,-3839 2442,-3815 2179.5,-3815"/>
+<text text-anchor="start" x="2299.88" y="-3821.7" font-family="arial" font-size="14.00">F3&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3791 1934,-3815 2179.5,-3815 2179.5,-3791 1934,-3791"/>
+<text text-anchor="start" x="2052.62" y="-3797.7" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="2179.5,-3791 2179.5,-3815 2442,-3815 2442,-3791 2179.5,-3791"/>
+<text text-anchor="start" x="2298" y="-3797.7" font-family="arial" font-size="14.00">F4+</text>
+<polygon fill="none" stroke="black" points="1934,-3767 1934,-3791 2179.5,-3791 2179.5,-3767 1934,-3767"/>
+<text text-anchor="start" x="2052.62" y="-3773.7" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="2179.5,-3767 2179.5,-3791 2442,-3791 2442,-3767 2179.5,-3767"/>
+<text text-anchor="start" x="2299.88" y="-3773.7" font-family="arial" font-size="14.00">F4&#45;</text>
+<polygon fill="none" stroke="black" points="1934,-3481 1934,-3767 2442,-3767 2442,-3481 1934,-3481"/>
+<image xlink:href="images\FB.png" width="491.88px" height="274px" preserveAspectRatio="xMinYMin meet" x="1942.06" y="-3761"/>
+<polygon fill="none" stroke="black" points="1934,-3456.5 1934,-3481 2442,-3481 2442,-3456.5 1934,-3456.5"/>
+<text text-anchor="start" x="2113.75" y="-3463.7" font-family="arial" font-size="14.00">F1 15A, F2 15A, F3 5A</text>
</g>
<!-- KillSwitch -->
<g id="node14" class="node">
<title>KillSwitch</title>
-<polygon fill="#ffffff" stroke="black" points="1227,-3737 922,-3737 922,-3420.5 1227,-3420.5 1227,-3737"/>
-<polygon fill="none" stroke="black" points="922,-3712.5 922,-3737 1227,-3737 1227,-3712.5 922,-3712.5"/>
-<text text-anchor="start" x="1044.5" y="-3719.7" font-family="arial" font-size="14.00">KillSwitch</text>
-<polygon fill="none" stroke="black" points="922,-3688 922,-3712.5 1105.62,-3712.5 1105.62,-3688 922,-3688"/>
-<text text-anchor="start" x="966.94" y="-3695.2" font-family="arial" font-size="14.00">MS24658&#45;22D</text>
-<polygon fill="none" stroke="black" points="1105.62,-3688 1105.62,-3712.5 1227,-3712.5 1227,-3688 1105.62,-3688"/>
-<text text-anchor="start" x="1150.56" y="-3695.2" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="922,-3664 922,-3688 1008,-3688 1008,-3664 922,-3664"/>
-<text text-anchor="start" x="960.88" y="-3670.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1008,-3664 1008,-3688 1141,-3688 1141,-3664 1008,-3664"/>
-<text text-anchor="start" x="1064.38" y="-3670.7" font-family="arial" font-size="14.00">NC</text>
-<polygon fill="none" stroke="black" points="1141,-3664 1141,-3688 1227,-3688 1227,-3664 1141,-3664"/>
-<text text-anchor="start" x="1179.88" y="-3670.7" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="922,-3640 922,-3664 1008,-3664 1008,-3640 922,-3640"/>
-<text text-anchor="start" x="960.88" y="-3646.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1008,-3640 1008,-3664 1141,-3664 1141,-3640 1008,-3640"/>
-<text text-anchor="start" x="1046.75" y="-3646.7" font-family="arial" font-size="14.00">common</text>
-<polygon fill="none" stroke="black" points="1141,-3640 1141,-3664 1227,-3664 1227,-3640 1141,-3640"/>
-<text text-anchor="start" x="1179.88" y="-3646.7" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="922,-3616 922,-3640 1008,-3640 1008,-3616 922,-3616"/>
-<text text-anchor="start" x="960.88" y="-3622.7" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="1008,-3616 1008,-3640 1141,-3640 1141,-3616 1008,-3616"/>
-<text text-anchor="start" x="1064.75" y="-3622.7" font-family="arial" font-size="14.00">KS</text>
-<polygon fill="none" stroke="black" points="1141,-3616 1141,-3640 1227,-3640 1227,-3616 1141,-3616"/>
-<text text-anchor="start" x="1179.88" y="-3622.7" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="922,-3445 922,-3616 1227,-3616 1227,-3445 922,-3445"/>
-<image xlink:href="images\kill.png" width="297px" height="163px" preserveAspectRatio="xMinYMin meet" x="926" y="-3612"/>
-<polygon fill="none" stroke="black" points="922,-3420.5 922,-3445 1227,-3445 1227,-3420.5 922,-3420.5"/>
-<text text-anchor="start" x="960.5" y="-3427.7" font-family="arial" font-size="14.00">Ring Terminal (Inner Diameter.260&quot;)</text>
+<polygon fill="#ffffff" stroke="black" points="1227,-3736.5 922,-3736.5 922,-3420 1227,-3420 1227,-3736.5"/>
+<polygon fill="none" stroke="black" points="922,-3712 922,-3736.5 1227,-3736.5 1227,-3712 922,-3712"/>
+<text text-anchor="start" x="1044.5" y="-3719.2" font-family="arial" font-size="14.00">KillSwitch</text>
+<polygon fill="none" stroke="black" points="922,-3687.5 922,-3712 1105.62,-3712 1105.62,-3687.5 922,-3687.5"/>
+<text text-anchor="start" x="966.94" y="-3694.7" font-family="arial" font-size="14.00">MS24658&#45;22D</text>
+<polygon fill="none" stroke="black" points="1105.62,-3687.5 1105.62,-3712 1227,-3712 1227,-3687.5 1105.62,-3687.5"/>
+<text text-anchor="start" x="1150.56" y="-3694.7" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="922,-3663.5 922,-3687.5 1008,-3687.5 1008,-3663.5 922,-3663.5"/>
+<text text-anchor="start" x="960.88" y="-3670.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1008,-3663.5 1008,-3687.5 1141,-3687.5 1141,-3663.5 1008,-3663.5"/>
+<text text-anchor="start" x="1064.38" y="-3670.2" font-family="arial" font-size="14.00">NC</text>
+<polygon fill="none" stroke="black" points="1141,-3663.5 1141,-3687.5 1227,-3687.5 1227,-3663.5 1141,-3663.5"/>
+<text text-anchor="start" x="1179.88" y="-3670.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="922,-3639.5 922,-3663.5 1008,-3663.5 1008,-3639.5 922,-3639.5"/>
+<text text-anchor="start" x="960.88" y="-3646.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1008,-3639.5 1008,-3663.5 1141,-3663.5 1141,-3639.5 1008,-3639.5"/>
+<text text-anchor="start" x="1046.75" y="-3646.2" font-family="arial" font-size="14.00">common</text>
+<polygon fill="none" stroke="black" points="1141,-3639.5 1141,-3663.5 1227,-3663.5 1227,-3639.5 1141,-3639.5"/>
+<text text-anchor="start" x="1179.88" y="-3646.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="922,-3615.5 922,-3639.5 1008,-3639.5 1008,-3615.5 922,-3615.5"/>
+<text text-anchor="start" x="960.88" y="-3622.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="1008,-3615.5 1008,-3639.5 1141,-3639.5 1141,-3615.5 1008,-3615.5"/>
+<text text-anchor="start" x="1064.75" y="-3622.2" font-family="arial" font-size="14.00">KS</text>
+<polygon fill="none" stroke="black" points="1141,-3615.5 1141,-3639.5 1227,-3639.5 1227,-3615.5 1141,-3615.5"/>
+<text text-anchor="start" x="1179.88" y="-3622.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="922,-3444.5 922,-3615.5 1227,-3615.5 1227,-3444.5 922,-3444.5"/>
+<image xlink:href="images\kill.png" width="297px" height="163px" preserveAspectRatio="xMinYMin meet" x="926" y="-3611.5"/>
+<polygon fill="none" stroke="black" points="922,-3420 922,-3444.5 1227,-3444.5 1227,-3420 922,-3420"/>
+<text text-anchor="start" x="960.5" y="-3427.2" font-family="arial" font-size="14.00">Ring Terminal (Inner Diameter.260&quot;)</text>
</g>
<!-- W14 -->
<g id="node38" class="node">
<title>W14</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1741,-4204.25 1468,-4204.25 1468,-4089.25 1741,-4089.25 1741,-4204.25"/>
-<polygon fill="none" stroke="black" points="1468,-4179.75 1468,-4204.25 1741,-4204.25 1741,-4179.75 1468,-4179.75"/>
-<text text-anchor="start" x="1589.12" y="-4186.95" font-family="arial" font-size="14.00">W14</text>
-<polygon fill="none" stroke="black" points="1468,-4155.25 1468,-4179.75 1522.75,-4179.75 1522.75,-4155.25 1468,-4155.25"/>
-<text text-anchor="start" x="1487.88" y="-4162.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1522.75,-4155.25 1522.75,-4179.75 1618,-4179.75 1618,-4155.25 1522.75,-4155.25"/>
-<text text-anchor="start" x="1542.62" y="-4162.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1618,-4155.25 1618,-4179.75 1741,-4179.75 1741,-4155.25 1618,-4155.25"/>
-<text text-anchor="start" x="1637.88" y="-4162.45" font-family="arial" font-size="14.00">170.0 Inches</text>
-<text text-anchor="start" x="1515.62" y="-4139.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1469.88" y="-4119.95" font-family="arial" font-size="14.00">KillSwitch:3:KS</text>
-<text text-anchor="start" x="1568.62" y="-4119.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1626.75" y="-4119.95" font-family="arial" font-size="14.00">Fuse Block:3:F2+</text>
-<polygon fill="#000000" stroke="none" points="1468,-4113.25 1468,-4115.25 1741,-4115.25 1741,-4113.25 1468,-4113.25"/>
-<polygon fill="#ff0000" stroke="none" points="1468,-4111.25 1468,-4113.25 1741,-4113.25 1741,-4111.25 1468,-4111.25"/>
-<polygon fill="#000000" stroke="none" points="1468,-4109.25 1468,-4111.25 1741,-4111.25 1741,-4109.25 1468,-4109.25"/>
-<text text-anchor="start" x="1515.62" y="-4093.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1741,-3726.75 1468,-3726.75 1468,-3611.75 1741,-3611.75 1741,-3726.75"/>
+<polygon fill="none" stroke="black" points="1468,-3702.25 1468,-3726.75 1741,-3726.75 1741,-3702.25 1468,-3702.25"/>
+<text text-anchor="start" x="1589.12" y="-3709.45" font-family="arial" font-size="14.00">W14</text>
+<polygon fill="none" stroke="black" points="1468,-3677.75 1468,-3702.25 1522.75,-3702.25 1522.75,-3677.75 1468,-3677.75"/>
+<text text-anchor="start" x="1487.88" y="-3684.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1522.75,-3677.75 1522.75,-3702.25 1618,-3702.25 1618,-3677.75 1522.75,-3677.75"/>
+<text text-anchor="start" x="1542.62" y="-3684.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1618,-3677.75 1618,-3702.25 1741,-3702.25 1741,-3677.75 1618,-3677.75"/>
+<text text-anchor="start" x="1637.88" y="-3684.95" font-family="arial" font-size="14.00">170.0 Inches</text>
+<text text-anchor="start" x="1515.62" y="-3662.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1469.88" y="-3642.45" font-family="arial" font-size="14.00">KillSwitch:3:KS</text>
+<text text-anchor="start" x="1568.62" y="-3642.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1626.75" y="-3642.45" font-family="arial" font-size="14.00">Fuse Block:3:F2+</text>
+<polygon fill="#000000" stroke="none" points="1468,-3635.75 1468,-3637.75 1741,-3637.75 1741,-3635.75 1468,-3635.75"/>
+<polygon fill="#ff0000" stroke="none" points="1468,-3633.75 1468,-3635.75 1741,-3635.75 1741,-3633.75 1468,-3633.75"/>
+<polygon fill="#000000" stroke="none" points="1468,-3631.75 1468,-3633.75 1741,-3633.75 1741,-3631.75 1468,-3631.75"/>
+<text text-anchor="start" x="1515.62" y="-3616.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- KillSwitch&#45;&#45;W14 -->
-<g id="edge50" class="edge">
+<g id="edge53" class="edge">
<title>KillSwitch:e&#45;&#45;W14:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3626C1469.8,-3628.89 1228.78,-4113.14 1467,-4110.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1228,-3628C1468.01,-3628 1226.99,-4112.25 1467,-4112.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3630C1466.22,-3627.11 1225.2,-4111.36 1467,-4114.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3625.5C1334.8,-3625.57 1361.26,-3632.82 1467,-3632.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1228,-3627.5C1334.27,-3627.5 1360.73,-3634.75 1467,-3634.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3629.5C1333.74,-3629.43 1360.2,-3636.68 1467,-3636.75"/>
</g>
<!-- Tachometer -->
<g id="node15" class="node">
<title>Tachometer</title>
-<polygon fill="#ffffff" stroke="black" points="2342,-4985.5 2034,-4985.5 2034,-4542 2342,-4542 2342,-4985.5"/>
-<polygon fill="none" stroke="black" points="2034,-4961 2034,-4985.5 2342,-4985.5 2342,-4961 2034,-4961"/>
-<text text-anchor="start" x="2149.75" y="-4968.2" font-family="arial" font-size="14.00">Tachometer</text>
-<polygon fill="none" stroke="black" points="2034,-4936.5 2034,-4961 2201.5,-4961 2201.5,-4936.5 2034,-4936.5"/>
-<text text-anchor="start" x="2088.5" y="-4943.7" font-family="arial" font-size="14.00">DT04&#45;3P</text>
-<polygon fill="none" stroke="black" points="2201.5,-4936.5 2201.5,-4961 2342,-4961 2342,-4936.5 2201.5,-4936.5"/>
-<text text-anchor="start" x="2256" y="-4943.7" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="2034,-4912.5 2034,-4936.5 2177.5,-4936.5 2177.5,-4912.5 2034,-4912.5"/>
-<text text-anchor="start" x="2100.88" y="-4919.2" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="2177.5,-4912.5 2177.5,-4936.5 2342,-4936.5 2342,-4912.5 2177.5,-4912.5"/>
-<text text-anchor="start" x="2246.62" y="-4919.2" font-family="arial" font-size="14.00">12V</text>
-<polygon fill="none" stroke="black" points="2034,-4888.5 2034,-4912.5 2177.5,-4912.5 2177.5,-4888.5 2034,-4888.5"/>
-<text text-anchor="start" x="2100.88" y="-4895.2" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="2177.5,-4888.5 2177.5,-4912.5 2342,-4912.5 2342,-4888.5 2177.5,-4888.5"/>
-<text text-anchor="start" x="2244" y="-4895.2" font-family="arial" font-size="14.00">GND</text>
-<polygon fill="none" stroke="black" points="2034,-4864.5 2034,-4888.5 2177.5,-4888.5 2177.5,-4864.5 2034,-4864.5"/>
-<text text-anchor="start" x="2100.5" y="-4871.2" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="2177.5,-4864.5 2177.5,-4888.5 2342,-4888.5 2342,-4864.5 2177.5,-4864.5"/>
-<text text-anchor="start" x="2248.5" y="-4871.2" font-family="arial" font-size="14.00">Out</text>
-<polygon fill="none" stroke="black" points="2034,-4566.5 2034,-4864.5 2342,-4864.5 2342,-4566.5 2034,-4566.5"/>
-<image xlink:href="images\DT04-3P.png" width="295.36px" height="286px" preserveAspectRatio="xMinYMin meet" x="2040.32" y="-4858.5"/>
-<polygon fill="none" stroke="black" points="2034,-4542 2034,-4566.5 2342,-4566.5 2342,-4542 2034,-4542"/>
-<text text-anchor="start" x="2123.88" y="-4549.2" font-family="arial" font-size="14.00">Mates with DT06&#45;3S</text>
+<polygon fill="#ffffff" stroke="black" points="2342,-4812 2034,-4812 2034,-4368.5 2342,-4368.5 2342,-4812"/>
+<polygon fill="none" stroke="black" points="2034,-4787.5 2034,-4812 2342,-4812 2342,-4787.5 2034,-4787.5"/>
+<text text-anchor="start" x="2149.75" y="-4794.7" font-family="arial" font-size="14.00">Tachometer</text>
+<polygon fill="none" stroke="black" points="2034,-4763 2034,-4787.5 2201.5,-4787.5 2201.5,-4763 2034,-4763"/>
+<text text-anchor="start" x="2088.5" y="-4770.2" font-family="arial" font-size="14.00">DT04&#45;3P</text>
+<polygon fill="none" stroke="black" points="2201.5,-4763 2201.5,-4787.5 2342,-4787.5 2342,-4763 2201.5,-4763"/>
+<text text-anchor="start" x="2256" y="-4770.2" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="2034,-4739 2034,-4763 2129.67,-4763 2129.67,-4739 2034,-4739"/>
+<text text-anchor="start" x="2076.96" y="-4745.7" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2129.67,-4739 2129.67,-4763 2246.33,-4763 2246.33,-4739 2129.67,-4739"/>
+<text text-anchor="start" x="2174.88" y="-4745.7" font-family="arial" font-size="14.00">12V</text>
+<polygon fill="none" stroke="black" points="2246.33,-4739 2246.33,-4763 2342,-4763 2342,-4739 2246.33,-4739"/>
+<text text-anchor="start" x="2289.29" y="-4745.7" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2034,-4715 2034,-4739 2129.67,-4739 2129.67,-4715 2034,-4715"/>
+<text text-anchor="start" x="2076.96" y="-4721.7" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2129.67,-4715 2129.67,-4739 2246.33,-4739 2246.33,-4715 2129.67,-4715"/>
+<text text-anchor="start" x="2172.25" y="-4721.7" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="none" stroke="black" points="2246.33,-4715 2246.33,-4739 2342,-4739 2342,-4715 2246.33,-4715"/>
+<text text-anchor="start" x="2289.29" y="-4721.7" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2034,-4691 2034,-4715 2129.67,-4715 2129.67,-4691 2034,-4691"/>
+<text text-anchor="start" x="2076.58" y="-4697.7" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2129.67,-4691 2129.67,-4715 2246.33,-4715 2246.33,-4691 2129.67,-4691"/>
+<text text-anchor="start" x="2176.75" y="-4697.7" font-family="arial" font-size="14.00">Out</text>
+<polygon fill="none" stroke="black" points="2246.33,-4691 2246.33,-4715 2342,-4715 2342,-4691 2246.33,-4691"/>
+<text text-anchor="start" x="2288.92" y="-4697.7" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2034,-4393 2034,-4691 2342,-4691 2342,-4393 2034,-4393"/>
+<image xlink:href="images\DT04-3P.png" width="295.36px" height="286px" preserveAspectRatio="xMinYMin meet" x="2040.32" y="-4685"/>
+<polygon fill="none" stroke="black" points="2034,-4368.5 2034,-4393 2342,-4393 2342,-4368.5 2034,-4368.5"/>
+<text text-anchor="start" x="2123.88" y="-4375.7" font-family="arial" font-size="14.00">Mates with DT06&#45;3S</text>
+</g>
+<!-- W12 -->
+<g id="node36" class="node">
+<title>W12</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2844.5,-4819 2586,-4819 2586,-4679.5 2844.5,-4679.5 2844.5,-4819"/>
+<polygon fill="none" stroke="black" points="2586,-4794.5 2586,-4819 2844.5,-4819 2844.5,-4794.5 2586,-4794.5"/>
+<text text-anchor="start" x="2699.88" y="-4801.7" font-family="arial" font-size="14.00">W12</text>
+<polygon fill="none" stroke="black" points="2586,-4770 2586,-4794.5 2638.67,-4794.5 2638.67,-4770 2586,-4770"/>
+<text text-anchor="start" x="2604.83" y="-4777.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="2638.67,-4770 2638.67,-4794.5 2731.83,-4794.5 2731.83,-4770 2638.67,-4770"/>
+<text text-anchor="start" x="2657.5" y="-4777.2" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2731.83,-4770 2731.83,-4794.5 2844.5,-4794.5 2844.5,-4770 2731.83,-4770"/>
+<text text-anchor="start" x="2750.67" y="-4777.2" font-family="arial" font-size="14.00">60.0 Inches</text>
+<text text-anchor="start" x="2660.04" y="-4754.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="2599.29" y="-4734.7" font-family="arial" font-size="14.00">Tachometer:B:GND</text>
+<text text-anchor="start" x="2751.12" y="-4734.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="2586,-4728 2586,-4730 2844.5,-4730 2844.5,-4728 2586,-4728"/>
+<polygon fill="#000000" stroke="none" points="2586,-4726 2586,-4728 2844.5,-4728 2844.5,-4726 2586,-4726"/>
+<polygon fill="#000000" stroke="none" points="2586,-4724 2586,-4726 2844.5,-4726 2844.5,-4724 2586,-4724"/>
+<text text-anchor="start" x="2660.04" y="-4708.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="2586,-4679.5 2586,-4704 2844.5,-4704 2844.5,-4679.5 2586,-4679.5"/>
+<text text-anchor="start" x="2590" y="-4686.7" font-family="arial" font-size="14.00">Distance is from ECU to engine ground.</text>
+</g>
+<!-- Tachometer&#45;&#45;W12 -->
+<g id="edge49" class="edge">
+<title>Tachometer:e&#45;&#45;W12:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4725C2451,-4725 2478,-4725 2586,-4725"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4727C2451,-4727 2478,-4727 2586,-4727"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4729C2451,-4729 2478,-4729 2586,-4729"/>
</g>
<!-- Positive Bus Bar -->
<g id="node16" class="node">
<title>Positive Bus Bar</title>
-<polygon fill="#ffffff" stroke="black" points="213,-3901.25 23,-3901.25 23,-3754.25 213,-3754.25 213,-3901.25"/>
-<polygon fill="none" stroke="black" points="23,-3876.75 23,-3901.25 213,-3901.25 213,-3876.75 23,-3876.75"/>
-<text text-anchor="start" x="65.88" y="-3883.95" font-family="arial" font-size="14.00">Positive Bus Bar</text>
-<polygon fill="none" stroke="black" points="23,-3852.25 23,-3876.75 173.5,-3876.75 173.5,-3852.25 23,-3852.25"/>
-<text text-anchor="start" x="27" y="-3859.45" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
-<polygon fill="none" stroke="black" points="173.5,-3852.25 173.5,-3876.75 213,-3876.75 213,-3852.25 173.5,-3852.25"/>
-<text text-anchor="start" x="177.5" y="-3859.45" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="23,-3827.75 23,-3852.25 213,-3852.25 213,-3827.75 23,-3827.75"/>
-<text text-anchor="start" x="113.88" y="-3834.95" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="23,-3803.25 23,-3827.75 213,-3827.75 213,-3803.25 23,-3803.25"/>
-<text text-anchor="start" x="113.88" y="-3810.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="23,-3778.75 23,-3803.25 213,-3803.25 213,-3778.75 23,-3778.75"/>
-<text text-anchor="start" x="113.88" y="-3785.95" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="23,-3754.25 23,-3778.75 213,-3778.75 213,-3754.25 23,-3754.25"/>
-<text text-anchor="start" x="113.88" y="-3761.45" font-family="arial" font-size="14.00">4</text>
+<polygon fill="#ffffff" stroke="black" points="213,-3900.75 23,-3900.75 23,-3753.75 213,-3753.75 213,-3900.75"/>
+<polygon fill="none" stroke="black" points="23,-3876.25 23,-3900.75 213,-3900.75 213,-3876.25 23,-3876.25"/>
+<text text-anchor="start" x="65.88" y="-3883.45" font-family="arial" font-size="14.00">Positive Bus Bar</text>
+<polygon fill="none" stroke="black" points="23,-3851.75 23,-3876.25 173.5,-3876.25 173.5,-3851.75 23,-3851.75"/>
+<text text-anchor="start" x="27" y="-3858.95" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
+<polygon fill="none" stroke="black" points="173.5,-3851.75 173.5,-3876.25 213,-3876.25 213,-3851.75 173.5,-3851.75"/>
+<text text-anchor="start" x="177.5" y="-3858.95" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="23,-3827.25 23,-3851.75 213,-3851.75 213,-3827.25 23,-3827.25"/>
+<text text-anchor="start" x="113.88" y="-3834.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="23,-3802.75 23,-3827.25 213,-3827.25 213,-3802.75 23,-3802.75"/>
+<text text-anchor="start" x="113.88" y="-3809.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="23,-3778.25 23,-3802.75 213,-3802.75 213,-3778.25 23,-3778.25"/>
+<text text-anchor="start" x="113.88" y="-3785.45" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="23,-3753.75 23,-3778.25 213,-3778.25 213,-3753.75 23,-3753.75"/>
+<text text-anchor="start" x="113.88" y="-3760.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W6 -->
<g id="node29" class="node">
<title>W6</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="702,-3908.25 408,-3908.25 408,-3767.25 702,-3767.25 702,-3908.25"/>
-<polygon fill="none" stroke="black" points="408,-3883.75 408,-3908.25 702,-3908.25 702,-3883.75 408,-3883.75"/>
-<text text-anchor="start" x="543.75" y="-3890.95" font-family="arial" font-size="14.00">W6</text>
-<polygon fill="none" stroke="black" points="408,-3859.25 408,-3883.75 472.5,-3883.75 472.5,-3859.25 408,-3859.25"/>
-<text text-anchor="start" x="432.75" y="-3866.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="472.5,-3859.25 472.5,-3883.75 577.5,-3883.75 577.5,-3859.25 472.5,-3859.25"/>
-<text text-anchor="start" x="497.25" y="-3866.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="577.5,-3859.25 577.5,-3883.75 702,-3883.75 702,-3859.25 577.5,-3859.25"/>
-<text text-anchor="start" x="602.25" y="-3866.45" font-family="arial" font-size="14.00">10.0 Inches</text>
-<text text-anchor="start" x="466.12" y="-3843.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="409.88" y="-3823.95" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
-<text text-anchor="start" x="529.62" y="-3823.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="587.75" y="-3823.95" font-family="arial" font-size="14.00">Fuse Block:1:F1+</text>
-<polygon fill="#000000" stroke="none" points="408,-3817.25 408,-3819.25 702,-3819.25 702,-3817.25 408,-3817.25"/>
-<polygon fill="#ff0000" stroke="none" points="408,-3815.25 408,-3817.25 702,-3817.25 702,-3815.25 408,-3815.25"/>
-<polygon fill="#000000" stroke="none" points="408,-3813.25 408,-3815.25 702,-3815.25 702,-3813.25 408,-3813.25"/>
-<text text-anchor="start" x="409.88" y="-3797.95" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
-<text text-anchor="start" x="529.62" y="-3797.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="587.75" y="-3797.95" font-family="arial" font-size="14.00">Fuse Block:5:F3+</text>
-<polygon fill="#000000" stroke="none" points="408,-3791.25 408,-3793.25 702,-3793.25 702,-3791.25 408,-3791.25"/>
-<polygon fill="#ff0000" stroke="none" points="408,-3789.25 408,-3791.25 702,-3791.25 702,-3789.25 408,-3789.25"/>
-<polygon fill="#000000" stroke="none" points="408,-3787.25 408,-3789.25 702,-3789.25 702,-3787.25 408,-3787.25"/>
-<text text-anchor="start" x="466.12" y="-3771.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="702,-3907.75 408,-3907.75 408,-3766.75 702,-3766.75 702,-3907.75"/>
+<polygon fill="none" stroke="black" points="408,-3883.25 408,-3907.75 702,-3907.75 702,-3883.25 408,-3883.25"/>
+<text text-anchor="start" x="543.75" y="-3890.45" font-family="arial" font-size="14.00">W6</text>
+<polygon fill="none" stroke="black" points="408,-3858.75 408,-3883.25 472.5,-3883.25 472.5,-3858.75 408,-3858.75"/>
+<text text-anchor="start" x="432.75" y="-3865.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="472.5,-3858.75 472.5,-3883.25 577.5,-3883.25 577.5,-3858.75 472.5,-3858.75"/>
+<text text-anchor="start" x="497.25" y="-3865.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="577.5,-3858.75 577.5,-3883.25 702,-3883.25 702,-3858.75 577.5,-3858.75"/>
+<text text-anchor="start" x="602.25" y="-3865.95" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="466.12" y="-3843.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="409.88" y="-3823.45" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
+<text text-anchor="start" x="529.62" y="-3823.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="587.75" y="-3823.45" font-family="arial" font-size="14.00">Fuse Block:1:F1+</text>
+<polygon fill="#000000" stroke="none" points="408,-3816.75 408,-3818.75 702,-3818.75 702,-3816.75 408,-3816.75"/>
+<polygon fill="#ff0000" stroke="none" points="408,-3814.75 408,-3816.75 702,-3816.75 702,-3814.75 408,-3814.75"/>
+<polygon fill="#000000" stroke="none" points="408,-3812.75 408,-3814.75 702,-3814.75 702,-3812.75 408,-3812.75"/>
+<text text-anchor="start" x="409.88" y="-3797.45" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
+<text text-anchor="start" x="529.62" y="-3797.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="587.75" y="-3797.45" font-family="arial" font-size="14.00">Fuse Block:5:F3+</text>
+<polygon fill="#000000" stroke="none" points="408,-3790.75 408,-3792.75 702,-3792.75 702,-3790.75 408,-3790.75"/>
+<polygon fill="#ff0000" stroke="none" points="408,-3788.75 408,-3790.75 702,-3790.75 702,-3788.75 408,-3788.75"/>
+<polygon fill="#000000" stroke="none" points="408,-3786.75 408,-3788.75 702,-3788.75 702,-3786.75 408,-3786.75"/>
+<text text-anchor="start" x="466.12" y="-3771.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Positive Bus Bar&#45;&#45;W6 -->
-<g id="edge20" class="edge">
+<g id="edge23" class="edge">
<title>Positive Bus Bar:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3789C302.08,-3789.76 322.06,-3815.01 407,-3814.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3791C300.51,-3791 320.49,-3816.25 407,-3816.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3793C298.94,-3792.24 318.92,-3817.49 407,-3818.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3788.5C302.08,-3789.26 322.06,-3814.51 407,-3813.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3790.5C300.51,-3790.5 320.49,-3815.75 407,-3815.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3792.5C298.94,-3791.74 318.92,-3816.99 407,-3817.75"/>
</g>
<!-- Positive Bus Bar&#45;&#45;W6 -->
-<g id="edge22" class="edge">
+<g id="edge25" class="edge">
<title>Positive Bus Bar:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3789C299.71,-3789 321.15,-3788.25 407,-3788.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3791C299.78,-3791 321.22,-3790.25 407,-3790.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3793C299.85,-3793 321.29,-3792.25 407,-3792.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3788.5C299.71,-3788.5 321.15,-3787.75 407,-3787.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3790.5C299.78,-3790.5 321.22,-3789.75 407,-3789.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3792.5C299.85,-3792.5 321.29,-3791.75 407,-3791.75"/>
</g>
<!-- W8 -->
<g id="node31" class="node">
<title>W8</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-3743.25 398.5,-3743.25 398.5,-3628.25 711.5,-3628.25 711.5,-3743.25"/>
-<polygon fill="none" stroke="black" points="398.5,-3718.75 398.5,-3743.25 711.5,-3743.25 711.5,-3718.75 398.5,-3718.75"/>
-<text text-anchor="start" x="543.75" y="-3725.95" font-family="arial" font-size="14.00">W8</text>
-<polygon fill="none" stroke="black" points="398.5,-3694.25 398.5,-3718.75 466.58,-3718.75 466.58,-3694.25 398.5,-3694.25"/>
-<text text-anchor="start" x="425.04" y="-3701.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="466.58,-3694.25 466.58,-3718.75 575.17,-3718.75 575.17,-3694.25 466.58,-3694.25"/>
-<text text-anchor="start" x="493.12" y="-3701.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="575.17,-3694.25 575.17,-3718.75 711.5,-3718.75 711.5,-3694.25 575.17,-3694.25"/>
-<text text-anchor="start" x="601.71" y="-3701.45" font-family="arial" font-size="14.00">170.0 Inches</text>
-<text text-anchor="start" x="456.62" y="-3678.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="400.38" y="-3658.95" font-family="arial" font-size="14.00">Positive Bus Bar:4</text>
-<text text-anchor="start" x="520.12" y="-3658.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="578.38" y="-3658.95" font-family="arial" font-size="14.00">KillSwitch:2:common</text>
-<polygon fill="#000000" stroke="none" points="398.5,-3652.25 398.5,-3654.25 711.5,-3654.25 711.5,-3652.25 398.5,-3652.25"/>
-<polygon fill="#ff0000" stroke="none" points="398.5,-3650.25 398.5,-3652.25 711.5,-3652.25 711.5,-3650.25 398.5,-3650.25"/>
-<polygon fill="#000000" stroke="none" points="398.5,-3648.25 398.5,-3650.25 711.5,-3650.25 711.5,-3648.25 398.5,-3648.25"/>
-<text text-anchor="start" x="456.62" y="-3632.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-3742.75 398.5,-3742.75 398.5,-3627.75 711.5,-3627.75 711.5,-3742.75"/>
+<polygon fill="none" stroke="black" points="398.5,-3718.25 398.5,-3742.75 711.5,-3742.75 711.5,-3718.25 398.5,-3718.25"/>
+<text text-anchor="start" x="543.75" y="-3725.45" font-family="arial" font-size="14.00">W8</text>
+<polygon fill="none" stroke="black" points="398.5,-3693.75 398.5,-3718.25 466.58,-3718.25 466.58,-3693.75 398.5,-3693.75"/>
+<text text-anchor="start" x="425.04" y="-3700.95" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="466.58,-3693.75 466.58,-3718.25 575.17,-3718.25 575.17,-3693.75 466.58,-3693.75"/>
+<text text-anchor="start" x="493.12" y="-3700.95" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="575.17,-3693.75 575.17,-3718.25 711.5,-3718.25 711.5,-3693.75 575.17,-3693.75"/>
+<text text-anchor="start" x="601.71" y="-3700.95" font-family="arial" font-size="14.00">170.0 Inches</text>
+<text text-anchor="start" x="456.62" y="-3678.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="400.38" y="-3658.45" font-family="arial" font-size="14.00">Positive Bus Bar:4</text>
+<text text-anchor="start" x="520.12" y="-3658.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="578.38" y="-3658.45" font-family="arial" font-size="14.00">KillSwitch:2:common</text>
+<polygon fill="#000000" stroke="none" points="398.5,-3651.75 398.5,-3653.75 711.5,-3653.75 711.5,-3651.75 398.5,-3651.75"/>
+<polygon fill="#ff0000" stroke="none" points="398.5,-3649.75 398.5,-3651.75 711.5,-3651.75 711.5,-3649.75 398.5,-3649.75"/>
+<polygon fill="#000000" stroke="none" points="398.5,-3647.75 398.5,-3649.75 711.5,-3649.75 711.5,-3647.75 398.5,-3647.75"/>
+<text text-anchor="start" x="456.62" y="-3632.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Positive Bus Bar&#45;&#45;W8 -->
-<g id="edge26" class="edge">
+<g id="edge29" class="edge">
<title>Positive Bus Bar:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3764.5C308.31,-3766.66 299.2,-3651.41 397.5,-3649.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3766.5C310.31,-3766.5 301.19,-3651.25 397.5,-3651.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3768.5C312.3,-3766.34 303.19,-3651.09 397.5,-3653.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3764C308.31,-3766.16 299.2,-3650.91 397.5,-3648.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3766C310.31,-3766 301.19,-3650.75 397.5,-3650.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3768C312.3,-3765.84 303.19,-3650.59 397.5,-3652.75"/>
</g>
<!-- Negative Bus Bar -->
<g id="node17" class="node">
<title>Negative Bus Bar</title>
-<polygon fill="#ffffff" stroke="black" points="2283,-2923.25 2093,-2923.25 2093,-2776.25 2283,-2776.25 2283,-2923.25"/>
-<polygon fill="none" stroke="black" points="2093,-2898.75 2093,-2923.25 2283,-2923.25 2283,-2898.75 2093,-2898.75"/>
-<text text-anchor="start" x="2133.25" y="-2905.95" font-family="arial" font-size="14.00">Negative Bus Bar</text>
-<polygon fill="none" stroke="black" points="2093,-2874.25 2093,-2898.75 2243.5,-2898.75 2243.5,-2874.25 2093,-2874.25"/>
-<text text-anchor="start" x="2097" y="-2881.45" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
-<polygon fill="none" stroke="black" points="2243.5,-2874.25 2243.5,-2898.75 2283,-2898.75 2283,-2874.25 2243.5,-2874.25"/>
-<text text-anchor="start" x="2247.5" y="-2881.45" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="2093,-2849.75 2093,-2874.25 2283,-2874.25 2283,-2849.75 2093,-2849.75"/>
-<text text-anchor="start" x="2183.88" y="-2856.95" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2093,-2825.25 2093,-2849.75 2283,-2849.75 2283,-2825.25 2093,-2825.25"/>
-<text text-anchor="start" x="2183.88" y="-2832.45" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2093,-2800.75 2093,-2825.25 2283,-2825.25 2283,-2800.75 2093,-2800.75"/>
-<text text-anchor="start" x="2183.88" y="-2807.95" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2093,-2776.25 2093,-2800.75 2283,-2800.75 2283,-2776.25 2093,-2776.25"/>
-<text text-anchor="start" x="2183.88" y="-2783.45" font-family="arial" font-size="14.00">4</text>
+<polygon fill="#ffffff" stroke="black" points="2283,-2804.75 2093,-2804.75 2093,-2657.75 2283,-2657.75 2283,-2804.75"/>
+<polygon fill="none" stroke="black" points="2093,-2780.25 2093,-2804.75 2283,-2804.75 2283,-2780.25 2093,-2780.25"/>
+<text text-anchor="start" x="2133.25" y="-2787.45" font-family="arial" font-size="14.00">Negative Bus Bar</text>
+<polygon fill="none" stroke="black" points="2093,-2755.75 2093,-2780.25 2243.5,-2780.25 2243.5,-2755.75 2093,-2755.75"/>
+<text text-anchor="start" x="2097" y="-2762.95" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
+<polygon fill="none" stroke="black" points="2243.5,-2755.75 2243.5,-2780.25 2283,-2780.25 2283,-2755.75 2243.5,-2755.75"/>
+<text text-anchor="start" x="2247.5" y="-2762.95" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="2093,-2731.25 2093,-2755.75 2283,-2755.75 2283,-2731.25 2093,-2731.25"/>
+<text text-anchor="start" x="2183.88" y="-2738.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2093,-2706.75 2093,-2731.25 2283,-2731.25 2283,-2706.75 2093,-2706.75"/>
+<text text-anchor="start" x="2183.88" y="-2713.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2093,-2682.25 2093,-2706.75 2283,-2706.75 2283,-2682.25 2093,-2682.25"/>
+<text text-anchor="start" x="2183.88" y="-2689.45" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2093,-2657.75 2093,-2682.25 2283,-2682.25 2283,-2657.75 2093,-2657.75"/>
+<text text-anchor="start" x="2183.88" y="-2664.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- _Engine GND_1 -->
<g id="node18" class="node">
<title>_Engine GND_1</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-3113 2144.25,-3113 2144.25,-3088.5 2231.75,-3088.5 2231.75,-3113"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3088.5 2144.25,-3113 2231.75,-3113 2231.75,-3088.5 2144.25,-3088.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-3088.5 2144.25,-3113 2231.75,-3113 2231.75,-3088.5 2144.25,-3088.5"/>
-<text text-anchor="start" x="2148.25" y="-3095.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-3138.5 2144.25,-3138.5 2144.25,-3114 2231.75,-3114 2231.75,-3138.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3114 2144.25,-3138.5 2231.75,-3138.5 2231.75,-3114 2144.25,-3114"/>
+<polygon fill="none" stroke="black" points="2144.25,-3114 2144.25,-3138.5 2231.75,-3138.5 2231.75,-3114 2144.25,-3114"/>
+<text text-anchor="start" x="2148.25" y="-3121.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_2 -->
<g id="node19" class="node">
<title>_Engine GND_2</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-3064 2144.25,-3064 2144.25,-3039.5 2231.75,-3039.5 2231.75,-3064"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3039.5 2144.25,-3064 2231.75,-3064 2231.75,-3039.5 2144.25,-3039.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-3039.5 2144.25,-3064 2231.75,-3064 2231.75,-3039.5 2144.25,-3039.5"/>
-<text text-anchor="start" x="2148.25" y="-3046.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-3089.5 2144.25,-3089.5 2144.25,-3065 2231.75,-3065 2231.75,-3089.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-3065 2144.25,-3089.5 2231.75,-3089.5 2231.75,-3065 2144.25,-3065"/>
+<polygon fill="none" stroke="black" points="2144.25,-3065 2144.25,-3089.5 2231.75,-3089.5 2231.75,-3065 2144.25,-3065"/>
+<text text-anchor="start" x="2148.25" y="-3072.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_3 -->
<g id="node20" class="node">
<title>_Engine GND_3</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-2444 2144.25,-2444 2144.25,-2419.5 2231.75,-2419.5 2231.75,-2444"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2419.5 2144.25,-2444 2231.75,-2444 2231.75,-2419.5 2144.25,-2419.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-2419.5 2144.25,-2444 2231.75,-2444 2231.75,-2419.5 2144.25,-2419.5"/>
-<text text-anchor="start" x="2148.25" y="-2426.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-2439.5 2144.25,-2439.5 2144.25,-2415 2231.75,-2415 2231.75,-2439.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2415 2144.25,-2439.5 2231.75,-2439.5 2231.75,-2415 2144.25,-2415"/>
+<polygon fill="none" stroke="black" points="2144.25,-2415 2144.25,-2439.5 2231.75,-2439.5 2231.75,-2415 2144.25,-2415"/>
+<text text-anchor="start" x="2148.25" y="-2422.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_4 -->
<g id="node21" class="node">
<title>_Engine GND_4</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-2395 2144.25,-2395 2144.25,-2370.5 2231.75,-2370.5 2231.75,-2395"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2370.5 2144.25,-2395 2231.75,-2395 2231.75,-2370.5 2144.25,-2370.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-2370.5 2144.25,-2395 2231.75,-2395 2231.75,-2370.5 2144.25,-2370.5"/>
-<text text-anchor="start" x="2148.25" y="-2377.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-2390.5 2144.25,-2390.5 2144.25,-2366 2231.75,-2366 2231.75,-2390.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2366 2144.25,-2390.5 2231.75,-2390.5 2231.75,-2366 2144.25,-2366"/>
+<polygon fill="none" stroke="black" points="2144.25,-2366 2144.25,-2390.5 2231.75,-2390.5 2231.75,-2366 2144.25,-2366"/>
+<text text-anchor="start" x="2148.25" y="-2373.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_5 -->
<g id="node22" class="node">
<title>_Engine GND_5</title>
-<polygon fill="#ffffff" stroke="black" points="1118.25,-4773 1030.75,-4773 1030.75,-4748.5 1118.25,-4748.5 1118.25,-4773"/>
-<polygon fill="#aaaaaa" stroke="none" points="1030.75,-4748.5 1030.75,-4773 1118.25,-4773 1118.25,-4748.5 1030.75,-4748.5"/>
-<polygon fill="none" stroke="black" points="1030.75,-4748.5 1030.75,-4773 1118.25,-4773 1118.25,-4748.5 1030.75,-4748.5"/>
-<text text-anchor="start" x="1034.75" y="-4755.7" font-family="arial" font-size="14.00">Engine GND</text>
-</g>
-<!-- W12 -->
-<g id="node36" class="node">
-<title>W12</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1733.75,-4852.5 1475.25,-4852.5 1475.25,-4713 1733.75,-4713 1733.75,-4852.5"/>
-<polygon fill="none" stroke="black" points="1475.25,-4828 1475.25,-4852.5 1733.75,-4852.5 1733.75,-4828 1475.25,-4828"/>
-<text text-anchor="start" x="1589.12" y="-4835.2" font-family="arial" font-size="14.00">W12</text>
-<polygon fill="none" stroke="black" points="1475.25,-4803.5 1475.25,-4828 1527.92,-4828 1527.92,-4803.5 1475.25,-4803.5"/>
-<text text-anchor="start" x="1494.08" y="-4810.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1527.92,-4803.5 1527.92,-4828 1621.08,-4828 1621.08,-4803.5 1527.92,-4803.5"/>
-<text text-anchor="start" x="1546.75" y="-4810.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1621.08,-4803.5 1621.08,-4828 1733.75,-4828 1733.75,-4803.5 1621.08,-4803.5"/>
-<text text-anchor="start" x="1639.92" y="-4810.7" font-family="arial" font-size="14.00">60.0 Inches</text>
-<text text-anchor="start" x="1487.79" y="-4788.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1516.88" y="-4768.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1595.71" y="-4768.2" font-family="arial" font-size="14.00">Tachometer:B:GND</text>
-<polygon fill="#000000" stroke="none" points="1475.25,-4761.5 1475.25,-4763.5 1733.75,-4763.5 1733.75,-4761.5 1475.25,-4761.5"/>
-<polygon fill="#000000" stroke="none" points="1475.25,-4759.5 1475.25,-4761.5 1733.75,-4761.5 1733.75,-4759.5 1475.25,-4759.5"/>
-<polygon fill="#000000" stroke="none" points="1475.25,-4757.5 1475.25,-4759.5 1733.75,-4759.5 1733.75,-4757.5 1475.25,-4757.5"/>
-<text text-anchor="start" x="1487.79" y="-4742.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1475.25,-4713 1475.25,-4737.5 1733.75,-4737.5 1733.75,-4713 1475.25,-4713"/>
-<text text-anchor="start" x="1479.25" y="-4720.2" font-family="arial" font-size="14.00">Distance is from ECU to engine ground.</text>
-</g>
-<!-- _Engine GND_5&#45;&#45;W12 -->
-<g id="edge46" class="edge">
-<title>_Engine GND_5:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1119.25,-4758.75C1277.02,-4758.75 1316.46,-4758.5 1474.25,-4758.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1119.25,-4760.75C1277.03,-4760.75 1316.47,-4760.5 1474.25,-4760.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1119.25,-4762.75C1277.04,-4762.75 1316.48,-4762.5 1474.25,-4762.5"/>
+<polygon fill="#ffffff" stroke="black" points="3076,-4739.5 2988.5,-4739.5 2988.5,-4715 3076,-4715 3076,-4739.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2988.5,-4715 2988.5,-4739.5 3076,-4739.5 3076,-4715 2988.5,-4715"/>
+<polygon fill="none" stroke="black" points="2988.5,-4715 2988.5,-4739.5 3076,-4739.5 3076,-4715 2988.5,-4715"/>
+<text text-anchor="start" x="2992.5" y="-4722.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _S_1 -->
<g id="node23" class="node">
<title>_S_1</title>
-<polygon fill="#ffffff" stroke="black" points="1097.25,-1002 1051.75,-1002 1051.75,-977.5 1097.25,-977.5 1097.25,-1002"/>
-<polygon fill="none" stroke="black" points="1051.75,-977.5 1051.75,-1002 1097.25,-1002 1097.25,-977.5 1051.75,-977.5"/>
-<text text-anchor="start" x="1055.75" y="-984.7" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1097.25,-1450.5 1051.75,-1450.5 1051.75,-1426 1097.25,-1426 1097.25,-1450.5"/>
+<polygon fill="none" stroke="black" points="1051.75,-1426 1051.75,-1450.5 1097.25,-1450.5 1097.25,-1426 1051.75,-1426"/>
+<text text-anchor="start" x="1055.75" y="-1433.2" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- W13 -->
<g id="node37" class="node">
<title>W13</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1689.25,-1081.5 1519.75,-1081.5 1519.75,-942 1689.25,-942 1689.25,-1081.5"/>
-<polygon fill="none" stroke="black" points="1519.75,-1057 1519.75,-1081.5 1689.25,-1081.5 1689.25,-1057 1519.75,-1057"/>
-<text text-anchor="start" x="1589.12" y="-1064.2" font-family="arial" font-size="14.00">W13</text>
-<polygon fill="none" stroke="black" points="1519.75,-1032.5 1519.75,-1057 1542.75,-1057 1542.75,-1032.5 1519.75,-1032.5"/>
-<text text-anchor="start" x="1523.75" y="-1039.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="1542.75,-1032.5 1542.75,-1057 1606.25,-1057 1606.25,-1032.5 1542.75,-1032.5"/>
-<text text-anchor="start" x="1546.75" y="-1039.7" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="1606.25,-1032.5 1606.25,-1057 1689.25,-1057 1689.25,-1032.5 1606.25,-1032.5"/>
-<text text-anchor="start" x="1610.25" y="-1039.7" font-family="arial" font-size="14.00">50.0 Inches</text>
-<text text-anchor="start" x="1538.29" y="-1017.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1579.38" y="-997.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="1519.75,-990.5 1519.75,-992.5 1689.25,-992.5 1689.25,-990.5 1519.75,-990.5"/>
-<polygon fill="#895956" stroke="none" points="1519.75,-988.5 1519.75,-990.5 1689.25,-990.5 1689.25,-988.5 1519.75,-988.5"/>
-<polygon fill="#000000" stroke="none" points="1519.75,-986.5 1519.75,-988.5 1689.25,-988.5 1689.25,-986.5 1519.75,-986.5"/>
-<text text-anchor="start" x="1538.29" y="-971.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1519.75,-942 1519.75,-966.5 1689.25,-966.5 1689.25,-942 1519.75,-942"/>
-<text text-anchor="start" x="1528" y="-949.2" font-family="arial" font-size="14.00">Ring Terminal On Block.</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1689.25,-1530 1519.75,-1530 1519.75,-1390.5 1689.25,-1390.5 1689.25,-1530"/>
+<polygon fill="none" stroke="black" points="1519.75,-1505.5 1519.75,-1530 1689.25,-1530 1689.25,-1505.5 1519.75,-1505.5"/>
+<text text-anchor="start" x="1589.12" y="-1512.7" font-family="arial" font-size="14.00">W13</text>
+<polygon fill="none" stroke="black" points="1519.75,-1481 1519.75,-1505.5 1542.75,-1505.5 1542.75,-1481 1519.75,-1481"/>
+<text text-anchor="start" x="1523.75" y="-1488.2" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1542.75,-1481 1542.75,-1505.5 1606.25,-1505.5 1606.25,-1481 1542.75,-1481"/>
+<text text-anchor="start" x="1546.75" y="-1488.2" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="1606.25,-1481 1606.25,-1505.5 1689.25,-1505.5 1689.25,-1481 1606.25,-1481"/>
+<text text-anchor="start" x="1610.25" y="-1488.2" font-family="arial" font-size="14.00">50.0 Inches</text>
+<text text-anchor="start" x="1538.29" y="-1465.7" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1579.38" y="-1445.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="1519.75,-1439 1519.75,-1441 1689.25,-1441 1689.25,-1439 1519.75,-1439"/>
+<polygon fill="#895956" stroke="none" points="1519.75,-1437 1519.75,-1439 1689.25,-1439 1689.25,-1437 1519.75,-1437"/>
+<polygon fill="#000000" stroke="none" points="1519.75,-1435 1519.75,-1437 1689.25,-1437 1689.25,-1435 1519.75,-1435"/>
+<text text-anchor="start" x="1538.29" y="-1419.7" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1519.75,-1390.5 1519.75,-1415 1689.25,-1415 1689.25,-1390.5 1519.75,-1390.5"/>
+<text text-anchor="start" x="1528" y="-1397.7" font-family="arial" font-size="14.00">Ring Terminal On Block.</text>
</g>
<!-- _S_1&#45;&#45;W13 -->
-<g id="edge48" class="edge">
+<g id="edge51" class="edge">
<title>_S_1:e&#45;&#45;W13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-987.75C1285.13,-987.75 1331.85,-987.5 1518.75,-987.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1098.25,-989.75C1285.14,-989.75 1331.86,-989.5 1518.75,-989.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-991.75C1285.15,-991.75 1331.87,-991.5 1518.75,-991.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-1436.25C1285.13,-1436.25 1331.85,-1436 1518.75,-1436"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1098.25,-1438.25C1285.14,-1438.25 1331.86,-1438 1518.75,-1438"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-1440.25C1285.15,-1440.25 1331.87,-1440 1518.75,-1440"/>
</g>
<!-- _Engine GND_6 -->
<g id="node24" class="node">
<title>_Engine GND_6</title>
-<polygon fill="#ffffff" stroke="black" points="2231.75,-1002 2144.25,-1002 2144.25,-977.5 2231.75,-977.5 2231.75,-1002"/>
-<polygon fill="#aaaaaa" stroke="none" points="2144.25,-977.5 2144.25,-1002 2231.75,-1002 2231.75,-977.5 2144.25,-977.5"/>
-<polygon fill="none" stroke="black" points="2144.25,-977.5 2144.25,-1002 2231.75,-1002 2231.75,-977.5 2144.25,-977.5"/>
-<text text-anchor="start" x="2148.25" y="-984.7" font-family="arial" font-size="14.00">Engine GND</text>
+<polygon fill="#ffffff" stroke="black" points="2231.75,-1450.5 2144.25,-1450.5 2144.25,-1426 2231.75,-1426 2231.75,-1450.5"/>
+<polygon fill="#aaaaaa" stroke="none" points="2144.25,-1426 2144.25,-1450.5 2231.75,-1450.5 2231.75,-1426 2144.25,-1426"/>
+<polygon fill="none" stroke="black" points="2144.25,-1426 2144.25,-1450.5 2231.75,-1450.5 2231.75,-1426 2144.25,-1426"/>
+<text text-anchor="start" x="2148.25" y="-1433.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- W1&#45;&#45;Coil Pack 1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;Coil Pack 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C1074.28,-2501.55 617.62,-3240.3 960,-3237.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C1072.58,-2500.5 615.92,-3239.25 960,-3239.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C1070.88,-2499.45 614.22,-3238.2 960,-3241.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C993.68,-2077.49 698.7,-3239.24 960,-3236.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C991.74,-2077 696.76,-3238.75 960,-3238.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C989.8,-2076.51 694.82,-3238.26 960,-3240.75"/>
</g>
<!-- W1&#45;&#45;Coil Pack 2 -->
-<g id="edge3" class="edge">
+<g id="edge4" class="edge">
<title>W1:e&#45;&#45;Coil Pack 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C831.45,-2498.5 857.17,-2499.25 960,-2499.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C831.39,-2500.5 857.11,-2501.25 960,-2501.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C831.33,-2502.5 857.05,-2503.25 960,-2503.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C944.92,-2077.85 747.21,-2501.6 960,-2498.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C943.11,-2077 745.39,-2500.75 960,-2500.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C941.29,-2076.15 743.58,-2499.9 960,-2502.75"/>
</g>
<!-- W1&#45;&#45;Coil Pack 3 -->
-<g id="edge4" class="edge">
+<g id="edge6" class="edge">
<title>W1:e&#45;&#45;Coil Pack 3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C919.98,-2501.28 764.84,-2133.03 960,-2130.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C921.82,-2500.5 766.68,-2132.25 960,-2132.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C923.66,-2499.72 768.52,-2131.47 960,-2134.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C836.11,-2076.31 856.15,-2131.06 960,-2129.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C834.23,-2077 854.27,-2131.75 960,-2131.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C832.35,-2077.69 852.39,-2132.44 960,-2133.75"/>
</g>
<!-- W1&#45;&#45;Coil Pack 4 -->
-<g id="edge5" class="edge">
+<g id="edge8" class="edge">
<title>W1:e&#45;&#45;Coil Pack 4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2498.5C924.23,-2501.28 767.96,-2871.03 960,-2868.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2500.5C922.39,-2500.5 766.11,-2870.25 960,-2870.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2502.5C920.54,-2499.72 764.27,-2869.47 960,-2872.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C1097.24,-2078.07 594.64,-2870.82 960,-2867.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C1095.55,-2077 592.95,-2869.75 960,-2869.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C1093.86,-2075.93 591.26,-2868.68 960,-2871.75"/>
</g>
<!-- W2&#45;&#45;Fuel Injector 1 -->
-<g id="edge8" class="edge">
+<g id="edge11" class="edge">
<title>W2:e&#45;&#45;Fuel Injector 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-890.25C805.1,-890.25 827.99,-890.75 919.5,-890.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-892.25C805.06,-892.25 827.94,-892.75 919.5,-892.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-894.25C805.01,-894.25 827.9,-894.75 919.5,-894.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1338.75C805.1,-1338.75 827.99,-1339.25 919.5,-1339.25"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-1340.75C805.06,-1340.75 827.94,-1341.25 919.5,-1341.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1342.75C805.01,-1342.75 827.9,-1343.25 919.5,-1343.25"/>
</g>
<!-- W2&#45;&#45;Fuel Injector 2 -->
-<g id="edge7" class="edge">
+<g id="edge10" class="edge">
<title>W2:e&#45;&#45;Fuel Injector 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-890.25C893.51,-893.06 735.83,-539.56 919.5,-536.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-892.25C895.34,-892.25 737.66,-538.75 919.5,-538.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-894.25C897.17,-891.44 739.49,-537.94 919.5,-540.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1338.75C893.51,-1341.56 735.83,-988.06 919.5,-985.25"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-1340.75C895.34,-1340.75 737.66,-987.25 919.5,-987.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1342.75C897.17,-1339.94 739.49,-986.44 919.5,-989.25"/>
</g>
<!-- W3&#45;&#45;ECU1 -->
-<g id="edge10" class="edge">
+<g id="edge13" class="edge">
<title>W3:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1856.25C794.09,-1856.25 810.09,-1857 874,-1857"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1858.25C794,-1858.25 810,-1859 874,-1859"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1860.25C793.91,-1860.25 809.91,-1861 874,-1861"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1858.75C793.73,-1858.77 809.71,-1856.52 874,-1856.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1860.75C794.01,-1860.75 809.99,-1858.5 874,-1858.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1862.75C794.29,-1862.73 810.27,-1860.48 874,-1860.5"/>
</g>
<!-- W3&#45;&#45;ECU1 -->
-<g id="edge12" class="edge">
+<g id="edge15" class="edge">
<title>W3:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1830.25C794.35,-1830.28 810.33,-1833.03 874,-1833"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1832.25C794.01,-1832.25 809.99,-1835 874,-1835"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1834.25C793.67,-1834.22 809.65,-1836.97 874,-1837"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1832.75C793.97,-1832.75 809.97,-1832.5 874,-1832.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1834.75C794,-1834.75 810,-1834.5 874,-1834.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1836.75C794.03,-1836.75 810.03,-1836.5 874,-1836.5"/>
</g>
<!-- W3&#45;&#45;ECU1 -->
-<g id="edge14" class="edge">
+<g id="edge17" class="edge">
<title>W3:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1804.25C794.61,-1804.33 810.54,-1809.08 874,-1809"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1806.25C794.03,-1806.25 809.97,-1811 874,-1811"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1808.25C793.46,-1808.17 809.39,-1812.92 874,-1813"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1806.75C794.22,-1806.76 810.21,-1808.51 874,-1808.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1808.75C794,-1808.75 810,-1810.5 874,-1810.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1810.75C793.79,-1810.74 809.78,-1812.49 874,-1812.5"/>
</g>
<!-- W3&#45;&#45;_S_1 -->
-<g id="edge15" class="edge">
+<g id="edge18" class="edge">
<title>W3:e&#45;&#45;_S_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1804.25C1086.04,-1807.56 614.72,-1263.85 872.61,-1013.31 932.39,-958.16 972.61,-988.15 1050.75,-987.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1806.25C1087.55,-1806.25 616.23,-1262.54 874,-1014.75 931.2,-959.77 971.41,-989.75 1050.75,-989.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1808.25C1089.06,-1804.94 617.75,-1261.23 875.39,-1016.19 930,-961.37 970.22,-991.35 1050.75,-991.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1806.75C894.67,-1809.82 740.7,-1566.08 872.78,-1461.67 937.89,-1413.06 972.54,-1436.6 1050.75,-1436.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1808.75C896.36,-1808.75 742.39,-1565.01 874,-1463.25 936.76,-1414.72 971.41,-1438.25 1050.75,-1438.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1810.75C898.05,-1807.68 744.09,-1563.94 875.22,-1464.83 935.64,-1416.37 970.29,-1439.9 1050.75,-1440.25"/>
</g>
<!-- W4&#45;&#45;Fuse Block -->
-<g id="edge17" class="edge">
+<g id="edge20" class="edge">
<title>W4:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4275.25C1865.44,-4277.75 1818.69,-4097 1934,-4094.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-4277.25C1867.37,-4277.25 1820.63,-4096.5 1934,-4096.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4279.25C1869.31,-4276.75 1822.56,-4096 1934,-4098.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3996.75C1838.8,-3998.58 1845.21,-3922.83 1934,-3921"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-3998.75C1840.8,-3998.75 1847.2,-3923 1934,-3923"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4000.75C1842.79,-3998.92 1849.2,-3923.17 1934,-3925"/>
</g>
<!-- W4&#45;&#45;Fuse Block -->
-<g id="edge19" class="edge">
+<g id="edge22" class="edge">
<title>W4:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4249.25C1872.58,-4251.83 1811.59,-4049.08 1934,-4046.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-4251.25C1874.5,-4251.25 1813.5,-4048.5 1934,-4048.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-4253.25C1876.41,-4250.67 1815.42,-4047.92 1934,-4050.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3970.75C1843.04,-3972.79 1840.97,-3875.04 1934,-3873"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-3972.75C1845.04,-3972.75 1842.96,-3875 1934,-3875"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3974.75C1847.03,-3972.71 1844.96,-3874.96 1934,-3877"/>
</g>
<!-- W6&#45;&#45;Fuse Block -->
-<g id="edge21" class="edge">
+<g id="edge24" class="edge">
<title>W6:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3814.25C999.65,-3817.47 652.33,-4266.04 875.31,-4456.24 1182.97,-4722.59 1456.39,-4753.44 1788.85,-4519.11 1943.01,-4413.16 1743.3,-4121.63 1934,-4118.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3816.25C998.07,-3816.25 650.75,-4264.81 874,-4457.75 1182.75,-4724.58 1456.16,-4755.43 1790,-4520.75 1944.66,-4412.03 1744.95,-4120.5 1934,-4120.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3818.25C996.49,-3815.03 649.17,-4263.59 872.69,-4459.26 1182.53,-4726.56 1455.94,-4757.42 1791.15,-4522.39 1946.31,-4410.9 1746.6,-4119.37 1934,-4122.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3813.75C912.22,-3816.81 738,-4096.04 875.5,-4248.92 1057.04,-4454.2 1152.58,-4474.91 1419.49,-4542.31 1580.08,-4583.03 1661.67,-4644.67 1788.76,-4542.68 2002.95,-4376.56 1659.39,-3948.25 1934,-3945"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3815.75C910.53,-3815.75 736.3,-4094.99 874,-4250.25 1056.61,-4456.16 1152.16,-4476.87 1419,-4544.25 1578.87,-4584.62 1660.46,-4646.27 1790,-4544.25 2004.51,-4375.31 1660.95,-3947 1934,-3947"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3817.75C908.83,-3814.69 734.6,-4093.93 872.5,-4251.58 1056.19,-4458.11 1151.73,-4478.82 1418.51,-4546.19 1577.66,-4586.22 1659.25,-4647.86 1791.24,-4545.82 2006.07,-4374.06 1662.51,-3945.75 1934,-3949"/>
</g>
<!-- W6&#45;&#45;Fuse Block -->
-<g id="edge23" class="edge">
+<g id="edge26" class="edge">
<title>W6:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3788.25C944.23,-3788.28 1578.24,-3680.94 1790.97,-3798 1895.64,-3857.98 1817.18,-4025.35 1934,-4022.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3790.25C944.56,-3790.25 1578.57,-3682.91 1790,-3799.75 1893.83,-3857.13 1815.37,-4024.5 1934,-4024.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3792.25C944.9,-3792.22 1578.91,-3684.88 1789.03,-3801.5 1892.02,-3856.28 1813.56,-4023.65 1934,-4026.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3787.75C1185.12,-3788.03 1313.39,-3712.52 1790.35,-3797.28 1858.9,-3810.77 1867.94,-3850.56 1934,-3849"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3789.75C1186.13,-3789.75 1314.41,-3714.24 1790,-3799.25 1856.95,-3811.22 1865.99,-3851 1934,-3851"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3791.75C1187.14,-3791.47 1315.42,-3715.97 1789.65,-3801.22 1855,-3811.66 1864.04,-3851.44 1934,-3853"/>
</g>
<!-- W7&#45;&#45;Fuse Block -->
-<g id="edge25" class="edge">
+<g id="edge28" class="edge">
<title>W7:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3832.25C1867.21,-3834.71 1828.18,-4000.96 1934,-3998.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1757.5,-3834.25C1865.26,-3834.25 1826.24,-4000.5 1934,-4000.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3836.25C1863.32,-3833.79 1824.29,-4000.04 1934,-4002.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3831.75C1835.35,-3831.86 1854.84,-3825.11 1934,-3825"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1757.5,-3833.75C1836,-3833.75 1855.5,-3827 1934,-3827"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3835.75C1836.66,-3835.64 1856.15,-3828.89 1934,-3829"/>
</g>
<!-- W8&#45;&#45;KillSwitch -->
-<g id="edge27" class="edge">
+<g id="edge30" class="edge">
<title>W8:e&#45;&#45;KillSwitch:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3649.25C805.23,-3649.25 828.4,-3650 921,-3650"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-3651.25C805.17,-3651.25 828.33,-3652 921,-3652"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3653.25C805.1,-3653.25 828.27,-3654 921,-3654"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3648.75C805.23,-3648.75 828.4,-3649.5 921,-3649.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-3650.75C805.17,-3650.75 828.33,-3651.5 921,-3651.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3652.75C805.1,-3652.75 828.27,-3653.5 921,-3653.5"/>
</g>
<!-- W10&#45;&#45;_Engine GND_1 -->
-<g id="edge29" class="edge">
+<g id="edge32" class="edge">
<title>W10:e&#45;&#45;_Engine GND_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3086.25C1911.77,-3086.32 1958.02,-3098.82 2143.25,-3098.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3088.25C1911.25,-3088.25 1957.5,-3100.75 2143.25,-3100.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3090.25C1910.73,-3090.18 1956.98,-3102.68 2143.25,-3102.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3112.75C1911.72,-3112.81 1958,-3124.31 2143.25,-3124.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3114.75C1911.24,-3114.75 1957.51,-3126.25 2143.25,-3126.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3116.75C1910.75,-3116.69 1957.03,-3128.19 2143.25,-3128.25"/>
</g>
<!-- W10&#45;&#45;_Engine GND_2 -->
-<g id="edge31" class="edge">
+<g id="edge34" class="edge">
<title>W10:e&#45;&#45;_Engine GND_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3060.25C1910.78,-3060.3 1957.08,-3049.8 2143.25,-3049.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3062.25C1911.23,-3062.25 1957.52,-3051.75 2143.25,-3051.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3064.25C1911.67,-3064.2 1957.97,-3053.7 2143.25,-3053.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3086.75C1910.75,-3086.81 1957.03,-3075.31 2143.25,-3075.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-3088.75C1911.24,-3088.75 1957.51,-3077.25 2143.25,-3077.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-3090.75C1911.72,-3090.69 1958,-3079.19 2143.25,-3079.25"/>
</g>
<!-- W19&#45;&#45;_Engine GND_3 -->
-<g id="edge33" class="edge">
+<g id="edge36" class="edge">
<title>W19:e&#45;&#45;_Engine GND_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2418.25C1911.72,-2418.31 1958,-2429.81 2143.25,-2429.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2420.25C1911.24,-2420.25 1957.51,-2431.75 2143.25,-2431.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2422.25C1910.75,-2422.19 1957.03,-2433.69 2143.25,-2433.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2413.75C1911.72,-2413.81 1958,-2425.31 2143.25,-2425.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2415.75C1911.24,-2415.75 1957.51,-2427.25 2143.25,-2427.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2417.75C1910.75,-2417.69 1957.03,-2429.19 2143.25,-2429.25"/>
</g>
<!-- W19&#45;&#45;_Engine GND_4 -->
-<g id="edge35" class="edge">
+<g id="edge38" class="edge">
<title>W19:e&#45;&#45;_Engine GND_4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2392.25C1910.75,-2392.31 1957.03,-2380.81 2143.25,-2380.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2394.25C1911.24,-2394.25 1957.51,-2382.75 2143.25,-2382.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2396.25C1911.72,-2396.19 1958,-2384.69 2143.25,-2384.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2387.75C1910.75,-2387.81 1957.03,-2376.31 2143.25,-2376.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2389.75C1911.24,-2389.75 1957.51,-2378.25 2143.25,-2378.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2391.75C1911.72,-2391.69 1958,-2380.19 2143.25,-2380.25"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge37" class="edge">
+<g id="edge40" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2826.25C1923.81,-2827.01 1955.05,-2787.26 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2828.25C1925.38,-2828.25 1956.62,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2830.25C1926.95,-2829.49 1958.19,-2789.74 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2707.75C1923.81,-2708.51 1955.05,-2668.76 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2709.75C1925.38,-2709.75 1956.62,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2711.75C1926.95,-2710.99 1958.19,-2671.24 2092,-2672"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge39" class="edge">
+<g id="edge42" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2800.25C1923.6,-2800.4 1956.87,-2786.65 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2802.25C1924.36,-2802.25 1957.64,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2804.25C1925.13,-2804.1 1958.4,-2790.35 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2681.75C1923.6,-2681.9 1956.87,-2668.15 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2683.75C1924.36,-2683.75 1957.64,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2685.75C1925.13,-2685.6 1958.4,-2671.85 2092,-2672"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge41" class="edge">
+<g id="edge44" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2774.25C1925.02,-2774.37 1958.36,-2786.62 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2776.25C1924.33,-2776.25 1957.67,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2778.25C1923.64,-2778.13 1956.98,-2790.38 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2655.75C1925.02,-2655.87 1958.36,-2668.12 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2657.75C1924.33,-2657.75 1957.67,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2659.75C1923.64,-2659.63 1956.98,-2671.88 2092,-2672"/>
</g>
<!-- W20&#45;&#45;Negative Bus Bar -->
-<g id="edge43" class="edge">
+<g id="edge46" class="edge">
<title>W20:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2748.25C1926.84,-2748.98 1958.25,-2787.23 2092,-2786.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2750.25C1925.29,-2750.25 1956.71,-2788.5 2092,-2788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2752.25C1923.75,-2751.52 1955.16,-2789.77 2092,-2790.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2629.75C1926.84,-2630.48 1958.25,-2668.73 2092,-2668"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2631.75C1925.29,-2631.75 1956.71,-2670 2092,-2670"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2633.75C1923.75,-2633.02 1955.16,-2671.27 2092,-2672"/>
</g>
<!-- W11&#45;&#45;Servo Power -->
-<g id="edge45" class="edge">
+<g id="edge48" class="edge">
<title>W11:e&#45;&#45;Servo Power:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-1457.5C809.48,-1459.12 823.09,-1389.62 924,-1388"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-1459.5C811.45,-1459.5 825.05,-1390 924,-1390"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-1461.5C813.41,-1459.88 827.02,-1390.38 924,-1392"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-536C832.4,-538.36 800.17,-363.86 924,-361.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-538C834.36,-538 802.14,-363.5 924,-363.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-540C836.33,-537.64 804.1,-363.14 924,-365.5"/>
</g>
-<!-- W12&#45;&#45;Tachometer -->
-<g id="edge47" class="edge">
-<title>W12:e&#45;&#45;Tachometer:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1734.75,-4758.5C1883.18,-4760.42 1888.57,-4900.42 2033,-4898.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1734.75,-4760.5C1881.18,-4760.5 1886.57,-4900.5 2033,-4900.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1734.75,-4762.5C1879.18,-4760.58 1884.57,-4900.58 2033,-4902.5"/>
+<!-- W12&#45;&#45;_Engine GND_5 -->
+<g id="edge50" class="edge">
+<title>W12:e&#45;&#45;_Engine GND_5:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4725C2908.53,-4725 2924.53,-4725.25 2988.5,-4725.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4727C2908.5,-4727 2924.5,-4727.25 2988.5,-4727.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4729C2908.47,-4729 2924.47,-4729.25 2988.5,-4729.25"/>
</g>
<!-- W13&#45;&#45;_Engine GND_6 -->
-<g id="edge49" class="edge">
+<g id="edge52" class="edge">
<title>W13:e&#45;&#45;_Engine GND_6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-987.5C1891.59,-987.5 1941.93,-987.75 2143.25,-987.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1690.25,-989.5C1891.58,-989.5 1941.92,-989.75 2143.25,-989.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-991.5C1891.57,-991.5 1941.91,-991.75 2143.25,-991.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-1436C1891.59,-1436 1941.93,-1436.25 2143.25,-1436.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1690.25,-1438C1891.58,-1438 1941.92,-1438.25 2143.25,-1438.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-1440C1891.57,-1440 1941.91,-1440.25 2143.25,-1440.25"/>
</g>
<!-- W14&#45;&#45;Fuse Block -->
-<g id="edge51" class="edge">
+<g id="edge54" class="edge">
<title>W14:e&#45;&#45;Fuse Block:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-4110.25C1827.32,-4111.44 1845.03,-4071.69 1934,-4070.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1742,-4112.25C1829.14,-4112.25 1846.86,-4072.5 1934,-4072.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-4114.25C1830.97,-4113.06 1848.68,-4073.31 1934,-4074.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-3632.75C1889.05,-3635.45 1790.7,-3899.7 1934,-3897"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1742,-3634.75C1887.17,-3634.75 1788.83,-3899 1934,-3899"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-3636.75C1885.3,-3634.05 1786.95,-3898.3 1934,-3901"/>
</g>
<!-- W15&#45;&#45;ECU1 -->
-<g id="edge53" class="edge">
+<g id="edge56" class="edge">
<title>W15:e&#45;&#45;ECU1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1665.25C802.23,-1667.52 785.73,-1787.27 874,-1785"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M710,-1667.25C800.25,-1667.25 783.75,-1787 874,-1787"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1669.25C798.27,-1666.98 781.77,-1786.73 874,-1789"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1667.75C801.46,-1670 786.51,-1786.75 874,-1784.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M710,-1669.75C799.47,-1669.75 784.53,-1786.5 874,-1786.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1671.75C797.49,-1669.5 782.54,-1786.25 874,-1788.5"/>
</g>
<!-- W16&#45;&#45;MAF Sensor -->
-<g id="edge55" class="edge">
+<g id="edge58" class="edge">
<title>W16:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4414.25C1885.12,-4415.12 1912.68,-4455.12 2033,-4454.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1761.5,-4416.25C1883.47,-4416.25 1911.03,-4456.25 2033,-4456.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4418.25C1881.82,-4417.38 1909.38,-4457.38 2033,-4458.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4274.75C1882.59,-4274.79 1912.69,-4280.79 2033,-4280.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1761.5,-4276.75C1882.2,-4276.75 1912.3,-4282.75 2033,-4282.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4278.75C1881.81,-4278.71 1911.91,-4284.71 2033,-4284.75"/>
</g>
<!-- W17&#45;&#45;Tachometer -->
-<g id="edge57" class="edge">
+<g id="edge60" class="edge">
<title>W17:e&#45;&#45;Tachometer:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4922.5C1891.06,-4922.5 1919.44,-4922.5 2033,-4922.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1777.5,-4924.5C1891.06,-4924.5 1919.44,-4924.5 2033,-4924.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4926.5C1891.06,-4926.5 1919.44,-4926.5 2033,-4926.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4438C1958.29,-4440.62 1856.01,-4751.62 2033,-4749"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1777.5,-4440C1956.39,-4440 1854.11,-4751 2033,-4751"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4442C1954.49,-4439.38 1852.21,-4750.38 2033,-4753"/>
</g>
<!-- W18&#45;&#45;Negative Bus Bar -->
-<g id="edge59" class="edge">
+<g id="edge62" class="edge">
<title>W18:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3971.25C1766.3,-3972.13 1774.41,-3960.12 1788.3,-3937.7 2004.62,-3591.84 1774.81,-3407.58 1932.15,-3026.98 1977.66,-2918.52 1971.51,-2813.12 2092,-2811"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3973.25C1767.95,-3973.25 1776.07,-3961.24 1790,-3938.75 2005.88,-3590.28 1776.06,-3406.02 1934,-3027.75 1979.66,-2918.41 1973.51,-2813 2092,-2813"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3975.25C1769.61,-3974.37 1777.73,-3962.36 1791.7,-3939.8 2007.13,-3588.72 1777.31,-3404.46 1935.85,-3028.52 1981.65,-2918.29 1975.5,-2812.88 2092,-2815"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-4135.75C2069.59,-4138.17 1760,-2694.92 2092,-2692.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-4137.75C2071.54,-4137.75 1761.96,-2694.5 2092,-2694.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-4139.75C2073.5,-4137.33 1763.91,-2694.08 2092,-2696.5"/>
</g>
<!-- W21&#45;&#45;LSU -->
-<g id="edge61" class="edge">
+<g id="edge64" class="edge">
<title>W21:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M682,-467.25C846.84,-469.85 757.34,-184.85 926,-182.25"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M682,-469.25C848.75,-469.25 759.25,-184.25 926,-184.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M682,-471.25C850.66,-468.65 761.16,-183.65 926,-186.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M682,-1024.75C886.13,-1027.53 718.19,-633.53 926,-630.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M682,-1026.75C887.97,-1026.75 720.03,-632.75 926,-632.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M682,-1028.75C889.81,-1025.97 721.87,-631.97 926,-634.75"/>
</g>
<!-- W22&#45;&#45;Negative Bus Bar -->
-<g id="edge63" class="edge">
+<g id="edge66" class="edge">
<title>W22:e&#45;&#45;Negative Bus Bar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1737.25C1928.69,-1739.4 1885.54,-2300.18 1935.9,-2455.13 1992.46,-2631.17 1910.23,-2838.24 2092,-2835.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1739.25C1926.69,-1739.25 1883.54,-2300.03 1934,-2455.75 1990.6,-2630.43 1908.38,-2837.5 2092,-2837.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1741.25C1924.7,-1739.1 1881.55,-2299.87 1932.1,-2456.37 1988.74,-2629.7 1906.52,-2836.76 2092,-2839.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-804.75C1948.71,-806.85 1878.5,-2276.87 1935.9,-2450.62 1979.22,-2582.82 1955.8,-2719.34 2092,-2717"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-806.75C1946.71,-806.75 1876.5,-2276.77 1934,-2451.25 1977.25,-2582.48 1953.83,-2719 2092,-2719"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-808.75C1944.71,-806.65 1874.5,-2276.68 1932.1,-2451.88 1975.28,-2582.14 1951.85,-2718.66 2092,-2721"/>
</g>
</g>
</svg>
diff --git a/wireviz/Choppy_ECU_12FB.yml b/wireviz/Choppy_ECU_12FB.yml
index 97d5a8e..3ee252e 100644
--- a/wireviz/Choppy_ECU_12FB.yml
+++ b/wireviz/Choppy_ECU_12FB.yml
@@ -262,15 +262,15 @@ connections:
- W1: [1]
- Coil Pack 1: [E]
-
- #- ECUM: [4]
+ - ECUM: [1]
- W1: [1]
- Coil Pack 2: [E]
-
- #- ECU: [4]
+ - ECUM: [1]
- W1: [1]
- Coil Pack 3: [E]
-
- #- ECU: [4]
+ - ECUM: [1]
- W1: [1]
- Coil Pack 4: [E]
# -
@@ -294,6 +294,7 @@ connections:
- W2: [1]
- Fuel Injector 2: [1]
-
+ - ECUM: [7]
- W2: [1]
- Fuel Injector 1: [1]
# -
@@ -389,9 +390,9 @@ connections:
- W22: [1]
- Negative Bus Bar: [2]
-
- - [Engine GND]
- - W12: [1]
- Tachometer: [GND]
+ - W12: [1]
+ - [Engine GND]
# -
# - ECUM: [1] #Arrows Don't work in this version :(
# - -->
diff --git a/wireviz/Choppy_ECU_C1.bom.tsv b/wireviz/Choppy_ECU_C1.bom.tsv
index de7ce25..74623b4 100644
--- a/wireviz/Choppy_ECU_C1.bom.tsv
+++ b/wireviz/Choppy_ECU_C1.bom.tsv
@@ -10,11 +10,11 @@ Id Description Qty Unit Designators
9 Connector, GND 1
10 Connector, Molex 643201311, 48 pins 1 ECU
11 Connector, Sumitomo 6180-2181, 2 pins 1 Coolant/Crank Sensor
-12 Connector, splice 3
+12 Connector, splice 6
13 Wire, 14 AWG, GY 80.0 Inches W3, W4
14 Wire, 18 AWG, BK 127.5 Inches W10, W11, W8, W9
15 Wire, 18 AWG, BKWH 40.0 Inches W7
-16 Wire, 18 AWG, BN 158.5 Inches W1, W5, W8, W9
+16 Wire, 18 AWG, BN 188.5 Inches W1, W12, W13, W14, W5, W8, W9
17 Wire, 18 AWG, BU 200.0 Inches W1
18 Wire, 18 AWG, GN 72.0 Inches W11, W5, W6
19 Wire, 18 AWG, GY 40.0 Inches W7
diff --git a/wireviz/Choppy_ECU_C1.csv b/wireviz/Choppy_ECU_C1.csv
index f25072e..8237180 100644
--- a/wireviz/Choppy_ECU_C1.csv
+++ b/wireviz/Choppy_ECU_C1.csv
@@ -1,28 +1,30 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2,Notes
-0,699661,ECU,'A2',50 Inches,BU,18 AWG,Coil Pack 1,'A',
-1,699662,ECU,'A3',50 Inches,BU,18 AWG,Coil Pack 2,'A',
-2,699663,ECU,'B2',50 Inches,BU,18 AWG,Coil Pack 3,'A',
-3,699664,ECU,'B3',50 Inches,BU,18 AWG,Coil Pack 4,'A',
-4,690665,ECU,'H1',50 Inches,BU,18 AWG,----,----,
-5,690666,Coil Pack 1,'B',50 Inches,BU,18 AWG,----,----,
-6,690667,Coil Pack 2,'B',50 Inches,BU,18 AWG,----,----,
-7,690668,Coil Pack 3,'B',50 Inches,BU,18 AWG,----,----,
-8,690669,Coil Pack 4,'B',50 Inches,BU,18 AWG,----,----,
-9,690710,ECU,'K1',40 Inches,GY,14 AWG,Fuel Injector 1,2,
-10,690711,ECU,'K2',40 Inches,GY,14 AWG,Fuel Injector 2,2,
-11,699665,ECU,'F4',21 Inches,BN,18 AWG,LSU,1,
-12,690715,ECU, 'G4',21 Inches,GN,18 AWG,LSU, 2,
-13,693895,ECU, 'F3',21 Inches,YE,18 AWG,LSU, 5,
-14,694875,ECU, 'G3',21 Inches,WH,18 AWG,LSU, 6,
-15,690666,ECU,'E3',21 Inches,BN,18 AWG,----,----,
-16,692717,ECU,'D1',21 Inches,GN,18 AWG,LSU,4,
-17,699800,ECU,'E2',40 Inches,PK,18 AWG,Veronte 1X CAN Bus,'B',Twisted Pair | ECU to Veronte
-18,699710,ECU, 'E1',40 Inches,GY,18 AWG,Veronte 1X CAN Bus, 'A',Twisted Pair | ECU to Veronte
-19,699660,ECU, 'E3',40 Inches,BKWH,18 AWG,Veronte 1X CAN Bus, 'C',Twisted Pair | ECU to Veronte
-20,690662,ECU,'H1',33.5 Inches,BN,18 AWG,Coolant/Crank Sensor,2,
-21,699662,ECU, 'F1',33.5 Inches,BK,18 AWG,Coolant/Crank Sensor, 1,
-22,699665,ECU,'H1',27 Inches,BN,18 AWG,MAF Sensor,1,
-23,699665,ECU, 'H1',27 Inches,BN,18 AWG,MAF Sensor,2,
-24,699665,ECU, 'F2',27 Inches,BK,18 AWG,MAF Sensor,3,
-25,699666,ECU,'K4',37 Inches,BK,18 AWG,Tachometer,C,Included cable is of sufficient length.
-26,690807,ECU,'E3',40 Inches,PK,18 AWG,----,----,Twisted Pair | ECU to Veronte
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,699661,ECU,Molex 643201311,'A2',50 Inches,BU,18 AWG,Coil Pack 1,Delphi 12162825,'A',
+1,699662,ECU,Molex 643201311,'A3',50 Inches,BU,18 AWG,Coil Pack 2,Delphi 12162825,'A',
+2,699663,ECU,Molex 643201311,'B2',50 Inches,BU,18 AWG,Coil Pack 3,Delphi 12162825,'A',
+3,699664,ECU,Molex 643201311,'B3',50 Inches,BU,18 AWG,Coil Pack 4,Delphi 12162825,'A',
+4,699665,ECU,Molex 643201311,'H1',50 Inches,BU,18 AWG,Coil Pack 2,Delphi 12162825,'B',
+5,69S666,Splice,Crimp Splice,-,10 Inches,BN,18 AWG,Coil Pack 1,Delphi 12162825,'B',
+6,69S667,Splice,Crimp Splice,-,10 Inches,BN,18 AWG,Coil Pack 3,Delphi 12162825,'B',
+7,69S668,Splice,Crimp Splice,-,10 Inches,BN,18 AWG,Coil Pack 4,Delphi 12162825,'B',
+8,690719,ECU,Molex 643201311,'K1',40 Inches,GY,14 AWG,Fuel Injector 1,90980-11875,2,
+9,690710,ECU,Molex 643201311,'K2',40 Inches,GY,14 AWG,Fuel Injector 2,90980-11875,2,
+10,699664,ECU,Molex 643201311,'F4',21 Inches,BN,18 AWG,LSU,D261.205.356-01,1,
+11,690714,ECU,Molex 643201311, 'G4',21 Inches,GN,18 AWG,LSU,D261.205.356-01, 2,
+12,693894,ECU,Molex 643201311, 'F3',21 Inches,YE,18 AWG,LSU,D261.205.356-01, 5,
+13,694874,ECU,Molex 643201311, 'G3',21 Inches,WH,18 AWG,LSU,D261.205.356-01, 6,
+14,690665,ECU,Molex 643201311,'E3',21 Inches,BN,18 AWG,----,----,----,
+15,692716,ECU,Molex 643201311,'D1',21 Inches,GN,18 AWG,LSU,D261.205.356-01,4,
+16,699809,ECU,Molex 643201311,'E2',40 Inches,PK,18 AWG,Veronte 1X CAN Bus,DT06-3S,'B',Twisted Pair | ECU to Veronte
+17,699719,ECU,Molex 643201311, 'E1',40 Inches,GY,18 AWG,Veronte 1X CAN Bus,DT06-3S, 'A',Twisted Pair | ECU to Veronte
+18,699669,ECU,Molex 643201311, 'E3',40 Inches,BKWH,18 AWG,Veronte 1X CAN Bus,DT06-3S, 'C',Twisted Pair | ECU to Veronte
+19,690661,ECU,Molex 643201311,'H1',33.5 Inches,BN,18 AWG,Coolant/Crank Sensor,Sumitomo 6180-2181,2,
+20,699661,ECU,Molex 643201311, 'F1',33.5 Inches,BK,18 AWG,Coolant/Crank Sensor,Sumitomo 6180-2181, 1,
+21,699664,ECU,Molex 643201311,'H1',27 Inches,BN,18 AWG,MAF Sensor,Bosch 1928405138,1,
+22,690664,ECU,Molex 643201311, 'H1',27 Inches,BN,18 AWG,MAF Sensor,Bosch 1928405138,2,
+23,691664,ECU,Molex 643201311, 'F2',27 Inches,BK,18 AWG,MAF Sensor,Bosch 1928405138,3,
+24,697665,ECU,Molex 643201311,'K4',37 Inches,BK,18 AWG,Tachometer,DT04-3P,C,Included cable is of sufficient length.
+25,690806,ECU,Molex 643201311,'E3',40 Inches,PK,18 AWG,----,----,----,Twisted Pair | ECU to Veronte
+26,81S897,Splice,Crimp Splice,-,30 Inches,YE,18 AWG,Throttle Servo CAN,DTM04-3P,3,Twisted Pair | ECU to Servo
+27,89S717,Splice,Crimp Splice,-,30 Inches,GN,18 AWG,Throttle Servo CAN,DTM04-3P, 1,Twisted Pair | ECU to Servo
+28,80S667,Splice,Crimp Splice,-,30 Inches,BK,18 AWG,Throttle Servo CAN,DTM04-3P, 2,Twisted Pair | ECU to Servo
diff --git a/wireviz/Choppy_ECU_C1.gv b/wireviz/Choppy_ECU_C1.gv
index b25803a..1b54bc8 100644
--- a/wireviz/Choppy_ECU_C1.gv
+++ b/wireviz/Choppy_ECU_C1.gv
@@ -775,6 +775,33 @@ graph {
</td></tr>
</table>
> fillcolor="#FFFFFF" shape=box style=filled]
+ _S_4 [label=<
+<table border="0" cellspacing="0" cellpadding="0">
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">splice</td>
+ </tr></table>
+ </td></tr>
+</table>
+> fillcolor="#FFFFFF" shape=box style=filled]
+ _S_5 [label=<
+<table border="0" cellspacing="0" cellpadding="0">
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">splice</td>
+ </tr></table>
+ </td></tr>
+</table>
+> fillcolor="#FFFFFF" shape=box style=filled]
+ _S_6 [label=<
+<table border="0" cellspacing="0" cellpadding="0">
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">splice</td>
+ </tr></table>
+ </td></tr>
+</table>
+> fillcolor="#FFFFFF" shape=box style=filled]
_GND_1 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -798,14 +825,13 @@ graph {
W1:w4:e -- "Coil Pack 4":p1l:w
edge [color="#000000:#895956:#895956:#895956:#000000"]
ECU:p29r:e -- W1:w5:w
- edge [color="#000000:#895956:#895956:#895956:#000000"]
- W1:w5:e -- "Coil Pack 1":p2l:w
- edge [color="#000000:#895956:#895956:#895956:#000000"]
W1:w5:e -- "Coil Pack 2":p2l:w
edge [color="#000000:#895956:#895956:#895956:#000000"]
- W1:w5:e -- "Coil Pack 3":p2l:w
+ W1:w5:e -- _S_1:w
+ edge [color="#000000:#895956:#895956:#895956:#000000"]
+ W1:w5:e -- _S_2:w
edge [color="#000000:#895956:#895956:#895956:#000000"]
- W1:w5:e -- "Coil Pack 4":p2l:w
+ W1:w5:e -- _S_3:w
W1 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -900,7 +926,7 @@ graph {
<td>
BN
</td>
- <td>Coil Pack 1:B:Sensor Ground</td>
+ <td>Coil Pack 2:B:Sensor Ground</td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="10">
@@ -918,6 +944,135 @@ graph {
</td></tr>
</table>
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
+ edge [color="#000000:#895956:#895956:#895956:#000000"]
+ _S_1:e -- W12:w1:w
+ W12:w1:e -- "Coil Pack 1":p2l:w
+ W12 [label=<
+<table border="0" cellspacing="0" cellpadding="0">
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">W12</td>
+ </tr></table>
+ </td></tr>
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">1x</td>
+ <td balign="left">18 AWG</td>
+ <td balign="left">10.0 Inches</td>
+ </tr></table>
+ </td></tr>
+ <tr><td>
+ <table border="0" cellspacing="0" cellborder="0">
+ <tr><td>&nbsp;</td></tr>
+ <tr>
+ <td></td>
+ <td>
+ BN
+ </td>
+ <td>Coil Pack 1:B:Sensor Ground</td>
+ </tr>
+ <tr>
+ <td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="10">
+ <table cellspacing="0" cellborder="0" border="0">
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
+ </table>
+ </td>
+ </tr>
+ <tr><td>&nbsp;</td></tr>
+ </table>
+ </td></tr>
+</table>
+> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
+ edge [color="#000000:#895956:#895956:#895956:#000000"]
+ _S_2:e -- W13:w1:w
+ W13:w1:e -- "Coil Pack 3":p2l:w
+ W13 [label=<
+<table border="0" cellspacing="0" cellpadding="0">
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">W13</td>
+ </tr></table>
+ </td></tr>
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">1x</td>
+ <td balign="left">18 AWG</td>
+ <td balign="left">10.0 Inches</td>
+ </tr></table>
+ </td></tr>
+ <tr><td>
+ <table border="0" cellspacing="0" cellborder="0">
+ <tr><td>&nbsp;</td></tr>
+ <tr>
+ <td></td>
+ <td>
+ BN
+ </td>
+ <td>Coil Pack 3:B:Sensor Ground</td>
+ </tr>
+ <tr>
+ <td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="10">
+ <table cellspacing="0" cellborder="0" border="0">
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
+ </table>
+ </td>
+ </tr>
+ <tr><td>&nbsp;</td></tr>
+ </table>
+ </td></tr>
+</table>
+> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
+ edge [color="#000000:#895956:#895956:#895956:#000000"]
+ _S_3:e -- W14:w1:w
+ W14:w1:e -- "Coil Pack 4":p2l:w
+ W14 [label=<
+<table border="0" cellspacing="0" cellpadding="0">
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">W14</td>
+ </tr></table>
+ </td></tr>
+ <tr><td>
+ <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
+ <td balign="left">1x</td>
+ <td balign="left">18 AWG</td>
+ <td balign="left">10.0 Inches</td>
+ </tr></table>
+ </td></tr>
+ <tr><td>
+ <table border="0" cellspacing="0" cellborder="0">
+ <tr><td>&nbsp;</td></tr>
+ <tr>
+ <td></td>
+ <td>
+ BN
+ </td>
+ <td>Coil Pack 4:B:Sensor Ground</td>
+ </tr>
+ <tr>
+ <td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="10">
+ <table cellspacing="0" cellborder="0" border="0">
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
+ <tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
+ </table>
+ </td>
+ </tr>
+ <tr><td>&nbsp;</td></tr>
+ </table>
+ </td></tr>
+</table>
+> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
edge [color="#000000:#999999:#999999:#999999:#000000"]
ECU:p37r:e -- W3:w1:w
W3:w1:e -- "Fuel Injector 1":p2l:w
@@ -1175,11 +1330,11 @@ graph {
edge [color="#000000"]
ECU:p19r:e -- W7:ws:w
edge [color="#000000:#ff66cc:#ff66cc:#ff66cc:#000000"]
- W7:w1:e -- _S_1:w
+ W7:w1:e -- _S_4:w
edge [color="#000000:#999999:#999999:#999999:#000000"]
- W7:w2:e -- _S_2:w
+ W7:w2:e -- _S_5:w
edge [color="#000000:#000000:#ffffff:#000000:#000000"]
- W7:w3:e -- _S_3:w
+ W7:w3:e -- _S_6:w
edge [color="#000000"]
W7:ws:e -- shield1:p1l:w
W7 [label=<
@@ -1469,13 +1624,13 @@ graph {
</table>
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
- _S_1:e -- W11:w2:w
+ _S_4:e -- W11:w2:w
W11:w2:e -- "Throttle Servo CAN":p3l:w
edge [color="#000000:#ffff00:#ffff00:#ffff00:#000000"]
- _S_2:e -- W11:w1:w
+ _S_5:e -- W11:w1:w
W11:w1:e -- "Throttle Servo CAN":p1l:w
edge [color="#000000:#000000:#000000:#000000:#000000"]
- _S_3:e -- W11:w3:w
+ _S_6:e -- W11:w3:w
W11:w3:e -- "Throttle Servo CAN":p2l:w
edge [color="#000000"]
shield1:p1r:e -- W11:ws:w
diff --git a/wireviz/Choppy_ECU_C1.html b/wireviz/Choppy_ECU_C1.html
index 299a3f8..49c4f62 100644
--- a/wireviz/Choppy_ECU_C1.html
+++ b/wireviz/Choppy_ECU_C1.html
@@ -10,869 +10,869 @@
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
-<svg width="2609pt" height="4550pt"
- viewBox="0.00 0.00 2608.50 4550.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 4546.25)">
-<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-4546.25 2604.5,-4546.25 2604.5,4 -4,4"/>
+<svg width="2609pt" height="3924pt"
+ viewBox="0.00 0.00 2608.50 3924.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3920.25)">
+<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-3920.25 2604.5,-3920.25 2604.5,4 -4,4"/>
<!-- ECU -->
<g id="node1" class="node">
<title>ECU</title>
-<polygon fill="#ffffff" stroke="black" points="401,-2981.25 0,-2981.25 0,-1456.25 401,-1456.25 401,-2981.25"/>
-<polygon fill="none" stroke="black" points="0,-2956.75 0,-2981.25 401,-2981.25 401,-2956.75 0,-2956.75"/>
-<text text-anchor="start" x="185.5" y="-2963.95" font-family="arial" font-size="14.00">ECU</text>
-<polygon fill="none" stroke="black" points="0,-2932.25 0,-2956.75 238.38,-2956.75 238.38,-2932.25 0,-2932.25"/>
-<text text-anchor="start" x="61.44" y="-2939.45" font-family="arial" font-size="14.00">Molex 643201311</text>
-<polygon fill="none" stroke="black" points="238.38,-2932.25 238.38,-2956.75 401,-2956.75 401,-2932.25 238.38,-2932.25"/>
-<text text-anchor="start" x="299.81" y="-2939.45" font-family="arial" font-size="14.00">48&#45;pin</text>
-<polygon fill="none" stroke="black" points="0,-2908.25 0,-2932.25 281.5,-2932.25 281.5,-2908.25 0,-2908.25"/>
-<text text-anchor="start" x="57.5" y="-2914.95" font-family="arial" font-size="14.00">Extra Output 5 (Fuelpump)</text>
-<polygon fill="none" stroke="black" points="281.5,-2908.25 281.5,-2932.25 401,-2932.25 401,-2908.25 281.5,-2908.25"/>
-<text text-anchor="start" x="332.25" y="-2914.95" font-family="arial" font-size="14.00">A1</text>
-<polygon fill="none" stroke="black" points="0,-2884.25 0,-2908.25 281.5,-2908.25 281.5,-2884.25 0,-2884.25"/>
-<text text-anchor="start" x="99.12" y="-2890.95" font-family="arial" font-size="14.00">Ignition coil 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2884.25 281.5,-2908.25 401,-2908.25 401,-2884.25 281.5,-2884.25"/>
-<text text-anchor="start" x="332.25" y="-2890.95" font-family="arial" font-size="14.00">A2</text>
-<polygon fill="none" stroke="black" points="0,-2860.25 0,-2884.25 281.5,-2884.25 281.5,-2860.25 0,-2860.25"/>
-<text text-anchor="start" x="99.12" y="-2866.95" font-family="arial" font-size="14.00">Ignition coil 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2860.25 281.5,-2884.25 401,-2884.25 401,-2860.25 281.5,-2860.25"/>
-<text text-anchor="start" x="332.25" y="-2866.95" font-family="arial" font-size="14.00">A3</text>
-<polygon fill="none" stroke="black" points="0,-2836.25 0,-2860.25 281.5,-2860.25 281.5,-2836.25 0,-2836.25"/>
-<text text-anchor="start" x="102.5" y="-2842.95" font-family="arial" font-size="14.00">Tachometer</text>
-<polygon fill="none" stroke="black" points="281.5,-2836.25 281.5,-2860.25 401,-2860.25 401,-2836.25 281.5,-2836.25"/>
-<text text-anchor="start" x="332.25" y="-2842.95" font-family="arial" font-size="14.00">A4</text>
-<polygon fill="none" stroke="black" points="0,-2812.25 0,-2836.25 281.5,-2836.25 281.5,-2812.25 0,-2812.25"/>
-<text text-anchor="start" x="77.38" y="-2818.95" font-family="arial" font-size="14.00">Extra Output 6 (Fan)</text>
-<polygon fill="none" stroke="black" points="281.5,-2812.25 281.5,-2836.25 401,-2836.25 401,-2812.25 281.5,-2812.25"/>
-<text text-anchor="start" x="332.25" y="-2818.95" font-family="arial" font-size="14.00">B1</text>
-<polygon fill="none" stroke="black" points="0,-2788.25 0,-2812.25 281.5,-2812.25 281.5,-2788.25 0,-2788.25"/>
-<text text-anchor="start" x="99.12" y="-2794.95" font-family="arial" font-size="14.00">Ignition coil 3</text>
-<polygon fill="none" stroke="black" points="281.5,-2788.25 281.5,-2812.25 401,-2812.25 401,-2788.25 281.5,-2788.25"/>
-<text text-anchor="start" x="332.25" y="-2794.95" font-family="arial" font-size="14.00">B2</text>
-<polygon fill="none" stroke="black" points="0,-2764.25 0,-2788.25 281.5,-2788.25 281.5,-2764.25 0,-2764.25"/>
-<text text-anchor="start" x="99.12" y="-2770.95" font-family="arial" font-size="14.00">Ignition coil 4</text>
-<polygon fill="none" stroke="black" points="281.5,-2764.25 281.5,-2788.25 401,-2788.25 401,-2764.25 281.5,-2764.25"/>
-<text text-anchor="start" x="332.25" y="-2770.95" font-family="arial" font-size="14.00">B3</text>
-<polygon fill="none" stroke="black" points="0,-2740.25 0,-2764.25 281.5,-2764.25 281.5,-2740.25 0,-2740.25"/>
-<text text-anchor="start" x="95.75" y="-2746.95" font-family="arial" font-size="14.00">Extra Output 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2740.25 281.5,-2764.25 401,-2764.25 401,-2740.25 281.5,-2740.25"/>
-<text text-anchor="start" x="332.25" y="-2746.95" font-family="arial" font-size="14.00">B4</text>
-<polygon fill="none" stroke="black" points="0,-2716.25 0,-2740.25 281.5,-2740.25 281.5,-2716.25 0,-2716.25"/>
-<text text-anchor="start" x="95.75" y="-2722.95" font-family="arial" font-size="14.00">Extra Output 7</text>
-<polygon fill="none" stroke="black" points="281.5,-2716.25 281.5,-2740.25 401,-2740.25 401,-2716.25 281.5,-2716.25"/>
-<text text-anchor="start" x="331.88" y="-2722.95" font-family="arial" font-size="14.00">C1</text>
-<polygon fill="none" stroke="black" points="0,-2692.25 0,-2716.25 281.5,-2716.25 281.5,-2692.25 0,-2692.25"/>
-<text text-anchor="start" x="99.12" y="-2698.95" font-family="arial" font-size="14.00">Ignition coil 5</text>
-<polygon fill="none" stroke="black" points="281.5,-2692.25 281.5,-2716.25 401,-2716.25 401,-2692.25 281.5,-2692.25"/>
-<text text-anchor="start" x="331.88" y="-2698.95" font-family="arial" font-size="14.00">C2</text>
-<polygon fill="none" stroke="black" points="0,-2668.25 0,-2692.25 281.5,-2692.25 281.5,-2668.25 0,-2668.25"/>
-<text text-anchor="start" x="99.12" y="-2674.95" font-family="arial" font-size="14.00">Ignition coil 6</text>
-<polygon fill="none" stroke="black" points="281.5,-2668.25 281.5,-2692.25 401,-2692.25 401,-2668.25 281.5,-2668.25"/>
-<text text-anchor="start" x="331.88" y="-2674.95" font-family="arial" font-size="14.00">C3</text>
-<polygon fill="none" stroke="black" points="0,-2644.25 0,-2668.25 281.5,-2668.25 281.5,-2644.25 0,-2644.25"/>
-<text text-anchor="start" x="97.25" y="-2650.95" font-family="arial" font-size="14.00">Extra output 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2644.25 281.5,-2668.25 401,-2668.25 401,-2644.25 281.5,-2644.25"/>
-<text text-anchor="start" x="331.88" y="-2650.95" font-family="arial" font-size="14.00">C4</text>
-<polygon fill="none" stroke="black" points="0,-2620.25 0,-2644.25 281.5,-2644.25 281.5,-2620.25 0,-2620.25"/>
-<text text-anchor="start" x="92.38" y="-2626.95" font-family="arial" font-size="14.00">Lambda 1 Heat</text>
-<polygon fill="none" stroke="black" points="281.5,-2620.25 281.5,-2644.25 401,-2644.25 401,-2620.25 281.5,-2620.25"/>
-<text text-anchor="start" x="331.88" y="-2626.95" font-family="arial" font-size="14.00">D1</text>
-<polygon fill="none" stroke="black" points="0,-2596.25 0,-2620.25 281.5,-2620.25 281.5,-2596.25 0,-2596.25"/>
-<text text-anchor="start" x="99.12" y="-2602.95" font-family="arial" font-size="14.00">Ignition coil 7</text>
-<polygon fill="none" stroke="black" points="281.5,-2596.25 281.5,-2620.25 401,-2620.25 401,-2596.25 281.5,-2596.25"/>
-<text text-anchor="start" x="331.88" y="-2602.95" font-family="arial" font-size="14.00">D2</text>
-<polygon fill="none" stroke="black" points="0,-2572.25 0,-2596.25 281.5,-2596.25 281.5,-2572.25 0,-2572.25"/>
-<text text-anchor="start" x="99.12" y="-2578.95" font-family="arial" font-size="14.00">Ignition coil 8</text>
-<polygon fill="none" stroke="black" points="281.5,-2572.25 281.5,-2596.25 401,-2596.25 401,-2572.25 281.5,-2572.25"/>
-<text text-anchor="start" x="331.88" y="-2578.95" font-family="arial" font-size="14.00">D3</text>
-<polygon fill="none" stroke="black" points="0,-2548.25 0,-2572.25 281.5,-2572.25 281.5,-2548.25 0,-2548.25"/>
-<text text-anchor="start" x="97.25" y="-2554.95" font-family="arial" font-size="14.00">Extra output 3</text>
-<polygon fill="none" stroke="black" points="281.5,-2548.25 281.5,-2572.25 401,-2572.25 401,-2548.25 281.5,-2548.25"/>
-<text text-anchor="start" x="331.88" y="-2554.95" font-family="arial" font-size="14.00">D4</text>
-<polygon fill="none" stroke="black" points="0,-2524.25 0,-2548.25 281.5,-2548.25 281.5,-2524.25 0,-2524.25"/>
-<text text-anchor="start" x="119" y="-2530.95" font-family="arial" font-size="14.00">CAN H</text>
-<polygon fill="none" stroke="black" points="281.5,-2524.25 281.5,-2548.25 401,-2548.25 401,-2524.25 281.5,-2524.25"/>
-<text text-anchor="start" x="332.25" y="-2530.95" font-family="arial" font-size="14.00">E1</text>
-<polygon fill="none" stroke="black" points="0,-2500.25 0,-2524.25 281.5,-2524.25 281.5,-2500.25 0,-2500.25"/>
-<text text-anchor="start" x="119.75" y="-2506.95" font-family="arial" font-size="14.00">CAN L</text>
-<polygon fill="none" stroke="black" points="281.5,-2500.25 281.5,-2524.25 401,-2524.25 401,-2500.25 281.5,-2500.25"/>
-<text text-anchor="start" x="332.25" y="-2506.95" font-family="arial" font-size="14.00">E2</text>
-<polygon fill="none" stroke="black" points="0,-2476.25 0,-2500.25 281.5,-2500.25 281.5,-2476.25 0,-2476.25"/>
-<text text-anchor="start" x="95.38" y="-2482.95" font-family="arial" font-size="14.00">Sheild Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-2476.25 281.5,-2500.25 401,-2500.25 401,-2476.25 281.5,-2476.25"/>
-<text text-anchor="start" x="332.25" y="-2482.95" font-family="arial" font-size="14.00">E3</text>
-<polygon fill="none" stroke="black" points="0,-2452.25 0,-2476.25 281.5,-2476.25 281.5,-2452.25 0,-2452.25"/>
-<text text-anchor="start" x="95.75" y="-2458.95" font-family="arial" font-size="14.00">Extra Output 4</text>
-<polygon fill="none" stroke="black" points="281.5,-2452.25 281.5,-2476.25 401,-2476.25 401,-2452.25 281.5,-2452.25"/>
-<text text-anchor="start" x="332.25" y="-2458.95" font-family="arial" font-size="14.00">E4</text>
-<polygon fill="none" stroke="black" points="0,-2428.25 0,-2452.25 281.5,-2452.25 281.5,-2428.25 0,-2428.25"/>
-<text text-anchor="start" x="50" y="-2434.95" font-family="arial" font-size="14.00">Coolant Temperature sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2428.25 281.5,-2452.25 401,-2452.25 401,-2428.25 281.5,-2428.25"/>
-<text text-anchor="start" x="332.62" y="-2434.95" font-family="arial" font-size="14.00">F1</text>
-<polygon fill="none" stroke="black" points="0,-2404.25 0,-2428.25 281.5,-2428.25 281.5,-2404.25 0,-2404.25"/>
-<text text-anchor="start" x="65.75" y="-2410.95" font-family="arial" font-size="14.00">Air Temperature sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2404.25 281.5,-2428.25 401,-2428.25 401,-2404.25 281.5,-2404.25"/>
-<text text-anchor="start" x="332.62" y="-2410.95" font-family="arial" font-size="14.00">F2</text>
-<polygon fill="none" stroke="black" points="0,-2380.25 0,-2404.25 281.5,-2404.25 281.5,-2380.25 0,-2380.25"/>
-<text text-anchor="start" x="90.5" y="-2386.95" font-family="arial" font-size="14.00">Lambda 1 COM</text>
-<polygon fill="none" stroke="black" points="281.5,-2380.25 281.5,-2404.25 401,-2404.25 401,-2380.25 281.5,-2380.25"/>
-<text text-anchor="start" x="332.62" y="-2386.95" font-family="arial" font-size="14.00">F3</text>
-<polygon fill="none" stroke="black" points="0,-2356.25 0,-2380.25 281.5,-2380.25 281.5,-2356.25 0,-2356.25"/>
-<text text-anchor="start" x="90.12" y="-2362.95" font-family="arial" font-size="14.00">Lambda 1 VS in</text>
-<polygon fill="none" stroke="black" points="281.5,-2356.25 281.5,-2380.25 401,-2380.25 401,-2356.25 281.5,-2356.25"/>
-<text text-anchor="start" x="332.62" y="-2362.95" font-family="arial" font-size="14.00">F4</text>
-<polygon fill="none" stroke="black" points="0,-2332.25 0,-2356.25 281.5,-2356.25 281.5,-2332.25 0,-2332.25"/>
-<text text-anchor="start" x="83.38" y="-2338.95" font-family="arial" font-size="14.00">5V Sensor Supply</text>
-<polygon fill="none" stroke="black" points="281.5,-2332.25 281.5,-2356.25 401,-2356.25 401,-2332.25 281.5,-2332.25"/>
-<text text-anchor="start" x="331.5" y="-2338.95" font-family="arial" font-size="14.00">G1</text>
-<polygon fill="none" stroke="black" points="0,-2308.25 0,-2332.25 281.5,-2332.25 281.5,-2308.25 0,-2308.25"/>
-<text text-anchor="start" x="93.12" y="-2314.95" font-family="arial" font-size="14.00">Throttle sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2308.25 281.5,-2332.25 401,-2332.25 401,-2308.25 281.5,-2308.25"/>
-<text text-anchor="start" x="331.5" y="-2314.95" font-family="arial" font-size="14.00">G2</text>
-<polygon fill="none" stroke="black" points="0,-2284.25 0,-2308.25 281.5,-2308.25 281.5,-2284.25 0,-2284.25"/>
-<text text-anchor="start" x="99.88" y="-2290.95" font-family="arial" font-size="14.00">Lambda 1 IP</text>
-<polygon fill="none" stroke="black" points="281.5,-2284.25 281.5,-2308.25 401,-2308.25 401,-2284.25 281.5,-2284.25"/>
-<text text-anchor="start" x="331.5" y="-2290.95" font-family="arial" font-size="14.00">G3</text>
-<polygon fill="none" stroke="black" points="0,-2260.25 0,-2284.25 281.5,-2284.25 281.5,-2260.25 0,-2260.25"/>
-<text text-anchor="start" x="87.5" y="-2266.95" font-family="arial" font-size="14.00">Lambda 1 RCAL</text>
-<polygon fill="none" stroke="black" points="281.5,-2260.25 281.5,-2284.25 401,-2284.25 401,-2260.25 281.5,-2260.25"/>
-<text text-anchor="start" x="331.5" y="-2266.95" font-family="arial" font-size="14.00">G4</text>
-<polygon fill="none" stroke="black" points="0,-2236.25 0,-2260.25 281.5,-2260.25 281.5,-2236.25 0,-2236.25"/>
-<text text-anchor="start" x="92.38" y="-2242.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-2236.25 281.5,-2260.25 401,-2260.25 401,-2236.25 281.5,-2236.25"/>
-<text text-anchor="start" x="332.25" y="-2242.95" font-family="arial" font-size="14.00">H1</text>
-<polygon fill="none" stroke="black" points="0,-2212.25 0,-2236.25 281.5,-2236.25 281.5,-2212.25 0,-2212.25"/>
-<text text-anchor="start" x="72.5" y="-2218.95" font-family="arial" font-size="14.00">Home sensor Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-2212.25 281.5,-2236.25 401,-2236.25 401,-2212.25 281.5,-2212.25"/>
-<text text-anchor="start" x="332.25" y="-2218.95" font-family="arial" font-size="14.00">H2</text>
-<polygon fill="none" stroke="black" points="0,-2188.25 0,-2212.25 281.5,-2212.25 281.5,-2188.25 0,-2188.25"/>
-<text text-anchor="start" x="97.62" y="-2194.95" font-family="arial" font-size="14.00">Crank Sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2188.25 281.5,-2212.25 401,-2212.25 401,-2188.25 281.5,-2188.25"/>
-<text text-anchor="start" x="332.25" y="-2194.95" font-family="arial" font-size="14.00">H3</text>
-<polygon fill="none" stroke="black" points="0,-2164.25 0,-2188.25 281.5,-2188.25 281.5,-2164.25 0,-2164.25"/>
-<text text-anchor="start" x="98" y="-2170.95" font-family="arial" font-size="14.00">Home sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2164.25 281.5,-2188.25 401,-2188.25 401,-2164.25 281.5,-2164.25"/>
-<text text-anchor="start" x="332.25" y="-2170.95" font-family="arial" font-size="14.00">H4</text>
-<polygon fill="none" stroke="black" points="0,-2140.25 0,-2164.25 281.5,-2164.25 281.5,-2140.25 0,-2140.25"/>
-<text text-anchor="start" x="52.25" y="-2146.95" font-family="arial" font-size="14.00">Extra Temperature sensor 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2140.25 281.5,-2164.25 401,-2164.25 401,-2140.25 281.5,-2140.25"/>
-<text text-anchor="start" x="333.38" y="-2146.95" font-family="arial" font-size="14.00">J1</text>
-<polygon fill="none" stroke="black" points="0,-2116.25 0,-2140.25 281.5,-2140.25 281.5,-2116.25 0,-2116.25"/>
-<text text-anchor="start" x="52.25" y="-2122.95" font-family="arial" font-size="14.00">Extra Temperature sensor 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2116.25 281.5,-2140.25 401,-2140.25 401,-2116.25 281.5,-2116.25"/>
-<text text-anchor="start" x="333.38" y="-2122.95" font-family="arial" font-size="14.00">J2</text>
-<polygon fill="none" stroke="black" points="0,-2092.25 0,-2116.25 281.5,-2116.25 281.5,-2092.25 0,-2092.25"/>
-<text text-anchor="start" x="96.12" y="-2098.95" font-family="arial" font-size="14.00">Fuel Pressure</text>
-<polygon fill="none" stroke="black" points="281.5,-2092.25 281.5,-2116.25 401,-2116.25 401,-2092.25 281.5,-2092.25"/>
-<text text-anchor="start" x="333.38" y="-2098.95" font-family="arial" font-size="14.00">J3</text>
-<polygon fill="none" stroke="black" points="0,-2068.25 0,-2092.25 281.5,-2092.25 281.5,-2068.25 0,-2068.25"/>
-<text text-anchor="start" x="125.75" y="-2074.95" font-family="arial" font-size="14.00">Baro</text>
-<polygon fill="none" stroke="black" points="281.5,-2068.25 281.5,-2092.25 401,-2092.25 401,-2068.25 281.5,-2068.25"/>
-<text text-anchor="start" x="333.38" y="-2074.95" font-family="arial" font-size="14.00">J4</text>
-<polygon fill="none" stroke="black" points="0,-2044.25 0,-2068.25 281.5,-2068.25 281.5,-2044.25 0,-2044.25"/>
-<text text-anchor="start" x="111.12" y="-2050.95" font-family="arial" font-size="14.00">Injector 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2044.25 281.5,-2068.25 401,-2068.25 401,-2044.25 281.5,-2044.25"/>
-<text text-anchor="start" x="332.25" y="-2050.95" font-family="arial" font-size="14.00">K1</text>
-<polygon fill="none" stroke="black" points="0,-2020.25 0,-2044.25 281.5,-2044.25 281.5,-2020.25 0,-2020.25"/>
-<text text-anchor="start" x="111.12" y="-2026.95" font-family="arial" font-size="14.00">Injector 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2020.25 281.5,-2044.25 401,-2044.25 401,-2020.25 281.5,-2020.25"/>
-<text text-anchor="start" x="332.25" y="-2026.95" font-family="arial" font-size="14.00">K2</text>
-<polygon fill="none" stroke="black" points="0,-1996.25 0,-2020.25 281.5,-2020.25 281.5,-1996.25 0,-1996.25"/>
-<text text-anchor="start" x="86.38" y="-2002.95" font-family="arial" font-size="14.00">Digital/VR input 1</text>
-<polygon fill="none" stroke="black" points="281.5,-1996.25 281.5,-2020.25 401,-2020.25 401,-1996.25 281.5,-1996.25"/>
-<text text-anchor="start" x="332.25" y="-2002.95" font-family="arial" font-size="14.00">K3</text>
-<polygon fill="none" stroke="black" points="0,-1972.25 0,-1996.25 281.5,-1996.25 281.5,-1972.25 0,-1972.25"/>
-<text text-anchor="start" x="105.5" y="-1978.95" font-family="arial" font-size="14.00">Rotor RPM</text>
-<polygon fill="none" stroke="black" points="281.5,-1972.25 281.5,-1996.25 401,-1996.25 401,-1972.25 281.5,-1972.25"/>
-<text text-anchor="start" x="332.25" y="-1978.95" font-family="arial" font-size="14.00">K4</text>
-<polygon fill="none" stroke="black" points="0,-1948.25 0,-1972.25 281.5,-1972.25 281.5,-1948.25 0,-1948.25"/>
-<text text-anchor="start" x="111.12" y="-1954.95" font-family="arial" font-size="14.00">Injector 8</text>
-<polygon fill="none" stroke="black" points="281.5,-1948.25 281.5,-1972.25 401,-1972.25 401,-1948.25 281.5,-1948.25"/>
-<text text-anchor="start" x="333" y="-1954.95" font-family="arial" font-size="14.00">L1</text>
-<polygon fill="none" stroke="black" points="0,-1924.25 0,-1948.25 281.5,-1948.25 281.5,-1924.25 0,-1924.25"/>
-<text text-anchor="start" x="111.12" y="-1930.95" font-family="arial" font-size="14.00">Injector 7</text>
-<polygon fill="none" stroke="black" points="281.5,-1924.25 281.5,-1948.25 401,-1948.25 401,-1924.25 281.5,-1924.25"/>
-<text text-anchor="start" x="333" y="-1930.95" font-family="arial" font-size="14.00">L2</text>
-<polygon fill="none" stroke="black" points="0,-1900.25 0,-1924.25 281.5,-1924.25 281.5,-1900.25 0,-1900.25"/>
-<text text-anchor="start" x="111.12" y="-1906.95" font-family="arial" font-size="14.00">Injector 6</text>
-<polygon fill="none" stroke="black" points="281.5,-1900.25 281.5,-1924.25 401,-1924.25 401,-1900.25 281.5,-1900.25"/>
-<text text-anchor="start" x="333" y="-1906.95" font-family="arial" font-size="14.00">L3</text>
-<polygon fill="none" stroke="black" points="0,-1876.25 0,-1900.25 281.5,-1900.25 281.5,-1876.25 0,-1876.25"/>
-<text text-anchor="start" x="93.12" y="-1882.95" font-family="arial" font-size="14.00">Engine Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-1876.25 281.5,-1900.25 401,-1900.25 401,-1876.25 281.5,-1876.25"/>
-<text text-anchor="start" x="333" y="-1882.95" font-family="arial" font-size="14.00">L4</text>
-<polygon fill="none" stroke="black" points="0,-1852.25 0,-1876.25 281.5,-1876.25 281.5,-1852.25 0,-1852.25"/>
-<text text-anchor="start" x="111.12" y="-1858.95" font-family="arial" font-size="14.00">Injector 3</text>
-<polygon fill="none" stroke="black" points="281.5,-1852.25 281.5,-1876.25 401,-1876.25 401,-1852.25 281.5,-1852.25"/>
-<text text-anchor="start" x="331.5" y="-1858.95" font-family="arial" font-size="14.00">M1</text>
-<polygon fill="none" stroke="black" points="0,-1828.25 0,-1852.25 281.5,-1852.25 281.5,-1828.25 0,-1828.25"/>
-<text text-anchor="start" x="111.12" y="-1834.95" font-family="arial" font-size="14.00">Injector 4</text>
-<polygon fill="none" stroke="black" points="281.5,-1828.25 281.5,-1852.25 401,-1852.25 401,-1828.25 281.5,-1828.25"/>
-<text text-anchor="start" x="331.5" y="-1834.95" font-family="arial" font-size="14.00">M2</text>
-<polygon fill="none" stroke="black" points="0,-1804.25 0,-1828.25 281.5,-1828.25 281.5,-1804.25 0,-1804.25"/>
-<text text-anchor="start" x="111.12" y="-1810.95" font-family="arial" font-size="14.00">Injector 5</text>
-<polygon fill="none" stroke="black" points="281.5,-1804.25 281.5,-1828.25 401,-1828.25 401,-1804.25 281.5,-1804.25"/>
-<text text-anchor="start" x="331.5" y="-1810.95" font-family="arial" font-size="14.00">M3</text>
-<polygon fill="none" stroke="black" points="0,-1780.25 0,-1804.25 281.5,-1804.25 281.5,-1780.25 0,-1780.25"/>
-<text text-anchor="start" x="110.75" y="-1786.95" font-family="arial" font-size="14.00">ECU 12V</text>
-<polygon fill="none" stroke="black" points="281.5,-1780.25 281.5,-1804.25 401,-1804.25 401,-1780.25 281.5,-1780.25"/>
-<text text-anchor="start" x="331.5" y="-1786.95" font-family="arial" font-size="14.00">M4</text>
-<polyline fill="none" stroke="black" points="401,-1505.25 401,-1780.25 0,-1780.25 0,-1505.25"/>
-<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="4" y="-1776.25"/>
-<polyline fill="none" stroke="black" points="0,-1505.25 0,-1480.75 401,-1480.75 401,-1505.25"/>
-<text text-anchor="start" x="128.5" y="-1487.95" font-family="arial" font-size="14.00">Connector 643203311</text>
-<polygon fill="none" stroke="black" points="0,-1456.25 0,-1480.75 401,-1480.75 401,-1456.25 0,-1456.25"/>
-<text text-anchor="start" x="89.5" y="-1463.45" font-family="arial" font-size="14.00">ECU Connector 1 (GPO Low side!)</text>
+<polygon fill="#ffffff" stroke="black" points="401,-2975.25 0,-2975.25 0,-1450.25 401,-1450.25 401,-2975.25"/>
+<polygon fill="none" stroke="black" points="0,-2950.75 0,-2975.25 401,-2975.25 401,-2950.75 0,-2950.75"/>
+<text text-anchor="start" x="185.5" y="-2957.95" font-family="arial" font-size="14.00">ECU</text>
+<polygon fill="none" stroke="black" points="0,-2926.25 0,-2950.75 238.38,-2950.75 238.38,-2926.25 0,-2926.25"/>
+<text text-anchor="start" x="61.44" y="-2933.45" font-family="arial" font-size="14.00">Molex 643201311</text>
+<polygon fill="none" stroke="black" points="238.38,-2926.25 238.38,-2950.75 401,-2950.75 401,-2926.25 238.38,-2926.25"/>
+<text text-anchor="start" x="299.81" y="-2933.45" font-family="arial" font-size="14.00">48&#45;pin</text>
+<polygon fill="none" stroke="black" points="0,-2902.25 0,-2926.25 281.5,-2926.25 281.5,-2902.25 0,-2902.25"/>
+<text text-anchor="start" x="57.5" y="-2908.95" font-family="arial" font-size="14.00">Extra Output 5 (Fuelpump)</text>
+<polygon fill="none" stroke="black" points="281.5,-2902.25 281.5,-2926.25 401,-2926.25 401,-2902.25 281.5,-2902.25"/>
+<text text-anchor="start" x="332.25" y="-2908.95" font-family="arial" font-size="14.00">A1</text>
+<polygon fill="none" stroke="black" points="0,-2878.25 0,-2902.25 281.5,-2902.25 281.5,-2878.25 0,-2878.25"/>
+<text text-anchor="start" x="99.12" y="-2884.95" font-family="arial" font-size="14.00">Ignition coil 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2878.25 281.5,-2902.25 401,-2902.25 401,-2878.25 281.5,-2878.25"/>
+<text text-anchor="start" x="332.25" y="-2884.95" font-family="arial" font-size="14.00">A2</text>
+<polygon fill="none" stroke="black" points="0,-2854.25 0,-2878.25 281.5,-2878.25 281.5,-2854.25 0,-2854.25"/>
+<text text-anchor="start" x="99.12" y="-2860.95" font-family="arial" font-size="14.00">Ignition coil 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2854.25 281.5,-2878.25 401,-2878.25 401,-2854.25 281.5,-2854.25"/>
+<text text-anchor="start" x="332.25" y="-2860.95" font-family="arial" font-size="14.00">A3</text>
+<polygon fill="none" stroke="black" points="0,-2830.25 0,-2854.25 281.5,-2854.25 281.5,-2830.25 0,-2830.25"/>
+<text text-anchor="start" x="102.5" y="-2836.95" font-family="arial" font-size="14.00">Tachometer</text>
+<polygon fill="none" stroke="black" points="281.5,-2830.25 281.5,-2854.25 401,-2854.25 401,-2830.25 281.5,-2830.25"/>
+<text text-anchor="start" x="332.25" y="-2836.95" font-family="arial" font-size="14.00">A4</text>
+<polygon fill="none" stroke="black" points="0,-2806.25 0,-2830.25 281.5,-2830.25 281.5,-2806.25 0,-2806.25"/>
+<text text-anchor="start" x="77.38" y="-2812.95" font-family="arial" font-size="14.00">Extra Output 6 (Fan)</text>
+<polygon fill="none" stroke="black" points="281.5,-2806.25 281.5,-2830.25 401,-2830.25 401,-2806.25 281.5,-2806.25"/>
+<text text-anchor="start" x="332.25" y="-2812.95" font-family="arial" font-size="14.00">B1</text>
+<polygon fill="none" stroke="black" points="0,-2782.25 0,-2806.25 281.5,-2806.25 281.5,-2782.25 0,-2782.25"/>
+<text text-anchor="start" x="99.12" y="-2788.95" font-family="arial" font-size="14.00">Ignition coil 3</text>
+<polygon fill="none" stroke="black" points="281.5,-2782.25 281.5,-2806.25 401,-2806.25 401,-2782.25 281.5,-2782.25"/>
+<text text-anchor="start" x="332.25" y="-2788.95" font-family="arial" font-size="14.00">B2</text>
+<polygon fill="none" stroke="black" points="0,-2758.25 0,-2782.25 281.5,-2782.25 281.5,-2758.25 0,-2758.25"/>
+<text text-anchor="start" x="99.12" y="-2764.95" font-family="arial" font-size="14.00">Ignition coil 4</text>
+<polygon fill="none" stroke="black" points="281.5,-2758.25 281.5,-2782.25 401,-2782.25 401,-2758.25 281.5,-2758.25"/>
+<text text-anchor="start" x="332.25" y="-2764.95" font-family="arial" font-size="14.00">B3</text>
+<polygon fill="none" stroke="black" points="0,-2734.25 0,-2758.25 281.5,-2758.25 281.5,-2734.25 0,-2734.25"/>
+<text text-anchor="start" x="95.75" y="-2740.95" font-family="arial" font-size="14.00">Extra Output 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2734.25 281.5,-2758.25 401,-2758.25 401,-2734.25 281.5,-2734.25"/>
+<text text-anchor="start" x="332.25" y="-2740.95" font-family="arial" font-size="14.00">B4</text>
+<polygon fill="none" stroke="black" points="0,-2710.25 0,-2734.25 281.5,-2734.25 281.5,-2710.25 0,-2710.25"/>
+<text text-anchor="start" x="95.75" y="-2716.95" font-family="arial" font-size="14.00">Extra Output 7</text>
+<polygon fill="none" stroke="black" points="281.5,-2710.25 281.5,-2734.25 401,-2734.25 401,-2710.25 281.5,-2710.25"/>
+<text text-anchor="start" x="331.88" y="-2716.95" font-family="arial" font-size="14.00">C1</text>
+<polygon fill="none" stroke="black" points="0,-2686.25 0,-2710.25 281.5,-2710.25 281.5,-2686.25 0,-2686.25"/>
+<text text-anchor="start" x="99.12" y="-2692.95" font-family="arial" font-size="14.00">Ignition coil 5</text>
+<polygon fill="none" stroke="black" points="281.5,-2686.25 281.5,-2710.25 401,-2710.25 401,-2686.25 281.5,-2686.25"/>
+<text text-anchor="start" x="331.88" y="-2692.95" font-family="arial" font-size="14.00">C2</text>
+<polygon fill="none" stroke="black" points="0,-2662.25 0,-2686.25 281.5,-2686.25 281.5,-2662.25 0,-2662.25"/>
+<text text-anchor="start" x="99.12" y="-2668.95" font-family="arial" font-size="14.00">Ignition coil 6</text>
+<polygon fill="none" stroke="black" points="281.5,-2662.25 281.5,-2686.25 401,-2686.25 401,-2662.25 281.5,-2662.25"/>
+<text text-anchor="start" x="331.88" y="-2668.95" font-family="arial" font-size="14.00">C3</text>
+<polygon fill="none" stroke="black" points="0,-2638.25 0,-2662.25 281.5,-2662.25 281.5,-2638.25 0,-2638.25"/>
+<text text-anchor="start" x="97.25" y="-2644.95" font-family="arial" font-size="14.00">Extra output 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2638.25 281.5,-2662.25 401,-2662.25 401,-2638.25 281.5,-2638.25"/>
+<text text-anchor="start" x="331.88" y="-2644.95" font-family="arial" font-size="14.00">C4</text>
+<polygon fill="none" stroke="black" points="0,-2614.25 0,-2638.25 281.5,-2638.25 281.5,-2614.25 0,-2614.25"/>
+<text text-anchor="start" x="92.38" y="-2620.95" font-family="arial" font-size="14.00">Lambda 1 Heat</text>
+<polygon fill="none" stroke="black" points="281.5,-2614.25 281.5,-2638.25 401,-2638.25 401,-2614.25 281.5,-2614.25"/>
+<text text-anchor="start" x="331.88" y="-2620.95" font-family="arial" font-size="14.00">D1</text>
+<polygon fill="none" stroke="black" points="0,-2590.25 0,-2614.25 281.5,-2614.25 281.5,-2590.25 0,-2590.25"/>
+<text text-anchor="start" x="99.12" y="-2596.95" font-family="arial" font-size="14.00">Ignition coil 7</text>
+<polygon fill="none" stroke="black" points="281.5,-2590.25 281.5,-2614.25 401,-2614.25 401,-2590.25 281.5,-2590.25"/>
+<text text-anchor="start" x="331.88" y="-2596.95" font-family="arial" font-size="14.00">D2</text>
+<polygon fill="none" stroke="black" points="0,-2566.25 0,-2590.25 281.5,-2590.25 281.5,-2566.25 0,-2566.25"/>
+<text text-anchor="start" x="99.12" y="-2572.95" font-family="arial" font-size="14.00">Ignition coil 8</text>
+<polygon fill="none" stroke="black" points="281.5,-2566.25 281.5,-2590.25 401,-2590.25 401,-2566.25 281.5,-2566.25"/>
+<text text-anchor="start" x="331.88" y="-2572.95" font-family="arial" font-size="14.00">D3</text>
+<polygon fill="none" stroke="black" points="0,-2542.25 0,-2566.25 281.5,-2566.25 281.5,-2542.25 0,-2542.25"/>
+<text text-anchor="start" x="97.25" y="-2548.95" font-family="arial" font-size="14.00">Extra output 3</text>
+<polygon fill="none" stroke="black" points="281.5,-2542.25 281.5,-2566.25 401,-2566.25 401,-2542.25 281.5,-2542.25"/>
+<text text-anchor="start" x="331.88" y="-2548.95" font-family="arial" font-size="14.00">D4</text>
+<polygon fill="none" stroke="black" points="0,-2518.25 0,-2542.25 281.5,-2542.25 281.5,-2518.25 0,-2518.25"/>
+<text text-anchor="start" x="119" y="-2524.95" font-family="arial" font-size="14.00">CAN H</text>
+<polygon fill="none" stroke="black" points="281.5,-2518.25 281.5,-2542.25 401,-2542.25 401,-2518.25 281.5,-2518.25"/>
+<text text-anchor="start" x="332.25" y="-2524.95" font-family="arial" font-size="14.00">E1</text>
+<polygon fill="none" stroke="black" points="0,-2494.25 0,-2518.25 281.5,-2518.25 281.5,-2494.25 0,-2494.25"/>
+<text text-anchor="start" x="119.75" y="-2500.95" font-family="arial" font-size="14.00">CAN L</text>
+<polygon fill="none" stroke="black" points="281.5,-2494.25 281.5,-2518.25 401,-2518.25 401,-2494.25 281.5,-2494.25"/>
+<text text-anchor="start" x="332.25" y="-2500.95" font-family="arial" font-size="14.00">E2</text>
+<polygon fill="none" stroke="black" points="0,-2470.25 0,-2494.25 281.5,-2494.25 281.5,-2470.25 0,-2470.25"/>
+<text text-anchor="start" x="95.38" y="-2476.95" font-family="arial" font-size="14.00">Sheild Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-2470.25 281.5,-2494.25 401,-2494.25 401,-2470.25 281.5,-2470.25"/>
+<text text-anchor="start" x="332.25" y="-2476.95" font-family="arial" font-size="14.00">E3</text>
+<polygon fill="none" stroke="black" points="0,-2446.25 0,-2470.25 281.5,-2470.25 281.5,-2446.25 0,-2446.25"/>
+<text text-anchor="start" x="95.75" y="-2452.95" font-family="arial" font-size="14.00">Extra Output 4</text>
+<polygon fill="none" stroke="black" points="281.5,-2446.25 281.5,-2470.25 401,-2470.25 401,-2446.25 281.5,-2446.25"/>
+<text text-anchor="start" x="332.25" y="-2452.95" font-family="arial" font-size="14.00">E4</text>
+<polygon fill="none" stroke="black" points="0,-2422.25 0,-2446.25 281.5,-2446.25 281.5,-2422.25 0,-2422.25"/>
+<text text-anchor="start" x="50" y="-2428.95" font-family="arial" font-size="14.00">Coolant Temperature sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2422.25 281.5,-2446.25 401,-2446.25 401,-2422.25 281.5,-2422.25"/>
+<text text-anchor="start" x="332.62" y="-2428.95" font-family="arial" font-size="14.00">F1</text>
+<polygon fill="none" stroke="black" points="0,-2398.25 0,-2422.25 281.5,-2422.25 281.5,-2398.25 0,-2398.25"/>
+<text text-anchor="start" x="65.75" y="-2404.95" font-family="arial" font-size="14.00">Air Temperature sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2398.25 281.5,-2422.25 401,-2422.25 401,-2398.25 281.5,-2398.25"/>
+<text text-anchor="start" x="332.62" y="-2404.95" font-family="arial" font-size="14.00">F2</text>
+<polygon fill="none" stroke="black" points="0,-2374.25 0,-2398.25 281.5,-2398.25 281.5,-2374.25 0,-2374.25"/>
+<text text-anchor="start" x="90.5" y="-2380.95" font-family="arial" font-size="14.00">Lambda 1 COM</text>
+<polygon fill="none" stroke="black" points="281.5,-2374.25 281.5,-2398.25 401,-2398.25 401,-2374.25 281.5,-2374.25"/>
+<text text-anchor="start" x="332.62" y="-2380.95" font-family="arial" font-size="14.00">F3</text>
+<polygon fill="none" stroke="black" points="0,-2350.25 0,-2374.25 281.5,-2374.25 281.5,-2350.25 0,-2350.25"/>
+<text text-anchor="start" x="90.12" y="-2356.95" font-family="arial" font-size="14.00">Lambda 1 VS in</text>
+<polygon fill="none" stroke="black" points="281.5,-2350.25 281.5,-2374.25 401,-2374.25 401,-2350.25 281.5,-2350.25"/>
+<text text-anchor="start" x="332.62" y="-2356.95" font-family="arial" font-size="14.00">F4</text>
+<polygon fill="none" stroke="black" points="0,-2326.25 0,-2350.25 281.5,-2350.25 281.5,-2326.25 0,-2326.25"/>
+<text text-anchor="start" x="83.38" y="-2332.95" font-family="arial" font-size="14.00">5V Sensor Supply</text>
+<polygon fill="none" stroke="black" points="281.5,-2326.25 281.5,-2350.25 401,-2350.25 401,-2326.25 281.5,-2326.25"/>
+<text text-anchor="start" x="331.5" y="-2332.95" font-family="arial" font-size="14.00">G1</text>
+<polygon fill="none" stroke="black" points="0,-2302.25 0,-2326.25 281.5,-2326.25 281.5,-2302.25 0,-2302.25"/>
+<text text-anchor="start" x="93.12" y="-2308.95" font-family="arial" font-size="14.00">Throttle sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2302.25 281.5,-2326.25 401,-2326.25 401,-2302.25 281.5,-2302.25"/>
+<text text-anchor="start" x="331.5" y="-2308.95" font-family="arial" font-size="14.00">G2</text>
+<polygon fill="none" stroke="black" points="0,-2278.25 0,-2302.25 281.5,-2302.25 281.5,-2278.25 0,-2278.25"/>
+<text text-anchor="start" x="99.88" y="-2284.95" font-family="arial" font-size="14.00">Lambda 1 IP</text>
+<polygon fill="none" stroke="black" points="281.5,-2278.25 281.5,-2302.25 401,-2302.25 401,-2278.25 281.5,-2278.25"/>
+<text text-anchor="start" x="331.5" y="-2284.95" font-family="arial" font-size="14.00">G3</text>
+<polygon fill="none" stroke="black" points="0,-2254.25 0,-2278.25 281.5,-2278.25 281.5,-2254.25 0,-2254.25"/>
+<text text-anchor="start" x="87.5" y="-2260.95" font-family="arial" font-size="14.00">Lambda 1 RCAL</text>
+<polygon fill="none" stroke="black" points="281.5,-2254.25 281.5,-2278.25 401,-2278.25 401,-2254.25 281.5,-2254.25"/>
+<text text-anchor="start" x="331.5" y="-2260.95" font-family="arial" font-size="14.00">G4</text>
+<polygon fill="none" stroke="black" points="0,-2230.25 0,-2254.25 281.5,-2254.25 281.5,-2230.25 0,-2230.25"/>
+<text text-anchor="start" x="92.38" y="-2236.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-2230.25 281.5,-2254.25 401,-2254.25 401,-2230.25 281.5,-2230.25"/>
+<text text-anchor="start" x="332.25" y="-2236.95" font-family="arial" font-size="14.00">H1</text>
+<polygon fill="none" stroke="black" points="0,-2206.25 0,-2230.25 281.5,-2230.25 281.5,-2206.25 0,-2206.25"/>
+<text text-anchor="start" x="72.5" y="-2212.95" font-family="arial" font-size="14.00">Home sensor Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-2206.25 281.5,-2230.25 401,-2230.25 401,-2206.25 281.5,-2206.25"/>
+<text text-anchor="start" x="332.25" y="-2212.95" font-family="arial" font-size="14.00">H2</text>
+<polygon fill="none" stroke="black" points="0,-2182.25 0,-2206.25 281.5,-2206.25 281.5,-2182.25 0,-2182.25"/>
+<text text-anchor="start" x="97.62" y="-2188.95" font-family="arial" font-size="14.00">Crank Sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2182.25 281.5,-2206.25 401,-2206.25 401,-2182.25 281.5,-2182.25"/>
+<text text-anchor="start" x="332.25" y="-2188.95" font-family="arial" font-size="14.00">H3</text>
+<polygon fill="none" stroke="black" points="0,-2158.25 0,-2182.25 281.5,-2182.25 281.5,-2158.25 0,-2158.25"/>
+<text text-anchor="start" x="98" y="-2164.95" font-family="arial" font-size="14.00">Home sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2158.25 281.5,-2182.25 401,-2182.25 401,-2158.25 281.5,-2158.25"/>
+<text text-anchor="start" x="332.25" y="-2164.95" font-family="arial" font-size="14.00">H4</text>
+<polygon fill="none" stroke="black" points="0,-2134.25 0,-2158.25 281.5,-2158.25 281.5,-2134.25 0,-2134.25"/>
+<text text-anchor="start" x="52.25" y="-2140.95" font-family="arial" font-size="14.00">Extra Temperature sensor 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2134.25 281.5,-2158.25 401,-2158.25 401,-2134.25 281.5,-2134.25"/>
+<text text-anchor="start" x="333.38" y="-2140.95" font-family="arial" font-size="14.00">J1</text>
+<polygon fill="none" stroke="black" points="0,-2110.25 0,-2134.25 281.5,-2134.25 281.5,-2110.25 0,-2110.25"/>
+<text text-anchor="start" x="52.25" y="-2116.95" font-family="arial" font-size="14.00">Extra Temperature sensor 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2110.25 281.5,-2134.25 401,-2134.25 401,-2110.25 281.5,-2110.25"/>
+<text text-anchor="start" x="333.38" y="-2116.95" font-family="arial" font-size="14.00">J2</text>
+<polygon fill="none" stroke="black" points="0,-2086.25 0,-2110.25 281.5,-2110.25 281.5,-2086.25 0,-2086.25"/>
+<text text-anchor="start" x="96.12" y="-2092.95" font-family="arial" font-size="14.00">Fuel Pressure</text>
+<polygon fill="none" stroke="black" points="281.5,-2086.25 281.5,-2110.25 401,-2110.25 401,-2086.25 281.5,-2086.25"/>
+<text text-anchor="start" x="333.38" y="-2092.95" font-family="arial" font-size="14.00">J3</text>
+<polygon fill="none" stroke="black" points="0,-2062.25 0,-2086.25 281.5,-2086.25 281.5,-2062.25 0,-2062.25"/>
+<text text-anchor="start" x="125.75" y="-2068.95" font-family="arial" font-size="14.00">Baro</text>
+<polygon fill="none" stroke="black" points="281.5,-2062.25 281.5,-2086.25 401,-2086.25 401,-2062.25 281.5,-2062.25"/>
+<text text-anchor="start" x="333.38" y="-2068.95" font-family="arial" font-size="14.00">J4</text>
+<polygon fill="none" stroke="black" points="0,-2038.25 0,-2062.25 281.5,-2062.25 281.5,-2038.25 0,-2038.25"/>
+<text text-anchor="start" x="111.12" y="-2044.95" font-family="arial" font-size="14.00">Injector 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2038.25 281.5,-2062.25 401,-2062.25 401,-2038.25 281.5,-2038.25"/>
+<text text-anchor="start" x="332.25" y="-2044.95" font-family="arial" font-size="14.00">K1</text>
+<polygon fill="none" stroke="black" points="0,-2014.25 0,-2038.25 281.5,-2038.25 281.5,-2014.25 0,-2014.25"/>
+<text text-anchor="start" x="111.12" y="-2020.95" font-family="arial" font-size="14.00">Injector 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2014.25 281.5,-2038.25 401,-2038.25 401,-2014.25 281.5,-2014.25"/>
+<text text-anchor="start" x="332.25" y="-2020.95" font-family="arial" font-size="14.00">K2</text>
+<polygon fill="none" stroke="black" points="0,-1990.25 0,-2014.25 281.5,-2014.25 281.5,-1990.25 0,-1990.25"/>
+<text text-anchor="start" x="86.38" y="-1996.95" font-family="arial" font-size="14.00">Digital/VR input 1</text>
+<polygon fill="none" stroke="black" points="281.5,-1990.25 281.5,-2014.25 401,-2014.25 401,-1990.25 281.5,-1990.25"/>
+<text text-anchor="start" x="332.25" y="-1996.95" font-family="arial" font-size="14.00">K3</text>
+<polygon fill="none" stroke="black" points="0,-1966.25 0,-1990.25 281.5,-1990.25 281.5,-1966.25 0,-1966.25"/>
+<text text-anchor="start" x="105.5" y="-1972.95" font-family="arial" font-size="14.00">Rotor RPM</text>
+<polygon fill="none" stroke="black" points="281.5,-1966.25 281.5,-1990.25 401,-1990.25 401,-1966.25 281.5,-1966.25"/>
+<text text-anchor="start" x="332.25" y="-1972.95" font-family="arial" font-size="14.00">K4</text>
+<polygon fill="none" stroke="black" points="0,-1942.25 0,-1966.25 281.5,-1966.25 281.5,-1942.25 0,-1942.25"/>
+<text text-anchor="start" x="111.12" y="-1948.95" font-family="arial" font-size="14.00">Injector 8</text>
+<polygon fill="none" stroke="black" points="281.5,-1942.25 281.5,-1966.25 401,-1966.25 401,-1942.25 281.5,-1942.25"/>
+<text text-anchor="start" x="333" y="-1948.95" font-family="arial" font-size="14.00">L1</text>
+<polygon fill="none" stroke="black" points="0,-1918.25 0,-1942.25 281.5,-1942.25 281.5,-1918.25 0,-1918.25"/>
+<text text-anchor="start" x="111.12" y="-1924.95" font-family="arial" font-size="14.00">Injector 7</text>
+<polygon fill="none" stroke="black" points="281.5,-1918.25 281.5,-1942.25 401,-1942.25 401,-1918.25 281.5,-1918.25"/>
+<text text-anchor="start" x="333" y="-1924.95" font-family="arial" font-size="14.00">L2</text>
+<polygon fill="none" stroke="black" points="0,-1894.25 0,-1918.25 281.5,-1918.25 281.5,-1894.25 0,-1894.25"/>
+<text text-anchor="start" x="111.12" y="-1900.95" font-family="arial" font-size="14.00">Injector 6</text>
+<polygon fill="none" stroke="black" points="281.5,-1894.25 281.5,-1918.25 401,-1918.25 401,-1894.25 281.5,-1894.25"/>
+<text text-anchor="start" x="333" y="-1900.95" font-family="arial" font-size="14.00">L3</text>
+<polygon fill="none" stroke="black" points="0,-1870.25 0,-1894.25 281.5,-1894.25 281.5,-1870.25 0,-1870.25"/>
+<text text-anchor="start" x="93.12" y="-1876.95" font-family="arial" font-size="14.00">Engine Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-1870.25 281.5,-1894.25 401,-1894.25 401,-1870.25 281.5,-1870.25"/>
+<text text-anchor="start" x="333" y="-1876.95" font-family="arial" font-size="14.00">L4</text>
+<polygon fill="none" stroke="black" points="0,-1846.25 0,-1870.25 281.5,-1870.25 281.5,-1846.25 0,-1846.25"/>
+<text text-anchor="start" x="111.12" y="-1852.95" font-family="arial" font-size="14.00">Injector 3</text>
+<polygon fill="none" stroke="black" points="281.5,-1846.25 281.5,-1870.25 401,-1870.25 401,-1846.25 281.5,-1846.25"/>
+<text text-anchor="start" x="331.5" y="-1852.95" font-family="arial" font-size="14.00">M1</text>
+<polygon fill="none" stroke="black" points="0,-1822.25 0,-1846.25 281.5,-1846.25 281.5,-1822.25 0,-1822.25"/>
+<text text-anchor="start" x="111.12" y="-1828.95" font-family="arial" font-size="14.00">Injector 4</text>
+<polygon fill="none" stroke="black" points="281.5,-1822.25 281.5,-1846.25 401,-1846.25 401,-1822.25 281.5,-1822.25"/>
+<text text-anchor="start" x="331.5" y="-1828.95" font-family="arial" font-size="14.00">M2</text>
+<polygon fill="none" stroke="black" points="0,-1798.25 0,-1822.25 281.5,-1822.25 281.5,-1798.25 0,-1798.25"/>
+<text text-anchor="start" x="111.12" y="-1804.95" font-family="arial" font-size="14.00">Injector 5</text>
+<polygon fill="none" stroke="black" points="281.5,-1798.25 281.5,-1822.25 401,-1822.25 401,-1798.25 281.5,-1798.25"/>
+<text text-anchor="start" x="331.5" y="-1804.95" font-family="arial" font-size="14.00">M3</text>
+<polygon fill="none" stroke="black" points="0,-1774.25 0,-1798.25 281.5,-1798.25 281.5,-1774.25 0,-1774.25"/>
+<text text-anchor="start" x="110.75" y="-1780.95" font-family="arial" font-size="14.00">ECU 12V</text>
+<polygon fill="none" stroke="black" points="281.5,-1774.25 281.5,-1798.25 401,-1798.25 401,-1774.25 281.5,-1774.25"/>
+<text text-anchor="start" x="331.5" y="-1780.95" font-family="arial" font-size="14.00">M4</text>
+<polyline fill="none" stroke="black" points="401,-1499.25 401,-1774.25 0,-1774.25 0,-1499.25"/>
+<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="4" y="-1770.25"/>
+<polyline fill="none" stroke="black" points="0,-1499.25 0,-1474.75 401,-1474.75 401,-1499.25"/>
+<text text-anchor="start" x="128.5" y="-1481.95" font-family="arial" font-size="14.00">Connector 643203311</text>
+<polygon fill="none" stroke="black" points="0,-1450.25 0,-1474.75 401,-1474.75 401,-1450.25 0,-1450.25"/>
+<text text-anchor="start" x="89.5" y="-1457.45" font-family="arial" font-size="14.00">ECU Connector 1 (GPO Low side!)</text>
</g>
<!-- W1 -->
-<g id="node19" class="node">
+<g id="node22" class="node">
<title>W1</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1014.5,-3564.25 611.5,-3564.25 611.5,-3325.25 1014.5,-3325.25 1014.5,-3564.25"/>
-<polygon fill="none" stroke="black" points="611.5,-3539.75 611.5,-3564.25 1014.5,-3564.25 1014.5,-3539.75 611.5,-3539.75"/>
-<text text-anchor="start" x="801.75" y="-3546.95" font-family="arial" font-size="14.00">W1</text>
-<polygon fill="none" stroke="black" points="611.5,-3515.25 611.5,-3539.75 712.33,-3539.75 712.33,-3515.25 611.5,-3515.25"/>
-<text text-anchor="start" x="654.42" y="-3522.45" font-family="arial" font-size="14.00">5x</text>
-<polygon fill="none" stroke="black" points="712.33,-3515.25 712.33,-3539.75 853.67,-3539.75 853.67,-3515.25 712.33,-3515.25"/>
-<text text-anchor="start" x="755.25" y="-3522.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="853.67,-3515.25 853.67,-3539.75 1014.5,-3539.75 1014.5,-3515.25 853.67,-3515.25"/>
-<text text-anchor="start" x="896.58" y="-3522.45" font-family="arial" font-size="14.00">50.0 Inches</text>
-<text text-anchor="start" x="687.62" y="-3499.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="620.12" y="-3479.95" font-family="arial" font-size="14.00">ECU:A2:Ignition coil 1</text>
-<text text-anchor="start" x="769.38" y="-3479.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3479.95" font-family="arial" font-size="14.00">Coil Pack 1:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3473.25 611.5,-3475.25 1014.5,-3475.25 1014.5,-3473.25 611.5,-3473.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3471.25 611.5,-3473.25 1014.5,-3473.25 1014.5,-3471.25 611.5,-3471.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3469.25 611.5,-3471.25 1014.5,-3471.25 1014.5,-3469.25 611.5,-3469.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3467.25 611.5,-3469.25 1014.5,-3469.25 1014.5,-3467.25 611.5,-3467.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3465.25 611.5,-3467.25 1014.5,-3467.25 1014.5,-3465.25 611.5,-3465.25"/>
-<text text-anchor="start" x="620.12" y="-3449.95" font-family="arial" font-size="14.00">ECU:A3:Ignition coil 2</text>
-<text text-anchor="start" x="769.38" y="-3449.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3449.95" font-family="arial" font-size="14.00">Coil Pack 2:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3443.25 611.5,-3445.25 1014.5,-3445.25 1014.5,-3443.25 611.5,-3443.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3441.25 611.5,-3443.25 1014.5,-3443.25 1014.5,-3441.25 611.5,-3441.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3439.25 611.5,-3441.25 1014.5,-3441.25 1014.5,-3439.25 611.5,-3439.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3437.25 611.5,-3439.25 1014.5,-3439.25 1014.5,-3437.25 611.5,-3437.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3435.25 611.5,-3437.25 1014.5,-3437.25 1014.5,-3435.25 611.5,-3435.25"/>
-<text text-anchor="start" x="620.12" y="-3419.95" font-family="arial" font-size="14.00">ECU:B2:Ignition coil 3</text>
-<text text-anchor="start" x="769.38" y="-3419.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3419.95" font-family="arial" font-size="14.00">Coil Pack 3:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3413.25 611.5,-3415.25 1014.5,-3415.25 1014.5,-3413.25 611.5,-3413.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3411.25 611.5,-3413.25 1014.5,-3413.25 1014.5,-3411.25 611.5,-3411.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3409.25 611.5,-3411.25 1014.5,-3411.25 1014.5,-3409.25 611.5,-3409.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3407.25 611.5,-3409.25 1014.5,-3409.25 1014.5,-3407.25 611.5,-3407.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3405.25 611.5,-3407.25 1014.5,-3407.25 1014.5,-3405.25 611.5,-3405.25"/>
-<text text-anchor="start" x="620.12" y="-3389.95" font-family="arial" font-size="14.00">ECU:B3:Ignition coil 4</text>
-<text text-anchor="start" x="769.38" y="-3389.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3389.95" font-family="arial" font-size="14.00">Coil Pack 4:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3383.25 611.5,-3385.25 1014.5,-3385.25 1014.5,-3383.25 611.5,-3383.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3381.25 611.5,-3383.25 1014.5,-3383.25 1014.5,-3381.25 611.5,-3381.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3379.25 611.5,-3381.25 1014.5,-3381.25 1014.5,-3379.25 611.5,-3379.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3377.25 611.5,-3379.25 1014.5,-3379.25 1014.5,-3377.25 611.5,-3377.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3375.25 611.5,-3377.25 1014.5,-3377.25 1014.5,-3375.25 611.5,-3375.25"/>
-<text text-anchor="start" x="613.38" y="-3359.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="769.38" y="-3359.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="826.5" y="-3359.95" font-family="arial" font-size="14.00">Coil Pack 1:B:Sensor Ground</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3353.25 611.5,-3355.25 1014.5,-3355.25 1014.5,-3353.25 611.5,-3353.25"/>
-<polygon fill="#895956" stroke="none" points="611.5,-3351.25 611.5,-3353.25 1014.5,-3353.25 1014.5,-3351.25 611.5,-3351.25"/>
-<polygon fill="#895956" stroke="none" points="611.5,-3349.25 611.5,-3351.25 1014.5,-3351.25 1014.5,-3349.25 611.5,-3349.25"/>
-<polygon fill="#895956" stroke="none" points="611.5,-3347.25 611.5,-3349.25 1014.5,-3349.25 1014.5,-3347.25 611.5,-3347.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3345.25 611.5,-3347.25 1014.5,-3347.25 1014.5,-3345.25 611.5,-3345.25"/>
-<text text-anchor="start" x="687.62" y="-3329.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1014.5,-3365.25 611.5,-3365.25 611.5,-3126.25 1014.5,-3126.25 1014.5,-3365.25"/>
+<polygon fill="none" stroke="black" points="611.5,-3340.75 611.5,-3365.25 1014.5,-3365.25 1014.5,-3340.75 611.5,-3340.75"/>
+<text text-anchor="start" x="801.75" y="-3347.95" font-family="arial" font-size="14.00">W1</text>
+<polygon fill="none" stroke="black" points="611.5,-3316.25 611.5,-3340.75 712.33,-3340.75 712.33,-3316.25 611.5,-3316.25"/>
+<text text-anchor="start" x="654.42" y="-3323.45" font-family="arial" font-size="14.00">5x</text>
+<polygon fill="none" stroke="black" points="712.33,-3316.25 712.33,-3340.75 853.67,-3340.75 853.67,-3316.25 712.33,-3316.25"/>
+<text text-anchor="start" x="755.25" y="-3323.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="853.67,-3316.25 853.67,-3340.75 1014.5,-3340.75 1014.5,-3316.25 853.67,-3316.25"/>
+<text text-anchor="start" x="896.58" y="-3323.45" font-family="arial" font-size="14.00">50.0 Inches</text>
+<text text-anchor="start" x="687.62" y="-3300.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="620.12" y="-3280.95" font-family="arial" font-size="14.00">ECU:A2:Ignition coil 1</text>
+<text text-anchor="start" x="769.38" y="-3280.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3280.95" font-family="arial" font-size="14.00">Coil Pack 1:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3274.25 611.5,-3276.25 1014.5,-3276.25 1014.5,-3274.25 611.5,-3274.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3272.25 611.5,-3274.25 1014.5,-3274.25 1014.5,-3272.25 611.5,-3272.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3270.25 611.5,-3272.25 1014.5,-3272.25 1014.5,-3270.25 611.5,-3270.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3268.25 611.5,-3270.25 1014.5,-3270.25 1014.5,-3268.25 611.5,-3268.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3266.25 611.5,-3268.25 1014.5,-3268.25 1014.5,-3266.25 611.5,-3266.25"/>
+<text text-anchor="start" x="620.12" y="-3250.95" font-family="arial" font-size="14.00">ECU:A3:Ignition coil 2</text>
+<text text-anchor="start" x="769.38" y="-3250.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3250.95" font-family="arial" font-size="14.00">Coil Pack 2:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3244.25 611.5,-3246.25 1014.5,-3246.25 1014.5,-3244.25 611.5,-3244.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3242.25 611.5,-3244.25 1014.5,-3244.25 1014.5,-3242.25 611.5,-3242.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3240.25 611.5,-3242.25 1014.5,-3242.25 1014.5,-3240.25 611.5,-3240.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3238.25 611.5,-3240.25 1014.5,-3240.25 1014.5,-3238.25 611.5,-3238.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3236.25 611.5,-3238.25 1014.5,-3238.25 1014.5,-3236.25 611.5,-3236.25"/>
+<text text-anchor="start" x="620.12" y="-3220.95" font-family="arial" font-size="14.00">ECU:B2:Ignition coil 3</text>
+<text text-anchor="start" x="769.38" y="-3220.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3220.95" font-family="arial" font-size="14.00">Coil Pack 3:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3214.25 611.5,-3216.25 1014.5,-3216.25 1014.5,-3214.25 611.5,-3214.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3212.25 611.5,-3214.25 1014.5,-3214.25 1014.5,-3212.25 611.5,-3212.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3210.25 611.5,-3212.25 1014.5,-3212.25 1014.5,-3210.25 611.5,-3210.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3208.25 611.5,-3210.25 1014.5,-3210.25 1014.5,-3208.25 611.5,-3208.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3206.25 611.5,-3208.25 1014.5,-3208.25 1014.5,-3206.25 611.5,-3206.25"/>
+<text text-anchor="start" x="620.12" y="-3190.95" font-family="arial" font-size="14.00">ECU:B3:Ignition coil 4</text>
+<text text-anchor="start" x="769.38" y="-3190.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3190.95" font-family="arial" font-size="14.00">Coil Pack 4:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3184.25 611.5,-3186.25 1014.5,-3186.25 1014.5,-3184.25 611.5,-3184.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3182.25 611.5,-3184.25 1014.5,-3184.25 1014.5,-3182.25 611.5,-3182.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3180.25 611.5,-3182.25 1014.5,-3182.25 1014.5,-3180.25 611.5,-3180.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3178.25 611.5,-3180.25 1014.5,-3180.25 1014.5,-3178.25 611.5,-3178.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3176.25 611.5,-3178.25 1014.5,-3178.25 1014.5,-3176.25 611.5,-3176.25"/>
+<text text-anchor="start" x="613.38" y="-3160.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="769.38" y="-3160.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="826.5" y="-3160.95" font-family="arial" font-size="14.00">Coil Pack 2:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3154.25 611.5,-3156.25 1014.5,-3156.25 1014.5,-3154.25 611.5,-3154.25"/>
+<polygon fill="#895956" stroke="none" points="611.5,-3152.25 611.5,-3154.25 1014.5,-3154.25 1014.5,-3152.25 611.5,-3152.25"/>
+<polygon fill="#895956" stroke="none" points="611.5,-3150.25 611.5,-3152.25 1014.5,-3152.25 1014.5,-3150.25 611.5,-3150.25"/>
+<polygon fill="#895956" stroke="none" points="611.5,-3148.25 611.5,-3150.25 1014.5,-3150.25 1014.5,-3148.25 611.5,-3148.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3146.25 611.5,-3148.25 1014.5,-3148.25 1014.5,-3146.25 611.5,-3146.25"/>
+<text text-anchor="start" x="687.62" y="-3130.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2892.25C676.03,-2898.26 342.39,-3472.26 610.5,-3466.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2894.25C674.3,-2897.26 340.66,-3471.26 610.5,-3468.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2896.25C672.57,-2896.25 338.93,-3470.25 610.5,-3470.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2898.25C670.84,-2895.24 337.2,-3469.24 610.5,-3472.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2900.25C669.11,-2894.24 335.47,-3468.24 610.5,-3474.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2886.25C597.87,-2891.94 420.88,-3272.94 610.5,-3267.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2888.25C596.06,-2891.09 419.07,-3272.09 610.5,-3269.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2890.25C594.24,-2890.25 417.26,-3271.25 610.5,-3271.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2892.25C592.43,-2889.41 415.44,-3270.41 610.5,-3273.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2894.25C590.62,-2888.56 413.63,-3269.56 610.5,-3275.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2868.25C673.53,-2874.25 344.89,-3442.25 610.5,-3436.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2870.25C671.8,-2873.25 343.16,-3441.25 610.5,-3438.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2872.25C670.07,-2872.25 341.43,-3440.25 610.5,-3440.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2874.25C668.34,-2871.25 339.7,-3439.25 610.5,-3442.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2876.25C666.61,-2870.25 337.97,-3438.25 610.5,-3444.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2862.25C595.55,-2867.92 423.22,-3242.92 610.5,-3237.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2864.25C593.73,-2867.09 421.41,-3242.09 610.5,-3239.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2866.25C591.91,-2866.25 419.59,-3241.25 610.5,-3241.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2868.25C590.09,-2865.41 417.77,-3240.41 610.5,-3243.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2870.25C588.28,-2864.58 415.95,-3239.58 610.5,-3245.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2796.25C691.09,-2802.3 327.28,-3412.3 610.5,-3406.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2798.25C689.37,-2801.27 325.56,-3411.27 610.5,-3408.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2800.25C687.65,-2800.25 323.85,-3410.25 610.5,-3410.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2802.25C685.94,-2799.23 322.13,-3409.23 610.5,-3412.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2804.25C684.22,-2798.2 320.41,-3408.2 610.5,-3414.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2790.25C612,-2796.02 406.68,-3213.02 610.5,-3207.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2792.25C610.2,-2795.13 404.89,-3212.13 610.5,-3209.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2794.25C608.41,-2794.25 403.09,-3211.25 610.5,-3211.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2796.25C606.61,-2793.37 401.3,-3210.37 610.5,-3213.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2798.25C604.82,-2792.48 399.5,-3209.48 610.5,-3215.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2772.25C688.57,-2778.29 329.81,-3382.29 610.5,-3376.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2774.25C686.85,-2777.27 328.09,-3381.27 610.5,-3378.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2776.25C685.13,-2776.25 326.37,-3380.25 610.5,-3380.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2778.25C683.41,-2775.23 324.65,-3379.23 610.5,-3382.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2780.25C681.69,-2774.21 322.93,-3378.21 610.5,-3384.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2766.25C609.62,-2772 409.07,-3183 610.5,-3177.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2768.25C607.83,-2771.13 407.27,-3182.13 610.5,-3179.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2770.25C606.03,-2770.25 405.47,-3181.25 610.5,-3181.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2772.25C604.23,-2769.37 403.67,-3180.37 610.5,-3183.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2774.25C602.43,-2768.5 401.88,-3179.5 610.5,-3185.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C654.14,-2249.26 365.09,-3351.26 610.5,-3346.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C652.21,-2248.76 363.16,-3350.76 610.5,-3348.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C650.27,-2248.25 361.23,-3350.25 610.5,-3350.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C648.34,-2247.74 359.29,-3349.74 610.5,-3352.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C646.41,-2247.24 357.36,-3349.24 610.5,-3354.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C612.2,-2243.13 407.11,-3152.13 610.5,-3147.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C610.25,-2242.69 405.16,-3151.69 610.5,-3149.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C608.3,-2242.25 403.2,-3151.25 610.5,-3151.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C606.34,-2241.81 401.25,-3150.81 610.5,-3153.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C604.39,-2241.37 399.3,-3150.37 610.5,-3155.25"/>
</g>
<!-- W3 -->
-<g id="node20" class="node">
+<g id="node26" class="node">
<title>W3</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1471.25 642,-1471.25 642,-1352.25 984,-1352.25 984,-1471.25"/>
-<polygon fill="none" stroke="black" points="642,-1446.75 642,-1471.25 984,-1471.25 984,-1446.75 642,-1446.75"/>
-<text text-anchor="start" x="801.75" y="-1453.95" font-family="arial" font-size="14.00">W3</text>
-<polygon fill="none" stroke="black" points="642,-1422.25 642,-1446.75 722.5,-1446.75 722.5,-1422.25 642,-1422.25"/>
-<text text-anchor="start" x="674.75" y="-1429.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="722.5,-1422.25 722.5,-1446.75 843.5,-1446.75 843.5,-1422.25 722.5,-1422.25"/>
-<text text-anchor="start" x="755.25" y="-1429.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="843.5,-1422.25 843.5,-1446.75 984,-1446.75 984,-1422.25 843.5,-1422.25"/>
-<text text-anchor="start" x="876.25" y="-1429.45" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="699.12" y="-1406.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="643.62" y="-1386.95" font-family="arial" font-size="14.00">ECU:K1:Injector 1</text>
-<text text-anchor="start" x="762" y="-1386.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<text text-anchor="start" x="820" y="-1386.95" font-family="arial" font-size="14.00">Fuel Injector 1:2:ECU INJ</text>
-<polygon fill="#000000" stroke="none" points="642,-1380.25 642,-1382.25 984,-1382.25 984,-1380.25 642,-1380.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1378.25 642,-1380.25 984,-1380.25 984,-1378.25 642,-1378.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1376.25 642,-1378.25 984,-1378.25 984,-1376.25 642,-1376.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1374.25 642,-1376.25 984,-1376.25 984,-1374.25 642,-1374.25"/>
-<polygon fill="#000000" stroke="none" points="642,-1372.25 642,-1374.25 984,-1374.25 984,-1372.25 642,-1372.25"/>
-<text text-anchor="start" x="699.12" y="-1356.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1483.25 642,-1483.25 642,-1364.25 984,-1364.25 984,-1483.25"/>
+<polygon fill="none" stroke="black" points="642,-1458.75 642,-1483.25 984,-1483.25 984,-1458.75 642,-1458.75"/>
+<text text-anchor="start" x="801.75" y="-1465.95" font-family="arial" font-size="14.00">W3</text>
+<polygon fill="none" stroke="black" points="642,-1434.25 642,-1458.75 722.5,-1458.75 722.5,-1434.25 642,-1434.25"/>
+<text text-anchor="start" x="674.75" y="-1441.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="722.5,-1434.25 722.5,-1458.75 843.5,-1458.75 843.5,-1434.25 722.5,-1434.25"/>
+<text text-anchor="start" x="755.25" y="-1441.45" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="843.5,-1434.25 843.5,-1458.75 984,-1458.75 984,-1434.25 843.5,-1434.25"/>
+<text text-anchor="start" x="876.25" y="-1441.45" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="699.12" y="-1418.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="643.62" y="-1398.95" font-family="arial" font-size="14.00">ECU:K1:Injector 1</text>
+<text text-anchor="start" x="762" y="-1398.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<text text-anchor="start" x="820" y="-1398.95" font-family="arial" font-size="14.00">Fuel Injector 1:2:ECU INJ</text>
+<polygon fill="#000000" stroke="none" points="642,-1392.25 642,-1394.25 984,-1394.25 984,-1392.25 642,-1392.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1390.25 642,-1392.25 984,-1392.25 984,-1390.25 642,-1390.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1388.25 642,-1390.25 984,-1390.25 984,-1388.25 642,-1388.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1386.25 642,-1388.25 984,-1388.25 984,-1386.25 642,-1386.25"/>
+<polygon fill="#000000" stroke="none" points="642,-1384.25 642,-1386.25 984,-1386.25 984,-1384.25 642,-1384.25"/>
+<text text-anchor="start" x="699.12" y="-1368.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W3 -->
-<g id="edge14" class="edge">
+<g id="edge20" class="edge">
<title>ECU:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2052.25C717.63,-2058.28 317.48,-1379.28 641,-1373.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2054.25C719.35,-2057.27 319.2,-1378.27 641,-1375.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2056.25C721.07,-2056.25 320.93,-1377.25 641,-1377.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2058.25C722.8,-2055.23 322.65,-1376.23 641,-1379.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2060.25C724.52,-2054.22 324.37,-1375.22 641,-1381.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2046.25C710.09,-2052.26 325,-1391.26 641,-1385.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2048.25C711.81,-2051.26 326.73,-1390.26 641,-1387.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2050.25C713.54,-2050.25 328.46,-1389.25 641,-1389.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2052.25C715.27,-2049.24 330.19,-1388.24 641,-1391.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2054.25C717,-2048.24 331.91,-1387.24 641,-1393.25"/>
</g>
<!-- W4 -->
-<g id="node21" class="node">
+<g id="node27" class="node">
<title>W4</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1128.25 642,-1128.25 642,-1009.25 984,-1009.25 984,-1128.25"/>
-<polygon fill="none" stroke="black" points="642,-1103.75 642,-1128.25 984,-1128.25 984,-1103.75 642,-1103.75"/>
-<text text-anchor="start" x="801.75" y="-1110.95" font-family="arial" font-size="14.00">W4</text>
-<polygon fill="none" stroke="black" points="642,-1079.25 642,-1103.75 722.5,-1103.75 722.5,-1079.25 642,-1079.25"/>
-<text text-anchor="start" x="674.75" y="-1086.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="722.5,-1079.25 722.5,-1103.75 843.5,-1103.75 843.5,-1079.25 722.5,-1079.25"/>
-<text text-anchor="start" x="755.25" y="-1086.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="843.5,-1079.25 843.5,-1103.75 984,-1103.75 984,-1079.25 843.5,-1079.25"/>
-<text text-anchor="start" x="876.25" y="-1086.45" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="699.12" y="-1063.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="643.62" y="-1043.95" font-family="arial" font-size="14.00">ECU:K2:Injector 2</text>
-<text text-anchor="start" x="762" y="-1043.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<text text-anchor="start" x="820" y="-1043.95" font-family="arial" font-size="14.00">Fuel Injector 2:2:ECU INJ</text>
-<polygon fill="#000000" stroke="none" points="642,-1037.25 642,-1039.25 984,-1039.25 984,-1037.25 642,-1037.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1035.25 642,-1037.25 984,-1037.25 984,-1035.25 642,-1035.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1033.25 642,-1035.25 984,-1035.25 984,-1033.25 642,-1033.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1031.25 642,-1033.25 984,-1033.25 984,-1031.25 642,-1031.25"/>
-<polygon fill="#000000" stroke="none" points="642,-1029.25 642,-1031.25 984,-1031.25 984,-1029.25 642,-1029.25"/>
-<text text-anchor="start" x="699.12" y="-1013.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1134.25 642,-1134.25 642,-1015.25 984,-1015.25 984,-1134.25"/>
+<polygon fill="none" stroke="black" points="642,-1109.75 642,-1134.25 984,-1134.25 984,-1109.75 642,-1109.75"/>
+<text text-anchor="start" x="801.75" y="-1116.95" font-family="arial" font-size="14.00">W4</text>
+<polygon fill="none" stroke="black" points="642,-1085.25 642,-1109.75 722.5,-1109.75 722.5,-1085.25 642,-1085.25"/>
+<text text-anchor="start" x="674.75" y="-1092.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="722.5,-1085.25 722.5,-1109.75 843.5,-1109.75 843.5,-1085.25 722.5,-1085.25"/>
+<text text-anchor="start" x="755.25" y="-1092.45" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="843.5,-1085.25 843.5,-1109.75 984,-1109.75 984,-1085.25 843.5,-1085.25"/>
+<text text-anchor="start" x="876.25" y="-1092.45" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="699.12" y="-1069.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="643.62" y="-1049.95" font-family="arial" font-size="14.00">ECU:K2:Injector 2</text>
+<text text-anchor="start" x="762" y="-1049.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<text text-anchor="start" x="820" y="-1049.95" font-family="arial" font-size="14.00">Fuel Injector 2:2:ECU INJ</text>
+<polygon fill="#000000" stroke="none" points="642,-1043.25 642,-1045.25 984,-1045.25 984,-1043.25 642,-1043.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1041.25 642,-1043.25 984,-1043.25 984,-1041.25 642,-1041.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1039.25 642,-1041.25 984,-1041.25 984,-1039.25 642,-1039.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1037.25 642,-1039.25 984,-1039.25 984,-1037.25 642,-1037.25"/>
+<polygon fill="#000000" stroke="none" points="642,-1035.25 642,-1037.25 984,-1037.25 984,-1035.25 642,-1035.25"/>
+<text text-anchor="start" x="699.12" y="-1019.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W4 -->
-<g id="edge16" class="edge">
+<g id="edge22" class="edge">
<title>ECU:e&#45;&#45;W4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2028.25C625.19,-2033.1 408.99,-1035.1 641,-1030.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2030.25C627.15,-2032.67 410.94,-1034.67 641,-1032.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2032.25C629.1,-2032.25 412.9,-1034.25 641,-1034.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2034.25C631.06,-2031.83 414.85,-1033.83 641,-1036.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2036.25C633.01,-2031.4 416.81,-1033.4 641,-1038.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2022.25C622.6,-2027.09 411.58,-1041.09 641,-1036.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2024.25C624.55,-2026.67 413.54,-1040.67 641,-1038.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2026.25C626.51,-2026.25 415.49,-1040.25 641,-1040.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2028.25C628.46,-2025.83 417.45,-1039.83 641,-1042.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2030.25C630.42,-2025.41 419.4,-1039.41 641,-1044.25"/>
</g>
<!-- W5 -->
-<g id="node22" class="node">
+<g id="node28" class="node">
<title>W5</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1001,-2480.25 625,-2480.25 625,-2229.25 1001,-2229.25 1001,-2480.25"/>
-<polygon fill="none" stroke="black" points="625,-2455.75 625,-2480.25 1001,-2480.25 1001,-2455.75 625,-2455.75"/>
-<text text-anchor="start" x="801.75" y="-2462.95" font-family="arial" font-size="14.00">W5</text>
-<polygon fill="none" stroke="black" points="625,-2431.25 625,-2455.75 692.19,-2455.75 692.19,-2431.25 625,-2431.25"/>
-<text text-anchor="start" x="651.09" y="-2438.45" font-family="arial" font-size="14.00">4x</text>
-<polygon fill="none" stroke="black" points="692.19,-2431.25 692.19,-2455.75 799.88,-2455.75 799.88,-2431.25 692.19,-2431.25"/>
-<text text-anchor="start" x="718.28" y="-2438.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="799.88,-2431.25 799.88,-2455.75 873.81,-2455.75 873.81,-2431.25 799.88,-2431.25"/>
-<text text-anchor="start" x="825.97" y="-2438.45" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="873.81,-2431.25 873.81,-2455.75 1001,-2455.75 1001,-2431.25 873.81,-2431.25"/>
-<text text-anchor="start" x="899.91" y="-2438.45" font-family="arial" font-size="14.00">21.0 Inches</text>
-<text text-anchor="start" x="706.62" y="-2415.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="630.5" y="-2395.95" font-family="arial" font-size="14.00">ECU:F4:Lambda 1 VS in</text>
-<text text-anchor="start" x="795.88" y="-2395.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="854.62" y="-2395.95" font-family="arial" font-size="14.00">LSU:1:VBO2 VS/O2 In</text>
-<polygon fill="#000000" stroke="none" points="625,-2389.25 625,-2391.25 1001,-2391.25 1001,-2389.25 625,-2389.25"/>
-<polygon fill="#895956" stroke="none" points="625,-2387.25 625,-2389.25 1001,-2389.25 1001,-2387.25 625,-2387.25"/>
-<polygon fill="#895956" stroke="none" points="625,-2385.25 625,-2387.25 1001,-2387.25 1001,-2385.25 625,-2385.25"/>
-<polygon fill="#895956" stroke="none" points="625,-2383.25 625,-2385.25 1001,-2385.25 1001,-2383.25 625,-2383.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2381.25 625,-2383.25 1001,-2383.25 1001,-2381.25 625,-2381.25"/>
-<text text-anchor="start" x="626.75" y="-2365.95" font-family="arial" font-size="14.00">ECU:G4:Lambda 1 RCAL</text>
-<text text-anchor="start" x="795.12" y="-2365.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="863.25" y="-2365.95" font-family="arial" font-size="14.00">LSU:2:WBO2 Recal</text>
-<polygon fill="#000000" stroke="none" points="625,-2359.25 625,-2361.25 1001,-2361.25 1001,-2359.25 625,-2359.25"/>
-<polygon fill="#00ff00" stroke="none" points="625,-2357.25 625,-2359.25 1001,-2359.25 1001,-2357.25 625,-2357.25"/>
-<polygon fill="#00ff00" stroke="none" points="625,-2355.25 625,-2357.25 1001,-2357.25 1001,-2355.25 625,-2355.25"/>
-<polygon fill="#00ff00" stroke="none" points="625,-2353.25 625,-2355.25 1001,-2355.25 1001,-2353.25 625,-2353.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2351.25 625,-2353.25 1001,-2353.25 1001,-2351.25 625,-2351.25"/>
-<text text-anchor="start" x="630.88" y="-2335.95" font-family="arial" font-size="14.00">ECU:F3:Lambda 1 COM</text>
-<text text-anchor="start" x="796.25" y="-2335.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="865.12" y="-2335.95" font-family="arial" font-size="14.00">LSU:5:WBO2 COM</text>
-<polygon fill="#000000" stroke="none" points="625,-2329.25 625,-2331.25 1001,-2331.25 1001,-2329.25 625,-2329.25"/>
-<polygon fill="#ffff00" stroke="none" points="625,-2327.25 625,-2329.25 1001,-2329.25 1001,-2327.25 625,-2327.25"/>
-<polygon fill="#ffff00" stroke="none" points="625,-2325.25 625,-2327.25 1001,-2327.25 1001,-2325.25 625,-2325.25"/>
-<polygon fill="#ffff00" stroke="none" points="625,-2323.25 625,-2325.25 1001,-2325.25 1001,-2323.25 625,-2323.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2321.25 625,-2323.25 1001,-2323.25 1001,-2321.25 625,-2321.25"/>
-<text text-anchor="start" x="639.12" y="-2305.95" font-family="arial" font-size="14.00">ECU:G3:Lambda 1 IP</text>
-<text text-anchor="start" x="793.62" y="-2305.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<text text-anchor="start" x="874.5" y="-2305.95" font-family="arial" font-size="14.00">LSU:6:WBO2 IP</text>
-<polygon fill="#000000" stroke="none" points="625,-2299.25 625,-2301.25 1001,-2301.25 1001,-2299.25 625,-2299.25"/>
-<polygon fill="#ffffff" stroke="none" points="625,-2297.25 625,-2299.25 1001,-2299.25 1001,-2297.25 625,-2297.25"/>
-<polygon fill="#ffffff" stroke="none" points="625,-2295.25 625,-2297.25 1001,-2297.25 1001,-2295.25 625,-2295.25"/>
-<polygon fill="#ffffff" stroke="none" points="625,-2293.25 625,-2295.25 1001,-2295.25 1001,-2293.25 625,-2293.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2291.25 625,-2293.25 1001,-2293.25 1001,-2291.25 625,-2291.25"/>
-<text text-anchor="start" x="706.62" y="-2275.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="635.38" y="-2255.95" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
-<text text-anchor="start" x="802.62" y="-2255.95" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="625,-2249.25 625,-2251.25 1001,-2251.25 1001,-2249.25 625,-2249.25"/>
-<text text-anchor="start" x="706.62" y="-2233.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1001,-2474.25 625,-2474.25 625,-2223.25 1001,-2223.25 1001,-2474.25"/>
+<polygon fill="none" stroke="black" points="625,-2449.75 625,-2474.25 1001,-2474.25 1001,-2449.75 625,-2449.75"/>
+<text text-anchor="start" x="801.75" y="-2456.95" font-family="arial" font-size="14.00">W5</text>
+<polygon fill="none" stroke="black" points="625,-2425.25 625,-2449.75 692.19,-2449.75 692.19,-2425.25 625,-2425.25"/>
+<text text-anchor="start" x="651.09" y="-2432.45" font-family="arial" font-size="14.00">4x</text>
+<polygon fill="none" stroke="black" points="692.19,-2425.25 692.19,-2449.75 799.88,-2449.75 799.88,-2425.25 692.19,-2425.25"/>
+<text text-anchor="start" x="718.28" y="-2432.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="799.88,-2425.25 799.88,-2449.75 873.81,-2449.75 873.81,-2425.25 799.88,-2425.25"/>
+<text text-anchor="start" x="825.97" y="-2432.45" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="873.81,-2425.25 873.81,-2449.75 1001,-2449.75 1001,-2425.25 873.81,-2425.25"/>
+<text text-anchor="start" x="899.91" y="-2432.45" font-family="arial" font-size="14.00">21.0 Inches</text>
+<text text-anchor="start" x="706.62" y="-2409.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="630.5" y="-2389.95" font-family="arial" font-size="14.00">ECU:F4:Lambda 1 VS in</text>
+<text text-anchor="start" x="795.88" y="-2389.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="854.62" y="-2389.95" font-family="arial" font-size="14.00">LSU:1:VBO2 VS/O2 In</text>
+<polygon fill="#000000" stroke="none" points="625,-2383.25 625,-2385.25 1001,-2385.25 1001,-2383.25 625,-2383.25"/>
+<polygon fill="#895956" stroke="none" points="625,-2381.25 625,-2383.25 1001,-2383.25 1001,-2381.25 625,-2381.25"/>
+<polygon fill="#895956" stroke="none" points="625,-2379.25 625,-2381.25 1001,-2381.25 1001,-2379.25 625,-2379.25"/>
+<polygon fill="#895956" stroke="none" points="625,-2377.25 625,-2379.25 1001,-2379.25 1001,-2377.25 625,-2377.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2375.25 625,-2377.25 1001,-2377.25 1001,-2375.25 625,-2375.25"/>
+<text text-anchor="start" x="626.75" y="-2359.95" font-family="arial" font-size="14.00">ECU:G4:Lambda 1 RCAL</text>
+<text text-anchor="start" x="795.12" y="-2359.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="863.25" y="-2359.95" font-family="arial" font-size="14.00">LSU:2:WBO2 Recal</text>
+<polygon fill="#000000" stroke="none" points="625,-2353.25 625,-2355.25 1001,-2355.25 1001,-2353.25 625,-2353.25"/>
+<polygon fill="#00ff00" stroke="none" points="625,-2351.25 625,-2353.25 1001,-2353.25 1001,-2351.25 625,-2351.25"/>
+<polygon fill="#00ff00" stroke="none" points="625,-2349.25 625,-2351.25 1001,-2351.25 1001,-2349.25 625,-2349.25"/>
+<polygon fill="#00ff00" stroke="none" points="625,-2347.25 625,-2349.25 1001,-2349.25 1001,-2347.25 625,-2347.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2345.25 625,-2347.25 1001,-2347.25 1001,-2345.25 625,-2345.25"/>
+<text text-anchor="start" x="630.88" y="-2329.95" font-family="arial" font-size="14.00">ECU:F3:Lambda 1 COM</text>
+<text text-anchor="start" x="796.25" y="-2329.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="865.12" y="-2329.95" font-family="arial" font-size="14.00">LSU:5:WBO2 COM</text>
+<polygon fill="#000000" stroke="none" points="625,-2323.25 625,-2325.25 1001,-2325.25 1001,-2323.25 625,-2323.25"/>
+<polygon fill="#ffff00" stroke="none" points="625,-2321.25 625,-2323.25 1001,-2323.25 1001,-2321.25 625,-2321.25"/>
+<polygon fill="#ffff00" stroke="none" points="625,-2319.25 625,-2321.25 1001,-2321.25 1001,-2319.25 625,-2319.25"/>
+<polygon fill="#ffff00" stroke="none" points="625,-2317.25 625,-2319.25 1001,-2319.25 1001,-2317.25 625,-2317.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2315.25 625,-2317.25 1001,-2317.25 1001,-2315.25 625,-2315.25"/>
+<text text-anchor="start" x="639.12" y="-2299.95" font-family="arial" font-size="14.00">ECU:G3:Lambda 1 IP</text>
+<text text-anchor="start" x="793.62" y="-2299.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<text text-anchor="start" x="874.5" y="-2299.95" font-family="arial" font-size="14.00">LSU:6:WBO2 IP</text>
+<polygon fill="#000000" stroke="none" points="625,-2293.25 625,-2295.25 1001,-2295.25 1001,-2293.25 625,-2293.25"/>
+<polygon fill="#ffffff" stroke="none" points="625,-2291.25 625,-2293.25 1001,-2293.25 1001,-2291.25 625,-2291.25"/>
+<polygon fill="#ffffff" stroke="none" points="625,-2289.25 625,-2291.25 1001,-2291.25 1001,-2289.25 625,-2289.25"/>
+<polygon fill="#ffffff" stroke="none" points="625,-2287.25 625,-2289.25 1001,-2289.25 1001,-2287.25 625,-2287.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2285.25 625,-2287.25 1001,-2287.25 1001,-2285.25 625,-2285.25"/>
+<text text-anchor="start" x="706.62" y="-2269.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="635.38" y="-2249.95" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
+<text text-anchor="start" x="802.62" y="-2249.95" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="625,-2243.25 625,-2245.25 1001,-2245.25 1001,-2243.25 625,-2243.25"/>
+<text text-anchor="start" x="706.62" y="-2227.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge18" class="edge">
+<g id="edge24" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2364.25C502.82,-2365.04 526.96,-2383.04 624,-2382.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2366.25C501.63,-2366.65 525.76,-2384.65 624,-2384.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2368.25C500.43,-2368.25 524.57,-2386.25 624,-2386.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2370.25C499.24,-2369.85 523.37,-2387.85 624,-2388.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2372.25C498.04,-2371.46 522.18,-2389.46 624,-2390.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2358.25C502.82,-2359.04 526.96,-2377.04 624,-2376.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2360.25C501.63,-2360.65 525.76,-2378.65 624,-2378.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2362.25C500.43,-2362.25 524.57,-2380.25 624,-2380.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2364.25C499.24,-2363.85 523.37,-2381.85 624,-2382.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2366.25C498.04,-2365.46 522.18,-2383.46 624,-2384.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge20" class="edge">
+<g id="edge26" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2268.25C510.87,-2271.72 522.06,-2355.72 624,-2352.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2270.25C508.89,-2271.99 520.07,-2355.99 624,-2354.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2272.25C506.91,-2272.25 518.09,-2356.25 624,-2356.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2274.25C504.93,-2272.51 516.11,-2356.51 624,-2358.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2276.25C502.94,-2272.78 514.13,-2356.78 624,-2360.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2262.25C510.87,-2265.72 522.06,-2349.72 624,-2346.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2264.25C508.89,-2265.99 520.07,-2349.99 624,-2348.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2266.25C506.91,-2266.25 518.09,-2350.25 624,-2350.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2268.25C504.93,-2266.51 516.11,-2350.51 624,-2352.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2270.25C502.94,-2266.78 514.13,-2350.78 624,-2354.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge22" class="edge">
+<g id="edge28" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2388.25C500.48,-2391.29 516.76,-2325.29 624,-2322.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2390.25C502.42,-2391.77 518.7,-2325.77 624,-2324.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2392.25C504.36,-2392.25 520.64,-2326.25 624,-2326.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2394.25C506.3,-2392.73 522.58,-2326.73 624,-2328.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2396.25C508.24,-2393.21 524.52,-2327.21 624,-2330.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2382.25C500.48,-2385.29 516.76,-2319.29 624,-2316.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2384.25C502.42,-2385.77 518.7,-2319.77 624,-2318.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2386.25C504.36,-2386.25 520.64,-2320.25 624,-2320.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2388.25C506.3,-2386.73 522.58,-2320.73 624,-2322.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2390.25C508.24,-2387.21 524.52,-2321.21 624,-2324.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge24" class="edge">
+<g id="edge30" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2292.25C500.11,-2292.25 524.89,-2292.25 624,-2292.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2294.25C500.11,-2294.25 524.89,-2294.25 624,-2294.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2296.25C500.11,-2296.25 524.89,-2296.25 624,-2296.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2298.25C500.11,-2298.25 524.89,-2298.25 624,-2298.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2300.25C500.11,-2300.25 524.89,-2300.25 624,-2300.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2286.25C500.11,-2286.25 524.89,-2286.25 624,-2286.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2288.25C500.11,-2288.25 524.89,-2288.25 624,-2288.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2290.25C500.11,-2290.25 524.89,-2290.25 624,-2290.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2292.25C500.11,-2292.25 524.89,-2292.25 624,-2292.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2294.25C500.11,-2294.25 524.89,-2294.25 624,-2294.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge26" class="edge">
+<g id="edge32" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2488.25C545.95,-2488.25 479.05,-2250.25 624,-2250.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2482.25C545.95,-2482.25 479.05,-2244.25 624,-2244.25"/>
</g>
<!-- W6 -->
-<g id="node23" class="node">
+<g id="node29" class="node">
<title>W6</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="982.5,-2623.25 643.5,-2623.25 643.5,-2504.25 982.5,-2504.25 982.5,-2623.25"/>
-<polygon fill="none" stroke="black" points="643.5,-2598.75 643.5,-2623.25 982.5,-2623.25 982.5,-2598.75 643.5,-2598.75"/>
-<text text-anchor="start" x="801.75" y="-2605.95" font-family="arial" font-size="14.00">W6</text>
-<polygon fill="none" stroke="black" points="643.5,-2574.25 643.5,-2598.75 723,-2598.75 723,-2574.25 643.5,-2574.25"/>
-<text text-anchor="start" x="675.75" y="-2581.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="723,-2574.25 723,-2598.75 843,-2598.75 843,-2574.25 723,-2574.25"/>
-<text text-anchor="start" x="755.25" y="-2581.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="843,-2574.25 843,-2598.75 982.5,-2598.75 982.5,-2574.25 843,-2574.25"/>
-<text text-anchor="start" x="875.25" y="-2581.45" font-family="arial" font-size="14.00">21.0 Inches</text>
-<text text-anchor="start" x="720.12" y="-2558.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="645.5" y="-2538.95" font-family="arial" font-size="14.00">ECU:D1:Lambda 1 Heat</text>
-<text text-anchor="start" x="802.12" y="-2538.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="860.5" y="-2538.95" font-family="arial" font-size="14.00">LSU:4:WBO2 HTR</text>
-<polygon fill="#000000" stroke="none" points="643.5,-2532.25 643.5,-2534.25 982.5,-2534.25 982.5,-2532.25 643.5,-2532.25"/>
-<polygon fill="#00ff00" stroke="none" points="643.5,-2530.25 643.5,-2532.25 982.5,-2532.25 982.5,-2530.25 643.5,-2530.25"/>
-<polygon fill="#00ff00" stroke="none" points="643.5,-2528.25 643.5,-2530.25 982.5,-2530.25 982.5,-2528.25 643.5,-2528.25"/>
-<polygon fill="#00ff00" stroke="none" points="643.5,-2526.25 643.5,-2528.25 982.5,-2528.25 982.5,-2526.25 643.5,-2526.25"/>
-<polygon fill="#000000" stroke="none" points="643.5,-2524.25 643.5,-2526.25 982.5,-2526.25 982.5,-2524.25 643.5,-2524.25"/>
-<text text-anchor="start" x="720.12" y="-2508.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="982.5,-2617.25 643.5,-2617.25 643.5,-2498.25 982.5,-2498.25 982.5,-2617.25"/>
+<polygon fill="none" stroke="black" points="643.5,-2592.75 643.5,-2617.25 982.5,-2617.25 982.5,-2592.75 643.5,-2592.75"/>
+<text text-anchor="start" x="801.75" y="-2599.95" font-family="arial" font-size="14.00">W6</text>
+<polygon fill="none" stroke="black" points="643.5,-2568.25 643.5,-2592.75 723,-2592.75 723,-2568.25 643.5,-2568.25"/>
+<text text-anchor="start" x="675.75" y="-2575.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="723,-2568.25 723,-2592.75 843,-2592.75 843,-2568.25 723,-2568.25"/>
+<text text-anchor="start" x="755.25" y="-2575.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="843,-2568.25 843,-2592.75 982.5,-2592.75 982.5,-2568.25 843,-2568.25"/>
+<text text-anchor="start" x="875.25" y="-2575.45" font-family="arial" font-size="14.00">21.0 Inches</text>
+<text text-anchor="start" x="720.12" y="-2552.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="645.5" y="-2532.95" font-family="arial" font-size="14.00">ECU:D1:Lambda 1 Heat</text>
+<text text-anchor="start" x="802.12" y="-2532.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="860.5" y="-2532.95" font-family="arial" font-size="14.00">LSU:4:WBO2 HTR</text>
+<polygon fill="#000000" stroke="none" points="643.5,-2526.25 643.5,-2528.25 982.5,-2528.25 982.5,-2526.25 643.5,-2526.25"/>
+<polygon fill="#00ff00" stroke="none" points="643.5,-2524.25 643.5,-2526.25 982.5,-2526.25 982.5,-2524.25 643.5,-2524.25"/>
+<polygon fill="#00ff00" stroke="none" points="643.5,-2522.25 643.5,-2524.25 982.5,-2524.25 982.5,-2522.25 643.5,-2522.25"/>
+<polygon fill="#00ff00" stroke="none" points="643.5,-2520.25 643.5,-2522.25 982.5,-2522.25 982.5,-2520.25 643.5,-2520.25"/>
+<polygon fill="#000000" stroke="none" points="643.5,-2518.25 643.5,-2520.25 982.5,-2520.25 982.5,-2518.25 643.5,-2518.25"/>
+<text text-anchor="start" x="720.12" y="-2502.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W6 -->
-<g id="edge27" class="edge">
+<g id="edge33" class="edge">
<title>ECU:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2628.25C513.7,-2631.94 521.82,-2528.94 642.5,-2525.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2630.25C515.69,-2632.09 523.82,-2529.09 642.5,-2527.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2632.25C517.69,-2632.25 525.81,-2529.25 642.5,-2529.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2634.25C519.68,-2632.41 527.81,-2529.41 642.5,-2531.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2636.25C521.68,-2632.56 529.8,-2529.56 642.5,-2533.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2622.25C513.7,-2625.94 521.82,-2522.94 642.5,-2519.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2624.25C515.69,-2626.09 523.82,-2523.09 642.5,-2521.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2626.25C517.69,-2626.25 525.81,-2523.25 642.5,-2523.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2628.25C519.68,-2626.41 527.81,-2523.41 642.5,-2525.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2630.25C521.68,-2626.56 529.8,-2523.56 642.5,-2527.25"/>
</g>
<!-- W7 -->
-<g id="node24" class="node">
+<g id="node30" class="node">
<title>W7</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1041.5,-2892.5 584.5,-2892.5 584.5,-2647 1041.5,-2647 1041.5,-2892.5"/>
-<polygon fill="none" stroke="black" points="584.5,-2868 584.5,-2892.5 1041.5,-2892.5 1041.5,-2868 584.5,-2868"/>
-<text text-anchor="start" x="801.75" y="-2875.2" font-family="arial" font-size="14.00">W7</text>
-<polygon fill="none" stroke="black" points="584.5,-2843.5 584.5,-2868 671.94,-2868 671.94,-2843.5 584.5,-2843.5"/>
-<text text-anchor="start" x="620.72" y="-2850.7" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="671.94,-2843.5 671.94,-2868 799.88,-2868 799.88,-2843.5 671.94,-2843.5"/>
-<text text-anchor="start" x="708.16" y="-2850.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="799.88,-2843.5 799.88,-2868 894.06,-2868 894.06,-2843.5 799.88,-2843.5"/>
-<text text-anchor="start" x="836.09" y="-2850.7" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="894.06,-2843.5 894.06,-2868 1041.5,-2868 1041.5,-2843.5 894.06,-2843.5"/>
-<text text-anchor="start" x="930.28" y="-2850.7" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="657.62" y="-2828.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="610.75" y="-2808.2" font-family="arial" font-size="14.00">ECU:E2:CAN L</text>
-<text text-anchor="start" x="748.38" y="-2808.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="823.88" y="-2808.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:B:CANB_N</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2801.5 584.5,-2803.5 1041.5,-2803.5 1041.5,-2801.5 584.5,-2801.5"/>
-<polygon fill="#ff66cc" stroke="none" points="584.5,-2799.5 584.5,-2801.5 1041.5,-2801.5 1041.5,-2799.5 584.5,-2799.5"/>
-<polygon fill="#ff66cc" stroke="none" points="584.5,-2797.5 584.5,-2799.5 1041.5,-2799.5 1041.5,-2797.5 584.5,-2797.5"/>
-<polygon fill="#ff66cc" stroke="none" points="584.5,-2795.5 584.5,-2797.5 1041.5,-2797.5 1041.5,-2795.5 584.5,-2795.5"/>
-<polygon fill="#000000" stroke="none" points="584.5,-2793.5 584.5,-2795.5 1041.5,-2795.5 1041.5,-2793.5 584.5,-2793.5"/>
-<text text-anchor="start" x="610" y="-2778.2" font-family="arial" font-size="14.00">ECU:E1:CAN H</text>
-<text text-anchor="start" x="748" y="-2778.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<text text-anchor="start" x="823.88" y="-2778.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:A:CANB_P</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2771.5 584.5,-2773.5 1041.5,-2773.5 1041.5,-2771.5 584.5,-2771.5"/>
-<polygon fill="#999999" stroke="none" points="584.5,-2769.5 584.5,-2771.5 1041.5,-2771.5 1041.5,-2769.5 584.5,-2769.5"/>
-<polygon fill="#999999" stroke="none" points="584.5,-2767.5 584.5,-2769.5 1041.5,-2769.5 1041.5,-2767.5 584.5,-2767.5"/>
-<polygon fill="#999999" stroke="none" points="584.5,-2765.5 584.5,-2767.5 1041.5,-2767.5 1041.5,-2765.5 584.5,-2765.5"/>
-<polygon fill="#000000" stroke="none" points="584.5,-2763.5 584.5,-2765.5 1041.5,-2765.5 1041.5,-2763.5 584.5,-2763.5"/>
-<text text-anchor="start" x="586.38" y="-2748.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
-<text text-anchor="start" x="736.38" y="-2748.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
-<text text-anchor="start" x="817.5" y="-2748.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:C:CAN_GND</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2741.5 584.5,-2743.5 1041.5,-2743.5 1041.5,-2741.5 584.5,-2741.5"/>
-<polygon fill="#000000" stroke="none" points="584.5,-2739.5 584.5,-2741.5 1041.5,-2741.5 1041.5,-2739.5 584.5,-2739.5"/>
-<polygon fill="#ffffff" stroke="none" points="584.5,-2737.5 584.5,-2739.5 1041.5,-2739.5 1041.5,-2737.5 584.5,-2737.5"/>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1041.5,-2886.5 584.5,-2886.5 584.5,-2641 1041.5,-2641 1041.5,-2886.5"/>
+<polygon fill="none" stroke="black" points="584.5,-2862 584.5,-2886.5 1041.5,-2886.5 1041.5,-2862 584.5,-2862"/>
+<text text-anchor="start" x="801.75" y="-2869.2" font-family="arial" font-size="14.00">W7</text>
+<polygon fill="none" stroke="black" points="584.5,-2837.5 584.5,-2862 671.94,-2862 671.94,-2837.5 584.5,-2837.5"/>
+<text text-anchor="start" x="620.72" y="-2844.7" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="671.94,-2837.5 671.94,-2862 799.88,-2862 799.88,-2837.5 671.94,-2837.5"/>
+<text text-anchor="start" x="708.16" y="-2844.7" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="799.88,-2837.5 799.88,-2862 894.06,-2862 894.06,-2837.5 799.88,-2837.5"/>
+<text text-anchor="start" x="836.09" y="-2844.7" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="894.06,-2837.5 894.06,-2862 1041.5,-2862 1041.5,-2837.5 894.06,-2837.5"/>
+<text text-anchor="start" x="930.28" y="-2844.7" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="657.62" y="-2822.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="610.75" y="-2802.2" font-family="arial" font-size="14.00">ECU:E2:CAN L</text>
+<text text-anchor="start" x="748.38" y="-2802.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="823.88" y="-2802.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:B:CANB_N</text>
+<polygon fill="#000000" stroke="none" points="584.5,-2795.5 584.5,-2797.5 1041.5,-2797.5 1041.5,-2795.5 584.5,-2795.5"/>
+<polygon fill="#ff66cc" stroke="none" points="584.5,-2793.5 584.5,-2795.5 1041.5,-2795.5 1041.5,-2793.5 584.5,-2793.5"/>
+<polygon fill="#ff66cc" stroke="none" points="584.5,-2791.5 584.5,-2793.5 1041.5,-2793.5 1041.5,-2791.5 584.5,-2791.5"/>
+<polygon fill="#ff66cc" stroke="none" points="584.5,-2789.5 584.5,-2791.5 1041.5,-2791.5 1041.5,-2789.5 584.5,-2789.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2787.5 584.5,-2789.5 1041.5,-2789.5 1041.5,-2787.5 584.5,-2787.5"/>
+<text text-anchor="start" x="610" y="-2772.2" font-family="arial" font-size="14.00">ECU:E1:CAN H</text>
+<text text-anchor="start" x="748" y="-2772.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<text text-anchor="start" x="823.88" y="-2772.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:A:CANB_P</text>
+<polygon fill="#000000" stroke="none" points="584.5,-2765.5 584.5,-2767.5 1041.5,-2767.5 1041.5,-2765.5 584.5,-2765.5"/>
+<polygon fill="#999999" stroke="none" points="584.5,-2763.5 584.5,-2765.5 1041.5,-2765.5 1041.5,-2763.5 584.5,-2763.5"/>
+<polygon fill="#999999" stroke="none" points="584.5,-2761.5 584.5,-2763.5 1041.5,-2763.5 1041.5,-2761.5 584.5,-2761.5"/>
+<polygon fill="#999999" stroke="none" points="584.5,-2759.5 584.5,-2761.5 1041.5,-2761.5 1041.5,-2759.5 584.5,-2759.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2757.5 584.5,-2759.5 1041.5,-2759.5 1041.5,-2757.5 584.5,-2757.5"/>
+<text text-anchor="start" x="586.38" y="-2742.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
+<text text-anchor="start" x="736.38" y="-2742.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
+<text text-anchor="start" x="817.5" y="-2742.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:C:CAN_GND</text>
<polygon fill="#000000" stroke="none" points="584.5,-2735.5 584.5,-2737.5 1041.5,-2737.5 1041.5,-2735.5 584.5,-2735.5"/>
<polygon fill="#000000" stroke="none" points="584.5,-2733.5 584.5,-2735.5 1041.5,-2735.5 1041.5,-2733.5 584.5,-2733.5"/>
-<text text-anchor="start" x="657.62" y="-2718.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="586.38" y="-2698.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
-<text text-anchor="start" x="755.12" y="-2698.2" font-family="arial" font-size="14.00">Shield</text>
-<text text-anchor="start" x="877.88" y="-2698.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2691.5 584.5,-2693.5 1041.5,-2693.5 1041.5,-2691.5 584.5,-2691.5"/>
-<text text-anchor="start" x="657.62" y="-2676.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="584.5,-2647 584.5,-2671.5 1041.5,-2671.5 1041.5,-2647 584.5,-2647"/>
-<text text-anchor="start" x="718.12" y="-2654.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Veronte</text>
+<polygon fill="#ffffff" stroke="none" points="584.5,-2731.5 584.5,-2733.5 1041.5,-2733.5 1041.5,-2731.5 584.5,-2731.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2729.5 584.5,-2731.5 1041.5,-2731.5 1041.5,-2729.5 584.5,-2729.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2727.5 584.5,-2729.5 1041.5,-2729.5 1041.5,-2727.5 584.5,-2727.5"/>
+<text text-anchor="start" x="657.62" y="-2712.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="586.38" y="-2692.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
+<text text-anchor="start" x="755.12" y="-2692.2" font-family="arial" font-size="14.00">Shield</text>
+<text text-anchor="start" x="877.88" y="-2692.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
+<polygon fill="#000000" stroke="none" points="584.5,-2685.5 584.5,-2687.5 1041.5,-2687.5 1041.5,-2685.5 584.5,-2685.5"/>
+<text text-anchor="start" x="657.62" y="-2670.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="584.5,-2641 584.5,-2665.5 1041.5,-2665.5 1041.5,-2641 584.5,-2641"/>
+<text text-anchor="start" x="718.12" y="-2648.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Veronte</text>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge29" class="edge">
+<g id="edge35" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2508.25C555.57,-2513.79 436.31,-2800.04 583.5,-2794.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2510.25C553.73,-2513.02 434.47,-2799.27 583.5,-2796.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2512.25C551.88,-2512.25 432.62,-2798.5 583.5,-2798.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2514.25C550.03,-2511.48 430.77,-2797.73 583.5,-2800.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2516.25C548.19,-2510.71 428.93,-2796.96 583.5,-2802.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2502.25C555.57,-2507.79 436.31,-2794.04 583.5,-2788.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2504.25C553.73,-2507.02 434.47,-2793.27 583.5,-2790.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2506.25C551.88,-2506.25 432.62,-2792.5 583.5,-2792.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2508.25C550.03,-2505.48 430.77,-2791.73 583.5,-2794.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2510.25C548.19,-2504.71 428.93,-2790.96 583.5,-2796.5"/>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge31" class="edge">
+<g id="edge37" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2532.25C536.06,-2537.55 456,-2769.8 583.5,-2764.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2534.25C534.17,-2536.9 454.11,-2769.15 583.5,-2766.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2536.25C532.28,-2536.25 452.22,-2768.5 583.5,-2768.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2538.25C530.39,-2535.6 450.33,-2767.85 583.5,-2770.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2540.25C528.5,-2534.95 448.44,-2767.2 583.5,-2772.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2526.25C536.06,-2531.55 456,-2763.8 583.5,-2758.5"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2528.25C534.17,-2530.9 454.11,-2763.15 583.5,-2760.5"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2530.25C532.28,-2530.25 452.22,-2762.5 583.5,-2762.5"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2532.25C530.39,-2529.6 450.33,-2761.85 583.5,-2764.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2534.25C528.5,-2528.95 448.44,-2761.2 583.5,-2766.5"/>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge33" class="edge">
+<g id="edge39" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2484.25C542.41,-2489.64 449.59,-2739.89 583.5,-2734.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2486.25C540.53,-2488.95 447.72,-2739.2 583.5,-2736.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2488.25C538.66,-2488.25 445.84,-2738.5 583.5,-2738.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2490.25C536.78,-2487.55 443.97,-2737.8 583.5,-2740.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2492.25C534.91,-2486.86 442.09,-2737.11 583.5,-2742.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2478.25C542.41,-2483.64 449.59,-2733.89 583.5,-2728.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2480.25C540.53,-2482.95 447.72,-2733.2 583.5,-2730.5"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2482.25C538.66,-2482.25 445.84,-2732.5 583.5,-2732.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2484.25C536.78,-2481.55 443.97,-2731.8 583.5,-2734.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2486.25C534.91,-2480.86 442.09,-2731.11 583.5,-2736.5"/>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge35" class="edge">
+<g id="edge41" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2488.25C522.74,-2488.25 461.76,-2692.5 583.5,-2692.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2482.25C522.74,-2482.25 461.76,-2686.5 583.5,-2686.5"/>
</g>
<!-- W8 -->
-<g id="node25" class="node">
+<g id="node31" class="node">
<title>W8</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1081,-2177.25 545,-2177.25 545,-2028.25 1081,-2028.25 1081,-2177.25"/>
-<polygon fill="none" stroke="black" points="545,-2152.75 545,-2177.25 1081,-2177.25 1081,-2152.75 545,-2152.75"/>
-<text text-anchor="start" x="801.75" y="-2159.95" font-family="arial" font-size="14.00">W8</text>
-<polygon fill="none" stroke="black" points="545,-2128.25 545,-2152.75 690.17,-2152.75 690.17,-2128.25 545,-2128.25"/>
-<text text-anchor="start" x="610.08" y="-2135.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="690.17,-2128.25 690.17,-2152.75 875.83,-2152.75 875.83,-2128.25 690.17,-2128.25"/>
-<text text-anchor="start" x="755.25" y="-2135.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="875.83,-2128.25 875.83,-2152.75 1081,-2152.75 1081,-2128.25 875.83,-2128.25"/>
-<text text-anchor="start" x="940.92" y="-2135.45" font-family="arial" font-size="14.00">33.5 Inches</text>
-<text text-anchor="start" x="663.12" y="-2112.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="588.88" y="-2092.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="786.88" y="-2092.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="843.75" y="-2092.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:2:Sensor GND</text>
-<polygon fill="#000000" stroke="none" points="545,-2086.25 545,-2088.25 1081,-2088.25 1081,-2086.25 545,-2086.25"/>
-<polygon fill="#895956" stroke="none" points="545,-2084.25 545,-2086.25 1081,-2086.25 1081,-2084.25 545,-2084.25"/>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1081,-2175.25 545,-2175.25 545,-2026.25 1081,-2026.25 1081,-2175.25"/>
+<polygon fill="none" stroke="black" points="545,-2150.75 545,-2175.25 1081,-2175.25 1081,-2150.75 545,-2150.75"/>
+<text text-anchor="start" x="801.75" y="-2157.95" font-family="arial" font-size="14.00">W8</text>
+<polygon fill="none" stroke="black" points="545,-2126.25 545,-2150.75 690.17,-2150.75 690.17,-2126.25 545,-2126.25"/>
+<text text-anchor="start" x="610.08" y="-2133.45" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="690.17,-2126.25 690.17,-2150.75 875.83,-2150.75 875.83,-2126.25 690.17,-2126.25"/>
+<text text-anchor="start" x="755.25" y="-2133.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="875.83,-2126.25 875.83,-2150.75 1081,-2150.75 1081,-2126.25 875.83,-2126.25"/>
+<text text-anchor="start" x="940.92" y="-2133.45" font-family="arial" font-size="14.00">33.5 Inches</text>
+<text text-anchor="start" x="663.12" y="-2110.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="588.88" y="-2090.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="786.88" y="-2090.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="843.75" y="-2090.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:2:Sensor GND</text>
+<polygon fill="#000000" stroke="none" points="545,-2084.25 545,-2086.25 1081,-2086.25 1081,-2084.25 545,-2084.25"/>
<polygon fill="#895956" stroke="none" points="545,-2082.25 545,-2084.25 1081,-2084.25 1081,-2082.25 545,-2082.25"/>
<polygon fill="#895956" stroke="none" points="545,-2080.25 545,-2082.25 1081,-2082.25 1081,-2080.25 545,-2080.25"/>
-<polygon fill="#000000" stroke="none" points="545,-2078.25 545,-2080.25 1081,-2080.25 1081,-2078.25 545,-2078.25"/>
-<text text-anchor="start" x="546.88" y="-2062.95" font-family="arial" font-size="14.00">ECU:F1:Coolant Temperature sensor</text>
-<text text-anchor="start" x="786.88" y="-2062.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="857.25" y="-2062.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:1:Sensor+</text>
-<polygon fill="#000000" stroke="none" points="545,-2056.25 545,-2058.25 1081,-2058.25 1081,-2056.25 545,-2056.25"/>
+<polygon fill="#895956" stroke="none" points="545,-2078.25 545,-2080.25 1081,-2080.25 1081,-2078.25 545,-2078.25"/>
+<polygon fill="#000000" stroke="none" points="545,-2076.25 545,-2078.25 1081,-2078.25 1081,-2076.25 545,-2076.25"/>
+<text text-anchor="start" x="546.88" y="-2060.95" font-family="arial" font-size="14.00">ECU:F1:Coolant Temperature sensor</text>
+<text text-anchor="start" x="786.88" y="-2060.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="857.25" y="-2060.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:1:Sensor+</text>
<polygon fill="#000000" stroke="none" points="545,-2054.25 545,-2056.25 1081,-2056.25 1081,-2054.25 545,-2054.25"/>
<polygon fill="#000000" stroke="none" points="545,-2052.25 545,-2054.25 1081,-2054.25 1081,-2052.25 545,-2052.25"/>
<polygon fill="#000000" stroke="none" points="545,-2050.25 545,-2052.25 1081,-2052.25 1081,-2050.25 545,-2050.25"/>
<polygon fill="#000000" stroke="none" points="545,-2048.25 545,-2050.25 1081,-2050.25 1081,-2048.25 545,-2048.25"/>
-<text text-anchor="start" x="663.12" y="-2032.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#000000" stroke="none" points="545,-2046.25 545,-2048.25 1081,-2048.25 1081,-2046.25 545,-2046.25"/>
+<text text-anchor="start" x="663.12" y="-2030.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W8 -->
-<g id="edge40" class="edge">
+<g id="edge46" class="edge">
<title>ECU:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C494.51,-2249.42 443.84,-2084.42 545,-2079.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C496.42,-2248.84 445.75,-2083.84 545,-2081.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C498.33,-2248.25 447.67,-2083.25 545,-2083.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C500.25,-2247.66 449.58,-2082.66 545,-2085.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C502.16,-2247.08 451.49,-2082.08 545,-2087.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C493.17,-2243.39 445.17,-2082.39 545,-2077.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C495.08,-2242.82 447.08,-2081.82 545,-2079.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C497,-2242.25 449,-2081.25 545,-2081.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C498.92,-2241.68 450.92,-2080.68 545,-2083.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C500.83,-2241.11 452.83,-2080.11 545,-2085.25"/>
</g>
<!-- ECU&#45;&#45;W8 -->
-<g id="edge42" class="edge">
+<g id="edge48" class="edge">
<title>ECU:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2436.25C581.06,-2442.25 358.01,-2055.25 545,-2049.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2438.25C582.79,-2441.25 359.75,-2054.25 545,-2051.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2440.25C584.52,-2440.25 361.48,-2053.25 545,-2053.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2442.25C586.25,-2439.25 363.21,-2052.25 545,-2055.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2444.25C587.99,-2438.25 364.94,-2051.25 545,-2057.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2430.25C579.39,-2436.24 359.67,-2053.24 545,-2047.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2432.25C581.12,-2435.25 361.41,-2052.25 545,-2049.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2434.25C582.86,-2434.25 363.14,-2051.25 545,-2051.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2436.25C584.59,-2433.25 364.88,-2050.25 545,-2053.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2438.25C586.33,-2432.26 366.61,-2049.26 545,-2055.25"/>
</g>
<!-- W9 -->
-<g id="node26" class="node">
+<g id="node32" class="node">
<title>W9</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1013.5,-1891.25 612.5,-1891.25 612.5,-1712.25 1013.5,-1712.25 1013.5,-1891.25"/>
-<polygon fill="none" stroke="black" points="612.5,-1866.75 612.5,-1891.25 1013.5,-1891.25 1013.5,-1866.75 612.5,-1866.75"/>
-<text text-anchor="start" x="801.75" y="-1873.95" font-family="arial" font-size="14.00">W9</text>
-<polygon fill="none" stroke="black" points="612.5,-1842.25 612.5,-1866.75 712.67,-1866.75 712.67,-1842.25 612.5,-1842.25"/>
-<text text-anchor="start" x="655.08" y="-1849.45" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="712.67,-1842.25 712.67,-1866.75 853.33,-1866.75 853.33,-1842.25 712.67,-1842.25"/>
-<text text-anchor="start" x="755.25" y="-1849.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="853.33,-1842.25 853.33,-1866.75 1013.5,-1866.75 1013.5,-1842.25 853.33,-1842.25"/>
-<text text-anchor="start" x="895.92" y="-1849.45" font-family="arial" font-size="14.00">27.0 Inches</text>
-<text text-anchor="start" x="714.62" y="-1826.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="640.38" y="-1806.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="822.38" y="-1806.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="881" y="-1806.95" font-family="arial" font-size="14.00">MAF Sensor:1:NTC&#45;</text>
-<polygon fill="#000000" stroke="none" points="612.5,-1800.25 612.5,-1802.25 1013.5,-1802.25 1013.5,-1800.25 612.5,-1800.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1798.25 612.5,-1800.25 1013.5,-1800.25 1013.5,-1798.25 612.5,-1798.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1796.25 612.5,-1798.25 1013.5,-1798.25 1013.5,-1796.25 612.5,-1796.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1794.25 612.5,-1796.25 1013.5,-1796.25 1013.5,-1794.25 612.5,-1794.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1792.25 612.5,-1794.25 1013.5,-1794.25 1013.5,-1792.25 612.5,-1792.25"/>
-<text text-anchor="start" x="640.38" y="-1776.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="822.38" y="-1776.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="882.12" y="-1776.95" font-family="arial" font-size="14.00">MAF Sensor:2:GND</text>
-<polygon fill="#000000" stroke="none" points="612.5,-1770.25 612.5,-1772.25 1013.5,-1772.25 1013.5,-1770.25 612.5,-1770.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1768.25 612.5,-1770.25 1013.5,-1770.25 1013.5,-1768.25 612.5,-1768.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1766.25 612.5,-1768.25 1013.5,-1768.25 1013.5,-1766.25 612.5,-1766.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1764.25 612.5,-1766.25 1013.5,-1766.25 1013.5,-1764.25 612.5,-1764.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1762.25 612.5,-1764.25 1013.5,-1764.25 1013.5,-1762.25 612.5,-1762.25"/>
-<text text-anchor="start" x="614.12" y="-1746.95" font-family="arial" font-size="14.00">ECU:F2:Air Temperature sensor</text>
-<text text-anchor="start" x="822.38" y="-1746.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="879.12" y="-1746.95" font-family="arial" font-size="14.00">MAF Sensor:3:NTC+</text>
-<polygon fill="#000000" stroke="none" points="612.5,-1740.25 612.5,-1742.25 1013.5,-1742.25 1013.5,-1740.25 612.5,-1740.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1738.25 612.5,-1740.25 1013.5,-1740.25 1013.5,-1738.25 612.5,-1738.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1736.25 612.5,-1738.25 1013.5,-1738.25 1013.5,-1736.25 612.5,-1736.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1734.25 612.5,-1736.25 1013.5,-1736.25 1013.5,-1734.25 612.5,-1734.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1732.25 612.5,-1734.25 1013.5,-1734.25 1013.5,-1732.25 612.5,-1732.25"/>
-<text text-anchor="start" x="714.62" y="-1716.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1013.5,-1864.25 612.5,-1864.25 612.5,-1685.25 1013.5,-1685.25 1013.5,-1864.25"/>
+<polygon fill="none" stroke="black" points="612.5,-1839.75 612.5,-1864.25 1013.5,-1864.25 1013.5,-1839.75 612.5,-1839.75"/>
+<text text-anchor="start" x="801.75" y="-1846.95" font-family="arial" font-size="14.00">W9</text>
+<polygon fill="none" stroke="black" points="612.5,-1815.25 612.5,-1839.75 712.67,-1839.75 712.67,-1815.25 612.5,-1815.25"/>
+<text text-anchor="start" x="655.08" y="-1822.45" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="712.67,-1815.25 712.67,-1839.75 853.33,-1839.75 853.33,-1815.25 712.67,-1815.25"/>
+<text text-anchor="start" x="755.25" y="-1822.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="853.33,-1815.25 853.33,-1839.75 1013.5,-1839.75 1013.5,-1815.25 853.33,-1815.25"/>
+<text text-anchor="start" x="895.92" y="-1822.45" font-family="arial" font-size="14.00">27.0 Inches</text>
+<text text-anchor="start" x="714.62" y="-1799.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="640.38" y="-1779.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="822.38" y="-1779.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="881" y="-1779.95" font-family="arial" font-size="14.00">MAF Sensor:1:NTC&#45;</text>
+<polygon fill="#000000" stroke="none" points="612.5,-1773.25 612.5,-1775.25 1013.5,-1775.25 1013.5,-1773.25 612.5,-1773.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1771.25 612.5,-1773.25 1013.5,-1773.25 1013.5,-1771.25 612.5,-1771.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1769.25 612.5,-1771.25 1013.5,-1771.25 1013.5,-1769.25 612.5,-1769.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1767.25 612.5,-1769.25 1013.5,-1769.25 1013.5,-1767.25 612.5,-1767.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1765.25 612.5,-1767.25 1013.5,-1767.25 1013.5,-1765.25 612.5,-1765.25"/>
+<text text-anchor="start" x="640.38" y="-1749.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="822.38" y="-1749.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="882.12" y="-1749.95" font-family="arial" font-size="14.00">MAF Sensor:2:GND</text>
+<polygon fill="#000000" stroke="none" points="612.5,-1743.25 612.5,-1745.25 1013.5,-1745.25 1013.5,-1743.25 612.5,-1743.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1741.25 612.5,-1743.25 1013.5,-1743.25 1013.5,-1741.25 612.5,-1741.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1739.25 612.5,-1741.25 1013.5,-1741.25 1013.5,-1739.25 612.5,-1739.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1737.25 612.5,-1739.25 1013.5,-1739.25 1013.5,-1737.25 612.5,-1737.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1735.25 612.5,-1737.25 1013.5,-1737.25 1013.5,-1735.25 612.5,-1735.25"/>
+<text text-anchor="start" x="614.12" y="-1719.95" font-family="arial" font-size="14.00">ECU:F2:Air Temperature sensor</text>
+<text text-anchor="start" x="822.38" y="-1719.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="879.12" y="-1719.95" font-family="arial" font-size="14.00">MAF Sensor:3:NTC+</text>
+<polygon fill="#000000" stroke="none" points="612.5,-1713.25 612.5,-1715.25 1013.5,-1715.25 1013.5,-1713.25 612.5,-1713.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1711.25 612.5,-1713.25 1013.5,-1713.25 1013.5,-1711.25 612.5,-1711.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1709.25 612.5,-1711.25 1013.5,-1711.25 1013.5,-1709.25 612.5,-1709.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1707.25 612.5,-1709.25 1013.5,-1709.25 1013.5,-1707.25 612.5,-1707.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1705.25 612.5,-1707.25 1013.5,-1707.25 1013.5,-1705.25 612.5,-1705.25"/>
+<text text-anchor="start" x="714.62" y="-1689.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W9 -->
-<g id="edge44" class="edge">
+<g id="edge50" class="edge">
<title>ECU:e&#45;&#45;W9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C618.65,-2250.08 386.74,-1799.08 611.5,-1793.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C620.42,-2249.16 388.52,-1798.16 611.5,-1795.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C622.2,-2248.25 390.3,-1797.25 611.5,-1797.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C623.98,-2247.34 392.08,-1796.34 611.5,-1799.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C625.76,-2246.42 393.85,-1795.42 611.5,-1801.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C627.16,-2244.12 378.27,-1772.12 611.5,-1766.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C628.92,-2243.18 380.04,-1771.18 611.5,-1768.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C630.69,-2242.25 381.81,-1770.25 611.5,-1770.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C632.46,-2241.32 383.58,-1769.32 611.5,-1772.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C634.23,-2240.38 385.34,-1768.38 611.5,-1774.25"/>
</g>
<!-- ECU&#45;&#45;W9 -->
-<g id="edge46" class="edge">
+<g id="edge52" class="edge">
<title>ECU:e&#45;&#45;W9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C630.82,-2250.13 374.62,-1769.13 611.5,-1763.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C632.59,-2249.19 376.38,-1768.19 611.5,-1765.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C634.35,-2248.25 378.15,-1767.25 611.5,-1767.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C636.12,-2247.31 379.91,-1766.31 611.5,-1769.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C637.88,-2246.37 381.68,-1765.37 611.5,-1771.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C639.42,-2244.16 366.05,-1742.16 611.5,-1736.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C641.18,-2243.21 367.81,-1741.21 611.5,-1738.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C642.93,-2242.25 369.57,-1740.25 611.5,-1740.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C644.69,-2241.29 371.32,-1739.29 611.5,-1742.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C646.45,-2240.34 373.08,-1738.34 611.5,-1744.25"/>
</g>
<!-- ECU&#45;&#45;W9 -->
-<g id="edge48" class="edge">
+<g id="edge54" class="edge">
<title>ECU:e&#45;&#45;W9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2412.25C713.55,-2418.36 292.15,-1739.36 611.5,-1733.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2414.25C715.25,-2417.3 293.85,-1738.3 611.5,-1735.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2416.25C716.95,-2416.25 295.55,-1737.25 611.5,-1737.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2418.25C718.65,-2415.2 297.25,-1736.2 611.5,-1739.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2420.25C720.35,-2414.14 298.95,-1735.14 611.5,-1741.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2406.25C722.49,-2412.38 283.24,-1712.38 611.5,-1706.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2408.25C724.18,-2411.31 284.93,-1711.31 611.5,-1708.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2410.25C725.87,-2410.25 286.63,-1710.25 611.5,-1710.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2412.25C727.57,-2409.19 288.32,-1709.19 611.5,-1712.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2414.25C729.26,-2408.12 290.01,-1708.12 611.5,-1714.25"/>
</g>
<!-- W10 -->
-<g id="node27" class="node">
+<g id="node33" class="node">
<title>W10</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="967,-868.5 659,-868.5 659,-725 967,-725 967,-868.5"/>
-<polygon fill="none" stroke="black" points="659,-844 659,-868.5 967,-868.5 967,-844 659,-844"/>
-<text text-anchor="start" x="797.62" y="-851.2" font-family="arial" font-size="14.00">W10</text>
-<polygon fill="none" stroke="black" points="659,-819.5 659,-844 728.17,-844 728.17,-819.5 659,-819.5"/>
-<text text-anchor="start" x="686.08" y="-826.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="728.17,-819.5 728.17,-844 837.83,-844 837.83,-819.5 728.17,-819.5"/>
-<text text-anchor="start" x="755.25" y="-826.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="837.83,-819.5 837.83,-844 967,-844 967,-819.5 837.83,-819.5"/>
-<text text-anchor="start" x="864.92" y="-826.7" font-family="arial" font-size="14.00">37.0 Inches</text>
-<text text-anchor="start" x="722.12" y="-804.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="661" y="-784.2" font-family="arial" font-size="14.00">ECU:K4:Rotor RPM</text>
-<text text-anchor="start" x="790.88" y="-784.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="848" y="-784.2" font-family="arial" font-size="14.00">Tachometer:C:Out</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="967,-874.5 659,-874.5 659,-731 967,-731 967,-874.5"/>
+<polygon fill="none" stroke="black" points="659,-850 659,-874.5 967,-874.5 967,-850 659,-850"/>
+<text text-anchor="start" x="797.62" y="-857.2" font-family="arial" font-size="14.00">W10</text>
+<polygon fill="none" stroke="black" points="659,-825.5 659,-850 728.17,-850 728.17,-825.5 659,-825.5"/>
+<text text-anchor="start" x="686.08" y="-832.7" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="728.17,-825.5 728.17,-850 837.83,-850 837.83,-825.5 728.17,-825.5"/>
+<text text-anchor="start" x="755.25" y="-832.7" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="837.83,-825.5 837.83,-850 967,-850 967,-825.5 837.83,-825.5"/>
+<text text-anchor="start" x="864.92" y="-832.7" font-family="arial" font-size="14.00">37.0 Inches</text>
+<text text-anchor="start" x="722.12" y="-810.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="661" y="-790.2" font-family="arial" font-size="14.00">ECU:K4:Rotor RPM</text>
+<text text-anchor="start" x="790.88" y="-790.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="848" y="-790.2" font-family="arial" font-size="14.00">Tachometer:C:Out</text>
+<polygon fill="#000000" stroke="none" points="659,-783.5 659,-785.5 967,-785.5 967,-783.5 659,-783.5"/>
+<polygon fill="#000000" stroke="none" points="659,-781.5 659,-783.5 967,-783.5 967,-781.5 659,-781.5"/>
+<polygon fill="#000000" stroke="none" points="659,-779.5 659,-781.5 967,-781.5 967,-779.5 659,-779.5"/>
<polygon fill="#000000" stroke="none" points="659,-777.5 659,-779.5 967,-779.5 967,-777.5 659,-777.5"/>
<polygon fill="#000000" stroke="none" points="659,-775.5 659,-777.5 967,-777.5 967,-775.5 659,-775.5"/>
-<polygon fill="#000000" stroke="none" points="659,-773.5 659,-775.5 967,-775.5 967,-773.5 659,-773.5"/>
-<polygon fill="#000000" stroke="none" points="659,-771.5 659,-773.5 967,-773.5 967,-771.5 659,-771.5"/>
-<polygon fill="#000000" stroke="none" points="659,-769.5 659,-771.5 967,-771.5 967,-769.5 659,-769.5"/>
-<text text-anchor="start" x="722.12" y="-754.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="659,-725 659,-749.5 967,-749.5 967,-725 659,-725"/>
-<text text-anchor="start" x="697.88" y="-732.2" font-family="arial" font-size="14.00">Included cable is of sufficient length.</text>
+<text text-anchor="start" x="722.12" y="-760.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="659,-731 659,-755.5 967,-755.5 967,-731 659,-731"/>
+<text text-anchor="start" x="697.88" y="-738.2" font-family="arial" font-size="14.00">Included cable is of sufficient length.</text>
</g>
<!-- ECU&#45;&#45;W10 -->
-<g id="edge50" class="edge">
+<g id="edge56" class="edge">
<title>ECU:e&#45;&#45;W10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1980.25C671.94,-1985.19 379.28,-775.44 658,-770.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1982.25C673.89,-1984.72 381.22,-774.97 658,-772.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1984.25C675.83,-1984.25 383.17,-774.5 658,-774.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1986.25C677.78,-1983.78 385.11,-774.03 658,-776.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1988.25C679.72,-1983.31 387.06,-773.56 658,-778.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1974.25C669.34,-1979.18 381.89,-781.43 658,-776.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1976.25C671.28,-1978.72 383.83,-780.97 658,-778.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1978.25C673.22,-1978.25 385.78,-780.5 658,-780.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1980.25C675.17,-1977.78 387.72,-780.03 658,-782.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1982.25C677.11,-1977.32 389.66,-779.57 658,-784.5"/>
</g>
<!-- Coil Pack 1 -->
<g id="node2" class="node">
<title>Coil Pack 1</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-4542.25 1328.5,-4542.25 1328.5,-4197.25 1555.5,-4197.25 1555.5,-4542.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-4517.75 1328.5,-4542.25 1555.5,-4542.25 1555.5,-4517.75 1328.5,-4517.75"/>
-<text text-anchor="start" x="1406" y="-4524.95" font-family="arial" font-size="14.00">Coil Pack 1</text>
-<polygon fill="none" stroke="black" points="1328.5,-4493.25 1328.5,-4517.75 1481.38,-4517.75 1481.38,-4493.25 1328.5,-4493.25"/>
-<text text-anchor="start" x="1349.81" y="-4500.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-4493.25 1481.38,-4517.75 1555.5,-4517.75 1555.5,-4493.25 1481.38,-4493.25"/>
-<text text-anchor="start" x="1502.69" y="-4500.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-4469.25 1328.5,-4493.25 1399,-4493.25 1399,-4469.25 1328.5,-4469.25"/>
-<text text-anchor="start" x="1358.88" y="-4475.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-4469.25 1399,-4493.25 1555.5,-4493.25 1555.5,-4469.25 1399,-4469.25"/>
-<text text-anchor="start" x="1449.88" y="-4475.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-4445.25 1328.5,-4469.25 1399,-4469.25 1399,-4445.25 1328.5,-4445.25"/>
-<text text-anchor="start" x="1358.88" y="-4451.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-4445.25 1399,-4469.25 1555.5,-4469.25 1555.5,-4445.25 1399,-4445.25"/>
-<text text-anchor="start" x="1428.88" y="-4451.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4421.25 1328.5,-4445.25 1399,-4445.25 1399,-4421.25 1328.5,-4421.25"/>
-<text text-anchor="start" x="1358.5" y="-4427.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-4421.25 1399,-4445.25 1555.5,-4445.25 1555.5,-4421.25 1399,-4421.25"/>
-<text text-anchor="start" x="1434.88" y="-4427.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4397.25 1328.5,-4421.25 1399,-4421.25 1399,-4397.25 1328.5,-4397.25"/>
-<text text-anchor="start" x="1358.5" y="-4403.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-4397.25 1399,-4421.25 1555.5,-4421.25 1555.5,-4397.25 1399,-4397.25"/>
-<text text-anchor="start" x="1429.62" y="-4403.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4373.25 1328.5,-4397.25 1399,-4397.25 1399,-4373.25 1328.5,-4373.25"/>
-<text text-anchor="start" x="1358.88" y="-4379.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-4373.25 1399,-4397.25 1555.5,-4397.25 1555.5,-4373.25 1399,-4373.25"/>
-<text text-anchor="start" x="1433.38" y="-4379.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-4197.25 1328.5,-4373.25 1555.5,-4373.25 1555.5,-4197.25 1328.5,-4197.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-4369.25"/>
+<polygon fill="#ffffff" stroke="black" points="2572.75,-3916.25 2345.75,-3916.25 2345.75,-3571.25 2572.75,-3571.25 2572.75,-3916.25"/>
+<polygon fill="none" stroke="black" points="2345.75,-3891.75 2345.75,-3916.25 2572.75,-3916.25 2572.75,-3891.75 2345.75,-3891.75"/>
+<text text-anchor="start" x="2423.25" y="-3898.95" font-family="arial" font-size="14.00">Coil Pack 1</text>
+<polygon fill="none" stroke="black" points="2345.75,-3867.25 2345.75,-3891.75 2498.62,-3891.75 2498.62,-3867.25 2345.75,-3867.25"/>
+<text text-anchor="start" x="2367.06" y="-3874.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="2498.62,-3867.25 2498.62,-3891.75 2572.75,-3891.75 2572.75,-3867.25 2498.62,-3867.25"/>
+<text text-anchor="start" x="2519.94" y="-3874.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="2345.75,-3843.25 2345.75,-3867.25 2416.25,-3867.25 2416.25,-3843.25 2345.75,-3843.25"/>
+<text text-anchor="start" x="2376.12" y="-3849.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2416.25,-3843.25 2416.25,-3867.25 2572.75,-3867.25 2572.75,-3843.25 2416.25,-3843.25"/>
+<text text-anchor="start" x="2467.12" y="-3849.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="2345.75,-3819.25 2345.75,-3843.25 2416.25,-3843.25 2416.25,-3819.25 2345.75,-3819.25"/>
+<text text-anchor="start" x="2376.12" y="-3825.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2416.25,-3819.25 2416.25,-3843.25 2572.75,-3843.25 2572.75,-3819.25 2416.25,-3819.25"/>
+<text text-anchor="start" x="2446.12" y="-3825.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3795.25 2345.75,-3819.25 2416.25,-3819.25 2416.25,-3795.25 2345.75,-3795.25"/>
+<text text-anchor="start" x="2375.75" y="-3801.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2416.25,-3795.25 2416.25,-3819.25 2572.75,-3819.25 2572.75,-3795.25 2416.25,-3795.25"/>
+<text text-anchor="start" x="2452.12" y="-3801.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3771.25 2345.75,-3795.25 2416.25,-3795.25 2416.25,-3771.25 2345.75,-3771.25"/>
+<text text-anchor="start" x="2375.75" y="-3777.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="2416.25,-3771.25 2416.25,-3795.25 2572.75,-3795.25 2572.75,-3771.25 2416.25,-3771.25"/>
+<text text-anchor="start" x="2446.88" y="-3777.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3747.25 2345.75,-3771.25 2416.25,-3771.25 2416.25,-3747.25 2345.75,-3747.25"/>
+<text text-anchor="start" x="2376.12" y="-3753.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="2416.25,-3747.25 2416.25,-3771.25 2572.75,-3771.25 2572.75,-3747.25 2416.25,-3747.25"/>
+<text text-anchor="start" x="2450.62" y="-3753.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="2345.75,-3571.25 2345.75,-3747.25 2572.75,-3747.25 2572.75,-3571.25 2345.75,-3571.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="2349.75" y="-3743.25"/>
</g>
<!-- Coil Pack 2 -->
<g id="node3" class="node">
<title>Coil Pack 2</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-4173.25 1328.5,-4173.25 1328.5,-3828.25 1555.5,-3828.25 1555.5,-4173.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-4148.75 1328.5,-4173.25 1555.5,-4173.25 1555.5,-4148.75 1328.5,-4148.75"/>
-<text text-anchor="start" x="1406" y="-4155.95" font-family="arial" font-size="14.00">Coil Pack 2</text>
-<polygon fill="none" stroke="black" points="1328.5,-4124.25 1328.5,-4148.75 1481.38,-4148.75 1481.38,-4124.25 1328.5,-4124.25"/>
-<text text-anchor="start" x="1349.81" y="-4131.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-4124.25 1481.38,-4148.75 1555.5,-4148.75 1555.5,-4124.25 1481.38,-4124.25"/>
-<text text-anchor="start" x="1502.69" y="-4131.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-4100.25 1328.5,-4124.25 1399,-4124.25 1399,-4100.25 1328.5,-4100.25"/>
-<text text-anchor="start" x="1358.88" y="-4106.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-4100.25 1399,-4124.25 1555.5,-4124.25 1555.5,-4100.25 1399,-4100.25"/>
-<text text-anchor="start" x="1449.88" y="-4106.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-4076.25 1328.5,-4100.25 1399,-4100.25 1399,-4076.25 1328.5,-4076.25"/>
-<text text-anchor="start" x="1358.88" y="-4082.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-4076.25 1399,-4100.25 1555.5,-4100.25 1555.5,-4076.25 1399,-4076.25"/>
-<text text-anchor="start" x="1428.88" y="-4082.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4052.25 1328.5,-4076.25 1399,-4076.25 1399,-4052.25 1328.5,-4052.25"/>
-<text text-anchor="start" x="1358.5" y="-4058.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-4052.25 1399,-4076.25 1555.5,-4076.25 1555.5,-4052.25 1399,-4052.25"/>
-<text text-anchor="start" x="1434.88" y="-4058.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4028.25 1328.5,-4052.25 1399,-4052.25 1399,-4028.25 1328.5,-4028.25"/>
-<text text-anchor="start" x="1358.5" y="-4034.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-4028.25 1399,-4052.25 1555.5,-4052.25 1555.5,-4028.25 1399,-4028.25"/>
-<text text-anchor="start" x="1429.62" y="-4034.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4004.25 1328.5,-4028.25 1399,-4028.25 1399,-4004.25 1328.5,-4004.25"/>
-<text text-anchor="start" x="1358.88" y="-4010.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-4004.25 1399,-4028.25 1555.5,-4028.25 1555.5,-4004.25 1399,-4004.25"/>
-<text text-anchor="start" x="1433.38" y="-4010.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-3828.25 1328.5,-4004.25 1555.5,-4004.25 1555.5,-3828.25 1328.5,-3828.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-4000.25"/>
+<polygon fill="#ffffff" stroke="black" points="1555.5,-3631.25 1328.5,-3631.25 1328.5,-3286.25 1555.5,-3286.25 1555.5,-3631.25"/>
+<polygon fill="none" stroke="black" points="1328.5,-3606.75 1328.5,-3631.25 1555.5,-3631.25 1555.5,-3606.75 1328.5,-3606.75"/>
+<text text-anchor="start" x="1406" y="-3613.95" font-family="arial" font-size="14.00">Coil Pack 2</text>
+<polygon fill="none" stroke="black" points="1328.5,-3582.25 1328.5,-3606.75 1481.38,-3606.75 1481.38,-3582.25 1328.5,-3582.25"/>
+<text text-anchor="start" x="1349.81" y="-3589.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1481.38,-3582.25 1481.38,-3606.75 1555.5,-3606.75 1555.5,-3582.25 1481.38,-3582.25"/>
+<text text-anchor="start" x="1502.69" y="-3589.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="1328.5,-3558.25 1328.5,-3582.25 1399,-3582.25 1399,-3558.25 1328.5,-3558.25"/>
+<text text-anchor="start" x="1358.88" y="-3564.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1399,-3558.25 1399,-3582.25 1555.5,-3582.25 1555.5,-3558.25 1399,-3558.25"/>
+<text text-anchor="start" x="1449.88" y="-3564.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1328.5,-3534.25 1328.5,-3558.25 1399,-3558.25 1399,-3534.25 1328.5,-3534.25"/>
+<text text-anchor="start" x="1358.88" y="-3540.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1399,-3534.25 1399,-3558.25 1555.5,-3558.25 1555.5,-3534.25 1399,-3534.25"/>
+<text text-anchor="start" x="1428.88" y="-3540.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1328.5,-3510.25 1328.5,-3534.25 1399,-3534.25 1399,-3510.25 1328.5,-3510.25"/>
+<text text-anchor="start" x="1358.5" y="-3516.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1399,-3510.25 1399,-3534.25 1555.5,-3534.25 1555.5,-3510.25 1399,-3510.25"/>
+<text text-anchor="start" x="1434.88" y="-3516.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1328.5,-3486.25 1328.5,-3510.25 1399,-3510.25 1399,-3486.25 1328.5,-3486.25"/>
+<text text-anchor="start" x="1358.5" y="-3492.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1399,-3486.25 1399,-3510.25 1555.5,-3510.25 1555.5,-3486.25 1399,-3486.25"/>
+<text text-anchor="start" x="1429.62" y="-3492.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1328.5,-3462.25 1328.5,-3486.25 1399,-3486.25 1399,-3462.25 1328.5,-3462.25"/>
+<text text-anchor="start" x="1358.88" y="-3468.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1399,-3462.25 1399,-3486.25 1555.5,-3486.25 1555.5,-3462.25 1399,-3462.25"/>
+<text text-anchor="start" x="1433.38" y="-3468.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1328.5,-3286.25 1328.5,-3462.25 1555.5,-3462.25 1555.5,-3286.25 1328.5,-3286.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-3458.25"/>
</g>
<!-- Coil Pack 3 -->
<g id="node4" class="node">
<title>Coil Pack 3</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-3804.25 1328.5,-3804.25 1328.5,-3459.25 1555.5,-3459.25 1555.5,-3804.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-3779.75 1328.5,-3804.25 1555.5,-3804.25 1555.5,-3779.75 1328.5,-3779.75"/>
-<text text-anchor="start" x="1406" y="-3786.95" font-family="arial" font-size="14.00">Coil Pack 3</text>
-<polygon fill="none" stroke="black" points="1328.5,-3755.25 1328.5,-3779.75 1481.38,-3779.75 1481.38,-3755.25 1328.5,-3755.25"/>
-<text text-anchor="start" x="1349.81" y="-3762.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-3755.25 1481.38,-3779.75 1555.5,-3779.75 1555.5,-3755.25 1481.38,-3755.25"/>
-<text text-anchor="start" x="1502.69" y="-3762.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-3731.25 1328.5,-3755.25 1399,-3755.25 1399,-3731.25 1328.5,-3731.25"/>
-<text text-anchor="start" x="1358.88" y="-3737.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-3731.25 1399,-3755.25 1555.5,-3755.25 1555.5,-3731.25 1399,-3731.25"/>
-<text text-anchor="start" x="1449.88" y="-3737.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-3707.25 1328.5,-3731.25 1399,-3731.25 1399,-3707.25 1328.5,-3707.25"/>
-<text text-anchor="start" x="1358.88" y="-3713.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-3707.25 1399,-3731.25 1555.5,-3731.25 1555.5,-3707.25 1399,-3707.25"/>
-<text text-anchor="start" x="1428.88" y="-3713.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3683.25 1328.5,-3707.25 1399,-3707.25 1399,-3683.25 1328.5,-3683.25"/>
-<text text-anchor="start" x="1358.5" y="-3689.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-3683.25 1399,-3707.25 1555.5,-3707.25 1555.5,-3683.25 1399,-3683.25"/>
-<text text-anchor="start" x="1434.88" y="-3689.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3659.25 1328.5,-3683.25 1399,-3683.25 1399,-3659.25 1328.5,-3659.25"/>
-<text text-anchor="start" x="1358.5" y="-3665.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-3659.25 1399,-3683.25 1555.5,-3683.25 1555.5,-3659.25 1399,-3659.25"/>
-<text text-anchor="start" x="1429.62" y="-3665.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3635.25 1328.5,-3659.25 1399,-3659.25 1399,-3635.25 1328.5,-3635.25"/>
-<text text-anchor="start" x="1358.88" y="-3641.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-3635.25 1399,-3659.25 1555.5,-3659.25 1555.5,-3635.25 1399,-3635.25"/>
-<text text-anchor="start" x="1433.38" y="-3641.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-3459.25 1328.5,-3635.25 1555.5,-3635.25 1555.5,-3459.25 1328.5,-3459.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-3631.25"/>
+<polygon fill="#ffffff" stroke="black" points="2572.75,-3531.25 2345.75,-3531.25 2345.75,-3186.25 2572.75,-3186.25 2572.75,-3531.25"/>
+<polygon fill="none" stroke="black" points="2345.75,-3506.75 2345.75,-3531.25 2572.75,-3531.25 2572.75,-3506.75 2345.75,-3506.75"/>
+<text text-anchor="start" x="2423.25" y="-3513.95" font-family="arial" font-size="14.00">Coil Pack 3</text>
+<polygon fill="none" stroke="black" points="2345.75,-3482.25 2345.75,-3506.75 2498.62,-3506.75 2498.62,-3482.25 2345.75,-3482.25"/>
+<text text-anchor="start" x="2367.06" y="-3489.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="2498.62,-3482.25 2498.62,-3506.75 2572.75,-3506.75 2572.75,-3482.25 2498.62,-3482.25"/>
+<text text-anchor="start" x="2519.94" y="-3489.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="2345.75,-3458.25 2345.75,-3482.25 2416.25,-3482.25 2416.25,-3458.25 2345.75,-3458.25"/>
+<text text-anchor="start" x="2376.12" y="-3464.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2416.25,-3458.25 2416.25,-3482.25 2572.75,-3482.25 2572.75,-3458.25 2416.25,-3458.25"/>
+<text text-anchor="start" x="2467.12" y="-3464.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="2345.75,-3434.25 2345.75,-3458.25 2416.25,-3458.25 2416.25,-3434.25 2345.75,-3434.25"/>
+<text text-anchor="start" x="2376.12" y="-3440.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2416.25,-3434.25 2416.25,-3458.25 2572.75,-3458.25 2572.75,-3434.25 2416.25,-3434.25"/>
+<text text-anchor="start" x="2446.12" y="-3440.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3410.25 2345.75,-3434.25 2416.25,-3434.25 2416.25,-3410.25 2345.75,-3410.25"/>
+<text text-anchor="start" x="2375.75" y="-3416.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2416.25,-3410.25 2416.25,-3434.25 2572.75,-3434.25 2572.75,-3410.25 2416.25,-3410.25"/>
+<text text-anchor="start" x="2452.12" y="-3416.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3386.25 2345.75,-3410.25 2416.25,-3410.25 2416.25,-3386.25 2345.75,-3386.25"/>
+<text text-anchor="start" x="2375.75" y="-3392.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="2416.25,-3386.25 2416.25,-3410.25 2572.75,-3410.25 2572.75,-3386.25 2416.25,-3386.25"/>
+<text text-anchor="start" x="2446.88" y="-3392.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3362.25 2345.75,-3386.25 2416.25,-3386.25 2416.25,-3362.25 2345.75,-3362.25"/>
+<text text-anchor="start" x="2376.12" y="-3368.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="2416.25,-3362.25 2416.25,-3386.25 2572.75,-3386.25 2572.75,-3362.25 2416.25,-3362.25"/>
+<text text-anchor="start" x="2450.62" y="-3368.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="2345.75,-3186.25 2345.75,-3362.25 2572.75,-3362.25 2572.75,-3186.25 2345.75,-3186.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="2349.75" y="-3358.25"/>
</g>
<!-- Coil Pack 4 -->
<g id="node5" class="node">
<title>Coil Pack 4</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-3435.25 1328.5,-3435.25 1328.5,-3090.25 1555.5,-3090.25 1555.5,-3435.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-3410.75 1328.5,-3435.25 1555.5,-3435.25 1555.5,-3410.75 1328.5,-3410.75"/>
-<text text-anchor="start" x="1406" y="-3417.95" font-family="arial" font-size="14.00">Coil Pack 4</text>
-<polygon fill="none" stroke="black" points="1328.5,-3386.25 1328.5,-3410.75 1481.38,-3410.75 1481.38,-3386.25 1328.5,-3386.25"/>
-<text text-anchor="start" x="1349.81" y="-3393.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-3386.25 1481.38,-3410.75 1555.5,-3410.75 1555.5,-3386.25 1481.38,-3386.25"/>
-<text text-anchor="start" x="1502.69" y="-3393.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-3362.25 1328.5,-3386.25 1399,-3386.25 1399,-3362.25 1328.5,-3362.25"/>
-<text text-anchor="start" x="1358.88" y="-3368.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-3362.25 1399,-3386.25 1555.5,-3386.25 1555.5,-3362.25 1399,-3362.25"/>
-<text text-anchor="start" x="1449.88" y="-3368.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-3338.25 1328.5,-3362.25 1399,-3362.25 1399,-3338.25 1328.5,-3338.25"/>
-<text text-anchor="start" x="1358.88" y="-3344.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-3338.25 1399,-3362.25 1555.5,-3362.25 1555.5,-3338.25 1399,-3338.25"/>
-<text text-anchor="start" x="1428.88" y="-3344.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3314.25 1328.5,-3338.25 1399,-3338.25 1399,-3314.25 1328.5,-3314.25"/>
-<text text-anchor="start" x="1358.5" y="-3320.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-3314.25 1399,-3338.25 1555.5,-3338.25 1555.5,-3314.25 1399,-3314.25"/>
-<text text-anchor="start" x="1434.88" y="-3320.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3290.25 1328.5,-3314.25 1399,-3314.25 1399,-3290.25 1328.5,-3290.25"/>
-<text text-anchor="start" x="1358.5" y="-3296.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-3290.25 1399,-3314.25 1555.5,-3314.25 1555.5,-3290.25 1399,-3290.25"/>
-<text text-anchor="start" x="1429.62" y="-3296.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3266.25 1328.5,-3290.25 1399,-3290.25 1399,-3266.25 1328.5,-3266.25"/>
-<text text-anchor="start" x="1358.88" y="-3272.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-3266.25 1399,-3290.25 1555.5,-3290.25 1555.5,-3266.25 1399,-3266.25"/>
-<text text-anchor="start" x="1433.38" y="-3272.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-3090.25 1328.5,-3266.25 1555.5,-3266.25 1555.5,-3090.25 1328.5,-3090.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-3262.25"/>
+<polygon fill="#ffffff" stroke="black" points="2572.75,-3158.25 2345.75,-3158.25 2345.75,-2813.25 2572.75,-2813.25 2572.75,-3158.25"/>
+<polygon fill="none" stroke="black" points="2345.75,-3133.75 2345.75,-3158.25 2572.75,-3158.25 2572.75,-3133.75 2345.75,-3133.75"/>
+<text text-anchor="start" x="2423.25" y="-3140.95" font-family="arial" font-size="14.00">Coil Pack 4</text>
+<polygon fill="none" stroke="black" points="2345.75,-3109.25 2345.75,-3133.75 2498.62,-3133.75 2498.62,-3109.25 2345.75,-3109.25"/>
+<text text-anchor="start" x="2367.06" y="-3116.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="2498.62,-3109.25 2498.62,-3133.75 2572.75,-3133.75 2572.75,-3109.25 2498.62,-3109.25"/>
+<text text-anchor="start" x="2519.94" y="-3116.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="2345.75,-3085.25 2345.75,-3109.25 2416.25,-3109.25 2416.25,-3085.25 2345.75,-3085.25"/>
+<text text-anchor="start" x="2376.12" y="-3091.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2416.25,-3085.25 2416.25,-3109.25 2572.75,-3109.25 2572.75,-3085.25 2416.25,-3085.25"/>
+<text text-anchor="start" x="2467.12" y="-3091.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="2345.75,-3061.25 2345.75,-3085.25 2416.25,-3085.25 2416.25,-3061.25 2345.75,-3061.25"/>
+<text text-anchor="start" x="2376.12" y="-3067.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2416.25,-3061.25 2416.25,-3085.25 2572.75,-3085.25 2572.75,-3061.25 2416.25,-3061.25"/>
+<text text-anchor="start" x="2446.12" y="-3067.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3037.25 2345.75,-3061.25 2416.25,-3061.25 2416.25,-3037.25 2345.75,-3037.25"/>
+<text text-anchor="start" x="2375.75" y="-3043.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2416.25,-3037.25 2416.25,-3061.25 2572.75,-3061.25 2572.75,-3037.25 2416.25,-3037.25"/>
+<text text-anchor="start" x="2452.12" y="-3043.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3013.25 2345.75,-3037.25 2416.25,-3037.25 2416.25,-3013.25 2345.75,-3013.25"/>
+<text text-anchor="start" x="2375.75" y="-3019.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="2416.25,-3013.25 2416.25,-3037.25 2572.75,-3037.25 2572.75,-3013.25 2416.25,-3013.25"/>
+<text text-anchor="start" x="2446.88" y="-3019.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-2989.25 2345.75,-3013.25 2416.25,-3013.25 2416.25,-2989.25 2345.75,-2989.25"/>
+<text text-anchor="start" x="2376.12" y="-2995.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="2416.25,-2989.25 2416.25,-3013.25 2572.75,-3013.25 2572.75,-2989.25 2416.25,-2989.25"/>
+<text text-anchor="start" x="2450.62" y="-2995.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="2345.75,-2813.25 2345.75,-2989.25 2572.75,-2989.25 2572.75,-2813.25 2345.75,-2813.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="2349.75" y="-2985.25"/>
</g>
<!-- LSU -->
<g id="node6" class="node">
@@ -914,29 +914,29 @@
<!-- Throttle Servo CAN -->
<g id="node7" class="node">
<title>Throttle Servo CAN</title>
-<polygon fill="#ffffff" stroke="black" points="2600.5,-2907.5 2318,-2907.5 2318,-2542 2600.5,-2542 2600.5,-2907.5"/>
-<polygon fill="none" stroke="black" points="2318,-2883 2318,-2907.5 2600.5,-2907.5 2600.5,-2883 2318,-2883"/>
-<text text-anchor="start" x="2397.75" y="-2890.2" font-family="arial" font-size="14.00">Throttle Servo CAN</text>
-<polygon fill="none" stroke="black" points="2318,-2858.5 2318,-2883 2478.38,-2883 2478.38,-2858.5 2318,-2858.5"/>
-<text text-anchor="start" x="2363.31" y="-2865.7" font-family="arial" font-size="14.00">DTM04&#45;3P</text>
-<polygon fill="none" stroke="black" points="2478.38,-2858.5 2478.38,-2883 2600.5,-2883 2600.5,-2858.5 2478.38,-2858.5"/>
-<text text-anchor="start" x="2523.69" y="-2865.7" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="2318,-2834.5 2318,-2858.5 2430.75,-2858.5 2430.75,-2834.5 2318,-2834.5"/>
-<text text-anchor="start" x="2370.25" y="-2841.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2430.75,-2834.5 2430.75,-2858.5 2600.5,-2858.5 2600.5,-2834.5 2430.75,-2834.5"/>
-<text text-anchor="start" x="2496.5" y="-2841.2" font-family="arial" font-size="14.00">CAN+</text>
-<polygon fill="none" stroke="black" points="2318,-2810.5 2318,-2834.5 2430.75,-2834.5 2430.75,-2810.5 2318,-2810.5"/>
-<text text-anchor="start" x="2370.25" y="-2817.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2430.75,-2810.5 2430.75,-2834.5 2600.5,-2834.5 2600.5,-2810.5 2430.75,-2810.5"/>
-<text text-anchor="start" x="2483" y="-2817.2" font-family="arial" font-size="14.00">CAN GND</text>
-<polygon fill="none" stroke="black" points="2318,-2786.5 2318,-2810.5 2430.75,-2810.5 2430.75,-2786.5 2318,-2786.5"/>
-<text text-anchor="start" x="2370.25" y="-2793.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2430.75,-2786.5 2430.75,-2810.5 2600.5,-2810.5 2600.5,-2786.5 2430.75,-2786.5"/>
-<text text-anchor="start" x="2498.38" y="-2793.2" font-family="arial" font-size="14.00">CAN&#45;</text>
-<polygon fill="none" stroke="black" points="2318,-2566.5 2318,-2786.5 2600.5,-2786.5 2600.5,-2566.5 2318,-2566.5"/>
-<image xlink:href="images\throttleCAN.png" width="274.5px" height="212px" preserveAspectRatio="xMinYMin meet" x="2322" y="-2782.5"/>
-<polygon fill="none" stroke="black" points="2318,-2542 2318,-2566.5 2600.5,-2566.5 2600.5,-2542 2318,-2542"/>
-<text text-anchor="start" x="2322" y="-2549.2" font-family="arial" font-size="14.00">Replace bad connector! Mate is DTM06&#45;3S</text>
+<polygon fill="#ffffff" stroke="black" points="2600.5,-2735.5 2318,-2735.5 2318,-2370 2600.5,-2370 2600.5,-2735.5"/>
+<polygon fill="none" stroke="black" points="2318,-2711 2318,-2735.5 2600.5,-2735.5 2600.5,-2711 2318,-2711"/>
+<text text-anchor="start" x="2397.75" y="-2718.2" font-family="arial" font-size="14.00">Throttle Servo CAN</text>
+<polygon fill="none" stroke="black" points="2318,-2686.5 2318,-2711 2478.38,-2711 2478.38,-2686.5 2318,-2686.5"/>
+<text text-anchor="start" x="2363.31" y="-2693.7" font-family="arial" font-size="14.00">DTM04&#45;3P</text>
+<polygon fill="none" stroke="black" points="2478.38,-2686.5 2478.38,-2711 2600.5,-2711 2600.5,-2686.5 2478.38,-2686.5"/>
+<text text-anchor="start" x="2523.69" y="-2693.7" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="2318,-2662.5 2318,-2686.5 2430.75,-2686.5 2430.75,-2662.5 2318,-2662.5"/>
+<text text-anchor="start" x="2370.25" y="-2669.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2430.75,-2662.5 2430.75,-2686.5 2600.5,-2686.5 2600.5,-2662.5 2430.75,-2662.5"/>
+<text text-anchor="start" x="2496.5" y="-2669.2" font-family="arial" font-size="14.00">CAN+</text>
+<polygon fill="none" stroke="black" points="2318,-2638.5 2318,-2662.5 2430.75,-2662.5 2430.75,-2638.5 2318,-2638.5"/>
+<text text-anchor="start" x="2370.25" y="-2645.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2430.75,-2638.5 2430.75,-2662.5 2600.5,-2662.5 2600.5,-2638.5 2430.75,-2638.5"/>
+<text text-anchor="start" x="2483" y="-2645.2" font-family="arial" font-size="14.00">CAN GND</text>
+<polygon fill="none" stroke="black" points="2318,-2614.5 2318,-2638.5 2430.75,-2638.5 2430.75,-2614.5 2318,-2614.5"/>
+<text text-anchor="start" x="2370.25" y="-2621.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2430.75,-2614.5 2430.75,-2638.5 2600.5,-2638.5 2600.5,-2614.5 2430.75,-2614.5"/>
+<text text-anchor="start" x="2498.38" y="-2621.2" font-family="arial" font-size="14.00">CAN&#45;</text>
+<polygon fill="none" stroke="black" points="2318,-2394.5 2318,-2614.5 2600.5,-2614.5 2600.5,-2394.5 2318,-2394.5"/>
+<image xlink:href="images\throttleCAN.png" width="274.5px" height="212px" preserveAspectRatio="xMinYMin meet" x="2322" y="-2610.5"/>
+<polygon fill="none" stroke="black" points="2318,-2370 2318,-2394.5 2600.5,-2394.5 2600.5,-2370 2318,-2370"/>
+<text text-anchor="start" x="2322" y="-2377.2" font-family="arial" font-size="14.00">Replace bad connector! Mate is DTM06&#45;3S</text>
</g>
<!-- Fuel Injector 1 -->
<g id="node8" class="node">
@@ -1066,27 +1066,27 @@
<!-- Veronte 1X CAN Bus -->
<g id="node13" class="node">
<title>Veronte 1X CAN Bus</title>
-<polygon fill="#ffffff" stroke="black" points="1558.5,-2968.25 1325.5,-2968.25 1325.5,-2647.25 1558.5,-2647.25 1558.5,-2968.25"/>
-<polygon fill="none" stroke="black" points="1325.5,-2943.75 1325.5,-2968.25 1558.5,-2968.25 1558.5,-2943.75 1325.5,-2943.75"/>
-<text text-anchor="start" x="1374.88" y="-2950.95" font-family="arial" font-size="14.00">Veronte 1X CAN Bus</text>
-<polygon fill="none" stroke="black" points="1325.5,-2919.25 1325.5,-2943.75 1455.5,-2943.75 1455.5,-2919.25 1325.5,-2919.25"/>
-<text text-anchor="start" x="1361.25" y="-2926.45" font-family="arial" font-size="14.00">DT06&#45;3S</text>
-<polygon fill="none" stroke="black" points="1455.5,-2919.25 1455.5,-2943.75 1558.5,-2943.75 1558.5,-2919.25 1455.5,-2919.25"/>
-<text text-anchor="start" x="1491.25" y="-2926.45" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="1325.5,-2895.25 1325.5,-2919.25 1412.5,-2919.25 1412.5,-2895.25 1325.5,-2895.25"/>
-<text text-anchor="start" x="1364.12" y="-2901.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1412.5,-2895.25 1412.5,-2919.25 1558.5,-2919.25 1558.5,-2895.25 1412.5,-2895.25"/>
-<text text-anchor="start" x="1456.62" y="-2901.95" font-family="arial" font-size="14.00">CANB_P</text>
-<polygon fill="none" stroke="black" points="1325.5,-2871.25 1325.5,-2895.25 1412.5,-2895.25 1412.5,-2871.25 1325.5,-2871.25"/>
-<text text-anchor="start" x="1364.12" y="-2877.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1412.5,-2871.25 1412.5,-2895.25 1558.5,-2895.25 1558.5,-2871.25 1412.5,-2871.25"/>
-<text text-anchor="start" x="1456.62" y="-2877.95" font-family="arial" font-size="14.00">CANB_N</text>
-<polygon fill="none" stroke="black" points="1325.5,-2847.25 1325.5,-2871.25 1412.5,-2871.25 1412.5,-2847.25 1325.5,-2847.25"/>
-<text text-anchor="start" x="1363.75" y="-2853.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1412.5,-2847.25 1412.5,-2871.25 1558.5,-2871.25 1558.5,-2847.25 1412.5,-2847.25"/>
-<text text-anchor="start" x="1450.62" y="-2853.95" font-family="arial" font-size="14.00">CAN_GND</text>
-<polygon fill="none" stroke="black" points="1325.5,-2647.25 1325.5,-2847.25 1558.5,-2847.25 1558.5,-2647.25 1325.5,-2647.25"/>
-<image xlink:href="images\DT06-3S.png" width="219.436px" height="188px" preserveAspectRatio="xMinYMin meet" x="1332.28" y="-2841.25"/>
+<polygon fill="#ffffff" stroke="black" points="1558.5,-3017.25 1325.5,-3017.25 1325.5,-2696.25 1558.5,-2696.25 1558.5,-3017.25"/>
+<polygon fill="none" stroke="black" points="1325.5,-2992.75 1325.5,-3017.25 1558.5,-3017.25 1558.5,-2992.75 1325.5,-2992.75"/>
+<text text-anchor="start" x="1374.88" y="-2999.95" font-family="arial" font-size="14.00">Veronte 1X CAN Bus</text>
+<polygon fill="none" stroke="black" points="1325.5,-2968.25 1325.5,-2992.75 1455.5,-2992.75 1455.5,-2968.25 1325.5,-2968.25"/>
+<text text-anchor="start" x="1361.25" y="-2975.45" font-family="arial" font-size="14.00">DT06&#45;3S</text>
+<polygon fill="none" stroke="black" points="1455.5,-2968.25 1455.5,-2992.75 1558.5,-2992.75 1558.5,-2968.25 1455.5,-2968.25"/>
+<text text-anchor="start" x="1491.25" y="-2975.45" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="1325.5,-2944.25 1325.5,-2968.25 1412.5,-2968.25 1412.5,-2944.25 1325.5,-2944.25"/>
+<text text-anchor="start" x="1364.12" y="-2950.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1412.5,-2944.25 1412.5,-2968.25 1558.5,-2968.25 1558.5,-2944.25 1412.5,-2944.25"/>
+<text text-anchor="start" x="1456.62" y="-2950.95" font-family="arial" font-size="14.00">CANB_P</text>
+<polygon fill="none" stroke="black" points="1325.5,-2920.25 1325.5,-2944.25 1412.5,-2944.25 1412.5,-2920.25 1325.5,-2920.25"/>
+<text text-anchor="start" x="1364.12" y="-2926.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1412.5,-2920.25 1412.5,-2944.25 1558.5,-2944.25 1558.5,-2920.25 1412.5,-2920.25"/>
+<text text-anchor="start" x="1456.62" y="-2926.95" font-family="arial" font-size="14.00">CANB_N</text>
+<polygon fill="none" stroke="black" points="1325.5,-2896.25 1325.5,-2920.25 1412.5,-2920.25 1412.5,-2896.25 1325.5,-2896.25"/>
+<text text-anchor="start" x="1363.75" y="-2902.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1412.5,-2896.25 1412.5,-2920.25 1558.5,-2920.25 1558.5,-2896.25 1412.5,-2896.25"/>
+<text text-anchor="start" x="1450.62" y="-2902.95" font-family="arial" font-size="14.00">CAN_GND</text>
+<polygon fill="none" stroke="black" points="1325.5,-2696.25 1325.5,-2896.25 1558.5,-2896.25 1558.5,-2696.25 1325.5,-2696.25"/>
+<image xlink:href="images\DT06-3S.png" width="219.436px" height="188px" preserveAspectRatio="xMinYMin meet" x="1332.28" y="-2890.25"/>
</g>
<!-- shield1 -->
<g id="node14" class="node">
@@ -1104,388 +1104,529 @@
<text text-anchor="start" x="1469.88" y="-2508.2" font-family="arial" font-size="14.00">1</text>
</g>
<!-- W11 -->
-<g id="node28" class="node">
+<g id="node34" class="node">
<title>W11</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2174,-2931.5 1803,-2931.5 1803,-2686 2174,-2686 2174,-2931.5"/>
-<polygon fill="none" stroke="black" points="1803,-2907 1803,-2931.5 2174,-2931.5 2174,-2907 1803,-2907"/>
-<text text-anchor="start" x="1973.12" y="-2914.2" font-family="arial" font-size="14.00">W11</text>
-<polygon fill="none" stroke="black" points="1803,-2882.5 1803,-2907 1868.94,-2907 1868.94,-2882.5 1803,-2882.5"/>
-<text text-anchor="start" x="1828.47" y="-2889.7" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="1868.94,-2882.5 1868.94,-2907 1975.38,-2907 1975.38,-2882.5 1868.94,-2882.5"/>
-<text text-anchor="start" x="1894.41" y="-2889.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1975.38,-2882.5 1975.38,-2907 2048.06,-2907 2048.06,-2882.5 1975.38,-2882.5"/>
-<text text-anchor="start" x="2000.84" y="-2889.7" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="2048.06,-2882.5 2048.06,-2907 2174,-2907 2174,-2882.5 2048.06,-2882.5"/>
-<text text-anchor="start" x="2073.53" y="-2889.7" font-family="arial" font-size="14.00">30.0 Inches</text>
-<text text-anchor="start" x="1853.62" y="-2867.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1910.75" y="-2847.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1981.5" y="-2847.2" font-family="arial" font-size="14.00">Throttle Servo CAN:1:CAN+</text>
-<polygon fill="#000000" stroke="none" points="1803,-2840.5 1803,-2842.5 2174,-2842.5 2174,-2840.5 1803,-2840.5"/>
-<polygon fill="#ffff00" stroke="none" points="1803,-2838.5 1803,-2840.5 2174,-2840.5 2174,-2838.5 1803,-2838.5"/>
-<polygon fill="#ffff00" stroke="none" points="1803,-2836.5 1803,-2838.5 2174,-2838.5 2174,-2836.5 1803,-2836.5"/>
-<polygon fill="#ffff00" stroke="none" points="1803,-2834.5 1803,-2836.5 2174,-2836.5 2174,-2834.5 1803,-2834.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2832.5 1803,-2834.5 2174,-2834.5 2174,-2832.5 1803,-2832.5"/>
-<text text-anchor="start" x="1909.62" y="-2817.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1983.38" y="-2817.2" font-family="arial" font-size="14.00">Throttle Servo CAN:3:CAN&#45;</text>
-<polygon fill="#000000" stroke="none" points="1803,-2810.5 1803,-2812.5 2174,-2812.5 2174,-2810.5 1803,-2810.5"/>
-<polygon fill="#00ff00" stroke="none" points="1803,-2808.5 1803,-2810.5 2174,-2810.5 2174,-2808.5 1803,-2808.5"/>
-<polygon fill="#00ff00" stroke="none" points="1803,-2806.5 1803,-2808.5 2174,-2808.5 2174,-2806.5 1803,-2806.5"/>
-<polygon fill="#00ff00" stroke="none" points="1803,-2804.5 1803,-2806.5 2174,-2806.5 2174,-2804.5 1803,-2804.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2802.5 1803,-2804.5 2174,-2804.5 2174,-2802.5 1803,-2802.5"/>
-<text text-anchor="start" x="1910.38" y="-2787.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1968" y="-2787.2" font-family="arial" font-size="14.00">Throttle Servo CAN:2:CAN GND</text>
-<polygon fill="#000000" stroke="none" points="1803,-2780.5 1803,-2782.5 2174,-2782.5 2174,-2780.5 1803,-2780.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2778.5 1803,-2780.5 2174,-2780.5 2174,-2778.5 1803,-2778.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2776.5 1803,-2778.5 2174,-2778.5 2174,-2776.5 1803,-2776.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2774.5 1803,-2776.5 2174,-2776.5 2174,-2774.5 1803,-2774.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2772.5 1803,-2774.5 2174,-2774.5 2174,-2772.5 1803,-2772.5"/>
-<text text-anchor="start" x="1853.62" y="-2757.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1804.88" y="-2737.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1917.12" y="-2737.2" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1803,-2730.5 1803,-2732.5 2174,-2732.5 2174,-2730.5 1803,-2730.5"/>
-<text text-anchor="start" x="1853.62" y="-2715.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1803,-2686 1803,-2710.5 2174,-2710.5 2174,-2686 1803,-2686"/>
-<text text-anchor="start" x="1900" y="-2693.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Servo</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2174,-2759.5 1803,-2759.5 1803,-2514 2174,-2514 2174,-2759.5"/>
+<polygon fill="none" stroke="black" points="1803,-2735 1803,-2759.5 2174,-2759.5 2174,-2735 1803,-2735"/>
+<text text-anchor="start" x="1973.12" y="-2742.2" font-family="arial" font-size="14.00">W11</text>
+<polygon fill="none" stroke="black" points="1803,-2710.5 1803,-2735 1868.94,-2735 1868.94,-2710.5 1803,-2710.5"/>
+<text text-anchor="start" x="1828.47" y="-2717.7" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="1868.94,-2710.5 1868.94,-2735 1975.38,-2735 1975.38,-2710.5 1868.94,-2710.5"/>
+<text text-anchor="start" x="1894.41" y="-2717.7" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1975.38,-2710.5 1975.38,-2735 2048.06,-2735 2048.06,-2710.5 1975.38,-2710.5"/>
+<text text-anchor="start" x="2000.84" y="-2717.7" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="2048.06,-2710.5 2048.06,-2735 2174,-2735 2174,-2710.5 2048.06,-2710.5"/>
+<text text-anchor="start" x="2073.53" y="-2717.7" font-family="arial" font-size="14.00">30.0 Inches</text>
+<text text-anchor="start" x="1853.62" y="-2695.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1910.75" y="-2675.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1981.5" y="-2675.2" font-family="arial" font-size="14.00">Throttle Servo CAN:1:CAN+</text>
+<polygon fill="#000000" stroke="none" points="1803,-2668.5 1803,-2670.5 2174,-2670.5 2174,-2668.5 1803,-2668.5"/>
+<polygon fill="#ffff00" stroke="none" points="1803,-2666.5 1803,-2668.5 2174,-2668.5 2174,-2666.5 1803,-2666.5"/>
+<polygon fill="#ffff00" stroke="none" points="1803,-2664.5 1803,-2666.5 2174,-2666.5 2174,-2664.5 1803,-2664.5"/>
+<polygon fill="#ffff00" stroke="none" points="1803,-2662.5 1803,-2664.5 2174,-2664.5 2174,-2662.5 1803,-2662.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2660.5 1803,-2662.5 2174,-2662.5 2174,-2660.5 1803,-2660.5"/>
+<text text-anchor="start" x="1909.62" y="-2645.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1983.38" y="-2645.2" font-family="arial" font-size="14.00">Throttle Servo CAN:3:CAN&#45;</text>
+<polygon fill="#000000" stroke="none" points="1803,-2638.5 1803,-2640.5 2174,-2640.5 2174,-2638.5 1803,-2638.5"/>
+<polygon fill="#00ff00" stroke="none" points="1803,-2636.5 1803,-2638.5 2174,-2638.5 2174,-2636.5 1803,-2636.5"/>
+<polygon fill="#00ff00" stroke="none" points="1803,-2634.5 1803,-2636.5 2174,-2636.5 2174,-2634.5 1803,-2634.5"/>
+<polygon fill="#00ff00" stroke="none" points="1803,-2632.5 1803,-2634.5 2174,-2634.5 2174,-2632.5 1803,-2632.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2630.5 1803,-2632.5 2174,-2632.5 2174,-2630.5 1803,-2630.5"/>
+<text text-anchor="start" x="1910.38" y="-2615.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1968" y="-2615.2" font-family="arial" font-size="14.00">Throttle Servo CAN:2:CAN GND</text>
+<polygon fill="#000000" stroke="none" points="1803,-2608.5 1803,-2610.5 2174,-2610.5 2174,-2608.5 1803,-2608.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2606.5 1803,-2608.5 2174,-2608.5 2174,-2606.5 1803,-2606.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2604.5 1803,-2606.5 2174,-2606.5 2174,-2604.5 1803,-2604.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2602.5 1803,-2604.5 2174,-2604.5 2174,-2602.5 1803,-2602.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2600.5 1803,-2602.5 2174,-2602.5 2174,-2600.5 1803,-2600.5"/>
+<text text-anchor="start" x="1853.62" y="-2585.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1804.88" y="-2565.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
+<text text-anchor="start" x="1917.12" y="-2565.2" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1803,-2558.5 1803,-2560.5 2174,-2560.5 2174,-2558.5 1803,-2558.5"/>
+<text text-anchor="start" x="1853.62" y="-2543.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1803,-2514 1803,-2538.5 2174,-2538.5 2174,-2514 1803,-2514"/>
+<text text-anchor="start" x="1900" y="-2521.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Servo</text>
</g>
<!-- shield1&#45;&#45;W11 -->
-<g id="edge58" class="edge">
+<g id="edge64" class="edge">
<title>shield1:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1483.12,-2513.25C1567.84,-2513.25 1588.7,-2539.48 1659,-2586.75 1734.31,-2637.38 1712.25,-2731.5 1803,-2731.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1483.12,-2513.25C1626.77,-2513.25 1659.35,-2559.5 1803,-2559.5"/>
</g>
<!-- _S_1 -->
<g id="node15" class="node">
<title>_S_1</title>
-<polygon fill="#ffffff" stroke="black" points="1464.75,-3066 1419.25,-3066 1419.25,-3041.5 1464.75,-3041.5 1464.75,-3066"/>
-<polygon fill="none" stroke="black" points="1419.25,-3041.5 1419.25,-3066 1464.75,-3066 1464.75,-3041.5 1419.25,-3041.5"/>
-<text text-anchor="start" x="1423.25" y="-3048.7" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3262 1419.25,-3262 1419.25,-3237.5 1464.75,-3237.5 1464.75,-3262"/>
+<polygon fill="none" stroke="black" points="1419.25,-3237.5 1419.25,-3262 1464.75,-3262 1464.75,-3237.5 1419.25,-3237.5"/>
+<text text-anchor="start" x="1423.25" y="-3244.7" font-family="arial" font-size="14.00">splice</text>
</g>
-<!-- _S_1&#45;&#45;W11 -->
-<g id="edge52" class="edge">
-<title>_S_1:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3049.75C1554.49,-3050.37 1587.82,-3071.46 1656.87,-3025.36 1754.69,-2967.97 1682.04,-2809.16 1803,-2803.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3051.75C1553.42,-3052.06 1586.75,-3073.15 1657.94,-3027.06 1756.51,-2967.14 1683.86,-2808.33 1803,-2805.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3053.75C1552.35,-3053.75 1585.68,-3074.84 1659,-3028.75 1758.33,-2966.3 1685.67,-2807.5 1803,-2807.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3055.75C1551.28,-3055.44 1584.61,-3076.53 1660.06,-3030.44 1760.15,-2965.47 1687.49,-2806.67 1803,-2809.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3057.75C1550.22,-3057.13 1583.54,-3078.22 1661.13,-3032.14 1761.97,-2964.64 1689.31,-2805.84 1803,-2811.5"/>
+<!-- W12 -->
+<g id="node23" class="node">
+<title>W12</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2115.5,-3825.25 1861.5,-3825.25 1861.5,-3706.25 2115.5,-3706.25 2115.5,-3825.25"/>
+<polygon fill="none" stroke="black" points="1861.5,-3800.75 1861.5,-3825.25 2115.5,-3825.25 2115.5,-3800.75 1861.5,-3800.75"/>
+<text text-anchor="start" x="1973.12" y="-3807.95" font-family="arial" font-size="14.00">W12</text>
+<polygon fill="none" stroke="black" points="1861.5,-3776.25 1861.5,-3800.75 1912.67,-3800.75 1912.67,-3776.25 1861.5,-3776.25"/>
+<text text-anchor="start" x="1879.58" y="-3783.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1912.67,-3776.25 1912.67,-3800.75 2004.33,-3800.75 2004.33,-3776.25 1912.67,-3776.25"/>
+<text text-anchor="start" x="1930.75" y="-3783.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2004.33,-3776.25 2004.33,-3800.75 2115.5,-3800.75 2115.5,-3776.25 2004.33,-3776.25"/>
+<text text-anchor="start" x="2022.42" y="-3783.45" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1863.12" y="-3760.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1870.38" y="-3740.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1927.5" y="-3740.95" font-family="arial" font-size="14.00">Coil Pack 1:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="1861.5,-3734.25 1861.5,-3736.25 2115.5,-3736.25 2115.5,-3734.25 1861.5,-3734.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3732.25 1861.5,-3734.25 2115.5,-3734.25 2115.5,-3732.25 1861.5,-3732.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3730.25 1861.5,-3732.25 2115.5,-3732.25 2115.5,-3730.25 1861.5,-3730.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3728.25 1861.5,-3730.25 2115.5,-3730.25 2115.5,-3728.25 1861.5,-3728.25"/>
+<polygon fill="#000000" stroke="none" points="1861.5,-3726.25 1861.5,-3728.25 2115.5,-3728.25 2115.5,-3726.25 1861.5,-3726.25"/>
+<text text-anchor="start" x="1863.12" y="-3710.95" font-family="arial" font-size="14.00"> </text>
+</g>
+<!-- _S_1&#45;&#45;W12 -->
+<g id="edge14" class="edge">
+<title>_S_1:e&#45;&#45;W12:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3245.75C1550.02,-3246.5 1587.29,-3219.65 1661.39,-3271.55 1840.05,-3409.61 1642.14,-3733.34 1860.5,-3727.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3247.75C1551.19,-3248.13 1588.46,-3221.28 1660.2,-3273.15 1838.34,-3408.57 1640.43,-3732.29 1860.5,-3729.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3249.75C1552.35,-3249.75 1589.63,-3222.9 1659,-3274.75 1836.63,-3407.53 1638.73,-3731.25 1860.5,-3731.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3251.75C1553.52,-3251.37 1590.8,-3224.52 1657.8,-3276.35 1834.93,-3406.48 1637.02,-3730.21 1860.5,-3733.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3253.75C1554.69,-3253 1591.97,-3226.15 1656.61,-3277.95 1833.22,-3405.44 1635.31,-3729.16 1860.5,-3735.25"/>
</g>
<!-- _S_2 -->
<g id="node16" class="node">
<title>_S_2</title>
-<polygon fill="#ffffff" stroke="black" points="1464.75,-3017 1419.25,-3017 1419.25,-2992.5 1464.75,-2992.5 1464.75,-3017"/>
-<polygon fill="none" stroke="black" points="1419.25,-2992.5 1419.25,-3017 1464.75,-3017 1464.75,-2992.5 1419.25,-2992.5"/>
-<text text-anchor="start" x="1423.25" y="-2999.7" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3164 1419.25,-3164 1419.25,-3139.5 1464.75,-3139.5 1464.75,-3164"/>
+<polygon fill="none" stroke="black" points="1419.25,-3139.5 1419.25,-3164 1464.75,-3164 1464.75,-3139.5 1419.25,-3139.5"/>
+<text text-anchor="start" x="1423.25" y="-3146.7" font-family="arial" font-size="14.00">splice</text>
</g>
-<!-- _S_2&#45;&#45;W11 -->
-<g id="edge54" class="edge">
-<title>_S_2:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3000.75C1554.03,-3001.15 1582.92,-3015.04 1657.25,-2977.15 1736.3,-2942.25 1708.86,-2838.52 1803,-2833.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-3002.75C1553.17,-3002.95 1582.05,-3016.84 1658.12,-2978.95 1738.23,-2941.74 1710.79,-2838.01 1803,-2835.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-3004.75C1552.3,-3004.75 1581.19,-3018.64 1659,-2980.75 1740.16,-2941.23 1712.73,-2837.5 1803,-2837.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-3006.75C1551.43,-3006.55 1580.32,-3020.45 1659.88,-2982.55 1742.1,-2940.71 1714.66,-2836.99 1803,-2839.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3008.75C1550.57,-3008.35 1579.45,-3022.25 1660.75,-2984.35 1744.03,-2940.2 1716.59,-2836.48 1803,-2841.5"/>
+<!-- W13 -->
+<g id="node24" class="node">
+<title>W13</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2115.5,-3437.25 1861.5,-3437.25 1861.5,-3318.25 2115.5,-3318.25 2115.5,-3437.25"/>
+<polygon fill="none" stroke="black" points="1861.5,-3412.75 1861.5,-3437.25 2115.5,-3437.25 2115.5,-3412.75 1861.5,-3412.75"/>
+<text text-anchor="start" x="1973.12" y="-3419.95" font-family="arial" font-size="14.00">W13</text>
+<polygon fill="none" stroke="black" points="1861.5,-3388.25 1861.5,-3412.75 1912.67,-3412.75 1912.67,-3388.25 1861.5,-3388.25"/>
+<text text-anchor="start" x="1879.58" y="-3395.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1912.67,-3388.25 1912.67,-3412.75 2004.33,-3412.75 2004.33,-3388.25 1912.67,-3388.25"/>
+<text text-anchor="start" x="1930.75" y="-3395.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2004.33,-3388.25 2004.33,-3412.75 2115.5,-3412.75 2115.5,-3388.25 2004.33,-3388.25"/>
+<text text-anchor="start" x="2022.42" y="-3395.45" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1863.12" y="-3372.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1870.38" y="-3352.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1927.5" y="-3352.95" font-family="arial" font-size="14.00">Coil Pack 3:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="1861.5,-3346.25 1861.5,-3348.25 2115.5,-3348.25 2115.5,-3346.25 1861.5,-3346.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3344.25 1861.5,-3346.25 2115.5,-3346.25 2115.5,-3344.25 1861.5,-3344.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3342.25 1861.5,-3344.25 2115.5,-3344.25 2115.5,-3342.25 1861.5,-3342.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3340.25 1861.5,-3342.25 2115.5,-3342.25 2115.5,-3340.25 1861.5,-3340.25"/>
+<polygon fill="#000000" stroke="none" points="1861.5,-3338.25 1861.5,-3340.25 2115.5,-3340.25 2115.5,-3338.25 1861.5,-3338.25"/>
+<text text-anchor="start" x="1863.12" y="-3322.95" font-family="arial" font-size="14.00"> </text>
+</g>
+<!-- _S_2&#45;&#45;W13 -->
+<g id="edge16" class="edge">
+<title>_S_2:e&#45;&#45;W13:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3147.75C1561.25,-3149.86 1579.58,-3184.12 1660.73,-3222.14 1756.49,-3270.31 1760.82,-3343.01 1860.5,-3339.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3149.75C1559.48,-3150.81 1577.82,-3185.07 1659.86,-3223.95 1754.49,-3270.43 1758.83,-3343.13 1860.5,-3341.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3151.75C1557.72,-3151.75 1576.06,-3186.01 1659,-3225.75 1752.49,-3270.54 1756.83,-3343.25 1860.5,-3343.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3153.75C1555.96,-3152.69 1574.29,-3186.95 1658.14,-3227.55 1750.5,-3270.66 1754.83,-3343.37 1860.5,-3345.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3155.75C1554.19,-3153.64 1572.53,-3187.9 1657.27,-3229.36 1748.5,-3270.78 1752.84,-3343.49 1860.5,-3347.25"/>
</g>
<!-- _S_3 -->
<g id="node17" class="node">
<title>_S_3</title>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3115 1419.25,-3115 1419.25,-3090.5 1464.75,-3090.5 1464.75,-3115"/>
+<polygon fill="none" stroke="black" points="1419.25,-3090.5 1419.25,-3115 1464.75,-3115 1464.75,-3090.5 1419.25,-3090.5"/>
+<text text-anchor="start" x="1423.25" y="-3097.7" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W14 -->
+<g id="node25" class="node">
+<title>W14</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2115.5,-3163.25 1861.5,-3163.25 1861.5,-3044.25 2115.5,-3044.25 2115.5,-3163.25"/>
+<polygon fill="none" stroke="black" points="1861.5,-3138.75 1861.5,-3163.25 2115.5,-3163.25 2115.5,-3138.75 1861.5,-3138.75"/>
+<text text-anchor="start" x="1973.12" y="-3145.95" font-family="arial" font-size="14.00">W14</text>
+<polygon fill="none" stroke="black" points="1861.5,-3114.25 1861.5,-3138.75 1912.67,-3138.75 1912.67,-3114.25 1861.5,-3114.25"/>
+<text text-anchor="start" x="1879.58" y="-3121.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1912.67,-3114.25 1912.67,-3138.75 2004.33,-3138.75 2004.33,-3114.25 1912.67,-3114.25"/>
+<text text-anchor="start" x="1930.75" y="-3121.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2004.33,-3114.25 2004.33,-3138.75 2115.5,-3138.75 2115.5,-3114.25 2004.33,-3114.25"/>
+<text text-anchor="start" x="2022.42" y="-3121.45" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1863.12" y="-3098.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1870.38" y="-3078.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1927.5" y="-3078.95" font-family="arial" font-size="14.00">Coil Pack 4:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="1861.5,-3072.25 1861.5,-3074.25 2115.5,-3074.25 2115.5,-3072.25 1861.5,-3072.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3070.25 1861.5,-3072.25 2115.5,-3072.25 2115.5,-3070.25 1861.5,-3070.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3068.25 1861.5,-3070.25 2115.5,-3070.25 2115.5,-3068.25 1861.5,-3068.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3066.25 1861.5,-3068.25 2115.5,-3068.25 2115.5,-3066.25 1861.5,-3066.25"/>
+<polygon fill="#000000" stroke="none" points="1861.5,-3064.25 1861.5,-3066.25 2115.5,-3066.25 2115.5,-3064.25 1861.5,-3064.25"/>
+<text text-anchor="start" x="1863.12" y="-3048.95" font-family="arial" font-size="14.00"> </text>
+</g>
+<!-- _S_3&#45;&#45;W14 -->
+<g id="edge18" class="edge">
+<title>_S_3:e&#45;&#45;W14:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3098.75C1639.35,-3099.61 1681.95,-3066.11 1860.5,-3065.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3100.75C1640.59,-3101.18 1683.19,-3067.68 1860.5,-3067.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3102.75C1641.83,-3102.75 1684.42,-3069.25 1860.5,-3069.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3104.75C1643.06,-3104.32 1685.66,-3070.82 1860.5,-3071.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3106.75C1644.3,-3105.89 1686.9,-3072.39 1860.5,-3073.25"/>
+</g>
+<!-- _S_4 -->
+<g id="node18" class="node">
+<title>_S_4</title>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3066 1419.25,-3066 1419.25,-3041.5 1464.75,-3041.5 1464.75,-3066"/>
+<polygon fill="none" stroke="black" points="1419.25,-3041.5 1419.25,-3066 1464.75,-3066 1464.75,-3041.5 1419.25,-3041.5"/>
+<text text-anchor="start" x="1423.25" y="-3048.7" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- _S_4&#45;&#45;W11 -->
+<g id="edge58" class="edge">
+<title>_S_4:e&#45;&#45;W11:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3049.75C1554.73,-3050.58 1593.71,-3080.46 1656.51,-3026.62 1801.67,-2915.85 1613.14,-2637.74 1803,-2631.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3051.75C1553.52,-3052.16 1592.49,-3082.05 1657.75,-3028.18 1803.32,-2914.73 1614.8,-2636.62 1803,-2633.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3053.75C1552.3,-3053.75 1591.27,-3083.64 1659,-3029.75 1804.98,-2913.6 1616.46,-2635.5 1803,-2635.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3055.75C1551.08,-3055.34 1590.06,-3085.22 1660.25,-3031.32 1806.63,-2912.48 1618.11,-2634.38 1803,-2637.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3057.75C1549.86,-3056.92 1588.84,-3086.81 1661.49,-3032.88 1808.29,-2911.36 1619.77,-2633.26 1803,-2639.5"/>
+</g>
+<!-- _S_5 -->
+<g id="node19" class="node">
+<title>_S_5</title>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-2672 1419.25,-2672 1419.25,-2647.5 1464.75,-2647.5 1464.75,-2672"/>
+<polygon fill="none" stroke="black" points="1419.25,-2647.5 1419.25,-2672 1464.75,-2672 1464.75,-2647.5 1419.25,-2647.5"/>
+<text text-anchor="start" x="1423.25" y="-2654.7" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- _S_5&#45;&#45;W11 -->
+<g id="edge60" class="edge">
+<title>_S_5:e&#45;&#45;W11:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2655.75C1616.27,-2655.8 1653.7,-2661.55 1803,-2661.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-2657.75C1615.96,-2657.77 1653.39,-2663.52 1803,-2663.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-2659.75C1615.66,-2659.75 1653.09,-2665.5 1803,-2665.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-2661.75C1615.36,-2661.73 1652.79,-2667.48 1803,-2667.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2663.75C1615.05,-2663.7 1652.48,-2669.45 1803,-2669.5"/>
+</g>
+<!-- _S_6 -->
+<g id="node20" class="node">
+<title>_S_6</title>
<polygon fill="#ffffff" stroke="black" points="1464.75,-2623 1419.25,-2623 1419.25,-2598.5 1464.75,-2598.5 1464.75,-2623"/>
<polygon fill="none" stroke="black" points="1419.25,-2598.5 1419.25,-2623 1464.75,-2623 1464.75,-2598.5 1419.25,-2598.5"/>
<text text-anchor="start" x="1423.25" y="-2605.7" font-family="arial" font-size="14.00">splice</text>
</g>
-<!-- _S_3&#45;&#45;W11 -->
-<g id="edge56" class="edge">
-<title>_S_3:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2606.75C1550.72,-2607.1 1579.5,-2594.19 1660.75,-2632.15 1743.62,-2676.07 1717.07,-2778.5 1803,-2773.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2608.75C1551.54,-2608.93 1580.32,-2596.01 1659.88,-2633.95 1741.68,-2675.56 1715.13,-2778 1803,-2775.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2610.75C1552.35,-2610.75 1581.13,-2597.84 1659,-2635.75 1739.74,-2675.06 1713.19,-2777.5 1803,-2777.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2612.75C1553.17,-2612.57 1581.95,-2599.66 1658.12,-2637.55 1737.81,-2674.56 1711.26,-2777 1803,-2779.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2614.75C1553.99,-2614.4 1582.77,-2601.49 1657.25,-2639.35 1735.87,-2674.06 1709.32,-2776.5 1803,-2781.5"/>
+<!-- _S_6&#45;&#45;W11 -->
+<g id="edge62" class="edge">
+<title>_S_6:e&#45;&#45;W11:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2606.75C1615.1,-2606.79 1652.54,-2601.54 1803,-2601.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2608.75C1615.38,-2608.77 1652.82,-2603.52 1803,-2603.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2610.75C1615.66,-2610.75 1653.09,-2605.5 1803,-2605.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2612.75C1615.93,-2612.73 1653.37,-2607.48 1803,-2607.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2614.75C1616.21,-2614.71 1653.65,-2609.46 1803,-2609.5"/>
</g>
<!-- _GND_1 -->
-<g id="node18" class="node">
+<g id="node21" class="node">
<title>_GND_1</title>
-<polygon fill="#ffffff" stroke="black" points="2479,-2518 2439.5,-2518 2439.5,-2493.5 2479,-2493.5 2479,-2518"/>
-<polygon fill="none" stroke="black" points="2439.5,-2493.5 2439.5,-2518 2479,-2518 2479,-2493.5 2439.5,-2493.5"/>
-<text text-anchor="start" x="2443.5" y="-2500.7" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="#ffffff" stroke="black" points="2479,-2346 2439.5,-2346 2439.5,-2321.5 2479,-2321.5 2479,-2346"/>
+<polygon fill="none" stroke="black" points="2439.5,-2321.5 2439.5,-2346 2479,-2346 2479,-2321.5 2439.5,-2321.5"/>
+<text text-anchor="start" x="2443.5" y="-2328.7" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- W1&#45;&#45;Coil Pack 1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;Coil Pack 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3466.25C1489.14,-3472.36 860.65,-4483.36 1327.5,-4477.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3468.25C1487.44,-3471.31 858.96,-4482.31 1327.5,-4479.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3470.25C1485.74,-3470.25 857.26,-4481.25 1327.5,-4481.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3472.25C1484.04,-3469.19 855.56,-4480.19 1327.5,-4483.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3474.25C1482.35,-3468.14 853.86,-4479.14 1327.5,-4485.25"/>
-</g>
-<!-- W1&#45;&#45;Coil Pack 1 -->
-<g id="edge10" class="edge">
-<title>W1:e&#45;&#45;Coil Pack 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1530.03,-3352.41 819.7,-4459.41 1327.5,-4453.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1528.35,-3351.33 818.02,-4458.33 1327.5,-4455.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1526.67,-3350.25 816.33,-4457.25 1327.5,-4457.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1524.98,-3349.17 814.65,-4456.17 1327.5,-4459.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1523.3,-3348.09 812.97,-4455.09 1327.5,-4461.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3267.25C1233.36,-3273.24 1060.83,-3574.1 1227.49,-3702.62 1615.25,-4015.49 1840.32,-3852.01 2344.75,-3851.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3269.25C1231.62,-3272.24 1059.1,-3573.11 1226.25,-3704.19 1616.42,-4017.11 1841.49,-3853.63 2344.75,-3853.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3271.25C1229.89,-3271.25 1057.36,-3572.11 1225,-3705.75 1617.6,-4018.72 1842.67,-3855.25 2344.75,-3855.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3273.25C1228.15,-3270.26 1055.63,-3571.12 1223.75,-3707.31 1618.77,-4020.34 1843.84,-3856.87 2344.75,-3857.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3275.25C1226.42,-3269.26 1053.89,-3570.12 1222.51,-3708.88 1619.95,-4021.96 1845.02,-3858.49 2344.75,-3859.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;Coil Pack 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3436.25C1348.34,-3442.08 1001.77,-4114.08 1327.5,-4108.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3438.25C1346.56,-3441.17 999.99,-4113.17 1327.5,-4110.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3440.25C1344.79,-3440.25 998.21,-4112.25 1327.5,-4112.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3442.25C1343.01,-3439.33 996.44,-4111.33 1327.5,-4114.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3444.25C1341.23,-3438.42 994.66,-4110.42 1327.5,-4116.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3237.25C1220.87,-3242.32 1129.84,-3571.32 1327.5,-3566.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3239.25C1218.95,-3241.78 1127.91,-3570.78 1327.5,-3568.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3241.25C1217.02,-3241.25 1125.98,-3570.25 1327.5,-3570.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3243.25C1215.09,-3240.72 1124.05,-3569.72 1327.5,-3572.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3245.25C1213.16,-3240.18 1122.13,-3569.18 1327.5,-3574.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 2 -->
-<g id="edge11" class="edge">
+<g id="edge10" class="edge">
<title>W1:e&#45;&#45;Coil Pack 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1375.12,-3352.16 974.91,-4090.16 1327.5,-4084.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1373.37,-3351.2 973.15,-4089.2 1327.5,-4086.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1371.61,-3350.25 971.39,-4088.25 1327.5,-4088.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1369.85,-3349.3 969.63,-4087.3 1327.5,-4090.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1368.09,-3348.34 967.88,-4086.34 1327.5,-4092.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1243,-3152.55 1107.57,-3547.55 1327.5,-3542.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1241.11,-3151.9 1105.68,-3546.9 1327.5,-3544.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1239.21,-3151.25 1103.79,-3546.25 1327.5,-3546.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1237.32,-3150.6 1101.89,-3545.6 1327.5,-3548.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1235.43,-3149.95 1100,-3544.95 1327.5,-3550.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 3 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;Coil Pack 3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3406.25C1222.16,-3411.33 1128.54,-3744.33 1327.5,-3739.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3408.25C1220.24,-3410.79 1126.61,-3743.79 1327.5,-3741.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3410.25C1218.31,-3410.25 1124.69,-3743.25 1327.5,-3743.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3412.25C1216.39,-3409.71 1122.76,-3742.71 1327.5,-3745.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3414.25C1214.46,-3409.17 1120.84,-3742.17 1327.5,-3747.25"/>
-</g>
-<!-- W1&#45;&#45;Coil Pack 3 -->
-<g id="edge12" class="edge">
-<title>W1:e&#45;&#45;Coil Pack 3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1234.08,-3351.46 1116.55,-3720.46 1327.5,-3715.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1232.17,-3350.86 1114.64,-3719.86 1327.5,-3717.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1230.27,-3350.25 1112.73,-3719.25 1327.5,-3719.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1228.36,-3349.64 1110.83,-3718.64 1327.5,-3721.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1226.45,-3349.04 1108.92,-3718.04 1327.5,-3723.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3207.25C1232.55,-3213.26 1047.48,-3532.33 1227.12,-3640.36 1648.05,-3909.62 1837.47,-3468.67 2344.75,-3466.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3209.25C1230.82,-3212.25 1045.75,-3531.33 1226.06,-3642.06 1649.88,-3910.41 1839.31,-3469.46 2344.75,-3468.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3211.25C1229.09,-3211.25 1044.02,-3530.32 1225,-3643.75 1651.72,-3911.2 1841.14,-3470.25 2344.75,-3470.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3213.25C1227.36,-3210.25 1042.29,-3529.32 1223.94,-3645.44 1653.56,-3911.99 1842.98,-3471.04 2344.75,-3472.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3215.25C1225.63,-3209.24 1040.56,-3528.32 1222.88,-3647.14 1655.4,-3912.78 1844.82,-3471.83 2344.75,-3474.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 4 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;Coil Pack 4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3376.25C1153.51,-3376.31 1188.12,-3370.31 1327.5,-3370.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3378.25C1153.85,-3378.28 1188.47,-3372.28 1327.5,-3372.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3380.25C1154.19,-3380.25 1188.81,-3374.25 1327.5,-3374.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3382.25C1154.53,-3382.22 1189.15,-3376.22 1327.5,-3376.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3384.25C1154.88,-3384.19 1189.49,-3378.19 1327.5,-3378.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3177.25C1532.8,-3178.05 1673.68,-3283.83 2173.14,-3171.84 2251.57,-3157.33 2257.24,-3096.88 2344.75,-3093.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3179.25C1531.6,-3179.65 1672.47,-3285.43 2173.57,-3173.8 2253.56,-3157.51 2259.23,-3097.06 2344.75,-3095.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3181.25C1530.39,-3181.25 1671.27,-3287.03 2174,-3175.75 2255.55,-3157.7 2261.23,-3097.25 2344.75,-3097.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3183.25C1529.19,-3182.85 1670.07,-3288.63 2174.43,-3177.7 2257.54,-3157.89 2263.22,-3097.44 2344.75,-3099.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3185.25C1527.99,-3184.45 1668.87,-3290.23 2174.86,-3179.66 2259.53,-3158.07 2265.21,-3097.62 2344.75,-3101.25"/>
</g>
-<!-- W1&#45;&#45;Coil Pack 4 -->
+<!-- W1&#45;&#45;_S_1 -->
+<g id="edge11" class="edge">
+<title>W1:e&#45;&#45;_S_1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1117.23,-3149.91 1133.5,-3195.6 1225.93,-3215.86 1311.16,-3236.34 1332.97,-3246.1 1418.25,-3245.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1115.35,-3150.58 1131.61,-3196.27 1225.47,-3217.8 1310.35,-3238.16 1332.15,-3247.92 1418.25,-3247.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1113.46,-3151.25 1129.73,-3196.94 1225,-3219.75 1309.53,-3239.99 1331.33,-3249.75 1418.25,-3249.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1111.58,-3151.92 1127.85,-3197.61 1224.53,-3221.7 1308.71,-3241.81 1330.52,-3251.58 1418.25,-3251.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1109.69,-3152.59 1125.96,-3198.28 1224.07,-3223.64 1307.89,-3243.64 1329.7,-3253.4 1418.25,-3253.75"/>
+</g>
+<!-- W1&#45;&#45;_S_2 -->
+<g id="edge12" class="edge">
+<title>W1:e&#45;&#45;_S_2:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1194.54,-3147.25 1239.29,-3147.75 1418.25,-3147.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1194.52,-3149.25 1239.27,-3149.75 1418.25,-3149.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1194.5,-3151.25 1239.25,-3151.75 1418.25,-3151.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1194.48,-3153.25 1239.23,-3153.75 1418.25,-3153.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1194.46,-3155.25 1239.21,-3155.75 1418.25,-3155.75"/>
+</g>
+<!-- W1&#45;&#45;_S_3 -->
<g id="edge13" class="edge">
-<title>W1:e&#45;&#45;Coil Pack 4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1154.17,-3346.25 1188.83,-3346.25 1327.5,-3346.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1154.17,-3348.25 1188.83,-3348.25 1327.5,-3348.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1154.17,-3350.25 1188.83,-3350.25 1327.5,-3350.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1154.17,-3352.25 1188.83,-3352.25 1327.5,-3352.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1154.17,-3354.25 1188.83,-3354.25 1327.5,-3354.25"/>
+<title>W1:e&#45;&#45;_S_3:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1192.77,-3148.63 1234.94,-3100.13 1418.25,-3098.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1194.28,-3149.94 1236.45,-3101.44 1418.25,-3100.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1195.79,-3151.25 1237.96,-3102.75 1418.25,-3102.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1197.3,-3152.56 1239.47,-3104.06 1418.25,-3104.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1198.81,-3153.87 1240.98,-3105.37 1418.25,-3106.75"/>
+</g>
+<!-- W12&#45;&#45;Coil Pack 1 -->
+<g id="edge15" class="edge">
+<title>W12:e&#45;&#45;Coil Pack 1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3727.25C2231.24,-3730.98 2237.99,-3830.98 2344.75,-3827.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3729.25C2229.25,-3731.12 2235.99,-3831.12 2344.75,-3829.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3731.25C2227.25,-3731.25 2234,-3831.25 2344.75,-3831.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3733.25C2225.26,-3731.38 2232,-3831.38 2344.75,-3833.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3735.25C2223.26,-3731.52 2230.01,-3831.52 2344.75,-3835.25"/>
+</g>
+<!-- W13&#45;&#45;Coil Pack 3 -->
+<g id="edge17" class="edge">
+<title>W13:e&#45;&#45;Coil Pack 3:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3339.25C2231.79,-3343.03 2237.45,-3446.03 2344.75,-3442.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3341.25C2229.79,-3343.14 2235.45,-3446.14 2344.75,-3444.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3343.25C2227.8,-3343.25 2233.45,-3446.25 2344.75,-3446.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3345.25C2225.8,-3343.36 2231.46,-3446.36 2344.75,-3448.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3347.25C2223.8,-3343.47 2229.46,-3446.47 2344.75,-3450.25"/>
+</g>
+<!-- W14&#45;&#45;Coil Pack 4 -->
+<g id="edge19" class="edge">
+<title>W14:e&#45;&#45;Coil Pack 4:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3065.25C2218.58,-3065.3 2243.91,-3069.3 2344.75,-3069.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3067.25C2218.27,-3067.27 2243.6,-3071.27 2344.75,-3071.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3069.25C2217.96,-3069.25 2243.29,-3073.25 2344.75,-3073.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3071.25C2217.65,-3071.23 2242.98,-3075.23 2344.75,-3075.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3073.25C2217.34,-3073.2 2242.67,-3077.2 2344.75,-3077.25"/>
</g>
<!-- W3&#45;&#45;Fuel Injector 1 -->
-<g id="edge15" class="edge">
+<g id="edge21" class="edge">
<title>W3:e&#45;&#45;Fuel Injector 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1373.25C1139.23,-1377.56 1124.79,-1189.06 1287,-1184.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1375.25C1141.23,-1377.4 1126.78,-1188.9 1287,-1186.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1377.25C1143.22,-1377.25 1128.78,-1188.75 1287,-1188.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1379.25C1145.22,-1377.1 1130.77,-1188.6 1287,-1190.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1381.25C1147.21,-1376.94 1132.77,-1188.44 1287,-1192.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1385.25C1142.13,-1389.65 1121.91,-1189.15 1287,-1184.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1387.25C1144.12,-1389.45 1123.9,-1188.95 1287,-1186.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1389.25C1146.11,-1389.25 1125.89,-1188.75 1287,-1188.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1391.25C1148.1,-1389.05 1127.88,-1188.55 1287,-1190.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1393.25C1150.09,-1388.85 1129.87,-1188.35 1287,-1192.75"/>
</g>
<!-- W4&#45;&#45;Fuel Injector 2 -->
-<g id="edge17" class="edge">
+<g id="edge23" class="edge">
<title>W4:e&#45;&#45;Fuel Injector 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1030.25C1141.88,-1034.64 1122.15,-835.14 1287,-830.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1032.25C1143.87,-1034.45 1124.15,-834.95 1287,-832.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1034.25C1145.86,-1034.25 1126.14,-834.75 1287,-834.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1036.25C1147.85,-1034.05 1128.13,-834.55 1287,-836.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1038.25C1149.85,-1033.86 1130.12,-834.36 1287,-838.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1036.25C1143.37,-1040.69 1120.67,-835.19 1287,-830.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1038.25C1145.36,-1040.47 1122.66,-834.97 1287,-832.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1040.25C1147.35,-1040.25 1124.65,-834.75 1287,-834.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1042.25C1149.34,-1040.03 1126.64,-834.53 1287,-836.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1044.25C1151.33,-1039.81 1128.63,-834.31 1287,-838.75"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge19" class="edge">
+<g id="edge25" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2382.25C1135.02,-2383.37 1166.04,-2413.37 1293.5,-2412.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2384.25C1133.63,-2384.81 1164.65,-2414.81 1293.5,-2414.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2386.25C1132.24,-2386.25 1163.26,-2416.25 1293.5,-2416.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2388.25C1130.85,-2387.69 1161.87,-2417.69 1293.5,-2418.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2390.25C1129.46,-2389.13 1160.48,-2419.13 1293.5,-2420.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2376.25C1135.6,-2377.67 1166.02,-2413.67 1293.5,-2412.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2378.25C1134.07,-2378.96 1164.49,-2414.96 1293.5,-2414.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2380.25C1132.54,-2380.25 1162.96,-2416.25 1293.5,-2416.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2382.25C1131.01,-2381.54 1161.43,-2417.54 1293.5,-2418.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2384.25C1129.48,-2382.83 1159.9,-2418.83 1293.5,-2420.25"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge21" class="edge">
+<g id="edge27" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2352.25C1135.6,-2353.67 1166.02,-2389.67 1293.5,-2388.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2354.25C1134.07,-2354.96 1164.49,-2390.96 1293.5,-2390.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2356.25C1132.54,-2356.25 1162.96,-2392.25 1293.5,-2392.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2358.25C1131.01,-2357.54 1161.43,-2393.54 1293.5,-2394.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2360.25C1129.48,-2358.83 1159.9,-2394.83 1293.5,-2396.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2346.25C1136.16,-2347.94 1165.87,-2389.94 1293.5,-2388.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2348.25C1134.53,-2349.09 1164.24,-2391.09 1293.5,-2390.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2350.25C1132.89,-2350.25 1162.61,-2392.25 1293.5,-2392.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2352.25C1131.26,-2351.41 1160.97,-2393.41 1293.5,-2394.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2354.25C1129.63,-2352.56 1159.34,-2394.56 1293.5,-2396.25"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge23" class="edge">
+<g id="edge29" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2322.25C1130.85,-2322.32 1163.19,-2316.32 1293.5,-2316.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2324.25C1131.22,-2324.28 1163.55,-2318.28 1293.5,-2318.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2326.25C1131.58,-2326.25 1163.92,-2320.25 1293.5,-2320.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2328.25C1131.95,-2328.22 1164.28,-2322.22 1293.5,-2322.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2330.25C1132.31,-2330.18 1164.65,-2324.18 1293.5,-2324.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2316.25C1131.56,-2316.25 1163.94,-2316.25 1293.5,-2316.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2318.25C1131.56,-2318.25 1163.94,-2318.25 1293.5,-2318.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2320.25C1131.56,-2320.25 1163.94,-2320.25 1293.5,-2320.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2322.25C1131.56,-2322.25 1163.94,-2322.25 1293.5,-2322.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2324.25C1131.56,-2324.25 1163.94,-2324.25 1293.5,-2324.25"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge25" class="edge">
+<g id="edge31" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2292.25C1131.56,-2292.25 1163.94,-2292.25 1293.5,-2292.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2294.25C1131.56,-2294.25 1163.94,-2294.25 1293.5,-2294.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2296.25C1131.56,-2296.25 1163.94,-2296.25 1293.5,-2296.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2298.25C1131.56,-2298.25 1163.94,-2298.25 1293.5,-2298.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2300.25C1131.56,-2300.25 1163.94,-2300.25 1293.5,-2300.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2286.25C1132.31,-2286.32 1164.65,-2292.32 1293.5,-2292.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2288.25C1131.95,-2288.28 1164.28,-2294.28 1293.5,-2294.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2290.25C1131.58,-2290.25 1163.92,-2296.25 1293.5,-2296.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2292.25C1131.22,-2292.22 1163.55,-2298.22 1293.5,-2298.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2294.25C1130.85,-2294.18 1163.19,-2300.18 1293.5,-2300.25"/>
</g>
<!-- W6&#45;&#45;LSU -->
-<g id="edge28" class="edge">
+<g id="edge34" class="edge">
<title>W6:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2525.25C1139.95,-2529.49 1129.06,-2344.49 1293.5,-2340.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2527.25C1141.95,-2529.37 1131.06,-2344.37 1293.5,-2342.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2529.25C1143.95,-2529.25 1133.05,-2344.25 1293.5,-2344.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2531.25C1145.94,-2529.13 1135.05,-2344.13 1293.5,-2346.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2533.25C1147.94,-2529.01 1137.05,-2344.01 1293.5,-2348.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2519.25C1138.6,-2523.43 1130.41,-2344.43 1293.5,-2340.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2521.25C1140.6,-2523.34 1132.41,-2344.34 1293.5,-2342.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2523.25C1142.6,-2523.25 1134.4,-2344.25 1293.5,-2344.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2525.25C1144.59,-2523.16 1136.4,-2344.16 1293.5,-2346.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2527.25C1146.59,-2523.07 1138.4,-2344.07 1293.5,-2348.25"/>
</g>
<!-- W7&#45;&#45;Veronte 1X CAN Bus -->
-<g id="edge30" class="edge">
+<g id="edge36" class="edge">
<title>W7:e&#45;&#45;Veronte 1X CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2794.5C1177.26,-2797.57 1197.52,-2882.32 1324.5,-2879.25"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2796.5C1175.32,-2798.04 1195.57,-2882.79 1324.5,-2881.25"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2798.5C1173.37,-2798.5 1193.63,-2883.25 1324.5,-2883.25"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2800.5C1171.43,-2798.96 1191.68,-2883.71 1324.5,-2885.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2802.5C1169.48,-2799.43 1189.74,-2884.18 1324.5,-2887.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2788.5C1186.38,-2792.44 1188.62,-2932.19 1324.5,-2928.25"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2790.5C1184.38,-2792.47 1186.62,-2932.22 1324.5,-2930.25"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2792.5C1182.38,-2792.5 1184.62,-2932.25 1324.5,-2932.25"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2794.5C1180.38,-2792.53 1182.62,-2932.28 1324.5,-2934.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2796.5C1178.38,-2792.56 1180.62,-2932.31 1324.5,-2936.25"/>
</g>
<!-- W7&#45;&#45;Veronte 1X CAN Bus -->
-<g id="edge32" class="edge">
+<g id="edge38" class="edge">
<title>W7:e&#45;&#45;Veronte 1X CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2764.5C1186.18,-2768.42 1188.82,-2907.17 1324.5,-2903.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2766.5C1184.18,-2768.46 1186.82,-2907.21 1324.5,-2905.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2768.5C1182.18,-2768.5 1184.82,-2907.25 1324.5,-2907.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2770.5C1180.18,-2768.54 1182.82,-2907.29 1324.5,-2909.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2772.5C1178.18,-2768.58 1180.82,-2907.33 1324.5,-2911.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2758.5C1198.54,-2762.95 1176.41,-2956.7 1324.5,-2952.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2760.5C1196.55,-2762.73 1174.42,-2956.48 1324.5,-2954.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2762.5C1194.56,-2762.5 1172.44,-2956.25 1324.5,-2956.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2764.5C1192.58,-2762.27 1170.45,-2956.02 1324.5,-2958.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2766.5C1190.59,-2762.05 1168.46,-2955.8 1324.5,-2960.25"/>
</g>
<!-- W7&#45;&#45;Veronte 1X CAN Bus -->
-<g id="edge34" class="edge">
+<g id="edge40" class="edge">
<title>W7:e&#45;&#45;Veronte 1X CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1182.83,-2738.19 1192.15,-2858.94 1324.5,-2855.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1180.83,-2738.35 1190.15,-2859.1 1324.5,-2857.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2738.5C1178.84,-2738.5 1188.16,-2859.25 1324.5,-2859.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2740.5C1176.85,-2738.65 1186.17,-2859.4 1324.5,-2861.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2742.5C1174.85,-2738.81 1184.17,-2859.56 1324.5,-2863.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2728.5C1194.17,-2732.8 1180.81,-2908.55 1324.5,-2904.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2730.5C1192.18,-2732.65 1178.81,-2908.4 1324.5,-2906.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2732.5C1190.18,-2732.5 1176.82,-2908.25 1324.5,-2908.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1188.19,-2732.35 1174.82,-2908.1 1324.5,-2910.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1186.19,-2732.2 1172.83,-2907.95 1324.5,-2912.25"/>
</g>
<!-- W7&#45;&#45;shield1 -->
-<g id="edge39" class="edge">
+<g id="edge45" class="edge">
<title>W7:e&#45;&#45;shield1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2692.5C1136.24,-2692.5 1141.02,-2628.41 1225,-2586.75 1300.89,-2549.1 1316.16,-2513.25 1400.88,-2513.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2686.5C1134.94,-2686.5 1141.69,-2626.79 1225,-2586.75 1301.36,-2550.05 1316.16,-2513.25 1400.88,-2513.25"/>
</g>
-<!-- W7&#45;&#45;_S_1 -->
-<g id="edge36" class="edge">
-<title>W7:e&#45;&#45;_S_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2794.5C1176.83,-2799.89 1115.08,-2965.87 1226.97,-3025.27 1298.42,-3067.89 1329.68,-3050.27 1418.25,-3049.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2796.5C1174.95,-2799.2 1113.21,-2965.18 1225.98,-3027.01 1299.41,-3069.63 1330.66,-3052.01 1418.25,-3051.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2798.5C1173.08,-2798.5 1111.33,-2964.48 1225,-3028.75 1300.39,-3071.38 1331.65,-3053.75 1418.25,-3053.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2800.5C1171.21,-2797.8 1109.46,-2963.78 1224.02,-3030.49 1301.37,-3073.12 1332.63,-3055.49 1418.25,-3055.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2802.5C1169.33,-2797.11 1107.58,-2963.08 1223.03,-3032.23 1302.35,-3074.86 1333.61,-3057.23 1418.25,-3057.75"/>
-</g>
-<!-- W7&#45;&#45;_S_2 -->
-<g id="edge37" class="edge">
-<title>W7:e&#45;&#45;_S_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2764.5C1170.7,-2769.77 1119.14,-2923.24 1226.89,-2977.22 1299.34,-3018.14 1329.76,-3001.25 1418.25,-3000.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2766.5C1168.81,-2769.14 1117.25,-2922.61 1225.94,-2978.99 1300.31,-3019.89 1330.73,-3003 1418.25,-3002.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2768.5C1166.91,-2768.5 1115.35,-2921.97 1225,-2980.75 1301.28,-3021.64 1331.7,-3004.75 1418.25,-3004.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2770.5C1165.01,-2767.86 1113.46,-2921.33 1224.06,-2982.51 1302.25,-3023.39 1332.67,-3006.5 1418.25,-3006.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2772.5C1163.12,-2767.23 1111.56,-2920.7 1223.11,-2984.28 1303.22,-3025.14 1333.64,-3008.25 1418.25,-3008.75"/>
-</g>
-<!-- W7&#45;&#45;_S_3 -->
-<g id="edge38" class="edge">
-<title>W7:e&#45;&#45;_S_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1131.58,-2738.44 1132.66,-2665.04 1223.74,-2631.95 1307.56,-2604.47 1332.02,-2606.77 1418.25,-2606.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1133.58,-2738.47 1134.66,-2665.06 1224.37,-2633.85 1307.38,-2606.46 1331.83,-2608.76 1418.25,-2608.75"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2738.5C1135.58,-2738.5 1136.66,-2665.09 1225,-2635.75 1307.19,-2608.45 1331.65,-2610.75 1418.25,-2610.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2740.5C1137.58,-2738.53 1138.66,-2665.12 1225.63,-2637.65 1307,-2610.44 1331.46,-2612.74 1418.25,-2612.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2742.5C1139.58,-2738.56 1140.66,-2665.15 1226.26,-2639.55 1306.81,-2612.43 1331.27,-2614.73 1418.25,-2614.75"/>
+<!-- W7&#45;&#45;_S_4 -->
+<g id="edge42" class="edge">
+<title>W7:e&#45;&#45;_S_4:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2788.5C1179.26,-2793.94 1113.24,-2965.17 1226.99,-3026.28 1298.08,-3069.27 1329.64,-3050.32 1418.25,-3049.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2790.5C1177.4,-2793.22 1111.37,-2964.45 1225.99,-3028.01 1299.11,-3070.99 1330.67,-3052.04 1418.25,-3051.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2792.5C1175.53,-2792.5 1109.51,-2963.73 1225,-3029.75 1300.14,-3072.7 1331.7,-3053.75 1418.25,-3053.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2794.5C1173.67,-2791.78 1107.64,-2963.01 1224.01,-3031.49 1301.17,-3074.42 1332.73,-3055.46 1418.25,-3055.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2796.5C1171.8,-2791.06 1105.78,-2962.29 1223.01,-3033.22 1302.2,-3076.13 1333.76,-3057.18 1418.25,-3057.75"/>
+</g>
+<!-- W7&#45;&#45;_S_5 -->
+<g id="edge43" class="edge">
+<title>W7:e&#45;&#45;_S_5:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2758.5C1126.72,-2761.83 1135.98,-2707.23 1223.95,-2680.89 1308.18,-2658.03 1331.26,-2655.77 1418.25,-2655.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2760.5C1128.69,-2762.17 1137.96,-2707.57 1224.47,-2682.82 1308.37,-2660.02 1331.45,-2657.76 1418.25,-2657.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2762.5C1130.67,-2762.5 1139.93,-2707.9 1225,-2684.75 1308.57,-2662.01 1331.65,-2659.75 1418.25,-2659.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2764.5C1132.64,-2762.83 1141.9,-2708.24 1225.53,-2686.68 1308.76,-2664 1331.84,-2661.74 1418.25,-2661.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2766.5C1134.61,-2763.17 1143.87,-2708.57 1226.05,-2688.61 1308.96,-2665.99 1332.04,-2663.73 1418.25,-2663.75"/>
+</g>
+<!-- W7&#45;&#45;_S_6 -->
+<g id="edge44" class="edge">
+<title>W7:e&#45;&#45;_S_6:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2728.5C1130.31,-2732.31 1133.52,-2663.4 1223.79,-2631.94 1307.74,-2605.5 1331.85,-2606.76 1418.25,-2606.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2730.5C1132.31,-2732.41 1135.52,-2663.49 1224.39,-2633.84 1307.63,-2607.49 1331.75,-2608.75 1418.25,-2608.75"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2732.5C1134.3,-2732.5 1137.52,-2663.59 1225,-2635.75 1307.53,-2609.49 1331.65,-2610.75 1418.25,-2610.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1136.3,-2732.59 1139.52,-2663.68 1225.61,-2637.66 1307.42,-2611.49 1331.54,-2612.75 1418.25,-2612.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1138.3,-2732.69 1141.51,-2663.77 1226.21,-2639.56 1307.32,-2613.49 1331.44,-2614.74 1418.25,-2614.75"/>
</g>
<!-- W8&#45;&#45;Coolant/Crank Sensor -->
-<g id="edge41" class="edge">
+<g id="edge47" class="edge">
<title>W8:e&#45;&#45;Coolant/Crank Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2079.25C1178.41,-2082.72 1189.16,-2002.47 1294.5,-1999"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2081.25C1180.39,-2082.98 1191.15,-2002.73 1294.5,-2001"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2083.25C1182.37,-2083.25 1193.13,-2003 1294.5,-2003"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2085.25C1184.35,-2083.52 1195.11,-2003.27 1294.5,-2005"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2087.25C1186.34,-2083.78 1197.09,-2003.53 1294.5,-2007"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2077.25C1178.1,-2080.67 1189.48,-2002.42 1294.5,-1999"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2079.25C1180.08,-2080.96 1191.46,-2002.71 1294.5,-2001"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2081.25C1182.06,-2081.25 1193.44,-2003 1294.5,-2003"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2083.25C1184.04,-2081.54 1195.42,-2003.29 1294.5,-2005"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2085.25C1186.02,-2081.83 1197.4,-2003.58 1294.5,-2007"/>
</g>
<!-- W8&#45;&#45;Coolant/Crank Sensor -->
-<g id="edge43" class="edge">
+<g id="edge49" class="edge">
<title>W8:e&#45;&#45;Coolant/Crank Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2049.25C1173.55,-2050.66 1195.85,-2024.41 1294.5,-2023"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2051.25C1175.08,-2051.96 1197.37,-2025.71 1294.5,-2025"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2053.25C1176.6,-2053.25 1198.9,-2027 1294.5,-2027"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2055.25C1178.13,-2054.54 1200.42,-2028.29 1294.5,-2029"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2057.25C1179.65,-2055.84 1201.95,-2029.59 1294.5,-2031"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2047.25C1173.57,-2048.53 1196.07,-2024.28 1294.5,-2023"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2049.25C1175.03,-2049.89 1197.53,-2025.64 1294.5,-2025"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2051.25C1176.5,-2051.25 1199,-2027 1294.5,-2027"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2053.25C1177.97,-2052.61 1200.47,-2028.36 1294.5,-2029"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2055.25C1179.43,-2053.97 1201.93,-2029.72 1294.5,-2031"/>
</g>
<!-- W9&#45;&#45;MAF Sensor -->
-<g id="edge45" class="edge">
+<g id="edge51" class="edge">
<title>W9:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1793.25C1149.4,-1797.39 1144.11,-1644.39 1287,-1640.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1795.25C1151.4,-1797.32 1146.11,-1644.32 1287,-1642.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1797.25C1153.4,-1797.25 1148.1,-1644.25 1287,-1644.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1799.25C1155.39,-1797.18 1150.1,-1644.18 1287,-1646.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1801.25C1157.39,-1797.11 1152.1,-1644.11 1287,-1648.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1766.25C1143.94,-1770.07 1149.57,-1644.07 1287,-1640.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1768.25C1145.93,-1770.16 1151.57,-1644.16 1287,-1642.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1770.25C1147.93,-1770.25 1153.57,-1644.25 1287,-1644.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1772.25C1149.93,-1770.34 1155.57,-1644.34 1287,-1646.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1774.25C1151.93,-1770.43 1157.56,-1644.43 1287,-1648.25"/>
</g>
<!-- W9&#45;&#45;MAF Sensor -->
-<g id="edge47" class="edge">
+<g id="edge53" class="edge">
<title>W9:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1763.25C1148.11,-1767.32 1145.39,-1620.32 1287,-1616.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1765.25C1150.11,-1767.29 1147.39,-1620.29 1287,-1618.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1767.25C1152.11,-1767.25 1149.39,-1620.25 1287,-1620.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1769.25C1154.11,-1767.21 1151.39,-1620.21 1287,-1622.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1771.25C1156.11,-1767.18 1153.39,-1620.18 1287,-1624.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1736.25C1142.84,-1739.99 1150.67,-1619.99 1287,-1616.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1738.25C1144.84,-1740.12 1152.67,-1620.12 1287,-1618.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1740.25C1146.83,-1740.25 1154.67,-1620.25 1287,-1620.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1742.25C1148.83,-1740.38 1156.66,-1620.38 1287,-1622.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1744.25C1150.83,-1740.51 1158.66,-1620.51 1287,-1624.25"/>
</g>
<!-- W9&#45;&#45;MAF Sensor -->
-<g id="edge49" class="edge">
+<g id="edge55" class="edge">
<title>W9:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1733.25C1146.86,-1737.26 1146.64,-1596.26 1287,-1592.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1735.25C1148.86,-1737.25 1148.64,-1596.25 1287,-1594.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1737.25C1150.86,-1737.25 1150.64,-1596.25 1287,-1596.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1739.25C1152.86,-1737.25 1152.64,-1596.25 1287,-1598.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1741.25C1154.86,-1737.24 1154.64,-1596.24 1287,-1600.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1706.25C1141.8,-1709.9 1151.73,-1595.9 1287,-1592.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1708.25C1143.79,-1710.08 1153.73,-1596.08 1287,-1594.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1710.25C1145.78,-1710.25 1155.72,-1596.25 1287,-1596.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1712.25C1147.77,-1710.42 1157.71,-1596.42 1287,-1598.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1714.25C1149.77,-1710.6 1159.7,-1596.6 1287,-1600.25"/>
</g>
<!-- W10&#45;&#45;Tachometer -->
-<g id="edge51" class="edge">
+<g id="edge57" class="edge">
<title>W10:e&#45;&#45;Tachometer:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-770.5C1145.93,-775.77 1039.49,-457.77 1225,-452.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-772.5C1147.82,-775.13 1041.38,-457.13 1225,-454.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-774.5C1149.72,-774.5 1043.28,-456.5 1225,-456.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-776.5C1151.62,-773.87 1045.18,-455.87 1225,-458.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-778.5C1153.51,-773.23 1047.07,-455.23 1225,-460.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-776.5C1148.02,-781.79 1037.41,-457.79 1225,-452.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-778.5C1149.91,-781.15 1039.31,-457.15 1225,-454.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-780.5C1151.8,-780.5 1041.2,-456.5 1225,-456.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-782.5C1153.69,-779.85 1043.09,-455.85 1225,-458.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-784.5C1155.59,-779.21 1044.98,-455.21 1225,-460.5"/>
</g>
<!-- W11&#45;&#45;Throttle Servo CAN -->
-<g id="edge53" class="edge">
+<g id="edge59" class="edge">
<title>W11:e&#45;&#45;Throttle Servo CAN:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2803.5C2236.14,-2804.03 2251.89,-2795.03 2318,-2794.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2805.5C2237.13,-2805.76 2252.88,-2796.76 2318,-2796.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2807.5C2238.12,-2807.5 2253.88,-2798.5 2318,-2798.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2809.5C2239.12,-2809.24 2254.87,-2800.24 2318,-2800.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2811.5C2240.11,-2810.97 2255.86,-2801.97 2318,-2802.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2631.5C2236.14,-2632.03 2251.89,-2623.03 2318,-2622.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2633.5C2237.13,-2633.76 2252.88,-2624.76 2318,-2624.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2635.5C2238.12,-2635.5 2253.88,-2626.5 2318,-2626.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2637.5C2239.12,-2637.24 2254.87,-2628.24 2318,-2628.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2639.5C2240.11,-2638.97 2255.86,-2629.97 2318,-2630.5"/>
</g>
<!-- W11&#45;&#45;Throttle Servo CAN -->
-<g id="edge55" class="edge">
+<g id="edge61" class="edge">
<title>W11:e&#45;&#45;Throttle Servo CAN:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2833.5C2240.11,-2834.03 2255.86,-2843.03 2318,-2842.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2835.5C2239.12,-2835.76 2254.87,-2844.76 2318,-2844.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2837.5C2238.12,-2837.5 2253.88,-2846.5 2318,-2846.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2839.5C2237.13,-2839.24 2252.88,-2848.24 2318,-2848.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2841.5C2236.14,-2840.97 2251.89,-2849.97 2318,-2850.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2661.5C2240.11,-2662.03 2255.86,-2671.03 2318,-2670.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2663.5C2239.12,-2663.76 2254.87,-2672.76 2318,-2672.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2665.5C2238.12,-2665.5 2253.88,-2674.5 2318,-2674.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2667.5C2237.13,-2667.24 2252.88,-2676.24 2318,-2676.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2669.5C2236.14,-2668.97 2251.89,-2677.97 2318,-2678.5"/>
</g>
<!-- W11&#45;&#45;Throttle Servo CAN -->
-<g id="edge57" class="edge">
+<g id="edge63" class="edge">
<title>W11:e&#45;&#45;Throttle Servo CAN:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2773.5C2244.96,-2776.64 2254.85,-2821.64 2318,-2818.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2775.5C2243.01,-2777.07 2252.9,-2822.07 2318,-2820.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2777.5C2241.05,-2777.5 2250.95,-2822.5 2318,-2822.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2779.5C2239.1,-2777.93 2248.99,-2822.93 2318,-2824.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2781.5C2237.15,-2778.36 2247.04,-2823.36 2318,-2826.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2601.5C2244.96,-2604.64 2254.85,-2649.64 2318,-2646.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2603.5C2243.01,-2605.07 2252.9,-2650.07 2318,-2648.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2605.5C2241.05,-2605.5 2250.95,-2650.5 2318,-2650.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2607.5C2239.1,-2605.93 2248.99,-2650.93 2318,-2652.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2609.5C2237.15,-2606.36 2247.04,-2651.36 2318,-2654.5"/>
</g>
<!-- W11&#45;&#45;_GND_1 -->
-<g id="edge59" class="edge">
+<g id="edge65" class="edge">
<title>W11:e&#45;&#45;_GND_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2731.5C2284.16,-2731.5 2225.48,-2589.55 2318,-2529.75 2363.86,-2500.11 2383.89,-2505.75 2438.5,-2505.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2559.5C2284.16,-2559.5 2225.48,-2417.55 2318,-2357.75 2363.86,-2328.11 2383.89,-2333.75 2438.5,-2333.75"/>
</g>
</g>
</svg>
@@ -1578,7 +1719,7 @@
<tr>
<td style="border:1px solid #000000; padding: 4px">12</td>
<td style="border:1px solid #000000; padding: 4px">Connector, splice</td>
- <td style="border:1px solid #000000; padding: 4px; text-align:right">3</td>
+ <td style="border:1px solid #000000; padding: 4px; text-align:right">6</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
@@ -1606,9 +1747,9 @@
<tr>
<td style="border:1px solid #000000; padding: 4px">16</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 18 AWG, BN</td>
- <td style="border:1px solid #000000; padding: 4px; text-align:right">158.5</td>
+ <td style="border:1px solid #000000; padding: 4px; text-align:right">188.5</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
- <td style="border:1px solid #000000; padding: 4px">W1, W5, W8, W9</td>
+ <td style="border:1px solid #000000; padding: 4px">W1, W12, W13, W14, W5, W8, W9</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">17</td>
diff --git a/wireviz/Choppy_ECU_C1.png b/wireviz/Choppy_ECU_C1.png
index 8d11c52..6a2716c 100644
--- a/wireviz/Choppy_ECU_C1.png
+++ b/wireviz/Choppy_ECU_C1.png
Binary files differ
diff --git a/wireviz/Choppy_ECU_C1.svg b/wireviz/Choppy_ECU_C1.svg
index f5ad78e..a44070a 100644
--- a/wireviz/Choppy_ECU_C1.svg
+++ b/wireviz/Choppy_ECU_C1.svg
@@ -4,869 +4,869 @@
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
-<svg width="2609pt" height="4550pt"
- viewBox="0.00 0.00 2608.50 4550.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 4546.25)">
-<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-4546.25 2604.5,-4546.25 2604.5,4 -4,4"/>
+<svg width="2609pt" height="3924pt"
+ viewBox="0.00 0.00 2608.50 3924.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3920.25)">
+<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-3920.25 2604.5,-3920.25 2604.5,4 -4,4"/>
<!-- ECU -->
<g id="node1" class="node">
<title>ECU</title>
-<polygon fill="#ffffff" stroke="black" points="401,-2981.25 0,-2981.25 0,-1456.25 401,-1456.25 401,-2981.25"/>
-<polygon fill="none" stroke="black" points="0,-2956.75 0,-2981.25 401,-2981.25 401,-2956.75 0,-2956.75"/>
-<text text-anchor="start" x="185.5" y="-2963.95" font-family="arial" font-size="14.00">ECU</text>
-<polygon fill="none" stroke="black" points="0,-2932.25 0,-2956.75 238.38,-2956.75 238.38,-2932.25 0,-2932.25"/>
-<text text-anchor="start" x="61.44" y="-2939.45" font-family="arial" font-size="14.00">Molex 643201311</text>
-<polygon fill="none" stroke="black" points="238.38,-2932.25 238.38,-2956.75 401,-2956.75 401,-2932.25 238.38,-2932.25"/>
-<text text-anchor="start" x="299.81" y="-2939.45" font-family="arial" font-size="14.00">48&#45;pin</text>
-<polygon fill="none" stroke="black" points="0,-2908.25 0,-2932.25 281.5,-2932.25 281.5,-2908.25 0,-2908.25"/>
-<text text-anchor="start" x="57.5" y="-2914.95" font-family="arial" font-size="14.00">Extra Output 5 (Fuelpump)</text>
-<polygon fill="none" stroke="black" points="281.5,-2908.25 281.5,-2932.25 401,-2932.25 401,-2908.25 281.5,-2908.25"/>
-<text text-anchor="start" x="332.25" y="-2914.95" font-family="arial" font-size="14.00">A1</text>
-<polygon fill="none" stroke="black" points="0,-2884.25 0,-2908.25 281.5,-2908.25 281.5,-2884.25 0,-2884.25"/>
-<text text-anchor="start" x="99.12" y="-2890.95" font-family="arial" font-size="14.00">Ignition coil 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2884.25 281.5,-2908.25 401,-2908.25 401,-2884.25 281.5,-2884.25"/>
-<text text-anchor="start" x="332.25" y="-2890.95" font-family="arial" font-size="14.00">A2</text>
-<polygon fill="none" stroke="black" points="0,-2860.25 0,-2884.25 281.5,-2884.25 281.5,-2860.25 0,-2860.25"/>
-<text text-anchor="start" x="99.12" y="-2866.95" font-family="arial" font-size="14.00">Ignition coil 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2860.25 281.5,-2884.25 401,-2884.25 401,-2860.25 281.5,-2860.25"/>
-<text text-anchor="start" x="332.25" y="-2866.95" font-family="arial" font-size="14.00">A3</text>
-<polygon fill="none" stroke="black" points="0,-2836.25 0,-2860.25 281.5,-2860.25 281.5,-2836.25 0,-2836.25"/>
-<text text-anchor="start" x="102.5" y="-2842.95" font-family="arial" font-size="14.00">Tachometer</text>
-<polygon fill="none" stroke="black" points="281.5,-2836.25 281.5,-2860.25 401,-2860.25 401,-2836.25 281.5,-2836.25"/>
-<text text-anchor="start" x="332.25" y="-2842.95" font-family="arial" font-size="14.00">A4</text>
-<polygon fill="none" stroke="black" points="0,-2812.25 0,-2836.25 281.5,-2836.25 281.5,-2812.25 0,-2812.25"/>
-<text text-anchor="start" x="77.38" y="-2818.95" font-family="arial" font-size="14.00">Extra Output 6 (Fan)</text>
-<polygon fill="none" stroke="black" points="281.5,-2812.25 281.5,-2836.25 401,-2836.25 401,-2812.25 281.5,-2812.25"/>
-<text text-anchor="start" x="332.25" y="-2818.95" font-family="arial" font-size="14.00">B1</text>
-<polygon fill="none" stroke="black" points="0,-2788.25 0,-2812.25 281.5,-2812.25 281.5,-2788.25 0,-2788.25"/>
-<text text-anchor="start" x="99.12" y="-2794.95" font-family="arial" font-size="14.00">Ignition coil 3</text>
-<polygon fill="none" stroke="black" points="281.5,-2788.25 281.5,-2812.25 401,-2812.25 401,-2788.25 281.5,-2788.25"/>
-<text text-anchor="start" x="332.25" y="-2794.95" font-family="arial" font-size="14.00">B2</text>
-<polygon fill="none" stroke="black" points="0,-2764.25 0,-2788.25 281.5,-2788.25 281.5,-2764.25 0,-2764.25"/>
-<text text-anchor="start" x="99.12" y="-2770.95" font-family="arial" font-size="14.00">Ignition coil 4</text>
-<polygon fill="none" stroke="black" points="281.5,-2764.25 281.5,-2788.25 401,-2788.25 401,-2764.25 281.5,-2764.25"/>
-<text text-anchor="start" x="332.25" y="-2770.95" font-family="arial" font-size="14.00">B3</text>
-<polygon fill="none" stroke="black" points="0,-2740.25 0,-2764.25 281.5,-2764.25 281.5,-2740.25 0,-2740.25"/>
-<text text-anchor="start" x="95.75" y="-2746.95" font-family="arial" font-size="14.00">Extra Output 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2740.25 281.5,-2764.25 401,-2764.25 401,-2740.25 281.5,-2740.25"/>
-<text text-anchor="start" x="332.25" y="-2746.95" font-family="arial" font-size="14.00">B4</text>
-<polygon fill="none" stroke="black" points="0,-2716.25 0,-2740.25 281.5,-2740.25 281.5,-2716.25 0,-2716.25"/>
-<text text-anchor="start" x="95.75" y="-2722.95" font-family="arial" font-size="14.00">Extra Output 7</text>
-<polygon fill="none" stroke="black" points="281.5,-2716.25 281.5,-2740.25 401,-2740.25 401,-2716.25 281.5,-2716.25"/>
-<text text-anchor="start" x="331.88" y="-2722.95" font-family="arial" font-size="14.00">C1</text>
-<polygon fill="none" stroke="black" points="0,-2692.25 0,-2716.25 281.5,-2716.25 281.5,-2692.25 0,-2692.25"/>
-<text text-anchor="start" x="99.12" y="-2698.95" font-family="arial" font-size="14.00">Ignition coil 5</text>
-<polygon fill="none" stroke="black" points="281.5,-2692.25 281.5,-2716.25 401,-2716.25 401,-2692.25 281.5,-2692.25"/>
-<text text-anchor="start" x="331.88" y="-2698.95" font-family="arial" font-size="14.00">C2</text>
-<polygon fill="none" stroke="black" points="0,-2668.25 0,-2692.25 281.5,-2692.25 281.5,-2668.25 0,-2668.25"/>
-<text text-anchor="start" x="99.12" y="-2674.95" font-family="arial" font-size="14.00">Ignition coil 6</text>
-<polygon fill="none" stroke="black" points="281.5,-2668.25 281.5,-2692.25 401,-2692.25 401,-2668.25 281.5,-2668.25"/>
-<text text-anchor="start" x="331.88" y="-2674.95" font-family="arial" font-size="14.00">C3</text>
-<polygon fill="none" stroke="black" points="0,-2644.25 0,-2668.25 281.5,-2668.25 281.5,-2644.25 0,-2644.25"/>
-<text text-anchor="start" x="97.25" y="-2650.95" font-family="arial" font-size="14.00">Extra output 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2644.25 281.5,-2668.25 401,-2668.25 401,-2644.25 281.5,-2644.25"/>
-<text text-anchor="start" x="331.88" y="-2650.95" font-family="arial" font-size="14.00">C4</text>
-<polygon fill="none" stroke="black" points="0,-2620.25 0,-2644.25 281.5,-2644.25 281.5,-2620.25 0,-2620.25"/>
-<text text-anchor="start" x="92.38" y="-2626.95" font-family="arial" font-size="14.00">Lambda 1 Heat</text>
-<polygon fill="none" stroke="black" points="281.5,-2620.25 281.5,-2644.25 401,-2644.25 401,-2620.25 281.5,-2620.25"/>
-<text text-anchor="start" x="331.88" y="-2626.95" font-family="arial" font-size="14.00">D1</text>
-<polygon fill="none" stroke="black" points="0,-2596.25 0,-2620.25 281.5,-2620.25 281.5,-2596.25 0,-2596.25"/>
-<text text-anchor="start" x="99.12" y="-2602.95" font-family="arial" font-size="14.00">Ignition coil 7</text>
-<polygon fill="none" stroke="black" points="281.5,-2596.25 281.5,-2620.25 401,-2620.25 401,-2596.25 281.5,-2596.25"/>
-<text text-anchor="start" x="331.88" y="-2602.95" font-family="arial" font-size="14.00">D2</text>
-<polygon fill="none" stroke="black" points="0,-2572.25 0,-2596.25 281.5,-2596.25 281.5,-2572.25 0,-2572.25"/>
-<text text-anchor="start" x="99.12" y="-2578.95" font-family="arial" font-size="14.00">Ignition coil 8</text>
-<polygon fill="none" stroke="black" points="281.5,-2572.25 281.5,-2596.25 401,-2596.25 401,-2572.25 281.5,-2572.25"/>
-<text text-anchor="start" x="331.88" y="-2578.95" font-family="arial" font-size="14.00">D3</text>
-<polygon fill="none" stroke="black" points="0,-2548.25 0,-2572.25 281.5,-2572.25 281.5,-2548.25 0,-2548.25"/>
-<text text-anchor="start" x="97.25" y="-2554.95" font-family="arial" font-size="14.00">Extra output 3</text>
-<polygon fill="none" stroke="black" points="281.5,-2548.25 281.5,-2572.25 401,-2572.25 401,-2548.25 281.5,-2548.25"/>
-<text text-anchor="start" x="331.88" y="-2554.95" font-family="arial" font-size="14.00">D4</text>
-<polygon fill="none" stroke="black" points="0,-2524.25 0,-2548.25 281.5,-2548.25 281.5,-2524.25 0,-2524.25"/>
-<text text-anchor="start" x="119" y="-2530.95" font-family="arial" font-size="14.00">CAN H</text>
-<polygon fill="none" stroke="black" points="281.5,-2524.25 281.5,-2548.25 401,-2548.25 401,-2524.25 281.5,-2524.25"/>
-<text text-anchor="start" x="332.25" y="-2530.95" font-family="arial" font-size="14.00">E1</text>
-<polygon fill="none" stroke="black" points="0,-2500.25 0,-2524.25 281.5,-2524.25 281.5,-2500.25 0,-2500.25"/>
-<text text-anchor="start" x="119.75" y="-2506.95" font-family="arial" font-size="14.00">CAN L</text>
-<polygon fill="none" stroke="black" points="281.5,-2500.25 281.5,-2524.25 401,-2524.25 401,-2500.25 281.5,-2500.25"/>
-<text text-anchor="start" x="332.25" y="-2506.95" font-family="arial" font-size="14.00">E2</text>
-<polygon fill="none" stroke="black" points="0,-2476.25 0,-2500.25 281.5,-2500.25 281.5,-2476.25 0,-2476.25"/>
-<text text-anchor="start" x="95.38" y="-2482.95" font-family="arial" font-size="14.00">Sheild Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-2476.25 281.5,-2500.25 401,-2500.25 401,-2476.25 281.5,-2476.25"/>
-<text text-anchor="start" x="332.25" y="-2482.95" font-family="arial" font-size="14.00">E3</text>
-<polygon fill="none" stroke="black" points="0,-2452.25 0,-2476.25 281.5,-2476.25 281.5,-2452.25 0,-2452.25"/>
-<text text-anchor="start" x="95.75" y="-2458.95" font-family="arial" font-size="14.00">Extra Output 4</text>
-<polygon fill="none" stroke="black" points="281.5,-2452.25 281.5,-2476.25 401,-2476.25 401,-2452.25 281.5,-2452.25"/>
-<text text-anchor="start" x="332.25" y="-2458.95" font-family="arial" font-size="14.00">E4</text>
-<polygon fill="none" stroke="black" points="0,-2428.25 0,-2452.25 281.5,-2452.25 281.5,-2428.25 0,-2428.25"/>
-<text text-anchor="start" x="50" y="-2434.95" font-family="arial" font-size="14.00">Coolant Temperature sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2428.25 281.5,-2452.25 401,-2452.25 401,-2428.25 281.5,-2428.25"/>
-<text text-anchor="start" x="332.62" y="-2434.95" font-family="arial" font-size="14.00">F1</text>
-<polygon fill="none" stroke="black" points="0,-2404.25 0,-2428.25 281.5,-2428.25 281.5,-2404.25 0,-2404.25"/>
-<text text-anchor="start" x="65.75" y="-2410.95" font-family="arial" font-size="14.00">Air Temperature sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2404.25 281.5,-2428.25 401,-2428.25 401,-2404.25 281.5,-2404.25"/>
-<text text-anchor="start" x="332.62" y="-2410.95" font-family="arial" font-size="14.00">F2</text>
-<polygon fill="none" stroke="black" points="0,-2380.25 0,-2404.25 281.5,-2404.25 281.5,-2380.25 0,-2380.25"/>
-<text text-anchor="start" x="90.5" y="-2386.95" font-family="arial" font-size="14.00">Lambda 1 COM</text>
-<polygon fill="none" stroke="black" points="281.5,-2380.25 281.5,-2404.25 401,-2404.25 401,-2380.25 281.5,-2380.25"/>
-<text text-anchor="start" x="332.62" y="-2386.95" font-family="arial" font-size="14.00">F3</text>
-<polygon fill="none" stroke="black" points="0,-2356.25 0,-2380.25 281.5,-2380.25 281.5,-2356.25 0,-2356.25"/>
-<text text-anchor="start" x="90.12" y="-2362.95" font-family="arial" font-size="14.00">Lambda 1 VS in</text>
-<polygon fill="none" stroke="black" points="281.5,-2356.25 281.5,-2380.25 401,-2380.25 401,-2356.25 281.5,-2356.25"/>
-<text text-anchor="start" x="332.62" y="-2362.95" font-family="arial" font-size="14.00">F4</text>
-<polygon fill="none" stroke="black" points="0,-2332.25 0,-2356.25 281.5,-2356.25 281.5,-2332.25 0,-2332.25"/>
-<text text-anchor="start" x="83.38" y="-2338.95" font-family="arial" font-size="14.00">5V Sensor Supply</text>
-<polygon fill="none" stroke="black" points="281.5,-2332.25 281.5,-2356.25 401,-2356.25 401,-2332.25 281.5,-2332.25"/>
-<text text-anchor="start" x="331.5" y="-2338.95" font-family="arial" font-size="14.00">G1</text>
-<polygon fill="none" stroke="black" points="0,-2308.25 0,-2332.25 281.5,-2332.25 281.5,-2308.25 0,-2308.25"/>
-<text text-anchor="start" x="93.12" y="-2314.95" font-family="arial" font-size="14.00">Throttle sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2308.25 281.5,-2332.25 401,-2332.25 401,-2308.25 281.5,-2308.25"/>
-<text text-anchor="start" x="331.5" y="-2314.95" font-family="arial" font-size="14.00">G2</text>
-<polygon fill="none" stroke="black" points="0,-2284.25 0,-2308.25 281.5,-2308.25 281.5,-2284.25 0,-2284.25"/>
-<text text-anchor="start" x="99.88" y="-2290.95" font-family="arial" font-size="14.00">Lambda 1 IP</text>
-<polygon fill="none" stroke="black" points="281.5,-2284.25 281.5,-2308.25 401,-2308.25 401,-2284.25 281.5,-2284.25"/>
-<text text-anchor="start" x="331.5" y="-2290.95" font-family="arial" font-size="14.00">G3</text>
-<polygon fill="none" stroke="black" points="0,-2260.25 0,-2284.25 281.5,-2284.25 281.5,-2260.25 0,-2260.25"/>
-<text text-anchor="start" x="87.5" y="-2266.95" font-family="arial" font-size="14.00">Lambda 1 RCAL</text>
-<polygon fill="none" stroke="black" points="281.5,-2260.25 281.5,-2284.25 401,-2284.25 401,-2260.25 281.5,-2260.25"/>
-<text text-anchor="start" x="331.5" y="-2266.95" font-family="arial" font-size="14.00">G4</text>
-<polygon fill="none" stroke="black" points="0,-2236.25 0,-2260.25 281.5,-2260.25 281.5,-2236.25 0,-2236.25"/>
-<text text-anchor="start" x="92.38" y="-2242.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-2236.25 281.5,-2260.25 401,-2260.25 401,-2236.25 281.5,-2236.25"/>
-<text text-anchor="start" x="332.25" y="-2242.95" font-family="arial" font-size="14.00">H1</text>
-<polygon fill="none" stroke="black" points="0,-2212.25 0,-2236.25 281.5,-2236.25 281.5,-2212.25 0,-2212.25"/>
-<text text-anchor="start" x="72.5" y="-2218.95" font-family="arial" font-size="14.00">Home sensor Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-2212.25 281.5,-2236.25 401,-2236.25 401,-2212.25 281.5,-2212.25"/>
-<text text-anchor="start" x="332.25" y="-2218.95" font-family="arial" font-size="14.00">H2</text>
-<polygon fill="none" stroke="black" points="0,-2188.25 0,-2212.25 281.5,-2212.25 281.5,-2188.25 0,-2188.25"/>
-<text text-anchor="start" x="97.62" y="-2194.95" font-family="arial" font-size="14.00">Crank Sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2188.25 281.5,-2212.25 401,-2212.25 401,-2188.25 281.5,-2188.25"/>
-<text text-anchor="start" x="332.25" y="-2194.95" font-family="arial" font-size="14.00">H3</text>
-<polygon fill="none" stroke="black" points="0,-2164.25 0,-2188.25 281.5,-2188.25 281.5,-2164.25 0,-2164.25"/>
-<text text-anchor="start" x="98" y="-2170.95" font-family="arial" font-size="14.00">Home sensor</text>
-<polygon fill="none" stroke="black" points="281.5,-2164.25 281.5,-2188.25 401,-2188.25 401,-2164.25 281.5,-2164.25"/>
-<text text-anchor="start" x="332.25" y="-2170.95" font-family="arial" font-size="14.00">H4</text>
-<polygon fill="none" stroke="black" points="0,-2140.25 0,-2164.25 281.5,-2164.25 281.5,-2140.25 0,-2140.25"/>
-<text text-anchor="start" x="52.25" y="-2146.95" font-family="arial" font-size="14.00">Extra Temperature sensor 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2140.25 281.5,-2164.25 401,-2164.25 401,-2140.25 281.5,-2140.25"/>
-<text text-anchor="start" x="333.38" y="-2146.95" font-family="arial" font-size="14.00">J1</text>
-<polygon fill="none" stroke="black" points="0,-2116.25 0,-2140.25 281.5,-2140.25 281.5,-2116.25 0,-2116.25"/>
-<text text-anchor="start" x="52.25" y="-2122.95" font-family="arial" font-size="14.00">Extra Temperature sensor 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2116.25 281.5,-2140.25 401,-2140.25 401,-2116.25 281.5,-2116.25"/>
-<text text-anchor="start" x="333.38" y="-2122.95" font-family="arial" font-size="14.00">J2</text>
-<polygon fill="none" stroke="black" points="0,-2092.25 0,-2116.25 281.5,-2116.25 281.5,-2092.25 0,-2092.25"/>
-<text text-anchor="start" x="96.12" y="-2098.95" font-family="arial" font-size="14.00">Fuel Pressure</text>
-<polygon fill="none" stroke="black" points="281.5,-2092.25 281.5,-2116.25 401,-2116.25 401,-2092.25 281.5,-2092.25"/>
-<text text-anchor="start" x="333.38" y="-2098.95" font-family="arial" font-size="14.00">J3</text>
-<polygon fill="none" stroke="black" points="0,-2068.25 0,-2092.25 281.5,-2092.25 281.5,-2068.25 0,-2068.25"/>
-<text text-anchor="start" x="125.75" y="-2074.95" font-family="arial" font-size="14.00">Baro</text>
-<polygon fill="none" stroke="black" points="281.5,-2068.25 281.5,-2092.25 401,-2092.25 401,-2068.25 281.5,-2068.25"/>
-<text text-anchor="start" x="333.38" y="-2074.95" font-family="arial" font-size="14.00">J4</text>
-<polygon fill="none" stroke="black" points="0,-2044.25 0,-2068.25 281.5,-2068.25 281.5,-2044.25 0,-2044.25"/>
-<text text-anchor="start" x="111.12" y="-2050.95" font-family="arial" font-size="14.00">Injector 1</text>
-<polygon fill="none" stroke="black" points="281.5,-2044.25 281.5,-2068.25 401,-2068.25 401,-2044.25 281.5,-2044.25"/>
-<text text-anchor="start" x="332.25" y="-2050.95" font-family="arial" font-size="14.00">K1</text>
-<polygon fill="none" stroke="black" points="0,-2020.25 0,-2044.25 281.5,-2044.25 281.5,-2020.25 0,-2020.25"/>
-<text text-anchor="start" x="111.12" y="-2026.95" font-family="arial" font-size="14.00">Injector 2</text>
-<polygon fill="none" stroke="black" points="281.5,-2020.25 281.5,-2044.25 401,-2044.25 401,-2020.25 281.5,-2020.25"/>
-<text text-anchor="start" x="332.25" y="-2026.95" font-family="arial" font-size="14.00">K2</text>
-<polygon fill="none" stroke="black" points="0,-1996.25 0,-2020.25 281.5,-2020.25 281.5,-1996.25 0,-1996.25"/>
-<text text-anchor="start" x="86.38" y="-2002.95" font-family="arial" font-size="14.00">Digital/VR input 1</text>
-<polygon fill="none" stroke="black" points="281.5,-1996.25 281.5,-2020.25 401,-2020.25 401,-1996.25 281.5,-1996.25"/>
-<text text-anchor="start" x="332.25" y="-2002.95" font-family="arial" font-size="14.00">K3</text>
-<polygon fill="none" stroke="black" points="0,-1972.25 0,-1996.25 281.5,-1996.25 281.5,-1972.25 0,-1972.25"/>
-<text text-anchor="start" x="105.5" y="-1978.95" font-family="arial" font-size="14.00">Rotor RPM</text>
-<polygon fill="none" stroke="black" points="281.5,-1972.25 281.5,-1996.25 401,-1996.25 401,-1972.25 281.5,-1972.25"/>
-<text text-anchor="start" x="332.25" y="-1978.95" font-family="arial" font-size="14.00">K4</text>
-<polygon fill="none" stroke="black" points="0,-1948.25 0,-1972.25 281.5,-1972.25 281.5,-1948.25 0,-1948.25"/>
-<text text-anchor="start" x="111.12" y="-1954.95" font-family="arial" font-size="14.00">Injector 8</text>
-<polygon fill="none" stroke="black" points="281.5,-1948.25 281.5,-1972.25 401,-1972.25 401,-1948.25 281.5,-1948.25"/>
-<text text-anchor="start" x="333" y="-1954.95" font-family="arial" font-size="14.00">L1</text>
-<polygon fill="none" stroke="black" points="0,-1924.25 0,-1948.25 281.5,-1948.25 281.5,-1924.25 0,-1924.25"/>
-<text text-anchor="start" x="111.12" y="-1930.95" font-family="arial" font-size="14.00">Injector 7</text>
-<polygon fill="none" stroke="black" points="281.5,-1924.25 281.5,-1948.25 401,-1948.25 401,-1924.25 281.5,-1924.25"/>
-<text text-anchor="start" x="333" y="-1930.95" font-family="arial" font-size="14.00">L2</text>
-<polygon fill="none" stroke="black" points="0,-1900.25 0,-1924.25 281.5,-1924.25 281.5,-1900.25 0,-1900.25"/>
-<text text-anchor="start" x="111.12" y="-1906.95" font-family="arial" font-size="14.00">Injector 6</text>
-<polygon fill="none" stroke="black" points="281.5,-1900.25 281.5,-1924.25 401,-1924.25 401,-1900.25 281.5,-1900.25"/>
-<text text-anchor="start" x="333" y="-1906.95" font-family="arial" font-size="14.00">L3</text>
-<polygon fill="none" stroke="black" points="0,-1876.25 0,-1900.25 281.5,-1900.25 281.5,-1876.25 0,-1876.25"/>
-<text text-anchor="start" x="93.12" y="-1882.95" font-family="arial" font-size="14.00">Engine Ground</text>
-<polygon fill="none" stroke="black" points="281.5,-1876.25 281.5,-1900.25 401,-1900.25 401,-1876.25 281.5,-1876.25"/>
-<text text-anchor="start" x="333" y="-1882.95" font-family="arial" font-size="14.00">L4</text>
-<polygon fill="none" stroke="black" points="0,-1852.25 0,-1876.25 281.5,-1876.25 281.5,-1852.25 0,-1852.25"/>
-<text text-anchor="start" x="111.12" y="-1858.95" font-family="arial" font-size="14.00">Injector 3</text>
-<polygon fill="none" stroke="black" points="281.5,-1852.25 281.5,-1876.25 401,-1876.25 401,-1852.25 281.5,-1852.25"/>
-<text text-anchor="start" x="331.5" y="-1858.95" font-family="arial" font-size="14.00">M1</text>
-<polygon fill="none" stroke="black" points="0,-1828.25 0,-1852.25 281.5,-1852.25 281.5,-1828.25 0,-1828.25"/>
-<text text-anchor="start" x="111.12" y="-1834.95" font-family="arial" font-size="14.00">Injector 4</text>
-<polygon fill="none" stroke="black" points="281.5,-1828.25 281.5,-1852.25 401,-1852.25 401,-1828.25 281.5,-1828.25"/>
-<text text-anchor="start" x="331.5" y="-1834.95" font-family="arial" font-size="14.00">M2</text>
-<polygon fill="none" stroke="black" points="0,-1804.25 0,-1828.25 281.5,-1828.25 281.5,-1804.25 0,-1804.25"/>
-<text text-anchor="start" x="111.12" y="-1810.95" font-family="arial" font-size="14.00">Injector 5</text>
-<polygon fill="none" stroke="black" points="281.5,-1804.25 281.5,-1828.25 401,-1828.25 401,-1804.25 281.5,-1804.25"/>
-<text text-anchor="start" x="331.5" y="-1810.95" font-family="arial" font-size="14.00">M3</text>
-<polygon fill="none" stroke="black" points="0,-1780.25 0,-1804.25 281.5,-1804.25 281.5,-1780.25 0,-1780.25"/>
-<text text-anchor="start" x="110.75" y="-1786.95" font-family="arial" font-size="14.00">ECU 12V</text>
-<polygon fill="none" stroke="black" points="281.5,-1780.25 281.5,-1804.25 401,-1804.25 401,-1780.25 281.5,-1780.25"/>
-<text text-anchor="start" x="331.5" y="-1786.95" font-family="arial" font-size="14.00">M4</text>
-<polyline fill="none" stroke="black" points="401,-1505.25 401,-1780.25 0,-1780.25 0,-1505.25"/>
-<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="4" y="-1776.25"/>
-<polyline fill="none" stroke="black" points="0,-1505.25 0,-1480.75 401,-1480.75 401,-1505.25"/>
-<text text-anchor="start" x="128.5" y="-1487.95" font-family="arial" font-size="14.00">Connector 643203311</text>
-<polygon fill="none" stroke="black" points="0,-1456.25 0,-1480.75 401,-1480.75 401,-1456.25 0,-1456.25"/>
-<text text-anchor="start" x="89.5" y="-1463.45" font-family="arial" font-size="14.00">ECU Connector 1 (GPO Low side!)</text>
+<polygon fill="#ffffff" stroke="black" points="401,-2975.25 0,-2975.25 0,-1450.25 401,-1450.25 401,-2975.25"/>
+<polygon fill="none" stroke="black" points="0,-2950.75 0,-2975.25 401,-2975.25 401,-2950.75 0,-2950.75"/>
+<text text-anchor="start" x="185.5" y="-2957.95" font-family="arial" font-size="14.00">ECU</text>
+<polygon fill="none" stroke="black" points="0,-2926.25 0,-2950.75 238.38,-2950.75 238.38,-2926.25 0,-2926.25"/>
+<text text-anchor="start" x="61.44" y="-2933.45" font-family="arial" font-size="14.00">Molex 643201311</text>
+<polygon fill="none" stroke="black" points="238.38,-2926.25 238.38,-2950.75 401,-2950.75 401,-2926.25 238.38,-2926.25"/>
+<text text-anchor="start" x="299.81" y="-2933.45" font-family="arial" font-size="14.00">48&#45;pin</text>
+<polygon fill="none" stroke="black" points="0,-2902.25 0,-2926.25 281.5,-2926.25 281.5,-2902.25 0,-2902.25"/>
+<text text-anchor="start" x="57.5" y="-2908.95" font-family="arial" font-size="14.00">Extra Output 5 (Fuelpump)</text>
+<polygon fill="none" stroke="black" points="281.5,-2902.25 281.5,-2926.25 401,-2926.25 401,-2902.25 281.5,-2902.25"/>
+<text text-anchor="start" x="332.25" y="-2908.95" font-family="arial" font-size="14.00">A1</text>
+<polygon fill="none" stroke="black" points="0,-2878.25 0,-2902.25 281.5,-2902.25 281.5,-2878.25 0,-2878.25"/>
+<text text-anchor="start" x="99.12" y="-2884.95" font-family="arial" font-size="14.00">Ignition coil 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2878.25 281.5,-2902.25 401,-2902.25 401,-2878.25 281.5,-2878.25"/>
+<text text-anchor="start" x="332.25" y="-2884.95" font-family="arial" font-size="14.00">A2</text>
+<polygon fill="none" stroke="black" points="0,-2854.25 0,-2878.25 281.5,-2878.25 281.5,-2854.25 0,-2854.25"/>
+<text text-anchor="start" x="99.12" y="-2860.95" font-family="arial" font-size="14.00">Ignition coil 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2854.25 281.5,-2878.25 401,-2878.25 401,-2854.25 281.5,-2854.25"/>
+<text text-anchor="start" x="332.25" y="-2860.95" font-family="arial" font-size="14.00">A3</text>
+<polygon fill="none" stroke="black" points="0,-2830.25 0,-2854.25 281.5,-2854.25 281.5,-2830.25 0,-2830.25"/>
+<text text-anchor="start" x="102.5" y="-2836.95" font-family="arial" font-size="14.00">Tachometer</text>
+<polygon fill="none" stroke="black" points="281.5,-2830.25 281.5,-2854.25 401,-2854.25 401,-2830.25 281.5,-2830.25"/>
+<text text-anchor="start" x="332.25" y="-2836.95" font-family="arial" font-size="14.00">A4</text>
+<polygon fill="none" stroke="black" points="0,-2806.25 0,-2830.25 281.5,-2830.25 281.5,-2806.25 0,-2806.25"/>
+<text text-anchor="start" x="77.38" y="-2812.95" font-family="arial" font-size="14.00">Extra Output 6 (Fan)</text>
+<polygon fill="none" stroke="black" points="281.5,-2806.25 281.5,-2830.25 401,-2830.25 401,-2806.25 281.5,-2806.25"/>
+<text text-anchor="start" x="332.25" y="-2812.95" font-family="arial" font-size="14.00">B1</text>
+<polygon fill="none" stroke="black" points="0,-2782.25 0,-2806.25 281.5,-2806.25 281.5,-2782.25 0,-2782.25"/>
+<text text-anchor="start" x="99.12" y="-2788.95" font-family="arial" font-size="14.00">Ignition coil 3</text>
+<polygon fill="none" stroke="black" points="281.5,-2782.25 281.5,-2806.25 401,-2806.25 401,-2782.25 281.5,-2782.25"/>
+<text text-anchor="start" x="332.25" y="-2788.95" font-family="arial" font-size="14.00">B2</text>
+<polygon fill="none" stroke="black" points="0,-2758.25 0,-2782.25 281.5,-2782.25 281.5,-2758.25 0,-2758.25"/>
+<text text-anchor="start" x="99.12" y="-2764.95" font-family="arial" font-size="14.00">Ignition coil 4</text>
+<polygon fill="none" stroke="black" points="281.5,-2758.25 281.5,-2782.25 401,-2782.25 401,-2758.25 281.5,-2758.25"/>
+<text text-anchor="start" x="332.25" y="-2764.95" font-family="arial" font-size="14.00">B3</text>
+<polygon fill="none" stroke="black" points="0,-2734.25 0,-2758.25 281.5,-2758.25 281.5,-2734.25 0,-2734.25"/>
+<text text-anchor="start" x="95.75" y="-2740.95" font-family="arial" font-size="14.00">Extra Output 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2734.25 281.5,-2758.25 401,-2758.25 401,-2734.25 281.5,-2734.25"/>
+<text text-anchor="start" x="332.25" y="-2740.95" font-family="arial" font-size="14.00">B4</text>
+<polygon fill="none" stroke="black" points="0,-2710.25 0,-2734.25 281.5,-2734.25 281.5,-2710.25 0,-2710.25"/>
+<text text-anchor="start" x="95.75" y="-2716.95" font-family="arial" font-size="14.00">Extra Output 7</text>
+<polygon fill="none" stroke="black" points="281.5,-2710.25 281.5,-2734.25 401,-2734.25 401,-2710.25 281.5,-2710.25"/>
+<text text-anchor="start" x="331.88" y="-2716.95" font-family="arial" font-size="14.00">C1</text>
+<polygon fill="none" stroke="black" points="0,-2686.25 0,-2710.25 281.5,-2710.25 281.5,-2686.25 0,-2686.25"/>
+<text text-anchor="start" x="99.12" y="-2692.95" font-family="arial" font-size="14.00">Ignition coil 5</text>
+<polygon fill="none" stroke="black" points="281.5,-2686.25 281.5,-2710.25 401,-2710.25 401,-2686.25 281.5,-2686.25"/>
+<text text-anchor="start" x="331.88" y="-2692.95" font-family="arial" font-size="14.00">C2</text>
+<polygon fill="none" stroke="black" points="0,-2662.25 0,-2686.25 281.5,-2686.25 281.5,-2662.25 0,-2662.25"/>
+<text text-anchor="start" x="99.12" y="-2668.95" font-family="arial" font-size="14.00">Ignition coil 6</text>
+<polygon fill="none" stroke="black" points="281.5,-2662.25 281.5,-2686.25 401,-2686.25 401,-2662.25 281.5,-2662.25"/>
+<text text-anchor="start" x="331.88" y="-2668.95" font-family="arial" font-size="14.00">C3</text>
+<polygon fill="none" stroke="black" points="0,-2638.25 0,-2662.25 281.5,-2662.25 281.5,-2638.25 0,-2638.25"/>
+<text text-anchor="start" x="97.25" y="-2644.95" font-family="arial" font-size="14.00">Extra output 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2638.25 281.5,-2662.25 401,-2662.25 401,-2638.25 281.5,-2638.25"/>
+<text text-anchor="start" x="331.88" y="-2644.95" font-family="arial" font-size="14.00">C4</text>
+<polygon fill="none" stroke="black" points="0,-2614.25 0,-2638.25 281.5,-2638.25 281.5,-2614.25 0,-2614.25"/>
+<text text-anchor="start" x="92.38" y="-2620.95" font-family="arial" font-size="14.00">Lambda 1 Heat</text>
+<polygon fill="none" stroke="black" points="281.5,-2614.25 281.5,-2638.25 401,-2638.25 401,-2614.25 281.5,-2614.25"/>
+<text text-anchor="start" x="331.88" y="-2620.95" font-family="arial" font-size="14.00">D1</text>
+<polygon fill="none" stroke="black" points="0,-2590.25 0,-2614.25 281.5,-2614.25 281.5,-2590.25 0,-2590.25"/>
+<text text-anchor="start" x="99.12" y="-2596.95" font-family="arial" font-size="14.00">Ignition coil 7</text>
+<polygon fill="none" stroke="black" points="281.5,-2590.25 281.5,-2614.25 401,-2614.25 401,-2590.25 281.5,-2590.25"/>
+<text text-anchor="start" x="331.88" y="-2596.95" font-family="arial" font-size="14.00">D2</text>
+<polygon fill="none" stroke="black" points="0,-2566.25 0,-2590.25 281.5,-2590.25 281.5,-2566.25 0,-2566.25"/>
+<text text-anchor="start" x="99.12" y="-2572.95" font-family="arial" font-size="14.00">Ignition coil 8</text>
+<polygon fill="none" stroke="black" points="281.5,-2566.25 281.5,-2590.25 401,-2590.25 401,-2566.25 281.5,-2566.25"/>
+<text text-anchor="start" x="331.88" y="-2572.95" font-family="arial" font-size="14.00">D3</text>
+<polygon fill="none" stroke="black" points="0,-2542.25 0,-2566.25 281.5,-2566.25 281.5,-2542.25 0,-2542.25"/>
+<text text-anchor="start" x="97.25" y="-2548.95" font-family="arial" font-size="14.00">Extra output 3</text>
+<polygon fill="none" stroke="black" points="281.5,-2542.25 281.5,-2566.25 401,-2566.25 401,-2542.25 281.5,-2542.25"/>
+<text text-anchor="start" x="331.88" y="-2548.95" font-family="arial" font-size="14.00">D4</text>
+<polygon fill="none" stroke="black" points="0,-2518.25 0,-2542.25 281.5,-2542.25 281.5,-2518.25 0,-2518.25"/>
+<text text-anchor="start" x="119" y="-2524.95" font-family="arial" font-size="14.00">CAN H</text>
+<polygon fill="none" stroke="black" points="281.5,-2518.25 281.5,-2542.25 401,-2542.25 401,-2518.25 281.5,-2518.25"/>
+<text text-anchor="start" x="332.25" y="-2524.95" font-family="arial" font-size="14.00">E1</text>
+<polygon fill="none" stroke="black" points="0,-2494.25 0,-2518.25 281.5,-2518.25 281.5,-2494.25 0,-2494.25"/>
+<text text-anchor="start" x="119.75" y="-2500.95" font-family="arial" font-size="14.00">CAN L</text>
+<polygon fill="none" stroke="black" points="281.5,-2494.25 281.5,-2518.25 401,-2518.25 401,-2494.25 281.5,-2494.25"/>
+<text text-anchor="start" x="332.25" y="-2500.95" font-family="arial" font-size="14.00">E2</text>
+<polygon fill="none" stroke="black" points="0,-2470.25 0,-2494.25 281.5,-2494.25 281.5,-2470.25 0,-2470.25"/>
+<text text-anchor="start" x="95.38" y="-2476.95" font-family="arial" font-size="14.00">Sheild Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-2470.25 281.5,-2494.25 401,-2494.25 401,-2470.25 281.5,-2470.25"/>
+<text text-anchor="start" x="332.25" y="-2476.95" font-family="arial" font-size="14.00">E3</text>
+<polygon fill="none" stroke="black" points="0,-2446.25 0,-2470.25 281.5,-2470.25 281.5,-2446.25 0,-2446.25"/>
+<text text-anchor="start" x="95.75" y="-2452.95" font-family="arial" font-size="14.00">Extra Output 4</text>
+<polygon fill="none" stroke="black" points="281.5,-2446.25 281.5,-2470.25 401,-2470.25 401,-2446.25 281.5,-2446.25"/>
+<text text-anchor="start" x="332.25" y="-2452.95" font-family="arial" font-size="14.00">E4</text>
+<polygon fill="none" stroke="black" points="0,-2422.25 0,-2446.25 281.5,-2446.25 281.5,-2422.25 0,-2422.25"/>
+<text text-anchor="start" x="50" y="-2428.95" font-family="arial" font-size="14.00">Coolant Temperature sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2422.25 281.5,-2446.25 401,-2446.25 401,-2422.25 281.5,-2422.25"/>
+<text text-anchor="start" x="332.62" y="-2428.95" font-family="arial" font-size="14.00">F1</text>
+<polygon fill="none" stroke="black" points="0,-2398.25 0,-2422.25 281.5,-2422.25 281.5,-2398.25 0,-2398.25"/>
+<text text-anchor="start" x="65.75" y="-2404.95" font-family="arial" font-size="14.00">Air Temperature sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2398.25 281.5,-2422.25 401,-2422.25 401,-2398.25 281.5,-2398.25"/>
+<text text-anchor="start" x="332.62" y="-2404.95" font-family="arial" font-size="14.00">F2</text>
+<polygon fill="none" stroke="black" points="0,-2374.25 0,-2398.25 281.5,-2398.25 281.5,-2374.25 0,-2374.25"/>
+<text text-anchor="start" x="90.5" y="-2380.95" font-family="arial" font-size="14.00">Lambda 1 COM</text>
+<polygon fill="none" stroke="black" points="281.5,-2374.25 281.5,-2398.25 401,-2398.25 401,-2374.25 281.5,-2374.25"/>
+<text text-anchor="start" x="332.62" y="-2380.95" font-family="arial" font-size="14.00">F3</text>
+<polygon fill="none" stroke="black" points="0,-2350.25 0,-2374.25 281.5,-2374.25 281.5,-2350.25 0,-2350.25"/>
+<text text-anchor="start" x="90.12" y="-2356.95" font-family="arial" font-size="14.00">Lambda 1 VS in</text>
+<polygon fill="none" stroke="black" points="281.5,-2350.25 281.5,-2374.25 401,-2374.25 401,-2350.25 281.5,-2350.25"/>
+<text text-anchor="start" x="332.62" y="-2356.95" font-family="arial" font-size="14.00">F4</text>
+<polygon fill="none" stroke="black" points="0,-2326.25 0,-2350.25 281.5,-2350.25 281.5,-2326.25 0,-2326.25"/>
+<text text-anchor="start" x="83.38" y="-2332.95" font-family="arial" font-size="14.00">5V Sensor Supply</text>
+<polygon fill="none" stroke="black" points="281.5,-2326.25 281.5,-2350.25 401,-2350.25 401,-2326.25 281.5,-2326.25"/>
+<text text-anchor="start" x="331.5" y="-2332.95" font-family="arial" font-size="14.00">G1</text>
+<polygon fill="none" stroke="black" points="0,-2302.25 0,-2326.25 281.5,-2326.25 281.5,-2302.25 0,-2302.25"/>
+<text text-anchor="start" x="93.12" y="-2308.95" font-family="arial" font-size="14.00">Throttle sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2302.25 281.5,-2326.25 401,-2326.25 401,-2302.25 281.5,-2302.25"/>
+<text text-anchor="start" x="331.5" y="-2308.95" font-family="arial" font-size="14.00">G2</text>
+<polygon fill="none" stroke="black" points="0,-2278.25 0,-2302.25 281.5,-2302.25 281.5,-2278.25 0,-2278.25"/>
+<text text-anchor="start" x="99.88" y="-2284.95" font-family="arial" font-size="14.00">Lambda 1 IP</text>
+<polygon fill="none" stroke="black" points="281.5,-2278.25 281.5,-2302.25 401,-2302.25 401,-2278.25 281.5,-2278.25"/>
+<text text-anchor="start" x="331.5" y="-2284.95" font-family="arial" font-size="14.00">G3</text>
+<polygon fill="none" stroke="black" points="0,-2254.25 0,-2278.25 281.5,-2278.25 281.5,-2254.25 0,-2254.25"/>
+<text text-anchor="start" x="87.5" y="-2260.95" font-family="arial" font-size="14.00">Lambda 1 RCAL</text>
+<polygon fill="none" stroke="black" points="281.5,-2254.25 281.5,-2278.25 401,-2278.25 401,-2254.25 281.5,-2254.25"/>
+<text text-anchor="start" x="331.5" y="-2260.95" font-family="arial" font-size="14.00">G4</text>
+<polygon fill="none" stroke="black" points="0,-2230.25 0,-2254.25 281.5,-2254.25 281.5,-2230.25 0,-2230.25"/>
+<text text-anchor="start" x="92.38" y="-2236.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-2230.25 281.5,-2254.25 401,-2254.25 401,-2230.25 281.5,-2230.25"/>
+<text text-anchor="start" x="332.25" y="-2236.95" font-family="arial" font-size="14.00">H1</text>
+<polygon fill="none" stroke="black" points="0,-2206.25 0,-2230.25 281.5,-2230.25 281.5,-2206.25 0,-2206.25"/>
+<text text-anchor="start" x="72.5" y="-2212.95" font-family="arial" font-size="14.00">Home sensor Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-2206.25 281.5,-2230.25 401,-2230.25 401,-2206.25 281.5,-2206.25"/>
+<text text-anchor="start" x="332.25" y="-2212.95" font-family="arial" font-size="14.00">H2</text>
+<polygon fill="none" stroke="black" points="0,-2182.25 0,-2206.25 281.5,-2206.25 281.5,-2182.25 0,-2182.25"/>
+<text text-anchor="start" x="97.62" y="-2188.95" font-family="arial" font-size="14.00">Crank Sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2182.25 281.5,-2206.25 401,-2206.25 401,-2182.25 281.5,-2182.25"/>
+<text text-anchor="start" x="332.25" y="-2188.95" font-family="arial" font-size="14.00">H3</text>
+<polygon fill="none" stroke="black" points="0,-2158.25 0,-2182.25 281.5,-2182.25 281.5,-2158.25 0,-2158.25"/>
+<text text-anchor="start" x="98" y="-2164.95" font-family="arial" font-size="14.00">Home sensor</text>
+<polygon fill="none" stroke="black" points="281.5,-2158.25 281.5,-2182.25 401,-2182.25 401,-2158.25 281.5,-2158.25"/>
+<text text-anchor="start" x="332.25" y="-2164.95" font-family="arial" font-size="14.00">H4</text>
+<polygon fill="none" stroke="black" points="0,-2134.25 0,-2158.25 281.5,-2158.25 281.5,-2134.25 0,-2134.25"/>
+<text text-anchor="start" x="52.25" y="-2140.95" font-family="arial" font-size="14.00">Extra Temperature sensor 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2134.25 281.5,-2158.25 401,-2158.25 401,-2134.25 281.5,-2134.25"/>
+<text text-anchor="start" x="333.38" y="-2140.95" font-family="arial" font-size="14.00">J1</text>
+<polygon fill="none" stroke="black" points="0,-2110.25 0,-2134.25 281.5,-2134.25 281.5,-2110.25 0,-2110.25"/>
+<text text-anchor="start" x="52.25" y="-2116.95" font-family="arial" font-size="14.00">Extra Temperature sensor 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2110.25 281.5,-2134.25 401,-2134.25 401,-2110.25 281.5,-2110.25"/>
+<text text-anchor="start" x="333.38" y="-2116.95" font-family="arial" font-size="14.00">J2</text>
+<polygon fill="none" stroke="black" points="0,-2086.25 0,-2110.25 281.5,-2110.25 281.5,-2086.25 0,-2086.25"/>
+<text text-anchor="start" x="96.12" y="-2092.95" font-family="arial" font-size="14.00">Fuel Pressure</text>
+<polygon fill="none" stroke="black" points="281.5,-2086.25 281.5,-2110.25 401,-2110.25 401,-2086.25 281.5,-2086.25"/>
+<text text-anchor="start" x="333.38" y="-2092.95" font-family="arial" font-size="14.00">J3</text>
+<polygon fill="none" stroke="black" points="0,-2062.25 0,-2086.25 281.5,-2086.25 281.5,-2062.25 0,-2062.25"/>
+<text text-anchor="start" x="125.75" y="-2068.95" font-family="arial" font-size="14.00">Baro</text>
+<polygon fill="none" stroke="black" points="281.5,-2062.25 281.5,-2086.25 401,-2086.25 401,-2062.25 281.5,-2062.25"/>
+<text text-anchor="start" x="333.38" y="-2068.95" font-family="arial" font-size="14.00">J4</text>
+<polygon fill="none" stroke="black" points="0,-2038.25 0,-2062.25 281.5,-2062.25 281.5,-2038.25 0,-2038.25"/>
+<text text-anchor="start" x="111.12" y="-2044.95" font-family="arial" font-size="14.00">Injector 1</text>
+<polygon fill="none" stroke="black" points="281.5,-2038.25 281.5,-2062.25 401,-2062.25 401,-2038.25 281.5,-2038.25"/>
+<text text-anchor="start" x="332.25" y="-2044.95" font-family="arial" font-size="14.00">K1</text>
+<polygon fill="none" stroke="black" points="0,-2014.25 0,-2038.25 281.5,-2038.25 281.5,-2014.25 0,-2014.25"/>
+<text text-anchor="start" x="111.12" y="-2020.95" font-family="arial" font-size="14.00">Injector 2</text>
+<polygon fill="none" stroke="black" points="281.5,-2014.25 281.5,-2038.25 401,-2038.25 401,-2014.25 281.5,-2014.25"/>
+<text text-anchor="start" x="332.25" y="-2020.95" font-family="arial" font-size="14.00">K2</text>
+<polygon fill="none" stroke="black" points="0,-1990.25 0,-2014.25 281.5,-2014.25 281.5,-1990.25 0,-1990.25"/>
+<text text-anchor="start" x="86.38" y="-1996.95" font-family="arial" font-size="14.00">Digital/VR input 1</text>
+<polygon fill="none" stroke="black" points="281.5,-1990.25 281.5,-2014.25 401,-2014.25 401,-1990.25 281.5,-1990.25"/>
+<text text-anchor="start" x="332.25" y="-1996.95" font-family="arial" font-size="14.00">K3</text>
+<polygon fill="none" stroke="black" points="0,-1966.25 0,-1990.25 281.5,-1990.25 281.5,-1966.25 0,-1966.25"/>
+<text text-anchor="start" x="105.5" y="-1972.95" font-family="arial" font-size="14.00">Rotor RPM</text>
+<polygon fill="none" stroke="black" points="281.5,-1966.25 281.5,-1990.25 401,-1990.25 401,-1966.25 281.5,-1966.25"/>
+<text text-anchor="start" x="332.25" y="-1972.95" font-family="arial" font-size="14.00">K4</text>
+<polygon fill="none" stroke="black" points="0,-1942.25 0,-1966.25 281.5,-1966.25 281.5,-1942.25 0,-1942.25"/>
+<text text-anchor="start" x="111.12" y="-1948.95" font-family="arial" font-size="14.00">Injector 8</text>
+<polygon fill="none" stroke="black" points="281.5,-1942.25 281.5,-1966.25 401,-1966.25 401,-1942.25 281.5,-1942.25"/>
+<text text-anchor="start" x="333" y="-1948.95" font-family="arial" font-size="14.00">L1</text>
+<polygon fill="none" stroke="black" points="0,-1918.25 0,-1942.25 281.5,-1942.25 281.5,-1918.25 0,-1918.25"/>
+<text text-anchor="start" x="111.12" y="-1924.95" font-family="arial" font-size="14.00">Injector 7</text>
+<polygon fill="none" stroke="black" points="281.5,-1918.25 281.5,-1942.25 401,-1942.25 401,-1918.25 281.5,-1918.25"/>
+<text text-anchor="start" x="333" y="-1924.95" font-family="arial" font-size="14.00">L2</text>
+<polygon fill="none" stroke="black" points="0,-1894.25 0,-1918.25 281.5,-1918.25 281.5,-1894.25 0,-1894.25"/>
+<text text-anchor="start" x="111.12" y="-1900.95" font-family="arial" font-size="14.00">Injector 6</text>
+<polygon fill="none" stroke="black" points="281.5,-1894.25 281.5,-1918.25 401,-1918.25 401,-1894.25 281.5,-1894.25"/>
+<text text-anchor="start" x="333" y="-1900.95" font-family="arial" font-size="14.00">L3</text>
+<polygon fill="none" stroke="black" points="0,-1870.25 0,-1894.25 281.5,-1894.25 281.5,-1870.25 0,-1870.25"/>
+<text text-anchor="start" x="93.12" y="-1876.95" font-family="arial" font-size="14.00">Engine Ground</text>
+<polygon fill="none" stroke="black" points="281.5,-1870.25 281.5,-1894.25 401,-1894.25 401,-1870.25 281.5,-1870.25"/>
+<text text-anchor="start" x="333" y="-1876.95" font-family="arial" font-size="14.00">L4</text>
+<polygon fill="none" stroke="black" points="0,-1846.25 0,-1870.25 281.5,-1870.25 281.5,-1846.25 0,-1846.25"/>
+<text text-anchor="start" x="111.12" y="-1852.95" font-family="arial" font-size="14.00">Injector 3</text>
+<polygon fill="none" stroke="black" points="281.5,-1846.25 281.5,-1870.25 401,-1870.25 401,-1846.25 281.5,-1846.25"/>
+<text text-anchor="start" x="331.5" y="-1852.95" font-family="arial" font-size="14.00">M1</text>
+<polygon fill="none" stroke="black" points="0,-1822.25 0,-1846.25 281.5,-1846.25 281.5,-1822.25 0,-1822.25"/>
+<text text-anchor="start" x="111.12" y="-1828.95" font-family="arial" font-size="14.00">Injector 4</text>
+<polygon fill="none" stroke="black" points="281.5,-1822.25 281.5,-1846.25 401,-1846.25 401,-1822.25 281.5,-1822.25"/>
+<text text-anchor="start" x="331.5" y="-1828.95" font-family="arial" font-size="14.00">M2</text>
+<polygon fill="none" stroke="black" points="0,-1798.25 0,-1822.25 281.5,-1822.25 281.5,-1798.25 0,-1798.25"/>
+<text text-anchor="start" x="111.12" y="-1804.95" font-family="arial" font-size="14.00">Injector 5</text>
+<polygon fill="none" stroke="black" points="281.5,-1798.25 281.5,-1822.25 401,-1822.25 401,-1798.25 281.5,-1798.25"/>
+<text text-anchor="start" x="331.5" y="-1804.95" font-family="arial" font-size="14.00">M3</text>
+<polygon fill="none" stroke="black" points="0,-1774.25 0,-1798.25 281.5,-1798.25 281.5,-1774.25 0,-1774.25"/>
+<text text-anchor="start" x="110.75" y="-1780.95" font-family="arial" font-size="14.00">ECU 12V</text>
+<polygon fill="none" stroke="black" points="281.5,-1774.25 281.5,-1798.25 401,-1798.25 401,-1774.25 281.5,-1774.25"/>
+<text text-anchor="start" x="331.5" y="-1780.95" font-family="arial" font-size="14.00">M4</text>
+<polyline fill="none" stroke="black" points="401,-1499.25 401,-1774.25 0,-1774.25 0,-1499.25"/>
+<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="4" y="-1770.25"/>
+<polyline fill="none" stroke="black" points="0,-1499.25 0,-1474.75 401,-1474.75 401,-1499.25"/>
+<text text-anchor="start" x="128.5" y="-1481.95" font-family="arial" font-size="14.00">Connector 643203311</text>
+<polygon fill="none" stroke="black" points="0,-1450.25 0,-1474.75 401,-1474.75 401,-1450.25 0,-1450.25"/>
+<text text-anchor="start" x="89.5" y="-1457.45" font-family="arial" font-size="14.00">ECU Connector 1 (GPO Low side!)</text>
</g>
<!-- W1 -->
-<g id="node19" class="node">
+<g id="node22" class="node">
<title>W1</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1014.5,-3564.25 611.5,-3564.25 611.5,-3325.25 1014.5,-3325.25 1014.5,-3564.25"/>
-<polygon fill="none" stroke="black" points="611.5,-3539.75 611.5,-3564.25 1014.5,-3564.25 1014.5,-3539.75 611.5,-3539.75"/>
-<text text-anchor="start" x="801.75" y="-3546.95" font-family="arial" font-size="14.00">W1</text>
-<polygon fill="none" stroke="black" points="611.5,-3515.25 611.5,-3539.75 712.33,-3539.75 712.33,-3515.25 611.5,-3515.25"/>
-<text text-anchor="start" x="654.42" y="-3522.45" font-family="arial" font-size="14.00">5x</text>
-<polygon fill="none" stroke="black" points="712.33,-3515.25 712.33,-3539.75 853.67,-3539.75 853.67,-3515.25 712.33,-3515.25"/>
-<text text-anchor="start" x="755.25" y="-3522.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="853.67,-3515.25 853.67,-3539.75 1014.5,-3539.75 1014.5,-3515.25 853.67,-3515.25"/>
-<text text-anchor="start" x="896.58" y="-3522.45" font-family="arial" font-size="14.00">50.0 Inches</text>
-<text text-anchor="start" x="687.62" y="-3499.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="620.12" y="-3479.95" font-family="arial" font-size="14.00">ECU:A2:Ignition coil 1</text>
-<text text-anchor="start" x="769.38" y="-3479.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3479.95" font-family="arial" font-size="14.00">Coil Pack 1:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3473.25 611.5,-3475.25 1014.5,-3475.25 1014.5,-3473.25 611.5,-3473.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3471.25 611.5,-3473.25 1014.5,-3473.25 1014.5,-3471.25 611.5,-3471.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3469.25 611.5,-3471.25 1014.5,-3471.25 1014.5,-3469.25 611.5,-3469.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3467.25 611.5,-3469.25 1014.5,-3469.25 1014.5,-3467.25 611.5,-3467.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3465.25 611.5,-3467.25 1014.5,-3467.25 1014.5,-3465.25 611.5,-3465.25"/>
-<text text-anchor="start" x="620.12" y="-3449.95" font-family="arial" font-size="14.00">ECU:A3:Ignition coil 2</text>
-<text text-anchor="start" x="769.38" y="-3449.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3449.95" font-family="arial" font-size="14.00">Coil Pack 2:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3443.25 611.5,-3445.25 1014.5,-3445.25 1014.5,-3443.25 611.5,-3443.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3441.25 611.5,-3443.25 1014.5,-3443.25 1014.5,-3441.25 611.5,-3441.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3439.25 611.5,-3441.25 1014.5,-3441.25 1014.5,-3439.25 611.5,-3439.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3437.25 611.5,-3439.25 1014.5,-3439.25 1014.5,-3437.25 611.5,-3437.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3435.25 611.5,-3437.25 1014.5,-3437.25 1014.5,-3435.25 611.5,-3435.25"/>
-<text text-anchor="start" x="620.12" y="-3419.95" font-family="arial" font-size="14.00">ECU:B2:Ignition coil 3</text>
-<text text-anchor="start" x="769.38" y="-3419.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3419.95" font-family="arial" font-size="14.00">Coil Pack 3:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3413.25 611.5,-3415.25 1014.5,-3415.25 1014.5,-3413.25 611.5,-3413.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3411.25 611.5,-3413.25 1014.5,-3413.25 1014.5,-3411.25 611.5,-3411.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3409.25 611.5,-3411.25 1014.5,-3411.25 1014.5,-3409.25 611.5,-3409.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3407.25 611.5,-3409.25 1014.5,-3409.25 1014.5,-3407.25 611.5,-3407.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3405.25 611.5,-3407.25 1014.5,-3407.25 1014.5,-3405.25 611.5,-3405.25"/>
-<text text-anchor="start" x="620.12" y="-3389.95" font-family="arial" font-size="14.00">ECU:B3:Ignition coil 4</text>
-<text text-anchor="start" x="769.38" y="-3389.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="847.5" y="-3389.95" font-family="arial" font-size="14.00">Coil Pack 4:A:ECU Sig</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3383.25 611.5,-3385.25 1014.5,-3385.25 1014.5,-3383.25 611.5,-3383.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3381.25 611.5,-3383.25 1014.5,-3383.25 1014.5,-3381.25 611.5,-3381.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3379.25 611.5,-3381.25 1014.5,-3381.25 1014.5,-3379.25 611.5,-3379.25"/>
-<polygon fill="#0066ff" stroke="none" points="611.5,-3377.25 611.5,-3379.25 1014.5,-3379.25 1014.5,-3377.25 611.5,-3377.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3375.25 611.5,-3377.25 1014.5,-3377.25 1014.5,-3375.25 611.5,-3375.25"/>
-<text text-anchor="start" x="613.38" y="-3359.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="769.38" y="-3359.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="826.5" y="-3359.95" font-family="arial" font-size="14.00">Coil Pack 1:B:Sensor Ground</text>
-<polygon fill="#000000" stroke="none" points="611.5,-3353.25 611.5,-3355.25 1014.5,-3355.25 1014.5,-3353.25 611.5,-3353.25"/>
-<polygon fill="#895956" stroke="none" points="611.5,-3351.25 611.5,-3353.25 1014.5,-3353.25 1014.5,-3351.25 611.5,-3351.25"/>
-<polygon fill="#895956" stroke="none" points="611.5,-3349.25 611.5,-3351.25 1014.5,-3351.25 1014.5,-3349.25 611.5,-3349.25"/>
-<polygon fill="#895956" stroke="none" points="611.5,-3347.25 611.5,-3349.25 1014.5,-3349.25 1014.5,-3347.25 611.5,-3347.25"/>
-<polygon fill="#000000" stroke="none" points="611.5,-3345.25 611.5,-3347.25 1014.5,-3347.25 1014.5,-3345.25 611.5,-3345.25"/>
-<text text-anchor="start" x="687.62" y="-3329.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1014.5,-3365.25 611.5,-3365.25 611.5,-3126.25 1014.5,-3126.25 1014.5,-3365.25"/>
+<polygon fill="none" stroke="black" points="611.5,-3340.75 611.5,-3365.25 1014.5,-3365.25 1014.5,-3340.75 611.5,-3340.75"/>
+<text text-anchor="start" x="801.75" y="-3347.95" font-family="arial" font-size="14.00">W1</text>
+<polygon fill="none" stroke="black" points="611.5,-3316.25 611.5,-3340.75 712.33,-3340.75 712.33,-3316.25 611.5,-3316.25"/>
+<text text-anchor="start" x="654.42" y="-3323.45" font-family="arial" font-size="14.00">5x</text>
+<polygon fill="none" stroke="black" points="712.33,-3316.25 712.33,-3340.75 853.67,-3340.75 853.67,-3316.25 712.33,-3316.25"/>
+<text text-anchor="start" x="755.25" y="-3323.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="853.67,-3316.25 853.67,-3340.75 1014.5,-3340.75 1014.5,-3316.25 853.67,-3316.25"/>
+<text text-anchor="start" x="896.58" y="-3323.45" font-family="arial" font-size="14.00">50.0 Inches</text>
+<text text-anchor="start" x="687.62" y="-3300.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="620.12" y="-3280.95" font-family="arial" font-size="14.00">ECU:A2:Ignition coil 1</text>
+<text text-anchor="start" x="769.38" y="-3280.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3280.95" font-family="arial" font-size="14.00">Coil Pack 1:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3274.25 611.5,-3276.25 1014.5,-3276.25 1014.5,-3274.25 611.5,-3274.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3272.25 611.5,-3274.25 1014.5,-3274.25 1014.5,-3272.25 611.5,-3272.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3270.25 611.5,-3272.25 1014.5,-3272.25 1014.5,-3270.25 611.5,-3270.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3268.25 611.5,-3270.25 1014.5,-3270.25 1014.5,-3268.25 611.5,-3268.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3266.25 611.5,-3268.25 1014.5,-3268.25 1014.5,-3266.25 611.5,-3266.25"/>
+<text text-anchor="start" x="620.12" y="-3250.95" font-family="arial" font-size="14.00">ECU:A3:Ignition coil 2</text>
+<text text-anchor="start" x="769.38" y="-3250.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3250.95" font-family="arial" font-size="14.00">Coil Pack 2:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3244.25 611.5,-3246.25 1014.5,-3246.25 1014.5,-3244.25 611.5,-3244.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3242.25 611.5,-3244.25 1014.5,-3244.25 1014.5,-3242.25 611.5,-3242.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3240.25 611.5,-3242.25 1014.5,-3242.25 1014.5,-3240.25 611.5,-3240.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3238.25 611.5,-3240.25 1014.5,-3240.25 1014.5,-3238.25 611.5,-3238.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3236.25 611.5,-3238.25 1014.5,-3238.25 1014.5,-3236.25 611.5,-3236.25"/>
+<text text-anchor="start" x="620.12" y="-3220.95" font-family="arial" font-size="14.00">ECU:B2:Ignition coil 3</text>
+<text text-anchor="start" x="769.38" y="-3220.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3220.95" font-family="arial" font-size="14.00">Coil Pack 3:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3214.25 611.5,-3216.25 1014.5,-3216.25 1014.5,-3214.25 611.5,-3214.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3212.25 611.5,-3214.25 1014.5,-3214.25 1014.5,-3212.25 611.5,-3212.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3210.25 611.5,-3212.25 1014.5,-3212.25 1014.5,-3210.25 611.5,-3210.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3208.25 611.5,-3210.25 1014.5,-3210.25 1014.5,-3208.25 611.5,-3208.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3206.25 611.5,-3208.25 1014.5,-3208.25 1014.5,-3206.25 611.5,-3206.25"/>
+<text text-anchor="start" x="620.12" y="-3190.95" font-family="arial" font-size="14.00">ECU:B3:Ignition coil 4</text>
+<text text-anchor="start" x="769.38" y="-3190.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="847.5" y="-3190.95" font-family="arial" font-size="14.00">Coil Pack 4:A:ECU Sig</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3184.25 611.5,-3186.25 1014.5,-3186.25 1014.5,-3184.25 611.5,-3184.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3182.25 611.5,-3184.25 1014.5,-3184.25 1014.5,-3182.25 611.5,-3182.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3180.25 611.5,-3182.25 1014.5,-3182.25 1014.5,-3180.25 611.5,-3180.25"/>
+<polygon fill="#0066ff" stroke="none" points="611.5,-3178.25 611.5,-3180.25 1014.5,-3180.25 1014.5,-3178.25 611.5,-3178.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3176.25 611.5,-3178.25 1014.5,-3178.25 1014.5,-3176.25 611.5,-3176.25"/>
+<text text-anchor="start" x="613.38" y="-3160.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="769.38" y="-3160.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="826.5" y="-3160.95" font-family="arial" font-size="14.00">Coil Pack 2:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="611.5,-3154.25 611.5,-3156.25 1014.5,-3156.25 1014.5,-3154.25 611.5,-3154.25"/>
+<polygon fill="#895956" stroke="none" points="611.5,-3152.25 611.5,-3154.25 1014.5,-3154.25 1014.5,-3152.25 611.5,-3152.25"/>
+<polygon fill="#895956" stroke="none" points="611.5,-3150.25 611.5,-3152.25 1014.5,-3152.25 1014.5,-3150.25 611.5,-3150.25"/>
+<polygon fill="#895956" stroke="none" points="611.5,-3148.25 611.5,-3150.25 1014.5,-3150.25 1014.5,-3148.25 611.5,-3148.25"/>
+<polygon fill="#000000" stroke="none" points="611.5,-3146.25 611.5,-3148.25 1014.5,-3148.25 1014.5,-3146.25 611.5,-3146.25"/>
+<text text-anchor="start" x="687.62" y="-3130.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2892.25C676.03,-2898.26 342.39,-3472.26 610.5,-3466.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2894.25C674.3,-2897.26 340.66,-3471.26 610.5,-3468.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2896.25C672.57,-2896.25 338.93,-3470.25 610.5,-3470.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2898.25C670.84,-2895.24 337.2,-3469.24 610.5,-3472.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2900.25C669.11,-2894.24 335.47,-3468.24 610.5,-3474.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2886.25C597.87,-2891.94 420.88,-3272.94 610.5,-3267.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2888.25C596.06,-2891.09 419.07,-3272.09 610.5,-3269.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2890.25C594.24,-2890.25 417.26,-3271.25 610.5,-3271.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2892.25C592.43,-2889.41 415.44,-3270.41 610.5,-3273.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2894.25C590.62,-2888.56 413.63,-3269.56 610.5,-3275.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2868.25C673.53,-2874.25 344.89,-3442.25 610.5,-3436.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2870.25C671.8,-2873.25 343.16,-3441.25 610.5,-3438.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2872.25C670.07,-2872.25 341.43,-3440.25 610.5,-3440.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2874.25C668.34,-2871.25 339.7,-3439.25 610.5,-3442.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2876.25C666.61,-2870.25 337.97,-3438.25 610.5,-3444.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2862.25C595.55,-2867.92 423.22,-3242.92 610.5,-3237.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2864.25C593.73,-2867.09 421.41,-3242.09 610.5,-3239.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2866.25C591.91,-2866.25 419.59,-3241.25 610.5,-3241.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2868.25C590.09,-2865.41 417.77,-3240.41 610.5,-3243.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2870.25C588.28,-2864.58 415.95,-3239.58 610.5,-3245.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2796.25C691.09,-2802.3 327.28,-3412.3 610.5,-3406.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2798.25C689.37,-2801.27 325.56,-3411.27 610.5,-3408.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2800.25C687.65,-2800.25 323.85,-3410.25 610.5,-3410.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2802.25C685.94,-2799.23 322.13,-3409.23 610.5,-3412.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2804.25C684.22,-2798.2 320.41,-3408.2 610.5,-3414.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2790.25C612,-2796.02 406.68,-3213.02 610.5,-3207.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2792.25C610.2,-2795.13 404.89,-3212.13 610.5,-3209.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2794.25C608.41,-2794.25 403.09,-3211.25 610.5,-3211.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2796.25C606.61,-2793.37 401.3,-3210.37 610.5,-3213.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2798.25C604.82,-2792.48 399.5,-3209.48 610.5,-3215.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2772.25C688.57,-2778.29 329.81,-3382.29 610.5,-3376.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2774.25C686.85,-2777.27 328.09,-3381.27 610.5,-3378.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2776.25C685.13,-2776.25 326.37,-3380.25 610.5,-3380.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2778.25C683.41,-2775.23 324.65,-3379.23 610.5,-3382.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2780.25C681.69,-2774.21 322.93,-3378.21 610.5,-3384.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2766.25C609.62,-2772 409.07,-3183 610.5,-3177.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2768.25C607.83,-2771.13 407.27,-3182.13 610.5,-3179.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2770.25C606.03,-2770.25 405.47,-3181.25 610.5,-3181.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M401,-2772.25C604.23,-2769.37 403.67,-3180.37 610.5,-3183.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2774.25C602.43,-2768.5 401.88,-3179.5 610.5,-3185.25"/>
</g>
<!-- ECU&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>ECU:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C654.14,-2249.26 365.09,-3351.26 610.5,-3346.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C652.21,-2248.76 363.16,-3350.76 610.5,-3348.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C650.27,-2248.25 361.23,-3350.25 610.5,-3350.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C648.34,-2247.74 359.29,-3349.74 610.5,-3352.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C646.41,-2247.24 357.36,-3349.24 610.5,-3354.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C612.2,-2243.13 407.11,-3152.13 610.5,-3147.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C610.25,-2242.69 405.16,-3151.69 610.5,-3149.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C608.3,-2242.25 403.2,-3151.25 610.5,-3151.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C606.34,-2241.81 401.25,-3150.81 610.5,-3153.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C604.39,-2241.37 399.3,-3150.37 610.5,-3155.25"/>
</g>
<!-- W3 -->
-<g id="node20" class="node">
+<g id="node26" class="node">
<title>W3</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1471.25 642,-1471.25 642,-1352.25 984,-1352.25 984,-1471.25"/>
-<polygon fill="none" stroke="black" points="642,-1446.75 642,-1471.25 984,-1471.25 984,-1446.75 642,-1446.75"/>
-<text text-anchor="start" x="801.75" y="-1453.95" font-family="arial" font-size="14.00">W3</text>
-<polygon fill="none" stroke="black" points="642,-1422.25 642,-1446.75 722.5,-1446.75 722.5,-1422.25 642,-1422.25"/>
-<text text-anchor="start" x="674.75" y="-1429.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="722.5,-1422.25 722.5,-1446.75 843.5,-1446.75 843.5,-1422.25 722.5,-1422.25"/>
-<text text-anchor="start" x="755.25" y="-1429.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="843.5,-1422.25 843.5,-1446.75 984,-1446.75 984,-1422.25 843.5,-1422.25"/>
-<text text-anchor="start" x="876.25" y="-1429.45" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="699.12" y="-1406.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="643.62" y="-1386.95" font-family="arial" font-size="14.00">ECU:K1:Injector 1</text>
-<text text-anchor="start" x="762" y="-1386.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<text text-anchor="start" x="820" y="-1386.95" font-family="arial" font-size="14.00">Fuel Injector 1:2:ECU INJ</text>
-<polygon fill="#000000" stroke="none" points="642,-1380.25 642,-1382.25 984,-1382.25 984,-1380.25 642,-1380.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1378.25 642,-1380.25 984,-1380.25 984,-1378.25 642,-1378.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1376.25 642,-1378.25 984,-1378.25 984,-1376.25 642,-1376.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1374.25 642,-1376.25 984,-1376.25 984,-1374.25 642,-1374.25"/>
-<polygon fill="#000000" stroke="none" points="642,-1372.25 642,-1374.25 984,-1374.25 984,-1372.25 642,-1372.25"/>
-<text text-anchor="start" x="699.12" y="-1356.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1483.25 642,-1483.25 642,-1364.25 984,-1364.25 984,-1483.25"/>
+<polygon fill="none" stroke="black" points="642,-1458.75 642,-1483.25 984,-1483.25 984,-1458.75 642,-1458.75"/>
+<text text-anchor="start" x="801.75" y="-1465.95" font-family="arial" font-size="14.00">W3</text>
+<polygon fill="none" stroke="black" points="642,-1434.25 642,-1458.75 722.5,-1458.75 722.5,-1434.25 642,-1434.25"/>
+<text text-anchor="start" x="674.75" y="-1441.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="722.5,-1434.25 722.5,-1458.75 843.5,-1458.75 843.5,-1434.25 722.5,-1434.25"/>
+<text text-anchor="start" x="755.25" y="-1441.45" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="843.5,-1434.25 843.5,-1458.75 984,-1458.75 984,-1434.25 843.5,-1434.25"/>
+<text text-anchor="start" x="876.25" y="-1441.45" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="699.12" y="-1418.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="643.62" y="-1398.95" font-family="arial" font-size="14.00">ECU:K1:Injector 1</text>
+<text text-anchor="start" x="762" y="-1398.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<text text-anchor="start" x="820" y="-1398.95" font-family="arial" font-size="14.00">Fuel Injector 1:2:ECU INJ</text>
+<polygon fill="#000000" stroke="none" points="642,-1392.25 642,-1394.25 984,-1394.25 984,-1392.25 642,-1392.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1390.25 642,-1392.25 984,-1392.25 984,-1390.25 642,-1390.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1388.25 642,-1390.25 984,-1390.25 984,-1388.25 642,-1388.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1386.25 642,-1388.25 984,-1388.25 984,-1386.25 642,-1386.25"/>
+<polygon fill="#000000" stroke="none" points="642,-1384.25 642,-1386.25 984,-1386.25 984,-1384.25 642,-1384.25"/>
+<text text-anchor="start" x="699.12" y="-1368.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W3 -->
-<g id="edge14" class="edge">
+<g id="edge20" class="edge">
<title>ECU:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2052.25C717.63,-2058.28 317.48,-1379.28 641,-1373.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2054.25C719.35,-2057.27 319.2,-1378.27 641,-1375.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2056.25C721.07,-2056.25 320.93,-1377.25 641,-1377.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2058.25C722.8,-2055.23 322.65,-1376.23 641,-1379.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2060.25C724.52,-2054.22 324.37,-1375.22 641,-1381.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2046.25C710.09,-2052.26 325,-1391.26 641,-1385.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2048.25C711.81,-2051.26 326.73,-1390.26 641,-1387.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2050.25C713.54,-2050.25 328.46,-1389.25 641,-1389.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2052.25C715.27,-2049.24 330.19,-1388.24 641,-1391.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2054.25C717,-2048.24 331.91,-1387.24 641,-1393.25"/>
</g>
<!-- W4 -->
-<g id="node21" class="node">
+<g id="node27" class="node">
<title>W4</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1128.25 642,-1128.25 642,-1009.25 984,-1009.25 984,-1128.25"/>
-<polygon fill="none" stroke="black" points="642,-1103.75 642,-1128.25 984,-1128.25 984,-1103.75 642,-1103.75"/>
-<text text-anchor="start" x="801.75" y="-1110.95" font-family="arial" font-size="14.00">W4</text>
-<polygon fill="none" stroke="black" points="642,-1079.25 642,-1103.75 722.5,-1103.75 722.5,-1079.25 642,-1079.25"/>
-<text text-anchor="start" x="674.75" y="-1086.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="722.5,-1079.25 722.5,-1103.75 843.5,-1103.75 843.5,-1079.25 722.5,-1079.25"/>
-<text text-anchor="start" x="755.25" y="-1086.45" font-family="arial" font-size="14.00">14 AWG</text>
-<polygon fill="none" stroke="black" points="843.5,-1079.25 843.5,-1103.75 984,-1103.75 984,-1079.25 843.5,-1079.25"/>
-<text text-anchor="start" x="876.25" y="-1086.45" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="699.12" y="-1063.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="643.62" y="-1043.95" font-family="arial" font-size="14.00">ECU:K2:Injector 2</text>
-<text text-anchor="start" x="762" y="-1043.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<text text-anchor="start" x="820" y="-1043.95" font-family="arial" font-size="14.00">Fuel Injector 2:2:ECU INJ</text>
-<polygon fill="#000000" stroke="none" points="642,-1037.25 642,-1039.25 984,-1039.25 984,-1037.25 642,-1037.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1035.25 642,-1037.25 984,-1037.25 984,-1035.25 642,-1035.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1033.25 642,-1035.25 984,-1035.25 984,-1033.25 642,-1033.25"/>
-<polygon fill="#999999" stroke="none" points="642,-1031.25 642,-1033.25 984,-1033.25 984,-1031.25 642,-1031.25"/>
-<polygon fill="#000000" stroke="none" points="642,-1029.25 642,-1031.25 984,-1031.25 984,-1029.25 642,-1029.25"/>
-<text text-anchor="start" x="699.12" y="-1013.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="984,-1134.25 642,-1134.25 642,-1015.25 984,-1015.25 984,-1134.25"/>
+<polygon fill="none" stroke="black" points="642,-1109.75 642,-1134.25 984,-1134.25 984,-1109.75 642,-1109.75"/>
+<text text-anchor="start" x="801.75" y="-1116.95" font-family="arial" font-size="14.00">W4</text>
+<polygon fill="none" stroke="black" points="642,-1085.25 642,-1109.75 722.5,-1109.75 722.5,-1085.25 642,-1085.25"/>
+<text text-anchor="start" x="674.75" y="-1092.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="722.5,-1085.25 722.5,-1109.75 843.5,-1109.75 843.5,-1085.25 722.5,-1085.25"/>
+<text text-anchor="start" x="755.25" y="-1092.45" font-family="arial" font-size="14.00">14 AWG</text>
+<polygon fill="none" stroke="black" points="843.5,-1085.25 843.5,-1109.75 984,-1109.75 984,-1085.25 843.5,-1085.25"/>
+<text text-anchor="start" x="876.25" y="-1092.45" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="699.12" y="-1069.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="643.62" y="-1049.95" font-family="arial" font-size="14.00">ECU:K2:Injector 2</text>
+<text text-anchor="start" x="762" y="-1049.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<text text-anchor="start" x="820" y="-1049.95" font-family="arial" font-size="14.00">Fuel Injector 2:2:ECU INJ</text>
+<polygon fill="#000000" stroke="none" points="642,-1043.25 642,-1045.25 984,-1045.25 984,-1043.25 642,-1043.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1041.25 642,-1043.25 984,-1043.25 984,-1041.25 642,-1041.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1039.25 642,-1041.25 984,-1041.25 984,-1039.25 642,-1039.25"/>
+<polygon fill="#999999" stroke="none" points="642,-1037.25 642,-1039.25 984,-1039.25 984,-1037.25 642,-1037.25"/>
+<polygon fill="#000000" stroke="none" points="642,-1035.25 642,-1037.25 984,-1037.25 984,-1035.25 642,-1035.25"/>
+<text text-anchor="start" x="699.12" y="-1019.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W4 -->
-<g id="edge16" class="edge">
+<g id="edge22" class="edge">
<title>ECU:e&#45;&#45;W4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2028.25C625.19,-2033.1 408.99,-1035.1 641,-1030.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2030.25C627.15,-2032.67 410.94,-1034.67 641,-1032.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2032.25C629.1,-2032.25 412.9,-1034.25 641,-1034.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2034.25C631.06,-2031.83 414.85,-1033.83 641,-1036.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2036.25C633.01,-2031.4 416.81,-1033.4 641,-1038.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2022.25C622.6,-2027.09 411.58,-1041.09 641,-1036.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2024.25C624.55,-2026.67 413.54,-1040.67 641,-1038.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2026.25C626.51,-2026.25 415.49,-1040.25 641,-1040.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2028.25C628.46,-2025.83 417.45,-1039.83 641,-1042.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2030.25C630.42,-2025.41 419.4,-1039.41 641,-1044.25"/>
</g>
<!-- W5 -->
-<g id="node22" class="node">
+<g id="node28" class="node">
<title>W5</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1001,-2480.25 625,-2480.25 625,-2229.25 1001,-2229.25 1001,-2480.25"/>
-<polygon fill="none" stroke="black" points="625,-2455.75 625,-2480.25 1001,-2480.25 1001,-2455.75 625,-2455.75"/>
-<text text-anchor="start" x="801.75" y="-2462.95" font-family="arial" font-size="14.00">W5</text>
-<polygon fill="none" stroke="black" points="625,-2431.25 625,-2455.75 692.19,-2455.75 692.19,-2431.25 625,-2431.25"/>
-<text text-anchor="start" x="651.09" y="-2438.45" font-family="arial" font-size="14.00">4x</text>
-<polygon fill="none" stroke="black" points="692.19,-2431.25 692.19,-2455.75 799.88,-2455.75 799.88,-2431.25 692.19,-2431.25"/>
-<text text-anchor="start" x="718.28" y="-2438.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="799.88,-2431.25 799.88,-2455.75 873.81,-2455.75 873.81,-2431.25 799.88,-2431.25"/>
-<text text-anchor="start" x="825.97" y="-2438.45" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="873.81,-2431.25 873.81,-2455.75 1001,-2455.75 1001,-2431.25 873.81,-2431.25"/>
-<text text-anchor="start" x="899.91" y="-2438.45" font-family="arial" font-size="14.00">21.0 Inches</text>
-<text text-anchor="start" x="706.62" y="-2415.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="630.5" y="-2395.95" font-family="arial" font-size="14.00">ECU:F4:Lambda 1 VS in</text>
-<text text-anchor="start" x="795.88" y="-2395.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="854.62" y="-2395.95" font-family="arial" font-size="14.00">LSU:1:VBO2 VS/O2 In</text>
-<polygon fill="#000000" stroke="none" points="625,-2389.25 625,-2391.25 1001,-2391.25 1001,-2389.25 625,-2389.25"/>
-<polygon fill="#895956" stroke="none" points="625,-2387.25 625,-2389.25 1001,-2389.25 1001,-2387.25 625,-2387.25"/>
-<polygon fill="#895956" stroke="none" points="625,-2385.25 625,-2387.25 1001,-2387.25 1001,-2385.25 625,-2385.25"/>
-<polygon fill="#895956" stroke="none" points="625,-2383.25 625,-2385.25 1001,-2385.25 1001,-2383.25 625,-2383.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2381.25 625,-2383.25 1001,-2383.25 1001,-2381.25 625,-2381.25"/>
-<text text-anchor="start" x="626.75" y="-2365.95" font-family="arial" font-size="14.00">ECU:G4:Lambda 1 RCAL</text>
-<text text-anchor="start" x="795.12" y="-2365.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="863.25" y="-2365.95" font-family="arial" font-size="14.00">LSU:2:WBO2 Recal</text>
-<polygon fill="#000000" stroke="none" points="625,-2359.25 625,-2361.25 1001,-2361.25 1001,-2359.25 625,-2359.25"/>
-<polygon fill="#00ff00" stroke="none" points="625,-2357.25 625,-2359.25 1001,-2359.25 1001,-2357.25 625,-2357.25"/>
-<polygon fill="#00ff00" stroke="none" points="625,-2355.25 625,-2357.25 1001,-2357.25 1001,-2355.25 625,-2355.25"/>
-<polygon fill="#00ff00" stroke="none" points="625,-2353.25 625,-2355.25 1001,-2355.25 1001,-2353.25 625,-2353.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2351.25 625,-2353.25 1001,-2353.25 1001,-2351.25 625,-2351.25"/>
-<text text-anchor="start" x="630.88" y="-2335.95" font-family="arial" font-size="14.00">ECU:F3:Lambda 1 COM</text>
-<text text-anchor="start" x="796.25" y="-2335.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="865.12" y="-2335.95" font-family="arial" font-size="14.00">LSU:5:WBO2 COM</text>
-<polygon fill="#000000" stroke="none" points="625,-2329.25 625,-2331.25 1001,-2331.25 1001,-2329.25 625,-2329.25"/>
-<polygon fill="#ffff00" stroke="none" points="625,-2327.25 625,-2329.25 1001,-2329.25 1001,-2327.25 625,-2327.25"/>
-<polygon fill="#ffff00" stroke="none" points="625,-2325.25 625,-2327.25 1001,-2327.25 1001,-2325.25 625,-2325.25"/>
-<polygon fill="#ffff00" stroke="none" points="625,-2323.25 625,-2325.25 1001,-2325.25 1001,-2323.25 625,-2323.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2321.25 625,-2323.25 1001,-2323.25 1001,-2321.25 625,-2321.25"/>
-<text text-anchor="start" x="639.12" y="-2305.95" font-family="arial" font-size="14.00">ECU:G3:Lambda 1 IP</text>
-<text text-anchor="start" x="793.62" y="-2305.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<text text-anchor="start" x="874.5" y="-2305.95" font-family="arial" font-size="14.00">LSU:6:WBO2 IP</text>
-<polygon fill="#000000" stroke="none" points="625,-2299.25 625,-2301.25 1001,-2301.25 1001,-2299.25 625,-2299.25"/>
-<polygon fill="#ffffff" stroke="none" points="625,-2297.25 625,-2299.25 1001,-2299.25 1001,-2297.25 625,-2297.25"/>
-<polygon fill="#ffffff" stroke="none" points="625,-2295.25 625,-2297.25 1001,-2297.25 1001,-2295.25 625,-2295.25"/>
-<polygon fill="#ffffff" stroke="none" points="625,-2293.25 625,-2295.25 1001,-2295.25 1001,-2293.25 625,-2293.25"/>
-<polygon fill="#000000" stroke="none" points="625,-2291.25 625,-2293.25 1001,-2293.25 1001,-2291.25 625,-2291.25"/>
-<text text-anchor="start" x="706.62" y="-2275.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="635.38" y="-2255.95" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
-<text text-anchor="start" x="802.62" y="-2255.95" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="625,-2249.25 625,-2251.25 1001,-2251.25 1001,-2249.25 625,-2249.25"/>
-<text text-anchor="start" x="706.62" y="-2233.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1001,-2474.25 625,-2474.25 625,-2223.25 1001,-2223.25 1001,-2474.25"/>
+<polygon fill="none" stroke="black" points="625,-2449.75 625,-2474.25 1001,-2474.25 1001,-2449.75 625,-2449.75"/>
+<text text-anchor="start" x="801.75" y="-2456.95" font-family="arial" font-size="14.00">W5</text>
+<polygon fill="none" stroke="black" points="625,-2425.25 625,-2449.75 692.19,-2449.75 692.19,-2425.25 625,-2425.25"/>
+<text text-anchor="start" x="651.09" y="-2432.45" font-family="arial" font-size="14.00">4x</text>
+<polygon fill="none" stroke="black" points="692.19,-2425.25 692.19,-2449.75 799.88,-2449.75 799.88,-2425.25 692.19,-2425.25"/>
+<text text-anchor="start" x="718.28" y="-2432.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="799.88,-2425.25 799.88,-2449.75 873.81,-2449.75 873.81,-2425.25 799.88,-2425.25"/>
+<text text-anchor="start" x="825.97" y="-2432.45" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="873.81,-2425.25 873.81,-2449.75 1001,-2449.75 1001,-2425.25 873.81,-2425.25"/>
+<text text-anchor="start" x="899.91" y="-2432.45" font-family="arial" font-size="14.00">21.0 Inches</text>
+<text text-anchor="start" x="706.62" y="-2409.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="630.5" y="-2389.95" font-family="arial" font-size="14.00">ECU:F4:Lambda 1 VS in</text>
+<text text-anchor="start" x="795.88" y="-2389.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="854.62" y="-2389.95" font-family="arial" font-size="14.00">LSU:1:VBO2 VS/O2 In</text>
+<polygon fill="#000000" stroke="none" points="625,-2383.25 625,-2385.25 1001,-2385.25 1001,-2383.25 625,-2383.25"/>
+<polygon fill="#895956" stroke="none" points="625,-2381.25 625,-2383.25 1001,-2383.25 1001,-2381.25 625,-2381.25"/>
+<polygon fill="#895956" stroke="none" points="625,-2379.25 625,-2381.25 1001,-2381.25 1001,-2379.25 625,-2379.25"/>
+<polygon fill="#895956" stroke="none" points="625,-2377.25 625,-2379.25 1001,-2379.25 1001,-2377.25 625,-2377.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2375.25 625,-2377.25 1001,-2377.25 1001,-2375.25 625,-2375.25"/>
+<text text-anchor="start" x="626.75" y="-2359.95" font-family="arial" font-size="14.00">ECU:G4:Lambda 1 RCAL</text>
+<text text-anchor="start" x="795.12" y="-2359.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="863.25" y="-2359.95" font-family="arial" font-size="14.00">LSU:2:WBO2 Recal</text>
+<polygon fill="#000000" stroke="none" points="625,-2353.25 625,-2355.25 1001,-2355.25 1001,-2353.25 625,-2353.25"/>
+<polygon fill="#00ff00" stroke="none" points="625,-2351.25 625,-2353.25 1001,-2353.25 1001,-2351.25 625,-2351.25"/>
+<polygon fill="#00ff00" stroke="none" points="625,-2349.25 625,-2351.25 1001,-2351.25 1001,-2349.25 625,-2349.25"/>
+<polygon fill="#00ff00" stroke="none" points="625,-2347.25 625,-2349.25 1001,-2349.25 1001,-2347.25 625,-2347.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2345.25 625,-2347.25 1001,-2347.25 1001,-2345.25 625,-2345.25"/>
+<text text-anchor="start" x="630.88" y="-2329.95" font-family="arial" font-size="14.00">ECU:F3:Lambda 1 COM</text>
+<text text-anchor="start" x="796.25" y="-2329.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="865.12" y="-2329.95" font-family="arial" font-size="14.00">LSU:5:WBO2 COM</text>
+<polygon fill="#000000" stroke="none" points="625,-2323.25 625,-2325.25 1001,-2325.25 1001,-2323.25 625,-2323.25"/>
+<polygon fill="#ffff00" stroke="none" points="625,-2321.25 625,-2323.25 1001,-2323.25 1001,-2321.25 625,-2321.25"/>
+<polygon fill="#ffff00" stroke="none" points="625,-2319.25 625,-2321.25 1001,-2321.25 1001,-2319.25 625,-2319.25"/>
+<polygon fill="#ffff00" stroke="none" points="625,-2317.25 625,-2319.25 1001,-2319.25 1001,-2317.25 625,-2317.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2315.25 625,-2317.25 1001,-2317.25 1001,-2315.25 625,-2315.25"/>
+<text text-anchor="start" x="639.12" y="-2299.95" font-family="arial" font-size="14.00">ECU:G3:Lambda 1 IP</text>
+<text text-anchor="start" x="793.62" y="-2299.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<text text-anchor="start" x="874.5" y="-2299.95" font-family="arial" font-size="14.00">LSU:6:WBO2 IP</text>
+<polygon fill="#000000" stroke="none" points="625,-2293.25 625,-2295.25 1001,-2295.25 1001,-2293.25 625,-2293.25"/>
+<polygon fill="#ffffff" stroke="none" points="625,-2291.25 625,-2293.25 1001,-2293.25 1001,-2291.25 625,-2291.25"/>
+<polygon fill="#ffffff" stroke="none" points="625,-2289.25 625,-2291.25 1001,-2291.25 1001,-2289.25 625,-2289.25"/>
+<polygon fill="#ffffff" stroke="none" points="625,-2287.25 625,-2289.25 1001,-2289.25 1001,-2287.25 625,-2287.25"/>
+<polygon fill="#000000" stroke="none" points="625,-2285.25 625,-2287.25 1001,-2287.25 1001,-2285.25 625,-2285.25"/>
+<text text-anchor="start" x="706.62" y="-2269.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="635.38" y="-2249.95" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
+<text text-anchor="start" x="802.62" y="-2249.95" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="625,-2243.25 625,-2245.25 1001,-2245.25 1001,-2243.25 625,-2243.25"/>
+<text text-anchor="start" x="706.62" y="-2227.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge18" class="edge">
+<g id="edge24" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2364.25C502.82,-2365.04 526.96,-2383.04 624,-2382.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2366.25C501.63,-2366.65 525.76,-2384.65 624,-2384.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2368.25C500.43,-2368.25 524.57,-2386.25 624,-2386.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2370.25C499.24,-2369.85 523.37,-2387.85 624,-2388.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2372.25C498.04,-2371.46 522.18,-2389.46 624,-2390.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2358.25C502.82,-2359.04 526.96,-2377.04 624,-2376.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2360.25C501.63,-2360.65 525.76,-2378.65 624,-2378.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2362.25C500.43,-2362.25 524.57,-2380.25 624,-2380.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2364.25C499.24,-2363.85 523.37,-2381.85 624,-2382.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2366.25C498.04,-2365.46 522.18,-2383.46 624,-2384.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge20" class="edge">
+<g id="edge26" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2268.25C510.87,-2271.72 522.06,-2355.72 624,-2352.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2270.25C508.89,-2271.99 520.07,-2355.99 624,-2354.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2272.25C506.91,-2272.25 518.09,-2356.25 624,-2356.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2274.25C504.93,-2272.51 516.11,-2356.51 624,-2358.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2276.25C502.94,-2272.78 514.13,-2356.78 624,-2360.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2262.25C510.87,-2265.72 522.06,-2349.72 624,-2346.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2264.25C508.89,-2265.99 520.07,-2349.99 624,-2348.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2266.25C506.91,-2266.25 518.09,-2350.25 624,-2350.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2268.25C504.93,-2266.51 516.11,-2350.51 624,-2352.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2270.25C502.94,-2266.78 514.13,-2350.78 624,-2354.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge22" class="edge">
+<g id="edge28" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2388.25C500.48,-2391.29 516.76,-2325.29 624,-2322.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2390.25C502.42,-2391.77 518.7,-2325.77 624,-2324.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2392.25C504.36,-2392.25 520.64,-2326.25 624,-2326.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2394.25C506.3,-2392.73 522.58,-2326.73 624,-2328.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2396.25C508.24,-2393.21 524.52,-2327.21 624,-2330.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2382.25C500.48,-2385.29 516.76,-2319.29 624,-2316.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2384.25C502.42,-2385.77 518.7,-2319.77 624,-2318.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2386.25C504.36,-2386.25 520.64,-2320.25 624,-2320.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M401,-2388.25C506.3,-2386.73 522.58,-2320.73 624,-2322.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2390.25C508.24,-2387.21 524.52,-2321.21 624,-2324.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge24" class="edge">
+<g id="edge30" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2292.25C500.11,-2292.25 524.89,-2292.25 624,-2292.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2294.25C500.11,-2294.25 524.89,-2294.25 624,-2294.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2296.25C500.11,-2296.25 524.89,-2296.25 624,-2296.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2298.25C500.11,-2298.25 524.89,-2298.25 624,-2298.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2300.25C500.11,-2300.25 524.89,-2300.25 624,-2300.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2286.25C500.11,-2286.25 524.89,-2286.25 624,-2286.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2288.25C500.11,-2288.25 524.89,-2288.25 624,-2288.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2290.25C500.11,-2290.25 524.89,-2290.25 624,-2290.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2292.25C500.11,-2292.25 524.89,-2292.25 624,-2292.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2294.25C500.11,-2294.25 524.89,-2294.25 624,-2294.25"/>
</g>
<!-- ECU&#45;&#45;W5 -->
-<g id="edge26" class="edge">
+<g id="edge32" class="edge">
<title>ECU:e&#45;&#45;W5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2488.25C545.95,-2488.25 479.05,-2250.25 624,-2250.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2482.25C545.95,-2482.25 479.05,-2244.25 624,-2244.25"/>
</g>
<!-- W6 -->
-<g id="node23" class="node">
+<g id="node29" class="node">
<title>W6</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="982.5,-2623.25 643.5,-2623.25 643.5,-2504.25 982.5,-2504.25 982.5,-2623.25"/>
-<polygon fill="none" stroke="black" points="643.5,-2598.75 643.5,-2623.25 982.5,-2623.25 982.5,-2598.75 643.5,-2598.75"/>
-<text text-anchor="start" x="801.75" y="-2605.95" font-family="arial" font-size="14.00">W6</text>
-<polygon fill="none" stroke="black" points="643.5,-2574.25 643.5,-2598.75 723,-2598.75 723,-2574.25 643.5,-2574.25"/>
-<text text-anchor="start" x="675.75" y="-2581.45" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="723,-2574.25 723,-2598.75 843,-2598.75 843,-2574.25 723,-2574.25"/>
-<text text-anchor="start" x="755.25" y="-2581.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="843,-2574.25 843,-2598.75 982.5,-2598.75 982.5,-2574.25 843,-2574.25"/>
-<text text-anchor="start" x="875.25" y="-2581.45" font-family="arial" font-size="14.00">21.0 Inches</text>
-<text text-anchor="start" x="720.12" y="-2558.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="645.5" y="-2538.95" font-family="arial" font-size="14.00">ECU:D1:Lambda 1 Heat</text>
-<text text-anchor="start" x="802.12" y="-2538.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="860.5" y="-2538.95" font-family="arial" font-size="14.00">LSU:4:WBO2 HTR</text>
-<polygon fill="#000000" stroke="none" points="643.5,-2532.25 643.5,-2534.25 982.5,-2534.25 982.5,-2532.25 643.5,-2532.25"/>
-<polygon fill="#00ff00" stroke="none" points="643.5,-2530.25 643.5,-2532.25 982.5,-2532.25 982.5,-2530.25 643.5,-2530.25"/>
-<polygon fill="#00ff00" stroke="none" points="643.5,-2528.25 643.5,-2530.25 982.5,-2530.25 982.5,-2528.25 643.5,-2528.25"/>
-<polygon fill="#00ff00" stroke="none" points="643.5,-2526.25 643.5,-2528.25 982.5,-2528.25 982.5,-2526.25 643.5,-2526.25"/>
-<polygon fill="#000000" stroke="none" points="643.5,-2524.25 643.5,-2526.25 982.5,-2526.25 982.5,-2524.25 643.5,-2524.25"/>
-<text text-anchor="start" x="720.12" y="-2508.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="982.5,-2617.25 643.5,-2617.25 643.5,-2498.25 982.5,-2498.25 982.5,-2617.25"/>
+<polygon fill="none" stroke="black" points="643.5,-2592.75 643.5,-2617.25 982.5,-2617.25 982.5,-2592.75 643.5,-2592.75"/>
+<text text-anchor="start" x="801.75" y="-2599.95" font-family="arial" font-size="14.00">W6</text>
+<polygon fill="none" stroke="black" points="643.5,-2568.25 643.5,-2592.75 723,-2592.75 723,-2568.25 643.5,-2568.25"/>
+<text text-anchor="start" x="675.75" y="-2575.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="723,-2568.25 723,-2592.75 843,-2592.75 843,-2568.25 723,-2568.25"/>
+<text text-anchor="start" x="755.25" y="-2575.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="843,-2568.25 843,-2592.75 982.5,-2592.75 982.5,-2568.25 843,-2568.25"/>
+<text text-anchor="start" x="875.25" y="-2575.45" font-family="arial" font-size="14.00">21.0 Inches</text>
+<text text-anchor="start" x="720.12" y="-2552.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="645.5" y="-2532.95" font-family="arial" font-size="14.00">ECU:D1:Lambda 1 Heat</text>
+<text text-anchor="start" x="802.12" y="-2532.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="860.5" y="-2532.95" font-family="arial" font-size="14.00">LSU:4:WBO2 HTR</text>
+<polygon fill="#000000" stroke="none" points="643.5,-2526.25 643.5,-2528.25 982.5,-2528.25 982.5,-2526.25 643.5,-2526.25"/>
+<polygon fill="#00ff00" stroke="none" points="643.5,-2524.25 643.5,-2526.25 982.5,-2526.25 982.5,-2524.25 643.5,-2524.25"/>
+<polygon fill="#00ff00" stroke="none" points="643.5,-2522.25 643.5,-2524.25 982.5,-2524.25 982.5,-2522.25 643.5,-2522.25"/>
+<polygon fill="#00ff00" stroke="none" points="643.5,-2520.25 643.5,-2522.25 982.5,-2522.25 982.5,-2520.25 643.5,-2520.25"/>
+<polygon fill="#000000" stroke="none" points="643.5,-2518.25 643.5,-2520.25 982.5,-2520.25 982.5,-2518.25 643.5,-2518.25"/>
+<text text-anchor="start" x="720.12" y="-2502.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W6 -->
-<g id="edge27" class="edge">
+<g id="edge33" class="edge">
<title>ECU:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2628.25C513.7,-2631.94 521.82,-2528.94 642.5,-2525.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2630.25C515.69,-2632.09 523.82,-2529.09 642.5,-2527.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2632.25C517.69,-2632.25 525.81,-2529.25 642.5,-2529.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2634.25C519.68,-2632.41 527.81,-2529.41 642.5,-2531.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2636.25C521.68,-2632.56 529.8,-2529.56 642.5,-2533.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2622.25C513.7,-2625.94 521.82,-2522.94 642.5,-2519.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2624.25C515.69,-2626.09 523.82,-2523.09 642.5,-2521.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2626.25C517.69,-2626.25 525.81,-2523.25 642.5,-2523.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M401,-2628.25C519.68,-2626.41 527.81,-2523.41 642.5,-2525.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2630.25C521.68,-2626.56 529.8,-2523.56 642.5,-2527.25"/>
</g>
<!-- W7 -->
-<g id="node24" class="node">
+<g id="node30" class="node">
<title>W7</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1041.5,-2892.5 584.5,-2892.5 584.5,-2647 1041.5,-2647 1041.5,-2892.5"/>
-<polygon fill="none" stroke="black" points="584.5,-2868 584.5,-2892.5 1041.5,-2892.5 1041.5,-2868 584.5,-2868"/>
-<text text-anchor="start" x="801.75" y="-2875.2" font-family="arial" font-size="14.00">W7</text>
-<polygon fill="none" stroke="black" points="584.5,-2843.5 584.5,-2868 671.94,-2868 671.94,-2843.5 584.5,-2843.5"/>
-<text text-anchor="start" x="620.72" y="-2850.7" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="671.94,-2843.5 671.94,-2868 799.88,-2868 799.88,-2843.5 671.94,-2843.5"/>
-<text text-anchor="start" x="708.16" y="-2850.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="799.88,-2843.5 799.88,-2868 894.06,-2868 894.06,-2843.5 799.88,-2843.5"/>
-<text text-anchor="start" x="836.09" y="-2850.7" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="894.06,-2843.5 894.06,-2868 1041.5,-2868 1041.5,-2843.5 894.06,-2843.5"/>
-<text text-anchor="start" x="930.28" y="-2850.7" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="657.62" y="-2828.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="610.75" y="-2808.2" font-family="arial" font-size="14.00">ECU:E2:CAN L</text>
-<text text-anchor="start" x="748.38" y="-2808.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="823.88" y="-2808.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:B:CANB_N</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2801.5 584.5,-2803.5 1041.5,-2803.5 1041.5,-2801.5 584.5,-2801.5"/>
-<polygon fill="#ff66cc" stroke="none" points="584.5,-2799.5 584.5,-2801.5 1041.5,-2801.5 1041.5,-2799.5 584.5,-2799.5"/>
-<polygon fill="#ff66cc" stroke="none" points="584.5,-2797.5 584.5,-2799.5 1041.5,-2799.5 1041.5,-2797.5 584.5,-2797.5"/>
-<polygon fill="#ff66cc" stroke="none" points="584.5,-2795.5 584.5,-2797.5 1041.5,-2797.5 1041.5,-2795.5 584.5,-2795.5"/>
-<polygon fill="#000000" stroke="none" points="584.5,-2793.5 584.5,-2795.5 1041.5,-2795.5 1041.5,-2793.5 584.5,-2793.5"/>
-<text text-anchor="start" x="610" y="-2778.2" font-family="arial" font-size="14.00">ECU:E1:CAN H</text>
-<text text-anchor="start" x="748" y="-2778.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<text text-anchor="start" x="823.88" y="-2778.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:A:CANB_P</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2771.5 584.5,-2773.5 1041.5,-2773.5 1041.5,-2771.5 584.5,-2771.5"/>
-<polygon fill="#999999" stroke="none" points="584.5,-2769.5 584.5,-2771.5 1041.5,-2771.5 1041.5,-2769.5 584.5,-2769.5"/>
-<polygon fill="#999999" stroke="none" points="584.5,-2767.5 584.5,-2769.5 1041.5,-2769.5 1041.5,-2767.5 584.5,-2767.5"/>
-<polygon fill="#999999" stroke="none" points="584.5,-2765.5 584.5,-2767.5 1041.5,-2767.5 1041.5,-2765.5 584.5,-2765.5"/>
-<polygon fill="#000000" stroke="none" points="584.5,-2763.5 584.5,-2765.5 1041.5,-2765.5 1041.5,-2763.5 584.5,-2763.5"/>
-<text text-anchor="start" x="586.38" y="-2748.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
-<text text-anchor="start" x="736.38" y="-2748.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
-<text text-anchor="start" x="817.5" y="-2748.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:C:CAN_GND</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2741.5 584.5,-2743.5 1041.5,-2743.5 1041.5,-2741.5 584.5,-2741.5"/>
-<polygon fill="#000000" stroke="none" points="584.5,-2739.5 584.5,-2741.5 1041.5,-2741.5 1041.5,-2739.5 584.5,-2739.5"/>
-<polygon fill="#ffffff" stroke="none" points="584.5,-2737.5 584.5,-2739.5 1041.5,-2739.5 1041.5,-2737.5 584.5,-2737.5"/>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1041.5,-2886.5 584.5,-2886.5 584.5,-2641 1041.5,-2641 1041.5,-2886.5"/>
+<polygon fill="none" stroke="black" points="584.5,-2862 584.5,-2886.5 1041.5,-2886.5 1041.5,-2862 584.5,-2862"/>
+<text text-anchor="start" x="801.75" y="-2869.2" font-family="arial" font-size="14.00">W7</text>
+<polygon fill="none" stroke="black" points="584.5,-2837.5 584.5,-2862 671.94,-2862 671.94,-2837.5 584.5,-2837.5"/>
+<text text-anchor="start" x="620.72" y="-2844.7" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="671.94,-2837.5 671.94,-2862 799.88,-2862 799.88,-2837.5 671.94,-2837.5"/>
+<text text-anchor="start" x="708.16" y="-2844.7" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="799.88,-2837.5 799.88,-2862 894.06,-2862 894.06,-2837.5 799.88,-2837.5"/>
+<text text-anchor="start" x="836.09" y="-2844.7" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="894.06,-2837.5 894.06,-2862 1041.5,-2862 1041.5,-2837.5 894.06,-2837.5"/>
+<text text-anchor="start" x="930.28" y="-2844.7" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="657.62" y="-2822.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="610.75" y="-2802.2" font-family="arial" font-size="14.00">ECU:E2:CAN L</text>
+<text text-anchor="start" x="748.38" y="-2802.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="823.88" y="-2802.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:B:CANB_N</text>
+<polygon fill="#000000" stroke="none" points="584.5,-2795.5 584.5,-2797.5 1041.5,-2797.5 1041.5,-2795.5 584.5,-2795.5"/>
+<polygon fill="#ff66cc" stroke="none" points="584.5,-2793.5 584.5,-2795.5 1041.5,-2795.5 1041.5,-2793.5 584.5,-2793.5"/>
+<polygon fill="#ff66cc" stroke="none" points="584.5,-2791.5 584.5,-2793.5 1041.5,-2793.5 1041.5,-2791.5 584.5,-2791.5"/>
+<polygon fill="#ff66cc" stroke="none" points="584.5,-2789.5 584.5,-2791.5 1041.5,-2791.5 1041.5,-2789.5 584.5,-2789.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2787.5 584.5,-2789.5 1041.5,-2789.5 1041.5,-2787.5 584.5,-2787.5"/>
+<text text-anchor="start" x="610" y="-2772.2" font-family="arial" font-size="14.00">ECU:E1:CAN H</text>
+<text text-anchor="start" x="748" y="-2772.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<text text-anchor="start" x="823.88" y="-2772.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:A:CANB_P</text>
+<polygon fill="#000000" stroke="none" points="584.5,-2765.5 584.5,-2767.5 1041.5,-2767.5 1041.5,-2765.5 584.5,-2765.5"/>
+<polygon fill="#999999" stroke="none" points="584.5,-2763.5 584.5,-2765.5 1041.5,-2765.5 1041.5,-2763.5 584.5,-2763.5"/>
+<polygon fill="#999999" stroke="none" points="584.5,-2761.5 584.5,-2763.5 1041.5,-2763.5 1041.5,-2761.5 584.5,-2761.5"/>
+<polygon fill="#999999" stroke="none" points="584.5,-2759.5 584.5,-2761.5 1041.5,-2761.5 1041.5,-2759.5 584.5,-2759.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2757.5 584.5,-2759.5 1041.5,-2759.5 1041.5,-2757.5 584.5,-2757.5"/>
+<text text-anchor="start" x="586.38" y="-2742.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
+<text text-anchor="start" x="736.38" y="-2742.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
+<text text-anchor="start" x="817.5" y="-2742.2" font-family="arial" font-size="14.00">Veronte 1X CAN Bus:C:CAN_GND</text>
<polygon fill="#000000" stroke="none" points="584.5,-2735.5 584.5,-2737.5 1041.5,-2737.5 1041.5,-2735.5 584.5,-2735.5"/>
<polygon fill="#000000" stroke="none" points="584.5,-2733.5 584.5,-2735.5 1041.5,-2735.5 1041.5,-2733.5 584.5,-2733.5"/>
-<text text-anchor="start" x="657.62" y="-2718.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="586.38" y="-2698.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
-<text text-anchor="start" x="755.12" y="-2698.2" font-family="arial" font-size="14.00">Shield</text>
-<text text-anchor="start" x="877.88" y="-2698.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<polygon fill="#000000" stroke="none" points="584.5,-2691.5 584.5,-2693.5 1041.5,-2693.5 1041.5,-2691.5 584.5,-2691.5"/>
-<text text-anchor="start" x="657.62" y="-2676.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="584.5,-2647 584.5,-2671.5 1041.5,-2671.5 1041.5,-2647 584.5,-2647"/>
-<text text-anchor="start" x="718.12" y="-2654.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Veronte</text>
+<polygon fill="#ffffff" stroke="none" points="584.5,-2731.5 584.5,-2733.5 1041.5,-2733.5 1041.5,-2731.5 584.5,-2731.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2729.5 584.5,-2731.5 1041.5,-2731.5 1041.5,-2729.5 584.5,-2729.5"/>
+<polygon fill="#000000" stroke="none" points="584.5,-2727.5 584.5,-2729.5 1041.5,-2729.5 1041.5,-2727.5 584.5,-2727.5"/>
+<text text-anchor="start" x="657.62" y="-2712.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="586.38" y="-2692.2" font-family="arial" font-size="14.00">ECU:E3:Sheild Ground</text>
+<text text-anchor="start" x="755.12" y="-2692.2" font-family="arial" font-size="14.00">Shield</text>
+<text text-anchor="start" x="877.88" y="-2692.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
+<polygon fill="#000000" stroke="none" points="584.5,-2685.5 584.5,-2687.5 1041.5,-2687.5 1041.5,-2685.5 584.5,-2685.5"/>
+<text text-anchor="start" x="657.62" y="-2670.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="584.5,-2641 584.5,-2665.5 1041.5,-2665.5 1041.5,-2641 584.5,-2641"/>
+<text text-anchor="start" x="718.12" y="-2648.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Veronte</text>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge29" class="edge">
+<g id="edge35" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2508.25C555.57,-2513.79 436.31,-2800.04 583.5,-2794.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2510.25C553.73,-2513.02 434.47,-2799.27 583.5,-2796.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2512.25C551.88,-2512.25 432.62,-2798.5 583.5,-2798.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2514.25C550.03,-2511.48 430.77,-2797.73 583.5,-2800.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2516.25C548.19,-2510.71 428.93,-2796.96 583.5,-2802.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2502.25C555.57,-2507.79 436.31,-2794.04 583.5,-2788.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2504.25C553.73,-2507.02 434.47,-2793.27 583.5,-2790.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2506.25C551.88,-2506.25 432.62,-2792.5 583.5,-2792.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M401,-2508.25C550.03,-2505.48 430.77,-2791.73 583.5,-2794.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2510.25C548.19,-2504.71 428.93,-2790.96 583.5,-2796.5"/>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge31" class="edge">
+<g id="edge37" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2532.25C536.06,-2537.55 456,-2769.8 583.5,-2764.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2534.25C534.17,-2536.9 454.11,-2769.15 583.5,-2766.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2536.25C532.28,-2536.25 452.22,-2768.5 583.5,-2768.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2538.25C530.39,-2535.6 450.33,-2767.85 583.5,-2770.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2540.25C528.5,-2534.95 448.44,-2767.2 583.5,-2772.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2526.25C536.06,-2531.55 456,-2763.8 583.5,-2758.5"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2528.25C534.17,-2530.9 454.11,-2763.15 583.5,-2760.5"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2530.25C532.28,-2530.25 452.22,-2762.5 583.5,-2762.5"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M401,-2532.25C530.39,-2529.6 450.33,-2761.85 583.5,-2764.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2534.25C528.5,-2528.95 448.44,-2761.2 583.5,-2766.5"/>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge33" class="edge">
+<g id="edge39" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2484.25C542.41,-2489.64 449.59,-2739.89 583.5,-2734.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2486.25C540.53,-2488.95 447.72,-2739.2 583.5,-2736.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2488.25C538.66,-2488.25 445.84,-2738.5 583.5,-2738.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2490.25C536.78,-2487.55 443.97,-2737.8 583.5,-2740.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2492.25C534.91,-2486.86 442.09,-2737.11 583.5,-2742.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2478.25C542.41,-2483.64 449.59,-2733.89 583.5,-2728.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2480.25C540.53,-2482.95 447.72,-2733.2 583.5,-2730.5"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M401,-2482.25C538.66,-2482.25 445.84,-2732.5 583.5,-2732.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2484.25C536.78,-2481.55 443.97,-2731.8 583.5,-2734.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2486.25C534.91,-2480.86 442.09,-2731.11 583.5,-2736.5"/>
</g>
<!-- ECU&#45;&#45;W7 -->
-<g id="edge35" class="edge">
+<g id="edge41" class="edge">
<title>ECU:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2488.25C522.74,-2488.25 461.76,-2692.5 583.5,-2692.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2482.25C522.74,-2482.25 461.76,-2686.5 583.5,-2686.5"/>
</g>
<!-- W8 -->
-<g id="node25" class="node">
+<g id="node31" class="node">
<title>W8</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1081,-2177.25 545,-2177.25 545,-2028.25 1081,-2028.25 1081,-2177.25"/>
-<polygon fill="none" stroke="black" points="545,-2152.75 545,-2177.25 1081,-2177.25 1081,-2152.75 545,-2152.75"/>
-<text text-anchor="start" x="801.75" y="-2159.95" font-family="arial" font-size="14.00">W8</text>
-<polygon fill="none" stroke="black" points="545,-2128.25 545,-2152.75 690.17,-2152.75 690.17,-2128.25 545,-2128.25"/>
-<text text-anchor="start" x="610.08" y="-2135.45" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="690.17,-2128.25 690.17,-2152.75 875.83,-2152.75 875.83,-2128.25 690.17,-2128.25"/>
-<text text-anchor="start" x="755.25" y="-2135.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="875.83,-2128.25 875.83,-2152.75 1081,-2152.75 1081,-2128.25 875.83,-2128.25"/>
-<text text-anchor="start" x="940.92" y="-2135.45" font-family="arial" font-size="14.00">33.5 Inches</text>
-<text text-anchor="start" x="663.12" y="-2112.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="588.88" y="-2092.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="786.88" y="-2092.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="843.75" y="-2092.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:2:Sensor GND</text>
-<polygon fill="#000000" stroke="none" points="545,-2086.25 545,-2088.25 1081,-2088.25 1081,-2086.25 545,-2086.25"/>
-<polygon fill="#895956" stroke="none" points="545,-2084.25 545,-2086.25 1081,-2086.25 1081,-2084.25 545,-2084.25"/>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1081,-2175.25 545,-2175.25 545,-2026.25 1081,-2026.25 1081,-2175.25"/>
+<polygon fill="none" stroke="black" points="545,-2150.75 545,-2175.25 1081,-2175.25 1081,-2150.75 545,-2150.75"/>
+<text text-anchor="start" x="801.75" y="-2157.95" font-family="arial" font-size="14.00">W8</text>
+<polygon fill="none" stroke="black" points="545,-2126.25 545,-2150.75 690.17,-2150.75 690.17,-2126.25 545,-2126.25"/>
+<text text-anchor="start" x="610.08" y="-2133.45" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="690.17,-2126.25 690.17,-2150.75 875.83,-2150.75 875.83,-2126.25 690.17,-2126.25"/>
+<text text-anchor="start" x="755.25" y="-2133.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="875.83,-2126.25 875.83,-2150.75 1081,-2150.75 1081,-2126.25 875.83,-2126.25"/>
+<text text-anchor="start" x="940.92" y="-2133.45" font-family="arial" font-size="14.00">33.5 Inches</text>
+<text text-anchor="start" x="663.12" y="-2110.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="588.88" y="-2090.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="786.88" y="-2090.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="843.75" y="-2090.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:2:Sensor GND</text>
+<polygon fill="#000000" stroke="none" points="545,-2084.25 545,-2086.25 1081,-2086.25 1081,-2084.25 545,-2084.25"/>
<polygon fill="#895956" stroke="none" points="545,-2082.25 545,-2084.25 1081,-2084.25 1081,-2082.25 545,-2082.25"/>
<polygon fill="#895956" stroke="none" points="545,-2080.25 545,-2082.25 1081,-2082.25 1081,-2080.25 545,-2080.25"/>
-<polygon fill="#000000" stroke="none" points="545,-2078.25 545,-2080.25 1081,-2080.25 1081,-2078.25 545,-2078.25"/>
-<text text-anchor="start" x="546.88" y="-2062.95" font-family="arial" font-size="14.00">ECU:F1:Coolant Temperature sensor</text>
-<text text-anchor="start" x="786.88" y="-2062.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="857.25" y="-2062.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:1:Sensor+</text>
-<polygon fill="#000000" stroke="none" points="545,-2056.25 545,-2058.25 1081,-2058.25 1081,-2056.25 545,-2056.25"/>
+<polygon fill="#895956" stroke="none" points="545,-2078.25 545,-2080.25 1081,-2080.25 1081,-2078.25 545,-2078.25"/>
+<polygon fill="#000000" stroke="none" points="545,-2076.25 545,-2078.25 1081,-2078.25 1081,-2076.25 545,-2076.25"/>
+<text text-anchor="start" x="546.88" y="-2060.95" font-family="arial" font-size="14.00">ECU:F1:Coolant Temperature sensor</text>
+<text text-anchor="start" x="786.88" y="-2060.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="857.25" y="-2060.95" font-family="arial" font-size="14.00">Coolant/Crank Sensor:1:Sensor+</text>
<polygon fill="#000000" stroke="none" points="545,-2054.25 545,-2056.25 1081,-2056.25 1081,-2054.25 545,-2054.25"/>
<polygon fill="#000000" stroke="none" points="545,-2052.25 545,-2054.25 1081,-2054.25 1081,-2052.25 545,-2052.25"/>
<polygon fill="#000000" stroke="none" points="545,-2050.25 545,-2052.25 1081,-2052.25 1081,-2050.25 545,-2050.25"/>
<polygon fill="#000000" stroke="none" points="545,-2048.25 545,-2050.25 1081,-2050.25 1081,-2048.25 545,-2048.25"/>
-<text text-anchor="start" x="663.12" y="-2032.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#000000" stroke="none" points="545,-2046.25 545,-2048.25 1081,-2048.25 1081,-2046.25 545,-2046.25"/>
+<text text-anchor="start" x="663.12" y="-2030.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W8 -->
-<g id="edge40" class="edge">
+<g id="edge46" class="edge">
<title>ECU:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C494.51,-2249.42 443.84,-2084.42 545,-2079.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C496.42,-2248.84 445.75,-2083.84 545,-2081.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C498.33,-2248.25 447.67,-2083.25 545,-2083.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C500.25,-2247.66 449.58,-2082.66 545,-2085.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C502.16,-2247.08 451.49,-2082.08 545,-2087.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C493.17,-2243.39 445.17,-2082.39 545,-2077.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C495.08,-2242.82 447.08,-2081.82 545,-2079.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C497,-2242.25 449,-2081.25 545,-2081.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C498.92,-2241.68 450.92,-2080.68 545,-2083.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C500.83,-2241.11 452.83,-2080.11 545,-2085.25"/>
</g>
<!-- ECU&#45;&#45;W8 -->
-<g id="edge42" class="edge">
+<g id="edge48" class="edge">
<title>ECU:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2436.25C581.06,-2442.25 358.01,-2055.25 545,-2049.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2438.25C582.79,-2441.25 359.75,-2054.25 545,-2051.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2440.25C584.52,-2440.25 361.48,-2053.25 545,-2053.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2442.25C586.25,-2439.25 363.21,-2052.25 545,-2055.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2444.25C587.99,-2438.25 364.94,-2051.25 545,-2057.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2430.25C579.39,-2436.24 359.67,-2053.24 545,-2047.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2432.25C581.12,-2435.25 361.41,-2052.25 545,-2049.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2434.25C582.86,-2434.25 363.14,-2051.25 545,-2051.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2436.25C584.59,-2433.25 364.88,-2050.25 545,-2053.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2438.25C586.33,-2432.26 366.61,-2049.26 545,-2055.25"/>
</g>
<!-- W9 -->
-<g id="node26" class="node">
+<g id="node32" class="node">
<title>W9</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1013.5,-1891.25 612.5,-1891.25 612.5,-1712.25 1013.5,-1712.25 1013.5,-1891.25"/>
-<polygon fill="none" stroke="black" points="612.5,-1866.75 612.5,-1891.25 1013.5,-1891.25 1013.5,-1866.75 612.5,-1866.75"/>
-<text text-anchor="start" x="801.75" y="-1873.95" font-family="arial" font-size="14.00">W9</text>
-<polygon fill="none" stroke="black" points="612.5,-1842.25 612.5,-1866.75 712.67,-1866.75 712.67,-1842.25 612.5,-1842.25"/>
-<text text-anchor="start" x="655.08" y="-1849.45" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="712.67,-1842.25 712.67,-1866.75 853.33,-1866.75 853.33,-1842.25 712.67,-1842.25"/>
-<text text-anchor="start" x="755.25" y="-1849.45" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="853.33,-1842.25 853.33,-1866.75 1013.5,-1866.75 1013.5,-1842.25 853.33,-1842.25"/>
-<text text-anchor="start" x="895.92" y="-1849.45" font-family="arial" font-size="14.00">27.0 Inches</text>
-<text text-anchor="start" x="714.62" y="-1826.95" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="640.38" y="-1806.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="822.38" y="-1806.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="881" y="-1806.95" font-family="arial" font-size="14.00">MAF Sensor:1:NTC&#45;</text>
-<polygon fill="#000000" stroke="none" points="612.5,-1800.25 612.5,-1802.25 1013.5,-1802.25 1013.5,-1800.25 612.5,-1800.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1798.25 612.5,-1800.25 1013.5,-1800.25 1013.5,-1798.25 612.5,-1798.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1796.25 612.5,-1798.25 1013.5,-1798.25 1013.5,-1796.25 612.5,-1796.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1794.25 612.5,-1796.25 1013.5,-1796.25 1013.5,-1794.25 612.5,-1794.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1792.25 612.5,-1794.25 1013.5,-1794.25 1013.5,-1792.25 612.5,-1792.25"/>
-<text text-anchor="start" x="640.38" y="-1776.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
-<text text-anchor="start" x="822.38" y="-1776.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="882.12" y="-1776.95" font-family="arial" font-size="14.00">MAF Sensor:2:GND</text>
-<polygon fill="#000000" stroke="none" points="612.5,-1770.25 612.5,-1772.25 1013.5,-1772.25 1013.5,-1770.25 612.5,-1770.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1768.25 612.5,-1770.25 1013.5,-1770.25 1013.5,-1768.25 612.5,-1768.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1766.25 612.5,-1768.25 1013.5,-1768.25 1013.5,-1766.25 612.5,-1766.25"/>
-<polygon fill="#895956" stroke="none" points="612.5,-1764.25 612.5,-1766.25 1013.5,-1766.25 1013.5,-1764.25 612.5,-1764.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1762.25 612.5,-1764.25 1013.5,-1764.25 1013.5,-1762.25 612.5,-1762.25"/>
-<text text-anchor="start" x="614.12" y="-1746.95" font-family="arial" font-size="14.00">ECU:F2:Air Temperature sensor</text>
-<text text-anchor="start" x="822.38" y="-1746.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="879.12" y="-1746.95" font-family="arial" font-size="14.00">MAF Sensor:3:NTC+</text>
-<polygon fill="#000000" stroke="none" points="612.5,-1740.25 612.5,-1742.25 1013.5,-1742.25 1013.5,-1740.25 612.5,-1740.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1738.25 612.5,-1740.25 1013.5,-1740.25 1013.5,-1738.25 612.5,-1738.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1736.25 612.5,-1738.25 1013.5,-1738.25 1013.5,-1736.25 612.5,-1736.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1734.25 612.5,-1736.25 1013.5,-1736.25 1013.5,-1734.25 612.5,-1734.25"/>
-<polygon fill="#000000" stroke="none" points="612.5,-1732.25 612.5,-1734.25 1013.5,-1734.25 1013.5,-1732.25 612.5,-1732.25"/>
-<text text-anchor="start" x="714.62" y="-1716.95" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1013.5,-1864.25 612.5,-1864.25 612.5,-1685.25 1013.5,-1685.25 1013.5,-1864.25"/>
+<polygon fill="none" stroke="black" points="612.5,-1839.75 612.5,-1864.25 1013.5,-1864.25 1013.5,-1839.75 612.5,-1839.75"/>
+<text text-anchor="start" x="801.75" y="-1846.95" font-family="arial" font-size="14.00">W9</text>
+<polygon fill="none" stroke="black" points="612.5,-1815.25 612.5,-1839.75 712.67,-1839.75 712.67,-1815.25 612.5,-1815.25"/>
+<text text-anchor="start" x="655.08" y="-1822.45" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="712.67,-1815.25 712.67,-1839.75 853.33,-1839.75 853.33,-1815.25 712.67,-1815.25"/>
+<text text-anchor="start" x="755.25" y="-1822.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="853.33,-1815.25 853.33,-1839.75 1013.5,-1839.75 1013.5,-1815.25 853.33,-1815.25"/>
+<text text-anchor="start" x="895.92" y="-1822.45" font-family="arial" font-size="14.00">27.0 Inches</text>
+<text text-anchor="start" x="714.62" y="-1799.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="640.38" y="-1779.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="822.38" y="-1779.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="881" y="-1779.95" font-family="arial" font-size="14.00">MAF Sensor:1:NTC&#45;</text>
+<polygon fill="#000000" stroke="none" points="612.5,-1773.25 612.5,-1775.25 1013.5,-1775.25 1013.5,-1773.25 612.5,-1773.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1771.25 612.5,-1773.25 1013.5,-1773.25 1013.5,-1771.25 612.5,-1771.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1769.25 612.5,-1771.25 1013.5,-1771.25 1013.5,-1769.25 612.5,-1769.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1767.25 612.5,-1769.25 1013.5,-1769.25 1013.5,-1767.25 612.5,-1767.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1765.25 612.5,-1767.25 1013.5,-1767.25 1013.5,-1765.25 612.5,-1765.25"/>
+<text text-anchor="start" x="640.38" y="-1749.95" font-family="arial" font-size="14.00">ECU:H1:Sensor Ground</text>
+<text text-anchor="start" x="822.38" y="-1749.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="882.12" y="-1749.95" font-family="arial" font-size="14.00">MAF Sensor:2:GND</text>
+<polygon fill="#000000" stroke="none" points="612.5,-1743.25 612.5,-1745.25 1013.5,-1745.25 1013.5,-1743.25 612.5,-1743.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1741.25 612.5,-1743.25 1013.5,-1743.25 1013.5,-1741.25 612.5,-1741.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1739.25 612.5,-1741.25 1013.5,-1741.25 1013.5,-1739.25 612.5,-1739.25"/>
+<polygon fill="#895956" stroke="none" points="612.5,-1737.25 612.5,-1739.25 1013.5,-1739.25 1013.5,-1737.25 612.5,-1737.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1735.25 612.5,-1737.25 1013.5,-1737.25 1013.5,-1735.25 612.5,-1735.25"/>
+<text text-anchor="start" x="614.12" y="-1719.95" font-family="arial" font-size="14.00">ECU:F2:Air Temperature sensor</text>
+<text text-anchor="start" x="822.38" y="-1719.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="879.12" y="-1719.95" font-family="arial" font-size="14.00">MAF Sensor:3:NTC+</text>
+<polygon fill="#000000" stroke="none" points="612.5,-1713.25 612.5,-1715.25 1013.5,-1715.25 1013.5,-1713.25 612.5,-1713.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1711.25 612.5,-1713.25 1013.5,-1713.25 1013.5,-1711.25 612.5,-1711.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1709.25 612.5,-1711.25 1013.5,-1711.25 1013.5,-1709.25 612.5,-1709.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1707.25 612.5,-1709.25 1013.5,-1709.25 1013.5,-1707.25 612.5,-1707.25"/>
+<polygon fill="#000000" stroke="none" points="612.5,-1705.25 612.5,-1707.25 1013.5,-1707.25 1013.5,-1705.25 612.5,-1705.25"/>
+<text text-anchor="start" x="714.62" y="-1689.95" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECU&#45;&#45;W9 -->
-<g id="edge44" class="edge">
+<g id="edge50" class="edge">
<title>ECU:e&#45;&#45;W9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C618.65,-2250.08 386.74,-1799.08 611.5,-1793.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C620.42,-2249.16 388.52,-1798.16 611.5,-1795.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C622.2,-2248.25 390.3,-1797.25 611.5,-1797.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C623.98,-2247.34 392.08,-1796.34 611.5,-1799.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C625.76,-2246.42 393.85,-1795.42 611.5,-1801.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C627.16,-2244.12 378.27,-1772.12 611.5,-1766.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C628.92,-2243.18 380.04,-1771.18 611.5,-1768.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C630.69,-2242.25 381.81,-1770.25 611.5,-1770.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C632.46,-2241.32 383.58,-1769.32 611.5,-1772.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C634.23,-2240.38 385.34,-1768.38 611.5,-1774.25"/>
</g>
<!-- ECU&#45;&#45;W9 -->
-<g id="edge46" class="edge">
+<g id="edge52" class="edge">
<title>ECU:e&#45;&#45;W9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2244.25C630.82,-2250.13 374.62,-1769.13 611.5,-1763.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2246.25C632.59,-2249.19 376.38,-1768.19 611.5,-1765.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2248.25C634.35,-2248.25 378.15,-1767.25 611.5,-1767.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2250.25C636.12,-2247.31 379.91,-1766.31 611.5,-1769.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2252.25C637.88,-2246.37 381.68,-1765.37 611.5,-1771.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2238.25C639.42,-2244.16 366.05,-1742.16 611.5,-1736.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2240.25C641.18,-2243.21 367.81,-1741.21 611.5,-1738.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2242.25C642.93,-2242.25 369.57,-1740.25 611.5,-1740.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M401,-2244.25C644.69,-2241.29 371.32,-1739.29 611.5,-1742.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2246.25C646.45,-2240.34 373.08,-1738.34 611.5,-1744.25"/>
</g>
<!-- ECU&#45;&#45;W9 -->
-<g id="edge48" class="edge">
+<g id="edge54" class="edge">
<title>ECU:e&#45;&#45;W9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2412.25C713.55,-2418.36 292.15,-1739.36 611.5,-1733.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2414.25C715.25,-2417.3 293.85,-1738.3 611.5,-1735.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2416.25C716.95,-2416.25 295.55,-1737.25 611.5,-1737.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2418.25C718.65,-2415.2 297.25,-1736.2 611.5,-1739.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2420.25C720.35,-2414.14 298.95,-1735.14 611.5,-1741.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2406.25C722.49,-2412.38 283.24,-1712.38 611.5,-1706.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2408.25C724.18,-2411.31 284.93,-1711.31 611.5,-1708.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2410.25C725.87,-2410.25 286.63,-1710.25 611.5,-1710.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2412.25C727.57,-2409.19 288.32,-1709.19 611.5,-1712.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-2414.25C729.26,-2408.12 290.01,-1708.12 611.5,-1714.25"/>
</g>
<!-- W10 -->
-<g id="node27" class="node">
+<g id="node33" class="node">
<title>W10</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="967,-868.5 659,-868.5 659,-725 967,-725 967,-868.5"/>
-<polygon fill="none" stroke="black" points="659,-844 659,-868.5 967,-868.5 967,-844 659,-844"/>
-<text text-anchor="start" x="797.62" y="-851.2" font-family="arial" font-size="14.00">W10</text>
-<polygon fill="none" stroke="black" points="659,-819.5 659,-844 728.17,-844 728.17,-819.5 659,-819.5"/>
-<text text-anchor="start" x="686.08" y="-826.7" font-family="arial" font-size="14.00">1x</text>
-<polygon fill="none" stroke="black" points="728.17,-819.5 728.17,-844 837.83,-844 837.83,-819.5 728.17,-819.5"/>
-<text text-anchor="start" x="755.25" y="-826.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="837.83,-819.5 837.83,-844 967,-844 967,-819.5 837.83,-819.5"/>
-<text text-anchor="start" x="864.92" y="-826.7" font-family="arial" font-size="14.00">37.0 Inches</text>
-<text text-anchor="start" x="722.12" y="-804.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="661" y="-784.2" font-family="arial" font-size="14.00">ECU:K4:Rotor RPM</text>
-<text text-anchor="start" x="790.88" y="-784.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="848" y="-784.2" font-family="arial" font-size="14.00">Tachometer:C:Out</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="967,-874.5 659,-874.5 659,-731 967,-731 967,-874.5"/>
+<polygon fill="none" stroke="black" points="659,-850 659,-874.5 967,-874.5 967,-850 659,-850"/>
+<text text-anchor="start" x="797.62" y="-857.2" font-family="arial" font-size="14.00">W10</text>
+<polygon fill="none" stroke="black" points="659,-825.5 659,-850 728.17,-850 728.17,-825.5 659,-825.5"/>
+<text text-anchor="start" x="686.08" y="-832.7" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="728.17,-825.5 728.17,-850 837.83,-850 837.83,-825.5 728.17,-825.5"/>
+<text text-anchor="start" x="755.25" y="-832.7" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="837.83,-825.5 837.83,-850 967,-850 967,-825.5 837.83,-825.5"/>
+<text text-anchor="start" x="864.92" y="-832.7" font-family="arial" font-size="14.00">37.0 Inches</text>
+<text text-anchor="start" x="722.12" y="-810.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="661" y="-790.2" font-family="arial" font-size="14.00">ECU:K4:Rotor RPM</text>
+<text text-anchor="start" x="790.88" y="-790.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="848" y="-790.2" font-family="arial" font-size="14.00">Tachometer:C:Out</text>
+<polygon fill="#000000" stroke="none" points="659,-783.5 659,-785.5 967,-785.5 967,-783.5 659,-783.5"/>
+<polygon fill="#000000" stroke="none" points="659,-781.5 659,-783.5 967,-783.5 967,-781.5 659,-781.5"/>
+<polygon fill="#000000" stroke="none" points="659,-779.5 659,-781.5 967,-781.5 967,-779.5 659,-779.5"/>
<polygon fill="#000000" stroke="none" points="659,-777.5 659,-779.5 967,-779.5 967,-777.5 659,-777.5"/>
<polygon fill="#000000" stroke="none" points="659,-775.5 659,-777.5 967,-777.5 967,-775.5 659,-775.5"/>
-<polygon fill="#000000" stroke="none" points="659,-773.5 659,-775.5 967,-775.5 967,-773.5 659,-773.5"/>
-<polygon fill="#000000" stroke="none" points="659,-771.5 659,-773.5 967,-773.5 967,-771.5 659,-771.5"/>
-<polygon fill="#000000" stroke="none" points="659,-769.5 659,-771.5 967,-771.5 967,-769.5 659,-769.5"/>
-<text text-anchor="start" x="722.12" y="-754.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="659,-725 659,-749.5 967,-749.5 967,-725 659,-725"/>
-<text text-anchor="start" x="697.88" y="-732.2" font-family="arial" font-size="14.00">Included cable is of sufficient length.</text>
+<text text-anchor="start" x="722.12" y="-760.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="659,-731 659,-755.5 967,-755.5 967,-731 659,-731"/>
+<text text-anchor="start" x="697.88" y="-738.2" font-family="arial" font-size="14.00">Included cable is of sufficient length.</text>
</g>
<!-- ECU&#45;&#45;W10 -->
-<g id="edge50" class="edge">
+<g id="edge56" class="edge">
<title>ECU:e&#45;&#45;W10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1980.25C671.94,-1985.19 379.28,-775.44 658,-770.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1982.25C673.89,-1984.72 381.22,-774.97 658,-772.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1984.25C675.83,-1984.25 383.17,-774.5 658,-774.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1986.25C677.78,-1983.78 385.11,-774.03 658,-776.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1988.25C679.72,-1983.31 387.06,-773.56 658,-778.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1974.25C669.34,-1979.18 381.89,-781.43 658,-776.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1976.25C671.28,-1978.72 383.83,-780.97 658,-778.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1978.25C673.22,-1978.25 385.78,-780.5 658,-780.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1980.25C675.17,-1977.78 387.72,-780.03 658,-782.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M401,-1982.25C677.11,-1977.32 389.66,-779.57 658,-784.5"/>
</g>
<!-- Coil Pack 1 -->
<g id="node2" class="node">
<title>Coil Pack 1</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-4542.25 1328.5,-4542.25 1328.5,-4197.25 1555.5,-4197.25 1555.5,-4542.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-4517.75 1328.5,-4542.25 1555.5,-4542.25 1555.5,-4517.75 1328.5,-4517.75"/>
-<text text-anchor="start" x="1406" y="-4524.95" font-family="arial" font-size="14.00">Coil Pack 1</text>
-<polygon fill="none" stroke="black" points="1328.5,-4493.25 1328.5,-4517.75 1481.38,-4517.75 1481.38,-4493.25 1328.5,-4493.25"/>
-<text text-anchor="start" x="1349.81" y="-4500.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-4493.25 1481.38,-4517.75 1555.5,-4517.75 1555.5,-4493.25 1481.38,-4493.25"/>
-<text text-anchor="start" x="1502.69" y="-4500.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-4469.25 1328.5,-4493.25 1399,-4493.25 1399,-4469.25 1328.5,-4469.25"/>
-<text text-anchor="start" x="1358.88" y="-4475.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-4469.25 1399,-4493.25 1555.5,-4493.25 1555.5,-4469.25 1399,-4469.25"/>
-<text text-anchor="start" x="1449.88" y="-4475.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-4445.25 1328.5,-4469.25 1399,-4469.25 1399,-4445.25 1328.5,-4445.25"/>
-<text text-anchor="start" x="1358.88" y="-4451.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-4445.25 1399,-4469.25 1555.5,-4469.25 1555.5,-4445.25 1399,-4445.25"/>
-<text text-anchor="start" x="1428.88" y="-4451.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4421.25 1328.5,-4445.25 1399,-4445.25 1399,-4421.25 1328.5,-4421.25"/>
-<text text-anchor="start" x="1358.5" y="-4427.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-4421.25 1399,-4445.25 1555.5,-4445.25 1555.5,-4421.25 1399,-4421.25"/>
-<text text-anchor="start" x="1434.88" y="-4427.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4397.25 1328.5,-4421.25 1399,-4421.25 1399,-4397.25 1328.5,-4397.25"/>
-<text text-anchor="start" x="1358.5" y="-4403.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-4397.25 1399,-4421.25 1555.5,-4421.25 1555.5,-4397.25 1399,-4397.25"/>
-<text text-anchor="start" x="1429.62" y="-4403.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4373.25 1328.5,-4397.25 1399,-4397.25 1399,-4373.25 1328.5,-4373.25"/>
-<text text-anchor="start" x="1358.88" y="-4379.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-4373.25 1399,-4397.25 1555.5,-4397.25 1555.5,-4373.25 1399,-4373.25"/>
-<text text-anchor="start" x="1433.38" y="-4379.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-4197.25 1328.5,-4373.25 1555.5,-4373.25 1555.5,-4197.25 1328.5,-4197.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-4369.25"/>
+<polygon fill="#ffffff" stroke="black" points="2572.75,-3916.25 2345.75,-3916.25 2345.75,-3571.25 2572.75,-3571.25 2572.75,-3916.25"/>
+<polygon fill="none" stroke="black" points="2345.75,-3891.75 2345.75,-3916.25 2572.75,-3916.25 2572.75,-3891.75 2345.75,-3891.75"/>
+<text text-anchor="start" x="2423.25" y="-3898.95" font-family="arial" font-size="14.00">Coil Pack 1</text>
+<polygon fill="none" stroke="black" points="2345.75,-3867.25 2345.75,-3891.75 2498.62,-3891.75 2498.62,-3867.25 2345.75,-3867.25"/>
+<text text-anchor="start" x="2367.06" y="-3874.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="2498.62,-3867.25 2498.62,-3891.75 2572.75,-3891.75 2572.75,-3867.25 2498.62,-3867.25"/>
+<text text-anchor="start" x="2519.94" y="-3874.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="2345.75,-3843.25 2345.75,-3867.25 2416.25,-3867.25 2416.25,-3843.25 2345.75,-3843.25"/>
+<text text-anchor="start" x="2376.12" y="-3849.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2416.25,-3843.25 2416.25,-3867.25 2572.75,-3867.25 2572.75,-3843.25 2416.25,-3843.25"/>
+<text text-anchor="start" x="2467.12" y="-3849.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="2345.75,-3819.25 2345.75,-3843.25 2416.25,-3843.25 2416.25,-3819.25 2345.75,-3819.25"/>
+<text text-anchor="start" x="2376.12" y="-3825.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2416.25,-3819.25 2416.25,-3843.25 2572.75,-3843.25 2572.75,-3819.25 2416.25,-3819.25"/>
+<text text-anchor="start" x="2446.12" y="-3825.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3795.25 2345.75,-3819.25 2416.25,-3819.25 2416.25,-3795.25 2345.75,-3795.25"/>
+<text text-anchor="start" x="2375.75" y="-3801.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2416.25,-3795.25 2416.25,-3819.25 2572.75,-3819.25 2572.75,-3795.25 2416.25,-3795.25"/>
+<text text-anchor="start" x="2452.12" y="-3801.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3771.25 2345.75,-3795.25 2416.25,-3795.25 2416.25,-3771.25 2345.75,-3771.25"/>
+<text text-anchor="start" x="2375.75" y="-3777.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="2416.25,-3771.25 2416.25,-3795.25 2572.75,-3795.25 2572.75,-3771.25 2416.25,-3771.25"/>
+<text text-anchor="start" x="2446.88" y="-3777.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3747.25 2345.75,-3771.25 2416.25,-3771.25 2416.25,-3747.25 2345.75,-3747.25"/>
+<text text-anchor="start" x="2376.12" y="-3753.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="2416.25,-3747.25 2416.25,-3771.25 2572.75,-3771.25 2572.75,-3747.25 2416.25,-3747.25"/>
+<text text-anchor="start" x="2450.62" y="-3753.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="2345.75,-3571.25 2345.75,-3747.25 2572.75,-3747.25 2572.75,-3571.25 2345.75,-3571.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="2349.75" y="-3743.25"/>
</g>
<!-- Coil Pack 2 -->
<g id="node3" class="node">
<title>Coil Pack 2</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-4173.25 1328.5,-4173.25 1328.5,-3828.25 1555.5,-3828.25 1555.5,-4173.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-4148.75 1328.5,-4173.25 1555.5,-4173.25 1555.5,-4148.75 1328.5,-4148.75"/>
-<text text-anchor="start" x="1406" y="-4155.95" font-family="arial" font-size="14.00">Coil Pack 2</text>
-<polygon fill="none" stroke="black" points="1328.5,-4124.25 1328.5,-4148.75 1481.38,-4148.75 1481.38,-4124.25 1328.5,-4124.25"/>
-<text text-anchor="start" x="1349.81" y="-4131.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-4124.25 1481.38,-4148.75 1555.5,-4148.75 1555.5,-4124.25 1481.38,-4124.25"/>
-<text text-anchor="start" x="1502.69" y="-4131.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-4100.25 1328.5,-4124.25 1399,-4124.25 1399,-4100.25 1328.5,-4100.25"/>
-<text text-anchor="start" x="1358.88" y="-4106.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-4100.25 1399,-4124.25 1555.5,-4124.25 1555.5,-4100.25 1399,-4100.25"/>
-<text text-anchor="start" x="1449.88" y="-4106.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-4076.25 1328.5,-4100.25 1399,-4100.25 1399,-4076.25 1328.5,-4076.25"/>
-<text text-anchor="start" x="1358.88" y="-4082.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-4076.25 1399,-4100.25 1555.5,-4100.25 1555.5,-4076.25 1399,-4076.25"/>
-<text text-anchor="start" x="1428.88" y="-4082.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4052.25 1328.5,-4076.25 1399,-4076.25 1399,-4052.25 1328.5,-4052.25"/>
-<text text-anchor="start" x="1358.5" y="-4058.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-4052.25 1399,-4076.25 1555.5,-4076.25 1555.5,-4052.25 1399,-4052.25"/>
-<text text-anchor="start" x="1434.88" y="-4058.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4028.25 1328.5,-4052.25 1399,-4052.25 1399,-4028.25 1328.5,-4028.25"/>
-<text text-anchor="start" x="1358.5" y="-4034.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-4028.25 1399,-4052.25 1555.5,-4052.25 1555.5,-4028.25 1399,-4028.25"/>
-<text text-anchor="start" x="1429.62" y="-4034.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-4004.25 1328.5,-4028.25 1399,-4028.25 1399,-4004.25 1328.5,-4004.25"/>
-<text text-anchor="start" x="1358.88" y="-4010.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-4004.25 1399,-4028.25 1555.5,-4028.25 1555.5,-4004.25 1399,-4004.25"/>
-<text text-anchor="start" x="1433.38" y="-4010.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-3828.25 1328.5,-4004.25 1555.5,-4004.25 1555.5,-3828.25 1328.5,-3828.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-4000.25"/>
+<polygon fill="#ffffff" stroke="black" points="1555.5,-3631.25 1328.5,-3631.25 1328.5,-3286.25 1555.5,-3286.25 1555.5,-3631.25"/>
+<polygon fill="none" stroke="black" points="1328.5,-3606.75 1328.5,-3631.25 1555.5,-3631.25 1555.5,-3606.75 1328.5,-3606.75"/>
+<text text-anchor="start" x="1406" y="-3613.95" font-family="arial" font-size="14.00">Coil Pack 2</text>
+<polygon fill="none" stroke="black" points="1328.5,-3582.25 1328.5,-3606.75 1481.38,-3606.75 1481.38,-3582.25 1328.5,-3582.25"/>
+<text text-anchor="start" x="1349.81" y="-3589.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="1481.38,-3582.25 1481.38,-3606.75 1555.5,-3606.75 1555.5,-3582.25 1481.38,-3582.25"/>
+<text text-anchor="start" x="1502.69" y="-3589.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="1328.5,-3558.25 1328.5,-3582.25 1399,-3582.25 1399,-3558.25 1328.5,-3558.25"/>
+<text text-anchor="start" x="1358.88" y="-3564.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1399,-3558.25 1399,-3582.25 1555.5,-3582.25 1555.5,-3558.25 1399,-3558.25"/>
+<text text-anchor="start" x="1449.88" y="-3564.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="1328.5,-3534.25 1328.5,-3558.25 1399,-3558.25 1399,-3534.25 1328.5,-3534.25"/>
+<text text-anchor="start" x="1358.88" y="-3540.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1399,-3534.25 1399,-3558.25 1555.5,-3558.25 1555.5,-3534.25 1399,-3534.25"/>
+<text text-anchor="start" x="1428.88" y="-3540.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="1328.5,-3510.25 1328.5,-3534.25 1399,-3534.25 1399,-3510.25 1328.5,-3510.25"/>
+<text text-anchor="start" x="1358.5" y="-3516.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1399,-3510.25 1399,-3534.25 1555.5,-3534.25 1555.5,-3510.25 1399,-3510.25"/>
+<text text-anchor="start" x="1434.88" y="-3516.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="1328.5,-3486.25 1328.5,-3510.25 1399,-3510.25 1399,-3486.25 1328.5,-3486.25"/>
+<text text-anchor="start" x="1358.5" y="-3492.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="1399,-3486.25 1399,-3510.25 1555.5,-3510.25 1555.5,-3486.25 1399,-3486.25"/>
+<text text-anchor="start" x="1429.62" y="-3492.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="1328.5,-3462.25 1328.5,-3486.25 1399,-3486.25 1399,-3462.25 1328.5,-3462.25"/>
+<text text-anchor="start" x="1358.88" y="-3468.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="1399,-3462.25 1399,-3486.25 1555.5,-3486.25 1555.5,-3462.25 1399,-3462.25"/>
+<text text-anchor="start" x="1433.38" y="-3468.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="1328.5,-3286.25 1328.5,-3462.25 1555.5,-3462.25 1555.5,-3286.25 1328.5,-3286.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-3458.25"/>
</g>
<!-- Coil Pack 3 -->
<g id="node4" class="node">
<title>Coil Pack 3</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-3804.25 1328.5,-3804.25 1328.5,-3459.25 1555.5,-3459.25 1555.5,-3804.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-3779.75 1328.5,-3804.25 1555.5,-3804.25 1555.5,-3779.75 1328.5,-3779.75"/>
-<text text-anchor="start" x="1406" y="-3786.95" font-family="arial" font-size="14.00">Coil Pack 3</text>
-<polygon fill="none" stroke="black" points="1328.5,-3755.25 1328.5,-3779.75 1481.38,-3779.75 1481.38,-3755.25 1328.5,-3755.25"/>
-<text text-anchor="start" x="1349.81" y="-3762.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-3755.25 1481.38,-3779.75 1555.5,-3779.75 1555.5,-3755.25 1481.38,-3755.25"/>
-<text text-anchor="start" x="1502.69" y="-3762.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-3731.25 1328.5,-3755.25 1399,-3755.25 1399,-3731.25 1328.5,-3731.25"/>
-<text text-anchor="start" x="1358.88" y="-3737.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-3731.25 1399,-3755.25 1555.5,-3755.25 1555.5,-3731.25 1399,-3731.25"/>
-<text text-anchor="start" x="1449.88" y="-3737.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-3707.25 1328.5,-3731.25 1399,-3731.25 1399,-3707.25 1328.5,-3707.25"/>
-<text text-anchor="start" x="1358.88" y="-3713.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-3707.25 1399,-3731.25 1555.5,-3731.25 1555.5,-3707.25 1399,-3707.25"/>
-<text text-anchor="start" x="1428.88" y="-3713.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3683.25 1328.5,-3707.25 1399,-3707.25 1399,-3683.25 1328.5,-3683.25"/>
-<text text-anchor="start" x="1358.5" y="-3689.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-3683.25 1399,-3707.25 1555.5,-3707.25 1555.5,-3683.25 1399,-3683.25"/>
-<text text-anchor="start" x="1434.88" y="-3689.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3659.25 1328.5,-3683.25 1399,-3683.25 1399,-3659.25 1328.5,-3659.25"/>
-<text text-anchor="start" x="1358.5" y="-3665.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-3659.25 1399,-3683.25 1555.5,-3683.25 1555.5,-3659.25 1399,-3659.25"/>
-<text text-anchor="start" x="1429.62" y="-3665.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3635.25 1328.5,-3659.25 1399,-3659.25 1399,-3635.25 1328.5,-3635.25"/>
-<text text-anchor="start" x="1358.88" y="-3641.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-3635.25 1399,-3659.25 1555.5,-3659.25 1555.5,-3635.25 1399,-3635.25"/>
-<text text-anchor="start" x="1433.38" y="-3641.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-3459.25 1328.5,-3635.25 1555.5,-3635.25 1555.5,-3459.25 1328.5,-3459.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-3631.25"/>
+<polygon fill="#ffffff" stroke="black" points="2572.75,-3531.25 2345.75,-3531.25 2345.75,-3186.25 2572.75,-3186.25 2572.75,-3531.25"/>
+<polygon fill="none" stroke="black" points="2345.75,-3506.75 2345.75,-3531.25 2572.75,-3531.25 2572.75,-3506.75 2345.75,-3506.75"/>
+<text text-anchor="start" x="2423.25" y="-3513.95" font-family="arial" font-size="14.00">Coil Pack 3</text>
+<polygon fill="none" stroke="black" points="2345.75,-3482.25 2345.75,-3506.75 2498.62,-3506.75 2498.62,-3482.25 2345.75,-3482.25"/>
+<text text-anchor="start" x="2367.06" y="-3489.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="2498.62,-3482.25 2498.62,-3506.75 2572.75,-3506.75 2572.75,-3482.25 2498.62,-3482.25"/>
+<text text-anchor="start" x="2519.94" y="-3489.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="2345.75,-3458.25 2345.75,-3482.25 2416.25,-3482.25 2416.25,-3458.25 2345.75,-3458.25"/>
+<text text-anchor="start" x="2376.12" y="-3464.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2416.25,-3458.25 2416.25,-3482.25 2572.75,-3482.25 2572.75,-3458.25 2416.25,-3458.25"/>
+<text text-anchor="start" x="2467.12" y="-3464.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="2345.75,-3434.25 2345.75,-3458.25 2416.25,-3458.25 2416.25,-3434.25 2345.75,-3434.25"/>
+<text text-anchor="start" x="2376.12" y="-3440.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2416.25,-3434.25 2416.25,-3458.25 2572.75,-3458.25 2572.75,-3434.25 2416.25,-3434.25"/>
+<text text-anchor="start" x="2446.12" y="-3440.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3410.25 2345.75,-3434.25 2416.25,-3434.25 2416.25,-3410.25 2345.75,-3410.25"/>
+<text text-anchor="start" x="2375.75" y="-3416.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2416.25,-3410.25 2416.25,-3434.25 2572.75,-3434.25 2572.75,-3410.25 2416.25,-3410.25"/>
+<text text-anchor="start" x="2452.12" y="-3416.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3386.25 2345.75,-3410.25 2416.25,-3410.25 2416.25,-3386.25 2345.75,-3386.25"/>
+<text text-anchor="start" x="2375.75" y="-3392.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="2416.25,-3386.25 2416.25,-3410.25 2572.75,-3410.25 2572.75,-3386.25 2416.25,-3386.25"/>
+<text text-anchor="start" x="2446.88" y="-3392.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3362.25 2345.75,-3386.25 2416.25,-3386.25 2416.25,-3362.25 2345.75,-3362.25"/>
+<text text-anchor="start" x="2376.12" y="-3368.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="2416.25,-3362.25 2416.25,-3386.25 2572.75,-3386.25 2572.75,-3362.25 2416.25,-3362.25"/>
+<text text-anchor="start" x="2450.62" y="-3368.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="2345.75,-3186.25 2345.75,-3362.25 2572.75,-3362.25 2572.75,-3186.25 2345.75,-3186.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="2349.75" y="-3358.25"/>
</g>
<!-- Coil Pack 4 -->
<g id="node5" class="node">
<title>Coil Pack 4</title>
-<polygon fill="#ffffff" stroke="black" points="1555.5,-3435.25 1328.5,-3435.25 1328.5,-3090.25 1555.5,-3090.25 1555.5,-3435.25"/>
-<polygon fill="none" stroke="black" points="1328.5,-3410.75 1328.5,-3435.25 1555.5,-3435.25 1555.5,-3410.75 1328.5,-3410.75"/>
-<text text-anchor="start" x="1406" y="-3417.95" font-family="arial" font-size="14.00">Coil Pack 4</text>
-<polygon fill="none" stroke="black" points="1328.5,-3386.25 1328.5,-3410.75 1481.38,-3410.75 1481.38,-3386.25 1328.5,-3386.25"/>
-<text text-anchor="start" x="1349.81" y="-3393.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
-<polygon fill="none" stroke="black" points="1481.38,-3386.25 1481.38,-3410.75 1555.5,-3410.75 1555.5,-3386.25 1481.38,-3386.25"/>
-<text text-anchor="start" x="1502.69" y="-3393.45" font-family="arial" font-size="14.00">5&#45;pin</text>
-<polygon fill="none" stroke="black" points="1328.5,-3362.25 1328.5,-3386.25 1399,-3386.25 1399,-3362.25 1328.5,-3362.25"/>
-<text text-anchor="start" x="1358.88" y="-3368.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1399,-3362.25 1399,-3386.25 1555.5,-3386.25 1555.5,-3362.25 1399,-3362.25"/>
-<text text-anchor="start" x="1449.88" y="-3368.95" font-family="arial" font-size="14.00">ECU Sig</text>
-<polygon fill="none" stroke="black" points="1328.5,-3338.25 1328.5,-3362.25 1399,-3362.25 1399,-3338.25 1328.5,-3338.25"/>
-<text text-anchor="start" x="1358.88" y="-3344.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1399,-3338.25 1399,-3362.25 1555.5,-3362.25 1555.5,-3338.25 1399,-3338.25"/>
-<text text-anchor="start" x="1428.88" y="-3344.95" font-family="arial" font-size="14.00">Sensor Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3314.25 1328.5,-3338.25 1399,-3338.25 1399,-3314.25 1328.5,-3314.25"/>
-<text text-anchor="start" x="1358.5" y="-3320.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1399,-3314.25 1399,-3338.25 1555.5,-3338.25 1555.5,-3314.25 1399,-3314.25"/>
-<text text-anchor="start" x="1434.88" y="-3320.95" font-family="arial" font-size="14.00">Head Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3290.25 1328.5,-3314.25 1399,-3314.25 1399,-3290.25 1328.5,-3290.25"/>
-<text text-anchor="start" x="1358.5" y="-3296.95" font-family="arial" font-size="14.00">D</text>
-<polygon fill="none" stroke="black" points="1399,-3290.25 1399,-3314.25 1555.5,-3314.25 1555.5,-3290.25 1399,-3290.25"/>
-<text text-anchor="start" x="1429.62" y="-3296.95" font-family="arial" font-size="14.00">Battery Ground</text>
-<polygon fill="none" stroke="black" points="1328.5,-3266.25 1328.5,-3290.25 1399,-3290.25 1399,-3266.25 1328.5,-3266.25"/>
-<text text-anchor="start" x="1358.88" y="-3272.95" font-family="arial" font-size="14.00">E</text>
-<polygon fill="none" stroke="black" points="1399,-3266.25 1399,-3290.25 1555.5,-3290.25 1555.5,-3266.25 1399,-3266.25"/>
-<text text-anchor="start" x="1433.38" y="-3272.95" font-family="arial" font-size="14.00">Switched 12V</text>
-<polygon fill="none" stroke="black" points="1328.5,-3090.25 1328.5,-3266.25 1555.5,-3266.25 1555.5,-3090.25 1328.5,-3090.25"/>
-<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="1332.5" y="-3262.25"/>
+<polygon fill="#ffffff" stroke="black" points="2572.75,-3158.25 2345.75,-3158.25 2345.75,-2813.25 2572.75,-2813.25 2572.75,-3158.25"/>
+<polygon fill="none" stroke="black" points="2345.75,-3133.75 2345.75,-3158.25 2572.75,-3158.25 2572.75,-3133.75 2345.75,-3133.75"/>
+<text text-anchor="start" x="2423.25" y="-3140.95" font-family="arial" font-size="14.00">Coil Pack 4</text>
+<polygon fill="none" stroke="black" points="2345.75,-3109.25 2345.75,-3133.75 2498.62,-3133.75 2498.62,-3109.25 2345.75,-3109.25"/>
+<text text-anchor="start" x="2367.06" y="-3116.45" font-family="arial" font-size="14.00">Delphi 12162825</text>
+<polygon fill="none" stroke="black" points="2498.62,-3109.25 2498.62,-3133.75 2572.75,-3133.75 2572.75,-3109.25 2498.62,-3109.25"/>
+<text text-anchor="start" x="2519.94" y="-3116.45" font-family="arial" font-size="14.00">5&#45;pin</text>
+<polygon fill="none" stroke="black" points="2345.75,-3085.25 2345.75,-3109.25 2416.25,-3109.25 2416.25,-3085.25 2345.75,-3085.25"/>
+<text text-anchor="start" x="2376.12" y="-3091.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="2416.25,-3085.25 2416.25,-3109.25 2572.75,-3109.25 2572.75,-3085.25 2416.25,-3085.25"/>
+<text text-anchor="start" x="2467.12" y="-3091.95" font-family="arial" font-size="14.00">ECU Sig</text>
+<polygon fill="none" stroke="black" points="2345.75,-3061.25 2345.75,-3085.25 2416.25,-3085.25 2416.25,-3061.25 2345.75,-3061.25"/>
+<text text-anchor="start" x="2376.12" y="-3067.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="2416.25,-3061.25 2416.25,-3085.25 2572.75,-3085.25 2572.75,-3061.25 2416.25,-3061.25"/>
+<text text-anchor="start" x="2446.12" y="-3067.95" font-family="arial" font-size="14.00">Sensor Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3037.25 2345.75,-3061.25 2416.25,-3061.25 2416.25,-3037.25 2345.75,-3037.25"/>
+<text text-anchor="start" x="2375.75" y="-3043.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="2416.25,-3037.25 2416.25,-3061.25 2572.75,-3061.25 2572.75,-3037.25 2416.25,-3037.25"/>
+<text text-anchor="start" x="2452.12" y="-3043.95" font-family="arial" font-size="14.00">Head Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-3013.25 2345.75,-3037.25 2416.25,-3037.25 2416.25,-3013.25 2345.75,-3013.25"/>
+<text text-anchor="start" x="2375.75" y="-3019.95" font-family="arial" font-size="14.00">D</text>
+<polygon fill="none" stroke="black" points="2416.25,-3013.25 2416.25,-3037.25 2572.75,-3037.25 2572.75,-3013.25 2416.25,-3013.25"/>
+<text text-anchor="start" x="2446.88" y="-3019.95" font-family="arial" font-size="14.00">Battery Ground</text>
+<polygon fill="none" stroke="black" points="2345.75,-2989.25 2345.75,-3013.25 2416.25,-3013.25 2416.25,-2989.25 2345.75,-2989.25"/>
+<text text-anchor="start" x="2376.12" y="-2995.95" font-family="arial" font-size="14.00">E</text>
+<polygon fill="none" stroke="black" points="2416.25,-2989.25 2416.25,-3013.25 2572.75,-3013.25 2572.75,-2989.25 2416.25,-2989.25"/>
+<text text-anchor="start" x="2450.62" y="-2995.95" font-family="arial" font-size="14.00">Switched 12V</text>
+<polygon fill="none" stroke="black" points="2345.75,-2813.25 2345.75,-2989.25 2572.75,-2989.25 2572.75,-2813.25 2345.75,-2813.25"/>
+<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="2349.75" y="-2985.25"/>
</g>
<!-- LSU -->
<g id="node6" class="node">
@@ -908,29 +908,29 @@
<!-- Throttle Servo CAN -->
<g id="node7" class="node">
<title>Throttle Servo CAN</title>
-<polygon fill="#ffffff" stroke="black" points="2600.5,-2907.5 2318,-2907.5 2318,-2542 2600.5,-2542 2600.5,-2907.5"/>
-<polygon fill="none" stroke="black" points="2318,-2883 2318,-2907.5 2600.5,-2907.5 2600.5,-2883 2318,-2883"/>
-<text text-anchor="start" x="2397.75" y="-2890.2" font-family="arial" font-size="14.00">Throttle Servo CAN</text>
-<polygon fill="none" stroke="black" points="2318,-2858.5 2318,-2883 2478.38,-2883 2478.38,-2858.5 2318,-2858.5"/>
-<text text-anchor="start" x="2363.31" y="-2865.7" font-family="arial" font-size="14.00">DTM04&#45;3P</text>
-<polygon fill="none" stroke="black" points="2478.38,-2858.5 2478.38,-2883 2600.5,-2883 2600.5,-2858.5 2478.38,-2858.5"/>
-<text text-anchor="start" x="2523.69" y="-2865.7" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="2318,-2834.5 2318,-2858.5 2430.75,-2858.5 2430.75,-2834.5 2318,-2834.5"/>
-<text text-anchor="start" x="2370.25" y="-2841.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2430.75,-2834.5 2430.75,-2858.5 2600.5,-2858.5 2600.5,-2834.5 2430.75,-2834.5"/>
-<text text-anchor="start" x="2496.5" y="-2841.2" font-family="arial" font-size="14.00">CAN+</text>
-<polygon fill="none" stroke="black" points="2318,-2810.5 2318,-2834.5 2430.75,-2834.5 2430.75,-2810.5 2318,-2810.5"/>
-<text text-anchor="start" x="2370.25" y="-2817.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2430.75,-2810.5 2430.75,-2834.5 2600.5,-2834.5 2600.5,-2810.5 2430.75,-2810.5"/>
-<text text-anchor="start" x="2483" y="-2817.2" font-family="arial" font-size="14.00">CAN GND</text>
-<polygon fill="none" stroke="black" points="2318,-2786.5 2318,-2810.5 2430.75,-2810.5 2430.75,-2786.5 2318,-2786.5"/>
-<text text-anchor="start" x="2370.25" y="-2793.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2430.75,-2786.5 2430.75,-2810.5 2600.5,-2810.5 2600.5,-2786.5 2430.75,-2786.5"/>
-<text text-anchor="start" x="2498.38" y="-2793.2" font-family="arial" font-size="14.00">CAN&#45;</text>
-<polygon fill="none" stroke="black" points="2318,-2566.5 2318,-2786.5 2600.5,-2786.5 2600.5,-2566.5 2318,-2566.5"/>
-<image xlink:href="images\throttleCAN.png" width="274.5px" height="212px" preserveAspectRatio="xMinYMin meet" x="2322" y="-2782.5"/>
-<polygon fill="none" stroke="black" points="2318,-2542 2318,-2566.5 2600.5,-2566.5 2600.5,-2542 2318,-2542"/>
-<text text-anchor="start" x="2322" y="-2549.2" font-family="arial" font-size="14.00">Replace bad connector! Mate is DTM06&#45;3S</text>
+<polygon fill="#ffffff" stroke="black" points="2600.5,-2735.5 2318,-2735.5 2318,-2370 2600.5,-2370 2600.5,-2735.5"/>
+<polygon fill="none" stroke="black" points="2318,-2711 2318,-2735.5 2600.5,-2735.5 2600.5,-2711 2318,-2711"/>
+<text text-anchor="start" x="2397.75" y="-2718.2" font-family="arial" font-size="14.00">Throttle Servo CAN</text>
+<polygon fill="none" stroke="black" points="2318,-2686.5 2318,-2711 2478.38,-2711 2478.38,-2686.5 2318,-2686.5"/>
+<text text-anchor="start" x="2363.31" y="-2693.7" font-family="arial" font-size="14.00">DTM04&#45;3P</text>
+<polygon fill="none" stroke="black" points="2478.38,-2686.5 2478.38,-2711 2600.5,-2711 2600.5,-2686.5 2478.38,-2686.5"/>
+<text text-anchor="start" x="2523.69" y="-2693.7" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="2318,-2662.5 2318,-2686.5 2430.75,-2686.5 2430.75,-2662.5 2318,-2662.5"/>
+<text text-anchor="start" x="2370.25" y="-2669.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2430.75,-2662.5 2430.75,-2686.5 2600.5,-2686.5 2600.5,-2662.5 2430.75,-2662.5"/>
+<text text-anchor="start" x="2496.5" y="-2669.2" font-family="arial" font-size="14.00">CAN+</text>
+<polygon fill="none" stroke="black" points="2318,-2638.5 2318,-2662.5 2430.75,-2662.5 2430.75,-2638.5 2318,-2638.5"/>
+<text text-anchor="start" x="2370.25" y="-2645.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2430.75,-2638.5 2430.75,-2662.5 2600.5,-2662.5 2600.5,-2638.5 2430.75,-2638.5"/>
+<text text-anchor="start" x="2483" y="-2645.2" font-family="arial" font-size="14.00">CAN GND</text>
+<polygon fill="none" stroke="black" points="2318,-2614.5 2318,-2638.5 2430.75,-2638.5 2430.75,-2614.5 2318,-2614.5"/>
+<text text-anchor="start" x="2370.25" y="-2621.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2430.75,-2614.5 2430.75,-2638.5 2600.5,-2638.5 2600.5,-2614.5 2430.75,-2614.5"/>
+<text text-anchor="start" x="2498.38" y="-2621.2" font-family="arial" font-size="14.00">CAN&#45;</text>
+<polygon fill="none" stroke="black" points="2318,-2394.5 2318,-2614.5 2600.5,-2614.5 2600.5,-2394.5 2318,-2394.5"/>
+<image xlink:href="images\throttleCAN.png" width="274.5px" height="212px" preserveAspectRatio="xMinYMin meet" x="2322" y="-2610.5"/>
+<polygon fill="none" stroke="black" points="2318,-2370 2318,-2394.5 2600.5,-2394.5 2600.5,-2370 2318,-2370"/>
+<text text-anchor="start" x="2322" y="-2377.2" font-family="arial" font-size="14.00">Replace bad connector! Mate is DTM06&#45;3S</text>
</g>
<!-- Fuel Injector 1 -->
<g id="node8" class="node">
@@ -1060,27 +1060,27 @@
<!-- Veronte 1X CAN Bus -->
<g id="node13" class="node">
<title>Veronte 1X CAN Bus</title>
-<polygon fill="#ffffff" stroke="black" points="1558.5,-2968.25 1325.5,-2968.25 1325.5,-2647.25 1558.5,-2647.25 1558.5,-2968.25"/>
-<polygon fill="none" stroke="black" points="1325.5,-2943.75 1325.5,-2968.25 1558.5,-2968.25 1558.5,-2943.75 1325.5,-2943.75"/>
-<text text-anchor="start" x="1374.88" y="-2950.95" font-family="arial" font-size="14.00">Veronte 1X CAN Bus</text>
-<polygon fill="none" stroke="black" points="1325.5,-2919.25 1325.5,-2943.75 1455.5,-2943.75 1455.5,-2919.25 1325.5,-2919.25"/>
-<text text-anchor="start" x="1361.25" y="-2926.45" font-family="arial" font-size="14.00">DT06&#45;3S</text>
-<polygon fill="none" stroke="black" points="1455.5,-2919.25 1455.5,-2943.75 1558.5,-2943.75 1558.5,-2919.25 1455.5,-2919.25"/>
-<text text-anchor="start" x="1491.25" y="-2926.45" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="1325.5,-2895.25 1325.5,-2919.25 1412.5,-2919.25 1412.5,-2895.25 1325.5,-2895.25"/>
-<text text-anchor="start" x="1364.12" y="-2901.95" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1412.5,-2895.25 1412.5,-2919.25 1558.5,-2919.25 1558.5,-2895.25 1412.5,-2895.25"/>
-<text text-anchor="start" x="1456.62" y="-2901.95" font-family="arial" font-size="14.00">CANB_P</text>
-<polygon fill="none" stroke="black" points="1325.5,-2871.25 1325.5,-2895.25 1412.5,-2895.25 1412.5,-2871.25 1325.5,-2871.25"/>
-<text text-anchor="start" x="1364.12" y="-2877.95" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1412.5,-2871.25 1412.5,-2895.25 1558.5,-2895.25 1558.5,-2871.25 1412.5,-2871.25"/>
-<text text-anchor="start" x="1456.62" y="-2877.95" font-family="arial" font-size="14.00">CANB_N</text>
-<polygon fill="none" stroke="black" points="1325.5,-2847.25 1325.5,-2871.25 1412.5,-2871.25 1412.5,-2847.25 1325.5,-2847.25"/>
-<text text-anchor="start" x="1363.75" y="-2853.95" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1412.5,-2847.25 1412.5,-2871.25 1558.5,-2871.25 1558.5,-2847.25 1412.5,-2847.25"/>
-<text text-anchor="start" x="1450.62" y="-2853.95" font-family="arial" font-size="14.00">CAN_GND</text>
-<polygon fill="none" stroke="black" points="1325.5,-2647.25 1325.5,-2847.25 1558.5,-2847.25 1558.5,-2647.25 1325.5,-2647.25"/>
-<image xlink:href="images\DT06-3S.png" width="219.436px" height="188px" preserveAspectRatio="xMinYMin meet" x="1332.28" y="-2841.25"/>
+<polygon fill="#ffffff" stroke="black" points="1558.5,-3017.25 1325.5,-3017.25 1325.5,-2696.25 1558.5,-2696.25 1558.5,-3017.25"/>
+<polygon fill="none" stroke="black" points="1325.5,-2992.75 1325.5,-3017.25 1558.5,-3017.25 1558.5,-2992.75 1325.5,-2992.75"/>
+<text text-anchor="start" x="1374.88" y="-2999.95" font-family="arial" font-size="14.00">Veronte 1X CAN Bus</text>
+<polygon fill="none" stroke="black" points="1325.5,-2968.25 1325.5,-2992.75 1455.5,-2992.75 1455.5,-2968.25 1325.5,-2968.25"/>
+<text text-anchor="start" x="1361.25" y="-2975.45" font-family="arial" font-size="14.00">DT06&#45;3S</text>
+<polygon fill="none" stroke="black" points="1455.5,-2968.25 1455.5,-2992.75 1558.5,-2992.75 1558.5,-2968.25 1455.5,-2968.25"/>
+<text text-anchor="start" x="1491.25" y="-2975.45" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="1325.5,-2944.25 1325.5,-2968.25 1412.5,-2968.25 1412.5,-2944.25 1325.5,-2944.25"/>
+<text text-anchor="start" x="1364.12" y="-2950.95" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1412.5,-2944.25 1412.5,-2968.25 1558.5,-2968.25 1558.5,-2944.25 1412.5,-2944.25"/>
+<text text-anchor="start" x="1456.62" y="-2950.95" font-family="arial" font-size="14.00">CANB_P</text>
+<polygon fill="none" stroke="black" points="1325.5,-2920.25 1325.5,-2944.25 1412.5,-2944.25 1412.5,-2920.25 1325.5,-2920.25"/>
+<text text-anchor="start" x="1364.12" y="-2926.95" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1412.5,-2920.25 1412.5,-2944.25 1558.5,-2944.25 1558.5,-2920.25 1412.5,-2920.25"/>
+<text text-anchor="start" x="1456.62" y="-2926.95" font-family="arial" font-size="14.00">CANB_N</text>
+<polygon fill="none" stroke="black" points="1325.5,-2896.25 1325.5,-2920.25 1412.5,-2920.25 1412.5,-2896.25 1325.5,-2896.25"/>
+<text text-anchor="start" x="1363.75" y="-2902.95" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1412.5,-2896.25 1412.5,-2920.25 1558.5,-2920.25 1558.5,-2896.25 1412.5,-2896.25"/>
+<text text-anchor="start" x="1450.62" y="-2902.95" font-family="arial" font-size="14.00">CAN_GND</text>
+<polygon fill="none" stroke="black" points="1325.5,-2696.25 1325.5,-2896.25 1558.5,-2896.25 1558.5,-2696.25 1325.5,-2696.25"/>
+<image xlink:href="images\DT06-3S.png" width="219.436px" height="188px" preserveAspectRatio="xMinYMin meet" x="1332.28" y="-2890.25"/>
</g>
<!-- shield1 -->
<g id="node14" class="node">
@@ -1098,388 +1098,529 @@
<text text-anchor="start" x="1469.88" y="-2508.2" font-family="arial" font-size="14.00">1</text>
</g>
<!-- W11 -->
-<g id="node28" class="node">
+<g id="node34" class="node">
<title>W11</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2174,-2931.5 1803,-2931.5 1803,-2686 2174,-2686 2174,-2931.5"/>
-<polygon fill="none" stroke="black" points="1803,-2907 1803,-2931.5 2174,-2931.5 2174,-2907 1803,-2907"/>
-<text text-anchor="start" x="1973.12" y="-2914.2" font-family="arial" font-size="14.00">W11</text>
-<polygon fill="none" stroke="black" points="1803,-2882.5 1803,-2907 1868.94,-2907 1868.94,-2882.5 1803,-2882.5"/>
-<text text-anchor="start" x="1828.47" y="-2889.7" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="1868.94,-2882.5 1868.94,-2907 1975.38,-2907 1975.38,-2882.5 1868.94,-2882.5"/>
-<text text-anchor="start" x="1894.41" y="-2889.7" font-family="arial" font-size="14.00">18 AWG</text>
-<polygon fill="none" stroke="black" points="1975.38,-2882.5 1975.38,-2907 2048.06,-2907 2048.06,-2882.5 1975.38,-2882.5"/>
-<text text-anchor="start" x="2000.84" y="-2889.7" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="2048.06,-2882.5 2048.06,-2907 2174,-2907 2174,-2882.5 2048.06,-2882.5"/>
-<text text-anchor="start" x="2073.53" y="-2889.7" font-family="arial" font-size="14.00">30.0 Inches</text>
-<text text-anchor="start" x="1853.62" y="-2867.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1910.75" y="-2847.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1981.5" y="-2847.2" font-family="arial" font-size="14.00">Throttle Servo CAN:1:CAN+</text>
-<polygon fill="#000000" stroke="none" points="1803,-2840.5 1803,-2842.5 2174,-2842.5 2174,-2840.5 1803,-2840.5"/>
-<polygon fill="#ffff00" stroke="none" points="1803,-2838.5 1803,-2840.5 2174,-2840.5 2174,-2838.5 1803,-2838.5"/>
-<polygon fill="#ffff00" stroke="none" points="1803,-2836.5 1803,-2838.5 2174,-2838.5 2174,-2836.5 1803,-2836.5"/>
-<polygon fill="#ffff00" stroke="none" points="1803,-2834.5 1803,-2836.5 2174,-2836.5 2174,-2834.5 1803,-2834.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2832.5 1803,-2834.5 2174,-2834.5 2174,-2832.5 1803,-2832.5"/>
-<text text-anchor="start" x="1909.62" y="-2817.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1983.38" y="-2817.2" font-family="arial" font-size="14.00">Throttle Servo CAN:3:CAN&#45;</text>
-<polygon fill="#000000" stroke="none" points="1803,-2810.5 1803,-2812.5 2174,-2812.5 2174,-2810.5 1803,-2810.5"/>
-<polygon fill="#00ff00" stroke="none" points="1803,-2808.5 1803,-2810.5 2174,-2810.5 2174,-2808.5 1803,-2808.5"/>
-<polygon fill="#00ff00" stroke="none" points="1803,-2806.5 1803,-2808.5 2174,-2808.5 2174,-2806.5 1803,-2806.5"/>
-<polygon fill="#00ff00" stroke="none" points="1803,-2804.5 1803,-2806.5 2174,-2806.5 2174,-2804.5 1803,-2804.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2802.5 1803,-2804.5 2174,-2804.5 2174,-2802.5 1803,-2802.5"/>
-<text text-anchor="start" x="1910.38" y="-2787.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1968" y="-2787.2" font-family="arial" font-size="14.00">Throttle Servo CAN:2:CAN GND</text>
-<polygon fill="#000000" stroke="none" points="1803,-2780.5 1803,-2782.5 2174,-2782.5 2174,-2780.5 1803,-2780.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2778.5 1803,-2780.5 2174,-2780.5 2174,-2778.5 1803,-2778.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2776.5 1803,-2778.5 2174,-2778.5 2174,-2776.5 1803,-2776.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2774.5 1803,-2776.5 2174,-2776.5 2174,-2774.5 1803,-2774.5"/>
-<polygon fill="#000000" stroke="none" points="1803,-2772.5 1803,-2774.5 2174,-2774.5 2174,-2772.5 1803,-2772.5"/>
-<text text-anchor="start" x="1853.62" y="-2757.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1804.88" y="-2737.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1917.12" y="-2737.2" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1803,-2730.5 1803,-2732.5 2174,-2732.5 2174,-2730.5 1803,-2730.5"/>
-<text text-anchor="start" x="1853.62" y="-2715.2" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1803,-2686 1803,-2710.5 2174,-2710.5 2174,-2686 1803,-2686"/>
-<text text-anchor="start" x="1900" y="-2693.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Servo</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2174,-2759.5 1803,-2759.5 1803,-2514 2174,-2514 2174,-2759.5"/>
+<polygon fill="none" stroke="black" points="1803,-2735 1803,-2759.5 2174,-2759.5 2174,-2735 1803,-2735"/>
+<text text-anchor="start" x="1973.12" y="-2742.2" font-family="arial" font-size="14.00">W11</text>
+<polygon fill="none" stroke="black" points="1803,-2710.5 1803,-2735 1868.94,-2735 1868.94,-2710.5 1803,-2710.5"/>
+<text text-anchor="start" x="1828.47" y="-2717.7" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="1868.94,-2710.5 1868.94,-2735 1975.38,-2735 1975.38,-2710.5 1868.94,-2710.5"/>
+<text text-anchor="start" x="1894.41" y="-2717.7" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="1975.38,-2710.5 1975.38,-2735 2048.06,-2735 2048.06,-2710.5 1975.38,-2710.5"/>
+<text text-anchor="start" x="2000.84" y="-2717.7" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="2048.06,-2710.5 2048.06,-2735 2174,-2735 2174,-2710.5 2048.06,-2710.5"/>
+<text text-anchor="start" x="2073.53" y="-2717.7" font-family="arial" font-size="14.00">30.0 Inches</text>
+<text text-anchor="start" x="1853.62" y="-2695.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1910.75" y="-2675.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1981.5" y="-2675.2" font-family="arial" font-size="14.00">Throttle Servo CAN:1:CAN+</text>
+<polygon fill="#000000" stroke="none" points="1803,-2668.5 1803,-2670.5 2174,-2670.5 2174,-2668.5 1803,-2668.5"/>
+<polygon fill="#ffff00" stroke="none" points="1803,-2666.5 1803,-2668.5 2174,-2668.5 2174,-2666.5 1803,-2666.5"/>
+<polygon fill="#ffff00" stroke="none" points="1803,-2664.5 1803,-2666.5 2174,-2666.5 2174,-2664.5 1803,-2664.5"/>
+<polygon fill="#ffff00" stroke="none" points="1803,-2662.5 1803,-2664.5 2174,-2664.5 2174,-2662.5 1803,-2662.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2660.5 1803,-2662.5 2174,-2662.5 2174,-2660.5 1803,-2660.5"/>
+<text text-anchor="start" x="1909.62" y="-2645.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1983.38" y="-2645.2" font-family="arial" font-size="14.00">Throttle Servo CAN:3:CAN&#45;</text>
+<polygon fill="#000000" stroke="none" points="1803,-2638.5 1803,-2640.5 2174,-2640.5 2174,-2638.5 1803,-2638.5"/>
+<polygon fill="#00ff00" stroke="none" points="1803,-2636.5 1803,-2638.5 2174,-2638.5 2174,-2636.5 1803,-2636.5"/>
+<polygon fill="#00ff00" stroke="none" points="1803,-2634.5 1803,-2636.5 2174,-2636.5 2174,-2634.5 1803,-2634.5"/>
+<polygon fill="#00ff00" stroke="none" points="1803,-2632.5 1803,-2634.5 2174,-2634.5 2174,-2632.5 1803,-2632.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2630.5 1803,-2632.5 2174,-2632.5 2174,-2630.5 1803,-2630.5"/>
+<text text-anchor="start" x="1910.38" y="-2615.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1968" y="-2615.2" font-family="arial" font-size="14.00">Throttle Servo CAN:2:CAN GND</text>
+<polygon fill="#000000" stroke="none" points="1803,-2608.5 1803,-2610.5 2174,-2610.5 2174,-2608.5 1803,-2608.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2606.5 1803,-2608.5 2174,-2608.5 2174,-2606.5 1803,-2606.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2604.5 1803,-2606.5 2174,-2606.5 2174,-2604.5 1803,-2604.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2602.5 1803,-2604.5 2174,-2604.5 2174,-2602.5 1803,-2602.5"/>
+<polygon fill="#000000" stroke="none" points="1803,-2600.5 1803,-2602.5 2174,-2602.5 2174,-2600.5 1803,-2600.5"/>
+<text text-anchor="start" x="1853.62" y="-2585.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1804.88" y="-2565.2" font-family="arial" font-size="14.00">shield1:1:Shield</text>
+<text text-anchor="start" x="1917.12" y="-2565.2" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1803,-2558.5 1803,-2560.5 2174,-2560.5 2174,-2558.5 1803,-2558.5"/>
+<text text-anchor="start" x="1853.62" y="-2543.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1803,-2514 1803,-2538.5 2174,-2538.5 2174,-2514 1803,-2514"/>
+<text text-anchor="start" x="1900" y="-2521.2" font-family="arial" font-size="14.00">Twisted Pair | ECU to Servo</text>
</g>
<!-- shield1&#45;&#45;W11 -->
-<g id="edge58" class="edge">
+<g id="edge64" class="edge">
<title>shield1:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1483.12,-2513.25C1567.84,-2513.25 1588.7,-2539.48 1659,-2586.75 1734.31,-2637.38 1712.25,-2731.5 1803,-2731.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1483.12,-2513.25C1626.77,-2513.25 1659.35,-2559.5 1803,-2559.5"/>
</g>
<!-- _S_1 -->
<g id="node15" class="node">
<title>_S_1</title>
-<polygon fill="#ffffff" stroke="black" points="1464.75,-3066 1419.25,-3066 1419.25,-3041.5 1464.75,-3041.5 1464.75,-3066"/>
-<polygon fill="none" stroke="black" points="1419.25,-3041.5 1419.25,-3066 1464.75,-3066 1464.75,-3041.5 1419.25,-3041.5"/>
-<text text-anchor="start" x="1423.25" y="-3048.7" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3262 1419.25,-3262 1419.25,-3237.5 1464.75,-3237.5 1464.75,-3262"/>
+<polygon fill="none" stroke="black" points="1419.25,-3237.5 1419.25,-3262 1464.75,-3262 1464.75,-3237.5 1419.25,-3237.5"/>
+<text text-anchor="start" x="1423.25" y="-3244.7" font-family="arial" font-size="14.00">splice</text>
</g>
-<!-- _S_1&#45;&#45;W11 -->
-<g id="edge52" class="edge">
-<title>_S_1:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3049.75C1554.49,-3050.37 1587.82,-3071.46 1656.87,-3025.36 1754.69,-2967.97 1682.04,-2809.16 1803,-2803.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3051.75C1553.42,-3052.06 1586.75,-3073.15 1657.94,-3027.06 1756.51,-2967.14 1683.86,-2808.33 1803,-2805.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3053.75C1552.35,-3053.75 1585.68,-3074.84 1659,-3028.75 1758.33,-2966.3 1685.67,-2807.5 1803,-2807.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3055.75C1551.28,-3055.44 1584.61,-3076.53 1660.06,-3030.44 1760.15,-2965.47 1687.49,-2806.67 1803,-2809.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3057.75C1550.22,-3057.13 1583.54,-3078.22 1661.13,-3032.14 1761.97,-2964.64 1689.31,-2805.84 1803,-2811.5"/>
+<!-- W12 -->
+<g id="node23" class="node">
+<title>W12</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2115.5,-3825.25 1861.5,-3825.25 1861.5,-3706.25 2115.5,-3706.25 2115.5,-3825.25"/>
+<polygon fill="none" stroke="black" points="1861.5,-3800.75 1861.5,-3825.25 2115.5,-3825.25 2115.5,-3800.75 1861.5,-3800.75"/>
+<text text-anchor="start" x="1973.12" y="-3807.95" font-family="arial" font-size="14.00">W12</text>
+<polygon fill="none" stroke="black" points="1861.5,-3776.25 1861.5,-3800.75 1912.67,-3800.75 1912.67,-3776.25 1861.5,-3776.25"/>
+<text text-anchor="start" x="1879.58" y="-3783.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1912.67,-3776.25 1912.67,-3800.75 2004.33,-3800.75 2004.33,-3776.25 1912.67,-3776.25"/>
+<text text-anchor="start" x="1930.75" y="-3783.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2004.33,-3776.25 2004.33,-3800.75 2115.5,-3800.75 2115.5,-3776.25 2004.33,-3776.25"/>
+<text text-anchor="start" x="2022.42" y="-3783.45" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1863.12" y="-3760.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1870.38" y="-3740.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1927.5" y="-3740.95" font-family="arial" font-size="14.00">Coil Pack 1:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="1861.5,-3734.25 1861.5,-3736.25 2115.5,-3736.25 2115.5,-3734.25 1861.5,-3734.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3732.25 1861.5,-3734.25 2115.5,-3734.25 2115.5,-3732.25 1861.5,-3732.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3730.25 1861.5,-3732.25 2115.5,-3732.25 2115.5,-3730.25 1861.5,-3730.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3728.25 1861.5,-3730.25 2115.5,-3730.25 2115.5,-3728.25 1861.5,-3728.25"/>
+<polygon fill="#000000" stroke="none" points="1861.5,-3726.25 1861.5,-3728.25 2115.5,-3728.25 2115.5,-3726.25 1861.5,-3726.25"/>
+<text text-anchor="start" x="1863.12" y="-3710.95" font-family="arial" font-size="14.00"> </text>
+</g>
+<!-- _S_1&#45;&#45;W12 -->
+<g id="edge14" class="edge">
+<title>_S_1:e&#45;&#45;W12:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3245.75C1550.02,-3246.5 1587.29,-3219.65 1661.39,-3271.55 1840.05,-3409.61 1642.14,-3733.34 1860.5,-3727.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3247.75C1551.19,-3248.13 1588.46,-3221.28 1660.2,-3273.15 1838.34,-3408.57 1640.43,-3732.29 1860.5,-3729.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3249.75C1552.35,-3249.75 1589.63,-3222.9 1659,-3274.75 1836.63,-3407.53 1638.73,-3731.25 1860.5,-3731.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3251.75C1553.52,-3251.37 1590.8,-3224.52 1657.8,-3276.35 1834.93,-3406.48 1637.02,-3730.21 1860.5,-3733.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3253.75C1554.69,-3253 1591.97,-3226.15 1656.61,-3277.95 1833.22,-3405.44 1635.31,-3729.16 1860.5,-3735.25"/>
</g>
<!-- _S_2 -->
<g id="node16" class="node">
<title>_S_2</title>
-<polygon fill="#ffffff" stroke="black" points="1464.75,-3017 1419.25,-3017 1419.25,-2992.5 1464.75,-2992.5 1464.75,-3017"/>
-<polygon fill="none" stroke="black" points="1419.25,-2992.5 1419.25,-3017 1464.75,-3017 1464.75,-2992.5 1419.25,-2992.5"/>
-<text text-anchor="start" x="1423.25" y="-2999.7" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3164 1419.25,-3164 1419.25,-3139.5 1464.75,-3139.5 1464.75,-3164"/>
+<polygon fill="none" stroke="black" points="1419.25,-3139.5 1419.25,-3164 1464.75,-3164 1464.75,-3139.5 1419.25,-3139.5"/>
+<text text-anchor="start" x="1423.25" y="-3146.7" font-family="arial" font-size="14.00">splice</text>
</g>
-<!-- _S_2&#45;&#45;W11 -->
-<g id="edge54" class="edge">
-<title>_S_2:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3000.75C1554.03,-3001.15 1582.92,-3015.04 1657.25,-2977.15 1736.3,-2942.25 1708.86,-2838.52 1803,-2833.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-3002.75C1553.17,-3002.95 1582.05,-3016.84 1658.12,-2978.95 1738.23,-2941.74 1710.79,-2838.01 1803,-2835.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-3004.75C1552.3,-3004.75 1581.19,-3018.64 1659,-2980.75 1740.16,-2941.23 1712.73,-2837.5 1803,-2837.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-3006.75C1551.43,-3006.55 1580.32,-3020.45 1659.88,-2982.55 1742.1,-2940.71 1714.66,-2836.99 1803,-2839.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3008.75C1550.57,-3008.35 1579.45,-3022.25 1660.75,-2984.35 1744.03,-2940.2 1716.59,-2836.48 1803,-2841.5"/>
+<!-- W13 -->
+<g id="node24" class="node">
+<title>W13</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2115.5,-3437.25 1861.5,-3437.25 1861.5,-3318.25 2115.5,-3318.25 2115.5,-3437.25"/>
+<polygon fill="none" stroke="black" points="1861.5,-3412.75 1861.5,-3437.25 2115.5,-3437.25 2115.5,-3412.75 1861.5,-3412.75"/>
+<text text-anchor="start" x="1973.12" y="-3419.95" font-family="arial" font-size="14.00">W13</text>
+<polygon fill="none" stroke="black" points="1861.5,-3388.25 1861.5,-3412.75 1912.67,-3412.75 1912.67,-3388.25 1861.5,-3388.25"/>
+<text text-anchor="start" x="1879.58" y="-3395.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1912.67,-3388.25 1912.67,-3412.75 2004.33,-3412.75 2004.33,-3388.25 1912.67,-3388.25"/>
+<text text-anchor="start" x="1930.75" y="-3395.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2004.33,-3388.25 2004.33,-3412.75 2115.5,-3412.75 2115.5,-3388.25 2004.33,-3388.25"/>
+<text text-anchor="start" x="2022.42" y="-3395.45" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1863.12" y="-3372.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1870.38" y="-3352.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1927.5" y="-3352.95" font-family="arial" font-size="14.00">Coil Pack 3:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="1861.5,-3346.25 1861.5,-3348.25 2115.5,-3348.25 2115.5,-3346.25 1861.5,-3346.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3344.25 1861.5,-3346.25 2115.5,-3346.25 2115.5,-3344.25 1861.5,-3344.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3342.25 1861.5,-3344.25 2115.5,-3344.25 2115.5,-3342.25 1861.5,-3342.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3340.25 1861.5,-3342.25 2115.5,-3342.25 2115.5,-3340.25 1861.5,-3340.25"/>
+<polygon fill="#000000" stroke="none" points="1861.5,-3338.25 1861.5,-3340.25 2115.5,-3340.25 2115.5,-3338.25 1861.5,-3338.25"/>
+<text text-anchor="start" x="1863.12" y="-3322.95" font-family="arial" font-size="14.00"> </text>
+</g>
+<!-- _S_2&#45;&#45;W13 -->
+<g id="edge16" class="edge">
+<title>_S_2:e&#45;&#45;W13:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3147.75C1561.25,-3149.86 1579.58,-3184.12 1660.73,-3222.14 1756.49,-3270.31 1760.82,-3343.01 1860.5,-3339.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3149.75C1559.48,-3150.81 1577.82,-3185.07 1659.86,-3223.95 1754.49,-3270.43 1758.83,-3343.13 1860.5,-3341.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3151.75C1557.72,-3151.75 1576.06,-3186.01 1659,-3225.75 1752.49,-3270.54 1756.83,-3343.25 1860.5,-3343.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3153.75C1555.96,-3152.69 1574.29,-3186.95 1658.14,-3227.55 1750.5,-3270.66 1754.83,-3343.37 1860.5,-3345.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3155.75C1554.19,-3153.64 1572.53,-3187.9 1657.27,-3229.36 1748.5,-3270.78 1752.84,-3343.49 1860.5,-3347.25"/>
</g>
<!-- _S_3 -->
<g id="node17" class="node">
<title>_S_3</title>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3115 1419.25,-3115 1419.25,-3090.5 1464.75,-3090.5 1464.75,-3115"/>
+<polygon fill="none" stroke="black" points="1419.25,-3090.5 1419.25,-3115 1464.75,-3115 1464.75,-3090.5 1419.25,-3090.5"/>
+<text text-anchor="start" x="1423.25" y="-3097.7" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W14 -->
+<g id="node25" class="node">
+<title>W14</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2115.5,-3163.25 1861.5,-3163.25 1861.5,-3044.25 2115.5,-3044.25 2115.5,-3163.25"/>
+<polygon fill="none" stroke="black" points="1861.5,-3138.75 1861.5,-3163.25 2115.5,-3163.25 2115.5,-3138.75 1861.5,-3138.75"/>
+<text text-anchor="start" x="1973.12" y="-3145.95" font-family="arial" font-size="14.00">W14</text>
+<polygon fill="none" stroke="black" points="1861.5,-3114.25 1861.5,-3138.75 1912.67,-3138.75 1912.67,-3114.25 1861.5,-3114.25"/>
+<text text-anchor="start" x="1879.58" y="-3121.45" font-family="arial" font-size="14.00">1x</text>
+<polygon fill="none" stroke="black" points="1912.67,-3114.25 1912.67,-3138.75 2004.33,-3138.75 2004.33,-3114.25 1912.67,-3114.25"/>
+<text text-anchor="start" x="1930.75" y="-3121.45" font-family="arial" font-size="14.00">18 AWG</text>
+<polygon fill="none" stroke="black" points="2004.33,-3114.25 2004.33,-3138.75 2115.5,-3138.75 2115.5,-3114.25 2004.33,-3114.25"/>
+<text text-anchor="start" x="2022.42" y="-3121.45" font-family="arial" font-size="14.00">10.0 Inches</text>
+<text text-anchor="start" x="1863.12" y="-3098.95" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1870.38" y="-3078.95" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1927.5" y="-3078.95" font-family="arial" font-size="14.00">Coil Pack 4:B:Sensor Ground</text>
+<polygon fill="#000000" stroke="none" points="1861.5,-3072.25 1861.5,-3074.25 2115.5,-3074.25 2115.5,-3072.25 1861.5,-3072.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3070.25 1861.5,-3072.25 2115.5,-3072.25 2115.5,-3070.25 1861.5,-3070.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3068.25 1861.5,-3070.25 2115.5,-3070.25 2115.5,-3068.25 1861.5,-3068.25"/>
+<polygon fill="#895956" stroke="none" points="1861.5,-3066.25 1861.5,-3068.25 2115.5,-3068.25 2115.5,-3066.25 1861.5,-3066.25"/>
+<polygon fill="#000000" stroke="none" points="1861.5,-3064.25 1861.5,-3066.25 2115.5,-3066.25 2115.5,-3064.25 1861.5,-3064.25"/>
+<text text-anchor="start" x="1863.12" y="-3048.95" font-family="arial" font-size="14.00"> </text>
+</g>
+<!-- _S_3&#45;&#45;W14 -->
+<g id="edge18" class="edge">
+<title>_S_3:e&#45;&#45;W14:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3098.75C1639.35,-3099.61 1681.95,-3066.11 1860.5,-3065.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3100.75C1640.59,-3101.18 1683.19,-3067.68 1860.5,-3067.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3102.75C1641.83,-3102.75 1684.42,-3069.25 1860.5,-3069.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1465.75,-3104.75C1643.06,-3104.32 1685.66,-3070.82 1860.5,-3071.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3106.75C1644.3,-3105.89 1686.9,-3072.39 1860.5,-3073.25"/>
+</g>
+<!-- _S_4 -->
+<g id="node18" class="node">
+<title>_S_4</title>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-3066 1419.25,-3066 1419.25,-3041.5 1464.75,-3041.5 1464.75,-3066"/>
+<polygon fill="none" stroke="black" points="1419.25,-3041.5 1419.25,-3066 1464.75,-3066 1464.75,-3041.5 1419.25,-3041.5"/>
+<text text-anchor="start" x="1423.25" y="-3048.7" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- _S_4&#45;&#45;W11 -->
+<g id="edge58" class="edge">
+<title>_S_4:e&#45;&#45;W11:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3049.75C1554.73,-3050.58 1593.71,-3080.46 1656.51,-3026.62 1801.67,-2915.85 1613.14,-2637.74 1803,-2631.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3051.75C1553.52,-3052.16 1592.49,-3082.05 1657.75,-3028.18 1803.32,-2914.73 1614.8,-2636.62 1803,-2633.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3053.75C1552.3,-3053.75 1591.27,-3083.64 1659,-3029.75 1804.98,-2913.6 1616.46,-2635.5 1803,-2635.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1465.75,-3055.75C1551.08,-3055.34 1590.06,-3085.22 1660.25,-3031.32 1806.63,-2912.48 1618.11,-2634.38 1803,-2637.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-3057.75C1549.86,-3056.92 1588.84,-3086.81 1661.49,-3032.88 1808.29,-2911.36 1619.77,-2633.26 1803,-2639.5"/>
+</g>
+<!-- _S_5 -->
+<g id="node19" class="node">
+<title>_S_5</title>
+<polygon fill="#ffffff" stroke="black" points="1464.75,-2672 1419.25,-2672 1419.25,-2647.5 1464.75,-2647.5 1464.75,-2672"/>
+<polygon fill="none" stroke="black" points="1419.25,-2647.5 1419.25,-2672 1464.75,-2672 1464.75,-2647.5 1419.25,-2647.5"/>
+<text text-anchor="start" x="1423.25" y="-2654.7" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- _S_5&#45;&#45;W11 -->
+<g id="edge60" class="edge">
+<title>_S_5:e&#45;&#45;W11:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2655.75C1616.27,-2655.8 1653.7,-2661.55 1803,-2661.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-2657.75C1615.96,-2657.77 1653.39,-2663.52 1803,-2663.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-2659.75C1615.66,-2659.75 1653.09,-2665.5 1803,-2665.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1465.75,-2661.75C1615.36,-2661.73 1652.79,-2667.48 1803,-2667.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2663.75C1615.05,-2663.7 1652.48,-2669.45 1803,-2669.5"/>
+</g>
+<!-- _S_6 -->
+<g id="node20" class="node">
+<title>_S_6</title>
<polygon fill="#ffffff" stroke="black" points="1464.75,-2623 1419.25,-2623 1419.25,-2598.5 1464.75,-2598.5 1464.75,-2623"/>
<polygon fill="none" stroke="black" points="1419.25,-2598.5 1419.25,-2623 1464.75,-2623 1464.75,-2598.5 1419.25,-2598.5"/>
<text text-anchor="start" x="1423.25" y="-2605.7" font-family="arial" font-size="14.00">splice</text>
</g>
-<!-- _S_3&#45;&#45;W11 -->
-<g id="edge56" class="edge">
-<title>_S_3:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2606.75C1550.72,-2607.1 1579.5,-2594.19 1660.75,-2632.15 1743.62,-2676.07 1717.07,-2778.5 1803,-2773.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2608.75C1551.54,-2608.93 1580.32,-2596.01 1659.88,-2633.95 1741.68,-2675.56 1715.13,-2778 1803,-2775.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2610.75C1552.35,-2610.75 1581.13,-2597.84 1659,-2635.75 1739.74,-2675.06 1713.19,-2777.5 1803,-2777.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2612.75C1553.17,-2612.57 1581.95,-2599.66 1658.12,-2637.55 1737.81,-2674.56 1711.26,-2777 1803,-2779.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2614.75C1553.99,-2614.4 1582.77,-2601.49 1657.25,-2639.35 1735.87,-2674.06 1709.32,-2776.5 1803,-2781.5"/>
+<!-- _S_6&#45;&#45;W11 -->
+<g id="edge62" class="edge">
+<title>_S_6:e&#45;&#45;W11:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2606.75C1615.1,-2606.79 1652.54,-2601.54 1803,-2601.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2608.75C1615.38,-2608.77 1652.82,-2603.52 1803,-2603.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2610.75C1615.66,-2610.75 1653.09,-2605.5 1803,-2605.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2612.75C1615.93,-2612.73 1653.37,-2607.48 1803,-2607.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1465.75,-2614.75C1616.21,-2614.71 1653.65,-2609.46 1803,-2609.5"/>
</g>
<!-- _GND_1 -->
-<g id="node18" class="node">
+<g id="node21" class="node">
<title>_GND_1</title>
-<polygon fill="#ffffff" stroke="black" points="2479,-2518 2439.5,-2518 2439.5,-2493.5 2479,-2493.5 2479,-2518"/>
-<polygon fill="none" stroke="black" points="2439.5,-2493.5 2439.5,-2518 2479,-2518 2479,-2493.5 2439.5,-2493.5"/>
-<text text-anchor="start" x="2443.5" y="-2500.7" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="#ffffff" stroke="black" points="2479,-2346 2439.5,-2346 2439.5,-2321.5 2479,-2321.5 2479,-2346"/>
+<polygon fill="none" stroke="black" points="2439.5,-2321.5 2439.5,-2346 2479,-2346 2479,-2321.5 2439.5,-2321.5"/>
+<text text-anchor="start" x="2443.5" y="-2328.7" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- W1&#45;&#45;Coil Pack 1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;Coil Pack 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3466.25C1489.14,-3472.36 860.65,-4483.36 1327.5,-4477.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3468.25C1487.44,-3471.31 858.96,-4482.31 1327.5,-4479.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3470.25C1485.74,-3470.25 857.26,-4481.25 1327.5,-4481.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3472.25C1484.04,-3469.19 855.56,-4480.19 1327.5,-4483.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3474.25C1482.35,-3468.14 853.86,-4479.14 1327.5,-4485.25"/>
-</g>
-<!-- W1&#45;&#45;Coil Pack 1 -->
-<g id="edge10" class="edge">
-<title>W1:e&#45;&#45;Coil Pack 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1530.03,-3352.41 819.7,-4459.41 1327.5,-4453.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1528.35,-3351.33 818.02,-4458.33 1327.5,-4455.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1526.67,-3350.25 816.33,-4457.25 1327.5,-4457.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1524.98,-3349.17 814.65,-4456.17 1327.5,-4459.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1523.3,-3348.09 812.97,-4455.09 1327.5,-4461.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3267.25C1233.36,-3273.24 1060.83,-3574.1 1227.49,-3702.62 1615.25,-4015.49 1840.32,-3852.01 2344.75,-3851.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3269.25C1231.62,-3272.24 1059.1,-3573.11 1226.25,-3704.19 1616.42,-4017.11 1841.49,-3853.63 2344.75,-3853.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3271.25C1229.89,-3271.25 1057.36,-3572.11 1225,-3705.75 1617.6,-4018.72 1842.67,-3855.25 2344.75,-3855.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3273.25C1228.15,-3270.26 1055.63,-3571.12 1223.75,-3707.31 1618.77,-4020.34 1843.84,-3856.87 2344.75,-3857.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3275.25C1226.42,-3269.26 1053.89,-3570.12 1222.51,-3708.88 1619.95,-4021.96 1845.02,-3858.49 2344.75,-3859.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;Coil Pack 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3436.25C1348.34,-3442.08 1001.77,-4114.08 1327.5,-4108.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3438.25C1346.56,-3441.17 999.99,-4113.17 1327.5,-4110.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3440.25C1344.79,-3440.25 998.21,-4112.25 1327.5,-4112.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3442.25C1343.01,-3439.33 996.44,-4111.33 1327.5,-4114.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3444.25C1341.23,-3438.42 994.66,-4110.42 1327.5,-4116.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3237.25C1220.87,-3242.32 1129.84,-3571.32 1327.5,-3566.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3239.25C1218.95,-3241.78 1127.91,-3570.78 1327.5,-3568.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3241.25C1217.02,-3241.25 1125.98,-3570.25 1327.5,-3570.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3243.25C1215.09,-3240.72 1124.05,-3569.72 1327.5,-3572.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3245.25C1213.16,-3240.18 1122.13,-3569.18 1327.5,-3574.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 2 -->
-<g id="edge11" class="edge">
+<g id="edge10" class="edge">
<title>W1:e&#45;&#45;Coil Pack 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1375.12,-3352.16 974.91,-4090.16 1327.5,-4084.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1373.37,-3351.2 973.15,-4089.2 1327.5,-4086.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1371.61,-3350.25 971.39,-4088.25 1327.5,-4088.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1369.85,-3349.3 969.63,-4087.3 1327.5,-4090.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1368.09,-3348.34 967.88,-4086.34 1327.5,-4092.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1243,-3152.55 1107.57,-3547.55 1327.5,-3542.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1241.11,-3151.9 1105.68,-3546.9 1327.5,-3544.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1239.21,-3151.25 1103.79,-3546.25 1327.5,-3546.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1237.32,-3150.6 1101.89,-3545.6 1327.5,-3548.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1235.43,-3149.95 1100,-3544.95 1327.5,-3550.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 3 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;Coil Pack 3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3406.25C1222.16,-3411.33 1128.54,-3744.33 1327.5,-3739.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3408.25C1220.24,-3410.79 1126.61,-3743.79 1327.5,-3741.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3410.25C1218.31,-3410.25 1124.69,-3743.25 1327.5,-3743.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3412.25C1216.39,-3409.71 1122.76,-3742.71 1327.5,-3745.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3414.25C1214.46,-3409.17 1120.84,-3742.17 1327.5,-3747.25"/>
-</g>
-<!-- W1&#45;&#45;Coil Pack 3 -->
-<g id="edge12" class="edge">
-<title>W1:e&#45;&#45;Coil Pack 3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1234.08,-3351.46 1116.55,-3720.46 1327.5,-3715.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1232.17,-3350.86 1114.64,-3719.86 1327.5,-3717.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1230.27,-3350.25 1112.73,-3719.25 1327.5,-3719.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1228.36,-3349.64 1110.83,-3718.64 1327.5,-3721.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1226.45,-3349.04 1108.92,-3718.04 1327.5,-3723.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3207.25C1232.55,-3213.26 1047.48,-3532.33 1227.12,-3640.36 1648.05,-3909.62 1837.47,-3468.67 2344.75,-3466.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3209.25C1230.82,-3212.25 1045.75,-3531.33 1226.06,-3642.06 1649.88,-3910.41 1839.31,-3469.46 2344.75,-3468.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3211.25C1229.09,-3211.25 1044.02,-3530.32 1225,-3643.75 1651.72,-3911.2 1841.14,-3470.25 2344.75,-3470.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3213.25C1227.36,-3210.25 1042.29,-3529.32 1223.94,-3645.44 1653.56,-3911.99 1842.98,-3471.04 2344.75,-3472.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3215.25C1225.63,-3209.24 1040.56,-3528.32 1222.88,-3647.14 1655.4,-3912.78 1844.82,-3471.83 2344.75,-3474.25"/>
</g>
<!-- W1&#45;&#45;Coil Pack 4 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;Coil Pack 4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3376.25C1153.51,-3376.31 1188.12,-3370.31 1327.5,-3370.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3378.25C1153.85,-3378.28 1188.47,-3372.28 1327.5,-3372.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3380.25C1154.19,-3380.25 1188.81,-3374.25 1327.5,-3374.25"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3382.25C1154.53,-3382.22 1189.15,-3376.22 1327.5,-3376.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3384.25C1154.88,-3384.19 1189.49,-3378.19 1327.5,-3378.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3177.25C1532.8,-3178.05 1673.68,-3283.83 2173.14,-3171.84 2251.57,-3157.33 2257.24,-3096.88 2344.75,-3093.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3179.25C1531.6,-3179.65 1672.47,-3285.43 2173.57,-3173.8 2253.56,-3157.51 2259.23,-3097.06 2344.75,-3095.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3181.25C1530.39,-3181.25 1671.27,-3287.03 2174,-3175.75 2255.55,-3157.7 2261.23,-3097.25 2344.75,-3097.25"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1015.5,-3183.25C1529.19,-3182.85 1670.07,-3288.63 2174.43,-3177.7 2257.54,-3157.89 2263.22,-3097.44 2344.75,-3099.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3185.25C1527.99,-3184.45 1668.87,-3290.23 2174.86,-3179.66 2259.53,-3158.07 2265.21,-3097.62 2344.75,-3101.25"/>
</g>
-<!-- W1&#45;&#45;Coil Pack 4 -->
+<!-- W1&#45;&#45;_S_1 -->
+<g id="edge11" class="edge">
+<title>W1:e&#45;&#45;_S_1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1117.23,-3149.91 1133.5,-3195.6 1225.93,-3215.86 1311.16,-3236.34 1332.97,-3246.1 1418.25,-3245.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1115.35,-3150.58 1131.61,-3196.27 1225.47,-3217.8 1310.35,-3238.16 1332.15,-3247.92 1418.25,-3247.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1113.46,-3151.25 1129.73,-3196.94 1225,-3219.75 1309.53,-3239.99 1331.33,-3249.75 1418.25,-3249.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1111.58,-3151.92 1127.85,-3197.61 1224.53,-3221.7 1308.71,-3241.81 1330.52,-3251.58 1418.25,-3251.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1109.69,-3152.59 1125.96,-3198.28 1224.07,-3223.64 1307.89,-3243.64 1329.7,-3253.4 1418.25,-3253.75"/>
+</g>
+<!-- W1&#45;&#45;_S_2 -->
+<g id="edge12" class="edge">
+<title>W1:e&#45;&#45;_S_2:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1194.54,-3147.25 1239.29,-3147.75 1418.25,-3147.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1194.52,-3149.25 1239.27,-3149.75 1418.25,-3149.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1194.5,-3151.25 1239.25,-3151.75 1418.25,-3151.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1194.48,-3153.25 1239.23,-3153.75 1418.25,-3153.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1194.46,-3155.25 1239.21,-3155.75 1418.25,-3155.75"/>
+</g>
+<!-- W1&#45;&#45;_S_3 -->
<g id="edge13" class="edge">
-<title>W1:e&#45;&#45;Coil Pack 4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3346.25C1154.17,-3346.25 1188.83,-3346.25 1327.5,-3346.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3348.25C1154.17,-3348.25 1188.83,-3348.25 1327.5,-3348.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3350.25C1154.17,-3350.25 1188.83,-3350.25 1327.5,-3350.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3352.25C1154.17,-3352.25 1188.83,-3352.25 1327.5,-3352.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3354.25C1154.17,-3354.25 1188.83,-3354.25 1327.5,-3354.25"/>
+<title>W1:e&#45;&#45;_S_3:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3147.25C1192.77,-3148.63 1234.94,-3100.13 1418.25,-3098.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3149.25C1194.28,-3149.94 1236.45,-3101.44 1418.25,-3100.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3151.25C1195.79,-3151.25 1237.96,-3102.75 1418.25,-3102.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1015.5,-3153.25C1197.3,-3152.56 1239.47,-3104.06 1418.25,-3104.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1015.5,-3155.25C1198.81,-3153.87 1240.98,-3105.37 1418.25,-3106.75"/>
+</g>
+<!-- W12&#45;&#45;Coil Pack 1 -->
+<g id="edge15" class="edge">
+<title>W12:e&#45;&#45;Coil Pack 1:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3727.25C2231.24,-3730.98 2237.99,-3830.98 2344.75,-3827.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3729.25C2229.25,-3731.12 2235.99,-3831.12 2344.75,-3829.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3731.25C2227.25,-3731.25 2234,-3831.25 2344.75,-3831.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3733.25C2225.26,-3731.38 2232,-3831.38 2344.75,-3833.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3735.25C2223.26,-3731.52 2230.01,-3831.52 2344.75,-3835.25"/>
+</g>
+<!-- W13&#45;&#45;Coil Pack 3 -->
+<g id="edge17" class="edge">
+<title>W13:e&#45;&#45;Coil Pack 3:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3339.25C2231.79,-3343.03 2237.45,-3446.03 2344.75,-3442.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3341.25C2229.79,-3343.14 2235.45,-3446.14 2344.75,-3444.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3343.25C2227.8,-3343.25 2233.45,-3446.25 2344.75,-3446.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3345.25C2225.8,-3343.36 2231.46,-3446.36 2344.75,-3448.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3347.25C2223.8,-3343.47 2229.46,-3446.47 2344.75,-3450.25"/>
+</g>
+<!-- W14&#45;&#45;Coil Pack 4 -->
+<g id="edge19" class="edge">
+<title>W14:e&#45;&#45;Coil Pack 4:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3065.25C2218.58,-3065.3 2243.91,-3069.3 2344.75,-3069.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3067.25C2218.27,-3067.27 2243.6,-3071.27 2344.75,-3071.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3069.25C2217.96,-3069.25 2243.29,-3073.25 2344.75,-3073.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M2116.5,-3071.25C2217.65,-3071.23 2242.98,-3075.23 2344.75,-3075.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2116.5,-3073.25C2217.34,-3073.2 2242.67,-3077.2 2344.75,-3077.25"/>
</g>
<!-- W3&#45;&#45;Fuel Injector 1 -->
-<g id="edge15" class="edge">
+<g id="edge21" class="edge">
<title>W3:e&#45;&#45;Fuel Injector 1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1373.25C1139.23,-1377.56 1124.79,-1189.06 1287,-1184.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1375.25C1141.23,-1377.4 1126.78,-1188.9 1287,-1186.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1377.25C1143.22,-1377.25 1128.78,-1188.75 1287,-1188.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1379.25C1145.22,-1377.1 1130.77,-1188.6 1287,-1190.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1381.25C1147.21,-1376.94 1132.77,-1188.44 1287,-1192.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1385.25C1142.13,-1389.65 1121.91,-1189.15 1287,-1184.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1387.25C1144.12,-1389.45 1123.9,-1188.95 1287,-1186.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1389.25C1146.11,-1389.25 1125.89,-1188.75 1287,-1188.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1391.25C1148.1,-1389.05 1127.88,-1188.55 1287,-1190.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1393.25C1150.09,-1388.85 1129.87,-1188.35 1287,-1192.75"/>
</g>
<!-- W4&#45;&#45;Fuel Injector 2 -->
-<g id="edge17" class="edge">
+<g id="edge23" class="edge">
<title>W4:e&#45;&#45;Fuel Injector 2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1030.25C1141.88,-1034.64 1122.15,-835.14 1287,-830.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1032.25C1143.87,-1034.45 1124.15,-834.95 1287,-832.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1034.25C1145.86,-1034.25 1126.14,-834.75 1287,-834.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1036.25C1147.85,-1034.05 1128.13,-834.55 1287,-836.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1038.25C1149.85,-1033.86 1130.12,-834.36 1287,-838.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1036.25C1143.37,-1040.69 1120.67,-835.19 1287,-830.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1038.25C1145.36,-1040.47 1122.66,-834.97 1287,-832.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1040.25C1147.35,-1040.25 1124.65,-834.75 1287,-834.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M985,-1042.25C1149.34,-1040.03 1126.64,-834.53 1287,-836.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M985,-1044.25C1151.33,-1039.81 1128.63,-834.31 1287,-838.75"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge19" class="edge">
+<g id="edge25" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2382.25C1135.02,-2383.37 1166.04,-2413.37 1293.5,-2412.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2384.25C1133.63,-2384.81 1164.65,-2414.81 1293.5,-2414.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2386.25C1132.24,-2386.25 1163.26,-2416.25 1293.5,-2416.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2388.25C1130.85,-2387.69 1161.87,-2417.69 1293.5,-2418.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2390.25C1129.46,-2389.13 1160.48,-2419.13 1293.5,-2420.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2376.25C1135.6,-2377.67 1166.02,-2413.67 1293.5,-2412.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2378.25C1134.07,-2378.96 1164.49,-2414.96 1293.5,-2414.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2380.25C1132.54,-2380.25 1162.96,-2416.25 1293.5,-2416.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1002,-2382.25C1131.01,-2381.54 1161.43,-2417.54 1293.5,-2418.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2384.25C1129.48,-2382.83 1159.9,-2418.83 1293.5,-2420.25"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge21" class="edge">
+<g id="edge27" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2352.25C1135.6,-2353.67 1166.02,-2389.67 1293.5,-2388.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2354.25C1134.07,-2354.96 1164.49,-2390.96 1293.5,-2390.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2356.25C1132.54,-2356.25 1162.96,-2392.25 1293.5,-2392.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2358.25C1131.01,-2357.54 1161.43,-2393.54 1293.5,-2394.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2360.25C1129.48,-2358.83 1159.9,-2394.83 1293.5,-2396.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2346.25C1136.16,-2347.94 1165.87,-2389.94 1293.5,-2388.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2348.25C1134.53,-2349.09 1164.24,-2391.09 1293.5,-2390.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2350.25C1132.89,-2350.25 1162.61,-2392.25 1293.5,-2392.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1002,-2352.25C1131.26,-2351.41 1160.97,-2393.41 1293.5,-2394.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2354.25C1129.63,-2352.56 1159.34,-2394.56 1293.5,-2396.25"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge23" class="edge">
+<g id="edge29" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2322.25C1130.85,-2322.32 1163.19,-2316.32 1293.5,-2316.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2324.25C1131.22,-2324.28 1163.55,-2318.28 1293.5,-2318.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2326.25C1131.58,-2326.25 1163.92,-2320.25 1293.5,-2320.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2328.25C1131.95,-2328.22 1164.28,-2322.22 1293.5,-2322.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2330.25C1132.31,-2330.18 1164.65,-2324.18 1293.5,-2324.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2316.25C1131.56,-2316.25 1163.94,-2316.25 1293.5,-2316.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2318.25C1131.56,-2318.25 1163.94,-2318.25 1293.5,-2318.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2320.25C1131.56,-2320.25 1163.94,-2320.25 1293.5,-2320.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1002,-2322.25C1131.56,-2322.25 1163.94,-2322.25 1293.5,-2322.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2324.25C1131.56,-2324.25 1163.94,-2324.25 1293.5,-2324.25"/>
</g>
<!-- W5&#45;&#45;LSU -->
-<g id="edge25" class="edge">
+<g id="edge31" class="edge">
<title>W5:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2292.25C1131.56,-2292.25 1163.94,-2292.25 1293.5,-2292.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2294.25C1131.56,-2294.25 1163.94,-2294.25 1293.5,-2294.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2296.25C1131.56,-2296.25 1163.94,-2296.25 1293.5,-2296.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2298.25C1131.56,-2298.25 1163.94,-2298.25 1293.5,-2298.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2300.25C1131.56,-2300.25 1163.94,-2300.25 1293.5,-2300.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2286.25C1132.31,-2286.32 1164.65,-2292.32 1293.5,-2292.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2288.25C1131.95,-2288.28 1164.28,-2294.28 1293.5,-2294.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2290.25C1131.58,-2290.25 1163.92,-2296.25 1293.5,-2296.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1002,-2292.25C1131.22,-2292.22 1163.55,-2298.22 1293.5,-2298.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1002,-2294.25C1130.85,-2294.18 1163.19,-2300.18 1293.5,-2300.25"/>
</g>
<!-- W6&#45;&#45;LSU -->
-<g id="edge28" class="edge">
+<g id="edge34" class="edge">
<title>W6:e&#45;&#45;LSU:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2525.25C1139.95,-2529.49 1129.06,-2344.49 1293.5,-2340.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2527.25C1141.95,-2529.37 1131.06,-2344.37 1293.5,-2342.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2529.25C1143.95,-2529.25 1133.05,-2344.25 1293.5,-2344.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2531.25C1145.94,-2529.13 1135.05,-2344.13 1293.5,-2346.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2533.25C1147.94,-2529.01 1137.05,-2344.01 1293.5,-2348.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2519.25C1138.6,-2523.43 1130.41,-2344.43 1293.5,-2340.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2521.25C1140.6,-2523.34 1132.41,-2344.34 1293.5,-2342.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2523.25C1142.6,-2523.25 1134.4,-2344.25 1293.5,-2344.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M983.5,-2525.25C1144.59,-2523.16 1136.4,-2344.16 1293.5,-2346.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M983.5,-2527.25C1146.59,-2523.07 1138.4,-2344.07 1293.5,-2348.25"/>
</g>
<!-- W7&#45;&#45;Veronte 1X CAN Bus -->
-<g id="edge30" class="edge">
+<g id="edge36" class="edge">
<title>W7:e&#45;&#45;Veronte 1X CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2794.5C1177.26,-2797.57 1197.52,-2882.32 1324.5,-2879.25"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2796.5C1175.32,-2798.04 1195.57,-2882.79 1324.5,-2881.25"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2798.5C1173.37,-2798.5 1193.63,-2883.25 1324.5,-2883.25"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2800.5C1171.43,-2798.96 1191.68,-2883.71 1324.5,-2885.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2802.5C1169.48,-2799.43 1189.74,-2884.18 1324.5,-2887.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2788.5C1186.38,-2792.44 1188.62,-2932.19 1324.5,-2928.25"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2790.5C1184.38,-2792.47 1186.62,-2932.22 1324.5,-2930.25"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2792.5C1182.38,-2792.5 1184.62,-2932.25 1324.5,-2932.25"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2794.5C1180.38,-2792.53 1182.62,-2932.28 1324.5,-2934.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2796.5C1178.38,-2792.56 1180.62,-2932.31 1324.5,-2936.25"/>
</g>
<!-- W7&#45;&#45;Veronte 1X CAN Bus -->
-<g id="edge32" class="edge">
+<g id="edge38" class="edge">
<title>W7:e&#45;&#45;Veronte 1X CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2764.5C1186.18,-2768.42 1188.82,-2907.17 1324.5,-2903.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2766.5C1184.18,-2768.46 1186.82,-2907.21 1324.5,-2905.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2768.5C1182.18,-2768.5 1184.82,-2907.25 1324.5,-2907.25"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2770.5C1180.18,-2768.54 1182.82,-2907.29 1324.5,-2909.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2772.5C1178.18,-2768.58 1180.82,-2907.33 1324.5,-2911.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2758.5C1198.54,-2762.95 1176.41,-2956.7 1324.5,-2952.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2760.5C1196.55,-2762.73 1174.42,-2956.48 1324.5,-2954.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2762.5C1194.56,-2762.5 1172.44,-2956.25 1324.5,-2956.25"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2764.5C1192.58,-2762.27 1170.45,-2956.02 1324.5,-2958.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2766.5C1190.59,-2762.05 1168.46,-2955.8 1324.5,-2960.25"/>
</g>
<!-- W7&#45;&#45;Veronte 1X CAN Bus -->
-<g id="edge34" class="edge">
+<g id="edge40" class="edge">
<title>W7:e&#45;&#45;Veronte 1X CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1182.83,-2738.19 1192.15,-2858.94 1324.5,-2855.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1180.83,-2738.35 1190.15,-2859.1 1324.5,-2857.25"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2738.5C1178.84,-2738.5 1188.16,-2859.25 1324.5,-2859.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2740.5C1176.85,-2738.65 1186.17,-2859.4 1324.5,-2861.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2742.5C1174.85,-2738.81 1184.17,-2859.56 1324.5,-2863.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2728.5C1194.17,-2732.8 1180.81,-2908.55 1324.5,-2904.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2730.5C1192.18,-2732.65 1178.81,-2908.4 1324.5,-2906.25"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2732.5C1190.18,-2732.5 1176.82,-2908.25 1324.5,-2908.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1188.19,-2732.35 1174.82,-2908.1 1324.5,-2910.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1186.19,-2732.2 1172.83,-2907.95 1324.5,-2912.25"/>
</g>
<!-- W7&#45;&#45;shield1 -->
-<g id="edge39" class="edge">
+<g id="edge45" class="edge">
<title>W7:e&#45;&#45;shield1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2692.5C1136.24,-2692.5 1141.02,-2628.41 1225,-2586.75 1300.89,-2549.1 1316.16,-2513.25 1400.88,-2513.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2686.5C1134.94,-2686.5 1141.69,-2626.79 1225,-2586.75 1301.36,-2550.05 1316.16,-2513.25 1400.88,-2513.25"/>
</g>
-<!-- W7&#45;&#45;_S_1 -->
-<g id="edge36" class="edge">
-<title>W7:e&#45;&#45;_S_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2794.5C1176.83,-2799.89 1115.08,-2965.87 1226.97,-3025.27 1298.42,-3067.89 1329.68,-3050.27 1418.25,-3049.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2796.5C1174.95,-2799.2 1113.21,-2965.18 1225.98,-3027.01 1299.41,-3069.63 1330.66,-3052.01 1418.25,-3051.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2798.5C1173.08,-2798.5 1111.33,-2964.48 1225,-3028.75 1300.39,-3071.38 1331.65,-3053.75 1418.25,-3053.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2800.5C1171.21,-2797.8 1109.46,-2963.78 1224.02,-3030.49 1301.37,-3073.12 1332.63,-3055.49 1418.25,-3055.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2802.5C1169.33,-2797.11 1107.58,-2963.08 1223.03,-3032.23 1302.35,-3074.86 1333.61,-3057.23 1418.25,-3057.75"/>
-</g>
-<!-- W7&#45;&#45;_S_2 -->
-<g id="edge37" class="edge">
-<title>W7:e&#45;&#45;_S_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2764.5C1170.7,-2769.77 1119.14,-2923.24 1226.89,-2977.22 1299.34,-3018.14 1329.76,-3001.25 1418.25,-3000.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2766.5C1168.81,-2769.14 1117.25,-2922.61 1225.94,-2978.99 1300.31,-3019.89 1330.73,-3003 1418.25,-3002.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2768.5C1166.91,-2768.5 1115.35,-2921.97 1225,-2980.75 1301.28,-3021.64 1331.7,-3004.75 1418.25,-3004.75"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2770.5C1165.01,-2767.86 1113.46,-2921.33 1224.06,-2982.51 1302.25,-3023.39 1332.67,-3006.5 1418.25,-3006.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2772.5C1163.12,-2767.23 1111.56,-2920.7 1223.11,-2984.28 1303.22,-3025.14 1333.64,-3008.25 1418.25,-3008.75"/>
-</g>
-<!-- W7&#45;&#45;_S_3 -->
-<g id="edge38" class="edge">
-<title>W7:e&#45;&#45;_S_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1131.58,-2738.44 1132.66,-2665.04 1223.74,-2631.95 1307.56,-2604.47 1332.02,-2606.77 1418.25,-2606.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1133.58,-2738.47 1134.66,-2665.06 1224.37,-2633.85 1307.38,-2606.46 1331.83,-2608.76 1418.25,-2608.75"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2738.5C1135.58,-2738.5 1136.66,-2665.09 1225,-2635.75 1307.19,-2608.45 1331.65,-2610.75 1418.25,-2610.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2740.5C1137.58,-2738.53 1138.66,-2665.12 1225.63,-2637.65 1307,-2610.44 1331.46,-2612.74 1418.25,-2612.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2742.5C1139.58,-2738.56 1140.66,-2665.15 1226.26,-2639.55 1306.81,-2612.43 1331.27,-2614.73 1418.25,-2614.75"/>
+<!-- W7&#45;&#45;_S_4 -->
+<g id="edge42" class="edge">
+<title>W7:e&#45;&#45;_S_4:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2788.5C1179.26,-2793.94 1113.24,-2965.17 1226.99,-3026.28 1298.08,-3069.27 1329.64,-3050.32 1418.25,-3049.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2790.5C1177.4,-2793.22 1111.37,-2964.45 1225.99,-3028.01 1299.11,-3070.99 1330.67,-3052.04 1418.25,-3051.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2792.5C1175.53,-2792.5 1109.51,-2963.73 1225,-3029.75 1300.14,-3072.7 1331.7,-3053.75 1418.25,-3053.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1042.5,-2794.5C1173.67,-2791.78 1107.64,-2963.01 1224.01,-3031.49 1301.17,-3074.42 1332.73,-3055.46 1418.25,-3055.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2796.5C1171.8,-2791.06 1105.78,-2962.29 1223.01,-3033.22 1302.2,-3076.13 1333.76,-3057.18 1418.25,-3057.75"/>
+</g>
+<!-- W7&#45;&#45;_S_5 -->
+<g id="edge43" class="edge">
+<title>W7:e&#45;&#45;_S_5:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2758.5C1126.72,-2761.83 1135.98,-2707.23 1223.95,-2680.89 1308.18,-2658.03 1331.26,-2655.77 1418.25,-2655.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2760.5C1128.69,-2762.17 1137.96,-2707.57 1224.47,-2682.82 1308.37,-2660.02 1331.45,-2657.76 1418.25,-2657.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2762.5C1130.67,-2762.5 1139.93,-2707.9 1225,-2684.75 1308.57,-2662.01 1331.65,-2659.75 1418.25,-2659.75"/>
+<path fill="none" stroke="#999999" stroke-width="2" d="M1042.5,-2764.5C1132.64,-2762.83 1141.9,-2708.24 1225.53,-2686.68 1308.76,-2664 1331.84,-2661.74 1418.25,-2661.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2766.5C1134.61,-2763.17 1143.87,-2708.57 1226.05,-2688.61 1308.96,-2665.99 1332.04,-2663.73 1418.25,-2663.75"/>
+</g>
+<!-- W7&#45;&#45;_S_6 -->
+<g id="edge44" class="edge">
+<title>W7:e&#45;&#45;_S_6:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2728.5C1130.31,-2732.31 1133.52,-2663.4 1223.79,-2631.94 1307.74,-2605.5 1331.85,-2606.76 1418.25,-2606.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2730.5C1132.31,-2732.41 1135.52,-2663.49 1224.39,-2633.84 1307.63,-2607.49 1331.75,-2608.75 1418.25,-2608.75"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M1042.5,-2732.5C1134.3,-2732.5 1137.52,-2663.59 1225,-2635.75 1307.53,-2609.49 1331.65,-2610.75 1418.25,-2610.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2734.5C1136.3,-2732.59 1139.52,-2663.68 1225.61,-2637.66 1307.42,-2611.49 1331.54,-2612.75 1418.25,-2612.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1042.5,-2736.5C1138.3,-2732.69 1141.51,-2663.77 1226.21,-2639.56 1307.32,-2613.49 1331.44,-2614.74 1418.25,-2614.75"/>
</g>
<!-- W8&#45;&#45;Coolant/Crank Sensor -->
-<g id="edge41" class="edge">
+<g id="edge47" class="edge">
<title>W8:e&#45;&#45;Coolant/Crank Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2079.25C1178.41,-2082.72 1189.16,-2002.47 1294.5,-1999"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2081.25C1180.39,-2082.98 1191.15,-2002.73 1294.5,-2001"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2083.25C1182.37,-2083.25 1193.13,-2003 1294.5,-2003"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2085.25C1184.35,-2083.52 1195.11,-2003.27 1294.5,-2005"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2087.25C1186.34,-2083.78 1197.09,-2003.53 1294.5,-2007"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2077.25C1178.1,-2080.67 1189.48,-2002.42 1294.5,-1999"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2079.25C1180.08,-2080.96 1191.46,-2002.71 1294.5,-2001"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2081.25C1182.06,-2081.25 1193.44,-2003 1294.5,-2003"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1081,-2083.25C1184.04,-2081.54 1195.42,-2003.29 1294.5,-2005"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2085.25C1186.02,-2081.83 1197.4,-2003.58 1294.5,-2007"/>
</g>
<!-- W8&#45;&#45;Coolant/Crank Sensor -->
-<g id="edge43" class="edge">
+<g id="edge49" class="edge">
<title>W8:e&#45;&#45;Coolant/Crank Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2049.25C1173.55,-2050.66 1195.85,-2024.41 1294.5,-2023"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2051.25C1175.08,-2051.96 1197.37,-2025.71 1294.5,-2025"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2053.25C1176.6,-2053.25 1198.9,-2027 1294.5,-2027"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2055.25C1178.13,-2054.54 1200.42,-2028.29 1294.5,-2029"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2057.25C1179.65,-2055.84 1201.95,-2029.59 1294.5,-2031"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2047.25C1173.57,-2048.53 1196.07,-2024.28 1294.5,-2023"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2049.25C1175.03,-2049.89 1197.53,-2025.64 1294.5,-2025"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2051.25C1176.5,-2051.25 1199,-2027 1294.5,-2027"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2053.25C1177.97,-2052.61 1200.47,-2028.36 1294.5,-2029"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1081,-2055.25C1179.43,-2053.97 1201.93,-2029.72 1294.5,-2031"/>
</g>
<!-- W9&#45;&#45;MAF Sensor -->
-<g id="edge45" class="edge">
+<g id="edge51" class="edge">
<title>W9:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1793.25C1149.4,-1797.39 1144.11,-1644.39 1287,-1640.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1795.25C1151.4,-1797.32 1146.11,-1644.32 1287,-1642.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1797.25C1153.4,-1797.25 1148.1,-1644.25 1287,-1644.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1799.25C1155.39,-1797.18 1150.1,-1644.18 1287,-1646.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1801.25C1157.39,-1797.11 1152.1,-1644.11 1287,-1648.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1766.25C1143.94,-1770.07 1149.57,-1644.07 1287,-1640.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1768.25C1145.93,-1770.16 1151.57,-1644.16 1287,-1642.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1770.25C1147.93,-1770.25 1153.57,-1644.25 1287,-1644.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1772.25C1149.93,-1770.34 1155.57,-1644.34 1287,-1646.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1774.25C1151.93,-1770.43 1157.56,-1644.43 1287,-1648.25"/>
</g>
<!-- W9&#45;&#45;MAF Sensor -->
-<g id="edge47" class="edge">
+<g id="edge53" class="edge">
<title>W9:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1763.25C1148.11,-1767.32 1145.39,-1620.32 1287,-1616.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1765.25C1150.11,-1767.29 1147.39,-1620.29 1287,-1618.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1767.25C1152.11,-1767.25 1149.39,-1620.25 1287,-1620.25"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1769.25C1154.11,-1767.21 1151.39,-1620.21 1287,-1622.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1771.25C1156.11,-1767.18 1153.39,-1620.18 1287,-1624.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1736.25C1142.84,-1739.99 1150.67,-1619.99 1287,-1616.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1738.25C1144.84,-1740.12 1152.67,-1620.12 1287,-1618.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1740.25C1146.83,-1740.25 1154.67,-1620.25 1287,-1620.25"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M1014.5,-1742.25C1148.83,-1740.38 1156.66,-1620.38 1287,-1622.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1744.25C1150.83,-1740.51 1158.66,-1620.51 1287,-1624.25"/>
</g>
<!-- W9&#45;&#45;MAF Sensor -->
-<g id="edge49" class="edge">
+<g id="edge55" class="edge">
<title>W9:e&#45;&#45;MAF Sensor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1733.25C1146.86,-1737.26 1146.64,-1596.26 1287,-1592.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1735.25C1148.86,-1737.25 1148.64,-1596.25 1287,-1594.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1737.25C1150.86,-1737.25 1150.64,-1596.25 1287,-1596.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1739.25C1152.86,-1737.25 1152.64,-1596.25 1287,-1598.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1741.25C1154.86,-1737.24 1154.64,-1596.24 1287,-1600.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1706.25C1141.8,-1709.9 1151.73,-1595.9 1287,-1592.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1708.25C1143.79,-1710.08 1153.73,-1596.08 1287,-1594.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1710.25C1145.78,-1710.25 1155.72,-1596.25 1287,-1596.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1712.25C1147.77,-1710.42 1157.71,-1596.42 1287,-1598.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1014.5,-1714.25C1149.77,-1710.6 1159.7,-1596.6 1287,-1600.25"/>
</g>
<!-- W10&#45;&#45;Tachometer -->
-<g id="edge51" class="edge">
+<g id="edge57" class="edge">
<title>W10:e&#45;&#45;Tachometer:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-770.5C1145.93,-775.77 1039.49,-457.77 1225,-452.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-772.5C1147.82,-775.13 1041.38,-457.13 1225,-454.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-774.5C1149.72,-774.5 1043.28,-456.5 1225,-456.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-776.5C1151.62,-773.87 1045.18,-455.87 1225,-458.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M968,-778.5C1153.51,-773.23 1047.07,-455.23 1225,-460.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-776.5C1148.02,-781.79 1037.41,-457.79 1225,-452.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-778.5C1149.91,-781.15 1039.31,-457.15 1225,-454.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-780.5C1151.8,-780.5 1041.2,-456.5 1225,-456.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-782.5C1153.69,-779.85 1043.09,-455.85 1225,-458.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M968,-784.5C1155.59,-779.21 1044.98,-455.21 1225,-460.5"/>
</g>
<!-- W11&#45;&#45;Throttle Servo CAN -->
-<g id="edge53" class="edge">
+<g id="edge59" class="edge">
<title>W11:e&#45;&#45;Throttle Servo CAN:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2803.5C2236.14,-2804.03 2251.89,-2795.03 2318,-2794.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2805.5C2237.13,-2805.76 2252.88,-2796.76 2318,-2796.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2807.5C2238.12,-2807.5 2253.88,-2798.5 2318,-2798.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2809.5C2239.12,-2809.24 2254.87,-2800.24 2318,-2800.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2811.5C2240.11,-2810.97 2255.86,-2801.97 2318,-2802.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2631.5C2236.14,-2632.03 2251.89,-2623.03 2318,-2622.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2633.5C2237.13,-2633.76 2252.88,-2624.76 2318,-2624.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2635.5C2238.12,-2635.5 2253.88,-2626.5 2318,-2626.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M2174,-2637.5C2239.12,-2637.24 2254.87,-2628.24 2318,-2628.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2639.5C2240.11,-2638.97 2255.86,-2629.97 2318,-2630.5"/>
</g>
<!-- W11&#45;&#45;Throttle Servo CAN -->
-<g id="edge55" class="edge">
+<g id="edge61" class="edge">
<title>W11:e&#45;&#45;Throttle Servo CAN:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2833.5C2240.11,-2834.03 2255.86,-2843.03 2318,-2842.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2835.5C2239.12,-2835.76 2254.87,-2844.76 2318,-2844.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2837.5C2238.12,-2837.5 2253.88,-2846.5 2318,-2846.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2839.5C2237.13,-2839.24 2252.88,-2848.24 2318,-2848.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2841.5C2236.14,-2840.97 2251.89,-2849.97 2318,-2850.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2661.5C2240.11,-2662.03 2255.86,-2671.03 2318,-2670.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2663.5C2239.12,-2663.76 2254.87,-2672.76 2318,-2672.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2665.5C2238.12,-2665.5 2253.88,-2674.5 2318,-2674.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M2174,-2667.5C2237.13,-2667.24 2252.88,-2676.24 2318,-2676.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2669.5C2236.14,-2668.97 2251.89,-2677.97 2318,-2678.5"/>
</g>
<!-- W11&#45;&#45;Throttle Servo CAN -->
-<g id="edge57" class="edge">
+<g id="edge63" class="edge">
<title>W11:e&#45;&#45;Throttle Servo CAN:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2773.5C2244.96,-2776.64 2254.85,-2821.64 2318,-2818.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2775.5C2243.01,-2777.07 2252.9,-2822.07 2318,-2820.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2777.5C2241.05,-2777.5 2250.95,-2822.5 2318,-2822.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2779.5C2239.1,-2777.93 2248.99,-2822.93 2318,-2824.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2781.5C2237.15,-2778.36 2247.04,-2823.36 2318,-2826.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2601.5C2244.96,-2604.64 2254.85,-2649.64 2318,-2646.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2603.5C2243.01,-2605.07 2252.9,-2650.07 2318,-2648.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2605.5C2241.05,-2605.5 2250.95,-2650.5 2318,-2650.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2607.5C2239.1,-2605.93 2248.99,-2650.93 2318,-2652.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2609.5C2237.15,-2606.36 2247.04,-2651.36 2318,-2654.5"/>
</g>
<!-- W11&#45;&#45;_GND_1 -->
-<g id="edge59" class="edge">
+<g id="edge65" class="edge">
<title>W11:e&#45;&#45;_GND_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2731.5C2284.16,-2731.5 2225.48,-2589.55 2318,-2529.75 2363.86,-2500.11 2383.89,-2505.75 2438.5,-2505.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M2174,-2559.5C2284.16,-2559.5 2225.48,-2417.55 2318,-2357.75 2363.86,-2328.11 2383.89,-2333.75 2438.5,-2333.75"/>
</g>
</g>
</svg>
diff --git a/wireviz/Choppy_ECU_C1.yml b/wireviz/Choppy_ECU_C1.yml
index 44d2b16..e550799 100644
--- a/wireviz/Choppy_ECU_C1.yml
+++ b/wireviz/Choppy_ECU_C1.yml
@@ -112,6 +112,18 @@ cables:
<<: *logic_wire
length: 50 Inches
colors: [BU,BU,BU,BU,BN]
+ W12:
+ <<: *logic_wire
+ length: 10 Inches
+ colors: [BN]
+ W13:
+ <<: *logic_wire
+ length: 10 Inches
+ colors: [BN]
+ W14:
+ <<: *logic_wire
+ length: 10 Inches
+ colors: [BN]
# W2:
# <<: *logic_wire
# length: 0.2
@@ -182,18 +194,22 @@ connections:
-
- ECU: [H1]
- W1: [5]
+ - Coil Pack 2: [B]
-
- - Coil Pack 1: [B]
- W1: [5]
+ - [S]
+ - W12: [1]
+ - Coil Pack 1: [B]
-
- - Coil Pack 2: [B]
- W1: [5]
- -
+ - [S]
+ - W13: [1]
- Coil Pack 3: [B]
- - W1: [5]
-
- - Coil Pack 4: [B]
- W1: [5]
+ - [S]
+ - W14: [1]
+ - Coil Pack 4: [B]
-
- ECU: [K1]
- W3: [1]
diff --git a/wireviz/Choppy_ECU_C2.csv b/wireviz/Choppy_ECU_C2.csv
index 3f7a01b..10e3d41 100644
--- a/wireviz/Choppy_ECU_C2.csv
+++ b/wireviz/Choppy_ECU_C2.csv
@@ -1,13 +1,13 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2,Notes
-0,699871,ECU,'E2',56 Inches,WH,18 AWG,Knock sensor 1,1,
-1,690661,ECU, 'E1',56 Inches,BN,18 AWG,Knock sensor 1,2,
-2,693662,ECU,'F3',27 Inches,BK,18 AWG,MAF Sensor,5,
-3,699893,ECU,'C1',48 Inches,YE,20 AWG,EGT1,1,
-4,690823,ECU, 'D1',48 Inches,RD,20 AWG,EGT1,2,
-5,699894,ECU,'C2',48 Inches,YE,20 AWG,EGT2,1,
-6,690824,ECU, 'D2',48 Inches,RD,20 AWG,EGT2,2,
-7,699895,ECU,'C3',52 Inches,YE,20 AWG,CHT1,1,
-8,690825,ECU, 'D3',52 Inches,RD,20 AWG,CHT1,2,
-9,699896,ECU,'C4',52 Inches,YE,20 AWG,CHT2,1,
-10,690826,ECU, 'D4',52 Inches,RD,20 AWG,CHT2,2,
-11,699667,ECU,G4,50 Inches,BN,18 AWG,Engine GND','Engine GND',Ring Teriminal to bolt on Engine block
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,699871,ECU,Molex 643193211,'E2',56 Inches,WH,18 AWG,Knock sensor 1,F02U.B00.966-01,1,
+1,690661,ECU,Molex 643193211, 'E1',56 Inches,BN,18 AWG,Knock sensor 1,F02U.B00.966-01,2,
+2,693662,ECU,Molex 643193211,'F3',27 Inches,BK,18 AWG,MAF Sensor,Bosch 1928405138,5,
+3,699893,ECU,Molex 643193211,'C1',48 Inches,YE,20 AWG,EGT1,Type-K,1,
+4,690823,ECU,Molex 643193211, 'D1',48 Inches,RD,20 AWG,EGT1,Type-K,2,
+5,699894,ECU,Molex 643193211,'C2',48 Inches,YE,20 AWG,EGT2,Type-K,1,
+6,690824,ECU,Molex 643193211, 'D2',48 Inches,RD,20 AWG,EGT2,Type-K,2,
+7,699895,ECU,Molex 643193211,'C3',52 Inches,YE,20 AWG,CHT1,Type-K,1,
+8,690825,ECU,Molex 643193211, 'D3',52 Inches,RD,20 AWG,CHT1,Type-K,2,
+9,699896,ECU,Molex 643193211,'C4',52 Inches,YE,20 AWG,CHT2,Type-K,1,
+10,690826,ECU,Molex 643193211, 'D4',52 Inches,RD,20 AWG,CHT2,Type-K,2,
+11,629667,ECU,Molex 643193211,G4,50 Inches,BN,18 AWG,Engine GND',Unspecified,'Engine GND',Ring Teriminal to bolt on Engine block
diff --git a/wireviz/Choppy_IB_1X.bom.tsv b/wireviz/Choppy_IB_1X.bom.tsv
index 5b2c805..2f14a78 100644
--- a/wireviz/Choppy_IB_1X.bom.tsv
+++ b/wireviz/Choppy_IB_1X.bom.tsv
@@ -1,56 +1,55 @@
Id Description Qty Unit Designators Manufacturer
1 Connector, 1 pins 2 shield1, shield2
-2 Connector, 25-pin dsub (Male Terminals), 18 pins 1 VP-X J2
+2 Connector, 25-pin dsub (Male Terminals), 18 pins 1 VP-XJ2
3 Connector, Amphenol C091 M16 flange-mount male metal receptacle, 12-pin, 2 pins 4 Swash1, Swash2, Swash3, Yaw
4 Connector, DT04-3P, 3 pins 1 ECU CAN Bus
5 Connector, DTM04-4P, 4 pins 1 Radar
6 Connector, FMW.LM.368.XLC, 3 pins 1 CEX
7 Connector, FMW.LM.368.XLC, 68 pins 1 Veronte 1X
-8 Connector, GND 24
-9 Connector, Temp, 2 pins 1 Resistor
-10 Connector, splice 15
-11 Connector, temp, 2 pins 1 Radio
-12 Crimp, FGN.0M.555.ZZC, 26 - 22 AWG 71 CEX, Veronte 1X LEMO
-13 Wire, 22 AWG, BK 13.0 Inches W7
-14 Wire, 22 AWG, BK 0.6 m W8
-15 Wire, 22 AWG, BKBN 1.0 Inch W1
-16 Wire, 22 AWG, BKBN 0.3 m W8
-17 Wire, 22 AWG, BKWH 1.0 Inch W1
-18 Wire, 22 AWG, BKWH 0.3 m W8
-19 Wire, 22 AWG, BN 75.5 Inches W13
-20 Wire, 22 AWG, BN 0.6 m W8
-21 Wire, 22 AWG, BNGY 0.6 m W8
-22 Wire, 22 AWG, BNPK 0.3 TBD W3
-23 Wire, 22 AWG, BNPK 0.3 m W8
-24 Wire, 22 AWG, BNYE 0.6 m W8
-25 Wire, 22 AWG, BU 13.0 Inches W7
-26 Wire, 22 AWG, BU 0.9 m W8
-27 Wire, 22 AWG, BUBN 0.6 m W8
-28 Wire, 22 AWG, BURD 0.6 m W8
-29 Wire, 22 AWG, BUWH 0.6 m W8
-30 Wire, 22 AWG, GN 415.5 Inches W11, W12, W13, W15, W16, W17, W18
-31 Wire, 22 AWG, GN 0.6 m W8
-32 Wire, 22 AWG, GNBN 0.6 m W8
-33 Wire, 22 AWG, GNGY 0.6 m W8
-34 Wire, 22 AWG, GNPK 40.0 Inches W6
-35 Wire, 22 AWG, GNPK 0.3 m W8
-36 Wire, 22 AWG, GNWH 0.6 m W8
-37 Wire, 22 AWG, GNYE 40.0 Inches W6
-38 Wire, 22 AWG, GNYE 0.3 m W8
-39 Wire, 22 AWG, GY 0.9 m W8
-40 Wire, 22 AWG, GYWH 0.6 m W8
-41 Wire, 22 AWG, PK 0.9 m W8
-42 Wire, 22 AWG, PKGY 0.6 m W8
-43 Wire, 22 AWG, PKWH 0.3 TBD W3
-44 Wire, 22 AWG, PKWH 0.3 m W8
-45 Wire, 22 AWG, PKYE 40.0 Inches W6
-46 Wire, 22 AWG, PKYE 0.3 m W8
-47 Wire, 22 AWG, RD 13.0 Inches W7
-48 Wire, 22 AWG, RD 0.9 m W8
-49 Wire, 22 AWG, RDBN 0.6 m W8
-50 Wire, 22 AWG, RDWH 0.6 m W8
-51 Wire, 22 AWG, VT 0.6 m W8
-52 Wire, 22 AWG, WH 0.9 m W8
-53 Wire, 22 AWG, YE 340.0 Inches W11, W12, W15, W16, W17, W18
-54 Wire, 22 AWG, YE 0.9 m W8
-55 Wire, 22 AWG, YEWH 0.6 m W8
+8 Connector, Temp, 2 pins 1 Resistor
+9 Connector, splice 15
+10 Connector, temp, 2 pins 1 Radio
+11 Crimp, FGN.0M.555.ZZC, 26 - 22 AWG 71 CEX, Veronte 1X LEMO
+12 Wire, 22 AWG, BK 13.0 Inches W7
+13 Wire, 22 AWG, BK 0.6 m W8
+14 Wire, 22 AWG, BKBN 1.0 Inch W1
+15 Wire, 22 AWG, BKBN 0.3 m W8
+16 Wire, 22 AWG, BKWH 1.0 Inch W1
+17 Wire, 22 AWG, BKWH 0.3 m W8
+18 Wire, 22 AWG, BN 75.5 Inches W13
+19 Wire, 22 AWG, BN 0.6 m W8
+20 Wire, 22 AWG, BNGY 0.6 m W8
+21 Wire, 22 AWG, BNPK 0.3 TBD W3
+22 Wire, 22 AWG, BNPK 0.3 m W8
+23 Wire, 22 AWG, BNYE 0.6 m W8
+24 Wire, 22 AWG, BU 13.0 Inches W7
+25 Wire, 22 AWG, BU 0.9 m W8
+26 Wire, 22 AWG, BUBN 0.6 m W8
+27 Wire, 22 AWG, BURD 0.6 m W8
+28 Wire, 22 AWG, BUWH 0.6 m W8
+29 Wire, 22 AWG, GN 415.5 Inches W11, W12, W13, W15, W16, W17, W18
+30 Wire, 22 AWG, GN 0.6 m W8
+31 Wire, 22 AWG, GNBN 0.6 m W8
+32 Wire, 22 AWG, GNGY 0.6 m W8
+33 Wire, 22 AWG, GNPK 40.0 Inches W6
+34 Wire, 22 AWG, GNPK 0.3 m W8
+35 Wire, 22 AWG, GNWH 0.6 m W8
+36 Wire, 22 AWG, GNYE 40.0 Inches W6
+37 Wire, 22 AWG, GNYE 0.3 m W8
+38 Wire, 22 AWG, GY 0.9 m W8
+39 Wire, 22 AWG, GYWH 0.6 m W8
+40 Wire, 22 AWG, PK 0.9 m W8
+41 Wire, 22 AWG, PKGY 0.6 m W8
+42 Wire, 22 AWG, PKWH 0.3 TBD W3
+43 Wire, 22 AWG, PKWH 0.3 m W8
+44 Wire, 22 AWG, PKYE 40.0 Inches W6
+45 Wire, 22 AWG, PKYE 0.3 m W8
+46 Wire, 22 AWG, RD 13.0 Inches W7
+47 Wire, 22 AWG, RD 0.9 m W8
+48 Wire, 22 AWG, RDBN 0.6 m W8
+49 Wire, 22 AWG, RDWH 0.6 m W8
+50 Wire, 22 AWG, VT 0.6 m W8
+51 Wire, 22 AWG, WH 0.9 m W8
+52 Wire, 22 AWG, YE 340.0 Inches W11, W12, W15, W16, W17, W18
+53 Wire, 22 AWG, YE 0.9 m W8
+54 Wire, 22 AWG, YEWH 0.6 m W8
diff --git a/wireviz/Choppy_IB_1X.csv b/wireviz/Choppy_IB_1X.csv
new file mode 100644
index 0000000..27a33e3
--- /dev/null
+++ b/wireviz/Choppy_IB_1X.csv
@@ -0,0 +1,82 @@
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,890871,Veronte 1X,FMW.LM.368.XLC,1,0.3,WH,22 AWG,----,----,----,
+1,820891,Veronte 1X,FMW.LM.368.XLC,4,0.3,YE,22 AWG,----,----,----,
+2,830711,Veronte 1X,FMW.LM.368.XLC,5,0.3,GY,22 AWG,----,----,----,
+3,840801,Veronte 1X,FMW.LM.368.XLC,6,0.3,PK,22 AWG,----,----,----,
+4,850661,Veronte 1X,FMW.LM.368.XLC,7,0.3,BU,22 AWG,----,----,----,
+5,860821,Veronte 1X,FMW.LM.368.XLC,8,0.3,RD,22 AWG,----,----,----,
+6,880661,Veronte 1X,FMW.LM.368.XLC,10,0.3,BK,22 AWG,----,----,----,
+7,890861,Veronte 1X,FMW.LM.368.XLC,11,0.3,VT,22 AWG,----,----,----,
+8,800801,Veronte 1X,FMW.LM.368.XLC,12,0.3,PKGY,22 AWG,----,----,----,
+9,810661,Veronte 1X,FMW.LM.368.XLC,13,0.3,BURD,22 AWG,----,----,----,
+10,820711,Veronte 1X,FMW.LM.368.XLC,14,0.3,GNWH,22 AWG,----,----,----,
+11,830711,Veronte 1X,FMW.LM.368.XLC,15,0.3,GNBN,22 AWG,----,----,----,
+12,840891,Veronte 1X,FMW.LM.368.XLC,16,0.3,YEWH,22 AWG,----,----,----,
+13,850661,Veronte 1X,FMW.LM.368.XLC,17,0.3,BNYE,22 AWG,----,----,----,
+14,800711,Veronte 1X,FMW.LM.368.XLC,22,0.3,GYWH,22 AWG,----,----,----,
+15,810661,Veronte 1X,FMW.LM.368.XLC,23,0.3,BNGY,22 AWG,----,----,----,
+16,850661,Veronte 1X,FMW.LM.368.XLC,27,0.3,BUWH,22 AWG,----,----,----,
+17,890661,Veronte 1X,FMW.LM.368.XLC,31,0.3,BUBN,22 AWG,----,----,----,
+18,800821,Veronte 1X,FMW.LM.368.XLC,32,0.3,RDWH,22 AWG,----,----,----,
+19,820821,Veronte 1X,FMW.LM.368.XLC,34,0.3,RDBN,22 AWG,----,----,----,
+20,840711,Veronte 1X,FMW.LM.368.XLC,36,0.3,GNGY,22 AWG,----,----,----,
+21,860871,Veronte 1X,FMW.LM.368.XLC,38,0.3,WH,22 AWG,----,----,----,
+22,870661,Veronte 1X,FMW.LM.368.XLC,39,0.3,BN,22 AWG,----,----,----,
+23,880711,Veronte 1X,FMW.LM.368.XLC,40,0.3,GN,22 AWG,----,----,----,
+24,800891,Veronte 1X,FMW.LM.368.XLC,42,0.3,YE,22 AWG,----,----,----,
+25,810711,Veronte 1X,FMW.LM.368.XLC,43,0.3,GY,22 AWG,----,----,----,
+26,830801,Veronte 1X,FMW.LM.368.XLC,45,0.3,PK,22 AWG,----,----,----,
+27,840661,Veronte 1X,FMW.LM.368.XLC,46,0.3,BU,22 AWG,----,----,----,
+28,860821,Veronte 1X,FMW.LM.368.XLC,48,0.3,RD,22 AWG,----,----,----,
+29,870661,Veronte 1X,FMW.LM.368.XLC,49,0.3,BK,22 AWG,----,----,----,
+30,880861,Veronte 1X,FMW.LM.368.XLC,50,0.3,VT,22 AWG,----,----,----,
+31,890801,Veronte 1X,FMW.LM.368.XLC,51,0.3,PKGY,22 AWG,----,----,----,
+32,800661,Veronte 1X,FMW.LM.368.XLC,52,0.3,BURD,22 AWG,----,----,----,
+33,810711,Veronte 1X,FMW.LM.368.XLC,53,0.3,GNWH,22 AWG,----,----,----,
+34,820711,Veronte 1X,FMW.LM.368.XLC,54,0.3,GNBN,22 AWG,----,----,----,
+35,830891,Veronte 1X,FMW.LM.368.XLC,55,0.3,YEWH,22 AWG,----,----,----,
+36,840661,Veronte 1X,FMW.LM.368.XLC,56,0.3,BNYE,22 AWG,----,----,----,
+37,850711,Veronte 1X,FMW.LM.368.XLC,57,0.3,GYWH,22 AWG,----,----,----,
+38,860661,Veronte 1X,FMW.LM.368.XLC,58,0.3,BNGY,22 AWG,----,----,----,
+39,880801,Veronte 1X,FMW.LM.368.XLC,60,0.3,PKWH,22 AWG,----,----,----,
+40,890661,Veronte 1X,FMW.LM.368.XLC,61,0.3,BNPK,22 AWG,----,----,----,
+41,800661,Veronte 1X,FMW.LM.368.XLC,62,0.3,BUWH,22 AWG,----,----,----,
+42,810661,Veronte 1X,FMW.LM.368.XLC,63,0.3,BUBN,22 AWG,----,----,----,
+43,820821,Veronte 1X,FMW.LM.368.XLC,64,0.3,RDWH,22 AWG,----,----,----,
+44,850821,Veronte 1X,FMW.LM.368.XLC,67,0.3,RDBN,22 AWG,----,----,----,
+45,860661,Veronte 1X,FMW.LM.368.XLC,68,0.3,BKWH,22 AWG,----,----,----,
+46,879874,Veronte 1X,FMW.LM.368.XLC,9,0.3,WH,22 AWG,GND,Unspecified,'GND',
+47,869894,Veronte 1X,FMW.LM.368.XLC,18,0.3,YE,22 AWG,GND,Unspecified, 'GND',
+48,899714,Veronte 1X,FMW.LM.368.XLC,21,0.3,GY,22 AWG,GND,Unspecified, 'GND',
+49,829804,Veronte 1X,FMW.LM.368.XLC,24,0.3,PK,22 AWG,GND,Unspecified, 'GND',
+50,819664,Veronte 1X,FMW.LM.368.XLC,33,0.3,BU,22 AWG,GND,Unspecified, 'GND',
+51,839824,Veronte 1X,FMW.LM.368.XLC,35,0.3,RD,22 AWG,GND,Unspecified, 'GND',
+52,859664,Veronte 1X,FMW.LM.368.XLC,37,0.3,BK,22 AWG,GND,Unspecified, 'GND',
+53,899864,Veronte 1X,FMW.LM.368.XLC,41,0.3,VT,22 AWG,GND,Unspecified, 'GND',
+54,829804,Veronte 1X,FMW.LM.368.XLC,44,0.3,PKGY,22 AWG,GND,Unspecified, 'GND',
+55,859664,Veronte 1X,FMW.LM.368.XLC,47,0.3,BURD,22 AWG,GND,Unspecified, 'GND',
+56,879714,Veronte 1X,FMW.LM.368.XLC,59,0.3,GNWH,22 AWG,GND,Unspecified, 'GND',
+57,839714,Veronte 1X,FMW.LM.368.XLC,65,0.3,GNBN,22 AWG,GND,Unspecified, 'GND',
+58,849894,Veronte 1X,FMW.LM.368.XLC,66,0.3,YEWH,22 AWG,GND,Unspecified, 'GND',
+59,89S895,Splice,Crimp Splice,-,12 Inches,YE,22 AWG,Swash1,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin",'G',Twisted Pair
+60,89S715,Splice,Crimp Splice,-,12 Inches,GN,22 AWG,Swash1,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin", 'J',Twisted Pair
+61,89S896,Splice,Crimp Splice,-,6 Inches,YE,22 AWG,Swash2,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin",'G',Twisted Pair
+62,89S716,Splice,Crimp Splice,-,6 Inches,GN,22 AWG,Swash2,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin", 'J',Twisted Pair
+63,89S897,Splice,Crimp Splice,-,6 Inches,YE,22 AWG,Swash3,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin",'G',Twisted Pair
+64,89S717,Splice,Crimp Splice,-,6 Inches,GN,22 AWG,Swash3,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin", 'J',Twisted Pair
+65,89S898,Splice,Crimp Splice,-,170 Inches,YE,22 AWG,Yaw,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin",'G',Twisted Pair | (Tail Mounted?)
+66,89S718,Splice,Crimp Splice,-,170 Inches,GN,22 AWG,Yaw,"Amphenol C091 M16 flange-mount male metal receptacle, 12-pin", 'J',Twisted Pair | (Tail Mounted?)
+67,870800,Veronte 1X,FMW.LM.368.XLC,19,0.3 TBD,PKWH,22 AWG,Radio,temp,2,Twisted Pair
+68,889660,Veronte 1X,FMW.LM.368.XLC,20,0.3 TBD,BNPK,22 AWG,Radio,temp,1,Twisted Pair
+69,65S661,Splice,Crimp Splice,-,13 Inches,BU,22 AWG,CEX,FMW.LM.368.XLC,7,Twisted Pair | Veronte to CEX
+70,66S821,Splice,Crimp Splice,-,13 Inches,RD,22 AWG,CEX,FMW.LM.368.XLC,8,Twisted Pair | Veronte to CEX
+71,67S661,Splice,Crimp Splice,-,13 Inches,BK,22 AWG,CEX,FMW.LM.368.XLC,9,Twisted Pair | Veronte to CEX
+72,80S892,Splice,Crimp Splice,-,73 Inches,YE,22 AWG,Radar,DTM04-4P,2,Twisted Pair
+73,89S712,Splice,Crimp Splice,-,73 Inches,GN,22 AWG,Radar,DTM04-4P,1,Twisted Pair
+74,869715,Veronte 1X,FMW.LM.368.XLC,28,40 Inches,GNYE,22 AWG,ECU CAN Bus,DT04-3P,'A',Twisted Pair | Veronte to ECU
+75,879715,Veronte 1X,FMW.LM.368.XLC,29,40 Inches,GNPK,22 AWG,ECU CAN Bus,DT04-3P, 'B',Twisted Pair | Veronte to ECU
+76,889805,Veronte 1X,FMW.LM.368.XLC,30,40 Inches,PKYE,22 AWG,ECU CAN Bus,DT04-3P, 'C',Twisted Pair | Veronte to ECU
+77,80S896,Splice,Crimp Splice,-,73 Inches,YE,22 AWG,Resistor,Temp,2,Twisted Pair
+78,89S716,Splice,Crimp Splice,-,73 Inches,GN,22 AWG,Resistor,Temp,1,Twisted Pair
+79,809667,Veronte 1X,FMW.LM.368.XLC,2,75.5 Inches,BN,22 AWG,VP-X J2,25-pin dsub (Male Terminals),1,
+80,810717,Veronte 1X,FMW.LM.368.XLC,3,75.5 Inches,GN,22 AWG,VP-X J2,25-pin dsub (Male Terminals),2,
diff --git a/wireviz/Choppy_IB_1X.gv b/wireviz/Choppy_IB_1X.gv
index 5453b83..3a2d108 100644
--- a/wireviz/Choppy_IB_1X.gv
+++ b/wireviz/Choppy_IB_1X.gv
@@ -310,7 +310,7 @@ graph {
</td></tr>
<tr><td>
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td align="left" balign="left">68 x #12 (Crimp)</td>
+ <td align="left" balign="left">68 x #11 (Crimp)</td>
</tr></table>
</td></tr>
<tr><td>
@@ -320,11 +320,11 @@ graph {
</td></tr>
</table>
> fillcolor="#FFFFFF" shape=box style=filled]
- "VP-X J2" [label=<
+ "VP-XJ2" [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">VP-X J2</td>
+ <td balign="left">VP-XJ2</td>
</tr></table>
</td></tr>
<tr><td>
@@ -597,7 +597,7 @@ graph {
</td></tr>
<tr><td>
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td align="left" balign="left">3 x #12 (Crimp)</td>
+ <td align="left" balign="left">3 x #11 (Crimp)</td>
</tr></table>
</td></tr>
</table>
@@ -729,7 +729,6 @@ graph {
<tr>
<td port="p1l">1</td>
<td>Shield</td>
- <td port="p1r">1</td>
</tr>
</table>
</td></tr>
@@ -752,129 +751,11 @@ graph {
<tr>
<td port="p1l">1</td>
<td>Shield</td>
- <td port="p1r">1</td>
</tr>
</table>
</td></tr>
</table>
> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_1 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_2 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_3 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_4 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_5 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_6 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_7 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_8 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_9 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_10 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_11 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_12 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_13 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
_S_1 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -1010,109 +891,6 @@ graph {
</td></tr>
</table>
> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_14 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_15 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_16 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_17 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_18 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_19 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_20 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_21 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_22 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_23 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- _GND_24 [label=<
-<table border="0" cellspacing="0" cellpadding="0">
- <tr><td>
- <table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
- <td balign="left">GND</td>
- </tr></table>
- </td></tr>
-</table>
-> fillcolor="#FFFFFF" shape=box style=filled]
- edge [color="#000000:#000000:#ffffff:#000000:#000000"]
- "Veronte 1X":p25r:e -- W1:w1:w
- edge [color="#000000:#000000:#895956:#000000:#000000"]
- "Veronte 1X":p26r:e -- W1:w2:w
edge [color="#000000:#000000:#ffffff:#000000:#000000"]
W1:w1:e -- _S_1:w
edge [color="#000000:#000000:#895956:#000000:#000000"]
@@ -1129,10 +907,6 @@ graph {
W1:w1:e -- _S_7:w
edge [color="#000000:#000000:#895956:#000000:#000000"]
W1:w2:e -- _S_8:w
- edge [color="#000000"]
- W1:ws:e -- shield2:p1l:w
- edge [color="#000000"]
- _GND_23:e -- W1:ws:w
W1 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -1152,7 +926,7 @@ graph {
<table border="0" cellspacing="0" cellborder="0">
<tr><td>&nbsp;</td></tr>
<tr>
- <td>Veronte 1X:25:CanA P</td>
+ <td><!-- 1_in --></td>
<td>
BKWH
</td>
@@ -1170,7 +944,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:26:CanA N</td>
+ <td><!-- 2_in --></td>
<td>
BKBN
</td>
@@ -1189,9 +963,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td></td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td>shield2:1:Shield</td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -1210,10 +984,6 @@ graph {
edge [color="#000000:#895956:#ff66cc:#895956:#000000"]
"Veronte 1X":p20r:e -- W3:w2:w
W3:w2:e -- Radio:p1l:w
- edge [color="#000000"]
- W3:ws:e -- _GND_14:w
- edge [color="#000000"]
- _GND_22:e -- W3:ws:w
W3 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -1270,9 +1040,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td></td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -1308,10 +1078,6 @@ graph {
W6:w1:e -- _S_14:w
edge [color="#000000:#00ff00:#ff66cc:#00ff00:#000000"]
W6:w2:e -- _S_15:w
- edge [color="#000000"]
- W6:ws:e -- shield1:p1l:w
- edge [color="#000000"]
- _GND_24:e -- W6:ws:w
W6 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -1386,9 +1152,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td></td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td>shield1:1:Shield</td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -1410,10 +1176,6 @@ graph {
edge [color="#000000:#000000:#000000:#000000:#000000"]
_S_11:e -- W7:w3:w
W7:w3:e -- CEX:p3l:w
- edge [color="#000000"]
- shield1:p1r:e -- W7:ws:w
- edge [color="#000000"]
- W7:ws:e -- _GND_19:w
W7 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -1488,9 +1250,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td>shield1:1:Shield</td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -1503,137 +1265,6 @@ graph {
</td></tr>
</table>
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
- edge [color="#000000:#ffffff:#ffffff:#ffffff:#000000"]
- "Veronte 1X":p1r:e -- W8:w1:w
- edge [color="#000000:#ffff00:#ffff00:#ffff00:#000000"]
- "Veronte 1X":p4r:e -- W8:w2:w
- edge [color="#000000:#999999:#999999:#999999:#000000"]
- "Veronte 1X":p5r:e -- W8:w3:w
- edge [color="#000000:#ff66cc:#ff66cc:#ff66cc:#000000"]
- "Veronte 1X":p6r:e -- W8:w4:w
- edge [color="#000000:#0066ff:#0066ff:#0066ff:#000000"]
- "Veronte 1X":p7r:e -- W8:w5:w
- edge [color="#000000:#ff0000:#ff0000:#ff0000:#000000"]
- "Veronte 1X":p8r:e -- W8:w6:w
- edge [color="#000000:#8000ff:#8000ff:#8000ff:#000000"]
- "Veronte 1X":p10r:e -- W8:w8:w
- edge [color="#000000:#ff66cc:#999999:#ff66cc:#000000"]
- "Veronte 1X":p11r:e -- W8:w9:w
- edge [color="#000000:#0066ff:#ff0000:#0066ff:#000000"]
- "Veronte 1X":p12r:e -- W8:w10:w
- edge [color="#000000:#00ff00:#ffffff:#00ff00:#000000"]
- "Veronte 1X":p13r:e -- W8:w11:w
- edge [color="#000000:#00ff00:#895956:#00ff00:#000000"]
- "Veronte 1X":p14r:e -- W8:w12:w
- edge [color="#000000:#ffff00:#ffffff:#ffff00:#000000"]
- "Veronte 1X":p15r:e -- W8:w13:w
- edge [color="#000000:#895956:#ffff00:#895956:#000000"]
- "Veronte 1X":p16r:e -- W8:w14:w
- edge [color="#000000:#999999:#ffffff:#999999:#000000"]
- "Veronte 1X":p17r:e -- W8:w15:w
- edge [color="#000000:#0066ff:#895956:#0066ff:#000000"]
- "Veronte 1X":p22r:e -- W8:w18:w
- edge [color="#000000:#ff0000:#ffffff:#ff0000:#000000"]
- "Veronte 1X":p23r:e -- W8:w19:w
- edge [color="#000000:#00ff00:#999999:#00ff00:#000000"]
- "Veronte 1X":p27r:e -- W8:w21:w
- edge [color="#000000:#ffffff:#ffffff:#ffffff:#000000"]
- "Veronte 1X":p31r:e -- W8:w22:w
- edge [color="#000000:#895956:#895956:#895956:#000000"]
- "Veronte 1X":p32r:e -- W8:w23:w
- edge [color="#000000:#ffff00:#ffff00:#ffff00:#000000"]
- "Veronte 1X":p34r:e -- W8:w25:w
- edge [color="#000000:#ff66cc:#ff66cc:#ff66cc:#000000"]
- "Veronte 1X":p36r:e -- W8:w27:w
- edge [color="#000000:#ff0000:#ff0000:#ff0000:#000000"]
- "Veronte 1X":p38r:e -- W8:w29:w
- edge [color="#000000:#000000:#000000:#000000:#000000"]
- "Veronte 1X":p39r:e -- W8:w30:w
- edge [color="#000000:#8000ff:#8000ff:#8000ff:#000000"]
- "Veronte 1X":p40r:e -- W8:w31:w
- edge [color="#000000:#0066ff:#ff0000:#0066ff:#000000"]
- "Veronte 1X":p42r:e -- W8:w33:w
- edge [color="#000000:#00ff00:#ffffff:#00ff00:#000000"]
- "Veronte 1X":p43r:e -- W8:w34:w
- edge [color="#000000:#ffff00:#ffffff:#ffff00:#000000"]
- "Veronte 1X":p45r:e -- W8:w36:w
- edge [color="#000000:#895956:#ffff00:#895956:#000000"]
- "Veronte 1X":p46r:e -- W8:w37:w
- edge [color="#000000:#895956:#999999:#895956:#000000"]
- "Veronte 1X":p48r:e -- W8:w39:w
- edge [color="#000000:#ff66cc:#ffffff:#ff66cc:#000000"]
- "Veronte 1X":p49r:e -- W8:w40:w
- edge [color="#000000:#895956:#ff66cc:#895956:#000000"]
- "Veronte 1X":p50r:e -- W8:w41:w
- edge [color="#000000:#0066ff:#ffffff:#0066ff:#000000"]
- "Veronte 1X":p51r:e -- W8:w42:w
- edge [color="#000000:#0066ff:#895956:#0066ff:#000000"]
- "Veronte 1X":p52r:e -- W8:w43:w
- edge [color="#000000:#ff0000:#ffffff:#ff0000:#000000"]
- "Veronte 1X":p53r:e -- W8:w44:w
- edge [color="#000000:#ff0000:#895956:#ff0000:#000000"]
- "Veronte 1X":p54r:e -- W8:w45:w
- edge [color="#000000:#000000:#ffffff:#000000:#000000"]
- "Veronte 1X":p55r:e -- W8:w46:w
- edge [color="#000000:#000000:#895956:#000000:#000000"]
- "Veronte 1X":p56r:e -- W8:w47:w
- edge [color="#000000:#00ff00:#999999:#00ff00:#000000"]
- "Veronte 1X":p57r:e -- W8:w48:w
- edge [color="#000000:#00ff00:#ffff00:#00ff00:#000000"]
- "Veronte 1X":p58r:e -- W8:w49:w
- edge [color="#000000:#ff66cc:#ffff00:#ff66cc:#000000"]
- "Veronte 1X":p60r:e -- W8:w51:w
- edge [color="#000000:#ffffff:#ffffff:#ffffff:#000000"]
- "Veronte 1X":p61r:e -- W8:w52:w
- edge [color="#000000:#895956:#895956:#895956:#000000"]
- "Veronte 1X":p62r:e -- W8:w53:w
- edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
- "Veronte 1X":p63r:e -- W8:w54:w
- edge [color="#000000:#ffff00:#ffff00:#ffff00:#000000"]
- "Veronte 1X":p64r:e -- W8:w55:w
- edge [color="#000000:#0066ff:#0066ff:#0066ff:#000000"]
- "Veronte 1X":p67r:e -- W8:w58:w
- edge [color="#000000:#ff0000:#ff0000:#ff0000:#000000"]
- "Veronte 1X":p68r:e -- W8:w59:w
- edge [color="#000000:#000000:#000000:#000000:#000000"]
- "Veronte 1X":p9r:e -- W8:w7:w
- W8:w7:e -- _GND_1:w
- edge [color="#000000:#895956:#999999:#895956:#000000"]
- "Veronte 1X":p18r:e -- W8:w16:w
- W8:w16:e -- _GND_2:w
- edge [color="#000000:#0066ff:#ffffff:#0066ff:#000000"]
- "Veronte 1X":p21r:e -- W8:w17:w
- W8:w17:e -- _GND_3:w
- edge [color="#000000:#ff0000:#895956:#ff0000:#000000"]
- "Veronte 1X":p24r:e -- W8:w20:w
- W8:w20:e -- _GND_4:w
- edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
- "Veronte 1X":p33r:e -- W8:w24:w
- W8:w24:e -- _GND_5:w
- edge [color="#000000:#999999:#999999:#999999:#000000"]
- "Veronte 1X":p35r:e -- W8:w26:w
- W8:w26:e -- _GND_6:w
- edge [color="#000000:#0066ff:#0066ff:#0066ff:#000000"]
- "Veronte 1X":p37r:e -- W8:w28:w
- W8:w28:e -- _GND_7:w
- edge [color="#000000:#ff66cc:#999999:#ff66cc:#000000"]
- "Veronte 1X":p41r:e -- W8:w32:w
- W8:w32:e -- _GND_8:w
- edge [color="#000000:#00ff00:#895956:#00ff00:#000000"]
- "Veronte 1X":p44r:e -- W8:w35:w
- W8:w35:e -- _GND_9:w
- edge [color="#000000:#999999:#ffffff:#999999:#000000"]
- "Veronte 1X":p47r:e -- W8:w38:w
- W8:w38:e -- _GND_10:w
- edge [color="#000000:#00ff00:#ff66cc:#00ff00:#000000"]
- "Veronte 1X":p59r:e -- W8:w50:w
- W8:w50:e -- _GND_11:w
- edge [color="#000000:#999999:#999999:#999999:#000000"]
- "Veronte 1X":p65r:e -- W8:w56:w
- W8:w56:e -- _GND_12:w
- edge [color="#000000:#ff66cc:#ff66cc:#ff66cc:#000000"]
- "Veronte 1X":p66r:e -- W8:w57:w
- W8:w57:e -- _GND_13:w
W8 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -1652,7 +1283,7 @@ graph {
<table border="0" cellspacing="0" cellborder="0">
<tr><td>&nbsp;</td></tr>
<tr>
- <td>Veronte 1X:1:I/O1</td>
+ <td><!-- 1_in --></td>
<td>
WH
</td>
@@ -1670,7 +1301,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:4:I/O4</td>
+ <td><!-- 2_in --></td>
<td>
YE
</td>
@@ -1688,7 +1319,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:5:I/O5</td>
+ <td><!-- 3_in --></td>
<td>
GY
</td>
@@ -1706,7 +1337,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:6:I/O6</td>
+ <td><!-- 4_in --></td>
<td>
PK
</td>
@@ -1724,7 +1355,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:7:I/O7</td>
+ <td><!-- 5_in --></td>
<td>
BU
</td>
@@ -1742,7 +1373,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:8:I/O8</td>
+ <td><!-- 6_in --></td>
<td>
RD
</td>
@@ -1760,11 +1391,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:9:GND</td>
+ <td><!-- 7_in --></td>
<td>
BK
</td>
- <td></td>
+ <td><!-- 7_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w7" height="10">
@@ -1778,7 +1409,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:10:I/O9</td>
+ <td><!-- 8_in --></td>
<td>
VT
</td>
@@ -1796,7 +1427,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:11:I/O10</td>
+ <td><!-- 9_in --></td>
<td>
PKGY
</td>
@@ -1814,7 +1445,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:12:I/O11</td>
+ <td><!-- 10_in --></td>
<td>
BURD
</td>
@@ -1832,7 +1463,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:13:I/O12</td>
+ <td><!-- 11_in --></td>
<td>
GNWH
</td>
@@ -1850,7 +1481,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:14:I/O13</td>
+ <td><!-- 12_in --></td>
<td>
GNBN
</td>
@@ -1868,7 +1499,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:15:I/O14</td>
+ <td><!-- 13_in --></td>
<td>
YEWH
</td>
@@ -1886,7 +1517,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:16:I/O15</td>
+ <td><!-- 14_in --></td>
<td>
BNYE
</td>
@@ -1904,7 +1535,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:17:I/O16</td>
+ <td><!-- 15_in --></td>
<td>
GYWH
</td>
@@ -1922,11 +1553,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:18:GND</td>
+ <td><!-- 16_in --></td>
<td>
BNGY
</td>
- <td></td>
+ <td><!-- 16_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w16" height="10">
@@ -1940,11 +1571,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:21:GND</td>
+ <td><!-- 17_in --></td>
<td>
BUWH
</td>
- <td></td>
+ <td><!-- 17_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w17" height="10">
@@ -1958,7 +1589,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:22:Analog 4</td>
+ <td><!-- 18_in --></td>
<td>
BUBN
</td>
@@ -1976,7 +1607,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:23:Analog 5</td>
+ <td><!-- 19_in --></td>
<td>
RDWH
</td>
@@ -1994,11 +1625,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:24:GND</td>
+ <td><!-- 20_in --></td>
<td>
RDBN
</td>
- <td></td>
+ <td><!-- 20_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w20" height="10">
@@ -2012,7 +1643,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:27:No Connect</td>
+ <td><!-- 21_in --></td>
<td>
GNGY
</td>
@@ -2030,7 +1661,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:31:I2C_CLK</td>
+ <td><!-- 22_in --></td>
<td>
WH
</td>
@@ -2048,7 +1679,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:32:I2C_DATA</td>
+ <td><!-- 23_in --></td>
<td>
BN
</td>
@@ -2066,11 +1697,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:33:GND</td>
+ <td><!-- 24_in --></td>
<td>
GN
</td>
- <td></td>
+ <td><!-- 24_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w24" height="10">
@@ -2084,7 +1715,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:34:3.3V</td>
+ <td><!-- 25_in --></td>
<td>
YE
</td>
@@ -2102,11 +1733,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:35:GND</td>
+ <td><!-- 26_in --></td>
<td>
GY
</td>
- <td></td>
+ <td><!-- 26_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w26" height="10">
@@ -2120,7 +1751,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:36:5V</td>
+ <td><!-- 27_in --></td>
<td>
PK
</td>
@@ -2138,11 +1769,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:37:GND</td>
+ <td><!-- 28_in --></td>
<td>
BU
</td>
- <td></td>
+ <td><!-- 28_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w28" height="10">
@@ -2156,7 +1787,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:38:ANALOG_1</td>
+ <td><!-- 29_in --></td>
<td>
RD
</td>
@@ -2174,7 +1805,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:39:ANALOG_2</td>
+ <td><!-- 30_in --></td>
<td>
BK
</td>
@@ -2192,7 +1823,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:40:ANALOG_3</td>
+ <td><!-- 31_in --></td>
<td>
VT
</td>
@@ -2210,11 +1841,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:41:GND</td>
+ <td><!-- 32_in --></td>
<td>
PKGY
</td>
- <td></td>
+ <td><!-- 32_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w32" height="10">
@@ -2228,7 +1859,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:42:FTS1_OUT</td>
+ <td><!-- 33_in --></td>
<td>
BURD
</td>
@@ -2246,7 +1877,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:43:FTS2_OUT</td>
+ <td><!-- 34_in --></td>
<td>
GNWH
</td>
@@ -2264,11 +1895,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:44:GND</td>
+ <td><!-- 35_in --></td>
<td>
GNBN
</td>
- <td></td>
+ <td><!-- 35_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w35" height="10">
@@ -2282,7 +1913,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:45:V_ARB_TX</td>
+ <td><!-- 36_in --></td>
<td>
YEWH
</td>
@@ -2300,7 +1931,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:46:V_ARB_RX</td>
+ <td><!-- 37_in --></td>
<td>
BNYE
</td>
@@ -2318,11 +1949,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:47:GND</td>
+ <td><!-- 38_in --></td>
<td>
GYWH
</td>
- <td></td>
+ <td><!-- 38_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w38" height="10">
@@ -2336,7 +1967,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:48:V_ARB_VCC</td>
+ <td><!-- 39_in --></td>
<td>
BNGY
</td>
@@ -2354,7 +1985,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:49:FTS3_OUT_MPU</td>
+ <td><!-- 40_in --></td>
<td>
PKWH
</td>
@@ -2372,7 +2003,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:50:OUT_RS485_P</td>
+ <td><!-- 41_in --></td>
<td>
BNPK
</td>
@@ -2390,7 +2021,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:51:OUT_RS485_N</td>
+ <td><!-- 42_in --></td>
<td>
BUWH
</td>
@@ -2408,7 +2039,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:52:IN_RS845_N</td>
+ <td><!-- 43_in --></td>
<td>
BUBN
</td>
@@ -2426,7 +2057,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:53:IN_RS845_P</td>
+ <td><!-- 44_in --></td>
<td>
RDWH
</td>
@@ -2444,7 +2075,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:54:RS-485_GND</td>
+ <td><!-- 45_in --></td>
<td>
RDBN
</td>
@@ -2462,7 +2093,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:55:EQEP_A</td>
+ <td><!-- 46_in --></td>
<td>
BKWH
</td>
@@ -2480,7 +2111,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:56:EQEP_B</td>
+ <td><!-- 47_in --></td>
<td>
BKBN
</td>
@@ -2498,7 +2129,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:57:EQEP_S</td>
+ <td><!-- 48_in --></td>
<td>
GNGY
</td>
@@ -2516,7 +2147,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:58:EQEP_I</td>
+ <td><!-- 49_in --></td>
<td>
GNYE
</td>
@@ -2534,11 +2165,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:59:GND</td>
+ <td><!-- 50_in --></td>
<td>
GNPK
</td>
- <td></td>
+ <td><!-- 50_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w50" height="10">
@@ -2552,7 +2183,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:60:V_USB_DP</td>
+ <td><!-- 51_in --></td>
<td>
PKYE
</td>
@@ -2570,7 +2201,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:61:V_USB_DN</td>
+ <td><!-- 52_in --></td>
<td>
WH
</td>
@@ -2588,7 +2219,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:62:V_USB_ID</td>
+ <td><!-- 53_in --></td>
<td>
BN
</td>
@@ -2606,7 +2237,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:63:FTS_OUT_MPU</td>
+ <td><!-- 54_in --></td>
<td>
GN
</td>
@@ -2624,7 +2255,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:64:FTS2_OUT_MPU</td>
+ <td><!-- 55_in --></td>
<td>
YE
</td>
@@ -2642,11 +2273,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:65:GND</td>
+ <td><!-- 56_in --></td>
<td>
GY
</td>
- <td></td>
+ <td><!-- 56_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w56" height="10">
@@ -2660,11 +2291,11 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:66:GND</td>
+ <td><!-- 57_in --></td>
<td>
PK
</td>
- <td></td>
+ <td><!-- 57_out --></td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w57" height="10">
@@ -2678,7 +2309,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:67:VCC</td>
+ <td><!-- 58_in --></td>
<td>
BU
</td>
@@ -2696,7 +2327,7 @@ graph {
</td>
</tr>
<tr>
- <td>Veronte 1X:68:VCC</td>
+ <td><!-- 59_in --></td>
<td>
RD
</td>
@@ -2724,10 +2355,6 @@ graph {
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
_S_15:e -- W11:w2:w
W11:w2:e -- Resistor:p1l:w
- edge [color="#000000"]
- shield1:p1r:e -- W11:ws:w
- edge [color="#000000"]
- W11:ws:e -- _GND_20:w
W11 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -2784,9 +2411,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td>shield1:1:Shield</td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -2805,10 +2432,6 @@ graph {
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
_S_13:e -- W12:w2:w
W12:w2:e -- Radar:p1l:w
- edge [color="#000000"]
- shield1:p1r:e -- W12:ws:w
- edge [color="#000000"]
- W12:ws:e -- _GND_21:w
W12 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -2865,9 +2488,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td>shield1:1:Shield</td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -2882,10 +2505,10 @@ graph {
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
edge [color="#000000:#895956:#895956:#895956:#000000"]
"Veronte 1X":p2r:e -- W13:w1:w
- W13:w1:e -- "VP-X J2":p1l:w
+ W13:w1:e -- "VP-XJ2":p1l:w
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
"Veronte 1X":p3r:e -- W13:w2:w
- W13:w2:e -- "VP-X J2":p2l:w
+ W13:w2:e -- "VP-XJ2":p2l:w
W13 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -2908,7 +2531,7 @@ graph {
<td>
BN
</td>
- <td>VP-X J2:1:Switch input 1</td>
+ <td>VP-XJ2:1:Switch input 1</td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="10">
@@ -2926,7 +2549,7 @@ graph {
<td>
GN
</td>
- <td>VP-X J2:2:Switch input 2</td>
+ <td>VP-XJ2:2:Switch input 2</td>
</tr>
<tr>
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="10">
@@ -2950,10 +2573,6 @@ graph {
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
_S_2:e -- W15:w2:w
W15:w2:e -- Swash1:p2l:w
- edge [color="#000000"]
- shield2:p1r:e -- W15:ws:w
- edge [color="#000000"]
- W15:ws:e -- _GND_18:w
W15 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -3010,9 +2629,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td>shield2:1:Shield</td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -3031,10 +2650,6 @@ graph {
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
_S_4:e -- W16:w2:w
W16:w2:e -- Swash2:p2l:w
- edge [color="#000000"]
- shield2:p1r:e -- W16:ws:w
- edge [color="#000000"]
- W16:ws:e -- _GND_16:w
W16 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -3091,9 +2706,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td>shield2:1:Shield</td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -3112,10 +2727,6 @@ graph {
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
_S_6:e -- W17:w2:w
W17:w2:e -- Swash3:p2l:w
- edge [color="#000000"]
- shield2:p1r:e -- W17:ws:w
- edge [color="#000000"]
- W17:ws:e -- _GND_15:w
W17 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -3172,9 +2783,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td>shield2:1:Shield</td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
@@ -3193,10 +2804,6 @@ graph {
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
_S_8:e -- W18:w2:w
W18:w2:e -- Yaw:p2l:w
- edge [color="#000000"]
- shield2:p1r:e -- W18:ws:w
- edge [color="#000000"]
- W18:ws:e -- _GND_17:w
W18 [label=<
<table border="0" cellspacing="0" cellpadding="0">
<tr><td>
@@ -3253,9 +2860,9 @@ graph {
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
- <td>shield2:1:Shield</td>
+ <td><!-- s_in --></td>
<td>Shield</td>
- <td></td>
+ <td><!-- s_out --></td>
</tr>
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
<tr><td>&nbsp;</td></tr>
diff --git a/wireviz/Choppy_IB_1X.html b/wireviz/Choppy_IB_1X.html
index 2789227..c1fd345 100644
--- a/wireviz/Choppy_IB_1X.html
+++ b/wireviz/Choppy_IB_1X.html
@@ -10,10 +10,10 @@
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
-<svg width="2420pt" height="3876pt"
- viewBox="0.00 0.00 2420.25 3875.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3871.5)">
-<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-3871.5 2416.25,-3871.5 2416.25,4 -4,4"/>
+<svg width="2538pt" height="5023pt"
+ viewBox="0.00 0.00 2538.25 5022.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 5018.5)">
+<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-5018.5 2534.25,-5018.5 2534.25,4 -4,4"/>
<!-- Veronte 1X -->
<g id="node1" class="node">
<title>Veronte 1X</title>
@@ -303,2735 +303,1727 @@
<polygon fill="none" stroke="black" points="0,-49 0,-73.5 409,-73.5 409,-49 0,-49"/>
<text text-anchor="start" x="132.12" y="-56.2" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="0,-24.5 0,-49 409,-49 409,-24.5 0,-24.5"/>
-<text text-anchor="start" x="4" y="-31.7" font-family="arial" font-size="14.00">68 x #12 (Crimp)</text>
+<text text-anchor="start" x="4" y="-31.7" font-family="arial" font-size="14.00">68 x #11 (Crimp)</text>
<polygon fill="none" stroke="black" points="0,0 0,-24.5 409,-24.5 409,0 0,0"/>
<text text-anchor="start" x="168.5" y="-7.2" font-family="arial" font-size="14.00">Veronte 1X</text>
</g>
-<!-- W1 -->
-<g id="node53" class="node">
-<title>W1</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="890,-2982.75 556,-2982.75 556,-2767.25 890,-2767.25 890,-2982.75"/>
-<polygon fill="none" stroke="black" points="556,-2958.25 556,-2982.75 890,-2982.75 890,-2958.25 556,-2958.25"/>
-<text text-anchor="start" x="711.75" y="-2965.45" font-family="arial" font-size="14.00">W1</text>
-<polygon fill="none" stroke="black" points="556,-2933.75 556,-2958.25 618.69,-2958.25 618.69,-2933.75 556,-2933.75"/>
-<text text-anchor="start" x="579.84" y="-2940.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="618.69,-2933.75 618.69,-2958.25 721.88,-2958.25 721.88,-2933.75 618.69,-2933.75"/>
-<text text-anchor="start" x="642.53" y="-2940.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="721.88,-2933.75 721.88,-2958.25 791.31,-2958.25 791.31,-2933.75 721.88,-2933.75"/>
-<text text-anchor="start" x="745.72" y="-2940.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="791.31,-2933.75 791.31,-2958.25 890,-2958.25 890,-2933.75 791.31,-2933.75"/>
-<text text-anchor="start" x="815.16" y="-2940.95" font-family="arial" font-size="14.00">1.0 Inch</text>
-<text text-anchor="start" x="628.12" y="-2918.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="557.62" y="-2898.45" font-family="arial" font-size="14.00">Veronte 1X:25:CanA P</text>
-<text text-anchor="start" x="705.88" y="-2898.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="556,-2891.75 556,-2893.75 890,-2893.75 890,-2891.75 556,-2891.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2889.75 556,-2891.75 890,-2891.75 890,-2889.75 556,-2889.75"/>
-<polygon fill="#ffffff" stroke="none" points="556,-2887.75 556,-2889.75 890,-2889.75 890,-2887.75 556,-2887.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2885.75 556,-2887.75 890,-2887.75 890,-2885.75 556,-2885.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2883.75 556,-2885.75 890,-2885.75 890,-2883.75 556,-2883.75"/>
-<text text-anchor="start" x="557.62" y="-2868.45" font-family="arial" font-size="14.00">Veronte 1X:26:CanA N</text>
-<text text-anchor="start" x="708.12" y="-2868.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="556,-2861.75 556,-2863.75 890,-2863.75 890,-2861.75 556,-2861.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2859.75 556,-2861.75 890,-2861.75 890,-2859.75 556,-2859.75"/>
-<polygon fill="#895956" stroke="none" points="556,-2857.75 556,-2859.75 890,-2859.75 890,-2857.75 556,-2857.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2855.75 556,-2857.75 890,-2857.75 890,-2855.75 556,-2855.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2853.75 556,-2855.75 890,-2855.75 890,-2853.75 556,-2853.75"/>
-<text text-anchor="start" x="628.12" y="-2838.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="724.62" y="-2818.45" font-family="arial" font-size="14.00">Shield</text>
-<text text-anchor="start" x="786.88" y="-2818.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<polygon fill="#000000" stroke="none" points="556,-2811.75 556,-2813.75 890,-2813.75 890,-2811.75 556,-2811.75"/>
-<text text-anchor="start" x="628.12" y="-2796.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="556,-2767.25 556,-2791.75 890,-2791.75 890,-2767.25 556,-2767.25"/>
-<text text-anchor="start" x="684" y="-2774.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- Veronte 1X&#45;&#45;W1 -->
-<g id="edge1" class="edge">
-<title>Veronte 1X:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1537C714.04,-1542.28 257.54,-2890.03 555,-2884.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1539C712.15,-1541.64 255.64,-2889.39 555,-2886.75"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1541C710.25,-1541 253.75,-2888.75 555,-2888.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1543C708.36,-1540.36 251.85,-2888.11 555,-2890.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1545C706.46,-1539.72 249.96,-2887.47 555,-2892.75"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W1 -->
-<g id="edge2" class="edge">
-<title>Veronte 1X:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1513C712.72,-1518.28 258.86,-2860.03 555,-2854.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1515C710.82,-1517.64 256.97,-2859.39 555,-2856.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1517C708.93,-1517 255.07,-2858.75 555,-2858.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1519C707.03,-1516.36 253.18,-2858.11 555,-2860.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1521C705.14,-1515.72 251.28,-2857.47 555,-2862.75"/>
-</g>
<!-- W3 -->
-<g id="node54" class="node">
+<g id="node30" class="node">
<title>W3</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="886.5,-3295.75 559.5,-3295.75 559.5,-3080.25 886.5,-3080.25 886.5,-3295.75"/>
-<polygon fill="none" stroke="black" points="559.5,-3271.25 559.5,-3295.75 886.5,-3295.75 886.5,-3271.25 559.5,-3271.25"/>
-<text text-anchor="start" x="711.75" y="-3278.45" font-family="arial" font-size="14.00">W3</text>
-<polygon fill="none" stroke="black" points="559.5,-3246.75 559.5,-3271.25 619.88,-3271.25 619.88,-3246.75 559.5,-3246.75"/>
-<text text-anchor="start" x="582.19" y="-3253.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="619.88,-3246.75 619.88,-3271.25 720.75,-3271.25 720.75,-3246.75 619.88,-3246.75"/>
-<text text-anchor="start" x="642.56" y="-3253.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="720.75,-3246.75 720.75,-3271.25 787.88,-3271.25 787.88,-3246.75 720.75,-3246.75"/>
-<text text-anchor="start" x="743.44" y="-3253.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="787.88,-3246.75 787.88,-3271.25 886.5,-3271.25 886.5,-3246.75 787.88,-3246.75"/>
-<text text-anchor="start" x="810.56" y="-3253.95" font-family="arial" font-size="14.00">0.3 TBD</text>
-<text text-anchor="start" x="643.62" y="-3231.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="561.88" y="-3211.45" font-family="arial" font-size="14.00">Veronte 1X:19:RS 232 TX</text>
-<text text-anchor="start" x="733.38" y="-3211.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
-<text text-anchor="start" x="814.25" y="-3211.45" font-family="arial" font-size="14.00">Radio:2:Rx</text>
-<polygon fill="#000000" stroke="none" points="559.5,-3204.75 559.5,-3206.75 886.5,-3206.75 886.5,-3204.75 559.5,-3204.75"/>
-<polygon fill="#ff66cc" stroke="none" points="559.5,-3202.75 559.5,-3204.75 886.5,-3204.75 886.5,-3202.75 559.5,-3202.75"/>
-<polygon fill="#ffffff" stroke="none" points="559.5,-3200.75 559.5,-3202.75 886.5,-3202.75 886.5,-3200.75 559.5,-3200.75"/>
-<polygon fill="#ff66cc" stroke="none" points="559.5,-3198.75 559.5,-3200.75 886.5,-3200.75 886.5,-3198.75 559.5,-3198.75"/>
-<polygon fill="#000000" stroke="none" points="559.5,-3196.75 559.5,-3198.75 886.5,-3198.75 886.5,-3196.75 559.5,-3196.75"/>
-<text text-anchor="start" x="561.12" y="-3181.45" font-family="arial" font-size="14.00">Veronte 1X:20:RS 232 RX</text>
-<text text-anchor="start" x="735.62" y="-3181.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="815" y="-3181.45" font-family="arial" font-size="14.00">Radio:1:Tx</text>
-<polygon fill="#000000" stroke="none" points="559.5,-3174.75 559.5,-3176.75 886.5,-3176.75 886.5,-3174.75 559.5,-3174.75"/>
-<polygon fill="#895956" stroke="none" points="559.5,-3172.75 559.5,-3174.75 886.5,-3174.75 886.5,-3172.75 559.5,-3172.75"/>
-<polygon fill="#ff66cc" stroke="none" points="559.5,-3170.75 559.5,-3172.75 886.5,-3172.75 886.5,-3170.75 559.5,-3170.75"/>
-<polygon fill="#895956" stroke="none" points="559.5,-3168.75 559.5,-3170.75 886.5,-3170.75 886.5,-3168.75 559.5,-3168.75"/>
-<polygon fill="#000000" stroke="none" points="559.5,-3166.75 559.5,-3168.75 886.5,-3168.75 886.5,-3166.75 559.5,-3166.75"/>
-<text text-anchor="start" x="643.62" y="-3151.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="752.12" y="-3131.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="559.5,-3124.75 559.5,-3126.75 886.5,-3126.75 886.5,-3124.75 559.5,-3124.75"/>
-<text text-anchor="start" x="643.62" y="-3109.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="559.5,-3080.25 559.5,-3104.75 886.5,-3104.75 886.5,-3080.25 559.5,-3080.25"/>
-<text text-anchor="start" x="684" y="-3087.45" font-family="arial" font-size="14.00">Twisted Pair</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="883,-1784.75 556,-1784.75 556,-1569.25 883,-1569.25 883,-1784.75"/>
+<polygon fill="none" stroke="black" points="556,-1760.25 556,-1784.75 883,-1784.75 883,-1760.25 556,-1760.25"/>
+<text text-anchor="start" x="708.25" y="-1767.45" font-family="arial" font-size="14.00">W3</text>
+<polygon fill="none" stroke="black" points="556,-1735.75 556,-1760.25 616.38,-1760.25 616.38,-1735.75 556,-1735.75"/>
+<text text-anchor="start" x="578.69" y="-1742.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="616.38,-1735.75 616.38,-1760.25 717.25,-1760.25 717.25,-1735.75 616.38,-1735.75"/>
+<text text-anchor="start" x="639.06" y="-1742.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="717.25,-1735.75 717.25,-1760.25 784.38,-1760.25 784.38,-1735.75 717.25,-1735.75"/>
+<text text-anchor="start" x="739.94" y="-1742.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="784.38,-1735.75 784.38,-1760.25 883,-1760.25 883,-1735.75 784.38,-1735.75"/>
+<text text-anchor="start" x="807.06" y="-1742.95" font-family="arial" font-size="14.00">0.3 TBD</text>
+<text text-anchor="start" x="640.12" y="-1720.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="558.38" y="-1700.45" font-family="arial" font-size="14.00">Veronte 1X:19:RS 232 TX</text>
+<text text-anchor="start" x="729.88" y="-1700.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
+<text text-anchor="start" x="810.75" y="-1700.45" font-family="arial" font-size="14.00">Radio:2:Rx</text>
+<polygon fill="#000000" stroke="none" points="556,-1693.75 556,-1695.75 883,-1695.75 883,-1693.75 556,-1693.75"/>
+<polygon fill="#ff66cc" stroke="none" points="556,-1691.75 556,-1693.75 883,-1693.75 883,-1691.75 556,-1691.75"/>
+<polygon fill="#ffffff" stroke="none" points="556,-1689.75 556,-1691.75 883,-1691.75 883,-1689.75 556,-1689.75"/>
+<polygon fill="#ff66cc" stroke="none" points="556,-1687.75 556,-1689.75 883,-1689.75 883,-1687.75 556,-1687.75"/>
+<polygon fill="#000000" stroke="none" points="556,-1685.75 556,-1687.75 883,-1687.75 883,-1685.75 556,-1685.75"/>
+<text text-anchor="start" x="557.62" y="-1670.45" font-family="arial" font-size="14.00">Veronte 1X:20:RS 232 RX</text>
+<text text-anchor="start" x="732.12" y="-1670.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="811.5" y="-1670.45" font-family="arial" font-size="14.00">Radio:1:Tx</text>
+<polygon fill="#000000" stroke="none" points="556,-1663.75 556,-1665.75 883,-1665.75 883,-1663.75 556,-1663.75"/>
+<polygon fill="#895956" stroke="none" points="556,-1661.75 556,-1663.75 883,-1663.75 883,-1661.75 556,-1661.75"/>
+<polygon fill="#ff66cc" stroke="none" points="556,-1659.75 556,-1661.75 883,-1661.75 883,-1659.75 556,-1659.75"/>
+<polygon fill="#895956" stroke="none" points="556,-1657.75 556,-1659.75 883,-1659.75 883,-1657.75 556,-1657.75"/>
+<polygon fill="#000000" stroke="none" points="556,-1655.75 556,-1657.75 883,-1657.75 883,-1655.75 556,-1655.75"/>
+<text text-anchor="start" x="640.12" y="-1640.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="748.62" y="-1620.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="556,-1613.75 556,-1615.75 883,-1615.75 883,-1613.75 556,-1613.75"/>
+<text text-anchor="start" x="640.12" y="-1598.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="556,-1569.25 556,-1593.75 883,-1593.75 883,-1569.25 556,-1569.25"/>
+<text text-anchor="start" x="680.5" y="-1576.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte 1X&#45;&#45;W3 -->
-<g id="edge13" class="edge">
+<g id="edge9" class="edge">
<title>Veronte 1X:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1681C751.47,-1686.31 223.59,-3203.06 558.5,-3197.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1683C749.58,-1685.66 221.7,-3202.41 558.5,-3199.75"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1685C747.69,-1685 219.81,-3201.75 558.5,-3201.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1687C745.8,-1684.34 217.92,-3201.09 558.5,-3203.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1689C743.91,-1683.69 216.03,-3200.44 558.5,-3205.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1681C475.28,-1681.23 491.4,-1686.98 555,-1686.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1683C474.61,-1683.12 490.73,-1688.87 555,-1688.75"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1685C473.94,-1685 490.06,-1690.75 555,-1690.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1687C473.27,-1686.88 489.39,-1692.63 555,-1692.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1689C472.6,-1688.77 488.72,-1694.52 555,-1694.75"/>
</g>
<!-- Veronte 1X&#45;&#45;W3 -->
-<g id="edge15" class="edge">
+<g id="edge11" class="edge">
<title>Veronte 1X:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1657C750.14,-1662.31 224.92,-3173.06 558.5,-3167.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1659C748.25,-1661.66 223.03,-3172.41 558.5,-3169.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1661C746.36,-1661 221.14,-3171.75 558.5,-3171.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1663C744.47,-1660.34 219.25,-3171.09 558.5,-3173.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1665C742.58,-1659.69 217.36,-3170.44 558.5,-3175.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1657C473.83,-1657 490.05,-1656.75 555,-1656.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1659C473.86,-1659 490.08,-1658.75 555,-1658.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1661C473.89,-1661 490.11,-1660.75 555,-1660.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1663C473.92,-1663 490.14,-1662.75 555,-1662.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1665C473.95,-1665 490.17,-1664.75 555,-1664.75"/>
</g>
<!-- W6 -->
-<g id="node55" class="node">
+<g id="node31" class="node">
<title>W6</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="893,-2479.75 553,-2479.75 553,-2234.25 893,-2234.25 893,-2479.75"/>
-<polygon fill="none" stroke="black" points="553,-2455.25 553,-2479.75 893,-2479.75 893,-2455.25 553,-2455.25"/>
-<text text-anchor="start" x="711.75" y="-2462.45" font-family="arial" font-size="14.00">W6</text>
-<polygon fill="none" stroke="black" points="553,-2430.75 553,-2455.25 611.19,-2455.25 611.19,-2430.75 553,-2430.75"/>
-<text text-anchor="start" x="574.59" y="-2437.95" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="611.19,-2430.75 611.19,-2455.25 709.88,-2455.25 709.88,-2430.75 611.19,-2430.75"/>
-<text text-anchor="start" x="632.78" y="-2437.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="709.88,-2430.75 709.88,-2455.25 774.81,-2455.25 774.81,-2430.75 709.88,-2430.75"/>
-<text text-anchor="start" x="731.47" y="-2437.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="774.81,-2430.75 774.81,-2455.25 893,-2455.25 893,-2430.75 774.81,-2430.75"/>
-<text text-anchor="start" x="796.41" y="-2437.95" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="629.62" y="-2415.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="554.62" y="-2395.45" font-family="arial" font-size="14.00">Veronte 1X:28:CANB_P</text>
-<text text-anchor="start" x="712.25" y="-2395.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="553,-2388.75 553,-2390.75 893,-2390.75 893,-2388.75 553,-2388.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2386.75 553,-2388.75 893,-2388.75 893,-2386.75 553,-2386.75"/>
-<polygon fill="#ffff00" stroke="none" points="553,-2384.75 553,-2386.75 893,-2386.75 893,-2384.75 553,-2384.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2382.75 553,-2384.75 893,-2384.75 893,-2382.75 553,-2382.75"/>
-<polygon fill="#000000" stroke="none" points="553,-2380.75 553,-2382.75 893,-2382.75 893,-2380.75 553,-2380.75"/>
-<text text-anchor="start" x="554.62" y="-2365.45" font-family="arial" font-size="14.00">Veronte 1X:29:CANB_N</text>
-<text text-anchor="start" x="711.88" y="-2365.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="553,-2358.75 553,-2360.75 893,-2360.75 893,-2358.75 553,-2358.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2356.75 553,-2358.75 893,-2358.75 893,-2356.75 553,-2356.75"/>
-<polygon fill="#ff66cc" stroke="none" points="553,-2354.75 553,-2356.75 893,-2356.75 893,-2354.75 553,-2354.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2352.75 553,-2354.75 893,-2354.75 893,-2352.75 553,-2352.75"/>
-<polygon fill="#000000" stroke="none" points="553,-2350.75 553,-2352.75 893,-2352.75 893,-2350.75 553,-2350.75"/>
-<text text-anchor="start" x="567.75" y="-2335.45" font-family="arial" font-size="14.00">Veronte 1X:30:GND</text>
-<text text-anchor="start" x="713" y="-2335.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="553,-2328.75 553,-2330.75 893,-2330.75 893,-2328.75 553,-2328.75"/>
-<polygon fill="#ff66cc" stroke="none" points="553,-2326.75 553,-2328.75 893,-2328.75 893,-2326.75 553,-2326.75"/>
-<polygon fill="#ffff00" stroke="none" points="553,-2324.75 553,-2326.75 893,-2326.75 893,-2324.75 553,-2324.75"/>
-<polygon fill="#ff66cc" stroke="none" points="553,-2322.75 553,-2324.75 893,-2324.75 893,-2322.75 553,-2322.75"/>
-<polygon fill="#000000" stroke="none" points="553,-2320.75 553,-2322.75 893,-2322.75 893,-2320.75 553,-2320.75"/>
-<text text-anchor="start" x="629.62" y="-2305.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="729.12" y="-2285.45" font-family="arial" font-size="14.00">Shield</text>
-<text text-anchor="start" x="789.88" y="-2285.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<polygon fill="#000000" stroke="none" points="553,-2278.75 553,-2280.75 893,-2280.75 893,-2278.75 553,-2278.75"/>
-<text text-anchor="start" x="629.62" y="-2263.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="553,-2234.25 553,-2258.75 893,-2258.75 893,-2234.25 553,-2234.25"/>
-<text text-anchor="start" x="628.12" y="-2241.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to ECU</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="839,-1544.75 600,-1544.75 600,-1299.25 839,-1299.25 839,-1544.75"/>
+<polygon fill="none" stroke="black" points="600,-1520.25 600,-1544.75 839,-1544.75 839,-1520.25 600,-1520.25"/>
+<text text-anchor="start" x="708.25" y="-1527.45" font-family="arial" font-size="14.00">W6</text>
+<polygon fill="none" stroke="black" points="600,-1495.75 600,-1520.25 632.94,-1520.25 632.94,-1495.75 600,-1495.75"/>
+<text text-anchor="start" x="608.97" y="-1502.95" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="632.94,-1495.75 632.94,-1520.25 706.38,-1520.25 706.38,-1495.75 632.94,-1495.75"/>
+<text text-anchor="start" x="641.91" y="-1502.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="706.38,-1495.75 706.38,-1520.25 746.06,-1520.25 746.06,-1495.75 706.38,-1495.75"/>
+<text text-anchor="start" x="715.34" y="-1502.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="746.06,-1495.75 746.06,-1520.25 839,-1520.25 839,-1495.75 746.06,-1495.75"/>
+<text text-anchor="start" x="755.03" y="-1502.95" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="676.62" y="-1480.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="601.62" y="-1460.45" font-family="arial" font-size="14.00">Veronte 1X:28:CANB_P</text>
+<text text-anchor="start" x="759.25" y="-1460.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="600,-1453.75 600,-1455.75 839,-1455.75 839,-1453.75 600,-1453.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1451.75 600,-1453.75 839,-1453.75 839,-1451.75 600,-1451.75"/>
+<polygon fill="#ffff00" stroke="none" points="600,-1449.75 600,-1451.75 839,-1451.75 839,-1449.75 600,-1449.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1447.75 600,-1449.75 839,-1449.75 839,-1447.75 600,-1447.75"/>
+<polygon fill="#000000" stroke="none" points="600,-1445.75 600,-1447.75 839,-1447.75 839,-1445.75 600,-1445.75"/>
+<text text-anchor="start" x="601.62" y="-1430.45" font-family="arial" font-size="14.00">Veronte 1X:29:CANB_N</text>
+<text text-anchor="start" x="758.88" y="-1430.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="600,-1423.75 600,-1425.75 839,-1425.75 839,-1423.75 600,-1423.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1421.75 600,-1423.75 839,-1423.75 839,-1421.75 600,-1421.75"/>
+<polygon fill="#ff66cc" stroke="none" points="600,-1419.75 600,-1421.75 839,-1421.75 839,-1419.75 600,-1419.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1417.75 600,-1419.75 839,-1419.75 839,-1417.75 600,-1417.75"/>
+<polygon fill="#000000" stroke="none" points="600,-1415.75 600,-1417.75 839,-1417.75 839,-1415.75 600,-1415.75"/>
+<text text-anchor="start" x="614.75" y="-1400.45" font-family="arial" font-size="14.00">Veronte 1X:30:GND</text>
+<text text-anchor="start" x="760" y="-1400.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="600,-1393.75 600,-1395.75 839,-1395.75 839,-1393.75 600,-1393.75"/>
+<polygon fill="#ff66cc" stroke="none" points="600,-1391.75 600,-1393.75 839,-1393.75 839,-1391.75 600,-1391.75"/>
+<polygon fill="#ffff00" stroke="none" points="600,-1389.75 600,-1391.75 839,-1391.75 839,-1389.75 600,-1389.75"/>
+<polygon fill="#ff66cc" stroke="none" points="600,-1387.75 600,-1389.75 839,-1389.75 839,-1387.75 600,-1387.75"/>
+<polygon fill="#000000" stroke="none" points="600,-1385.75 600,-1387.75 839,-1387.75 839,-1385.75 600,-1385.75"/>
+<text text-anchor="start" x="676.62" y="-1370.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="776.12" y="-1350.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="600,-1343.75 600,-1345.75 839,-1345.75 839,-1343.75 600,-1343.75"/>
+<text text-anchor="start" x="676.62" y="-1328.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="600,-1299.25 600,-1323.75 839,-1323.75 839,-1299.25 600,-1299.25"/>
+<text text-anchor="start" x="624.62" y="-1306.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to ECU</text>
</g>
<!-- Veronte 1X&#45;&#45;W6 -->
-<g id="edge24" class="edge">
+<g id="edge18" class="edge">
<title>Veronte 1X:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1465C824.65,-1471.38 143.77,-2388.13 553,-2381.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1467C823.05,-1470.19 142.17,-2386.94 553,-2383.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1469C821.44,-1469 140.56,-2385.75 553,-2385.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1471C819.83,-1467.81 138.95,-2384.56 553,-2387.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1473C818.23,-1466.62 137.35,-2383.37 553,-2389.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1465C491.16,-1466.02 511.5,-1447.77 599,-1446.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1467C492.5,-1467.51 512.83,-1449.26 599,-1448.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1469C493.83,-1469 514.17,-1450.75 599,-1450.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1471C495.17,-1470.49 515.5,-1452.24 599,-1452.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1473C496.5,-1471.98 516.84,-1453.73 599,-1454.75"/>
</g>
<!-- Veronte 1X&#45;&#45;W6 -->
-<g id="edge26" class="edge">
+<g id="edge20" class="edge">
<title>Veronte 1X:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1441C822.02,-1447.38 146.41,-2358.13 553,-2351.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1443C820.41,-1446.19 144.8,-2356.94 553,-2353.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1445C818.81,-1445 143.19,-2355.75 553,-2355.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1447C817.2,-1443.81 141.59,-2354.56 553,-2357.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1449C815.59,-1442.62 139.98,-2353.37 553,-2359.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1441C491.03,-1442.47 510.77,-1418.22 599,-1416.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1443C492.58,-1443.74 512.32,-1419.49 599,-1418.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1445C494.13,-1445 513.87,-1420.75 599,-1420.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1447C495.68,-1446.26 515.42,-1422.01 599,-1422.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1449C497.23,-1447.53 516.97,-1423.28 599,-1424.75"/>
</g>
<!-- Veronte 1X&#45;&#45;W6 -->
-<g id="edge28" class="edge">
+<g id="edge22" class="edge">
<title>Veronte 1X:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1417C819.39,-1423.38 149.04,-2328.13 553,-2321.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1419C817.78,-1422.19 147.43,-2326.94 553,-2323.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1421C816.17,-1421 145.83,-2325.75 553,-2325.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1423C814.57,-1419.81 144.22,-2324.56 553,-2327.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1425C812.96,-1418.62 142.61,-2323.37 553,-2329.75"/>
-</g>
-<!-- W8 -->
-<g id="node57" class="node">
-<title>W8</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="872.5,-2210.5 573.5,-2210.5 573.5,-351.5 872.5,-351.5 872.5,-2210.5"/>
-<polygon fill="none" stroke="black" points="573.5,-2186 573.5,-2210.5 872.5,-2210.5 872.5,-2186 573.5,-2186"/>
-<text text-anchor="start" x="711.75" y="-2193.2" font-family="arial" font-size="14.00">W8</text>
-<polygon fill="none" stroke="black" points="573.5,-2161.5 573.5,-2186 658.17,-2186 658.17,-2161.5 573.5,-2161.5"/>
-<text text-anchor="start" x="604.21" y="-2168.7" font-family="arial" font-size="14.00">59x</text>
-<polygon fill="none" stroke="black" points="658.17,-2161.5 658.17,-2186 775.08,-2186 775.08,-2161.5 658.17,-2161.5"/>
-<text text-anchor="start" x="688.88" y="-2168.7" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="775.08,-2161.5 775.08,-2186 872.5,-2186 872.5,-2161.5 775.08,-2161.5"/>
-<text text-anchor="start" x="805.79" y="-2168.7" font-family="arial" font-size="14.00">0.3 m</text>
-<text text-anchor="start" x="678.12" y="-2146.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="622.25" y="-2126.2" font-family="arial" font-size="14.00">Veronte 1X:1:I/O1</text>
-<text text-anchor="start" x="798.62" y="-2126.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2119.5 573.5,-2121.5 872.5,-2121.5 872.5,-2119.5 573.5,-2119.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-2117.5 573.5,-2119.5 872.5,-2119.5 872.5,-2117.5 573.5,-2117.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-2115.5 573.5,-2117.5 872.5,-2117.5 872.5,-2115.5 573.5,-2115.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-2113.5 573.5,-2115.5 872.5,-2115.5 872.5,-2113.5 573.5,-2113.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2111.5 573.5,-2113.5 872.5,-2113.5 872.5,-2111.5 573.5,-2111.5"/>
-<text text-anchor="start" x="622.25" y="-2096.2" font-family="arial" font-size="14.00">Veronte 1X:4:I/O4</text>
-<text text-anchor="start" x="801.25" y="-2096.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2089.5 573.5,-2091.5 872.5,-2091.5 872.5,-2089.5 573.5,-2089.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-2087.5 573.5,-2089.5 872.5,-2089.5 872.5,-2087.5 573.5,-2087.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-2085.5 573.5,-2087.5 872.5,-2087.5 872.5,-2085.5 573.5,-2085.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-2083.5 573.5,-2085.5 872.5,-2085.5 872.5,-2083.5 573.5,-2083.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2081.5 573.5,-2083.5 872.5,-2083.5 872.5,-2081.5 573.5,-2081.5"/>
-<text text-anchor="start" x="622.25" y="-2066.2" font-family="arial" font-size="14.00">Veronte 1X:5:I/O5</text>
-<text text-anchor="start" x="800.5" y="-2066.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2059.5 573.5,-2061.5 872.5,-2061.5 872.5,-2059.5 573.5,-2059.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-2057.5 573.5,-2059.5 872.5,-2059.5 872.5,-2057.5 573.5,-2057.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-2055.5 573.5,-2057.5 872.5,-2057.5 872.5,-2055.5 573.5,-2055.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-2053.5 573.5,-2055.5 872.5,-2055.5 872.5,-2053.5 573.5,-2053.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2051.5 573.5,-2053.5 872.5,-2053.5 872.5,-2051.5 573.5,-2051.5"/>
-<text text-anchor="start" x="622.25" y="-2036.2" font-family="arial" font-size="14.00">Veronte 1X:6:I/O6</text>
-<text text-anchor="start" x="800.88" y="-2036.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2029.5 573.5,-2031.5 872.5,-2031.5 872.5,-2029.5 573.5,-2029.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-2027.5 573.5,-2029.5 872.5,-2029.5 872.5,-2027.5 573.5,-2027.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-2025.5 573.5,-2027.5 872.5,-2027.5 872.5,-2025.5 573.5,-2025.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-2023.5 573.5,-2025.5 872.5,-2025.5 872.5,-2023.5 573.5,-2023.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2021.5 573.5,-2023.5 872.5,-2023.5 872.5,-2021.5 573.5,-2021.5"/>
-<text text-anchor="start" x="622.25" y="-2006.2" font-family="arial" font-size="14.00">Veronte 1X:7:I/O7</text>
-<text text-anchor="start" x="800.88" y="-2006.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1999.5 573.5,-2001.5 872.5,-2001.5 872.5,-1999.5 573.5,-1999.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1997.5 573.5,-1999.5 872.5,-1999.5 872.5,-1997.5 573.5,-1997.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1995.5 573.5,-1997.5 872.5,-1997.5 872.5,-1995.5 573.5,-1995.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1993.5 573.5,-1995.5 872.5,-1995.5 872.5,-1993.5 573.5,-1993.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1991.5 573.5,-1993.5 872.5,-1993.5 872.5,-1991.5 573.5,-1991.5"/>
-<text text-anchor="start" x="622.25" y="-1976.2" font-family="arial" font-size="14.00">Veronte 1X:8:I/O8</text>
-<text text-anchor="start" x="800.12" y="-1976.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1969.5 573.5,-1971.5 872.5,-1971.5 872.5,-1969.5 573.5,-1969.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1967.5 573.5,-1969.5 872.5,-1969.5 872.5,-1967.5 573.5,-1967.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1965.5 573.5,-1967.5 872.5,-1967.5 872.5,-1965.5 573.5,-1965.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1963.5 573.5,-1965.5 872.5,-1965.5 872.5,-1963.5 573.5,-1963.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1961.5 573.5,-1963.5 872.5,-1963.5 872.5,-1961.5 573.5,-1961.5"/>
-<text text-anchor="start" x="620.38" y="-1946.2" font-family="arial" font-size="14.00">Veronte 1X:9:GND</text>
-<text text-anchor="start" x="800.88" y="-1946.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1939.5 573.5,-1941.5 872.5,-1941.5 872.5,-1939.5 573.5,-1939.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1937.5 573.5,-1939.5 872.5,-1939.5 872.5,-1937.5 573.5,-1937.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1935.5 573.5,-1937.5 872.5,-1937.5 872.5,-1935.5 573.5,-1935.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1933.5 573.5,-1935.5 872.5,-1935.5 872.5,-1933.5 573.5,-1933.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1931.5 573.5,-1933.5 872.5,-1933.5 872.5,-1931.5 573.5,-1931.5"/>
-<text text-anchor="start" x="618.12" y="-1916.2" font-family="arial" font-size="14.00">Veronte 1X:10:I/O9</text>
-<text text-anchor="start" x="801.25" y="-1916.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1909.5 573.5,-1911.5 872.5,-1911.5 872.5,-1909.5 573.5,-1909.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1907.5 573.5,-1909.5 872.5,-1909.5 872.5,-1907.5 573.5,-1907.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1905.5 573.5,-1907.5 872.5,-1907.5 872.5,-1905.5 573.5,-1905.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1903.5 573.5,-1905.5 872.5,-1905.5 872.5,-1903.5 573.5,-1903.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1901.5 573.5,-1903.5 872.5,-1903.5 872.5,-1901.5 573.5,-1901.5"/>
-<text text-anchor="start" x="614" y="-1886.2" font-family="arial" font-size="14.00">Veronte 1X:11:I/O10</text>
-<text text-anchor="start" x="790.75" y="-1886.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1879.5 573.5,-1881.5 872.5,-1881.5 872.5,-1879.5 573.5,-1879.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1877.5 573.5,-1879.5 872.5,-1879.5 872.5,-1877.5 573.5,-1877.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1875.5 573.5,-1877.5 872.5,-1877.5 872.5,-1875.5 573.5,-1875.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1873.5 573.5,-1875.5 872.5,-1875.5 872.5,-1873.5 573.5,-1873.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1871.5 573.5,-1873.5 872.5,-1873.5 872.5,-1871.5 573.5,-1871.5"/>
-<text text-anchor="start" x="614" y="-1856.2" font-family="arial" font-size="14.00">Veronte 1X:12:I/O11</text>
-<text text-anchor="start" x="790.38" y="-1856.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1849.5 573.5,-1851.5 872.5,-1851.5 872.5,-1849.5 573.5,-1849.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1847.5 573.5,-1849.5 872.5,-1849.5 872.5,-1847.5 573.5,-1847.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1845.5 573.5,-1847.5 872.5,-1847.5 872.5,-1845.5 573.5,-1845.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1843.5 573.5,-1845.5 872.5,-1845.5 872.5,-1843.5 573.5,-1843.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1841.5 573.5,-1843.5 872.5,-1843.5 872.5,-1841.5 573.5,-1841.5"/>
-<text text-anchor="start" x="614" y="-1826.2" font-family="arial" font-size="14.00">Veronte 1X:13:I/O12</text>
-<text text-anchor="start" x="788.12" y="-1826.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1819.5 573.5,-1821.5 872.5,-1821.5 872.5,-1819.5 573.5,-1819.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1817.5 573.5,-1819.5 872.5,-1819.5 872.5,-1817.5 573.5,-1817.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1815.5 573.5,-1817.5 872.5,-1817.5 872.5,-1815.5 573.5,-1815.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1813.5 573.5,-1815.5 872.5,-1815.5 872.5,-1813.5 573.5,-1813.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1811.5 573.5,-1813.5 872.5,-1813.5 872.5,-1811.5 573.5,-1811.5"/>
-<text text-anchor="start" x="614" y="-1796.2" font-family="arial" font-size="14.00">Veronte 1X:14:I/O13</text>
-<text text-anchor="start" x="790.38" y="-1796.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1789.5 573.5,-1791.5 872.5,-1791.5 872.5,-1789.5 573.5,-1789.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1787.5 573.5,-1789.5 872.5,-1789.5 872.5,-1787.5 573.5,-1787.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1785.5 573.5,-1787.5 872.5,-1787.5 872.5,-1785.5 573.5,-1785.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1783.5 573.5,-1785.5 872.5,-1785.5 872.5,-1783.5 573.5,-1783.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1781.5 573.5,-1783.5 872.5,-1783.5 872.5,-1781.5 573.5,-1781.5"/>
-<text text-anchor="start" x="614" y="-1766.2" font-family="arial" font-size="14.00">Veronte 1X:15:I/O14</text>
-<text text-anchor="start" x="789.25" y="-1766.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1759.5 573.5,-1761.5 872.5,-1761.5 872.5,-1759.5 573.5,-1759.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1757.5 573.5,-1759.5 872.5,-1759.5 872.5,-1757.5 573.5,-1757.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1755.5 573.5,-1757.5 872.5,-1757.5 872.5,-1755.5 573.5,-1755.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1753.5 573.5,-1755.5 872.5,-1755.5 872.5,-1753.5 573.5,-1753.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1751.5 573.5,-1753.5 872.5,-1753.5 872.5,-1751.5 573.5,-1751.5"/>
-<text text-anchor="start" x="614" y="-1736.2" font-family="arial" font-size="14.00">Veronte 1X:16:I/O15</text>
-<text text-anchor="start" x="791.5" y="-1736.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1729.5 573.5,-1731.5 872.5,-1731.5 872.5,-1729.5 573.5,-1729.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1727.5 573.5,-1729.5 872.5,-1729.5 872.5,-1727.5 573.5,-1727.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1725.5 573.5,-1727.5 872.5,-1727.5 872.5,-1725.5 573.5,-1725.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1723.5 573.5,-1725.5 872.5,-1725.5 872.5,-1723.5 573.5,-1723.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1721.5 573.5,-1723.5 872.5,-1723.5 872.5,-1721.5 573.5,-1721.5"/>
-<text text-anchor="start" x="614" y="-1706.2" font-family="arial" font-size="14.00">Veronte 1X:17:I/O16</text>
-<text text-anchor="start" x="788.5" y="-1706.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1699.5 573.5,-1701.5 872.5,-1701.5 872.5,-1699.5 573.5,-1699.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1697.5 573.5,-1699.5 872.5,-1699.5 872.5,-1697.5 573.5,-1697.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1695.5 573.5,-1697.5 872.5,-1697.5 872.5,-1695.5 573.5,-1695.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1693.5 573.5,-1695.5 872.5,-1695.5 872.5,-1693.5 573.5,-1693.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1691.5 573.5,-1693.5 872.5,-1693.5 872.5,-1691.5 573.5,-1691.5"/>
-<text text-anchor="start" x="616.25" y="-1676.2" font-family="arial" font-size="14.00">Veronte 1X:18:GND</text>
-<text text-anchor="start" x="790.75" y="-1676.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1669.5 573.5,-1671.5 872.5,-1671.5 872.5,-1669.5 573.5,-1669.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1667.5 573.5,-1669.5 872.5,-1669.5 872.5,-1667.5 573.5,-1667.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1665.5 573.5,-1667.5 872.5,-1667.5 872.5,-1665.5 573.5,-1665.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1663.5 573.5,-1665.5 872.5,-1665.5 872.5,-1663.5 573.5,-1663.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1661.5 573.5,-1663.5 872.5,-1663.5 872.5,-1661.5 573.5,-1661.5"/>
-<text text-anchor="start" x="616.25" y="-1646.2" font-family="arial" font-size="14.00">Veronte 1X:21:GND</text>
-<text text-anchor="start" x="788.88" y="-1646.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1639.5 573.5,-1641.5 872.5,-1641.5 872.5,-1639.5 573.5,-1639.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1637.5 573.5,-1639.5 872.5,-1639.5 872.5,-1637.5 573.5,-1637.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1635.5 573.5,-1637.5 872.5,-1637.5 872.5,-1635.5 573.5,-1635.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1633.5 573.5,-1635.5 872.5,-1635.5 872.5,-1633.5 573.5,-1633.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1631.5 573.5,-1633.5 872.5,-1633.5 872.5,-1631.5 573.5,-1631.5"/>
-<text text-anchor="start" x="603.88" y="-1616.2" font-family="arial" font-size="14.00">Veronte 1X:22:Analog 4</text>
-<text text-anchor="start" x="791.12" y="-1616.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1609.5 573.5,-1611.5 872.5,-1611.5 872.5,-1609.5 573.5,-1609.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1607.5 573.5,-1609.5 872.5,-1609.5 872.5,-1607.5 573.5,-1607.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1605.5 573.5,-1607.5 872.5,-1607.5 872.5,-1605.5 573.5,-1605.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1603.5 573.5,-1605.5 872.5,-1605.5 872.5,-1603.5 573.5,-1603.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1601.5 573.5,-1603.5 872.5,-1603.5 872.5,-1601.5 573.5,-1601.5"/>
-<text text-anchor="start" x="603.88" y="-1586.2" font-family="arial" font-size="14.00">Veronte 1X:23:Analog 5</text>
-<text text-anchor="start" x="788.12" y="-1586.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1579.5 573.5,-1581.5 872.5,-1581.5 872.5,-1579.5 573.5,-1579.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1577.5 573.5,-1579.5 872.5,-1579.5 872.5,-1577.5 573.5,-1577.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1575.5 573.5,-1577.5 872.5,-1577.5 872.5,-1575.5 573.5,-1575.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1573.5 573.5,-1575.5 872.5,-1575.5 872.5,-1573.5 573.5,-1573.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1571.5 573.5,-1573.5 872.5,-1573.5 872.5,-1571.5 573.5,-1571.5"/>
-<text text-anchor="start" x="616.25" y="-1556.2" font-family="arial" font-size="14.00">Veronte 1X:24:GND</text>
-<text text-anchor="start" x="790.38" y="-1556.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1549.5 573.5,-1551.5 872.5,-1551.5 872.5,-1549.5 573.5,-1549.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1547.5 573.5,-1549.5 872.5,-1549.5 872.5,-1547.5 573.5,-1547.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1545.5 573.5,-1547.5 872.5,-1547.5 872.5,-1545.5 573.5,-1545.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1543.5 573.5,-1545.5 872.5,-1545.5 872.5,-1543.5 573.5,-1543.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1541.5 573.5,-1543.5 872.5,-1543.5 872.5,-1541.5 573.5,-1541.5"/>
-<text text-anchor="start" x="594.5" y="-1526.2" font-family="arial" font-size="14.00">Veronte 1X:27:No Connect</text>
-<text text-anchor="start" x="790" y="-1526.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1519.5 573.5,-1521.5 872.5,-1521.5 872.5,-1519.5 573.5,-1519.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1517.5 573.5,-1519.5 872.5,-1519.5 872.5,-1517.5 573.5,-1517.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1515.5 573.5,-1517.5 872.5,-1517.5 872.5,-1515.5 573.5,-1515.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1513.5 573.5,-1515.5 872.5,-1515.5 872.5,-1513.5 573.5,-1513.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1511.5 573.5,-1513.5 872.5,-1513.5 872.5,-1511.5 573.5,-1511.5"/>
-<text text-anchor="start" x="602" y="-1496.2" font-family="arial" font-size="14.00">Veronte 1X:31:I2C_CLK</text>
-<text text-anchor="start" x="798.62" y="-1496.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1489.5 573.5,-1491.5 872.5,-1491.5 872.5,-1489.5 573.5,-1489.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1487.5 573.5,-1489.5 872.5,-1489.5 872.5,-1487.5 573.5,-1487.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1485.5 573.5,-1487.5 872.5,-1487.5 872.5,-1485.5 573.5,-1485.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1483.5 573.5,-1485.5 872.5,-1485.5 872.5,-1483.5 573.5,-1483.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1481.5 573.5,-1483.5 872.5,-1483.5 872.5,-1481.5 573.5,-1481.5"/>
-<text text-anchor="start" x="596.75" y="-1466.2" font-family="arial" font-size="14.00">Veronte 1X:32:I2C_DATA</text>
-<text text-anchor="start" x="800.88" y="-1466.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1459.5 573.5,-1461.5 872.5,-1461.5 872.5,-1459.5 573.5,-1459.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1457.5 573.5,-1459.5 872.5,-1459.5 872.5,-1457.5 573.5,-1457.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1455.5 573.5,-1457.5 872.5,-1457.5 872.5,-1455.5 573.5,-1455.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1453.5 573.5,-1455.5 872.5,-1455.5 872.5,-1453.5 573.5,-1453.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1451.5 573.5,-1453.5 872.5,-1453.5 872.5,-1451.5 573.5,-1451.5"/>
-<text text-anchor="start" x="616.25" y="-1436.2" font-family="arial" font-size="14.00">Veronte 1X:33:GND</text>
-<text text-anchor="start" x="800.12" y="-1436.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1429.5 573.5,-1431.5 872.5,-1431.5 872.5,-1429.5 573.5,-1429.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1427.5 573.5,-1429.5 872.5,-1429.5 872.5,-1427.5 573.5,-1427.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1425.5 573.5,-1427.5 872.5,-1427.5 872.5,-1425.5 573.5,-1425.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1423.5 573.5,-1425.5 872.5,-1425.5 872.5,-1423.5 573.5,-1423.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1421.5 573.5,-1423.5 872.5,-1423.5 872.5,-1421.5 573.5,-1421.5"/>
-<text text-anchor="start" x="617" y="-1406.2" font-family="arial" font-size="14.00">Veronte 1X:34:3.3V</text>
-<text text-anchor="start" x="801.25" y="-1406.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1399.5 573.5,-1401.5 872.5,-1401.5 872.5,-1399.5 573.5,-1399.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1397.5 573.5,-1399.5 872.5,-1399.5 872.5,-1397.5 573.5,-1397.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1395.5 573.5,-1397.5 872.5,-1397.5 872.5,-1395.5 573.5,-1395.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1393.5 573.5,-1395.5 872.5,-1395.5 872.5,-1393.5 573.5,-1393.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1391.5 573.5,-1393.5 872.5,-1393.5 872.5,-1391.5 573.5,-1391.5"/>
-<text text-anchor="start" x="616.25" y="-1376.2" font-family="arial" font-size="14.00">Veronte 1X:35:GND</text>
-<text text-anchor="start" x="800.5" y="-1376.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1369.5 573.5,-1371.5 872.5,-1371.5 872.5,-1369.5 573.5,-1369.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1367.5 573.5,-1369.5 872.5,-1369.5 872.5,-1367.5 573.5,-1367.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1365.5 573.5,-1367.5 872.5,-1367.5 872.5,-1365.5 573.5,-1365.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1363.5 573.5,-1365.5 872.5,-1365.5 872.5,-1363.5 573.5,-1363.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1361.5 573.5,-1363.5 872.5,-1363.5 872.5,-1361.5 573.5,-1361.5"/>
-<text text-anchor="start" x="623" y="-1346.2" font-family="arial" font-size="14.00">Veronte 1X:36:5V</text>
-<text text-anchor="start" x="800.88" y="-1346.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1339.5 573.5,-1341.5 872.5,-1341.5 872.5,-1339.5 573.5,-1339.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1337.5 573.5,-1339.5 872.5,-1339.5 872.5,-1337.5 573.5,-1337.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1335.5 573.5,-1337.5 872.5,-1337.5 872.5,-1335.5 573.5,-1335.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1333.5 573.5,-1335.5 872.5,-1335.5 872.5,-1333.5 573.5,-1333.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1331.5 573.5,-1333.5 872.5,-1333.5 872.5,-1331.5 573.5,-1331.5"/>
-<text text-anchor="start" x="616.25" y="-1316.2" font-family="arial" font-size="14.00">Veronte 1X:37:GND</text>
-<text text-anchor="start" x="800.88" y="-1316.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1309.5 573.5,-1311.5 872.5,-1311.5 872.5,-1309.5 573.5,-1309.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1307.5 573.5,-1309.5 872.5,-1309.5 872.5,-1307.5 573.5,-1307.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1305.5 573.5,-1307.5 872.5,-1307.5 872.5,-1305.5 573.5,-1305.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1303.5 573.5,-1305.5 872.5,-1305.5 872.5,-1303.5 573.5,-1303.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1301.5 573.5,-1303.5 872.5,-1303.5 872.5,-1301.5 573.5,-1301.5"/>
-<text text-anchor="start" x="593.75" y="-1286.2" font-family="arial" font-size="14.00">Veronte 1X:38:ANALOG_1</text>
-<text text-anchor="start" x="800.12" y="-1286.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1279.5 573.5,-1281.5 872.5,-1281.5 872.5,-1279.5 573.5,-1279.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1277.5 573.5,-1279.5 872.5,-1279.5 872.5,-1277.5 573.5,-1277.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1275.5 573.5,-1277.5 872.5,-1277.5 872.5,-1275.5 573.5,-1275.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1273.5 573.5,-1275.5 872.5,-1275.5 872.5,-1273.5 573.5,-1273.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1271.5 573.5,-1273.5 872.5,-1273.5 872.5,-1271.5 573.5,-1271.5"/>
-<text text-anchor="start" x="593.75" y="-1256.2" font-family="arial" font-size="14.00">Veronte 1X:39:ANALOG_2</text>
-<text text-anchor="start" x="800.88" y="-1256.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1249.5 573.5,-1251.5 872.5,-1251.5 872.5,-1249.5 573.5,-1249.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1247.5 573.5,-1249.5 872.5,-1249.5 872.5,-1247.5 573.5,-1247.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1245.5 573.5,-1247.5 872.5,-1247.5 872.5,-1245.5 573.5,-1245.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1243.5 573.5,-1245.5 872.5,-1245.5 872.5,-1243.5 573.5,-1243.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1241.5 573.5,-1243.5 872.5,-1243.5 872.5,-1241.5 573.5,-1241.5"/>
-<text text-anchor="start" x="593.75" y="-1226.2" font-family="arial" font-size="14.00">Veronte 1X:40:ANALOG_3</text>
-<text text-anchor="start" x="801.25" y="-1226.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1219.5 573.5,-1221.5 872.5,-1221.5 872.5,-1219.5 573.5,-1219.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1217.5 573.5,-1219.5 872.5,-1219.5 872.5,-1217.5 573.5,-1217.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1215.5 573.5,-1217.5 872.5,-1217.5 872.5,-1215.5 573.5,-1215.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1213.5 573.5,-1215.5 872.5,-1215.5 872.5,-1213.5 573.5,-1213.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1211.5 573.5,-1213.5 872.5,-1213.5 872.5,-1211.5 573.5,-1211.5"/>
-<text text-anchor="start" x="616.25" y="-1196.2" font-family="arial" font-size="14.00">Veronte 1X:41:GND</text>
-<text text-anchor="start" x="790.75" y="-1196.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1189.5 573.5,-1191.5 872.5,-1191.5 872.5,-1189.5 573.5,-1189.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1187.5 573.5,-1189.5 872.5,-1189.5 872.5,-1187.5 573.5,-1187.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1185.5 573.5,-1187.5 872.5,-1187.5 872.5,-1185.5 573.5,-1185.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1183.5 573.5,-1185.5 872.5,-1185.5 872.5,-1183.5 573.5,-1183.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1181.5 573.5,-1183.5 872.5,-1183.5 872.5,-1181.5 573.5,-1181.5"/>
-<text text-anchor="start" x="594.88" y="-1166.2" font-family="arial" font-size="14.00">Veronte 1X:42:FTS1_OUT</text>
-<text text-anchor="start" x="790.38" y="-1166.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1159.5 573.5,-1161.5 872.5,-1161.5 872.5,-1159.5 573.5,-1159.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1157.5 573.5,-1159.5 872.5,-1159.5 872.5,-1157.5 573.5,-1157.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1155.5 573.5,-1157.5 872.5,-1157.5 872.5,-1155.5 573.5,-1155.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1153.5 573.5,-1155.5 872.5,-1155.5 872.5,-1153.5 573.5,-1153.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1151.5 573.5,-1153.5 872.5,-1153.5 872.5,-1151.5 573.5,-1151.5"/>
-<text text-anchor="start" x="594.88" y="-1136.2" font-family="arial" font-size="14.00">Veronte 1X:43:FTS2_OUT</text>
-<text text-anchor="start" x="788.12" y="-1136.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1129.5 573.5,-1131.5 872.5,-1131.5 872.5,-1129.5 573.5,-1129.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1127.5 573.5,-1129.5 872.5,-1129.5 872.5,-1127.5 573.5,-1127.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1125.5 573.5,-1127.5 872.5,-1127.5 872.5,-1125.5 573.5,-1125.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1123.5 573.5,-1125.5 872.5,-1125.5 872.5,-1123.5 573.5,-1123.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1121.5 573.5,-1123.5 872.5,-1123.5 872.5,-1121.5 573.5,-1121.5"/>
-<text text-anchor="start" x="616.25" y="-1106.2" font-family="arial" font-size="14.00">Veronte 1X:44:GND</text>
-<text text-anchor="start" x="790.38" y="-1106.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1099.5 573.5,-1101.5 872.5,-1101.5 872.5,-1099.5 573.5,-1099.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1097.5 573.5,-1099.5 872.5,-1099.5 872.5,-1097.5 573.5,-1097.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1095.5 573.5,-1097.5 872.5,-1097.5 872.5,-1095.5 573.5,-1095.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1093.5 573.5,-1095.5 872.5,-1095.5 872.5,-1093.5 573.5,-1093.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1091.5 573.5,-1093.5 872.5,-1093.5 872.5,-1091.5 573.5,-1091.5"/>
-<text text-anchor="start" x="594.5" y="-1076.2" font-family="arial" font-size="14.00">Veronte 1X:45:V_ARB_TX</text>
-<text text-anchor="start" x="789.25" y="-1076.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1069.5 573.5,-1071.5 872.5,-1071.5 872.5,-1069.5 573.5,-1069.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1067.5 573.5,-1069.5 872.5,-1069.5 872.5,-1067.5 573.5,-1067.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1065.5 573.5,-1067.5 872.5,-1067.5 872.5,-1065.5 573.5,-1065.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1063.5 573.5,-1065.5 872.5,-1065.5 872.5,-1063.5 573.5,-1063.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1061.5 573.5,-1063.5 872.5,-1063.5 872.5,-1061.5 573.5,-1061.5"/>
-<text text-anchor="start" x="593.75" y="-1046.2" font-family="arial" font-size="14.00">Veronte 1X:46:V_ARB_RX</text>
-<text text-anchor="start" x="791.5" y="-1046.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1039.5 573.5,-1041.5 872.5,-1041.5 872.5,-1039.5 573.5,-1039.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1037.5 573.5,-1039.5 872.5,-1039.5 872.5,-1037.5 573.5,-1037.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1035.5 573.5,-1037.5 872.5,-1037.5 872.5,-1035.5 573.5,-1035.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1033.5 573.5,-1035.5 872.5,-1035.5 872.5,-1033.5 573.5,-1033.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1031.5 573.5,-1033.5 872.5,-1033.5 872.5,-1031.5 573.5,-1031.5"/>
-<text text-anchor="start" x="616.25" y="-1016.2" font-family="arial" font-size="14.00">Veronte 1X:47:GND</text>
-<text text-anchor="start" x="788.5" y="-1016.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1009.5 573.5,-1011.5 872.5,-1011.5 872.5,-1009.5 573.5,-1009.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1007.5 573.5,-1009.5 872.5,-1009.5 872.5,-1007.5 573.5,-1007.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1005.5 573.5,-1007.5 872.5,-1007.5 872.5,-1005.5 573.5,-1005.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1003.5 573.5,-1005.5 872.5,-1005.5 872.5,-1003.5 573.5,-1003.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1001.5 573.5,-1003.5 872.5,-1003.5 872.5,-1001.5 573.5,-1001.5"/>
-<text text-anchor="start" x="588.5" y="-986.2" font-family="arial" font-size="14.00">Veronte 1X:48:V_ARB_VCC</text>
-<text text-anchor="start" x="790.75" y="-986.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-979.5 573.5,-981.5 872.5,-981.5 872.5,-979.5 573.5,-979.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-977.5 573.5,-979.5 872.5,-979.5 872.5,-977.5 573.5,-977.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-975.5 573.5,-977.5 872.5,-977.5 872.5,-975.5 573.5,-975.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-973.5 573.5,-975.5 872.5,-975.5 872.5,-973.5 573.5,-973.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-971.5 573.5,-973.5 872.5,-973.5 872.5,-971.5 573.5,-971.5"/>
-<text text-anchor="start" x="575.38" y="-956.2" font-family="arial" font-size="14.00">Veronte 1X:49:FTS3_OUT_MPU</text>
-<text text-anchor="start" x="788.88" y="-956.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-949.5 573.5,-951.5 872.5,-951.5 872.5,-949.5 573.5,-949.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-947.5 573.5,-949.5 872.5,-949.5 872.5,-947.5 573.5,-947.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-945.5 573.5,-947.5 872.5,-947.5 872.5,-945.5 573.5,-945.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-943.5 573.5,-945.5 872.5,-945.5 872.5,-943.5 573.5,-943.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-941.5 573.5,-943.5 872.5,-943.5 872.5,-941.5 573.5,-941.5"/>
-<text text-anchor="start" x="581.38" y="-926.2" font-family="arial" font-size="14.00">Veronte 1X:50:OUT_RS485_P</text>
-<text text-anchor="start" x="791.12" y="-926.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-919.5 573.5,-921.5 872.5,-921.5 872.5,-919.5 573.5,-919.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-917.5 573.5,-919.5 872.5,-919.5 872.5,-917.5 573.5,-917.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-915.5 573.5,-917.5 872.5,-917.5 872.5,-915.5 573.5,-915.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-913.5 573.5,-915.5 872.5,-915.5 872.5,-913.5 573.5,-913.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-911.5 573.5,-913.5 872.5,-913.5 872.5,-911.5 573.5,-911.5"/>
-<text text-anchor="start" x="581.38" y="-896.2" font-family="arial" font-size="14.00">Veronte 1X:51:OUT_RS485_N</text>
-<text text-anchor="start" x="788.88" y="-896.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-889.5 573.5,-891.5 872.5,-891.5 872.5,-889.5 573.5,-889.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-887.5 573.5,-889.5 872.5,-889.5 872.5,-887.5 573.5,-887.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-885.5 573.5,-887.5 872.5,-887.5 872.5,-885.5 573.5,-885.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-883.5 573.5,-885.5 872.5,-885.5 872.5,-883.5 573.5,-883.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-881.5 573.5,-883.5 872.5,-883.5 872.5,-881.5 573.5,-881.5"/>
-<text text-anchor="start" x="589.25" y="-866.2" font-family="arial" font-size="14.00">Veronte 1X:52:IN_RS845_N</text>
-<text text-anchor="start" x="791.12" y="-866.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-859.5 573.5,-861.5 872.5,-861.5 872.5,-859.5 573.5,-859.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-857.5 573.5,-859.5 872.5,-859.5 872.5,-857.5 573.5,-857.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-855.5 573.5,-857.5 872.5,-857.5 872.5,-855.5 573.5,-855.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-853.5 573.5,-855.5 872.5,-855.5 872.5,-853.5 573.5,-853.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-851.5 573.5,-853.5 872.5,-853.5 872.5,-851.5 573.5,-851.5"/>
-<text text-anchor="start" x="589.25" y="-836.2" font-family="arial" font-size="14.00">Veronte 1X:53:IN_RS845_P</text>
-<text text-anchor="start" x="788.12" y="-836.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-829.5 573.5,-831.5 872.5,-831.5 872.5,-829.5 573.5,-829.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-827.5 573.5,-829.5 872.5,-829.5 872.5,-827.5 573.5,-827.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-825.5 573.5,-827.5 872.5,-827.5 872.5,-825.5 573.5,-825.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-823.5 573.5,-825.5 872.5,-825.5 872.5,-823.5 573.5,-823.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-821.5 573.5,-823.5 872.5,-823.5 872.5,-821.5 573.5,-821.5"/>
-<text text-anchor="start" x="587.38" y="-806.2" font-family="arial" font-size="14.00">Veronte 1X:54:RS&#45;485_GND</text>
-<text text-anchor="start" x="790.38" y="-806.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-799.5 573.5,-801.5 872.5,-801.5 872.5,-799.5 573.5,-799.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-797.5 573.5,-799.5 872.5,-799.5 872.5,-797.5 573.5,-797.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-795.5 573.5,-797.5 872.5,-797.5 872.5,-795.5 573.5,-795.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-793.5 573.5,-795.5 872.5,-795.5 872.5,-793.5 573.5,-793.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-791.5 573.5,-793.5 872.5,-793.5 872.5,-791.5 573.5,-791.5"/>
-<text text-anchor="start" x="602.75" y="-776.2" font-family="arial" font-size="14.00">Veronte 1X:55:EQEP_A</text>
-<text text-anchor="start" x="788.88" y="-776.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-769.5 573.5,-771.5 872.5,-771.5 872.5,-769.5 573.5,-769.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-767.5 573.5,-769.5 872.5,-769.5 872.5,-767.5 573.5,-767.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-765.5 573.5,-767.5 872.5,-767.5 872.5,-765.5 573.5,-765.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-763.5 573.5,-765.5 872.5,-765.5 872.5,-763.5 573.5,-763.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-761.5 573.5,-763.5 872.5,-763.5 872.5,-761.5 573.5,-761.5"/>
-<text text-anchor="start" x="602.75" y="-746.2" font-family="arial" font-size="14.00">Veronte 1X:56:EQEP_B</text>
-<text text-anchor="start" x="791.12" y="-746.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-739.5 573.5,-741.5 872.5,-741.5 872.5,-739.5 573.5,-739.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-737.5 573.5,-739.5 872.5,-739.5 872.5,-737.5 573.5,-737.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-735.5 573.5,-737.5 872.5,-737.5 872.5,-735.5 573.5,-735.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-733.5 573.5,-735.5 872.5,-735.5 872.5,-733.5 573.5,-733.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-731.5 573.5,-733.5 872.5,-733.5 872.5,-731.5 573.5,-731.5"/>
-<text text-anchor="start" x="602.75" y="-716.2" font-family="arial" font-size="14.00">Veronte 1X:57:EQEP_S</text>
-<text text-anchor="start" x="790" y="-716.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-709.5 573.5,-711.5 872.5,-711.5 872.5,-709.5 573.5,-709.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-707.5 573.5,-709.5 872.5,-709.5 872.5,-707.5 573.5,-707.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-705.5 573.5,-707.5 872.5,-707.5 872.5,-705.5 573.5,-705.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-703.5 573.5,-705.5 872.5,-705.5 872.5,-703.5 573.5,-703.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-701.5 573.5,-703.5 872.5,-703.5 872.5,-701.5 573.5,-701.5"/>
-<text text-anchor="start" x="605.38" y="-686.2" font-family="arial" font-size="14.00">Veronte 1X:58:EQEP_I</text>
-<text text-anchor="start" x="790.75" y="-686.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-679.5 573.5,-681.5 872.5,-681.5 872.5,-679.5 573.5,-679.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-677.5 573.5,-679.5 872.5,-679.5 872.5,-677.5 573.5,-677.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-675.5 573.5,-677.5 872.5,-677.5 872.5,-675.5 573.5,-675.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-673.5 573.5,-675.5 872.5,-675.5 872.5,-673.5 573.5,-673.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-671.5 573.5,-673.5 872.5,-673.5 872.5,-671.5 573.5,-671.5"/>
-<text text-anchor="start" x="616.25" y="-656.2" font-family="arial" font-size="14.00">Veronte 1X:59:GND</text>
-<text text-anchor="start" x="790.38" y="-656.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-649.5 573.5,-651.5 872.5,-651.5 872.5,-649.5 573.5,-649.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-647.5 573.5,-649.5 872.5,-649.5 872.5,-647.5 573.5,-647.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-645.5 573.5,-647.5 872.5,-647.5 872.5,-645.5 573.5,-645.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-643.5 573.5,-645.5 872.5,-645.5 872.5,-643.5 573.5,-643.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-641.5 573.5,-643.5 872.5,-643.5 872.5,-641.5 573.5,-641.5"/>
-<text text-anchor="start" x="594.12" y="-626.2" font-family="arial" font-size="14.00">Veronte 1X:60:V_USB_DP</text>
-<text text-anchor="start" x="791.5" y="-626.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-619.5 573.5,-621.5 872.5,-621.5 872.5,-619.5 573.5,-619.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-617.5 573.5,-619.5 872.5,-619.5 872.5,-617.5 573.5,-617.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-615.5 573.5,-617.5 872.5,-617.5 872.5,-615.5 573.5,-615.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-613.5 573.5,-615.5 872.5,-615.5 872.5,-613.5 573.5,-613.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-611.5 573.5,-613.5 872.5,-613.5 872.5,-611.5 573.5,-611.5"/>
-<text text-anchor="start" x="594.12" y="-596.2" font-family="arial" font-size="14.00">Veronte 1X:61:V_USB_DN</text>
-<text text-anchor="start" x="798.62" y="-596.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-589.5 573.5,-591.5 872.5,-591.5 872.5,-589.5 573.5,-589.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-587.5 573.5,-589.5 872.5,-589.5 872.5,-587.5 573.5,-587.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-585.5 573.5,-587.5 872.5,-587.5 872.5,-585.5 573.5,-585.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-583.5 573.5,-585.5 872.5,-585.5 872.5,-583.5 573.5,-583.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-581.5 573.5,-583.5 872.5,-583.5 872.5,-581.5 573.5,-581.5"/>
-<text text-anchor="start" x="596.75" y="-566.2" font-family="arial" font-size="14.00">Veronte 1X:62:V_USB_ID</text>
-<text text-anchor="start" x="800.88" y="-566.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-559.5 573.5,-561.5 872.5,-561.5 872.5,-559.5 573.5,-559.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-557.5 573.5,-559.5 872.5,-559.5 872.5,-557.5 573.5,-557.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-555.5 573.5,-557.5 872.5,-557.5 872.5,-555.5 573.5,-555.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-553.5 573.5,-555.5 872.5,-555.5 872.5,-553.5 573.5,-553.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-551.5 573.5,-553.5 872.5,-553.5 872.5,-551.5 573.5,-551.5"/>
-<text text-anchor="start" x="579.5" y="-536.2" font-family="arial" font-size="14.00">Veronte 1X:63:FTS_OUT_MPU</text>
-<text text-anchor="start" x="800.12" y="-536.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-529.5 573.5,-531.5 872.5,-531.5 872.5,-529.5 573.5,-529.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-527.5 573.5,-529.5 872.5,-529.5 872.5,-527.5 573.5,-527.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-525.5 573.5,-527.5 872.5,-527.5 872.5,-525.5 573.5,-525.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-523.5 573.5,-525.5 872.5,-525.5 872.5,-523.5 573.5,-523.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-521.5 573.5,-523.5 872.5,-523.5 872.5,-521.5 573.5,-521.5"/>
-<text text-anchor="start" x="575.38" y="-506.2" font-family="arial" font-size="14.00">Veronte 1X:64:FTS2_OUT_MPU</text>
-<text text-anchor="start" x="801.25" y="-506.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-499.5 573.5,-501.5 872.5,-501.5 872.5,-499.5 573.5,-499.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-497.5 573.5,-499.5 872.5,-499.5 872.5,-497.5 573.5,-497.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-495.5 573.5,-497.5 872.5,-497.5 872.5,-495.5 573.5,-495.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-493.5 573.5,-495.5 872.5,-495.5 872.5,-493.5 573.5,-493.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-491.5 573.5,-493.5 872.5,-493.5 872.5,-491.5 573.5,-491.5"/>
-<text text-anchor="start" x="616.25" y="-476.2" font-family="arial" font-size="14.00">Veronte 1X:65:GND</text>
-<text text-anchor="start" x="800.5" y="-476.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-469.5 573.5,-471.5 872.5,-471.5 872.5,-469.5 573.5,-469.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-467.5 573.5,-469.5 872.5,-469.5 872.5,-467.5 573.5,-467.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-465.5 573.5,-467.5 872.5,-467.5 872.5,-465.5 573.5,-465.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-463.5 573.5,-465.5 872.5,-465.5 872.5,-463.5 573.5,-463.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-461.5 573.5,-463.5 872.5,-463.5 872.5,-461.5 573.5,-461.5"/>
-<text text-anchor="start" x="616.25" y="-446.2" font-family="arial" font-size="14.00">Veronte 1X:66:GND</text>
-<text text-anchor="start" x="800.88" y="-446.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-439.5 573.5,-441.5 872.5,-441.5 872.5,-439.5 573.5,-439.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-437.5 573.5,-439.5 872.5,-439.5 872.5,-437.5 573.5,-437.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-435.5 573.5,-437.5 872.5,-437.5 872.5,-435.5 573.5,-435.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-433.5 573.5,-435.5 872.5,-435.5 872.5,-433.5 573.5,-433.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-431.5 573.5,-433.5 872.5,-433.5 872.5,-431.5 573.5,-431.5"/>
-<text text-anchor="start" x="616.62" y="-416.2" font-family="arial" font-size="14.00">Veronte 1X:67:VCC</text>
-<text text-anchor="start" x="800.88" y="-416.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-409.5 573.5,-411.5 872.5,-411.5 872.5,-409.5 573.5,-409.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-407.5 573.5,-409.5 872.5,-409.5 872.5,-407.5 573.5,-407.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-405.5 573.5,-407.5 872.5,-407.5 872.5,-405.5 573.5,-405.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-403.5 573.5,-405.5 872.5,-405.5 872.5,-403.5 573.5,-403.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-401.5 573.5,-403.5 872.5,-403.5 872.5,-401.5 573.5,-401.5"/>
-<text text-anchor="start" x="616.62" y="-386.2" font-family="arial" font-size="14.00">Veronte 1X:68:VCC</text>
-<text text-anchor="start" x="800.12" y="-386.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-379.5 573.5,-381.5 872.5,-381.5 872.5,-379.5 573.5,-379.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-377.5 573.5,-379.5 872.5,-379.5 872.5,-377.5 573.5,-377.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-375.5 573.5,-377.5 872.5,-377.5 872.5,-375.5 573.5,-375.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-373.5 573.5,-375.5 872.5,-375.5 872.5,-373.5 573.5,-373.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-371.5 573.5,-373.5 872.5,-373.5 872.5,-371.5 573.5,-371.5"/>
-<text text-anchor="start" x="678.12" y="-356.2" font-family="arial" font-size="14.00"> </text>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge42" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2113C481.56,-2113 499.72,-2112.5 572.5,-2112.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2115C481.61,-2115 499.78,-2114.5 572.5,-2114.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2117C481.67,-2117 499.83,-2116.5 572.5,-2116.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2119C481.72,-2119 499.89,-2118.5 572.5,-2118.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2121C481.78,-2121 499.94,-2120.5 572.5,-2120.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge43" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2041C487.77,-2043.76 501.33,-2085.26 572.5,-2082.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-2043C485.87,-2044.38 499.43,-2085.88 572.5,-2084.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-2045C483.97,-2045 497.53,-2086.5 572.5,-2086.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-2047C482.07,-2045.62 495.63,-2087.12 572.5,-2088.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2049C480.17,-2046.24 493.73,-2087.74 572.5,-2090.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge44" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2017C487.05,-2019.46 501.83,-2054.96 572.5,-2052.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-2019C485.21,-2020.23 499.99,-2055.73 572.5,-2054.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-2021C483.36,-2021 498.14,-2056.5 572.5,-2056.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-2023C481.51,-2021.77 496.29,-2057.27 572.5,-2058.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2025C479.67,-2022.54 494.45,-2058.04 572.5,-2060.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge45" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1993C486.37,-1995.11 502.19,-2024.61 572.5,-2022.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1995C484.6,-1996.05 500.42,-2025.55 572.5,-2024.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1997C482.84,-1997 498.66,-2026.5 572.5,-2026.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1999C481.08,-1997.95 496.9,-2027.45 572.5,-2028.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2001C479.31,-1998.89 495.13,-2028.39 572.5,-2030.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge46" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1969C485.68,-1970.69 502.35,-1994.19 572.5,-1992.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1971C484.04,-1971.84 500.72,-1995.34 572.5,-1994.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1973C482.41,-1973 499.09,-1996.5 572.5,-1996.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1975C480.78,-1974.16 497.46,-1997.66 572.5,-1998.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1977C479.15,-1975.31 495.82,-1998.81 572.5,-2000.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge47" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1945C484.92,-1946.18 502.26,-1963.68 572.5,-1962.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1947C483.5,-1947.59 500.84,-1965.09 572.5,-1964.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1949C482.08,-1949 499.42,-1966.5 572.5,-1966.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1951C480.66,-1950.41 498,-1967.91 572.5,-1968.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1953C479.24,-1951.82 496.58,-1969.32 572.5,-1970.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge48" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1897C482.87,-1897.17 500.96,-1902.67 572.5,-1902.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1899C482.29,-1899.09 500.37,-1904.59 572.5,-1904.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1901C481.71,-1901 499.79,-1906.5 572.5,-1906.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1903C481.13,-1902.91 499.21,-1908.41 572.5,-1908.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1905C480.54,-1904.83 498.63,-1910.33 572.5,-1910.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge49" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1873C481.56,-1873 499.72,-1872.5 572.5,-1872.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1875C481.61,-1875 499.78,-1874.5 572.5,-1874.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1877C481.67,-1877 499.83,-1876.5 572.5,-1876.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1879C481.72,-1879 499.89,-1878.5 572.5,-1878.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1881C481.78,-1881 499.94,-1880.5 572.5,-1880.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge50" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1849C480.37,-1849.24 498.42,-1842.74 572.5,-1842.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1851C481.05,-1851.12 499.1,-1844.62 572.5,-1844.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1853C481.72,-1853 499.78,-1846.5 572.5,-1846.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1855C482.4,-1854.88 500.45,-1848.38 572.5,-1848.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1857C483.08,-1856.76 501.13,-1850.26 572.5,-1850.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge51" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1825C479.57,-1825.73 497.32,-1813.23 572.5,-1812.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1827C480.73,-1827.37 498.47,-1814.87 572.5,-1814.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1829C481.88,-1829 499.62,-1816.5 572.5,-1816.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1831C483.03,-1830.63 500.77,-1818.13 572.5,-1818.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1833C484.18,-1832.27 501.93,-1819.77 572.5,-1820.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge52" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1801C479.2,-1802.27 496.44,-1783.77 572.5,-1782.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1803C480.67,-1803.64 497.91,-1785.14 572.5,-1784.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1805C482.13,-1805 499.37,-1786.5 572.5,-1786.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1807C483.59,-1806.36 500.83,-1787.86 572.5,-1788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1809C485.06,-1807.73 502.3,-1789.23 572.5,-1790.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge53" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1777C479.16,-1778.76 495.71,-1754.26 572.5,-1752.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1779C480.82,-1779.88 497.36,-1755.38 572.5,-1754.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1781C482.48,-1781 499.02,-1756.5 572.5,-1756.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1783C484.14,-1782.12 500.68,-1757.62 572.5,-1758.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1785C485.79,-1783.24 502.34,-1758.74 572.5,-1760.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge54" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1753C479.36,-1755.17 495.02,-1724.67 572.5,-1722.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1755C481.14,-1756.09 496.8,-1725.59 572.5,-1724.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1757C482.92,-1757 498.58,-1726.5 572.5,-1726.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1759C484.7,-1757.91 500.36,-1727.41 572.5,-1728.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1761C486.48,-1758.83 502.14,-1728.33 572.5,-1730.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge55" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1729C479.74,-1731.52 494.33,-1695.02 572.5,-1692.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1731C481.6,-1732.26 496.19,-1695.76 572.5,-1694.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1733C483.46,-1733 498.04,-1696.5 572.5,-1696.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1735C485.31,-1733.74 499.9,-1697.24 572.5,-1698.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1737C487.17,-1734.48 501.76,-1697.98 572.5,-1700.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge56" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1609C480.37,-1609.24 498.42,-1602.74 572.5,-1602.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1611C481.05,-1611.12 499.1,-1604.62 572.5,-1604.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1613C481.72,-1613 499.78,-1606.5 572.5,-1606.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1615C482.4,-1614.88 500.45,-1608.38 572.5,-1608.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1617C483.08,-1616.76 501.13,-1610.26 572.5,-1610.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge57" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1585C479.57,-1585.73 497.32,-1573.23 572.5,-1572.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1587C480.73,-1587.37 498.47,-1574.87 572.5,-1574.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1589C481.88,-1589 499.62,-1576.5 572.5,-1576.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1591C483.03,-1590.63 500.77,-1578.13 572.5,-1578.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1593C484.18,-1592.27 501.93,-1579.77 572.5,-1580.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge58" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1489C485.68,-1490.69 502.35,-1514.19 572.5,-1512.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1491C484.04,-1491.84 500.72,-1515.34 572.5,-1514.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1493C482.41,-1493 499.09,-1516.5 572.5,-1516.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1495C480.78,-1494.16 497.46,-1517.66 572.5,-1518.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1497C479.15,-1495.31 495.82,-1518.81 572.5,-1520.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge59" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1393C495.84,-1397.1 493.66,-1486.6 572.5,-1482.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1395C493.84,-1397.05 491.66,-1486.55 572.5,-1484.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1397C491.84,-1397 489.66,-1486.5 572.5,-1486.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1399C489.84,-1396.95 487.66,-1486.45 572.5,-1488.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1401C487.84,-1396.9 485.66,-1486.4 572.5,-1490.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge60" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1369C494.59,-1372.99 494.91,-1456.49 572.5,-1452.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1371C492.59,-1372.99 492.91,-1456.49 572.5,-1454.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1373C490.59,-1373 490.91,-1456.5 572.5,-1456.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1375C488.59,-1373.01 488.91,-1456.51 572.5,-1458.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1377C486.59,-1373.01 486.91,-1456.51 572.5,-1460.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge61" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1321C492.3,-1324.73 497.18,-1396.23 572.5,-1392.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1323C490.31,-1324.86 495.18,-1396.36 572.5,-1394.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1325C488.31,-1325 493.19,-1396.5 572.5,-1396.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1327C486.32,-1325.14 491.19,-1396.64 572.5,-1398.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1329C484.32,-1325.27 489.2,-1396.77 572.5,-1400.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge62" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1273C490.29,-1276.41 499.13,-1335.91 572.5,-1332.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1275C488.31,-1276.71 497.15,-1336.21 572.5,-1334.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1277C486.33,-1277 495.17,-1336.5 572.5,-1336.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1279C484.35,-1277.29 493.19,-1336.79 572.5,-1338.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1281C482.37,-1277.59 491.21,-1337.09 572.5,-1340.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge63" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1225C488.55,-1228.01 500.7,-1275.51 572.5,-1272.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1227C486.61,-1228.5 498.77,-1276 572.5,-1274.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1229C484.67,-1229 496.83,-1276.5 572.5,-1276.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1231C482.73,-1229.5 494.89,-1277 572.5,-1278.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1233C480.8,-1229.99 492.95,-1277.49 572.5,-1280.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge64" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1201C487.77,-1203.76 501.33,-1245.26 572.5,-1242.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1203C485.87,-1204.38 499.43,-1245.88 572.5,-1244.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1205C483.97,-1205 497.53,-1246.5 572.5,-1246.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1207C482.07,-1205.62 495.63,-1247.12 572.5,-1248.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1209C480.17,-1206.24 493.73,-1247.74 572.5,-1250.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge65" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1177C487.05,-1179.46 501.83,-1214.96 572.5,-1212.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1179C485.21,-1180.23 499.99,-1215.73 572.5,-1214.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1181C483.36,-1181 498.14,-1216.5 572.5,-1216.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1183C481.51,-1181.77 496.29,-1217.27 572.5,-1218.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1185C479.67,-1182.54 494.45,-1218.04 572.5,-1220.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge66" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1129C485.68,-1130.69 502.35,-1154.19 572.5,-1152.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1131C484.04,-1131.84 500.72,-1155.34 572.5,-1154.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1133C482.41,-1133 499.09,-1156.5 572.5,-1156.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1135C480.78,-1134.16 497.46,-1157.66 572.5,-1158.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1137C479.15,-1135.31 495.82,-1158.81 572.5,-1160.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge67" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1105C484.92,-1106.18 502.26,-1123.68 572.5,-1122.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1107C483.5,-1107.59 500.84,-1125.09 572.5,-1124.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1109C482.08,-1109 499.42,-1126.5 572.5,-1126.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1111C480.66,-1110.41 498,-1127.91 572.5,-1128.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1113C479.24,-1111.82 496.58,-1129.32 572.5,-1130.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge68" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1057C482.87,-1057.17 500.96,-1062.67 572.5,-1062.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1059C482.29,-1059.09 500.37,-1064.59 572.5,-1064.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1061C481.71,-1061 499.79,-1066.5 572.5,-1066.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1063C481.13,-1062.91 499.21,-1068.41 572.5,-1068.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1065C480.54,-1064.83 498.63,-1070.33 572.5,-1070.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge69" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1033C481.56,-1033 499.72,-1032.5 572.5,-1032.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1035C481.61,-1035 499.78,-1034.5 572.5,-1034.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1037C481.67,-1037 499.83,-1036.5 572.5,-1036.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1039C481.72,-1039 499.89,-1038.5 572.5,-1038.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1041C481.78,-1041 499.94,-1040.5 572.5,-1040.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge70" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-985C479.57,-985.73 497.32,-973.23 572.5,-972.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-987C480.73,-987.37 498.47,-974.87 572.5,-974.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-989C481.88,-989 499.62,-976.5 572.5,-976.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-991C483.03,-990.63 500.77,-978.13 572.5,-978.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-993C484.18,-992.27 501.93,-979.77 572.5,-980.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge71" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-961C479.2,-962.27 496.44,-943.77 572.5,-942.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-963C480.67,-963.64 497.91,-945.14 572.5,-944.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-965C482.13,-965 499.37,-946.5 572.5,-946.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-967C483.59,-966.36 500.83,-947.86 572.5,-948.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-969C485.06,-967.73 502.3,-949.23 572.5,-950.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge72" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-937C479.16,-938.76 495.71,-914.26 572.5,-912.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-939C480.82,-939.88 497.36,-915.38 572.5,-914.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-941C482.48,-941 499.02,-916.5 572.5,-916.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-943C484.14,-942.12 500.68,-917.62 572.5,-918.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-945C485.79,-943.24 502.34,-918.74 572.5,-920.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge73" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-913C479.36,-915.17 495.02,-884.67 572.5,-882.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-915C481.14,-916.09 496.8,-885.59 572.5,-884.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-917C482.92,-917 498.58,-886.5 572.5,-886.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-919C484.7,-917.91 500.36,-887.41 572.5,-888.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-921C486.48,-918.83 502.14,-888.33 572.5,-890.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge74" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-889C479.74,-891.52 494.33,-855.02 572.5,-852.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-891C481.6,-892.26 496.19,-855.76 572.5,-854.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-893C483.46,-893 498.04,-856.5 572.5,-856.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-895C485.31,-893.74 499.9,-857.24 572.5,-858.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-897C487.17,-894.48 501.76,-857.98 572.5,-860.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge75" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-865C480.27,-867.8 493.6,-825.3 572.5,-822.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-867C482.17,-868.4 495.51,-825.9 572.5,-824.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-869C484.08,-869 497.42,-826.5 572.5,-826.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-871C485.99,-869.6 499.33,-827.1 572.5,-828.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-873C487.9,-870.2 501.23,-827.7 572.5,-830.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge76" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-841C480.91,-844.05 492.82,-795.55 572.5,-792.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-843C482.85,-844.52 494.76,-796.02 572.5,-794.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-845C484.8,-845 496.7,-796.5 572.5,-796.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-847C486.74,-845.48 498.65,-796.98 572.5,-798.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-849C488.68,-845.95 500.59,-797.45 572.5,-800.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge77" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-817C481.67,-820.26 491.97,-765.76 572.5,-762.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-819C483.63,-820.63 493.94,-766.13 572.5,-764.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-821C485.6,-821 495.9,-766.5 572.5,-766.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-823C487.56,-821.37 497.87,-766.87 572.5,-768.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-825C489.53,-821.74 499.83,-767.24 572.5,-770.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge78" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-793C482.52,-796.44 491.06,-735.94 572.5,-732.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-795C484.5,-796.72 493.04,-736.22 572.5,-734.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-797C486.48,-797 495.02,-736.5 572.5,-736.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-799C488.46,-797.28 497,-736.78 572.5,-738.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-801C490.44,-797.56 498.98,-737.06 572.5,-740.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge79" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-769C483.47,-772.6 490.07,-706.1 572.5,-702.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-771C485.46,-772.8 492.06,-706.3 572.5,-704.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-773C487.45,-773 494.05,-706.5 572.5,-706.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-775C489.44,-773.2 496.04,-706.7 572.5,-708.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-777C491.43,-773.4 498.03,-706.9 572.5,-710.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge80" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-745C484.5,-748.75 489.02,-676.25 572.5,-672.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-747C486.49,-748.88 491.01,-676.38 572.5,-674.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-749C488.49,-749 493.01,-676.5 572.5,-676.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-751C490.49,-749.12 495.01,-676.62 572.5,-678.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-753C492.48,-749.25 497,-676.75 572.5,-680.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge81" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-697C486.8,-701 486.7,-616.5 572.5,-612.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-699C488.8,-701 488.7,-616.5 572.5,-614.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-701C490.8,-701 490.7,-616.5 572.5,-616.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-703C492.8,-701 492.7,-616.5 572.5,-618.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-705C494.8,-701 494.7,-616.5 572.5,-620.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge82" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-673C488.06,-677.12 485.45,-586.62 572.5,-582.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-675C490.06,-677.06 487.44,-586.56 572.5,-584.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-677C492.06,-677 489.44,-586.5 572.5,-586.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-679C494.06,-676.94 491.44,-586.44 572.5,-588.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-681C496.05,-676.88 493.44,-586.38 572.5,-590.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge83" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-649C489.39,-653.22 484.13,-556.72 572.5,-552.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-651C491.38,-653.11 486.12,-556.61 572.5,-554.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-653C493.38,-653 488.12,-556.5 572.5,-556.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-655C495.38,-652.89 490.12,-556.39 572.5,-558.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-657C497.37,-652.78 492.11,-556.28 572.5,-560.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge84" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-625C490.78,-629.31 482.75,-526.81 572.5,-522.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-627C492.77,-629.16 484.74,-526.66 572.5,-524.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-629C494.77,-629 486.73,-526.5 572.5,-526.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-631C496.76,-628.84 488.73,-526.34 572.5,-528.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-633C498.75,-628.69 490.72,-526.19 572.5,-530.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge85" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-601C492.23,-605.4 481.31,-496.9 572.5,-492.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-603C494.22,-605.2 483.3,-496.7 572.5,-494.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-605C496.21,-605 485.29,-496.5 572.5,-496.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-607C498.2,-604.8 487.28,-496.3 572.5,-498.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-609C500.19,-604.6 489.27,-496.1 572.5,-500.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge86" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-529C496.93,-533.63 476.67,-407.13 572.5,-402.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-531C498.9,-533.32 478.65,-406.82 572.5,-404.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-533C500.88,-533 480.62,-406.5 572.5,-406.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-535C502.85,-532.68 482.6,-406.18 572.5,-408.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-537C504.83,-532.37 484.57,-405.87 572.5,-410.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge87" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-505C498.59,-509.7 475.03,-377.2 572.5,-372.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-507C500.56,-509.35 477,-376.85 572.5,-374.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-509C502.53,-509 478.97,-376.5 572.5,-376.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-511C504.5,-508.65 480.94,-376.15 572.5,-378.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-513C506.47,-508.3 482.91,-375.8 572.5,-380.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge88" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1921C484.02,-1921.64 501.82,-1933.14 572.5,-1932.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1923C482.93,-1923.32 500.74,-1934.82 572.5,-1934.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1925C481.85,-1925 499.65,-1936.5 572.5,-1936.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1927C480.76,-1926.68 498.57,-1938.18 572.5,-1938.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1929C479.68,-1928.36 497.48,-1939.86 572.5,-1940.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge90" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1705C480.27,-1707.8 493.6,-1665.3 572.5,-1662.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1707C482.17,-1708.4 495.51,-1665.9 572.5,-1664.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1709C484.08,-1709 497.42,-1666.5 572.5,-1666.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1711C485.99,-1709.6 499.33,-1667.1 572.5,-1668.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1713C487.9,-1710.2 501.23,-1667.7 572.5,-1670.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge92" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1633C481.56,-1633 499.72,-1632.5 572.5,-1632.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1635C481.61,-1635 499.78,-1634.5 572.5,-1634.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1637C481.67,-1637 499.83,-1636.5 572.5,-1636.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1639C481.72,-1639 499.89,-1638.5 572.5,-1638.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1641C481.78,-1641 499.94,-1640.5 572.5,-1640.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge94" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1561C479.2,-1562.27 496.44,-1543.77 572.5,-1542.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1563C480.67,-1563.64 497.91,-1545.14 572.5,-1544.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1565C482.13,-1565 499.37,-1546.5 572.5,-1546.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1567C483.59,-1566.36 500.83,-1547.86 572.5,-1548.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1569C485.06,-1567.73 502.3,-1549.23 572.5,-1550.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge96" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1345C493.41,-1348.86 496.08,-1426.36 572.5,-1422.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1347C491.42,-1348.93 494.08,-1426.43 572.5,-1424.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1349C489.42,-1349 492.08,-1426.5 572.5,-1426.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1351C487.42,-1349.07 490.08,-1426.57 572.5,-1428.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1353C485.42,-1349.14 488.09,-1426.64 572.5,-1430.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge98" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1297C491.26,-1300.58 498.2,-1366.08 572.5,-1362.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1299C489.27,-1300.79 496.21,-1366.29 572.5,-1364.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1301C487.28,-1301 494.22,-1366.5 572.5,-1366.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1303C485.29,-1301.21 492.23,-1366.71 572.5,-1368.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1305C483.3,-1301.42 490.24,-1366.92 572.5,-1370.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge100" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1249C489.38,-1252.22 499.97,-1305.72 572.5,-1302.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1251C487.42,-1252.61 498,-1306.11 572.5,-1304.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1253C485.46,-1253 496.04,-1306.5 572.5,-1306.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1255C483.5,-1253.39 494.08,-1306.89 572.5,-1308.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1257C481.53,-1253.78 492.12,-1307.28 572.5,-1310.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge102" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1153C486.37,-1155.11 502.19,-1184.61 572.5,-1182.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1155C484.6,-1156.05 500.42,-1185.55 572.5,-1184.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1157C482.84,-1157 498.66,-1186.5 572.5,-1186.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1159C481.08,-1157.95 496.9,-1187.45 572.5,-1188.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1161C479.31,-1158.89 495.13,-1188.39 572.5,-1190.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge104" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1081C484.02,-1081.64 501.82,-1093.14 572.5,-1092.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1083C482.93,-1083.32 500.74,-1094.82 572.5,-1094.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1085C481.85,-1085 499.65,-1096.5 572.5,-1096.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1087C480.76,-1086.68 498.57,-1098.18 572.5,-1098.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1089C479.68,-1088.36 497.48,-1099.86 572.5,-1100.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge106" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1009C480.37,-1009.24 498.42,-1002.74 572.5,-1002.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1011C481.05,-1011.12 499.1,-1004.62 572.5,-1004.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1013C481.72,-1013 499.78,-1006.5 572.5,-1006.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1015C482.4,-1014.88 500.45,-1008.38 572.5,-1008.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1017C483.08,-1016.76 501.13,-1010.26 572.5,-1010.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge108" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-721C485.61,-724.88 487.89,-646.38 572.5,-642.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-723C487.61,-724.94 489.89,-646.44 572.5,-644.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-725C489.61,-725 491.89,-646.5 572.5,-646.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-727C491.61,-725.06 493.89,-646.56 572.5,-648.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-729C493.61,-725.12 495.89,-646.62 572.5,-650.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge110" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-577C493.74,-581.48 479.82,-466.98 572.5,-462.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-579C495.73,-581.24 481.8,-466.74 572.5,-464.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-581C497.71,-581 483.79,-466.5 572.5,-466.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-583C499.7,-580.76 485.77,-466.26 572.5,-468.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-585C501.68,-580.52 487.76,-466.02 572.5,-470.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge112" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-553C495.31,-557.56 478.27,-437.06 572.5,-432.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-555C497.29,-557.28 480.25,-436.78 572.5,-434.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-557C499.27,-557 482.23,-436.5 572.5,-436.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-559C501.25,-556.72 484.21,-436.22 572.5,-438.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-561C503.23,-556.44 486.19,-435.94 572.5,-440.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1417C491.12,-1418.87 510.1,-1388.62 599,-1386.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1419C492.81,-1419.94 511.8,-1389.69 599,-1388.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1421C494.51,-1421 513.49,-1390.75 599,-1390.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1423C496.2,-1422.06 515.19,-1391.81 599,-1392.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1425C497.9,-1423.13 516.88,-1392.88 599,-1394.75"/>
</g>
<!-- W13 -->
-<g id="node60" class="node">
+<g id="node36" class="node">
<title>W13</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="891.5,-3684.5 554.5,-3684.5 554.5,-3535.5 891.5,-3535.5 891.5,-3684.5"/>
-<polygon fill="none" stroke="black" points="554.5,-3660 554.5,-3684.5 891.5,-3684.5 891.5,-3660 554.5,-3660"/>
-<text text-anchor="start" x="707.62" y="-3667.2" font-family="arial" font-size="14.00">W13</text>
-<polygon fill="none" stroke="black" points="554.5,-3635.5 554.5,-3660 633.33,-3660 633.33,-3635.5 554.5,-3635.5"/>
-<text text-anchor="start" x="586.42" y="-3642.7" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="633.33,-3635.5 633.33,-3660 752.67,-3660 752.67,-3635.5 633.33,-3635.5"/>
-<text text-anchor="start" x="665.25" y="-3642.7" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="752.67,-3635.5 752.67,-3660 891.5,-3660 891.5,-3635.5 752.67,-3635.5"/>
-<text text-anchor="start" x="784.58" y="-3642.7" font-family="arial" font-size="14.00">75.5 Inches</text>
-<text text-anchor="start" x="612.12" y="-3620.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="556.25" y="-3600.2" font-family="arial" font-size="14.00">Veronte 1X:2:I/O2</text>
-<text text-anchor="start" x="675.88" y="-3600.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="733.5" y="-3600.2" font-family="arial" font-size="14.00">VP&#45;X J2:1:Switch input 1</text>
-<polygon fill="#000000" stroke="none" points="554.5,-3593.5 554.5,-3595.5 891.5,-3595.5 891.5,-3593.5 554.5,-3593.5"/>
-<polygon fill="#895956" stroke="none" points="554.5,-3591.5 554.5,-3593.5 891.5,-3593.5 891.5,-3591.5 554.5,-3591.5"/>
-<polygon fill="#895956" stroke="none" points="554.5,-3589.5 554.5,-3591.5 891.5,-3591.5 891.5,-3589.5 554.5,-3589.5"/>
-<polygon fill="#895956" stroke="none" points="554.5,-3587.5 554.5,-3589.5 891.5,-3589.5 891.5,-3587.5 554.5,-3587.5"/>
-<polygon fill="#000000" stroke="none" points="554.5,-3585.5 554.5,-3587.5 891.5,-3587.5 891.5,-3585.5 554.5,-3585.5"/>
-<text text-anchor="start" x="556.25" y="-3570.2" font-family="arial" font-size="14.00">Veronte 1X:3:I/O3</text>
-<text text-anchor="start" x="675.12" y="-3570.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="733.5" y="-3570.2" font-family="arial" font-size="14.00">VP&#45;X J2:2:Switch input 2</text>
-<polygon fill="#000000" stroke="none" points="554.5,-3563.5 554.5,-3565.5 891.5,-3565.5 891.5,-3563.5 554.5,-3563.5"/>
-<polygon fill="#00ff00" stroke="none" points="554.5,-3561.5 554.5,-3563.5 891.5,-3563.5 891.5,-3561.5 554.5,-3561.5"/>
-<polygon fill="#00ff00" stroke="none" points="554.5,-3559.5 554.5,-3561.5 891.5,-3561.5 891.5,-3559.5 554.5,-3559.5"/>
-<polygon fill="#00ff00" stroke="none" points="554.5,-3557.5 554.5,-3559.5 891.5,-3559.5 891.5,-3557.5 554.5,-3557.5"/>
-<polygon fill="#000000" stroke="none" points="554.5,-3555.5 554.5,-3557.5 891.5,-3557.5 891.5,-3555.5 554.5,-3555.5"/>
-<text text-anchor="start" x="612.12" y="-3540.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="886,-2277.5 553,-2277.5 553,-2128.5 886,-2128.5 886,-2277.5"/>
+<polygon fill="none" stroke="black" points="553,-2253 553,-2277.5 886,-2277.5 886,-2253 553,-2253"/>
+<text text-anchor="start" x="704.12" y="-2260.2" font-family="arial" font-size="14.00">W13</text>
+<polygon fill="none" stroke="black" points="553,-2228.5 553,-2253 630.5,-2253 630.5,-2228.5 553,-2228.5"/>
+<text text-anchor="start" x="584.25" y="-2235.7" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="630.5,-2228.5 630.5,-2253 748.5,-2253 748.5,-2228.5 630.5,-2228.5"/>
+<text text-anchor="start" x="661.75" y="-2235.7" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="748.5,-2228.5 748.5,-2253 886,-2253 886,-2228.5 748.5,-2228.5"/>
+<text text-anchor="start" x="779.75" y="-2235.7" font-family="arial" font-size="14.00">75.5 Inches</text>
+<text text-anchor="start" x="610.62" y="-2213.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="554.75" y="-2193.2" font-family="arial" font-size="14.00">Veronte 1X:2:I/O2</text>
+<text text-anchor="start" x="674.38" y="-2193.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="731.88" y="-2193.2" font-family="arial" font-size="14.00">VP&#45;XJ2:1:Switch input 1</text>
+<polygon fill="#000000" stroke="none" points="553,-2186.5 553,-2188.5 886,-2188.5 886,-2186.5 553,-2186.5"/>
+<polygon fill="#895956" stroke="none" points="553,-2184.5 553,-2186.5 886,-2186.5 886,-2184.5 553,-2184.5"/>
+<polygon fill="#895956" stroke="none" points="553,-2182.5 553,-2184.5 886,-2184.5 886,-2182.5 553,-2182.5"/>
+<polygon fill="#895956" stroke="none" points="553,-2180.5 553,-2182.5 886,-2182.5 886,-2180.5 553,-2180.5"/>
+<polygon fill="#000000" stroke="none" points="553,-2178.5 553,-2180.5 886,-2180.5 886,-2178.5 553,-2178.5"/>
+<text text-anchor="start" x="554.75" y="-2163.2" font-family="arial" font-size="14.00">Veronte 1X:3:I/O3</text>
+<text text-anchor="start" x="673.62" y="-2163.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="731.88" y="-2163.2" font-family="arial" font-size="14.00">VP&#45;XJ2:2:Switch input 2</text>
+<polygon fill="#000000" stroke="none" points="553,-2156.5 553,-2158.5 886,-2158.5 886,-2156.5 553,-2156.5"/>
+<polygon fill="#00ff00" stroke="none" points="553,-2154.5 553,-2156.5 886,-2156.5 886,-2154.5 553,-2154.5"/>
+<polygon fill="#00ff00" stroke="none" points="553,-2152.5 553,-2154.5 886,-2154.5 886,-2152.5 553,-2152.5"/>
+<polygon fill="#00ff00" stroke="none" points="553,-2150.5 553,-2152.5 886,-2152.5 886,-2150.5 553,-2150.5"/>
+<polygon fill="#000000" stroke="none" points="553,-2148.5 553,-2150.5 886,-2150.5 886,-2148.5 553,-2148.5"/>
+<text text-anchor="start" x="610.62" y="-2133.2" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Veronte 1X&#45;&#45;W13 -->
-<g id="edge126" class="edge">
+<g id="edge40" class="edge">
<title>Veronte 1X:e&#45;&#45;W13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2089C747.1,-2094.32 222.95,-3591.82 553.5,-3586.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2091C745.21,-2093.66 221.06,-3591.16 553.5,-3588.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2093C743.32,-2093 219.18,-3590.5 553.5,-3590.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2095C741.44,-2092.34 217.29,-3589.84 553.5,-3592.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2097C739.55,-2091.68 215.4,-3589.18 553.5,-3594.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2089C488.58,-2093.32 481.4,-2183.82 553,-2179.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2091C486.58,-2093.16 479.4,-2183.66 553,-2181.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2093C484.59,-2093 477.41,-2183.5 553,-2183.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2095C482.6,-2092.84 475.42,-2183.34 553,-2185.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2097C480.6,-2092.68 473.42,-2183.18 553,-2187.5"/>
</g>
<!-- Veronte 1X&#45;&#45;W13 -->
-<g id="edge128" class="edge">
+<g id="edge42" class="edge">
<title>Veronte 1X:e&#45;&#45;W13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2065C745.77,-2070.32 224.28,-3561.82 553.5,-3556.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2067C743.88,-2069.66 222.39,-3561.16 553.5,-3558.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2069C742,-2069 220.5,-3560.5 553.5,-3560.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2071C740.11,-2068.34 218.62,-3559.84 553.5,-3562.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2073C738.22,-2067.68 216.73,-3559.18 553.5,-3564.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2065C487.2,-2069.21 482.79,-2153.71 553,-2149.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2067C485.2,-2069.1 480.79,-2153.6 553,-2151.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2069C483.21,-2069 478.79,-2153.5 553,-2153.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2071C481.21,-2068.9 476.8,-2153.4 553,-2155.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2073C479.21,-2068.79 474.8,-2153.29 553,-2157.5"/>
</g>
-<!-- VP&#45;X J2 -->
+<!-- VP&#45;XJ2 -->
<g id="node2" class="node">
-<title>VP&#45;X J2</title>
-<polygon fill="#ffffff" stroke="black" points="1381,-3867.5 1037,-3867.5 1037,-3310.5 1381,-3310.5 1381,-3867.5"/>
-<polygon fill="none" stroke="black" points="1037,-3843 1037,-3867.5 1381,-3867.5 1381,-3843 1037,-3843"/>
-<text text-anchor="start" x="1182.38" y="-3850.2" font-family="arial" font-size="14.00">VP&#45;X J2</text>
-<polygon fill="none" stroke="black" points="1037,-3818.5 1037,-3843 1281,-3843 1281,-3818.5 1037,-3818.5"/>
-<text text-anchor="start" x="1067.12" y="-3825.7" font-family="arial" font-size="14.00">25&#45;pin dsub (Male Terminals)</text>
-<polygon fill="none" stroke="black" points="1281,-3818.5 1281,-3843 1381,-3843 1381,-3818.5 1281,-3818.5"/>
-<text text-anchor="start" x="1311.12" y="-3825.7" font-family="arial" font-size="14.00">18&#45;pin</text>
-<polygon fill="none" stroke="black" points="1037,-3794.5 1037,-3818.5 1150,-3818.5 1150,-3794.5 1037,-3794.5"/>
-<text text-anchor="start" x="1089.38" y="-3801.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1150,-3794.5 1150,-3818.5 1381,-3818.5 1381,-3794.5 1150,-3794.5"/>
-<text text-anchor="start" x="1222" y="-3801.2" font-family="arial" font-size="14.00">Switch input 1</text>
-<polygon fill="none" stroke="black" points="1037,-3770.5 1037,-3794.5 1150,-3794.5 1150,-3770.5 1037,-3770.5"/>
-<text text-anchor="start" x="1089.38" y="-3777.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1150,-3770.5 1150,-3794.5 1381,-3794.5 1381,-3770.5 1150,-3770.5"/>
-<text text-anchor="start" x="1222" y="-3777.2" font-family="arial" font-size="14.00">Switch input 2</text>
-<polygon fill="none" stroke="black" points="1037,-3746.5 1037,-3770.5 1150,-3770.5 1150,-3746.5 1037,-3746.5"/>
-<text text-anchor="start" x="1089.38" y="-3753.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="1150,-3746.5 1150,-3770.5 1381,-3770.5 1381,-3746.5 1150,-3746.5"/>
-<text text-anchor="start" x="1222" y="-3753.2" font-family="arial" font-size="14.00">Switch input 3</text>
-<polygon fill="none" stroke="black" points="1037,-3722.5 1037,-3746.5 1150,-3746.5 1150,-3722.5 1037,-3722.5"/>
-<text text-anchor="start" x="1089.38" y="-3729.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="1150,-3722.5 1150,-3746.5 1381,-3746.5 1381,-3722.5 1150,-3722.5"/>
-<text text-anchor="start" x="1222" y="-3729.2" font-family="arial" font-size="14.00">Switch input 4</text>
-<polygon fill="none" stroke="black" points="1037,-3698.5 1037,-3722.5 1150,-3722.5 1150,-3698.5 1037,-3698.5"/>
-<text text-anchor="start" x="1089.38" y="-3705.2" font-family="arial" font-size="14.00">5</text>
-<polygon fill="none" stroke="black" points="1150,-3698.5 1150,-3722.5 1381,-3722.5 1381,-3698.5 1150,-3698.5"/>
-<text text-anchor="start" x="1222" y="-3705.2" font-family="arial" font-size="14.00">Switch input 5</text>
-<polygon fill="none" stroke="black" points="1037,-3674.5 1037,-3698.5 1150,-3698.5 1150,-3674.5 1037,-3674.5"/>
-<text text-anchor="start" x="1089.38" y="-3681.2" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="1150,-3674.5 1150,-3698.5 1381,-3698.5 1381,-3674.5 1150,-3674.5"/>
-<text text-anchor="start" x="1222" y="-3681.2" font-family="arial" font-size="14.00">Switch input 6</text>
-<polygon fill="none" stroke="black" points="1037,-3650.5 1037,-3674.5 1150,-3674.5 1150,-3650.5 1037,-3650.5"/>
-<text text-anchor="start" x="1089.38" y="-3657.2" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="1150,-3650.5 1150,-3674.5 1381,-3674.5 1381,-3650.5 1150,-3650.5"/>
-<text text-anchor="start" x="1222" y="-3657.2" font-family="arial" font-size="14.00">Switch input 7</text>
-<polygon fill="none" stroke="black" points="1037,-3626.5 1037,-3650.5 1150,-3650.5 1150,-3626.5 1037,-3626.5"/>
-<text text-anchor="start" x="1089.38" y="-3633.2" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="1150,-3626.5 1150,-3650.5 1381,-3650.5 1381,-3626.5 1150,-3626.5"/>
-<text text-anchor="start" x="1222" y="-3633.2" font-family="arial" font-size="14.00">Switch input 8</text>
-<polygon fill="none" stroke="black" points="1037,-3602.5 1037,-3626.5 1150,-3626.5 1150,-3602.5 1037,-3602.5"/>
-<text text-anchor="start" x="1089.38" y="-3609.2" font-family="arial" font-size="14.00">9</text>
-<polygon fill="none" stroke="black" points="1150,-3602.5 1150,-3626.5 1381,-3626.5 1381,-3602.5 1150,-3602.5"/>
-<text text-anchor="start" x="1222" y="-3609.2" font-family="arial" font-size="14.00">Switch input 9</text>
-<polygon fill="none" stroke="black" points="1037,-3578.5 1037,-3602.5 1150,-3602.5 1150,-3578.5 1037,-3578.5"/>
-<text text-anchor="start" x="1085.25" y="-3585.2" font-family="arial" font-size="14.00">10</text>
-<polygon fill="none" stroke="black" points="1150,-3578.5 1150,-3602.5 1381,-3602.5 1381,-3578.5 1150,-3578.5"/>
-<text text-anchor="start" x="1217.88" y="-3585.2" font-family="arial" font-size="14.00">Switch input 10</text>
-<polygon fill="none" stroke="black" points="1037,-3554.5 1037,-3578.5 1150,-3578.5 1150,-3554.5 1037,-3554.5"/>
-<text text-anchor="start" x="1085.25" y="-3561.2" font-family="arial" font-size="14.00">11</text>
-<polygon fill="none" stroke="black" points="1150,-3554.5 1150,-3578.5 1381,-3578.5 1381,-3554.5 1150,-3554.5"/>
-<text text-anchor="start" x="1207" y="-3561.2" font-family="arial" font-size="14.00">Starter annun input</text>
-<polygon fill="none" stroke="black" points="1037,-3530.5 1037,-3554.5 1150,-3554.5 1150,-3530.5 1037,-3530.5"/>
-<text text-anchor="start" x="1085.25" y="-3537.2" font-family="arial" font-size="14.00">12</text>
-<polygon fill="none" stroke="black" points="1150,-3530.5 1150,-3554.5 1381,-3554.5 1381,-3530.5 1150,-3530.5"/>
-<text text-anchor="start" x="1198.38" y="-3537.2" font-family="arial" font-size="14.00">Aux batt voltage input</text>
-<polygon fill="none" stroke="black" points="1037,-3506.5 1037,-3530.5 1150,-3530.5 1150,-3506.5 1037,-3506.5"/>
-<text text-anchor="start" x="1085.25" y="-3513.2" font-family="arial" font-size="14.00">14</text>
-<polygon fill="none" stroke="black" points="1150,-3506.5 1150,-3530.5 1381,-3530.5 1381,-3506.5 1150,-3506.5"/>
-<text text-anchor="start" x="1220.5" y="-3513.2" font-family="arial" font-size="14.00">Flap up switch</text>
-<polygon fill="none" stroke="black" points="1037,-3482.5 1037,-3506.5 1150,-3506.5 1150,-3482.5 1037,-3482.5"/>
-<text text-anchor="start" x="1085.25" y="-3489.2" font-family="arial" font-size="14.00">15</text>
-<polygon fill="none" stroke="black" points="1150,-3482.5 1150,-3506.5 1381,-3506.5 1381,-3482.5 1150,-3482.5"/>
-<text text-anchor="start" x="1211.5" y="-3489.2" font-family="arial" font-size="14.00">Flap down switch</text>
-<polygon fill="none" stroke="black" points="1037,-3458.5 1037,-3482.5 1150,-3482.5 1150,-3458.5 1037,-3458.5"/>
-<text text-anchor="start" x="1085.25" y="-3465.2" font-family="arial" font-size="14.00">16</text>
-<polygon fill="none" stroke="black" points="1150,-3458.5 1150,-3482.5 1381,-3482.5 1381,-3458.5 1150,-3458.5"/>
-<text text-anchor="start" x="1211.12" y="-3465.2" font-family="arial" font-size="14.00">Roll trim left input</text>
-<polygon fill="none" stroke="black" points="1037,-3434.5 1037,-3458.5 1150,-3458.5 1150,-3434.5 1037,-3434.5"/>
-<text text-anchor="start" x="1085.25" y="-3441.2" font-family="arial" font-size="14.00">17</text>
-<polygon fill="none" stroke="black" points="1150,-3434.5 1150,-3458.5 1381,-3458.5 1381,-3434.5 1150,-3434.5"/>
-<text text-anchor="start" x="1207.38" y="-3441.2" font-family="arial" font-size="14.00">Roll trim right input</text>
-<polygon fill="none" stroke="black" points="1037,-3410.5 1037,-3434.5 1150,-3434.5 1150,-3410.5 1037,-3410.5"/>
-<text text-anchor="start" x="1085.25" y="-3417.2" font-family="arial" font-size="14.00">18</text>
-<polygon fill="none" stroke="black" points="1150,-3410.5 1150,-3434.5 1381,-3434.5 1381,-3410.5 1150,-3410.5"/>
-<text text-anchor="start" x="1209.62" y="-3417.2" font-family="arial" font-size="14.00">Pitch trim up input</text>
-<polygon fill="none" stroke="black" points="1037,-3386.5 1037,-3410.5 1150,-3410.5 1150,-3386.5 1037,-3386.5"/>
-<text text-anchor="start" x="1085.25" y="-3393.2" font-family="arial" font-size="14.00">19</text>
-<polygon fill="none" stroke="black" points="1150,-3386.5 1150,-3410.5 1381,-3410.5 1381,-3386.5 1150,-3386.5"/>
-<text text-anchor="start" x="1200.62" y="-3393.2" font-family="arial" font-size="14.00">Pitch trim down input</text>
-<polygon fill="none" stroke="black" points="1037,-3310.5 1037,-3386.5 1381,-3386.5 1381,-3310.5 1037,-3310.5"/>
-<image xlink:href="images\25dsub.png" width="336px" height="68px" preserveAspectRatio="xMinYMin meet" x="1041" y="-3382.5"/>
+<title>VP&#45;XJ2</title>
+<polygon fill="#ffffff" stroke="black" points="1374,-2329.5 1030,-2329.5 1030,-1772.5 1374,-1772.5 1374,-2329.5"/>
+<polygon fill="none" stroke="black" points="1030,-2305 1030,-2329.5 1374,-2329.5 1374,-2305 1030,-2305"/>
+<text text-anchor="start" x="1177.25" y="-2312.2" font-family="arial" font-size="14.00">VP&#45;XJ2</text>
+<polygon fill="none" stroke="black" points="1030,-2280.5 1030,-2305 1274,-2305 1274,-2280.5 1030,-2280.5"/>
+<text text-anchor="start" x="1060.12" y="-2287.7" font-family="arial" font-size="14.00">25&#45;pin dsub (Male Terminals)</text>
+<polygon fill="none" stroke="black" points="1274,-2280.5 1274,-2305 1374,-2305 1374,-2280.5 1274,-2280.5"/>
+<text text-anchor="start" x="1304.12" y="-2287.7" font-family="arial" font-size="14.00">18&#45;pin</text>
+<polygon fill="none" stroke="black" points="1030,-2256.5 1030,-2280.5 1143,-2280.5 1143,-2256.5 1030,-2256.5"/>
+<text text-anchor="start" x="1082.38" y="-2263.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1143,-2256.5 1143,-2280.5 1374,-2280.5 1374,-2256.5 1143,-2256.5"/>
+<text text-anchor="start" x="1215" y="-2263.2" font-family="arial" font-size="14.00">Switch input 1</text>
+<polygon fill="none" stroke="black" points="1030,-2232.5 1030,-2256.5 1143,-2256.5 1143,-2232.5 1030,-2232.5"/>
+<text text-anchor="start" x="1082.38" y="-2239.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1143,-2232.5 1143,-2256.5 1374,-2256.5 1374,-2232.5 1143,-2232.5"/>
+<text text-anchor="start" x="1215" y="-2239.2" font-family="arial" font-size="14.00">Switch input 2</text>
+<polygon fill="none" stroke="black" points="1030,-2208.5 1030,-2232.5 1143,-2232.5 1143,-2208.5 1030,-2208.5"/>
+<text text-anchor="start" x="1082.38" y="-2215.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="1143,-2208.5 1143,-2232.5 1374,-2232.5 1374,-2208.5 1143,-2208.5"/>
+<text text-anchor="start" x="1215" y="-2215.2" font-family="arial" font-size="14.00">Switch input 3</text>
+<polygon fill="none" stroke="black" points="1030,-2184.5 1030,-2208.5 1143,-2208.5 1143,-2184.5 1030,-2184.5"/>
+<text text-anchor="start" x="1082.38" y="-2191.2" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="1143,-2184.5 1143,-2208.5 1374,-2208.5 1374,-2184.5 1143,-2184.5"/>
+<text text-anchor="start" x="1215" y="-2191.2" font-family="arial" font-size="14.00">Switch input 4</text>
+<polygon fill="none" stroke="black" points="1030,-2160.5 1030,-2184.5 1143,-2184.5 1143,-2160.5 1030,-2160.5"/>
+<text text-anchor="start" x="1082.38" y="-2167.2" font-family="arial" font-size="14.00">5</text>
+<polygon fill="none" stroke="black" points="1143,-2160.5 1143,-2184.5 1374,-2184.5 1374,-2160.5 1143,-2160.5"/>
+<text text-anchor="start" x="1215" y="-2167.2" font-family="arial" font-size="14.00">Switch input 5</text>
+<polygon fill="none" stroke="black" points="1030,-2136.5 1030,-2160.5 1143,-2160.5 1143,-2136.5 1030,-2136.5"/>
+<text text-anchor="start" x="1082.38" y="-2143.2" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="1143,-2136.5 1143,-2160.5 1374,-2160.5 1374,-2136.5 1143,-2136.5"/>
+<text text-anchor="start" x="1215" y="-2143.2" font-family="arial" font-size="14.00">Switch input 6</text>
+<polygon fill="none" stroke="black" points="1030,-2112.5 1030,-2136.5 1143,-2136.5 1143,-2112.5 1030,-2112.5"/>
+<text text-anchor="start" x="1082.38" y="-2119.2" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="1143,-2112.5 1143,-2136.5 1374,-2136.5 1374,-2112.5 1143,-2112.5"/>
+<text text-anchor="start" x="1215" y="-2119.2" font-family="arial" font-size="14.00">Switch input 7</text>
+<polygon fill="none" stroke="black" points="1030,-2088.5 1030,-2112.5 1143,-2112.5 1143,-2088.5 1030,-2088.5"/>
+<text text-anchor="start" x="1082.38" y="-2095.2" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="1143,-2088.5 1143,-2112.5 1374,-2112.5 1374,-2088.5 1143,-2088.5"/>
+<text text-anchor="start" x="1215" y="-2095.2" font-family="arial" font-size="14.00">Switch input 8</text>
+<polygon fill="none" stroke="black" points="1030,-2064.5 1030,-2088.5 1143,-2088.5 1143,-2064.5 1030,-2064.5"/>
+<text text-anchor="start" x="1082.38" y="-2071.2" font-family="arial" font-size="14.00">9</text>
+<polygon fill="none" stroke="black" points="1143,-2064.5 1143,-2088.5 1374,-2088.5 1374,-2064.5 1143,-2064.5"/>
+<text text-anchor="start" x="1215" y="-2071.2" font-family="arial" font-size="14.00">Switch input 9</text>
+<polygon fill="none" stroke="black" points="1030,-2040.5 1030,-2064.5 1143,-2064.5 1143,-2040.5 1030,-2040.5"/>
+<text text-anchor="start" x="1078.25" y="-2047.2" font-family="arial" font-size="14.00">10</text>
+<polygon fill="none" stroke="black" points="1143,-2040.5 1143,-2064.5 1374,-2064.5 1374,-2040.5 1143,-2040.5"/>
+<text text-anchor="start" x="1210.88" y="-2047.2" font-family="arial" font-size="14.00">Switch input 10</text>
+<polygon fill="none" stroke="black" points="1030,-2016.5 1030,-2040.5 1143,-2040.5 1143,-2016.5 1030,-2016.5"/>
+<text text-anchor="start" x="1078.25" y="-2023.2" font-family="arial" font-size="14.00">11</text>
+<polygon fill="none" stroke="black" points="1143,-2016.5 1143,-2040.5 1374,-2040.5 1374,-2016.5 1143,-2016.5"/>
+<text text-anchor="start" x="1200" y="-2023.2" font-family="arial" font-size="14.00">Starter annun input</text>
+<polygon fill="none" stroke="black" points="1030,-1992.5 1030,-2016.5 1143,-2016.5 1143,-1992.5 1030,-1992.5"/>
+<text text-anchor="start" x="1078.25" y="-1999.2" font-family="arial" font-size="14.00">12</text>
+<polygon fill="none" stroke="black" points="1143,-1992.5 1143,-2016.5 1374,-2016.5 1374,-1992.5 1143,-1992.5"/>
+<text text-anchor="start" x="1191.38" y="-1999.2" font-family="arial" font-size="14.00">Aux batt voltage input</text>
+<polygon fill="none" stroke="black" points="1030,-1968.5 1030,-1992.5 1143,-1992.5 1143,-1968.5 1030,-1968.5"/>
+<text text-anchor="start" x="1078.25" y="-1975.2" font-family="arial" font-size="14.00">14</text>
+<polygon fill="none" stroke="black" points="1143,-1968.5 1143,-1992.5 1374,-1992.5 1374,-1968.5 1143,-1968.5"/>
+<text text-anchor="start" x="1213.5" y="-1975.2" font-family="arial" font-size="14.00">Flap up switch</text>
+<polygon fill="none" stroke="black" points="1030,-1944.5 1030,-1968.5 1143,-1968.5 1143,-1944.5 1030,-1944.5"/>
+<text text-anchor="start" x="1078.25" y="-1951.2" font-family="arial" font-size="14.00">15</text>
+<polygon fill="none" stroke="black" points="1143,-1944.5 1143,-1968.5 1374,-1968.5 1374,-1944.5 1143,-1944.5"/>
+<text text-anchor="start" x="1204.5" y="-1951.2" font-family="arial" font-size="14.00">Flap down switch</text>
+<polygon fill="none" stroke="black" points="1030,-1920.5 1030,-1944.5 1143,-1944.5 1143,-1920.5 1030,-1920.5"/>
+<text text-anchor="start" x="1078.25" y="-1927.2" font-family="arial" font-size="14.00">16</text>
+<polygon fill="none" stroke="black" points="1143,-1920.5 1143,-1944.5 1374,-1944.5 1374,-1920.5 1143,-1920.5"/>
+<text text-anchor="start" x="1204.12" y="-1927.2" font-family="arial" font-size="14.00">Roll trim left input</text>
+<polygon fill="none" stroke="black" points="1030,-1896.5 1030,-1920.5 1143,-1920.5 1143,-1896.5 1030,-1896.5"/>
+<text text-anchor="start" x="1078.25" y="-1903.2" font-family="arial" font-size="14.00">17</text>
+<polygon fill="none" stroke="black" points="1143,-1896.5 1143,-1920.5 1374,-1920.5 1374,-1896.5 1143,-1896.5"/>
+<text text-anchor="start" x="1200.38" y="-1903.2" font-family="arial" font-size="14.00">Roll trim right input</text>
+<polygon fill="none" stroke="black" points="1030,-1872.5 1030,-1896.5 1143,-1896.5 1143,-1872.5 1030,-1872.5"/>
+<text text-anchor="start" x="1078.25" y="-1879.2" font-family="arial" font-size="14.00">18</text>
+<polygon fill="none" stroke="black" points="1143,-1872.5 1143,-1896.5 1374,-1896.5 1374,-1872.5 1143,-1872.5"/>
+<text text-anchor="start" x="1202.62" y="-1879.2" font-family="arial" font-size="14.00">Pitch trim up input</text>
+<polygon fill="none" stroke="black" points="1030,-1848.5 1030,-1872.5 1143,-1872.5 1143,-1848.5 1030,-1848.5"/>
+<text text-anchor="start" x="1078.25" y="-1855.2" font-family="arial" font-size="14.00">19</text>
+<polygon fill="none" stroke="black" points="1143,-1848.5 1143,-1872.5 1374,-1872.5 1374,-1848.5 1143,-1848.5"/>
+<text text-anchor="start" x="1193.62" y="-1855.2" font-family="arial" font-size="14.00">Pitch trim down input</text>
+<polygon fill="none" stroke="black" points="1030,-1772.5 1030,-1848.5 1374,-1848.5 1374,-1772.5 1030,-1772.5"/>
+<image xlink:href="images\25dsub.png" width="336px" height="68px" preserveAspectRatio="xMinYMin meet" x="1034" y="-1844.5"/>
</g>
<!-- Swash1 -->
<g id="node3" class="node">
<title>Swash1</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-3149 1953,-3149 1953,-2727 2412.25,-2727 2412.25,-3149"/>
-<polygon fill="none" stroke="black" points="1953,-3124.5 1953,-3149 2412.25,-3149 2412.25,-3124.5 1953,-3124.5"/>
-<text text-anchor="start" x="2157.5" y="-3131.7" font-family="arial" font-size="14.00">Swash1</text>
-<polygon fill="none" stroke="black" points="1953,-3100 1953,-3124.5 2372.75,-3124.5 2372.75,-3100 1953,-3100"/>
-<text text-anchor="start" x="1957" y="-3107.2" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-3100 2372.75,-3124.5 2412.25,-3124.5 2412.25,-3100 2372.75,-3100"/>
-<text text-anchor="start" x="2376.75" y="-3107.2" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-3076 1953,-3100 2164.12,-3100 2164.12,-3076 1953,-3076"/>
-<text text-anchor="start" x="2052.94" y="-3082.7" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-3076 2164.12,-3100 2412.25,-3100 2412.25,-3076 2164.12,-3076"/>
-<text text-anchor="start" x="2264.19" y="-3082.7" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-3052 1953,-3076 2164.12,-3076 2164.12,-3052 1953,-3052"/>
-<text text-anchor="start" x="2054.81" y="-3058.7" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-3052 2164.12,-3076 2412.25,-3076 2412.25,-3052 2164.12,-3052"/>
-<text text-anchor="start" x="2264.19" y="-3058.7" font-family="arial" font-size="14.00">CAN_N</text>
-<polygon fill="none" stroke="black" points="1953,-2727 1953,-3052 2412.25,-3052 2412.25,-2727 1953,-2727"/>
-<image xlink:href="images\A2Logic.png" width="431px" height="317px" preserveAspectRatio="xMinYMin meet" x="1967.12" y="-3048"/>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-3399 1518,-3399 1518,-2977 1977.25,-2977 1977.25,-3399"/>
+<polygon fill="none" stroke="black" points="1518,-3374.5 1518,-3399 1977.25,-3399 1977.25,-3374.5 1518,-3374.5"/>
+<text text-anchor="start" x="1722.5" y="-3381.7" font-family="arial" font-size="14.00">Swash1</text>
+<polygon fill="none" stroke="black" points="1518,-3350 1518,-3374.5 1937.75,-3374.5 1937.75,-3350 1518,-3350"/>
+<text text-anchor="start" x="1522" y="-3357.2" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-3350 1937.75,-3374.5 1977.25,-3374.5 1977.25,-3350 1937.75,-3350"/>
+<text text-anchor="start" x="1941.75" y="-3357.2" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-3326 1518,-3350 1729.12,-3350 1729.12,-3326 1518,-3326"/>
+<text text-anchor="start" x="1617.94" y="-3332.7" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-3326 1729.12,-3350 1977.25,-3350 1977.25,-3326 1729.12,-3326"/>
+<text text-anchor="start" x="1829.19" y="-3332.7" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-3302 1518,-3326 1729.12,-3326 1729.12,-3302 1518,-3302"/>
+<text text-anchor="start" x="1619.81" y="-3308.7" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-3302 1729.12,-3326 1977.25,-3326 1977.25,-3302 1729.12,-3302"/>
+<text text-anchor="start" x="1829.19" y="-3308.7" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="none" stroke="black" points="1518,-2977 1518,-3302 1977.25,-3302 1977.25,-2977 1518,-2977"/>
+<image xlink:href="images\A2Logic.png" width="431px" height="317px" preserveAspectRatio="xMinYMin meet" x="1532.12" y="-3298"/>
</g>
<!-- Swash2 -->
<g id="node4" class="node">
<title>Swash2</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-2654.5 1953,-2654.5 1953,-2557.5 2412.25,-2557.5 2412.25,-2654.5"/>
-<polygon fill="none" stroke="black" points="1953,-2630 1953,-2654.5 2412.25,-2654.5 2412.25,-2630 1953,-2630"/>
-<text text-anchor="start" x="2157.5" y="-2637.2" font-family="arial" font-size="14.00">Swash2</text>
-<polygon fill="none" stroke="black" points="1953,-2605.5 1953,-2630 2372.75,-2630 2372.75,-2605.5 1953,-2605.5"/>
-<text text-anchor="start" x="1957" y="-2612.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-2605.5 2372.75,-2630 2412.25,-2630 2412.25,-2605.5 2372.75,-2605.5"/>
-<text text-anchor="start" x="2376.75" y="-2612.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-2581.5 1953,-2605.5 2164.12,-2605.5 2164.12,-2581.5 1953,-2581.5"/>
-<text text-anchor="start" x="2052.94" y="-2588.2" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-2581.5 2164.12,-2605.5 2412.25,-2605.5 2412.25,-2581.5 2164.12,-2581.5"/>
-<text text-anchor="start" x="2264.19" y="-2588.2" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-2557.5 1953,-2581.5 2164.12,-2581.5 2164.12,-2557.5 1953,-2557.5"/>
-<text text-anchor="start" x="2054.81" y="-2564.2" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-2557.5 2164.12,-2581.5 2412.25,-2581.5 2412.25,-2557.5 2164.12,-2557.5"/>
-<text text-anchor="start" x="2264.19" y="-2564.2" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-2532.5 1518,-2532.5 1518,-2435.5 1977.25,-2435.5 1977.25,-2532.5"/>
+<polygon fill="none" stroke="black" points="1518,-2508 1518,-2532.5 1977.25,-2532.5 1977.25,-2508 1518,-2508"/>
+<text text-anchor="start" x="1722.5" y="-2515.2" font-family="arial" font-size="14.00">Swash2</text>
+<polygon fill="none" stroke="black" points="1518,-2483.5 1518,-2508 1937.75,-2508 1937.75,-2483.5 1518,-2483.5"/>
+<text text-anchor="start" x="1522" y="-2490.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-2483.5 1937.75,-2508 1977.25,-2508 1977.25,-2483.5 1937.75,-2483.5"/>
+<text text-anchor="start" x="1941.75" y="-2490.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-2459.5 1518,-2483.5 1729.12,-2483.5 1729.12,-2459.5 1518,-2459.5"/>
+<text text-anchor="start" x="1617.94" y="-2466.2" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-2459.5 1729.12,-2483.5 1977.25,-2483.5 1977.25,-2459.5 1729.12,-2459.5"/>
+<text text-anchor="start" x="1829.19" y="-2466.2" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-2435.5 1518,-2459.5 1729.12,-2459.5 1729.12,-2435.5 1518,-2435.5"/>
+<text text-anchor="start" x="1619.81" y="-2442.2" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-2435.5 1729.12,-2459.5 1977.25,-2459.5 1977.25,-2435.5 1729.12,-2435.5"/>
+<text text-anchor="start" x="1829.19" y="-2442.2" font-family="arial" font-size="14.00">CAN_N</text>
</g>
<!-- Swash3 -->
<g id="node5" class="node">
<title>Swash3</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-3318.5 1953,-3318.5 1953,-3221.5 2412.25,-3221.5 2412.25,-3318.5"/>
-<polygon fill="none" stroke="black" points="1953,-3294 1953,-3318.5 2412.25,-3318.5 2412.25,-3294 1953,-3294"/>
-<text text-anchor="start" x="2157.5" y="-3301.2" font-family="arial" font-size="14.00">Swash3</text>
-<polygon fill="none" stroke="black" points="1953,-3269.5 1953,-3294 2372.75,-3294 2372.75,-3269.5 1953,-3269.5"/>
-<text text-anchor="start" x="1957" y="-3276.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-3269.5 2372.75,-3294 2412.25,-3294 2412.25,-3269.5 2372.75,-3269.5"/>
-<text text-anchor="start" x="2376.75" y="-3276.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-3245.5 1953,-3269.5 2164.12,-3269.5 2164.12,-3245.5 1953,-3245.5"/>
-<text text-anchor="start" x="2052.94" y="-3252.2" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-3245.5 2164.12,-3269.5 2412.25,-3269.5 2412.25,-3245.5 2164.12,-3245.5"/>
-<text text-anchor="start" x="2264.19" y="-3252.2" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-3221.5 1953,-3245.5 2164.12,-3245.5 2164.12,-3221.5 1953,-3221.5"/>
-<text text-anchor="start" x="2054.81" y="-3228.2" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-3221.5 2164.12,-3245.5 2412.25,-3245.5 2412.25,-3221.5 2164.12,-3221.5"/>
-<text text-anchor="start" x="2264.19" y="-3228.2" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-2772.5 1518,-2772.5 1518,-2675.5 1977.25,-2675.5 1977.25,-2772.5"/>
+<polygon fill="none" stroke="black" points="1518,-2748 1518,-2772.5 1977.25,-2772.5 1977.25,-2748 1518,-2748"/>
+<text text-anchor="start" x="1722.5" y="-2755.2" font-family="arial" font-size="14.00">Swash3</text>
+<polygon fill="none" stroke="black" points="1518,-2723.5 1518,-2748 1937.75,-2748 1937.75,-2723.5 1518,-2723.5"/>
+<text text-anchor="start" x="1522" y="-2730.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-2723.5 1937.75,-2748 1977.25,-2748 1977.25,-2723.5 1937.75,-2723.5"/>
+<text text-anchor="start" x="1941.75" y="-2730.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-2699.5 1518,-2723.5 1729.12,-2723.5 1729.12,-2699.5 1518,-2699.5"/>
+<text text-anchor="start" x="1617.94" y="-2706.2" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-2699.5 1729.12,-2723.5 1977.25,-2723.5 1977.25,-2699.5 1729.12,-2699.5"/>
+<text text-anchor="start" x="1829.19" y="-2706.2" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-2675.5 1518,-2699.5 1729.12,-2699.5 1729.12,-2675.5 1518,-2675.5"/>
+<text text-anchor="start" x="1619.81" y="-2682.2" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-2675.5 1729.12,-2699.5 1977.25,-2699.5 1977.25,-2675.5 1729.12,-2675.5"/>
+<text text-anchor="start" x="1829.19" y="-2682.2" font-family="arial" font-size="14.00">CAN_N</text>
</g>
<!-- Yaw -->
<g id="node6" class="node">
<title>Yaw</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-3488.5 1953,-3488.5 1953,-3391.5 2412.25,-3391.5 2412.25,-3488.5"/>
-<polygon fill="none" stroke="black" points="1953,-3464 1953,-3488.5 2412.25,-3488.5 2412.25,-3464 1953,-3464"/>
-<text text-anchor="start" x="2169.5" y="-3471.2" font-family="arial" font-size="14.00">Yaw</text>
-<polygon fill="none" stroke="black" points="1953,-3439.5 1953,-3464 2372.75,-3464 2372.75,-3439.5 1953,-3439.5"/>
-<text text-anchor="start" x="1957" y="-3446.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-3439.5 2372.75,-3464 2412.25,-3464 2412.25,-3439.5 2372.75,-3439.5"/>
-<text text-anchor="start" x="2376.75" y="-3446.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-3415.5 1953,-3439.5 2164.12,-3439.5 2164.12,-3415.5 1953,-3415.5"/>
-<text text-anchor="start" x="2052.94" y="-3422.2" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-3415.5 2164.12,-3439.5 2412.25,-3439.5 2412.25,-3415.5 2164.12,-3415.5"/>
-<text text-anchor="start" x="2264.19" y="-3422.2" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-3391.5 1953,-3415.5 2164.12,-3415.5 2164.12,-3391.5 1953,-3391.5"/>
-<text text-anchor="start" x="2054.81" y="-3398.2" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-3391.5 2164.12,-3415.5 2412.25,-3415.5 2412.25,-3391.5 2164.12,-3391.5"/>
-<text text-anchor="start" x="2264.19" y="-3398.2" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-2952.5 1518,-2952.5 1518,-2855.5 1977.25,-2855.5 1977.25,-2952.5"/>
+<polygon fill="none" stroke="black" points="1518,-2928 1518,-2952.5 1977.25,-2952.5 1977.25,-2928 1518,-2928"/>
+<text text-anchor="start" x="1734.5" y="-2935.2" font-family="arial" font-size="14.00">Yaw</text>
+<polygon fill="none" stroke="black" points="1518,-2903.5 1518,-2928 1937.75,-2928 1937.75,-2903.5 1518,-2903.5"/>
+<text text-anchor="start" x="1522" y="-2910.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-2903.5 1937.75,-2928 1977.25,-2928 1977.25,-2903.5 1937.75,-2903.5"/>
+<text text-anchor="start" x="1941.75" y="-2910.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-2879.5 1518,-2903.5 1729.12,-2903.5 1729.12,-2879.5 1518,-2879.5"/>
+<text text-anchor="start" x="1617.94" y="-2886.2" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-2879.5 1729.12,-2903.5 1977.25,-2903.5 1977.25,-2879.5 1729.12,-2879.5"/>
+<text text-anchor="start" x="1829.19" y="-2886.2" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-2855.5 1518,-2879.5 1729.12,-2879.5 1729.12,-2855.5 1518,-2855.5"/>
+<text text-anchor="start" x="1619.81" y="-2862.2" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-2855.5 1729.12,-2879.5 1977.25,-2879.5 1977.25,-2855.5 1729.12,-2855.5"/>
+<text text-anchor="start" x="1829.19" y="-2862.2" font-family="arial" font-size="14.00">CAN_N</text>
</g>
<!-- Radio -->
<g id="node7" class="node">
<title>Radio</title>
-<polygon fill="#ffffff" stroke="black" points="1248.88,-3286.5 1169.12,-3286.5 1169.12,-3189.5 1248.88,-3189.5 1248.88,-3286.5"/>
-<polygon fill="none" stroke="black" points="1169.12,-3262 1169.12,-3286.5 1248.88,-3286.5 1248.88,-3262 1169.12,-3262"/>
-<text text-anchor="start" x="1190.25" y="-3269.2" font-family="arial" font-size="14.00">Radio</text>
-<polygon fill="none" stroke="black" points="1169.12,-3237.5 1169.12,-3262 1209.38,-3262 1209.38,-3237.5 1169.12,-3237.5"/>
-<text text-anchor="start" x="1173.12" y="-3244.7" font-family="arial" font-size="14.00">temp</text>
-<polygon fill="none" stroke="black" points="1209.38,-3237.5 1209.38,-3262 1248.88,-3262 1248.88,-3237.5 1209.38,-3237.5"/>
-<text text-anchor="start" x="1213.38" y="-3244.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1169.12,-3213.5 1169.12,-3237.5 1204.5,-3237.5 1204.5,-3213.5 1169.12,-3213.5"/>
-<text text-anchor="start" x="1182.69" y="-3220.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1204.5,-3213.5 1204.5,-3237.5 1248.88,-3237.5 1248.88,-3213.5 1204.5,-3213.5"/>
-<text text-anchor="start" x="1218.81" y="-3220.2" font-family="arial" font-size="14.00">Tx</text>
-<polygon fill="none" stroke="black" points="1169.12,-3189.5 1169.12,-3213.5 1204.5,-3213.5 1204.5,-3189.5 1169.12,-3189.5"/>
-<text text-anchor="start" x="1182.69" y="-3196.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1204.5,-3189.5 1204.5,-3213.5 1248.88,-3213.5 1248.88,-3189.5 1204.5,-3189.5"/>
-<text text-anchor="start" x="1218.06" y="-3196.2" font-family="arial" font-size="14.00">Rx</text>
+<polygon fill="#ffffff" stroke="black" points="1241.88,-1748.5 1162.12,-1748.5 1162.12,-1651.5 1241.88,-1651.5 1241.88,-1748.5"/>
+<polygon fill="none" stroke="black" points="1162.12,-1724 1162.12,-1748.5 1241.88,-1748.5 1241.88,-1724 1162.12,-1724"/>
+<text text-anchor="start" x="1183.25" y="-1731.2" font-family="arial" font-size="14.00">Radio</text>
+<polygon fill="none" stroke="black" points="1162.12,-1699.5 1162.12,-1724 1202.38,-1724 1202.38,-1699.5 1162.12,-1699.5"/>
+<text text-anchor="start" x="1166.12" y="-1706.7" font-family="arial" font-size="14.00">temp</text>
+<polygon fill="none" stroke="black" points="1202.38,-1699.5 1202.38,-1724 1241.88,-1724 1241.88,-1699.5 1202.38,-1699.5"/>
+<text text-anchor="start" x="1206.38" y="-1706.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1162.12,-1675.5 1162.12,-1699.5 1197.5,-1699.5 1197.5,-1675.5 1162.12,-1675.5"/>
+<text text-anchor="start" x="1175.69" y="-1682.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1197.5,-1675.5 1197.5,-1699.5 1241.88,-1699.5 1241.88,-1675.5 1197.5,-1675.5"/>
+<text text-anchor="start" x="1211.81" y="-1682.2" font-family="arial" font-size="14.00">Tx</text>
+<polygon fill="none" stroke="black" points="1162.12,-1651.5 1162.12,-1675.5 1197.5,-1675.5 1197.5,-1651.5 1162.12,-1651.5"/>
+<text text-anchor="start" x="1175.69" y="-1658.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1197.5,-1651.5 1197.5,-1675.5 1241.88,-1675.5 1241.88,-1651.5 1197.5,-1651.5"/>
+<text text-anchor="start" x="1211.06" y="-1658.2" font-family="arial" font-size="14.00">Rx</text>
</g>
<!-- CEX -->
<g id="node8" class="node">
<title>CEX</title>
-<polygon fill="#ffffff" stroke="black" points="2387.12,-1732.5 1978.12,-1732.5 1978.12,-1163.5 2387.12,-1163.5 2387.12,-1732.5"/>
-<polygon fill="none" stroke="black" points="1978.12,-1708 1978.12,-1732.5 2387.12,-1732.5 2387.12,-1708 1978.12,-1708"/>
-<text text-anchor="start" x="2167.62" y="-1715.2" font-family="arial" font-size="14.00">CEX</text>
-<polygon fill="none" stroke="black" points="1978.12,-1683.5 1978.12,-1708 2226.12,-1708 2226.12,-1683.5 1978.12,-1683.5"/>
-<text text-anchor="start" x="2042.88" y="-1690.7" font-family="arial" font-size="14.00">FMW.LM.368.XLC</text>
-<polygon fill="none" stroke="black" points="2226.12,-1683.5 2226.12,-1708 2387.12,-1708 2387.12,-1683.5 2226.12,-1683.5"/>
-<text text-anchor="start" x="2290.88" y="-1690.7" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="1978.12,-1659.5 1978.12,-1683.5 2152.12,-1683.5 2152.12,-1659.5 1978.12,-1659.5"/>
-<text text-anchor="start" x="2061" y="-1666.2" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="2152.12,-1659.5 2152.12,-1683.5 2387.12,-1683.5 2387.12,-1659.5 2152.12,-1659.5"/>
-<text text-anchor="start" x="2234.75" y="-1666.2" font-family="arial" font-size="14.00">CAN_GND</text>
-<polygon fill="none" stroke="black" points="1978.12,-1635.5 1978.12,-1659.5 2152.12,-1659.5 2152.12,-1635.5 1978.12,-1635.5"/>
-<text text-anchor="start" x="2061" y="-1642.2" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="2152.12,-1635.5 2152.12,-1659.5 2387.12,-1659.5 2387.12,-1635.5 2152.12,-1635.5"/>
-<text text-anchor="start" x="2240.75" y="-1642.2" font-family="arial" font-size="14.00">CANB_P</text>
-<polygon fill="none" stroke="black" points="1978.12,-1611.5 1978.12,-1635.5 2152.12,-1635.5 2152.12,-1611.5 1978.12,-1611.5"/>
-<text text-anchor="start" x="2061" y="-1618.2" font-family="arial" font-size="14.00">9</text>
-<polygon fill="none" stroke="black" points="2152.12,-1611.5 2152.12,-1635.5 2387.12,-1635.5 2387.12,-1611.5 2152.12,-1611.5"/>
-<text text-anchor="start" x="2240.75" y="-1618.2" font-family="arial" font-size="14.00">CANB_N</text>
-<polygon fill="none" stroke="black" points="1978.12,-1212.5 1978.12,-1611.5 2387.12,-1611.5 2387.12,-1212.5 1978.12,-1212.5"/>
-<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="1982.12" y="-1607.5"/>
-<polygon fill="none" stroke="black" points="1978.12,-1188 1978.12,-1212.5 2387.12,-1212.5 2387.12,-1188 1978.12,-1188"/>
-<text text-anchor="start" x="2110.25" y="-1195.2" font-family="arial" font-size="14.00">Additional components</text>
-<polygon fill="none" stroke="black" points="1978.12,-1163.5 1978.12,-1188 2387.12,-1188 2387.12,-1163.5 1978.12,-1163.5"/>
-<text text-anchor="start" x="1982.12" y="-1170.7" font-family="arial" font-size="14.00">3 x #12 (Crimp)</text>
+<polygon fill="#ffffff" stroke="black" points="2530.25,-1008.5 2121.25,-1008.5 2121.25,-439.5 2530.25,-439.5 2530.25,-1008.5"/>
+<polygon fill="none" stroke="black" points="2121.25,-984 2121.25,-1008.5 2530.25,-1008.5 2530.25,-984 2121.25,-984"/>
+<text text-anchor="start" x="2310.75" y="-991.2" font-family="arial" font-size="14.00">CEX</text>
+<polygon fill="none" stroke="black" points="2121.25,-959.5 2121.25,-984 2369.25,-984 2369.25,-959.5 2121.25,-959.5"/>
+<text text-anchor="start" x="2186" y="-966.7" font-family="arial" font-size="14.00">FMW.LM.368.XLC</text>
+<polygon fill="none" stroke="black" points="2369.25,-959.5 2369.25,-984 2530.25,-984 2530.25,-959.5 2369.25,-959.5"/>
+<text text-anchor="start" x="2434" y="-966.7" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="2121.25,-935.5 2121.25,-959.5 2295.25,-959.5 2295.25,-935.5 2121.25,-935.5"/>
+<text text-anchor="start" x="2204.12" y="-942.2" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="2295.25,-935.5 2295.25,-959.5 2530.25,-959.5 2530.25,-935.5 2295.25,-935.5"/>
+<text text-anchor="start" x="2377.88" y="-942.2" font-family="arial" font-size="14.00">CAN_GND</text>
+<polygon fill="none" stroke="black" points="2121.25,-911.5 2121.25,-935.5 2295.25,-935.5 2295.25,-911.5 2121.25,-911.5"/>
+<text text-anchor="start" x="2204.12" y="-918.2" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="2295.25,-911.5 2295.25,-935.5 2530.25,-935.5 2530.25,-911.5 2295.25,-911.5"/>
+<text text-anchor="start" x="2383.88" y="-918.2" font-family="arial" font-size="14.00">CANB_P</text>
+<polygon fill="none" stroke="black" points="2121.25,-887.5 2121.25,-911.5 2295.25,-911.5 2295.25,-887.5 2121.25,-887.5"/>
+<text text-anchor="start" x="2204.12" y="-894.2" font-family="arial" font-size="14.00">9</text>
+<polygon fill="none" stroke="black" points="2295.25,-887.5 2295.25,-911.5 2530.25,-911.5 2530.25,-887.5 2295.25,-887.5"/>
+<text text-anchor="start" x="2383.88" y="-894.2" font-family="arial" font-size="14.00">CANB_N</text>
+<polygon fill="none" stroke="black" points="2121.25,-488.5 2121.25,-887.5 2530.25,-887.5 2530.25,-488.5 2121.25,-488.5"/>
+<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="2125.25" y="-883.5"/>
+<polygon fill="none" stroke="black" points="2121.25,-464 2121.25,-488.5 2530.25,-488.5 2530.25,-464 2121.25,-464"/>
+<text text-anchor="start" x="2253.38" y="-471.2" font-family="arial" font-size="14.00">Additional components</text>
+<polygon fill="none" stroke="black" points="2121.25,-439.5 2121.25,-464 2530.25,-464 2530.25,-439.5 2121.25,-439.5"/>
+<text text-anchor="start" x="2125.25" y="-446.7" font-family="arial" font-size="14.00">3 x #11 (Crimp)</text>
</g>
<!-- ECU CAN Bus -->
<g id="node9" class="node">
<title>ECU CAN Bus</title>
-<polygon fill="#ffffff" stroke="black" points="1325.5,-2233 1092.5,-2233 1092.5,-1887 1325.5,-1887 1325.5,-2233"/>
-<polygon fill="none" stroke="black" points="1092.5,-2208.5 1092.5,-2233 1325.5,-2233 1325.5,-2208.5 1092.5,-2208.5"/>
-<text text-anchor="start" x="1162.88" y="-2215.7" font-family="arial" font-size="14.00">ECU CAN Bus</text>
-<polygon fill="none" stroke="black" points="1092.5,-2184 1092.5,-2208.5 1222.5,-2208.5 1222.5,-2184 1092.5,-2184"/>
-<text text-anchor="start" x="1128.25" y="-2191.2" font-family="arial" font-size="14.00">DT04&#45;3P</text>
-<polygon fill="none" stroke="black" points="1222.5,-2184 1222.5,-2208.5 1325.5,-2208.5 1325.5,-2184 1222.5,-2184"/>
-<text text-anchor="start" x="1258.25" y="-2191.2" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="1092.5,-2160 1092.5,-2184 1179.5,-2184 1179.5,-2160 1092.5,-2160"/>
-<text text-anchor="start" x="1131.12" y="-2166.7" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1179.5,-2160 1179.5,-2184 1325.5,-2184 1325.5,-2160 1179.5,-2160"/>
-<text text-anchor="start" x="1223.62" y="-2166.7" font-family="arial" font-size="14.00">CANB_P</text>
-<polygon fill="none" stroke="black" points="1092.5,-2136 1092.5,-2160 1179.5,-2160 1179.5,-2136 1092.5,-2136"/>
-<text text-anchor="start" x="1131.12" y="-2142.7" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1179.5,-2136 1179.5,-2160 1325.5,-2160 1325.5,-2136 1179.5,-2136"/>
-<text text-anchor="start" x="1223.62" y="-2142.7" font-family="arial" font-size="14.00">CANB_N</text>
-<polygon fill="none" stroke="black" points="1092.5,-2112 1092.5,-2136 1179.5,-2136 1179.5,-2112 1092.5,-2112"/>
-<text text-anchor="start" x="1130.75" y="-2118.7" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1179.5,-2112 1179.5,-2136 1325.5,-2136 1325.5,-2112 1179.5,-2112"/>
-<text text-anchor="start" x="1217.62" y="-2118.7" font-family="arial" font-size="14.00">CAN_GND</text>
-<polygon fill="none" stroke="black" points="1092.5,-1887 1092.5,-2112 1325.5,-2112 1325.5,-1887 1092.5,-1887"/>
-<image xlink:href="images\DT04-3P.png" width="219.971px" height="213px" preserveAspectRatio="xMinYMin meet" x="1099.01" y="-2106"/>
+<polygon fill="#ffffff" stroke="black" points="1318.5,-1432 1085.5,-1432 1085.5,-1086 1318.5,-1086 1318.5,-1432"/>
+<polygon fill="none" stroke="black" points="1085.5,-1407.5 1085.5,-1432 1318.5,-1432 1318.5,-1407.5 1085.5,-1407.5"/>
+<text text-anchor="start" x="1155.88" y="-1414.7" font-family="arial" font-size="14.00">ECU CAN Bus</text>
+<polygon fill="none" stroke="black" points="1085.5,-1383 1085.5,-1407.5 1215.5,-1407.5 1215.5,-1383 1085.5,-1383"/>
+<text text-anchor="start" x="1121.25" y="-1390.2" font-family="arial" font-size="14.00">DT04&#45;3P</text>
+<polygon fill="none" stroke="black" points="1215.5,-1383 1215.5,-1407.5 1318.5,-1407.5 1318.5,-1383 1215.5,-1383"/>
+<text text-anchor="start" x="1251.25" y="-1390.2" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="1085.5,-1359 1085.5,-1383 1172.5,-1383 1172.5,-1359 1085.5,-1359"/>
+<text text-anchor="start" x="1124.12" y="-1365.7" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1172.5,-1359 1172.5,-1383 1318.5,-1383 1318.5,-1359 1172.5,-1359"/>
+<text text-anchor="start" x="1216.62" y="-1365.7" font-family="arial" font-size="14.00">CANB_P</text>
+<polygon fill="none" stroke="black" points="1085.5,-1335 1085.5,-1359 1172.5,-1359 1172.5,-1335 1085.5,-1335"/>
+<text text-anchor="start" x="1124.12" y="-1341.7" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1172.5,-1335 1172.5,-1359 1318.5,-1359 1318.5,-1335 1172.5,-1335"/>
+<text text-anchor="start" x="1216.62" y="-1341.7" font-family="arial" font-size="14.00">CANB_N</text>
+<polygon fill="none" stroke="black" points="1085.5,-1311 1085.5,-1335 1172.5,-1335 1172.5,-1311 1085.5,-1311"/>
+<text text-anchor="start" x="1123.75" y="-1317.7" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1172.5,-1311 1172.5,-1335 1318.5,-1335 1318.5,-1311 1172.5,-1311"/>
+<text text-anchor="start" x="1210.62" y="-1317.7" font-family="arial" font-size="14.00">CAN_GND</text>
+<polygon fill="none" stroke="black" points="1085.5,-1086 1085.5,-1311 1318.5,-1311 1318.5,-1086 1085.5,-1086"/>
+<image xlink:href="images\DT04-3P.png" width="219.971px" height="213px" preserveAspectRatio="xMinYMin meet" x="1092.01" y="-1305"/>
</g>
<!-- Radar -->
<g id="node10" class="node">
<title>Radar</title>
-<polygon fill="#ffffff" stroke="black" points="2341.12,-2314.25 2024.12,-2314.25 2024.12,-1805.75 2341.12,-1805.75 2341.12,-2314.25"/>
-<polygon fill="none" stroke="black" points="2024.12,-2289.75 2024.12,-2314.25 2341.12,-2314.25 2341.12,-2289.75 2024.12,-2289.75"/>
-<text text-anchor="start" x="2163.5" y="-2296.95" font-family="arial" font-size="14.00">Radar</text>
-<polygon fill="none" stroke="black" points="2024.12,-2265.25 2024.12,-2289.75 2201.75,-2289.75 2201.75,-2265.25 2024.12,-2265.25"/>
-<text text-anchor="start" x="2078.06" y="-2272.45" font-family="arial" font-size="14.00">DTM04&#45;4P</text>
-<polygon fill="none" stroke="black" points="2201.75,-2265.25 2201.75,-2289.75 2341.12,-2289.75 2341.12,-2265.25 2201.75,-2265.25"/>
-<text text-anchor="start" x="2255.69" y="-2272.45" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="2024.12,-2241.25 2024.12,-2265.25 2162.62,-2265.25 2162.62,-2241.25 2024.12,-2241.25"/>
-<text text-anchor="start" x="2089.25" y="-2247.95" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2162.62,-2241.25 2162.62,-2265.25 2341.12,-2265.25 2341.12,-2241.25 2162.62,-2241.25"/>
-<text text-anchor="start" x="2228.62" y="-2247.95" font-family="arial" font-size="14.00">CAN_L</text>
-<polygon fill="none" stroke="black" points="2024.12,-2217.25 2024.12,-2241.25 2162.62,-2241.25 2162.62,-2217.25 2024.12,-2217.25"/>
-<text text-anchor="start" x="2089.25" y="-2223.95" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2162.62,-2217.25 2162.62,-2241.25 2341.12,-2241.25 2341.12,-2217.25 2162.62,-2217.25"/>
-<text text-anchor="start" x="2227.88" y="-2223.95" font-family="arial" font-size="14.00">CAN_H</text>
-<polygon fill="none" stroke="black" points="2024.12,-2193.25 2024.12,-2217.25 2162.62,-2217.25 2162.62,-2193.25 2024.12,-2193.25"/>
-<text text-anchor="start" x="2089.25" y="-2199.95" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2024.12,-2169.25 2024.12,-2193.25 2162.62,-2193.25 2162.62,-2169.25 2024.12,-2169.25"/>
-<text text-anchor="start" x="2089.25" y="-2175.95" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="2024.12,-1830.25 2024.12,-2169.25 2341.12,-2169.25 2341.12,-1830.25 2024.12,-1830.25"/>
-<image xlink:href="images\DTM04-4P.png" width="309px" height="331px" preserveAspectRatio="xMinYMin meet" x="2028.12" y="-2165.25"/>
-<polygon fill="none" stroke="black" points="2024.12,-1805.75 2024.12,-1830.25 2341.12,-1830.25 2341.12,-1805.75 2024.12,-1805.75"/>
-<text text-anchor="start" x="2112.88" y="-1812.95" font-family="arial" font-size="14.00">Mates with DTM06&#45;4S</text>
+<polygon fill="#ffffff" stroke="black" points="2484.25,-1743.25 2167.25,-1743.25 2167.25,-1234.75 2484.25,-1234.75 2484.25,-1743.25"/>
+<polygon fill="none" stroke="black" points="2167.25,-1718.75 2167.25,-1743.25 2484.25,-1743.25 2484.25,-1718.75 2167.25,-1718.75"/>
+<text text-anchor="start" x="2306.62" y="-1725.95" font-family="arial" font-size="14.00">Radar</text>
+<polygon fill="none" stroke="black" points="2167.25,-1694.25 2167.25,-1718.75 2344.88,-1718.75 2344.88,-1694.25 2167.25,-1694.25"/>
+<text text-anchor="start" x="2221.19" y="-1701.45" font-family="arial" font-size="14.00">DTM04&#45;4P</text>
+<polygon fill="none" stroke="black" points="2344.88,-1694.25 2344.88,-1718.75 2484.25,-1718.75 2484.25,-1694.25 2344.88,-1694.25"/>
+<text text-anchor="start" x="2398.81" y="-1701.45" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="2167.25,-1670.25 2167.25,-1694.25 2305.75,-1694.25 2305.75,-1670.25 2167.25,-1670.25"/>
+<text text-anchor="start" x="2232.38" y="-1676.95" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2305.75,-1670.25 2305.75,-1694.25 2484.25,-1694.25 2484.25,-1670.25 2305.75,-1670.25"/>
+<text text-anchor="start" x="2371.75" y="-1676.95" font-family="arial" font-size="14.00">CAN_L</text>
+<polygon fill="none" stroke="black" points="2167.25,-1646.25 2167.25,-1670.25 2305.75,-1670.25 2305.75,-1646.25 2167.25,-1646.25"/>
+<text text-anchor="start" x="2232.38" y="-1652.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2305.75,-1646.25 2305.75,-1670.25 2484.25,-1670.25 2484.25,-1646.25 2305.75,-1646.25"/>
+<text text-anchor="start" x="2371" y="-1652.95" font-family="arial" font-size="14.00">CAN_H</text>
+<polygon fill="none" stroke="black" points="2167.25,-1622.25 2167.25,-1646.25 2305.75,-1646.25 2305.75,-1622.25 2167.25,-1622.25"/>
+<text text-anchor="start" x="2232.38" y="-1628.95" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2167.25,-1598.25 2167.25,-1622.25 2305.75,-1622.25 2305.75,-1598.25 2167.25,-1598.25"/>
+<text text-anchor="start" x="2232.38" y="-1604.95" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="2167.25,-1259.25 2167.25,-1598.25 2484.25,-1598.25 2484.25,-1259.25 2167.25,-1259.25"/>
+<image xlink:href="images\DTM04-4P.png" width="309px" height="331px" preserveAspectRatio="xMinYMin meet" x="2171.25" y="-1594.25"/>
+<polygon fill="none" stroke="black" points="2167.25,-1234.75 2167.25,-1259.25 2484.25,-1259.25 2484.25,-1234.75 2167.25,-1234.75"/>
+<text text-anchor="start" x="2256" y="-1241.95" font-family="arial" font-size="14.00">Mates with DTM06&#45;4S</text>
</g>
<!-- Resistor -->
<g id="node11" class="node">
<title>Resistor</title>
-<polygon fill="#ffffff" stroke="black" points="2225.12,-2484.5 2140.12,-2484.5 2140.12,-2387.5 2225.12,-2387.5 2225.12,-2484.5"/>
-<polygon fill="none" stroke="black" points="2140.12,-2460 2140.12,-2484.5 2225.12,-2484.5 2225.12,-2460 2140.12,-2460"/>
-<text text-anchor="start" x="2156" y="-2467.2" font-family="arial" font-size="14.00">Resistor</text>
-<polygon fill="none" stroke="black" points="2140.12,-2435.5 2140.12,-2460 2185.62,-2460 2185.62,-2435.5 2140.12,-2435.5"/>
-<text text-anchor="start" x="2144.12" y="-2442.7" font-family="arial" font-size="14.00">Temp</text>
-<polygon fill="none" stroke="black" points="2185.62,-2435.5 2185.62,-2460 2225.12,-2460 2225.12,-2435.5 2185.62,-2435.5"/>
-<text text-anchor="start" x="2189.62" y="-2442.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="2140.12,-2411.5 2140.12,-2435.5 2162.62,-2435.5 2162.62,-2411.5 2140.12,-2411.5"/>
-<text text-anchor="start" x="2147.25" y="-2418.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2162.62,-2411.5 2162.62,-2435.5 2225.12,-2435.5 2225.12,-2411.5 2162.62,-2411.5"/>
-<text text-anchor="start" x="2170.62" y="-2418.2" font-family="arial" font-size="14.00">CAN_L</text>
-<polygon fill="none" stroke="black" points="2140.12,-2387.5 2140.12,-2411.5 2162.62,-2411.5 2162.62,-2387.5 2140.12,-2387.5"/>
-<text text-anchor="start" x="2147.25" y="-2394.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2162.62,-2387.5 2162.62,-2411.5 2225.12,-2411.5 2225.12,-2387.5 2162.62,-2387.5"/>
-<text text-anchor="start" x="2169.88" y="-2394.2" font-family="arial" font-size="14.00">CAN_H</text>
+<polygon fill="#ffffff" stroke="black" points="2368.25,-1210.5 2283.25,-1210.5 2283.25,-1113.5 2368.25,-1113.5 2368.25,-1210.5"/>
+<polygon fill="none" stroke="black" points="2283.25,-1186 2283.25,-1210.5 2368.25,-1210.5 2368.25,-1186 2283.25,-1186"/>
+<text text-anchor="start" x="2299.12" y="-1193.2" font-family="arial" font-size="14.00">Resistor</text>
+<polygon fill="none" stroke="black" points="2283.25,-1161.5 2283.25,-1186 2328.75,-1186 2328.75,-1161.5 2283.25,-1161.5"/>
+<text text-anchor="start" x="2287.25" y="-1168.7" font-family="arial" font-size="14.00">Temp</text>
+<polygon fill="none" stroke="black" points="2328.75,-1161.5 2328.75,-1186 2368.25,-1186 2368.25,-1161.5 2328.75,-1161.5"/>
+<text text-anchor="start" x="2332.75" y="-1168.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="2283.25,-1137.5 2283.25,-1161.5 2305.75,-1161.5 2305.75,-1137.5 2283.25,-1137.5"/>
+<text text-anchor="start" x="2290.38" y="-1144.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2305.75,-1137.5 2305.75,-1161.5 2368.25,-1161.5 2368.25,-1137.5 2305.75,-1137.5"/>
+<text text-anchor="start" x="2313.75" y="-1144.2" font-family="arial" font-size="14.00">CAN_L</text>
+<polygon fill="none" stroke="black" points="2283.25,-1113.5 2283.25,-1137.5 2305.75,-1137.5 2305.75,-1113.5 2283.25,-1113.5"/>
+<text text-anchor="start" x="2290.38" y="-1120.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2305.75,-1113.5 2305.75,-1137.5 2368.25,-1137.5 2368.25,-1113.5 2305.75,-1113.5"/>
+<text text-anchor="start" x="2313" y="-1120.2" font-family="arial" font-size="14.00">CAN_H</text>
</g>
<!-- shield1 -->
<g id="node12" class="node">
<title>shield1</title>
-<polygon fill="#ffffff" stroke="black" points="1249.12,-1862.75 1168.88,-1862.75 1168.88,-1789.25 1249.12,-1789.25 1249.12,-1862.75"/>
-<polygon fill="none" stroke="black" points="1168.88,-1838.25 1168.88,-1862.75 1249.12,-1862.75 1249.12,-1838.25 1168.88,-1838.25"/>
-<text text-anchor="start" x="1186.12" y="-1845.45" font-family="arial" font-size="14.00">shield1</text>
-<polygon fill="none" stroke="black" points="1168.88,-1813.75 1168.88,-1838.25 1249.12,-1838.25 1249.12,-1813.75 1168.88,-1813.75"/>
-<text text-anchor="start" x="1193.25" y="-1820.95" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="1168.88,-1789.25 1168.88,-1813.75 1185.12,-1813.75 1185.12,-1789.25 1168.88,-1789.25"/>
-<text text-anchor="start" x="1172.88" y="-1796.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1185.12,-1789.25 1185.12,-1813.75 1232.88,-1813.75 1232.88,-1789.25 1185.12,-1789.25"/>
-<text text-anchor="start" x="1189.12" y="-1796.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="none" stroke="black" points="1232.88,-1789.25 1232.88,-1813.75 1249.12,-1813.75 1249.12,-1789.25 1232.88,-1789.25"/>
-<text text-anchor="start" x="1236.88" y="-1796.45" font-family="arial" font-size="14.00">1</text>
-</g>
-<!-- W7 -->
-<g id="node56" class="node">
-<title>W7</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1808,-1814.75 1526,-1814.75 1526,-1569.25 1808,-1569.25 1808,-1814.75"/>
-<polygon fill="none" stroke="black" points="1526,-1790.25 1526,-1814.75 1808,-1814.75 1808,-1790.25 1526,-1790.25"/>
-<text text-anchor="start" x="1655.75" y="-1797.45" font-family="arial" font-size="14.00">W7</text>
-<polygon fill="none" stroke="black" points="1526,-1765.75 1526,-1790.25 1569.69,-1790.25 1569.69,-1765.75 1526,-1765.75"/>
-<text text-anchor="start" x="1540.34" y="-1772.95" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="1569.69,-1765.75 1569.69,-1790.25 1653.88,-1790.25 1653.88,-1765.75 1569.69,-1765.75"/>
-<text text-anchor="start" x="1584.03" y="-1772.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-1765.75 1653.88,-1790.25 1704.31,-1790.25 1704.31,-1765.75 1653.88,-1765.75"/>
-<text text-anchor="start" x="1668.22" y="-1772.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1704.31,-1765.75 1704.31,-1790.25 1808,-1790.25 1808,-1765.75 1704.31,-1765.75"/>
-<text text-anchor="start" x="1718.66" y="-1772.95" font-family="arial" font-size="14.00">13.0 Inches</text>
-<text text-anchor="start" x="1576.62" y="-1750.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1633.38" y="-1730.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690.75" y="-1730.45" font-family="arial" font-size="14.00">CEX:7:CAN_GND</text>
-<polygon fill="#000000" stroke="none" points="1526,-1723.75 1526,-1725.75 1808,-1725.75 1808,-1723.75 1526,-1723.75"/>
-<polygon fill="#0066ff" stroke="none" points="1526,-1721.75 1526,-1723.75 1808,-1723.75 1808,-1721.75 1526,-1721.75"/>
-<polygon fill="#0066ff" stroke="none" points="1526,-1719.75 1526,-1721.75 1808,-1721.75 1808,-1719.75 1526,-1719.75"/>
-<polygon fill="#0066ff" stroke="none" points="1526,-1717.75 1526,-1719.75 1808,-1719.75 1808,-1717.75 1526,-1717.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1715.75 1526,-1717.75 1808,-1717.75 1808,-1715.75 1526,-1715.75"/>
-<text text-anchor="start" x="1632.62" y="-1700.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1696.75" y="-1700.45" font-family="arial" font-size="14.00">CEX:8:CANB_P</text>
-<polygon fill="#000000" stroke="none" points="1526,-1693.75 1526,-1695.75 1808,-1695.75 1808,-1693.75 1526,-1693.75"/>
-<polygon fill="#ff0000" stroke="none" points="1526,-1691.75 1526,-1693.75 1808,-1693.75 1808,-1691.75 1526,-1691.75"/>
-<polygon fill="#ff0000" stroke="none" points="1526,-1689.75 1526,-1691.75 1808,-1691.75 1808,-1689.75 1526,-1689.75"/>
-<polygon fill="#ff0000" stroke="none" points="1526,-1687.75 1526,-1689.75 1808,-1689.75 1808,-1687.75 1526,-1687.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1685.75 1526,-1687.75 1808,-1687.75 1808,-1685.75 1526,-1685.75"/>
-<text text-anchor="start" x="1633.38" y="-1670.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1696.75" y="-1670.45" font-family="arial" font-size="14.00">CEX:9:CANB_N</text>
-<polygon fill="#000000" stroke="none" points="1526,-1663.75 1526,-1665.75 1808,-1665.75 1808,-1663.75 1526,-1663.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1661.75 1526,-1663.75 1808,-1663.75 1808,-1661.75 1526,-1661.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1659.75 1526,-1661.75 1808,-1661.75 1808,-1659.75 1526,-1659.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1657.75 1526,-1659.75 1808,-1659.75 1808,-1657.75 1526,-1657.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1655.75 1526,-1657.75 1808,-1657.75 1808,-1655.75 1526,-1655.75"/>
-<text text-anchor="start" x="1576.62" y="-1640.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1527.88" y="-1620.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1640.12" y="-1620.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1526,-1613.75 1526,-1615.75 1808,-1615.75 1808,-1613.75 1526,-1613.75"/>
-<text text-anchor="start" x="1576.62" y="-1598.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1526,-1569.25 1526,-1593.75 1808,-1593.75 1808,-1569.25 1526,-1569.25"/>
-<text text-anchor="start" x="1572.12" y="-1576.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to CEX</text>
-</g>
-<!-- shield1&#45;&#45;W7 -->
-<g id="edge40" class="edge">
-<title>shield1:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-1801.5C1309.3,-1801.5 1329.5,-1806.15 1381,-1777 1464.91,-1729.51 1428.58,-1614.75 1525,-1614.75"/>
-</g>
-<!-- W11 -->
-<g id="node58" class="node">
-<title>W11</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-2525.75 1525,-2525.75 1525,-2310.25 1809,-2310.25 1809,-2525.75"/>
-<polygon fill="none" stroke="black" points="1525,-2501.25 1525,-2525.75 1809,-2525.75 1809,-2501.25 1525,-2501.25"/>
-<text text-anchor="start" x="1651.62" y="-2508.45" font-family="arial" font-size="14.00">W11</text>
-<polygon fill="none" stroke="black" points="1525,-2476.75 1525,-2501.25 1569.19,-2501.25 1569.19,-2476.75 1525,-2476.75"/>
-<text text-anchor="start" x="1539.59" y="-2483.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1569.19,-2476.75 1569.19,-2501.25 1653.88,-2501.25 1653.88,-2476.75 1569.19,-2476.75"/>
-<text text-anchor="start" x="1583.78" y="-2483.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-2476.75 1653.88,-2501.25 1704.81,-2501.25 1704.81,-2476.75 1653.88,-2476.75"/>
-<text text-anchor="start" x="1668.47" y="-2483.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1704.81,-2476.75 1704.81,-2501.25 1809,-2501.25 1809,-2476.75 1704.81,-2476.75"/>
-<text text-anchor="start" x="1719.41" y="-2483.95" font-family="arial" font-size="14.00">73.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-2461.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-2441.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-2441.45" font-family="arial" font-size="14.00">Resistor:2:CAN_H</text>
-<polygon fill="#000000" stroke="none" points="1525,-2434.75 1525,-2436.75 1809,-2436.75 1809,-2434.75 1525,-2434.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2432.75 1525,-2434.75 1809,-2434.75 1809,-2432.75 1525,-2432.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2430.75 1525,-2432.75 1809,-2432.75 1809,-2430.75 1525,-2430.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2428.75 1525,-2430.75 1809,-2430.75 1809,-2428.75 1525,-2428.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2426.75 1525,-2428.75 1809,-2428.75 1809,-2426.75 1525,-2426.75"/>
-<text text-anchor="start" x="1631.62" y="-2411.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690.75" y="-2411.45" font-family="arial" font-size="14.00">Resistor:1:CAN_L</text>
-<polygon fill="#000000" stroke="none" points="1525,-2404.75 1525,-2406.75 1809,-2406.75 1809,-2404.75 1525,-2404.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2402.75 1525,-2404.75 1809,-2404.75 1809,-2402.75 1525,-2402.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2400.75 1525,-2402.75 1809,-2402.75 1809,-2400.75 1525,-2400.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2398.75 1525,-2400.75 1809,-2400.75 1809,-2398.75 1525,-2398.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2396.75 1525,-2398.75 1809,-2398.75 1809,-2396.75 1525,-2396.75"/>
-<text text-anchor="start" x="1575.62" y="-2381.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-2361.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-2361.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-2354.75 1525,-2356.75 1809,-2356.75 1809,-2354.75 1525,-2354.75"/>
-<text text-anchor="start" x="1575.62" y="-2339.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-2310.25 1525,-2334.75 1809,-2334.75 1809,-2310.25 1525,-2310.25"/>
-<text text-anchor="start" x="1628" y="-2317.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield1&#45;&#45;W11 -->
-<g id="edge118" class="edge">
-<title>shield1:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-1801.5C1316.84,-1801.5 1339.31,-1822.92 1381,-1875 1520.39,-2049.13 1301.95,-2355.75 1525,-2355.75"/>
-</g>
-<!-- W12 -->
-<g id="node59" class="node">
-<title>W12</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1801.5,-2285.75 1532.5,-2285.75 1532.5,-2070.25 1801.5,-2070.25 1801.5,-2285.75"/>
-<polygon fill="none" stroke="black" points="1532.5,-2261.25 1532.5,-2285.75 1801.5,-2285.75 1801.5,-2261.25 1532.5,-2261.25"/>
-<text text-anchor="start" x="1651.62" y="-2268.45" font-family="arial" font-size="14.00">W12</text>
-<polygon fill="none" stroke="black" points="1532.5,-2236.75 1532.5,-2261.25 1572.94,-2261.25 1572.94,-2236.75 1532.5,-2236.75"/>
-<text text-anchor="start" x="1545.22" y="-2243.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1572.94,-2236.75 1572.94,-2261.25 1653.88,-2261.25 1653.88,-2236.75 1572.94,-2236.75"/>
-<text text-anchor="start" x="1585.66" y="-2243.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-2236.75 1653.88,-2261.25 1701.06,-2261.25 1701.06,-2236.75 1653.88,-2236.75"/>
-<text text-anchor="start" x="1666.59" y="-2243.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1701.06,-2236.75 1701.06,-2261.25 1801.5,-2261.25 1801.5,-2236.75 1701.06,-2236.75"/>
-<text text-anchor="start" x="1713.78" y="-2243.95" font-family="arial" font-size="14.00">73.0 Inches</text>
-<text text-anchor="start" x="1583.12" y="-2221.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1640.25" y="-2201.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1697.5" y="-2201.45" font-family="arial" font-size="14.00">Radar:2:CAN_H</text>
-<polygon fill="#000000" stroke="none" points="1532.5,-2194.75 1532.5,-2196.75 1801.5,-2196.75 1801.5,-2194.75 1532.5,-2194.75"/>
-<polygon fill="#ffff00" stroke="none" points="1532.5,-2192.75 1532.5,-2194.75 1801.5,-2194.75 1801.5,-2192.75 1532.5,-2192.75"/>
-<polygon fill="#ffff00" stroke="none" points="1532.5,-2190.75 1532.5,-2192.75 1801.5,-2192.75 1801.5,-2190.75 1532.5,-2190.75"/>
-<polygon fill="#ffff00" stroke="none" points="1532.5,-2188.75 1532.5,-2190.75 1801.5,-2190.75 1801.5,-2188.75 1532.5,-2188.75"/>
-<polygon fill="#000000" stroke="none" points="1532.5,-2186.75 1532.5,-2188.75 1801.5,-2188.75 1801.5,-2186.75 1532.5,-2186.75"/>
-<text text-anchor="start" x="1639.12" y="-2171.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1698.25" y="-2171.45" font-family="arial" font-size="14.00">Radar:1:CAN_L</text>
-<polygon fill="#000000" stroke="none" points="1532.5,-2164.75 1532.5,-2166.75 1801.5,-2166.75 1801.5,-2164.75 1532.5,-2164.75"/>
-<polygon fill="#00ff00" stroke="none" points="1532.5,-2162.75 1532.5,-2164.75 1801.5,-2164.75 1801.5,-2162.75 1532.5,-2162.75"/>
-<polygon fill="#00ff00" stroke="none" points="1532.5,-2160.75 1532.5,-2162.75 1801.5,-2162.75 1801.5,-2160.75 1532.5,-2160.75"/>
-<polygon fill="#00ff00" stroke="none" points="1532.5,-2158.75 1532.5,-2160.75 1801.5,-2160.75 1801.5,-2158.75 1532.5,-2158.75"/>
-<polygon fill="#000000" stroke="none" points="1532.5,-2156.75 1532.5,-2158.75 1801.5,-2158.75 1801.5,-2156.75 1532.5,-2156.75"/>
-<text text-anchor="start" x="1583.12" y="-2141.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1534.38" y="-2121.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1646.62" y="-2121.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1532.5,-2114.75 1532.5,-2116.75 1801.5,-2116.75 1801.5,-2114.75 1532.5,-2114.75"/>
-<text text-anchor="start" x="1583.12" y="-2099.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1532.5,-2070.25 1532.5,-2094.75 1801.5,-2094.75 1801.5,-2070.25 1532.5,-2070.25"/>
-<text text-anchor="start" x="1628" y="-2077.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield1&#45;&#45;W12 -->
-<g id="edge124" class="edge">
-<title>shield1:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-1801.5C1316.84,-1801.5 1332.73,-1828.95 1381,-1875 1472.3,-1962.11 1405.31,-2115.75 1531.5,-2115.75"/>
+<polygon fill="#ffffff" stroke="black" points="236.5,-3033.75 172.5,-3033.75 172.5,-2960.25 236.5,-2960.25 236.5,-3033.75"/>
+<polygon fill="none" stroke="black" points="172.5,-3009.25 172.5,-3033.75 236.5,-3033.75 236.5,-3009.25 172.5,-3009.25"/>
+<text text-anchor="start" x="181.62" y="-3016.45" font-family="arial" font-size="14.00">shield1</text>
+<polygon fill="none" stroke="black" points="172.5,-2984.75 172.5,-3009.25 236.5,-3009.25 236.5,-2984.75 172.5,-2984.75"/>
+<text text-anchor="start" x="188.75" y="-2991.95" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="172.5,-2960.25 172.5,-2984.75 188.75,-2984.75 188.75,-2960.25 172.5,-2960.25"/>
+<text text-anchor="start" x="176.5" y="-2967.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="188.75,-2960.25 188.75,-2984.75 236.5,-2984.75 236.5,-2960.25 188.75,-2960.25"/>
+<text text-anchor="start" x="192.75" y="-2967.45" font-family="arial" font-size="14.00">Shield</text>
</g>
<!-- shield2 -->
<g id="node13" class="node">
<title>shield2</title>
-<polygon fill="#ffffff" stroke="black" points="1249.12,-2822.75 1168.88,-2822.75 1168.88,-2749.25 1249.12,-2749.25 1249.12,-2822.75"/>
-<polygon fill="none" stroke="black" points="1168.88,-2798.25 1168.88,-2822.75 1249.12,-2822.75 1249.12,-2798.25 1168.88,-2798.25"/>
-<text text-anchor="start" x="1186.12" y="-2805.45" font-family="arial" font-size="14.00">shield2</text>
-<polygon fill="none" stroke="black" points="1168.88,-2773.75 1168.88,-2798.25 1249.12,-2798.25 1249.12,-2773.75 1168.88,-2773.75"/>
-<text text-anchor="start" x="1193.25" y="-2780.95" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="1168.88,-2749.25 1168.88,-2773.75 1185.12,-2773.75 1185.12,-2749.25 1168.88,-2749.25"/>
-<text text-anchor="start" x="1172.88" y="-2756.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1185.12,-2749.25 1185.12,-2773.75 1232.88,-2773.75 1232.88,-2749.25 1185.12,-2749.25"/>
-<text text-anchor="start" x="1189.12" y="-2756.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="none" stroke="black" points="1232.88,-2749.25 1232.88,-2773.75 1249.12,-2773.75 1249.12,-2749.25 1232.88,-2749.25"/>
-<text text-anchor="start" x="1236.88" y="-2756.45" font-family="arial" font-size="14.00">1</text>
-</g>
-<!-- W15 -->
-<g id="node61" class="node">
-<title>W15</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-3005.75 1525,-3005.75 1525,-2790.25 1809,-2790.25 1809,-3005.75"/>
-<polygon fill="none" stroke="black" points="1525,-2981.25 1525,-3005.75 1809,-3005.75 1809,-2981.25 1525,-2981.25"/>
-<text text-anchor="start" x="1651.62" y="-2988.45" font-family="arial" font-size="14.00">W15</text>
-<polygon fill="none" stroke="black" points="1525,-2956.75 1525,-2981.25 1569.19,-2981.25 1569.19,-2956.75 1525,-2956.75"/>
-<text text-anchor="start" x="1539.59" y="-2963.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1569.19,-2956.75 1569.19,-2981.25 1653.88,-2981.25 1653.88,-2956.75 1569.19,-2956.75"/>
-<text text-anchor="start" x="1583.78" y="-2963.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-2956.75 1653.88,-2981.25 1704.81,-2981.25 1704.81,-2956.75 1653.88,-2956.75"/>
-<text text-anchor="start" x="1668.47" y="-2963.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1704.81,-2956.75 1704.81,-2981.25 1809,-2981.25 1809,-2956.75 1704.81,-2956.75"/>
-<text text-anchor="start" x="1719.41" y="-2963.95" font-family="arial" font-size="14.00">12.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-2941.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-2921.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-2921.45" font-family="arial" font-size="14.00">Swash1:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1525,-2914.75 1525,-2916.75 1809,-2916.75 1809,-2914.75 1525,-2914.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2912.75 1525,-2914.75 1809,-2914.75 1809,-2912.75 1525,-2912.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2910.75 1525,-2912.75 1809,-2912.75 1809,-2910.75 1525,-2910.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2908.75 1525,-2910.75 1809,-2910.75 1809,-2908.75 1525,-2908.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2906.75 1525,-2908.75 1809,-2908.75 1809,-2906.75 1525,-2906.75"/>
-<text text-anchor="start" x="1631.62" y="-2891.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1691.88" y="-2891.45" font-family="arial" font-size="14.00">Swash1:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1525,-2884.75 1525,-2886.75 1809,-2886.75 1809,-2884.75 1525,-2884.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2882.75 1525,-2884.75 1809,-2884.75 1809,-2882.75 1525,-2882.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2880.75 1525,-2882.75 1809,-2882.75 1809,-2880.75 1525,-2880.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2878.75 1525,-2880.75 1809,-2880.75 1809,-2878.75 1525,-2878.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2876.75 1525,-2878.75 1809,-2878.75 1809,-2876.75 1525,-2876.75"/>
-<text text-anchor="start" x="1575.62" y="-2861.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-2841.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-2841.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-2834.75 1525,-2836.75 1809,-2836.75 1809,-2834.75 1525,-2834.75"/>
-<text text-anchor="start" x="1575.62" y="-2819.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-2790.25 1525,-2814.75 1809,-2814.75 1809,-2790.25 1525,-2790.25"/>
-<text text-anchor="start" x="1628" y="-2797.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield2&#45;&#45;W15 -->
-<g id="edge134" class="edge">
-<title>shield2:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1376.67,-2761.5 1398.45,-2835.75 1525,-2835.75"/>
-</g>
-<!-- W16 -->
-<g id="node62" class="node">
-<title>W16</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-2765.75 1525,-2765.75 1525,-2550.25 1809,-2550.25 1809,-2765.75"/>
-<polygon fill="none" stroke="black" points="1525,-2741.25 1525,-2765.75 1809,-2765.75 1809,-2741.25 1525,-2741.25"/>
-<text text-anchor="start" x="1651.62" y="-2748.45" font-family="arial" font-size="14.00">W16</text>
-<polygon fill="none" stroke="black" points="1525,-2716.75 1525,-2741.25 1571.25,-2741.25 1571.25,-2716.75 1525,-2716.75"/>
-<text text-anchor="start" x="1540.62" y="-2723.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1571.25,-2716.75 1571.25,-2741.25 1658,-2741.25 1658,-2716.75 1571.25,-2716.75"/>
-<text text-anchor="start" x="1586.88" y="-2723.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1658,-2716.75 1658,-2741.25 1711,-2741.25 1711,-2716.75 1658,-2716.75"/>
-<text text-anchor="start" x="1673.62" y="-2723.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1711,-2716.75 1711,-2741.25 1809,-2741.25 1809,-2716.75 1711,-2716.75"/>
-<text text-anchor="start" x="1726.62" y="-2723.95" font-family="arial" font-size="14.00">6.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-2701.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-2681.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-2681.45" font-family="arial" font-size="14.00">Swash2:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1525,-2674.75 1525,-2676.75 1809,-2676.75 1809,-2674.75 1525,-2674.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2672.75 1525,-2674.75 1809,-2674.75 1809,-2672.75 1525,-2672.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2670.75 1525,-2672.75 1809,-2672.75 1809,-2670.75 1525,-2670.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2668.75 1525,-2670.75 1809,-2670.75 1809,-2668.75 1525,-2668.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2666.75 1525,-2668.75 1809,-2668.75 1809,-2666.75 1525,-2666.75"/>
-<text text-anchor="start" x="1631.62" y="-2651.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1691.88" y="-2651.45" font-family="arial" font-size="14.00">Swash2:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1525,-2644.75 1525,-2646.75 1809,-2646.75 1809,-2644.75 1525,-2644.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2642.75 1525,-2644.75 1809,-2644.75 1809,-2642.75 1525,-2642.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2640.75 1525,-2642.75 1809,-2642.75 1809,-2640.75 1525,-2640.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2638.75 1525,-2640.75 1809,-2640.75 1809,-2638.75 1525,-2638.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2636.75 1525,-2638.75 1809,-2638.75 1809,-2636.75 1525,-2636.75"/>
-<text text-anchor="start" x="1575.62" y="-2621.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-2601.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-2601.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-2594.75 1525,-2596.75 1809,-2596.75 1809,-2594.75 1525,-2594.75"/>
-<text text-anchor="start" x="1575.62" y="-2579.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-2550.25 1525,-2574.75 1809,-2574.75 1809,-2550.25 1525,-2550.25"/>
-<text text-anchor="start" x="1628" y="-2557.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield2&#45;&#45;W16 -->
-<g id="edge140" class="edge">
-<title>shield2:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1309.85,-2761.5 1328.35,-2759.19 1381,-2731 1458.41,-2689.56 1437.2,-2595.75 1525,-2595.75"/>
-</g>
-<!-- W17 -->
-<g id="node63" class="node">
-<title>W17</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-3265.75 1525,-3265.75 1525,-3050.25 1809,-3050.25 1809,-3265.75"/>
-<polygon fill="none" stroke="black" points="1525,-3241.25 1525,-3265.75 1809,-3265.75 1809,-3241.25 1525,-3241.25"/>
-<text text-anchor="start" x="1651.62" y="-3248.45" font-family="arial" font-size="14.00">W17</text>
-<polygon fill="none" stroke="black" points="1525,-3216.75 1525,-3241.25 1571.25,-3241.25 1571.25,-3216.75 1525,-3216.75"/>
-<text text-anchor="start" x="1540.62" y="-3223.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1571.25,-3216.75 1571.25,-3241.25 1658,-3241.25 1658,-3216.75 1571.25,-3216.75"/>
-<text text-anchor="start" x="1586.88" y="-3223.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1658,-3216.75 1658,-3241.25 1711,-3241.25 1711,-3216.75 1658,-3216.75"/>
-<text text-anchor="start" x="1673.62" y="-3223.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1711,-3216.75 1711,-3241.25 1809,-3241.25 1809,-3216.75 1711,-3216.75"/>
-<text text-anchor="start" x="1726.62" y="-3223.95" font-family="arial" font-size="14.00">6.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-3201.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-3181.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-3181.45" font-family="arial" font-size="14.00">Swash3:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1525,-3174.75 1525,-3176.75 1809,-3176.75 1809,-3174.75 1525,-3174.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-3172.75 1525,-3174.75 1809,-3174.75 1809,-3172.75 1525,-3172.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-3170.75 1525,-3172.75 1809,-3172.75 1809,-3170.75 1525,-3170.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-3168.75 1525,-3170.75 1809,-3170.75 1809,-3168.75 1525,-3168.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-3166.75 1525,-3168.75 1809,-3168.75 1809,-3166.75 1525,-3166.75"/>
-<text text-anchor="start" x="1631.62" y="-3151.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1691.88" y="-3151.45" font-family="arial" font-size="14.00">Swash3:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1525,-3144.75 1525,-3146.75 1809,-3146.75 1809,-3144.75 1525,-3144.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-3142.75 1525,-3144.75 1809,-3144.75 1809,-3142.75 1525,-3142.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-3140.75 1525,-3142.75 1809,-3142.75 1809,-3140.75 1525,-3140.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-3138.75 1525,-3140.75 1809,-3140.75 1809,-3138.75 1525,-3138.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-3136.75 1525,-3138.75 1809,-3138.75 1809,-3136.75 1525,-3136.75"/>
-<text text-anchor="start" x="1575.62" y="-3121.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-3101.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-3101.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-3094.75 1525,-3096.75 1809,-3096.75 1809,-3094.75 1525,-3094.75"/>
-<text text-anchor="start" x="1575.62" y="-3079.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-3050.25 1525,-3074.75 1809,-3074.75 1809,-3050.25 1525,-3050.25"/>
-<text text-anchor="start" x="1628" y="-3057.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield2&#45;&#45;W17 -->
-<g id="edge146" class="edge">
-<title>shield2:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1316.84,-2761.5 1334,-2787.66 1381,-2835 1474.28,-2928.95 1392.61,-3095.75 1525,-3095.75"/>
-</g>
-<!-- W18 -->
-<g id="node64" class="node">
-<title>W18</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1797,-3515.75 1537,-3515.75 1537,-3300.25 1797,-3300.25 1797,-3515.75"/>
-<polygon fill="none" stroke="black" points="1537,-3491.25 1537,-3515.75 1797,-3515.75 1797,-3491.25 1537,-3491.25"/>
-<text text-anchor="start" x="1651.62" y="-3498.45" font-family="arial" font-size="14.00">W18</text>
-<polygon fill="none" stroke="black" points="1537,-3466.75 1537,-3491.25 1573.12,-3491.25 1573.12,-3466.75 1537,-3466.75"/>
-<text text-anchor="start" x="1547.56" y="-3473.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1573.12,-3466.75 1573.12,-3491.25 1649.75,-3491.25 1649.75,-3466.75 1573.12,-3466.75"/>
-<text text-anchor="start" x="1583.69" y="-3473.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1649.75,-3466.75 1649.75,-3491.25 1692.62,-3491.25 1692.62,-3466.75 1649.75,-3466.75"/>
-<text text-anchor="start" x="1660.31" y="-3473.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1692.62,-3466.75 1692.62,-3491.25 1797,-3491.25 1797,-3466.75 1692.62,-3466.75"/>
-<text text-anchor="start" x="1703.19" y="-3473.95" font-family="arial" font-size="14.00">170.0 Inches</text>
-<text text-anchor="start" x="1587.62" y="-3451.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1644.75" y="-3431.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1702" y="-3431.45" font-family="arial" font-size="14.00">Yaw:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1537,-3424.75 1537,-3426.75 1797,-3426.75 1797,-3424.75 1537,-3424.75"/>
-<polygon fill="#ffff00" stroke="none" points="1537,-3422.75 1537,-3424.75 1797,-3424.75 1797,-3422.75 1537,-3422.75"/>
-<polygon fill="#ffff00" stroke="none" points="1537,-3420.75 1537,-3422.75 1797,-3422.75 1797,-3420.75 1537,-3420.75"/>
-<polygon fill="#ffff00" stroke="none" points="1537,-3418.75 1537,-3420.75 1797,-3420.75 1797,-3418.75 1537,-3418.75"/>
-<polygon fill="#000000" stroke="none" points="1537,-3416.75 1537,-3418.75 1797,-3418.75 1797,-3416.75 1537,-3416.75"/>
-<text text-anchor="start" x="1643.62" y="-3401.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1703.88" y="-3401.45" font-family="arial" font-size="14.00">Yaw:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1537,-3394.75 1537,-3396.75 1797,-3396.75 1797,-3394.75 1537,-3394.75"/>
-<polygon fill="#00ff00" stroke="none" points="1537,-3392.75 1537,-3394.75 1797,-3394.75 1797,-3392.75 1537,-3392.75"/>
-<polygon fill="#00ff00" stroke="none" points="1537,-3390.75 1537,-3392.75 1797,-3392.75 1797,-3390.75 1537,-3390.75"/>
-<polygon fill="#00ff00" stroke="none" points="1537,-3388.75 1537,-3390.75 1797,-3390.75 1797,-3388.75 1537,-3388.75"/>
-<polygon fill="#000000" stroke="none" points="1537,-3386.75 1537,-3388.75 1797,-3388.75 1797,-3386.75 1537,-3386.75"/>
-<text text-anchor="start" x="1587.62" y="-3371.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1538.88" y="-3351.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1651.12" y="-3351.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1537,-3344.75 1537,-3346.75 1797,-3346.75 1797,-3344.75 1537,-3344.75"/>
-<text text-anchor="start" x="1587.62" y="-3329.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1537,-3300.25 1537,-3324.75 1797,-3324.75 1797,-3300.25 1537,-3300.25"/>
-<text text-anchor="start" x="1572.88" y="-3307.45" font-family="arial" font-size="14.00">Twisted Pair | (Tail Mounted?)</text>
-</g>
-<!-- shield2&#45;&#45;W18 -->
-<g id="edge152" class="edge">
-<title>shield2:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1316.84,-2761.5 1339.21,-2783 1381,-2835 1529.59,-3019.92 1298.78,-3345.75 1536,-3345.75"/>
-</g>
-<!-- _GND_1 -->
-<g id="node14" class="node">
-<title>_GND_1</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1716.25 1189.25,-1716.25 1189.25,-1691.75 1228.75,-1691.75 1228.75,-1716.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1691.75 1189.25,-1716.25 1228.75,-1716.25 1228.75,-1691.75 1189.25,-1691.75"/>
-<text text-anchor="start" x="1193.25" y="-1698.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_2 -->
-<g id="node15" class="node">
-<title>_GND_2</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1667.25 1189.25,-1667.25 1189.25,-1642.75 1228.75,-1642.75 1228.75,-1667.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1642.75 1189.25,-1667.25 1228.75,-1667.25 1228.75,-1642.75 1189.25,-1642.75"/>
-<text text-anchor="start" x="1193.25" y="-1649.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_3 -->
-<g id="node16" class="node">
-<title>_GND_3</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1618.25 1189.25,-1618.25 1189.25,-1593.75 1228.75,-1593.75 1228.75,-1618.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1593.75 1189.25,-1618.25 1228.75,-1618.25 1228.75,-1593.75 1189.25,-1593.75"/>
-<text text-anchor="start" x="1193.25" y="-1600.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_4 -->
-<g id="node17" class="node">
-<title>_GND_4</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1558.25 1189.25,-1558.25 1189.25,-1533.75 1228.75,-1533.75 1228.75,-1558.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1533.75 1189.25,-1558.25 1228.75,-1558.25 1228.75,-1533.75 1189.25,-1533.75"/>
-<text text-anchor="start" x="1193.25" y="-1540.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_5 -->
-<g id="node18" class="node">
-<title>_GND_5</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1438.25 1189.25,-1438.25 1189.25,-1413.75 1228.75,-1413.75 1228.75,-1438.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1413.75 1189.25,-1438.25 1228.75,-1438.25 1228.75,-1413.75 1189.25,-1413.75"/>
-<text text-anchor="start" x="1193.25" y="-1420.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_6 -->
-<g id="node19" class="node">
-<title>_GND_6</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1378.25 1189.25,-1378.25 1189.25,-1353.75 1228.75,-1353.75 1228.75,-1378.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1353.75 1189.25,-1378.25 1228.75,-1378.25 1228.75,-1353.75 1189.25,-1353.75"/>
-<text text-anchor="start" x="1193.25" y="-1360.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_7 -->
-<g id="node20" class="node">
-<title>_GND_7</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1318.25 1189.25,-1318.25 1189.25,-1293.75 1228.75,-1293.75 1228.75,-1318.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1293.75 1189.25,-1318.25 1228.75,-1318.25 1228.75,-1293.75 1189.25,-1293.75"/>
-<text text-anchor="start" x="1193.25" y="-1300.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_8 -->
-<g id="node21" class="node">
-<title>_GND_8</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1199.25 1189.25,-1199.25 1189.25,-1174.75 1228.75,-1174.75 1228.75,-1199.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1174.75 1189.25,-1199.25 1228.75,-1199.25 1228.75,-1174.75 1189.25,-1174.75"/>
-<text text-anchor="start" x="1193.25" y="-1181.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_9 -->
-<g id="node22" class="node">
-<title>_GND_9</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1109.25 1189.25,-1109.25 1189.25,-1084.75 1228.75,-1084.75 1228.75,-1109.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1084.75 1189.25,-1109.25 1228.75,-1109.25 1228.75,-1084.75 1189.25,-1084.75"/>
-<text text-anchor="start" x="1193.25" y="-1091.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_10 -->
-<g id="node23" class="node">
-<title>_GND_10</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1019.25 1189.25,-1019.25 1189.25,-994.75 1228.75,-994.75 1228.75,-1019.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-994.75 1189.25,-1019.25 1228.75,-1019.25 1228.75,-994.75 1189.25,-994.75"/>
-<text text-anchor="start" x="1193.25" y="-1001.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_11 -->
-<g id="node24" class="node">
-<title>_GND_11</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-659.25 1189.25,-659.25 1189.25,-634.75 1228.75,-634.75 1228.75,-659.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-634.75 1189.25,-659.25 1228.75,-659.25 1228.75,-634.75 1189.25,-634.75"/>
-<text text-anchor="start" x="1193.25" y="-641.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_12 -->
-<g id="node25" class="node">
-<title>_GND_12</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-489.25 1189.25,-489.25 1189.25,-464.75 1228.75,-464.75 1228.75,-489.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-464.75 1189.25,-489.25 1228.75,-489.25 1228.75,-464.75 1189.25,-464.75"/>
-<text text-anchor="start" x="1193.25" y="-471.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_13 -->
-<g id="node26" class="node">
-<title>_GND_13</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-440.25 1189.25,-440.25 1189.25,-415.75 1228.75,-415.75 1228.75,-440.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-415.75 1189.25,-440.25 1228.75,-440.25 1228.75,-415.75 1189.25,-415.75"/>
-<text text-anchor="start" x="1193.25" y="-422.95" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="#ffffff" stroke="black" points="236.5,-3131.75 172.5,-3131.75 172.5,-3058.25 236.5,-3058.25 236.5,-3131.75"/>
+<polygon fill="none" stroke="black" points="172.5,-3107.25 172.5,-3131.75 236.5,-3131.75 236.5,-3107.25 172.5,-3107.25"/>
+<text text-anchor="start" x="181.62" y="-3114.45" font-family="arial" font-size="14.00">shield2</text>
+<polygon fill="none" stroke="black" points="172.5,-3082.75 172.5,-3107.25 236.5,-3107.25 236.5,-3082.75 172.5,-3082.75"/>
+<text text-anchor="start" x="188.75" y="-3089.95" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="172.5,-3058.25 172.5,-3082.75 188.75,-3082.75 188.75,-3058.25 172.5,-3058.25"/>
+<text text-anchor="start" x="176.5" y="-3065.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="188.75,-3058.25 188.75,-3082.75 236.5,-3082.75 236.5,-3058.25 188.75,-3058.25"/>
+<text text-anchor="start" x="192.75" y="-3065.45" font-family="arial" font-size="14.00">Shield</text>
</g>
<!-- _S_1 -->
-<g id="node27" class="node">
+<g id="node14" class="node">
<title>_S_1</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2920.25 1186.25,-2920.25 1186.25,-2895.75 1231.75,-2895.75 1231.75,-2920.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2895.75 1186.25,-2920.25 1231.75,-2920.25 1231.75,-2895.75 1186.25,-2895.75"/>
-<text text-anchor="start" x="1190.25" y="-2902.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-3180.25 696.75,-3180.25 696.75,-3155.75 742.25,-3155.75 742.25,-3180.25"/>
+<polygon fill="none" stroke="black" points="696.75,-3155.75 696.75,-3180.25 742.25,-3180.25 742.25,-3155.75 696.75,-3155.75"/>
+<text text-anchor="start" x="700.75" y="-3162.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W15 -->
+<g id="node37" class="node">
+<title>W15</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1301.62,-3361.75 1102.38,-3361.75 1102.38,-3146.25 1301.62,-3146.25 1301.62,-3361.75"/>
+<polygon fill="none" stroke="black" points="1102.38,-3337.25 1102.38,-3361.75 1301.62,-3361.75 1301.62,-3337.25 1102.38,-3337.25"/>
+<text text-anchor="start" x="1186.62" y="-3344.45" font-family="arial" font-size="14.00">W15</text>
+<polygon fill="none" stroke="black" points="1102.38,-3312.75 1102.38,-3337.25 1125.38,-3337.25 1125.38,-3312.75 1102.38,-3312.75"/>
+<text text-anchor="start" x="1106.38" y="-3319.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1125.38,-3312.75 1125.38,-3337.25 1188.88,-3337.25 1188.88,-3312.75 1125.38,-3312.75"/>
+<text text-anchor="start" x="1129.38" y="-3319.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1188.88,-3312.75 1188.88,-3337.25 1218.62,-3337.25 1218.62,-3312.75 1188.88,-3312.75"/>
+<text text-anchor="start" x="1192.88" y="-3319.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1218.62,-3312.75 1218.62,-3337.25 1301.62,-3337.25 1301.62,-3312.75 1218.62,-3312.75"/>
+<text text-anchor="start" x="1222.62" y="-3319.95" font-family="arial" font-size="14.00">12.0 Inches</text>
+<text text-anchor="start" x="1106.21" y="-3297.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1118.75" y="-3277.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1180.42" y="-3277.45" font-family="arial" font-size="14.00">Swash1:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1102.38,-3270.75 1102.38,-3272.75 1301.62,-3272.75 1301.62,-3270.75 1102.38,-3270.75"/>
+<polygon fill="#ffff00" stroke="none" points="1102.38,-3268.75 1102.38,-3270.75 1301.62,-3270.75 1301.62,-3268.75 1102.38,-3268.75"/>
+<polygon fill="#ffff00" stroke="none" points="1102.38,-3266.75 1102.38,-3268.75 1301.62,-3268.75 1301.62,-3266.75 1102.38,-3266.75"/>
+<polygon fill="#ffff00" stroke="none" points="1102.38,-3264.75 1102.38,-3266.75 1301.62,-3266.75 1301.62,-3264.75 1102.38,-3264.75"/>
+<polygon fill="#000000" stroke="none" points="1102.38,-3262.75 1102.38,-3264.75 1301.62,-3264.75 1301.62,-3262.75 1102.38,-3262.75"/>
+<text text-anchor="start" x="1117.62" y="-3247.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1182.29" y="-3247.45" font-family="arial" font-size="14.00">Swash1:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1102.38,-3240.75 1102.38,-3242.75 1301.62,-3242.75 1301.62,-3240.75 1102.38,-3240.75"/>
+<polygon fill="#00ff00" stroke="none" points="1102.38,-3238.75 1102.38,-3240.75 1301.62,-3240.75 1301.62,-3238.75 1102.38,-3238.75"/>
+<polygon fill="#00ff00" stroke="none" points="1102.38,-3236.75 1102.38,-3238.75 1301.62,-3238.75 1301.62,-3236.75 1102.38,-3236.75"/>
+<polygon fill="#00ff00" stroke="none" points="1102.38,-3234.75 1102.38,-3236.75 1301.62,-3236.75 1301.62,-3234.75 1102.38,-3234.75"/>
+<polygon fill="#000000" stroke="none" points="1102.38,-3232.75 1102.38,-3234.75 1301.62,-3234.75 1301.62,-3232.75 1102.38,-3232.75"/>
+<text text-anchor="start" x="1106.21" y="-3217.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1125.12" y="-3197.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1102.38,-3190.75 1102.38,-3192.75 1301.62,-3192.75 1301.62,-3190.75 1102.38,-3190.75"/>
+<text text-anchor="start" x="1106.21" y="-3175.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1102.38,-3146.25 1102.38,-3170.75 1301.62,-3170.75 1301.62,-3146.25 1102.38,-3146.25"/>
+<text text-anchor="start" x="1163" y="-3153.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_1&#45;&#45;W15 -->
-<g id="edge130" class="edge">
+<g id="edge44" class="edge">
<title>_S_1:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2904C1363.11,-2904.03 1395.56,-2907.78 1525,-2907.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2906C1362.88,-2906.01 1395.33,-2909.76 1525,-2909.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2908C1362.65,-2908 1395.1,-2911.75 1525,-2911.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2910C1362.42,-2909.99 1394.87,-2913.74 1525,-2913.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2912C1362.19,-2911.97 1394.64,-2915.72 1525,-2915.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-3164C912.33,-3166.93 940,-3266.68 1101.38,-3263.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-3166C910.4,-3167.47 938.08,-3267.22 1101.38,-3265.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-3168C908.48,-3168 936.15,-3267.75 1101.38,-3267.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-3170C906.55,-3168.53 934.22,-3268.28 1101.38,-3269.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-3172C904.62,-3169.07 932.3,-3268.82 1101.38,-3271.75"/>
</g>
<!-- _S_2 -->
-<g id="node28" class="node">
+<g id="node15" class="node">
<title>_S_2</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2871.25 1186.25,-2871.25 1186.25,-2846.75 1231.75,-2846.75 1231.75,-2871.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2846.75 1186.25,-2871.25 1231.75,-2871.25 1231.75,-2846.75 1186.25,-2846.75"/>
-<text text-anchor="start" x="1190.25" y="-2853.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2915.25 696.75,-2915.25 696.75,-2890.75 742.25,-2890.75 742.25,-2915.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2890.75 696.75,-2915.25 742.25,-2915.25 742.25,-2890.75 696.75,-2890.75"/>
+<text text-anchor="start" x="700.75" y="-2897.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_2&#45;&#45;W15 -->
-<g id="edge132" class="edge">
+<g id="edge46" class="edge">
<title>_S_2:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2855C1365.36,-2855.75 1397.05,-2878.5 1525,-2877.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2857C1364.2,-2857.38 1395.88,-2880.13 1525,-2879.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2859C1363.03,-2859 1394.72,-2881.75 1525,-2881.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2861C1361.87,-2860.62 1393.55,-2883.37 1525,-2883.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2863C1360.7,-2862.25 1392.39,-2885 1525,-2885.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2899C806.35,-2899.25 830.36,-2890.4 888.16,-2925.63 1030.46,-3020.98 937.75,-3239.31 1101.38,-3233.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2901C807.05,-2901.12 831.05,-2892.27 887.08,-2927.32 1028.62,-3020.2 935.91,-3238.53 1101.38,-3235.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2903C807.74,-2903 831.74,-2894.15 886,-2929 1026.77,-3019.42 934.06,-3237.75 1101.38,-3237.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2905C808.43,-2904.88 832.43,-2896.03 884.92,-2930.68 1024.93,-3018.64 932.22,-3236.97 1101.38,-3239.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2907C809.12,-2906.75 833.12,-2897.9 883.84,-2932.37 1023.09,-3017.85 930.38,-3236.19 1101.38,-3241.75"/>
</g>
<!-- _S_3 -->
-<g id="node29" class="node">
+<g id="node16" class="node">
<title>_S_3</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2719.25 1186.25,-2719.25 1186.25,-2694.75 1231.75,-2694.75 1231.75,-2719.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2694.75 1186.25,-2719.25 1231.75,-2719.25 1231.75,-2694.75 1186.25,-2694.75"/>
-<text text-anchor="start" x="1190.25" y="-2701.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2759.25 696.75,-2759.25 696.75,-2734.75 742.25,-2734.75 742.25,-2759.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2734.75 696.75,-2759.25 742.25,-2759.25 742.25,-2734.75 696.75,-2734.75"/>
+<text text-anchor="start" x="700.75" y="-2741.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W16 -->
+<g id="node38" class="node">
+<title>W16</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1297.5,-2568.75 1106.5,-2568.75 1106.5,-2353.25 1297.5,-2353.25 1297.5,-2568.75"/>
+<polygon fill="none" stroke="black" points="1106.5,-2544.25 1106.5,-2568.75 1297.5,-2568.75 1297.5,-2544.25 1106.5,-2544.25"/>
+<text text-anchor="start" x="1186.62" y="-2551.45" font-family="arial" font-size="14.00">W16</text>
+<polygon fill="none" stroke="black" points="1106.5,-2519.75 1106.5,-2544.25 1129.5,-2544.25 1129.5,-2519.75 1106.5,-2519.75"/>
+<text text-anchor="start" x="1110.5" y="-2526.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1129.5,-2519.75 1129.5,-2544.25 1193,-2544.25 1193,-2519.75 1129.5,-2519.75"/>
+<text text-anchor="start" x="1133.5" y="-2526.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1193,-2519.75 1193,-2544.25 1222.75,-2544.25 1222.75,-2519.75 1193,-2519.75"/>
+<text text-anchor="start" x="1197" y="-2526.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1222.75,-2519.75 1222.75,-2544.25 1297.5,-2544.25 1297.5,-2519.75 1222.75,-2519.75"/>
+<text text-anchor="start" x="1226.75" y="-2526.95" font-family="arial" font-size="14.00">6.0 Inches</text>
+<text text-anchor="start" x="1108.96" y="-2504.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1118.75" y="-2484.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1177.67" y="-2484.45" font-family="arial" font-size="14.00">Swash2:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2477.75 1106.5,-2479.75 1297.5,-2479.75 1297.5,-2477.75 1106.5,-2477.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2475.75 1106.5,-2477.75 1297.5,-2477.75 1297.5,-2475.75 1106.5,-2475.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2473.75 1106.5,-2475.75 1297.5,-2475.75 1297.5,-2473.75 1106.5,-2473.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2471.75 1106.5,-2473.75 1297.5,-2473.75 1297.5,-2471.75 1106.5,-2471.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2469.75 1106.5,-2471.75 1297.5,-2471.75 1297.5,-2469.75 1106.5,-2469.75"/>
+<text text-anchor="start" x="1117.62" y="-2454.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1179.54" y="-2454.45" font-family="arial" font-size="14.00">Swash2:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2447.75 1106.5,-2449.75 1297.5,-2449.75 1297.5,-2447.75 1106.5,-2447.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2445.75 1106.5,-2447.75 1297.5,-2447.75 1297.5,-2445.75 1106.5,-2445.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2443.75 1106.5,-2445.75 1297.5,-2445.75 1297.5,-2443.75 1106.5,-2443.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2441.75 1106.5,-2443.75 1297.5,-2443.75 1297.5,-2441.75 1106.5,-2441.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2439.75 1106.5,-2441.75 1297.5,-2441.75 1297.5,-2439.75 1106.5,-2439.75"/>
+<text text-anchor="start" x="1108.96" y="-2424.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1125.12" y="-2404.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2397.75 1106.5,-2399.75 1297.5,-2399.75 1297.5,-2397.75 1106.5,-2397.75"/>
+<text text-anchor="start" x="1108.96" y="-2382.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1106.5,-2353.25 1106.5,-2377.75 1297.5,-2377.75 1297.5,-2353.25 1106.5,-2353.25"/>
+<text text-anchor="start" x="1163" y="-2360.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_3&#45;&#45;W16 -->
-<g id="edge136" class="edge">
+<g id="edge48" class="edge">
<title>_S_3:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2703C1360.56,-2704.38 1391.15,-2669.13 1525,-2667.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2705C1362.07,-2705.69 1392.66,-2670.44 1525,-2669.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2707C1363.58,-2707 1394.17,-2671.75 1525,-2671.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2709C1365.09,-2708.31 1395.68,-2673.06 1525,-2673.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2711C1366.6,-2709.62 1397.19,-2674.37 1525,-2675.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2743C808.13,-2743.05 829.02,-2739.57 883.95,-2706.56 1005.04,-2637.97 958.65,-2475.85 1105.5,-2470.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2745C808.46,-2745.03 829.35,-2741.55 884.98,-2708.28 1006.96,-2637.42 960.58,-2475.3 1105.5,-2472.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2747C808.79,-2747 829.68,-2743.52 886,-2710 1008.89,-2636.87 962.5,-2474.75 1105.5,-2474.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2749C809.12,-2748.97 830.01,-2745.49 887.02,-2711.72 1010.81,-2636.32 964.42,-2474.2 1105.5,-2476.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2751C809.45,-2750.95 830.34,-2747.46 888.05,-2713.44 1012.73,-2635.77 966.35,-2473.65 1105.5,-2478.75"/>
</g>
<!-- _S_4 -->
-<g id="node30" class="node">
+<g id="node17" class="node">
<title>_S_4</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2658.25 1186.25,-2658.25 1186.25,-2633.75 1231.75,-2633.75 1231.75,-2658.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2633.75 1186.25,-2658.25 1231.75,-2658.25 1231.75,-2633.75 1186.25,-2633.75"/>
-<text text-anchor="start" x="1190.25" y="-2640.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2552.25 696.75,-2552.25 696.75,-2527.75 742.25,-2527.75 742.25,-2552.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2527.75 696.75,-2552.25 742.25,-2552.25 742.25,-2527.75 696.75,-2527.75"/>
+<text text-anchor="start" x="700.75" y="-2534.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_4&#45;&#45;W16 -->
-<g id="edge138" class="edge">
+<g id="edge50" class="edge">
<title>_S_4:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2642C1362.13,-2642.03 1394.58,-2637.78 1525,-2637.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2644C1362.39,-2644.02 1394.84,-2639.77 1525,-2639.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2646C1362.65,-2646 1395.1,-2641.75 1525,-2641.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2648C1362.91,-2647.98 1395.36,-2643.73 1525,-2643.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2650C1363.17,-2649.97 1395.62,-2645.72 1525,-2645.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2536C905.9,-2538.82 935.2,-2443.57 1105.5,-2440.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2538C907.81,-2539.41 937.12,-2444.16 1105.5,-2442.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2540C909.72,-2540 939.03,-2444.75 1105.5,-2444.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2542C911.63,-2540.59 940.94,-2445.34 1105.5,-2446.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2544C913.55,-2541.18 942.85,-2445.93 1105.5,-2448.75"/>
</g>
<!-- _S_5 -->
-<g id="node31" class="node">
+<g id="node18" class="node">
<title>_S_5</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-3018.25 1186.25,-3018.25 1186.25,-2993.75 1231.75,-2993.75 1231.75,-3018.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2993.75 1186.25,-3018.25 1231.75,-3018.25 1231.75,-2993.75 1186.25,-2993.75"/>
-<text text-anchor="start" x="1190.25" y="-3000.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2863.25 696.75,-2863.25 696.75,-2838.75 742.25,-2838.75 742.25,-2863.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2838.75 696.75,-2863.25 742.25,-2863.25 742.25,-2838.75 696.75,-2838.75"/>
+<text text-anchor="start" x="700.75" y="-2845.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W17 -->
+<g id="node39" class="node">
+<title>W17</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1297.5,-2808.75 1106.5,-2808.75 1106.5,-2593.25 1297.5,-2593.25 1297.5,-2808.75"/>
+<polygon fill="none" stroke="black" points="1106.5,-2784.25 1106.5,-2808.75 1297.5,-2808.75 1297.5,-2784.25 1106.5,-2784.25"/>
+<text text-anchor="start" x="1186.62" y="-2791.45" font-family="arial" font-size="14.00">W17</text>
+<polygon fill="none" stroke="black" points="1106.5,-2759.75 1106.5,-2784.25 1129.5,-2784.25 1129.5,-2759.75 1106.5,-2759.75"/>
+<text text-anchor="start" x="1110.5" y="-2766.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1129.5,-2759.75 1129.5,-2784.25 1193,-2784.25 1193,-2759.75 1129.5,-2759.75"/>
+<text text-anchor="start" x="1133.5" y="-2766.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1193,-2759.75 1193,-2784.25 1222.75,-2784.25 1222.75,-2759.75 1193,-2759.75"/>
+<text text-anchor="start" x="1197" y="-2766.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1222.75,-2759.75 1222.75,-2784.25 1297.5,-2784.25 1297.5,-2759.75 1222.75,-2759.75"/>
+<text text-anchor="start" x="1226.75" y="-2766.95" font-family="arial" font-size="14.00">6.0 Inches</text>
+<text text-anchor="start" x="1108.96" y="-2744.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1118.75" y="-2724.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1177.67" y="-2724.45" font-family="arial" font-size="14.00">Swash3:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2717.75 1106.5,-2719.75 1297.5,-2719.75 1297.5,-2717.75 1106.5,-2717.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2715.75 1106.5,-2717.75 1297.5,-2717.75 1297.5,-2715.75 1106.5,-2715.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2713.75 1106.5,-2715.75 1297.5,-2715.75 1297.5,-2713.75 1106.5,-2713.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2711.75 1106.5,-2713.75 1297.5,-2713.75 1297.5,-2711.75 1106.5,-2711.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2709.75 1106.5,-2711.75 1297.5,-2711.75 1297.5,-2709.75 1106.5,-2709.75"/>
+<text text-anchor="start" x="1117.62" y="-2694.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1179.54" y="-2694.45" font-family="arial" font-size="14.00">Swash3:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2687.75 1106.5,-2689.75 1297.5,-2689.75 1297.5,-2687.75 1106.5,-2687.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2685.75 1106.5,-2687.75 1297.5,-2687.75 1297.5,-2685.75 1106.5,-2685.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2683.75 1106.5,-2685.75 1297.5,-2685.75 1297.5,-2683.75 1106.5,-2683.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2681.75 1106.5,-2683.75 1297.5,-2683.75 1297.5,-2681.75 1106.5,-2681.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2679.75 1106.5,-2681.75 1297.5,-2681.75 1297.5,-2679.75 1106.5,-2679.75"/>
+<text text-anchor="start" x="1108.96" y="-2664.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1125.12" y="-2644.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2637.75 1106.5,-2639.75 1297.5,-2639.75 1297.5,-2637.75 1106.5,-2637.75"/>
+<text text-anchor="start" x="1108.96" y="-2622.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1106.5,-2593.25 1106.5,-2617.75 1297.5,-2617.75 1297.5,-2593.25 1106.5,-2593.25"/>
+<text text-anchor="start" x="1163" y="-2600.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_5&#45;&#45;W17 -->
-<g id="edge142" class="edge">
+<g id="edge52" class="edge">
<title>_S_5:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3002C1298.63,-3002.11 1320.5,-2996.82 1382.81,-3027.43 1464.65,-3072.55 1439.38,-3172.73 1525,-3167.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3004C1299.1,-3004.06 1320.97,-2998.76 1381.91,-3029.22 1462.71,-3072.06 1437.45,-3172.24 1525,-3169.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3006C1299.57,-3006 1321.44,-3000.71 1381,-3031 1460.77,-3071.57 1435.51,-3171.75 1525,-3171.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3008C1300.04,-3007.94 1321.91,-3002.65 1380.09,-3032.78 1458.83,-3071.08 1433.57,-3171.26 1525,-3173.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3010C1300.51,-3009.89 1322.38,-3004.6 1379.19,-3034.57 1456.89,-3070.59 1431.63,-3170.77 1525,-3175.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2847C806.61,-2847.14 823.84,-2842.48 884.74,-2822.2 985.79,-2791.14 992.14,-2714.42 1105.5,-2710.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2849C807.14,-2849.07 824.36,-2844.41 885.37,-2824.1 987.78,-2791.3 994.14,-2714.58 1105.5,-2712.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2851C807.66,-2851 824.88,-2846.34 886,-2826 989.78,-2791.47 996.13,-2714.75 1105.5,-2714.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2853C808.18,-2852.93 825.41,-2848.27 886.63,-2827.9 991.77,-2791.63 998.12,-2714.92 1105.5,-2716.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2855C808.71,-2854.86 825.93,-2850.2 887.26,-2829.8 993.76,-2791.8 1000.12,-2715.08 1105.5,-2718.75"/>
</g>
<!-- _S_6 -->
-<g id="node32" class="node">
+<g id="node19" class="node">
<title>_S_6</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2969.25 1186.25,-2969.25 1186.25,-2944.75 1231.75,-2944.75 1231.75,-2969.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2944.75 1186.25,-2969.25 1231.75,-2969.25 1231.75,-2944.75 1186.25,-2944.75"/>
-<text text-anchor="start" x="1190.25" y="-2951.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2698.25 696.75,-2698.25 696.75,-2673.75 742.25,-2673.75 742.25,-2698.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2673.75 696.75,-2698.25 742.25,-2698.25 742.25,-2673.75 696.75,-2673.75"/>
+<text text-anchor="start" x="700.75" y="-2680.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_6&#45;&#45;W17 -->
-<g id="edge144" class="edge">
+<g id="edge54" class="edge">
<title>_S_6:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2953C1298.37,-2953.18 1321.23,-2946.02 1382.93,-2978.49 1468.61,-3029.19 1433.23,-3142.94 1525,-3137.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2955C1298.97,-2955.09 1321.83,-2947.93 1381.96,-2980.25 1466.7,-3028.6 1431.32,-3142.34 1525,-3139.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2957C1299.57,-2957 1322.43,-2949.84 1381,-2982 1464.79,-3028.01 1429.41,-3141.75 1525,-3141.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2959C1300.17,-2958.91 1323.03,-2951.75 1380.04,-2983.75 1462.88,-3027.41 1427.5,-3141.16 1525,-3143.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2961C1300.76,-2960.82 1323.62,-2953.66 1379.07,-2985.51 1460.97,-3026.82 1425.59,-3140.56 1525,-3145.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2682C904.13,-2682 944.37,-2680.75 1105.5,-2680.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2684C904.19,-2684 944.44,-2682.75 1105.5,-2682.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2686C904.25,-2686 944.5,-2684.75 1105.5,-2684.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2688C904.31,-2688 944.56,-2686.75 1105.5,-2686.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2690C904.38,-2690 944.62,-2688.75 1105.5,-2688.75"/>
</g>
<!-- _S_7 -->
-<g id="node33" class="node">
+<g id="node20" class="node">
<title>_S_7</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-3116.25 1186.25,-3116.25 1186.25,-3091.75 1231.75,-3091.75 1231.75,-3116.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-3091.75 1186.25,-3116.25 1231.75,-3116.25 1231.75,-3091.75 1186.25,-3091.75"/>
-<text text-anchor="start" x="1190.25" y="-3098.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2965.25 696.75,-2965.25 696.75,-2940.75 742.25,-2940.75 742.25,-2965.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2940.75 696.75,-2965.25 742.25,-2965.25 742.25,-2940.75 696.75,-2940.75"/>
+<text text-anchor="start" x="700.75" y="-2947.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W18 -->
+<g id="node40" class="node">
+<title>W18</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1305.75,-3048.75 1098.25,-3048.75 1098.25,-2833.25 1305.75,-2833.25 1305.75,-3048.75"/>
+<polygon fill="none" stroke="black" points="1098.25,-3024.25 1098.25,-3048.75 1305.75,-3048.75 1305.75,-3024.25 1098.25,-3024.25"/>
+<text text-anchor="start" x="1186.62" y="-3031.45" font-family="arial" font-size="14.00">W18</text>
+<polygon fill="none" stroke="black" points="1098.25,-2999.75 1098.25,-3024.25 1121.25,-3024.25 1121.25,-2999.75 1098.25,-2999.75"/>
+<text text-anchor="start" x="1102.25" y="-3006.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1121.25,-2999.75 1121.25,-3024.25 1184.75,-3024.25 1184.75,-2999.75 1121.25,-2999.75"/>
+<text text-anchor="start" x="1125.25" y="-3006.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1184.75,-2999.75 1184.75,-3024.25 1214.5,-3024.25 1214.5,-2999.75 1184.75,-2999.75"/>
+<text text-anchor="start" x="1188.75" y="-3006.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1214.5,-2999.75 1214.5,-3024.25 1305.75,-3024.25 1305.75,-2999.75 1214.5,-2999.75"/>
+<text text-anchor="start" x="1218.5" y="-3006.95" font-family="arial" font-size="14.00">170.0 Inches</text>
+<text text-anchor="start" x="1107.46" y="-2984.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1130.75" y="-2964.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1203.17" y="-2964.45" font-family="arial" font-size="14.00">Yaw:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1098.25,-2957.75 1098.25,-2959.75 1305.75,-2959.75 1305.75,-2957.75 1098.25,-2957.75"/>
+<polygon fill="#ffff00" stroke="none" points="1098.25,-2955.75 1098.25,-2957.75 1305.75,-2957.75 1305.75,-2955.75 1098.25,-2955.75"/>
+<polygon fill="#ffff00" stroke="none" points="1098.25,-2953.75 1098.25,-2955.75 1305.75,-2955.75 1305.75,-2953.75 1098.25,-2953.75"/>
+<polygon fill="#ffff00" stroke="none" points="1098.25,-2951.75 1098.25,-2953.75 1305.75,-2953.75 1305.75,-2951.75 1098.25,-2951.75"/>
+<polygon fill="#000000" stroke="none" points="1098.25,-2949.75 1098.25,-2951.75 1305.75,-2951.75 1305.75,-2949.75 1098.25,-2949.75"/>
+<text text-anchor="start" x="1129.62" y="-2934.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1205.04" y="-2934.45" font-family="arial" font-size="14.00">Yaw:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1098.25,-2927.75 1098.25,-2929.75 1305.75,-2929.75 1305.75,-2927.75 1098.25,-2927.75"/>
+<polygon fill="#00ff00" stroke="none" points="1098.25,-2925.75 1098.25,-2927.75 1305.75,-2927.75 1305.75,-2925.75 1098.25,-2925.75"/>
+<polygon fill="#00ff00" stroke="none" points="1098.25,-2923.75 1098.25,-2925.75 1305.75,-2925.75 1305.75,-2923.75 1098.25,-2923.75"/>
+<polygon fill="#00ff00" stroke="none" points="1098.25,-2921.75 1098.25,-2923.75 1305.75,-2923.75 1305.75,-2921.75 1098.25,-2921.75"/>
+<polygon fill="#000000" stroke="none" points="1098.25,-2919.75 1098.25,-2921.75 1305.75,-2921.75 1305.75,-2919.75 1098.25,-2919.75"/>
+<text text-anchor="start" x="1107.46" y="-2904.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1137.12" y="-2884.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1098.25,-2877.75 1098.25,-2879.75 1305.75,-2879.75 1305.75,-2877.75 1098.25,-2877.75"/>
+<text text-anchor="start" x="1107.46" y="-2862.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1098.25,-2833.25 1098.25,-2857.75 1305.75,-2857.75 1305.75,-2833.25 1098.25,-2833.25"/>
+<text text-anchor="start" x="1107.88" y="-2840.45" font-family="arial" font-size="14.00">Twisted Pair | (Tail Mounted?)</text>
</g>
<!-- _S_7&#45;&#45;W18 -->
-<g id="edge148" class="edge">
+<g id="edge56" class="edge">
<title>_S_7:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3100C1297.73,-3100.45 1324.99,-3086.33 1383.34,-3125.76 1503.87,-3217.1 1392.3,-3423.65 1536,-3417.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3102C1298.65,-3102.22 1325.91,-3088.1 1382.17,-3127.38 1502.11,-3216.15 1390.54,-3422.7 1536,-3419.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3104C1299.57,-3104 1326.83,-3089.88 1381,-3129 1500.35,-3215.19 1388.78,-3421.75 1536,-3421.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3106C1300.49,-3105.78 1327.75,-3091.66 1379.83,-3130.62 1498.59,-3214.24 1387.02,-3420.8 1536,-3423.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3108C1301.41,-3107.55 1328.67,-3093.43 1378.66,-3132.24 1496.83,-3213.29 1385.26,-3419.85 1536,-3425.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2949C900.76,-2949 940.09,-2950.75 1097.25,-2950.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2951C900.67,-2951 940,-2952.75 1097.25,-2952.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2953C900.59,-2953 939.91,-2954.75 1097.25,-2954.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2955C900.5,-2955 939.83,-2956.75 1097.25,-2956.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2957C900.41,-2957 939.74,-2958.75 1097.25,-2958.75"/>
</g>
<!-- _S_8 -->
-<g id="node34" class="node">
+<g id="node21" class="node">
<title>_S_8</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-3067.25 1186.25,-3067.25 1186.25,-3042.75 1231.75,-3042.75 1231.75,-3067.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-3042.75 1186.25,-3067.25 1231.75,-3067.25 1231.75,-3042.75 1186.25,-3042.75"/>
-<text text-anchor="start" x="1190.25" y="-3049.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2814.25 696.75,-2814.25 696.75,-2789.75 742.25,-2789.75 742.25,-2814.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2789.75 696.75,-2814.25 742.25,-2814.25 742.25,-2789.75 696.75,-2789.75"/>
+<text text-anchor="start" x="700.75" y="-2796.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_8&#45;&#45;W18 -->
-<g id="edge150" class="edge">
+<g id="edge58" class="edge">
<title>_S_8:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3051C1297.69,-3051.47 1325.45,-3036.66 1383.38,-3076.79 1508.76,-3174.16 1384.75,-3393.72 1536,-3387.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-3053C1298.63,-3053.24 1326.39,-3038.43 1382.19,-3078.39 1507.02,-3173.17 1383.01,-3392.73 1536,-3389.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-3055C1299.57,-3055 1327.33,-3040.19 1381,-3080 1505.28,-3172.19 1381.26,-3391.75 1536,-3391.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-3057C1300.51,-3056.76 1328.28,-3041.96 1379.81,-3081.61 1503.54,-3171.2 1379.52,-3390.77 1536,-3393.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3059C1301.45,-3058.53 1329.22,-3043.72 1378.62,-3083.21 1501.79,-3170.22 1377.78,-3389.78 1536,-3395.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2798C808.95,-2798.21 825.82,-2803.97 887.19,-2823.18 988.69,-2857.37 997.76,-2924.21 1097.25,-2920.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2800C808.31,-2800.11 825.18,-2805.86 886.6,-2825.09 986.71,-2857.64 995.78,-2924.48 1097.25,-2922.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2802C807.66,-2802 824.53,-2807.76 886,-2827 984.73,-2857.91 993.8,-2924.75 1097.25,-2924.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2804C807.01,-2803.89 823.89,-2809.65 885.4,-2828.91 982.75,-2858.18 991.82,-2925.02 1097.25,-2926.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2806C806.37,-2805.79 823.24,-2811.54 884.81,-2830.82 980.76,-2858.44 989.83,-2925.29 1097.25,-2928.75"/>
</g>
<!-- _S_9 -->
-<g id="node35" class="node">
+<g id="node22" class="node">
<title>_S_9</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-1765.25 1186.25,-1765.25 1186.25,-1740.75 1231.75,-1740.75 1231.75,-1765.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-1740.75 1186.25,-1765.25 1231.75,-1765.25 1231.75,-1740.75 1186.25,-1740.75"/>
-<text text-anchor="start" x="1190.25" y="-1747.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-964.25 1179.25,-964.25 1179.25,-939.75 1224.75,-939.75 1224.75,-964.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-939.75 1179.25,-964.25 1224.75,-964.25 1224.75,-939.75 1179.25,-939.75"/>
+<text text-anchor="start" x="1183.25" y="-946.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W7 -->
+<g id="node32" class="node">
+<title>W7</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1847.25,-1046.75 1648,-1046.75 1648,-801.25 1847.25,-801.25 1847.25,-1046.75"/>
+<polygon fill="none" stroke="black" points="1648,-1022.25 1648,-1046.75 1847.25,-1046.75 1847.25,-1022.25 1648,-1022.25"/>
+<text text-anchor="start" x="1736.38" y="-1029.45" font-family="arial" font-size="14.00">W7</text>
+<polygon fill="none" stroke="black" points="1648,-997.75 1648,-1022.25 1671,-1022.25 1671,-997.75 1648,-997.75"/>
+<text text-anchor="start" x="1652" y="-1004.95" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="1671,-997.75 1671,-1022.25 1734.5,-1022.25 1734.5,-997.75 1671,-997.75"/>
+<text text-anchor="start" x="1675" y="-1004.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1734.5,-997.75 1734.5,-1022.25 1764.25,-1022.25 1764.25,-997.75 1734.5,-997.75"/>
+<text text-anchor="start" x="1738.5" y="-1004.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1764.25,-997.75 1764.25,-1022.25 1847.25,-1022.25 1847.25,-997.75 1764.25,-997.75"/>
+<text text-anchor="start" x="1768.25" y="-1004.95" font-family="arial" font-size="14.00">13.0 Inches</text>
+<text text-anchor="start" x="1652.17" y="-982.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1665" y="-962.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1727.46" y="-962.45" font-family="arial" font-size="14.00">CEX:7:CAN_GND</text>
+<polygon fill="#000000" stroke="none" points="1648,-955.75 1648,-957.75 1847.25,-957.75 1847.25,-955.75 1648,-955.75"/>
+<polygon fill="#0066ff" stroke="none" points="1648,-953.75 1648,-955.75 1847.25,-955.75 1847.25,-953.75 1648,-953.75"/>
+<polygon fill="#0066ff" stroke="none" points="1648,-951.75 1648,-953.75 1847.25,-953.75 1847.25,-951.75 1648,-951.75"/>
+<polygon fill="#0066ff" stroke="none" points="1648,-949.75 1648,-951.75 1847.25,-951.75 1847.25,-949.75 1648,-949.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-947.75 1648,-949.75 1847.25,-949.75 1847.25,-947.75 1648,-947.75"/>
+<text text-anchor="start" x="1664.25" y="-932.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1733.46" y="-932.45" font-family="arial" font-size="14.00">CEX:8:CANB_P</text>
+<polygon fill="#000000" stroke="none" points="1648,-925.75 1648,-927.75 1847.25,-927.75 1847.25,-925.75 1648,-925.75"/>
+<polygon fill="#ff0000" stroke="none" points="1648,-923.75 1648,-925.75 1847.25,-925.75 1847.25,-923.75 1648,-923.75"/>
+<polygon fill="#ff0000" stroke="none" points="1648,-921.75 1648,-923.75 1847.25,-923.75 1847.25,-921.75 1648,-921.75"/>
+<polygon fill="#ff0000" stroke="none" points="1648,-919.75 1648,-921.75 1847.25,-921.75 1847.25,-919.75 1648,-919.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-917.75 1648,-919.75 1847.25,-919.75 1847.25,-917.75 1648,-917.75"/>
+<text text-anchor="start" x="1665" y="-902.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1733.46" y="-902.45" font-family="arial" font-size="14.00">CEX:9:CANB_N</text>
+<polygon fill="#000000" stroke="none" points="1648,-895.75 1648,-897.75 1847.25,-897.75 1847.25,-895.75 1648,-895.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-893.75 1648,-895.75 1847.25,-895.75 1847.25,-893.75 1648,-893.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-891.75 1648,-893.75 1847.25,-893.75 1847.25,-891.75 1648,-891.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-889.75 1648,-891.75 1847.25,-891.75 1847.25,-889.75 1648,-889.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-887.75 1648,-889.75 1847.25,-889.75 1847.25,-887.75 1648,-887.75"/>
+<text text-anchor="start" x="1652.17" y="-872.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1671.75" y="-852.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1648,-845.75 1648,-847.75 1847.25,-847.75 1847.25,-845.75 1648,-845.75"/>
+<text text-anchor="start" x="1652.17" y="-830.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1648,-801.25 1648,-825.75 1847.25,-825.75 1847.25,-801.25 1648,-801.25"/>
+<text text-anchor="start" x="1652.75" y="-808.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to CEX</text>
</g>
<!-- _S_9&#45;&#45;W7 -->
-<g id="edge34" class="edge">
+<g id="edge26" class="edge">
<title>_S_9:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-1749C1360.54,-1750.23 1391.43,-1717.98 1525,-1716.75"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1232.75,-1751C1361.98,-1751.62 1392.88,-1719.37 1525,-1718.75"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1232.75,-1753C1363.43,-1753 1394.32,-1720.75 1525,-1720.75"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1232.75,-1755C1364.87,-1754.38 1395.77,-1722.13 1525,-1722.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-1757C1366.32,-1755.77 1397.21,-1723.52 1525,-1724.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-948C1413.04,-948 1459.84,-948.75 1647,-948.75"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1225.75,-950C1413,-950 1459.81,-950.75 1647,-950.75"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1225.75,-952C1412.97,-952 1459.78,-952.75 1647,-952.75"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1225.75,-954C1412.94,-954 1459.75,-954.75 1647,-954.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-956C1412.91,-956 1459.71,-956.75 1647,-956.75"/>
</g>
<!-- _S_10 -->
-<g id="node36" class="node">
+<g id="node23" class="node">
<title>_S_10</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2330.25 1186.25,-2330.25 1186.25,-2305.75 1231.75,-2305.75 1231.75,-2330.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2305.75 1186.25,-2330.25 1231.75,-2330.25 1231.75,-2305.75 1186.25,-2305.75"/>
-<text text-anchor="start" x="1190.25" y="-2312.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1529.25 1179.25,-1529.25 1179.25,-1504.75 1224.75,-1504.75 1224.75,-1529.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1504.75 1179.25,-1529.25 1224.75,-1529.25 1224.75,-1504.75 1179.25,-1504.75"/>
+<text text-anchor="start" x="1183.25" y="-1511.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_10&#45;&#45;W7 -->
-<g id="edge36" class="edge">
+<g id="edge28" class="edge">
<title>_S_10:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2314C1301.71,-2314.62 1334.32,-2335.24 1378.27,-2290.08 1578.95,-2107.59 1246.67,-1693.25 1525,-1686.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1232.75,-2316C1300.64,-2316.31 1333.25,-2336.93 1379.63,-2291.54 1580.51,-2106.34 1248.23,-1692 1525,-1688.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1232.75,-2318C1299.57,-2318 1332.18,-2338.62 1381,-2293 1582.07,-2105.09 1249.79,-1690.75 1525,-1690.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1232.75,-2320C1298.5,-2319.69 1331.11,-2340.31 1382.37,-2294.46 1583.63,-2103.84 1251.35,-1689.5 1525,-1692.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2322C1297.43,-2321.38 1330.04,-2342 1383.73,-2295.92 1585.19,-2102.58 1252.91,-1688.25 1525,-1694.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1513C1294.63,-1513.57 1325.32,-1532.05 1371.4,-1488.96 1583.61,-1311.43 1362.94,-924.73 1647,-918.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1225.75,-1515C1293.6,-1515.29 1324.29,-1533.76 1372.7,-1490.48 1585.34,-1310.43 1364.67,-923.74 1647,-920.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1225.75,-1517C1292.57,-1517 1323.26,-1535.47 1374,-1492 1587.08,-1309.44 1366.41,-922.75 1647,-922.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1225.75,-1519C1291.54,-1518.71 1322.23,-1537.19 1375.3,-1493.52 1588.82,-1308.45 1368.15,-921.76 1647,-924.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1521C1290.51,-1520.43 1321.19,-1538.9 1376.6,-1495.04 1590.56,-1307.46 1369.88,-920.77 1647,-926.75"/>
</g>
<!-- _S_11 -->
-<g id="node37" class="node">
+<g id="node24" class="node">
<title>_S_11</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2281.25 1186.25,-2281.25 1186.25,-2256.75 1231.75,-2256.75 1231.75,-2281.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2256.75 1186.25,-2281.25 1231.75,-2281.25 1231.75,-2256.75 1186.25,-2256.75"/>
-<text text-anchor="start" x="1190.25" y="-2263.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1013.25 1179.25,-1013.25 1179.25,-988.75 1224.75,-988.75 1224.75,-1013.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-988.75 1179.25,-1013.25 1224.75,-1013.25 1224.75,-988.75 1179.25,-988.75"/>
+<text text-anchor="start" x="1183.25" y="-995.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_11&#45;&#45;W7 -->
-<g id="edge38" class="edge">
+<g id="edge30" class="edge">
<title>_S_11:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2265C1301.69,-2265.65 1334.12,-2286.9 1378.29,-2242.06 1574.49,-2066.21 1254.43,-1663.24 1525,-1656.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2267C1300.59,-2267.33 1333.02,-2288.57 1379.64,-2243.53 1576.06,-2064.96 1256,-1661.99 1525,-1658.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2269C1299.5,-2269 1331.93,-2290.24 1381,-2245 1577.62,-2063.72 1257.56,-1660.75 1525,-1660.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2271C1298.4,-2270.67 1330.83,-2291.92 1382.36,-2246.47 1579.19,-2062.48 1259.13,-1659.51 1525,-1662.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2273C1297.3,-2272.35 1329.74,-2293.59 1383.71,-2247.94 1580.75,-2061.23 1260.69,-1658.26 1525,-1664.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-997C1290.54,-997.55 1306.93,-987.89 1373.08,-972.11 1493.78,-945.35 1516.46,-891.2 1647,-888.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-999C1291.55,-999.28 1307.95,-989.61 1373.54,-974.05 1495.62,-946.12 1518.31,-891.98 1647,-890.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1001C1292.57,-1001 1308.96,-991.33 1374,-976 1497.46,-946.89 1520.15,-892.75 1647,-892.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1003C1293.59,-1002.72 1309.98,-993.06 1374.46,-977.95 1499.31,-947.67 1522,-893.52 1647,-894.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1005C1294.6,-1004.45 1311,-994.78 1374.92,-979.89 1501.15,-948.44 1523.84,-894.3 1647,-896.75"/>
</g>
<!-- _S_12 -->
-<g id="node38" class="node">
+<g id="node25" class="node">
<title>_S_12</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2428.25 1186.25,-2428.25 1186.25,-2403.75 1231.75,-2403.75 1231.75,-2428.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2403.75 1186.25,-2428.25 1231.75,-2428.25 1231.75,-2403.75 1186.25,-2403.75"/>
-<text text-anchor="start" x="1190.25" y="-2410.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1627.25 1179.25,-1627.25 1179.25,-1602.75 1224.75,-1602.75 1224.75,-1627.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1602.75 1179.25,-1627.25 1224.75,-1627.25 1224.75,-1602.75 1179.25,-1602.75"/>
+<text text-anchor="start" x="1183.25" y="-1609.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W12 -->
+<g id="node35" class="node">
+<title>W12</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1847.25,-1723.75 1648,-1723.75 1648,-1508.25 1847.25,-1508.25 1847.25,-1723.75"/>
+<polygon fill="none" stroke="black" points="1648,-1699.25 1648,-1723.75 1847.25,-1723.75 1847.25,-1699.25 1648,-1699.25"/>
+<text text-anchor="start" x="1732.25" y="-1706.45" font-family="arial" font-size="14.00">W12</text>
+<polygon fill="none" stroke="black" points="1648,-1674.75 1648,-1699.25 1671,-1699.25 1671,-1674.75 1648,-1674.75"/>
+<text text-anchor="start" x="1652" y="-1681.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1671,-1674.75 1671,-1699.25 1734.5,-1699.25 1734.5,-1674.75 1671,-1674.75"/>
+<text text-anchor="start" x="1675" y="-1681.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1734.5,-1674.75 1734.5,-1699.25 1764.25,-1699.25 1764.25,-1674.75 1734.5,-1674.75"/>
+<text text-anchor="start" x="1738.5" y="-1681.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1764.25,-1674.75 1764.25,-1699.25 1847.25,-1699.25 1847.25,-1674.75 1764.25,-1674.75"/>
+<text text-anchor="start" x="1768.25" y="-1681.95" font-family="arial" font-size="14.00">73.0 Inches</text>
+<text text-anchor="start" x="1654.33" y="-1659.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1671.88" y="-1639.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1738.54" y="-1639.45" font-family="arial" font-size="14.00">Radar:2:CAN_H</text>
+<polygon fill="#000000" stroke="none" points="1648,-1632.75 1648,-1634.75 1847.25,-1634.75 1847.25,-1632.75 1648,-1632.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1630.75 1648,-1632.75 1847.25,-1632.75 1847.25,-1630.75 1648,-1630.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1628.75 1648,-1630.75 1847.25,-1630.75 1847.25,-1628.75 1648,-1628.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1626.75 1648,-1628.75 1847.25,-1628.75 1847.25,-1626.75 1648,-1626.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1624.75 1648,-1626.75 1847.25,-1626.75 1847.25,-1624.75 1648,-1624.75"/>
+<text text-anchor="start" x="1670.75" y="-1609.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1739.29" y="-1609.45" font-family="arial" font-size="14.00">Radar:1:CAN_L</text>
+<polygon fill="#000000" stroke="none" points="1648,-1602.75 1648,-1604.75 1847.25,-1604.75 1847.25,-1602.75 1648,-1602.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1600.75 1648,-1602.75 1847.25,-1602.75 1847.25,-1600.75 1648,-1600.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1598.75 1648,-1600.75 1847.25,-1600.75 1847.25,-1598.75 1648,-1598.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1596.75 1648,-1598.75 1847.25,-1598.75 1847.25,-1596.75 1648,-1596.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1594.75 1648,-1596.75 1847.25,-1596.75 1847.25,-1594.75 1648,-1594.75"/>
+<text text-anchor="start" x="1654.33" y="-1579.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1678.25" y="-1559.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1648,-1552.75 1648,-1554.75 1847.25,-1554.75 1847.25,-1552.75 1648,-1552.75"/>
+<text text-anchor="start" x="1654.33" y="-1537.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1648,-1508.25 1648,-1532.75 1847.25,-1532.75 1847.25,-1508.25 1648,-1508.25"/>
+<text text-anchor="start" x="1708.62" y="-1515.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_12&#45;&#45;W12 -->
-<g id="edge120" class="edge">
+<g id="edge36" class="edge">
<title>_S_12:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2412C1301.05,-2412.28 1325.36,-2421.95 1378.92,-2387.58 1472.15,-2334.88 1416.8,-2193.21 1531.5,-2187.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2414C1300.31,-2414.14 1324.62,-2423.81 1379.96,-2389.29 1474.01,-2334.15 1418.66,-2192.48 1531.5,-2189.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2416C1299.57,-2416 1323.88,-2425.67 1381,-2391 1475.87,-2333.42 1420.52,-2191.75 1531.5,-2191.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2418C1298.83,-2417.86 1323.14,-2427.53 1382.04,-2392.71 1477.74,-2332.69 1422.38,-2191.02 1531.5,-2193.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2420C1298.09,-2419.72 1322.4,-2429.38 1383.08,-2394.42 1479.6,-2331.97 1424.25,-2190.29 1531.5,-2195.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1611C1414.29,-1611.19 1460.87,-1625.94 1647,-1625.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1613C1413.69,-1613.09 1460.27,-1627.84 1647,-1627.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1615C1413.09,-1615 1459.66,-1629.75 1647,-1629.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1617C1412.48,-1616.91 1459.06,-1631.66 1647,-1631.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1619C1411.88,-1618.81 1458.46,-1633.56 1647,-1633.75"/>
</g>
<!-- _S_13 -->
-<g id="node39" class="node">
+<g id="node26" class="node">
<title>_S_13</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2379.25 1186.25,-2379.25 1186.25,-2354.75 1231.75,-2354.75 1231.75,-2379.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2354.75 1186.25,-2379.25 1231.75,-2379.25 1231.75,-2354.75 1186.25,-2354.75"/>
-<text text-anchor="start" x="1190.25" y="-2361.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1480.25 1179.25,-1480.25 1179.25,-1455.75 1224.75,-1455.75 1224.75,-1480.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1455.75 1179.25,-1480.25 1224.75,-1480.25 1224.75,-1455.75 1179.25,-1455.75"/>
+<text text-anchor="start" x="1183.25" y="-1462.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_13&#45;&#45;W12 -->
-<g id="edge122" class="edge">
+<g id="edge38" class="edge">
<title>_S_13:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2363C1300.9,-2363.23 1324.38,-2371.49 1379.01,-2338.53 1467.73,-2291.35 1423.36,-2163.06 1531.5,-2157.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2365C1300.23,-2365.11 1323.71,-2373.38 1380,-2340.27 1469.62,-2290.7 1425.25,-2162.4 1531.5,-2159.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2367C1299.57,-2367 1323.05,-2375.26 1381,-2342 1471.51,-2290.05 1427.14,-2161.75 1531.5,-2161.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2369C1298.91,-2368.89 1322.39,-2377.15 1382,-2343.73 1473.4,-2289.39 1429.03,-2161.1 1531.5,-2163.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2371C1298.24,-2370.77 1321.72,-2379.04 1382.99,-2345.47 1475.29,-2288.74 1430.92,-2160.44 1531.5,-2165.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1464C1294.12,-1464.31 1311.15,-1471.5 1375.07,-1489.14 1503.45,-1526.81 1520.61,-1598.82 1647,-1595.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1466C1293.35,-1466.16 1310.38,-1473.34 1374.53,-1491.07 1501.51,-1527.27 1518.67,-1599.29 1647,-1597.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1468C1292.57,-1468 1309.6,-1475.18 1374,-1493 1499.56,-1527.74 1516.72,-1599.75 1647,-1599.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1470C1291.79,-1469.84 1308.82,-1477.03 1373.47,-1494.93 1497.62,-1528.2 1514.77,-1600.21 1647,-1601.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1472C1291.01,-1471.69 1308.05,-1478.87 1372.93,-1496.86 1495.67,-1528.66 1512.83,-1600.68 1647,-1603.75"/>
</g>
<!-- _S_14 -->
-<g id="node40" class="node">
+<g id="node27" class="node">
<title>_S_14</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2526.25 1186.25,-2526.25 1186.25,-2501.75 1231.75,-2501.75 1231.75,-2526.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2501.75 1186.25,-2526.25 1231.75,-2526.25 1231.75,-2501.75 1186.25,-2501.75"/>
-<text text-anchor="start" x="1190.25" y="-2508.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1578.25 1179.25,-1578.25 1179.25,-1553.75 1224.75,-1553.75 1224.75,-1578.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1553.75 1179.25,-1578.25 1224.75,-1578.25 1224.75,-1553.75 1179.25,-1553.75"/>
+<text text-anchor="start" x="1183.25" y="-1560.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W11 -->
+<g id="node34" class="node">
+<title>W11</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1847.25,-1286.75 1648,-1286.75 1648,-1071.25 1847.25,-1071.25 1847.25,-1286.75"/>
+<polygon fill="none" stroke="black" points="1648,-1262.25 1648,-1286.75 1847.25,-1286.75 1847.25,-1262.25 1648,-1262.25"/>
+<text text-anchor="start" x="1732.25" y="-1269.45" font-family="arial" font-size="14.00">W11</text>
+<polygon fill="none" stroke="black" points="1648,-1237.75 1648,-1262.25 1671,-1262.25 1671,-1237.75 1648,-1237.75"/>
+<text text-anchor="start" x="1652" y="-1244.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1671,-1237.75 1671,-1262.25 1734.5,-1262.25 1734.5,-1237.75 1671,-1237.75"/>
+<text text-anchor="start" x="1675" y="-1244.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1734.5,-1237.75 1734.5,-1262.25 1764.25,-1262.25 1764.25,-1237.75 1734.5,-1237.75"/>
+<text text-anchor="start" x="1738.5" y="-1244.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1764.25,-1237.75 1764.25,-1262.25 1847.25,-1262.25 1847.25,-1237.75 1764.25,-1237.75"/>
+<text text-anchor="start" x="1768.25" y="-1244.95" font-family="arial" font-size="14.00">73.0 Inches</text>
+<text text-anchor="start" x="1651.83" y="-1222.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1664.38" y="-1202.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1726.04" y="-1202.45" font-family="arial" font-size="14.00">Resistor:2:CAN_H</text>
+<polygon fill="#000000" stroke="none" points="1648,-1195.75 1648,-1197.75 1847.25,-1197.75 1847.25,-1195.75 1648,-1195.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1193.75 1648,-1195.75 1847.25,-1195.75 1847.25,-1193.75 1648,-1193.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1191.75 1648,-1193.75 1847.25,-1193.75 1847.25,-1191.75 1648,-1191.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1189.75 1648,-1191.75 1847.25,-1191.75 1847.25,-1189.75 1648,-1189.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1187.75 1648,-1189.75 1847.25,-1189.75 1847.25,-1187.75 1648,-1187.75"/>
+<text text-anchor="start" x="1663.25" y="-1172.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1726.79" y="-1172.45" font-family="arial" font-size="14.00">Resistor:1:CAN_L</text>
+<polygon fill="#000000" stroke="none" points="1648,-1165.75 1648,-1167.75 1847.25,-1167.75 1847.25,-1165.75 1648,-1165.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1163.75 1648,-1165.75 1847.25,-1165.75 1847.25,-1163.75 1648,-1163.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1161.75 1648,-1163.75 1847.25,-1163.75 1847.25,-1161.75 1648,-1161.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1159.75 1648,-1161.75 1847.25,-1161.75 1847.25,-1159.75 1648,-1159.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1157.75 1648,-1159.75 1847.25,-1159.75 1847.25,-1157.75 1648,-1157.75"/>
+<text text-anchor="start" x="1651.83" y="-1142.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1670.75" y="-1122.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1648,-1115.75 1648,-1117.75 1847.25,-1117.75 1847.25,-1115.75 1648,-1115.75"/>
+<text text-anchor="start" x="1651.83" y="-1100.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1648,-1071.25 1648,-1095.75 1847.25,-1095.75 1847.25,-1071.25 1648,-1071.25"/>
+<text text-anchor="start" x="1708.62" y="-1078.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_14&#45;&#45;W11 -->
-<g id="edge114" class="edge">
+<g id="edge32" class="edge">
<title>_S_14:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2510C1298.05,-2510.3 1315.13,-2503.3 1379.92,-2485.15 1443.43,-2469.56 1452.23,-2430.86 1525,-2427.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2512C1298.81,-2512.15 1315.89,-2505.15 1380.46,-2487.07 1445.38,-2470 1454.18,-2431.31 1525,-2429.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2514C1299.57,-2514 1316.65,-2507 1381,-2489 1447.33,-2470.45 1456.13,-2431.75 1525,-2431.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2516C1300.33,-2515.85 1317.41,-2508.85 1381.54,-2490.93 1449.28,-2470.89 1458.08,-2432.19 1525,-2433.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2518C1301.09,-2517.7 1318.17,-2510.7 1382.08,-2492.85 1451.23,-2471.34 1460.03,-2432.64 1525,-2435.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1562C1293.99,-1562.26 1317.99,-1571.42 1371.96,-1537.56 1539.29,-1441.88 1446.59,-1194.15 1647,-1188.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1564C1293.28,-1564.13 1317.28,-1573.28 1372.98,-1539.28 1541.16,-1441.18 1448.46,-1193.45 1647,-1190.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1566C1292.57,-1566 1316.57,-1575.15 1374,-1541 1543.04,-1440.48 1450.33,-1192.75 1647,-1192.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1568C1291.86,-1567.87 1315.86,-1577.02 1375.02,-1542.72 1544.91,-1439.78 1452.21,-1192.05 1647,-1194.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1570C1291.14,-1569.74 1315.14,-1578.89 1376.04,-1544.44 1546.78,-1439.08 1454.08,-1191.35 1647,-1196.75"/>
</g>
<!-- _S_15 -->
-<g id="node41" class="node">
+<g id="node28" class="node">
<title>_S_15</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2477.25 1186.25,-2477.25 1186.25,-2452.75 1231.75,-2452.75 1231.75,-2477.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2452.75 1186.25,-2477.25 1231.75,-2477.25 1231.75,-2452.75 1186.25,-2452.75"/>
-<text text-anchor="start" x="1190.25" y="-2459.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1062.25 1179.25,-1062.25 1179.25,-1037.75 1224.75,-1037.75 1224.75,-1062.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1037.75 1179.25,-1062.25 1224.75,-1062.25 1224.75,-1037.75 1179.25,-1037.75"/>
+<text text-anchor="start" x="1183.25" y="-1044.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_15&#45;&#45;W11 -->
-<g id="edge116" class="edge">
+<g id="edge34" class="edge">
<title>_S_15:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2461C1297.34,-2461.68 1313.46,-2450.83 1380.15,-2436.09 1442.2,-2424.08 1455.26,-2399.85 1525,-2397.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2463C1298.45,-2463.34 1314.58,-2452.49 1380.58,-2438.05 1443.96,-2425.03 1457.02,-2400.8 1525,-2399.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2465C1299.57,-2465 1315.7,-2454.15 1381,-2440 1445.72,-2425.98 1458.78,-2401.75 1525,-2401.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2467C1300.69,-2466.66 1316.81,-2455.81 1381.42,-2441.95 1447.48,-2426.93 1460.54,-2402.7 1525,-2403.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2469C1301.8,-2468.32 1317.93,-2457.47 1381.85,-2443.91 1449.24,-2427.88 1462.3,-2403.65 1525,-2405.75"/>
-</g>
-<!-- _GND_14 -->
-<g id="node42" class="node">
-<title>_GND_14</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-3165.25 1189.25,-3165.25 1189.25,-3140.75 1228.75,-3140.75 1228.75,-3165.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-3140.75 1189.25,-3165.25 1228.75,-3165.25 1228.75,-3140.75 1189.25,-3140.75"/>
-<text text-anchor="start" x="1193.25" y="-3147.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_15 -->
-<g id="node43" class="node">
-<title>_GND_15</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-3197.25 2162.88,-3197.25 2162.88,-3172.75 2202.38,-3172.75 2202.38,-3197.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-3172.75 2162.88,-3197.25 2202.38,-3197.25 2202.38,-3172.75 2162.88,-3172.75"/>
-<text text-anchor="start" x="2166.88" y="-3179.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_16 -->
-<g id="node44" class="node">
-<title>_GND_16</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-2533.25 2162.88,-2533.25 2162.88,-2508.75 2202.38,-2508.75 2202.38,-2533.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-2508.75 2162.88,-2533.25 2202.38,-2533.25 2202.38,-2508.75 2162.88,-2508.75"/>
-<text text-anchor="start" x="2166.88" y="-2515.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_17 -->
-<g id="node45" class="node">
-<title>_GND_17</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-3367.25 2162.88,-3367.25 2162.88,-3342.75 2202.38,-3342.75 2202.38,-3367.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-3342.75 2162.88,-3367.25 2202.38,-3367.25 2202.38,-3342.75 2162.88,-3342.75"/>
-<text text-anchor="start" x="2166.88" y="-3349.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_18 -->
-<g id="node46" class="node">
-<title>_GND_18</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-2703.25 2162.88,-2703.25 2162.88,-2678.75 2202.38,-2678.75 2202.38,-2703.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-2678.75 2162.88,-2703.25 2202.38,-2703.25 2202.38,-2678.75 2162.88,-2678.75"/>
-<text text-anchor="start" x="2166.88" y="-2685.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_19 -->
-<g id="node47" class="node">
-<title>_GND_19</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-1139.25 2162.88,-1139.25 2162.88,-1114.75 2202.38,-1114.75 2202.38,-1139.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-1114.75 2162.88,-1139.25 2202.38,-1139.25 2202.38,-1114.75 2162.88,-1114.75"/>
-<text text-anchor="start" x="2166.88" y="-1121.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_20 -->
-<g id="node48" class="node">
-<title>_GND_20</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-2363.25 2162.88,-2363.25 2162.88,-2338.75 2202.38,-2338.75 2202.38,-2363.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-2338.75 2162.88,-2363.25 2202.38,-2363.25 2202.38,-2338.75 2162.88,-2338.75"/>
-<text text-anchor="start" x="2166.88" y="-2345.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_21 -->
-<g id="node49" class="node">
-<title>_GND_21</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-1781.25 2162.88,-1781.25 2162.88,-1756.75 2202.38,-1756.75 2202.38,-1781.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-1756.75 2162.88,-1781.25 2202.38,-1781.25 2202.38,-1756.75 2162.88,-1756.75"/>
-<text text-anchor="start" x="2166.88" y="-1763.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_22 -->
-<g id="node50" class="node">
-<title>_GND_22</title>
-<polygon fill="#ffffff" stroke="black" points="224.25,-3138.25 184.75,-3138.25 184.75,-3113.75 224.25,-3113.75 224.25,-3138.25"/>
-<polygon fill="none" stroke="black" points="184.75,-3113.75 184.75,-3138.25 224.25,-3138.25 224.25,-3113.75 184.75,-3113.75"/>
-<text text-anchor="start" x="188.75" y="-3120.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_22&#45;&#45;W3 -->
-<g id="edge18" class="edge">
-<title>_GND_22:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-3126C373.36,-3126 410.39,-3125.75 558.5,-3125.75"/>
-</g>
-<!-- _GND_23 -->
-<g id="node51" class="node">
-<title>_GND_23</title>
-<polygon fill="#ffffff" stroke="black" points="224.25,-2825.25 184.75,-2825.25 184.75,-2800.75 224.25,-2800.75 224.25,-2825.25"/>
-<polygon fill="none" stroke="black" points="184.75,-2800.75 184.75,-2825.25 224.25,-2825.25 224.25,-2800.75 184.75,-2800.75"/>
-<text text-anchor="start" x="188.75" y="-2807.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_23&#45;&#45;W1 -->
-<g id="edge12" class="edge">
-<title>_GND_23:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-2813C371.81,-2813 408.44,-2812.75 555,-2812.75"/>
-</g>
-<!-- _GND_24 -->
-<g id="node52" class="node">
-<title>_GND_24</title>
-<polygon fill="#ffffff" stroke="black" points="224.25,-2292.25 184.75,-2292.25 184.75,-2267.75 224.25,-2267.75 224.25,-2292.25"/>
-<polygon fill="none" stroke="black" points="184.75,-2267.75 184.75,-2292.25 224.25,-2292.25 224.25,-2267.75 184.75,-2267.75"/>
-<text text-anchor="start" x="188.75" y="-2274.95" font-family="arial" font-size="14.00">GND</text>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1046C1294.28,-1046.42 1310.91,-1054.72 1374.94,-1070.11 1501.76,-1102.64 1523.17,-1161.38 1647,-1158.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1048C1293.39,-1048.21 1310.02,-1056.51 1374.47,-1072.06 1499.88,-1103.32 1521.3,-1162.07 1647,-1160.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1050C1292.5,-1050 1309.13,-1058.3 1374,-1074 1498.01,-1104.01 1519.42,-1162.75 1647,-1162.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1052C1291.6,-1051.79 1308.23,-1060.09 1373.53,-1075.94 1496.13,-1104.69 1517.54,-1163.43 1647,-1164.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1054C1290.71,-1053.58 1307.34,-1061.88 1373.06,-1077.89 1494.25,-1105.38 1515.66,-1164.12 1647,-1166.75"/>
</g>
-<!-- _GND_24&#45;&#45;W6 -->
-<g id="edge33" class="edge">
-<title>_GND_24:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-2280C370.92,-2280 407.33,-2279.75 553,-2279.75"/>
-</g>
-<!-- W1&#45;&#45;shield2 -->
-<g id="edge11" class="edge">
-<title>W1:e&#45;&#45;shield2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2812.75C1016.15,-2812.75 1042.73,-2761.5 1167.88,-2761.5"/>
+<!-- W1 -->
+<g id="node29" class="node">
+<title>W1</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="292.12,-2935.75 116.88,-2935.75 116.88,-2720.25 292.12,-2720.25 292.12,-2935.75"/>
+<polygon fill="none" stroke="black" points="116.88,-2911.25 116.88,-2935.75 292.12,-2935.75 292.12,-2911.25 116.88,-2911.25"/>
+<text text-anchor="start" x="193.25" y="-2918.45" font-family="arial" font-size="14.00">W1</text>
+<polygon fill="none" stroke="black" points="116.88,-2886.75 116.88,-2911.25 139.88,-2911.25 139.88,-2886.75 116.88,-2886.75"/>
+<text text-anchor="start" x="120.88" y="-2893.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="139.88,-2886.75 139.88,-2911.25 203.38,-2911.25 203.38,-2886.75 139.88,-2886.75"/>
+<text text-anchor="start" x="143.88" y="-2893.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="203.38,-2886.75 203.38,-2911.25 233.12,-2911.25 233.12,-2886.75 203.38,-2886.75"/>
+<text text-anchor="start" x="207.38" y="-2893.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="233.12,-2886.75 233.12,-2911.25 292.12,-2911.25 292.12,-2886.75 233.12,-2886.75"/>
+<text text-anchor="start" x="237.12" y="-2893.95" font-family="arial" font-size="14.00">1.0 Inch</text>
+<text text-anchor="start" x="132.38" y="-2871.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="167.38" y="-2851.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="116.88,-2844.75 116.88,-2846.75 292.12,-2846.75 292.12,-2844.75 116.88,-2844.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2842.75 116.88,-2844.75 292.12,-2844.75 292.12,-2842.75 116.88,-2842.75"/>
+<polygon fill="#ffffff" stroke="none" points="116.88,-2840.75 116.88,-2842.75 292.12,-2842.75 292.12,-2840.75 116.88,-2840.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2838.75 116.88,-2840.75 292.12,-2840.75 292.12,-2838.75 116.88,-2838.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2836.75 116.88,-2838.75 292.12,-2838.75 292.12,-2836.75 116.88,-2836.75"/>
+<text text-anchor="start" x="169.62" y="-2821.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="116.88,-2814.75 116.88,-2816.75 292.12,-2816.75 292.12,-2814.75 116.88,-2814.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2812.75 116.88,-2814.75 292.12,-2814.75 292.12,-2812.75 116.88,-2812.75"/>
+<polygon fill="#895956" stroke="none" points="116.88,-2810.75 116.88,-2812.75 292.12,-2812.75 292.12,-2810.75 116.88,-2810.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2808.75 116.88,-2810.75 292.12,-2810.75 292.12,-2808.75 116.88,-2808.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2806.75 116.88,-2808.75 292.12,-2808.75 292.12,-2806.75 116.88,-2806.75"/>
+<text text-anchor="start" x="132.38" y="-2791.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="186.12" y="-2771.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="116.88,-2764.75 116.88,-2766.75 292.12,-2766.75 292.12,-2764.75 116.88,-2764.75"/>
+<text text-anchor="start" x="132.38" y="-2749.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="116.88,-2720.25 116.88,-2744.75 292.12,-2744.75 292.12,-2720.25 116.88,-2720.25"/>
+<text text-anchor="start" x="165.5" y="-2727.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- W1&#45;&#45;_S_1 -->
-<g id="edge3" class="edge">
+<g id="edge1" class="edge">
<title>W1:e&#45;&#45;_S_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C1024.11,-2885.32 1056.25,-2904.57 1185.25,-2904"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C1023.09,-2887.03 1055.22,-2906.28 1185.25,-2906"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C1022.06,-2888.75 1054.19,-2908 1185.25,-2908"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C1021.03,-2890.47 1053.16,-2909.72 1185.25,-2910"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C1020,-2892.18 1052.14,-2911.43 1185.25,-2912"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C527.38,-2842.45 469.37,-3168.7 695.75,-3164"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C525.41,-2842.1 467.4,-3168.35 695.75,-3166"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C523.44,-2841.75 465.43,-3168 695.75,-3168"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C521.47,-2841.4 463.46,-3167.65 695.75,-3170"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C519.5,-2841.05 461.49,-3167.3 695.75,-3172"/>
</g>
<!-- W1&#45;&#45;_S_2 -->
-<g id="edge4" class="edge">
+<g id="edge2" class="edge">
<title>W1:e&#45;&#45;_S_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C1021.81,-2854.75 1054.5,-2855 1185.25,-2855"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C1021.79,-2856.75 1054.49,-2857 1185.25,-2857"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C1021.78,-2858.75 1054.47,-2859 1185.25,-2859"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C1021.76,-2860.75 1054.46,-2861 1185.25,-2861"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C1021.75,-2862.75 1054.44,-2863 1185.25,-2863"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C480.33,-2810.29 515.99,-2901.54 695.75,-2899"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C478.47,-2811.02 514.13,-2902.27 695.75,-2901"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C476.61,-2811.75 512.27,-2903 695.75,-2903"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C474.74,-2812.48 510.4,-2903.73 695.75,-2905"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C472.88,-2813.21 508.54,-2904.46 695.75,-2907"/>
</g>
<!-- W1&#45;&#45;_S_3 -->
-<g id="edge5" class="edge">
+<g id="edge3" class="edge">
<title>W1:e&#45;&#45;_S_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C980.74,-2889.82 951.11,-2783.12 1035.07,-2733.49 1096.35,-2700.66 1118.45,-2703.02 1185.25,-2703"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C982.66,-2889.29 953.04,-2782.58 1036.04,-2735.25 1096.14,-2702.65 1118.24,-2705.01 1185.25,-2705"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C984.59,-2888.75 954.96,-2782.05 1037,-2737 1095.92,-2704.64 1118.03,-2707 1185.25,-2707"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C986.52,-2888.21 956.89,-2781.51 1037.96,-2738.75 1095.71,-2706.63 1117.81,-2708.99 1185.25,-2709"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C988.45,-2887.68 958.82,-2780.98 1038.93,-2740.51 1095.5,-2708.62 1117.6,-2710.98 1185.25,-2711"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C473.2,-2840.37 508.16,-2745.62 695.75,-2743"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C475.08,-2841.06 510.04,-2746.31 695.75,-2745"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C476.96,-2841.75 511.92,-2747 695.75,-2747"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C478.83,-2842.44 513.79,-2747.69 695.75,-2749"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C480.71,-2843.13 515.67,-2748.38 695.75,-2751"/>
</g>
<!-- W1&#45;&#45;_S_4 -->
-<g id="edge6" class="edge">
+<g id="edge4" class="edge">
<title>W1:e&#45;&#45;_S_4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C988.76,-2860.04 947.24,-2738.33 1034.87,-2679.61 1094.35,-2642.87 1117.19,-2642 1185.25,-2642"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C990.65,-2859.4 949.13,-2737.68 1035.94,-2681.31 1094.42,-2644.87 1117.26,-2644 1185.25,-2644"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C992.55,-2858.75 951.02,-2737.03 1037,-2683 1094.5,-2646.86 1117.34,-2646 1185.25,-2646"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C994.44,-2858.1 952.92,-2736.39 1038.06,-2684.69 1094.57,-2648.86 1117.42,-2648 1185.25,-2648"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C996.33,-2857.46 954.81,-2735.74 1039.13,-2686.39 1094.65,-2650.86 1117.49,-2650 1185.25,-2650"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C505.04,-2812.18 475.88,-2540.43 695.75,-2536"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C507.03,-2811.96 477.87,-2540.21 695.75,-2538"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C509.01,-2811.75 479.86,-2540 695.75,-2540"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C511,-2811.54 481.85,-2539.79 695.75,-2542"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C512.99,-2811.32 483.84,-2539.57 695.75,-2544"/>
</g>
<!-- W1&#45;&#45;_S_5 -->
-<g id="edge7" class="edge">
+<g id="edge5" class="edge">
<title>W1:e&#45;&#45;_S_5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C971.75,-2888.9 969.3,-2953.73 1038.43,-2977.26 1099.65,-3000.88 1118.67,-3002.01 1185.25,-3002"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C969.76,-2888.83 967.31,-2953.66 1037.71,-2979.13 1099.53,-3002.87 1118.55,-3004 1185.25,-3004"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C967.76,-2888.75 965.31,-2953.58 1037,-2981 1099.41,-3004.87 1118.43,-3006 1185.25,-3006"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C965.76,-2888.67 963.31,-2953.51 1036.29,-2982.87 1099.29,-3006.87 1118.31,-3008 1185.25,-3008"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C963.76,-2888.6 961.31,-2953.43 1035.57,-2984.74 1099.17,-3008.86 1118.19,-3009.99 1185.25,-3010"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C472.93,-2837.83 517.57,-2847.08 695.75,-2847"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C472.52,-2839.79 517.16,-2849.04 695.75,-2849"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C472.12,-2841.75 516.76,-2851 695.75,-2851"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C471.71,-2843.71 516.35,-2852.96 695.75,-2853"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C471.31,-2845.67 515.95,-2854.92 695.75,-2855"/>
</g>
<!-- W1&#45;&#45;_S_6 -->
-<g id="edge8" class="edge">
+<g id="edge6" class="edge">
<title>W1:e&#45;&#45;_S_6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C967.58,-2858.4 971.98,-2909.09 1038.24,-2928.2 1101.43,-2948.87 1119.35,-2953.11 1185.25,-2953"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C965.59,-2858.58 969.99,-2909.26 1037.62,-2930.1 1100.97,-2950.82 1118.89,-2955.05 1185.25,-2955"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C963.6,-2858.75 968,-2909.44 1037,-2932 1100.51,-2952.77 1118.43,-2957 1185.25,-2957"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C961.61,-2858.92 966.01,-2909.61 1036.38,-2933.9 1100.05,-2954.71 1117.97,-2958.95 1185.25,-2959"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C959.61,-2859.1 964.01,-2909.78 1035.76,-2935.8 1099.59,-2956.66 1117.51,-2960.89 1185.25,-2961"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C476.69,-2810.89 504.37,-2685.14 695.75,-2682"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C478.64,-2811.32 506.33,-2685.57 695.75,-2684"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C480.59,-2811.75 508.28,-2686 695.75,-2686"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C482.55,-2812.18 510.23,-2686.43 695.75,-2688"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C484.5,-2812.61 512.19,-2686.86 695.75,-2690"/>
</g>
<!-- W1&#45;&#45;_S_7 -->
-<g id="edge9" class="edge">
+<g id="edge7" class="edge">
<title>W1:e&#45;&#45;_S_7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C1001.32,-2890.18 949.41,-3025.48 1039.06,-3075.57 1092.8,-3109.72 1116.97,-3100.27 1185.25,-3100"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C999.45,-2889.47 947.54,-3024.77 1038.03,-3077.29 1093.53,-3111.59 1117.7,-3102.14 1185.25,-3102"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C997.58,-2888.75 945.67,-3024.05 1037,-3079 1094.25,-3113.45 1118.43,-3104 1185.25,-3104"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C995.72,-2888.03 943.81,-3023.33 1035.97,-3080.71 1094.98,-3115.31 1119.16,-3105.86 1185.25,-3106"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C993.85,-2887.32 941.94,-3022.62 1034.94,-3082.43 1095.71,-3117.17 1119.89,-3107.73 1185.25,-3108"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C418.43,-2840.36 438.93,-2895.71 553.98,-2923.12 617.67,-2939.5 633.43,-2949.64 695.75,-2949"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C416.56,-2841.06 437.06,-2896.4 553.49,-2925.06 616.59,-2941.18 632.34,-2951.32 695.75,-2951"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C414.68,-2841.75 435.18,-2897.09 553,-2927 615.51,-2942.87 631.26,-2953 695.75,-2953"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C412.81,-2842.44 433.3,-2897.79 552.51,-2928.94 614.42,-2944.55 630.18,-2954.68 695.75,-2955"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C410.93,-2843.14 431.43,-2898.48 552.02,-2930.88 613.34,-2946.23 629.1,-2956.36 695.75,-2957"/>
</g>
<!-- W1&#45;&#45;_S_8 -->
-<g id="edge10" class="edge">
+<g id="edge8" class="edge">
<title>W1:e&#45;&#45;_S_8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C994.81,-2860.03 953.79,-2981.93 1038.97,-3026.52 1093.83,-3059.18 1117.14,-3051.21 1185.25,-3051"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C992.91,-2859.39 951.9,-2981.29 1037.99,-3028.26 1094.47,-3061.07 1117.78,-3053.11 1185.25,-3053"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C991.02,-2858.75 950,-2980.66 1037,-3030 1095.12,-3062.97 1118.43,-3055 1185.25,-3055"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C989.12,-2858.11 948.11,-2980.02 1036.01,-3031.74 1095.77,-3064.86 1119.08,-3056.89 1185.25,-3057"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C987.23,-2857.47 946.21,-2979.38 1035.03,-3033.48 1096.41,-3066.75 1119.72,-3058.79 1185.25,-3059"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C471.27,-2807.84 515.9,-2798.09 695.75,-2798"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C471.7,-2809.8 516.33,-2800.05 695.75,-2800"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C472.12,-2811.75 516.75,-2802 695.75,-2802"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C472.55,-2813.7 517.18,-2803.95 695.75,-2804"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C472.98,-2815.66 517.61,-2805.91 695.75,-2806"/>
</g>
<!-- W3&#45;&#45;Radio -->
-<g id="edge14" class="edge">
+<g id="edge10" class="edge">
<title>W3:e&#45;&#45;Radio:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3197.75C1012.19,-3197.75 1043.37,-3197.5 1168.12,-3197.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M887.5,-3199.75C1012.21,-3199.75 1043.39,-3199.5 1168.12,-3199.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M887.5,-3201.75C1012.22,-3201.75 1043.4,-3201.5 1168.12,-3201.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M887.5,-3203.75C1012.24,-3203.75 1043.42,-3203.5 1168.12,-3203.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3205.75C1012.25,-3205.75 1043.43,-3205.5 1168.12,-3205.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1686.75C1005.05,-1687.81 1034.66,-1660.56 1161.12,-1659.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M884,-1688.75C1006.41,-1689.28 1036.01,-1662.03 1161.12,-1661.5"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M884,-1690.75C1007.76,-1690.75 1037.36,-1663.5 1161.12,-1663.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M884,-1692.75C1009.12,-1692.22 1038.72,-1664.97 1161.12,-1665.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1694.75C1010.47,-1693.69 1040.07,-1666.44 1161.12,-1667.5"/>
</g>
<!-- W3&#45;&#45;Radio -->
-<g id="edge16" class="edge">
+<g id="edge12" class="edge">
<title>W3:e&#45;&#45;Radio:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3167.75C1018.07,-3169.97 1044.72,-3223.72 1168.12,-3221.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M887.5,-3169.75C1016.28,-3170.86 1042.93,-3224.61 1168.12,-3223.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M887.5,-3171.75C1014.49,-3171.75 1041.14,-3225.5 1168.12,-3225.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M887.5,-3173.75C1012.7,-3172.64 1039.34,-3226.39 1168.12,-3227.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3175.75C1010.91,-3173.53 1037.55,-3227.28 1168.12,-3229.5"/>
-</g>
-<!-- W3&#45;&#45;_GND_14 -->
-<g id="edge17" class="edge">
-<title>W3:e&#45;&#45;_GND_14:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3125.75C1021.71,-3125.75 1054.04,-3153 1188.25,-3153"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1656.75C1010.42,-1657.78 1040.07,-1684.53 1161.12,-1683.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M884,-1658.75C1009.08,-1659.27 1038.73,-1686.02 1161.12,-1685.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M884,-1660.75C1007.74,-1660.75 1037.39,-1687.5 1161.12,-1687.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M884,-1662.75C1006.4,-1662.23 1036.05,-1688.98 1161.12,-1689.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1664.75C1005.06,-1663.72 1034.71,-1690.47 1161.12,-1691.5"/>
</g>
<!-- W6&#45;&#45;ECU CAN Bus -->
-<g id="edge25" class="edge">
+<g id="edge19" class="edge">
<title>W6:e&#45;&#45;ECU CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C1018.8,-2386.84 958.01,-2173.09 1091.5,-2168"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C1020.72,-2386.3 959.93,-2172.55 1091.5,-2170"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C1022.65,-2385.75 961.85,-2172 1091.5,-2172"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C1024.57,-2385.2 963.78,-2171.45 1091.5,-2174"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C1026.49,-2384.66 965.7,-2170.91 1091.5,-2176"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C950.38,-1449.97 966.28,-1370.22 1084.5,-1367"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C952.34,-1450.36 968.24,-1370.61 1084.5,-1369"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C954.3,-1450.75 970.2,-1371 1084.5,-1371"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C956.26,-1451.14 972.16,-1371.39 1084.5,-1373"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C958.22,-1451.53 974.12,-1371.78 1084.5,-1375"/>
</g>
<!-- W6&#45;&#45;ECU CAN Bus -->
-<g id="edge27" class="edge">
+<g id="edge21" class="edge">
<title>W6:e&#45;&#45;ECU CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C1016.85,-2356.81 959.94,-2149.06 1091.5,-2144"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C1018.78,-2356.28 961.87,-2148.53 1091.5,-2146"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C1020.71,-2355.75 963.79,-2148 1091.5,-2148"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C1022.63,-2355.22 965.72,-2147.47 1091.5,-2150"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C1024.56,-2354.69 967.65,-2146.94 1091.5,-2152"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C949.61,-1419.83 967.11,-1346.08 1084.5,-1343"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C951.56,-1420.29 969.05,-1346.54 1084.5,-1345"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C953.5,-1420.75 971,-1347 1084.5,-1347"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C955.45,-1421.21 972.94,-1347.46 1084.5,-1349"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C957.39,-1421.67 974.89,-1347.92 1084.5,-1351"/>
</g>
<!-- W6&#45;&#45;ECU CAN Bus -->
-<g id="edge29" class="edge">
+<g id="edge23" class="edge">
<title>W6:e&#45;&#45;ECU CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2321.75C1014.92,-2326.77 961.84,-2125.02 1091.5,-2120"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2323.75C1016.86,-2326.26 963.78,-2124.51 1091.5,-2122"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2325.75C1018.79,-2325.75 965.71,-2124 1091.5,-2124"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2327.75C1020.72,-2325.24 967.64,-2123.49 1091.5,-2126"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2329.75C1022.66,-2324.73 969.58,-2122.98 1091.5,-2128"/>
-</g>
-<!-- W6&#45;&#45;shield1 -->
-<g id="edge32" class="edge">
-<title>W6:e&#45;&#45;shield1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2279.75C1083.93,-2279.75 913.93,-2020.98 1037,-1875 1080,-1824 1101.16,-1801.5 1167.88,-1801.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1386.75C948.91,-1389.67 967.89,-1321.92 1084.5,-1319"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1388.75C950.84,-1390.21 969.81,-1322.46 1084.5,-1321"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1390.75C952.76,-1390.75 971.74,-1323 1084.5,-1323"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1392.75C954.69,-1391.29 973.66,-1323.54 1084.5,-1325"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1394.75C956.61,-1391.83 975.59,-1324.08 1084.5,-1327"/>
</g>
<!-- W6&#45;&#45;_S_9 -->
-<g id="edge19" class="edge">
+<g id="edge13" class="edge">
<title>W6:e&#45;&#45;_S_9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2321.75C1141.99,-2328.2 847.19,-1948.98 1034.31,-1774.04 1088.59,-1728.77 1120.68,-1749.65 1185.25,-1749"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2323.75C1143.57,-2326.98 848.77,-1947.75 1035.66,-1775.52 1087.5,-1730.45 1119.59,-1751.32 1185.25,-1751"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2325.75C1145.15,-2325.75 850.34,-1946.52 1037,-1777 1086.41,-1732.13 1118.5,-1753 1185.25,-1753"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2327.75C1146.73,-2324.52 851.92,-1945.29 1038.34,-1778.48 1085.32,-1733.8 1117.41,-1754.68 1185.25,-1755"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2329.75C1148.3,-2323.3 853.5,-1944.07 1039.69,-1779.96 1084.23,-1735.48 1116.32,-1756.35 1185.25,-1757"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1386.75C1038.91,-1392.8 865.93,-1102.1 1027.57,-973.82 1084.97,-932.86 1113.36,-948.5 1178.25,-948"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1388.75C1040.63,-1391.77 867.65,-1101.08 1028.78,-975.41 1084.01,-934.61 1112.4,-950.25 1178.25,-950"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1390.75C1042.35,-1390.75 869.36,-1100.05 1030,-977 1083.04,-936.37 1111.43,-952 1178.25,-952"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1392.75C1044.07,-1389.73 871.08,-1099.03 1031.22,-978.59 1082.08,-938.12 1110.47,-953.75 1178.25,-954"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1394.75C1045.79,-1388.7 872.8,-1098.01 1032.43,-980.18 1081.11,-939.87 1109.5,-955.5 1178.25,-956"/>
</g>
<!-- W6&#45;&#45;_S_10 -->
-<g id="edge20" class="edge">
+<g id="edge14" class="edge">
<title>W6:e&#45;&#45;_S_10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C956.1,-2384.14 968.3,-2356.46 1036.1,-2339.1 1100.02,-2324.49 1116.36,-2314.58 1185.25,-2314"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C957.93,-2384.94 970.13,-2357.27 1036.55,-2341.05 1101.06,-2326.2 1117.39,-2316.29 1185.25,-2316"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C959.76,-2385.75 971.96,-2358.08 1037,-2343 1102.09,-2327.91 1118.43,-2318 1185.25,-2318"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C961.59,-2386.56 973.79,-2358.89 1037.45,-2344.95 1103.13,-2329.62 1119.47,-2319.71 1185.25,-2320"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C963.42,-2387.36 975.62,-2359.69 1037.9,-2346.9 1104.17,-2331.33 1120.5,-2321.42 1185.25,-2322"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C929.61,-1448.34 948.35,-1473.24 1030.76,-1488.07 1098.07,-1501.49 1113.89,-1513.85 1178.25,-1513"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C928.01,-1449.55 946.75,-1474.44 1030.38,-1490.04 1096.84,-1503.07 1112.66,-1515.42 1178.25,-1515"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C926.41,-1450.75 945.15,-1475.64 1030,-1492 1095.61,-1504.65 1111.43,-1517 1178.25,-1517"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C924.81,-1451.95 943.55,-1476.85 1029.62,-1493.96 1094.38,-1506.22 1110.2,-1518.58 1178.25,-1519"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C923.22,-1453.16 941.95,-1478.05 1029.24,-1495.93 1093.15,-1507.8 1108.97,-1520.15 1178.25,-1521"/>
</g>
<!-- W6&#45;&#45;_S_11 -->
-<g id="edge21" class="edge">
+<g id="edge15" class="edge">
<title>W6:e&#45;&#45;_S_11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C958.7,-2355.04 966.26,-2312.94 1035.87,-2290.16 1099.77,-2271.37 1117.09,-2265.23 1185.25,-2265"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C960.67,-2355.4 968.23,-2313.3 1036.44,-2292.08 1100.44,-2273.26 1117.76,-2267.11 1185.25,-2267"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C962.64,-2355.75 970.19,-2313.65 1037,-2294 1101.1,-2275.14 1118.43,-2269 1185.25,-2269"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C964.6,-2356.1 972.16,-2314 1037.56,-2295.92 1101.77,-2277.03 1119.1,-2270.89 1185.25,-2271"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C966.57,-2356.46 974.13,-2314.36 1038.13,-2297.84 1102.44,-2278.91 1119.77,-2272.77 1185.25,-2273"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C1031.24,-1422.75 870.9,-1145 1027.6,-1022.8 1085.31,-982.33 1113.33,-997.48 1178.25,-997"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C1032.98,-1421.75 872.63,-1144 1028.8,-1024.4 1084.36,-984.09 1112.38,-999.24 1178.25,-999"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C1034.71,-1420.75 874.37,-1143 1030,-1026 1083.41,-985.85 1111.43,-1001 1178.25,-1001"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C1036.44,-1419.75 876.1,-1142 1031.2,-1027.6 1082.46,-987.61 1110.48,-1002.76 1178.25,-1003"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C1038.17,-1418.75 877.83,-1141 1032.4,-1029.2 1081.51,-989.37 1109.53,-1004.52 1178.25,-1005"/>
</g>
<!-- W6&#45;&#45;_S_12 -->
-<g id="edge22" class="edge">
+<g id="edge16" class="edge">
<title>W6:e&#45;&#45;_S_12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C1026.37,-2382.88 1057.46,-2413.13 1185.25,-2412"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C1024.98,-2384.32 1056.06,-2414.57 1185.25,-2414"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C1023.58,-2385.75 1054.67,-2416 1185.25,-2416"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C1022.19,-2387.18 1053.27,-2417.43 1185.25,-2418"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C1020.79,-2388.62 1051.88,-2418.87 1185.25,-2420"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C948.67,-1451.2 937.53,-1549.7 1031.56,-1586.32 1091.35,-1612.01 1111.23,-1611.01 1178.25,-1611"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C946.68,-1450.97 935.55,-1549.48 1030.78,-1588.16 1091.45,-1614.01 1111.33,-1613 1178.25,-1613"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C944.7,-1450.75 933.56,-1549.25 1030,-1590 1091.55,-1616.01 1111.43,-1615 1178.25,-1615"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C942.71,-1450.53 931.57,-1549.03 1029.22,-1591.84 1091.65,-1618 1111.53,-1617 1178.25,-1617"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C940.72,-1450.3 929.58,-1548.8 1028.44,-1593.68 1091.75,-1620 1111.63,-1618.99 1178.25,-1619"/>
</g>
<!-- W6&#45;&#45;_S_13 -->
-<g id="edge23" class="edge">
+<g id="edge17" class="edge">
<title>W6:e&#45;&#45;_S_13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C1024.3,-2351.97 1056.58,-2363.22 1185.25,-2363"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C1023.64,-2353.86 1055.92,-2365.11 1185.25,-2365"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C1022.99,-2355.75 1055.26,-2367 1185.25,-2367"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C1022.33,-2357.64 1054.61,-2368.89 1185.25,-2369"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C1021.67,-2359.53 1053.95,-2370.78 1185.25,-2371"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C995.02,-1418.38 1029.68,-1465.63 1178.25,-1464"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C993.41,-1419.57 1028.07,-1466.82 1178.25,-1466"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C991.79,-1420.75 1026.46,-1468 1178.25,-1468"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C990.18,-1421.93 1024.84,-1469.18 1178.25,-1470"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C988.57,-1423.12 1023.23,-1470.37 1178.25,-1472"/>
</g>
<!-- W6&#45;&#45;_S_14 -->
-<g id="edge30" class="edge">
+<g id="edge24" class="edge">
<title>W6:e&#45;&#45;_S_14:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C975.73,-2386.16 968.28,-2459.13 1038.54,-2485.31 1098.55,-2510.69 1118.29,-2510 1185.25,-2510"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C973.74,-2385.95 966.29,-2458.93 1037.77,-2487.15 1098.62,-2512.69 1118.36,-2512 1185.25,-2512"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C971.75,-2385.75 964.3,-2458.73 1037,-2489 1098.69,-2514.69 1118.43,-2514 1185.25,-2514"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C969.76,-2385.55 962.31,-2458.52 1036.23,-2490.85 1098.75,-2516.68 1118.5,-2516 1185.25,-2516"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C967.77,-2385.34 960.32,-2458.32 1035.46,-2492.69 1098.82,-2518.68 1118.57,-2518 1185.25,-2518"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C937.46,-1450.28 944.81,-1512.43 1031.2,-1537.18 1094.8,-1557.23 1112.5,-1562.15 1178.25,-1562"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C935.47,-1450.52 942.82,-1512.67 1030.6,-1539.09 1094.27,-1559.15 1111.97,-1564.07 1178.25,-1564"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C933.49,-1450.75 940.84,-1512.9 1030,-1541 1093.73,-1561.08 1111.43,-1566 1178.25,-1566"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C931.5,-1450.98 938.85,-1513.14 1029.4,-1542.91 1093.19,-1563.01 1110.9,-1567.93 1178.25,-1568"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C929.51,-1451.22 936.86,-1513.37 1028.8,-1544.82 1092.66,-1564.94 1110.36,-1569.85 1178.25,-1570"/>
</g>
<!-- W6&#45;&#45;_S_15 -->
-<g id="edge31" class="edge">
+<g id="edge25" class="edge">
<title>W6:e&#45;&#45;_S_15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C971.15,-2355.74 971.3,-2414.69 1038.36,-2436.24 1100.28,-2458.83 1118.9,-2461.03 1185.25,-2461"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C969.15,-2355.74 969.3,-2414.69 1037.68,-2438.12 1100.04,-2460.81 1118.67,-2463.01 1185.25,-2463"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C967.15,-2355.75 967.3,-2414.7 1037,-2440 1099.81,-2462.8 1118.43,-2465 1185.25,-2465"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C965.15,-2355.76 965.3,-2414.7 1036.32,-2441.88 1099.57,-2464.79 1118.2,-2466.99 1185.25,-2467"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C963.15,-2355.76 963.3,-2414.71 1035.64,-2443.76 1099.34,-2466.77 1117.96,-2468.97 1185.25,-2469"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C1012.19,-1422.61 882.93,-1177.26 1027.69,-1070.73 1086.41,-1031.97 1113.4,-1046.48 1178.25,-1046"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C1013.96,-1421.68 884.7,-1176.32 1028.85,-1072.37 1085.46,-1033.73 1112.45,-1048.24 1178.25,-1048"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C1015.73,-1420.75 886.47,-1175.39 1030,-1074 1084.52,-1035.49 1111.5,-1050 1178.25,-1050"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C1017.5,-1419.82 888.24,-1174.46 1031.15,-1075.63 1083.57,-1037.25 1110.56,-1051.76 1178.25,-1052"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C1019.27,-1418.89 890.01,-1173.53 1032.31,-1077.27 1082.62,-1039.01 1109.61,-1053.52 1178.25,-1054"/>
</g>
<!-- W7&#45;&#45;CEX -->
-<g id="edge35" class="edge">
+<g id="edge27" class="edge">
<title>W7:e&#45;&#45;CEX:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1716.75C1882.98,-1719.77 1895.38,-1670.52 1977.12,-1667.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1809,-1718.75C1884.92,-1720.26 1897.32,-1671.01 1977.12,-1669.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1809,-1720.75C1886.86,-1720.75 1899.26,-1671.5 1977.12,-1671.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1809,-1722.75C1888.8,-1721.24 1901.2,-1671.99 1977.12,-1673.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1724.75C1890.74,-1721.73 1903.14,-1672.48 1977.12,-1675.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-948.75C1968.92,-948.81 1999.21,-943.56 2121.25,-943.5"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1848.25,-950.75C1969.26,-950.78 1999.55,-945.53 2121.25,-945.5"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1848.25,-952.75C1969.61,-952.75 1999.89,-947.5 2121.25,-947.5"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1848.25,-954.75C1969.95,-954.72 2000.24,-949.47 2121.25,-949.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-956.75C1970.29,-956.69 2000.58,-951.44 2121.25,-951.5"/>
</g>
<!-- W7&#45;&#45;CEX -->
-<g id="edge37" class="edge">
+<g id="edge29" class="edge">
<title>W7:e&#45;&#45;CEX:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1686.75C1882.34,-1689.53 1896.16,-1646.28 1977.12,-1643.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1809,-1688.75C1884.25,-1690.14 1898.06,-1646.89 1977.12,-1645.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1809,-1690.75C1886.16,-1690.75 1899.97,-1647.5 1977.12,-1647.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1809,-1692.75C1888.06,-1691.36 1901.88,-1648.11 1977.12,-1649.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1694.75C1889.97,-1691.97 1903.78,-1648.72 1977.12,-1651.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-918.75C1969.68,-918.75 2000.02,-919.5 2121.25,-919.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1848.25,-920.75C1969.63,-920.75 1999.97,-921.5 2121.25,-921.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1848.25,-922.75C1969.58,-922.75 1999.92,-923.5 2121.25,-923.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1848.25,-924.75C1969.53,-924.75 1999.87,-925.5 2121.25,-925.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-926.75C1969.48,-926.75 1999.82,-927.5 2121.25,-927.5"/>
</g>
<!-- W7&#45;&#45;CEX -->
-<g id="edge39" class="edge">
+<g id="edge31" class="edge">
<title>W7:e&#45;&#45;CEX:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1656.75C1881.83,-1659.25 1896.88,-1622 1977.12,-1619.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1658.75C1883.68,-1660 1898.74,-1622.75 1977.12,-1621.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1660.75C1885.53,-1660.75 1900.59,-1623.5 1977.12,-1623.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1662.75C1887.39,-1661.5 1902.44,-1624.25 1977.12,-1625.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1664.75C1889.24,-1662.25 1904.3,-1625 1977.12,-1627.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-888.75C1970.49,-888.85 2000.75,-895.6 2121.25,-895.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-890.75C1970.06,-890.8 2000.32,-897.55 2121.25,-897.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-892.75C1969.62,-892.75 1999.88,-899.5 2121.25,-899.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-894.75C1969.18,-894.7 1999.44,-901.45 2121.25,-901.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-896.75C1968.75,-896.65 1999.01,-903.4 2121.25,-903.5"/>
</g>
-<!-- W7&#45;&#45;_GND_19 -->
-<g id="edge41" class="edge">
-<title>W7:e&#45;&#45;_GND_19:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1614.75C2024.39,-1614.75 1787.44,-1289.79 1953,-1152 2024.86,-1092.19 2068.38,-1127 2161.88,-1127"/>
-</g>
-<!-- W8&#45;&#45;_GND_1 -->
-<g id="edge89" class="edge">
-<title>W8:e&#45;&#45;_GND_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1932.5C987.16,-1937.9 932.16,-1790.12 1034.97,-1725.56 1097.13,-1690.62 1121.58,-1700.28 1188.25,-1700"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1934.5C989.04,-1937.2 934.04,-1789.42 1035.98,-1727.28 1096.4,-1692.48 1120.85,-1702.14 1188.25,-1702"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1936.5C990.91,-1936.5 935.91,-1788.72 1037,-1729 1095.66,-1694.34 1120.12,-1704 1188.25,-1704"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1938.5C992.79,-1935.8 937.79,-1788.02 1038.02,-1730.72 1094.93,-1696.2 1119.38,-1705.86 1188.25,-1706"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1940.5C994.66,-1935.1 939.66,-1787.33 1039.03,-1732.44 1094.19,-1698.06 1118.65,-1707.72 1188.25,-1708"/>
-</g>
-<!-- W8&#45;&#45;_GND_2 -->
-<g id="edge91" class="edge">
-<title>W8:e&#45;&#45;_GND_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1662.5C1012.23,-1662.7 1047.01,-1651.2 1188.25,-1651"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1664.5C1012.85,-1664.6 1047.64,-1653.1 1188.25,-1653"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1666.5C1013.48,-1666.5 1048.27,-1655 1188.25,-1655"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1668.5C1014.11,-1668.4 1048.9,-1656.9 1188.25,-1657"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1670.5C1014.74,-1670.3 1049.52,-1658.8 1188.25,-1659"/>
-</g>
-<!-- W8&#45;&#45;_GND_3 -->
-<g id="edge93" class="edge">
-<title>W8:e&#45;&#45;_GND_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1632.5C1011.36,-1633.54 1045.02,-1603.04 1188.25,-1602"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1634.5C1012.7,-1635.02 1046.36,-1604.52 1188.25,-1604"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M873.5,-1636.5C1014.04,-1636.5 1047.71,-1606 1188.25,-1606"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1638.5C1015.39,-1637.98 1049.05,-1607.48 1188.25,-1608"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1640.5C1016.73,-1639.46 1050.39,-1608.96 1188.25,-1610"/>
-</g>
-<!-- W8&#45;&#45;_GND_4 -->
-<g id="edge95" class="edge">
-<title>W8:e&#45;&#45;_GND_4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1542.5C1013.33,-1542.5 1048.3,-1542 1188.25,-1542"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M873.5,-1544.5C1013.36,-1544.5 1048.33,-1544 1188.25,-1544"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1546.5C1013.39,-1546.5 1048.36,-1546 1188.25,-1546"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M873.5,-1548.5C1013.42,-1548.5 1048.39,-1548 1188.25,-1548"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1550.5C1013.45,-1550.5 1048.42,-1550 1188.25,-1550"/>
-</g>
-<!-- W8&#45;&#45;_GND_5 -->
-<g id="edge97" class="edge">
-<title>W8:e&#45;&#45;_GND_5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1422.5C1013.33,-1422.5 1048.3,-1422 1188.25,-1422"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1424.5C1013.36,-1424.5 1048.33,-1424 1188.25,-1424"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1426.5C1013.39,-1426.5 1048.36,-1426 1188.25,-1426"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1428.5C1013.42,-1428.5 1048.39,-1428 1188.25,-1428"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1430.5C1013.45,-1430.5 1048.42,-1430 1188.25,-1430"/>
-</g>
-<!-- W8&#45;&#45;_GND_6 -->
-<g id="edge99" class="edge">
-<title>W8:e&#45;&#45;_GND_6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1362.5C1013.33,-1362.5 1048.3,-1362 1188.25,-1362"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1364.5C1013.36,-1364.5 1048.33,-1364 1188.25,-1364"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1366.5C1013.39,-1366.5 1048.36,-1366 1188.25,-1366"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1368.5C1013.42,-1368.5 1048.39,-1368 1188.25,-1368"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1370.5C1013.45,-1370.5 1048.42,-1370 1188.25,-1370"/>
-</g>
-<!-- W8&#45;&#45;_GND_7 -->
-<g id="edge101" class="edge">
-<title>W8:e&#45;&#45;_GND_7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1302.5C1013.33,-1302.5 1048.3,-1302 1188.25,-1302"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1304.5C1013.36,-1304.5 1048.33,-1304 1188.25,-1304"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1306.5C1013.39,-1306.5 1048.36,-1306 1188.25,-1306"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1308.5C1013.42,-1308.5 1048.39,-1308 1188.25,-1308"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1310.5C1013.45,-1310.5 1048.42,-1310 1188.25,-1310"/>
-</g>
-<!-- W8&#45;&#45;_GND_8 -->
-<g id="edge103" class="edge">
-<title>W8:e&#45;&#45;_GND_8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1182.5C1013.45,-1182.5 1048.42,-1183 1188.25,-1183"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-1184.5C1013.42,-1184.5 1048.39,-1185 1188.25,-1185"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1186.5C1013.39,-1186.5 1048.36,-1187 1188.25,-1187"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-1188.5C1013.36,-1188.5 1048.33,-1189 1188.25,-1189"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1190.5C1013.33,-1190.5 1048.3,-1191 1188.25,-1191"/>
-</g>
-<!-- W8&#45;&#45;_GND_9 -->
-<g id="edge105" class="edge">
-<title>W8:e&#45;&#45;_GND_9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1092.5C1013.45,-1092.5 1048.42,-1093 1188.25,-1093"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1094.5C1013.42,-1094.5 1048.39,-1095 1188.25,-1095"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1096.5C1013.39,-1096.5 1048.36,-1097 1188.25,-1097"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1098.5C1013.36,-1098.5 1048.33,-1099 1188.25,-1099"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1100.5C1013.33,-1100.5 1048.3,-1101 1188.25,-1101"/>
-</g>
-<!-- W8&#45;&#45;_GND_10 -->
-<g id="edge107" class="edge">
-<title>W8:e&#45;&#45;_GND_10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1002.5C1013.45,-1002.5 1048.42,-1003 1188.25,-1003"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1004.5C1013.42,-1004.5 1048.39,-1005 1188.25,-1005"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M873.5,-1006.5C1013.39,-1006.5 1048.36,-1007 1188.25,-1007"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1008.5C1013.36,-1008.5 1048.33,-1009 1188.25,-1009"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1010.5C1013.33,-1010.5 1048.3,-1011 1188.25,-1011"/>
-</g>
-<!-- W8&#45;&#45;_GND_11 -->
-<g id="edge109" class="edge">
-<title>W8:e&#45;&#45;_GND_11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-642.5C1013.45,-642.5 1048.42,-643 1188.25,-643"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-644.5C1013.42,-644.5 1048.39,-645 1188.25,-645"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-646.5C1013.39,-646.5 1048.36,-647 1188.25,-647"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-648.5C1013.36,-648.5 1048.33,-649 1188.25,-649"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-650.5C1013.33,-650.5 1048.3,-651 1188.25,-651"/>
-</g>
-<!-- W8&#45;&#45;_GND_12 -->
-<g id="edge111" class="edge">
-<title>W8:e&#45;&#45;_GND_12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-462.5C1014.62,-462.67 1049.44,-473.17 1188.25,-473"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-464.5C1014.04,-464.59 1048.86,-475.09 1188.25,-475"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-466.5C1013.47,-466.5 1048.28,-477 1188.25,-477"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-468.5C1012.89,-468.41 1047.71,-478.91 1188.25,-479"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-470.5C1012.31,-470.33 1047.13,-480.83 1188.25,-481"/>
-</g>
-<!-- W8&#45;&#45;_GND_13 -->
-<g id="edge113" class="edge">
-<title>W8:e&#45;&#45;_GND_13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-432.5C1012.49,-432.61 1047.36,-424.11 1188.25,-424"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-434.5C1012.97,-434.56 1047.84,-426.06 1188.25,-426"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-436.5C1013.44,-436.5 1048.31,-428 1188.25,-428"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-438.5C1013.91,-438.44 1048.78,-429.94 1188.25,-430"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-440.5C1014.39,-440.39 1049.26,-431.89 1188.25,-432"/>
+<!-- W8 -->
+<g id="node33" class="node">
+<title>W8</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="273.88,-5014.5 135.12,-5014.5 135.12,-3155.5 273.88,-3155.5 273.88,-5014.5"/>
+<polygon fill="none" stroke="black" points="135.12,-4990 135.12,-5014.5 273.88,-5014.5 273.88,-4990 135.12,-4990"/>
+<text text-anchor="start" x="193.25" y="-4997.2" font-family="arial" font-size="14.00">W8</text>
+<polygon fill="none" stroke="black" points="135.12,-4965.5 135.12,-4990 166.38,-4990 166.38,-4965.5 135.12,-4965.5"/>
+<text text-anchor="start" x="139.12" y="-4972.7" font-family="arial" font-size="14.00">59x</text>
+<polygon fill="none" stroke="black" points="166.38,-4965.5 166.38,-4990 229.88,-4990 229.88,-4965.5 166.38,-4965.5"/>
+<text text-anchor="start" x="170.38" y="-4972.7" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="229.88,-4965.5 229.88,-4990 273.88,-4990 273.88,-4965.5 229.88,-4965.5"/>
+<text text-anchor="start" x="233.88" y="-4972.7" font-family="arial" font-size="14.00">0.3 m</text>
+<text text-anchor="start" x="144.38" y="-4950.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="177.12" y="-4930.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4923.5 135.12,-4925.5 273.88,-4925.5 273.88,-4923.5 135.12,-4923.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4921.5 135.12,-4923.5 273.88,-4923.5 273.88,-4921.5 135.12,-4921.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4919.5 135.12,-4921.5 273.88,-4921.5 273.88,-4919.5 135.12,-4919.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4917.5 135.12,-4919.5 273.88,-4919.5 273.88,-4917.5 135.12,-4917.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4915.5 135.12,-4917.5 273.88,-4917.5 273.88,-4915.5 135.12,-4915.5"/>
+<text text-anchor="start" x="179.75" y="-4900.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4893.5 135.12,-4895.5 273.88,-4895.5 273.88,-4893.5 135.12,-4893.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4891.5 135.12,-4893.5 273.88,-4893.5 273.88,-4891.5 135.12,-4891.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4889.5 135.12,-4891.5 273.88,-4891.5 273.88,-4889.5 135.12,-4889.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4887.5 135.12,-4889.5 273.88,-4889.5 273.88,-4887.5 135.12,-4887.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4885.5 135.12,-4887.5 273.88,-4887.5 273.88,-4885.5 135.12,-4885.5"/>
+<text text-anchor="start" x="179" y="-4870.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4863.5 135.12,-4865.5 273.88,-4865.5 273.88,-4863.5 135.12,-4863.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4861.5 135.12,-4863.5 273.88,-4863.5 273.88,-4861.5 135.12,-4861.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4859.5 135.12,-4861.5 273.88,-4861.5 273.88,-4859.5 135.12,-4859.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4857.5 135.12,-4859.5 273.88,-4859.5 273.88,-4857.5 135.12,-4857.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4855.5 135.12,-4857.5 273.88,-4857.5 273.88,-4855.5 135.12,-4855.5"/>
+<text text-anchor="start" x="179.38" y="-4840.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4833.5 135.12,-4835.5 273.88,-4835.5 273.88,-4833.5 135.12,-4833.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4831.5 135.12,-4833.5 273.88,-4833.5 273.88,-4831.5 135.12,-4831.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4829.5 135.12,-4831.5 273.88,-4831.5 273.88,-4829.5 135.12,-4829.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4827.5 135.12,-4829.5 273.88,-4829.5 273.88,-4827.5 135.12,-4827.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4825.5 135.12,-4827.5 273.88,-4827.5 273.88,-4825.5 135.12,-4825.5"/>
+<text text-anchor="start" x="179.38" y="-4810.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4803.5 135.12,-4805.5 273.88,-4805.5 273.88,-4803.5 135.12,-4803.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4801.5 135.12,-4803.5 273.88,-4803.5 273.88,-4801.5 135.12,-4801.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4799.5 135.12,-4801.5 273.88,-4801.5 273.88,-4799.5 135.12,-4799.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4797.5 135.12,-4799.5 273.88,-4799.5 273.88,-4797.5 135.12,-4797.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4795.5 135.12,-4797.5 273.88,-4797.5 273.88,-4795.5 135.12,-4795.5"/>
+<text text-anchor="start" x="178.62" y="-4780.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4773.5 135.12,-4775.5 273.88,-4775.5 273.88,-4773.5 135.12,-4773.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4771.5 135.12,-4773.5 273.88,-4773.5 273.88,-4771.5 135.12,-4771.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4769.5 135.12,-4771.5 273.88,-4771.5 273.88,-4769.5 135.12,-4769.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4767.5 135.12,-4769.5 273.88,-4769.5 273.88,-4767.5 135.12,-4767.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4765.5 135.12,-4767.5 273.88,-4767.5 273.88,-4765.5 135.12,-4765.5"/>
+<text text-anchor="start" x="179.38" y="-4750.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4743.5 135.12,-4745.5 273.88,-4745.5 273.88,-4743.5 135.12,-4743.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4741.5 135.12,-4743.5 273.88,-4743.5 273.88,-4741.5 135.12,-4741.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4739.5 135.12,-4741.5 273.88,-4741.5 273.88,-4739.5 135.12,-4739.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4737.5 135.12,-4739.5 273.88,-4739.5 273.88,-4737.5 135.12,-4737.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4735.5 135.12,-4737.5 273.88,-4737.5 273.88,-4735.5 135.12,-4735.5"/>
+<text text-anchor="start" x="179.75" y="-4720.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4713.5 135.12,-4715.5 273.88,-4715.5 273.88,-4713.5 135.12,-4713.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4711.5 135.12,-4713.5 273.88,-4713.5 273.88,-4711.5 135.12,-4711.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4709.5 135.12,-4711.5 273.88,-4711.5 273.88,-4709.5 135.12,-4709.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4707.5 135.12,-4709.5 273.88,-4709.5 273.88,-4707.5 135.12,-4707.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4705.5 135.12,-4707.5 273.88,-4707.5 273.88,-4705.5 135.12,-4705.5"/>
+<text text-anchor="start" x="169.25" y="-4690.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4683.5 135.12,-4685.5 273.88,-4685.5 273.88,-4683.5 135.12,-4683.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4681.5 135.12,-4683.5 273.88,-4683.5 273.88,-4681.5 135.12,-4681.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4679.5 135.12,-4681.5 273.88,-4681.5 273.88,-4679.5 135.12,-4679.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4677.5 135.12,-4679.5 273.88,-4679.5 273.88,-4677.5 135.12,-4677.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4675.5 135.12,-4677.5 273.88,-4677.5 273.88,-4675.5 135.12,-4675.5"/>
+<text text-anchor="start" x="168.88" y="-4660.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4653.5 135.12,-4655.5 273.88,-4655.5 273.88,-4653.5 135.12,-4653.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4651.5 135.12,-4653.5 273.88,-4653.5 273.88,-4651.5 135.12,-4651.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4649.5 135.12,-4651.5 273.88,-4651.5 273.88,-4649.5 135.12,-4649.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4647.5 135.12,-4649.5 273.88,-4649.5 273.88,-4647.5 135.12,-4647.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4645.5 135.12,-4647.5 273.88,-4647.5 273.88,-4645.5 135.12,-4645.5"/>
+<text text-anchor="start" x="166.62" y="-4630.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4623.5 135.12,-4625.5 273.88,-4625.5 273.88,-4623.5 135.12,-4623.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4621.5 135.12,-4623.5 273.88,-4623.5 273.88,-4621.5 135.12,-4621.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4619.5 135.12,-4621.5 273.88,-4621.5 273.88,-4619.5 135.12,-4619.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4617.5 135.12,-4619.5 273.88,-4619.5 273.88,-4617.5 135.12,-4617.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4615.5 135.12,-4617.5 273.88,-4617.5 273.88,-4615.5 135.12,-4615.5"/>
+<text text-anchor="start" x="168.88" y="-4600.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4593.5 135.12,-4595.5 273.88,-4595.5 273.88,-4593.5 135.12,-4593.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4591.5 135.12,-4593.5 273.88,-4593.5 273.88,-4591.5 135.12,-4591.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4589.5 135.12,-4591.5 273.88,-4591.5 273.88,-4589.5 135.12,-4589.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4587.5 135.12,-4589.5 273.88,-4589.5 273.88,-4587.5 135.12,-4587.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4585.5 135.12,-4587.5 273.88,-4587.5 273.88,-4585.5 135.12,-4585.5"/>
+<text text-anchor="start" x="167.75" y="-4570.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4563.5 135.12,-4565.5 273.88,-4565.5 273.88,-4563.5 135.12,-4563.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4561.5 135.12,-4563.5 273.88,-4563.5 273.88,-4561.5 135.12,-4561.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4559.5 135.12,-4561.5 273.88,-4561.5 273.88,-4559.5 135.12,-4559.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4557.5 135.12,-4559.5 273.88,-4559.5 273.88,-4557.5 135.12,-4557.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4555.5 135.12,-4557.5 273.88,-4557.5 273.88,-4555.5 135.12,-4555.5"/>
+<text text-anchor="start" x="170" y="-4540.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4533.5 135.12,-4535.5 273.88,-4535.5 273.88,-4533.5 135.12,-4533.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4531.5 135.12,-4533.5 273.88,-4533.5 273.88,-4531.5 135.12,-4531.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4529.5 135.12,-4531.5 273.88,-4531.5 273.88,-4529.5 135.12,-4529.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4527.5 135.12,-4529.5 273.88,-4529.5 273.88,-4527.5 135.12,-4527.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4525.5 135.12,-4527.5 273.88,-4527.5 273.88,-4525.5 135.12,-4525.5"/>
+<text text-anchor="start" x="167" y="-4510.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4503.5 135.12,-4505.5 273.88,-4505.5 273.88,-4503.5 135.12,-4503.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4501.5 135.12,-4503.5 273.88,-4503.5 273.88,-4501.5 135.12,-4501.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4499.5 135.12,-4501.5 273.88,-4501.5 273.88,-4499.5 135.12,-4499.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4497.5 135.12,-4499.5 273.88,-4499.5 273.88,-4497.5 135.12,-4497.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4495.5 135.12,-4497.5 273.88,-4497.5 273.88,-4495.5 135.12,-4495.5"/>
+<text text-anchor="start" x="169.25" y="-4480.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4473.5 135.12,-4475.5 273.88,-4475.5 273.88,-4473.5 135.12,-4473.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4471.5 135.12,-4473.5 273.88,-4473.5 273.88,-4471.5 135.12,-4471.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4469.5 135.12,-4471.5 273.88,-4471.5 273.88,-4469.5 135.12,-4469.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4467.5 135.12,-4469.5 273.88,-4469.5 273.88,-4467.5 135.12,-4467.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4465.5 135.12,-4467.5 273.88,-4467.5 273.88,-4465.5 135.12,-4465.5"/>
+<text text-anchor="start" x="167.38" y="-4450.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4443.5 135.12,-4445.5 273.88,-4445.5 273.88,-4443.5 135.12,-4443.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4441.5 135.12,-4443.5 273.88,-4443.5 273.88,-4441.5 135.12,-4441.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4439.5 135.12,-4441.5 273.88,-4441.5 273.88,-4439.5 135.12,-4439.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4437.5 135.12,-4439.5 273.88,-4439.5 273.88,-4437.5 135.12,-4437.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4435.5 135.12,-4437.5 273.88,-4437.5 273.88,-4435.5 135.12,-4435.5"/>
+<text text-anchor="start" x="169.62" y="-4420.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4413.5 135.12,-4415.5 273.88,-4415.5 273.88,-4413.5 135.12,-4413.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4411.5 135.12,-4413.5 273.88,-4413.5 273.88,-4411.5 135.12,-4411.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4409.5 135.12,-4411.5 273.88,-4411.5 273.88,-4409.5 135.12,-4409.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4407.5 135.12,-4409.5 273.88,-4409.5 273.88,-4407.5 135.12,-4407.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4405.5 135.12,-4407.5 273.88,-4407.5 273.88,-4405.5 135.12,-4405.5"/>
+<text text-anchor="start" x="166.62" y="-4390.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4383.5 135.12,-4385.5 273.88,-4385.5 273.88,-4383.5 135.12,-4383.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4381.5 135.12,-4383.5 273.88,-4383.5 273.88,-4381.5 135.12,-4381.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4379.5 135.12,-4381.5 273.88,-4381.5 273.88,-4379.5 135.12,-4379.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4377.5 135.12,-4379.5 273.88,-4379.5 273.88,-4377.5 135.12,-4377.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4375.5 135.12,-4377.5 273.88,-4377.5 273.88,-4375.5 135.12,-4375.5"/>
+<text text-anchor="start" x="168.88" y="-4360.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4353.5 135.12,-4355.5 273.88,-4355.5 273.88,-4353.5 135.12,-4353.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4351.5 135.12,-4353.5 273.88,-4353.5 273.88,-4351.5 135.12,-4351.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4349.5 135.12,-4351.5 273.88,-4351.5 273.88,-4349.5 135.12,-4349.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4347.5 135.12,-4349.5 273.88,-4349.5 273.88,-4347.5 135.12,-4347.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4345.5 135.12,-4347.5 273.88,-4347.5 273.88,-4345.5 135.12,-4345.5"/>
+<text text-anchor="start" x="168.5" y="-4330.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4323.5 135.12,-4325.5 273.88,-4325.5 273.88,-4323.5 135.12,-4323.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4321.5 135.12,-4323.5 273.88,-4323.5 273.88,-4321.5 135.12,-4321.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4319.5 135.12,-4321.5 273.88,-4321.5 273.88,-4319.5 135.12,-4319.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4317.5 135.12,-4319.5 273.88,-4319.5 273.88,-4317.5 135.12,-4317.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4315.5 135.12,-4317.5 273.88,-4317.5 273.88,-4315.5 135.12,-4315.5"/>
+<text text-anchor="start" x="177.12" y="-4300.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4293.5 135.12,-4295.5 273.88,-4295.5 273.88,-4293.5 135.12,-4293.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4291.5 135.12,-4293.5 273.88,-4293.5 273.88,-4291.5 135.12,-4291.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4289.5 135.12,-4291.5 273.88,-4291.5 273.88,-4289.5 135.12,-4289.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4287.5 135.12,-4289.5 273.88,-4289.5 273.88,-4287.5 135.12,-4287.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4285.5 135.12,-4287.5 273.88,-4287.5 273.88,-4285.5 135.12,-4285.5"/>
+<text text-anchor="start" x="179.38" y="-4270.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4263.5 135.12,-4265.5 273.88,-4265.5 273.88,-4263.5 135.12,-4263.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4261.5 135.12,-4263.5 273.88,-4263.5 273.88,-4261.5 135.12,-4261.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4259.5 135.12,-4261.5 273.88,-4261.5 273.88,-4259.5 135.12,-4259.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4257.5 135.12,-4259.5 273.88,-4259.5 273.88,-4257.5 135.12,-4257.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4255.5 135.12,-4257.5 273.88,-4257.5 273.88,-4255.5 135.12,-4255.5"/>
+<text text-anchor="start" x="178.62" y="-4240.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4233.5 135.12,-4235.5 273.88,-4235.5 273.88,-4233.5 135.12,-4233.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4231.5 135.12,-4233.5 273.88,-4233.5 273.88,-4231.5 135.12,-4231.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4229.5 135.12,-4231.5 273.88,-4231.5 273.88,-4229.5 135.12,-4229.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4227.5 135.12,-4229.5 273.88,-4229.5 273.88,-4227.5 135.12,-4227.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4225.5 135.12,-4227.5 273.88,-4227.5 273.88,-4225.5 135.12,-4225.5"/>
+<text text-anchor="start" x="179.75" y="-4210.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4203.5 135.12,-4205.5 273.88,-4205.5 273.88,-4203.5 135.12,-4203.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4201.5 135.12,-4203.5 273.88,-4203.5 273.88,-4201.5 135.12,-4201.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4199.5 135.12,-4201.5 273.88,-4201.5 273.88,-4199.5 135.12,-4199.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4197.5 135.12,-4199.5 273.88,-4199.5 273.88,-4197.5 135.12,-4197.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4195.5 135.12,-4197.5 273.88,-4197.5 273.88,-4195.5 135.12,-4195.5"/>
+<text text-anchor="start" x="179" y="-4180.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4173.5 135.12,-4175.5 273.88,-4175.5 273.88,-4173.5 135.12,-4173.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4171.5 135.12,-4173.5 273.88,-4173.5 273.88,-4171.5 135.12,-4171.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4169.5 135.12,-4171.5 273.88,-4171.5 273.88,-4169.5 135.12,-4169.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4167.5 135.12,-4169.5 273.88,-4169.5 273.88,-4167.5 135.12,-4167.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4165.5 135.12,-4167.5 273.88,-4167.5 273.88,-4165.5 135.12,-4165.5"/>
+<text text-anchor="start" x="179.38" y="-4150.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4143.5 135.12,-4145.5 273.88,-4145.5 273.88,-4143.5 135.12,-4143.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4141.5 135.12,-4143.5 273.88,-4143.5 273.88,-4141.5 135.12,-4141.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4139.5 135.12,-4141.5 273.88,-4141.5 273.88,-4139.5 135.12,-4139.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4137.5 135.12,-4139.5 273.88,-4139.5 273.88,-4137.5 135.12,-4137.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4135.5 135.12,-4137.5 273.88,-4137.5 273.88,-4135.5 135.12,-4135.5"/>
+<text text-anchor="start" x="179.38" y="-4120.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4113.5 135.12,-4115.5 273.88,-4115.5 273.88,-4113.5 135.12,-4113.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4111.5 135.12,-4113.5 273.88,-4113.5 273.88,-4111.5 135.12,-4111.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4109.5 135.12,-4111.5 273.88,-4111.5 273.88,-4109.5 135.12,-4109.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4107.5 135.12,-4109.5 273.88,-4109.5 273.88,-4107.5 135.12,-4107.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4105.5 135.12,-4107.5 273.88,-4107.5 273.88,-4105.5 135.12,-4105.5"/>
+<text text-anchor="start" x="178.62" y="-4090.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4083.5 135.12,-4085.5 273.88,-4085.5 273.88,-4083.5 135.12,-4083.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4081.5 135.12,-4083.5 273.88,-4083.5 273.88,-4081.5 135.12,-4081.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4079.5 135.12,-4081.5 273.88,-4081.5 273.88,-4079.5 135.12,-4079.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4077.5 135.12,-4079.5 273.88,-4079.5 273.88,-4077.5 135.12,-4077.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4075.5 135.12,-4077.5 273.88,-4077.5 273.88,-4075.5 135.12,-4075.5"/>
+<text text-anchor="start" x="179.38" y="-4060.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4053.5 135.12,-4055.5 273.88,-4055.5 273.88,-4053.5 135.12,-4053.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4051.5 135.12,-4053.5 273.88,-4053.5 273.88,-4051.5 135.12,-4051.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4049.5 135.12,-4051.5 273.88,-4051.5 273.88,-4049.5 135.12,-4049.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4047.5 135.12,-4049.5 273.88,-4049.5 273.88,-4047.5 135.12,-4047.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4045.5 135.12,-4047.5 273.88,-4047.5 273.88,-4045.5 135.12,-4045.5"/>
+<text text-anchor="start" x="179.75" y="-4030.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4023.5 135.12,-4025.5 273.88,-4025.5 273.88,-4023.5 135.12,-4023.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4021.5 135.12,-4023.5 273.88,-4023.5 273.88,-4021.5 135.12,-4021.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4019.5 135.12,-4021.5 273.88,-4021.5 273.88,-4019.5 135.12,-4019.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4017.5 135.12,-4019.5 273.88,-4019.5 273.88,-4017.5 135.12,-4017.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4015.5 135.12,-4017.5 273.88,-4017.5 273.88,-4015.5 135.12,-4015.5"/>
+<text text-anchor="start" x="169.25" y="-4000.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3993.5 135.12,-3995.5 273.88,-3995.5 273.88,-3993.5 135.12,-3993.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3991.5 135.12,-3993.5 273.88,-3993.5 273.88,-3991.5 135.12,-3991.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3989.5 135.12,-3991.5 273.88,-3991.5 273.88,-3989.5 135.12,-3989.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3987.5 135.12,-3989.5 273.88,-3989.5 273.88,-3987.5 135.12,-3987.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3985.5 135.12,-3987.5 273.88,-3987.5 273.88,-3985.5 135.12,-3985.5"/>
+<text text-anchor="start" x="168.88" y="-3970.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3963.5 135.12,-3965.5 273.88,-3965.5 273.88,-3963.5 135.12,-3963.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3961.5 135.12,-3963.5 273.88,-3963.5 273.88,-3961.5 135.12,-3961.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3959.5 135.12,-3961.5 273.88,-3961.5 273.88,-3959.5 135.12,-3959.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3957.5 135.12,-3959.5 273.88,-3959.5 273.88,-3957.5 135.12,-3957.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3955.5 135.12,-3957.5 273.88,-3957.5 273.88,-3955.5 135.12,-3955.5"/>
+<text text-anchor="start" x="166.62" y="-3940.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3933.5 135.12,-3935.5 273.88,-3935.5 273.88,-3933.5 135.12,-3933.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3931.5 135.12,-3933.5 273.88,-3933.5 273.88,-3931.5 135.12,-3931.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3929.5 135.12,-3931.5 273.88,-3931.5 273.88,-3929.5 135.12,-3929.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3927.5 135.12,-3929.5 273.88,-3929.5 273.88,-3927.5 135.12,-3927.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3925.5 135.12,-3927.5 273.88,-3927.5 273.88,-3925.5 135.12,-3925.5"/>
+<text text-anchor="start" x="168.88" y="-3910.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3903.5 135.12,-3905.5 273.88,-3905.5 273.88,-3903.5 135.12,-3903.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3901.5 135.12,-3903.5 273.88,-3903.5 273.88,-3901.5 135.12,-3901.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3899.5 135.12,-3901.5 273.88,-3901.5 273.88,-3899.5 135.12,-3899.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3897.5 135.12,-3899.5 273.88,-3899.5 273.88,-3897.5 135.12,-3897.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3895.5 135.12,-3897.5 273.88,-3897.5 273.88,-3895.5 135.12,-3895.5"/>
+<text text-anchor="start" x="167.75" y="-3880.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3873.5 135.12,-3875.5 273.88,-3875.5 273.88,-3873.5 135.12,-3873.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3871.5 135.12,-3873.5 273.88,-3873.5 273.88,-3871.5 135.12,-3871.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3869.5 135.12,-3871.5 273.88,-3871.5 273.88,-3869.5 135.12,-3869.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3867.5 135.12,-3869.5 273.88,-3869.5 273.88,-3867.5 135.12,-3867.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3865.5 135.12,-3867.5 273.88,-3867.5 273.88,-3865.5 135.12,-3865.5"/>
+<text text-anchor="start" x="170" y="-3850.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3843.5 135.12,-3845.5 273.88,-3845.5 273.88,-3843.5 135.12,-3843.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3841.5 135.12,-3843.5 273.88,-3843.5 273.88,-3841.5 135.12,-3841.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3839.5 135.12,-3841.5 273.88,-3841.5 273.88,-3839.5 135.12,-3839.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3837.5 135.12,-3839.5 273.88,-3839.5 273.88,-3837.5 135.12,-3837.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3835.5 135.12,-3837.5 273.88,-3837.5 273.88,-3835.5 135.12,-3835.5"/>
+<text text-anchor="start" x="167" y="-3820.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3813.5 135.12,-3815.5 273.88,-3815.5 273.88,-3813.5 135.12,-3813.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3811.5 135.12,-3813.5 273.88,-3813.5 273.88,-3811.5 135.12,-3811.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3809.5 135.12,-3811.5 273.88,-3811.5 273.88,-3809.5 135.12,-3809.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3807.5 135.12,-3809.5 273.88,-3809.5 273.88,-3807.5 135.12,-3807.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3805.5 135.12,-3807.5 273.88,-3807.5 273.88,-3805.5 135.12,-3805.5"/>
+<text text-anchor="start" x="169.25" y="-3790.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3783.5 135.12,-3785.5 273.88,-3785.5 273.88,-3783.5 135.12,-3783.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3781.5 135.12,-3783.5 273.88,-3783.5 273.88,-3781.5 135.12,-3781.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3779.5 135.12,-3781.5 273.88,-3781.5 273.88,-3779.5 135.12,-3779.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3777.5 135.12,-3779.5 273.88,-3779.5 273.88,-3777.5 135.12,-3777.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3775.5 135.12,-3777.5 273.88,-3777.5 273.88,-3775.5 135.12,-3775.5"/>
+<text text-anchor="start" x="167.38" y="-3760.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3753.5 135.12,-3755.5 273.88,-3755.5 273.88,-3753.5 135.12,-3753.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3751.5 135.12,-3753.5 273.88,-3753.5 273.88,-3751.5 135.12,-3751.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3749.5 135.12,-3751.5 273.88,-3751.5 273.88,-3749.5 135.12,-3749.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3747.5 135.12,-3749.5 273.88,-3749.5 273.88,-3747.5 135.12,-3747.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3745.5 135.12,-3747.5 273.88,-3747.5 273.88,-3745.5 135.12,-3745.5"/>
+<text text-anchor="start" x="169.62" y="-3730.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3723.5 135.12,-3725.5 273.88,-3725.5 273.88,-3723.5 135.12,-3723.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3721.5 135.12,-3723.5 273.88,-3723.5 273.88,-3721.5 135.12,-3721.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3719.5 135.12,-3721.5 273.88,-3721.5 273.88,-3719.5 135.12,-3719.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3717.5 135.12,-3719.5 273.88,-3719.5 273.88,-3717.5 135.12,-3717.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3715.5 135.12,-3717.5 273.88,-3717.5 273.88,-3715.5 135.12,-3715.5"/>
+<text text-anchor="start" x="167.38" y="-3700.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3693.5 135.12,-3695.5 273.88,-3695.5 273.88,-3693.5 135.12,-3693.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3691.5 135.12,-3693.5 273.88,-3693.5 273.88,-3691.5 135.12,-3691.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3689.5 135.12,-3691.5 273.88,-3691.5 273.88,-3689.5 135.12,-3689.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3687.5 135.12,-3689.5 273.88,-3689.5 273.88,-3687.5 135.12,-3687.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3685.5 135.12,-3687.5 273.88,-3687.5 273.88,-3685.5 135.12,-3685.5"/>
+<text text-anchor="start" x="169.62" y="-3670.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3663.5 135.12,-3665.5 273.88,-3665.5 273.88,-3663.5 135.12,-3663.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3661.5 135.12,-3663.5 273.88,-3663.5 273.88,-3661.5 135.12,-3661.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3659.5 135.12,-3661.5 273.88,-3661.5 273.88,-3659.5 135.12,-3659.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3657.5 135.12,-3659.5 273.88,-3659.5 273.88,-3657.5 135.12,-3657.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3655.5 135.12,-3657.5 273.88,-3657.5 273.88,-3655.5 135.12,-3655.5"/>
+<text text-anchor="start" x="166.62" y="-3640.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3633.5 135.12,-3635.5 273.88,-3635.5 273.88,-3633.5 135.12,-3633.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3631.5 135.12,-3633.5 273.88,-3633.5 273.88,-3631.5 135.12,-3631.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3629.5 135.12,-3631.5 273.88,-3631.5 273.88,-3629.5 135.12,-3629.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3627.5 135.12,-3629.5 273.88,-3629.5 273.88,-3627.5 135.12,-3627.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3625.5 135.12,-3627.5 273.88,-3627.5 273.88,-3625.5 135.12,-3625.5"/>
+<text text-anchor="start" x="168.88" y="-3610.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3603.5 135.12,-3605.5 273.88,-3605.5 273.88,-3603.5 135.12,-3603.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3601.5 135.12,-3603.5 273.88,-3603.5 273.88,-3601.5 135.12,-3601.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3599.5 135.12,-3601.5 273.88,-3601.5 273.88,-3599.5 135.12,-3599.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3597.5 135.12,-3599.5 273.88,-3599.5 273.88,-3597.5 135.12,-3597.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3595.5 135.12,-3597.5 273.88,-3597.5 273.88,-3595.5 135.12,-3595.5"/>
+<text text-anchor="start" x="167.38" y="-3580.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3573.5 135.12,-3575.5 273.88,-3575.5 273.88,-3573.5 135.12,-3573.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3571.5 135.12,-3573.5 273.88,-3573.5 273.88,-3571.5 135.12,-3571.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3569.5 135.12,-3571.5 273.88,-3571.5 273.88,-3569.5 135.12,-3569.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3567.5 135.12,-3569.5 273.88,-3569.5 273.88,-3567.5 135.12,-3567.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3565.5 135.12,-3567.5 273.88,-3567.5 273.88,-3565.5 135.12,-3565.5"/>
+<text text-anchor="start" x="169.62" y="-3550.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3543.5 135.12,-3545.5 273.88,-3545.5 273.88,-3543.5 135.12,-3543.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3541.5 135.12,-3543.5 273.88,-3543.5 273.88,-3541.5 135.12,-3541.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3539.5 135.12,-3541.5 273.88,-3541.5 273.88,-3539.5 135.12,-3539.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3537.5 135.12,-3539.5 273.88,-3539.5 273.88,-3537.5 135.12,-3537.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3535.5 135.12,-3537.5 273.88,-3537.5 273.88,-3535.5 135.12,-3535.5"/>
+<text text-anchor="start" x="168.5" y="-3520.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3513.5 135.12,-3515.5 273.88,-3515.5 273.88,-3513.5 135.12,-3513.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3511.5 135.12,-3513.5 273.88,-3513.5 273.88,-3511.5 135.12,-3511.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3509.5 135.12,-3511.5 273.88,-3511.5 273.88,-3509.5 135.12,-3509.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3507.5 135.12,-3509.5 273.88,-3509.5 273.88,-3507.5 135.12,-3507.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3505.5 135.12,-3507.5 273.88,-3507.5 273.88,-3505.5 135.12,-3505.5"/>
+<text text-anchor="start" x="169.25" y="-3490.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3483.5 135.12,-3485.5 273.88,-3485.5 273.88,-3483.5 135.12,-3483.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3481.5 135.12,-3483.5 273.88,-3483.5 273.88,-3481.5 135.12,-3481.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3479.5 135.12,-3481.5 273.88,-3481.5 273.88,-3479.5 135.12,-3479.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3477.5 135.12,-3479.5 273.88,-3479.5 273.88,-3477.5 135.12,-3477.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3475.5 135.12,-3477.5 273.88,-3477.5 273.88,-3475.5 135.12,-3475.5"/>
+<text text-anchor="start" x="168.88" y="-3460.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3453.5 135.12,-3455.5 273.88,-3455.5 273.88,-3453.5 135.12,-3453.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3451.5 135.12,-3453.5 273.88,-3453.5 273.88,-3451.5 135.12,-3451.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3449.5 135.12,-3451.5 273.88,-3451.5 273.88,-3449.5 135.12,-3449.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3447.5 135.12,-3449.5 273.88,-3449.5 273.88,-3447.5 135.12,-3447.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3445.5 135.12,-3447.5 273.88,-3447.5 273.88,-3445.5 135.12,-3445.5"/>
+<text text-anchor="start" x="170" y="-3430.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3423.5 135.12,-3425.5 273.88,-3425.5 273.88,-3423.5 135.12,-3423.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3421.5 135.12,-3423.5 273.88,-3423.5 273.88,-3421.5 135.12,-3421.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3419.5 135.12,-3421.5 273.88,-3421.5 273.88,-3419.5 135.12,-3419.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3417.5 135.12,-3419.5 273.88,-3419.5 273.88,-3417.5 135.12,-3417.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3415.5 135.12,-3417.5 273.88,-3417.5 273.88,-3415.5 135.12,-3415.5"/>
+<text text-anchor="start" x="177.12" y="-3400.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3393.5 135.12,-3395.5 273.88,-3395.5 273.88,-3393.5 135.12,-3393.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3391.5 135.12,-3393.5 273.88,-3393.5 273.88,-3391.5 135.12,-3391.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3389.5 135.12,-3391.5 273.88,-3391.5 273.88,-3389.5 135.12,-3389.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3387.5 135.12,-3389.5 273.88,-3389.5 273.88,-3387.5 135.12,-3387.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3385.5 135.12,-3387.5 273.88,-3387.5 273.88,-3385.5 135.12,-3385.5"/>
+<text text-anchor="start" x="179.38" y="-3370.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3363.5 135.12,-3365.5 273.88,-3365.5 273.88,-3363.5 135.12,-3363.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3361.5 135.12,-3363.5 273.88,-3363.5 273.88,-3361.5 135.12,-3361.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3359.5 135.12,-3361.5 273.88,-3361.5 273.88,-3359.5 135.12,-3359.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3357.5 135.12,-3359.5 273.88,-3359.5 273.88,-3357.5 135.12,-3357.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3355.5 135.12,-3357.5 273.88,-3357.5 273.88,-3355.5 135.12,-3355.5"/>
+<text text-anchor="start" x="178.62" y="-3340.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3333.5 135.12,-3335.5 273.88,-3335.5 273.88,-3333.5 135.12,-3333.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3331.5 135.12,-3333.5 273.88,-3333.5 273.88,-3331.5 135.12,-3331.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3329.5 135.12,-3331.5 273.88,-3331.5 273.88,-3329.5 135.12,-3329.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3327.5 135.12,-3329.5 273.88,-3329.5 273.88,-3327.5 135.12,-3327.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3325.5 135.12,-3327.5 273.88,-3327.5 273.88,-3325.5 135.12,-3325.5"/>
+<text text-anchor="start" x="179.75" y="-3310.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3303.5 135.12,-3305.5 273.88,-3305.5 273.88,-3303.5 135.12,-3303.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3301.5 135.12,-3303.5 273.88,-3303.5 273.88,-3301.5 135.12,-3301.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3299.5 135.12,-3301.5 273.88,-3301.5 273.88,-3299.5 135.12,-3299.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3297.5 135.12,-3299.5 273.88,-3299.5 273.88,-3297.5 135.12,-3297.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3295.5 135.12,-3297.5 273.88,-3297.5 273.88,-3295.5 135.12,-3295.5"/>
+<text text-anchor="start" x="179" y="-3280.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3273.5 135.12,-3275.5 273.88,-3275.5 273.88,-3273.5 135.12,-3273.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3271.5 135.12,-3273.5 273.88,-3273.5 273.88,-3271.5 135.12,-3271.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3269.5 135.12,-3271.5 273.88,-3271.5 273.88,-3269.5 135.12,-3269.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3267.5 135.12,-3269.5 273.88,-3269.5 273.88,-3267.5 135.12,-3267.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3265.5 135.12,-3267.5 273.88,-3267.5 273.88,-3265.5 135.12,-3265.5"/>
+<text text-anchor="start" x="179.38" y="-3250.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3243.5 135.12,-3245.5 273.88,-3245.5 273.88,-3243.5 135.12,-3243.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3241.5 135.12,-3243.5 273.88,-3243.5 273.88,-3241.5 135.12,-3241.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3239.5 135.12,-3241.5 273.88,-3241.5 273.88,-3239.5 135.12,-3239.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3237.5 135.12,-3239.5 273.88,-3239.5 273.88,-3237.5 135.12,-3237.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3235.5 135.12,-3237.5 273.88,-3237.5 273.88,-3235.5 135.12,-3235.5"/>
+<text text-anchor="start" x="179.38" y="-3220.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3213.5 135.12,-3215.5 273.88,-3215.5 273.88,-3213.5 135.12,-3213.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3211.5 135.12,-3213.5 273.88,-3213.5 273.88,-3211.5 135.12,-3211.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3209.5 135.12,-3211.5 273.88,-3211.5 273.88,-3209.5 135.12,-3209.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3207.5 135.12,-3209.5 273.88,-3209.5 273.88,-3207.5 135.12,-3207.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3205.5 135.12,-3207.5 273.88,-3207.5 273.88,-3205.5 135.12,-3205.5"/>
+<text text-anchor="start" x="178.62" y="-3190.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3183.5 135.12,-3185.5 273.88,-3185.5 273.88,-3183.5 135.12,-3183.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3181.5 135.12,-3183.5 273.88,-3183.5 273.88,-3181.5 135.12,-3181.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3179.5 135.12,-3181.5 273.88,-3181.5 273.88,-3179.5 135.12,-3179.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3177.5 135.12,-3179.5 273.88,-3179.5 273.88,-3177.5 135.12,-3177.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3175.5 135.12,-3177.5 273.88,-3177.5 273.88,-3175.5 135.12,-3175.5"/>
+<text text-anchor="start" x="144.38" y="-3160.2" font-family="arial" font-size="14.00"> </text>
</g>
<!-- W11&#45;&#45;Resistor -->
-<g id="edge115" class="edge">
+<g id="edge33" class="edge">
<title>W11:e&#45;&#45;Resistor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2427.75C1953.72,-2428.8 1989.01,-2396.55 2139.12,-2395.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2429.75C1955.07,-2430.27 1990.36,-2398.02 2139.12,-2397.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2431.75C1956.42,-2431.75 1991.7,-2399.5 2139.12,-2399.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2433.75C1957.77,-2433.23 1993.05,-2400.98 2139.12,-2401.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2435.75C1959.12,-2434.7 1994.4,-2402.45 2139.12,-2403.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1188.75C2040.08,-1190.57 2083.7,-1123.32 2282.25,-1121.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1190.75C2041.76,-1191.66 2085.38,-1124.41 2282.25,-1123.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1192.75C2043.44,-1192.75 2087.06,-1125.5 2282.25,-1125.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1194.75C2045.12,-1193.84 2088.74,-1126.59 2282.25,-1127.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1196.75C2046.8,-1194.93 2090.42,-1127.68 2282.25,-1129.5"/>
</g>
<!-- W11&#45;&#45;Resistor -->
-<g id="edge117" class="edge">
+<g id="edge35" class="edge">
<title>W11:e&#45;&#45;Resistor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2397.75C1958.11,-2398.33 1994.15,-2420.08 2139.12,-2419.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2399.75C1957.07,-2400.04 1993.12,-2421.79 2139.12,-2421.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2401.75C1956.04,-2401.75 1992.08,-2423.5 2139.12,-2423.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2403.75C1955.01,-2403.46 1991.05,-2425.21 2139.12,-2425.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2405.75C1953.97,-2405.17 1990.02,-2426.92 2139.12,-2427.5"/>
-</g>
-<!-- W11&#45;&#45;_GND_20 -->
-<g id="edge119" class="edge">
-<title>W11:e&#45;&#45;_GND_20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2355.75C1965.85,-2355.75 2005.03,-2351 2161.88,-2351"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1158.75C2040.17,-1158.89 2088.21,-1145.64 2282.25,-1145.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1160.75C2040.7,-1160.82 2088.74,-1147.57 2282.25,-1147.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1162.75C2041.23,-1162.75 2089.27,-1149.5 2282.25,-1149.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1164.75C2041.76,-1164.68 2089.8,-1151.43 2282.25,-1151.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1166.75C2042.29,-1166.61 2090.33,-1153.36 2282.25,-1153.5"/>
</g>
<!-- W12&#45;&#45;Radar -->
-<g id="edge121" class="edge">
+<g id="edge37" class="edge">
<title>W12:e&#45;&#45;Radar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2187.75C1905.42,-2189.75 1927.13,-2227.25 2023.12,-2225.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1802.5,-2189.75C1903.69,-2190.75 1925.39,-2228.25 2023.12,-2227.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1802.5,-2191.75C1901.96,-2191.75 1923.66,-2229.25 2023.12,-2229.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1802.5,-2193.75C1900.23,-2192.75 1921.93,-2230.25 2023.12,-2231.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2195.75C1898.5,-2193.75 1920.2,-2231.25 2023.12,-2233.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1625.75C1992.71,-1626.68 2026.91,-1655.18 2166.25,-1654.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1627.75C1991.43,-1628.21 2025.63,-1656.71 2166.25,-1656.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1629.75C1990.15,-1629.75 2024.35,-1658.25 2166.25,-1658.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1631.75C1988.87,-1631.29 2023.07,-1659.79 2166.25,-1660.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1633.75C1987.59,-1632.82 2021.79,-1661.32 2166.25,-1662.25"/>
</g>
<!-- W12&#45;&#45;Radar -->
-<g id="edge123" class="edge">
+<g id="edge39" class="edge">
<title>W12:e&#45;&#45;Radar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2157.75C1912.64,-2161.39 1920.95,-2252.89 2023.12,-2249.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1802.5,-2159.75C1910.65,-2161.57 1918.96,-2253.07 2023.12,-2251.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1802.5,-2161.75C1908.65,-2161.75 1916.97,-2253.25 2023.12,-2253.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1802.5,-2163.75C1906.66,-2161.93 1914.98,-2253.43 2023.12,-2255.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2165.75C1904.67,-2162.11 1912.99,-2253.61 2023.12,-2257.25"/>
-</g>
-<!-- W12&#45;&#45;_GND_21 -->
-<g id="edge125" class="edge">
-<title>W12:e&#45;&#45;_GND_21:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2115.75C1960.37,-2115.75 1825.08,-1886.52 1953,-1794 2028.76,-1739.2 2068.38,-1769 2161.88,-1769"/>
-</g>
-<!-- W13&#45;&#45;VP&#45;X J2 -->
-<g id="edge127" class="edge">
-<title>W13:e&#45;&#45;VP&#45;X J2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3586.5C1011.71,-3591.99 925.21,-3807.99 1037,-3802.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M892.5,-3588.5C1009.86,-3591.24 923.36,-3807.24 1037,-3804.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M892.5,-3590.5C1008,-3590.5 921.5,-3806.5 1037,-3806.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M892.5,-3592.5C1006.14,-3589.76 919.64,-3805.76 1037,-3808.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3594.5C1004.29,-3589.01 917.79,-3805.01 1037,-3810.5"/>
-</g>
-<!-- W13&#45;&#45;VP&#45;X J2 -->
-<g id="edge129" class="edge">
-<title>W13:e&#45;&#45;VP&#45;X J2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3556.5C1013.93,-3562.02 922.97,-3784.02 1037,-3778.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M892.5,-3558.5C1012.08,-3561.26 921.12,-3783.26 1037,-3780.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M892.5,-3560.5C1010.23,-3560.5 919.27,-3782.5 1037,-3782.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M892.5,-3562.5C1008.38,-3559.74 917.42,-3781.74 1037,-3784.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3564.5C1006.53,-3558.98 915.57,-3780.98 1037,-3786.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1595.75C1998.08,-1598.55 2024.05,-1681.05 2166.25,-1678.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1597.75C1996.17,-1599.15 2022.15,-1681.65 2166.25,-1680.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1599.75C1994.26,-1599.75 2020.24,-1682.25 2166.25,-1682.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1601.75C1992.35,-1600.35 2018.33,-1682.85 2166.25,-1684.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1603.75C1990.45,-1600.95 2016.42,-1683.45 2166.25,-1686.25"/>
+</g>
+<!-- W13&#45;&#45;VP&#45;XJ2 -->
+<g id="edge41" class="edge">
+<title>W13:e&#45;&#45;VP&#45;XJ2:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2179.5C964.31,-2183.72 959.68,-2268.72 1030,-2264.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M886,-2181.5C962.32,-2183.61 957.68,-2268.61 1030,-2266.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M886,-2183.5C960.32,-2183.5 955.68,-2268.5 1030,-2268.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M886,-2185.5C958.32,-2183.39 953.68,-2268.39 1030,-2270.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2187.5C956.32,-2183.28 951.69,-2268.28 1030,-2272.5"/>
+</g>
+<!-- W13&#45;&#45;VP&#45;XJ2 -->
+<g id="edge43" class="edge">
+<title>W13:e&#45;&#45;VP&#45;XJ2:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2149.5C965.7,-2153.82 958.28,-2244.82 1030,-2240.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M886,-2151.5C963.7,-2153.66 956.29,-2244.66 1030,-2242.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M886,-2153.5C961.71,-2153.5 954.29,-2244.5 1030,-2244.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M886,-2155.5C959.71,-2153.34 952.3,-2244.34 1030,-2246.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2157.5C957.72,-2153.18 950.3,-2244.18 1030,-2248.5"/>
</g>
<!-- W15&#45;&#45;Swash1 -->
-<g id="edge131" class="edge">
+<g id="edge45" class="edge">
<title>W15:e&#45;&#45;Swash1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2907.75C1913.95,-2913.01 1855.64,-3089.26 1953,-3084"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2909.75C1912.05,-2912.38 1853.74,-3088.63 1953,-3086"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2911.75C1910.15,-2911.75 1851.85,-3088 1953,-3088"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2913.75C1908.26,-2911.12 1849.95,-3087.37 1953,-3090"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2915.75C1906.36,-2910.49 1848.05,-3086.74 1953,-3092"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3263.75C1407.23,-3266.97 1421.24,-3337.22 1518,-3334"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1302.62,-3265.75C1405.27,-3267.36 1419.28,-3337.61 1518,-3336"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1302.62,-3267.75C1403.31,-3267.75 1417.31,-3338 1518,-3338"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1302.62,-3269.75C1401.35,-3268.14 1415.35,-3338.39 1518,-3340"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3271.75C1399.39,-3268.53 1413.39,-3338.78 1518,-3342"/>
</g>
<!-- W15&#45;&#45;Swash1 -->
-<g id="edge133" class="edge">
+<g id="edge47" class="edge">
<title>W15:e&#45;&#45;Swash1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2877.75C1916.02,-2883.05 1853.55,-3065.3 1953,-3060"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2879.75C1914.12,-2882.4 1851.66,-3064.65 1953,-3062"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2881.75C1912.23,-2881.75 1849.77,-3064 1953,-3064"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2883.75C1910.34,-2881.1 1847.88,-3063.35 1953,-3066"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2885.75C1908.45,-2880.45 1845.98,-3062.7 1953,-3068"/>
-</g>
-<!-- W15&#45;&#45;_GND_18 -->
-<g id="edge135" class="edge">
-<title>W15:e&#45;&#45;_GND_18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2835.75C1892.52,-2835.75 1876.27,-2747.99 1953,-2715 2038.84,-2678.09 2068.43,-2691 2161.88,-2691"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3233.75C1408.12,-3237.11 1420.4,-3313.36 1518,-3310"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1302.62,-3235.75C1406.14,-3237.43 1418.43,-3313.68 1518,-3312"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1302.62,-3237.75C1404.17,-3237.75 1416.46,-3314 1518,-3314"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1302.62,-3239.75C1402.19,-3238.07 1414.48,-3314.32 1518,-3316"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3241.75C1400.22,-3238.39 1412.51,-3314.64 1518,-3318"/>
</g>
<!-- W16&#45;&#45;Swash2 -->
-<g id="edge137" class="edge">
+<g id="edge49" class="edge">
<title>W16:e&#45;&#45;Swash2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2667.75C1877.84,-2671.84 1876.16,-2593.59 1953,-2589.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2669.75C1879.84,-2671.79 1878.16,-2593.54 1953,-2591.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2671.75C1881.84,-2671.75 1880.16,-2593.5 1953,-2593.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2673.75C1883.84,-2671.71 1882.16,-2593.46 1953,-2595.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2675.75C1885.84,-2671.66 1884.16,-2593.41 1953,-2597.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2470.75C1395.54,-2470.79 1419.9,-2467.54 1518,-2467.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2472.75C1395.8,-2472.77 1420.17,-2469.52 1518,-2469.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2474.75C1396.07,-2474.75 1420.43,-2471.5 1518,-2471.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2476.75C1396.33,-2476.73 1420.7,-2473.48 1518,-2473.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2478.75C1396.6,-2478.71 1420.96,-2475.46 1518,-2475.5"/>
</g>
<!-- W16&#45;&#45;Swash2 -->
-<g id="edge139" class="edge">
+<g id="edge51" class="edge">
<title>W16:e&#45;&#45;Swash2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2637.75C1876.6,-2641.71 1877.4,-2569.46 1953,-2565.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2639.75C1878.6,-2641.73 1879.4,-2569.48 1953,-2567.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2641.75C1880.6,-2641.75 1881.4,-2569.5 1953,-2569.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2643.75C1882.6,-2641.77 1883.4,-2569.52 1953,-2571.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2645.75C1884.6,-2641.79 1885.4,-2569.54 1953,-2573.5"/>
-</g>
-<!-- W16&#45;&#45;_GND_16 -->
-<g id="edge141" class="edge">
-<title>W16:e&#45;&#45;_GND_16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2595.75C1876.71,-2595.75 1887.01,-2561.17 1953,-2546 2044.12,-2525.06 2068.38,-2521 2161.88,-2521"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2440.75C1396.51,-2440.78 1420.89,-2443.53 1518,-2443.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2442.75C1396.29,-2442.76 1420.66,-2445.51 1518,-2445.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2444.75C1396.06,-2444.75 1420.44,-2447.5 1518,-2447.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2446.75C1395.84,-2446.74 1420.21,-2449.49 1518,-2449.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2448.75C1395.61,-2448.72 1419.99,-2451.47 1518,-2451.5"/>
</g>
<!-- W17&#45;&#45;Swash3 -->
-<g id="edge143" class="edge">
+<g id="edge53" class="edge">
<title>W17:e&#45;&#45;Swash3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3167.75C1887.48,-3171.98 1882.51,-3257.73 1953,-3253.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-3169.75C1885.48,-3171.87 1880.51,-3257.62 1953,-3255.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-3171.75C1883.49,-3171.75 1878.51,-3257.5 1953,-3257.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-3173.75C1881.49,-3171.63 1876.52,-3257.38 1953,-3259.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3175.75C1879.49,-3171.52 1874.52,-3257.27 1953,-3261.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2710.75C1395.54,-2710.79 1419.9,-2707.54 1518,-2707.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2712.75C1395.8,-2712.77 1420.17,-2709.52 1518,-2709.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2714.75C1396.07,-2714.75 1420.43,-2711.5 1518,-2711.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2716.75C1396.33,-2716.73 1420.7,-2713.48 1518,-2713.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2718.75C1396.6,-2718.71 1420.96,-2715.46 1518,-2715.5"/>
</g>
<!-- W17&#45;&#45;Swash3 -->
-<g id="edge145" class="edge">
+<g id="edge55" class="edge">
<title>W17:e&#45;&#45;Swash3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3137.75C1888.87,-3142.09 1881.1,-3233.84 1953,-3229.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-3139.75C1886.88,-3141.92 1879.11,-3233.67 1953,-3231.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-3141.75C1884.89,-3141.75 1877.11,-3233.5 1953,-3233.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-3143.75C1882.89,-3141.58 1875.12,-3233.33 1953,-3235.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3145.75C1880.9,-3141.41 1873.13,-3233.16 1953,-3237.5"/>
-</g>
-<!-- W17&#45;&#45;_GND_15 -->
-<g id="edge147" class="edge">
-<title>W17:e&#45;&#45;_GND_15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3095.75C1879.26,-3095.75 1885.28,-3142.26 1953,-3161 2043.06,-3185.92 2068.43,-3185 2161.88,-3185"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2680.75C1396.51,-2680.78 1420.89,-2683.53 1518,-2683.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2682.75C1396.29,-2682.76 1420.66,-2685.51 1518,-2685.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2684.75C1396.06,-2684.75 1420.44,-2687.5 1518,-2687.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2686.75C1395.84,-2686.74 1420.21,-2689.49 1518,-2689.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2688.75C1395.61,-2688.72 1419.99,-2691.47 1518,-2691.5"/>
</g>
<!-- W18&#45;&#45;Yaw -->
-<g id="edge149" class="edge">
+<g id="edge57" class="edge">
<title>W18:e&#45;&#45;Yaw:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3417.75C1868.21,-3417.96 1885.34,-3423.71 1953,-3423.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1798,-3419.75C1867.57,-3419.85 1884.7,-3425.6 1953,-3425.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1798,-3421.75C1866.94,-3421.75 1884.06,-3427.5 1953,-3427.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1798,-3423.75C1866.3,-3423.65 1883.43,-3429.4 1953,-3429.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3425.75C1865.66,-3425.54 1882.79,-3431.29 1953,-3431.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2950.75C1400.87,-2953.81 1416.1,-2890.56 1518,-2887.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1306.75,-2952.75C1402.81,-2954.28 1418.05,-2891.03 1518,-2889.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1306.75,-2954.75C1404.76,-2954.75 1419.99,-2891.5 1518,-2891.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1306.75,-2956.75C1406.7,-2955.22 1421.94,-2891.97 1518,-2893.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2958.75C1408.65,-2955.69 1423.88,-2892.44 1518,-2895.5"/>
</g>
<!-- W18&#45;&#45;Yaw -->
-<g id="edge151" class="edge">
+<g id="edge59" class="edge">
<title>W18:e&#45;&#45;Yaw:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3387.75C1869.38,-3388.47 1886.2,-3400.22 1953,-3399.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1798,-3389.75C1868.23,-3390.11 1885.06,-3401.86 1953,-3401.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1798,-3391.75C1867.09,-3391.75 1883.91,-3403.5 1953,-3403.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1798,-3393.75C1865.94,-3393.39 1882.77,-3405.14 1953,-3405.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3395.75C1864.8,-3395.03 1881.62,-3406.78 1953,-3407.5"/>
-</g>
-<!-- W18&#45;&#45;_GND_17 -->
-<g id="edge153" class="edge">
-<title>W18:e&#45;&#45;_GND_17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3345.75C1959.77,-3345.75 2000.1,-3355 2161.88,-3355"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2920.75C1400.19,-2923.63 1416.88,-2866.38 1518,-2863.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1306.75,-2922.75C1402.11,-2924.19 1418.8,-2866.94 1518,-2865.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1306.75,-2924.75C1404.03,-2924.75 1420.72,-2867.5 1518,-2867.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1306.75,-2926.75C1405.95,-2925.31 1422.64,-2868.06 1518,-2869.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2928.75C1407.87,-2925.87 1424.56,-2868.62 1518,-2871.5"/>
</g>
</g>
</svg>
@@ -3058,7 +2050,7 @@
<td style="border:1px solid #000000; padding: 4px">Connector, 25-pin dsub (Male Terminals), 18 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
- <td style="border:1px solid #000000; padding: 4px">VP-X J2</td>
+ <td style="border:1px solid #000000; padding: 4px">VP-XJ2</td>
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
@@ -3103,14 +2095,6 @@
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">8</td>
- <td style="border:1px solid #000000; padding: 4px">Connector, GND</td>
- <td style="border:1px solid #000000; padding: 4px; text-align:right">24</td>
- <td style="border:1px solid #000000; padding: 4px"></td>
- <td style="border:1px solid #000000; padding: 4px"></td>
- <td style="border:1px solid #000000; padding: 4px"></td>
- </tr>
- <tr>
- <td style="border:1px solid #000000; padding: 4px">9</td>
<td style="border:1px solid #000000; padding: 4px">Connector, Temp, 2 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
@@ -3118,7 +2102,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">10</td>
+ <td style="border:1px solid #000000; padding: 4px">9</td>
<td style="border:1px solid #000000; padding: 4px">Connector, splice</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">15</td>
<td style="border:1px solid #000000; padding: 4px"></td>
@@ -3126,7 +2110,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">11</td>
+ <td style="border:1px solid #000000; padding: 4px">10</td>
<td style="border:1px solid #000000; padding: 4px">Connector, temp, 2 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
@@ -3134,7 +2118,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">12</td>
+ <td style="border:1px solid #000000; padding: 4px">11</td>
<td style="border:1px solid #000000; padding: 4px">Crimp, FGN.0M.555.ZZC, 26 - 22 AWG</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">71</td>
<td style="border:1px solid #000000; padding: 4px"></td>
@@ -3142,7 +2126,7 @@
<td style="border:1px solid #000000; padding: 4px">LEMO</td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">13</td>
+ <td style="border:1px solid #000000; padding: 4px">12</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">13.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3150,7 +2134,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">14</td>
+ <td style="border:1px solid #000000; padding: 4px">13</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3158,7 +2142,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">15</td>
+ <td style="border:1px solid #000000; padding: 4px">14</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BKBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1.0</td>
<td style="border:1px solid #000000; padding: 4px">Inch</td>
@@ -3166,7 +2150,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">16</td>
+ <td style="border:1px solid #000000; padding: 4px">15</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BKBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3174,7 +2158,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">17</td>
+ <td style="border:1px solid #000000; padding: 4px">16</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BKWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1.0</td>
<td style="border:1px solid #000000; padding: 4px">Inch</td>
@@ -3182,7 +2166,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">18</td>
+ <td style="border:1px solid #000000; padding: 4px">17</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BKWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3190,7 +2174,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">19</td>
+ <td style="border:1px solid #000000; padding: 4px">18</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">75.5</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3198,7 +2182,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">20</td>
+ <td style="border:1px solid #000000; padding: 4px">19</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3206,7 +2190,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">21</td>
+ <td style="border:1px solid #000000; padding: 4px">20</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BNGY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3214,7 +2198,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">22</td>
+ <td style="border:1px solid #000000; padding: 4px">21</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BNPK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">TBD</td>
@@ -3222,7 +2206,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">23</td>
+ <td style="border:1px solid #000000; padding: 4px">22</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BNPK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3230,7 +2214,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">24</td>
+ <td style="border:1px solid #000000; padding: 4px">23</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BNYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3238,7 +2222,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">25</td>
+ <td style="border:1px solid #000000; padding: 4px">24</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BU</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">13.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3246,7 +2230,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">26</td>
+ <td style="border:1px solid #000000; padding: 4px">25</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BU</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.9</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3254,7 +2238,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">27</td>
+ <td style="border:1px solid #000000; padding: 4px">26</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BUBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3262,7 +2246,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">28</td>
+ <td style="border:1px solid #000000; padding: 4px">27</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BURD</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3270,7 +2254,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">29</td>
+ <td style="border:1px solid #000000; padding: 4px">28</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BUWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3278,7 +2262,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">30</td>
+ <td style="border:1px solid #000000; padding: 4px">29</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">415.5</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3286,7 +2270,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">31</td>
+ <td style="border:1px solid #000000; padding: 4px">30</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3294,7 +2278,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">32</td>
+ <td style="border:1px solid #000000; padding: 4px">31</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3302,7 +2286,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">33</td>
+ <td style="border:1px solid #000000; padding: 4px">32</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNGY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3310,7 +2294,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">34</td>
+ <td style="border:1px solid #000000; padding: 4px">33</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNPK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">40.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3318,7 +2302,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">35</td>
+ <td style="border:1px solid #000000; padding: 4px">34</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNPK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3326,7 +2310,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">36</td>
+ <td style="border:1px solid #000000; padding: 4px">35</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3334,7 +2318,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">37</td>
+ <td style="border:1px solid #000000; padding: 4px">36</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">40.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3342,7 +2326,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">38</td>
+ <td style="border:1px solid #000000; padding: 4px">37</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3350,7 +2334,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">39</td>
+ <td style="border:1px solid #000000; padding: 4px">38</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.9</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3358,7 +2342,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">40</td>
+ <td style="border:1px solid #000000; padding: 4px">39</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GYWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3366,7 +2350,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">41</td>
+ <td style="border:1px solid #000000; padding: 4px">40</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.9</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3374,7 +2358,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">42</td>
+ <td style="border:1px solid #000000; padding: 4px">41</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKGY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3382,7 +2366,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">43</td>
+ <td style="border:1px solid #000000; padding: 4px">42</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">TBD</td>
@@ -3390,7 +2374,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">44</td>
+ <td style="border:1px solid #000000; padding: 4px">43</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3398,7 +2382,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">45</td>
+ <td style="border:1px solid #000000; padding: 4px">44</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">40.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3406,7 +2390,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">46</td>
+ <td style="border:1px solid #000000; padding: 4px">45</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3414,7 +2398,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">47</td>
+ <td style="border:1px solid #000000; padding: 4px">46</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, RD</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">13.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3422,7 +2406,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">48</td>
+ <td style="border:1px solid #000000; padding: 4px">47</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, RD</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.9</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3430,7 +2414,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">49</td>
+ <td style="border:1px solid #000000; padding: 4px">48</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, RDBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3438,7 +2422,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">50</td>
+ <td style="border:1px solid #000000; padding: 4px">49</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, RDWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3446,7 +2430,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">51</td>
+ <td style="border:1px solid #000000; padding: 4px">50</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, VT</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3454,7 +2438,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">52</td>
+ <td style="border:1px solid #000000; padding: 4px">51</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, WH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.9</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3462,7 +2446,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">53</td>
+ <td style="border:1px solid #000000; padding: 4px">52</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, YE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">340.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
@@ -3470,7 +2454,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">54</td>
+ <td style="border:1px solid #000000; padding: 4px">53</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, YE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.9</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
@@ -3478,7 +2462,7 @@
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
- <td style="border:1px solid #000000; padding: 4px">55</td>
+ <td style="border:1px solid #000000; padding: 4px">54</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, YEWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.6</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
diff --git a/wireviz/Choppy_IB_1X.png b/wireviz/Choppy_IB_1X.png
index c9eb862..0eebbde 100644
--- a/wireviz/Choppy_IB_1X.png
+++ b/wireviz/Choppy_IB_1X.png
Binary files differ
diff --git a/wireviz/Choppy_IB_1X.svg b/wireviz/Choppy_IB_1X.svg
index 7a3fa61..b2834f7 100644
--- a/wireviz/Choppy_IB_1X.svg
+++ b/wireviz/Choppy_IB_1X.svg
@@ -4,10 +4,10 @@
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
-<svg width="2420pt" height="3876pt"
- viewBox="0.00 0.00 2420.25 3875.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3871.5)">
-<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-3871.5 2416.25,-3871.5 2416.25,4 -4,4"/>
+<svg width="2538pt" height="5023pt"
+ viewBox="0.00 0.00 2538.25 5022.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 5018.5)">
+<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-5018.5 2534.25,-5018.5 2534.25,4 -4,4"/>
<!-- Veronte 1X -->
<g id="node1" class="node">
<title>Veronte 1X</title>
@@ -297,2735 +297,1727 @@
<polygon fill="none" stroke="black" points="0,-49 0,-73.5 409,-73.5 409,-49 0,-49"/>
<text text-anchor="start" x="132.12" y="-56.2" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="0,-24.5 0,-49 409,-49 409,-24.5 0,-24.5"/>
-<text text-anchor="start" x="4" y="-31.7" font-family="arial" font-size="14.00">68 x #12 (Crimp)</text>
+<text text-anchor="start" x="4" y="-31.7" font-family="arial" font-size="14.00">68 x #11 (Crimp)</text>
<polygon fill="none" stroke="black" points="0,0 0,-24.5 409,-24.5 409,0 0,0"/>
<text text-anchor="start" x="168.5" y="-7.2" font-family="arial" font-size="14.00">Veronte 1X</text>
</g>
-<!-- W1 -->
-<g id="node53" class="node">
-<title>W1</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="890,-2982.75 556,-2982.75 556,-2767.25 890,-2767.25 890,-2982.75"/>
-<polygon fill="none" stroke="black" points="556,-2958.25 556,-2982.75 890,-2982.75 890,-2958.25 556,-2958.25"/>
-<text text-anchor="start" x="711.75" y="-2965.45" font-family="arial" font-size="14.00">W1</text>
-<polygon fill="none" stroke="black" points="556,-2933.75 556,-2958.25 618.69,-2958.25 618.69,-2933.75 556,-2933.75"/>
-<text text-anchor="start" x="579.84" y="-2940.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="618.69,-2933.75 618.69,-2958.25 721.88,-2958.25 721.88,-2933.75 618.69,-2933.75"/>
-<text text-anchor="start" x="642.53" y="-2940.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="721.88,-2933.75 721.88,-2958.25 791.31,-2958.25 791.31,-2933.75 721.88,-2933.75"/>
-<text text-anchor="start" x="745.72" y="-2940.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="791.31,-2933.75 791.31,-2958.25 890,-2958.25 890,-2933.75 791.31,-2933.75"/>
-<text text-anchor="start" x="815.16" y="-2940.95" font-family="arial" font-size="14.00">1.0 Inch</text>
-<text text-anchor="start" x="628.12" y="-2918.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="557.62" y="-2898.45" font-family="arial" font-size="14.00">Veronte 1X:25:CanA P</text>
-<text text-anchor="start" x="705.88" y="-2898.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="556,-2891.75 556,-2893.75 890,-2893.75 890,-2891.75 556,-2891.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2889.75 556,-2891.75 890,-2891.75 890,-2889.75 556,-2889.75"/>
-<polygon fill="#ffffff" stroke="none" points="556,-2887.75 556,-2889.75 890,-2889.75 890,-2887.75 556,-2887.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2885.75 556,-2887.75 890,-2887.75 890,-2885.75 556,-2885.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2883.75 556,-2885.75 890,-2885.75 890,-2883.75 556,-2883.75"/>
-<text text-anchor="start" x="557.62" y="-2868.45" font-family="arial" font-size="14.00">Veronte 1X:26:CanA N</text>
-<text text-anchor="start" x="708.12" y="-2868.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="556,-2861.75 556,-2863.75 890,-2863.75 890,-2861.75 556,-2861.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2859.75 556,-2861.75 890,-2861.75 890,-2859.75 556,-2859.75"/>
-<polygon fill="#895956" stroke="none" points="556,-2857.75 556,-2859.75 890,-2859.75 890,-2857.75 556,-2857.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2855.75 556,-2857.75 890,-2857.75 890,-2855.75 556,-2855.75"/>
-<polygon fill="#000000" stroke="none" points="556,-2853.75 556,-2855.75 890,-2855.75 890,-2853.75 556,-2853.75"/>
-<text text-anchor="start" x="628.12" y="-2838.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="724.62" y="-2818.45" font-family="arial" font-size="14.00">Shield</text>
-<text text-anchor="start" x="786.88" y="-2818.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<polygon fill="#000000" stroke="none" points="556,-2811.75 556,-2813.75 890,-2813.75 890,-2811.75 556,-2811.75"/>
-<text text-anchor="start" x="628.12" y="-2796.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="556,-2767.25 556,-2791.75 890,-2791.75 890,-2767.25 556,-2767.25"/>
-<text text-anchor="start" x="684" y="-2774.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- Veronte 1X&#45;&#45;W1 -->
-<g id="edge1" class="edge">
-<title>Veronte 1X:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1537C714.04,-1542.28 257.54,-2890.03 555,-2884.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1539C712.15,-1541.64 255.64,-2889.39 555,-2886.75"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1541C710.25,-1541 253.75,-2888.75 555,-2888.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1543C708.36,-1540.36 251.85,-2888.11 555,-2890.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1545C706.46,-1539.72 249.96,-2887.47 555,-2892.75"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W1 -->
-<g id="edge2" class="edge">
-<title>Veronte 1X:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1513C712.72,-1518.28 258.86,-2860.03 555,-2854.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1515C710.82,-1517.64 256.97,-2859.39 555,-2856.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1517C708.93,-1517 255.07,-2858.75 555,-2858.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1519C707.03,-1516.36 253.18,-2858.11 555,-2860.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1521C705.14,-1515.72 251.28,-2857.47 555,-2862.75"/>
-</g>
<!-- W3 -->
-<g id="node54" class="node">
+<g id="node30" class="node">
<title>W3</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="886.5,-3295.75 559.5,-3295.75 559.5,-3080.25 886.5,-3080.25 886.5,-3295.75"/>
-<polygon fill="none" stroke="black" points="559.5,-3271.25 559.5,-3295.75 886.5,-3295.75 886.5,-3271.25 559.5,-3271.25"/>
-<text text-anchor="start" x="711.75" y="-3278.45" font-family="arial" font-size="14.00">W3</text>
-<polygon fill="none" stroke="black" points="559.5,-3246.75 559.5,-3271.25 619.88,-3271.25 619.88,-3246.75 559.5,-3246.75"/>
-<text text-anchor="start" x="582.19" y="-3253.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="619.88,-3246.75 619.88,-3271.25 720.75,-3271.25 720.75,-3246.75 619.88,-3246.75"/>
-<text text-anchor="start" x="642.56" y="-3253.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="720.75,-3246.75 720.75,-3271.25 787.88,-3271.25 787.88,-3246.75 720.75,-3246.75"/>
-<text text-anchor="start" x="743.44" y="-3253.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="787.88,-3246.75 787.88,-3271.25 886.5,-3271.25 886.5,-3246.75 787.88,-3246.75"/>
-<text text-anchor="start" x="810.56" y="-3253.95" font-family="arial" font-size="14.00">0.3 TBD</text>
-<text text-anchor="start" x="643.62" y="-3231.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="561.88" y="-3211.45" font-family="arial" font-size="14.00">Veronte 1X:19:RS 232 TX</text>
-<text text-anchor="start" x="733.38" y="-3211.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
-<text text-anchor="start" x="814.25" y="-3211.45" font-family="arial" font-size="14.00">Radio:2:Rx</text>
-<polygon fill="#000000" stroke="none" points="559.5,-3204.75 559.5,-3206.75 886.5,-3206.75 886.5,-3204.75 559.5,-3204.75"/>
-<polygon fill="#ff66cc" stroke="none" points="559.5,-3202.75 559.5,-3204.75 886.5,-3204.75 886.5,-3202.75 559.5,-3202.75"/>
-<polygon fill="#ffffff" stroke="none" points="559.5,-3200.75 559.5,-3202.75 886.5,-3202.75 886.5,-3200.75 559.5,-3200.75"/>
-<polygon fill="#ff66cc" stroke="none" points="559.5,-3198.75 559.5,-3200.75 886.5,-3200.75 886.5,-3198.75 559.5,-3198.75"/>
-<polygon fill="#000000" stroke="none" points="559.5,-3196.75 559.5,-3198.75 886.5,-3198.75 886.5,-3196.75 559.5,-3196.75"/>
-<text text-anchor="start" x="561.12" y="-3181.45" font-family="arial" font-size="14.00">Veronte 1X:20:RS 232 RX</text>
-<text text-anchor="start" x="735.62" y="-3181.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="815" y="-3181.45" font-family="arial" font-size="14.00">Radio:1:Tx</text>
-<polygon fill="#000000" stroke="none" points="559.5,-3174.75 559.5,-3176.75 886.5,-3176.75 886.5,-3174.75 559.5,-3174.75"/>
-<polygon fill="#895956" stroke="none" points="559.5,-3172.75 559.5,-3174.75 886.5,-3174.75 886.5,-3172.75 559.5,-3172.75"/>
-<polygon fill="#ff66cc" stroke="none" points="559.5,-3170.75 559.5,-3172.75 886.5,-3172.75 886.5,-3170.75 559.5,-3170.75"/>
-<polygon fill="#895956" stroke="none" points="559.5,-3168.75 559.5,-3170.75 886.5,-3170.75 886.5,-3168.75 559.5,-3168.75"/>
-<polygon fill="#000000" stroke="none" points="559.5,-3166.75 559.5,-3168.75 886.5,-3168.75 886.5,-3166.75 559.5,-3166.75"/>
-<text text-anchor="start" x="643.62" y="-3151.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="752.12" y="-3131.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="559.5,-3124.75 559.5,-3126.75 886.5,-3126.75 886.5,-3124.75 559.5,-3124.75"/>
-<text text-anchor="start" x="643.62" y="-3109.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="559.5,-3080.25 559.5,-3104.75 886.5,-3104.75 886.5,-3080.25 559.5,-3080.25"/>
-<text text-anchor="start" x="684" y="-3087.45" font-family="arial" font-size="14.00">Twisted Pair</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="883,-1784.75 556,-1784.75 556,-1569.25 883,-1569.25 883,-1784.75"/>
+<polygon fill="none" stroke="black" points="556,-1760.25 556,-1784.75 883,-1784.75 883,-1760.25 556,-1760.25"/>
+<text text-anchor="start" x="708.25" y="-1767.45" font-family="arial" font-size="14.00">W3</text>
+<polygon fill="none" stroke="black" points="556,-1735.75 556,-1760.25 616.38,-1760.25 616.38,-1735.75 556,-1735.75"/>
+<text text-anchor="start" x="578.69" y="-1742.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="616.38,-1735.75 616.38,-1760.25 717.25,-1760.25 717.25,-1735.75 616.38,-1735.75"/>
+<text text-anchor="start" x="639.06" y="-1742.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="717.25,-1735.75 717.25,-1760.25 784.38,-1760.25 784.38,-1735.75 717.25,-1735.75"/>
+<text text-anchor="start" x="739.94" y="-1742.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="784.38,-1735.75 784.38,-1760.25 883,-1760.25 883,-1735.75 784.38,-1735.75"/>
+<text text-anchor="start" x="807.06" y="-1742.95" font-family="arial" font-size="14.00">0.3 TBD</text>
+<text text-anchor="start" x="640.12" y="-1720.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="558.38" y="-1700.45" font-family="arial" font-size="14.00">Veronte 1X:19:RS 232 TX</text>
+<text text-anchor="start" x="729.88" y="-1700.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
+<text text-anchor="start" x="810.75" y="-1700.45" font-family="arial" font-size="14.00">Radio:2:Rx</text>
+<polygon fill="#000000" stroke="none" points="556,-1693.75 556,-1695.75 883,-1695.75 883,-1693.75 556,-1693.75"/>
+<polygon fill="#ff66cc" stroke="none" points="556,-1691.75 556,-1693.75 883,-1693.75 883,-1691.75 556,-1691.75"/>
+<polygon fill="#ffffff" stroke="none" points="556,-1689.75 556,-1691.75 883,-1691.75 883,-1689.75 556,-1689.75"/>
+<polygon fill="#ff66cc" stroke="none" points="556,-1687.75 556,-1689.75 883,-1689.75 883,-1687.75 556,-1687.75"/>
+<polygon fill="#000000" stroke="none" points="556,-1685.75 556,-1687.75 883,-1687.75 883,-1685.75 556,-1685.75"/>
+<text text-anchor="start" x="557.62" y="-1670.45" font-family="arial" font-size="14.00">Veronte 1X:20:RS 232 RX</text>
+<text text-anchor="start" x="732.12" y="-1670.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="811.5" y="-1670.45" font-family="arial" font-size="14.00">Radio:1:Tx</text>
+<polygon fill="#000000" stroke="none" points="556,-1663.75 556,-1665.75 883,-1665.75 883,-1663.75 556,-1663.75"/>
+<polygon fill="#895956" stroke="none" points="556,-1661.75 556,-1663.75 883,-1663.75 883,-1661.75 556,-1661.75"/>
+<polygon fill="#ff66cc" stroke="none" points="556,-1659.75 556,-1661.75 883,-1661.75 883,-1659.75 556,-1659.75"/>
+<polygon fill="#895956" stroke="none" points="556,-1657.75 556,-1659.75 883,-1659.75 883,-1657.75 556,-1657.75"/>
+<polygon fill="#000000" stroke="none" points="556,-1655.75 556,-1657.75 883,-1657.75 883,-1655.75 556,-1655.75"/>
+<text text-anchor="start" x="640.12" y="-1640.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="748.62" y="-1620.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="556,-1613.75 556,-1615.75 883,-1615.75 883,-1613.75 556,-1613.75"/>
+<text text-anchor="start" x="640.12" y="-1598.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="556,-1569.25 556,-1593.75 883,-1593.75 883,-1569.25 556,-1569.25"/>
+<text text-anchor="start" x="680.5" y="-1576.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte 1X&#45;&#45;W3 -->
-<g id="edge13" class="edge">
+<g id="edge9" class="edge">
<title>Veronte 1X:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1681C751.47,-1686.31 223.59,-3203.06 558.5,-3197.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1683C749.58,-1685.66 221.7,-3202.41 558.5,-3199.75"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1685C747.69,-1685 219.81,-3201.75 558.5,-3201.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1687C745.8,-1684.34 217.92,-3201.09 558.5,-3203.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1689C743.91,-1683.69 216.03,-3200.44 558.5,-3205.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1681C475.28,-1681.23 491.4,-1686.98 555,-1686.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1683C474.61,-1683.12 490.73,-1688.87 555,-1688.75"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1685C473.94,-1685 490.06,-1690.75 555,-1690.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1687C473.27,-1686.88 489.39,-1692.63 555,-1692.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1689C472.6,-1688.77 488.72,-1694.52 555,-1694.75"/>
</g>
<!-- Veronte 1X&#45;&#45;W3 -->
-<g id="edge15" class="edge">
+<g id="edge11" class="edge">
<title>Veronte 1X:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1657C750.14,-1662.31 224.92,-3173.06 558.5,-3167.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1659C748.25,-1661.66 223.03,-3172.41 558.5,-3169.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1661C746.36,-1661 221.14,-3171.75 558.5,-3171.75"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1663C744.47,-1660.34 219.25,-3171.09 558.5,-3173.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1665C742.58,-1659.69 217.36,-3170.44 558.5,-3175.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1657C473.83,-1657 490.05,-1656.75 555,-1656.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1659C473.86,-1659 490.08,-1658.75 555,-1658.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1661C473.89,-1661 490.11,-1660.75 555,-1660.75"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1663C473.92,-1663 490.14,-1662.75 555,-1662.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1665C473.95,-1665 490.17,-1664.75 555,-1664.75"/>
</g>
<!-- W6 -->
-<g id="node55" class="node">
+<g id="node31" class="node">
<title>W6</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="893,-2479.75 553,-2479.75 553,-2234.25 893,-2234.25 893,-2479.75"/>
-<polygon fill="none" stroke="black" points="553,-2455.25 553,-2479.75 893,-2479.75 893,-2455.25 553,-2455.25"/>
-<text text-anchor="start" x="711.75" y="-2462.45" font-family="arial" font-size="14.00">W6</text>
-<polygon fill="none" stroke="black" points="553,-2430.75 553,-2455.25 611.19,-2455.25 611.19,-2430.75 553,-2430.75"/>
-<text text-anchor="start" x="574.59" y="-2437.95" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="611.19,-2430.75 611.19,-2455.25 709.88,-2455.25 709.88,-2430.75 611.19,-2430.75"/>
-<text text-anchor="start" x="632.78" y="-2437.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="709.88,-2430.75 709.88,-2455.25 774.81,-2455.25 774.81,-2430.75 709.88,-2430.75"/>
-<text text-anchor="start" x="731.47" y="-2437.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="774.81,-2430.75 774.81,-2455.25 893,-2455.25 893,-2430.75 774.81,-2430.75"/>
-<text text-anchor="start" x="796.41" y="-2437.95" font-family="arial" font-size="14.00">40.0 Inches</text>
-<text text-anchor="start" x="629.62" y="-2415.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="554.62" y="-2395.45" font-family="arial" font-size="14.00">Veronte 1X:28:CANB_P</text>
-<text text-anchor="start" x="712.25" y="-2395.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="553,-2388.75 553,-2390.75 893,-2390.75 893,-2388.75 553,-2388.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2386.75 553,-2388.75 893,-2388.75 893,-2386.75 553,-2386.75"/>
-<polygon fill="#ffff00" stroke="none" points="553,-2384.75 553,-2386.75 893,-2386.75 893,-2384.75 553,-2384.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2382.75 553,-2384.75 893,-2384.75 893,-2382.75 553,-2382.75"/>
-<polygon fill="#000000" stroke="none" points="553,-2380.75 553,-2382.75 893,-2382.75 893,-2380.75 553,-2380.75"/>
-<text text-anchor="start" x="554.62" y="-2365.45" font-family="arial" font-size="14.00">Veronte 1X:29:CANB_N</text>
-<text text-anchor="start" x="711.88" y="-2365.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="553,-2358.75 553,-2360.75 893,-2360.75 893,-2358.75 553,-2358.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2356.75 553,-2358.75 893,-2358.75 893,-2356.75 553,-2356.75"/>
-<polygon fill="#ff66cc" stroke="none" points="553,-2354.75 553,-2356.75 893,-2356.75 893,-2354.75 553,-2354.75"/>
-<polygon fill="#00ff00" stroke="none" points="553,-2352.75 553,-2354.75 893,-2354.75 893,-2352.75 553,-2352.75"/>
-<polygon fill="#000000" stroke="none" points="553,-2350.75 553,-2352.75 893,-2352.75 893,-2350.75 553,-2350.75"/>
-<text text-anchor="start" x="567.75" y="-2335.45" font-family="arial" font-size="14.00">Veronte 1X:30:GND</text>
-<text text-anchor="start" x="713" y="-2335.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="553,-2328.75 553,-2330.75 893,-2330.75 893,-2328.75 553,-2328.75"/>
-<polygon fill="#ff66cc" stroke="none" points="553,-2326.75 553,-2328.75 893,-2328.75 893,-2326.75 553,-2326.75"/>
-<polygon fill="#ffff00" stroke="none" points="553,-2324.75 553,-2326.75 893,-2326.75 893,-2324.75 553,-2324.75"/>
-<polygon fill="#ff66cc" stroke="none" points="553,-2322.75 553,-2324.75 893,-2324.75 893,-2322.75 553,-2322.75"/>
-<polygon fill="#000000" stroke="none" points="553,-2320.75 553,-2322.75 893,-2322.75 893,-2320.75 553,-2320.75"/>
-<text text-anchor="start" x="629.62" y="-2305.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="729.12" y="-2285.45" font-family="arial" font-size="14.00">Shield</text>
-<text text-anchor="start" x="789.88" y="-2285.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<polygon fill="#000000" stroke="none" points="553,-2278.75 553,-2280.75 893,-2280.75 893,-2278.75 553,-2278.75"/>
-<text text-anchor="start" x="629.62" y="-2263.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="553,-2234.25 553,-2258.75 893,-2258.75 893,-2234.25 553,-2234.25"/>
-<text text-anchor="start" x="628.12" y="-2241.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to ECU</text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="839,-1544.75 600,-1544.75 600,-1299.25 839,-1299.25 839,-1544.75"/>
+<polygon fill="none" stroke="black" points="600,-1520.25 600,-1544.75 839,-1544.75 839,-1520.25 600,-1520.25"/>
+<text text-anchor="start" x="708.25" y="-1527.45" font-family="arial" font-size="14.00">W6</text>
+<polygon fill="none" stroke="black" points="600,-1495.75 600,-1520.25 632.94,-1520.25 632.94,-1495.75 600,-1495.75"/>
+<text text-anchor="start" x="608.97" y="-1502.95" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="632.94,-1495.75 632.94,-1520.25 706.38,-1520.25 706.38,-1495.75 632.94,-1495.75"/>
+<text text-anchor="start" x="641.91" y="-1502.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="706.38,-1495.75 706.38,-1520.25 746.06,-1520.25 746.06,-1495.75 706.38,-1495.75"/>
+<text text-anchor="start" x="715.34" y="-1502.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="746.06,-1495.75 746.06,-1520.25 839,-1520.25 839,-1495.75 746.06,-1495.75"/>
+<text text-anchor="start" x="755.03" y="-1502.95" font-family="arial" font-size="14.00">40.0 Inches</text>
+<text text-anchor="start" x="676.62" y="-1480.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="601.62" y="-1460.45" font-family="arial" font-size="14.00">Veronte 1X:28:CANB_P</text>
+<text text-anchor="start" x="759.25" y="-1460.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="600,-1453.75 600,-1455.75 839,-1455.75 839,-1453.75 600,-1453.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1451.75 600,-1453.75 839,-1453.75 839,-1451.75 600,-1451.75"/>
+<polygon fill="#ffff00" stroke="none" points="600,-1449.75 600,-1451.75 839,-1451.75 839,-1449.75 600,-1449.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1447.75 600,-1449.75 839,-1449.75 839,-1447.75 600,-1447.75"/>
+<polygon fill="#000000" stroke="none" points="600,-1445.75 600,-1447.75 839,-1447.75 839,-1445.75 600,-1445.75"/>
+<text text-anchor="start" x="601.62" y="-1430.45" font-family="arial" font-size="14.00">Veronte 1X:29:CANB_N</text>
+<text text-anchor="start" x="758.88" y="-1430.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="600,-1423.75 600,-1425.75 839,-1425.75 839,-1423.75 600,-1423.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1421.75 600,-1423.75 839,-1423.75 839,-1421.75 600,-1421.75"/>
+<polygon fill="#ff66cc" stroke="none" points="600,-1419.75 600,-1421.75 839,-1421.75 839,-1419.75 600,-1419.75"/>
+<polygon fill="#00ff00" stroke="none" points="600,-1417.75 600,-1419.75 839,-1419.75 839,-1417.75 600,-1417.75"/>
+<polygon fill="#000000" stroke="none" points="600,-1415.75 600,-1417.75 839,-1417.75 839,-1415.75 600,-1415.75"/>
+<text text-anchor="start" x="614.75" y="-1400.45" font-family="arial" font-size="14.00">Veronte 1X:30:GND</text>
+<text text-anchor="start" x="760" y="-1400.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="600,-1393.75 600,-1395.75 839,-1395.75 839,-1393.75 600,-1393.75"/>
+<polygon fill="#ff66cc" stroke="none" points="600,-1391.75 600,-1393.75 839,-1393.75 839,-1391.75 600,-1391.75"/>
+<polygon fill="#ffff00" stroke="none" points="600,-1389.75 600,-1391.75 839,-1391.75 839,-1389.75 600,-1389.75"/>
+<polygon fill="#ff66cc" stroke="none" points="600,-1387.75 600,-1389.75 839,-1389.75 839,-1387.75 600,-1387.75"/>
+<polygon fill="#000000" stroke="none" points="600,-1385.75 600,-1387.75 839,-1387.75 839,-1385.75 600,-1385.75"/>
+<text text-anchor="start" x="676.62" y="-1370.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="776.12" y="-1350.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="600,-1343.75 600,-1345.75 839,-1345.75 839,-1343.75 600,-1343.75"/>
+<text text-anchor="start" x="676.62" y="-1328.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="600,-1299.25 600,-1323.75 839,-1323.75 839,-1299.25 600,-1299.25"/>
+<text text-anchor="start" x="624.62" y="-1306.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to ECU</text>
</g>
<!-- Veronte 1X&#45;&#45;W6 -->
-<g id="edge24" class="edge">
+<g id="edge18" class="edge">
<title>Veronte 1X:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1465C824.65,-1471.38 143.77,-2388.13 553,-2381.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1467C823.05,-1470.19 142.17,-2386.94 553,-2383.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1469C821.44,-1469 140.56,-2385.75 553,-2385.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1471C819.83,-1467.81 138.95,-2384.56 553,-2387.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1473C818.23,-1466.62 137.35,-2383.37 553,-2389.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1465C491.16,-1466.02 511.5,-1447.77 599,-1446.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1467C492.5,-1467.51 512.83,-1449.26 599,-1448.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1469C493.83,-1469 514.17,-1450.75 599,-1450.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1471C495.17,-1470.49 515.5,-1452.24 599,-1452.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1473C496.5,-1471.98 516.84,-1453.73 599,-1454.75"/>
</g>
<!-- Veronte 1X&#45;&#45;W6 -->
-<g id="edge26" class="edge">
+<g id="edge20" class="edge">
<title>Veronte 1X:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1441C822.02,-1447.38 146.41,-2358.13 553,-2351.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1443C820.41,-1446.19 144.8,-2356.94 553,-2353.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1445C818.81,-1445 143.19,-2355.75 553,-2355.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1447C817.2,-1443.81 141.59,-2354.56 553,-2357.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1449C815.59,-1442.62 139.98,-2353.37 553,-2359.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1441C491.03,-1442.47 510.77,-1418.22 599,-1416.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1443C492.58,-1443.74 512.32,-1419.49 599,-1418.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1445C494.13,-1445 513.87,-1420.75 599,-1420.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1447C495.68,-1446.26 515.42,-1422.01 599,-1422.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1449C497.23,-1447.53 516.97,-1423.28 599,-1424.75"/>
</g>
<!-- Veronte 1X&#45;&#45;W6 -->
-<g id="edge28" class="edge">
+<g id="edge22" class="edge">
<title>Veronte 1X:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1417C819.39,-1423.38 149.04,-2328.13 553,-2321.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1419C817.78,-1422.19 147.43,-2326.94 553,-2323.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1421C816.17,-1421 145.83,-2325.75 553,-2325.75"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1423C814.57,-1419.81 144.22,-2324.56 553,-2327.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1425C812.96,-1418.62 142.61,-2323.37 553,-2329.75"/>
-</g>
-<!-- W8 -->
-<g id="node57" class="node">
-<title>W8</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="872.5,-2210.5 573.5,-2210.5 573.5,-351.5 872.5,-351.5 872.5,-2210.5"/>
-<polygon fill="none" stroke="black" points="573.5,-2186 573.5,-2210.5 872.5,-2210.5 872.5,-2186 573.5,-2186"/>
-<text text-anchor="start" x="711.75" y="-2193.2" font-family="arial" font-size="14.00">W8</text>
-<polygon fill="none" stroke="black" points="573.5,-2161.5 573.5,-2186 658.17,-2186 658.17,-2161.5 573.5,-2161.5"/>
-<text text-anchor="start" x="604.21" y="-2168.7" font-family="arial" font-size="14.00">59x</text>
-<polygon fill="none" stroke="black" points="658.17,-2161.5 658.17,-2186 775.08,-2186 775.08,-2161.5 658.17,-2161.5"/>
-<text text-anchor="start" x="688.88" y="-2168.7" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="775.08,-2161.5 775.08,-2186 872.5,-2186 872.5,-2161.5 775.08,-2161.5"/>
-<text text-anchor="start" x="805.79" y="-2168.7" font-family="arial" font-size="14.00">0.3 m</text>
-<text text-anchor="start" x="678.12" y="-2146.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="622.25" y="-2126.2" font-family="arial" font-size="14.00">Veronte 1X:1:I/O1</text>
-<text text-anchor="start" x="798.62" y="-2126.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2119.5 573.5,-2121.5 872.5,-2121.5 872.5,-2119.5 573.5,-2119.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-2117.5 573.5,-2119.5 872.5,-2119.5 872.5,-2117.5 573.5,-2117.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-2115.5 573.5,-2117.5 872.5,-2117.5 872.5,-2115.5 573.5,-2115.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-2113.5 573.5,-2115.5 872.5,-2115.5 872.5,-2113.5 573.5,-2113.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2111.5 573.5,-2113.5 872.5,-2113.5 872.5,-2111.5 573.5,-2111.5"/>
-<text text-anchor="start" x="622.25" y="-2096.2" font-family="arial" font-size="14.00">Veronte 1X:4:I/O4</text>
-<text text-anchor="start" x="801.25" y="-2096.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2089.5 573.5,-2091.5 872.5,-2091.5 872.5,-2089.5 573.5,-2089.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-2087.5 573.5,-2089.5 872.5,-2089.5 872.5,-2087.5 573.5,-2087.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-2085.5 573.5,-2087.5 872.5,-2087.5 872.5,-2085.5 573.5,-2085.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-2083.5 573.5,-2085.5 872.5,-2085.5 872.5,-2083.5 573.5,-2083.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2081.5 573.5,-2083.5 872.5,-2083.5 872.5,-2081.5 573.5,-2081.5"/>
-<text text-anchor="start" x="622.25" y="-2066.2" font-family="arial" font-size="14.00">Veronte 1X:5:I/O5</text>
-<text text-anchor="start" x="800.5" y="-2066.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2059.5 573.5,-2061.5 872.5,-2061.5 872.5,-2059.5 573.5,-2059.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-2057.5 573.5,-2059.5 872.5,-2059.5 872.5,-2057.5 573.5,-2057.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-2055.5 573.5,-2057.5 872.5,-2057.5 872.5,-2055.5 573.5,-2055.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-2053.5 573.5,-2055.5 872.5,-2055.5 872.5,-2053.5 573.5,-2053.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2051.5 573.5,-2053.5 872.5,-2053.5 872.5,-2051.5 573.5,-2051.5"/>
-<text text-anchor="start" x="622.25" y="-2036.2" font-family="arial" font-size="14.00">Veronte 1X:6:I/O6</text>
-<text text-anchor="start" x="800.88" y="-2036.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-2029.5 573.5,-2031.5 872.5,-2031.5 872.5,-2029.5 573.5,-2029.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-2027.5 573.5,-2029.5 872.5,-2029.5 872.5,-2027.5 573.5,-2027.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-2025.5 573.5,-2027.5 872.5,-2027.5 872.5,-2025.5 573.5,-2025.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-2023.5 573.5,-2025.5 872.5,-2025.5 872.5,-2023.5 573.5,-2023.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-2021.5 573.5,-2023.5 872.5,-2023.5 872.5,-2021.5 573.5,-2021.5"/>
-<text text-anchor="start" x="622.25" y="-2006.2" font-family="arial" font-size="14.00">Veronte 1X:7:I/O7</text>
-<text text-anchor="start" x="800.88" y="-2006.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1999.5 573.5,-2001.5 872.5,-2001.5 872.5,-1999.5 573.5,-1999.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1997.5 573.5,-1999.5 872.5,-1999.5 872.5,-1997.5 573.5,-1997.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1995.5 573.5,-1997.5 872.5,-1997.5 872.5,-1995.5 573.5,-1995.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1993.5 573.5,-1995.5 872.5,-1995.5 872.5,-1993.5 573.5,-1993.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1991.5 573.5,-1993.5 872.5,-1993.5 872.5,-1991.5 573.5,-1991.5"/>
-<text text-anchor="start" x="622.25" y="-1976.2" font-family="arial" font-size="14.00">Veronte 1X:8:I/O8</text>
-<text text-anchor="start" x="800.12" y="-1976.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1969.5 573.5,-1971.5 872.5,-1971.5 872.5,-1969.5 573.5,-1969.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1967.5 573.5,-1969.5 872.5,-1969.5 872.5,-1967.5 573.5,-1967.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1965.5 573.5,-1967.5 872.5,-1967.5 872.5,-1965.5 573.5,-1965.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1963.5 573.5,-1965.5 872.5,-1965.5 872.5,-1963.5 573.5,-1963.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1961.5 573.5,-1963.5 872.5,-1963.5 872.5,-1961.5 573.5,-1961.5"/>
-<text text-anchor="start" x="620.38" y="-1946.2" font-family="arial" font-size="14.00">Veronte 1X:9:GND</text>
-<text text-anchor="start" x="800.88" y="-1946.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1939.5 573.5,-1941.5 872.5,-1941.5 872.5,-1939.5 573.5,-1939.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1937.5 573.5,-1939.5 872.5,-1939.5 872.5,-1937.5 573.5,-1937.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1935.5 573.5,-1937.5 872.5,-1937.5 872.5,-1935.5 573.5,-1935.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1933.5 573.5,-1935.5 872.5,-1935.5 872.5,-1933.5 573.5,-1933.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1931.5 573.5,-1933.5 872.5,-1933.5 872.5,-1931.5 573.5,-1931.5"/>
-<text text-anchor="start" x="618.12" y="-1916.2" font-family="arial" font-size="14.00">Veronte 1X:10:I/O9</text>
-<text text-anchor="start" x="801.25" y="-1916.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1909.5 573.5,-1911.5 872.5,-1911.5 872.5,-1909.5 573.5,-1909.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1907.5 573.5,-1909.5 872.5,-1909.5 872.5,-1907.5 573.5,-1907.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1905.5 573.5,-1907.5 872.5,-1907.5 872.5,-1905.5 573.5,-1905.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1903.5 573.5,-1905.5 872.5,-1905.5 872.5,-1903.5 573.5,-1903.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1901.5 573.5,-1903.5 872.5,-1903.5 872.5,-1901.5 573.5,-1901.5"/>
-<text text-anchor="start" x="614" y="-1886.2" font-family="arial" font-size="14.00">Veronte 1X:11:I/O10</text>
-<text text-anchor="start" x="790.75" y="-1886.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1879.5 573.5,-1881.5 872.5,-1881.5 872.5,-1879.5 573.5,-1879.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1877.5 573.5,-1879.5 872.5,-1879.5 872.5,-1877.5 573.5,-1877.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1875.5 573.5,-1877.5 872.5,-1877.5 872.5,-1875.5 573.5,-1875.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1873.5 573.5,-1875.5 872.5,-1875.5 872.5,-1873.5 573.5,-1873.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1871.5 573.5,-1873.5 872.5,-1873.5 872.5,-1871.5 573.5,-1871.5"/>
-<text text-anchor="start" x="614" y="-1856.2" font-family="arial" font-size="14.00">Veronte 1X:12:I/O11</text>
-<text text-anchor="start" x="790.38" y="-1856.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1849.5 573.5,-1851.5 872.5,-1851.5 872.5,-1849.5 573.5,-1849.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1847.5 573.5,-1849.5 872.5,-1849.5 872.5,-1847.5 573.5,-1847.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1845.5 573.5,-1847.5 872.5,-1847.5 872.5,-1845.5 573.5,-1845.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1843.5 573.5,-1845.5 872.5,-1845.5 872.5,-1843.5 573.5,-1843.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1841.5 573.5,-1843.5 872.5,-1843.5 872.5,-1841.5 573.5,-1841.5"/>
-<text text-anchor="start" x="614" y="-1826.2" font-family="arial" font-size="14.00">Veronte 1X:13:I/O12</text>
-<text text-anchor="start" x="788.12" y="-1826.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1819.5 573.5,-1821.5 872.5,-1821.5 872.5,-1819.5 573.5,-1819.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1817.5 573.5,-1819.5 872.5,-1819.5 872.5,-1817.5 573.5,-1817.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1815.5 573.5,-1817.5 872.5,-1817.5 872.5,-1815.5 573.5,-1815.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1813.5 573.5,-1815.5 872.5,-1815.5 872.5,-1813.5 573.5,-1813.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1811.5 573.5,-1813.5 872.5,-1813.5 872.5,-1811.5 573.5,-1811.5"/>
-<text text-anchor="start" x="614" y="-1796.2" font-family="arial" font-size="14.00">Veronte 1X:14:I/O13</text>
-<text text-anchor="start" x="790.38" y="-1796.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1789.5 573.5,-1791.5 872.5,-1791.5 872.5,-1789.5 573.5,-1789.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1787.5 573.5,-1789.5 872.5,-1789.5 872.5,-1787.5 573.5,-1787.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1785.5 573.5,-1787.5 872.5,-1787.5 872.5,-1785.5 573.5,-1785.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1783.5 573.5,-1785.5 872.5,-1785.5 872.5,-1783.5 573.5,-1783.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1781.5 573.5,-1783.5 872.5,-1783.5 872.5,-1781.5 573.5,-1781.5"/>
-<text text-anchor="start" x="614" y="-1766.2" font-family="arial" font-size="14.00">Veronte 1X:15:I/O14</text>
-<text text-anchor="start" x="789.25" y="-1766.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1759.5 573.5,-1761.5 872.5,-1761.5 872.5,-1759.5 573.5,-1759.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1757.5 573.5,-1759.5 872.5,-1759.5 872.5,-1757.5 573.5,-1757.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1755.5 573.5,-1757.5 872.5,-1757.5 872.5,-1755.5 573.5,-1755.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1753.5 573.5,-1755.5 872.5,-1755.5 872.5,-1753.5 573.5,-1753.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1751.5 573.5,-1753.5 872.5,-1753.5 872.5,-1751.5 573.5,-1751.5"/>
-<text text-anchor="start" x="614" y="-1736.2" font-family="arial" font-size="14.00">Veronte 1X:16:I/O15</text>
-<text text-anchor="start" x="791.5" y="-1736.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1729.5 573.5,-1731.5 872.5,-1731.5 872.5,-1729.5 573.5,-1729.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1727.5 573.5,-1729.5 872.5,-1729.5 872.5,-1727.5 573.5,-1727.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1725.5 573.5,-1727.5 872.5,-1727.5 872.5,-1725.5 573.5,-1725.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1723.5 573.5,-1725.5 872.5,-1725.5 872.5,-1723.5 573.5,-1723.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1721.5 573.5,-1723.5 872.5,-1723.5 872.5,-1721.5 573.5,-1721.5"/>
-<text text-anchor="start" x="614" y="-1706.2" font-family="arial" font-size="14.00">Veronte 1X:17:I/O16</text>
-<text text-anchor="start" x="788.5" y="-1706.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1699.5 573.5,-1701.5 872.5,-1701.5 872.5,-1699.5 573.5,-1699.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1697.5 573.5,-1699.5 872.5,-1699.5 872.5,-1697.5 573.5,-1697.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1695.5 573.5,-1697.5 872.5,-1697.5 872.5,-1695.5 573.5,-1695.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1693.5 573.5,-1695.5 872.5,-1695.5 872.5,-1693.5 573.5,-1693.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1691.5 573.5,-1693.5 872.5,-1693.5 872.5,-1691.5 573.5,-1691.5"/>
-<text text-anchor="start" x="616.25" y="-1676.2" font-family="arial" font-size="14.00">Veronte 1X:18:GND</text>
-<text text-anchor="start" x="790.75" y="-1676.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1669.5 573.5,-1671.5 872.5,-1671.5 872.5,-1669.5 573.5,-1669.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1667.5 573.5,-1669.5 872.5,-1669.5 872.5,-1667.5 573.5,-1667.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1665.5 573.5,-1667.5 872.5,-1667.5 872.5,-1665.5 573.5,-1665.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1663.5 573.5,-1665.5 872.5,-1665.5 872.5,-1663.5 573.5,-1663.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1661.5 573.5,-1663.5 872.5,-1663.5 872.5,-1661.5 573.5,-1661.5"/>
-<text text-anchor="start" x="616.25" y="-1646.2" font-family="arial" font-size="14.00">Veronte 1X:21:GND</text>
-<text text-anchor="start" x="788.88" y="-1646.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1639.5 573.5,-1641.5 872.5,-1641.5 872.5,-1639.5 573.5,-1639.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1637.5 573.5,-1639.5 872.5,-1639.5 872.5,-1637.5 573.5,-1637.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1635.5 573.5,-1637.5 872.5,-1637.5 872.5,-1635.5 573.5,-1635.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1633.5 573.5,-1635.5 872.5,-1635.5 872.5,-1633.5 573.5,-1633.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1631.5 573.5,-1633.5 872.5,-1633.5 872.5,-1631.5 573.5,-1631.5"/>
-<text text-anchor="start" x="603.88" y="-1616.2" font-family="arial" font-size="14.00">Veronte 1X:22:Analog 4</text>
-<text text-anchor="start" x="791.12" y="-1616.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1609.5 573.5,-1611.5 872.5,-1611.5 872.5,-1609.5 573.5,-1609.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1607.5 573.5,-1609.5 872.5,-1609.5 872.5,-1607.5 573.5,-1607.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1605.5 573.5,-1607.5 872.5,-1607.5 872.5,-1605.5 573.5,-1605.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1603.5 573.5,-1605.5 872.5,-1605.5 872.5,-1603.5 573.5,-1603.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1601.5 573.5,-1603.5 872.5,-1603.5 872.5,-1601.5 573.5,-1601.5"/>
-<text text-anchor="start" x="603.88" y="-1586.2" font-family="arial" font-size="14.00">Veronte 1X:23:Analog 5</text>
-<text text-anchor="start" x="788.12" y="-1586.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1579.5 573.5,-1581.5 872.5,-1581.5 872.5,-1579.5 573.5,-1579.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1577.5 573.5,-1579.5 872.5,-1579.5 872.5,-1577.5 573.5,-1577.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1575.5 573.5,-1577.5 872.5,-1577.5 872.5,-1575.5 573.5,-1575.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1573.5 573.5,-1575.5 872.5,-1575.5 872.5,-1573.5 573.5,-1573.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1571.5 573.5,-1573.5 872.5,-1573.5 872.5,-1571.5 573.5,-1571.5"/>
-<text text-anchor="start" x="616.25" y="-1556.2" font-family="arial" font-size="14.00">Veronte 1X:24:GND</text>
-<text text-anchor="start" x="790.38" y="-1556.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1549.5 573.5,-1551.5 872.5,-1551.5 872.5,-1549.5 573.5,-1549.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1547.5 573.5,-1549.5 872.5,-1549.5 872.5,-1547.5 573.5,-1547.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1545.5 573.5,-1547.5 872.5,-1547.5 872.5,-1545.5 573.5,-1545.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1543.5 573.5,-1545.5 872.5,-1545.5 872.5,-1543.5 573.5,-1543.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1541.5 573.5,-1543.5 872.5,-1543.5 872.5,-1541.5 573.5,-1541.5"/>
-<text text-anchor="start" x="594.5" y="-1526.2" font-family="arial" font-size="14.00">Veronte 1X:27:No Connect</text>
-<text text-anchor="start" x="790" y="-1526.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1519.5 573.5,-1521.5 872.5,-1521.5 872.5,-1519.5 573.5,-1519.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1517.5 573.5,-1519.5 872.5,-1519.5 872.5,-1517.5 573.5,-1517.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1515.5 573.5,-1517.5 872.5,-1517.5 872.5,-1515.5 573.5,-1515.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1513.5 573.5,-1515.5 872.5,-1515.5 872.5,-1513.5 573.5,-1513.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1511.5 573.5,-1513.5 872.5,-1513.5 872.5,-1511.5 573.5,-1511.5"/>
-<text text-anchor="start" x="602" y="-1496.2" font-family="arial" font-size="14.00">Veronte 1X:31:I2C_CLK</text>
-<text text-anchor="start" x="798.62" y="-1496.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1489.5 573.5,-1491.5 872.5,-1491.5 872.5,-1489.5 573.5,-1489.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1487.5 573.5,-1489.5 872.5,-1489.5 872.5,-1487.5 573.5,-1487.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1485.5 573.5,-1487.5 872.5,-1487.5 872.5,-1485.5 573.5,-1485.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1483.5 573.5,-1485.5 872.5,-1485.5 872.5,-1483.5 573.5,-1483.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1481.5 573.5,-1483.5 872.5,-1483.5 872.5,-1481.5 573.5,-1481.5"/>
-<text text-anchor="start" x="596.75" y="-1466.2" font-family="arial" font-size="14.00">Veronte 1X:32:I2C_DATA</text>
-<text text-anchor="start" x="800.88" y="-1466.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1459.5 573.5,-1461.5 872.5,-1461.5 872.5,-1459.5 573.5,-1459.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1457.5 573.5,-1459.5 872.5,-1459.5 872.5,-1457.5 573.5,-1457.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1455.5 573.5,-1457.5 872.5,-1457.5 872.5,-1455.5 573.5,-1455.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1453.5 573.5,-1455.5 872.5,-1455.5 872.5,-1453.5 573.5,-1453.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1451.5 573.5,-1453.5 872.5,-1453.5 872.5,-1451.5 573.5,-1451.5"/>
-<text text-anchor="start" x="616.25" y="-1436.2" font-family="arial" font-size="14.00">Veronte 1X:33:GND</text>
-<text text-anchor="start" x="800.12" y="-1436.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1429.5 573.5,-1431.5 872.5,-1431.5 872.5,-1429.5 573.5,-1429.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1427.5 573.5,-1429.5 872.5,-1429.5 872.5,-1427.5 573.5,-1427.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1425.5 573.5,-1427.5 872.5,-1427.5 872.5,-1425.5 573.5,-1425.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1423.5 573.5,-1425.5 872.5,-1425.5 872.5,-1423.5 573.5,-1423.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1421.5 573.5,-1423.5 872.5,-1423.5 872.5,-1421.5 573.5,-1421.5"/>
-<text text-anchor="start" x="617" y="-1406.2" font-family="arial" font-size="14.00">Veronte 1X:34:3.3V</text>
-<text text-anchor="start" x="801.25" y="-1406.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1399.5 573.5,-1401.5 872.5,-1401.5 872.5,-1399.5 573.5,-1399.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1397.5 573.5,-1399.5 872.5,-1399.5 872.5,-1397.5 573.5,-1397.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1395.5 573.5,-1397.5 872.5,-1397.5 872.5,-1395.5 573.5,-1395.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1393.5 573.5,-1395.5 872.5,-1395.5 872.5,-1393.5 573.5,-1393.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1391.5 573.5,-1393.5 872.5,-1393.5 872.5,-1391.5 573.5,-1391.5"/>
-<text text-anchor="start" x="616.25" y="-1376.2" font-family="arial" font-size="14.00">Veronte 1X:35:GND</text>
-<text text-anchor="start" x="800.5" y="-1376.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1369.5 573.5,-1371.5 872.5,-1371.5 872.5,-1369.5 573.5,-1369.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1367.5 573.5,-1369.5 872.5,-1369.5 872.5,-1367.5 573.5,-1367.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1365.5 573.5,-1367.5 872.5,-1367.5 872.5,-1365.5 573.5,-1365.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1363.5 573.5,-1365.5 872.5,-1365.5 872.5,-1363.5 573.5,-1363.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1361.5 573.5,-1363.5 872.5,-1363.5 872.5,-1361.5 573.5,-1361.5"/>
-<text text-anchor="start" x="623" y="-1346.2" font-family="arial" font-size="14.00">Veronte 1X:36:5V</text>
-<text text-anchor="start" x="800.88" y="-1346.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1339.5 573.5,-1341.5 872.5,-1341.5 872.5,-1339.5 573.5,-1339.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1337.5 573.5,-1339.5 872.5,-1339.5 872.5,-1337.5 573.5,-1337.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1335.5 573.5,-1337.5 872.5,-1337.5 872.5,-1335.5 573.5,-1335.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1333.5 573.5,-1335.5 872.5,-1335.5 872.5,-1333.5 573.5,-1333.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1331.5 573.5,-1333.5 872.5,-1333.5 872.5,-1331.5 573.5,-1331.5"/>
-<text text-anchor="start" x="616.25" y="-1316.2" font-family="arial" font-size="14.00">Veronte 1X:37:GND</text>
-<text text-anchor="start" x="800.88" y="-1316.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1309.5 573.5,-1311.5 872.5,-1311.5 872.5,-1309.5 573.5,-1309.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1307.5 573.5,-1309.5 872.5,-1309.5 872.5,-1307.5 573.5,-1307.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1305.5 573.5,-1307.5 872.5,-1307.5 872.5,-1305.5 573.5,-1305.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1303.5 573.5,-1305.5 872.5,-1305.5 872.5,-1303.5 573.5,-1303.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1301.5 573.5,-1303.5 872.5,-1303.5 872.5,-1301.5 573.5,-1301.5"/>
-<text text-anchor="start" x="593.75" y="-1286.2" font-family="arial" font-size="14.00">Veronte 1X:38:ANALOG_1</text>
-<text text-anchor="start" x="800.12" y="-1286.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1279.5 573.5,-1281.5 872.5,-1281.5 872.5,-1279.5 573.5,-1279.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1277.5 573.5,-1279.5 872.5,-1279.5 872.5,-1277.5 573.5,-1277.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1275.5 573.5,-1277.5 872.5,-1277.5 872.5,-1275.5 573.5,-1275.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1273.5 573.5,-1275.5 872.5,-1275.5 872.5,-1273.5 573.5,-1273.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1271.5 573.5,-1273.5 872.5,-1273.5 872.5,-1271.5 573.5,-1271.5"/>
-<text text-anchor="start" x="593.75" y="-1256.2" font-family="arial" font-size="14.00">Veronte 1X:39:ANALOG_2</text>
-<text text-anchor="start" x="800.88" y="-1256.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1249.5 573.5,-1251.5 872.5,-1251.5 872.5,-1249.5 573.5,-1249.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1247.5 573.5,-1249.5 872.5,-1249.5 872.5,-1247.5 573.5,-1247.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1245.5 573.5,-1247.5 872.5,-1247.5 872.5,-1245.5 573.5,-1245.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1243.5 573.5,-1245.5 872.5,-1245.5 872.5,-1243.5 573.5,-1243.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1241.5 573.5,-1243.5 872.5,-1243.5 872.5,-1241.5 573.5,-1241.5"/>
-<text text-anchor="start" x="593.75" y="-1226.2" font-family="arial" font-size="14.00">Veronte 1X:40:ANALOG_3</text>
-<text text-anchor="start" x="801.25" y="-1226.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1219.5 573.5,-1221.5 872.5,-1221.5 872.5,-1219.5 573.5,-1219.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1217.5 573.5,-1219.5 872.5,-1219.5 872.5,-1217.5 573.5,-1217.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1215.5 573.5,-1217.5 872.5,-1217.5 872.5,-1215.5 573.5,-1215.5"/>
-<polygon fill="#8000ff" stroke="none" points="573.5,-1213.5 573.5,-1215.5 872.5,-1215.5 872.5,-1213.5 573.5,-1213.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1211.5 573.5,-1213.5 872.5,-1213.5 872.5,-1211.5 573.5,-1211.5"/>
-<text text-anchor="start" x="616.25" y="-1196.2" font-family="arial" font-size="14.00">Veronte 1X:41:GND</text>
-<text text-anchor="start" x="790.75" y="-1196.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1189.5 573.5,-1191.5 872.5,-1191.5 872.5,-1189.5 573.5,-1189.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1187.5 573.5,-1189.5 872.5,-1189.5 872.5,-1187.5 573.5,-1187.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1185.5 573.5,-1187.5 872.5,-1187.5 872.5,-1185.5 573.5,-1185.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-1183.5 573.5,-1185.5 872.5,-1185.5 872.5,-1183.5 573.5,-1183.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1181.5 573.5,-1183.5 872.5,-1183.5 872.5,-1181.5 573.5,-1181.5"/>
-<text text-anchor="start" x="594.88" y="-1166.2" font-family="arial" font-size="14.00">Veronte 1X:42:FTS1_OUT</text>
-<text text-anchor="start" x="790.38" y="-1166.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1159.5 573.5,-1161.5 872.5,-1161.5 872.5,-1159.5 573.5,-1159.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1157.5 573.5,-1159.5 872.5,-1159.5 872.5,-1157.5 573.5,-1157.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-1155.5 573.5,-1157.5 872.5,-1157.5 872.5,-1155.5 573.5,-1155.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-1153.5 573.5,-1155.5 872.5,-1155.5 872.5,-1153.5 573.5,-1153.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1151.5 573.5,-1153.5 872.5,-1153.5 872.5,-1151.5 573.5,-1151.5"/>
-<text text-anchor="start" x="594.88" y="-1136.2" font-family="arial" font-size="14.00">Veronte 1X:43:FTS2_OUT</text>
-<text text-anchor="start" x="788.12" y="-1136.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1129.5 573.5,-1131.5 872.5,-1131.5 872.5,-1129.5 573.5,-1129.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1127.5 573.5,-1129.5 872.5,-1129.5 872.5,-1127.5 573.5,-1127.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1125.5 573.5,-1127.5 872.5,-1127.5 872.5,-1125.5 573.5,-1125.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1123.5 573.5,-1125.5 872.5,-1125.5 872.5,-1123.5 573.5,-1123.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1121.5 573.5,-1123.5 872.5,-1123.5 872.5,-1121.5 573.5,-1121.5"/>
-<text text-anchor="start" x="616.25" y="-1106.2" font-family="arial" font-size="14.00">Veronte 1X:44:GND</text>
-<text text-anchor="start" x="790.38" y="-1106.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1099.5 573.5,-1101.5 872.5,-1101.5 872.5,-1099.5 573.5,-1099.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1097.5 573.5,-1099.5 872.5,-1099.5 872.5,-1097.5 573.5,-1097.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1095.5 573.5,-1097.5 872.5,-1097.5 872.5,-1095.5 573.5,-1095.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-1093.5 573.5,-1095.5 872.5,-1095.5 872.5,-1093.5 573.5,-1093.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1091.5 573.5,-1093.5 872.5,-1093.5 872.5,-1091.5 573.5,-1091.5"/>
-<text text-anchor="start" x="594.5" y="-1076.2" font-family="arial" font-size="14.00">Veronte 1X:45:V_ARB_TX</text>
-<text text-anchor="start" x="789.25" y="-1076.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1069.5 573.5,-1071.5 872.5,-1071.5 872.5,-1069.5 573.5,-1069.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1067.5 573.5,-1069.5 872.5,-1069.5 872.5,-1067.5 573.5,-1067.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1065.5 573.5,-1067.5 872.5,-1067.5 872.5,-1065.5 573.5,-1065.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1063.5 573.5,-1065.5 872.5,-1065.5 872.5,-1063.5 573.5,-1063.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1061.5 573.5,-1063.5 872.5,-1063.5 872.5,-1061.5 573.5,-1061.5"/>
-<text text-anchor="start" x="593.75" y="-1046.2" font-family="arial" font-size="14.00">Veronte 1X:46:V_ARB_RX</text>
-<text text-anchor="start" x="791.5" y="-1046.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1039.5 573.5,-1041.5 872.5,-1041.5 872.5,-1039.5 573.5,-1039.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1037.5 573.5,-1039.5 872.5,-1039.5 872.5,-1037.5 573.5,-1037.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-1035.5 573.5,-1037.5 872.5,-1037.5 872.5,-1035.5 573.5,-1035.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-1033.5 573.5,-1035.5 872.5,-1035.5 872.5,-1033.5 573.5,-1033.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1031.5 573.5,-1033.5 872.5,-1033.5 872.5,-1031.5 573.5,-1031.5"/>
-<text text-anchor="start" x="616.25" y="-1016.2" font-family="arial" font-size="14.00">Veronte 1X:47:GND</text>
-<text text-anchor="start" x="788.5" y="-1016.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-1009.5 573.5,-1011.5 872.5,-1011.5 872.5,-1009.5 573.5,-1009.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1007.5 573.5,-1009.5 872.5,-1009.5 872.5,-1007.5 573.5,-1007.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-1005.5 573.5,-1007.5 872.5,-1007.5 872.5,-1005.5 573.5,-1005.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-1003.5 573.5,-1005.5 872.5,-1005.5 872.5,-1003.5 573.5,-1003.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-1001.5 573.5,-1003.5 872.5,-1003.5 872.5,-1001.5 573.5,-1001.5"/>
-<text text-anchor="start" x="588.5" y="-986.2" font-family="arial" font-size="14.00">Veronte 1X:48:V_ARB_VCC</text>
-<text text-anchor="start" x="790.75" y="-986.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-979.5 573.5,-981.5 872.5,-981.5 872.5,-979.5 573.5,-979.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-977.5 573.5,-979.5 872.5,-979.5 872.5,-977.5 573.5,-977.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-975.5 573.5,-977.5 872.5,-977.5 872.5,-975.5 573.5,-975.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-973.5 573.5,-975.5 872.5,-975.5 872.5,-973.5 573.5,-973.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-971.5 573.5,-973.5 872.5,-973.5 872.5,-971.5 573.5,-971.5"/>
-<text text-anchor="start" x="575.38" y="-956.2" font-family="arial" font-size="14.00">Veronte 1X:49:FTS3_OUT_MPU</text>
-<text text-anchor="start" x="788.88" y="-956.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-949.5 573.5,-951.5 872.5,-951.5 872.5,-949.5 573.5,-949.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-947.5 573.5,-949.5 872.5,-949.5 872.5,-947.5 573.5,-947.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-945.5 573.5,-947.5 872.5,-947.5 872.5,-945.5 573.5,-945.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-943.5 573.5,-945.5 872.5,-945.5 872.5,-943.5 573.5,-943.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-941.5 573.5,-943.5 872.5,-943.5 872.5,-941.5 573.5,-941.5"/>
-<text text-anchor="start" x="581.38" y="-926.2" font-family="arial" font-size="14.00">Veronte 1X:50:OUT_RS485_P</text>
-<text text-anchor="start" x="791.12" y="-926.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-919.5 573.5,-921.5 872.5,-921.5 872.5,-919.5 573.5,-919.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-917.5 573.5,-919.5 872.5,-919.5 872.5,-917.5 573.5,-917.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-915.5 573.5,-917.5 872.5,-917.5 872.5,-915.5 573.5,-915.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-913.5 573.5,-915.5 872.5,-915.5 872.5,-913.5 573.5,-913.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-911.5 573.5,-913.5 872.5,-913.5 872.5,-911.5 573.5,-911.5"/>
-<text text-anchor="start" x="581.38" y="-896.2" font-family="arial" font-size="14.00">Veronte 1X:51:OUT_RS485_N</text>
-<text text-anchor="start" x="788.88" y="-896.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-889.5 573.5,-891.5 872.5,-891.5 872.5,-889.5 573.5,-889.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-887.5 573.5,-889.5 872.5,-889.5 872.5,-887.5 573.5,-887.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-885.5 573.5,-887.5 872.5,-887.5 872.5,-885.5 573.5,-885.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-883.5 573.5,-885.5 872.5,-885.5 872.5,-883.5 573.5,-883.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-881.5 573.5,-883.5 872.5,-883.5 872.5,-881.5 573.5,-881.5"/>
-<text text-anchor="start" x="589.25" y="-866.2" font-family="arial" font-size="14.00">Veronte 1X:52:IN_RS845_N</text>
-<text text-anchor="start" x="791.12" y="-866.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-859.5 573.5,-861.5 872.5,-861.5 872.5,-859.5 573.5,-859.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-857.5 573.5,-859.5 872.5,-859.5 872.5,-857.5 573.5,-857.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-855.5 573.5,-857.5 872.5,-857.5 872.5,-855.5 573.5,-855.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-853.5 573.5,-855.5 872.5,-855.5 872.5,-853.5 573.5,-853.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-851.5 573.5,-853.5 872.5,-853.5 872.5,-851.5 573.5,-851.5"/>
-<text text-anchor="start" x="589.25" y="-836.2" font-family="arial" font-size="14.00">Veronte 1X:53:IN_RS845_P</text>
-<text text-anchor="start" x="788.12" y="-836.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-829.5 573.5,-831.5 872.5,-831.5 872.5,-829.5 573.5,-829.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-827.5 573.5,-829.5 872.5,-829.5 872.5,-827.5 573.5,-827.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-825.5 573.5,-827.5 872.5,-827.5 872.5,-825.5 573.5,-825.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-823.5 573.5,-825.5 872.5,-825.5 872.5,-823.5 573.5,-823.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-821.5 573.5,-823.5 872.5,-823.5 872.5,-821.5 573.5,-821.5"/>
-<text text-anchor="start" x="587.38" y="-806.2" font-family="arial" font-size="14.00">Veronte 1X:54:RS&#45;485_GND</text>
-<text text-anchor="start" x="790.38" y="-806.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-799.5 573.5,-801.5 872.5,-801.5 872.5,-799.5 573.5,-799.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-797.5 573.5,-799.5 872.5,-799.5 872.5,-797.5 573.5,-797.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-795.5 573.5,-797.5 872.5,-797.5 872.5,-795.5 573.5,-795.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-793.5 573.5,-795.5 872.5,-795.5 872.5,-793.5 573.5,-793.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-791.5 573.5,-793.5 872.5,-793.5 872.5,-791.5 573.5,-791.5"/>
-<text text-anchor="start" x="602.75" y="-776.2" font-family="arial" font-size="14.00">Veronte 1X:55:EQEP_A</text>
-<text text-anchor="start" x="788.88" y="-776.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-769.5 573.5,-771.5 872.5,-771.5 872.5,-769.5 573.5,-769.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-767.5 573.5,-769.5 872.5,-769.5 872.5,-767.5 573.5,-767.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-765.5 573.5,-767.5 872.5,-767.5 872.5,-765.5 573.5,-765.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-763.5 573.5,-765.5 872.5,-765.5 872.5,-763.5 573.5,-763.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-761.5 573.5,-763.5 872.5,-763.5 872.5,-761.5 573.5,-761.5"/>
-<text text-anchor="start" x="602.75" y="-746.2" font-family="arial" font-size="14.00">Veronte 1X:56:EQEP_B</text>
-<text text-anchor="start" x="791.12" y="-746.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-739.5 573.5,-741.5 872.5,-741.5 872.5,-739.5 573.5,-739.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-737.5 573.5,-739.5 872.5,-739.5 872.5,-737.5 573.5,-737.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-735.5 573.5,-737.5 872.5,-737.5 872.5,-735.5 573.5,-735.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-733.5 573.5,-735.5 872.5,-735.5 872.5,-733.5 573.5,-733.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-731.5 573.5,-733.5 872.5,-733.5 872.5,-731.5 573.5,-731.5"/>
-<text text-anchor="start" x="602.75" y="-716.2" font-family="arial" font-size="14.00">Veronte 1X:57:EQEP_S</text>
-<text text-anchor="start" x="790" y="-716.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-709.5 573.5,-711.5 872.5,-711.5 872.5,-709.5 573.5,-709.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-707.5 573.5,-709.5 872.5,-709.5 872.5,-707.5 573.5,-707.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-705.5 573.5,-707.5 872.5,-707.5 872.5,-705.5 573.5,-705.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-703.5 573.5,-705.5 872.5,-705.5 872.5,-703.5 573.5,-703.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-701.5 573.5,-703.5 872.5,-703.5 872.5,-701.5 573.5,-701.5"/>
-<text text-anchor="start" x="605.38" y="-686.2" font-family="arial" font-size="14.00">Veronte 1X:58:EQEP_I</text>
-<text text-anchor="start" x="790.75" y="-686.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-679.5 573.5,-681.5 872.5,-681.5 872.5,-679.5 573.5,-679.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-677.5 573.5,-679.5 872.5,-679.5 872.5,-677.5 573.5,-677.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-675.5 573.5,-677.5 872.5,-677.5 872.5,-675.5 573.5,-675.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-673.5 573.5,-675.5 872.5,-675.5 872.5,-673.5 573.5,-673.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-671.5 573.5,-673.5 872.5,-673.5 872.5,-671.5 573.5,-671.5"/>
-<text text-anchor="start" x="616.25" y="-656.2" font-family="arial" font-size="14.00">Veronte 1X:59:GND</text>
-<text text-anchor="start" x="790.38" y="-656.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-649.5 573.5,-651.5 872.5,-651.5 872.5,-649.5 573.5,-649.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-647.5 573.5,-649.5 872.5,-649.5 872.5,-647.5 573.5,-647.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-645.5 573.5,-647.5 872.5,-647.5 872.5,-645.5 573.5,-645.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-643.5 573.5,-645.5 872.5,-645.5 872.5,-643.5 573.5,-643.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-641.5 573.5,-643.5 872.5,-643.5 872.5,-641.5 573.5,-641.5"/>
-<text text-anchor="start" x="594.12" y="-626.2" font-family="arial" font-size="14.00">Veronte 1X:60:V_USB_DP</text>
-<text text-anchor="start" x="791.5" y="-626.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-619.5 573.5,-621.5 872.5,-621.5 872.5,-619.5 573.5,-619.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-617.5 573.5,-619.5 872.5,-619.5 872.5,-617.5 573.5,-617.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-615.5 573.5,-617.5 872.5,-617.5 872.5,-615.5 573.5,-615.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-613.5 573.5,-615.5 872.5,-615.5 872.5,-613.5 573.5,-613.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-611.5 573.5,-613.5 872.5,-613.5 872.5,-611.5 573.5,-611.5"/>
-<text text-anchor="start" x="594.12" y="-596.2" font-family="arial" font-size="14.00">Veronte 1X:61:V_USB_DN</text>
-<text text-anchor="start" x="798.62" y="-596.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-589.5 573.5,-591.5 872.5,-591.5 872.5,-589.5 573.5,-589.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-587.5 573.5,-589.5 872.5,-589.5 872.5,-587.5 573.5,-587.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-585.5 573.5,-587.5 872.5,-587.5 872.5,-585.5 573.5,-585.5"/>
-<polygon fill="#ffffff" stroke="none" points="573.5,-583.5 573.5,-585.5 872.5,-585.5 872.5,-583.5 573.5,-583.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-581.5 573.5,-583.5 872.5,-583.5 872.5,-581.5 573.5,-581.5"/>
-<text text-anchor="start" x="596.75" y="-566.2" font-family="arial" font-size="14.00">Veronte 1X:62:V_USB_ID</text>
-<text text-anchor="start" x="800.88" y="-566.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-559.5 573.5,-561.5 872.5,-561.5 872.5,-559.5 573.5,-559.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-557.5 573.5,-559.5 872.5,-559.5 872.5,-557.5 573.5,-557.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-555.5 573.5,-557.5 872.5,-557.5 872.5,-555.5 573.5,-555.5"/>
-<polygon fill="#895956" stroke="none" points="573.5,-553.5 573.5,-555.5 872.5,-555.5 872.5,-553.5 573.5,-553.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-551.5 573.5,-553.5 872.5,-553.5 872.5,-551.5 573.5,-551.5"/>
-<text text-anchor="start" x="579.5" y="-536.2" font-family="arial" font-size="14.00">Veronte 1X:63:FTS_OUT_MPU</text>
-<text text-anchor="start" x="800.12" y="-536.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-529.5 573.5,-531.5 872.5,-531.5 872.5,-529.5 573.5,-529.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-527.5 573.5,-529.5 872.5,-529.5 872.5,-527.5 573.5,-527.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-525.5 573.5,-527.5 872.5,-527.5 872.5,-525.5 573.5,-525.5"/>
-<polygon fill="#00ff00" stroke="none" points="573.5,-523.5 573.5,-525.5 872.5,-525.5 872.5,-523.5 573.5,-523.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-521.5 573.5,-523.5 872.5,-523.5 872.5,-521.5 573.5,-521.5"/>
-<text text-anchor="start" x="575.38" y="-506.2" font-family="arial" font-size="14.00">Veronte 1X:64:FTS2_OUT_MPU</text>
-<text text-anchor="start" x="801.25" y="-506.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-499.5 573.5,-501.5 872.5,-501.5 872.5,-499.5 573.5,-499.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-497.5 573.5,-499.5 872.5,-499.5 872.5,-497.5 573.5,-497.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-495.5 573.5,-497.5 872.5,-497.5 872.5,-495.5 573.5,-495.5"/>
-<polygon fill="#ffff00" stroke="none" points="573.5,-493.5 573.5,-495.5 872.5,-495.5 872.5,-493.5 573.5,-493.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-491.5 573.5,-493.5 872.5,-493.5 872.5,-491.5 573.5,-491.5"/>
-<text text-anchor="start" x="616.25" y="-476.2" font-family="arial" font-size="14.00">Veronte 1X:65:GND</text>
-<text text-anchor="start" x="800.5" y="-476.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-469.5 573.5,-471.5 872.5,-471.5 872.5,-469.5 573.5,-469.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-467.5 573.5,-469.5 872.5,-469.5 872.5,-467.5 573.5,-467.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-465.5 573.5,-467.5 872.5,-467.5 872.5,-465.5 573.5,-465.5"/>
-<polygon fill="#999999" stroke="none" points="573.5,-463.5 573.5,-465.5 872.5,-465.5 872.5,-463.5 573.5,-463.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-461.5 573.5,-463.5 872.5,-463.5 872.5,-461.5 573.5,-461.5"/>
-<text text-anchor="start" x="616.25" y="-446.2" font-family="arial" font-size="14.00">Veronte 1X:66:GND</text>
-<text text-anchor="start" x="800.88" y="-446.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-439.5 573.5,-441.5 872.5,-441.5 872.5,-439.5 573.5,-439.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-437.5 573.5,-439.5 872.5,-439.5 872.5,-437.5 573.5,-437.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-435.5 573.5,-437.5 872.5,-437.5 872.5,-435.5 573.5,-435.5"/>
-<polygon fill="#ff66cc" stroke="none" points="573.5,-433.5 573.5,-435.5 872.5,-435.5 872.5,-433.5 573.5,-433.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-431.5 573.5,-433.5 872.5,-433.5 872.5,-431.5 573.5,-431.5"/>
-<text text-anchor="start" x="616.62" y="-416.2" font-family="arial" font-size="14.00">Veronte 1X:67:VCC</text>
-<text text-anchor="start" x="800.88" y="-416.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-409.5 573.5,-411.5 872.5,-411.5 872.5,-409.5 573.5,-409.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-407.5 573.5,-409.5 872.5,-409.5 872.5,-407.5 573.5,-407.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-405.5 573.5,-407.5 872.5,-407.5 872.5,-405.5 573.5,-405.5"/>
-<polygon fill="#0066ff" stroke="none" points="573.5,-403.5 573.5,-405.5 872.5,-405.5 872.5,-403.5 573.5,-403.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-401.5 573.5,-403.5 872.5,-403.5 872.5,-401.5 573.5,-401.5"/>
-<text text-anchor="start" x="616.62" y="-386.2" font-family="arial" font-size="14.00">Veronte 1X:68:VCC</text>
-<text text-anchor="start" x="800.12" y="-386.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<polygon fill="#000000" stroke="none" points="573.5,-379.5 573.5,-381.5 872.5,-381.5 872.5,-379.5 573.5,-379.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-377.5 573.5,-379.5 872.5,-379.5 872.5,-377.5 573.5,-377.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-375.5 573.5,-377.5 872.5,-377.5 872.5,-375.5 573.5,-375.5"/>
-<polygon fill="#ff0000" stroke="none" points="573.5,-373.5 573.5,-375.5 872.5,-375.5 872.5,-373.5 573.5,-373.5"/>
-<polygon fill="#000000" stroke="none" points="573.5,-371.5 573.5,-373.5 872.5,-373.5 872.5,-371.5 573.5,-371.5"/>
-<text text-anchor="start" x="678.12" y="-356.2" font-family="arial" font-size="14.00"> </text>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge42" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2113C481.56,-2113 499.72,-2112.5 572.5,-2112.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2115C481.61,-2115 499.78,-2114.5 572.5,-2114.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2117C481.67,-2117 499.83,-2116.5 572.5,-2116.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2119C481.72,-2119 499.89,-2118.5 572.5,-2118.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2121C481.78,-2121 499.94,-2120.5 572.5,-2120.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge43" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2041C487.77,-2043.76 501.33,-2085.26 572.5,-2082.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-2043C485.87,-2044.38 499.43,-2085.88 572.5,-2084.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-2045C483.97,-2045 497.53,-2086.5 572.5,-2086.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-2047C482.07,-2045.62 495.63,-2087.12 572.5,-2088.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2049C480.17,-2046.24 493.73,-2087.74 572.5,-2090.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge44" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2017C487.05,-2019.46 501.83,-2054.96 572.5,-2052.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-2019C485.21,-2020.23 499.99,-2055.73 572.5,-2054.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-2021C483.36,-2021 498.14,-2056.5 572.5,-2056.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-2023C481.51,-2021.77 496.29,-2057.27 572.5,-2058.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2025C479.67,-2022.54 494.45,-2058.04 572.5,-2060.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge45" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1993C486.37,-1995.11 502.19,-2024.61 572.5,-2022.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1995C484.6,-1996.05 500.42,-2025.55 572.5,-2024.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1997C482.84,-1997 498.66,-2026.5 572.5,-2026.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1999C481.08,-1997.95 496.9,-2027.45 572.5,-2028.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2001C479.31,-1998.89 495.13,-2028.39 572.5,-2030.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge46" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1969C485.68,-1970.69 502.35,-1994.19 572.5,-1992.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1971C484.04,-1971.84 500.72,-1995.34 572.5,-1994.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1973C482.41,-1973 499.09,-1996.5 572.5,-1996.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1975C480.78,-1974.16 497.46,-1997.66 572.5,-1998.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1977C479.15,-1975.31 495.82,-1998.81 572.5,-2000.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge47" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1945C484.92,-1946.18 502.26,-1963.68 572.5,-1962.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1947C483.5,-1947.59 500.84,-1965.09 572.5,-1964.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1949C482.08,-1949 499.42,-1966.5 572.5,-1966.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1951C480.66,-1950.41 498,-1967.91 572.5,-1968.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1953C479.24,-1951.82 496.58,-1969.32 572.5,-1970.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge48" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1897C482.87,-1897.17 500.96,-1902.67 572.5,-1902.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1899C482.29,-1899.09 500.37,-1904.59 572.5,-1904.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1901C481.71,-1901 499.79,-1906.5 572.5,-1906.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1903C481.13,-1902.91 499.21,-1908.41 572.5,-1908.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1905C480.54,-1904.83 498.63,-1910.33 572.5,-1910.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge49" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1873C481.56,-1873 499.72,-1872.5 572.5,-1872.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1875C481.61,-1875 499.78,-1874.5 572.5,-1874.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1877C481.67,-1877 499.83,-1876.5 572.5,-1876.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1879C481.72,-1879 499.89,-1878.5 572.5,-1878.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1881C481.78,-1881 499.94,-1880.5 572.5,-1880.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge50" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1849C480.37,-1849.24 498.42,-1842.74 572.5,-1842.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1851C481.05,-1851.12 499.1,-1844.62 572.5,-1844.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1853C481.72,-1853 499.78,-1846.5 572.5,-1846.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1855C482.4,-1854.88 500.45,-1848.38 572.5,-1848.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1857C483.08,-1856.76 501.13,-1850.26 572.5,-1850.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge51" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1825C479.57,-1825.73 497.32,-1813.23 572.5,-1812.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1827C480.73,-1827.37 498.47,-1814.87 572.5,-1814.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1829C481.88,-1829 499.62,-1816.5 572.5,-1816.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1831C483.03,-1830.63 500.77,-1818.13 572.5,-1818.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1833C484.18,-1832.27 501.93,-1819.77 572.5,-1820.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge52" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1801C479.2,-1802.27 496.44,-1783.77 572.5,-1782.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1803C480.67,-1803.64 497.91,-1785.14 572.5,-1784.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1805C482.13,-1805 499.37,-1786.5 572.5,-1786.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1807C483.59,-1806.36 500.83,-1787.86 572.5,-1788.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1809C485.06,-1807.73 502.3,-1789.23 572.5,-1790.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge53" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1777C479.16,-1778.76 495.71,-1754.26 572.5,-1752.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1779C480.82,-1779.88 497.36,-1755.38 572.5,-1754.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1781C482.48,-1781 499.02,-1756.5 572.5,-1756.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1783C484.14,-1782.12 500.68,-1757.62 572.5,-1758.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1785C485.79,-1783.24 502.34,-1758.74 572.5,-1760.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge54" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1753C479.36,-1755.17 495.02,-1724.67 572.5,-1722.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1755C481.14,-1756.09 496.8,-1725.59 572.5,-1724.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1757C482.92,-1757 498.58,-1726.5 572.5,-1726.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1759C484.7,-1757.91 500.36,-1727.41 572.5,-1728.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1761C486.48,-1758.83 502.14,-1728.33 572.5,-1730.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge55" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1729C479.74,-1731.52 494.33,-1695.02 572.5,-1692.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1731C481.6,-1732.26 496.19,-1695.76 572.5,-1694.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1733C483.46,-1733 498.04,-1696.5 572.5,-1696.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1735C485.31,-1733.74 499.9,-1697.24 572.5,-1698.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1737C487.17,-1734.48 501.76,-1697.98 572.5,-1700.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge56" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1609C480.37,-1609.24 498.42,-1602.74 572.5,-1602.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1611C481.05,-1611.12 499.1,-1604.62 572.5,-1604.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1613C481.72,-1613 499.78,-1606.5 572.5,-1606.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1615C482.4,-1614.88 500.45,-1608.38 572.5,-1608.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1617C483.08,-1616.76 501.13,-1610.26 572.5,-1610.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge57" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1585C479.57,-1585.73 497.32,-1573.23 572.5,-1572.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1587C480.73,-1587.37 498.47,-1574.87 572.5,-1574.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1589C481.88,-1589 499.62,-1576.5 572.5,-1576.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1591C483.03,-1590.63 500.77,-1578.13 572.5,-1578.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1593C484.18,-1592.27 501.93,-1579.77 572.5,-1580.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge58" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1489C485.68,-1490.69 502.35,-1514.19 572.5,-1512.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1491C484.04,-1491.84 500.72,-1515.34 572.5,-1514.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1493C482.41,-1493 499.09,-1516.5 572.5,-1516.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1495C480.78,-1494.16 497.46,-1517.66 572.5,-1518.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1497C479.15,-1495.31 495.82,-1518.81 572.5,-1520.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge59" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1393C495.84,-1397.1 493.66,-1486.6 572.5,-1482.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1395C493.84,-1397.05 491.66,-1486.55 572.5,-1484.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1397C491.84,-1397 489.66,-1486.5 572.5,-1486.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1399C489.84,-1396.95 487.66,-1486.45 572.5,-1488.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1401C487.84,-1396.9 485.66,-1486.4 572.5,-1490.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge60" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1369C494.59,-1372.99 494.91,-1456.49 572.5,-1452.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1371C492.59,-1372.99 492.91,-1456.49 572.5,-1454.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1373C490.59,-1373 490.91,-1456.5 572.5,-1456.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1375C488.59,-1373.01 488.91,-1456.51 572.5,-1458.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1377C486.59,-1373.01 486.91,-1456.51 572.5,-1460.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge61" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1321C492.3,-1324.73 497.18,-1396.23 572.5,-1392.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1323C490.31,-1324.86 495.18,-1396.36 572.5,-1394.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1325C488.31,-1325 493.19,-1396.5 572.5,-1396.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1327C486.32,-1325.14 491.19,-1396.64 572.5,-1398.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1329C484.32,-1325.27 489.2,-1396.77 572.5,-1400.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge62" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1273C490.29,-1276.41 499.13,-1335.91 572.5,-1332.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1275C488.31,-1276.71 497.15,-1336.21 572.5,-1334.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1277C486.33,-1277 495.17,-1336.5 572.5,-1336.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1279C484.35,-1277.29 493.19,-1336.79 572.5,-1338.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1281C482.37,-1277.59 491.21,-1337.09 572.5,-1340.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge63" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1225C488.55,-1228.01 500.7,-1275.51 572.5,-1272.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1227C486.61,-1228.5 498.77,-1276 572.5,-1274.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1229C484.67,-1229 496.83,-1276.5 572.5,-1276.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1231C482.73,-1229.5 494.89,-1277 572.5,-1278.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1233C480.8,-1229.99 492.95,-1277.49 572.5,-1280.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge64" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1201C487.77,-1203.76 501.33,-1245.26 572.5,-1242.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1203C485.87,-1204.38 499.43,-1245.88 572.5,-1244.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1205C483.97,-1205 497.53,-1246.5 572.5,-1246.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1207C482.07,-1205.62 495.63,-1247.12 572.5,-1248.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1209C480.17,-1206.24 493.73,-1247.74 572.5,-1250.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge65" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1177C487.05,-1179.46 501.83,-1214.96 572.5,-1212.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1179C485.21,-1180.23 499.99,-1215.73 572.5,-1214.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1181C483.36,-1181 498.14,-1216.5 572.5,-1216.5"/>
-<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1183C481.51,-1181.77 496.29,-1217.27 572.5,-1218.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1185C479.67,-1182.54 494.45,-1218.04 572.5,-1220.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge66" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1129C485.68,-1130.69 502.35,-1154.19 572.5,-1152.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1131C484.04,-1131.84 500.72,-1155.34 572.5,-1154.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1133C482.41,-1133 499.09,-1156.5 572.5,-1156.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1135C480.78,-1134.16 497.46,-1157.66 572.5,-1158.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1137C479.15,-1135.31 495.82,-1158.81 572.5,-1160.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge67" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1105C484.92,-1106.18 502.26,-1123.68 572.5,-1122.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1107C483.5,-1107.59 500.84,-1125.09 572.5,-1124.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1109C482.08,-1109 499.42,-1126.5 572.5,-1126.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1111C480.66,-1110.41 498,-1127.91 572.5,-1128.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1113C479.24,-1111.82 496.58,-1129.32 572.5,-1130.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge68" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1057C482.87,-1057.17 500.96,-1062.67 572.5,-1062.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1059C482.29,-1059.09 500.37,-1064.59 572.5,-1064.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1061C481.71,-1061 499.79,-1066.5 572.5,-1066.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1063C481.13,-1062.91 499.21,-1068.41 572.5,-1068.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1065C480.54,-1064.83 498.63,-1070.33 572.5,-1070.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge69" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1033C481.56,-1033 499.72,-1032.5 572.5,-1032.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1035C481.61,-1035 499.78,-1034.5 572.5,-1034.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1037C481.67,-1037 499.83,-1036.5 572.5,-1036.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1039C481.72,-1039 499.89,-1038.5 572.5,-1038.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1041C481.78,-1041 499.94,-1040.5 572.5,-1040.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge70" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-985C479.57,-985.73 497.32,-973.23 572.5,-972.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-987C480.73,-987.37 498.47,-974.87 572.5,-974.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-989C481.88,-989 499.62,-976.5 572.5,-976.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-991C483.03,-990.63 500.77,-978.13 572.5,-978.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-993C484.18,-992.27 501.93,-979.77 572.5,-980.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge71" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-961C479.2,-962.27 496.44,-943.77 572.5,-942.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-963C480.67,-963.64 497.91,-945.14 572.5,-944.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-965C482.13,-965 499.37,-946.5 572.5,-946.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-967C483.59,-966.36 500.83,-947.86 572.5,-948.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-969C485.06,-967.73 502.3,-949.23 572.5,-950.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge72" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-937C479.16,-938.76 495.71,-914.26 572.5,-912.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-939C480.82,-939.88 497.36,-915.38 572.5,-914.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-941C482.48,-941 499.02,-916.5 572.5,-916.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-943C484.14,-942.12 500.68,-917.62 572.5,-918.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-945C485.79,-943.24 502.34,-918.74 572.5,-920.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge73" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-913C479.36,-915.17 495.02,-884.67 572.5,-882.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-915C481.14,-916.09 496.8,-885.59 572.5,-884.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-917C482.92,-917 498.58,-886.5 572.5,-886.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-919C484.7,-917.91 500.36,-887.41 572.5,-888.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-921C486.48,-918.83 502.14,-888.33 572.5,-890.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge74" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-889C479.74,-891.52 494.33,-855.02 572.5,-852.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-891C481.6,-892.26 496.19,-855.76 572.5,-854.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-893C483.46,-893 498.04,-856.5 572.5,-856.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-895C485.31,-893.74 499.9,-857.24 572.5,-858.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-897C487.17,-894.48 501.76,-857.98 572.5,-860.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge75" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-865C480.27,-867.8 493.6,-825.3 572.5,-822.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-867C482.17,-868.4 495.51,-825.9 572.5,-824.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-869C484.08,-869 497.42,-826.5 572.5,-826.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-871C485.99,-869.6 499.33,-827.1 572.5,-828.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-873C487.9,-870.2 501.23,-827.7 572.5,-830.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge76" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-841C480.91,-844.05 492.82,-795.55 572.5,-792.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-843C482.85,-844.52 494.76,-796.02 572.5,-794.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-845C484.8,-845 496.7,-796.5 572.5,-796.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-847C486.74,-845.48 498.65,-796.98 572.5,-798.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-849C488.68,-845.95 500.59,-797.45 572.5,-800.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge77" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-817C481.67,-820.26 491.97,-765.76 572.5,-762.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-819C483.63,-820.63 493.94,-766.13 572.5,-764.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-821C485.6,-821 495.9,-766.5 572.5,-766.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-823C487.56,-821.37 497.87,-766.87 572.5,-768.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-825C489.53,-821.74 499.83,-767.24 572.5,-770.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge78" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-793C482.52,-796.44 491.06,-735.94 572.5,-732.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-795C484.5,-796.72 493.04,-736.22 572.5,-734.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-797C486.48,-797 495.02,-736.5 572.5,-736.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-799C488.46,-797.28 497,-736.78 572.5,-738.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-801C490.44,-797.56 498.98,-737.06 572.5,-740.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge79" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-769C483.47,-772.6 490.07,-706.1 572.5,-702.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-771C485.46,-772.8 492.06,-706.3 572.5,-704.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-773C487.45,-773 494.05,-706.5 572.5,-706.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-775C489.44,-773.2 496.04,-706.7 572.5,-708.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-777C491.43,-773.4 498.03,-706.9 572.5,-710.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge80" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-745C484.5,-748.75 489.02,-676.25 572.5,-672.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-747C486.49,-748.88 491.01,-676.38 572.5,-674.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-749C488.49,-749 493.01,-676.5 572.5,-676.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-751C490.49,-749.12 495.01,-676.62 572.5,-678.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-753C492.48,-749.25 497,-676.75 572.5,-680.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge81" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-697C486.8,-701 486.7,-616.5 572.5,-612.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-699C488.8,-701 488.7,-616.5 572.5,-614.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-701C490.8,-701 490.7,-616.5 572.5,-616.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-703C492.8,-701 492.7,-616.5 572.5,-618.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-705C494.8,-701 494.7,-616.5 572.5,-620.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge82" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-673C488.06,-677.12 485.45,-586.62 572.5,-582.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-675C490.06,-677.06 487.44,-586.56 572.5,-584.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-677C492.06,-677 489.44,-586.5 572.5,-586.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-679C494.06,-676.94 491.44,-586.44 572.5,-588.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-681C496.05,-676.88 493.44,-586.38 572.5,-590.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge83" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-649C489.39,-653.22 484.13,-556.72 572.5,-552.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-651C491.38,-653.11 486.12,-556.61 572.5,-554.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-653C493.38,-653 488.12,-556.5 572.5,-556.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-655C495.38,-652.89 490.12,-556.39 572.5,-558.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-657C497.37,-652.78 492.11,-556.28 572.5,-560.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge84" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-625C490.78,-629.31 482.75,-526.81 572.5,-522.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-627C492.77,-629.16 484.74,-526.66 572.5,-524.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-629C494.77,-629 486.73,-526.5 572.5,-526.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-631C496.76,-628.84 488.73,-526.34 572.5,-528.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-633C498.75,-628.69 490.72,-526.19 572.5,-530.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge85" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-601C492.23,-605.4 481.31,-496.9 572.5,-492.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-603C494.22,-605.2 483.3,-496.7 572.5,-494.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-605C496.21,-605 485.29,-496.5 572.5,-496.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-607C498.2,-604.8 487.28,-496.3 572.5,-498.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-609C500.19,-604.6 489.27,-496.1 572.5,-500.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge86" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-529C496.93,-533.63 476.67,-407.13 572.5,-402.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-531C498.9,-533.32 478.65,-406.82 572.5,-404.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-533C500.88,-533 480.62,-406.5 572.5,-406.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-535C502.85,-532.68 482.6,-406.18 572.5,-408.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-537C504.83,-532.37 484.57,-405.87 572.5,-410.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge87" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-505C498.59,-509.7 475.03,-377.2 572.5,-372.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-507C500.56,-509.35 477,-376.85 572.5,-374.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-509C502.53,-509 478.97,-376.5 572.5,-376.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-511C504.5,-508.65 480.94,-376.15 572.5,-378.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-513C506.47,-508.3 482.91,-375.8 572.5,-380.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge88" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1921C484.02,-1921.64 501.82,-1933.14 572.5,-1932.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1923C482.93,-1923.32 500.74,-1934.82 572.5,-1934.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1925C481.85,-1925 499.65,-1936.5 572.5,-1936.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1927C480.76,-1926.68 498.57,-1938.18 572.5,-1938.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1929C479.68,-1928.36 497.48,-1939.86 572.5,-1940.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge90" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1705C480.27,-1707.8 493.6,-1665.3 572.5,-1662.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1707C482.17,-1708.4 495.51,-1665.9 572.5,-1664.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1709C484.08,-1709 497.42,-1666.5 572.5,-1666.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1711C485.99,-1709.6 499.33,-1667.1 572.5,-1668.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1713C487.9,-1710.2 501.23,-1667.7 572.5,-1670.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge92" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1633C481.56,-1633 499.72,-1632.5 572.5,-1632.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1635C481.61,-1635 499.78,-1634.5 572.5,-1634.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1637C481.67,-1637 499.83,-1636.5 572.5,-1636.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1639C481.72,-1639 499.89,-1638.5 572.5,-1638.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1641C481.78,-1641 499.94,-1640.5 572.5,-1640.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge94" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1561C479.2,-1562.27 496.44,-1543.77 572.5,-1542.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1563C480.67,-1563.64 497.91,-1545.14 572.5,-1544.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1565C482.13,-1565 499.37,-1546.5 572.5,-1546.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1567C483.59,-1566.36 500.83,-1547.86 572.5,-1548.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1569C485.06,-1567.73 502.3,-1549.23 572.5,-1550.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge96" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1345C493.41,-1348.86 496.08,-1426.36 572.5,-1422.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1347C491.42,-1348.93 494.08,-1426.43 572.5,-1424.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1349C489.42,-1349 492.08,-1426.5 572.5,-1426.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1351C487.42,-1349.07 490.08,-1426.57 572.5,-1428.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1353C485.42,-1349.14 488.09,-1426.64 572.5,-1430.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge98" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1297C491.26,-1300.58 498.2,-1366.08 572.5,-1362.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1299C489.27,-1300.79 496.21,-1366.29 572.5,-1364.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1301C487.28,-1301 494.22,-1366.5 572.5,-1366.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1303C485.29,-1301.21 492.23,-1366.71 572.5,-1368.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1305C483.3,-1301.42 490.24,-1366.92 572.5,-1370.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge100" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1249C489.38,-1252.22 499.97,-1305.72 572.5,-1302.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1251C487.42,-1252.61 498,-1306.11 572.5,-1304.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1253C485.46,-1253 496.04,-1306.5 572.5,-1306.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1255C483.5,-1253.39 494.08,-1306.89 572.5,-1308.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1257C481.53,-1253.78 492.12,-1307.28 572.5,-1310.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge102" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1153C486.37,-1155.11 502.19,-1184.61 572.5,-1182.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1155C484.6,-1156.05 500.42,-1185.55 572.5,-1184.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1157C482.84,-1157 498.66,-1186.5 572.5,-1186.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1159C481.08,-1157.95 496.9,-1187.45 572.5,-1188.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1161C479.31,-1158.89 495.13,-1188.39 572.5,-1190.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge104" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1081C484.02,-1081.64 501.82,-1093.14 572.5,-1092.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1083C482.93,-1083.32 500.74,-1094.82 572.5,-1094.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1085C481.85,-1085 499.65,-1096.5 572.5,-1096.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1087C480.76,-1086.68 498.57,-1098.18 572.5,-1098.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1089C479.68,-1088.36 497.48,-1099.86 572.5,-1100.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge106" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1009C480.37,-1009.24 498.42,-1002.74 572.5,-1002.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1011C481.05,-1011.12 499.1,-1004.62 572.5,-1004.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1013C481.72,-1013 499.78,-1006.5 572.5,-1006.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1015C482.4,-1014.88 500.45,-1008.38 572.5,-1008.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1017C483.08,-1016.76 501.13,-1010.26 572.5,-1010.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge108" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-721C485.61,-724.88 487.89,-646.38 572.5,-642.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-723C487.61,-724.94 489.89,-646.44 572.5,-644.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-725C489.61,-725 491.89,-646.5 572.5,-646.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-727C491.61,-725.06 493.89,-646.56 572.5,-648.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-729C493.61,-725.12 495.89,-646.62 572.5,-650.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge110" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-577C493.74,-581.48 479.82,-466.98 572.5,-462.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-579C495.73,-581.24 481.8,-466.74 572.5,-464.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-581C497.71,-581 483.79,-466.5 572.5,-466.5"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M409,-583C499.7,-580.76 485.77,-466.26 572.5,-468.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-585C501.68,-580.52 487.76,-466.02 572.5,-470.5"/>
-</g>
-<!-- Veronte 1X&#45;&#45;W8 -->
-<g id="edge112" class="edge">
-<title>Veronte 1X:e&#45;&#45;W8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-553C495.31,-557.56 478.27,-437.06 572.5,-432.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-555C497.29,-557.28 480.25,-436.78 572.5,-434.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-557C499.27,-557 482.23,-436.5 572.5,-436.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-559C501.25,-556.72 484.21,-436.22 572.5,-438.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-561C503.23,-556.44 486.19,-435.94 572.5,-440.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1417C491.12,-1418.87 510.1,-1388.62 599,-1386.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1419C492.81,-1419.94 511.8,-1389.69 599,-1388.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1421C494.51,-1421 513.49,-1390.75 599,-1390.75"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1423C496.2,-1422.06 515.19,-1391.81 599,-1392.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1425C497.9,-1423.13 516.88,-1392.88 599,-1394.75"/>
</g>
<!-- W13 -->
-<g id="node60" class="node">
+<g id="node36" class="node">
<title>W13</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="891.5,-3684.5 554.5,-3684.5 554.5,-3535.5 891.5,-3535.5 891.5,-3684.5"/>
-<polygon fill="none" stroke="black" points="554.5,-3660 554.5,-3684.5 891.5,-3684.5 891.5,-3660 554.5,-3660"/>
-<text text-anchor="start" x="707.62" y="-3667.2" font-family="arial" font-size="14.00">W13</text>
-<polygon fill="none" stroke="black" points="554.5,-3635.5 554.5,-3660 633.33,-3660 633.33,-3635.5 554.5,-3635.5"/>
-<text text-anchor="start" x="586.42" y="-3642.7" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="633.33,-3635.5 633.33,-3660 752.67,-3660 752.67,-3635.5 633.33,-3635.5"/>
-<text text-anchor="start" x="665.25" y="-3642.7" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="752.67,-3635.5 752.67,-3660 891.5,-3660 891.5,-3635.5 752.67,-3635.5"/>
-<text text-anchor="start" x="784.58" y="-3642.7" font-family="arial" font-size="14.00">75.5 Inches</text>
-<text text-anchor="start" x="612.12" y="-3620.2" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="556.25" y="-3600.2" font-family="arial" font-size="14.00">Veronte 1X:2:I/O2</text>
-<text text-anchor="start" x="675.88" y="-3600.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="733.5" y="-3600.2" font-family="arial" font-size="14.00">VP&#45;X J2:1:Switch input 1</text>
-<polygon fill="#000000" stroke="none" points="554.5,-3593.5 554.5,-3595.5 891.5,-3595.5 891.5,-3593.5 554.5,-3593.5"/>
-<polygon fill="#895956" stroke="none" points="554.5,-3591.5 554.5,-3593.5 891.5,-3593.5 891.5,-3591.5 554.5,-3591.5"/>
-<polygon fill="#895956" stroke="none" points="554.5,-3589.5 554.5,-3591.5 891.5,-3591.5 891.5,-3589.5 554.5,-3589.5"/>
-<polygon fill="#895956" stroke="none" points="554.5,-3587.5 554.5,-3589.5 891.5,-3589.5 891.5,-3587.5 554.5,-3587.5"/>
-<polygon fill="#000000" stroke="none" points="554.5,-3585.5 554.5,-3587.5 891.5,-3587.5 891.5,-3585.5 554.5,-3585.5"/>
-<text text-anchor="start" x="556.25" y="-3570.2" font-family="arial" font-size="14.00">Veronte 1X:3:I/O3</text>
-<text text-anchor="start" x="675.12" y="-3570.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="733.5" y="-3570.2" font-family="arial" font-size="14.00">VP&#45;X J2:2:Switch input 2</text>
-<polygon fill="#000000" stroke="none" points="554.5,-3563.5 554.5,-3565.5 891.5,-3565.5 891.5,-3563.5 554.5,-3563.5"/>
-<polygon fill="#00ff00" stroke="none" points="554.5,-3561.5 554.5,-3563.5 891.5,-3563.5 891.5,-3561.5 554.5,-3561.5"/>
-<polygon fill="#00ff00" stroke="none" points="554.5,-3559.5 554.5,-3561.5 891.5,-3561.5 891.5,-3559.5 554.5,-3559.5"/>
-<polygon fill="#00ff00" stroke="none" points="554.5,-3557.5 554.5,-3559.5 891.5,-3559.5 891.5,-3557.5 554.5,-3557.5"/>
-<polygon fill="#000000" stroke="none" points="554.5,-3555.5 554.5,-3557.5 891.5,-3557.5 891.5,-3555.5 554.5,-3555.5"/>
-<text text-anchor="start" x="612.12" y="-3540.2" font-family="arial" font-size="14.00"> </text>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="886,-2277.5 553,-2277.5 553,-2128.5 886,-2128.5 886,-2277.5"/>
+<polygon fill="none" stroke="black" points="553,-2253 553,-2277.5 886,-2277.5 886,-2253 553,-2253"/>
+<text text-anchor="start" x="704.12" y="-2260.2" font-family="arial" font-size="14.00">W13</text>
+<polygon fill="none" stroke="black" points="553,-2228.5 553,-2253 630.5,-2253 630.5,-2228.5 553,-2228.5"/>
+<text text-anchor="start" x="584.25" y="-2235.7" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="630.5,-2228.5 630.5,-2253 748.5,-2253 748.5,-2228.5 630.5,-2228.5"/>
+<text text-anchor="start" x="661.75" y="-2235.7" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="748.5,-2228.5 748.5,-2253 886,-2253 886,-2228.5 748.5,-2228.5"/>
+<text text-anchor="start" x="779.75" y="-2235.7" font-family="arial" font-size="14.00">75.5 Inches</text>
+<text text-anchor="start" x="610.62" y="-2213.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="554.75" y="-2193.2" font-family="arial" font-size="14.00">Veronte 1X:2:I/O2</text>
+<text text-anchor="start" x="674.38" y="-2193.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="731.88" y="-2193.2" font-family="arial" font-size="14.00">VP&#45;XJ2:1:Switch input 1</text>
+<polygon fill="#000000" stroke="none" points="553,-2186.5 553,-2188.5 886,-2188.5 886,-2186.5 553,-2186.5"/>
+<polygon fill="#895956" stroke="none" points="553,-2184.5 553,-2186.5 886,-2186.5 886,-2184.5 553,-2184.5"/>
+<polygon fill="#895956" stroke="none" points="553,-2182.5 553,-2184.5 886,-2184.5 886,-2182.5 553,-2182.5"/>
+<polygon fill="#895956" stroke="none" points="553,-2180.5 553,-2182.5 886,-2182.5 886,-2180.5 553,-2180.5"/>
+<polygon fill="#000000" stroke="none" points="553,-2178.5 553,-2180.5 886,-2180.5 886,-2178.5 553,-2178.5"/>
+<text text-anchor="start" x="554.75" y="-2163.2" font-family="arial" font-size="14.00">Veronte 1X:3:I/O3</text>
+<text text-anchor="start" x="673.62" y="-2163.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="731.88" y="-2163.2" font-family="arial" font-size="14.00">VP&#45;XJ2:2:Switch input 2</text>
+<polygon fill="#000000" stroke="none" points="553,-2156.5 553,-2158.5 886,-2158.5 886,-2156.5 553,-2156.5"/>
+<polygon fill="#00ff00" stroke="none" points="553,-2154.5 553,-2156.5 886,-2156.5 886,-2154.5 553,-2154.5"/>
+<polygon fill="#00ff00" stroke="none" points="553,-2152.5 553,-2154.5 886,-2154.5 886,-2152.5 553,-2152.5"/>
+<polygon fill="#00ff00" stroke="none" points="553,-2150.5 553,-2152.5 886,-2152.5 886,-2150.5 553,-2150.5"/>
+<polygon fill="#000000" stroke="none" points="553,-2148.5 553,-2150.5 886,-2150.5 886,-2148.5 553,-2148.5"/>
+<text text-anchor="start" x="610.62" y="-2133.2" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Veronte 1X&#45;&#45;W13 -->
-<g id="edge126" class="edge">
+<g id="edge40" class="edge">
<title>Veronte 1X:e&#45;&#45;W13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2089C747.1,-2094.32 222.95,-3591.82 553.5,-3586.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2091C745.21,-2093.66 221.06,-3591.16 553.5,-3588.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2093C743.32,-2093 219.18,-3590.5 553.5,-3590.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2095C741.44,-2092.34 217.29,-3589.84 553.5,-3592.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2097C739.55,-2091.68 215.4,-3589.18 553.5,-3594.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2089C488.58,-2093.32 481.4,-2183.82 553,-2179.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2091C486.58,-2093.16 479.4,-2183.66 553,-2181.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2093C484.59,-2093 477.41,-2183.5 553,-2183.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2095C482.6,-2092.84 475.42,-2183.34 553,-2185.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2097C480.6,-2092.68 473.42,-2183.18 553,-2187.5"/>
</g>
<!-- Veronte 1X&#45;&#45;W13 -->
-<g id="edge128" class="edge">
+<g id="edge42" class="edge">
<title>Veronte 1X:e&#45;&#45;W13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2065C745.77,-2070.32 224.28,-3561.82 553.5,-3556.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2067C743.88,-2069.66 222.39,-3561.16 553.5,-3558.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2069C742,-2069 220.5,-3560.5 553.5,-3560.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2071C740.11,-2068.34 218.62,-3559.84 553.5,-3562.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2073C738.22,-2067.68 216.73,-3559.18 553.5,-3564.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2065C487.2,-2069.21 482.79,-2153.71 553,-2149.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2067C485.2,-2069.1 480.79,-2153.6 553,-2151.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2069C483.21,-2069 478.79,-2153.5 553,-2153.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2071C481.21,-2068.9 476.8,-2153.4 553,-2155.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2073C479.21,-2068.79 474.8,-2153.29 553,-2157.5"/>
</g>
-<!-- VP&#45;X J2 -->
+<!-- VP&#45;XJ2 -->
<g id="node2" class="node">
-<title>VP&#45;X J2</title>
-<polygon fill="#ffffff" stroke="black" points="1381,-3867.5 1037,-3867.5 1037,-3310.5 1381,-3310.5 1381,-3867.5"/>
-<polygon fill="none" stroke="black" points="1037,-3843 1037,-3867.5 1381,-3867.5 1381,-3843 1037,-3843"/>
-<text text-anchor="start" x="1182.38" y="-3850.2" font-family="arial" font-size="14.00">VP&#45;X J2</text>
-<polygon fill="none" stroke="black" points="1037,-3818.5 1037,-3843 1281,-3843 1281,-3818.5 1037,-3818.5"/>
-<text text-anchor="start" x="1067.12" y="-3825.7" font-family="arial" font-size="14.00">25&#45;pin dsub (Male Terminals)</text>
-<polygon fill="none" stroke="black" points="1281,-3818.5 1281,-3843 1381,-3843 1381,-3818.5 1281,-3818.5"/>
-<text text-anchor="start" x="1311.12" y="-3825.7" font-family="arial" font-size="14.00">18&#45;pin</text>
-<polygon fill="none" stroke="black" points="1037,-3794.5 1037,-3818.5 1150,-3818.5 1150,-3794.5 1037,-3794.5"/>
-<text text-anchor="start" x="1089.38" y="-3801.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1150,-3794.5 1150,-3818.5 1381,-3818.5 1381,-3794.5 1150,-3794.5"/>
-<text text-anchor="start" x="1222" y="-3801.2" font-family="arial" font-size="14.00">Switch input 1</text>
-<polygon fill="none" stroke="black" points="1037,-3770.5 1037,-3794.5 1150,-3794.5 1150,-3770.5 1037,-3770.5"/>
-<text text-anchor="start" x="1089.38" y="-3777.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1150,-3770.5 1150,-3794.5 1381,-3794.5 1381,-3770.5 1150,-3770.5"/>
-<text text-anchor="start" x="1222" y="-3777.2" font-family="arial" font-size="14.00">Switch input 2</text>
-<polygon fill="none" stroke="black" points="1037,-3746.5 1037,-3770.5 1150,-3770.5 1150,-3746.5 1037,-3746.5"/>
-<text text-anchor="start" x="1089.38" y="-3753.2" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="1150,-3746.5 1150,-3770.5 1381,-3770.5 1381,-3746.5 1150,-3746.5"/>
-<text text-anchor="start" x="1222" y="-3753.2" font-family="arial" font-size="14.00">Switch input 3</text>
-<polygon fill="none" stroke="black" points="1037,-3722.5 1037,-3746.5 1150,-3746.5 1150,-3722.5 1037,-3722.5"/>
-<text text-anchor="start" x="1089.38" y="-3729.2" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="1150,-3722.5 1150,-3746.5 1381,-3746.5 1381,-3722.5 1150,-3722.5"/>
-<text text-anchor="start" x="1222" y="-3729.2" font-family="arial" font-size="14.00">Switch input 4</text>
-<polygon fill="none" stroke="black" points="1037,-3698.5 1037,-3722.5 1150,-3722.5 1150,-3698.5 1037,-3698.5"/>
-<text text-anchor="start" x="1089.38" y="-3705.2" font-family="arial" font-size="14.00">5</text>
-<polygon fill="none" stroke="black" points="1150,-3698.5 1150,-3722.5 1381,-3722.5 1381,-3698.5 1150,-3698.5"/>
-<text text-anchor="start" x="1222" y="-3705.2" font-family="arial" font-size="14.00">Switch input 5</text>
-<polygon fill="none" stroke="black" points="1037,-3674.5 1037,-3698.5 1150,-3698.5 1150,-3674.5 1037,-3674.5"/>
-<text text-anchor="start" x="1089.38" y="-3681.2" font-family="arial" font-size="14.00">6</text>
-<polygon fill="none" stroke="black" points="1150,-3674.5 1150,-3698.5 1381,-3698.5 1381,-3674.5 1150,-3674.5"/>
-<text text-anchor="start" x="1222" y="-3681.2" font-family="arial" font-size="14.00">Switch input 6</text>
-<polygon fill="none" stroke="black" points="1037,-3650.5 1037,-3674.5 1150,-3674.5 1150,-3650.5 1037,-3650.5"/>
-<text text-anchor="start" x="1089.38" y="-3657.2" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="1150,-3650.5 1150,-3674.5 1381,-3674.5 1381,-3650.5 1150,-3650.5"/>
-<text text-anchor="start" x="1222" y="-3657.2" font-family="arial" font-size="14.00">Switch input 7</text>
-<polygon fill="none" stroke="black" points="1037,-3626.5 1037,-3650.5 1150,-3650.5 1150,-3626.5 1037,-3626.5"/>
-<text text-anchor="start" x="1089.38" y="-3633.2" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="1150,-3626.5 1150,-3650.5 1381,-3650.5 1381,-3626.5 1150,-3626.5"/>
-<text text-anchor="start" x="1222" y="-3633.2" font-family="arial" font-size="14.00">Switch input 8</text>
-<polygon fill="none" stroke="black" points="1037,-3602.5 1037,-3626.5 1150,-3626.5 1150,-3602.5 1037,-3602.5"/>
-<text text-anchor="start" x="1089.38" y="-3609.2" font-family="arial" font-size="14.00">9</text>
-<polygon fill="none" stroke="black" points="1150,-3602.5 1150,-3626.5 1381,-3626.5 1381,-3602.5 1150,-3602.5"/>
-<text text-anchor="start" x="1222" y="-3609.2" font-family="arial" font-size="14.00">Switch input 9</text>
-<polygon fill="none" stroke="black" points="1037,-3578.5 1037,-3602.5 1150,-3602.5 1150,-3578.5 1037,-3578.5"/>
-<text text-anchor="start" x="1085.25" y="-3585.2" font-family="arial" font-size="14.00">10</text>
-<polygon fill="none" stroke="black" points="1150,-3578.5 1150,-3602.5 1381,-3602.5 1381,-3578.5 1150,-3578.5"/>
-<text text-anchor="start" x="1217.88" y="-3585.2" font-family="arial" font-size="14.00">Switch input 10</text>
-<polygon fill="none" stroke="black" points="1037,-3554.5 1037,-3578.5 1150,-3578.5 1150,-3554.5 1037,-3554.5"/>
-<text text-anchor="start" x="1085.25" y="-3561.2" font-family="arial" font-size="14.00">11</text>
-<polygon fill="none" stroke="black" points="1150,-3554.5 1150,-3578.5 1381,-3578.5 1381,-3554.5 1150,-3554.5"/>
-<text text-anchor="start" x="1207" y="-3561.2" font-family="arial" font-size="14.00">Starter annun input</text>
-<polygon fill="none" stroke="black" points="1037,-3530.5 1037,-3554.5 1150,-3554.5 1150,-3530.5 1037,-3530.5"/>
-<text text-anchor="start" x="1085.25" y="-3537.2" font-family="arial" font-size="14.00">12</text>
-<polygon fill="none" stroke="black" points="1150,-3530.5 1150,-3554.5 1381,-3554.5 1381,-3530.5 1150,-3530.5"/>
-<text text-anchor="start" x="1198.38" y="-3537.2" font-family="arial" font-size="14.00">Aux batt voltage input</text>
-<polygon fill="none" stroke="black" points="1037,-3506.5 1037,-3530.5 1150,-3530.5 1150,-3506.5 1037,-3506.5"/>
-<text text-anchor="start" x="1085.25" y="-3513.2" font-family="arial" font-size="14.00">14</text>
-<polygon fill="none" stroke="black" points="1150,-3506.5 1150,-3530.5 1381,-3530.5 1381,-3506.5 1150,-3506.5"/>
-<text text-anchor="start" x="1220.5" y="-3513.2" font-family="arial" font-size="14.00">Flap up switch</text>
-<polygon fill="none" stroke="black" points="1037,-3482.5 1037,-3506.5 1150,-3506.5 1150,-3482.5 1037,-3482.5"/>
-<text text-anchor="start" x="1085.25" y="-3489.2" font-family="arial" font-size="14.00">15</text>
-<polygon fill="none" stroke="black" points="1150,-3482.5 1150,-3506.5 1381,-3506.5 1381,-3482.5 1150,-3482.5"/>
-<text text-anchor="start" x="1211.5" y="-3489.2" font-family="arial" font-size="14.00">Flap down switch</text>
-<polygon fill="none" stroke="black" points="1037,-3458.5 1037,-3482.5 1150,-3482.5 1150,-3458.5 1037,-3458.5"/>
-<text text-anchor="start" x="1085.25" y="-3465.2" font-family="arial" font-size="14.00">16</text>
-<polygon fill="none" stroke="black" points="1150,-3458.5 1150,-3482.5 1381,-3482.5 1381,-3458.5 1150,-3458.5"/>
-<text text-anchor="start" x="1211.12" y="-3465.2" font-family="arial" font-size="14.00">Roll trim left input</text>
-<polygon fill="none" stroke="black" points="1037,-3434.5 1037,-3458.5 1150,-3458.5 1150,-3434.5 1037,-3434.5"/>
-<text text-anchor="start" x="1085.25" y="-3441.2" font-family="arial" font-size="14.00">17</text>
-<polygon fill="none" stroke="black" points="1150,-3434.5 1150,-3458.5 1381,-3458.5 1381,-3434.5 1150,-3434.5"/>
-<text text-anchor="start" x="1207.38" y="-3441.2" font-family="arial" font-size="14.00">Roll trim right input</text>
-<polygon fill="none" stroke="black" points="1037,-3410.5 1037,-3434.5 1150,-3434.5 1150,-3410.5 1037,-3410.5"/>
-<text text-anchor="start" x="1085.25" y="-3417.2" font-family="arial" font-size="14.00">18</text>
-<polygon fill="none" stroke="black" points="1150,-3410.5 1150,-3434.5 1381,-3434.5 1381,-3410.5 1150,-3410.5"/>
-<text text-anchor="start" x="1209.62" y="-3417.2" font-family="arial" font-size="14.00">Pitch trim up input</text>
-<polygon fill="none" stroke="black" points="1037,-3386.5 1037,-3410.5 1150,-3410.5 1150,-3386.5 1037,-3386.5"/>
-<text text-anchor="start" x="1085.25" y="-3393.2" font-family="arial" font-size="14.00">19</text>
-<polygon fill="none" stroke="black" points="1150,-3386.5 1150,-3410.5 1381,-3410.5 1381,-3386.5 1150,-3386.5"/>
-<text text-anchor="start" x="1200.62" y="-3393.2" font-family="arial" font-size="14.00">Pitch trim down input</text>
-<polygon fill="none" stroke="black" points="1037,-3310.5 1037,-3386.5 1381,-3386.5 1381,-3310.5 1037,-3310.5"/>
-<image xlink:href="images\25dsub.png" width="336px" height="68px" preserveAspectRatio="xMinYMin meet" x="1041" y="-3382.5"/>
+<title>VP&#45;XJ2</title>
+<polygon fill="#ffffff" stroke="black" points="1374,-2329.5 1030,-2329.5 1030,-1772.5 1374,-1772.5 1374,-2329.5"/>
+<polygon fill="none" stroke="black" points="1030,-2305 1030,-2329.5 1374,-2329.5 1374,-2305 1030,-2305"/>
+<text text-anchor="start" x="1177.25" y="-2312.2" font-family="arial" font-size="14.00">VP&#45;XJ2</text>
+<polygon fill="none" stroke="black" points="1030,-2280.5 1030,-2305 1274,-2305 1274,-2280.5 1030,-2280.5"/>
+<text text-anchor="start" x="1060.12" y="-2287.7" font-family="arial" font-size="14.00">25&#45;pin dsub (Male Terminals)</text>
+<polygon fill="none" stroke="black" points="1274,-2280.5 1274,-2305 1374,-2305 1374,-2280.5 1274,-2280.5"/>
+<text text-anchor="start" x="1304.12" y="-2287.7" font-family="arial" font-size="14.00">18&#45;pin</text>
+<polygon fill="none" stroke="black" points="1030,-2256.5 1030,-2280.5 1143,-2280.5 1143,-2256.5 1030,-2256.5"/>
+<text text-anchor="start" x="1082.38" y="-2263.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1143,-2256.5 1143,-2280.5 1374,-2280.5 1374,-2256.5 1143,-2256.5"/>
+<text text-anchor="start" x="1215" y="-2263.2" font-family="arial" font-size="14.00">Switch input 1</text>
+<polygon fill="none" stroke="black" points="1030,-2232.5 1030,-2256.5 1143,-2256.5 1143,-2232.5 1030,-2232.5"/>
+<text text-anchor="start" x="1082.38" y="-2239.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1143,-2232.5 1143,-2256.5 1374,-2256.5 1374,-2232.5 1143,-2232.5"/>
+<text text-anchor="start" x="1215" y="-2239.2" font-family="arial" font-size="14.00">Switch input 2</text>
+<polygon fill="none" stroke="black" points="1030,-2208.5 1030,-2232.5 1143,-2232.5 1143,-2208.5 1030,-2208.5"/>
+<text text-anchor="start" x="1082.38" y="-2215.2" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="1143,-2208.5 1143,-2232.5 1374,-2232.5 1374,-2208.5 1143,-2208.5"/>
+<text text-anchor="start" x="1215" y="-2215.2" font-family="arial" font-size="14.00">Switch input 3</text>
+<polygon fill="none" stroke="black" points="1030,-2184.5 1030,-2208.5 1143,-2208.5 1143,-2184.5 1030,-2184.5"/>
+<text text-anchor="start" x="1082.38" y="-2191.2" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="1143,-2184.5 1143,-2208.5 1374,-2208.5 1374,-2184.5 1143,-2184.5"/>
+<text text-anchor="start" x="1215" y="-2191.2" font-family="arial" font-size="14.00">Switch input 4</text>
+<polygon fill="none" stroke="black" points="1030,-2160.5 1030,-2184.5 1143,-2184.5 1143,-2160.5 1030,-2160.5"/>
+<text text-anchor="start" x="1082.38" y="-2167.2" font-family="arial" font-size="14.00">5</text>
+<polygon fill="none" stroke="black" points="1143,-2160.5 1143,-2184.5 1374,-2184.5 1374,-2160.5 1143,-2160.5"/>
+<text text-anchor="start" x="1215" y="-2167.2" font-family="arial" font-size="14.00">Switch input 5</text>
+<polygon fill="none" stroke="black" points="1030,-2136.5 1030,-2160.5 1143,-2160.5 1143,-2136.5 1030,-2136.5"/>
+<text text-anchor="start" x="1082.38" y="-2143.2" font-family="arial" font-size="14.00">6</text>
+<polygon fill="none" stroke="black" points="1143,-2136.5 1143,-2160.5 1374,-2160.5 1374,-2136.5 1143,-2136.5"/>
+<text text-anchor="start" x="1215" y="-2143.2" font-family="arial" font-size="14.00">Switch input 6</text>
+<polygon fill="none" stroke="black" points="1030,-2112.5 1030,-2136.5 1143,-2136.5 1143,-2112.5 1030,-2112.5"/>
+<text text-anchor="start" x="1082.38" y="-2119.2" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="1143,-2112.5 1143,-2136.5 1374,-2136.5 1374,-2112.5 1143,-2112.5"/>
+<text text-anchor="start" x="1215" y="-2119.2" font-family="arial" font-size="14.00">Switch input 7</text>
+<polygon fill="none" stroke="black" points="1030,-2088.5 1030,-2112.5 1143,-2112.5 1143,-2088.5 1030,-2088.5"/>
+<text text-anchor="start" x="1082.38" y="-2095.2" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="1143,-2088.5 1143,-2112.5 1374,-2112.5 1374,-2088.5 1143,-2088.5"/>
+<text text-anchor="start" x="1215" y="-2095.2" font-family="arial" font-size="14.00">Switch input 8</text>
+<polygon fill="none" stroke="black" points="1030,-2064.5 1030,-2088.5 1143,-2088.5 1143,-2064.5 1030,-2064.5"/>
+<text text-anchor="start" x="1082.38" y="-2071.2" font-family="arial" font-size="14.00">9</text>
+<polygon fill="none" stroke="black" points="1143,-2064.5 1143,-2088.5 1374,-2088.5 1374,-2064.5 1143,-2064.5"/>
+<text text-anchor="start" x="1215" y="-2071.2" font-family="arial" font-size="14.00">Switch input 9</text>
+<polygon fill="none" stroke="black" points="1030,-2040.5 1030,-2064.5 1143,-2064.5 1143,-2040.5 1030,-2040.5"/>
+<text text-anchor="start" x="1078.25" y="-2047.2" font-family="arial" font-size="14.00">10</text>
+<polygon fill="none" stroke="black" points="1143,-2040.5 1143,-2064.5 1374,-2064.5 1374,-2040.5 1143,-2040.5"/>
+<text text-anchor="start" x="1210.88" y="-2047.2" font-family="arial" font-size="14.00">Switch input 10</text>
+<polygon fill="none" stroke="black" points="1030,-2016.5 1030,-2040.5 1143,-2040.5 1143,-2016.5 1030,-2016.5"/>
+<text text-anchor="start" x="1078.25" y="-2023.2" font-family="arial" font-size="14.00">11</text>
+<polygon fill="none" stroke="black" points="1143,-2016.5 1143,-2040.5 1374,-2040.5 1374,-2016.5 1143,-2016.5"/>
+<text text-anchor="start" x="1200" y="-2023.2" font-family="arial" font-size="14.00">Starter annun input</text>
+<polygon fill="none" stroke="black" points="1030,-1992.5 1030,-2016.5 1143,-2016.5 1143,-1992.5 1030,-1992.5"/>
+<text text-anchor="start" x="1078.25" y="-1999.2" font-family="arial" font-size="14.00">12</text>
+<polygon fill="none" stroke="black" points="1143,-1992.5 1143,-2016.5 1374,-2016.5 1374,-1992.5 1143,-1992.5"/>
+<text text-anchor="start" x="1191.38" y="-1999.2" font-family="arial" font-size="14.00">Aux batt voltage input</text>
+<polygon fill="none" stroke="black" points="1030,-1968.5 1030,-1992.5 1143,-1992.5 1143,-1968.5 1030,-1968.5"/>
+<text text-anchor="start" x="1078.25" y="-1975.2" font-family="arial" font-size="14.00">14</text>
+<polygon fill="none" stroke="black" points="1143,-1968.5 1143,-1992.5 1374,-1992.5 1374,-1968.5 1143,-1968.5"/>
+<text text-anchor="start" x="1213.5" y="-1975.2" font-family="arial" font-size="14.00">Flap up switch</text>
+<polygon fill="none" stroke="black" points="1030,-1944.5 1030,-1968.5 1143,-1968.5 1143,-1944.5 1030,-1944.5"/>
+<text text-anchor="start" x="1078.25" y="-1951.2" font-family="arial" font-size="14.00">15</text>
+<polygon fill="none" stroke="black" points="1143,-1944.5 1143,-1968.5 1374,-1968.5 1374,-1944.5 1143,-1944.5"/>
+<text text-anchor="start" x="1204.5" y="-1951.2" font-family="arial" font-size="14.00">Flap down switch</text>
+<polygon fill="none" stroke="black" points="1030,-1920.5 1030,-1944.5 1143,-1944.5 1143,-1920.5 1030,-1920.5"/>
+<text text-anchor="start" x="1078.25" y="-1927.2" font-family="arial" font-size="14.00">16</text>
+<polygon fill="none" stroke="black" points="1143,-1920.5 1143,-1944.5 1374,-1944.5 1374,-1920.5 1143,-1920.5"/>
+<text text-anchor="start" x="1204.12" y="-1927.2" font-family="arial" font-size="14.00">Roll trim left input</text>
+<polygon fill="none" stroke="black" points="1030,-1896.5 1030,-1920.5 1143,-1920.5 1143,-1896.5 1030,-1896.5"/>
+<text text-anchor="start" x="1078.25" y="-1903.2" font-family="arial" font-size="14.00">17</text>
+<polygon fill="none" stroke="black" points="1143,-1896.5 1143,-1920.5 1374,-1920.5 1374,-1896.5 1143,-1896.5"/>
+<text text-anchor="start" x="1200.38" y="-1903.2" font-family="arial" font-size="14.00">Roll trim right input</text>
+<polygon fill="none" stroke="black" points="1030,-1872.5 1030,-1896.5 1143,-1896.5 1143,-1872.5 1030,-1872.5"/>
+<text text-anchor="start" x="1078.25" y="-1879.2" font-family="arial" font-size="14.00">18</text>
+<polygon fill="none" stroke="black" points="1143,-1872.5 1143,-1896.5 1374,-1896.5 1374,-1872.5 1143,-1872.5"/>
+<text text-anchor="start" x="1202.62" y="-1879.2" font-family="arial" font-size="14.00">Pitch trim up input</text>
+<polygon fill="none" stroke="black" points="1030,-1848.5 1030,-1872.5 1143,-1872.5 1143,-1848.5 1030,-1848.5"/>
+<text text-anchor="start" x="1078.25" y="-1855.2" font-family="arial" font-size="14.00">19</text>
+<polygon fill="none" stroke="black" points="1143,-1848.5 1143,-1872.5 1374,-1872.5 1374,-1848.5 1143,-1848.5"/>
+<text text-anchor="start" x="1193.62" y="-1855.2" font-family="arial" font-size="14.00">Pitch trim down input</text>
+<polygon fill="none" stroke="black" points="1030,-1772.5 1030,-1848.5 1374,-1848.5 1374,-1772.5 1030,-1772.5"/>
+<image xlink:href="images\25dsub.png" width="336px" height="68px" preserveAspectRatio="xMinYMin meet" x="1034" y="-1844.5"/>
</g>
<!-- Swash1 -->
<g id="node3" class="node">
<title>Swash1</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-3149 1953,-3149 1953,-2727 2412.25,-2727 2412.25,-3149"/>
-<polygon fill="none" stroke="black" points="1953,-3124.5 1953,-3149 2412.25,-3149 2412.25,-3124.5 1953,-3124.5"/>
-<text text-anchor="start" x="2157.5" y="-3131.7" font-family="arial" font-size="14.00">Swash1</text>
-<polygon fill="none" stroke="black" points="1953,-3100 1953,-3124.5 2372.75,-3124.5 2372.75,-3100 1953,-3100"/>
-<text text-anchor="start" x="1957" y="-3107.2" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-3100 2372.75,-3124.5 2412.25,-3124.5 2412.25,-3100 2372.75,-3100"/>
-<text text-anchor="start" x="2376.75" y="-3107.2" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-3076 1953,-3100 2164.12,-3100 2164.12,-3076 1953,-3076"/>
-<text text-anchor="start" x="2052.94" y="-3082.7" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-3076 2164.12,-3100 2412.25,-3100 2412.25,-3076 2164.12,-3076"/>
-<text text-anchor="start" x="2264.19" y="-3082.7" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-3052 1953,-3076 2164.12,-3076 2164.12,-3052 1953,-3052"/>
-<text text-anchor="start" x="2054.81" y="-3058.7" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-3052 2164.12,-3076 2412.25,-3076 2412.25,-3052 2164.12,-3052"/>
-<text text-anchor="start" x="2264.19" y="-3058.7" font-family="arial" font-size="14.00">CAN_N</text>
-<polygon fill="none" stroke="black" points="1953,-2727 1953,-3052 2412.25,-3052 2412.25,-2727 1953,-2727"/>
-<image xlink:href="images\A2Logic.png" width="431px" height="317px" preserveAspectRatio="xMinYMin meet" x="1967.12" y="-3048"/>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-3399 1518,-3399 1518,-2977 1977.25,-2977 1977.25,-3399"/>
+<polygon fill="none" stroke="black" points="1518,-3374.5 1518,-3399 1977.25,-3399 1977.25,-3374.5 1518,-3374.5"/>
+<text text-anchor="start" x="1722.5" y="-3381.7" font-family="arial" font-size="14.00">Swash1</text>
+<polygon fill="none" stroke="black" points="1518,-3350 1518,-3374.5 1937.75,-3374.5 1937.75,-3350 1518,-3350"/>
+<text text-anchor="start" x="1522" y="-3357.2" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-3350 1937.75,-3374.5 1977.25,-3374.5 1977.25,-3350 1937.75,-3350"/>
+<text text-anchor="start" x="1941.75" y="-3357.2" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-3326 1518,-3350 1729.12,-3350 1729.12,-3326 1518,-3326"/>
+<text text-anchor="start" x="1617.94" y="-3332.7" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-3326 1729.12,-3350 1977.25,-3350 1977.25,-3326 1729.12,-3326"/>
+<text text-anchor="start" x="1829.19" y="-3332.7" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-3302 1518,-3326 1729.12,-3326 1729.12,-3302 1518,-3302"/>
+<text text-anchor="start" x="1619.81" y="-3308.7" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-3302 1729.12,-3326 1977.25,-3326 1977.25,-3302 1729.12,-3302"/>
+<text text-anchor="start" x="1829.19" y="-3308.7" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="none" stroke="black" points="1518,-2977 1518,-3302 1977.25,-3302 1977.25,-2977 1518,-2977"/>
+<image xlink:href="images\A2Logic.png" width="431px" height="317px" preserveAspectRatio="xMinYMin meet" x="1532.12" y="-3298"/>
</g>
<!-- Swash2 -->
<g id="node4" class="node">
<title>Swash2</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-2654.5 1953,-2654.5 1953,-2557.5 2412.25,-2557.5 2412.25,-2654.5"/>
-<polygon fill="none" stroke="black" points="1953,-2630 1953,-2654.5 2412.25,-2654.5 2412.25,-2630 1953,-2630"/>
-<text text-anchor="start" x="2157.5" y="-2637.2" font-family="arial" font-size="14.00">Swash2</text>
-<polygon fill="none" stroke="black" points="1953,-2605.5 1953,-2630 2372.75,-2630 2372.75,-2605.5 1953,-2605.5"/>
-<text text-anchor="start" x="1957" y="-2612.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-2605.5 2372.75,-2630 2412.25,-2630 2412.25,-2605.5 2372.75,-2605.5"/>
-<text text-anchor="start" x="2376.75" y="-2612.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-2581.5 1953,-2605.5 2164.12,-2605.5 2164.12,-2581.5 1953,-2581.5"/>
-<text text-anchor="start" x="2052.94" y="-2588.2" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-2581.5 2164.12,-2605.5 2412.25,-2605.5 2412.25,-2581.5 2164.12,-2581.5"/>
-<text text-anchor="start" x="2264.19" y="-2588.2" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-2557.5 1953,-2581.5 2164.12,-2581.5 2164.12,-2557.5 1953,-2557.5"/>
-<text text-anchor="start" x="2054.81" y="-2564.2" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-2557.5 2164.12,-2581.5 2412.25,-2581.5 2412.25,-2557.5 2164.12,-2557.5"/>
-<text text-anchor="start" x="2264.19" y="-2564.2" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-2532.5 1518,-2532.5 1518,-2435.5 1977.25,-2435.5 1977.25,-2532.5"/>
+<polygon fill="none" stroke="black" points="1518,-2508 1518,-2532.5 1977.25,-2532.5 1977.25,-2508 1518,-2508"/>
+<text text-anchor="start" x="1722.5" y="-2515.2" font-family="arial" font-size="14.00">Swash2</text>
+<polygon fill="none" stroke="black" points="1518,-2483.5 1518,-2508 1937.75,-2508 1937.75,-2483.5 1518,-2483.5"/>
+<text text-anchor="start" x="1522" y="-2490.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-2483.5 1937.75,-2508 1977.25,-2508 1977.25,-2483.5 1937.75,-2483.5"/>
+<text text-anchor="start" x="1941.75" y="-2490.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-2459.5 1518,-2483.5 1729.12,-2483.5 1729.12,-2459.5 1518,-2459.5"/>
+<text text-anchor="start" x="1617.94" y="-2466.2" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-2459.5 1729.12,-2483.5 1977.25,-2483.5 1977.25,-2459.5 1729.12,-2459.5"/>
+<text text-anchor="start" x="1829.19" y="-2466.2" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-2435.5 1518,-2459.5 1729.12,-2459.5 1729.12,-2435.5 1518,-2435.5"/>
+<text text-anchor="start" x="1619.81" y="-2442.2" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-2435.5 1729.12,-2459.5 1977.25,-2459.5 1977.25,-2435.5 1729.12,-2435.5"/>
+<text text-anchor="start" x="1829.19" y="-2442.2" font-family="arial" font-size="14.00">CAN_N</text>
</g>
<!-- Swash3 -->
<g id="node5" class="node">
<title>Swash3</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-3318.5 1953,-3318.5 1953,-3221.5 2412.25,-3221.5 2412.25,-3318.5"/>
-<polygon fill="none" stroke="black" points="1953,-3294 1953,-3318.5 2412.25,-3318.5 2412.25,-3294 1953,-3294"/>
-<text text-anchor="start" x="2157.5" y="-3301.2" font-family="arial" font-size="14.00">Swash3</text>
-<polygon fill="none" stroke="black" points="1953,-3269.5 1953,-3294 2372.75,-3294 2372.75,-3269.5 1953,-3269.5"/>
-<text text-anchor="start" x="1957" y="-3276.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-3269.5 2372.75,-3294 2412.25,-3294 2412.25,-3269.5 2372.75,-3269.5"/>
-<text text-anchor="start" x="2376.75" y="-3276.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-3245.5 1953,-3269.5 2164.12,-3269.5 2164.12,-3245.5 1953,-3245.5"/>
-<text text-anchor="start" x="2052.94" y="-3252.2" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-3245.5 2164.12,-3269.5 2412.25,-3269.5 2412.25,-3245.5 2164.12,-3245.5"/>
-<text text-anchor="start" x="2264.19" y="-3252.2" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-3221.5 1953,-3245.5 2164.12,-3245.5 2164.12,-3221.5 1953,-3221.5"/>
-<text text-anchor="start" x="2054.81" y="-3228.2" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-3221.5 2164.12,-3245.5 2412.25,-3245.5 2412.25,-3221.5 2164.12,-3221.5"/>
-<text text-anchor="start" x="2264.19" y="-3228.2" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-2772.5 1518,-2772.5 1518,-2675.5 1977.25,-2675.5 1977.25,-2772.5"/>
+<polygon fill="none" stroke="black" points="1518,-2748 1518,-2772.5 1977.25,-2772.5 1977.25,-2748 1518,-2748"/>
+<text text-anchor="start" x="1722.5" y="-2755.2" font-family="arial" font-size="14.00">Swash3</text>
+<polygon fill="none" stroke="black" points="1518,-2723.5 1518,-2748 1937.75,-2748 1937.75,-2723.5 1518,-2723.5"/>
+<text text-anchor="start" x="1522" y="-2730.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-2723.5 1937.75,-2748 1977.25,-2748 1977.25,-2723.5 1937.75,-2723.5"/>
+<text text-anchor="start" x="1941.75" y="-2730.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-2699.5 1518,-2723.5 1729.12,-2723.5 1729.12,-2699.5 1518,-2699.5"/>
+<text text-anchor="start" x="1617.94" y="-2706.2" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-2699.5 1729.12,-2723.5 1977.25,-2723.5 1977.25,-2699.5 1729.12,-2699.5"/>
+<text text-anchor="start" x="1829.19" y="-2706.2" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-2675.5 1518,-2699.5 1729.12,-2699.5 1729.12,-2675.5 1518,-2675.5"/>
+<text text-anchor="start" x="1619.81" y="-2682.2" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-2675.5 1729.12,-2699.5 1977.25,-2699.5 1977.25,-2675.5 1729.12,-2675.5"/>
+<text text-anchor="start" x="1829.19" y="-2682.2" font-family="arial" font-size="14.00">CAN_N</text>
</g>
<!-- Yaw -->
<g id="node6" class="node">
<title>Yaw</title>
-<polygon fill="#ffffff" stroke="black" points="2412.25,-3488.5 1953,-3488.5 1953,-3391.5 2412.25,-3391.5 2412.25,-3488.5"/>
-<polygon fill="none" stroke="black" points="1953,-3464 1953,-3488.5 2412.25,-3488.5 2412.25,-3464 1953,-3464"/>
-<text text-anchor="start" x="2169.5" y="-3471.2" font-family="arial" font-size="14.00">Yaw</text>
-<polygon fill="none" stroke="black" points="1953,-3439.5 1953,-3464 2372.75,-3464 2372.75,-3439.5 1953,-3439.5"/>
-<text text-anchor="start" x="1957" y="-3446.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
-<polygon fill="none" stroke="black" points="2372.75,-3439.5 2372.75,-3464 2412.25,-3464 2412.25,-3439.5 2372.75,-3439.5"/>
-<text text-anchor="start" x="2376.75" y="-3446.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1953,-3415.5 1953,-3439.5 2164.12,-3439.5 2164.12,-3415.5 1953,-3415.5"/>
-<text text-anchor="start" x="2052.94" y="-3422.2" font-family="arial" font-size="14.00">G</text>
-<polygon fill="none" stroke="black" points="2164.12,-3415.5 2164.12,-3439.5 2412.25,-3439.5 2412.25,-3415.5 2164.12,-3415.5"/>
-<text text-anchor="start" x="2264.19" y="-3422.2" font-family="arial" font-size="14.00">CAN_P</text>
-<polygon fill="none" stroke="black" points="1953,-3391.5 1953,-3415.5 2164.12,-3415.5 2164.12,-3391.5 1953,-3391.5"/>
-<text text-anchor="start" x="2054.81" y="-3398.2" font-family="arial" font-size="14.00">J</text>
-<polygon fill="none" stroke="black" points="2164.12,-3391.5 2164.12,-3415.5 2412.25,-3415.5 2412.25,-3391.5 2164.12,-3391.5"/>
-<text text-anchor="start" x="2264.19" y="-3398.2" font-family="arial" font-size="14.00">CAN_N</text>
+<polygon fill="#ffffff" stroke="black" points="1977.25,-2952.5 1518,-2952.5 1518,-2855.5 1977.25,-2855.5 1977.25,-2952.5"/>
+<polygon fill="none" stroke="black" points="1518,-2928 1518,-2952.5 1977.25,-2952.5 1977.25,-2928 1518,-2928"/>
+<text text-anchor="start" x="1734.5" y="-2935.2" font-family="arial" font-size="14.00">Yaw</text>
+<polygon fill="none" stroke="black" points="1518,-2903.5 1518,-2928 1937.75,-2928 1937.75,-2903.5 1518,-2903.5"/>
+<text text-anchor="start" x="1522" y="-2910.7" font-family="arial" font-size="14.00">Amphenol C091 M16 flange&#45;mount male metal receptacle, 12&#45;pin</text>
+<polygon fill="none" stroke="black" points="1937.75,-2903.5 1937.75,-2928 1977.25,-2928 1977.25,-2903.5 1937.75,-2903.5"/>
+<text text-anchor="start" x="1941.75" y="-2910.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1518,-2879.5 1518,-2903.5 1729.12,-2903.5 1729.12,-2879.5 1518,-2879.5"/>
+<text text-anchor="start" x="1617.94" y="-2886.2" font-family="arial" font-size="14.00">G</text>
+<polygon fill="none" stroke="black" points="1729.12,-2879.5 1729.12,-2903.5 1977.25,-2903.5 1977.25,-2879.5 1729.12,-2879.5"/>
+<text text-anchor="start" x="1829.19" y="-2886.2" font-family="arial" font-size="14.00">CAN_P</text>
+<polygon fill="none" stroke="black" points="1518,-2855.5 1518,-2879.5 1729.12,-2879.5 1729.12,-2855.5 1518,-2855.5"/>
+<text text-anchor="start" x="1619.81" y="-2862.2" font-family="arial" font-size="14.00">J</text>
+<polygon fill="none" stroke="black" points="1729.12,-2855.5 1729.12,-2879.5 1977.25,-2879.5 1977.25,-2855.5 1729.12,-2855.5"/>
+<text text-anchor="start" x="1829.19" y="-2862.2" font-family="arial" font-size="14.00">CAN_N</text>
</g>
<!-- Radio -->
<g id="node7" class="node">
<title>Radio</title>
-<polygon fill="#ffffff" stroke="black" points="1248.88,-3286.5 1169.12,-3286.5 1169.12,-3189.5 1248.88,-3189.5 1248.88,-3286.5"/>
-<polygon fill="none" stroke="black" points="1169.12,-3262 1169.12,-3286.5 1248.88,-3286.5 1248.88,-3262 1169.12,-3262"/>
-<text text-anchor="start" x="1190.25" y="-3269.2" font-family="arial" font-size="14.00">Radio</text>
-<polygon fill="none" stroke="black" points="1169.12,-3237.5 1169.12,-3262 1209.38,-3262 1209.38,-3237.5 1169.12,-3237.5"/>
-<text text-anchor="start" x="1173.12" y="-3244.7" font-family="arial" font-size="14.00">temp</text>
-<polygon fill="none" stroke="black" points="1209.38,-3237.5 1209.38,-3262 1248.88,-3262 1248.88,-3237.5 1209.38,-3237.5"/>
-<text text-anchor="start" x="1213.38" y="-3244.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="1169.12,-3213.5 1169.12,-3237.5 1204.5,-3237.5 1204.5,-3213.5 1169.12,-3213.5"/>
-<text text-anchor="start" x="1182.69" y="-3220.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1204.5,-3213.5 1204.5,-3237.5 1248.88,-3237.5 1248.88,-3213.5 1204.5,-3213.5"/>
-<text text-anchor="start" x="1218.81" y="-3220.2" font-family="arial" font-size="14.00">Tx</text>
-<polygon fill="none" stroke="black" points="1169.12,-3189.5 1169.12,-3213.5 1204.5,-3213.5 1204.5,-3189.5 1169.12,-3189.5"/>
-<text text-anchor="start" x="1182.69" y="-3196.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="1204.5,-3189.5 1204.5,-3213.5 1248.88,-3213.5 1248.88,-3189.5 1204.5,-3189.5"/>
-<text text-anchor="start" x="1218.06" y="-3196.2" font-family="arial" font-size="14.00">Rx</text>
+<polygon fill="#ffffff" stroke="black" points="1241.88,-1748.5 1162.12,-1748.5 1162.12,-1651.5 1241.88,-1651.5 1241.88,-1748.5"/>
+<polygon fill="none" stroke="black" points="1162.12,-1724 1162.12,-1748.5 1241.88,-1748.5 1241.88,-1724 1162.12,-1724"/>
+<text text-anchor="start" x="1183.25" y="-1731.2" font-family="arial" font-size="14.00">Radio</text>
+<polygon fill="none" stroke="black" points="1162.12,-1699.5 1162.12,-1724 1202.38,-1724 1202.38,-1699.5 1162.12,-1699.5"/>
+<text text-anchor="start" x="1166.12" y="-1706.7" font-family="arial" font-size="14.00">temp</text>
+<polygon fill="none" stroke="black" points="1202.38,-1699.5 1202.38,-1724 1241.88,-1724 1241.88,-1699.5 1202.38,-1699.5"/>
+<text text-anchor="start" x="1206.38" y="-1706.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="1162.12,-1675.5 1162.12,-1699.5 1197.5,-1699.5 1197.5,-1675.5 1162.12,-1675.5"/>
+<text text-anchor="start" x="1175.69" y="-1682.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="1197.5,-1675.5 1197.5,-1699.5 1241.88,-1699.5 1241.88,-1675.5 1197.5,-1675.5"/>
+<text text-anchor="start" x="1211.81" y="-1682.2" font-family="arial" font-size="14.00">Tx</text>
+<polygon fill="none" stroke="black" points="1162.12,-1651.5 1162.12,-1675.5 1197.5,-1675.5 1197.5,-1651.5 1162.12,-1651.5"/>
+<text text-anchor="start" x="1175.69" y="-1658.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="1197.5,-1651.5 1197.5,-1675.5 1241.88,-1675.5 1241.88,-1651.5 1197.5,-1651.5"/>
+<text text-anchor="start" x="1211.06" y="-1658.2" font-family="arial" font-size="14.00">Rx</text>
</g>
<!-- CEX -->
<g id="node8" class="node">
<title>CEX</title>
-<polygon fill="#ffffff" stroke="black" points="2387.12,-1732.5 1978.12,-1732.5 1978.12,-1163.5 2387.12,-1163.5 2387.12,-1732.5"/>
-<polygon fill="none" stroke="black" points="1978.12,-1708 1978.12,-1732.5 2387.12,-1732.5 2387.12,-1708 1978.12,-1708"/>
-<text text-anchor="start" x="2167.62" y="-1715.2" font-family="arial" font-size="14.00">CEX</text>
-<polygon fill="none" stroke="black" points="1978.12,-1683.5 1978.12,-1708 2226.12,-1708 2226.12,-1683.5 1978.12,-1683.5"/>
-<text text-anchor="start" x="2042.88" y="-1690.7" font-family="arial" font-size="14.00">FMW.LM.368.XLC</text>
-<polygon fill="none" stroke="black" points="2226.12,-1683.5 2226.12,-1708 2387.12,-1708 2387.12,-1683.5 2226.12,-1683.5"/>
-<text text-anchor="start" x="2290.88" y="-1690.7" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="1978.12,-1659.5 1978.12,-1683.5 2152.12,-1683.5 2152.12,-1659.5 1978.12,-1659.5"/>
-<text text-anchor="start" x="2061" y="-1666.2" font-family="arial" font-size="14.00">7</text>
-<polygon fill="none" stroke="black" points="2152.12,-1659.5 2152.12,-1683.5 2387.12,-1683.5 2387.12,-1659.5 2152.12,-1659.5"/>
-<text text-anchor="start" x="2234.75" y="-1666.2" font-family="arial" font-size="14.00">CAN_GND</text>
-<polygon fill="none" stroke="black" points="1978.12,-1635.5 1978.12,-1659.5 2152.12,-1659.5 2152.12,-1635.5 1978.12,-1635.5"/>
-<text text-anchor="start" x="2061" y="-1642.2" font-family="arial" font-size="14.00">8</text>
-<polygon fill="none" stroke="black" points="2152.12,-1635.5 2152.12,-1659.5 2387.12,-1659.5 2387.12,-1635.5 2152.12,-1635.5"/>
-<text text-anchor="start" x="2240.75" y="-1642.2" font-family="arial" font-size="14.00">CANB_P</text>
-<polygon fill="none" stroke="black" points="1978.12,-1611.5 1978.12,-1635.5 2152.12,-1635.5 2152.12,-1611.5 1978.12,-1611.5"/>
-<text text-anchor="start" x="2061" y="-1618.2" font-family="arial" font-size="14.00">9</text>
-<polygon fill="none" stroke="black" points="2152.12,-1611.5 2152.12,-1635.5 2387.12,-1635.5 2387.12,-1611.5 2152.12,-1611.5"/>
-<text text-anchor="start" x="2240.75" y="-1618.2" font-family="arial" font-size="14.00">CANB_N</text>
-<polygon fill="none" stroke="black" points="1978.12,-1212.5 1978.12,-1611.5 2387.12,-1611.5 2387.12,-1212.5 1978.12,-1212.5"/>
-<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="1982.12" y="-1607.5"/>
-<polygon fill="none" stroke="black" points="1978.12,-1188 1978.12,-1212.5 2387.12,-1212.5 2387.12,-1188 1978.12,-1188"/>
-<text text-anchor="start" x="2110.25" y="-1195.2" font-family="arial" font-size="14.00">Additional components</text>
-<polygon fill="none" stroke="black" points="1978.12,-1163.5 1978.12,-1188 2387.12,-1188 2387.12,-1163.5 1978.12,-1163.5"/>
-<text text-anchor="start" x="1982.12" y="-1170.7" font-family="arial" font-size="14.00">3 x #12 (Crimp)</text>
+<polygon fill="#ffffff" stroke="black" points="2530.25,-1008.5 2121.25,-1008.5 2121.25,-439.5 2530.25,-439.5 2530.25,-1008.5"/>
+<polygon fill="none" stroke="black" points="2121.25,-984 2121.25,-1008.5 2530.25,-1008.5 2530.25,-984 2121.25,-984"/>
+<text text-anchor="start" x="2310.75" y="-991.2" font-family="arial" font-size="14.00">CEX</text>
+<polygon fill="none" stroke="black" points="2121.25,-959.5 2121.25,-984 2369.25,-984 2369.25,-959.5 2121.25,-959.5"/>
+<text text-anchor="start" x="2186" y="-966.7" font-family="arial" font-size="14.00">FMW.LM.368.XLC</text>
+<polygon fill="none" stroke="black" points="2369.25,-959.5 2369.25,-984 2530.25,-984 2530.25,-959.5 2369.25,-959.5"/>
+<text text-anchor="start" x="2434" y="-966.7" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="2121.25,-935.5 2121.25,-959.5 2295.25,-959.5 2295.25,-935.5 2121.25,-935.5"/>
+<text text-anchor="start" x="2204.12" y="-942.2" font-family="arial" font-size="14.00">7</text>
+<polygon fill="none" stroke="black" points="2295.25,-935.5 2295.25,-959.5 2530.25,-959.5 2530.25,-935.5 2295.25,-935.5"/>
+<text text-anchor="start" x="2377.88" y="-942.2" font-family="arial" font-size="14.00">CAN_GND</text>
+<polygon fill="none" stroke="black" points="2121.25,-911.5 2121.25,-935.5 2295.25,-935.5 2295.25,-911.5 2121.25,-911.5"/>
+<text text-anchor="start" x="2204.12" y="-918.2" font-family="arial" font-size="14.00">8</text>
+<polygon fill="none" stroke="black" points="2295.25,-911.5 2295.25,-935.5 2530.25,-935.5 2530.25,-911.5 2295.25,-911.5"/>
+<text text-anchor="start" x="2383.88" y="-918.2" font-family="arial" font-size="14.00">CANB_P</text>
+<polygon fill="none" stroke="black" points="2121.25,-887.5 2121.25,-911.5 2295.25,-911.5 2295.25,-887.5 2121.25,-887.5"/>
+<text text-anchor="start" x="2204.12" y="-894.2" font-family="arial" font-size="14.00">9</text>
+<polygon fill="none" stroke="black" points="2295.25,-887.5 2295.25,-911.5 2530.25,-911.5 2530.25,-887.5 2295.25,-887.5"/>
+<text text-anchor="start" x="2383.88" y="-894.2" font-family="arial" font-size="14.00">CANB_N</text>
+<polygon fill="none" stroke="black" points="2121.25,-488.5 2121.25,-887.5 2530.25,-887.5 2530.25,-488.5 2121.25,-488.5"/>
+<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="2125.25" y="-883.5"/>
+<polygon fill="none" stroke="black" points="2121.25,-464 2121.25,-488.5 2530.25,-488.5 2530.25,-464 2121.25,-464"/>
+<text text-anchor="start" x="2253.38" y="-471.2" font-family="arial" font-size="14.00">Additional components</text>
+<polygon fill="none" stroke="black" points="2121.25,-439.5 2121.25,-464 2530.25,-464 2530.25,-439.5 2121.25,-439.5"/>
+<text text-anchor="start" x="2125.25" y="-446.7" font-family="arial" font-size="14.00">3 x #11 (Crimp)</text>
</g>
<!-- ECU CAN Bus -->
<g id="node9" class="node">
<title>ECU CAN Bus</title>
-<polygon fill="#ffffff" stroke="black" points="1325.5,-2233 1092.5,-2233 1092.5,-1887 1325.5,-1887 1325.5,-2233"/>
-<polygon fill="none" stroke="black" points="1092.5,-2208.5 1092.5,-2233 1325.5,-2233 1325.5,-2208.5 1092.5,-2208.5"/>
-<text text-anchor="start" x="1162.88" y="-2215.7" font-family="arial" font-size="14.00">ECU CAN Bus</text>
-<polygon fill="none" stroke="black" points="1092.5,-2184 1092.5,-2208.5 1222.5,-2208.5 1222.5,-2184 1092.5,-2184"/>
-<text text-anchor="start" x="1128.25" y="-2191.2" font-family="arial" font-size="14.00">DT04&#45;3P</text>
-<polygon fill="none" stroke="black" points="1222.5,-2184 1222.5,-2208.5 1325.5,-2208.5 1325.5,-2184 1222.5,-2184"/>
-<text text-anchor="start" x="1258.25" y="-2191.2" font-family="arial" font-size="14.00">3&#45;pin</text>
-<polygon fill="none" stroke="black" points="1092.5,-2160 1092.5,-2184 1179.5,-2184 1179.5,-2160 1092.5,-2160"/>
-<text text-anchor="start" x="1131.12" y="-2166.7" font-family="arial" font-size="14.00">A</text>
-<polygon fill="none" stroke="black" points="1179.5,-2160 1179.5,-2184 1325.5,-2184 1325.5,-2160 1179.5,-2160"/>
-<text text-anchor="start" x="1223.62" y="-2166.7" font-family="arial" font-size="14.00">CANB_P</text>
-<polygon fill="none" stroke="black" points="1092.5,-2136 1092.5,-2160 1179.5,-2160 1179.5,-2136 1092.5,-2136"/>
-<text text-anchor="start" x="1131.12" y="-2142.7" font-family="arial" font-size="14.00">B</text>
-<polygon fill="none" stroke="black" points="1179.5,-2136 1179.5,-2160 1325.5,-2160 1325.5,-2136 1179.5,-2136"/>
-<text text-anchor="start" x="1223.62" y="-2142.7" font-family="arial" font-size="14.00">CANB_N</text>
-<polygon fill="none" stroke="black" points="1092.5,-2112 1092.5,-2136 1179.5,-2136 1179.5,-2112 1092.5,-2112"/>
-<text text-anchor="start" x="1130.75" y="-2118.7" font-family="arial" font-size="14.00">C</text>
-<polygon fill="none" stroke="black" points="1179.5,-2112 1179.5,-2136 1325.5,-2136 1325.5,-2112 1179.5,-2112"/>
-<text text-anchor="start" x="1217.62" y="-2118.7" font-family="arial" font-size="14.00">CAN_GND</text>
-<polygon fill="none" stroke="black" points="1092.5,-1887 1092.5,-2112 1325.5,-2112 1325.5,-1887 1092.5,-1887"/>
-<image xlink:href="images\DT04-3P.png" width="219.971px" height="213px" preserveAspectRatio="xMinYMin meet" x="1099.01" y="-2106"/>
+<polygon fill="#ffffff" stroke="black" points="1318.5,-1432 1085.5,-1432 1085.5,-1086 1318.5,-1086 1318.5,-1432"/>
+<polygon fill="none" stroke="black" points="1085.5,-1407.5 1085.5,-1432 1318.5,-1432 1318.5,-1407.5 1085.5,-1407.5"/>
+<text text-anchor="start" x="1155.88" y="-1414.7" font-family="arial" font-size="14.00">ECU CAN Bus</text>
+<polygon fill="none" stroke="black" points="1085.5,-1383 1085.5,-1407.5 1215.5,-1407.5 1215.5,-1383 1085.5,-1383"/>
+<text text-anchor="start" x="1121.25" y="-1390.2" font-family="arial" font-size="14.00">DT04&#45;3P</text>
+<polygon fill="none" stroke="black" points="1215.5,-1383 1215.5,-1407.5 1318.5,-1407.5 1318.5,-1383 1215.5,-1383"/>
+<text text-anchor="start" x="1251.25" y="-1390.2" font-family="arial" font-size="14.00">3&#45;pin</text>
+<polygon fill="none" stroke="black" points="1085.5,-1359 1085.5,-1383 1172.5,-1383 1172.5,-1359 1085.5,-1359"/>
+<text text-anchor="start" x="1124.12" y="-1365.7" font-family="arial" font-size="14.00">A</text>
+<polygon fill="none" stroke="black" points="1172.5,-1359 1172.5,-1383 1318.5,-1383 1318.5,-1359 1172.5,-1359"/>
+<text text-anchor="start" x="1216.62" y="-1365.7" font-family="arial" font-size="14.00">CANB_P</text>
+<polygon fill="none" stroke="black" points="1085.5,-1335 1085.5,-1359 1172.5,-1359 1172.5,-1335 1085.5,-1335"/>
+<text text-anchor="start" x="1124.12" y="-1341.7" font-family="arial" font-size="14.00">B</text>
+<polygon fill="none" stroke="black" points="1172.5,-1335 1172.5,-1359 1318.5,-1359 1318.5,-1335 1172.5,-1335"/>
+<text text-anchor="start" x="1216.62" y="-1341.7" font-family="arial" font-size="14.00">CANB_N</text>
+<polygon fill="none" stroke="black" points="1085.5,-1311 1085.5,-1335 1172.5,-1335 1172.5,-1311 1085.5,-1311"/>
+<text text-anchor="start" x="1123.75" y="-1317.7" font-family="arial" font-size="14.00">C</text>
+<polygon fill="none" stroke="black" points="1172.5,-1311 1172.5,-1335 1318.5,-1335 1318.5,-1311 1172.5,-1311"/>
+<text text-anchor="start" x="1210.62" y="-1317.7" font-family="arial" font-size="14.00">CAN_GND</text>
+<polygon fill="none" stroke="black" points="1085.5,-1086 1085.5,-1311 1318.5,-1311 1318.5,-1086 1085.5,-1086"/>
+<image xlink:href="images\DT04-3P.png" width="219.971px" height="213px" preserveAspectRatio="xMinYMin meet" x="1092.01" y="-1305"/>
</g>
<!-- Radar -->
<g id="node10" class="node">
<title>Radar</title>
-<polygon fill="#ffffff" stroke="black" points="2341.12,-2314.25 2024.12,-2314.25 2024.12,-1805.75 2341.12,-1805.75 2341.12,-2314.25"/>
-<polygon fill="none" stroke="black" points="2024.12,-2289.75 2024.12,-2314.25 2341.12,-2314.25 2341.12,-2289.75 2024.12,-2289.75"/>
-<text text-anchor="start" x="2163.5" y="-2296.95" font-family="arial" font-size="14.00">Radar</text>
-<polygon fill="none" stroke="black" points="2024.12,-2265.25 2024.12,-2289.75 2201.75,-2289.75 2201.75,-2265.25 2024.12,-2265.25"/>
-<text text-anchor="start" x="2078.06" y="-2272.45" font-family="arial" font-size="14.00">DTM04&#45;4P</text>
-<polygon fill="none" stroke="black" points="2201.75,-2265.25 2201.75,-2289.75 2341.12,-2289.75 2341.12,-2265.25 2201.75,-2265.25"/>
-<text text-anchor="start" x="2255.69" y="-2272.45" font-family="arial" font-size="14.00">4&#45;pin</text>
-<polygon fill="none" stroke="black" points="2024.12,-2241.25 2024.12,-2265.25 2162.62,-2265.25 2162.62,-2241.25 2024.12,-2241.25"/>
-<text text-anchor="start" x="2089.25" y="-2247.95" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2162.62,-2241.25 2162.62,-2265.25 2341.12,-2265.25 2341.12,-2241.25 2162.62,-2241.25"/>
-<text text-anchor="start" x="2228.62" y="-2247.95" font-family="arial" font-size="14.00">CAN_L</text>
-<polygon fill="none" stroke="black" points="2024.12,-2217.25 2024.12,-2241.25 2162.62,-2241.25 2162.62,-2217.25 2024.12,-2217.25"/>
-<text text-anchor="start" x="2089.25" y="-2223.95" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2162.62,-2217.25 2162.62,-2241.25 2341.12,-2241.25 2341.12,-2217.25 2162.62,-2217.25"/>
-<text text-anchor="start" x="2227.88" y="-2223.95" font-family="arial" font-size="14.00">CAN_H</text>
-<polygon fill="none" stroke="black" points="2024.12,-2193.25 2024.12,-2217.25 2162.62,-2217.25 2162.62,-2193.25 2024.12,-2193.25"/>
-<text text-anchor="start" x="2089.25" y="-2199.95" font-family="arial" font-size="14.00">3</text>
-<polygon fill="none" stroke="black" points="2024.12,-2169.25 2024.12,-2193.25 2162.62,-2193.25 2162.62,-2169.25 2024.12,-2169.25"/>
-<text text-anchor="start" x="2089.25" y="-2175.95" font-family="arial" font-size="14.00">4</text>
-<polygon fill="none" stroke="black" points="2024.12,-1830.25 2024.12,-2169.25 2341.12,-2169.25 2341.12,-1830.25 2024.12,-1830.25"/>
-<image xlink:href="images\DTM04-4P.png" width="309px" height="331px" preserveAspectRatio="xMinYMin meet" x="2028.12" y="-2165.25"/>
-<polygon fill="none" stroke="black" points="2024.12,-1805.75 2024.12,-1830.25 2341.12,-1830.25 2341.12,-1805.75 2024.12,-1805.75"/>
-<text text-anchor="start" x="2112.88" y="-1812.95" font-family="arial" font-size="14.00">Mates with DTM06&#45;4S</text>
+<polygon fill="#ffffff" stroke="black" points="2484.25,-1743.25 2167.25,-1743.25 2167.25,-1234.75 2484.25,-1234.75 2484.25,-1743.25"/>
+<polygon fill="none" stroke="black" points="2167.25,-1718.75 2167.25,-1743.25 2484.25,-1743.25 2484.25,-1718.75 2167.25,-1718.75"/>
+<text text-anchor="start" x="2306.62" y="-1725.95" font-family="arial" font-size="14.00">Radar</text>
+<polygon fill="none" stroke="black" points="2167.25,-1694.25 2167.25,-1718.75 2344.88,-1718.75 2344.88,-1694.25 2167.25,-1694.25"/>
+<text text-anchor="start" x="2221.19" y="-1701.45" font-family="arial" font-size="14.00">DTM04&#45;4P</text>
+<polygon fill="none" stroke="black" points="2344.88,-1694.25 2344.88,-1718.75 2484.25,-1718.75 2484.25,-1694.25 2344.88,-1694.25"/>
+<text text-anchor="start" x="2398.81" y="-1701.45" font-family="arial" font-size="14.00">4&#45;pin</text>
+<polygon fill="none" stroke="black" points="2167.25,-1670.25 2167.25,-1694.25 2305.75,-1694.25 2305.75,-1670.25 2167.25,-1670.25"/>
+<text text-anchor="start" x="2232.38" y="-1676.95" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2305.75,-1670.25 2305.75,-1694.25 2484.25,-1694.25 2484.25,-1670.25 2305.75,-1670.25"/>
+<text text-anchor="start" x="2371.75" y="-1676.95" font-family="arial" font-size="14.00">CAN_L</text>
+<polygon fill="none" stroke="black" points="2167.25,-1646.25 2167.25,-1670.25 2305.75,-1670.25 2305.75,-1646.25 2167.25,-1646.25"/>
+<text text-anchor="start" x="2232.38" y="-1652.95" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2305.75,-1646.25 2305.75,-1670.25 2484.25,-1670.25 2484.25,-1646.25 2305.75,-1646.25"/>
+<text text-anchor="start" x="2371" y="-1652.95" font-family="arial" font-size="14.00">CAN_H</text>
+<polygon fill="none" stroke="black" points="2167.25,-1622.25 2167.25,-1646.25 2305.75,-1646.25 2305.75,-1622.25 2167.25,-1622.25"/>
+<text text-anchor="start" x="2232.38" y="-1628.95" font-family="arial" font-size="14.00">3</text>
+<polygon fill="none" stroke="black" points="2167.25,-1598.25 2167.25,-1622.25 2305.75,-1622.25 2305.75,-1598.25 2167.25,-1598.25"/>
+<text text-anchor="start" x="2232.38" y="-1604.95" font-family="arial" font-size="14.00">4</text>
+<polygon fill="none" stroke="black" points="2167.25,-1259.25 2167.25,-1598.25 2484.25,-1598.25 2484.25,-1259.25 2167.25,-1259.25"/>
+<image xlink:href="images\DTM04-4P.png" width="309px" height="331px" preserveAspectRatio="xMinYMin meet" x="2171.25" y="-1594.25"/>
+<polygon fill="none" stroke="black" points="2167.25,-1234.75 2167.25,-1259.25 2484.25,-1259.25 2484.25,-1234.75 2167.25,-1234.75"/>
+<text text-anchor="start" x="2256" y="-1241.95" font-family="arial" font-size="14.00">Mates with DTM06&#45;4S</text>
</g>
<!-- Resistor -->
<g id="node11" class="node">
<title>Resistor</title>
-<polygon fill="#ffffff" stroke="black" points="2225.12,-2484.5 2140.12,-2484.5 2140.12,-2387.5 2225.12,-2387.5 2225.12,-2484.5"/>
-<polygon fill="none" stroke="black" points="2140.12,-2460 2140.12,-2484.5 2225.12,-2484.5 2225.12,-2460 2140.12,-2460"/>
-<text text-anchor="start" x="2156" y="-2467.2" font-family="arial" font-size="14.00">Resistor</text>
-<polygon fill="none" stroke="black" points="2140.12,-2435.5 2140.12,-2460 2185.62,-2460 2185.62,-2435.5 2140.12,-2435.5"/>
-<text text-anchor="start" x="2144.12" y="-2442.7" font-family="arial" font-size="14.00">Temp</text>
-<polygon fill="none" stroke="black" points="2185.62,-2435.5 2185.62,-2460 2225.12,-2460 2225.12,-2435.5 2185.62,-2435.5"/>
-<text text-anchor="start" x="2189.62" y="-2442.7" font-family="arial" font-size="14.00">2&#45;pin</text>
-<polygon fill="none" stroke="black" points="2140.12,-2411.5 2140.12,-2435.5 2162.62,-2435.5 2162.62,-2411.5 2140.12,-2411.5"/>
-<text text-anchor="start" x="2147.25" y="-2418.2" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="2162.62,-2411.5 2162.62,-2435.5 2225.12,-2435.5 2225.12,-2411.5 2162.62,-2411.5"/>
-<text text-anchor="start" x="2170.62" y="-2418.2" font-family="arial" font-size="14.00">CAN_L</text>
-<polygon fill="none" stroke="black" points="2140.12,-2387.5 2140.12,-2411.5 2162.62,-2411.5 2162.62,-2387.5 2140.12,-2387.5"/>
-<text text-anchor="start" x="2147.25" y="-2394.2" font-family="arial" font-size="14.00">2</text>
-<polygon fill="none" stroke="black" points="2162.62,-2387.5 2162.62,-2411.5 2225.12,-2411.5 2225.12,-2387.5 2162.62,-2387.5"/>
-<text text-anchor="start" x="2169.88" y="-2394.2" font-family="arial" font-size="14.00">CAN_H</text>
+<polygon fill="#ffffff" stroke="black" points="2368.25,-1210.5 2283.25,-1210.5 2283.25,-1113.5 2368.25,-1113.5 2368.25,-1210.5"/>
+<polygon fill="none" stroke="black" points="2283.25,-1186 2283.25,-1210.5 2368.25,-1210.5 2368.25,-1186 2283.25,-1186"/>
+<text text-anchor="start" x="2299.12" y="-1193.2" font-family="arial" font-size="14.00">Resistor</text>
+<polygon fill="none" stroke="black" points="2283.25,-1161.5 2283.25,-1186 2328.75,-1186 2328.75,-1161.5 2283.25,-1161.5"/>
+<text text-anchor="start" x="2287.25" y="-1168.7" font-family="arial" font-size="14.00">Temp</text>
+<polygon fill="none" stroke="black" points="2328.75,-1161.5 2328.75,-1186 2368.25,-1186 2368.25,-1161.5 2328.75,-1161.5"/>
+<text text-anchor="start" x="2332.75" y="-1168.7" font-family="arial" font-size="14.00">2&#45;pin</text>
+<polygon fill="none" stroke="black" points="2283.25,-1137.5 2283.25,-1161.5 2305.75,-1161.5 2305.75,-1137.5 2283.25,-1137.5"/>
+<text text-anchor="start" x="2290.38" y="-1144.2" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="2305.75,-1137.5 2305.75,-1161.5 2368.25,-1161.5 2368.25,-1137.5 2305.75,-1137.5"/>
+<text text-anchor="start" x="2313.75" y="-1144.2" font-family="arial" font-size="14.00">CAN_L</text>
+<polygon fill="none" stroke="black" points="2283.25,-1113.5 2283.25,-1137.5 2305.75,-1137.5 2305.75,-1113.5 2283.25,-1113.5"/>
+<text text-anchor="start" x="2290.38" y="-1120.2" font-family="arial" font-size="14.00">2</text>
+<polygon fill="none" stroke="black" points="2305.75,-1113.5 2305.75,-1137.5 2368.25,-1137.5 2368.25,-1113.5 2305.75,-1113.5"/>
+<text text-anchor="start" x="2313" y="-1120.2" font-family="arial" font-size="14.00">CAN_H</text>
</g>
<!-- shield1 -->
<g id="node12" class="node">
<title>shield1</title>
-<polygon fill="#ffffff" stroke="black" points="1249.12,-1862.75 1168.88,-1862.75 1168.88,-1789.25 1249.12,-1789.25 1249.12,-1862.75"/>
-<polygon fill="none" stroke="black" points="1168.88,-1838.25 1168.88,-1862.75 1249.12,-1862.75 1249.12,-1838.25 1168.88,-1838.25"/>
-<text text-anchor="start" x="1186.12" y="-1845.45" font-family="arial" font-size="14.00">shield1</text>
-<polygon fill="none" stroke="black" points="1168.88,-1813.75 1168.88,-1838.25 1249.12,-1838.25 1249.12,-1813.75 1168.88,-1813.75"/>
-<text text-anchor="start" x="1193.25" y="-1820.95" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="1168.88,-1789.25 1168.88,-1813.75 1185.12,-1813.75 1185.12,-1789.25 1168.88,-1789.25"/>
-<text text-anchor="start" x="1172.88" y="-1796.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1185.12,-1789.25 1185.12,-1813.75 1232.88,-1813.75 1232.88,-1789.25 1185.12,-1789.25"/>
-<text text-anchor="start" x="1189.12" y="-1796.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="none" stroke="black" points="1232.88,-1789.25 1232.88,-1813.75 1249.12,-1813.75 1249.12,-1789.25 1232.88,-1789.25"/>
-<text text-anchor="start" x="1236.88" y="-1796.45" font-family="arial" font-size="14.00">1</text>
-</g>
-<!-- W7 -->
-<g id="node56" class="node">
-<title>W7</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1808,-1814.75 1526,-1814.75 1526,-1569.25 1808,-1569.25 1808,-1814.75"/>
-<polygon fill="none" stroke="black" points="1526,-1790.25 1526,-1814.75 1808,-1814.75 1808,-1790.25 1526,-1790.25"/>
-<text text-anchor="start" x="1655.75" y="-1797.45" font-family="arial" font-size="14.00">W7</text>
-<polygon fill="none" stroke="black" points="1526,-1765.75 1526,-1790.25 1569.69,-1790.25 1569.69,-1765.75 1526,-1765.75"/>
-<text text-anchor="start" x="1540.34" y="-1772.95" font-family="arial" font-size="14.00">3x</text>
-<polygon fill="none" stroke="black" points="1569.69,-1765.75 1569.69,-1790.25 1653.88,-1790.25 1653.88,-1765.75 1569.69,-1765.75"/>
-<text text-anchor="start" x="1584.03" y="-1772.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-1765.75 1653.88,-1790.25 1704.31,-1790.25 1704.31,-1765.75 1653.88,-1765.75"/>
-<text text-anchor="start" x="1668.22" y="-1772.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1704.31,-1765.75 1704.31,-1790.25 1808,-1790.25 1808,-1765.75 1704.31,-1765.75"/>
-<text text-anchor="start" x="1718.66" y="-1772.95" font-family="arial" font-size="14.00">13.0 Inches</text>
-<text text-anchor="start" x="1576.62" y="-1750.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1633.38" y="-1730.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690.75" y="-1730.45" font-family="arial" font-size="14.00">CEX:7:CAN_GND</text>
-<polygon fill="#000000" stroke="none" points="1526,-1723.75 1526,-1725.75 1808,-1725.75 1808,-1723.75 1526,-1723.75"/>
-<polygon fill="#0066ff" stroke="none" points="1526,-1721.75 1526,-1723.75 1808,-1723.75 1808,-1721.75 1526,-1721.75"/>
-<polygon fill="#0066ff" stroke="none" points="1526,-1719.75 1526,-1721.75 1808,-1721.75 1808,-1719.75 1526,-1719.75"/>
-<polygon fill="#0066ff" stroke="none" points="1526,-1717.75 1526,-1719.75 1808,-1719.75 1808,-1717.75 1526,-1717.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1715.75 1526,-1717.75 1808,-1717.75 1808,-1715.75 1526,-1715.75"/>
-<text text-anchor="start" x="1632.62" y="-1700.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1696.75" y="-1700.45" font-family="arial" font-size="14.00">CEX:8:CANB_P</text>
-<polygon fill="#000000" stroke="none" points="1526,-1693.75 1526,-1695.75 1808,-1695.75 1808,-1693.75 1526,-1693.75"/>
-<polygon fill="#ff0000" stroke="none" points="1526,-1691.75 1526,-1693.75 1808,-1693.75 1808,-1691.75 1526,-1691.75"/>
-<polygon fill="#ff0000" stroke="none" points="1526,-1689.75 1526,-1691.75 1808,-1691.75 1808,-1689.75 1526,-1689.75"/>
-<polygon fill="#ff0000" stroke="none" points="1526,-1687.75 1526,-1689.75 1808,-1689.75 1808,-1687.75 1526,-1687.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1685.75 1526,-1687.75 1808,-1687.75 1808,-1685.75 1526,-1685.75"/>
-<text text-anchor="start" x="1633.38" y="-1670.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1696.75" y="-1670.45" font-family="arial" font-size="14.00">CEX:9:CANB_N</text>
-<polygon fill="#000000" stroke="none" points="1526,-1663.75 1526,-1665.75 1808,-1665.75 1808,-1663.75 1526,-1663.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1661.75 1526,-1663.75 1808,-1663.75 1808,-1661.75 1526,-1661.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1659.75 1526,-1661.75 1808,-1661.75 1808,-1659.75 1526,-1659.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1657.75 1526,-1659.75 1808,-1659.75 1808,-1657.75 1526,-1657.75"/>
-<polygon fill="#000000" stroke="none" points="1526,-1655.75 1526,-1657.75 1808,-1657.75 1808,-1655.75 1526,-1655.75"/>
-<text text-anchor="start" x="1576.62" y="-1640.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1527.88" y="-1620.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1640.12" y="-1620.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1526,-1613.75 1526,-1615.75 1808,-1615.75 1808,-1613.75 1526,-1613.75"/>
-<text text-anchor="start" x="1576.62" y="-1598.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1526,-1569.25 1526,-1593.75 1808,-1593.75 1808,-1569.25 1526,-1569.25"/>
-<text text-anchor="start" x="1572.12" y="-1576.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to CEX</text>
-</g>
-<!-- shield1&#45;&#45;W7 -->
-<g id="edge40" class="edge">
-<title>shield1:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-1801.5C1309.3,-1801.5 1329.5,-1806.15 1381,-1777 1464.91,-1729.51 1428.58,-1614.75 1525,-1614.75"/>
-</g>
-<!-- W11 -->
-<g id="node58" class="node">
-<title>W11</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-2525.75 1525,-2525.75 1525,-2310.25 1809,-2310.25 1809,-2525.75"/>
-<polygon fill="none" stroke="black" points="1525,-2501.25 1525,-2525.75 1809,-2525.75 1809,-2501.25 1525,-2501.25"/>
-<text text-anchor="start" x="1651.62" y="-2508.45" font-family="arial" font-size="14.00">W11</text>
-<polygon fill="none" stroke="black" points="1525,-2476.75 1525,-2501.25 1569.19,-2501.25 1569.19,-2476.75 1525,-2476.75"/>
-<text text-anchor="start" x="1539.59" y="-2483.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1569.19,-2476.75 1569.19,-2501.25 1653.88,-2501.25 1653.88,-2476.75 1569.19,-2476.75"/>
-<text text-anchor="start" x="1583.78" y="-2483.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-2476.75 1653.88,-2501.25 1704.81,-2501.25 1704.81,-2476.75 1653.88,-2476.75"/>
-<text text-anchor="start" x="1668.47" y="-2483.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1704.81,-2476.75 1704.81,-2501.25 1809,-2501.25 1809,-2476.75 1704.81,-2476.75"/>
-<text text-anchor="start" x="1719.41" y="-2483.95" font-family="arial" font-size="14.00">73.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-2461.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-2441.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-2441.45" font-family="arial" font-size="14.00">Resistor:2:CAN_H</text>
-<polygon fill="#000000" stroke="none" points="1525,-2434.75 1525,-2436.75 1809,-2436.75 1809,-2434.75 1525,-2434.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2432.75 1525,-2434.75 1809,-2434.75 1809,-2432.75 1525,-2432.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2430.75 1525,-2432.75 1809,-2432.75 1809,-2430.75 1525,-2430.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2428.75 1525,-2430.75 1809,-2430.75 1809,-2428.75 1525,-2428.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2426.75 1525,-2428.75 1809,-2428.75 1809,-2426.75 1525,-2426.75"/>
-<text text-anchor="start" x="1631.62" y="-2411.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690.75" y="-2411.45" font-family="arial" font-size="14.00">Resistor:1:CAN_L</text>
-<polygon fill="#000000" stroke="none" points="1525,-2404.75 1525,-2406.75 1809,-2406.75 1809,-2404.75 1525,-2404.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2402.75 1525,-2404.75 1809,-2404.75 1809,-2402.75 1525,-2402.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2400.75 1525,-2402.75 1809,-2402.75 1809,-2400.75 1525,-2400.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2398.75 1525,-2400.75 1809,-2400.75 1809,-2398.75 1525,-2398.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2396.75 1525,-2398.75 1809,-2398.75 1809,-2396.75 1525,-2396.75"/>
-<text text-anchor="start" x="1575.62" y="-2381.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-2361.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-2361.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-2354.75 1525,-2356.75 1809,-2356.75 1809,-2354.75 1525,-2354.75"/>
-<text text-anchor="start" x="1575.62" y="-2339.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-2310.25 1525,-2334.75 1809,-2334.75 1809,-2310.25 1525,-2310.25"/>
-<text text-anchor="start" x="1628" y="-2317.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield1&#45;&#45;W11 -->
-<g id="edge118" class="edge">
-<title>shield1:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-1801.5C1316.84,-1801.5 1339.31,-1822.92 1381,-1875 1520.39,-2049.13 1301.95,-2355.75 1525,-2355.75"/>
-</g>
-<!-- W12 -->
-<g id="node59" class="node">
-<title>W12</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1801.5,-2285.75 1532.5,-2285.75 1532.5,-2070.25 1801.5,-2070.25 1801.5,-2285.75"/>
-<polygon fill="none" stroke="black" points="1532.5,-2261.25 1532.5,-2285.75 1801.5,-2285.75 1801.5,-2261.25 1532.5,-2261.25"/>
-<text text-anchor="start" x="1651.62" y="-2268.45" font-family="arial" font-size="14.00">W12</text>
-<polygon fill="none" stroke="black" points="1532.5,-2236.75 1532.5,-2261.25 1572.94,-2261.25 1572.94,-2236.75 1532.5,-2236.75"/>
-<text text-anchor="start" x="1545.22" y="-2243.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1572.94,-2236.75 1572.94,-2261.25 1653.88,-2261.25 1653.88,-2236.75 1572.94,-2236.75"/>
-<text text-anchor="start" x="1585.66" y="-2243.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-2236.75 1653.88,-2261.25 1701.06,-2261.25 1701.06,-2236.75 1653.88,-2236.75"/>
-<text text-anchor="start" x="1666.59" y="-2243.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1701.06,-2236.75 1701.06,-2261.25 1801.5,-2261.25 1801.5,-2236.75 1701.06,-2236.75"/>
-<text text-anchor="start" x="1713.78" y="-2243.95" font-family="arial" font-size="14.00">73.0 Inches</text>
-<text text-anchor="start" x="1583.12" y="-2221.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1640.25" y="-2201.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1697.5" y="-2201.45" font-family="arial" font-size="14.00">Radar:2:CAN_H</text>
-<polygon fill="#000000" stroke="none" points="1532.5,-2194.75 1532.5,-2196.75 1801.5,-2196.75 1801.5,-2194.75 1532.5,-2194.75"/>
-<polygon fill="#ffff00" stroke="none" points="1532.5,-2192.75 1532.5,-2194.75 1801.5,-2194.75 1801.5,-2192.75 1532.5,-2192.75"/>
-<polygon fill="#ffff00" stroke="none" points="1532.5,-2190.75 1532.5,-2192.75 1801.5,-2192.75 1801.5,-2190.75 1532.5,-2190.75"/>
-<polygon fill="#ffff00" stroke="none" points="1532.5,-2188.75 1532.5,-2190.75 1801.5,-2190.75 1801.5,-2188.75 1532.5,-2188.75"/>
-<polygon fill="#000000" stroke="none" points="1532.5,-2186.75 1532.5,-2188.75 1801.5,-2188.75 1801.5,-2186.75 1532.5,-2186.75"/>
-<text text-anchor="start" x="1639.12" y="-2171.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1698.25" y="-2171.45" font-family="arial" font-size="14.00">Radar:1:CAN_L</text>
-<polygon fill="#000000" stroke="none" points="1532.5,-2164.75 1532.5,-2166.75 1801.5,-2166.75 1801.5,-2164.75 1532.5,-2164.75"/>
-<polygon fill="#00ff00" stroke="none" points="1532.5,-2162.75 1532.5,-2164.75 1801.5,-2164.75 1801.5,-2162.75 1532.5,-2162.75"/>
-<polygon fill="#00ff00" stroke="none" points="1532.5,-2160.75 1532.5,-2162.75 1801.5,-2162.75 1801.5,-2160.75 1532.5,-2160.75"/>
-<polygon fill="#00ff00" stroke="none" points="1532.5,-2158.75 1532.5,-2160.75 1801.5,-2160.75 1801.5,-2158.75 1532.5,-2158.75"/>
-<polygon fill="#000000" stroke="none" points="1532.5,-2156.75 1532.5,-2158.75 1801.5,-2158.75 1801.5,-2156.75 1532.5,-2156.75"/>
-<text text-anchor="start" x="1583.12" y="-2141.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1534.38" y="-2121.45" font-family="arial" font-size="14.00">shield1:1:Shield</text>
-<text text-anchor="start" x="1646.62" y="-2121.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1532.5,-2114.75 1532.5,-2116.75 1801.5,-2116.75 1801.5,-2114.75 1532.5,-2114.75"/>
-<text text-anchor="start" x="1583.12" y="-2099.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1532.5,-2070.25 1532.5,-2094.75 1801.5,-2094.75 1801.5,-2070.25 1532.5,-2070.25"/>
-<text text-anchor="start" x="1628" y="-2077.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield1&#45;&#45;W12 -->
-<g id="edge124" class="edge">
-<title>shield1:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-1801.5C1316.84,-1801.5 1332.73,-1828.95 1381,-1875 1472.3,-1962.11 1405.31,-2115.75 1531.5,-2115.75"/>
+<polygon fill="#ffffff" stroke="black" points="236.5,-3033.75 172.5,-3033.75 172.5,-2960.25 236.5,-2960.25 236.5,-3033.75"/>
+<polygon fill="none" stroke="black" points="172.5,-3009.25 172.5,-3033.75 236.5,-3033.75 236.5,-3009.25 172.5,-3009.25"/>
+<text text-anchor="start" x="181.62" y="-3016.45" font-family="arial" font-size="14.00">shield1</text>
+<polygon fill="none" stroke="black" points="172.5,-2984.75 172.5,-3009.25 236.5,-3009.25 236.5,-2984.75 172.5,-2984.75"/>
+<text text-anchor="start" x="188.75" y="-2991.95" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="172.5,-2960.25 172.5,-2984.75 188.75,-2984.75 188.75,-2960.25 172.5,-2960.25"/>
+<text text-anchor="start" x="176.5" y="-2967.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="188.75,-2960.25 188.75,-2984.75 236.5,-2984.75 236.5,-2960.25 188.75,-2960.25"/>
+<text text-anchor="start" x="192.75" y="-2967.45" font-family="arial" font-size="14.00">Shield</text>
</g>
<!-- shield2 -->
<g id="node13" class="node">
<title>shield2</title>
-<polygon fill="#ffffff" stroke="black" points="1249.12,-2822.75 1168.88,-2822.75 1168.88,-2749.25 1249.12,-2749.25 1249.12,-2822.75"/>
-<polygon fill="none" stroke="black" points="1168.88,-2798.25 1168.88,-2822.75 1249.12,-2822.75 1249.12,-2798.25 1168.88,-2798.25"/>
-<text text-anchor="start" x="1186.12" y="-2805.45" font-family="arial" font-size="14.00">shield2</text>
-<polygon fill="none" stroke="black" points="1168.88,-2773.75 1168.88,-2798.25 1249.12,-2798.25 1249.12,-2773.75 1168.88,-2773.75"/>
-<text text-anchor="start" x="1193.25" y="-2780.95" font-family="arial" font-size="14.00">1&#45;pin</text>
-<polygon fill="none" stroke="black" points="1168.88,-2749.25 1168.88,-2773.75 1185.12,-2773.75 1185.12,-2749.25 1168.88,-2749.25"/>
-<text text-anchor="start" x="1172.88" y="-2756.45" font-family="arial" font-size="14.00">1</text>
-<polygon fill="none" stroke="black" points="1185.12,-2749.25 1185.12,-2773.75 1232.88,-2773.75 1232.88,-2749.25 1185.12,-2749.25"/>
-<text text-anchor="start" x="1189.12" y="-2756.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="none" stroke="black" points="1232.88,-2749.25 1232.88,-2773.75 1249.12,-2773.75 1249.12,-2749.25 1232.88,-2749.25"/>
-<text text-anchor="start" x="1236.88" y="-2756.45" font-family="arial" font-size="14.00">1</text>
-</g>
-<!-- W15 -->
-<g id="node61" class="node">
-<title>W15</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-3005.75 1525,-3005.75 1525,-2790.25 1809,-2790.25 1809,-3005.75"/>
-<polygon fill="none" stroke="black" points="1525,-2981.25 1525,-3005.75 1809,-3005.75 1809,-2981.25 1525,-2981.25"/>
-<text text-anchor="start" x="1651.62" y="-2988.45" font-family="arial" font-size="14.00">W15</text>
-<polygon fill="none" stroke="black" points="1525,-2956.75 1525,-2981.25 1569.19,-2981.25 1569.19,-2956.75 1525,-2956.75"/>
-<text text-anchor="start" x="1539.59" y="-2963.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1569.19,-2956.75 1569.19,-2981.25 1653.88,-2981.25 1653.88,-2956.75 1569.19,-2956.75"/>
-<text text-anchor="start" x="1583.78" y="-2963.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1653.88,-2956.75 1653.88,-2981.25 1704.81,-2981.25 1704.81,-2956.75 1653.88,-2956.75"/>
-<text text-anchor="start" x="1668.47" y="-2963.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1704.81,-2956.75 1704.81,-2981.25 1809,-2981.25 1809,-2956.75 1704.81,-2956.75"/>
-<text text-anchor="start" x="1719.41" y="-2963.95" font-family="arial" font-size="14.00">12.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-2941.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-2921.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-2921.45" font-family="arial" font-size="14.00">Swash1:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1525,-2914.75 1525,-2916.75 1809,-2916.75 1809,-2914.75 1525,-2914.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2912.75 1525,-2914.75 1809,-2914.75 1809,-2912.75 1525,-2912.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2910.75 1525,-2912.75 1809,-2912.75 1809,-2910.75 1525,-2910.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2908.75 1525,-2910.75 1809,-2910.75 1809,-2908.75 1525,-2908.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2906.75 1525,-2908.75 1809,-2908.75 1809,-2906.75 1525,-2906.75"/>
-<text text-anchor="start" x="1631.62" y="-2891.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1691.88" y="-2891.45" font-family="arial" font-size="14.00">Swash1:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1525,-2884.75 1525,-2886.75 1809,-2886.75 1809,-2884.75 1525,-2884.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2882.75 1525,-2884.75 1809,-2884.75 1809,-2882.75 1525,-2882.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2880.75 1525,-2882.75 1809,-2882.75 1809,-2880.75 1525,-2880.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2878.75 1525,-2880.75 1809,-2880.75 1809,-2878.75 1525,-2878.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2876.75 1525,-2878.75 1809,-2878.75 1809,-2876.75 1525,-2876.75"/>
-<text text-anchor="start" x="1575.62" y="-2861.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-2841.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-2841.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-2834.75 1525,-2836.75 1809,-2836.75 1809,-2834.75 1525,-2834.75"/>
-<text text-anchor="start" x="1575.62" y="-2819.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-2790.25 1525,-2814.75 1809,-2814.75 1809,-2790.25 1525,-2790.25"/>
-<text text-anchor="start" x="1628" y="-2797.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield2&#45;&#45;W15 -->
-<g id="edge134" class="edge">
-<title>shield2:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1376.67,-2761.5 1398.45,-2835.75 1525,-2835.75"/>
-</g>
-<!-- W16 -->
-<g id="node62" class="node">
-<title>W16</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-2765.75 1525,-2765.75 1525,-2550.25 1809,-2550.25 1809,-2765.75"/>
-<polygon fill="none" stroke="black" points="1525,-2741.25 1525,-2765.75 1809,-2765.75 1809,-2741.25 1525,-2741.25"/>
-<text text-anchor="start" x="1651.62" y="-2748.45" font-family="arial" font-size="14.00">W16</text>
-<polygon fill="none" stroke="black" points="1525,-2716.75 1525,-2741.25 1571.25,-2741.25 1571.25,-2716.75 1525,-2716.75"/>
-<text text-anchor="start" x="1540.62" y="-2723.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1571.25,-2716.75 1571.25,-2741.25 1658,-2741.25 1658,-2716.75 1571.25,-2716.75"/>
-<text text-anchor="start" x="1586.88" y="-2723.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1658,-2716.75 1658,-2741.25 1711,-2741.25 1711,-2716.75 1658,-2716.75"/>
-<text text-anchor="start" x="1673.62" y="-2723.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1711,-2716.75 1711,-2741.25 1809,-2741.25 1809,-2716.75 1711,-2716.75"/>
-<text text-anchor="start" x="1726.62" y="-2723.95" font-family="arial" font-size="14.00">6.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-2701.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-2681.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-2681.45" font-family="arial" font-size="14.00">Swash2:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1525,-2674.75 1525,-2676.75 1809,-2676.75 1809,-2674.75 1525,-2674.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2672.75 1525,-2674.75 1809,-2674.75 1809,-2672.75 1525,-2672.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2670.75 1525,-2672.75 1809,-2672.75 1809,-2670.75 1525,-2670.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-2668.75 1525,-2670.75 1809,-2670.75 1809,-2668.75 1525,-2668.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2666.75 1525,-2668.75 1809,-2668.75 1809,-2666.75 1525,-2666.75"/>
-<text text-anchor="start" x="1631.62" y="-2651.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1691.88" y="-2651.45" font-family="arial" font-size="14.00">Swash2:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1525,-2644.75 1525,-2646.75 1809,-2646.75 1809,-2644.75 1525,-2644.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2642.75 1525,-2644.75 1809,-2644.75 1809,-2642.75 1525,-2642.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2640.75 1525,-2642.75 1809,-2642.75 1809,-2640.75 1525,-2640.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-2638.75 1525,-2640.75 1809,-2640.75 1809,-2638.75 1525,-2638.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-2636.75 1525,-2638.75 1809,-2638.75 1809,-2636.75 1525,-2636.75"/>
-<text text-anchor="start" x="1575.62" y="-2621.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-2601.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-2601.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-2594.75 1525,-2596.75 1809,-2596.75 1809,-2594.75 1525,-2594.75"/>
-<text text-anchor="start" x="1575.62" y="-2579.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-2550.25 1525,-2574.75 1809,-2574.75 1809,-2550.25 1525,-2550.25"/>
-<text text-anchor="start" x="1628" y="-2557.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield2&#45;&#45;W16 -->
-<g id="edge140" class="edge">
-<title>shield2:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1309.85,-2761.5 1328.35,-2759.19 1381,-2731 1458.41,-2689.56 1437.2,-2595.75 1525,-2595.75"/>
-</g>
-<!-- W17 -->
-<g id="node63" class="node">
-<title>W17</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1809,-3265.75 1525,-3265.75 1525,-3050.25 1809,-3050.25 1809,-3265.75"/>
-<polygon fill="none" stroke="black" points="1525,-3241.25 1525,-3265.75 1809,-3265.75 1809,-3241.25 1525,-3241.25"/>
-<text text-anchor="start" x="1651.62" y="-3248.45" font-family="arial" font-size="14.00">W17</text>
-<polygon fill="none" stroke="black" points="1525,-3216.75 1525,-3241.25 1571.25,-3241.25 1571.25,-3216.75 1525,-3216.75"/>
-<text text-anchor="start" x="1540.62" y="-3223.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1571.25,-3216.75 1571.25,-3241.25 1658,-3241.25 1658,-3216.75 1571.25,-3216.75"/>
-<text text-anchor="start" x="1586.88" y="-3223.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1658,-3216.75 1658,-3241.25 1711,-3241.25 1711,-3216.75 1658,-3216.75"/>
-<text text-anchor="start" x="1673.62" y="-3223.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1711,-3216.75 1711,-3241.25 1809,-3241.25 1809,-3216.75 1711,-3216.75"/>
-<text text-anchor="start" x="1726.62" y="-3223.95" font-family="arial" font-size="14.00">6.0 Inches</text>
-<text text-anchor="start" x="1575.62" y="-3201.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1632.75" y="-3181.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1690" y="-3181.45" font-family="arial" font-size="14.00">Swash3:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1525,-3174.75 1525,-3176.75 1809,-3176.75 1809,-3174.75 1525,-3174.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-3172.75 1525,-3174.75 1809,-3174.75 1809,-3172.75 1525,-3172.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-3170.75 1525,-3172.75 1809,-3172.75 1809,-3170.75 1525,-3170.75"/>
-<polygon fill="#ffff00" stroke="none" points="1525,-3168.75 1525,-3170.75 1809,-3170.75 1809,-3168.75 1525,-3168.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-3166.75 1525,-3168.75 1809,-3168.75 1809,-3166.75 1525,-3166.75"/>
-<text text-anchor="start" x="1631.62" y="-3151.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1691.88" y="-3151.45" font-family="arial" font-size="14.00">Swash3:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1525,-3144.75 1525,-3146.75 1809,-3146.75 1809,-3144.75 1525,-3144.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-3142.75 1525,-3144.75 1809,-3144.75 1809,-3142.75 1525,-3142.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-3140.75 1525,-3142.75 1809,-3142.75 1809,-3140.75 1525,-3140.75"/>
-<polygon fill="#00ff00" stroke="none" points="1525,-3138.75 1525,-3140.75 1809,-3140.75 1809,-3138.75 1525,-3138.75"/>
-<polygon fill="#000000" stroke="none" points="1525,-3136.75 1525,-3138.75 1809,-3138.75 1809,-3136.75 1525,-3136.75"/>
-<text text-anchor="start" x="1575.62" y="-3121.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1526.88" y="-3101.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1639.12" y="-3101.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1525,-3094.75 1525,-3096.75 1809,-3096.75 1809,-3094.75 1525,-3094.75"/>
-<text text-anchor="start" x="1575.62" y="-3079.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1525,-3050.25 1525,-3074.75 1809,-3074.75 1809,-3050.25 1525,-3050.25"/>
-<text text-anchor="start" x="1628" y="-3057.45" font-family="arial" font-size="14.00">Twisted Pair</text>
-</g>
-<!-- shield2&#45;&#45;W17 -->
-<g id="edge146" class="edge">
-<title>shield2:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1316.84,-2761.5 1334,-2787.66 1381,-2835 1474.28,-2928.95 1392.61,-3095.75 1525,-3095.75"/>
-</g>
-<!-- W18 -->
-<g id="node64" class="node">
-<title>W18</title>
-<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1797,-3515.75 1537,-3515.75 1537,-3300.25 1797,-3300.25 1797,-3515.75"/>
-<polygon fill="none" stroke="black" points="1537,-3491.25 1537,-3515.75 1797,-3515.75 1797,-3491.25 1537,-3491.25"/>
-<text text-anchor="start" x="1651.62" y="-3498.45" font-family="arial" font-size="14.00">W18</text>
-<polygon fill="none" stroke="black" points="1537,-3466.75 1537,-3491.25 1573.12,-3491.25 1573.12,-3466.75 1537,-3466.75"/>
-<text text-anchor="start" x="1547.56" y="-3473.95" font-family="arial" font-size="14.00">2x</text>
-<polygon fill="none" stroke="black" points="1573.12,-3466.75 1573.12,-3491.25 1649.75,-3491.25 1649.75,-3466.75 1573.12,-3466.75"/>
-<text text-anchor="start" x="1583.69" y="-3473.95" font-family="arial" font-size="14.00">22 AWG</text>
-<polygon fill="none" stroke="black" points="1649.75,-3466.75 1649.75,-3491.25 1692.62,-3491.25 1692.62,-3466.75 1649.75,-3466.75"/>
-<text text-anchor="start" x="1660.31" y="-3473.95" font-family="arial" font-size="14.00">+ S</text>
-<polygon fill="none" stroke="black" points="1692.62,-3466.75 1692.62,-3491.25 1797,-3491.25 1797,-3466.75 1692.62,-3466.75"/>
-<text text-anchor="start" x="1703.19" y="-3473.95" font-family="arial" font-size="14.00">170.0 Inches</text>
-<text text-anchor="start" x="1587.62" y="-3451.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1644.75" y="-3431.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1702" y="-3431.45" font-family="arial" font-size="14.00">Yaw:G:CAN_P</text>
-<polygon fill="#000000" stroke="none" points="1537,-3424.75 1537,-3426.75 1797,-3426.75 1797,-3424.75 1537,-3424.75"/>
-<polygon fill="#ffff00" stroke="none" points="1537,-3422.75 1537,-3424.75 1797,-3424.75 1797,-3422.75 1537,-3422.75"/>
-<polygon fill="#ffff00" stroke="none" points="1537,-3420.75 1537,-3422.75 1797,-3422.75 1797,-3420.75 1537,-3420.75"/>
-<polygon fill="#ffff00" stroke="none" points="1537,-3418.75 1537,-3420.75 1797,-3420.75 1797,-3418.75 1537,-3418.75"/>
-<polygon fill="#000000" stroke="none" points="1537,-3416.75 1537,-3418.75 1797,-3418.75 1797,-3416.75 1537,-3416.75"/>
-<text text-anchor="start" x="1643.62" y="-3401.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
-<text text-anchor="start" x="1703.88" y="-3401.45" font-family="arial" font-size="14.00">Yaw:J:CAN_N</text>
-<polygon fill="#000000" stroke="none" points="1537,-3394.75 1537,-3396.75 1797,-3396.75 1797,-3394.75 1537,-3394.75"/>
-<polygon fill="#00ff00" stroke="none" points="1537,-3392.75 1537,-3394.75 1797,-3394.75 1797,-3392.75 1537,-3392.75"/>
-<polygon fill="#00ff00" stroke="none" points="1537,-3390.75 1537,-3392.75 1797,-3392.75 1797,-3390.75 1537,-3390.75"/>
-<polygon fill="#00ff00" stroke="none" points="1537,-3388.75 1537,-3390.75 1797,-3390.75 1797,-3388.75 1537,-3388.75"/>
-<polygon fill="#000000" stroke="none" points="1537,-3386.75 1537,-3388.75 1797,-3388.75 1797,-3386.75 1537,-3386.75"/>
-<text text-anchor="start" x="1587.62" y="-3371.45" font-family="arial" font-size="14.00"> </text>
-<text text-anchor="start" x="1538.88" y="-3351.45" font-family="arial" font-size="14.00">shield2:1:Shield</text>
-<text text-anchor="start" x="1651.12" y="-3351.45" font-family="arial" font-size="14.00">Shield</text>
-<polygon fill="#000000" stroke="none" points="1537,-3344.75 1537,-3346.75 1797,-3346.75 1797,-3344.75 1537,-3344.75"/>
-<text text-anchor="start" x="1587.62" y="-3329.45" font-family="arial" font-size="14.00"> </text>
-<polygon fill="none" stroke="black" points="1537,-3300.25 1537,-3324.75 1797,-3324.75 1797,-3300.25 1537,-3300.25"/>
-<text text-anchor="start" x="1572.88" y="-3307.45" font-family="arial" font-size="14.00">Twisted Pair | (Tail Mounted?)</text>
-</g>
-<!-- shield2&#45;&#45;W18 -->
-<g id="edge152" class="edge">
-<title>shield2:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1250.12,-2761.5C1316.84,-2761.5 1339.21,-2783 1381,-2835 1529.59,-3019.92 1298.78,-3345.75 1536,-3345.75"/>
-</g>
-<!-- _GND_1 -->
-<g id="node14" class="node">
-<title>_GND_1</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1716.25 1189.25,-1716.25 1189.25,-1691.75 1228.75,-1691.75 1228.75,-1716.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1691.75 1189.25,-1716.25 1228.75,-1716.25 1228.75,-1691.75 1189.25,-1691.75"/>
-<text text-anchor="start" x="1193.25" y="-1698.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_2 -->
-<g id="node15" class="node">
-<title>_GND_2</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1667.25 1189.25,-1667.25 1189.25,-1642.75 1228.75,-1642.75 1228.75,-1667.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1642.75 1189.25,-1667.25 1228.75,-1667.25 1228.75,-1642.75 1189.25,-1642.75"/>
-<text text-anchor="start" x="1193.25" y="-1649.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_3 -->
-<g id="node16" class="node">
-<title>_GND_3</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1618.25 1189.25,-1618.25 1189.25,-1593.75 1228.75,-1593.75 1228.75,-1618.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1593.75 1189.25,-1618.25 1228.75,-1618.25 1228.75,-1593.75 1189.25,-1593.75"/>
-<text text-anchor="start" x="1193.25" y="-1600.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_4 -->
-<g id="node17" class="node">
-<title>_GND_4</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1558.25 1189.25,-1558.25 1189.25,-1533.75 1228.75,-1533.75 1228.75,-1558.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1533.75 1189.25,-1558.25 1228.75,-1558.25 1228.75,-1533.75 1189.25,-1533.75"/>
-<text text-anchor="start" x="1193.25" y="-1540.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_5 -->
-<g id="node18" class="node">
-<title>_GND_5</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1438.25 1189.25,-1438.25 1189.25,-1413.75 1228.75,-1413.75 1228.75,-1438.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1413.75 1189.25,-1438.25 1228.75,-1438.25 1228.75,-1413.75 1189.25,-1413.75"/>
-<text text-anchor="start" x="1193.25" y="-1420.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_6 -->
-<g id="node19" class="node">
-<title>_GND_6</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1378.25 1189.25,-1378.25 1189.25,-1353.75 1228.75,-1353.75 1228.75,-1378.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1353.75 1189.25,-1378.25 1228.75,-1378.25 1228.75,-1353.75 1189.25,-1353.75"/>
-<text text-anchor="start" x="1193.25" y="-1360.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_7 -->
-<g id="node20" class="node">
-<title>_GND_7</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1318.25 1189.25,-1318.25 1189.25,-1293.75 1228.75,-1293.75 1228.75,-1318.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1293.75 1189.25,-1318.25 1228.75,-1318.25 1228.75,-1293.75 1189.25,-1293.75"/>
-<text text-anchor="start" x="1193.25" y="-1300.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_8 -->
-<g id="node21" class="node">
-<title>_GND_8</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1199.25 1189.25,-1199.25 1189.25,-1174.75 1228.75,-1174.75 1228.75,-1199.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1174.75 1189.25,-1199.25 1228.75,-1199.25 1228.75,-1174.75 1189.25,-1174.75"/>
-<text text-anchor="start" x="1193.25" y="-1181.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_9 -->
-<g id="node22" class="node">
-<title>_GND_9</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1109.25 1189.25,-1109.25 1189.25,-1084.75 1228.75,-1084.75 1228.75,-1109.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-1084.75 1189.25,-1109.25 1228.75,-1109.25 1228.75,-1084.75 1189.25,-1084.75"/>
-<text text-anchor="start" x="1193.25" y="-1091.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_10 -->
-<g id="node23" class="node">
-<title>_GND_10</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-1019.25 1189.25,-1019.25 1189.25,-994.75 1228.75,-994.75 1228.75,-1019.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-994.75 1189.25,-1019.25 1228.75,-1019.25 1228.75,-994.75 1189.25,-994.75"/>
-<text text-anchor="start" x="1193.25" y="-1001.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_11 -->
-<g id="node24" class="node">
-<title>_GND_11</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-659.25 1189.25,-659.25 1189.25,-634.75 1228.75,-634.75 1228.75,-659.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-634.75 1189.25,-659.25 1228.75,-659.25 1228.75,-634.75 1189.25,-634.75"/>
-<text text-anchor="start" x="1193.25" y="-641.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_12 -->
-<g id="node25" class="node">
-<title>_GND_12</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-489.25 1189.25,-489.25 1189.25,-464.75 1228.75,-464.75 1228.75,-489.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-464.75 1189.25,-489.25 1228.75,-489.25 1228.75,-464.75 1189.25,-464.75"/>
-<text text-anchor="start" x="1193.25" y="-471.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_13 -->
-<g id="node26" class="node">
-<title>_GND_13</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-440.25 1189.25,-440.25 1189.25,-415.75 1228.75,-415.75 1228.75,-440.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-415.75 1189.25,-440.25 1228.75,-440.25 1228.75,-415.75 1189.25,-415.75"/>
-<text text-anchor="start" x="1193.25" y="-422.95" font-family="arial" font-size="14.00">GND</text>
+<polygon fill="#ffffff" stroke="black" points="236.5,-3131.75 172.5,-3131.75 172.5,-3058.25 236.5,-3058.25 236.5,-3131.75"/>
+<polygon fill="none" stroke="black" points="172.5,-3107.25 172.5,-3131.75 236.5,-3131.75 236.5,-3107.25 172.5,-3107.25"/>
+<text text-anchor="start" x="181.62" y="-3114.45" font-family="arial" font-size="14.00">shield2</text>
+<polygon fill="none" stroke="black" points="172.5,-3082.75 172.5,-3107.25 236.5,-3107.25 236.5,-3082.75 172.5,-3082.75"/>
+<text text-anchor="start" x="188.75" y="-3089.95" font-family="arial" font-size="14.00">1&#45;pin</text>
+<polygon fill="none" stroke="black" points="172.5,-3058.25 172.5,-3082.75 188.75,-3082.75 188.75,-3058.25 172.5,-3058.25"/>
+<text text-anchor="start" x="176.5" y="-3065.45" font-family="arial" font-size="14.00">1</text>
+<polygon fill="none" stroke="black" points="188.75,-3058.25 188.75,-3082.75 236.5,-3082.75 236.5,-3058.25 188.75,-3058.25"/>
+<text text-anchor="start" x="192.75" y="-3065.45" font-family="arial" font-size="14.00">Shield</text>
</g>
<!-- _S_1 -->
-<g id="node27" class="node">
+<g id="node14" class="node">
<title>_S_1</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2920.25 1186.25,-2920.25 1186.25,-2895.75 1231.75,-2895.75 1231.75,-2920.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2895.75 1186.25,-2920.25 1231.75,-2920.25 1231.75,-2895.75 1186.25,-2895.75"/>
-<text text-anchor="start" x="1190.25" y="-2902.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-3180.25 696.75,-3180.25 696.75,-3155.75 742.25,-3155.75 742.25,-3180.25"/>
+<polygon fill="none" stroke="black" points="696.75,-3155.75 696.75,-3180.25 742.25,-3180.25 742.25,-3155.75 696.75,-3155.75"/>
+<text text-anchor="start" x="700.75" y="-3162.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W15 -->
+<g id="node37" class="node">
+<title>W15</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1301.62,-3361.75 1102.38,-3361.75 1102.38,-3146.25 1301.62,-3146.25 1301.62,-3361.75"/>
+<polygon fill="none" stroke="black" points="1102.38,-3337.25 1102.38,-3361.75 1301.62,-3361.75 1301.62,-3337.25 1102.38,-3337.25"/>
+<text text-anchor="start" x="1186.62" y="-3344.45" font-family="arial" font-size="14.00">W15</text>
+<polygon fill="none" stroke="black" points="1102.38,-3312.75 1102.38,-3337.25 1125.38,-3337.25 1125.38,-3312.75 1102.38,-3312.75"/>
+<text text-anchor="start" x="1106.38" y="-3319.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1125.38,-3312.75 1125.38,-3337.25 1188.88,-3337.25 1188.88,-3312.75 1125.38,-3312.75"/>
+<text text-anchor="start" x="1129.38" y="-3319.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1188.88,-3312.75 1188.88,-3337.25 1218.62,-3337.25 1218.62,-3312.75 1188.88,-3312.75"/>
+<text text-anchor="start" x="1192.88" y="-3319.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1218.62,-3312.75 1218.62,-3337.25 1301.62,-3337.25 1301.62,-3312.75 1218.62,-3312.75"/>
+<text text-anchor="start" x="1222.62" y="-3319.95" font-family="arial" font-size="14.00">12.0 Inches</text>
+<text text-anchor="start" x="1106.21" y="-3297.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1118.75" y="-3277.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1180.42" y="-3277.45" font-family="arial" font-size="14.00">Swash1:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1102.38,-3270.75 1102.38,-3272.75 1301.62,-3272.75 1301.62,-3270.75 1102.38,-3270.75"/>
+<polygon fill="#ffff00" stroke="none" points="1102.38,-3268.75 1102.38,-3270.75 1301.62,-3270.75 1301.62,-3268.75 1102.38,-3268.75"/>
+<polygon fill="#ffff00" stroke="none" points="1102.38,-3266.75 1102.38,-3268.75 1301.62,-3268.75 1301.62,-3266.75 1102.38,-3266.75"/>
+<polygon fill="#ffff00" stroke="none" points="1102.38,-3264.75 1102.38,-3266.75 1301.62,-3266.75 1301.62,-3264.75 1102.38,-3264.75"/>
+<polygon fill="#000000" stroke="none" points="1102.38,-3262.75 1102.38,-3264.75 1301.62,-3264.75 1301.62,-3262.75 1102.38,-3262.75"/>
+<text text-anchor="start" x="1117.62" y="-3247.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1182.29" y="-3247.45" font-family="arial" font-size="14.00">Swash1:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1102.38,-3240.75 1102.38,-3242.75 1301.62,-3242.75 1301.62,-3240.75 1102.38,-3240.75"/>
+<polygon fill="#00ff00" stroke="none" points="1102.38,-3238.75 1102.38,-3240.75 1301.62,-3240.75 1301.62,-3238.75 1102.38,-3238.75"/>
+<polygon fill="#00ff00" stroke="none" points="1102.38,-3236.75 1102.38,-3238.75 1301.62,-3238.75 1301.62,-3236.75 1102.38,-3236.75"/>
+<polygon fill="#00ff00" stroke="none" points="1102.38,-3234.75 1102.38,-3236.75 1301.62,-3236.75 1301.62,-3234.75 1102.38,-3234.75"/>
+<polygon fill="#000000" stroke="none" points="1102.38,-3232.75 1102.38,-3234.75 1301.62,-3234.75 1301.62,-3232.75 1102.38,-3232.75"/>
+<text text-anchor="start" x="1106.21" y="-3217.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1125.12" y="-3197.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1102.38,-3190.75 1102.38,-3192.75 1301.62,-3192.75 1301.62,-3190.75 1102.38,-3190.75"/>
+<text text-anchor="start" x="1106.21" y="-3175.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1102.38,-3146.25 1102.38,-3170.75 1301.62,-3170.75 1301.62,-3146.25 1102.38,-3146.25"/>
+<text text-anchor="start" x="1163" y="-3153.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_1&#45;&#45;W15 -->
-<g id="edge130" class="edge">
+<g id="edge44" class="edge">
<title>_S_1:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2904C1363.11,-2904.03 1395.56,-2907.78 1525,-2907.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2906C1362.88,-2906.01 1395.33,-2909.76 1525,-2909.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2908C1362.65,-2908 1395.1,-2911.75 1525,-2911.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2910C1362.42,-2909.99 1394.87,-2913.74 1525,-2913.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2912C1362.19,-2911.97 1394.64,-2915.72 1525,-2915.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-3164C912.33,-3166.93 940,-3266.68 1101.38,-3263.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-3166C910.4,-3167.47 938.08,-3267.22 1101.38,-3265.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-3168C908.48,-3168 936.15,-3267.75 1101.38,-3267.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-3170C906.55,-3168.53 934.22,-3268.28 1101.38,-3269.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-3172C904.62,-3169.07 932.3,-3268.82 1101.38,-3271.75"/>
</g>
<!-- _S_2 -->
-<g id="node28" class="node">
+<g id="node15" class="node">
<title>_S_2</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2871.25 1186.25,-2871.25 1186.25,-2846.75 1231.75,-2846.75 1231.75,-2871.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2846.75 1186.25,-2871.25 1231.75,-2871.25 1231.75,-2846.75 1186.25,-2846.75"/>
-<text text-anchor="start" x="1190.25" y="-2853.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2915.25 696.75,-2915.25 696.75,-2890.75 742.25,-2890.75 742.25,-2915.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2890.75 696.75,-2915.25 742.25,-2915.25 742.25,-2890.75 696.75,-2890.75"/>
+<text text-anchor="start" x="700.75" y="-2897.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_2&#45;&#45;W15 -->
-<g id="edge132" class="edge">
+<g id="edge46" class="edge">
<title>_S_2:e&#45;&#45;W15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2855C1365.36,-2855.75 1397.05,-2878.5 1525,-2877.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2857C1364.2,-2857.38 1395.88,-2880.13 1525,-2879.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2859C1363.03,-2859 1394.72,-2881.75 1525,-2881.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2861C1361.87,-2860.62 1393.55,-2883.37 1525,-2883.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2863C1360.7,-2862.25 1392.39,-2885 1525,-2885.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2899C806.35,-2899.25 830.36,-2890.4 888.16,-2925.63 1030.46,-3020.98 937.75,-3239.31 1101.38,-3233.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2901C807.05,-2901.12 831.05,-2892.27 887.08,-2927.32 1028.62,-3020.2 935.91,-3238.53 1101.38,-3235.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2903C807.74,-2903 831.74,-2894.15 886,-2929 1026.77,-3019.42 934.06,-3237.75 1101.38,-3237.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2905C808.43,-2904.88 832.43,-2896.03 884.92,-2930.68 1024.93,-3018.64 932.22,-3236.97 1101.38,-3239.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2907C809.12,-2906.75 833.12,-2897.9 883.84,-2932.37 1023.09,-3017.85 930.38,-3236.19 1101.38,-3241.75"/>
</g>
<!-- _S_3 -->
-<g id="node29" class="node">
+<g id="node16" class="node">
<title>_S_3</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2719.25 1186.25,-2719.25 1186.25,-2694.75 1231.75,-2694.75 1231.75,-2719.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2694.75 1186.25,-2719.25 1231.75,-2719.25 1231.75,-2694.75 1186.25,-2694.75"/>
-<text text-anchor="start" x="1190.25" y="-2701.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2759.25 696.75,-2759.25 696.75,-2734.75 742.25,-2734.75 742.25,-2759.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2734.75 696.75,-2759.25 742.25,-2759.25 742.25,-2734.75 696.75,-2734.75"/>
+<text text-anchor="start" x="700.75" y="-2741.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W16 -->
+<g id="node38" class="node">
+<title>W16</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1297.5,-2568.75 1106.5,-2568.75 1106.5,-2353.25 1297.5,-2353.25 1297.5,-2568.75"/>
+<polygon fill="none" stroke="black" points="1106.5,-2544.25 1106.5,-2568.75 1297.5,-2568.75 1297.5,-2544.25 1106.5,-2544.25"/>
+<text text-anchor="start" x="1186.62" y="-2551.45" font-family="arial" font-size="14.00">W16</text>
+<polygon fill="none" stroke="black" points="1106.5,-2519.75 1106.5,-2544.25 1129.5,-2544.25 1129.5,-2519.75 1106.5,-2519.75"/>
+<text text-anchor="start" x="1110.5" y="-2526.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1129.5,-2519.75 1129.5,-2544.25 1193,-2544.25 1193,-2519.75 1129.5,-2519.75"/>
+<text text-anchor="start" x="1133.5" y="-2526.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1193,-2519.75 1193,-2544.25 1222.75,-2544.25 1222.75,-2519.75 1193,-2519.75"/>
+<text text-anchor="start" x="1197" y="-2526.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1222.75,-2519.75 1222.75,-2544.25 1297.5,-2544.25 1297.5,-2519.75 1222.75,-2519.75"/>
+<text text-anchor="start" x="1226.75" y="-2526.95" font-family="arial" font-size="14.00">6.0 Inches</text>
+<text text-anchor="start" x="1108.96" y="-2504.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1118.75" y="-2484.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1177.67" y="-2484.45" font-family="arial" font-size="14.00">Swash2:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2477.75 1106.5,-2479.75 1297.5,-2479.75 1297.5,-2477.75 1106.5,-2477.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2475.75 1106.5,-2477.75 1297.5,-2477.75 1297.5,-2475.75 1106.5,-2475.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2473.75 1106.5,-2475.75 1297.5,-2475.75 1297.5,-2473.75 1106.5,-2473.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2471.75 1106.5,-2473.75 1297.5,-2473.75 1297.5,-2471.75 1106.5,-2471.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2469.75 1106.5,-2471.75 1297.5,-2471.75 1297.5,-2469.75 1106.5,-2469.75"/>
+<text text-anchor="start" x="1117.62" y="-2454.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1179.54" y="-2454.45" font-family="arial" font-size="14.00">Swash2:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2447.75 1106.5,-2449.75 1297.5,-2449.75 1297.5,-2447.75 1106.5,-2447.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2445.75 1106.5,-2447.75 1297.5,-2447.75 1297.5,-2445.75 1106.5,-2445.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2443.75 1106.5,-2445.75 1297.5,-2445.75 1297.5,-2443.75 1106.5,-2443.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2441.75 1106.5,-2443.75 1297.5,-2443.75 1297.5,-2441.75 1106.5,-2441.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2439.75 1106.5,-2441.75 1297.5,-2441.75 1297.5,-2439.75 1106.5,-2439.75"/>
+<text text-anchor="start" x="1108.96" y="-2424.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1125.12" y="-2404.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2397.75 1106.5,-2399.75 1297.5,-2399.75 1297.5,-2397.75 1106.5,-2397.75"/>
+<text text-anchor="start" x="1108.96" y="-2382.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1106.5,-2353.25 1106.5,-2377.75 1297.5,-2377.75 1297.5,-2353.25 1106.5,-2353.25"/>
+<text text-anchor="start" x="1163" y="-2360.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_3&#45;&#45;W16 -->
-<g id="edge136" class="edge">
+<g id="edge48" class="edge">
<title>_S_3:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2703C1360.56,-2704.38 1391.15,-2669.13 1525,-2667.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2705C1362.07,-2705.69 1392.66,-2670.44 1525,-2669.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2707C1363.58,-2707 1394.17,-2671.75 1525,-2671.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2709C1365.09,-2708.31 1395.68,-2673.06 1525,-2673.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2711C1366.6,-2709.62 1397.19,-2674.37 1525,-2675.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2743C808.13,-2743.05 829.02,-2739.57 883.95,-2706.56 1005.04,-2637.97 958.65,-2475.85 1105.5,-2470.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2745C808.46,-2745.03 829.35,-2741.55 884.98,-2708.28 1006.96,-2637.42 960.58,-2475.3 1105.5,-2472.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2747C808.79,-2747 829.68,-2743.52 886,-2710 1008.89,-2636.87 962.5,-2474.75 1105.5,-2474.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2749C809.12,-2748.97 830.01,-2745.49 887.02,-2711.72 1010.81,-2636.32 964.42,-2474.2 1105.5,-2476.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2751C809.45,-2750.95 830.34,-2747.46 888.05,-2713.44 1012.73,-2635.77 966.35,-2473.65 1105.5,-2478.75"/>
</g>
<!-- _S_4 -->
-<g id="node30" class="node">
+<g id="node17" class="node">
<title>_S_4</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2658.25 1186.25,-2658.25 1186.25,-2633.75 1231.75,-2633.75 1231.75,-2658.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2633.75 1186.25,-2658.25 1231.75,-2658.25 1231.75,-2633.75 1186.25,-2633.75"/>
-<text text-anchor="start" x="1190.25" y="-2640.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2552.25 696.75,-2552.25 696.75,-2527.75 742.25,-2527.75 742.25,-2552.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2527.75 696.75,-2552.25 742.25,-2552.25 742.25,-2527.75 696.75,-2527.75"/>
+<text text-anchor="start" x="700.75" y="-2534.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_4&#45;&#45;W16 -->
-<g id="edge138" class="edge">
+<g id="edge50" class="edge">
<title>_S_4:e&#45;&#45;W16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2642C1362.13,-2642.03 1394.58,-2637.78 1525,-2637.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2644C1362.39,-2644.02 1394.84,-2639.77 1525,-2639.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2646C1362.65,-2646 1395.1,-2641.75 1525,-2641.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2648C1362.91,-2647.98 1395.36,-2643.73 1525,-2643.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2650C1363.17,-2649.97 1395.62,-2645.72 1525,-2645.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2536C905.9,-2538.82 935.2,-2443.57 1105.5,-2440.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2538C907.81,-2539.41 937.12,-2444.16 1105.5,-2442.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2540C909.72,-2540 939.03,-2444.75 1105.5,-2444.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2542C911.63,-2540.59 940.94,-2445.34 1105.5,-2446.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2544C913.55,-2541.18 942.85,-2445.93 1105.5,-2448.75"/>
</g>
<!-- _S_5 -->
-<g id="node31" class="node">
+<g id="node18" class="node">
<title>_S_5</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-3018.25 1186.25,-3018.25 1186.25,-2993.75 1231.75,-2993.75 1231.75,-3018.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2993.75 1186.25,-3018.25 1231.75,-3018.25 1231.75,-2993.75 1186.25,-2993.75"/>
-<text text-anchor="start" x="1190.25" y="-3000.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2863.25 696.75,-2863.25 696.75,-2838.75 742.25,-2838.75 742.25,-2863.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2838.75 696.75,-2863.25 742.25,-2863.25 742.25,-2838.75 696.75,-2838.75"/>
+<text text-anchor="start" x="700.75" y="-2845.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W17 -->
+<g id="node39" class="node">
+<title>W17</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1297.5,-2808.75 1106.5,-2808.75 1106.5,-2593.25 1297.5,-2593.25 1297.5,-2808.75"/>
+<polygon fill="none" stroke="black" points="1106.5,-2784.25 1106.5,-2808.75 1297.5,-2808.75 1297.5,-2784.25 1106.5,-2784.25"/>
+<text text-anchor="start" x="1186.62" y="-2791.45" font-family="arial" font-size="14.00">W17</text>
+<polygon fill="none" stroke="black" points="1106.5,-2759.75 1106.5,-2784.25 1129.5,-2784.25 1129.5,-2759.75 1106.5,-2759.75"/>
+<text text-anchor="start" x="1110.5" y="-2766.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1129.5,-2759.75 1129.5,-2784.25 1193,-2784.25 1193,-2759.75 1129.5,-2759.75"/>
+<text text-anchor="start" x="1133.5" y="-2766.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1193,-2759.75 1193,-2784.25 1222.75,-2784.25 1222.75,-2759.75 1193,-2759.75"/>
+<text text-anchor="start" x="1197" y="-2766.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1222.75,-2759.75 1222.75,-2784.25 1297.5,-2784.25 1297.5,-2759.75 1222.75,-2759.75"/>
+<text text-anchor="start" x="1226.75" y="-2766.95" font-family="arial" font-size="14.00">6.0 Inches</text>
+<text text-anchor="start" x="1108.96" y="-2744.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1118.75" y="-2724.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1177.67" y="-2724.45" font-family="arial" font-size="14.00">Swash3:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2717.75 1106.5,-2719.75 1297.5,-2719.75 1297.5,-2717.75 1106.5,-2717.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2715.75 1106.5,-2717.75 1297.5,-2717.75 1297.5,-2715.75 1106.5,-2715.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2713.75 1106.5,-2715.75 1297.5,-2715.75 1297.5,-2713.75 1106.5,-2713.75"/>
+<polygon fill="#ffff00" stroke="none" points="1106.5,-2711.75 1106.5,-2713.75 1297.5,-2713.75 1297.5,-2711.75 1106.5,-2711.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2709.75 1106.5,-2711.75 1297.5,-2711.75 1297.5,-2709.75 1106.5,-2709.75"/>
+<text text-anchor="start" x="1117.62" y="-2694.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1179.54" y="-2694.45" font-family="arial" font-size="14.00">Swash3:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2687.75 1106.5,-2689.75 1297.5,-2689.75 1297.5,-2687.75 1106.5,-2687.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2685.75 1106.5,-2687.75 1297.5,-2687.75 1297.5,-2685.75 1106.5,-2685.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2683.75 1106.5,-2685.75 1297.5,-2685.75 1297.5,-2683.75 1106.5,-2683.75"/>
+<polygon fill="#00ff00" stroke="none" points="1106.5,-2681.75 1106.5,-2683.75 1297.5,-2683.75 1297.5,-2681.75 1106.5,-2681.75"/>
+<polygon fill="#000000" stroke="none" points="1106.5,-2679.75 1106.5,-2681.75 1297.5,-2681.75 1297.5,-2679.75 1106.5,-2679.75"/>
+<text text-anchor="start" x="1108.96" y="-2664.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1125.12" y="-2644.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1106.5,-2637.75 1106.5,-2639.75 1297.5,-2639.75 1297.5,-2637.75 1106.5,-2637.75"/>
+<text text-anchor="start" x="1108.96" y="-2622.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1106.5,-2593.25 1106.5,-2617.75 1297.5,-2617.75 1297.5,-2593.25 1106.5,-2593.25"/>
+<text text-anchor="start" x="1163" y="-2600.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_5&#45;&#45;W17 -->
-<g id="edge142" class="edge">
+<g id="edge52" class="edge">
<title>_S_5:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3002C1298.63,-3002.11 1320.5,-2996.82 1382.81,-3027.43 1464.65,-3072.55 1439.38,-3172.73 1525,-3167.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3004C1299.1,-3004.06 1320.97,-2998.76 1381.91,-3029.22 1462.71,-3072.06 1437.45,-3172.24 1525,-3169.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3006C1299.57,-3006 1321.44,-3000.71 1381,-3031 1460.77,-3071.57 1435.51,-3171.75 1525,-3171.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3008C1300.04,-3007.94 1321.91,-3002.65 1380.09,-3032.78 1458.83,-3071.08 1433.57,-3171.26 1525,-3173.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3010C1300.51,-3009.89 1322.38,-3004.6 1379.19,-3034.57 1456.89,-3070.59 1431.63,-3170.77 1525,-3175.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2847C806.61,-2847.14 823.84,-2842.48 884.74,-2822.2 985.79,-2791.14 992.14,-2714.42 1105.5,-2710.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2849C807.14,-2849.07 824.36,-2844.41 885.37,-2824.1 987.78,-2791.3 994.14,-2714.58 1105.5,-2712.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2851C807.66,-2851 824.88,-2846.34 886,-2826 989.78,-2791.47 996.13,-2714.75 1105.5,-2714.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2853C808.18,-2852.93 825.41,-2848.27 886.63,-2827.9 991.77,-2791.63 998.12,-2714.92 1105.5,-2716.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2855C808.71,-2854.86 825.93,-2850.2 887.26,-2829.8 993.76,-2791.8 1000.12,-2715.08 1105.5,-2718.75"/>
</g>
<!-- _S_6 -->
-<g id="node32" class="node">
+<g id="node19" class="node">
<title>_S_6</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2969.25 1186.25,-2969.25 1186.25,-2944.75 1231.75,-2944.75 1231.75,-2969.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2944.75 1186.25,-2969.25 1231.75,-2969.25 1231.75,-2944.75 1186.25,-2944.75"/>
-<text text-anchor="start" x="1190.25" y="-2951.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2698.25 696.75,-2698.25 696.75,-2673.75 742.25,-2673.75 742.25,-2698.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2673.75 696.75,-2698.25 742.25,-2698.25 742.25,-2673.75 696.75,-2673.75"/>
+<text text-anchor="start" x="700.75" y="-2680.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_6&#45;&#45;W17 -->
-<g id="edge144" class="edge">
+<g id="edge54" class="edge">
<title>_S_6:e&#45;&#45;W17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2953C1298.37,-2953.18 1321.23,-2946.02 1382.93,-2978.49 1468.61,-3029.19 1433.23,-3142.94 1525,-3137.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2955C1298.97,-2955.09 1321.83,-2947.93 1381.96,-2980.25 1466.7,-3028.6 1431.32,-3142.34 1525,-3139.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2957C1299.57,-2957 1322.43,-2949.84 1381,-2982 1464.79,-3028.01 1429.41,-3141.75 1525,-3141.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2959C1300.17,-2958.91 1323.03,-2951.75 1380.04,-2983.75 1462.88,-3027.41 1427.5,-3141.16 1525,-3143.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2961C1300.76,-2960.82 1323.62,-2953.66 1379.07,-2985.51 1460.97,-3026.82 1425.59,-3140.56 1525,-3145.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2682C904.13,-2682 944.37,-2680.75 1105.5,-2680.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2684C904.19,-2684 944.44,-2682.75 1105.5,-2682.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2686C904.25,-2686 944.5,-2684.75 1105.5,-2684.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2688C904.31,-2688 944.56,-2686.75 1105.5,-2686.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2690C904.38,-2690 944.62,-2688.75 1105.5,-2688.75"/>
</g>
<!-- _S_7 -->
-<g id="node33" class="node">
+<g id="node20" class="node">
<title>_S_7</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-3116.25 1186.25,-3116.25 1186.25,-3091.75 1231.75,-3091.75 1231.75,-3116.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-3091.75 1186.25,-3116.25 1231.75,-3116.25 1231.75,-3091.75 1186.25,-3091.75"/>
-<text text-anchor="start" x="1190.25" y="-3098.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2965.25 696.75,-2965.25 696.75,-2940.75 742.25,-2940.75 742.25,-2965.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2940.75 696.75,-2965.25 742.25,-2965.25 742.25,-2940.75 696.75,-2940.75"/>
+<text text-anchor="start" x="700.75" y="-2947.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W18 -->
+<g id="node40" class="node">
+<title>W18</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1305.75,-3048.75 1098.25,-3048.75 1098.25,-2833.25 1305.75,-2833.25 1305.75,-3048.75"/>
+<polygon fill="none" stroke="black" points="1098.25,-3024.25 1098.25,-3048.75 1305.75,-3048.75 1305.75,-3024.25 1098.25,-3024.25"/>
+<text text-anchor="start" x="1186.62" y="-3031.45" font-family="arial" font-size="14.00">W18</text>
+<polygon fill="none" stroke="black" points="1098.25,-2999.75 1098.25,-3024.25 1121.25,-3024.25 1121.25,-2999.75 1098.25,-2999.75"/>
+<text text-anchor="start" x="1102.25" y="-3006.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1121.25,-2999.75 1121.25,-3024.25 1184.75,-3024.25 1184.75,-2999.75 1121.25,-2999.75"/>
+<text text-anchor="start" x="1125.25" y="-3006.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1184.75,-2999.75 1184.75,-3024.25 1214.5,-3024.25 1214.5,-2999.75 1184.75,-2999.75"/>
+<text text-anchor="start" x="1188.75" y="-3006.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1214.5,-2999.75 1214.5,-3024.25 1305.75,-3024.25 1305.75,-2999.75 1214.5,-2999.75"/>
+<text text-anchor="start" x="1218.5" y="-3006.95" font-family="arial" font-size="14.00">170.0 Inches</text>
+<text text-anchor="start" x="1107.46" y="-2984.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1130.75" y="-2964.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1203.17" y="-2964.45" font-family="arial" font-size="14.00">Yaw:G:CAN_P</text>
+<polygon fill="#000000" stroke="none" points="1098.25,-2957.75 1098.25,-2959.75 1305.75,-2959.75 1305.75,-2957.75 1098.25,-2957.75"/>
+<polygon fill="#ffff00" stroke="none" points="1098.25,-2955.75 1098.25,-2957.75 1305.75,-2957.75 1305.75,-2955.75 1098.25,-2955.75"/>
+<polygon fill="#ffff00" stroke="none" points="1098.25,-2953.75 1098.25,-2955.75 1305.75,-2955.75 1305.75,-2953.75 1098.25,-2953.75"/>
+<polygon fill="#ffff00" stroke="none" points="1098.25,-2951.75 1098.25,-2953.75 1305.75,-2953.75 1305.75,-2951.75 1098.25,-2951.75"/>
+<polygon fill="#000000" stroke="none" points="1098.25,-2949.75 1098.25,-2951.75 1305.75,-2951.75 1305.75,-2949.75 1098.25,-2949.75"/>
+<text text-anchor="start" x="1129.62" y="-2934.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1205.04" y="-2934.45" font-family="arial" font-size="14.00">Yaw:J:CAN_N</text>
+<polygon fill="#000000" stroke="none" points="1098.25,-2927.75 1098.25,-2929.75 1305.75,-2929.75 1305.75,-2927.75 1098.25,-2927.75"/>
+<polygon fill="#00ff00" stroke="none" points="1098.25,-2925.75 1098.25,-2927.75 1305.75,-2927.75 1305.75,-2925.75 1098.25,-2925.75"/>
+<polygon fill="#00ff00" stroke="none" points="1098.25,-2923.75 1098.25,-2925.75 1305.75,-2925.75 1305.75,-2923.75 1098.25,-2923.75"/>
+<polygon fill="#00ff00" stroke="none" points="1098.25,-2921.75 1098.25,-2923.75 1305.75,-2923.75 1305.75,-2921.75 1098.25,-2921.75"/>
+<polygon fill="#000000" stroke="none" points="1098.25,-2919.75 1098.25,-2921.75 1305.75,-2921.75 1305.75,-2919.75 1098.25,-2919.75"/>
+<text text-anchor="start" x="1107.46" y="-2904.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1137.12" y="-2884.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1098.25,-2877.75 1098.25,-2879.75 1305.75,-2879.75 1305.75,-2877.75 1098.25,-2877.75"/>
+<text text-anchor="start" x="1107.46" y="-2862.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1098.25,-2833.25 1098.25,-2857.75 1305.75,-2857.75 1305.75,-2833.25 1098.25,-2833.25"/>
+<text text-anchor="start" x="1107.88" y="-2840.45" font-family="arial" font-size="14.00">Twisted Pair | (Tail Mounted?)</text>
</g>
<!-- _S_7&#45;&#45;W18 -->
-<g id="edge148" class="edge">
+<g id="edge56" class="edge">
<title>_S_7:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3100C1297.73,-3100.45 1324.99,-3086.33 1383.34,-3125.76 1503.87,-3217.1 1392.3,-3423.65 1536,-3417.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3102C1298.65,-3102.22 1325.91,-3088.1 1382.17,-3127.38 1502.11,-3216.15 1390.54,-3422.7 1536,-3419.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3104C1299.57,-3104 1326.83,-3089.88 1381,-3129 1500.35,-3215.19 1388.78,-3421.75 1536,-3421.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-3106C1300.49,-3105.78 1327.75,-3091.66 1379.83,-3130.62 1498.59,-3214.24 1387.02,-3420.8 1536,-3423.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3108C1301.41,-3107.55 1328.67,-3093.43 1378.66,-3132.24 1496.83,-3213.29 1385.26,-3419.85 1536,-3425.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2949C900.76,-2949 940.09,-2950.75 1097.25,-2950.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2951C900.67,-2951 940,-2952.75 1097.25,-2952.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2953C900.59,-2953 939.91,-2954.75 1097.25,-2954.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M743.25,-2955C900.5,-2955 939.83,-2956.75 1097.25,-2956.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2957C900.41,-2957 939.74,-2958.75 1097.25,-2958.75"/>
</g>
<!-- _S_8 -->
-<g id="node34" class="node">
+<g id="node21" class="node">
<title>_S_8</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-3067.25 1186.25,-3067.25 1186.25,-3042.75 1231.75,-3042.75 1231.75,-3067.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-3042.75 1186.25,-3067.25 1231.75,-3067.25 1231.75,-3042.75 1186.25,-3042.75"/>
-<text text-anchor="start" x="1190.25" y="-3049.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="742.25,-2814.25 696.75,-2814.25 696.75,-2789.75 742.25,-2789.75 742.25,-2814.25"/>
+<polygon fill="none" stroke="black" points="696.75,-2789.75 696.75,-2814.25 742.25,-2814.25 742.25,-2789.75 696.75,-2789.75"/>
+<text text-anchor="start" x="700.75" y="-2796.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_8&#45;&#45;W18 -->
-<g id="edge150" class="edge">
+<g id="edge58" class="edge">
<title>_S_8:e&#45;&#45;W18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3051C1297.69,-3051.47 1325.45,-3036.66 1383.38,-3076.79 1508.76,-3174.16 1384.75,-3393.72 1536,-3387.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-3053C1298.63,-3053.24 1326.39,-3038.43 1382.19,-3078.39 1507.02,-3173.17 1383.01,-3392.73 1536,-3389.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-3055C1299.57,-3055 1327.33,-3040.19 1381,-3080 1505.28,-3172.19 1381.26,-3391.75 1536,-3391.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-3057C1300.51,-3056.76 1328.28,-3041.96 1379.81,-3081.61 1503.54,-3171.2 1379.52,-3390.77 1536,-3393.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-3059C1301.45,-3058.53 1329.22,-3043.72 1378.62,-3083.21 1501.79,-3170.22 1377.78,-3389.78 1536,-3395.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2798C808.95,-2798.21 825.82,-2803.97 887.19,-2823.18 988.69,-2857.37 997.76,-2924.21 1097.25,-2920.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2800C808.31,-2800.11 825.18,-2805.86 886.6,-2825.09 986.71,-2857.64 995.78,-2924.48 1097.25,-2922.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2802C807.66,-2802 824.53,-2807.76 886,-2827 984.73,-2857.91 993.8,-2924.75 1097.25,-2924.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M743.25,-2804C807.01,-2803.89 823.89,-2809.65 885.4,-2828.91 982.75,-2858.18 991.82,-2925.02 1097.25,-2926.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M743.25,-2806C806.37,-2805.79 823.24,-2811.54 884.81,-2830.82 980.76,-2858.44 989.83,-2925.29 1097.25,-2928.75"/>
</g>
<!-- _S_9 -->
-<g id="node35" class="node">
+<g id="node22" class="node">
<title>_S_9</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-1765.25 1186.25,-1765.25 1186.25,-1740.75 1231.75,-1740.75 1231.75,-1765.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-1740.75 1186.25,-1765.25 1231.75,-1765.25 1231.75,-1740.75 1186.25,-1740.75"/>
-<text text-anchor="start" x="1190.25" y="-1747.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-964.25 1179.25,-964.25 1179.25,-939.75 1224.75,-939.75 1224.75,-964.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-939.75 1179.25,-964.25 1224.75,-964.25 1224.75,-939.75 1179.25,-939.75"/>
+<text text-anchor="start" x="1183.25" y="-946.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W7 -->
+<g id="node32" class="node">
+<title>W7</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1847.25,-1046.75 1648,-1046.75 1648,-801.25 1847.25,-801.25 1847.25,-1046.75"/>
+<polygon fill="none" stroke="black" points="1648,-1022.25 1648,-1046.75 1847.25,-1046.75 1847.25,-1022.25 1648,-1022.25"/>
+<text text-anchor="start" x="1736.38" y="-1029.45" font-family="arial" font-size="14.00">W7</text>
+<polygon fill="none" stroke="black" points="1648,-997.75 1648,-1022.25 1671,-1022.25 1671,-997.75 1648,-997.75"/>
+<text text-anchor="start" x="1652" y="-1004.95" font-family="arial" font-size="14.00">3x</text>
+<polygon fill="none" stroke="black" points="1671,-997.75 1671,-1022.25 1734.5,-1022.25 1734.5,-997.75 1671,-997.75"/>
+<text text-anchor="start" x="1675" y="-1004.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1734.5,-997.75 1734.5,-1022.25 1764.25,-1022.25 1764.25,-997.75 1734.5,-997.75"/>
+<text text-anchor="start" x="1738.5" y="-1004.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1764.25,-997.75 1764.25,-1022.25 1847.25,-1022.25 1847.25,-997.75 1764.25,-997.75"/>
+<text text-anchor="start" x="1768.25" y="-1004.95" font-family="arial" font-size="14.00">13.0 Inches</text>
+<text text-anchor="start" x="1652.17" y="-982.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1665" y="-962.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1727.46" y="-962.45" font-family="arial" font-size="14.00">CEX:7:CAN_GND</text>
+<polygon fill="#000000" stroke="none" points="1648,-955.75 1648,-957.75 1847.25,-957.75 1847.25,-955.75 1648,-955.75"/>
+<polygon fill="#0066ff" stroke="none" points="1648,-953.75 1648,-955.75 1847.25,-955.75 1847.25,-953.75 1648,-953.75"/>
+<polygon fill="#0066ff" stroke="none" points="1648,-951.75 1648,-953.75 1847.25,-953.75 1847.25,-951.75 1648,-951.75"/>
+<polygon fill="#0066ff" stroke="none" points="1648,-949.75 1648,-951.75 1847.25,-951.75 1847.25,-949.75 1648,-949.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-947.75 1648,-949.75 1847.25,-949.75 1847.25,-947.75 1648,-947.75"/>
+<text text-anchor="start" x="1664.25" y="-932.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1733.46" y="-932.45" font-family="arial" font-size="14.00">CEX:8:CANB_P</text>
+<polygon fill="#000000" stroke="none" points="1648,-925.75 1648,-927.75 1847.25,-927.75 1847.25,-925.75 1648,-925.75"/>
+<polygon fill="#ff0000" stroke="none" points="1648,-923.75 1648,-925.75 1847.25,-925.75 1847.25,-923.75 1648,-923.75"/>
+<polygon fill="#ff0000" stroke="none" points="1648,-921.75 1648,-923.75 1847.25,-923.75 1847.25,-921.75 1648,-921.75"/>
+<polygon fill="#ff0000" stroke="none" points="1648,-919.75 1648,-921.75 1847.25,-921.75 1847.25,-919.75 1648,-919.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-917.75 1648,-919.75 1847.25,-919.75 1847.25,-917.75 1648,-917.75"/>
+<text text-anchor="start" x="1665" y="-902.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1733.46" y="-902.45" font-family="arial" font-size="14.00">CEX:9:CANB_N</text>
+<polygon fill="#000000" stroke="none" points="1648,-895.75 1648,-897.75 1847.25,-897.75 1847.25,-895.75 1648,-895.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-893.75 1648,-895.75 1847.25,-895.75 1847.25,-893.75 1648,-893.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-891.75 1648,-893.75 1847.25,-893.75 1847.25,-891.75 1648,-891.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-889.75 1648,-891.75 1847.25,-891.75 1847.25,-889.75 1648,-889.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-887.75 1648,-889.75 1847.25,-889.75 1847.25,-887.75 1648,-887.75"/>
+<text text-anchor="start" x="1652.17" y="-872.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1671.75" y="-852.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1648,-845.75 1648,-847.75 1847.25,-847.75 1847.25,-845.75 1648,-845.75"/>
+<text text-anchor="start" x="1652.17" y="-830.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1648,-801.25 1648,-825.75 1847.25,-825.75 1847.25,-801.25 1648,-801.25"/>
+<text text-anchor="start" x="1652.75" y="-808.45" font-family="arial" font-size="14.00">Twisted Pair | Veronte to CEX</text>
</g>
<!-- _S_9&#45;&#45;W7 -->
-<g id="edge34" class="edge">
+<g id="edge26" class="edge">
<title>_S_9:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-1749C1360.54,-1750.23 1391.43,-1717.98 1525,-1716.75"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1232.75,-1751C1361.98,-1751.62 1392.88,-1719.37 1525,-1718.75"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1232.75,-1753C1363.43,-1753 1394.32,-1720.75 1525,-1720.75"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1232.75,-1755C1364.87,-1754.38 1395.77,-1722.13 1525,-1722.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-1757C1366.32,-1755.77 1397.21,-1723.52 1525,-1724.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-948C1413.04,-948 1459.84,-948.75 1647,-948.75"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1225.75,-950C1413,-950 1459.81,-950.75 1647,-950.75"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1225.75,-952C1412.97,-952 1459.78,-952.75 1647,-952.75"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1225.75,-954C1412.94,-954 1459.75,-954.75 1647,-954.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-956C1412.91,-956 1459.71,-956.75 1647,-956.75"/>
</g>
<!-- _S_10 -->
-<g id="node36" class="node">
+<g id="node23" class="node">
<title>_S_10</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2330.25 1186.25,-2330.25 1186.25,-2305.75 1231.75,-2305.75 1231.75,-2330.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2305.75 1186.25,-2330.25 1231.75,-2330.25 1231.75,-2305.75 1186.25,-2305.75"/>
-<text text-anchor="start" x="1190.25" y="-2312.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1529.25 1179.25,-1529.25 1179.25,-1504.75 1224.75,-1504.75 1224.75,-1529.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1504.75 1179.25,-1529.25 1224.75,-1529.25 1224.75,-1504.75 1179.25,-1504.75"/>
+<text text-anchor="start" x="1183.25" y="-1511.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_10&#45;&#45;W7 -->
-<g id="edge36" class="edge">
+<g id="edge28" class="edge">
<title>_S_10:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2314C1301.71,-2314.62 1334.32,-2335.24 1378.27,-2290.08 1578.95,-2107.59 1246.67,-1693.25 1525,-1686.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1232.75,-2316C1300.64,-2316.31 1333.25,-2336.93 1379.63,-2291.54 1580.51,-2106.34 1248.23,-1692 1525,-1688.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1232.75,-2318C1299.57,-2318 1332.18,-2338.62 1381,-2293 1582.07,-2105.09 1249.79,-1690.75 1525,-1690.75"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1232.75,-2320C1298.5,-2319.69 1331.11,-2340.31 1382.37,-2294.46 1583.63,-2103.84 1251.35,-1689.5 1525,-1692.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2322C1297.43,-2321.38 1330.04,-2342 1383.73,-2295.92 1585.19,-2102.58 1252.91,-1688.25 1525,-1694.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1513C1294.63,-1513.57 1325.32,-1532.05 1371.4,-1488.96 1583.61,-1311.43 1362.94,-924.73 1647,-918.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1225.75,-1515C1293.6,-1515.29 1324.29,-1533.76 1372.7,-1490.48 1585.34,-1310.43 1364.67,-923.74 1647,-920.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1225.75,-1517C1292.57,-1517 1323.26,-1535.47 1374,-1492 1587.08,-1309.44 1366.41,-922.75 1647,-922.75"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1225.75,-1519C1291.54,-1518.71 1322.23,-1537.19 1375.3,-1493.52 1588.82,-1308.45 1368.15,-921.76 1647,-924.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1521C1290.51,-1520.43 1321.19,-1538.9 1376.6,-1495.04 1590.56,-1307.46 1369.88,-920.77 1647,-926.75"/>
</g>
<!-- _S_11 -->
-<g id="node37" class="node">
+<g id="node24" class="node">
<title>_S_11</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2281.25 1186.25,-2281.25 1186.25,-2256.75 1231.75,-2256.75 1231.75,-2281.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2256.75 1186.25,-2281.25 1231.75,-2281.25 1231.75,-2256.75 1186.25,-2256.75"/>
-<text text-anchor="start" x="1190.25" y="-2263.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1013.25 1179.25,-1013.25 1179.25,-988.75 1224.75,-988.75 1224.75,-1013.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-988.75 1179.25,-1013.25 1224.75,-1013.25 1224.75,-988.75 1179.25,-988.75"/>
+<text text-anchor="start" x="1183.25" y="-995.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_11&#45;&#45;W7 -->
-<g id="edge38" class="edge">
+<g id="edge30" class="edge">
<title>_S_11:e&#45;&#45;W7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2265C1301.69,-2265.65 1334.12,-2286.9 1378.29,-2242.06 1574.49,-2066.21 1254.43,-1663.24 1525,-1656.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2267C1300.59,-2267.33 1333.02,-2288.57 1379.64,-2243.53 1576.06,-2064.96 1256,-1661.99 1525,-1658.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2269C1299.5,-2269 1331.93,-2290.24 1381,-2245 1577.62,-2063.72 1257.56,-1660.75 1525,-1660.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2271C1298.4,-2270.67 1330.83,-2291.92 1382.36,-2246.47 1579.19,-2062.48 1259.13,-1659.51 1525,-1662.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2273C1297.3,-2272.35 1329.74,-2293.59 1383.71,-2247.94 1580.75,-2061.23 1260.69,-1658.26 1525,-1664.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-997C1290.54,-997.55 1306.93,-987.89 1373.08,-972.11 1493.78,-945.35 1516.46,-891.2 1647,-888.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-999C1291.55,-999.28 1307.95,-989.61 1373.54,-974.05 1495.62,-946.12 1518.31,-891.98 1647,-890.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1001C1292.57,-1001 1308.96,-991.33 1374,-976 1497.46,-946.89 1520.15,-892.75 1647,-892.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1003C1293.59,-1002.72 1309.98,-993.06 1374.46,-977.95 1499.31,-947.67 1522,-893.52 1647,-894.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1005C1294.6,-1004.45 1311,-994.78 1374.92,-979.89 1501.15,-948.44 1523.84,-894.3 1647,-896.75"/>
</g>
<!-- _S_12 -->
-<g id="node38" class="node">
+<g id="node25" class="node">
<title>_S_12</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2428.25 1186.25,-2428.25 1186.25,-2403.75 1231.75,-2403.75 1231.75,-2428.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2403.75 1186.25,-2428.25 1231.75,-2428.25 1231.75,-2403.75 1186.25,-2403.75"/>
-<text text-anchor="start" x="1190.25" y="-2410.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1627.25 1179.25,-1627.25 1179.25,-1602.75 1224.75,-1602.75 1224.75,-1627.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1602.75 1179.25,-1627.25 1224.75,-1627.25 1224.75,-1602.75 1179.25,-1602.75"/>
+<text text-anchor="start" x="1183.25" y="-1609.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W12 -->
+<g id="node35" class="node">
+<title>W12</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1847.25,-1723.75 1648,-1723.75 1648,-1508.25 1847.25,-1508.25 1847.25,-1723.75"/>
+<polygon fill="none" stroke="black" points="1648,-1699.25 1648,-1723.75 1847.25,-1723.75 1847.25,-1699.25 1648,-1699.25"/>
+<text text-anchor="start" x="1732.25" y="-1706.45" font-family="arial" font-size="14.00">W12</text>
+<polygon fill="none" stroke="black" points="1648,-1674.75 1648,-1699.25 1671,-1699.25 1671,-1674.75 1648,-1674.75"/>
+<text text-anchor="start" x="1652" y="-1681.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1671,-1674.75 1671,-1699.25 1734.5,-1699.25 1734.5,-1674.75 1671,-1674.75"/>
+<text text-anchor="start" x="1675" y="-1681.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1734.5,-1674.75 1734.5,-1699.25 1764.25,-1699.25 1764.25,-1674.75 1734.5,-1674.75"/>
+<text text-anchor="start" x="1738.5" y="-1681.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1764.25,-1674.75 1764.25,-1699.25 1847.25,-1699.25 1847.25,-1674.75 1764.25,-1674.75"/>
+<text text-anchor="start" x="1768.25" y="-1681.95" font-family="arial" font-size="14.00">73.0 Inches</text>
+<text text-anchor="start" x="1654.33" y="-1659.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1671.88" y="-1639.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1738.54" y="-1639.45" font-family="arial" font-size="14.00">Radar:2:CAN_H</text>
+<polygon fill="#000000" stroke="none" points="1648,-1632.75 1648,-1634.75 1847.25,-1634.75 1847.25,-1632.75 1648,-1632.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1630.75 1648,-1632.75 1847.25,-1632.75 1847.25,-1630.75 1648,-1630.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1628.75 1648,-1630.75 1847.25,-1630.75 1847.25,-1628.75 1648,-1628.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1626.75 1648,-1628.75 1847.25,-1628.75 1847.25,-1626.75 1648,-1626.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1624.75 1648,-1626.75 1847.25,-1626.75 1847.25,-1624.75 1648,-1624.75"/>
+<text text-anchor="start" x="1670.75" y="-1609.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1739.29" y="-1609.45" font-family="arial" font-size="14.00">Radar:1:CAN_L</text>
+<polygon fill="#000000" stroke="none" points="1648,-1602.75 1648,-1604.75 1847.25,-1604.75 1847.25,-1602.75 1648,-1602.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1600.75 1648,-1602.75 1847.25,-1602.75 1847.25,-1600.75 1648,-1600.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1598.75 1648,-1600.75 1847.25,-1600.75 1847.25,-1598.75 1648,-1598.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1596.75 1648,-1598.75 1847.25,-1598.75 1847.25,-1596.75 1648,-1596.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1594.75 1648,-1596.75 1847.25,-1596.75 1847.25,-1594.75 1648,-1594.75"/>
+<text text-anchor="start" x="1654.33" y="-1579.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1678.25" y="-1559.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1648,-1552.75 1648,-1554.75 1847.25,-1554.75 1847.25,-1552.75 1648,-1552.75"/>
+<text text-anchor="start" x="1654.33" y="-1537.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1648,-1508.25 1648,-1532.75 1847.25,-1532.75 1847.25,-1508.25 1648,-1508.25"/>
+<text text-anchor="start" x="1708.62" y="-1515.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_12&#45;&#45;W12 -->
-<g id="edge120" class="edge">
+<g id="edge36" class="edge">
<title>_S_12:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2412C1301.05,-2412.28 1325.36,-2421.95 1378.92,-2387.58 1472.15,-2334.88 1416.8,-2193.21 1531.5,-2187.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2414C1300.31,-2414.14 1324.62,-2423.81 1379.96,-2389.29 1474.01,-2334.15 1418.66,-2192.48 1531.5,-2189.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2416C1299.57,-2416 1323.88,-2425.67 1381,-2391 1475.87,-2333.42 1420.52,-2191.75 1531.5,-2191.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2418C1298.83,-2417.86 1323.14,-2427.53 1382.04,-2392.71 1477.74,-2332.69 1422.38,-2191.02 1531.5,-2193.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2420C1298.09,-2419.72 1322.4,-2429.38 1383.08,-2394.42 1479.6,-2331.97 1424.25,-2190.29 1531.5,-2195.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1611C1414.29,-1611.19 1460.87,-1625.94 1647,-1625.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1613C1413.69,-1613.09 1460.27,-1627.84 1647,-1627.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1615C1413.09,-1615 1459.66,-1629.75 1647,-1629.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1617C1412.48,-1616.91 1459.06,-1631.66 1647,-1631.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1619C1411.88,-1618.81 1458.46,-1633.56 1647,-1633.75"/>
</g>
<!-- _S_13 -->
-<g id="node39" class="node">
+<g id="node26" class="node">
<title>_S_13</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2379.25 1186.25,-2379.25 1186.25,-2354.75 1231.75,-2354.75 1231.75,-2379.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2354.75 1186.25,-2379.25 1231.75,-2379.25 1231.75,-2354.75 1186.25,-2354.75"/>
-<text text-anchor="start" x="1190.25" y="-2361.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1480.25 1179.25,-1480.25 1179.25,-1455.75 1224.75,-1455.75 1224.75,-1480.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1455.75 1179.25,-1480.25 1224.75,-1480.25 1224.75,-1455.75 1179.25,-1455.75"/>
+<text text-anchor="start" x="1183.25" y="-1462.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_13&#45;&#45;W12 -->
-<g id="edge122" class="edge">
+<g id="edge38" class="edge">
<title>_S_13:e&#45;&#45;W12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2363C1300.9,-2363.23 1324.38,-2371.49 1379.01,-2338.53 1467.73,-2291.35 1423.36,-2163.06 1531.5,-2157.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2365C1300.23,-2365.11 1323.71,-2373.38 1380,-2340.27 1469.62,-2290.7 1425.25,-2162.4 1531.5,-2159.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2367C1299.57,-2367 1323.05,-2375.26 1381,-2342 1471.51,-2290.05 1427.14,-2161.75 1531.5,-2161.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2369C1298.91,-2368.89 1322.39,-2377.15 1382,-2343.73 1473.4,-2289.39 1429.03,-2161.1 1531.5,-2163.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2371C1298.24,-2370.77 1321.72,-2379.04 1382.99,-2345.47 1475.29,-2288.74 1430.92,-2160.44 1531.5,-2165.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1464C1294.12,-1464.31 1311.15,-1471.5 1375.07,-1489.14 1503.45,-1526.81 1520.61,-1598.82 1647,-1595.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1466C1293.35,-1466.16 1310.38,-1473.34 1374.53,-1491.07 1501.51,-1527.27 1518.67,-1599.29 1647,-1597.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1468C1292.57,-1468 1309.6,-1475.18 1374,-1493 1499.56,-1527.74 1516.72,-1599.75 1647,-1599.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1470C1291.79,-1469.84 1308.82,-1477.03 1373.47,-1494.93 1497.62,-1528.2 1514.77,-1600.21 1647,-1601.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1472C1291.01,-1471.69 1308.05,-1478.87 1372.93,-1496.86 1495.67,-1528.66 1512.83,-1600.68 1647,-1603.75"/>
</g>
<!-- _S_14 -->
-<g id="node40" class="node">
+<g id="node27" class="node">
<title>_S_14</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2526.25 1186.25,-2526.25 1186.25,-2501.75 1231.75,-2501.75 1231.75,-2526.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2501.75 1186.25,-2526.25 1231.75,-2526.25 1231.75,-2501.75 1186.25,-2501.75"/>
-<text text-anchor="start" x="1190.25" y="-2508.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1578.25 1179.25,-1578.25 1179.25,-1553.75 1224.75,-1553.75 1224.75,-1578.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1553.75 1179.25,-1578.25 1224.75,-1578.25 1224.75,-1553.75 1179.25,-1553.75"/>
+<text text-anchor="start" x="1183.25" y="-1560.95" font-family="arial" font-size="14.00">splice</text>
+</g>
+<!-- W11 -->
+<g id="node34" class="node">
+<title>W11</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1847.25,-1286.75 1648,-1286.75 1648,-1071.25 1847.25,-1071.25 1847.25,-1286.75"/>
+<polygon fill="none" stroke="black" points="1648,-1262.25 1648,-1286.75 1847.25,-1286.75 1847.25,-1262.25 1648,-1262.25"/>
+<text text-anchor="start" x="1732.25" y="-1269.45" font-family="arial" font-size="14.00">W11</text>
+<polygon fill="none" stroke="black" points="1648,-1237.75 1648,-1262.25 1671,-1262.25 1671,-1237.75 1648,-1237.75"/>
+<text text-anchor="start" x="1652" y="-1244.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="1671,-1237.75 1671,-1262.25 1734.5,-1262.25 1734.5,-1237.75 1671,-1237.75"/>
+<text text-anchor="start" x="1675" y="-1244.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="1734.5,-1237.75 1734.5,-1262.25 1764.25,-1262.25 1764.25,-1237.75 1734.5,-1237.75"/>
+<text text-anchor="start" x="1738.5" y="-1244.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="1764.25,-1237.75 1764.25,-1262.25 1847.25,-1262.25 1847.25,-1237.75 1764.25,-1237.75"/>
+<text text-anchor="start" x="1768.25" y="-1244.95" font-family="arial" font-size="14.00">73.0 Inches</text>
+<text text-anchor="start" x="1651.83" y="-1222.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1664.38" y="-1202.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1726.04" y="-1202.45" font-family="arial" font-size="14.00">Resistor:2:CAN_H</text>
+<polygon fill="#000000" stroke="none" points="1648,-1195.75 1648,-1197.75 1847.25,-1197.75 1847.25,-1195.75 1648,-1195.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1193.75 1648,-1195.75 1847.25,-1195.75 1847.25,-1193.75 1648,-1193.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1191.75 1648,-1193.75 1847.25,-1193.75 1847.25,-1191.75 1648,-1191.75"/>
+<polygon fill="#ffff00" stroke="none" points="1648,-1189.75 1648,-1191.75 1847.25,-1191.75 1847.25,-1189.75 1648,-1189.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1187.75 1648,-1189.75 1847.25,-1189.75 1847.25,-1187.75 1648,-1187.75"/>
+<text text-anchor="start" x="1663.25" y="-1172.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<text text-anchor="start" x="1726.79" y="-1172.45" font-family="arial" font-size="14.00">Resistor:1:CAN_L</text>
+<polygon fill="#000000" stroke="none" points="1648,-1165.75 1648,-1167.75 1847.25,-1167.75 1847.25,-1165.75 1648,-1165.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1163.75 1648,-1165.75 1847.25,-1165.75 1847.25,-1163.75 1648,-1163.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1161.75 1648,-1163.75 1847.25,-1163.75 1847.25,-1161.75 1648,-1161.75"/>
+<polygon fill="#00ff00" stroke="none" points="1648,-1159.75 1648,-1161.75 1847.25,-1161.75 1847.25,-1159.75 1648,-1159.75"/>
+<polygon fill="#000000" stroke="none" points="1648,-1157.75 1648,-1159.75 1847.25,-1159.75 1847.25,-1157.75 1648,-1157.75"/>
+<text text-anchor="start" x="1651.83" y="-1142.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="1670.75" y="-1122.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="1648,-1115.75 1648,-1117.75 1847.25,-1117.75 1847.25,-1115.75 1648,-1115.75"/>
+<text text-anchor="start" x="1651.83" y="-1100.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="1648,-1071.25 1648,-1095.75 1847.25,-1095.75 1847.25,-1071.25 1648,-1071.25"/>
+<text text-anchor="start" x="1708.62" y="-1078.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_14&#45;&#45;W11 -->
-<g id="edge114" class="edge">
+<g id="edge32" class="edge">
<title>_S_14:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2510C1298.05,-2510.3 1315.13,-2503.3 1379.92,-2485.15 1443.43,-2469.56 1452.23,-2430.86 1525,-2427.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2512C1298.81,-2512.15 1315.89,-2505.15 1380.46,-2487.07 1445.38,-2470 1454.18,-2431.31 1525,-2429.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2514C1299.57,-2514 1316.65,-2507 1381,-2489 1447.33,-2470.45 1456.13,-2431.75 1525,-2431.75"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1232.75,-2516C1300.33,-2515.85 1317.41,-2508.85 1381.54,-2490.93 1449.28,-2470.89 1458.08,-2432.19 1525,-2433.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2518C1301.09,-2517.7 1318.17,-2510.7 1382.08,-2492.85 1451.23,-2471.34 1460.03,-2432.64 1525,-2435.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1562C1293.99,-1562.26 1317.99,-1571.42 1371.96,-1537.56 1539.29,-1441.88 1446.59,-1194.15 1647,-1188.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1564C1293.28,-1564.13 1317.28,-1573.28 1372.98,-1539.28 1541.16,-1441.18 1448.46,-1193.45 1647,-1190.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1566C1292.57,-1566 1316.57,-1575.15 1374,-1541 1543.04,-1440.48 1450.33,-1192.75 1647,-1192.75"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1225.75,-1568C1291.86,-1567.87 1315.86,-1577.02 1375.02,-1542.72 1544.91,-1439.78 1452.21,-1192.05 1647,-1194.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1570C1291.14,-1569.74 1315.14,-1578.89 1376.04,-1544.44 1546.78,-1439.08 1454.08,-1191.35 1647,-1196.75"/>
</g>
<!-- _S_15 -->
-<g id="node41" class="node">
+<g id="node28" class="node">
<title>_S_15</title>
-<polygon fill="#ffffff" stroke="black" points="1231.75,-2477.25 1186.25,-2477.25 1186.25,-2452.75 1231.75,-2452.75 1231.75,-2477.25"/>
-<polygon fill="none" stroke="black" points="1186.25,-2452.75 1186.25,-2477.25 1231.75,-2477.25 1231.75,-2452.75 1186.25,-2452.75"/>
-<text text-anchor="start" x="1190.25" y="-2459.95" font-family="arial" font-size="14.00">splice</text>
+<polygon fill="#ffffff" stroke="black" points="1224.75,-1062.25 1179.25,-1062.25 1179.25,-1037.75 1224.75,-1037.75 1224.75,-1062.25"/>
+<polygon fill="none" stroke="black" points="1179.25,-1037.75 1179.25,-1062.25 1224.75,-1062.25 1224.75,-1037.75 1179.25,-1037.75"/>
+<text text-anchor="start" x="1183.25" y="-1044.95" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_15&#45;&#45;W11 -->
-<g id="edge116" class="edge">
+<g id="edge34" class="edge">
<title>_S_15:e&#45;&#45;W11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2461C1297.34,-2461.68 1313.46,-2450.83 1380.15,-2436.09 1442.2,-2424.08 1455.26,-2399.85 1525,-2397.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2463C1298.45,-2463.34 1314.58,-2452.49 1380.58,-2438.05 1443.96,-2425.03 1457.02,-2400.8 1525,-2399.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2465C1299.57,-2465 1315.7,-2454.15 1381,-2440 1445.72,-2425.98 1458.78,-2401.75 1525,-2401.75"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1232.75,-2467C1300.69,-2466.66 1316.81,-2455.81 1381.42,-2441.95 1447.48,-2426.93 1460.54,-2402.7 1525,-2403.75"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1232.75,-2469C1301.8,-2468.32 1317.93,-2457.47 1381.85,-2443.91 1449.24,-2427.88 1462.3,-2403.65 1525,-2405.75"/>
-</g>
-<!-- _GND_14 -->
-<g id="node42" class="node">
-<title>_GND_14</title>
-<polygon fill="#ffffff" stroke="black" points="1228.75,-3165.25 1189.25,-3165.25 1189.25,-3140.75 1228.75,-3140.75 1228.75,-3165.25"/>
-<polygon fill="none" stroke="black" points="1189.25,-3140.75 1189.25,-3165.25 1228.75,-3165.25 1228.75,-3140.75 1189.25,-3140.75"/>
-<text text-anchor="start" x="1193.25" y="-3147.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_15 -->
-<g id="node43" class="node">
-<title>_GND_15</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-3197.25 2162.88,-3197.25 2162.88,-3172.75 2202.38,-3172.75 2202.38,-3197.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-3172.75 2162.88,-3197.25 2202.38,-3197.25 2202.38,-3172.75 2162.88,-3172.75"/>
-<text text-anchor="start" x="2166.88" y="-3179.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_16 -->
-<g id="node44" class="node">
-<title>_GND_16</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-2533.25 2162.88,-2533.25 2162.88,-2508.75 2202.38,-2508.75 2202.38,-2533.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-2508.75 2162.88,-2533.25 2202.38,-2533.25 2202.38,-2508.75 2162.88,-2508.75"/>
-<text text-anchor="start" x="2166.88" y="-2515.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_17 -->
-<g id="node45" class="node">
-<title>_GND_17</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-3367.25 2162.88,-3367.25 2162.88,-3342.75 2202.38,-3342.75 2202.38,-3367.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-3342.75 2162.88,-3367.25 2202.38,-3367.25 2202.38,-3342.75 2162.88,-3342.75"/>
-<text text-anchor="start" x="2166.88" y="-3349.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_18 -->
-<g id="node46" class="node">
-<title>_GND_18</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-2703.25 2162.88,-2703.25 2162.88,-2678.75 2202.38,-2678.75 2202.38,-2703.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-2678.75 2162.88,-2703.25 2202.38,-2703.25 2202.38,-2678.75 2162.88,-2678.75"/>
-<text text-anchor="start" x="2166.88" y="-2685.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_19 -->
-<g id="node47" class="node">
-<title>_GND_19</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-1139.25 2162.88,-1139.25 2162.88,-1114.75 2202.38,-1114.75 2202.38,-1139.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-1114.75 2162.88,-1139.25 2202.38,-1139.25 2202.38,-1114.75 2162.88,-1114.75"/>
-<text text-anchor="start" x="2166.88" y="-1121.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_20 -->
-<g id="node48" class="node">
-<title>_GND_20</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-2363.25 2162.88,-2363.25 2162.88,-2338.75 2202.38,-2338.75 2202.38,-2363.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-2338.75 2162.88,-2363.25 2202.38,-2363.25 2202.38,-2338.75 2162.88,-2338.75"/>
-<text text-anchor="start" x="2166.88" y="-2345.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_21 -->
-<g id="node49" class="node">
-<title>_GND_21</title>
-<polygon fill="#ffffff" stroke="black" points="2202.38,-1781.25 2162.88,-1781.25 2162.88,-1756.75 2202.38,-1756.75 2202.38,-1781.25"/>
-<polygon fill="none" stroke="black" points="2162.88,-1756.75 2162.88,-1781.25 2202.38,-1781.25 2202.38,-1756.75 2162.88,-1756.75"/>
-<text text-anchor="start" x="2166.88" y="-1763.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_22 -->
-<g id="node50" class="node">
-<title>_GND_22</title>
-<polygon fill="#ffffff" stroke="black" points="224.25,-3138.25 184.75,-3138.25 184.75,-3113.75 224.25,-3113.75 224.25,-3138.25"/>
-<polygon fill="none" stroke="black" points="184.75,-3113.75 184.75,-3138.25 224.25,-3138.25 224.25,-3113.75 184.75,-3113.75"/>
-<text text-anchor="start" x="188.75" y="-3120.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_22&#45;&#45;W3 -->
-<g id="edge18" class="edge">
-<title>_GND_22:e&#45;&#45;W3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-3126C373.36,-3126 410.39,-3125.75 558.5,-3125.75"/>
-</g>
-<!-- _GND_23 -->
-<g id="node51" class="node">
-<title>_GND_23</title>
-<polygon fill="#ffffff" stroke="black" points="224.25,-2825.25 184.75,-2825.25 184.75,-2800.75 224.25,-2800.75 224.25,-2825.25"/>
-<polygon fill="none" stroke="black" points="184.75,-2800.75 184.75,-2825.25 224.25,-2825.25 224.25,-2800.75 184.75,-2800.75"/>
-<text text-anchor="start" x="188.75" y="-2807.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_23&#45;&#45;W1 -->
-<g id="edge12" class="edge">
-<title>_GND_23:e&#45;&#45;W1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-2813C371.81,-2813 408.44,-2812.75 555,-2812.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1046C1294.28,-1046.42 1310.91,-1054.72 1374.94,-1070.11 1501.76,-1102.64 1523.17,-1161.38 1647,-1158.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1048C1293.39,-1048.21 1310.02,-1056.51 1374.47,-1072.06 1499.88,-1103.32 1521.3,-1162.07 1647,-1160.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1050C1292.5,-1050 1309.13,-1058.3 1374,-1074 1498.01,-1104.01 1519.42,-1162.75 1647,-1162.75"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1225.75,-1052C1291.6,-1051.79 1308.23,-1060.09 1373.53,-1075.94 1496.13,-1104.69 1517.54,-1163.43 1647,-1164.75"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1225.75,-1054C1290.71,-1053.58 1307.34,-1061.88 1373.06,-1077.89 1494.25,-1105.38 1515.66,-1164.12 1647,-1166.75"/>
</g>
-<!-- _GND_24 -->
-<g id="node52" class="node">
-<title>_GND_24</title>
-<polygon fill="#ffffff" stroke="black" points="224.25,-2292.25 184.75,-2292.25 184.75,-2267.75 224.25,-2267.75 224.25,-2292.25"/>
-<polygon fill="none" stroke="black" points="184.75,-2267.75 184.75,-2292.25 224.25,-2292.25 224.25,-2267.75 184.75,-2267.75"/>
-<text text-anchor="start" x="188.75" y="-2274.95" font-family="arial" font-size="14.00">GND</text>
-</g>
-<!-- _GND_24&#45;&#45;W6 -->
-<g id="edge33" class="edge">
-<title>_GND_24:e&#45;&#45;W6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-2280C370.92,-2280 407.33,-2279.75 553,-2279.75"/>
-</g>
-<!-- W1&#45;&#45;shield2 -->
-<g id="edge11" class="edge">
-<title>W1:e&#45;&#45;shield2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2812.75C1016.15,-2812.75 1042.73,-2761.5 1167.88,-2761.5"/>
+<!-- W1 -->
+<g id="node29" class="node">
+<title>W1</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="292.12,-2935.75 116.88,-2935.75 116.88,-2720.25 292.12,-2720.25 292.12,-2935.75"/>
+<polygon fill="none" stroke="black" points="116.88,-2911.25 116.88,-2935.75 292.12,-2935.75 292.12,-2911.25 116.88,-2911.25"/>
+<text text-anchor="start" x="193.25" y="-2918.45" font-family="arial" font-size="14.00">W1</text>
+<polygon fill="none" stroke="black" points="116.88,-2886.75 116.88,-2911.25 139.88,-2911.25 139.88,-2886.75 116.88,-2886.75"/>
+<text text-anchor="start" x="120.88" y="-2893.95" font-family="arial" font-size="14.00">2x</text>
+<polygon fill="none" stroke="black" points="139.88,-2886.75 139.88,-2911.25 203.38,-2911.25 203.38,-2886.75 139.88,-2886.75"/>
+<text text-anchor="start" x="143.88" y="-2893.95" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="203.38,-2886.75 203.38,-2911.25 233.12,-2911.25 233.12,-2886.75 203.38,-2886.75"/>
+<text text-anchor="start" x="207.38" y="-2893.95" font-family="arial" font-size="14.00">+ S</text>
+<polygon fill="none" stroke="black" points="233.12,-2886.75 233.12,-2911.25 292.12,-2911.25 292.12,-2886.75 233.12,-2886.75"/>
+<text text-anchor="start" x="237.12" y="-2893.95" font-family="arial" font-size="14.00">1.0 Inch</text>
+<text text-anchor="start" x="132.38" y="-2871.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="167.38" y="-2851.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="116.88,-2844.75 116.88,-2846.75 292.12,-2846.75 292.12,-2844.75 116.88,-2844.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2842.75 116.88,-2844.75 292.12,-2844.75 292.12,-2842.75 116.88,-2842.75"/>
+<polygon fill="#ffffff" stroke="none" points="116.88,-2840.75 116.88,-2842.75 292.12,-2842.75 292.12,-2840.75 116.88,-2840.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2838.75 116.88,-2840.75 292.12,-2840.75 292.12,-2838.75 116.88,-2838.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2836.75 116.88,-2838.75 292.12,-2838.75 292.12,-2836.75 116.88,-2836.75"/>
+<text text-anchor="start" x="169.62" y="-2821.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="116.88,-2814.75 116.88,-2816.75 292.12,-2816.75 292.12,-2814.75 116.88,-2814.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2812.75 116.88,-2814.75 292.12,-2814.75 292.12,-2812.75 116.88,-2812.75"/>
+<polygon fill="#895956" stroke="none" points="116.88,-2810.75 116.88,-2812.75 292.12,-2812.75 292.12,-2810.75 116.88,-2810.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2808.75 116.88,-2810.75 292.12,-2810.75 292.12,-2808.75 116.88,-2808.75"/>
+<polygon fill="#000000" stroke="none" points="116.88,-2806.75 116.88,-2808.75 292.12,-2808.75 292.12,-2806.75 116.88,-2806.75"/>
+<text text-anchor="start" x="132.38" y="-2791.45" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="186.12" y="-2771.45" font-family="arial" font-size="14.00">Shield</text>
+<polygon fill="#000000" stroke="none" points="116.88,-2764.75 116.88,-2766.75 292.12,-2766.75 292.12,-2764.75 116.88,-2764.75"/>
+<text text-anchor="start" x="132.38" y="-2749.45" font-family="arial" font-size="14.00"> </text>
+<polygon fill="none" stroke="black" points="116.88,-2720.25 116.88,-2744.75 292.12,-2744.75 292.12,-2720.25 116.88,-2720.25"/>
+<text text-anchor="start" x="165.5" y="-2727.45" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- W1&#45;&#45;_S_1 -->
-<g id="edge3" class="edge">
+<g id="edge1" class="edge">
<title>W1:e&#45;&#45;_S_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C1024.11,-2885.32 1056.25,-2904.57 1185.25,-2904"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C1023.09,-2887.03 1055.22,-2906.28 1185.25,-2906"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C1022.06,-2888.75 1054.19,-2908 1185.25,-2908"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C1021.03,-2890.47 1053.16,-2909.72 1185.25,-2910"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C1020,-2892.18 1052.14,-2911.43 1185.25,-2912"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C527.38,-2842.45 469.37,-3168.7 695.75,-3164"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C525.41,-2842.1 467.4,-3168.35 695.75,-3166"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C523.44,-2841.75 465.43,-3168 695.75,-3168"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C521.47,-2841.4 463.46,-3167.65 695.75,-3170"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C519.5,-2841.05 461.49,-3167.3 695.75,-3172"/>
</g>
<!-- W1&#45;&#45;_S_2 -->
-<g id="edge4" class="edge">
+<g id="edge2" class="edge">
<title>W1:e&#45;&#45;_S_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C1021.81,-2854.75 1054.5,-2855 1185.25,-2855"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C1021.79,-2856.75 1054.49,-2857 1185.25,-2857"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C1021.78,-2858.75 1054.47,-2859 1185.25,-2859"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C1021.76,-2860.75 1054.46,-2861 1185.25,-2861"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C1021.75,-2862.75 1054.44,-2863 1185.25,-2863"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C480.33,-2810.29 515.99,-2901.54 695.75,-2899"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C478.47,-2811.02 514.13,-2902.27 695.75,-2901"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C476.61,-2811.75 512.27,-2903 695.75,-2903"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C474.74,-2812.48 510.4,-2903.73 695.75,-2905"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C472.88,-2813.21 508.54,-2904.46 695.75,-2907"/>
</g>
<!-- W1&#45;&#45;_S_3 -->
-<g id="edge5" class="edge">
+<g id="edge3" class="edge">
<title>W1:e&#45;&#45;_S_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C980.74,-2889.82 951.11,-2783.12 1035.07,-2733.49 1096.35,-2700.66 1118.45,-2703.02 1185.25,-2703"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C982.66,-2889.29 953.04,-2782.58 1036.04,-2735.25 1096.14,-2702.65 1118.24,-2705.01 1185.25,-2705"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C984.59,-2888.75 954.96,-2782.05 1037,-2737 1095.92,-2704.64 1118.03,-2707 1185.25,-2707"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C986.52,-2888.21 956.89,-2781.51 1037.96,-2738.75 1095.71,-2706.63 1117.81,-2708.99 1185.25,-2709"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C988.45,-2887.68 958.82,-2780.98 1038.93,-2740.51 1095.5,-2708.62 1117.6,-2710.98 1185.25,-2711"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C473.2,-2840.37 508.16,-2745.62 695.75,-2743"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C475.08,-2841.06 510.04,-2746.31 695.75,-2745"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C476.96,-2841.75 511.92,-2747 695.75,-2747"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C478.83,-2842.44 513.79,-2747.69 695.75,-2749"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C480.71,-2843.13 515.67,-2748.38 695.75,-2751"/>
</g>
<!-- W1&#45;&#45;_S_4 -->
-<g id="edge6" class="edge">
+<g id="edge4" class="edge">
<title>W1:e&#45;&#45;_S_4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C988.76,-2860.04 947.24,-2738.33 1034.87,-2679.61 1094.35,-2642.87 1117.19,-2642 1185.25,-2642"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C990.65,-2859.4 949.13,-2737.68 1035.94,-2681.31 1094.42,-2644.87 1117.26,-2644 1185.25,-2644"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C992.55,-2858.75 951.02,-2737.03 1037,-2683 1094.5,-2646.86 1117.34,-2646 1185.25,-2646"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C994.44,-2858.1 952.92,-2736.39 1038.06,-2684.69 1094.57,-2648.86 1117.42,-2648 1185.25,-2648"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C996.33,-2857.46 954.81,-2735.74 1039.13,-2686.39 1094.65,-2650.86 1117.49,-2650 1185.25,-2650"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C505.04,-2812.18 475.88,-2540.43 695.75,-2536"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C507.03,-2811.96 477.87,-2540.21 695.75,-2538"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C509.01,-2811.75 479.86,-2540 695.75,-2540"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C511,-2811.54 481.85,-2539.79 695.75,-2542"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C512.99,-2811.32 483.84,-2539.57 695.75,-2544"/>
</g>
<!-- W1&#45;&#45;_S_5 -->
-<g id="edge7" class="edge">
+<g id="edge5" class="edge">
<title>W1:e&#45;&#45;_S_5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C971.75,-2888.9 969.3,-2953.73 1038.43,-2977.26 1099.65,-3000.88 1118.67,-3002.01 1185.25,-3002"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C969.76,-2888.83 967.31,-2953.66 1037.71,-2979.13 1099.53,-3002.87 1118.55,-3004 1185.25,-3004"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C967.76,-2888.75 965.31,-2953.58 1037,-2981 1099.41,-3004.87 1118.43,-3006 1185.25,-3006"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C965.76,-2888.67 963.31,-2953.51 1036.29,-2982.87 1099.29,-3006.87 1118.31,-3008 1185.25,-3008"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C963.76,-2888.6 961.31,-2953.43 1035.57,-2984.74 1099.17,-3008.86 1118.19,-3009.99 1185.25,-3010"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C472.93,-2837.83 517.57,-2847.08 695.75,-2847"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C472.52,-2839.79 517.16,-2849.04 695.75,-2849"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C472.12,-2841.75 516.76,-2851 695.75,-2851"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C471.71,-2843.71 516.35,-2852.96 695.75,-2853"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C471.31,-2845.67 515.95,-2854.92 695.75,-2855"/>
</g>
<!-- W1&#45;&#45;_S_6 -->
-<g id="edge8" class="edge">
+<g id="edge6" class="edge">
<title>W1:e&#45;&#45;_S_6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C967.58,-2858.4 971.98,-2909.09 1038.24,-2928.2 1101.43,-2948.87 1119.35,-2953.11 1185.25,-2953"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C965.59,-2858.58 969.99,-2909.26 1037.62,-2930.1 1100.97,-2950.82 1118.89,-2955.05 1185.25,-2955"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C963.6,-2858.75 968,-2909.44 1037,-2932 1100.51,-2952.77 1118.43,-2957 1185.25,-2957"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C961.61,-2858.92 966.01,-2909.61 1036.38,-2933.9 1100.05,-2954.71 1117.97,-2958.95 1185.25,-2959"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C959.61,-2859.1 964.01,-2909.78 1035.76,-2935.8 1099.59,-2956.66 1117.51,-2960.89 1185.25,-2961"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C476.69,-2810.89 504.37,-2685.14 695.75,-2682"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C478.64,-2811.32 506.33,-2685.57 695.75,-2684"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C480.59,-2811.75 508.28,-2686 695.75,-2686"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C482.55,-2812.18 510.23,-2686.43 695.75,-2688"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C484.5,-2812.61 512.19,-2686.86 695.75,-2690"/>
</g>
<!-- W1&#45;&#45;_S_7 -->
-<g id="edge9" class="edge">
+<g id="edge7" class="edge">
<title>W1:e&#45;&#45;_S_7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2884.75C1001.32,-2890.18 949.41,-3025.48 1039.06,-3075.57 1092.8,-3109.72 1116.97,-3100.27 1185.25,-3100"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2886.75C999.45,-2889.47 947.54,-3024.77 1038.03,-3077.29 1093.53,-3111.59 1117.7,-3102.14 1185.25,-3102"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M891,-2888.75C997.58,-2888.75 945.67,-3024.05 1037,-3079 1094.25,-3113.45 1118.43,-3104 1185.25,-3104"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2890.75C995.72,-2888.03 943.81,-3023.33 1035.97,-3080.71 1094.98,-3115.31 1119.16,-3105.86 1185.25,-3106"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2892.75C993.85,-2887.32 941.94,-3022.62 1034.94,-3082.43 1095.71,-3117.17 1119.89,-3107.73 1185.25,-3108"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2837.75C418.43,-2840.36 438.93,-2895.71 553.98,-2923.12 617.67,-2939.5 633.43,-2949.64 695.75,-2949"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2839.75C416.56,-2841.06 437.06,-2896.4 553.49,-2925.06 616.59,-2941.18 632.34,-2951.32 695.75,-2951"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M293.12,-2841.75C414.68,-2841.75 435.18,-2897.09 553,-2927 615.51,-2942.87 631.26,-2953 695.75,-2953"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2843.75C412.81,-2842.44 433.3,-2897.79 552.51,-2928.94 614.42,-2944.55 630.18,-2954.68 695.75,-2955"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2845.75C410.93,-2843.14 431.43,-2898.48 552.02,-2930.88 613.34,-2946.23 629.1,-2956.36 695.75,-2957"/>
</g>
<!-- W1&#45;&#45;_S_8 -->
-<g id="edge10" class="edge">
+<g id="edge8" class="edge">
<title>W1:e&#45;&#45;_S_8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2854.75C994.81,-2860.03 953.79,-2981.93 1038.97,-3026.52 1093.83,-3059.18 1117.14,-3051.21 1185.25,-3051"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2856.75C992.91,-2859.39 951.9,-2981.29 1037.99,-3028.26 1094.47,-3061.07 1117.78,-3053.11 1185.25,-3053"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M891,-2858.75C991.02,-2858.75 950,-2980.66 1037,-3030 1095.12,-3062.97 1118.43,-3055 1185.25,-3055"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2860.75C989.12,-2858.11 948.11,-2980.02 1036.01,-3031.74 1095.77,-3064.86 1119.08,-3056.89 1185.25,-3057"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M891,-2862.75C987.23,-2857.47 946.21,-2979.38 1035.03,-3033.48 1096.41,-3066.75 1119.72,-3058.79 1185.25,-3059"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2807.75C471.27,-2807.84 515.9,-2798.09 695.75,-2798"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2809.75C471.7,-2809.8 516.33,-2800.05 695.75,-2800"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M293.12,-2811.75C472.12,-2811.75 516.75,-2802 695.75,-2802"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2813.75C472.55,-2813.7 517.18,-2803.95 695.75,-2804"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M293.12,-2815.75C472.98,-2815.66 517.61,-2805.91 695.75,-2806"/>
</g>
<!-- W3&#45;&#45;Radio -->
-<g id="edge14" class="edge">
+<g id="edge10" class="edge">
<title>W3:e&#45;&#45;Radio:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3197.75C1012.19,-3197.75 1043.37,-3197.5 1168.12,-3197.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M887.5,-3199.75C1012.21,-3199.75 1043.39,-3199.5 1168.12,-3199.5"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M887.5,-3201.75C1012.22,-3201.75 1043.4,-3201.5 1168.12,-3201.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M887.5,-3203.75C1012.24,-3203.75 1043.42,-3203.5 1168.12,-3203.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3205.75C1012.25,-3205.75 1043.43,-3205.5 1168.12,-3205.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1686.75C1005.05,-1687.81 1034.66,-1660.56 1161.12,-1659.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M884,-1688.75C1006.41,-1689.28 1036.01,-1662.03 1161.12,-1661.5"/>
+<path fill="none" stroke="#ffffff" stroke-width="2" d="M884,-1690.75C1007.76,-1690.75 1037.36,-1663.5 1161.12,-1663.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M884,-1692.75C1009.12,-1692.22 1038.72,-1664.97 1161.12,-1665.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1694.75C1010.47,-1693.69 1040.07,-1666.44 1161.12,-1667.5"/>
</g>
<!-- W3&#45;&#45;Radio -->
-<g id="edge16" class="edge">
+<g id="edge12" class="edge">
<title>W3:e&#45;&#45;Radio:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3167.75C1018.07,-3169.97 1044.72,-3223.72 1168.12,-3221.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M887.5,-3169.75C1016.28,-3170.86 1042.93,-3224.61 1168.12,-3223.5"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M887.5,-3171.75C1014.49,-3171.75 1041.14,-3225.5 1168.12,-3225.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M887.5,-3173.75C1012.7,-3172.64 1039.34,-3226.39 1168.12,-3227.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3175.75C1010.91,-3173.53 1037.55,-3227.28 1168.12,-3229.5"/>
-</g>
-<!-- W3&#45;&#45;_GND_14 -->
-<g id="edge17" class="edge">
-<title>W3:e&#45;&#45;_GND_14:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M887.5,-3125.75C1021.71,-3125.75 1054.04,-3153 1188.25,-3153"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1656.75C1010.42,-1657.78 1040.07,-1684.53 1161.12,-1683.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M884,-1658.75C1009.08,-1659.27 1038.73,-1686.02 1161.12,-1685.5"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M884,-1660.75C1007.74,-1660.75 1037.39,-1687.5 1161.12,-1687.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M884,-1662.75C1006.4,-1662.23 1036.05,-1688.98 1161.12,-1689.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M884,-1664.75C1005.06,-1663.72 1034.71,-1690.47 1161.12,-1691.5"/>
</g>
<!-- W6&#45;&#45;ECU CAN Bus -->
-<g id="edge25" class="edge">
+<g id="edge19" class="edge">
<title>W6:e&#45;&#45;ECU CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C1018.8,-2386.84 958.01,-2173.09 1091.5,-2168"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C1020.72,-2386.3 959.93,-2172.55 1091.5,-2170"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C1022.65,-2385.75 961.85,-2172 1091.5,-2172"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C1024.57,-2385.2 963.78,-2171.45 1091.5,-2174"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C1026.49,-2384.66 965.7,-2170.91 1091.5,-2176"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C950.38,-1449.97 966.28,-1370.22 1084.5,-1367"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C952.34,-1450.36 968.24,-1370.61 1084.5,-1369"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C954.3,-1450.75 970.2,-1371 1084.5,-1371"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C956.26,-1451.14 972.16,-1371.39 1084.5,-1373"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C958.22,-1451.53 974.12,-1371.78 1084.5,-1375"/>
</g>
<!-- W6&#45;&#45;ECU CAN Bus -->
-<g id="edge27" class="edge">
+<g id="edge21" class="edge">
<title>W6:e&#45;&#45;ECU CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C1016.85,-2356.81 959.94,-2149.06 1091.5,-2144"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C1018.78,-2356.28 961.87,-2148.53 1091.5,-2146"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C1020.71,-2355.75 963.79,-2148 1091.5,-2148"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C1022.63,-2355.22 965.72,-2147.47 1091.5,-2150"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C1024.56,-2354.69 967.65,-2146.94 1091.5,-2152"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C949.61,-1419.83 967.11,-1346.08 1084.5,-1343"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C951.56,-1420.29 969.05,-1346.54 1084.5,-1345"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C953.5,-1420.75 971,-1347 1084.5,-1347"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C955.45,-1421.21 972.94,-1347.46 1084.5,-1349"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C957.39,-1421.67 974.89,-1347.92 1084.5,-1351"/>
</g>
<!-- W6&#45;&#45;ECU CAN Bus -->
-<g id="edge29" class="edge">
+<g id="edge23" class="edge">
<title>W6:e&#45;&#45;ECU CAN Bus:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2321.75C1014.92,-2326.77 961.84,-2125.02 1091.5,-2120"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2323.75C1016.86,-2326.26 963.78,-2124.51 1091.5,-2122"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2325.75C1018.79,-2325.75 965.71,-2124 1091.5,-2124"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2327.75C1020.72,-2325.24 967.64,-2123.49 1091.5,-2126"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2329.75C1022.66,-2324.73 969.58,-2122.98 1091.5,-2128"/>
-</g>
-<!-- W6&#45;&#45;shield1 -->
-<g id="edge32" class="edge">
-<title>W6:e&#45;&#45;shield1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2279.75C1083.93,-2279.75 913.93,-2020.98 1037,-1875 1080,-1824 1101.16,-1801.5 1167.88,-1801.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1386.75C948.91,-1389.67 967.89,-1321.92 1084.5,-1319"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1388.75C950.84,-1390.21 969.81,-1322.46 1084.5,-1321"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1390.75C952.76,-1390.75 971.74,-1323 1084.5,-1323"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1392.75C954.69,-1391.29 973.66,-1323.54 1084.5,-1325"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1394.75C956.61,-1391.83 975.59,-1324.08 1084.5,-1327"/>
</g>
<!-- W6&#45;&#45;_S_9 -->
-<g id="edge19" class="edge">
+<g id="edge13" class="edge">
<title>W6:e&#45;&#45;_S_9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2321.75C1141.99,-2328.2 847.19,-1948.98 1034.31,-1774.04 1088.59,-1728.77 1120.68,-1749.65 1185.25,-1749"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2323.75C1143.57,-2326.98 848.77,-1947.75 1035.66,-1775.52 1087.5,-1730.45 1119.59,-1751.32 1185.25,-1751"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2325.75C1145.15,-2325.75 850.34,-1946.52 1037,-1777 1086.41,-1732.13 1118.5,-1753 1185.25,-1753"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2327.75C1146.73,-2324.52 851.92,-1945.29 1038.34,-1778.48 1085.32,-1733.8 1117.41,-1754.68 1185.25,-1755"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2329.75C1148.3,-2323.3 853.5,-1944.07 1039.69,-1779.96 1084.23,-1735.48 1116.32,-1756.35 1185.25,-1757"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1386.75C1038.91,-1392.8 865.93,-1102.1 1027.57,-973.82 1084.97,-932.86 1113.36,-948.5 1178.25,-948"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1388.75C1040.63,-1391.77 867.65,-1101.08 1028.78,-975.41 1084.01,-934.61 1112.4,-950.25 1178.25,-950"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1390.75C1042.35,-1390.75 869.36,-1100.05 1030,-977 1083.04,-936.37 1111.43,-952 1178.25,-952"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1392.75C1044.07,-1389.73 871.08,-1099.03 1031.22,-978.59 1082.08,-938.12 1110.47,-953.75 1178.25,-954"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1394.75C1045.79,-1388.7 872.8,-1098.01 1032.43,-980.18 1081.11,-939.87 1109.5,-955.5 1178.25,-956"/>
</g>
<!-- W6&#45;&#45;_S_10 -->
-<g id="edge20" class="edge">
+<g id="edge14" class="edge">
<title>W6:e&#45;&#45;_S_10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C956.1,-2384.14 968.3,-2356.46 1036.1,-2339.1 1100.02,-2324.49 1116.36,-2314.58 1185.25,-2314"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C957.93,-2384.94 970.13,-2357.27 1036.55,-2341.05 1101.06,-2326.2 1117.39,-2316.29 1185.25,-2316"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C959.76,-2385.75 971.96,-2358.08 1037,-2343 1102.09,-2327.91 1118.43,-2318 1185.25,-2318"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C961.59,-2386.56 973.79,-2358.89 1037.45,-2344.95 1103.13,-2329.62 1119.47,-2319.71 1185.25,-2320"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C963.42,-2387.36 975.62,-2359.69 1037.9,-2346.9 1104.17,-2331.33 1120.5,-2321.42 1185.25,-2322"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C929.61,-1448.34 948.35,-1473.24 1030.76,-1488.07 1098.07,-1501.49 1113.89,-1513.85 1178.25,-1513"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C928.01,-1449.55 946.75,-1474.44 1030.38,-1490.04 1096.84,-1503.07 1112.66,-1515.42 1178.25,-1515"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C926.41,-1450.75 945.15,-1475.64 1030,-1492 1095.61,-1504.65 1111.43,-1517 1178.25,-1517"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C924.81,-1451.95 943.55,-1476.85 1029.62,-1493.96 1094.38,-1506.22 1110.2,-1518.58 1178.25,-1519"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C923.22,-1453.16 941.95,-1478.05 1029.24,-1495.93 1093.15,-1507.8 1108.97,-1520.15 1178.25,-1521"/>
</g>
<!-- W6&#45;&#45;_S_11 -->
-<g id="edge21" class="edge">
+<g id="edge15" class="edge">
<title>W6:e&#45;&#45;_S_11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C958.7,-2355.04 966.26,-2312.94 1035.87,-2290.16 1099.77,-2271.37 1117.09,-2265.23 1185.25,-2265"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C960.67,-2355.4 968.23,-2313.3 1036.44,-2292.08 1100.44,-2273.26 1117.76,-2267.11 1185.25,-2267"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C962.64,-2355.75 970.19,-2313.65 1037,-2294 1101.1,-2275.14 1118.43,-2269 1185.25,-2269"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C964.6,-2356.1 972.16,-2314 1037.56,-2295.92 1101.77,-2277.03 1119.1,-2270.89 1185.25,-2271"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C966.57,-2356.46 974.13,-2314.36 1038.13,-2297.84 1102.44,-2278.91 1119.77,-2272.77 1185.25,-2273"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C1031.24,-1422.75 870.9,-1145 1027.6,-1022.8 1085.31,-982.33 1113.33,-997.48 1178.25,-997"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C1032.98,-1421.75 872.63,-1144 1028.8,-1024.4 1084.36,-984.09 1112.38,-999.24 1178.25,-999"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C1034.71,-1420.75 874.37,-1143 1030,-1026 1083.41,-985.85 1111.43,-1001 1178.25,-1001"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C1036.44,-1419.75 876.1,-1142 1031.2,-1027.6 1082.46,-987.61 1110.48,-1002.76 1178.25,-1003"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C1038.17,-1418.75 877.83,-1141 1032.4,-1029.2 1081.51,-989.37 1109.53,-1004.52 1178.25,-1005"/>
</g>
<!-- W6&#45;&#45;_S_12 -->
-<g id="edge22" class="edge">
+<g id="edge16" class="edge">
<title>W6:e&#45;&#45;_S_12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C1026.37,-2382.88 1057.46,-2413.13 1185.25,-2412"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C1024.98,-2384.32 1056.06,-2414.57 1185.25,-2414"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C1023.58,-2385.75 1054.67,-2416 1185.25,-2416"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C1022.19,-2387.18 1053.27,-2417.43 1185.25,-2418"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C1020.79,-2388.62 1051.88,-2418.87 1185.25,-2420"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C948.67,-1451.2 937.53,-1549.7 1031.56,-1586.32 1091.35,-1612.01 1111.23,-1611.01 1178.25,-1611"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C946.68,-1450.97 935.55,-1549.48 1030.78,-1588.16 1091.45,-1614.01 1111.33,-1613 1178.25,-1613"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C944.7,-1450.75 933.56,-1549.25 1030,-1590 1091.55,-1616.01 1111.43,-1615 1178.25,-1615"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C942.71,-1450.53 931.57,-1549.03 1029.22,-1591.84 1091.65,-1618 1111.53,-1617 1178.25,-1617"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C940.72,-1450.3 929.58,-1548.8 1028.44,-1593.68 1091.75,-1620 1111.63,-1618.99 1178.25,-1619"/>
</g>
<!-- W6&#45;&#45;_S_13 -->
-<g id="edge23" class="edge">
+<g id="edge17" class="edge">
<title>W6:e&#45;&#45;_S_13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C1024.3,-2351.97 1056.58,-2363.22 1185.25,-2363"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C1023.64,-2353.86 1055.92,-2365.11 1185.25,-2365"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C1022.99,-2355.75 1055.26,-2367 1185.25,-2367"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C1022.33,-2357.64 1054.61,-2368.89 1185.25,-2369"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C1021.67,-2359.53 1053.95,-2370.78 1185.25,-2371"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C995.02,-1418.38 1029.68,-1465.63 1178.25,-1464"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C993.41,-1419.57 1028.07,-1466.82 1178.25,-1466"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C991.79,-1420.75 1026.46,-1468 1178.25,-1468"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C990.18,-1421.93 1024.84,-1469.18 1178.25,-1470"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C988.57,-1423.12 1023.23,-1470.37 1178.25,-1472"/>
</g>
<!-- W6&#45;&#45;_S_14 -->
-<g id="edge30" class="edge">
+<g id="edge24" class="edge">
<title>W6:e&#45;&#45;_S_14:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2381.75C975.73,-2386.16 968.28,-2459.13 1038.54,-2485.31 1098.55,-2510.69 1118.29,-2510 1185.25,-2510"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2383.75C973.74,-2385.95 966.29,-2458.93 1037.77,-2487.15 1098.62,-2512.69 1118.36,-2512 1185.25,-2512"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M893,-2385.75C971.75,-2385.75 964.3,-2458.73 1037,-2489 1098.69,-2514.69 1118.43,-2514 1185.25,-2514"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2387.75C969.76,-2385.55 962.31,-2458.52 1036.23,-2490.85 1098.75,-2516.68 1118.5,-2516 1185.25,-2516"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2389.75C967.77,-2385.34 960.32,-2458.32 1035.46,-2492.69 1098.82,-2518.68 1118.57,-2518 1185.25,-2518"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1446.75C937.46,-1450.28 944.81,-1512.43 1031.2,-1537.18 1094.8,-1557.23 1112.5,-1562.15 1178.25,-1562"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1448.75C935.47,-1450.52 942.82,-1512.67 1030.6,-1539.09 1094.27,-1559.15 1111.97,-1564.07 1178.25,-1564"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M840,-1450.75C933.49,-1450.75 940.84,-1512.9 1030,-1541 1093.73,-1561.08 1111.43,-1566 1178.25,-1566"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1452.75C931.5,-1450.98 938.85,-1513.14 1029.4,-1542.91 1093.19,-1563.01 1110.9,-1567.93 1178.25,-1568"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1454.75C929.51,-1451.22 936.86,-1513.37 1028.8,-1544.82 1092.66,-1564.94 1110.36,-1569.85 1178.25,-1570"/>
</g>
<!-- W6&#45;&#45;_S_15 -->
-<g id="edge31" class="edge">
+<g id="edge25" class="edge">
<title>W6:e&#45;&#45;_S_15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2351.75C971.15,-2355.74 971.3,-2414.69 1038.36,-2436.24 1100.28,-2458.83 1118.9,-2461.03 1185.25,-2461"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2353.75C969.15,-2355.74 969.3,-2414.69 1037.68,-2438.12 1100.04,-2460.81 1118.67,-2463.01 1185.25,-2463"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M893,-2355.75C967.15,-2355.75 967.3,-2414.7 1037,-2440 1099.81,-2462.8 1118.43,-2465 1185.25,-2465"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M893,-2357.75C965.15,-2355.76 965.3,-2414.7 1036.32,-2441.88 1099.57,-2464.79 1118.2,-2466.99 1185.25,-2467"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M893,-2359.75C963.15,-2355.76 963.3,-2414.71 1035.64,-2443.76 1099.34,-2466.77 1117.96,-2468.97 1185.25,-2469"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1416.75C1012.19,-1422.61 882.93,-1177.26 1027.69,-1070.73 1086.41,-1031.97 1113.4,-1046.48 1178.25,-1046"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1418.75C1013.96,-1421.68 884.7,-1176.32 1028.85,-1072.37 1085.46,-1033.73 1112.45,-1048.24 1178.25,-1048"/>
+<path fill="none" stroke="#ff66cc" stroke-width="2" d="M840,-1420.75C1015.73,-1420.75 886.47,-1175.39 1030,-1074 1084.52,-1035.49 1111.5,-1050 1178.25,-1050"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M840,-1422.75C1017.5,-1419.82 888.24,-1174.46 1031.15,-1075.63 1083.57,-1037.25 1110.56,-1051.76 1178.25,-1052"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M840,-1424.75C1019.27,-1418.89 890.01,-1173.53 1032.31,-1077.27 1082.62,-1039.01 1109.61,-1053.52 1178.25,-1054"/>
</g>
<!-- W7&#45;&#45;CEX -->
-<g id="edge35" class="edge">
+<g id="edge27" class="edge">
<title>W7:e&#45;&#45;CEX:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1716.75C1882.98,-1719.77 1895.38,-1670.52 1977.12,-1667.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1809,-1718.75C1884.92,-1720.26 1897.32,-1671.01 1977.12,-1669.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1809,-1720.75C1886.86,-1720.75 1899.26,-1671.5 1977.12,-1671.5"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M1809,-1722.75C1888.8,-1721.24 1901.2,-1671.99 1977.12,-1673.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1724.75C1890.74,-1721.73 1903.14,-1672.48 1977.12,-1675.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-948.75C1968.92,-948.81 1999.21,-943.56 2121.25,-943.5"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1848.25,-950.75C1969.26,-950.78 1999.55,-945.53 2121.25,-945.5"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1848.25,-952.75C1969.61,-952.75 1999.89,-947.5 2121.25,-947.5"/>
+<path fill="none" stroke="#0066ff" stroke-width="2" d="M1848.25,-954.75C1969.95,-954.72 2000.24,-949.47 2121.25,-949.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-956.75C1970.29,-956.69 2000.58,-951.44 2121.25,-951.5"/>
</g>
<!-- W7&#45;&#45;CEX -->
-<g id="edge37" class="edge">
+<g id="edge29" class="edge">
<title>W7:e&#45;&#45;CEX:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1686.75C1882.34,-1689.53 1896.16,-1646.28 1977.12,-1643.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1809,-1688.75C1884.25,-1690.14 1898.06,-1646.89 1977.12,-1645.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1809,-1690.75C1886.16,-1690.75 1899.97,-1647.5 1977.12,-1647.5"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M1809,-1692.75C1888.06,-1691.36 1901.88,-1648.11 1977.12,-1649.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1694.75C1889.97,-1691.97 1903.78,-1648.72 1977.12,-1651.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-918.75C1969.68,-918.75 2000.02,-919.5 2121.25,-919.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1848.25,-920.75C1969.63,-920.75 1999.97,-921.5 2121.25,-921.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1848.25,-922.75C1969.58,-922.75 1999.92,-923.5 2121.25,-923.5"/>
+<path fill="none" stroke="#ff0000" stroke-width="2" d="M1848.25,-924.75C1969.53,-924.75 1999.87,-925.5 2121.25,-925.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-926.75C1969.48,-926.75 1999.82,-927.5 2121.25,-927.5"/>
</g>
<!-- W7&#45;&#45;CEX -->
-<g id="edge39" class="edge">
+<g id="edge31" class="edge">
<title>W7:e&#45;&#45;CEX:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1656.75C1881.83,-1659.25 1896.88,-1622 1977.12,-1619.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1658.75C1883.68,-1660 1898.74,-1622.75 1977.12,-1621.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1660.75C1885.53,-1660.75 1900.59,-1623.5 1977.12,-1623.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1662.75C1887.39,-1661.5 1902.44,-1624.25 1977.12,-1625.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1664.75C1889.24,-1662.25 1904.3,-1625 1977.12,-1627.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-888.75C1970.49,-888.85 2000.75,-895.6 2121.25,-895.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-890.75C1970.06,-890.8 2000.32,-897.55 2121.25,-897.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-892.75C1969.62,-892.75 1999.88,-899.5 2121.25,-899.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-894.75C1969.18,-894.7 1999.44,-901.45 2121.25,-901.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-896.75C1968.75,-896.65 1999.01,-903.4 2121.25,-903.5"/>
</g>
-<!-- W7&#45;&#45;_GND_19 -->
-<g id="edge41" class="edge">
-<title>W7:e&#45;&#45;_GND_19:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-1614.75C2024.39,-1614.75 1787.44,-1289.79 1953,-1152 2024.86,-1092.19 2068.38,-1127 2161.88,-1127"/>
-</g>
-<!-- W8&#45;&#45;_GND_1 -->
-<g id="edge89" class="edge">
-<title>W8:e&#45;&#45;_GND_1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1932.5C987.16,-1937.9 932.16,-1790.12 1034.97,-1725.56 1097.13,-1690.62 1121.58,-1700.28 1188.25,-1700"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1934.5C989.04,-1937.2 934.04,-1789.42 1035.98,-1727.28 1096.4,-1692.48 1120.85,-1702.14 1188.25,-1702"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1936.5C990.91,-1936.5 935.91,-1788.72 1037,-1729 1095.66,-1694.34 1120.12,-1704 1188.25,-1704"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1938.5C992.79,-1935.8 937.79,-1788.02 1038.02,-1730.72 1094.93,-1696.2 1119.38,-1705.86 1188.25,-1706"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1940.5C994.66,-1935.1 939.66,-1787.33 1039.03,-1732.44 1094.19,-1698.06 1118.65,-1707.72 1188.25,-1708"/>
-</g>
-<!-- W8&#45;&#45;_GND_2 -->
-<g id="edge91" class="edge">
-<title>W8:e&#45;&#45;_GND_2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1662.5C1012.23,-1662.7 1047.01,-1651.2 1188.25,-1651"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1664.5C1012.85,-1664.6 1047.64,-1653.1 1188.25,-1653"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1666.5C1013.48,-1666.5 1048.27,-1655 1188.25,-1655"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1668.5C1014.11,-1668.4 1048.9,-1656.9 1188.25,-1657"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1670.5C1014.74,-1670.3 1049.52,-1658.8 1188.25,-1659"/>
-</g>
-<!-- W8&#45;&#45;_GND_3 -->
-<g id="edge93" class="edge">
-<title>W8:e&#45;&#45;_GND_3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1632.5C1011.36,-1633.54 1045.02,-1603.04 1188.25,-1602"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1634.5C1012.7,-1635.02 1046.36,-1604.52 1188.25,-1604"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M873.5,-1636.5C1014.04,-1636.5 1047.71,-1606 1188.25,-1606"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1638.5C1015.39,-1637.98 1049.05,-1607.48 1188.25,-1608"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1640.5C1016.73,-1639.46 1050.39,-1608.96 1188.25,-1610"/>
-</g>
-<!-- W8&#45;&#45;_GND_4 -->
-<g id="edge95" class="edge">
-<title>W8:e&#45;&#45;_GND_4:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1542.5C1013.33,-1542.5 1048.3,-1542 1188.25,-1542"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M873.5,-1544.5C1013.36,-1544.5 1048.33,-1544 1188.25,-1544"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1546.5C1013.39,-1546.5 1048.36,-1546 1188.25,-1546"/>
-<path fill="none" stroke="#ff0000" stroke-width="2" d="M873.5,-1548.5C1013.42,-1548.5 1048.39,-1548 1188.25,-1548"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1550.5C1013.45,-1550.5 1048.42,-1550 1188.25,-1550"/>
-</g>
-<!-- W8&#45;&#45;_GND_5 -->
-<g id="edge97" class="edge">
-<title>W8:e&#45;&#45;_GND_5:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1422.5C1013.33,-1422.5 1048.3,-1422 1188.25,-1422"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1424.5C1013.36,-1424.5 1048.33,-1424 1188.25,-1424"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1426.5C1013.39,-1426.5 1048.36,-1426 1188.25,-1426"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1428.5C1013.42,-1428.5 1048.39,-1428 1188.25,-1428"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1430.5C1013.45,-1430.5 1048.42,-1430 1188.25,-1430"/>
-</g>
-<!-- W8&#45;&#45;_GND_6 -->
-<g id="edge99" class="edge">
-<title>W8:e&#45;&#45;_GND_6:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1362.5C1013.33,-1362.5 1048.3,-1362 1188.25,-1362"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1364.5C1013.36,-1364.5 1048.33,-1364 1188.25,-1364"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1366.5C1013.39,-1366.5 1048.36,-1366 1188.25,-1366"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1368.5C1013.42,-1368.5 1048.39,-1368 1188.25,-1368"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1370.5C1013.45,-1370.5 1048.42,-1370 1188.25,-1370"/>
-</g>
-<!-- W8&#45;&#45;_GND_7 -->
-<g id="edge101" class="edge">
-<title>W8:e&#45;&#45;_GND_7:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1302.5C1013.33,-1302.5 1048.3,-1302 1188.25,-1302"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1304.5C1013.36,-1304.5 1048.33,-1304 1188.25,-1304"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1306.5C1013.39,-1306.5 1048.36,-1306 1188.25,-1306"/>
-<path fill="none" stroke="#0066ff" stroke-width="2" d="M873.5,-1308.5C1013.42,-1308.5 1048.39,-1308 1188.25,-1308"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1310.5C1013.45,-1310.5 1048.42,-1310 1188.25,-1310"/>
-</g>
-<!-- W8&#45;&#45;_GND_8 -->
-<g id="edge103" class="edge">
-<title>W8:e&#45;&#45;_GND_8:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1182.5C1013.45,-1182.5 1048.42,-1183 1188.25,-1183"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-1184.5C1013.42,-1184.5 1048.39,-1185 1188.25,-1185"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1186.5C1013.39,-1186.5 1048.36,-1187 1188.25,-1187"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-1188.5C1013.36,-1188.5 1048.33,-1189 1188.25,-1189"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1190.5C1013.33,-1190.5 1048.3,-1191 1188.25,-1191"/>
-</g>
-<!-- W8&#45;&#45;_GND_9 -->
-<g id="edge105" class="edge">
-<title>W8:e&#45;&#45;_GND_9:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1092.5C1013.45,-1092.5 1048.42,-1093 1188.25,-1093"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1094.5C1013.42,-1094.5 1048.39,-1095 1188.25,-1095"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M873.5,-1096.5C1013.39,-1096.5 1048.36,-1097 1188.25,-1097"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-1098.5C1013.36,-1098.5 1048.33,-1099 1188.25,-1099"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1100.5C1013.33,-1100.5 1048.3,-1101 1188.25,-1101"/>
-</g>
-<!-- W8&#45;&#45;_GND_10 -->
-<g id="edge107" class="edge">
-<title>W8:e&#45;&#45;_GND_10:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1002.5C1013.45,-1002.5 1048.42,-1003 1188.25,-1003"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1004.5C1013.42,-1004.5 1048.39,-1005 1188.25,-1005"/>
-<path fill="none" stroke="#ffffff" stroke-width="2" d="M873.5,-1006.5C1013.39,-1006.5 1048.36,-1007 1188.25,-1007"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-1008.5C1013.36,-1008.5 1048.33,-1009 1188.25,-1009"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-1010.5C1013.33,-1010.5 1048.3,-1011 1188.25,-1011"/>
-</g>
-<!-- W8&#45;&#45;_GND_11 -->
-<g id="edge109" class="edge">
-<title>W8:e&#45;&#45;_GND_11:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-642.5C1013.45,-642.5 1048.42,-643 1188.25,-643"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-644.5C1013.42,-644.5 1048.39,-645 1188.25,-645"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-646.5C1013.39,-646.5 1048.36,-647 1188.25,-647"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M873.5,-648.5C1013.36,-648.5 1048.33,-649 1188.25,-649"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-650.5C1013.33,-650.5 1048.3,-651 1188.25,-651"/>
-</g>
-<!-- W8&#45;&#45;_GND_12 -->
-<g id="edge111" class="edge">
-<title>W8:e&#45;&#45;_GND_12:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-462.5C1014.62,-462.67 1049.44,-473.17 1188.25,-473"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-464.5C1014.04,-464.59 1048.86,-475.09 1188.25,-475"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-466.5C1013.47,-466.5 1048.28,-477 1188.25,-477"/>
-<path fill="none" stroke="#999999" stroke-width="2" d="M873.5,-468.5C1012.89,-468.41 1047.71,-478.91 1188.25,-479"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-470.5C1012.31,-470.33 1047.13,-480.83 1188.25,-481"/>
-</g>
-<!-- W8&#45;&#45;_GND_13 -->
-<g id="edge113" class="edge">
-<title>W8:e&#45;&#45;_GND_13:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-432.5C1012.49,-432.61 1047.36,-424.11 1188.25,-424"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-434.5C1012.97,-434.56 1047.84,-426.06 1188.25,-426"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-436.5C1013.44,-436.5 1048.31,-428 1188.25,-428"/>
-<path fill="none" stroke="#ff66cc" stroke-width="2" d="M873.5,-438.5C1013.91,-438.44 1048.78,-429.94 1188.25,-430"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M873.5,-440.5C1014.39,-440.39 1049.26,-431.89 1188.25,-432"/>
+<!-- W8 -->
+<g id="node33" class="node">
+<title>W8</title>
+<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="273.88,-5014.5 135.12,-5014.5 135.12,-3155.5 273.88,-3155.5 273.88,-5014.5"/>
+<polygon fill="none" stroke="black" points="135.12,-4990 135.12,-5014.5 273.88,-5014.5 273.88,-4990 135.12,-4990"/>
+<text text-anchor="start" x="193.25" y="-4997.2" font-family="arial" font-size="14.00">W8</text>
+<polygon fill="none" stroke="black" points="135.12,-4965.5 135.12,-4990 166.38,-4990 166.38,-4965.5 135.12,-4965.5"/>
+<text text-anchor="start" x="139.12" y="-4972.7" font-family="arial" font-size="14.00">59x</text>
+<polygon fill="none" stroke="black" points="166.38,-4965.5 166.38,-4990 229.88,-4990 229.88,-4965.5 166.38,-4965.5"/>
+<text text-anchor="start" x="170.38" y="-4972.7" font-family="arial" font-size="14.00">22 AWG</text>
+<polygon fill="none" stroke="black" points="229.88,-4965.5 229.88,-4990 273.88,-4990 273.88,-4965.5 229.88,-4965.5"/>
+<text text-anchor="start" x="233.88" y="-4972.7" font-family="arial" font-size="14.00">0.3 m</text>
+<text text-anchor="start" x="144.38" y="-4950.2" font-family="arial" font-size="14.00"> </text>
+<text text-anchor="start" x="177.12" y="-4930.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4923.5 135.12,-4925.5 273.88,-4925.5 273.88,-4923.5 135.12,-4923.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4921.5 135.12,-4923.5 273.88,-4923.5 273.88,-4921.5 135.12,-4921.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4919.5 135.12,-4921.5 273.88,-4921.5 273.88,-4919.5 135.12,-4919.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4917.5 135.12,-4919.5 273.88,-4919.5 273.88,-4917.5 135.12,-4917.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4915.5 135.12,-4917.5 273.88,-4917.5 273.88,-4915.5 135.12,-4915.5"/>
+<text text-anchor="start" x="179.75" y="-4900.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4893.5 135.12,-4895.5 273.88,-4895.5 273.88,-4893.5 135.12,-4893.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4891.5 135.12,-4893.5 273.88,-4893.5 273.88,-4891.5 135.12,-4891.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4889.5 135.12,-4891.5 273.88,-4891.5 273.88,-4889.5 135.12,-4889.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4887.5 135.12,-4889.5 273.88,-4889.5 273.88,-4887.5 135.12,-4887.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4885.5 135.12,-4887.5 273.88,-4887.5 273.88,-4885.5 135.12,-4885.5"/>
+<text text-anchor="start" x="179" y="-4870.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4863.5 135.12,-4865.5 273.88,-4865.5 273.88,-4863.5 135.12,-4863.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4861.5 135.12,-4863.5 273.88,-4863.5 273.88,-4861.5 135.12,-4861.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4859.5 135.12,-4861.5 273.88,-4861.5 273.88,-4859.5 135.12,-4859.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4857.5 135.12,-4859.5 273.88,-4859.5 273.88,-4857.5 135.12,-4857.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4855.5 135.12,-4857.5 273.88,-4857.5 273.88,-4855.5 135.12,-4855.5"/>
+<text text-anchor="start" x="179.38" y="-4840.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4833.5 135.12,-4835.5 273.88,-4835.5 273.88,-4833.5 135.12,-4833.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4831.5 135.12,-4833.5 273.88,-4833.5 273.88,-4831.5 135.12,-4831.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4829.5 135.12,-4831.5 273.88,-4831.5 273.88,-4829.5 135.12,-4829.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4827.5 135.12,-4829.5 273.88,-4829.5 273.88,-4827.5 135.12,-4827.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4825.5 135.12,-4827.5 273.88,-4827.5 273.88,-4825.5 135.12,-4825.5"/>
+<text text-anchor="start" x="179.38" y="-4810.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4803.5 135.12,-4805.5 273.88,-4805.5 273.88,-4803.5 135.12,-4803.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4801.5 135.12,-4803.5 273.88,-4803.5 273.88,-4801.5 135.12,-4801.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4799.5 135.12,-4801.5 273.88,-4801.5 273.88,-4799.5 135.12,-4799.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4797.5 135.12,-4799.5 273.88,-4799.5 273.88,-4797.5 135.12,-4797.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4795.5 135.12,-4797.5 273.88,-4797.5 273.88,-4795.5 135.12,-4795.5"/>
+<text text-anchor="start" x="178.62" y="-4780.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4773.5 135.12,-4775.5 273.88,-4775.5 273.88,-4773.5 135.12,-4773.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4771.5 135.12,-4773.5 273.88,-4773.5 273.88,-4771.5 135.12,-4771.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4769.5 135.12,-4771.5 273.88,-4771.5 273.88,-4769.5 135.12,-4769.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4767.5 135.12,-4769.5 273.88,-4769.5 273.88,-4767.5 135.12,-4767.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4765.5 135.12,-4767.5 273.88,-4767.5 273.88,-4765.5 135.12,-4765.5"/>
+<text text-anchor="start" x="179.38" y="-4750.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4743.5 135.12,-4745.5 273.88,-4745.5 273.88,-4743.5 135.12,-4743.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4741.5 135.12,-4743.5 273.88,-4743.5 273.88,-4741.5 135.12,-4741.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4739.5 135.12,-4741.5 273.88,-4741.5 273.88,-4739.5 135.12,-4739.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4737.5 135.12,-4739.5 273.88,-4739.5 273.88,-4737.5 135.12,-4737.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4735.5 135.12,-4737.5 273.88,-4737.5 273.88,-4735.5 135.12,-4735.5"/>
+<text text-anchor="start" x="179.75" y="-4720.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4713.5 135.12,-4715.5 273.88,-4715.5 273.88,-4713.5 135.12,-4713.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4711.5 135.12,-4713.5 273.88,-4713.5 273.88,-4711.5 135.12,-4711.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4709.5 135.12,-4711.5 273.88,-4711.5 273.88,-4709.5 135.12,-4709.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4707.5 135.12,-4709.5 273.88,-4709.5 273.88,-4707.5 135.12,-4707.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4705.5 135.12,-4707.5 273.88,-4707.5 273.88,-4705.5 135.12,-4705.5"/>
+<text text-anchor="start" x="169.25" y="-4690.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4683.5 135.12,-4685.5 273.88,-4685.5 273.88,-4683.5 135.12,-4683.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4681.5 135.12,-4683.5 273.88,-4683.5 273.88,-4681.5 135.12,-4681.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4679.5 135.12,-4681.5 273.88,-4681.5 273.88,-4679.5 135.12,-4679.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4677.5 135.12,-4679.5 273.88,-4679.5 273.88,-4677.5 135.12,-4677.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4675.5 135.12,-4677.5 273.88,-4677.5 273.88,-4675.5 135.12,-4675.5"/>
+<text text-anchor="start" x="168.88" y="-4660.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4653.5 135.12,-4655.5 273.88,-4655.5 273.88,-4653.5 135.12,-4653.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4651.5 135.12,-4653.5 273.88,-4653.5 273.88,-4651.5 135.12,-4651.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4649.5 135.12,-4651.5 273.88,-4651.5 273.88,-4649.5 135.12,-4649.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4647.5 135.12,-4649.5 273.88,-4649.5 273.88,-4647.5 135.12,-4647.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4645.5 135.12,-4647.5 273.88,-4647.5 273.88,-4645.5 135.12,-4645.5"/>
+<text text-anchor="start" x="166.62" y="-4630.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4623.5 135.12,-4625.5 273.88,-4625.5 273.88,-4623.5 135.12,-4623.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4621.5 135.12,-4623.5 273.88,-4623.5 273.88,-4621.5 135.12,-4621.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4619.5 135.12,-4621.5 273.88,-4621.5 273.88,-4619.5 135.12,-4619.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4617.5 135.12,-4619.5 273.88,-4619.5 273.88,-4617.5 135.12,-4617.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4615.5 135.12,-4617.5 273.88,-4617.5 273.88,-4615.5 135.12,-4615.5"/>
+<text text-anchor="start" x="168.88" y="-4600.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4593.5 135.12,-4595.5 273.88,-4595.5 273.88,-4593.5 135.12,-4593.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4591.5 135.12,-4593.5 273.88,-4593.5 273.88,-4591.5 135.12,-4591.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4589.5 135.12,-4591.5 273.88,-4591.5 273.88,-4589.5 135.12,-4589.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4587.5 135.12,-4589.5 273.88,-4589.5 273.88,-4587.5 135.12,-4587.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4585.5 135.12,-4587.5 273.88,-4587.5 273.88,-4585.5 135.12,-4585.5"/>
+<text text-anchor="start" x="167.75" y="-4570.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4563.5 135.12,-4565.5 273.88,-4565.5 273.88,-4563.5 135.12,-4563.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4561.5 135.12,-4563.5 273.88,-4563.5 273.88,-4561.5 135.12,-4561.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4559.5 135.12,-4561.5 273.88,-4561.5 273.88,-4559.5 135.12,-4559.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4557.5 135.12,-4559.5 273.88,-4559.5 273.88,-4557.5 135.12,-4557.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4555.5 135.12,-4557.5 273.88,-4557.5 273.88,-4555.5 135.12,-4555.5"/>
+<text text-anchor="start" x="170" y="-4540.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4533.5 135.12,-4535.5 273.88,-4535.5 273.88,-4533.5 135.12,-4533.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4531.5 135.12,-4533.5 273.88,-4533.5 273.88,-4531.5 135.12,-4531.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4529.5 135.12,-4531.5 273.88,-4531.5 273.88,-4529.5 135.12,-4529.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4527.5 135.12,-4529.5 273.88,-4529.5 273.88,-4527.5 135.12,-4527.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4525.5 135.12,-4527.5 273.88,-4527.5 273.88,-4525.5 135.12,-4525.5"/>
+<text text-anchor="start" x="167" y="-4510.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4503.5 135.12,-4505.5 273.88,-4505.5 273.88,-4503.5 135.12,-4503.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4501.5 135.12,-4503.5 273.88,-4503.5 273.88,-4501.5 135.12,-4501.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4499.5 135.12,-4501.5 273.88,-4501.5 273.88,-4499.5 135.12,-4499.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4497.5 135.12,-4499.5 273.88,-4499.5 273.88,-4497.5 135.12,-4497.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4495.5 135.12,-4497.5 273.88,-4497.5 273.88,-4495.5 135.12,-4495.5"/>
+<text text-anchor="start" x="169.25" y="-4480.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4473.5 135.12,-4475.5 273.88,-4475.5 273.88,-4473.5 135.12,-4473.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4471.5 135.12,-4473.5 273.88,-4473.5 273.88,-4471.5 135.12,-4471.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4469.5 135.12,-4471.5 273.88,-4471.5 273.88,-4469.5 135.12,-4469.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4467.5 135.12,-4469.5 273.88,-4469.5 273.88,-4467.5 135.12,-4467.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4465.5 135.12,-4467.5 273.88,-4467.5 273.88,-4465.5 135.12,-4465.5"/>
+<text text-anchor="start" x="167.38" y="-4450.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4443.5 135.12,-4445.5 273.88,-4445.5 273.88,-4443.5 135.12,-4443.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4441.5 135.12,-4443.5 273.88,-4443.5 273.88,-4441.5 135.12,-4441.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4439.5 135.12,-4441.5 273.88,-4441.5 273.88,-4439.5 135.12,-4439.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4437.5 135.12,-4439.5 273.88,-4439.5 273.88,-4437.5 135.12,-4437.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4435.5 135.12,-4437.5 273.88,-4437.5 273.88,-4435.5 135.12,-4435.5"/>
+<text text-anchor="start" x="169.62" y="-4420.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4413.5 135.12,-4415.5 273.88,-4415.5 273.88,-4413.5 135.12,-4413.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4411.5 135.12,-4413.5 273.88,-4413.5 273.88,-4411.5 135.12,-4411.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4409.5 135.12,-4411.5 273.88,-4411.5 273.88,-4409.5 135.12,-4409.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4407.5 135.12,-4409.5 273.88,-4409.5 273.88,-4407.5 135.12,-4407.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4405.5 135.12,-4407.5 273.88,-4407.5 273.88,-4405.5 135.12,-4405.5"/>
+<text text-anchor="start" x="166.62" y="-4390.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4383.5 135.12,-4385.5 273.88,-4385.5 273.88,-4383.5 135.12,-4383.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4381.5 135.12,-4383.5 273.88,-4383.5 273.88,-4381.5 135.12,-4381.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4379.5 135.12,-4381.5 273.88,-4381.5 273.88,-4379.5 135.12,-4379.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4377.5 135.12,-4379.5 273.88,-4379.5 273.88,-4377.5 135.12,-4377.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4375.5 135.12,-4377.5 273.88,-4377.5 273.88,-4375.5 135.12,-4375.5"/>
+<text text-anchor="start" x="168.88" y="-4360.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4353.5 135.12,-4355.5 273.88,-4355.5 273.88,-4353.5 135.12,-4353.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4351.5 135.12,-4353.5 273.88,-4353.5 273.88,-4351.5 135.12,-4351.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4349.5 135.12,-4351.5 273.88,-4351.5 273.88,-4349.5 135.12,-4349.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4347.5 135.12,-4349.5 273.88,-4349.5 273.88,-4347.5 135.12,-4347.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4345.5 135.12,-4347.5 273.88,-4347.5 273.88,-4345.5 135.12,-4345.5"/>
+<text text-anchor="start" x="168.5" y="-4330.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4323.5 135.12,-4325.5 273.88,-4325.5 273.88,-4323.5 135.12,-4323.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4321.5 135.12,-4323.5 273.88,-4323.5 273.88,-4321.5 135.12,-4321.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4319.5 135.12,-4321.5 273.88,-4321.5 273.88,-4319.5 135.12,-4319.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4317.5 135.12,-4319.5 273.88,-4319.5 273.88,-4317.5 135.12,-4317.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4315.5 135.12,-4317.5 273.88,-4317.5 273.88,-4315.5 135.12,-4315.5"/>
+<text text-anchor="start" x="177.12" y="-4300.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4293.5 135.12,-4295.5 273.88,-4295.5 273.88,-4293.5 135.12,-4293.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4291.5 135.12,-4293.5 273.88,-4293.5 273.88,-4291.5 135.12,-4291.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4289.5 135.12,-4291.5 273.88,-4291.5 273.88,-4289.5 135.12,-4289.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-4287.5 135.12,-4289.5 273.88,-4289.5 273.88,-4287.5 135.12,-4287.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4285.5 135.12,-4287.5 273.88,-4287.5 273.88,-4285.5 135.12,-4285.5"/>
+<text text-anchor="start" x="179.38" y="-4270.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4263.5 135.12,-4265.5 273.88,-4265.5 273.88,-4263.5 135.12,-4263.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4261.5 135.12,-4263.5 273.88,-4263.5 273.88,-4261.5 135.12,-4261.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4259.5 135.12,-4261.5 273.88,-4261.5 273.88,-4259.5 135.12,-4259.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-4257.5 135.12,-4259.5 273.88,-4259.5 273.88,-4257.5 135.12,-4257.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4255.5 135.12,-4257.5 273.88,-4257.5 273.88,-4255.5 135.12,-4255.5"/>
+<text text-anchor="start" x="178.62" y="-4240.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4233.5 135.12,-4235.5 273.88,-4235.5 273.88,-4233.5 135.12,-4233.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4231.5 135.12,-4233.5 273.88,-4233.5 273.88,-4231.5 135.12,-4231.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4229.5 135.12,-4231.5 273.88,-4231.5 273.88,-4229.5 135.12,-4229.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-4227.5 135.12,-4229.5 273.88,-4229.5 273.88,-4227.5 135.12,-4227.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4225.5 135.12,-4227.5 273.88,-4227.5 273.88,-4225.5 135.12,-4225.5"/>
+<text text-anchor="start" x="179.75" y="-4210.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4203.5 135.12,-4205.5 273.88,-4205.5 273.88,-4203.5 135.12,-4203.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4201.5 135.12,-4203.5 273.88,-4203.5 273.88,-4201.5 135.12,-4201.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4199.5 135.12,-4201.5 273.88,-4201.5 273.88,-4199.5 135.12,-4199.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-4197.5 135.12,-4199.5 273.88,-4199.5 273.88,-4197.5 135.12,-4197.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4195.5 135.12,-4197.5 273.88,-4197.5 273.88,-4195.5 135.12,-4195.5"/>
+<text text-anchor="start" x="179" y="-4180.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4173.5 135.12,-4175.5 273.88,-4175.5 273.88,-4173.5 135.12,-4173.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4171.5 135.12,-4173.5 273.88,-4173.5 273.88,-4171.5 135.12,-4171.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4169.5 135.12,-4171.5 273.88,-4171.5 273.88,-4169.5 135.12,-4169.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-4167.5 135.12,-4169.5 273.88,-4169.5 273.88,-4167.5 135.12,-4167.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4165.5 135.12,-4167.5 273.88,-4167.5 273.88,-4165.5 135.12,-4165.5"/>
+<text text-anchor="start" x="179.38" y="-4150.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4143.5 135.12,-4145.5 273.88,-4145.5 273.88,-4143.5 135.12,-4143.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4141.5 135.12,-4143.5 273.88,-4143.5 273.88,-4141.5 135.12,-4141.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4139.5 135.12,-4141.5 273.88,-4141.5 273.88,-4139.5 135.12,-4139.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-4137.5 135.12,-4139.5 273.88,-4139.5 273.88,-4137.5 135.12,-4137.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4135.5 135.12,-4137.5 273.88,-4137.5 273.88,-4135.5 135.12,-4135.5"/>
+<text text-anchor="start" x="179.38" y="-4120.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4113.5 135.12,-4115.5 273.88,-4115.5 273.88,-4113.5 135.12,-4113.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4111.5 135.12,-4113.5 273.88,-4113.5 273.88,-4111.5 135.12,-4111.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4109.5 135.12,-4111.5 273.88,-4111.5 273.88,-4109.5 135.12,-4109.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-4107.5 135.12,-4109.5 273.88,-4109.5 273.88,-4107.5 135.12,-4107.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4105.5 135.12,-4107.5 273.88,-4107.5 273.88,-4105.5 135.12,-4105.5"/>
+<text text-anchor="start" x="178.62" y="-4090.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4083.5 135.12,-4085.5 273.88,-4085.5 273.88,-4083.5 135.12,-4083.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4081.5 135.12,-4083.5 273.88,-4083.5 273.88,-4081.5 135.12,-4081.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4079.5 135.12,-4081.5 273.88,-4081.5 273.88,-4079.5 135.12,-4079.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-4077.5 135.12,-4079.5 273.88,-4079.5 273.88,-4077.5 135.12,-4077.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4075.5 135.12,-4077.5 273.88,-4077.5 273.88,-4075.5 135.12,-4075.5"/>
+<text text-anchor="start" x="179.38" y="-4060.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4053.5 135.12,-4055.5 273.88,-4055.5 273.88,-4053.5 135.12,-4053.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4051.5 135.12,-4053.5 273.88,-4053.5 273.88,-4051.5 135.12,-4051.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4049.5 135.12,-4051.5 273.88,-4051.5 273.88,-4049.5 135.12,-4049.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4047.5 135.12,-4049.5 273.88,-4049.5 273.88,-4047.5 135.12,-4047.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4045.5 135.12,-4047.5 273.88,-4047.5 273.88,-4045.5 135.12,-4045.5"/>
+<text text-anchor="start" x="179.75" y="-4030.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-4023.5 135.12,-4025.5 273.88,-4025.5 273.88,-4023.5 135.12,-4023.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4021.5 135.12,-4023.5 273.88,-4023.5 273.88,-4021.5 135.12,-4021.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4019.5 135.12,-4021.5 273.88,-4021.5 273.88,-4019.5 135.12,-4019.5"/>
+<polygon fill="#8000ff" stroke="none" points="135.12,-4017.5 135.12,-4019.5 273.88,-4019.5 273.88,-4017.5 135.12,-4017.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-4015.5 135.12,-4017.5 273.88,-4017.5 273.88,-4015.5 135.12,-4015.5"/>
+<text text-anchor="start" x="169.25" y="-4000.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3993.5 135.12,-3995.5 273.88,-3995.5 273.88,-3993.5 135.12,-3993.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3991.5 135.12,-3993.5 273.88,-3993.5 273.88,-3991.5 135.12,-3991.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3989.5 135.12,-3991.5 273.88,-3991.5 273.88,-3989.5 135.12,-3989.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3987.5 135.12,-3989.5 273.88,-3989.5 273.88,-3987.5 135.12,-3987.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3985.5 135.12,-3987.5 273.88,-3987.5 273.88,-3985.5 135.12,-3985.5"/>
+<text text-anchor="start" x="168.88" y="-3970.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BURD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3963.5 135.12,-3965.5 273.88,-3965.5 273.88,-3963.5 135.12,-3963.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3961.5 135.12,-3963.5 273.88,-3963.5 273.88,-3961.5 135.12,-3961.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3959.5 135.12,-3961.5 273.88,-3961.5 273.88,-3959.5 135.12,-3959.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3957.5 135.12,-3959.5 273.88,-3959.5 273.88,-3957.5 135.12,-3957.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3955.5 135.12,-3957.5 273.88,-3957.5 273.88,-3955.5 135.12,-3955.5"/>
+<text text-anchor="start" x="166.62" y="-3940.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3933.5 135.12,-3935.5 273.88,-3935.5 273.88,-3933.5 135.12,-3933.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3931.5 135.12,-3933.5 273.88,-3933.5 273.88,-3931.5 135.12,-3931.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3929.5 135.12,-3931.5 273.88,-3931.5 273.88,-3929.5 135.12,-3929.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3927.5 135.12,-3929.5 273.88,-3929.5 273.88,-3927.5 135.12,-3927.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3925.5 135.12,-3927.5 273.88,-3927.5 273.88,-3925.5 135.12,-3925.5"/>
+<text text-anchor="start" x="168.88" y="-3910.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3903.5 135.12,-3905.5 273.88,-3905.5 273.88,-3903.5 135.12,-3903.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3901.5 135.12,-3903.5 273.88,-3903.5 273.88,-3901.5 135.12,-3901.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3899.5 135.12,-3901.5 273.88,-3901.5 273.88,-3899.5 135.12,-3899.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3897.5 135.12,-3899.5 273.88,-3899.5 273.88,-3897.5 135.12,-3897.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3895.5 135.12,-3897.5 273.88,-3897.5 273.88,-3895.5 135.12,-3895.5"/>
+<text text-anchor="start" x="167.75" y="-3880.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YEWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3873.5 135.12,-3875.5 273.88,-3875.5 273.88,-3873.5 135.12,-3873.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3871.5 135.12,-3873.5 273.88,-3873.5 273.88,-3871.5 135.12,-3871.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3869.5 135.12,-3871.5 273.88,-3871.5 273.88,-3869.5 135.12,-3869.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3867.5 135.12,-3869.5 273.88,-3869.5 273.88,-3867.5 135.12,-3867.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3865.5 135.12,-3867.5 273.88,-3867.5 273.88,-3865.5 135.12,-3865.5"/>
+<text text-anchor="start" x="170" y="-3850.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3843.5 135.12,-3845.5 273.88,-3845.5 273.88,-3843.5 135.12,-3843.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3841.5 135.12,-3843.5 273.88,-3843.5 273.88,-3841.5 135.12,-3841.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3839.5 135.12,-3841.5 273.88,-3841.5 273.88,-3839.5 135.12,-3839.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3837.5 135.12,-3839.5 273.88,-3839.5 273.88,-3837.5 135.12,-3837.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3835.5 135.12,-3837.5 273.88,-3837.5 273.88,-3835.5 135.12,-3835.5"/>
+<text text-anchor="start" x="167" y="-3820.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GYWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3813.5 135.12,-3815.5 273.88,-3815.5 273.88,-3813.5 135.12,-3813.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3811.5 135.12,-3813.5 273.88,-3813.5 273.88,-3811.5 135.12,-3811.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3809.5 135.12,-3811.5 273.88,-3811.5 273.88,-3809.5 135.12,-3809.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3807.5 135.12,-3809.5 273.88,-3809.5 273.88,-3807.5 135.12,-3807.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3805.5 135.12,-3807.5 273.88,-3807.5 273.88,-3805.5 135.12,-3805.5"/>
+<text text-anchor="start" x="169.25" y="-3790.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3783.5 135.12,-3785.5 273.88,-3785.5 273.88,-3783.5 135.12,-3783.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3781.5 135.12,-3783.5 273.88,-3783.5 273.88,-3781.5 135.12,-3781.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3779.5 135.12,-3781.5 273.88,-3781.5 273.88,-3779.5 135.12,-3779.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3777.5 135.12,-3779.5 273.88,-3779.5 273.88,-3777.5 135.12,-3777.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3775.5 135.12,-3777.5 273.88,-3777.5 273.88,-3775.5 135.12,-3775.5"/>
+<text text-anchor="start" x="167.38" y="-3760.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3753.5 135.12,-3755.5 273.88,-3755.5 273.88,-3753.5 135.12,-3753.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3751.5 135.12,-3753.5 273.88,-3753.5 273.88,-3751.5 135.12,-3751.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3749.5 135.12,-3751.5 273.88,-3751.5 273.88,-3749.5 135.12,-3749.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3747.5 135.12,-3749.5 273.88,-3749.5 273.88,-3747.5 135.12,-3747.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3745.5 135.12,-3747.5 273.88,-3747.5 273.88,-3745.5 135.12,-3745.5"/>
+<text text-anchor="start" x="169.62" y="-3730.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BNPK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3723.5 135.12,-3725.5 273.88,-3725.5 273.88,-3723.5 135.12,-3723.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3721.5 135.12,-3723.5 273.88,-3723.5 273.88,-3721.5 135.12,-3721.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3719.5 135.12,-3721.5 273.88,-3721.5 273.88,-3719.5 135.12,-3719.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3717.5 135.12,-3719.5 273.88,-3719.5 273.88,-3717.5 135.12,-3717.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3715.5 135.12,-3717.5 273.88,-3717.5 273.88,-3715.5 135.12,-3715.5"/>
+<text text-anchor="start" x="167.38" y="-3700.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3693.5 135.12,-3695.5 273.88,-3695.5 273.88,-3693.5 135.12,-3693.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3691.5 135.12,-3693.5 273.88,-3693.5 273.88,-3691.5 135.12,-3691.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3689.5 135.12,-3691.5 273.88,-3691.5 273.88,-3689.5 135.12,-3689.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3687.5 135.12,-3689.5 273.88,-3689.5 273.88,-3687.5 135.12,-3687.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3685.5 135.12,-3687.5 273.88,-3687.5 273.88,-3685.5 135.12,-3685.5"/>
+<text text-anchor="start" x="169.62" y="-3670.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BUBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3663.5 135.12,-3665.5 273.88,-3665.5 273.88,-3663.5 135.12,-3663.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3661.5 135.12,-3663.5 273.88,-3663.5 273.88,-3661.5 135.12,-3661.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3659.5 135.12,-3661.5 273.88,-3661.5 273.88,-3659.5 135.12,-3659.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3657.5 135.12,-3659.5 273.88,-3659.5 273.88,-3657.5 135.12,-3657.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3655.5 135.12,-3657.5 273.88,-3657.5 273.88,-3655.5 135.12,-3655.5"/>
+<text text-anchor="start" x="166.62" y="-3640.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3633.5 135.12,-3635.5 273.88,-3635.5 273.88,-3633.5 135.12,-3633.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3631.5 135.12,-3633.5 273.88,-3633.5 273.88,-3631.5 135.12,-3631.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3629.5 135.12,-3631.5 273.88,-3631.5 273.88,-3629.5 135.12,-3629.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3627.5 135.12,-3629.5 273.88,-3629.5 273.88,-3627.5 135.12,-3627.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3625.5 135.12,-3627.5 273.88,-3627.5 273.88,-3625.5 135.12,-3625.5"/>
+<text text-anchor="start" x="168.88" y="-3610.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RDBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3603.5 135.12,-3605.5 273.88,-3605.5 273.88,-3603.5 135.12,-3603.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3601.5 135.12,-3603.5 273.88,-3603.5 273.88,-3601.5 135.12,-3601.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3599.5 135.12,-3601.5 273.88,-3601.5 273.88,-3599.5 135.12,-3599.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3597.5 135.12,-3599.5 273.88,-3599.5 273.88,-3597.5 135.12,-3597.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3595.5 135.12,-3597.5 273.88,-3597.5 273.88,-3595.5 135.12,-3595.5"/>
+<text text-anchor="start" x="167.38" y="-3580.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKWH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3573.5 135.12,-3575.5 273.88,-3575.5 273.88,-3573.5 135.12,-3573.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3571.5 135.12,-3573.5 273.88,-3573.5 273.88,-3571.5 135.12,-3571.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3569.5 135.12,-3571.5 273.88,-3571.5 273.88,-3569.5 135.12,-3569.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3567.5 135.12,-3569.5 273.88,-3569.5 273.88,-3567.5 135.12,-3567.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3565.5 135.12,-3567.5 273.88,-3567.5 273.88,-3565.5 135.12,-3565.5"/>
+<text text-anchor="start" x="169.62" y="-3550.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BKBN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3543.5 135.12,-3545.5 273.88,-3545.5 273.88,-3543.5 135.12,-3543.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3541.5 135.12,-3543.5 273.88,-3543.5 273.88,-3541.5 135.12,-3541.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3539.5 135.12,-3541.5 273.88,-3541.5 273.88,-3539.5 135.12,-3539.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3537.5 135.12,-3539.5 273.88,-3539.5 273.88,-3537.5 135.12,-3537.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3535.5 135.12,-3537.5 273.88,-3537.5 273.88,-3535.5 135.12,-3535.5"/>
+<text text-anchor="start" x="168.5" y="-3520.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNGY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3513.5 135.12,-3515.5 273.88,-3515.5 273.88,-3513.5 135.12,-3513.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3511.5 135.12,-3513.5 273.88,-3513.5 273.88,-3511.5 135.12,-3511.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3509.5 135.12,-3511.5 273.88,-3511.5 273.88,-3509.5 135.12,-3509.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3507.5 135.12,-3509.5 273.88,-3509.5 273.88,-3507.5 135.12,-3507.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3505.5 135.12,-3507.5 273.88,-3507.5 273.88,-3505.5 135.12,-3505.5"/>
+<text text-anchor="start" x="169.25" y="-3490.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3483.5 135.12,-3485.5 273.88,-3485.5 273.88,-3483.5 135.12,-3483.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3481.5 135.12,-3483.5 273.88,-3483.5 273.88,-3481.5 135.12,-3481.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3479.5 135.12,-3481.5 273.88,-3481.5 273.88,-3479.5 135.12,-3479.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3477.5 135.12,-3479.5 273.88,-3479.5 273.88,-3477.5 135.12,-3477.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3475.5 135.12,-3477.5 273.88,-3477.5 273.88,-3475.5 135.12,-3475.5"/>
+<text text-anchor="start" x="168.88" y="-3460.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GNPK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3453.5 135.12,-3455.5 273.88,-3455.5 273.88,-3453.5 135.12,-3453.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3451.5 135.12,-3453.5 273.88,-3453.5 273.88,-3451.5 135.12,-3451.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3449.5 135.12,-3451.5 273.88,-3451.5 273.88,-3449.5 135.12,-3449.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3447.5 135.12,-3449.5 273.88,-3449.5 273.88,-3447.5 135.12,-3447.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3445.5 135.12,-3447.5 273.88,-3447.5 273.88,-3445.5 135.12,-3445.5"/>
+<text text-anchor="start" x="170" y="-3430.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PKYE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3423.5 135.12,-3425.5 273.88,-3425.5 273.88,-3423.5 135.12,-3423.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3421.5 135.12,-3423.5 273.88,-3423.5 273.88,-3421.5 135.12,-3421.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3419.5 135.12,-3421.5 273.88,-3421.5 273.88,-3419.5 135.12,-3419.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3417.5 135.12,-3419.5 273.88,-3419.5 273.88,-3417.5 135.12,-3417.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3415.5 135.12,-3417.5 273.88,-3417.5 273.88,-3415.5 135.12,-3415.5"/>
+<text text-anchor="start" x="177.12" y="-3400.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;WH &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3393.5 135.12,-3395.5 273.88,-3395.5 273.88,-3393.5 135.12,-3393.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3391.5 135.12,-3393.5 273.88,-3393.5 273.88,-3391.5 135.12,-3391.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3389.5 135.12,-3391.5 273.88,-3391.5 273.88,-3389.5 135.12,-3389.5"/>
+<polygon fill="#ffffff" stroke="none" points="135.12,-3387.5 135.12,-3389.5 273.88,-3389.5 273.88,-3387.5 135.12,-3387.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3385.5 135.12,-3387.5 273.88,-3387.5 273.88,-3385.5 135.12,-3385.5"/>
+<text text-anchor="start" x="179.38" y="-3370.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3363.5 135.12,-3365.5 273.88,-3365.5 273.88,-3363.5 135.12,-3363.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3361.5 135.12,-3363.5 273.88,-3363.5 273.88,-3361.5 135.12,-3361.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3359.5 135.12,-3361.5 273.88,-3361.5 273.88,-3359.5 135.12,-3359.5"/>
+<polygon fill="#895956" stroke="none" points="135.12,-3357.5 135.12,-3359.5 273.88,-3359.5 273.88,-3357.5 135.12,-3357.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3355.5 135.12,-3357.5 273.88,-3357.5 273.88,-3355.5 135.12,-3355.5"/>
+<text text-anchor="start" x="178.62" y="-3340.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3333.5 135.12,-3335.5 273.88,-3335.5 273.88,-3333.5 135.12,-3333.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3331.5 135.12,-3333.5 273.88,-3333.5 273.88,-3331.5 135.12,-3331.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3329.5 135.12,-3331.5 273.88,-3331.5 273.88,-3329.5 135.12,-3329.5"/>
+<polygon fill="#00ff00" stroke="none" points="135.12,-3327.5 135.12,-3329.5 273.88,-3329.5 273.88,-3327.5 135.12,-3327.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3325.5 135.12,-3327.5 273.88,-3327.5 273.88,-3325.5 135.12,-3325.5"/>
+<text text-anchor="start" x="179.75" y="-3310.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3303.5 135.12,-3305.5 273.88,-3305.5 273.88,-3303.5 135.12,-3303.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3301.5 135.12,-3303.5 273.88,-3303.5 273.88,-3301.5 135.12,-3301.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3299.5 135.12,-3301.5 273.88,-3301.5 273.88,-3299.5 135.12,-3299.5"/>
+<polygon fill="#ffff00" stroke="none" points="135.12,-3297.5 135.12,-3299.5 273.88,-3299.5 273.88,-3297.5 135.12,-3297.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3295.5 135.12,-3297.5 273.88,-3297.5 273.88,-3295.5 135.12,-3295.5"/>
+<text text-anchor="start" x="179" y="-3280.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GY &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3273.5 135.12,-3275.5 273.88,-3275.5 273.88,-3273.5 135.12,-3273.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3271.5 135.12,-3273.5 273.88,-3273.5 273.88,-3271.5 135.12,-3271.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3269.5 135.12,-3271.5 273.88,-3271.5 273.88,-3269.5 135.12,-3269.5"/>
+<polygon fill="#999999" stroke="none" points="135.12,-3267.5 135.12,-3269.5 273.88,-3269.5 273.88,-3267.5 135.12,-3267.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3265.5 135.12,-3267.5 273.88,-3267.5 273.88,-3265.5 135.12,-3265.5"/>
+<text text-anchor="start" x="179.38" y="-3250.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3243.5 135.12,-3245.5 273.88,-3245.5 273.88,-3243.5 135.12,-3243.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3241.5 135.12,-3243.5 273.88,-3243.5 273.88,-3241.5 135.12,-3241.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3239.5 135.12,-3241.5 273.88,-3241.5 273.88,-3239.5 135.12,-3239.5"/>
+<polygon fill="#ff66cc" stroke="none" points="135.12,-3237.5 135.12,-3239.5 273.88,-3239.5 273.88,-3237.5 135.12,-3237.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3235.5 135.12,-3237.5 273.88,-3237.5 273.88,-3235.5 135.12,-3235.5"/>
+<text text-anchor="start" x="179.38" y="-3220.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3213.5 135.12,-3215.5 273.88,-3215.5 273.88,-3213.5 135.12,-3213.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3211.5 135.12,-3213.5 273.88,-3213.5 273.88,-3211.5 135.12,-3211.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3209.5 135.12,-3211.5 273.88,-3211.5 273.88,-3209.5 135.12,-3209.5"/>
+<polygon fill="#0066ff" stroke="none" points="135.12,-3207.5 135.12,-3209.5 273.88,-3209.5 273.88,-3207.5 135.12,-3207.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3205.5 135.12,-3207.5 273.88,-3207.5 273.88,-3205.5 135.12,-3205.5"/>
+<text text-anchor="start" x="178.62" y="-3190.2" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
+<polygon fill="#000000" stroke="none" points="135.12,-3183.5 135.12,-3185.5 273.88,-3185.5 273.88,-3183.5 135.12,-3183.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3181.5 135.12,-3183.5 273.88,-3183.5 273.88,-3181.5 135.12,-3181.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3179.5 135.12,-3181.5 273.88,-3181.5 273.88,-3179.5 135.12,-3179.5"/>
+<polygon fill="#ff0000" stroke="none" points="135.12,-3177.5 135.12,-3179.5 273.88,-3179.5 273.88,-3177.5 135.12,-3177.5"/>
+<polygon fill="#000000" stroke="none" points="135.12,-3175.5 135.12,-3177.5 273.88,-3177.5 273.88,-3175.5 135.12,-3175.5"/>
+<text text-anchor="start" x="144.38" y="-3160.2" font-family="arial" font-size="14.00"> </text>
</g>
<!-- W11&#45;&#45;Resistor -->
-<g id="edge115" class="edge">
+<g id="edge33" class="edge">
<title>W11:e&#45;&#45;Resistor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2427.75C1953.72,-2428.8 1989.01,-2396.55 2139.12,-2395.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2429.75C1955.07,-2430.27 1990.36,-2398.02 2139.12,-2397.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2431.75C1956.42,-2431.75 1991.7,-2399.5 2139.12,-2399.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2433.75C1957.77,-2433.23 1993.05,-2400.98 2139.12,-2401.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2435.75C1959.12,-2434.7 1994.4,-2402.45 2139.12,-2403.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1188.75C2040.08,-1190.57 2083.7,-1123.32 2282.25,-1121.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1190.75C2041.76,-1191.66 2085.38,-1124.41 2282.25,-1123.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1192.75C2043.44,-1192.75 2087.06,-1125.5 2282.25,-1125.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1194.75C2045.12,-1193.84 2088.74,-1126.59 2282.25,-1127.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1196.75C2046.8,-1194.93 2090.42,-1127.68 2282.25,-1129.5"/>
</g>
<!-- W11&#45;&#45;Resistor -->
-<g id="edge117" class="edge">
+<g id="edge35" class="edge">
<title>W11:e&#45;&#45;Resistor:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2397.75C1958.11,-2398.33 1994.15,-2420.08 2139.12,-2419.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2399.75C1957.07,-2400.04 1993.12,-2421.79 2139.12,-2421.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2401.75C1956.04,-2401.75 1992.08,-2423.5 2139.12,-2423.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2403.75C1955.01,-2403.46 1991.05,-2425.21 2139.12,-2425.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2405.75C1953.97,-2405.17 1990.02,-2426.92 2139.12,-2427.5"/>
-</g>
-<!-- W11&#45;&#45;_GND_20 -->
-<g id="edge119" class="edge">
-<title>W11:e&#45;&#45;_GND_20:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2355.75C1965.85,-2355.75 2005.03,-2351 2161.88,-2351"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1158.75C2040.17,-1158.89 2088.21,-1145.64 2282.25,-1145.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1160.75C2040.7,-1160.82 2088.74,-1147.57 2282.25,-1147.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1162.75C2041.23,-1162.75 2089.27,-1149.5 2282.25,-1149.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1164.75C2041.76,-1164.68 2089.8,-1151.43 2282.25,-1151.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1166.75C2042.29,-1166.61 2090.33,-1153.36 2282.25,-1153.5"/>
</g>
<!-- W12&#45;&#45;Radar -->
-<g id="edge121" class="edge">
+<g id="edge37" class="edge">
<title>W12:e&#45;&#45;Radar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2187.75C1905.42,-2189.75 1927.13,-2227.25 2023.12,-2225.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1802.5,-2189.75C1903.69,-2190.75 1925.39,-2228.25 2023.12,-2227.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1802.5,-2191.75C1901.96,-2191.75 1923.66,-2229.25 2023.12,-2229.25"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1802.5,-2193.75C1900.23,-2192.75 1921.93,-2230.25 2023.12,-2231.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2195.75C1898.5,-2193.75 1920.2,-2231.25 2023.12,-2233.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1625.75C1992.71,-1626.68 2026.91,-1655.18 2166.25,-1654.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1627.75C1991.43,-1628.21 2025.63,-1656.71 2166.25,-1656.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1629.75C1990.15,-1629.75 2024.35,-1658.25 2166.25,-1658.25"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1848.25,-1631.75C1988.87,-1631.29 2023.07,-1659.79 2166.25,-1660.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1633.75C1987.59,-1632.82 2021.79,-1661.32 2166.25,-1662.25"/>
</g>
<!-- W12&#45;&#45;Radar -->
-<g id="edge123" class="edge">
+<g id="edge39" class="edge">
<title>W12:e&#45;&#45;Radar:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2157.75C1912.64,-2161.39 1920.95,-2252.89 2023.12,-2249.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1802.5,-2159.75C1910.65,-2161.57 1918.96,-2253.07 2023.12,-2251.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1802.5,-2161.75C1908.65,-2161.75 1916.97,-2253.25 2023.12,-2253.25"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1802.5,-2163.75C1906.66,-2161.93 1914.98,-2253.43 2023.12,-2255.25"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2165.75C1904.67,-2162.11 1912.99,-2253.61 2023.12,-2257.25"/>
-</g>
-<!-- W12&#45;&#45;_GND_21 -->
-<g id="edge125" class="edge">
-<title>W12:e&#45;&#45;_GND_21:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1802.5,-2115.75C1960.37,-2115.75 1825.08,-1886.52 1953,-1794 2028.76,-1739.2 2068.38,-1769 2161.88,-1769"/>
-</g>
-<!-- W13&#45;&#45;VP&#45;X J2 -->
-<g id="edge127" class="edge">
-<title>W13:e&#45;&#45;VP&#45;X J2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3586.5C1011.71,-3591.99 925.21,-3807.99 1037,-3802.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M892.5,-3588.5C1009.86,-3591.24 923.36,-3807.24 1037,-3804.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M892.5,-3590.5C1008,-3590.5 921.5,-3806.5 1037,-3806.5"/>
-<path fill="none" stroke="#895956" stroke-width="2" d="M892.5,-3592.5C1006.14,-3589.76 919.64,-3805.76 1037,-3808.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3594.5C1004.29,-3589.01 917.79,-3805.01 1037,-3810.5"/>
-</g>
-<!-- W13&#45;&#45;VP&#45;X J2 -->
-<g id="edge129" class="edge">
-<title>W13:e&#45;&#45;VP&#45;X J2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3556.5C1013.93,-3562.02 922.97,-3784.02 1037,-3778.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M892.5,-3558.5C1012.08,-3561.26 921.12,-3783.26 1037,-3780.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M892.5,-3560.5C1010.23,-3560.5 919.27,-3782.5 1037,-3782.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M892.5,-3562.5C1008.38,-3559.74 917.42,-3781.74 1037,-3784.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M892.5,-3564.5C1006.53,-3558.98 915.57,-3780.98 1037,-3786.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1595.75C1998.08,-1598.55 2024.05,-1681.05 2166.25,-1678.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1597.75C1996.17,-1599.15 2022.15,-1681.65 2166.25,-1680.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1599.75C1994.26,-1599.75 2020.24,-1682.25 2166.25,-1682.25"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1848.25,-1601.75C1992.35,-1600.35 2018.33,-1682.85 2166.25,-1684.25"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1848.25,-1603.75C1990.45,-1600.95 2016.42,-1683.45 2166.25,-1686.25"/>
+</g>
+<!-- W13&#45;&#45;VP&#45;XJ2 -->
+<g id="edge41" class="edge">
+<title>W13:e&#45;&#45;VP&#45;XJ2:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2179.5C964.31,-2183.72 959.68,-2268.72 1030,-2264.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M886,-2181.5C962.32,-2183.61 957.68,-2268.61 1030,-2266.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M886,-2183.5C960.32,-2183.5 955.68,-2268.5 1030,-2268.5"/>
+<path fill="none" stroke="#895956" stroke-width="2" d="M886,-2185.5C958.32,-2183.39 953.68,-2268.39 1030,-2270.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2187.5C956.32,-2183.28 951.69,-2268.28 1030,-2272.5"/>
+</g>
+<!-- W13&#45;&#45;VP&#45;XJ2 -->
+<g id="edge43" class="edge">
+<title>W13:e&#45;&#45;VP&#45;XJ2:w</title>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2149.5C965.7,-2153.82 958.28,-2244.82 1030,-2240.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M886,-2151.5C963.7,-2153.66 956.29,-2244.66 1030,-2242.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M886,-2153.5C961.71,-2153.5 954.29,-2244.5 1030,-2244.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M886,-2155.5C959.71,-2153.34 952.3,-2244.34 1030,-2246.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M886,-2157.5C957.72,-2153.18 950.3,-2244.18 1030,-2248.5"/>
</g>
<!-- W15&#45;&#45;Swash1 -->
-<g id="edge131" class="edge">
+<g id="edge45" class="edge">
<title>W15:e&#45;&#45;Swash1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2907.75C1913.95,-2913.01 1855.64,-3089.26 1953,-3084"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2909.75C1912.05,-2912.38 1853.74,-3088.63 1953,-3086"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2911.75C1910.15,-2911.75 1851.85,-3088 1953,-3088"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2913.75C1908.26,-2911.12 1849.95,-3087.37 1953,-3090"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2915.75C1906.36,-2910.49 1848.05,-3086.74 1953,-3092"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3263.75C1407.23,-3266.97 1421.24,-3337.22 1518,-3334"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1302.62,-3265.75C1405.27,-3267.36 1419.28,-3337.61 1518,-3336"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1302.62,-3267.75C1403.31,-3267.75 1417.31,-3338 1518,-3338"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1302.62,-3269.75C1401.35,-3268.14 1415.35,-3338.39 1518,-3340"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3271.75C1399.39,-3268.53 1413.39,-3338.78 1518,-3342"/>
</g>
<!-- W15&#45;&#45;Swash1 -->
-<g id="edge133" class="edge">
+<g id="edge47" class="edge">
<title>W15:e&#45;&#45;Swash1:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2877.75C1916.02,-2883.05 1853.55,-3065.3 1953,-3060"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2879.75C1914.12,-2882.4 1851.66,-3064.65 1953,-3062"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2881.75C1912.23,-2881.75 1849.77,-3064 1953,-3064"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2883.75C1910.34,-2881.1 1847.88,-3063.35 1953,-3066"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2885.75C1908.45,-2880.45 1845.98,-3062.7 1953,-3068"/>
-</g>
-<!-- W15&#45;&#45;_GND_18 -->
-<g id="edge135" class="edge">
-<title>W15:e&#45;&#45;_GND_18:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2835.75C1892.52,-2835.75 1876.27,-2747.99 1953,-2715 2038.84,-2678.09 2068.43,-2691 2161.88,-2691"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3233.75C1408.12,-3237.11 1420.4,-3313.36 1518,-3310"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1302.62,-3235.75C1406.14,-3237.43 1418.43,-3313.68 1518,-3312"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1302.62,-3237.75C1404.17,-3237.75 1416.46,-3314 1518,-3314"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1302.62,-3239.75C1402.19,-3238.07 1414.48,-3314.32 1518,-3316"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1302.62,-3241.75C1400.22,-3238.39 1412.51,-3314.64 1518,-3318"/>
</g>
<!-- W16&#45;&#45;Swash2 -->
-<g id="edge137" class="edge">
+<g id="edge49" class="edge">
<title>W16:e&#45;&#45;Swash2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2667.75C1877.84,-2671.84 1876.16,-2593.59 1953,-2589.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2669.75C1879.84,-2671.79 1878.16,-2593.54 1953,-2591.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2671.75C1881.84,-2671.75 1880.16,-2593.5 1953,-2593.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-2673.75C1883.84,-2671.71 1882.16,-2593.46 1953,-2595.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2675.75C1885.84,-2671.66 1884.16,-2593.41 1953,-2597.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2470.75C1395.54,-2470.79 1419.9,-2467.54 1518,-2467.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2472.75C1395.8,-2472.77 1420.17,-2469.52 1518,-2469.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2474.75C1396.07,-2474.75 1420.43,-2471.5 1518,-2471.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2476.75C1396.33,-2476.73 1420.7,-2473.48 1518,-2473.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2478.75C1396.6,-2478.71 1420.96,-2475.46 1518,-2475.5"/>
</g>
<!-- W16&#45;&#45;Swash2 -->
-<g id="edge139" class="edge">
+<g id="edge51" class="edge">
<title>W16:e&#45;&#45;Swash2:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2637.75C1876.6,-2641.71 1877.4,-2569.46 1953,-2565.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2639.75C1878.6,-2641.73 1879.4,-2569.48 1953,-2567.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2641.75C1880.6,-2641.75 1881.4,-2569.5 1953,-2569.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-2643.75C1882.6,-2641.77 1883.4,-2569.52 1953,-2571.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2645.75C1884.6,-2641.79 1885.4,-2569.54 1953,-2573.5"/>
-</g>
-<!-- W16&#45;&#45;_GND_16 -->
-<g id="edge141" class="edge">
-<title>W16:e&#45;&#45;_GND_16:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-2595.75C1876.71,-2595.75 1887.01,-2561.17 1953,-2546 2044.12,-2525.06 2068.38,-2521 2161.88,-2521"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2440.75C1396.51,-2440.78 1420.89,-2443.53 1518,-2443.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2442.75C1396.29,-2442.76 1420.66,-2445.51 1518,-2445.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2444.75C1396.06,-2444.75 1420.44,-2447.5 1518,-2447.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2446.75C1395.84,-2446.74 1420.21,-2449.49 1518,-2449.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2448.75C1395.61,-2448.72 1419.99,-2451.47 1518,-2451.5"/>
</g>
<!-- W17&#45;&#45;Swash3 -->
-<g id="edge143" class="edge">
+<g id="edge53" class="edge">
<title>W17:e&#45;&#45;Swash3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3167.75C1887.48,-3171.98 1882.51,-3257.73 1953,-3253.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-3169.75C1885.48,-3171.87 1880.51,-3257.62 1953,-3255.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-3171.75C1883.49,-3171.75 1878.51,-3257.5 1953,-3257.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1809,-3173.75C1881.49,-3171.63 1876.52,-3257.38 1953,-3259.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3175.75C1879.49,-3171.52 1874.52,-3257.27 1953,-3261.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2710.75C1395.54,-2710.79 1419.9,-2707.54 1518,-2707.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2712.75C1395.8,-2712.77 1420.17,-2709.52 1518,-2709.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2714.75C1396.07,-2714.75 1420.43,-2711.5 1518,-2711.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1298.5,-2716.75C1396.33,-2716.73 1420.7,-2713.48 1518,-2713.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2718.75C1396.6,-2718.71 1420.96,-2715.46 1518,-2715.5"/>
</g>
<!-- W17&#45;&#45;Swash3 -->
-<g id="edge145" class="edge">
+<g id="edge55" class="edge">
<title>W17:e&#45;&#45;Swash3:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3137.75C1888.87,-3142.09 1881.1,-3233.84 1953,-3229.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-3139.75C1886.88,-3141.92 1879.11,-3233.67 1953,-3231.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-3141.75C1884.89,-3141.75 1877.11,-3233.5 1953,-3233.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1809,-3143.75C1882.89,-3141.58 1875.12,-3233.33 1953,-3235.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3145.75C1880.9,-3141.41 1873.13,-3233.16 1953,-3237.5"/>
-</g>
-<!-- W17&#45;&#45;_GND_15 -->
-<g id="edge147" class="edge">
-<title>W17:e&#45;&#45;_GND_15:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1809,-3095.75C1879.26,-3095.75 1885.28,-3142.26 1953,-3161 2043.06,-3185.92 2068.43,-3185 2161.88,-3185"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2680.75C1396.51,-2680.78 1420.89,-2683.53 1518,-2683.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2682.75C1396.29,-2682.76 1420.66,-2685.51 1518,-2685.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2684.75C1396.06,-2684.75 1420.44,-2687.5 1518,-2687.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1298.5,-2686.75C1395.84,-2686.74 1420.21,-2689.49 1518,-2689.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1298.5,-2688.75C1395.61,-2688.72 1419.99,-2691.47 1518,-2691.5"/>
</g>
<!-- W18&#45;&#45;Yaw -->
-<g id="edge149" class="edge">
+<g id="edge57" class="edge">
<title>W18:e&#45;&#45;Yaw:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3417.75C1868.21,-3417.96 1885.34,-3423.71 1953,-3423.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1798,-3419.75C1867.57,-3419.85 1884.7,-3425.6 1953,-3425.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1798,-3421.75C1866.94,-3421.75 1884.06,-3427.5 1953,-3427.5"/>
-<path fill="none" stroke="#ffff00" stroke-width="2" d="M1798,-3423.75C1866.3,-3423.65 1883.43,-3429.4 1953,-3429.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3425.75C1865.66,-3425.54 1882.79,-3431.29 1953,-3431.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2950.75C1400.87,-2953.81 1416.1,-2890.56 1518,-2887.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1306.75,-2952.75C1402.81,-2954.28 1418.05,-2891.03 1518,-2889.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1306.75,-2954.75C1404.76,-2954.75 1419.99,-2891.5 1518,-2891.5"/>
+<path fill="none" stroke="#ffff00" stroke-width="2" d="M1306.75,-2956.75C1406.7,-2955.22 1421.94,-2891.97 1518,-2893.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2958.75C1408.65,-2955.69 1423.88,-2892.44 1518,-2895.5"/>
</g>
<!-- W18&#45;&#45;Yaw -->
-<g id="edge151" class="edge">
+<g id="edge59" class="edge">
<title>W18:e&#45;&#45;Yaw:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3387.75C1869.38,-3388.47 1886.2,-3400.22 1953,-3399.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1798,-3389.75C1868.23,-3390.11 1885.06,-3401.86 1953,-3401.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1798,-3391.75C1867.09,-3391.75 1883.91,-3403.5 1953,-3403.5"/>
-<path fill="none" stroke="#00ff00" stroke-width="2" d="M1798,-3393.75C1865.94,-3393.39 1882.77,-3405.14 1953,-3405.5"/>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3395.75C1864.8,-3395.03 1881.62,-3406.78 1953,-3407.5"/>
-</g>
-<!-- W18&#45;&#45;_GND_17 -->
-<g id="edge153" class="edge">
-<title>W18:e&#45;&#45;_GND_17:w</title>
-<path fill="none" stroke="#000000" stroke-width="2" d="M1798,-3345.75C1959.77,-3345.75 2000.1,-3355 2161.88,-3355"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2920.75C1400.19,-2923.63 1416.88,-2866.38 1518,-2863.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1306.75,-2922.75C1402.11,-2924.19 1418.8,-2866.94 1518,-2865.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1306.75,-2924.75C1404.03,-2924.75 1420.72,-2867.5 1518,-2867.5"/>
+<path fill="none" stroke="#00ff00" stroke-width="2" d="M1306.75,-2926.75C1405.95,-2925.31 1422.64,-2868.06 1518,-2869.5"/>
+<path fill="none" stroke="#000000" stroke-width="2" d="M1306.75,-2928.75C1407.87,-2925.87 1424.56,-2868.62 1518,-2871.5"/>
</g>
</g>
</svg>
diff --git a/wireviz/Choppy_IB_1X.yml b/wireviz/Choppy_IB_1X.yml
index 5196ec7..4bd7ab3 100644
--- a/wireviz/Choppy_IB_1X.yml
+++ b/wireviz/Choppy_IB_1X.yml
@@ -6,6 +6,7 @@ templates: # defining templates to be used later on
GND, 3.3V, GND, 5V, GND, ANALOG_1, ANALOG_2, ANALOG_3, GND, FTS1_OUT, FTS2_OUT, GND, V_ARB_TX, V_ARB_RX,
GND, V_ARB_VCC, FTS3_OUT_MPU, OUT_RS485_P, OUT_RS485_N, IN_RS845_N, IN_RS845_P, RS-485_GND, EQEP_A, EQEP_B, EQEP_S, EQEP_I,
GND, V_USB_DP, V_USB_DN, V_USB_ID, FTS_OUT_MPU, FTS2_OUT_MPU, GND, GND, VCC, VCC]
+ pins: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68]
image:
src: images\CEX_plug.png
caption: 68 pin connector for Autopilot 1x (frontal view)
@@ -242,9 +243,9 @@ connections:
- Veronte 1X: [9,18,21,24,33,35,37,41,44,47,59,65-66]
- W8: [7,16-17,20,24,26,28,32,35,38,50,56-57]
- [GND,GND,GND,GND,GND,GND,GND,GND,GND,GND,GND,GND,GND]
- -
- - Veronte 1X: [25-26]
- - W1: [1-2]
+ # -
+ # - Veronte 1X: [25-26]
+ # - W1: [1-2]
# - [S,S,S]
# - W2: [1-3]
-
@@ -275,107 +276,83 @@ connections:
- W6: [3,1,2]
- [S,S,S]
- W7: [1-3]
- # -
- # - W7: [1-3]
- CEX: [7-9]
-
- W6: [1-2]
- [S,S]
- W12: [1-2]
- # -
- # - W10: [1-3]
- Radar: [2,1]
-
- Veronte 1X: [28-30]
- W6: [1-3]
- # - [S,S,S]
- # - W9: [1-3]
- # -
- # - W9: [1-3]
- ECU CAN Bus: [A,B,C]
- # -
- # - Veronte 1X: [1,9]
- # - W8: [1-2]
- # - Servo: [1-2]
-
- W6: [1-2]
- [S, S]
- W11: [1-2]
- Resistor: [2,1]
- # -
- # - Nav Light 1: [4]
- # - W12: [1]
- # - Nav Light 2: [4]
-
- Veronte 1X: [2-3]
- W13: [1-2]
- VP-X J2: [1-2]
# -
- # - VP-X J8: [1]
- # - W14: [1]
- # - Nav Light 1: [1]
+ # - W6: s
+ # - shield1: [1]
+ # -
+ # - shield1: [1]
+ # - W7: s
+ # -
+ # - shield1: [1]
+ # - W11: s
+ # -
+ # - shield1: [1]
+ # - W12: s
# -
- # - Nav relay: [1]
- # - W14: [1]
- # - Nav Light 1: [1]
- -
- - W6: s
- - shield1: [1]
- -
- - shield1: [1]
- - W7: s
- -
- - shield1: [1]
- - W11: s
- -
- - shield1: [1]
- - W12: s
- -
- - W1: s
- - shield2: [1]
- -
- - shield2: [1]
- - W16: s
- -
- - shield2: [1]
- - W17: s
- -
- - shield2: [1]
- - W15: s
- -
- - shield2: [1]
- - W18: s
- -
- - W3: s
- - [GND]
- -
- - W17: s
- - [GND]
- -
- - W16: s
- - [GND]
- -
- - W18: s
- - [GND]
- -
- - W15: s
- - [GND]
- -
- - W7: s
- - [GND]
- -
- - W11: s
- - [GND]
- -
- - W12: s
- - [GND]
- -
- - [GND]
- - W3: s
- -
- - [GND]
- - W1: s
- -
- - [GND]
- - W6: s
+ # - W1: s
+ # - shield2: [1]
+ # -
+ # - shield2: [1]
+ # - W16: s
+ # -
+ # - shield2: [1]
+ # - W17: s
+ # -
+ # - shield2: [1]
+ # - W15: s
+ # -
+ # - shield2: [1]
+ # - W18: s
+ # -
+ # - W3: s
+ # - [GND]
+ # -
+ # - W17: s
+ # - [GND]
+ # -
+ # - W16: s
+ # - [GND]
+ # -
+ # - W18: s
+ # - [GND]
+ # -
+ # - W15: s
+ # - [GND]
+ # -
+ # - W7: s
+ # - [GND]
+ # -
+ # - W11: s
+ # - [GND]
+ # -
+ # - W12: s
+ # - [GND]
+ # -
+ # - [GND]
+ # - W3: s
+ # -
+ # - [GND]
+ # - W1: s
+ # -
+ # - [GND]
+ # - W6: s
\ No newline at end of file
diff --git a/wireviz/Choppy_IB_CEX.csv b/wireviz/Choppy_IB_CEX.csv
index b0cc6e6..8510a14 100644
--- a/wireviz/Choppy_IB_CEX.csv
+++ b/wireviz/Choppy_IB_CEX.csv
@@ -1,70 +1,73 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2,Notes
-0,8649871,Veronte CEX,1,12 Inches,WH,22 AWG,----,----,none
-1,8650661,Veronte CEX,2,12 Inches,BN,22 AWG,----,----,none
-2,8653711,Veronte CEX,5,12 Inches,GN,22 AWG,----,----,none
-3,8654891,Veronte CEX,6,12 Inches,YE,22 AWG,----,----,none
-4,8648711,Veronte CEX,10,12 Inches,GY,22 AWG,----,----,none
-5,8649801,Veronte CEX,11,12 Inches,PK,22 AWG,----,----,none
-6,8650861,Veronte CEX,12,12 Inches,VT,22 AWG,----,----,none
-7,8651801,Veronte CEX,13,12 Inches,PKGY,22 AWG,----,----,none
-8,8652661,Veronte CEX,14,12 Inches,BURD,22 AWG,----,----,none
-9,8648711,Veronte CEX,20,12 Inches,GNWH,22 AWG,----,----,none
-10,8649711,Veronte CEX,21,12 Inches,GNBN,22 AWG,----,----,none
-11,8650711,Veronte CEX,22,12 Inches,GYWH,22 AWG,----,----,none
-12,8652661,Veronte CEX, 24,12 Inches,BNGY,22 AWG,----,----,none
-13,8654801,Veronte CEX,26,12 Inches,PKWH,22 AWG,----,----,none
-14,8655661,Veronte CEX,27,12 Inches,BUBN,22 AWG,----,----,none
-15,8656821,Veronte CEX,28,12 Inches,RDWH,22 AWG,----,----,none
-16,8657821,Veronte CEX,29,12 Inches,RDBN,22 AWG,----,----,none
-17,8648661,Veronte CEX,30,12 Inches,BKWH,22 AWG,----,----,none
-18,8649661,Veronte CEX,31,12 Inches,BKBN,22 AWG,----,----,none
-19,8650711,Veronte CEX,32,12 Inches,GNGY,22 AWG,----,----,none
-20,8651711,Veronte CEX,33,12 Inches,GNYE,22 AWG,----,----,none
-21,8652711,Veronte CEX,34,12 Inches,GNPK,22 AWG,----,----,none
-22,8653801,Veronte CEX,35,12 Inches,PKYE,22 AWG,----,----,none
-23,8654871,Veronte CEX,36,12 Inches,WH,22 AWG,----,----,none
-24,8655661,Veronte CEX,37,12 Inches,BN,22 AWG,----,----,none
-25,8656711,Veronte CEX,38,12 Inches,GN,22 AWG,----,----,none
-26,8657891,Veronte CEX,39,12 Inches,YE,22 AWG,----,----,none
-27,8648711,Veronte CEX,40,12 Inches,GY,22 AWG,----,----,none
-28,8649801,Veronte CEX,41,12 Inches,PK,22 AWG,----,----,none
-29,8651661,Veronte CEX,43,12 Inches,BU,22 AWG,----,----,none
-30,8652821,Veronte CEX,44,12 Inches,RD,22 AWG,----,----,none
-31,8653661,Veronte CEX,45,12 Inches,BK,22 AWG,----,----,none
-32,8654801,Veronte CEX,46,12 Inches,PK,22 AWG,----,----,none
-33,8655801,Veronte CEX,47,12 Inches,PKGY,22 AWG,----,----,none
-34,8656661,Veronte CEX,48,12 Inches,BURD,22 AWG,----,----,none
-35,8657711,Veronte CEX,49,12 Inches,GNWH,22 AWG,----,----,none
-36,8648711,Veronte CEX,50,12 Inches,GNBN,22 AWG,----,----,none
-37,8650891,Veronte CEX,52,12 Inches,YEWH,22 AWG,----,----,none
-38,8651661,Veronte CEX,53,12 Inches,BNYE,22 AWG,----,----,none
-39,8652711,Veronte CEX,54,12 Inches,GYWH,22 AWG,----,----,none
-40,8653661,Veronte CEX,55,12 Inches,BNGY,22 AWG,----,----,none
-41,8654801,Veronte CEX,56,12 Inches,PKWH,22 AWG,----,----,none
-42,8655661,Veronte CEX,57,12 Inches,BNPK,22 AWG,----,----,none
-43,8656661,Veronte CEX,58,12 Inches,BUWH,22 AWG,----,----,none
-44,8657661,Veronte CEX,59,12 Inches,BUBN,22 AWG,----,----,none
-45,8648821,Veronte CEX,60,12 Inches,RDWH,22 AWG,----,----,none
-46,8649821,Veronte CEX,61,12 Inches,RDBN,22 AWG,----,----,none
-47,8650661,Veronte CEX,62,12 Inches,BKWH,22 AWG,----,----,none
-48,8651661,Veronte CEX,63,12 Inches,BKBN,22 AWG,----,----,none
-49,8652711,Veronte CEX,64,12 Inches,GNGY,22 AWG,----,----,none
-50,8653711,Veronte CEX,65,12 Inches,GNYE,22 AWG,----,----,none
-51,8654711,Veronte CEX,66,12 Inches,GNPK,22 AWG,----,----,none
-52,8655801,Veronte CEX,67,12 Inches,PKYE,22 AWG,----,----,none
-53,8656871,Veronte CEX,68,12 Inches,WH,22 AWG,----,----,none
-54,8655662,Veronte CEX,7,12 Inches,BU,22 AWG,----,----,Twisted Pair
-55,8656822,Veronte CEX, 8,12 Inches,RD,22 AWG,----,----,Twisted Pair
-56,8657662,Veronte CEX, 9,12 Inches,BK,22 AWG,----,----,Twisted Pair
-57,8656664,Veronte CEX,18,124 Inches,BNPK,22 AWG,Mag,'RX',Twisted Pair
-58,8657664,Veronte CEX, 19,124 Inches,BUWH,22 AWG,Mag, 'TX',Twisted Pair
-59,8653896,Veronte CEX,15,87.5 Inches,YEWH,22 AWG,VPX J1,'RX',Twisted Pair
-60,8654666,Veronte CEX, 16,87.5 Inches,BNYE,22 AWG,VPX J1, 'TX',Twisted Pair
-61,86518713,Veronte CEX,3,12 Inches,WH,22 AWG,"GND', 'GND', 'GND', 'GND', 'GND', 'GND', 'GND'",'GND',none
-62,86526613,Veronte CEX, 4,12 Inches,BN,22 AWG,"GND', 'GND', 'GND', 'GND', 'GND', 'GND', 'GND'", 'GND',none
-63,86557113,Veronte CEX, 17,12 Inches,GN,22 AWG,"GND', 'GND', 'GND', 'GND', 'GND', 'GND', 'GND'", 'GND',none
-64,86518913,Veronte CEX, 23,12 Inches,YE,22 AWG,"GND', 'GND', 'GND', 'GND', 'GND', 'GND', 'GND'", 'GND',none
-65,86537113,Veronte CEX, 25,12 Inches,GY,22 AWG,"GND', 'GND', 'GND', 'GND', 'GND', 'GND', 'GND'", 'GND',none
-66,86508013,Veronte CEX, 42,12 Inches,PK,22 AWG,"GND', 'GND', 'GND', 'GND', 'GND', 'GND', 'GND'", 'GND',none
-67,86498613,Veronte CEX, 51,12 Inches,VT,22 AWG,"GND', 'GND', 'GND', 'GND', 'GND', 'GND', 'GND'", 'GND',none
-68,86556614,Veronte CEX,7,12 Inches,BU,22 AWG,----,----,Twisted Pair
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,890871,Veronte CEX,HEW.LM.368.XLNP,1,12 Inches,WH,22 AWG,----,----,----,
+1,800661,Veronte CEX,HEW.LM.368.XLNP,2,12 Inches,BN,22 AWG,----,----,----,
+2,830711,Veronte CEX,HEW.LM.368.XLNP,5,12 Inches,GN,22 AWG,----,----,----,
+3,840891,Veronte CEX,HEW.LM.368.XLNP,6,12 Inches,YE,22 AWG,----,----,----,
+4,880711,Veronte CEX,HEW.LM.368.XLNP,10,12 Inches,GY,22 AWG,----,----,----,
+5,890801,Veronte CEX,HEW.LM.368.XLNP,11,12 Inches,PK,22 AWG,----,----,----,
+6,800861,Veronte CEX,HEW.LM.368.XLNP,12,12 Inches,VT,22 AWG,----,----,----,
+7,810801,Veronte CEX,HEW.LM.368.XLNP,13,12 Inches,PKGY,22 AWG,----,----,----,
+8,820661,Veronte CEX,HEW.LM.368.XLNP,14,12 Inches,BURD,22 AWG,----,----,----,
+9,880711,Veronte CEX,HEW.LM.368.XLNP,20,12 Inches,GNWH,22 AWG,----,----,----,
+10,890711,Veronte CEX,HEW.LM.368.XLNP,21,12 Inches,GNBN,22 AWG,----,----,----,
+11,800711,Veronte CEX,HEW.LM.368.XLNP,22,12 Inches,GYWH,22 AWG,----,----,----,
+12,820661,Veronte CEX,HEW.LM.368.XLNP,24,12 Inches,BNGY,22 AWG,----,----,----,
+13,840801,Veronte CEX,HEW.LM.368.XLNP,26,12 Inches,PKWH,22 AWG,----,----,----,
+14,850661,Veronte CEX,HEW.LM.368.XLNP,27,12 Inches,BUBN,22 AWG,----,----,----,
+15,860821,Veronte CEX,HEW.LM.368.XLNP,28,12 Inches,RDWH,22 AWG,----,----,----,
+16,870821,Veronte CEX,HEW.LM.368.XLNP,29,12 Inches,RDBN,22 AWG,----,----,----,
+17,880661,Veronte CEX,HEW.LM.368.XLNP,30,12 Inches,BKWH,22 AWG,----,----,----,
+18,890661,Veronte CEX,HEW.LM.368.XLNP,31,12 Inches,BKBN,22 AWG,----,----,----,
+19,800711,Veronte CEX,HEW.LM.368.XLNP,32,12 Inches,GNGY,22 AWG,----,----,----,
+20,810711,Veronte CEX,HEW.LM.368.XLNP,33,12 Inches,GNYE,22 AWG,----,----,----,
+21,820711,Veronte CEX,HEW.LM.368.XLNP,34,12 Inches,GNPK,22 AWG,----,----,----,
+22,830801,Veronte CEX,HEW.LM.368.XLNP,35,12 Inches,PKYE,22 AWG,----,----,----,
+23,840871,Veronte CEX,HEW.LM.368.XLNP,36,12 Inches,WH,22 AWG,----,----,----,
+24,850661,Veronte CEX,HEW.LM.368.XLNP,37,12 Inches,BN,22 AWG,----,----,----,
+25,860711,Veronte CEX,HEW.LM.368.XLNP,38,12 Inches,GN,22 AWG,----,----,----,
+26,870891,Veronte CEX,HEW.LM.368.XLNP,39,12 Inches,YE,22 AWG,----,----,----,
+27,880711,Veronte CEX,HEW.LM.368.XLNP,40,12 Inches,GY,22 AWG,----,----,----,
+28,890801,Veronte CEX,HEW.LM.368.XLNP,41,12 Inches,PK,22 AWG,----,----,----,
+29,810661,Veronte CEX,HEW.LM.368.XLNP,43,12 Inches,BU,22 AWG,----,----,----,
+30,820821,Veronte CEX,HEW.LM.368.XLNP,44,12 Inches,RD,22 AWG,----,----,----,
+31,830661,Veronte CEX,HEW.LM.368.XLNP,45,12 Inches,BK,22 AWG,----,----,----,
+32,840801,Veronte CEX,HEW.LM.368.XLNP,46,12 Inches,PK,22 AWG,----,----,----,
+33,850801,Veronte CEX,HEW.LM.368.XLNP,47,12 Inches,PKGY,22 AWG,----,----,----,
+34,860661,Veronte CEX,HEW.LM.368.XLNP,48,12 Inches,BURD,22 AWG,----,----,----,
+35,870711,Veronte CEX,HEW.LM.368.XLNP,49,12 Inches,GNWH,22 AWG,----,----,----,
+36,880711,Veronte CEX,HEW.LM.368.XLNP,50,12 Inches,GNBN,22 AWG,----,----,----,
+37,800891,Veronte CEX,HEW.LM.368.XLNP,52,12 Inches,YEWH,22 AWG,----,----,----,
+38,810661,Veronte CEX,HEW.LM.368.XLNP,53,12 Inches,BNYE,22 AWG,----,----,----,
+39,820711,Veronte CEX,HEW.LM.368.XLNP,54,12 Inches,GYWH,22 AWG,----,----,----,
+40,830661,Veronte CEX,HEW.LM.368.XLNP,55,12 Inches,BNGY,22 AWG,----,----,----,
+41,840801,Veronte CEX,HEW.LM.368.XLNP,56,12 Inches,PKWH,22 AWG,----,----,----,
+42,850661,Veronte CEX,HEW.LM.368.XLNP,57,12 Inches,BNPK,22 AWG,----,----,----,
+43,860661,Veronte CEX,HEW.LM.368.XLNP,58,12 Inches,BUWH,22 AWG,----,----,----,
+44,870661,Veronte CEX,HEW.LM.368.XLNP,59,12 Inches,BUBN,22 AWG,----,----,----,
+45,880821,Veronte CEX,HEW.LM.368.XLNP,60,12 Inches,RDWH,22 AWG,----,----,----,
+46,890821,Veronte CEX,HEW.LM.368.XLNP,61,12 Inches,RDBN,22 AWG,----,----,----,
+47,800661,Veronte CEX,HEW.LM.368.XLNP,62,12 Inches,BKWH,22 AWG,----,----,----,
+48,810661,Veronte CEX,HEW.LM.368.XLNP,63,12 Inches,BKBN,22 AWG,----,----,----,
+49,820711,Veronte CEX,HEW.LM.368.XLNP,64,12 Inches,GNGY,22 AWG,----,----,----,
+50,830711,Veronte CEX,HEW.LM.368.XLNP,65,12 Inches,GNYE,22 AWG,----,----,----,
+51,840711,Veronte CEX,HEW.LM.368.XLNP,66,12 Inches,GNPK,22 AWG,----,----,----,
+52,850801,Veronte CEX,HEW.LM.368.XLNP,67,12 Inches,PKYE,22 AWG,----,----,----,
+53,860871,Veronte CEX,HEW.LM.368.XLNP,68,12 Inches,WH,22 AWG,----,----,----,
+54,850662,Veronte CEX,HEW.LM.368.XLNP,7,12 Inches,BU,22 AWG,----,----,----,Twisted Pair
+55,860822,Veronte CEX,HEW.LM.368.XLNP,8,12 Inches,RD,22 AWG,----,----,----,Twisted Pair
+56,870662,Veronte CEX,HEW.LM.368.XLNP,9,12 Inches,BK,22 AWG,----,----,----,Twisted Pair
+57,861664,Veronte CEX,HEW.LM.368.XLNP,18,124 Inches,BNPK,22 AWG,Mag,Mag,3,Twisted Pair
+58,870664,Veronte CEX,HEW.LM.368.XLNP,19,124 Inches,BUWH,22 AWG,Mag,Mag,2,Twisted Pair
+59,830896,Veronte CEX,HEW.LM.368.XLNP,15,87.5 Inches,YEWH,22 AWG,VPX J1,J1,22,Twisted Pair
+60,848666,Veronte CEX,HEW.LM.368.XLNP,16,87.5 Inches,BNYE,22 AWG,VPX J1,J1,20,Twisted Pair
+61,45S717,Splice,Crimp Splice,-,0,GNGY,22 AWG,1X,HEW.LM.368.XLNP,27,Twisted Pair
+62,46S717,Splice,Crimp Splice,-,0,GNYE,22 AWG,1X,HEW.LM.368.XLNP,28,Twisted Pair
+63,47S717,Splice,Crimp Splice,-,0,GNPK,22 AWG,1X,HEW.LM.368.XLNP,29,Twisted Pair
+64,819874,Veronte CEX,HEW.LM.368.XLNP,3,12 Inches,WH,22 AWG,GND,Unspecified,'GND',
+65,829664,Veronte CEX,HEW.LM.368.XLNP,4,12 Inches,BN,22 AWG,GND,Unspecified, 'GND',
+66,859714,Veronte CEX,HEW.LM.368.XLNP,17,12 Inches,GN,22 AWG,GND,Unspecified, 'GND',
+67,819894,Veronte CEX,HEW.LM.368.XLNP,23,12 Inches,YE,22 AWG,GND,Unspecified, 'GND',
+68,839714,Veronte CEX,HEW.LM.368.XLNP,25,12 Inches,GY,22 AWG,GND,Unspecified, 'GND',
+69,809804,Veronte CEX,HEW.LM.368.XLNP,42,12 Inches,PK,22 AWG,GND,Unspecified, 'GND',
+70,899864,Veronte CEX,HEW.LM.368.XLNP,51,12 Inches,VT,22 AWG,GND,Unspecified, 'GND',
+71,850665,Veronte CEX,HEW.LM.368.XLNP,7,12 Inches,BU,22 AWG,----,----,----,Twisted Pair
diff --git a/wireviz/Choppy_IB_CEX.yml b/wireviz/Choppy_IB_CEX.yml
index 5e9c357..6ea160c 100644
--- a/wireviz/Choppy_IB_CEX.yml
+++ b/wireviz/Choppy_IB_CEX.yml
@@ -8,6 +8,7 @@ templates: # defining templates to be used later on
PWM 0,PWM 1,PWM 2,PWM 3,PWM 4,PWM 5,PWM 6,PWM 7, GND,A0 3.3V,A1 3.3V,A2 5V,A3 5V,A4 12V,
A5 12V,A6 36V,A7 36V,GND,ARX(0) P,ARX(0) N,ARX(1) P,ARX(1) N,ARX(2) P,ARX(2) N,ARX(3) P,ARX(3) N,
GPIO 8,GPIO 9,GPIO 10,GPIO 11,GPIO 12,GPIO 13,GPIO 14,GPIO 15,GPIO 16]
+ pins: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68]
image:
src: images\CEX_plug.png
caption: Connector HEW.LM.368.XLNP (mounted in CEX)
@@ -188,18 +189,18 @@ connections:
- [S,S,S]
- W5: [1-3]
- 1X: [27-29]
- -
- - W2: s
- - shield1: [1]
- - W5: s
- - 1X: [27]
+ # -
+ # - W2: s
+ # - shield1: [1]
+ # - W5: s
+ # - 1X: [27]
-
- Veronte CEX: [3,4,17,23,25,42,51]
- W1: [3,4,12,16,18,35,44]
- [GND,GND,GND,GND,GND,GND,GND]
- # -
- # - W8: s
- # - GND
+ -
+ - W8: s
+ - GND
-
- GND
- W4: s
diff --git a/wireviz/Choppy_IB_PPS_J1.csv b/wireviz/Choppy_IB_PPS_J1.csv
new file mode 100644
index 0000000..fdc34d0
--- /dev/null
+++ b/wireviz/Choppy_IB_PPS_J1.csv
@@ -0,0 +1,15 @@
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,829821,PPS J1,Unspecified,14,3 Inches,RD,20 AWG,10Ohm1,10 Ohm Resistor,1,
+1,819822,PPS J1,Unspecified,13,3 Inches,RD,20 AWG,10Ohm2,10 Ohm Resistor,1,
+2,889823,PPS J1,Unspecified,10,3 Inches,RD,20 AWG,10Ohm3,10 Ohm Resistor,1,
+3,408804,10Ohm1,10 Ohm Resistor,2,"81.5 """,PKBN,20 AWG,CEX,FMW.LM.368.XLC,50,
+4,407875,10Ohm2,10 Ohm Resistor,2,"81.5 """,WHPK,20 AWG,CEX,FMW.LM.368.XLC,49,Length is CEX to PPS
+5,406716,10Ohm3,10 Ohm Resistor,2,"81.5 """,GYBN,20 AWG,CEX,FMW.LM.368.XLC,48,
+6,890667,PPS J1,Unspecified,1,"31 """,BK,22 AWG,----,----,----,
+7,860667,PPS J1,Unspecified,8,"31 """,BK,22 AWG,----,----,----,
+8,819878,PPS J1,Unspecified,3,1 TBD,WH,22 AWG,Starter Switch,Temp,1,
+9,809879,Starter Switch,Temp,2,"26.5 """,WH,22 AWG,VP-X,Connector Molex 194180013,1,
+10,859870,PPS J1,Unspecified,7,1 TBD,WH,22 AWG,Master Switch,Temp,1,
+11,709871,Master Switch,Temp,2,1 TBD,WH,22 AWG,GND,Unspecified,'GND',
+12,849663,PPS J1,Unspecified,26,"31 """,BK,14 AWG,GND,Unspecified,'GND',
+13,859663,PPS J1,Unspecified,27,"31 """,BK,14 AWG,GND,Unspecified, 'GND',
diff --git a/wireviz/Choppy_IB_PPS_J1.yml b/wireviz/Choppy_IB_PPS_J1.yml
index 1be6b38..06ee361 100644
--- a/wireviz/Choppy_IB_PPS_J1.yml
+++ b/wireviz/Choppy_IB_PPS_J1.yml
@@ -4,6 +4,7 @@ templates: # defining templates to be used later on
src: images\PPS_J1.png
caption: Connector TE 206039-1
pinlabels: [BATT_DIST_EN, RSVD, MAIN_BATT_START_EN,RSVD,RSVD,MASTER_ALTERNATE,MASTER,ALT_DIST_EN,BATT_CURRENT+,STARTER_ACTIVE,RSVD,RSVD,ALT_DIST_FAULT,BATT_DIST_FAULT,RSVD,RSVD,RSVD,ALT_CURRENT-,ALT_CURRENT+,BATT_CURENT-,RSVD,RSVD,RSVD,RSVD,RSVD,GND,GND,RSVD]
+ pins: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28]
- &Light
pinlabels: [V+,GND]
#pins: [A, B, C, D, E, F, G, H, I, J, K, L, M]
@@ -13,6 +14,7 @@ templates: # defining templates to be used later on
- &5A_wire
category: bundle
gauge: 20 AWG
+ length: 3 Inches
- &10A_wire
category: bundle
gauge: 18 AWG
@@ -143,8 +145,8 @@ connections:
- PPS J1: [1,8]
- W4: [1,2]
-
- - W4: [1,2]
- [GND,GND]
+ - W4: [1,2]
-
- PPS J1: [3]
- W5: [1]
diff --git a/wireviz/Choppy_IB_PPS_main.csv b/wireviz/Choppy_IB_PPS_main.csv
index 4953f59..be2e06f 100644
--- a/wireviz/Choppy_IB_PPS_main.csv
+++ b/wireviz/Choppy_IB_PPS_main.csv
@@ -1,20 +1,16 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2
-0,801820,PPS main,1,"26.5 """,RD,6 AWG,VP-X power lug,1
-1,802820,PPS main,2,"85 """,RD,6 AWG,Altinator,2
-2,805820,PPS main,5,33 Inches,RD,6 AWG,Batt,1
-3,804660,PPS main,4,31 Inches,BK,6 AWG,Batt,2
-4,803820,PPS main,3,"80 """,RD,2 AWG,Starter,1
-5,832660,Starter,2,24 Inches????,BK,6 AWG,Negative Bus Bar,2
-6,821890,Rectifier,1,12 Inches,YE,6 AWG,Alternator 3⌀,1
-7,822891,Rectifier,2,12 Inches,YE,6 AWG,Alternator 3⌀,2
-8,823892,Rectifier,3,12 Inches,YE,6 AWG,Alternator 3⌀,3
-9,824820,Rectifier,4,6 Inches,RD,10 AWG,Positive Bus Bar,2
-10,825821,Rectifier,5,6 Inches,RD,10 AWG,Positive Bus Bar, 2
-11,824820,Rectifier,4,6 Inches,RD,10 AWG,Positive Bus Bar,2
-12,825821,Rectifier,5,6 Inches,RD,10 AWG,Positive Bus Bar, 2
-13,826660,Rectifier,6,6 Inches,BK,10 AWG,Negative Bus Bar,3
-14,827661,Rectifier,7,6 Inches,BK,10 AWG,Negative Bus Bar, 3
-15,826660,Rectifier,6,6 Inches,BK,10 AWG,Negative Bus Bar,3
-16,827661,Rectifier,7,6 Inches,BK,10 AWG,Negative Bus Bar, 3
-17,801820,PPS main,1,73 Inches,RD,10 AWG,Positive Bus Bar,1
-18,662660,Batt,2,57 Inches,BK,6 AWG,Negative Bus Bar,1
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,899821,PPS main,Ring Terminals (Inner),1,"26.5 """,RD,6 AWG,VP-X power lug,"1/4"" Ring Terminal",1,
+1,800822,PPS main,Ring Terminals (Inner),2,"85 """,RD,6 AWG,Altinator,Temp,2,
+2,839823,PPS main,Ring Terminals (Inner),5,33 Inches,RD,6 AWG,Batt,"1/4"" Ring Terminals",1,
+3,820664,PPS main,Ring Terminals (Inner),4,31 Inches,BK,6 AWG,Batt,"1/4"" Ring Terminals",2,
+4,819825,PPS main,Ring Terminals (Inner),3,"80 """,RD,2 AWG,Starter,"1/4"" + 7/16"" Ring Terminals",1,
+5,800666,Starter,"1/4"" + 7/16"" Ring Terminals",2,24 Inches????,BK,6 AWG,Negative Bus Bar,Pike Industries Busbar,2,
+6,899897,Rectifier,"No part number... One 3 pin, Two 2 pins",1,12 Inches,YE,6 AWG,Alternator 3⌀,VERIFY! Sumitomo 6111-2557,1,
+7,800897,Rectifier,"No part number... One 3 pin, Two 2 pins",2,12 Inches,YE,6 AWG,Alternator 3⌀,VERIFY! Sumitomo 6111-2557,2,
+8,811897,Rectifier,"No part number... One 3 pin, Two 2 pins",3,12 Inches,YE,6 AWG,Alternator 3⌀,VERIFY! Sumitomo 6111-2557,3,
+9,820829,Rectifier,"No part number... One 3 pin, Two 2 pins",4,6 Inches,RD,10 AWG,Positive Bus Bar,Pike Industries Busbar,2,
+10,830829,Rectifier,"No part number... One 3 pin, Two 2 pins",5,6 Inches,RD,10 AWG,Positive Bus Bar,Pike Industries Busbar, 2,
+11,841661,Rectifier,"No part number... One 3 pin, Two 2 pins",6,6 Inches,BK,10 AWG,Negative Bus Bar,Pike Industries Busbar,3,
+12,851661,Rectifier,"No part number... One 3 pin, Two 2 pins",7,6 Inches,BK,10 AWG,Negative Bus Bar,Pike Industries Busbar, 3,
+13,899822,PPS main,Ring Terminals (Inner),1,73 Inches,RD,10 AWG,Positive Bus Bar,Pike Industries Busbar,1,
+14,609663,Batt,"1/4"" Ring Terminals",2,57 Inches,BK,6 AWG,Negative Bus Bar,Pike Industries Busbar,1,
diff --git a/wireviz/Choppy_IB_VPX_J10.csv b/wireviz/Choppy_IB_VPX_J10.csv
index 3a457d4..a36ec47 100644
--- a/wireviz/Choppy_IB_VPX_J10.csv
+++ b/wireviz/Choppy_IB_VPX_J10.csv
@@ -1,14 +1,14 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2,Notes
-0,8649821,VPX J10,10,"21 """,RD,18 AWG,Mag,9,none
-1,8655822,VPX J10,7,"34.5 """,RD,14 AWG,Radar,4,none
-2,8652823,VPX J10,4,1 TBD,RD,14 AWG,Radio,4,none
-3,8639664,VPX J10,'GND',"37.5 """,BK,14 AWG,GND','GND',none
-4,8654825,VPX J10,6,"90 """,RD,14 AWG,Swash1,1,none
-5,8649876,VPX J10,1,1 TBD,WH,22 AWG,Starter Switch,1,none
-6,8350877,Starter Switch,2,1 TBD,WH,2 AWG,PPS J1,3,none
-7,8651828,VPX J10,3,"90 """,RD,14 AWG,Servo,1,none
-8,7739669,Mag,'GND',"43.5 """,BK,14 AWG,GND','GND',none
-9,83516610,Servo,3,36 Inches,BK,14 AWG,Negative Bus Bar,2,none
-10,82396611,Radio,'GND',1 TBD,BK,14 AWG,GND','GND',none
-11,83516612,Swash1,3,36 Inches,BK,14 AWG,Negative Bus Bar,2,none
-12,82396613,Radar,'GND',"18 """,BK,14 AWG,GND','GND',none
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,887821,VPX J10,Connector Molex 194180013,10,"21 """,RD,18 AWG,Mag,Mag,9,
+1,852822,VPX J10,Connector Molex 194180013,7,"34.5 """,RD,14 AWG,Radar,DTM04-4P,4,
+2,822823,VPX J10,Connector Molex 194180013,4,1 TBD,RD,14 AWG,Radio,temp,4,
+3,879664,VPX J10,Connector Molex 194180013,9,"37.5 """,BK,14 AWG,GND',Unspecified,'GND',
+4,849825,VPX J10,Connector Molex 194180013,6,"90 """,RD,14 AWG,Swash1,Amphenol C091-11H004-000-2,1,
+5,899876,VPX J10,Connector Molex 194180013,1,1 TBD,WH,22 AWG,Starter Switch,Temp,1,
+6,801877,Starter Switch,Temp,2,1 TBD,WH,2 AWG,PPS J1,Unspecified,3,
+7,819828,VPX J10,Connector Molex 194180013,3,"90 """,RD,14 AWG,Servo,Amphenol C091-11H004-000-2,1,
+8,739669,Mag,Mag,5,"43.5 """,BK,14 AWG,GND',Unspecified,'GND',
+9,810660,Servo,Amphenol C091-11H004-000-2,3,36 Inches,BK,14 AWG,Negative Bus Bar,Pike Industries Busbar,2,
+10,819661,Radio,temp,3,1 TBD,BK,14 AWG,GND',Unspecified,'GND',
+11,810662,Swash1,Amphenol C091-11H004-000-2,3,36 Inches,BK,14 AWG,Negative Bus Bar,Pike Industries Busbar,2,
+12,899663,Radar,DTM04-4P,1,"18 """,BK,14 AWG,GND',Unspecified,'GND',
diff --git a/wireviz/Choppy_IB_VPX_J10.yml b/wireviz/Choppy_IB_VPX_J10.yml
index 703aa31..e92d1c6 100644
--- a/wireviz/Choppy_IB_VPX_J10.yml
+++ b/wireviz/Choppy_IB_VPX_J10.yml
@@ -1,6 +1,7 @@
templates: # defining templates to be used later on
- &VPX_j10
pinlabels: [Starter,5A,10A,5A,10A,15A,5A,5A,GND,5A,]
+ pins: [1,2,3,4,5,6,7,8,9,10]
type: Connector Molex 194180013
image:
src: images\J10.png
@@ -41,6 +42,7 @@ connectors:
Radio:
type: temp
pinlabels: [Tx,Rx,GND,V+]
+ pins: [1,2,3,4]
Swash1:
<<: *ServoP
Starter Switch:
diff --git a/wireviz/Choppy_IB_VPX_J12.csv b/wireviz/Choppy_IB_VPX_J12.csv
index 3502235..0df374b 100644
--- a/wireviz/Choppy_IB_VPX_J12.csv
+++ b/wireviz/Choppy_IB_VPX_J12.csv
@@ -1,15 +1,15 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2,Notes
-0,8650821,VPX J12,2,90 Inches,RD,14 AWG,Swash2,1,none
-1,8649822,VPX J12,12,90 Inches,RD,14 AWG,Swash3,1,none
-2,8651823,VPX J12,3,"207.5 """,RD,14 AWG,Yaw,1,none
-3,8657824,VPX J12,9,"87.5 """,RD,20 AWG,1X,68,none
-4,8657825,VPX J12,9,"93.5 """,RD,20 AWG,CEX,1,none
-5,8649666,VPX J12,11,"67.5 """,BK,18 AWG,Altinator,1,none
-6,8351667,Swash2,3,36 Inches,BK,14 AWG,Negative Bus Bar,2,none
-7,8351668,Swash3,3,36 Inches,BK,14 AWG,Negative Bus Bar,3,none
-8,8951669,Yaw,3,170 Inches,BK,14 AWG,Negative Bus Bar,2,none
-9,49546610,1X,65,46 Inches,BK,20 AWG,Negative Bus Bar,4,none
-10,49326610,1X, 66,46 Inches,BK,20 AWG,Negative Bus Bar, 4,none
-11,67516611,CEX,3,34 Inches,BK,20 AWG,Negative Bus Bar,3,none
-12,67326611,CEX, 4,34 Inches,BK,20 AWG,Negative Bus Bar, 3,none
-13,86526612,VPX J12,4,"37.5 """,BK,14 AWG,GND','GND',none
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,809821,VPX J12,Connector Molex 19418-0027,2,90 Inches,RD,14 AWG,Swash2,Amphenol C091-11H004-000-2,1,
+1,809822,VPX J12,Connector Molex 19418-0027,12,90 Inches,RD,14 AWG,Swash3,Amphenol C091-11H004-000-2,1,
+2,819823,VPX J12,Connector Molex 19418-0027,3,"207.5 """,RD,14 AWG,Yaw,Amphenol C091-11H004-000-2,1,
+3,876824,VPX J12,Connector Molex 19418-0027,9,"87.5 """,RD,20 AWG,1X,HEW.LM.368.XLNP,68,
+4,879825,VPX J12,Connector Molex 19418-0027,9,"93.5 """,RD,20 AWG,CEX,HEW.LM.368.XLNP,1,
+5,899666,VPX J12,Connector Molex 19418-0027,11,"67.5 """,BK,18 AWG,Altinator,Temp,1,
+6,810667,Swash2,Amphenol C091-11H004-000-2,3,36 Inches,BK,14 AWG,Negative Bus Bar,Pike Industries Busbar,2,
+7,811668,Swash3,Amphenol C091-11H004-000-2,3,36 Inches,BK,14 AWG,Negative Bus Bar,Pike Industries Busbar,3,
+8,810669,Yaw,Amphenol C091-11H004-000-2,3,170 Inches,BK,14 AWG,Negative Bus Bar,Pike Industries Busbar,2,
+9,432661,1X,HEW.LM.368.XLNP,65,46 Inches,BK,20 AWG,Negative Bus Bar,Pike Industries Busbar,4,
+10,442661,1X,HEW.LM.368.XLNP, 66,46 Inches,BK,20 AWG,Negative Bus Bar,Pike Industries Busbar, 4,
+11,611663,CEX,HEW.LM.368.XLNP,3,34 Inches,BK,20 AWG,Negative Bus Bar,Pike Industries Busbar,3,
+12,621663,CEX,HEW.LM.368.XLNP, 4,34 Inches,BK,20 AWG,Negative Bus Bar,Pike Industries Busbar, 3,
+13,829664,VPX J12,Connector Molex 19418-0027,4,"37.5 """,BK,14 AWG,GND',Unspecified,'GND',
diff --git a/wireviz/Choppy_IB_VPX_J8.csv b/wireviz/Choppy_IB_VPX_J8.csv
index 051068e..402b74c 100644
--- a/wireviz/Choppy_IB_VPX_J8.csv
+++ b/wireviz/Choppy_IB_VPX_J8.csv
@@ -1,10 +1,11 @@
-,Identifier,End 1,Pin 1,Length,Color,Gauge,End 2,Pin 2,Notes
-0,8649821,VP-X J8,1,"92 """,RD,20 AWG,Nav Light 1,1,none
-1,8632891,VP-X J8, 3,"92 """,YE,20 AWG,Nav Light 1,2,none
-2,8649822,VP-X J8,1,"72 """,RD,20 AWG,Nav Light 2,1,none
-3,8632892,VP-X J8, 3,"72 """,YE,20 AWG,Nav Light 2,2,none
-4,8649823,VP-X J8,1,"170 """,RD,20 AWG,Tail Strobe,'A',none
-5,7852714,Nav Light 1,4,"32 """,GN,20 AWG,Nav Light 2,4,none
-6,7851665,Nav Light 1,3,"18 """,BK,20 AWG,Negative Bus Bar,3,none
-7,7851666,Nav Light 2,3,"18 """,BK,20 AWG,Negative Bus Bar,3,none
-8,8439667,Tail Strobe,'B',"170 """,BK,20 AWG,Negative Bus Bar,3,none
+,Identifier,End 1,Type 1,Pin 1,Length,Color,Gauge,End 2,Type 2,Pin 2,Notes
+0,899821,VP-X J8,Connector Molex 194180023,1,"92 """,RD,20 AWG,Nav Light 1,DTM04-4P,1,
+1,810891,VP-X J8,Connector Molex 194180023, 3,"92 """,YE,20 AWG,Nav Light 1,DTM04-4P,2,
+2,899822,VP-X J8,Connector Molex 194180023,1,"72 """,RD,20 AWG,Nav Light 2,DTM04-4P,1,
+3,810892,VP-X J8,Connector Molex 194180023, 3,"72 """,YE,20 AWG,Nav Light 2,DTM04-4P,2,
+4,899823,VP-X J8,Connector Molex 194180023,1,"170 """,RD,20 AWG,Tail Strobe,DT04-3P,'A',
+5,722714,Nav Light 1,DTM04-4P,4,"32 """,GN,20 AWG,Nav Light 2,DTM04-4P,4,
+6,89S715,Splice,Crimp Splice,-,"120 """,GN,20 AWG,Tail Strobe,DT04-3P,'C',
+7,711666,Nav Light 1,DTM04-4P,3,"18 """,BK,20 AWG,Negative Bus Bar,Pike Industries Busbar,3,
+8,711667,Nav Light 2,DTM04-4P,3,"18 """,BK,20 AWG,Negative Bus Bar,Pike Industries Busbar,3,
+9,891668,Tail Strobe,DT04-3P,'B',"170 """,BK,20 AWG,Negative Bus Bar,Pike Industries Busbar,3,
diff --git a/wireviz/Choppy_IB_VPX_J8.yml b/wireviz/Choppy_IB_VPX_J8.yml
index 3d325fa..d9900f8 100644
--- a/wireviz/Choppy_IB_VPX_J8.yml
+++ b/wireviz/Choppy_IB_VPX_J8.yml
@@ -146,11 +146,11 @@ connections:
- W2: [1]
- [S]
- W3: [1]
- - Tail Strobe: [Sync]
+ - Tail Strobe: [C]
- -
- - W1: s
- - Batt: [GND]
+ # -
+ # - W1: s
+ # - Batt: [GND]
-
- Nav Light 1: [3]
- W6: [1]