<!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.beginPath();
context.moveTo(184, 182);

context.lineTo(184, 182);
context.stroke();

context.lineTo(179, 180);
context.stroke();

context.lineTo(174, 176);
context.stroke();

context.lineTo(170, 172);
context.stroke();

context.lineTo(163, 167);
context.stroke();

context.lineTo(153, 157);
context.stroke();

context.lineTo(137, 139);
context.stroke();

context.lineTo(131, 134);
context.stroke();

context.lineTo(125, 128);
context.stroke();

context.lineTo(123, 123);
context.stroke();

context.lineTo(121, 121);
context.stroke();

context.lineTo(120, 118);
context.stroke();

context.lineTo(118, 114);
context.stroke();

context.lineTo(117, 113);
context.stroke();

context.lineTo(117, 112);
context.stroke();

context.lineTo(117, 108);
context.stroke();

context.lineTo(119, 107);
context.stroke();

context.lineTo(126, 104);
context.stroke();

context.lineTo(137, 104);
context.stroke();

context.lineTo(150, 104);
context.stroke();

context.lineTo(163, 104);
context.stroke();

context.lineTo(170, 104);
context.stroke();

context.lineTo(173, 105);
context.stroke();

context.lineTo(175, 105);
context.stroke();

context.lineTo(175, 105);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(7, 95, 271, 117);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(274, 173);
context.lineTo(463, 292);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(158, 274, 356, 133);

context.strokeStyle = '#000000';
context.strokeRect(309, 308, 180, 75);

context.strokeStyle = '#000000';
context.strokeRect(23, 323, 69, 84);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(306, 344);
context.lineTo(95, 332);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(154, 278);
context.lineTo(77, 265);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(42, 244, 65, 40);

context.strokeStyle = '#000000';
context.strokeRect(68, 270, 0, 0);

context.strokeStyle = '#000000';
context.strokeRect(11, 237, 150, 42);
</script>
</body>
</html>