<!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(206, 130, 174, 104);

context.strokeStyle = '#000000';
context.strokeRect(184, 112, 214, 138);

context.strokeStyle = '#000000';
context.strokeRect(400, 113, 20, 137);

context.strokeStyle = '#000000';
context.strokeRect(154, 112, 29, 139);

context.strokeStyle = '#000000';
context.strokeRect(153, 84, 268, 27);

context.strokeStyle = '#000000';
context.strokeRect(154, 250, 267, 34);

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

context.strokeStyle = '#000000';
context.save();
context.translate(423.5, 209.5);
context.scale(0.6363636363636364, 1);
context.beginPath();
context.arc(0, 0, 13, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(147, 211.5);
context.scale(0.7272727272727273, 1);
context.beginPath();
context.arc(0, 0, 14, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(200, 267);
context.scale(1, 0.6363636363636364);
context.beginPath();
context.arc(0, 0, 26, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(367, 84);
context.scale(1, 0.2);
context.beginPath();
context.arc(0, 0, 10, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(340.5, 96.5);
context.scale(1, 0.48148148148148145);
context.beginPath();
context.arc(0, 0, 30, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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