<!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(344, 114);

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

context.strokeStyle = '#000000';
context.save();
context.translate(226, 125);
context.scale(0.4411764705882353, 1);
context.beginPath();
context.arc(0, 0, 149, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(382, 167.5);
context.scale(0.04878048780487805, 1);
context.beginPath();
context.arc(0, 0, 41, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(325.5, 170.5);
context.scale(1, 0.9759036144578314);
context.beginPath();
context.arc(0, 0, 116, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(340, 82);

context.lineTo(340, 82);
context.stroke();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(242, 70);

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

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

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

context.lineTo(264, 96);
context.stroke();

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

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

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

context.lineTo(331, 196);
context.stroke();

context.lineTo(341, 208);
context.stroke();

context.lineTo(348, 218);
context.stroke();

context.lineTo(354, 224);
context.stroke();

context.lineTo(356, 226);
context.stroke();

context.lineTo(359, 229);
context.stroke();

context.lineTo(360, 230);
context.stroke();

context.lineTo(362, 232);
context.stroke();

context.lineTo(366, 236);
context.stroke();

context.lineTo(373, 238);
context.stroke();

context.lineTo(382, 238);
context.stroke();

context.lineTo(389, 235);
context.stroke();

context.lineTo(395, 224);
context.stroke();

context.lineTo(404, 190);
context.stroke();

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

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

context.lineTo(379, 29);
context.stroke();

context.lineTo(348, 5);
context.stroke();

context.lineWidth = 4;

context.lineWidth = 3;

context.lineWidth = 4;

context.lineWidth = 5;
</script>
</body>
</html>