<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Canvas</title>

<style type="text/css"><!--
#container { position: relative; }
#imageTemp { position: absolute; top: 1px; left: 1px; }
--></style>

</head>
<body>
<canvas id="imageView" width="600" height="500"></canvas>

<script type="text/javascript">
var canvas, context, canvaso, contexto;
canvaso = document.getElementById('imageView');
context = canvaso.getContext('2d');
context.lineWidth = 5;

context.strokeStyle = '#000000';
context.strokeRect(191, 231, 276, 174);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(190, 230);
context.lineTo(329, 106);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(329, 106);
context.lineTo(466, 231);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(217, 202);
context.lineTo(219, 153);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(220, 152);
context.lineTo(251, 153);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(251, 153);
context.lineTo(250, 177);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(307, 328, 46, 74);

context.strokeStyle = '#000000';
context.strokeRect(221, 310, 56, 50);

context.strokeStyle = '#000000';
context.strokeRect(382, 309, 55, 53);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(249, 359);
context.lineTo(248, 311);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(221, 337);
context.lineTo(276, 337);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(409, 360);
context.lineTo(410, 310);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(383, 336);
context.lineTo(436, 337);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(241, 130);
context.scale(0.3333333333333333, 1);
context.beginPath();
context.arc(0, 0, 6, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(220.5, 116.5);
context.scale(0.6, 1);
context.beginPath();
context.arc(0, 0, 6, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(234.5, 142);
context.scale(0.25, 1);
context.beginPath();
context.arc(0, 0, 4, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(229.5, 114.5);
context.scale(0.1111111111111111, 1);
context.beginPath();
context.arc(0, 0, 9, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(219.5, 133.5);
context.scale(0.42857142857142855, 1);
context.beginPath();
context.arc(0, 0, 8, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(15, 21.5);
context.scale(0.8, 1);
context.beginPath();
context.arc(0, 0, 45, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(17, 70);
context.lineTo(23, 83);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(36, 63);
context.lineTo(53, 90);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(46, 55);
context.lineTo(54, 66);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(54, 40);
context.lineTo(85, 69);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(53, 21);
context.lineTo(66, 24);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(56, 11);
context.lineTo(105, 8);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(6, 83);
context.lineTo(0, 62);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(343, 362);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 3, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>