<!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.save();
context.translate(72.5, 57);
context.scale(1, 0.9032258064516129);
context.beginPath();
context.arc(0, 0, 42, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(53, 48);
context.lineTo(99, 46);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(72, 47);
context.lineTo(97, 95);
context.stroke();
context.closePath();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(94, 51);

context.lineTo(94, 51);
context.stroke();

context.lineTo(92, 51);
context.stroke();

context.lineTo(80, 51);
context.stroke();

context.lineTo(72, 52);
context.stroke();

context.lineTo(69, 54);
context.stroke();

context.lineTo(69, 54);
context.stroke();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(69, 54);

context.lineTo(70, 54);
context.stroke();

context.lineTo(71, 54);
context.stroke();

context.lineTo(72, 54);
context.stroke();

context.lineTo(73, 54);
context.stroke();

context.lineTo(76, 50);
context.stroke();

context.lineTo(79, 50);
context.stroke();

context.lineTo(81, 50);
context.stroke();

context.lineTo(86, 50);
context.stroke();

context.lineTo(92, 51);
context.stroke();

context.lineTo(94, 57);
context.stroke();

context.lineTo(95, 70);
context.stroke();

context.lineTo(92, 80);
context.stroke();

context.lineTo(85, 84);
context.stroke();

context.lineTo(78, 85);
context.stroke();

context.lineTo(67, 85);
context.stroke();

context.lineTo(64, 83);
context.stroke();

context.lineTo(63, 79);
context.stroke();

context.lineTo(62, 74);
context.stroke();

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

context.lineTo(80, 54);
context.stroke();

context.lineTo(98, 47);
context.stroke();

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

context.lineTo(115, 43);
context.stroke();

context.lineTo(116, 48);
context.stroke();

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

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

context.strokeStyle = '#000000';
context.strokeRect(203, 55, 224, 229);
</script>
</body>
</html>