JustPaste.it

<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css">
          
            a {text-decoration:underline;fill:blue}
            
        </style></defs><script type="text/ecmascript">  
       
      
      // -------------------------------------------------
      // THIS BLOCK FOR PANNING AND ZOOMING BUTTONS (ETC)
      // -------------------------------------------------
      
      // How far have we moved in the x and y positions?
      var x = 0;
      var y = 0;
      
      // What's the current zoom factor?
      var scale = 1.0;
      
      // How much do we move by for each click in the x or y?
      var moveStep = 15;
      
      // How much do we change our zoom factor by?
      var zoomStep = 1.25;
      
      // Refresh the diagram for the current (x,y) and scale.
      function update(evt)
      {
          var diagram = evt.target.parentNode.parentNode.parentNode.getElementById("diagram");
          diagram.setAttribute("transform", "translate(" +x+" "+y+ ") scale("+scale+")");
      }
      
      function left(evt)
      {
          x -= moveStep*scale;
          update(evt)
      }
      
      function right(evt)
      {
          x += moveStep*scale;
          update(evt)
      }
      
      function up(evt)
      {
          y -= moveStep*scale;
          update(evt)
      }
      
      function down(evt)
      {
          y += moveStep*scale;
          update(evt)
      }
      
      
      function zoomIn(evt)
      {
          scale *= zoomStep;
          update(evt)
      }
      
      
      function zoomOut(evt)
      {
          scale /= zoomStep;
          update(evt)
      }
      
      function reset(evt)
      {
          scale = 1;
          x = 0;
          y = 0;
          update(evt)
      }
      
      // -----------------------------------------------------
      // THIS BLOCK FOR ADDING THE TOOL TIPS ON THE BUTTONS
      // -----------------------------------------------------
      
      // The selected tool tip:
      var selectedToolTip;
      
      // The timer that will show the tool tip in the future (-1 if not set):
      var timerId = -1;
      
      // The location of all the tool tips (constants):
      var toolTipX = 0;
      var toolTipY = 0;
      
   /**
      * Arrange for the tool tip to appear after a short delay.
      *
      * @param evt The event that caused the tool tip request.
      * @param title the title to use for the tool tip.
      */
      function scheduleGenericToolTip(evt, title)
      {
          // Lookup the text tool tip:
          var svgdoc = document.documentElement;
          selectedToolTip = svgdoc.getElementById('tooltip');
          
          // Move the tool tip to the mouse position:
          
          //  - Slightly to the right of the mouse:
          var targetX = evt.getClientX() + 10;
          var targetY = evt.getClientY();    
          
          //  - move:
          selectedToolTip.setAttribute('transform', 'translate(' + targetX + ',' + targetY + ')');    
          
          text = document.createTextNode(title);
          toolTipText = svgdoc.getElementById('tooltip-text');
          
          // Remove any existing children - could be previous text.
          nl = toolTipText.getChildNodes();
          for(i = 0; i &lt; nl.getLength(); i++)
          {
              toolTipText.removeChild(nl.item(i));
          }
          
          toolTipText.appendChild(text);
          
          toolTipRect = svgdoc.getElementById('tooltip-rect');
          count = 0;
          for(i = 0; i &lt; title.length; i++)
          {
              if(title.charAt(i) != ' ')
              {
                  count++;
              }
          }
          toolTipRect.setAttribute("width", (8 * count));
          
          // Show the tool tip in 10ms:
          timerId = setTimeout('updateToolTipById("visible")', 10);
      }

      /**
      * Arrange for the tool tip to appear after a short delay.
      *
      * @param evt The event that caused the tool tip request.
      * @param id The ID of the element we want to put a tool tip over.
      */
      function scheduleToolTipById(evt, id)
      {
          // Lookup the text tool tip:
          var svgdoc = document.documentElement;
          selectedToolTip = svgdoc.getElementById(id);
          
          // Move the tool tip to the mouse position:
          
          //  - Slightly to the right and lower than the mouse:
          var targetX = evt.getClientX() + 3;
          var targetY = evt.getClientY() + 10;    
          
          // However, button bar is just 23px high, so we need to constrain the y-position
          if (targetY &gt; 5)
          {
              targetY = 5;
          }
          
          
          //  - work out distance to move:
          var deltaX =  targetX - toolTipX;
          var deltaY =  targetY - toolTipY;
          
          //  - move:
          selectedToolTip.setAttribute('transform', 'translate(' + deltaX + ',' + deltaY + ')');    
          
          // Show the tool tip in 500ms:
          timerId = setTimeout('updateToolTipById("visible")', 500);
      }
      
      /**
      * Hide the tool tip, and if there's a timer running, cancel it.
      */
      function cancelToolTip(evt)
      {
          if (timerId != -1)
          {
              clearInterval(timerId);    
              timerId = -1;
          }
          updateToolTipById("hidden");
      
      }
      
      /**
      * Show or hide the currently selected tool tip.
      *
      * @param visibility Either "visible" or "hidden".
      */
      function updateToolTipById( visibility)
      {
          if (timerId != -1 || visibility == "hidden" )
          {
              selectedToolTip.getStyle().setProperty('visibility', visibility);
              timerId = -1;
          }
      }
      
      
      // These variables are set during the XSL-T handing of /svg
      var url;
      var title;
      var features;

      // Which sheet is currently shown?
      var selectedSheet = 1;
      
      var connectorUrl;
      var compLocUrl;
      var oldCompLocUrl;
      
      var is_ie = false;
      
      /**
      * Open a new reduced-chrome window containing a printable version of this SVG.
      * Note that we set the width and height on the window: the absolute size isn't important, but
      * the aspect ratio is critical to ensure that the window prints correctly.  E.g., make the
      * window too wide and there will be a lot of white space at the top and bottom of the
      * image, and the image will appear "small" and "squashed".
      */
      function openPrintWindow()
      {
          var newWindow = open(url + "&amp;sheetNumber=" + selectedSheet, title, features);    
      }
      
      /**
      * Open a new window for connectors
      */
      function openpopupwindow(page, title, features)
      {
          open(page, title, features);
      }
      
      // -------------------------------------------------
      // THIS BLOCK FOR MANAGING SPLICE POPUP INFORMATION
      // -------------------------------------------------
      
       // Show connector info
      function alterConnectorLinks(evt, transform, x, y, connectorId, componentLocation)
      {
          var link = evt.target;
          var owner = link.getOwnerDocument();
          
          // Determine which graphic to use.
          var graphicId;
          if(transform == '' || componentLocation != '')
          {
              // Two link graphic.
              graphicId = 'connectorComponentInfo';
          }
          else
          {
            // One link graphic.
              graphicId = 'connectorInfo';
          }
          
          var graphic = owner.getElementById(graphicId);
          
          // For positioning popup above connector for easier mouse control.
          // Subtract heigth from "y" in translate below.
          var rect = graphic.getFirstChild();
          var height = rect.getAttribute("height");

          // Reposition
          // If a transform attribute was given use that otherwise construct one from the x and y coordinates.
          // Alters the y coordinate by the height of the containing rectangle, so the popup is above the connector link.
          
          if(transform != '')
          {
              var i = transform.indexOf(',');
            var j = transform.indexOf(')');
              var oldY = transform.substring(i+1,j);
              var newTransform = transform.substring(0, i+1) + (oldY - height) + ')';
              graphic.setAttribute("transform", newTransform);
          }
          else
          {
              graphic.setAttribute("transform", 'translate(' + x + ',' + (y - height) + ')' );
          }
          
          // Make visible
          graphic.setAttribute("style", "visibility:visible");
          
          // Change href for connector
          var conlink = owner.getElementById(graphicId + '-connectorlink');
          
      // Not yet able to get the javascript popup working        
      //            if(is_ie)
      //            {
      //                conlink.setAttribute("xlink:href", "javascript:openpopupwindow('" + connectorUrl + "&amp;xrefNode=" + connectorId + "','', 'toolbar=no')");
      //            }
      //            else
      //            {
          conlink.setAttribute("onclick", "javascript:openWindow('" + connectorUrl + "&amp;node=" + connectorId + "','" + connectorId + "')");
      //            }

              
          // Change href for component location.
          // Only show the link if a componentLocation id was given.
          // Unless this is legacy wiring, in which case show a link to expand the tree.
          
          if(graphicId = 'connectorComponentInfo')
          {
              var complink = owner.getElementById('comploclink');

              if(componentLocation != '')
              {
                  // New style with info to show component location.
                   complink.setAttribute("onclick", "openWindow('" + compLocUrl + "&amp;node=" + componentLocation + "','" + componentLocation + "')");                  
              }
              else
              {
                  // If this is an old schematic we need to show the old style link.
                    complink.setAttribute("onclick", "openWindow('" + oldCompLocUrl + "&amp;node=" + connectorId + "','" + connectorId + "')");

    
              }
          }
      }

    // Hide connector.      
    function hideConnectorInfo(evt, id)
    {
        var link = evt.target;
        var owner = link.getOwnerDocument();
        var graphic = owner.getElementById(id);
        graphic.setAttribute("style", 'visibility:hidden');
    }
      
    // Hide connector.      
    function showConnectorInfo(evt, id)
    {
        var link = evt.target;
        var owner = link.getOwnerDocument();
        var graphic = owner.getElementById(id);
           graphic.setAttribute("style", 'visibility:visible');
    }
      
      
      
      // Mousing over a splice pops up a floating rectangle showing
      // places where the splice connects.  Mousing out removes the rectangle.
      
      
      /**
      * Show the splice info for a node.
      * @param evt the mouse over event.
      * @param nodeId the node id (splice id) to show (e.g., "S10")
      */
      function showSpliceLocations(evt, nodeId)
      {
          setNodeStyle(evt,nodeId,"visibility:visible");
      }
      
      /**
      * Hide the splice info for a node.
      * @param evt the mouse out event.
      * @param nodeId the node id (splice id) to show (e.g., "spliceinfo-S10")
      */
      function hideSpliceLocations(evt, nodeId)
      {
          setNodeStyle(evt,nodeId,"visibility:hidden");
      }
      
      /**
      * Set the CSS style of a node.
      * @param evt the mouse over event.
      * @param nodeId the node id to change.
      * @param style the style string to set.
      */
      function setNodeStyle(evt, nodeId, style)
      {
          var link = evt.target;
          var owner = link.getOwnerDocument();
          rect = owner.getElementById(nodeId);
          
          rect.setAttribute("style", style);
      }
      
      /**
      * Set the xhref target for a named link.
      * @param evt the mouse over event.
      * @param nodeId the node id to change.
      * @param value the value to set the href to.
      */
      function setLinkTarget(evt, nodeId, value)
      {
          var owner = evt.target.getOwnerDocument();
          var link = owner.getElementById(nodeId);
          
          // Some links are not included, e.g., a print link if we're using javascript to open print window.
          if (link != null)
          {
              link.setAttribute("xlink:href", value);
          }
      }
      
      
      // -------------------------------------------------
      // THIS BLOCK FOR MANAGING SHEET NAVIGATION
      // -------------------------------------------------
      
      
      /**
      * Show the specified sheet, hiding all others.
      * @param evt the source event (mouse click on sheet icon)
      * @param sheetNumber the number of the sheet clicked on, index from 1.
      */
      function switchToSheet(evt, sheetNumber)
      {
          if (sheetNumber == selectedSheet)
          {
              // nothing to do.
              return;
          }
          
          // Hide the current sheet:
          setNodeStyle(evt, "Wrap_Sheet_" + selectedSheet, "visibility:hidden");
          
          // Show the selected sheet:
          setNodeStyle(evt, "Wrap_Sheet_" + sheetNumber, "visibility:visible");
          
          // Change the Print target to include the selected sheet as a parameter:
          setSheetToBePrinted(evt,sheetNumber);
          
          selectedSheet = sheetNumber;
      }

      // -------------------------------------------------
      // THIS BLOCK WIRING HIGHLIGHTING
      // -------------------------------------------------

      function highlightWire(evt)
      {
              var obj = evt.target;
              wireWidth(obj, 10, "green")
      }

      function unhighlightWire(evt)
      {
              var obj = evt.target;
              highlightSplice(evt, 3, "red");
      }

      function highlightSplice(evt, width, color)
      {
              var obj = evt.target;
              wireWidth(obj, width, color);
              var parentNode = obj.getParentNode();
              var nl = parentNode.getChildNodes();

              for(var i = 0, l = nl.getLength(); i &lt; l; i++)
              {
                      var node = nl.item(i);
                      var nodeName = node.getNodeName();
                      if(nodeName != null &amp;&amp; nodeName == "spliced")
                      {
                           var wire = svgDocument.getElementById(node.getAttribute("spliceid"));
                           var n = wire.getChildNodes();
                           for(var j = 0, k = n.getLength(); j &lt; k; j++)
                           {
                                  var node = n.item(j);
                                  var nodeName = node.getNodeName();
                                  if(nodeName != null &amp;&amp; nodeName == "line")
                                  {
                                        wireWidth(node, width, color);
                                  }
                           }
                      }
              }
      }
      function wireWidth(obj, width, color)
      {
              var parentNode = obj.getParentNode();
              var nl = parentNode.getChildNodes();
    
              for(var i = 0, l = nl.getLength(); i &lt; l; i++)
              {
                      var node = nl.item(i);
                      var nodeName = node.getNodeName();
        
                      if(nodeName != null &amp;&amp; nodeName == "line")
                      {
                           node.setAttribute("stroke-width", width);
                           node.setAttribute("stroke", color);
                      }
              }
      }      
      
      function openWindow(url, name)
      {
        try
        {
          window.open(url,name);
        }
        catch(e1)
        {
          try
          {
            browserEval("open('" + url + "','" + name + "')");    
          }          
          catch(e)
          {            
            //Can we do anything if the browserEval fails?
          }        
        }
      }      
      //   
    </script><svg><g transform="translate(0, 50)" id="outer"><svg preserveAspectRatio="xMinYMin meet" height="100%" width="100%" id="svgid" viewBox="42.71 54.71 715.01 933.81"><script type="text/ecmascript">url = "/wiring/prepareEmbeddedSVG.do?language=de&amp;variantId=1000053&amp;country=DE&amp;displayNameId=&amp;selectedId=&amp;id=Z53DE_DEU001";connectorUrl="/wiring/js-viewConnector.do?sheetNumber=1&amp;variantId=1000053&amp;language=de&amp;country=DE";compLocUrl="/wiring/js-xref.do?type=connector&amp;variantId=1000053&amp;language=de&amp;country=DE";oldCompLocUrl="/wiring/js-xref.do?type=connector&amp;variantId=1000053&amp;language=de&amp;country=DE";features = "width=672.3,height=879.0999999999999,location=no,status=no,toolbar=no,resizable=no";title = "";function setSheetToBePrinted(evt, sheetNumber) { setLinkTarget(evt, "printLink",  "/wiring/prepareEmbeddedSVG.do?language=de&amp;country=DE&amp;displayNameId=&amp;selectedId=&amp;id=Z53DE_DEU001&amp;sheetNumber=" + sheetNumber ); }</script><g id="diagram">
