Code

animated clock added
authorbuliabyak <buliabyak@users.sourceforge.net>
Mon, 8 Jan 2007 13:08:32 +0000 (13:08 +0000)
committerbuliabyak <buliabyak@users.sourceforge.net>
Mon, 8 Jan 2007 13:08:32 +0000 (13:08 +0000)
share/examples/Makefile.am
share/examples/animated-clock.svg [new file with mode: 0644]

index 53fb92ff399ec9d014daf6630e310ff1c7086fbd..b4ef0dbbab5141b6a5adb0147c49a2d6f0390226 100644 (file)
@@ -20,6 +20,7 @@ example_DATA = \
        car.svgz \
        gallardo.svgz \
        gradient-mesh-experimental.svgz \
-       rope-3D.svg
+       rope-3D.svg \
+       animated-clock.svg
 
 EXTRA_DIST = $(example_DATA)
diff --git a/share/examples/animated-clock.svg b/share/examples/animated-clock.svg
new file mode 100644 (file)
index 0000000..9ba151a
--- /dev/null
@@ -0,0 +1,566 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="750"
+   height="350"
+   onload="Start(evt)"
+   id="svg2707"
+   sodipodi:version="0.32"
+   inkscape:version="0.44+devel"
+   sodipodi:docname="animated-clock.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:docbase="/home/d/ink/inkscape/share/examples"
+   sodipodi:modified="true">
+  <metadata
+     id="metadata11358">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-nc-nd/2.5/" />
+        <dc:title>Mechanical Clock</dc:title>
+        <dc:date>7 January 2007</dc:date>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Tavmjong Bah</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:description>Mechanical Clock with Hour, Minute, and Second hands.</dc:description>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Gears created with python script from Aaron Spike.</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>SVG</rdf:li>
+            <rdf:li>Clock</rdf:li>
+            <rdf:li>Animation</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-nc-nd/2.5/">
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution" />
+        <cc:prohibits
+           rdf:resource="http://web.resource.org/cc/CommercialUse" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="653"
+     inkscape:window-width="1036"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="1.2725744"
+     inkscape:cx="367.54579"
+     inkscape:cy="163.99964"
+     inkscape:window-x="198"
+     inkscape:window-y="25"
+     inkscape:current-layer="svg2707" />
+  <defs
+     id="defs2806" />
+  <script
+     type="text/ecmascript"
+     id="script2259">
+
+    var angle_seconds = 0;
+    var angle_gear7_5 = 0;
+    var angle_minutes = 0;
+    var angle_gear180 = 0;
+    var angle_hours   = 0;
+
+    // Keep track of old time... so we don't update the display if not necessary.  
+    // This is a mechanical clock so it's OK to move the second hand once every second.
+    var old_time = 0;
+
+    // The gear groups
+    var seconds;
+    var gear7_5;
+    var minutes;
+    var gear180;
+    var hours;
+    var second_hand;
+    var minute_hand;
+    var hour_hand;
+
+    function Start(evt) {
+      seconds     = evt.target.ownerDocument.getElementById(&quot;RotSeconds&quot;);
+      gear7_5     = evt.target.ownerDocument.getElementById(&quot;RotGear7_5&quot;);
+      minutes     = evt.target.ownerDocument.getElementById(&quot;RotMinutes&quot;);
+      gear180     = evt.target.ownerDocument.getElementById(&quot;RotGear180&quot;);
+      hours       = evt.target.ownerDocument.getElementById(&quot;RotHours&quot;  );
+      second_hand = evt.target.ownerDocument.getElementById(&quot;RotSecondHand&quot;  );
+      minute_hand = evt.target.ownerDocument.getElementById(&quot;RotMinuteHand&quot;  );
+      hour_hand   = evt.target.ownerDocument.getElementById(&quot;RotHourHand&quot;    );
+
+      Run();
+    }
+
+    function Run() {
+
+      // Get computer clock time
+      var date = new Date();
+      var s = date.getSeconds();
+      var m = date.getMinutes();
+      var h = date.getHours();
+
+      // Set start angles... this is a little tricky
+      s += m * 60.0 + h * 3600.0;
+
+      if( old_time != s ) {
+        angle_seconds =  (s * 6.0         ) % 360.0;
+        angle_gear7_5 = -(s * 6.0 /   7.5 ) % 360.0;
+        angle_minutes =  (s * 6.0 /  60.0 ) % 360.0;
+        angle_gear180 = -(s * 6.0 / 180.0 ) % 360.0;
+        angle_hours   =  (s * 6.0 / 720.0 ) % 360.0;
+
+        seconds.setAttribute(&quot;transform&quot;, &quot;rotate(&quot; +angle_seconds+ &quot;)&quot;);
+        gear7_5.setAttribute(&quot;transform&quot;, &quot;rotate(&quot; +angle_gear7_5+ &quot;)&quot;);
+        minutes.setAttribute(&quot;transform&quot;, &quot;rotate(&quot; +angle_minutes+ &quot;)&quot;);
+        gear180.setAttribute(&quot;transform&quot;, &quot;rotate(&quot; +angle_gear180+ &quot;)&quot;);
+        hours.setAttribute(  &quot;transform&quot;, &quot;rotate(&quot; +angle_hours+   &quot;)&quot;);
+
+        second_hand.setAttribute(&quot;transform&quot;, &quot;rotate(&quot; +angle_seconds+ &quot;)&quot;);
+        minute_hand.setAttribute(&quot;transform&quot;, &quot;rotate(&quot; +angle_minutes+ &quot;)&quot;);
+        hour_hand.setAttribute(  &quot;transform&quot;, &quot;rotate(&quot; +angle_hours+   &quot;)&quot;);
+
+      }
+
+      old_time = s;
+
+      // Repeat every 10th of a second.
+      setTimeout(&quot;Run()&quot;, 100)
+    }
+
+    window.Run = Run
+  </script>
+  <g
+     transform="translate(600,150)"
+     style="fill:#bfbfbf;stroke:black"
+     id="Seconds">
+    <g
+       id="RotSeconds">
+      <path
+         d="M 9.3370038,-2.0023549 L 11.698551,-2.5087975 L 12.487746,-2.4839671 L 15.892187,-0.86101804 L 15.892187,0.86101804 L 12.487746,2.4839671 L 11.698551,2.5087975 L 9.3370038,2.0023549 L 8.0181374,5.18638 L 10.046113,6.4981374 L 10.5866,7.0737399 L 11.846305,10.628641 L 10.628641,11.846305 L 7.0737399,10.5866 L 6.4981374,10.046113 L 5.18638,8.0181374 L 2.0023549,9.3370038 L 2.5087975,11.698551 L 2.4839671,12.487746 L 0.86101804,15.892187 L -0.86101804,15.892187 L -2.4839671,12.487746 L -2.5087975,11.698551 L -2.0023549,9.3370038 L -5.18638,8.0181374 L -6.4981374,10.046113 L -7.0737399,10.5866 L -10.628641,11.846305 L -11.846305,10.628641 L -10.5866,7.0737399 L -10.046113,6.4981374 L -8.0181374,5.18638 L -9.3370038,2.0023549 L -11.698551,2.5087975 L -12.487746,2.4839671 L -15.892187,0.86101804 L -15.892187,-0.86101804 L -12.487746,-2.4839671 L -11.698551,-2.5087975 L -9.3370038,-2.0023549 L -8.0181374,-5.18638 L -10.046113,-6.4981374 L -10.5866,-7.0737399 L -11.846305,-10.628641 L -10.628641,-11.846305 L -7.0737399,-10.5866 L -6.4981374,-10.046113 L -5.18638,-8.0181374 L -2.0023549,-9.3370038 L -2.5087975,-11.698551 L -2.4839671,-12.487746 L -0.86101804,-15.892187 L 0.86101804,-15.892187 L 2.4839671,-12.487746 L 2.5087975,-11.698551 L 2.0023549,-9.3370038 L 5.18638,-8.0181374 L 6.4981374,-10.046113 L 7.0737399,-10.5866 L 10.628641,-11.846305 L 11.846305,-10.628641 L 10.5866,-7.0737399 L 10.046113,-6.4981374 L 8.0181374,-5.18638 L 9.3370038,-2.0023549 z "
+         id="path2719" />
+    </g>
+  </g>
+  <g
+     transform="translate(490.12084,144.74606)"
+     style="fill:#bfbfbf;stroke:black"
+     id="Gear7_5">
+    <g
+       id="RotGear7_5">
+      <path
+         d="M 488.875,46.0625 L 487.625,49.28125 L 486.75,52.5 L 483.84375,52.65625 L 482.625,49.5625 L 481.0625,46.5 L 478.5625,46.75 L 477.65625,50.0625 L 477.125,53.34375 L 474.25,53.8125 L 472.71875,50.84375 L 470.84375,47.96875 L 468.375,48.5 L 467.84375,51.90625 L 467.65625,55.21875 L 464.8125,55.96875 L 463,53.1875 L 460.8125,50.53125 L 458.4375,51.28125 L 458.25,54.71875 L 458.40625,58.0625 L 455.6875,59.09375 L 453.5625,56.53125 L 451.125,54.09375 L 448.84375,55.125 L 449,58.5625 L 449.53125,61.84375 L 446.90625,63.15625 L 444.5625,60.8125 L 441.875,58.65625 L 439.71875,59.9375 L 440.21875,63.3125 L 441.0625,66.53125 L 438.625,68.125 L 436.03125,66.0625 L 433.125,64.1875 L 431.125,65.65625 L 432,69 L 433.15625,72.09375 L 430.90625,73.9375 L 428.09375,72.125 L 425.03125,70.59375 L 423.15625,72.25 L 424.375,75.46875 L 425.875,78.4375 L 423.8125,80.5 L 420.84375,79 L 417.625,77.78125 L 415.96875,79.65625 L 417.5,82.71875 L 419.3125,85.53125 L 417.46875,87.78125 L 414.375,86.625 L 411.03125,85.75 L 409.5625,87.75 L 411.4375,90.65625 L 413.5,93.25 L 411.90625,95.6875 L 408.6875,94.84375 L 405.3125,94.34375 L 404.03125,96.5 L 406.1875,99.1875 L 408.53125,101.53125 L 407.21875,104.15625 L 403.9375,103.625 L 400.5,103.46875 L 399.46875,105.75 L 401.90625,108.1875 L 404.46875,110.3125 L 403.4375,113.03125 L 400.09375,112.875 L 396.65625,113.0625 L 395.90625,115.4375 L 398.5625,117.625 L 401.34375,119.4375 L 400.59375,122.28125 L 397.28125,122.46875 L 393.875,123 L 393.34375,125.46875 L 396.21875,127.34375 L 399.1875,128.875 L 398.71875,131.75 L 395.4375,132.28125 L 392.125,133.1875 L 391.875,135.6875 L 394.9375,137.25 L 398.03125,138.46875 L 397.875,141.375 L 394.65625,142.25 L 391.4375,143.5 L 391.4375,146 L 394.65625,147.25 L 397.875,148.125 L 398.03125,151.03125 L 394.9375,152.25 L 391.875,153.8125 L 392.125,156.3125 L 395.4375,157.21875 L 398.71875,157.75 L 399.1875,160.625 L 396.21875,162.15625 L 393.34375,164.03125 L 393.875,166.46875 L 397.28125,167.03125 L 400.59375,167.21875 L 401.34375,170.03125 L 398.5625,171.875 L 395.90625,174.0625 L 396.65625,176.4375 L 400.09375,176.625 L 403.4375,176.46875 L 404.46875,179.1875 L 401.90625,181.28125 L 399.46875,183.75 L 400.5,186.03125 L 403.9375,185.84375 L 407.21875,185.34375 L 408.53125,187.9375 L 406.1875,190.3125 L 404.03125,193 L 405.3125,195.15625 L 408.6875,194.65625 L 411.90625,193.78125 L 413.5,196.25 L 411.4375,198.84375 L 409.5625,201.71875 L 411.03125,203.75 L 414.375,202.875 L 417.46875,201.6875 L 419.3125,203.96875 L 417.5,206.75 L 415.96875,209.84375 L 417.625,211.6875 L 420.84375,210.46875 L 423.8125,208.96875 L 425.875,211.03125 L 424.375,214 L 423.15625,217.21875 L 425.03125,218.90625 L 428.09375,217.375 L 430.90625,215.5625 L 433.15625,217.40625 L 432,220.5 L 431.125,223.84375 L 433.125,225.3125 L 436.03125,223.4375 L 438.625,221.375 L 441.0625,222.9375 L 440.21875,226.15625 L 439.71875,229.5625 L 441.875,230.8125 L 444.5625,228.65625 L 446.90625,226.3125 L 449.53125,227.65625 L 449,230.9375 L 448.84375,234.375 L 451.125,235.40625 L 453.5625,232.96875 L 455.6875,230.40625 L 458.40625,231.4375 L 458.25,234.75 L 458.4375,238.1875 L 460.8125,238.96875 L 463,236.3125 L 464.8125,233.53125 L 467.65625,234.28125 L 467.84375,237.59375 L 468.375,241 L 470.84375,241.53125 L 472.71875,238.625 L 474.25,235.6875 L 477.125,236.125 L 477.65625,239.4375 L 478.5625,242.75 L 481.0625,243 L 482.625,239.9375 L 483.84375,236.84375 L 486.75,237 L 487.625,240.21875 L 488.875,243.40625 L 491.375,243.40625 L 492.625,240.21875 L 493.5,237 L 496.40625,236.84375 L 497.625,239.9375 L 499.1875,243 L 501.6875,242.75 L 502.59375,239.4375 L 503.125,236.125 L 506,235.6875 L 507.53125,238.625 L 509.40625,241.53125 L 511.84375,241 L 512.40625,237.59375 L 512.59375,234.28125 L 515.40625,233.53125 L 517.25,236.3125 L 519.40625,238.96875 L 521.8125,238.1875 L 522,234.75 L 521.84375,231.4375 L 524.5625,230.40625 L 526.65625,232.96875 L 529.125,235.40625 L 531.40625,234.375 L 531.21875,230.9375 L 530.71875,227.65625 L 533.3125,226.3125 L 535.6875,228.65625 L 538.375,230.8125 L 540.53125,229.5625 L 540.03125,226.15625 L 539.15625,222.9375 L 541.625,221.375 L 544.21875,223.4375 L 547.09375,225.3125 L 549.125,223.84375 L 548.25,220.5 L 547.0625,217.40625 L 549.34375,215.5625 L 552.125,217.375 L 555.21875,218.90625 L 557.0625,217.21875 L 555.84375,214 L 554.34375,211.03125 L 556.40625,208.96875 L 559.375,210.46875 L 562.59375,211.6875 L 564.28125,209.84375 L 562.71875,206.75 L 560.9375,203.96875 L 562.78125,201.6875 L 565.875,202.875 L 569.21875,203.75 L 570.6875,201.71875 L 568.8125,198.84375 L 566.71875,196.25 L 568.3125,193.78125 L 571.53125,194.65625 L 574.9375,195.15625 L 576.1875,193 L 574.03125,190.3125 L 571.6875,187.9375 L 573.03125,185.34375 L 576.3125,185.84375 L 579.75,186.03125 L 580.78125,183.75 L 578.34375,181.28125 L 575.78125,179.1875 L 576.8125,176.46875 L 580.125,176.625 L 583.5625,176.4375 L 584.34375,174.0625 L 581.6875,171.875 L 578.90625,170.03125 L 579.65625,167.21875 L 582.96875,167.03125 L 586.375,166.46875 L 586.90625,164.03125 L 584,162.15625 L 581.0625,160.625 L 581.5,157.75 L 584.8125,157.21875 L 588.125,156.3125 L 588.375,153.8125 L 585.3125,152.25 L 582.21875,151.03125 L 582.375,148.125 L 585.59375,147.25 L 588.78125,146 L 588.78125,143.5 L 585.59375,142.25 L 582.375,141.375 L 582.21875,138.46875 L 585.3125,137.25 L 588.375,135.6875 L 588.125,133.1875 L 584.8125,132.28125 L 581.5,131.75 L 581.0625,128.875 L 584,127.34375 L 586.90625,125.46875 L 586.375,123 L 582.96875,122.46875 L 579.65625,122.28125 L 578.90625,119.4375 L 581.6875,117.625 L 584.34375,115.4375 L 583.5625,113.0625 L 580.125,112.875 L 576.8125,113.03125 L 575.78125,110.3125 L 578.34375,108.1875 L 580.78125,105.75 L 579.75,103.46875 L 576.3125,103.625 L 573.03125,104.15625 L 571.6875,101.53125 L 574.03125,99.1875 L 576.1875,96.5 L 574.9375,94.34375 L 571.53125,94.84375 L 568.3125,95.6875 L 566.71875,93.25 L 568.8125,90.65625 L 570.6875,87.75 L 569.21875,85.75 L 565.875,86.625 L 562.78125,87.78125 L 560.9375,85.53125 L 562.71875,82.71875 L 564.28125,79.65625 L 562.59375,77.78125 L 559.375,79 L 556.40625,80.5 L 554.34375,78.4375 L 555.84375,75.46875 L 557.0625,72.25 L 555.21875,70.59375 L 552.125,72.125 L 549.34375,73.9375 L 547.0625,72.09375 L 548.25,69 L 549.125,65.65625 L 547.09375,64.1875 L 544.21875,66.0625 L 541.625,68.125 L 539.15625,66.53125 L 540.03125,63.3125 L 540.53125,59.9375 L 538.375,58.65625 L 535.6875,60.8125 L 533.3125,63.15625 L 530.71875,61.84375 L 531.21875,58.5625 L 531.40625,55.125 L 529.125,54.09375 L 526.65625,56.53125 L 524.5625,59.09375 L 521.84375,58.0625 L 522,54.71875 L 521.8125,51.28125 L 519.40625,50.53125 L 517.25,53.1875 L 515.40625,55.96875 L 512.59375,55.21875 L 512.40625,51.90625 L 511.84375,48.5 L 509.40625,47.96875 L 507.53125,50.84375 L 506,53.8125 L 503.125,53.34375 L 502.59375,50.0625 L 501.6875,46.75 L 499.1875,46.5 L 497.625,49.5625 L 496.40625,52.65625 L 493.5,52.5 L 492.625,49.28125 L 491.375,46.0625 L 488.875,46.0625 z M 480.125,65.625 L 480.125,119.75 C 480.125,128.03 473.405,134.75 465.125,134.75 L 410.65625,134.75 C 415.27743,98.653617 443.97717,70.080066 480.125,65.625 z M 500.125,65.65625 C 536.15497,70.212199 564.73325,98.73698 569.34375,134.75 L 515.125,134.75 C 506.845,134.75 500.125,128.03 500.125,119.75 L 500.125,65.65625 z M 410.59375,154.75 L 465.125,154.75 C 473.405,154.75 480.125,161.47 480.125,169.75 L 480.125,224.375 C 443.81029,219.89937 415.01248,191.08222 410.59375,154.75 z M 515.125,154.75 L 569.40625,154.75 C 564.99768,190.9987 536.3217,219.76672 500.125,224.34375 L 500.125,169.75 C 500.125,161.47 506.845,154.75 515.125,154.75 z "
+         transform="translate(-490.12084,-144.74606)"
+         id="path2731" />
+      <path
+         d="M 9.3370038,-2.0023549 L 11.698551,-2.5087975 L 12.487746,-2.4839671 L 15.892187,-0.86101804 L 15.892187,0.86101804 L 12.487746,2.4839671 L 11.698551,2.5087975 L 9.3370038,2.0023549 L 8.0181374,5.18638 L 10.046113,6.4981374 L 10.5866,7.0737399 L 11.846305,10.628641 L 10.628641,11.846305 L 7.0737399,10.5866 L 6.4981374,10.046113 L 5.18638,8.0181374 L 2.0023549,9.3370038 L 2.5087975,11.698551 L 2.4839671,12.487746 L 0.86101804,15.892187 L -0.86101804,15.892187 L -2.4839671,12.487746 L -2.5087975,11.698551 L -2.0023549,9.3370038 L -5.18638,8.0181374 L -6.4981374,10.046113 L -7.0737399,10.5866 L -10.628641,11.846305 L -11.846305,10.628641 L -10.5866,7.0737399 L -10.046113,6.4981374 L -8.0181374,5.18638 L -9.3370038,2.0023549 L -11.698551,2.5087975 L -12.487746,2.4839671 L -15.892187,0.86101804 L -15.892187,-0.86101804 L -12.487746,-2.4839671 L -11.698551,-2.5087975 L -9.3370038,-2.0023549 L -8.0181374,-5.18638 L -10.046113,-6.4981374 L -10.5866,-7.0737399 L -11.846305,-10.628641 L -10.628641,-11.846305 L -7.0737399,-10.5866 L -6.4981374,-10.046113 L -5.18638,-8.0181374 L -2.0023549,-9.3370038 L -2.5087975,-11.698551 L -2.4839671,-12.487746 L -0.86101804,-15.892187 L 0.86101804,-15.892187 L 2.4839671,-12.487746 L 2.5087975,-11.698551 L 2.0023549,-9.3370038 L 5.18638,-8.0181374 L 6.4981374,-10.046113 L 7.0737399,-10.5866 L 10.628641,-11.846305 L 11.846305,-10.628641 L 10.5866,-7.0737399 L 10.046113,-6.4981374 L 8.0181374,-5.18638 L 9.3370038,-2.0023549 z "
+         id="path2743" />
+      <g
+         id="Nut">
+        <path
+           id="path2503"
+           style="opacity:1;fill:#666666;stroke:black"
+           transform="matrix(1.5,0,0,1.5,-735.12084,-217.24606)"
+           d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
+        <rect
+           id="rect2509"
+           style="opacity:1;fill:#333333;stroke:none"
+           transform="translate(-490.12084,-144.74606)"
+           y="139"
+           x="489"
+           height="12"
+           width="2" />
+        <path
+           id="path2511"
+           style="opacity:1;fill:none;stroke:black"
+           transform="matrix(1.5,0,0,1.5,-735.12084,-217.24606)"
+           d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
+      </g>
+    </g>
+  </g>
+  <g
+     transform="translate(375,150)"
+     style="fill:#bfbfbf;stroke:black"
+     id="Minutes">
+    <g
+       id="RotMinutes">
+      <path
+         d="M -1.25,-105.03125 L -2.5,-101.84375 L -3.40625,-98.625 L -6.28125,-98.46875 L -7.5,-101.59375 L -9.03125,-104.65625 L -11.53125,-104.40625 L -12.46875,-101.09375 L -13.03125,-97.8125 L -15.90625,-97.375 L -17.40625,-100.375 L -19.25,-103.25 L -21.71875,-102.78125 L -22.3125,-99.375 L -22.5625,-96.0625 L -25.375,-95.34375 L -27.15625,-98.15625 L -29.28125,-100.875 L -31.6875,-100.15625 L -31.9375,-96.71875 L -31.875,-93.375 L -34.59375,-92.40625 L -36.65625,-95.03125 L -39.03125,-97.53125 L -41.34375,-96.5625 L -41.28125,-93.125 L -40.875,-89.8125 L -43.5,-88.5625 L -45.8125,-90.96875 L -48.40625,-93.21875 L -50.625,-92.03125 L -50.21875,-88.625 L -49.46875,-85.375 L -51.96875,-83.875 L -54.5,-86.0625 L -57.3125,-88.03125 L -59.40625,-86.625 L -58.65625,-83.28125 L -57.625,-80.125 L -59.9375,-78.375 L -62.65625,-80.3125 L -65.65625,-82 L -67.59375,-80.40625 L -66.53125,-77.125 L -65.1875,-74.09375 L -67.34375,-72.125 L -70.25,-73.78125 L -73.375,-75.15625 L -75.15625,-73.375 L -73.78125,-70.25 L -72.125,-67.34375 L -74.09375,-65.1875 L -77.125,-66.53125 L -80.40625,-67.59375 L -82,-65.65625 L -80.3125,-62.65625 L -78.375,-59.9375 L -80.125,-57.625 L -83.28125,-58.65625 L -86.625,-59.40625 L -88.03125,-57.3125 L -86.0625,-54.5 L -83.875,-51.96875 L -85.375,-49.46875 L -88.625,-50.21875 L -92.03125,-50.625 L -93.21875,-48.40625 L -90.96875,-45.8125 L -88.5625,-43.5 L -89.8125,-40.875 L -93.125,-41.28125 L -96.5625,-41.34375 L -97.53125,-39.03125 L -95.03125,-36.65625 L -92.40625,-34.59375 L -93.375,-31.875 L -96.71875,-31.9375 L -100.15625,-31.6875 L -100.875,-29.28125 L -98.15625,-27.15625 L -95.34375,-25.375 L -96.0625,-22.5625 L -99.375,-22.3125 L -102.78125,-21.71875 L -103.25,-19.25 L -100.375,-17.40625 L -97.375,-15.90625 L -97.8125,-13.03125 L -101.09375,-12.46875 L -104.40625,-11.53125 L -104.65625,-9.03125 L -101.59375,-7.5 L -98.46875,-6.28125 L -98.625,-3.40625 L -101.84375,-2.5 L -105.03125,-1.25 L -105.03125,1.25 L -101.84375,2.5 L -98.625,3.40625 L -98.46875,6.28125 L -101.59375,7.5 L -104.65625,9.03125 L -104.40625,11.53125 L -101.09375,12.46875 L -97.8125,13.03125 L -97.375,15.90625 L -100.375,17.40625 L -103.25,19.25 L -102.78125,21.71875 L -99.375,22.3125 L -96.0625,22.5625 L -95.34375,25.375 L -98.15625,27.15625 L -100.875,29.28125 L -100.15625,31.6875 L -96.71875,31.9375 L -93.375,31.875 L -92.40625,34.59375 L -95.03125,36.65625 L -97.53125,39.03125 L -96.5625,41.34375 L -93.125,41.28125 L -89.8125,40.875 L -88.5625,43.5 L -90.96875,45.8125 L -93.21875,48.40625 L -92.03125,50.625 L -88.625,50.21875 L -85.375,49.46875 L -83.875,51.96875 L -86.0625,54.5 L -88.03125,57.3125 L -86.625,59.40625 L -83.28125,58.65625 L -80.125,57.625 L -78.375,59.9375 L -80.3125,62.65625 L -82,65.65625 L -80.40625,67.59375 L -77.125,66.53125 L -74.09375,65.1875 L -72.125,67.34375 L -73.78125,70.25 L -75.15625,73.375 L -73.375,75.15625 L -70.25,73.78125 L -67.34375,72.125 L -65.1875,74.09375 L -66.53125,77.125 L -67.59375,80.40625 L -65.65625,82 L -62.65625,80.3125 L -59.9375,78.375 L -57.625,80.125 L -58.65625,83.28125 L -59.40625,86.625 L -57.3125,88.03125 L -54.5,86.0625 L -51.96875,83.875 L -49.46875,85.375 L -50.21875,88.625 L -50.625,92.03125 L -48.40625,93.21875 L -45.8125,90.96875 L -43.5,88.5625 L -40.875,89.8125 L -41.28125,93.125 L -41.34375,96.5625 L -39.03125,97.53125 L -36.65625,95.03125 L -34.59375,92.40625 L -31.875,93.375 L -31.9375,96.71875 L -31.6875,100.15625 L -29.28125,100.875 L -27.15625,98.15625 L -25.375,95.34375 L -22.5625,96.0625 L -22.3125,99.375 L -21.71875,102.78125 L -19.25,103.25 L -17.40625,100.375 L -15.90625,97.375 L -13.03125,97.8125 L -12.46875,101.09375 L -11.53125,104.40625 L -9.03125,104.65625 L -7.5,101.59375 L -6.28125,98.46875 L -3.40625,98.625 L -2.5,101.84375 L -1.25,105.03125 L 1.25,105.03125 L 2.5,101.84375 L 3.40625,98.625 L 6.28125,98.46875 L 7.5,101.59375 L 9.03125,104.65625 L 11.53125,104.40625 L 12.46875,101.09375 L 13.03125,97.8125 L 15.90625,97.375 L 17.40625,100.375 L 19.25,103.25 L 21.71875,102.78125 L 22.3125,99.375 L 22.5625,96.0625 L 25.375,95.34375 L 27.15625,98.15625 L 29.28125,100.875 L 31.6875,100.15625 L 31.9375,96.71875 L 31.875,93.375 L 34.59375,92.40625 L 36.65625,95.03125 L 39.03125,97.53125 L 41.34375,96.5625 L 41.28125,93.125 L 40.875,89.8125 L 43.5,88.5625 L 45.8125,90.96875 L 48.40625,93.21875 L 50.625,92.03125 L 50.21875,88.625 L 49.46875,85.375 L 51.96875,83.875 L 54.5,86.0625 L 57.3125,88.03125 L 59.40625,86.625 L 58.65625,83.28125 L 57.625,80.125 L 59.9375,78.375 L 62.65625,80.3125 L 65.65625,82 L 67.59375,80.40625 L 66.53125,77.125 L 65.1875,74.09375 L 67.34375,72.125 L 70.25,73.78125 L 73.375,75.15625 L 75.15625,73.375 L 73.78125,70.25 L 72.125,67.34375 L 74.09375,65.1875 L 77.125,66.53125 L 80.40625,67.59375 L 82,65.65625 L 80.3125,62.65625 L 78.375,59.9375 L 80.125,57.625 L 83.28125,58.65625 L 86.625,59.40625 L 88.03125,57.3125 L 86.0625,54.5 L 83.875,51.96875 L 85.375,49.46875 L 88.625,50.21875 L 92.03125,50.625 L 93.21875,48.40625 L 90.96875,45.8125 L 88.5625,43.5 L 89.8125,40.875 L 93.125,41.28125 L 96.5625,41.34375 L 97.53125,39.03125 L 95.03125,36.65625 L 92.40625,34.59375 L 93.375,31.875 L 96.71875,31.9375 L 100.15625,31.6875 L 100.875,29.28125 L 98.15625,27.15625 L 95.34375,25.375 L 96.0625,22.5625 L 99.375,22.3125 L 102.78125,21.71875 L 103.25,19.25 L 100.375,17.40625 L 97.375,15.90625 L 97.8125,13.03125 L 101.09375,12.46875 L 104.40625,11.53125 L 104.65625,9.03125 L 101.59375,7.5 L 98.46875,6.28125 L 98.625,3.40625 L 101.84375,2.5 L 105.03125,1.25 L 105.03125,-1.25 L 101.84375,-2.5 L 98.625,-3.40625 L 98.46875,-6.28125 L 101.59375,-7.5 L 104.65625,-9.03125 L 104.40625,-11.53125 L 101.09375,-12.46875 L 97.8125,-13.03125 L 97.375,-15.90625 L 100.375,-17.40625 L 103.25,-19.25 L 102.78125,-21.71875 L 99.375,-22.3125 L 96.0625,-22.5625 L 95.34375,-25.375 L 98.15625,-27.15625 L 100.875,-29.28125 L 100.15625,-31.6875 L 96.71875,-31.9375 L 93.375,-31.875 L 92.40625,-34.59375 L 95.03125,-36.65625 L 97.53125,-39.03125 L 96.5625,-41.34375 L 93.125,-41.28125 L 89.8125,-40.875 L 88.5625,-43.5 L 90.96875,-45.8125 L 93.21875,-48.40625 L 92.03125,-50.625 L 88.625,-50.21875 L 85.375,-49.46875 L 83.875,-51.96875 L 86.0625,-54.5 L 88.03125,-57.3125 L 86.625,-59.40625 L 83.28125,-58.65625 L 80.125,-57.625 L 78.375,-59.9375 L 80.3125,-62.65625 L 82,-65.65625 L 80.40625,-67.59375 L 77.125,-66.53125 L 74.09375,-65.1875 L 72.125,-67.34375 L 73.78125,-70.25 L 75.15625,-73.375 L 73.375,-75.15625 L 70.25,-73.78125 L 67.34375,-72.125 L 65.1875,-74.09375 L 66.53125,-77.125 L 67.59375,-80.40625 L 65.65625,-82 L 62.65625,-80.3125 L 59.9375,-78.375 L 57.625,-80.125 L 58.65625,-83.28125 L 59.40625,-86.625 L 57.3125,-88.03125 L 54.5,-86.0625 L 51.96875,-83.875 L 49.46875,-85.375 L 50.21875,-88.625 L 50.625,-92.03125 L 48.40625,-93.21875 L 45.8125,-90.96875 L 43.5,-88.5625 L 40.875,-89.8125 L 41.28125,-93.125 L 41.34375,-96.5625 L 39.03125,-97.53125 L 36.65625,-95.03125 L 34.59375,-92.40625 L 31.875,-93.375 L 31.9375,-96.71875 L 31.6875,-100.15625 L 29.28125,-100.875 L 27.15625,-98.15625 L 25.375,-95.34375 L 22.5625,-96.0625 L 22.3125,-99.375 L 21.71875,-102.78125 L 19.25,-103.25 L 17.40625,-100.375 L 15.90625,-97.375 L 13.03125,-97.8125 L 12.46875,-101.09375 L 11.53125,-104.40625 L 9.03125,-104.65625 L 7.5,-101.59375 L 6.28125,-98.46875 L 3.40625,-98.625 L 2.5,-101.84375 L 1.25,-105.03125 L -1.25,-105.03125 z M 0,-85 C 19.85502,-85 38.12042,-78.172311 52.59375,-66.75 L 10.59375,-24.75 C 4.73891,-18.89516 -4.73891,-18.89516 -10.59375,-24.75 L -52.59375,-66.75 C -38.12042,-78.172311 -19.85502,-85 0,-85 z M -66.75,-52.59375 L -24.75,-10.59375 C -18.89516,-4.73891 -18.89516,4.73891 -24.75,10.59375 L -66.75,52.59375 C -78.172311,38.12042 -85,19.85502 -85,0 C -85,-19.85502 -78.172311,-38.12042 -66.75,-52.59375 z M 66.75,-52.59375 C 78.17231,-38.12042 85,-19.85502 85,0 C 85,19.85502 78.17231,38.12042 66.75,52.59375 L 24.75,10.59375 C 18.89516,4.73891 18.89516,-4.73891 24.75,-10.59375 L 66.75,-52.59375 z M 0,20.34375 C 3.83959,20.34375 7.66633,21.82258 10.59375,24.75 L 52.59375,66.75 C 38.12042,78.17231 19.85502,85 0,85 C -19.85502,85 -38.12042,78.17231 -52.59375,66.75 L -10.59375,24.75 C -7.66633,21.82258 -3.83959,20.34375 0,20.34375 z "
+         id="path2471" />
+      <path
+         d="M 28.522907,-2.673085 L 29.78085,-2.7909759 L 31.732864,-2.4974306 L 34.996623,-1.105752 L 34.996623,1.105752 L 31.732864,2.4974306 L 29.78085,2.7909759 L 28.522907,2.673085 L 27.952925,6.2718079 L 29.18573,6.5484129 L 30.951496,7.4307967 L 33.625463,9.7629187 L 32.94207,11.866184 L 29.407999,12.181192 L 27.460812,11.857165 L 26.300868,11.356318 L 24.646716,14.602773 L 25.733708,15.246797 L 27.140379,16.631646 L 28.962808,19.675927 L 27.662918,21.465071 L 24.204474,20.672573 L 22.452719,19.762691 L 21.504316,18.927915 L 18.927915,21.504316 L 19.762691,22.452719 L 20.672573,24.204474 L 21.465071,27.662918 L 19.675927,28.962808 L 16.631646,27.140379 L 15.246797,25.733708 L 14.602773,24.646716 L 11.356318,26.300868 L 11.857165,27.460812 L 12.181192,29.407999 L 11.866184,32.94207 L 9.7629187,33.625463 L 7.4307967,30.951496 L 6.5484129,29.18573 L 6.2718079,27.952925 L 2.673085,28.522907 L 2.7909759,29.78085 L 2.4974306,31.732864 L 1.105752,34.996623 L -1.105752,34.996623 L -2.4974306,31.732864 L -2.7909759,29.78085 L -2.673085,28.522907 L -6.2718079,27.952925 L -6.5484129,29.18573 L -7.4307967,30.951496 L -9.7629187,33.625463 L -11.866184,32.94207 L -12.181192,29.407999 L -11.857165,27.460812 L -11.356318,26.300868 L -14.602773,24.646716 L -15.246797,25.733708 L -16.631646,27.140379 L -19.675927,28.962808 L -21.465071,27.662918 L -20.672573,24.204474 L -19.762691,22.452719 L -18.927915,21.504316 L -21.504316,18.927915 L -22.452719,19.762691 L -24.204474,20.672573 L -27.662918,21.465071 L -28.962808,19.675927 L -27.140379,16.631646 L -25.733708,15.246797 L -24.646716,14.602773 L -26.300868,11.356318 L -27.460812,11.857165 L -29.407999,12.181192 L -32.94207,11.866184 L -33.625463,9.7629187 L -30.951496,7.4307967 L -29.18573,6.5484129 L -27.952925,6.2718079 L -28.522907,2.673085 L -29.78085,2.7909759 L -31.732864,2.4974306 L -34.996623,1.105752 L -34.996623,-1.105752 L -31.732864,-2.4974306 L -29.78085,-2.7909759 L -28.522907,-2.673085 L -27.952925,-6.2718079 L -29.18573,-6.5484129 L -30.951496,-7.4307967 L -33.625463,-9.7629187 L -32.94207,-11.866184 L -29.407999,-12.181192 L -27.460812,-11.857165 L -26.300868,-11.356318 L -24.646716,-14.602773 L -25.733708,-15.246797 L -27.140379,-16.631646 L -28.962808,-19.675927 L -27.662918,-21.465071 L -24.204474,-20.672573 L -22.452719,-19.762691 L -21.504316,-18.927915 L -18.927915,-21.504316 L -19.762691,-22.452719 L -20.672573,-24.204474 L -21.465071,-27.662918 L -19.675927,-28.962808 L -16.631646,-27.140379 L -15.246797,-25.733708 L -14.602773,-24.646716 L -11.356318,-26.300868 L -11.857165,-27.460812 L -12.181192,-29.407999 L -11.866184,-32.94207 L -9.7629187,-33.625463 L -7.4307967,-30.951496 L -6.5484129,-29.18573 L -6.2718079,-27.952925 L -2.673085,-28.522907 L -2.7909759,-29.78085 L -2.4974306,-31.732864 L -1.105752,-34.996623 L 1.105752,-34.996623 L 2.4974306,-31.732864 L 2.7909759,-29.78085 L 2.673085,-28.522907 L 6.2718079,-27.952925 L 6.5484129,-29.18573 L 7.4307967,-30.951496 L 9.7629187,-33.625463 L 11.866184,-32.94207 L 12.181192,-29.407999 L 11.857165,-27.460812 L 11.356318,-26.300868 L 14.602773,-24.646716 L 15.246797,-25.733708 L 16.631646,-27.140379 L 19.675927,-28.962808 L 21.465071,-27.662918 L 20.672573,-24.204474 L 19.762691,-22.452719 L 18.927915,-21.504316 L 21.504316,-18.927915 L 22.452719,-19.762691 L 24.204474,-20.672573 L 27.662918,-21.465071 L 28.962808,-19.675927 L 27.140379,-16.631646 L 25.733708,-15.246797 L 24.646716,-14.602773 L 26.300868,-11.356318 L 27.460812,-11.857165 L 29.407999,-12.181192 L 32.94207,-11.866184 L 33.625463,-9.7629187 L 30.951496,-7.4307967 L 29.18573,-6.5484129 L 27.952925,-6.2718079 L 28.522907,-2.673085 z "
+         id="path2767" />
+      <path
+         d="M 470,150 C 470,202.44 427.44,245 375,245 C 322.56,245 280,202.44 280,150 C 280,97.56 322.56,55 375,55 C 427.44,55 470,97.56 470,150 z "
+         transform="matrix(-0.7071068,0.7071068,0.7071068,0.7071068,159.09902,-371.23108)"
+         style="fill:none;stroke:none"
+         id="path2518" />
+      <text
+         transform="translate(-0.25,-0.25)"
+         style="font-size:10px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman;text-anchor:start;text-align:start;line-height:125%"
+         id="text2527"
+         xml:space="preserve"
+         sodipodi:linespacing="125%"><textPath
+           xlink:href="#path2518"
+           id="textPath2529">Tavmjong Clock Works © 2007</textPath></text>
+      <text
+         style="font-size:10px;font-style:normal;font-weight:normal;fill:#666666;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman;text-anchor:start;text-align:start;line-height:125%"
+         id="text2520"
+         xml:space="preserve"
+         sodipodi:linespacing="125%"><textPath
+           xlink:href="#path2518"
+           id="textPath2524">Tavmjong Clock Works © 2007</textPath></text>
+    </g>
+  </g>
+  <g
+     transform="translate(262,213.37935)"
+     style="fill:#bfbfbf;stroke:black"
+     id="Gear180">
+    <g
+       id="RotGear180">
+      <path
+         d="M 260.75,114.71875 L 259.5,117.90625 L 258.625,121.125 L 255.71875,121.28125 L 254.5,118.1875 L 252.9375,115.125 L 250.4375,115.375 L 249.53125,118.71875 L 249,122 L 246.125,122.4375 L 244.59375,119.5 L 242.71875,116.59375 L 240.25,117.125 L 239.71875,120.53125 L 239.53125,123.84375 L 236.6875,124.59375 L 234.875,121.8125 L 232.6875,119.15625 L 230.3125,119.9375 L 230.125,123.375 L 230.28125,126.6875 L 227.5625,127.71875 L 225.46875,125.15625 L 223,122.71875 L 220.71875,123.75 L 220.875,127.1875 L 221.40625,130.46875 L 218.8125,131.8125 L 216.4375,129.46875 L 213.75,127.3125 L 211.59375,128.5625 L 212.09375,131.96875 L 212.96875,135.1875 L 210.5,136.78125 L 207.90625,134.6875 L 205.03125,132.8125 L 203,134.28125 L 203.875,137.625 L 205.0625,140.71875 L 202.78125,142.5625 L 199.96875,140.78125 L 196.90625,139.21875 L 195.0625,140.90625 L 196.28125,144.125 L 197.78125,147.09375 L 195.71875,149.15625 L 192.71875,147.65625 L 189.5,146.4375 L 187.84375,148.28125 L 189.375,151.375 L 191.1875,154.15625 L 189.34375,156.4375 L 186.25,155.25 L 182.90625,154.375 L 181.4375,156.40625 L 183.3125,159.28125 L 185.375,161.875 L 183.8125,164.34375 L 180.59375,163.5 L 177.1875,162.96875 L 175.9375,165.125 L 178.09375,167.8125 L 180.4375,170.1875 L 179.09375,172.78125 L 175.8125,172.28125 L 172.375,172.09375 L 171.34375,174.375 L 173.78125,176.84375 L 176.34375,178.9375 L 175.3125,181.65625 L 172,181.5 L 168.5625,181.6875 L 167.78125,184.09375 L 170.4375,186.25 L 173.21875,188.09375 L 172.46875,190.90625 L 169.15625,191.09375 L 165.75,191.65625 L 165.21875,194.09375 L 168.09375,195.96875 L 171.0625,197.5 L 170.625,200.375 L 167.3125,200.90625 L 164,201.8125 L 163.75,204.3125 L 166.8125,205.875 L 169.90625,207.09375 L 169.75,210 L 166.53125,210.875 L 163.34375,212.125 L 163.34375,214.625 L 166.53125,215.875 L 169.75,216.75 L 169.90625,219.65625 L 166.8125,220.875 L 163.75,222.4375 L 164,224.9375 L 167.3125,225.84375 L 170.625,226.375 L 171.0625,229.25 L 168.09375,230.78125 L 165.21875,232.65625 L 165.75,235.125 L 169.15625,235.65625 L 172.46875,235.84375 L 173.21875,238.6875 L 170.4375,240.5 L 167.78125,242.6875 L 168.5625,245.0625 L 172,245.25 L 175.3125,245.09375 L 176.34375,247.8125 L 173.78125,249.9375 L 171.34375,252.375 L 172.375,254.65625 L 175.8125,254.5 L 179.09375,253.96875 L 180.4375,256.59375 L 178.09375,258.9375 L 175.9375,261.625 L 177.1875,263.78125 L 180.59375,263.28125 L 183.8125,262.4375 L 185.375,264.875 L 183.3125,267.46875 L 181.4375,270.375 L 182.90625,272.375 L 186.25,271.5 L 189.34375,270.34375 L 191.1875,272.59375 L 189.375,275.40625 L 187.84375,278.46875 L 189.5,280.34375 L 192.71875,279.125 L 195.71875,277.625 L 197.78125,279.6875 L 196.28125,282.65625 L 195.0625,285.875 L 196.90625,287.53125 L 199.96875,286 L 202.78125,284.1875 L 205.0625,286.03125 L 203.875,289.125 L 203,292.46875 L 205.03125,293.9375 L 207.90625,292.0625 L 210.5,290 L 212.96875,291.59375 L 212.09375,294.8125 L 211.59375,298.21875 L 213.75,299.46875 L 216.4375,297.3125 L 218.8125,294.96875 L 221.40625,296.28125 L 220.875,299.5625 L 220.71875,303 L 223,304.03125 L 225.46875,301.59375 L 227.5625,299.03125 L 230.28125,300.0625 L 230.125,303.40625 L 230.3125,306.84375 L 232.6875,307.59375 L 234.875,304.9375 L 236.6875,302.15625 L 239.53125,302.90625 L 239.71875,306.21875 L 240.25,309.625 L 242.71875,310.15625 L 244.59375,307.28125 L 246.125,304.3125 L 249,304.78125 L 249.53125,308.0625 L 250.4375,311.375 L 252.9375,311.625 L 254.5,308.5625 L 255.71875,305.46875 L 258.625,305.625 L 259.5,308.84375 L 260.75,312.0625 L 263.25,312.0625 L 264.5,308.84375 L 265.375,305.625 L 268.28125,305.46875 L 269.5,308.5625 L 271.0625,311.625 L 273.5625,311.375 L 274.46875,308.0625 L 275,304.78125 L 277.875,304.3125 L 279.40625,307.28125 L 281.28125,310.15625 L 283.75,309.625 L 284.28125,306.21875 L 284.46875,302.90625 L 287.3125,302.15625 L 289.125,304.9375 L 291.3125,307.59375 L 293.6875,306.84375 L 293.875,303.40625 L 293.71875,300.0625 L 296.4375,299.03125 L 298.53125,301.59375 L 301,304.03125 L 303.28125,303 L 303.125,299.5625 L 302.59375,296.28125 L 305.1875,294.96875 L 307.5625,297.3125 L 310.25,299.46875 L 312.40625,298.21875 L 311.90625,294.8125 L 311.03125,291.59375 L 313.5,290 L 316.09375,292.0625 L 318.96875,293.9375 L 321,292.46875 L 320.125,289.125 L 318.9375,286.03125 L 321.21875,284.1875 L 324.03125,286 L 327.09375,287.53125 L 328.9375,285.875 L 327.71875,282.65625 L 326.21875,279.6875 L 328.28125,277.625 L 331.28125,279.125 L 334.5,280.34375 L 336.15625,278.46875 L 334.625,275.40625 L 332.8125,272.59375 L 334.65625,270.34375 L 337.75,271.5 L 341.09375,272.375 L 342.5625,270.375 L 340.6875,267.46875 L 338.625,264.875 L 340.1875,262.4375 L 343.40625,263.28125 L 346.8125,263.78125 L 348.0625,261.625 L 345.90625,258.9375 L 343.5625,256.59375 L 344.90625,253.96875 L 348.1875,254.5 L 351.625,254.65625 L 352.65625,252.375 L 350.21875,249.9375 L 347.65625,247.8125 L 348.6875,245.09375 L 352,245.25 L 355.4375,245.0625 L 356.21875,242.6875 L 353.5625,240.5 L 350.78125,238.6875 L 351.53125,235.84375 L 354.84375,235.65625 L 358.25,235.125 L 358.78125,232.65625 L 355.90625,230.78125 L 352.9375,229.25 L 353.375,226.375 L 356.6875,225.84375 L 360,224.9375 L 360.25,222.4375 L 357.1875,220.875 L 354.09375,219.65625 L 354.25,216.75 L 357.46875,215.875 L 360.65625,214.625 L 360.65625,212.125 L 357.46875,210.875 L 354.25,210 L 354.09375,207.09375 L 357.1875,205.875 L 360.25,204.3125 L 360,201.8125 L 356.6875,200.90625 L 353.375,200.375 L 352.9375,197.5 L 355.90625,195.96875 L 358.78125,194.09375 L 358.25,191.65625 L 354.84375,191.09375 L 351.53125,190.90625 L 350.78125,188.09375 L 353.5625,186.25 L 356.21875,184.09375 L 355.4375,181.6875 L 352,181.5 L 348.6875,181.65625 L 347.65625,178.9375 L 350.21875,176.84375 L 352.65625,174.375 L 351.625,172.09375 L 348.1875,172.28125 L 344.90625,172.78125 L 343.5625,170.1875 L 345.90625,167.8125 L 348.0625,165.125 L 346.8125,162.96875 L 343.40625,163.5 L 340.1875,164.34375 L 338.625,161.875 L 340.6875,159.28125 L 342.5625,156.40625 L 341.09375,154.375 L 337.75,155.25 L 334.65625,156.4375 L 332.8125,154.15625 L 334.625,151.375 L 336.15625,148.28125 L 334.5,146.4375 L 331.28125,147.65625 L 328.28125,149.15625 L 326.21875,147.09375 L 327.71875,144.125 L 328.9375,140.90625 L 327.09375,139.21875 L 324.03125,140.78125 L 321.21875,142.5625 L 318.9375,140.71875 L 320.125,137.625 L 321,134.28125 L 318.96875,132.8125 L 316.09375,134.6875 L 313.5,136.78125 L 311.03125,135.1875 L 311.90625,131.96875 L 312.40625,128.5625 L 310.25,127.3125 L 307.5625,129.46875 L 305.1875,131.8125 L 302.59375,130.46875 L 303.125,127.1875 L 303.28125,123.75 L 301,122.71875 L 298.53125,125.15625 L 296.4375,127.71875 L 293.71875,126.6875 L 293.875,123.375 L 293.6875,119.9375 L 291.3125,119.15625 L 289.125,121.8125 L 287.3125,124.59375 L 284.46875,123.84375 L 284.28125,120.53125 L 283.75,117.125 L 281.28125,116.59375 L 279.40625,119.5 L 277.875,122.4375 L 275,122 L 274.46875,118.71875 L 273.5625,115.375 L 271.0625,115.125 L 269.5,118.1875 L 268.28125,121.28125 L 265.375,121.125 L 264.5,117.90625 L 263.25,114.71875 L 260.75,114.71875 z M 252,134 L 252,188.375 C 252,196.655 245.28,203.375 237,203.375 L 182.625,203.375 C 187.14022,167.20183 215.82683,138.51522 252,134 z M 272,134 C 308.17317,138.51522 336.85978,167.20183 341.375,203.375 L 287,203.375 C 278.72,203.375 272,196.655 272,188.375 L 272,134 z M 182.625,223.375 L 237,223.375 C 245.28,223.375 252,230.095 252,238.375 L 252,292.75 C 215.82683,288.23477 187.14022,259.54817 182.625,223.375 z M 287,223.375 L 341.375,223.375 C 336.85978,259.54817 308.17317,288.23478 272,292.75 L 272,238.375 C 272,230.095 278.72,223.375 287,223.375 z "
+         transform="translate(-262,-213.37935)"
+         id="path2779" />
+      <path
+         d="M 22.139387,-2.5142287 L 23.77625,-2.7001167 L 25.342171,-2.495986 L 28.6283,-1.0592543 L 28.6283,1.0592543 L 25.342171,2.495986 L 23.77625,2.7001167 L 22.139387,2.5142287 L 21.41628,6.1495322 L 22.99968,6.6041943 L 24.368286,7.3920386 L 26.85446,9.9769528 L 26.043741,11.9342 L 22.457941,12.004019 L 20.933101,11.593359 L 19.491973,10.795221 L 17.432739,13.877082 L 18.721618,14.903077 L 19.68455,16.154692 L 20.992271,19.494259 L 19.494259,20.992271 L 16.154692,19.68455 L 14.903077,18.721618 L 13.877082,17.432739 L 10.795221,19.491973 L 11.593359,20.933101 L 12.004019,22.457941 L 11.9342,26.043741 L 9.9769528,26.85446 L 7.3920386,24.368286 L 6.6041943,22.99968 L 6.1495322,21.41628 L 2.5142287,22.139387 L 2.7001167,23.77625 L 2.495986,25.342171 L 1.0592543,28.6283 L -1.0592543,28.6283 L -2.495986,25.342171 L -2.7001167,23.77625 L -2.5142287,22.139387 L -6.1495322,21.41628 L -6.6041943,22.99968 L -7.3920386,24.368286 L -9.9769528,26.85446 L -11.9342,26.043741 L -12.004019,22.457941 L -11.593359,20.933101 L -10.795221,19.491973 L -13.877082,17.432739 L -14.903077,18.721618 L -16.154692,19.68455 L -19.494259,20.992271 L -20.992271,19.494259 L -19.68455,16.154692 L -18.721618,14.903077 L -17.432739,13.877082 L -19.491973,10.795221 L -20.933101,11.593359 L -22.457941,12.004019 L -26.043741,11.9342 L -26.85446,9.9769528 L -24.368286,7.3920386 L -22.99968,6.6041943 L -21.41628,6.1495322 L -22.139387,2.5142287 L -23.77625,2.7001167 L -25.342171,2.495986 L -28.6283,1.0592543 L -28.6283,-1.0592543 L -25.342171,-2.495986 L -23.77625,-2.7001167 L -22.139387,-2.5142287 L -21.41628,-6.1495322 L -22.99968,-6.6041943 L -24.368286,-7.3920386 L -26.85446,-9.9769528 L -26.043741,-11.9342 L -22.457941,-12.004019 L -20.933101,-11.593359 L -19.491973,-10.795221 L -17.432739,-13.877082 L -18.721618,-14.903077 L -19.68455,-16.154692 L -20.992271,-19.494259 L -19.494259,-20.992271 L -16.154692,-19.68455 L -14.903077,-18.721618 L -13.877082,-17.432739 L -10.795221,-19.491973 L -11.593359,-20.933101 L -12.004019,-22.457941 L -11.9342,-26.043741 L -9.9769528,-26.85446 L -7.3920386,-24.368286 L -6.6041943,-22.99968 L -6.1495322,-21.41628 L -2.5142287,-22.139387 L -2.7001167,-23.77625 L -2.495986,-25.342171 L -1.0592543,-28.6283 L 1.0592543,-28.6283 L 2.495986,-25.342171 L 2.7001167,-23.77625 L 2.5142287,-22.139387 L 6.1495322,-21.41628 L 6.6041943,-22.99968 L 7.3920386,-24.368286 L 9.9769528,-26.85446 L 11.9342,-26.043741 L 12.004019,-22.457941 L 11.593359,-20.933101 L 10.795221,-19.491973 L 13.877082,-17.432739 L 14.903077,-18.721618 L 16.154692,-19.68455 L 19.494259,-20.992271 L 20.992271,-19.494259 L 19.68455,-16.154692 L 18.721618,-14.903077 L 17.432739,-13.877082 L 19.491973,-10.795221 L 20.933101,-11.593359 L 22.457941,-12.004019 L 26.043741,-11.9342 L 26.85446,-9.9769528 L 24.368286,-7.3920386 L 22.99968,-6.6041943 L 21.41628,-6.1495322 L 22.139387,-2.5142287 z "
+         id="path2791" />
+      <g
+         id="Nut2">
+        <path
+           id="path2505"
+           style="fill:#666666;stroke:black"
+           transform="matrix(1.5,0,0,1.5,-735,-217.48872)"
+           d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
+        <rect
+           id="rect2507"
+           style="fill:#333333;stroke:none"
+           transform="translate(-262,-213.37935)"
+           y="208"
+           x="261"
+           height="11"
+           width="2" />
+        <path
+           id="path2513"
+           style="fill:none;stroke:black"
+           transform="matrix(1.5,0,0,1.5,-735,-217.48872)"
+           d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
+      </g>
+    </g>
+  </g>
+  <g
+     transform="translate(150,150)"
+     style="fill:#bfbfbf;stroke:black"
+     id="Hours">
+    <g
+       id="RotHours">
+      <path
+         d="M 148.75,44.96875 L 147.5,48.15625 L 146.59375,51.375 L 143.71875,51.53125 L 142.5,48.40625 L 140.96875,45.34375 L 138.46875,45.59375 L 137.53125,48.90625 L 136.96875,52.1875 L 134.09375,52.625 L 132.59375,49.625 L 130.75,46.75 L 128.28125,47.21875 L 127.6875,50.625 L 127.4375,53.9375 L 124.625,54.65625 L 122.84375,51.84375 L 120.71875,49.125 L 118.3125,49.84375 L 118.0625,53.28125 L 118.125,56.625 L 115.40625,57.59375 L 113.34375,54.96875 L 110.96875,52.46875 L 108.65625,53.4375 L 108.71875,56.875 L 109.125,60.1875 L 106.5,61.4375 L 104.1875,59.03125 L 101.59375,56.78125 L 99.375,57.96875 L 99.78125,61.375 L 100.53125,64.625 L 98.03125,66.125 L 95.5,63.9375 L 92.6875,61.96875 L 90.59375,63.375 L 91.34375,66.71875 L 92.375,69.875 L 90.0625,71.625 L 87.34375,69.6875 L 84.34375,68 L 82.40625,69.59375 L 83.46875,72.875 L 84.8125,75.90625 L 82.65625,77.875 L 79.75,76.21875 L 76.625,74.84375 L 74.84375,76.625 L 76.21875,79.75 L 77.875,82.65625 L 75.90625,84.8125 L 72.875,83.46875 L 69.59375,82.40625 L 68,84.34375 L 69.6875,87.34375 L 71.625,90.0625 L 69.875,92.375 L 66.71875,91.34375 L 63.375,90.59375 L 61.96875,92.6875 L 63.9375,95.5 L 66.125,98.03125 L 64.625,100.53125 L 61.375,99.78125 L 57.96875,99.375 L 56.78125,101.59375 L 59.03125,104.1875 L 61.4375,106.5 L 60.1875,109.125 L 56.875,108.71875 L 53.4375,108.65625 L 52.46875,110.96875 L 54.96875,113.34375 L 57.59375,115.40625 L 56.625,118.125 L 53.28125,118.0625 L 49.84375,118.3125 L 49.125,120.71875 L 51.84375,122.84375 L 54.65625,124.625 L 53.9375,127.4375 L 50.625,127.6875 L 47.21875,128.28125 L 46.75,130.75 L 49.625,132.59375 L 52.625,134.09375 L 52.1875,136.96875 L 48.90625,137.53125 L 45.59375,138.46875 L 45.34375,140.96875 L 48.40625,142.5 L 51.53125,143.71875 L 51.375,146.59375 L 48.15625,147.5 L 44.96875,148.75 L 44.96875,151.25 L 48.15625,152.5 L 51.375,153.40625 L 51.53125,156.28125 L 48.40625,157.5 L 45.34375,159.03125 L 45.59375,161.53125 L 48.90625,162.46875 L 52.1875,163.03125 L 52.625,165.90625 L 49.625,167.40625 L 46.75,169.25 L 47.21875,171.71875 L 50.625,172.3125 L 53.9375,172.5625 L 54.65625,175.375 L 51.84375,177.15625 L 49.125,179.28125 L 49.84375,181.6875 L 53.28125,181.9375 L 56.625,181.875 L 57.59375,184.59375 L 54.96875,186.65625 L 52.46875,189.03125 L 53.4375,191.34375 L 56.875,191.28125 L 60.1875,190.875 L 61.4375,193.5 L 59.03125,195.8125 L 56.78125,198.40625 L 57.96875,200.625 L 61.375,200.21875 L 64.625,199.46875 L 66.125,201.96875 L 63.9375,204.5 L 61.96875,207.3125 L 63.375,209.40625 L 66.71875,208.65625 L 69.875,207.625 L 71.625,209.9375 L 69.6875,212.65625 L 68,215.65625 L 69.59375,217.59375 L 72.875,216.53125 L 75.90625,215.1875 L 77.875,217.34375 L 76.21875,220.25 L 74.84375,223.375 L 76.625,225.15625 L 79.75,223.78125 L 82.65625,222.125 L 84.8125,224.09375 L 83.46875,227.125 L 82.40625,230.40625 L 84.34375,232 L 87.34375,230.3125 L 90.0625,228.375 L 92.375,230.125 L 91.34375,233.28125 L 90.59375,236.625 L 92.6875,238.03125 L 95.5,236.0625 L 98.03125,233.875 L 100.53125,235.375 L 99.78125,238.625 L 99.375,242.03125 L 101.59375,243.21875 L 104.1875,240.96875 L 106.5,238.5625 L 109.125,239.8125 L 108.71875,243.125 L 108.65625,246.5625 L 110.96875,247.53125 L 113.34375,245.03125 L 115.40625,242.40625 L 118.125,243.375 L 118.0625,246.71875 L 118.3125,250.15625 L 120.71875,250.875 L 122.84375,248.15625 L 124.625,245.34375 L 127.4375,246.0625 L 127.6875,249.375 L 128.28125,252.78125 L 130.75,253.25 L 132.59375,250.375 L 134.09375,247.375 L 136.96875,247.8125 L 137.53125,251.09375 L 138.46875,254.40625 L 140.96875,254.65625 L 142.5,251.59375 L 143.71875,248.46875 L 146.59375,248.625 L 147.5,251.84375 L 148.75,255.03125 L 151.25,255.03125 L 152.5,251.84375 L 153.40625,248.625 L 156.28125,248.46875 L 157.5,251.59375 L 159.03125,254.65625 L 161.53125,254.40625 L 162.46875,251.09375 L 163.03125,247.8125 L 165.90625,247.375 L 167.40625,250.375 L 169.25,253.25 L 171.71875,252.78125 L 172.3125,249.375 L 172.5625,246.0625 L 175.375,245.34375 L 177.15625,248.15625 L 179.28125,250.875 L 181.6875,250.15625 L 181.9375,246.71875 L 181.875,243.375 L 184.59375,242.40625 L 186.65625,245.03125 L 189.03125,247.53125 L 191.34375,246.5625 L 191.28125,243.125 L 190.875,239.8125 L 193.5,238.5625 L 195.8125,240.96875 L 198.40625,243.21875 L 200.625,242.03125 L 200.21875,238.625 L 199.46875,235.375 L 201.96875,233.875 L 204.5,236.0625 L 207.3125,238.03125 L 209.40625,236.625 L 208.65625,233.28125 L 207.625,230.125 L 209.9375,228.375 L 212.65625,230.3125 L 215.65625,232 L 217.59375,230.40625 L 216.53125,227.125 L 215.1875,224.09375 L 217.34375,222.125 L 220.25,223.78125 L 223.375,225.15625 L 225.15625,223.375 L 223.78125,220.25 L 222.125,217.34375 L 224.09375,215.1875 L 227.125,216.53125 L 230.40625,217.59375 L 232,215.65625 L 230.3125,212.65625 L 228.375,209.9375 L 230.125,207.625 L 233.28125,208.65625 L 236.625,209.40625 L 238.03125,207.3125 L 236.0625,204.5 L 233.875,201.96875 L 235.375,199.46875 L 238.625,200.21875 L 242.03125,200.625 L 243.21875,198.40625 L 240.96875,195.8125 L 238.5625,193.5 L 239.8125,190.875 L 243.125,191.28125 L 246.5625,191.34375 L 247.53125,189.03125 L 245.03125,186.65625 L 242.40625,184.59375 L 243.375,181.875 L 246.71875,181.9375 L 250.15625,181.6875 L 250.875,179.28125 L 248.15625,177.15625 L 245.34375,175.375 L 246.0625,172.5625 L 249.375,172.3125 L 252.78125,171.71875 L 253.25,169.25 L 250.375,167.40625 L 247.375,165.90625 L 247.8125,163.03125 L 251.09375,162.46875 L 254.40625,161.53125 L 254.65625,159.03125 L 251.59375,157.5 L 248.46875,156.28125 L 248.625,153.40625 L 251.84375,152.5 L 255.03125,151.25 L 255.03125,148.75 L 251.84375,147.5 L 248.625,146.59375 L 248.46875,143.71875 L 251.59375,142.5 L 254.65625,140.96875 L 254.40625,138.46875 L 251.09375,137.53125 L 247.8125,136.96875 L 247.375,134.09375 L 250.375,132.59375 L 253.25,130.75 L 252.78125,128.28125 L 249.375,127.6875 L 246.0625,127.4375 L 245.34375,124.625 L 248.15625,122.84375 L 250.875,120.71875 L 250.15625,118.3125 L 246.71875,118.0625 L 243.375,118.125 L 242.40625,115.40625 L 245.03125,113.34375 L 247.53125,110.96875 L 246.5625,108.65625 L 243.125,108.71875 L 239.8125,109.125 L 238.5625,106.5 L 240.96875,104.1875 L 243.21875,101.59375 L 242.03125,99.375 L 238.625,99.78125 L 235.375,100.53125 L 233.875,98.03125 L 236.0625,95.5 L 238.03125,92.6875 L 236.625,90.59375 L 233.28125,91.34375 L 230.125,92.375 L 228.375,90.0625 L 230.3125,87.34375 L 232,84.34375 L 230.40625,82.40625 L 227.125,83.46875 L 224.09375,84.8125 L 222.125,82.65625 L 223.78125,79.75 L 225.15625,76.625 L 223.375,74.84375 L 220.25,76.21875 L 217.34375,77.875 L 215.1875,75.90625 L 216.53125,72.875 L 217.59375,69.59375 L 215.65625,68 L 212.65625,69.6875 L 209.9375,71.625 L 207.625,69.875 L 208.65625,66.71875 L 209.40625,63.375 L 207.3125,61.96875 L 204.5,63.9375 L 201.96875,66.125 L 199.46875,64.625 L 200.21875,61.375 L 200.625,57.96875 L 198.40625,56.78125 L 195.8125,59.03125 L 193.5,61.4375 L 190.875,60.1875 L 191.28125,56.875 L 191.34375,53.4375 L 189.03125,52.46875 L 186.65625,54.96875 L 184.59375,57.59375 L 181.875,56.625 L 181.9375,53.28125 L 181.6875,49.84375 L 179.28125,49.125 L 177.15625,51.84375 L 175.375,54.65625 L 172.5625,53.9375 L 172.3125,50.625 L 171.71875,47.21875 L 169.25,46.75 L 167.40625,49.625 L 165.90625,52.625 L 163.03125,52.1875 L 162.46875,48.90625 L 161.53125,45.59375 L 159.03125,45.34375 L 157.5,48.40625 L 156.28125,51.53125 L 153.40625,51.375 L 152.5,48.15625 L 151.25,44.96875 L 148.75,44.96875 z M 150,65 C 169.85502,65 188.12042,71.827689 202.59375,83.25 L 160.59375,125.25 C 154.73891,131.10484 145.26109,131.10484 139.40625,125.25 L 97.40625,83.25 C 111.87958,71.827689 130.14498,65 150,65 z M 83.25,97.40625 L 125.25,139.40625 C 131.10484,145.26109 131.10484,154.73891 125.25,160.59375 L 83.25,202.59375 C 71.827689,188.12042 65,169.85502 65,150 C 65,130.14498 71.827689,111.87958 83.25,97.40625 z M 216.75,97.40625 C 228.17231,111.87958 235,130.14498 235,150 C 235,169.85502 228.17231,188.12042 216.75,202.59375 L 174.75,160.59375 C 168.89516,154.73891 168.89516,145.26109 174.75,139.40625 L 216.75,97.40625 z M 150,170.34375 C 153.83959,170.34375 157.66633,171.82258 160.59375,174.75 L 202.59375,216.75 C 188.12042,228.17231 169.85502,235 150,235 C 130.14498,235 111.87958,228.17231 97.40625,216.75 L 139.40625,174.75 C 142.33367,171.82258 146.16041,170.34375 150,170.34375 z "
+         transform="translate(-150,-150)"
+         id="path2803" />
+    </g>
+  </g>
+  <g
+     id="FrontPlate">
+    <g
+       id="HourDots">
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3518" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="translate(0,180)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3520" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.8660254,-0.5,0.5,0.8660254,-54.903811,95.096189)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3526" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.8660254,-0.5,0.5,0.8660254,35.096189,250.98076)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3528" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.5,-0.8660254,0.8660254,0.5,-54.903811,204.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3530" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.5,-0.8660254,0.8660254,0.5,100.98076,294.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3532" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0,-1,1,0,-8.5920721e-7,300)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3534" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0,-1,1,0,180,300)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3536" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,95.096189,354.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3538" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,250.98076,264.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3540" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,204.90381,354.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3542" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,294.90381,199.01924)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3544" />
+    </g>
+    <g
+       transform="translate(225,0)"
+       id="MinuteDots">
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3562" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="translate(0,180)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3564" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.8660254,-0.5,0.5,0.8660254,-54.903811,95.096189)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3566" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.8660254,-0.5,0.5,0.8660254,35.096189,250.98076)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3568" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.5,-0.8660254,0.8660254,0.5,-54.903811,204.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3570" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.5,-0.8660254,0.8660254,0.5,100.98076,294.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3572" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0,-1,1,0,-8.5920721e-7,300)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3574" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0,-1,1,0,180,300)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3576" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,95.096189,354.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3578" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,250.98076,264.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3580" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,204.90381,354.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3582" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,294.90381,199.01924)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3584" />
+    </g>
+    <g
+       transform="translate(450,0)"
+       id="SecondDots">
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3588" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="translate(0,180)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3590" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.8660254,-0.5,0.5,0.8660254,-54.903811,95.096189)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3592" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.8660254,-0.5,0.5,0.8660254,35.096189,250.98076)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3594" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.5,-0.8660254,0.8660254,0.5,-54.903811,204.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3596" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0.5,-0.8660254,0.8660254,0.5,100.98076,294.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3598" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0,-1,1,0,-8.5920721e-7,300)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3600" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(0,-1,1,0,180,300)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3602" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,95.096189,354.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3604" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,250.98076,264.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3606" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,204.90381,354.90381)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3608" />
+      <path
+         d="M 152 60 A 2 2 0 1 1  148,60 A 2 2 0 1 1  152 60 z"
+         transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,294.90381,199.01924)"
+         style="opacity:0.5;fill:#554400;stroke:none"
+         id="path3610" />
+    </g>
+  </g>
+  <g
+     transform="translate(150,150)"
+     id="HourHand">
+    <g
+       id="RotHourHand">
+      <path
+         d="M 0,-82.5 L -2.5,-75 L -4.71875,-8.8125 C -7.85655,-7.12467 -10,-3.81029 -10,0 C -10,3.9979 -7.64307,7.43129 -4.25,9.03125 L -2.5,30 L 2.5,30 L 4.25,9.03125 C 7.64307,7.43129 10,3.9979 10,0 C 10,-3.81029 7.85655,-7.12467 4.71875,-8.8125 L 2.5,-75 L 0,-82.5 z M 0,-2.5 C 1.38,-2.5 2.5,-1.38 2.5,0 C 2.5,1.38 1.38,2.5 0,2.5 C -1.38,2.5 -2.5,1.38 -2.5,0 C -2.5,-1.38 -1.38,-2.5 0,-2.5 z "
+         style="opacity:1;fill:#800000;stroke:black"
+         id="HourHandPath" />
+    </g>
+  </g>
+  <g
+     transform="translate(375,150)"
+     id="MinuteHand">
+    <g
+       id="RotMinuteHand">
+      <path
+         d="M 0,-82.5 L -2.5,-75 L -4.71875,-8.8125 C -7.85655,-7.12467 -10,-3.81029 -10,0 C -10,3.9979 -7.64307,7.43129 -4.25,9.03125 L -2.5,30 L 2.5,30 L 4.25,9.03125 C 7.64307,7.43129 10,3.9979 10,0 C 10,-3.81029 7.85655,-7.12467 4.71875,-8.8125 L 2.5,-75 L 0,-82.5 z M 0,-2.5 C 1.38,-2.5 2.5,-1.38 2.5,0 C 2.5,1.38 1.38,2.5 0,2.5 C -1.38,2.5 -2.5,1.38 -2.5,0 C -2.5,-1.38 -1.38,-2.5 0,-2.5 z "
+         style="opacity:1;fill:#800000;stroke:black"
+         id="MinuteHandPath" />
+    </g>
+  </g>
+  <g
+     transform="translate(600,150)"
+     id="SecondHand">
+    <g
+       id="RotSecondHand">
+      <path
+         d="M 0,-82.5 L -2.5,-75 L -4.71875,-8.8125 C -7.85655,-7.12467 -10,-3.81029 -10,0 C -10,3.9979 -7.64307,7.43129 -4.25,9.03125 L -2.5,30 L 2.5,30 L 4.25,9.03125 C 7.64307,7.43129 10,3.9979 10,0 C 10,-3.81029 7.85655,-7.12467 4.71875,-8.8125 L 2.5,-75 L 0,-82.5 z M 0,-2.5 C 1.38,-2.5 2.5,-1.38 2.5,0 C 2.5,1.38 1.38,2.5 0,2.5 C -1.38,2.5 -2.5,1.38 -2.5,0 C -2.5,-1.38 -1.38,-2.5 0,-2.5 z "
+         style="opacity:1;fill:#800000;stroke:black"
+         id="SecondHandPath" />
+    </g>
+  </g>
+  <text
+     x="149.13127"
+     y="311.76642"
+     style="font-size:24px;font-style:italic;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
+     id="text2253"
+     xml:space="preserve"><tspan
+       x="149.13127"
+       y="311.76642"
+       id="tspan2255">Hours</tspan></text>
+  <text
+     x="375.73578"
+     y="311.76642"
+     style="font-size:24px;font-style:italic;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
+     id="text2257"
+     xml:space="preserve"><tspan
+       x="375.73578"
+       y="311.76642"
+       id="tspan2259">Minutes</tspan></text>
+  <text
+     x="599.43683"
+     y="311.76642"
+     style="font-size:24px;font-style:italic;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
+     id="text2261"
+     xml:space="preserve"><tspan
+       x="599.43683"
+       y="311.76642"
+       id="tspan2263">Seconds</tspan></text>
+  <rect
+     width="750"
+     height="350"
+     x="0"
+     y="0"
+     style="opacity:1;fill:none;stroke:#999999;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="rect3251" />
+  <text
+     xml:space="preserve"
+     style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
+     x="682.10663"
+     y="333.10748"
+     id="text11233"
+     sodipodi:linespacing="125%"><tspan
+       sodipodi:role="line"
+       id="tspan11599"
+       x="682.10663"
+       y="333.10748">Tavmjong Bah © 2007</tspan><tspan
+       sodipodi:role="line"
+       id="tspan11601"
+       x="682.10663"
+       y="345.60748">http://tavmjong.free.fr/</tspan></text>
+</svg>