<title>100-00-01</title>
<g id="gid1" style="clip-rule:evenodd; clip-path:u rl(#ClipId0)">
<clipPath id="ClipId0"><path d="M 18.90 18.90 L 811.35 18.90 L 811.35 1243.58   L 18.90 1243.58 Z"/>
</clipPath>
<image height="265.32" width="413.23" x="169.48" xlink:href='' y="441.32"/>
<text x="202.13" y="420.12">Scheibenwischer</text>
<text x="202.13" y="433.38">und Scheibenwasch-</text>
<text x="202.13" y="446.65">anlage</text>
<polyline points="270.62,532.37 258.82,451.86 "/>
<path d="M 270.84 532.88 C 271.01 530.42 271.53 527.99 272.40 525.69 L 272.37 525.68   C 270.70 526.55 268.78 526.83 266.93 526.48 L 266.93 526.47 C 268.43 528.44 269.63 530.62 270.50 532.94"/>
<path d="M 270.84 532.88 C 271.01 530.42 271.53 527.99 272.40 525.69 L 272.37 525.68   C 270.70 526.55 268.78 526.83 266.93 526.48 L 266.93 526.47 C 268.43 528.44 269.63 530.62 270.50 532.94"/>
<polyline points="270.84,533.78 258.82,451.86 "/>
<path d="M 266.93 526.47 C 268.61 528.68 269.92 531.15 270.79 533.78 L 270.79 533.78   C 270.87 531.01 271.41 528.27 272.39 525.68 L 272.37 525.68 C 270.70 526.55 268.78 526.83 266.93 526.48"/>
<polyline points="243.52,569.05 163.69,554.65 "/>
<path d="M 244.03 568.99 C 241.76 568.06 239.64 566.80 237.74 565.24 L 237.73 565.25   C 238.03 567.13 237.68 569.05 236.74 570.71 L 236.71 570.69 C 239.06 569.89 241.50 569.45 243.97 569.37"/>
<polyline points="244.88,569.33 163.69,554.65 "/>
<path d="M 236.71 570.69 C 239.34 569.80 242.10 569.35 244.88 569.36 L 244.88 569.33   C 242.29 568.37 239.87 567.00 237.73 565.25 L 237.73 565.25 C 238.03 567.13 237.68 569.05 236.74 570.71"/>
<polyline points="191.08,604.99 81.09,720.87 "/>
<path d="M 192.27 603.52 C 190.24 604.90 188.03 605.98 185.70 606.72 L 185.69 606.69   C 187.42 607.47 188.83 608.81 189.70 610.50 L 189.72 610.49 C 190.33 608.11 191.29 605.85 192.56 603.75"/>
<polyline points="193.00,602.95 81.09,720.87 "/>
<path d="M 189.72 610.49 C 190.41 607.81 191.54 605.26 193.07 602.95 L 193.06 602.95   C 190.83 604.60 188.34 605.87 185.69 606.70 L 185.69 606.69 C 187.42 607.47 188.83 608.81 189.70 610.50"/>
<polyline points="205.53,636.85 180.08,710.27 "/>
<path d="M 205.59 636.40 C 204.35 638.52 202.81 640.45 201.00 642.13 L 201.00 642.12   C 202.88 642.09 204.71 642.68 206.22 643.82 L 206.21 643.82 C 205.75 641.42 205.64 638.95 205.89 636.51"/>
<polyline points="205.99,635.60 180.08,710.27 "/>
<path d="M 206.21 643.82 C 205.69 641.11 205.62 638.34 206.01 635.60 L 206.04 635.60   C 204.74 638.05 203.04 640.25 201.01 642.14 L 201.00 642.12 C 202.88 642.09 204.71 642.68 206.22 643.82"/>
<polyline points="294.60,616.67 225.21,853.42 "/>
<path d="M 295.39 613.38 C 294.28 615.57 292.85 617.58 291.16 619.35 L 291.14 619.33   C 293.03 619.19 294.90 619.69 296.47 620.75 L 296.47 620.75 C 295.86 618.36 295.62 615.90 295.73 613.44"/>
<polyline points="295.79,612.53 225.21,853.42 "/>
<path d="M 296.47 620.75 C 295.79 618.06 295.56 615.29 295.79 612.53 L 295.79 612.53   C 294.62 615.04 293.06 617.34 291.14 619.34 L 291.14 619.33 C 293.03 619.19 294.90 619.69 296.47 620.75"/>
<polyline points="436.84,662.42 375.04,713.16 "/>
<path d="M 437.18 662.02 C 435.01 663.19 432.68 664.02 430.27 664.51 L 430.26 664.46   C 431.91 665.42 433.17 666.93 433.85 668.71 L 433.83 668.71 C 434.71 666.40 435.92 664.23 437.43 662.26"/>
<polyline points="437.97,661.51 375.04,713.16 "/>
<path d="M 433.83 668.71 C 434.81 666.12 436.21 663.71 437.98 661.57 L 437.97 661.57   C 435.58 662.97 432.99 663.96 430.27 664.50 L 430.26 664.46 C 431.91 665.42 433.17 666.93 433.85 668.71"/>
<polyline points="467.79,616.78 470.12,747.74 "/>
<path d="M 467.62 615.37 C 467.15 617.79 466.32 620.12 465.16 622.30 L 465.13 622.28   C 466.91 621.62 468.87 621.59 470.68 622.19 L 470.69 622.17 C 469.45 620.04 468.55 617.75 467.98 615.36"/>
<polyline points="467.74,614.46 470.12,747.74 "/>
<path d="M 470.69 622.17 C 469.30 619.78 468.32 617.17 467.79 614.46 L 467.79 614.46   C 467.36 617.20 466.47 619.85 465.17 622.30 L 465.13 622.28 C 466.91 621.62 468.87 621.59 470.68 622.19"/>
<polyline points="412.86,536.34 571.94,736.23 "/>
<path d="M 410.53 533.61 C 411.63 535.82 412.39 538.16 412.80 540.59 L 412.80 540.59   C 413.81 538.99 415.33 537.78 417.12 537.15 L 417.11 537.13 C 414.84 536.19 412.73 534.93 410.83 533.37"/>
<polyline points="410.08,532.82 571.94,736.23 "/>
<path d="M 417.11 537.13 C 414.56 536.07 412.20 534.60 410.13 532.78 L 410.14 532.76   C 411.46 535.20 412.37 537.85 412.83 540.58 L 412.80 540.59 C 413.81 538.99 415.33 537.78 417.12 537.15"/>
<polyline points="512.24,560.88 586.34,681.47 "/>
<path d="M 511.28 559.58 C 512.10 561.90 512.57 564.32 512.68 566.78 L 512.69 566.78   C 513.89 565.31 515.55 564.29 517.40 563.89 L 517.40 563.89 C 515.26 562.68 513.32 561.17 511.62 559.40"/>
<polyline points="510.94,558.73 586.34,681.47 "/>
<path d="M 517.40 563.89 C 514.99 562.53 512.83 560.79 511.00 558.73 L 510.99 558.73   C 512.01 561.30 512.59 564.02 512.72 566.78 L 512.69 566.78 C 513.89 565.31 515.55 564.29 517.40 563.89"/>
<polyline points="477.03,509.97 598.87,613.27 "/>
<path d="M 475.50 508.84 C 477.00 510.79 478.21 512.95 479.08 515.25 L 479.08 515.25   C 479.75 513.48 481.01 512.00 482.64 511.04 L 482.65 511.05 C 480.23 510.57 477.90 509.73 475.72 508.57"/>
<polyline points="474.88,508.16 598.87,613.27 "/>
<path d="M 482.65 511.05 C 479.93 510.51 477.32 509.52 474.93 508.12 L 474.94 508.10   C 476.71 510.24 478.11 512.65 479.09 515.24 L 479.08 515.25 C 479.75 513.48 481.01 512.00 482.64 511.04"/>
<polyline points="484.86,486.84 585.43,547.96 "/>
<path d="M 483.78 486.33 C 485.57 488.03 487.10 489.97 488.32 492.11 L 488.32 492.12   C 488.71 490.26 489.72 488.60 491.19 487.39 L 491.21 487.41 C 488.73 487.31 486.29 486.85 483.96 486.03"/>
<polyline points="483.10,485.77 585.43,547.96 "/>
<path d="M 491.21 487.41 C 488.43 487.30 485.69 486.73 483.10 485.71 L 483.10 485.71   C 485.18 487.54 486.95 489.70 488.32 492.11 L 488.32 492.12 C 488.71 490.26 489.72 488.60 491.19 487.39"/>
<polyline points="586.62,493.65 599.83,464.39 "/>
<path d="M 586.85 493.36 C 588.31 491.38 590.06 489.63 592.03 488.16 L 592.06 488.20   C 590.18 488.04 588.40 487.23 587.03 485.92 L 587.02 485.94 C 587.22 488.38 587.06 490.84 586.55 493.25"/>
<polyline points="586.34,494.16 599.83,464.39 "/>
<path d="M 587.02 485.94 C 587.25 488.70 587.01 491.47 586.33 494.15 L 586.34 494.16   C 587.90 491.87 589.84 489.85 592.06 488.20 L 592.06 488.20 C 590.18 488.04 588.40 487.23 587.03 485.92"/>
<polyline points="468.13,530.67 471.08,434.57 "/>
<path d="M 468.25 531.46 C 468.84 529.06 469.78 526.76 471.05 524.64 L 471.08 524.66   C 469.26 525.23 467.31 525.17 465.53 524.47 L 465.53 524.49 C 466.66 526.69 467.46 529.03 467.90 531.46"/>
<polyline points="468.08,532.37 471.08,434.57 "/>
<path d="M 465.53 524.49 C 466.80 526.96 467.65 529.62 468.05 532.37 L 468.08 532.37   C 468.64 529.65 469.66 527.04 471.08 524.66 L 471.08 524.66 C 469.26 525.23 467.31 525.17 465.53 524.47"/>
<polyline points="386.67,469.32 470.12,436.50 "/>
<path d="M 386.10 469.72 C 388.54 469.32 391.02 469.28 393.47 469.61 L 393.47 469.61   C 392.23 468.17 391.52 466.35 391.45 464.45 L 391.43 464.45 C 389.86 466.35 388.03 468.00 385.98 469.37"/>
<polyline points="385.25,469.89 470.12,436.50 "/>
<path d="M 391.43 464.45 C 389.66 466.59 387.55 468.42 385.18 469.87 L 385.19 469.89   C 387.92 469.34 390.71 469.25 393.47 469.61 L 393.47 469.61 C 392.23 468.17 391.52 466.35 391.45 464.45"/>
<polyline points="385.31,451.07 395.23,393.30 "/>
<path d="M 385.42 451.24 C 386.34 448.95 387.58 446.82 389.12 444.90 L 389.10 444.89   C 387.24 445.20 385.33 444.88 383.67 443.96 L 383.66 443.98 C 384.47 446.30 384.94 448.73 385.05 451.18"/>
<polyline points="385.14,452.09 395.23,393.30 "/>
<path d="M 383.66 443.98 C 384.58 446.59 385.05 449.33 385.07 452.09 L 385.08 452.09   C 386.01 449.48 387.38 447.05 389.11 444.89 L 389.10 444.89 C 387.24 445.20 385.33 444.88 383.67 443.96"/>
<polyline points="394.72,524.09 339.50,302.02 "/>
<path d="M 395.62 527.09 C 395.54 524.63 395.83 522.16 396.47 519.78 L 396.47 519.78   C 394.88 520.82 392.99 521.29 391.09 521.11 L 391.09 521.14 C 392.78 522.95 394.18 524.99 395.27 527.22"/>
<polyline points="395.74,528.00 339.50,302.02 "/>
<path d="M 391.09 521.14 C 392.98 523.17 394.51 525.49 395.64 528.02 L 395.68 528.00   C 395.49 525.24 395.76 522.46 396.48 519.78 L 396.47 519.78 C 394.88 520.82 392.99 521.29 391.09 521.11"/>
<polyline points="344.32,525.11 270.33,331.84 "/>
<path d="M 345.45 527.60 C 345.07 525.16 345.06 522.68 345.41 520.24 L 345.39 520.23   C 343.95 521.46 342.13 522.15 340.23 522.21 L 340.23 522.22 C 342.12 523.80 343.76 525.65 345.11 527.72"/>
<polyline points="345.62,528.51 270.33,331.84 "/>
<path d="M 340.23 522.22 C 342.37 524.01 344.18 526.13 345.61 528.52 L 345.62 528.51   C 345.09 525.78 345.02 522.99 345.42 520.24 L 345.39 520.23 C 343.95 521.46 342.13 522.15 340.23 522.21"/>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-16-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="459.91" x="202.13">501-16-00</text></a><text x="42.71" y="523.86">Kraftstoffsystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-04A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="537.13" x="42.71">303-04A-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-04B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="550.40" x="42.71">303-04B-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-04C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="563.66" x="42.71">303-04C-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-04D-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="576.93" x="42.71">303-04D-00</text></a><text x="42.71" y="64.71">Anlasssystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-06A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="77.97" x="42.71">303-06A-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-06B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="91.24" x="42.71">303-06B-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-06C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="104.51" x="42.71">303-06C-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-06D-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="117.77" x="42.71">303-06D-00</text></a><text x="42.71" y="147.31">Zündsystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-07A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="160.58" x="42.71">303-07A-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-07B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="173.84" x="42.71">303-07B-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-07C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="187.11" x="42.71">303-07C-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-07D-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="200.37" x="42.71">303-07D-00</text></a><text x="42.71" y="232.80">Motorregelung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-14A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="246.07" x="42.71">303-14A-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-14B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="259.33" x="42.71">303-14B-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-14C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="272.60" x="42.71">303-14C-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-14D-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="285.87" x="42.71">303-14D-00</text></a><text x="42.71" y="333.66">Geschwindigkeitsregelsystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=310-03A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="346.92" x="42.71">310-03A-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=310-03B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="360.19" x="42.71">310-03B-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=310-03C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="373.46" x="42.71">310-03C-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=310-03D-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="386.72" x="42.71">310-03D-00</text></a><text x="56.15" y="742.87">Außenbeleuch-</text>
<text x="56.15" y="756.13">tung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=417-01-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="769.40" x="56.15">417-01-00</text></a><text x="56.15" y="788.96">Tagfahrlicht</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=417-04-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="802.22" x="56.15">417-04-00</text></a><text x="155.08" y="727.50">Signalhorn</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=413-06-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="740.77" x="155.08">413-06-00</text></a><text x="155.08" y="868.67">Motorkühlung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-03A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="881.93" x="155.08">303-03A-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-03B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="895.20" x="155.08">303-03B-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-03C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="908.47" x="155.08">303-03C-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=303-03D-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="921.73" x="155.08">303-03D-00</text></a><text x="297.26" y="727.50">Antiblockier-Bremssystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=206-09A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="740.77" x="297.26">206-09A-00</text></a><text x="297.26" y="759.19">Antiblockier-Bremssystem -</text>
<text x="297.26" y="772.46">Antriebsschlupf-Regelung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=206-09B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="785.73" x="297.26">206-09B-00</text></a><text x="297.26" y="817.76">Antiblockier-Bremssystem -</text>
<text x="297.26" y="831.02">Antriebsschlupf-Regelung</text>
<text x="297.26" y="844.29">und Fahrstabilitätsregelung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=206-09C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="857.56" x="297.26">206-09C-00</text></a><text x="297.26" y="875.42">Schaltgetriebe</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=308-03B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="888.68" x="297.26">308-03B-00</text></a><text x="297.26" y="920.54">Automatikgetriebe</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=307-01-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="933.81" x="297.26">307-01-00</text></a><text x="452.88" y="769.74">Modulvernetzung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=418-00-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="783.01" x="452.88">418-00-00</text></a><text x="452.88" y="815.83">Diebstahlwarnanlage -</text>
<text x="452.88" y="829.10">Aktiv</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=419-01A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="842.36" x="452.88">419-01A-00</text></a><text x="452.88" y="860.05">Diebstahlwarnanlage -</text>
<text x="452.88" y="873.32">Passiv</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=419-01B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="886.58" x="452.88">419-01B-00</text></a><text x="452.88" y="909.03">Multifunktionsmodule</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=419-10-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="922.30" x="452.88">419-10-00</text></a><text x="580.61" y="755.34">Lautsprecher</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=415-03-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="768.61" x="580.61">415-03-00</text></a><text x="595.01" y="684.25">Türgriffe, Schlösser und</text>
<text x="595.01" y="697.51">Verriegelungen</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-14-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="710.78" x="595.01">501-14-00</text></a><text x="609.41" y="614.12">Videosystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=415-07-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="627.38" x="609.41">415-07-00</text></a><text x="609.41" y="646.77">Sitze</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-10-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="660.04" x="609.41">501-10-00</text></a><text x="595.01" y="543.03">Fenster, Rahmen</text>
<text x="595.01" y="556.29">und Betätigungs-</text>
<text x="595.01" y="569.56">mechanismen</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-11-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="582.82" x="595.01">501-11-00</text></a><text x="609.41" y="429.70">Einparkhilfe</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=413-13-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="442.96" x="609.41">413-13-00</text></a><text x="609.41" y="477.72">Außenbeleuchtung -</text>
<text x="609.41" y="490.98">Anhängerkupplung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=417-01-00-021&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="504.25" x="609.41">417-01-00-021</text></a><text x="438.43" y="415.30">Außenspiegel</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-09-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="428.56" x="438.43">501-09-00</text></a><text x="372.15" y="361.49">Schiebedach</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-17-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="374.76" x="372.15">501-17-00</text></a><text x="339.50" y="125.20">Instrumentenbeleuchtung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=413-00-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="138.47" x="339.50">413-00-00</text></a><text x="339.50" y="185.75">Kombiinstrument</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=413-01-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="199.01" x="339.50">413-01-00</text></a><text x="339.50" y="218.40">Warneinrichtungen</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=413-09-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="231.67" x="339.50">413-09-00</text></a><text x="339.50" y="263.53">Instrumententafel und</text>
<text x="339.50" y="276.80">Konsolen</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-12-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="290.06" x="339.50">501-12-00</text></a><text x="207.91" y="68.56">Zusatzheizung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=412-02B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="81.83" x="207.91">412-02B-00</text></a><text x="207.91" y="105.02">Klimaanlage</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=412-03A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="118.28" x="207.91">412-03A-00</text></a><text x="207.91" y="140.56">Zeituhr</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=413-07-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="153.83" x="207.91">413-07-00</text></a><text x="207.91" y="171.29">Radio- und Audio-Wie-</text>
<text x="207.91" y="184.56">dergabegerät</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=415-01-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="197.82" x="207.91">415-01-00</text></a><text x="207.91" y="218.40">Navigationssystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=419-07-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="231.67" x="207.91">419-07-00</text></a><text x="207.91" y="268.35">Mobiltelefon</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=419-08-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="281.61" x="207.91">419-08-00</text></a><text x="207.91" y="309.62">Innenbeleuchtung</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=417-02-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="322.89" x="207.91">417-02-00</text></a><text x="580.61" y="787.99">Passives Rückhal-</text>
<text x="580.61" y="801.26">tesystem</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=501-20B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="814.53" x="580.61">501-20B-00</text></a><text x="42.71" y="434.52">Generator und Regler</text>
<a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=414-02A-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="447.78" x="42.71">414-02A-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=414-02B-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="461.05" x="42.71">414-02B-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=414-02C-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="474.31" x="42.71">414-02C-00</text></a><a onclick="openWindow('/wiring/js-xref.do?type=group&amp;node=414-02D-00&amp;variantId=1000053&amp;language=de&amp;country=DE','_connector')"><text font-size="" text-decoration="underline" fill="blue" transform="" y="487.58" x="42.71">414-02D-00</text></a>
</g>

<style type="text/css">
    a:link {fill: #0099FF;}
    a:visited {fill: #0099FF;}
    a:active {fill: #FF0000;}
    a:hover {fill: #FF0000;}
    .sto0{    fill:none;  fill-rule: evenodd; stroke:#FFFFFF; stroke-width:2.49}
    .sto1{    fill:#000000;  fill-rule: evenodd; stroke:none; stroke-width:2.49}
    .sto2{    fill:none;  fill-rule: evenodd; stroke:#000000; stroke-width:0.34}
    .sto3{    fill:#000000;  fill-rule: evenodd; stroke:#000000; stroke-width:0.34}
    .sto4{    fill:#000000;  fill-rule: evenodd; stroke:#FFFFFF; stroke-width:2.49}
    .sto5{    fill:none;  fill-rule: evenodd; stroke:#000000; stroke-width:0.90}
    .stt0{    Helvetica; 10.00; fill:#000000}
</style><g id="connectorComponentInfo" x="0" y="0" transform="translate(1317, 503)" style="visibility:hidden"><rect style="opacity:0.9;fill:#ffffff;stroke:#000000;" height="64" width="388" y="0" x="0"/><rect height="24" width="388" y="0" x="0" fill="#C8CDD5"/><a onmouseout="cancelToolTip(evt)" onclick="hideConnectorInfo(evt, 'connectorComponentInfo')" onmouseover="scheduleGenericToolTip(evt, &quot;Schließen&quot;)"><rect style="stroke:#003787" fill="white" height="12" width="12" y="6" x="371"/></a><text fill="blue" x="4" y="37"><a target="_connector" xlink:href="" id="connectorComponentInfo-connectorlink" onmouseover="scheduleGenericToolTip(evt,&quot;Anklicken, um den Stecker anzuzeigen&quot;)" onmouseout="cancelToolTip(evt)">Anklicken, um den Stecker anzuzeigen</a></text><text fill="blue" x="4" y="55"><a target="_connector" xlink:href="" id="comploclink" onmouseover="scheduleGenericToolTip(evt,&quot;Anklicken, um die Bauteilpositions-Referenz anzuzeigen&quot;)" onmouseout="cancelToolTip(evt)">Anklicken, um die Bauteilpositions-Referenz anzuzeigen</a></text></g><g id="connectorInfo" x="0" y="0" transform="translate(1317, 503)" style="visibility:hidden"><rect style="opacity:0.9;fill:#ffffff;stroke:#000000;" height="45" width="170" y="0" x="0"/><rect height="24" width="170" y="0" x="0" fill="#C8CDD5"/><a onmouseout="cancelToolTip(evt)" onclick="hideConnectorInfo(evt, 'connectorInfo')" target="_connector" onmouseover="scheduleGenericToolTip(evt, &quot;Schließen&quot;)"><rect style="stroke:#003787" fill="white" height="12" width="12" y="6" x="153"/></a><text fill="blue" x="4" y="37"><a target="_connector" xlink:href="" id="connectorInfo-connectorlink">Anklicken, um den Stecker anzuzeigen</a></text></g></g></svg></g></svg><svg id="buttons" height="23px" width="100%"><image height="23px" width="23px" y="0" x="10" xlink:href="https://justpaste.it/img/wiring/panleft.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'left-tt')" onclick="left(evt)"/><image height="23px" width="23px" y="0" x="35" xlink:href="https://justpaste.it/img/wiring/panup.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'up-tt')" onclick="up(evt)"/><image height="23px" width="23px" y="0" x="60" xlink:href="https://justpaste.it/img/wiring/pandown.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'down-tt')" onclick="down(evt)"/><image height="23px" width="23px" y="0" x="85" xlink:href="https://justpaste.it/img/wiring/panright.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'right-tt')" onclick="right(evt)"/><image height="23" width="23" y="0" x="120" xlink:href="https://justpaste.it/img/wiring/zoomin.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'zoomin-tt')" onclick="zoomIn(evt)"/><image height="23px" width="23px" y="0" x="145" xlink:href="https://justpaste.it/img/wiring/zoomout.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'zoomout-tt')" onclick="zoomOut(evt)"/><image height="23px" width="23px" y="0" x="180" xlink:href="https://justpaste.it/img/wiring/optimal.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'reset-tt')" onclick="reset(evt)"/><a id="printLink" onclick="openWindow('/wiring/prepareEmbeddedSVG.do?sheetNumber=1&amp;language=de&amp;country=DE&amp;displayNameId=&amp;selectedId=&amp;id=Z53DE_DEU001','_connector')"><image height="23px" width="23px" y="0" x="215" xlink:href="https://justpaste.it/img/wiring/print.gif" onmouseout="cancelToolTip(evt)" onmouseover="scheduleToolTipById(evt, 'print-tt')"/></a><g style="visibility:hidden" y="0" x="0" id="left-tt"><rect height="12pt" fill="#ffffff" width="280"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Diagramm nach links verschieben</text></g><g style="visibility:hidden" y="0" x="0" id="up-tt"><rect height="12pt" fill="#ffffff" width="430"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Diagramm auf dem Bildschirm nach oben verschieben</text></g><g style="visibility:hidden" y="0" x="0" id="down-tt"><rect height="12pt" fill="#ffffff" width="440"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Diagramm auf dem Bildschirm nach unten verschieben</text></g><g style="visibility:hidden" y="0" x="0" id="right-tt"><rect height="12pt" fill="#ffffff" width="290"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Diagramm nach rechts verschieben</text></g><g style="visibility:hidden" y="0" x="0" id="zoomin-tt"><rect height="12pt" fill="#ffffff" width="100"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Vergrößern</text></g><g style="visibility:hidden" y="0" x="0" id="zoomout-tt"><rect height="12pt" fill="#ffffff" width="110"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Verkleinern</text></g><g style="visibility:hidden" y="0" x="0" id="print-tt"><rect height="12pt" fill="#ffffff" width="150"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Diagramm drucken</text></g><g style="visibility:hidden" y="0" x="0" id="reset-tt"><rect height="12pt" fill="#ffffff" width="300"/><text style=" verdana; font-weight:bold; 10pt" dy="11">Zur Originalansicht zurücksetzen</text></g></svg><g style="visibility:hidden" y="0" x="0" id="tooltip"><rect width="100" height="14pt" fill="#f5eeb7" id="tooltip-rect"/><text style="10pt" dy="11" id="tooltip-text"/></g></svg>