Skip to content

Instantly share code, notes, and snippets.

@duhaime
Last active February 21, 2018 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duhaime/6f2a71a76091162c57f66ea9e04db407 to your computer and use it in GitHub Desktop.
Save duhaime/6f2a71a76091162c57f66ea9e04db407 to your computer and use it in GitHub Desktop.
Vermeer (Three.js)
<html>
<head>
<style>
html, body { width: 100%; height: 100%; }
body { margin: 0; overflow: hidden; }
canvas { width: 100%; height: 100%; }
</style>
</head>
<body>
<script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/88/three.min.js'></script>
<script src='https://threejs.org/examples/js/controls/TrackballControls.js'></script>
<script>
/**
* Globals
**/
var xMin = Number.POSITIVE_INFINITY,
xMax = Number.NEGATIVE_INFINITY,
yMin = Number.POSITIVE_INFINITY,
yMax = Number.NEGATIVE_INFINITY,
group = new THREE.Group();
/**
* Ajax helper
**/
function get(url, handleSuccess, handleErr, handleProgress) {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == XMLHttpRequest.DONE) {
if (xmlhttp.status === 200) {
if (handleSuccess) handleSuccess(xmlhttp.responseText)
} else {
if (handleErr) handleErr(xmlhttp)
}
};
};
xmlhttp.onprogress = function(e) {
if (handleProgress) handleProgress(e);
};
xmlhttp.open('GET', url, true);
xmlhttp.send();
};
/**
* Generate a scene object with a background color
**/
function getScene() {
return new THREE.Scene();
}
/**
* Generate the camera to be used in the scene. Camera args:
* [0] field of view: identifies the portion of the scene
* visible at any time (in degrees)
* [1] aspect ratio: identifies the aspect ratio of the
* scene in width/height
* [2] near clipping plane: objects closer than the near
* clipping plane are culled from the scene
* [3] far clipping plane: objects farther than the far
* clipping plane are culled from the scene
**/
function getCamera() {
var aspectRatio = window.innerWidth / window.innerHeight;
var camera = new THREE.PerspectiveCamera(75, aspectRatio, 0.1, 1000);
camera.position.set(0, 0, -170);
return camera;
}
/**
* Generate the light to be used in the scene. Light args:
* [0]: Hexadecimal color of the light
* [1]: Numeric value of the light's strength/intensity
* [2]: The distance from the light where the intensity is 0
* @param {obj} scene: the current scene object
**/
function getLight(scene) {
var light = new THREE.PointLight(0xffffff, 1, 0);
light.position.set(1, 1, 1);
scene.add(light);
var ambientLight = new THREE.AmbientLight(0x111111);
scene.add(ambientLight);
return light;
}
/**
* Generate the renderer to be used in the scene
**/
function getRenderer() {
// Create the canvas with a renderer
var renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true, });
// Add support for retina displays
renderer.setPixelRatio(window.devicePixelRatio);
// Specify the size of the canvas
renderer.setSize(window.innerWidth, window.innerHeight);
// Add the canvas to the DOM
document.body.appendChild(renderer.domElement);
return renderer;
}
/**
* Generate the controls to be used in the scene
* @param {obj} camera: the three.js camera for the scene
* @param {obj} renderer: the three.js renderer for the scene
**/
function getControls(camera, renderer) {
var controls = new THREE.TrackballControls(camera, renderer.domElement);
controls.zoomSpeed = 0.4;
controls.panSpeed = 0.4;
return controls;
}
/**
* Load svg data
**/
function loadData() {
var i, j, k, l, x, y,
geoms = [],
geom = [];
get('pearl.svg', function(data) {
var background = data.split('fill="')[1].split('"')[0]
document.body.style.backgroundColor = background;
data.split('<ellipse ').forEach(function(i, idx) {
geom = [];
if (idx >= 1) {
var geom = {
x: getAttr(i, 'cx', true),
y: getAttr(i, 'cy', true),
r: getAttr(i, 'rx', true),
fill: getAttr(i, 'fill', false),
}
if (geom.x < xMin) xMin = geom.x;
if (geom.x > xMax) xMax = geom.x;
if (geom.y < yMin) yMin = geom.y;
if (geom.y > yMax) yMax = geom.y;
geoms.push(geom)
}
})
drawGeoms(geoms);
})
}
function getAttr(str, attr, numeric) {
var val = str.split(attr + '="')[1].split('"')[0];
return numeric ? parseFloat(val) : val;
}
function drawGeoms(geoms) {
var z=0, geometry, material, mesh,
xOffset = (xMax + xMin) / 2,
yOffset = (yMax + yMin) / 2;
geoms.map(function(g) {
z += 0.05;
geometry = new THREE.CircleGeometry( g.r, 20 );
material = new THREE.MeshBasicMaterial({
color: g.fill,
opacity: 0.5,
});
material.transparent = true;
var mesh = new THREE.Mesh(geometry, material);
mesh.position.x = g.x - xOffset;
mesh.position.y = g.y - yOffset;
mesh.position.z = z;
group.add(mesh);
})
group.rotation.x = Math.PI;
scene.add(group);
}
/**
* Render!
**/
function render() {
requestAnimationFrame(render);
renderer.render(scene, camera);
controls.update();
};
var scene = getScene();
var camera = getCamera();
var light = getLight(scene);
var renderer = getRenderer();
var controls = getControls(camera, renderer);
loadData();
render();
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="945" height="1024">
<rect x="0" y="0" width="945" height="1024" fill="#2b2528" />
<g transform="scale(4.376068) translate(0.5 0.5)">
<ellipse fill="#f8be97" fill-opacity="0.501961" cx="87" cy="94" rx="26" ry="26" />
<ellipse fill="#8ea8f5" fill-opacity="0.501961" cx="98" cy="62" rx="21" ry="21" />
<ellipse fill="#ffdfb0" fill-opacity="0.501961" cx="109" cy="154" rx="14" ry="14" />
<ellipse fill="#a79c8f" fill-opacity="0.501961" cx="129" cy="43" rx="17" ry="17" />
<ellipse fill="#ab743a" fill-opacity="0.501961" cx="106" cy="185" rx="21" ry="21" />
<ellipse fill="#01020e" fill-opacity="0.501961" cx="37" cy="86" rx="34" ry="34" />
<ellipse fill="#b67857" fill-opacity="0.501961" cx="88" cy="120" rx="19" ry="19" />
<ellipse fill="#c3a469" fill-opacity="0.501961" cx="164" cy="133" rx="12" ry="12" />
<ellipse fill="#0f0b19" fill-opacity="0.501961" cx="126" cy="90" rx="29" ry="29" />
<ellipse fill="#898260" fill-opacity="0.501961" cx="171" cy="163" rx="17" ry="17" />
<ellipse fill="#060610" fill-opacity="0.501961" cx="31" cy="172" rx="60" ry="60" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="123" cy="143" rx="6" ry="6" />
<ellipse fill="#fff5d2" fill-opacity="0.501961" cx="82" cy="74" rx="10" ry="10" />
<ellipse fill="#865d32" fill-opacity="0.501961" cx="89" cy="219" rx="20" ry="20" />
<ellipse fill="#060611" fill-opacity="0.501961" cx="46" cy="16" rx="51" ry="51" />
<ellipse fill="#050510" fill-opacity="0.501961" cx="209" cy="46" rx="55" ry="55" />
<ellipse fill="#070813" fill-opacity="0.501961" cx="184" cy="233" rx="54" ry="54" />
<ellipse fill="#4963b1" fill-opacity="0.501961" cx="115" cy="53" rx="17" ry="17" />
<ellipse fill="#0e080f" fill-opacity="0.501961" cx="137" cy="165" rx="23" ry="23" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="132" cy="140" rx="4" ry="4" />
<ellipse fill="#050612" fill-opacity="0.501961" cx="207" cy="137" rx="35" ry="35" />
<ellipse fill="#c3a770" fill-opacity="0.501961" cx="163" cy="118" rx="8" ry="8" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="112" cy="147" rx="6" ry="6" />
<ellipse fill="#ffffe4" fill-opacity="0.501961" cx="74" cy="101" rx="6" ry="6" />
<ellipse fill="#0f0000" fill-opacity="0.501961" cx="83" cy="109" rx="7" ry="7" />
<ellipse fill="#07050f" fill-opacity="0.501961" cx="133" cy="0" rx="31" ry="31" />
<ellipse fill="#b49358" fill-opacity="0.501961" cx="166" cy="147" rx="9" ry="9" />
<ellipse fill="#6f91aa" fill-opacity="0.501961" cx="166" cy="183" rx="7" ry="7" />
<ellipse fill="#906236" fill-opacity="0.501961" cx="108" cy="173" rx="16" ry="16" />
<ellipse fill="#16131b" fill-opacity="0.501961" cx="37" cy="105" rx="32" ry="32" />
<ellipse fill="#000006" fill-opacity="0.501961" cx="92" cy="147" rx="9" ry="9" />
<ellipse fill="#b59553" fill-opacity="0.501961" cx="137" cy="40" rx="11" ry="11" />
<ellipse fill="#2c1f16" fill-opacity="0.501961" cx="118" cy="222" rx="28" ry="28" />
<ellipse fill="#8099d6" fill-opacity="0.501961" cx="92" cy="57" rx="12" ry="12" />
<ellipse fill="#ffffd3" fill-opacity="0.501961" cx="80" cy="134" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="105" cy="153" rx="5" ry="5" />
<ellipse fill="#e4e8ee" fill-opacity="0.501961" cx="136" cy="138" rx="4" ry="4" />
<ellipse fill="#da9a68" fill-opacity="0.501961" cx="97" cy="105" rx="10" ry="10" />
<ellipse fill="#2c282c" fill-opacity="0.501961" cx="139" cy="52" rx="13" ry="13" />
<ellipse fill="#eab968" fill-opacity="0.501961" cx="165" cy="161" rx="6" ry="6" />
<ellipse fill="#cf8d4d" fill-opacity="0.501961" cx="98" cy="82" rx="8" ry="8" />
<ellipse fill="#ffef86" fill-opacity="0.501961" cx="121" cy="38" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="97" cy="161" rx="3" ry="3" />
<ellipse fill="#fffff4" fill-opacity="0.501961" cx="74" cy="115" rx="4" ry="4" />
<ellipse fill="#513522" fill-opacity="0.501961" cx="105" cy="134" rx="11" ry="11" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="121" cy="142" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="128" cy="141" rx="4" ry="4" />
<ellipse fill="#956f44" fill-opacity="0.501961" cx="80" cy="226" rx="11" ry="11" />
<ellipse fill="#0f1e54" fill-opacity="0.501961" cx="106" cy="70" rx="9" ry="9" />
<ellipse fill="#806a41" fill-opacity="0.501961" cx="162" cy="104" rx="8" ry="8" />
<ellipse fill="#000004" fill-opacity="0.501961" cx="122" cy="134" rx="6" ry="6" />
<ellipse fill="#131119" fill-opacity="0.501961" cx="85" cy="13" rx="32" ry="32" />
<ellipse fill="#8e531f" fill-opacity="0.501961" cx="112" cy="159" rx="8" ry="8" />
<ellipse fill="#7f94c4" fill-opacity="0.501961" cx="80" cy="63" rx="6" ry="6" />
<ellipse fill="#17141b" fill-opacity="0.501961" cx="13" cy="77" rx="58" ry="58" />
<ellipse fill="#00000a" fill-opacity="0.501961" cx="151" cy="130" rx="6" ry="6" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="127" cy="128" rx="2" ry="2" />
<ellipse fill="#ffc7aa" fill-opacity="0.501961" cx="75" cy="98" rx="7" ry="7" />
<ellipse fill="#2a4493" fill-opacity="0.501961" cx="119" cy="58" rx="13" ry="13" />
<ellipse fill="#0f0f17" fill-opacity="0.501961" cx="178" cy="101" rx="17" ry="17" />
<ellipse fill="#946a40" fill-opacity="0.501961" cx="94" cy="194" rx="11" ry="11" />
<ellipse fill="#dbb56e" fill-opacity="0.501961" cx="157" cy="93" rx="3" ry="3" />
<ellipse fill="#ffe4c7" fill-opacity="0.501961" cx="73" cy="107" rx="4" ry="4" />
<ellipse fill="#17141b" fill-opacity="0.501961" cx="46" cy="133" rx="29" ry="29" />
<ellipse fill="#16131b" fill-opacity="0.501961" cx="44" cy="205" rx="32" ry="32" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="100" cy="156" rx="3" ry="3" />
<ellipse fill="#a1a689" fill-opacity="0.501961" cx="166" cy="172" rx="6" ry="6" />
<ellipse fill="#0a0913" fill-opacity="0.501961" cx="141" cy="117" rx="15" ry="15" />
<ellipse fill="#100100" fill-opacity="0.501961" cx="101" cy="94" rx="5" ry="5" />
<ellipse fill="#ffd3b5" fill-opacity="0.501961" cx="81" cy="76" rx="9" ry="9" />
<ellipse fill="#000000" fill-opacity="0.501961" cx="164" cy="123" rx="3" ry="3" />
<ellipse fill="#ffed9f" fill-opacity="0.501961" cx="139" cy="35" rx="4" ry="4" />
<ellipse fill="#ffe77f" fill-opacity="0.501961" cx="113" cy="39" rx="3" ry="3" />
<ellipse fill="#f8d987" fill-opacity="0.501961" cx="159" cy="124" rx="4" ry="4" />
<ellipse fill="#1d181b" fill-opacity="0.501961" cx="128" cy="157" rx="13" ry="13" />
<ellipse fill="#d1bf8e" fill-opacity="0.501961" cx="155" cy="63" rx="3" ry="3" />
<ellipse fill="#0a121b" fill-opacity="0.501961" cx="175" cy="161" rx="6" ry="6" />
<ellipse fill="#12111c" fill-opacity="0.501961" cx="126" cy="85" rx="19" ry="19" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="114" cy="146" rx="4" ry="4" />
<ellipse fill="#16141c" fill-opacity="0.501961" cx="93" cy="146" rx="9" ry="9" />
<ellipse fill="#ffe283" fill-opacity="0.501961" cx="126" cy="43" rx="3" ry="3" />
<ellipse fill="#9a855b" fill-opacity="0.501961" cx="157" cy="87" rx="4" ry="4" />
<ellipse fill="#fffde0" fill-opacity="0.501961" cx="93" cy="92" rx="3" ry="3" />
<ellipse fill="#ffb291" fill-opacity="0.501961" cx="79" cy="128" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="116" cy="144" rx="4" ry="4" />
<ellipse fill="#7b7f76" fill-opacity="0.501961" cx="145" cy="136" rx="4" ry="4" />
<ellipse fill="#b89b61" fill-opacity="0.501961" cx="155" cy="72" rx="3" ry="3" />
<ellipse fill="#121017" fill-opacity="0.501961" cx="210" cy="166" rx="24" ry="24" />
<ellipse fill="#0b0c18" fill-opacity="0.501961" cx="151" cy="137" rx="6" ry="6" />
<ellipse fill="#8a916c" fill-opacity="0.501961" cx="185" cy="175" rx="4" ry="4" />
<ellipse fill="#11101b" fill-opacity="0.501961" cx="143" cy="180" rx="18" ry="18" />
<ellipse fill="#000007" fill-opacity="0.501961" cx="135" cy="56" rx="4" ry="4" />
<ellipse fill="#915f39" fill-opacity="0.501961" cx="116" cy="155" rx="6" ry="6" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="39" cy="119" rx="32" ry="32" />
<ellipse fill="#01001d" fill-opacity="0.501961" cx="125" cy="47" rx="3" ry="3" />
<ellipse fill="#bea46c" fill-opacity="0.501961" cx="155" cy="68" rx="3" ry="3" />
<ellipse fill="#bd9b5e" fill-opacity="0.501961" cx="158" cy="100" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="106" cy="150" rx="4" ry="4" />
<ellipse fill="#ffe29d" fill-opacity="0.501961" cx="159" cy="128" rx="3" ry="3" />
<ellipse fill="#926c47" fill-opacity="0.501961" cx="83" cy="214" rx="8" ry="8" />
<ellipse fill="#efd5ba" fill-opacity="0.501961" cx="81" cy="85" rx="4" ry="4" />
<ellipse fill="#1a273b" fill-opacity="0.501961" cx="176" cy="172" rx="6" ry="6" />
<ellipse fill="#17151d" fill-opacity="0.501961" cx="198" cy="123" rx="27" ry="27" />
<ellipse fill="#ffe3cb" fill-opacity="0.501961" cx="81" cy="91" rx="3" ry="3" />
<ellipse fill="#753c28" fill-opacity="0.501961" cx="87" cy="90" rx="5" ry="5" />
<ellipse fill="#653427" fill-opacity="0.501961" cx="84" cy="103" rx="5" ry="5" />
<ellipse fill="#16131b" fill-opacity="0.501961" cx="178" cy="22" rx="33" ry="33" />
<ellipse fill="#ffeba3" fill-opacity="0.501961" cx="133" cy="34" rx="3" ry="3" />
<ellipse fill="#cebfa5" fill-opacity="0.501961" cx="169" cy="129" rx="3" ry="3" />
<ellipse fill="#000001" fill-opacity="0.501961" cx="164" cy="115" rx="3" ry="3" />
<ellipse fill="#d9a373" fill-opacity="0.501961" cx="92" cy="77" rx="6" ry="6" />
<ellipse fill="#16131b" fill-opacity="0.501961" cx="136" cy="101" rx="20" ry="20" />
<ellipse fill="#14121b" fill-opacity="0.501961" cx="140" cy="160" rx="19" ry="19" />
<ellipse fill="#0d0403" fill-opacity="0.501961" cx="76" cy="89" rx="3" ry="3" />
<ellipse fill="#452d25" fill-opacity="0.501961" cx="108" cy="130" rx="13" ry="13" />
<ellipse fill="#6270a2" fill-opacity="0.501961" cx="76" cy="65" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="123" cy="143" rx="3" ry="3" />
<ellipse fill="#f1ce7f" fill-opacity="0.501961" cx="159" cy="117" rx="3" ry="3" />
<ellipse fill="#3c2f22" fill-opacity="0.501961" cx="118" cy="202" rx="14" ry="14" />
<ellipse fill="#947b52" fill-opacity="0.501961" cx="166" cy="142" rx="8" ry="8" />
<ellipse fill="#a78f61" fill-opacity="0.501961" cx="155" cy="79" rx="3" ry="3" />
<ellipse fill="#4e4236" fill-opacity="0.501961" cx="95" cy="182" rx="9" ry="9" />
<ellipse fill="#62150c" fill-opacity="0.501961" cx="85" cy="126" rx="5" ry="5" />
<ellipse fill="#fffdcd" fill-opacity="0.501961" cx="169" cy="123" rx="2" ry="2" />
<ellipse fill="#413019" fill-opacity="0.501961" cx="167" cy="145" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="99" cy="158" rx="3" ry="3" />
<ellipse fill="#875e36" fill-opacity="0.501961" cx="108" cy="169" rx="12" ry="12" />
<ellipse fill="#edae91" fill-opacity="0.501961" cx="75" cy="119" rx="4" ry="4" />
<ellipse fill="#2b1700" fill-opacity="0.501961" cx="165" cy="130" rx="3" ry="3" />
<ellipse fill="#9c835e" fill-opacity="0.501961" cx="134" cy="43" rx="6" ry="6" />
<ellipse fill="#ccb777" fill-opacity="0.501961" cx="159" cy="109" rx="3" ry="3" />
<ellipse fill="#a9ae8a" fill-opacity="0.501961" cx="183" cy="165" rx="3" ry="3" />
<ellipse fill="#17141c" fill-opacity="0.501961" cx="21" cy="193" rx="58" ry="58" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="54" cy="143" rx="25" ry="25" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="20" cy="79" rx="50" ry="50" />
<ellipse fill="#14121c" fill-opacity="0.501961" cx="139" cy="75" rx="15" ry="15" />
<ellipse fill="#65462d" fill-opacity="0.501961" cx="126" cy="217" rx="6" ry="6" />
<ellipse fill="#161821" fill-opacity="0.501961" cx="132" cy="133" rx="5" ry="5" />
<ellipse fill="#b27857" fill-opacity="0.501961" cx="106" cy="101" rx="5" ry="5" />
<ellipse fill="#1a161c" fill-opacity="0.501961" cx="176" cy="76" rx="20" ry="20" />
<ellipse fill="#f2efca" fill-opacity="0.501961" cx="168" cy="116" rx="2" ry="2" />
<ellipse fill="#764a38" fill-opacity="0.501961" cx="103" cy="112" rx="5" ry="5" />
<ellipse fill="#3f5491" fill-opacity="0.501961" cx="101" cy="66" rx="9" ry="9" />
<ellipse fill="#c8b290" fill-opacity="0.501961" cx="73" cy="80" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="110" cy="148" rx="4" ry="4" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="78" cy="15" rx="32" ry="32" />
<ellipse fill="#eabf81" fill-opacity="0.501961" cx="119" cy="38" rx="4" ry="4" />
<ellipse fill="#a77d68" fill-opacity="0.501961" cx="103" cy="86" rx="5" ry="5" />
<ellipse fill="#88734c" fill-opacity="0.501961" cx="147" cy="45" rx="4" ry="4" />
<ellipse fill="#0b1733" fill-opacity="0.501961" cx="119" cy="45" rx="3" ry="3" />
<ellipse fill="#aa6d3a" fill-opacity="0.501961" cx="99" cy="198" rx="7" ry="7" />
<ellipse fill="#16131b" fill-opacity="0.501961" cx="208" cy="178" rx="22" ry="22" />
<ellipse fill="#eeeced" fill-opacity="0.501961" cx="72" cy="88" rx="2" ry="2" />
<ellipse fill="#16121b" fill-opacity="0.501961" cx="149" cy="127" rx="8" ry="8" />
<ellipse fill="#dba47b" fill-opacity="0.501961" cx="95" cy="106" rx="7" ry="7" />
<ellipse fill="#9a6a3c" fill-opacity="0.501961" cx="119" cy="177" rx="6" ry="6" />
<ellipse fill="#b7955f" fill-opacity="0.501961" cx="164" cy="166" rx="5" ry="5" />
<ellipse fill="#c0aa97" fill-opacity="0.501961" cx="72" cy="92" rx="3" ry="3" />
<ellipse fill="#d7c8ac" fill-opacity="0.501961" cx="170" cy="134" rx="3" ry="3" />
<ellipse fill="#e9e7bf" fill-opacity="0.501961" cx="168" cy="119" rx="2" ry="2" />
<ellipse fill="#140006" fill-opacity="0.501961" cx="164" cy="120" rx="3" ry="3" />
<ellipse fill="#311915" fill-opacity="0.501961" cx="84" cy="113" rx="5" ry="5" />
<ellipse fill="#95998f" fill-opacity="0.501961" cx="140" cy="137" rx="3" ry="3" />
<ellipse fill="#d8b47c" fill-opacity="0.501961" cx="155" cy="75" rx="2" ry="2" />
<ellipse fill="#f1ecca" fill-opacity="0.501961" cx="109" cy="39" rx="2" ry="2" />
<ellipse fill="#18111b" fill-opacity="0.501961" cx="121" cy="133" rx="7" ry="7" />
<ellipse fill="#ffffe4" fill-opacity="0.501961" cx="72" cy="111" rx="2" ry="2" />
<ellipse fill="#786344" fill-opacity="0.501961" cx="86" cy="202" rx="6" ry="6" />
<ellipse fill="#7788b7" fill-opacity="0.501961" cx="89" cy="60" rx="11" ry="11" />
<ellipse fill="#82643e" fill-opacity="0.501961" cx="76" cy="233" rx="10" ry="10" />
<ellipse fill="#956b54" fill-opacity="0.501961" cx="95" cy="124" rx="6" ry="6" />
<ellipse fill="#1e171b" fill-opacity="0.501961" cx="95" cy="228" rx="7" ry="7" />
<ellipse fill="#18141b" fill-opacity="0.501961" cx="75" cy="159" rx="20" ry="20" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="126" cy="141" rx="3" ry="3" />
<ellipse fill="#15131b" fill-opacity="0.501961" cx="158" cy="216" rx="28" ry="28" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="201" cy="116" rx="31" ry="31" />
<ellipse fill="#4d361b" fill-opacity="0.501961" cx="168" cy="151" rx="4" ry="4" />
<ellipse fill="#b7985c" fill-opacity="0.501961" cx="164" cy="154" rx="5" ry="5" />
<ellipse fill="#6e0c00" fill-opacity="0.501961" cx="78" cy="122" rx="3" ry="3" />
<ellipse fill="#0b0b0e" fill-opacity="0.501961" cx="99" cy="147" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="102" cy="154" rx="3" ry="3" />
<ellipse fill="#475ca4" fill-opacity="0.501961" cx="113" cy="55" rx="12" ry="12" />
<ellipse fill="#f8b39b" fill-opacity="0.501961" cx="76" cy="125" rx="2" ry="2" />
<ellipse fill="#f0b78e" fill-opacity="0.501961" cx="91" cy="95" rx="3" ry="3" />
<ellipse fill="#645549" fill-opacity="0.501961" cx="75" cy="84" rx="3" ry="3" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="137" cy="139" rx="2" ry="2" />
<ellipse fill="#957f6d" fill-opacity="0.501961" cx="102" cy="142" rx="3" ry="3" />
<ellipse fill="#e8ce84" fill-opacity="0.501961" cx="159" cy="119" rx="3" ry="3" />
<ellipse fill="#1a171e" fill-opacity="0.501961" cx="90" cy="148" rx="10" ry="10" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="96" cy="162" rx="2" ry="2" />
<ellipse fill="#ae8a52" fill-opacity="0.501961" cx="161" cy="134" rx="5" ry="5" />
<ellipse fill="#a5ac72" fill-opacity="0.501961" cx="183" cy="170" rx="3" ry="3" />
<ellipse fill="#976738" fill-opacity="0.501961" cx="107" cy="164" rx="8" ry="8" />
<ellipse fill="#17131b" fill-opacity="0.501961" cx="101" cy="12" rx="26" ry="26" />
<ellipse fill="#b59d64" fill-opacity="0.501961" cx="159" cy="106" rx="3" ry="3" />
<ellipse fill="#a7a381" fill-opacity="0.501961" cx="167" cy="112" rx="2" ry="2" />
<ellipse fill="#ffdec0" fill-opacity="0.501961" cx="79" cy="132" rx="3" ry="3" />
<ellipse fill="#080000" fill-opacity="0.501961" cx="126" cy="34" rx="2" ry="2" />
<ellipse fill="#f7d6c5" fill-opacity="0.501961" cx="81" cy="74" rx="7" ry="7" />
<ellipse fill="#e9dfb1" fill-opacity="0.501961" cx="169" cy="125" rx="2" ry="2" />
<ellipse fill="#18151d" fill-opacity="0.501961" cx="48" cy="63" rx="26" ry="26" />
<ellipse fill="#ac8e76" fill-opacity="0.501961" cx="85" cy="136" rx="4" ry="4" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="43" cy="124" rx="29" ry="29" />
<ellipse fill="#000000" fill-opacity="0.501961" cx="164" cy="112" rx="2" ry="2" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="57" cy="185" rx="29" ry="29" />
<ellipse fill="#19171e" fill-opacity="0.501961" cx="204" cy="133" rx="32" ry="32" />
<ellipse fill="#fffff8" fill-opacity="0.501961" cx="130" cy="141" rx="3" ry="3" />
<ellipse fill="#6f512b" fill-opacity="0.501961" cx="164" cy="138" rx="5" ry="5" />
<ellipse fill="#18141f" fill-opacity="0.501961" cx="112" cy="77" rx="7" ry="7" />
<ellipse fill="#19141d" fill-opacity="0.501961" cx="136" cy="87" rx="19" ry="19" />
<ellipse fill="#b0925e" fill-opacity="0.501961" cx="162" cy="144" rx="5" ry="5" />
<ellipse fill="#10121e" fill-opacity="0.501961" cx="176" cy="182" rx="5" ry="5" />
<ellipse fill="#a39b7c" fill-opacity="0.501961" cx="155" cy="60" rx="2" ry="2" />
<ellipse fill="#2b1f1f" fill-opacity="0.501961" cx="116" cy="134" rx="7" ry="7" />
<ellipse fill="#151217" fill-opacity="0.501961" cx="120" cy="115" rx="12" ry="12" />
<ellipse fill="#7f8fbe" fill-opacity="0.501961" cx="95" cy="51" rx="8" ry="8" />
<ellipse fill="#030e35" fill-opacity="0.501961" cx="130" cy="50" rx="3" ry="3" />
<ellipse fill="#5e5fa7" fill-opacity="0.501961" cx="105" cy="73" rx="3" ry="3" />
<ellipse fill="#e6dcb1" fill-opacity="0.501961" cx="171" cy="140" rx="2" ry="2" />
<ellipse fill="#e3dcb2" fill-opacity="0.501961" cx="168" cy="121" rx="2" ry="2" />
<ellipse fill="#ffcfb6" fill-opacity="0.501961" cx="77" cy="116" rx="3" ry="3" />
<ellipse fill="#19151c" fill-opacity="0.501961" cx="63" cy="25" rx="32" ry="32" />
<ellipse fill="#513d28" fill-opacity="0.501961" cx="119" cy="33" rx="3" ry="3" />
<ellipse fill="#2e180f" fill-opacity="0.501961" cx="95" cy="208" rx="5" ry="5" />
<ellipse fill="#f5e0c3" fill-opacity="0.501961" cx="128" cy="44" rx="2" ry="2" />
<ellipse fill="#835946" fill-opacity="0.501961" cx="89" cy="86" rx="5" ry="5" />
<ellipse fill="#e4b39c" fill-opacity="0.501961" cx="75" cy="123" rx="2" ry="2" />
<ellipse fill="#ac9f74" fill-opacity="0.501961" cx="155" cy="82" rx="2" ry="2" />
<ellipse fill="#ffbea5" fill-opacity="0.501961" cx="73" cy="105" rx="4" ry="4" />
<ellipse fill="#4d518c" fill-opacity="0.501961" cx="117" cy="70" rx="3" ry="3" />
<ellipse fill="#161113" fill-opacity="0.501961" cx="68" cy="85" rx="4" ry="4" />
<ellipse fill="#6c6890" fill-opacity="0.501961" cx="74" cy="67" rx="2" ry="2" />
<ellipse fill="#8e886a" fill-opacity="0.501961" cx="154" cy="56" rx="2" ry="2" />
<ellipse fill="#777470" fill-opacity="0.501961" cx="146" cy="137" rx="3" ry="3" />
<ellipse fill="#000006" fill-opacity="0.501961" cx="165" cy="126" rx="2" ry="2" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="72" cy="159" rx="23" ry="23" />
<ellipse fill="#637a7d" fill-opacity="0.501961" cx="164" cy="177" rx="5" ry="5" />
<ellipse fill="#4c352c" fill-opacity="0.501961" cx="108" cy="127" rx="9" ry="9" />
<ellipse fill="#150800" fill-opacity="0.501961" cx="171" cy="154" rx="2" ry="2" />
<ellipse fill="#564039" fill-opacity="0.501961" cx="90" cy="136" rx="5" ry="5" />
<ellipse fill="#000000" fill-opacity="0.501961" cx="114" cy="41" rx="1" ry="1" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="94" cy="92" rx="2" ry="2" />
<ellipse fill="#764329" fill-opacity="0.501961" cx="85" cy="98" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="119" cy="143" rx="3" ry="3" />
<ellipse fill="#645d4a" fill-opacity="0.501961" cx="171" cy="165" rx="5" ry="5" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="44" cy="101" rx="25" ry="25" />
<ellipse fill="#c09658" fill-opacity="0.501961" cx="157" cy="96" rx="2" ry="2" />
<ellipse fill="#fff5d8" fill-opacity="0.501961" cx="80" cy="94" rx="2" ry="2" />
<ellipse fill="#5b3e29" fill-opacity="0.501961" cx="117" cy="151" rx="3" ry="3" />
<ellipse fill="#0c0d05" fill-opacity="0.501961" cx="123" cy="45" rx="2" ry="2" />
<ellipse fill="#100d12" fill-opacity="0.501961" cx="151" cy="144" rx="6" ry="6" />
<ellipse fill="#976636" fill-opacity="0.501961" cx="109" cy="161" rx="7" ry="7" />
<ellipse fill="#d7d5ac" fill-opacity="0.501961" cx="172" cy="143" rx="2" ry="2" />
<ellipse fill="#dedddb" fill-opacity="0.501961" cx="95" cy="164" rx="1" ry="1" />
<ellipse fill="#ffffe6" fill-opacity="0.501961" cx="131" cy="46" rx="1" ry="1" />
<ellipse fill="#864e2f" fill-opacity="0.501961" cx="124" cy="38" rx="2" ry="2" />
<ellipse fill="#1a1820" fill-opacity="0.501961" cx="189" cy="140" rx="16" ry="16" />
<ellipse fill="#694a31" fill-opacity="0.501961" cx="103" cy="220" rx="5" ry="5" />
<ellipse fill="#4c3822" fill-opacity="0.501961" cx="125" cy="228" rx="6" ry="6" />
<ellipse fill="#130e16" fill-opacity="0.501961" cx="144" cy="67" rx="9" ry="9" />
<ellipse fill="#f2d6c0" fill-opacity="0.501961" cx="71" cy="94" rx="2" ry="2" />
<ellipse fill="#8d8b68" fill-opacity="0.501961" cx="184" cy="161" rx="2" ry="2" />
<ellipse fill="#ffffa4" fill-opacity="0.501961" cx="122" cy="42" rx="1" ry="1" />
<ellipse fill="#231309" fill-opacity="0.501961" cx="167" cy="134" rx="2" ry="2" />
<ellipse fill="#19161d" fill-opacity="0.501961" cx="141" cy="167" rx="19" ry="19" />
<ellipse fill="#ccd0a6" fill-opacity="0.501961" cx="172" cy="146" rx="2" ry="2" />
<ellipse fill="#1a1d2a" fill-opacity="0.501961" cx="179" cy="155" rx="5" ry="5" />
<ellipse fill="#4d381d" fill-opacity="0.501961" cx="100" cy="98" rx="3" ry="3" />
<ellipse fill="#e3d8ad" fill-opacity="0.501961" cx="171" cy="138" rx="2" ry="2" />
<ellipse fill="#6c80a7" fill-opacity="0.501961" cx="80" cy="62" rx="5" ry="5" />
<ellipse fill="#869296" fill-opacity="0.501961" cx="176" cy="173" rx="2" ry="2" />
<ellipse fill="#312823" fill-opacity="0.501961" cx="165" cy="90" rx="6" ry="6" />
<ellipse fill="#8e6d56" fill-opacity="0.501961" cx="74" cy="92" rx="3" ry="3" />
<ellipse fill="#5c3a10" fill-opacity="0.501961" cx="128" cy="40" rx="2" ry="2" />
<ellipse fill="#42537e" fill-opacity="0.501961" cx="93" cy="69" rx="3" ry="3" />
<ellipse fill="#5a432d" fill-opacity="0.501961" cx="120" cy="189" rx="9" ry="9" />
<ellipse fill="#000000" fill-opacity="0.501961" cx="76" cy="89" rx="2" ry="2" />
<ellipse fill="#000014" fill-opacity="0.501961" cx="154" cy="136" rx="3" ry="3" />
<ellipse fill="#f4f0c3" fill-opacity="0.501961" cx="168" cy="114" rx="1" ry="1" />
<ellipse fill="#77362a" fill-opacity="0.501961" cx="83" cy="124" rx="7" ry="7" />
<ellipse fill="#240f07" fill-opacity="0.501961" cx="168" cy="140" rx="2" ry="2" />
<ellipse fill="#35487d" fill-opacity="0.501961" cx="125" cy="64" rx="5" ry="5" />
<ellipse fill="#000000" fill-opacity="0.501961" cx="99" cy="93" rx="3" ry="3" />
<ellipse fill="#344785" fill-opacity="0.501961" cx="122" cy="55" rx="8" ry="8" />
<ellipse fill="#334968" fill-opacity="0.501961" cx="164" cy="185" rx="5" ry="5" />
<ellipse fill="#9c7059" fill-opacity="0.501961" cx="88" cy="118" rx="4" ry="4" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="141" cy="119" rx="15" ry="15" />
<ellipse fill="#d19462" fill-opacity="0.501961" cx="99" cy="81" rx="4" ry="4" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="97" cy="161" rx="2" ry="2" />
<ellipse fill="#17141c" fill-opacity="0.501961" cx="147" cy="2" rx="30" ry="30" />
<ellipse fill="#ecd9b4" fill-opacity="0.501961" cx="170" cy="133" rx="2" ry="2" />
<ellipse fill="#130e14" fill-opacity="0.501961" cx="95" cy="218" rx="4" ry="4" />
<ellipse fill="#0b1412" fill-opacity="0.501961" cx="178" cy="168" rx="3" ry="3" />
<ellipse fill="#403023" fill-opacity="0.501961" cx="145" cy="48" rx="4" ry="4" />
<ellipse fill="#82694a" fill-opacity="0.501961" cx="126" cy="30" rx="3" ry="3" />
<ellipse fill="#1a1015" fill-opacity="0.501961" cx="111" cy="92" rx="5" ry="5" />
<ellipse fill="#1a1419" fill-opacity="0.501961" cx="163" cy="58" rx="8" ry="8" />
<ellipse fill="#8c826f" fill-opacity="0.501961" cx="142" cy="54" rx="2" ry="2" />
<ellipse fill="#1a2e4f" fill-opacity="0.501961" cx="105" cy="69" rx="4" ry="4" />
<ellipse fill="#e8ccbb" fill-opacity="0.501961" cx="81" cy="88" rx="3" ry="3" />
<ellipse fill="#906e44" fill-opacity="0.501961" cx="158" cy="114" rx="3" ry="3" />
<ellipse fill="#878390" fill-opacity="0.501961" cx="176" cy="177" rx="2" ry="2" />
<ellipse fill="#35230d" fill-opacity="0.501961" cx="108" cy="140" rx="4" ry="4" />
<ellipse fill="#fffff8" fill-opacity="0.501961" cx="112" cy="147" rx="4" ry="4" />
<ellipse fill="#747eaa" fill-opacity="0.501961" cx="76" cy="65" rx="3" ry="3" />
<ellipse fill="#ddb991" fill-opacity="0.501961" cx="125" cy="37" rx="2" ry="2" />
<ellipse fill="#18141d" fill-opacity="0.501961" cx="139" cy="86" rx="16" ry="16" />
<ellipse fill="#d69271" fill-opacity="0.501961" cx="79" cy="127" rx="3" ry="3" />
<ellipse fill="#7e8163" fill-opacity="0.501961" cx="167" cy="109" rx="2" ry="2" />
<ellipse fill="#17141c" fill-opacity="0.501961" cx="194" cy="106" rx="26" ry="26" />
<ellipse fill="#4a3929" fill-opacity="0.501961" cx="103" cy="177" rx="4" ry="4" />
<ellipse fill="#5a4a3c" fill-opacity="0.501961" cx="77" cy="217" rx="4" ry="4" />
<ellipse fill="#553516" fill-opacity="0.501961" cx="129" cy="36" rx="2" ry="2" />
<ellipse fill="#17131b" fill-opacity="0.501961" cx="143" cy="155" rx="15" ry="15" />
<ellipse fill="#16121a" fill-opacity="0.501961" cx="145" cy="195" rx="15" ry="15" />
<ellipse fill="#fffff8" fill-opacity="0.501961" cx="106" cy="153" rx="2" ry="2" />
<ellipse fill="#17151c" fill-opacity="0.501961" cx="136" cy="104" rx="20" ry="20" />
<ellipse fill="#ab7760" fill-opacity="0.501961" cx="79" cy="104" rx="3" ry="3" />
<ellipse fill="#221b17" fill-opacity="0.501961" cx="106" cy="78" rx="3" ry="3" />
<ellipse fill="#9a8660" fill-opacity="0.501961" cx="157" cy="88" rx="3" ry="3" />
<ellipse fill="#09080b" fill-opacity="0.501961" cx="138" cy="58" rx="4" ry="4" />
<ellipse fill="#131014" fill-opacity="0.501961" cx="128" cy="149" rx="5" ry="5" />
<ellipse fill="#765d3e" fill-opacity="0.501961" cx="85" cy="207" rx="7" ry="7" />
<ellipse fill="#1d0a13" fill-opacity="0.501961" cx="164" cy="111" rx="3" ry="3" />
<ellipse fill="#aca488" fill-opacity="0.501961" cx="136" cy="48" rx="2" ry="2" />
<ellipse fill="#a28356" fill-opacity="0.501961" cx="161" cy="137" rx="5" ry="5" />
<ellipse fill="#2f261a" fill-opacity="0.501961" cx="102" cy="147" rx="2" ry="2" />
<ellipse fill="#888f79" fill-opacity="0.501961" cx="184" cy="178" rx="2" ry="2" />
<ellipse fill="#2f1d00" fill-opacity="0.501961" cx="140" cy="41" rx="2" ry="2" />
<ellipse fill="#17151b" fill-opacity="0.501961" cx="60" cy="134" rx="16" ry="16" />
<ellipse fill="#020000" fill-opacity="0.501961" cx="96" cy="90" rx="1" ry="1" />
<ellipse fill="#888e83" fill-opacity="0.501961" cx="169" cy="180" rx="3" ry="3" />
<ellipse fill="#d6b299" fill-opacity="0.501961" cx="89" cy="76" rx="5" ry="5" />
<ellipse fill="#a68f64" fill-opacity="0.501961" cx="159" cy="111" rx="3" ry="3" />
<ellipse fill="#0b0f19" fill-opacity="0.501961" cx="179" cy="160" rx="4" ry="4" />
<ellipse fill="#1b0f19" fill-opacity="0.501961" cx="160" cy="87" rx="3" ry="3" />
<ellipse fill="#3f2e22" fill-opacity="0.501961" cx="168" cy="147" rx="3" ry="3" />
<ellipse fill="#634334" fill-opacity="0.501961" cx="101" cy="133" rx="6" ry="6" />
<ellipse fill="#eed79c" fill-opacity="0.501961" cx="118" cy="39" rx="3" ry="3" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="73" cy="87" rx="1" ry="1" />
<ellipse fill="#69492a" fill-opacity="0.501961" cx="102" cy="162" rx="3" ry="3" />
<ellipse fill="#8b8861" fill-opacity="0.501961" cx="150" cy="46" rx="2" ry="2" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="32" cy="218" rx="37" ry="37" />
<ellipse fill="#a38b56" fill-opacity="0.501961" cx="145" cy="41" rx="3" ry="3" />
<ellipse fill="#0b0000" fill-opacity="0.501961" cx="150" cy="55" rx="3" ry="3" />
<ellipse fill="#19161e" fill-opacity="0.501961" cx="193" cy="132" rx="21" ry="21" />
<ellipse fill="#5a483f" fill-opacity="0.501961" cx="74" cy="223" rx="4" ry="4" />
<ellipse fill="#98693f" fill-opacity="0.501961" cx="112" cy="158" rx="6" ry="6" />
<ellipse fill="#986b3b" fill-opacity="0.501961" cx="101" cy="191" rx="6" ry="6" />
<ellipse fill="#151219" fill-opacity="0.501961" cx="94" cy="146" rx="7" ry="7" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="127" cy="128" rx="1" ry="1" />
<ellipse fill="#fffff0" fill-opacity="0.501961" cx="77" cy="131" rx="1" ry="1" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="70" cy="150" rx="16" ry="16" />
<ellipse fill="#15141d" fill-opacity="0.501961" cx="124" cy="134" rx="5" ry="5" />
<ellipse fill="#311d27" fill-opacity="0.501961" cx="116" cy="42" rx="2" ry="2" />
<ellipse fill="#550500" fill-opacity="0.501961" cx="78" cy="122" rx="2" ry="2" />
<ellipse fill="#000009" fill-opacity="0.501961" cx="124" cy="127" rx="2" ry="2" />
<ellipse fill="#d8bb84" fill-opacity="0.501961" cx="159" cy="129" rx="3" ry="3" />
<ellipse fill="#241b1b" fill-opacity="0.501961" cx="114" cy="209" rx="8" ry="8" />
<ellipse fill="#efc3aa" fill-opacity="0.501961" cx="74" cy="99" rx="6" ry="6" />
<ellipse fill="#697a79" fill-opacity="0.501961" cx="175" cy="169" rx="2" ry="2" />
<ellipse fill="#a3837a" fill-opacity="0.501961" cx="73" cy="82" rx="3" ry="3" />
<ellipse fill="#897957" fill-opacity="0.501961" cx="139" cy="50" rx="3" ry="3" />
<ellipse fill="#382318" fill-opacity="0.501961" cx="99" cy="90" rx="3" ry="3" />
<ellipse fill="#31271d" fill-opacity="0.501961" cx="76" cy="86" rx="2" ry="2" />
<ellipse fill="#fbde9b" fill-opacity="0.501961" cx="124" cy="42" rx="2" ry="2" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="5" cy="92" rx="64" ry="64" />
<ellipse fill="#be9a8a" fill-opacity="0.501961" cx="93" cy="89" rx="2" ry="2" />
<ellipse fill="#5b4430" fill-opacity="0.501961" cx="88" cy="229" rx="5" ry="5" />
<ellipse fill="#fffff4" fill-opacity="0.501961" cx="110" cy="151" rx="2" ry="2" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="134" cy="139" rx="2" ry="2" />
<ellipse fill="#58575d" fill-opacity="0.501961" cx="130" cy="133" rx="2" ry="2" />
<ellipse fill="#320e00" fill-opacity="0.501961" cx="78" cy="111" rx="2" ry="2" />
<ellipse fill="#686150" fill-opacity="0.501961" cx="165" cy="87" rx="2" ry="2" />
<ellipse fill="#17141a" fill-opacity="0.501961" cx="105" cy="26" rx="13" ry="13" />
<ellipse fill="#ba8553" fill-opacity="0.501961" cx="97" cy="174" rx="2" ry="2" />
<ellipse fill="#3d3e49" fill-opacity="0.501961" cx="181" cy="150" rx="3" ry="3" />
<ellipse fill="#75715d" fill-opacity="0.501961" cx="154" cy="53" rx="2" ry="2" />
<ellipse fill="#16000f" fill-opacity="0.501961" cx="164" cy="123" rx="2" ry="2" />
<ellipse fill="#686259" fill-opacity="0.501961" cx="144" cy="56" rx="2" ry="2" />
<ellipse fill="#6f5b24" fill-opacity="0.501961" cx="130" cy="30" rx="2" ry="2" />
<ellipse fill="#11080c" fill-opacity="0.501961" cx="112" cy="41" rx="1" ry="1" />
<ellipse fill="#d6bc7d" fill-opacity="0.501961" cx="135" cy="34" rx="4" ry="4" />
<ellipse fill="#9d7041" fill-opacity="0.501961" cx="86" cy="214" rx="4" ry="4" />
<ellipse fill="#a5826a" fill-opacity="0.501961" cx="74" cy="93" rx="3" ry="3" />
<ellipse fill="#18151d" fill-opacity="0.501961" cx="135" cy="154" rx="12" ry="12" />
<ellipse fill="#ffd7ad" fill-opacity="0.501961" cx="73" cy="114" rx="3" ry="3" />
<ellipse fill="#5e3f25" fill-opacity="0.501961" cx="104" cy="211" rx="5" ry="5" />
<ellipse fill="#9e8a78" fill-opacity="0.501961" cx="104" cy="144" rx="3" ry="3" />
<ellipse fill="#18131b" fill-opacity="0.501961" cx="156" cy="37" rx="9" ry="9" />
<ellipse fill="#caaf71" fill-opacity="0.501961" cx="163" cy="161" rx="3" ry="3" />
<ellipse fill="#080004" fill-opacity="0.501961" cx="164" cy="119" rx="2" ry="2" />
<ellipse fill="#fef4e6" fill-opacity="0.501961" cx="108" cy="149" rx="4" ry="4" />
<ellipse fill="#18151b" fill-opacity="0.501961" cx="213" cy="165" rx="27" ry="27" />
<ellipse fill="#0b0a19" fill-opacity="0.501961" cx="154" cy="139" rx="3" ry="3" />
<ellipse fill="#404143" fill-opacity="0.501961" cx="138" cy="135" rx="2" ry="2" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="74" cy="158" rx="21" ry="21" />
<ellipse fill="#000000" fill-opacity="0.501961" cx="163" cy="100" rx="1" ry="1" />
<ellipse fill="#d7bd76" fill-opacity="0.501961" cx="159" cy="121" rx="3" ry="3" />
<ellipse fill="#5e4332" fill-opacity="0.501961" cx="103" cy="226" rx="4" ry="4" />
<ellipse fill="#0b1015" fill-opacity="0.501961" cx="110" cy="72" rx="3" ry="3" />
<ellipse fill="#f6e8df" fill-opacity="0.501961" cx="72" cy="90" rx="1" ry="1" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="123" cy="142" rx="3" ry="3" />
<ellipse fill="#cdaf73" fill-opacity="0.501961" cx="163" cy="166" rx="3" ry="3" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="48" cy="52" rx="28" ry="28" />
<ellipse fill="#6f84ad" fill-opacity="0.501961" cx="81" cy="61" rx="6" ry="6" />
<ellipse fill="#111831" fill-opacity="0.501961" cx="133" cy="53" rx="4" ry="4" />
<ellipse fill="#ecdaa7" fill-opacity="0.501961" cx="74" cy="77" rx="3" ry="3" />
<ellipse fill="#9a7b62" fill-opacity="0.501961" cx="75" cy="83" rx="3" ry="3" />
<ellipse fill="#d1927c" fill-opacity="0.501961" cx="76" cy="126" rx="2" ry="2" />
<ellipse fill="#878966" fill-opacity="0.501961" cx="184" cy="175" rx="3" ry="3" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="54" cy="197" rx="26" ry="26" />
<ellipse fill="#a77c51" fill-opacity="0.501961" cx="167" cy="163" rx="3" ry="3" />
<ellipse fill="#996839" fill-opacity="0.501961" cx="115" cy="178" rx="6" ry="6" />
<ellipse fill="#0a0004" fill-opacity="0.501961" cx="164" cy="106" rx="2" ry="2" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="127" cy="129" rx="1" ry="1" />
<ellipse fill="#090a05" fill-opacity="0.501961" cx="180" cy="176" rx="2" ry="2" />
<ellipse fill="#d1cdb1" fill-opacity="0.501961" cx="155" cy="80" rx="1" ry="1" />
<ellipse fill="#8a8e99" fill-opacity="0.501961" cx="127" cy="126" rx="1" ry="1" />
<ellipse fill="#191b24" fill-opacity="0.501961" cx="180" cy="125" rx="9" ry="9" />
<ellipse fill="#19151f" fill-opacity="0.501961" cx="137" cy="80" rx="17" ry="17" />
<ellipse fill="#3f4b68" fill-opacity="0.501961" cx="99" cy="72" rx="4" ry="4" />
<ellipse fill="#020000" fill-opacity="0.501961" cx="164" cy="116" rx="2" ry="2" />
<ellipse fill="#d99664" fill-opacity="0.501961" cx="90" cy="98" rx="3" ry="3" />
<ellipse fill="#e1d0b0" fill-opacity="0.501961" cx="170" cy="130" rx="2" ry="2" />
<ellipse fill="#96693a" fill-opacity="0.501961" cx="81" cy="226" rx="5" ry="5" />
<ellipse fill="#4d4339" fill-opacity="0.501961" cx="90" cy="188" rx="5" ry="5" />
<ellipse fill="#ffffee" fill-opacity="0.501961" cx="103" cy="153" rx="3" ry="3" />
<ellipse fill="#775929" fill-opacity="0.501961" cx="166" cy="156" rx="2" ry="2" />
<ellipse fill="#41404b" fill-opacity="0.501961" cx="182" cy="156" rx="3" ry="3" />
<ellipse fill="#706e51" fill-opacity="0.501961" cx="174" cy="156" rx="2" ry="2" />
<ellipse fill="#010207" fill-opacity="0.501961" cx="179" cy="172" rx="2" ry="2" />
<ellipse fill="#bda577" fill-opacity="0.501961" cx="163" cy="157" rx="3" ry="3" />
<ellipse fill="#16121e" fill-opacity="0.501961" cx="151" cy="129" rx="5" ry="5" />
<ellipse fill="#1c1e25" fill-opacity="0.501961" cx="180" cy="146" rx="6" ry="6" />
<ellipse fill="#7f97cb" fill-opacity="0.501961" cx="85" cy="57" rx="5" ry="5" />
<ellipse fill="#39261c" fill-opacity="0.501961" cx="122" cy="150" rx="4" ry="4" />
<ellipse fill="#170000" fill-opacity="0.501961" cx="137" cy="40" rx="1" ry="1" />
<ellipse fill="#362e2b" fill-opacity="0.501961" cx="79" cy="66" rx="1" ry="1" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="142" cy="172" rx="18" ry="18" />
<ellipse fill="#200b03" fill-opacity="0.501961" cx="76" cy="88" rx="2" ry="2" />
<ellipse fill="#4c3d29" fill-opacity="0.501961" cx="100" cy="163" rx="2" ry="2" />
<ellipse fill="#a5b09f" fill-opacity="0.501961" cx="168" cy="175" rx="2" ry="2" />
<ellipse fill="#00000b" fill-opacity="0.501961" cx="177" cy="155" rx="2" ry="2" />
<ellipse fill="#765c3a" fill-opacity="0.501961" cx="132" cy="43" rx="3" ry="3" />
<ellipse fill="#fffff1" fill-opacity="0.501961" cx="101" cy="155" rx="3" ry="3" />
<ellipse fill="#f6debc" fill-opacity="0.501961" cx="132" cy="47" rx="1" ry="1" />
<ellipse fill="#cebe90" fill-opacity="0.501961" cx="171" cy="141" rx="2" ry="2" />
<ellipse fill="#ffe5ce" fill-opacity="0.501961" cx="71" cy="95" rx="2" ry="2" />
<ellipse fill="#4e4031" fill-opacity="0.501961" cx="143" cy="47" rx="4" ry="4" />
<ellipse fill="#5a3d24" fill-opacity="0.501961" cx="127" cy="211" rx="4" ry="4" />
<ellipse fill="#f6c9af" fill-opacity="0.501961" cx="72" cy="108" rx="3" ry="3" />
<ellipse fill="#ffffff" fill-opacity="0.501961" cx="98" cy="158" rx="2" ry="2" />
<ellipse fill="#4d1408" fill-opacity="0.501961" cx="87" cy="125" rx="3" ry="3" />
<ellipse fill="#514765" fill-opacity="0.501961" cx="74" cy="68" rx="2" ry="2" />
<ellipse fill="#7a5425" fill-opacity="0.501961" cx="166" cy="159" rx="2" ry="2" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="50" cy="114" rx="20" ry="20" />
<ellipse fill="#cb8986" fill-opacity="0.501961" cx="82" cy="123" rx="1" ry="1" />
<ellipse fill="#774d41" fill-opacity="0.501961" cx="93" cy="85" rx="3" ry="3" />
<ellipse fill="#303b71" fill-opacity="0.501961" cx="128" cy="67" rx="3" ry="3" />
<ellipse fill="#7787b4" fill-opacity="0.501961" cx="98" cy="48" rx="6" ry="6" />
<ellipse fill="#ffc4a9" fill-opacity="0.501961" cx="80" cy="126" rx="1" ry="1" />
<ellipse fill="#19141a" fill-opacity="0.501961" cx="150" cy="147" rx="7" ry="7" />
<ellipse fill="#6e3f28" fill-opacity="0.501961" cx="85" cy="93" rx="3" ry="3" />
<ellipse fill="#ac9063" fill-opacity="0.501961" cx="155" cy="67" rx="2" ry="2" />
<ellipse fill="#00020b" fill-opacity="0.501961" cx="178" cy="165" rx="2" ry="2" />
<ellipse fill="#8a604e" fill-opacity="0.501961" cx="97" cy="98" rx="3" ry="3" />
<ellipse fill="#9f9971" fill-opacity="0.501961" cx="154" cy="58" rx="1" ry="1" />
<ellipse fill="#eecfbc" fill-opacity="0.501961" cx="71" cy="112" rx="1" ry="1" />
<ellipse fill="#2b1f1c" fill-opacity="0.501961" cx="109" cy="122" rx="5" ry="5" />
<ellipse fill="#fffef7" fill-opacity="0.501961" cx="116" cy="145" rx="4" ry="4" />
<ellipse fill="#8e9f99" fill-opacity="0.501961" cx="175" cy="171" rx="1" ry="1" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="183" cy="65" rx="26" ry="26" />
<ellipse fill="#fffff9" fill-opacity="0.501961" cx="111" cy="39" rx="1" ry="1" />
<ellipse fill="#f5dead" fill-opacity="0.501961" cx="130" cy="39" rx="1" ry="1" />
<ellipse fill="#1a0000" fill-opacity="0.501961" cx="121" cy="34" rx="1" ry="1" />
<ellipse fill="#000000" fill-opacity="0.501961" cx="173" cy="177" rx="1" ry="1" />
<ellipse fill="#6b689c" fill-opacity="0.501961" cx="106" cy="75" rx="2" ry="2" />
<ellipse fill="#c29879" fill-opacity="0.501961" cx="83" cy="135" rx="4" ry="4" />
<ellipse fill="#bdc1c8" fill-opacity="0.501961" cx="133" cy="48" rx="1" ry="1" />
<ellipse fill="#5d3934" fill-opacity="0.501961" cx="106" cy="112" rx="3" ry="3" />
<ellipse fill="#bb9b76" fill-opacity="0.501961" cx="86" cy="82" rx="3" ry="3" />
<ellipse fill="#6b5838" fill-opacity="0.501961" cx="158" cy="108" rx="2" ry="2" />
<ellipse fill="#381d19" fill-opacity="0.501961" cx="85" cy="110" rx="4" ry="4" />
<ellipse fill="#aa907e" fill-opacity="0.501961" cx="72" cy="81" rx="3" ry="3" />
<ellipse fill="#06152e" fill-opacity="0.501961" cx="122" cy="68" rx="3" ry="3" />
<ellipse fill="#5c5244" fill-opacity="0.501961" cx="166" cy="91" rx="2" ry="2" />
<ellipse fill="#130000" fill-opacity="0.501961" cx="168" cy="138" rx="1" ry="1" />
<ellipse fill="#16131b" fill-opacity="0.501961" cx="91" cy="152" rx="7" ry="7" />
<ellipse fill="#18151c" fill-opacity="0.501961" cx="204" cy="170" rx="18" ry="18" />
<ellipse fill="#898775" fill-opacity="0.501961" cx="173" cy="153" rx="2" ry="2" />
<ellipse fill="#201d15" fill-opacity="0.501961" cx="112" cy="138" rx="4" ry="4" />
<ellipse fill="#ffffe7" fill-opacity="0.501961" cx="123" cy="36" rx="1" ry="1" />
<ellipse fill="#694c38" fill-opacity="0.501961" cx="119" cy="152" rx="4" ry="4" />
<ellipse fill="#908269" fill-opacity="0.501961" cx="148" cy="44" rx="2" ry="2" />
<ellipse fill="#2f2110" fill-opacity="0.501961" cx="171" cy="153" rx="2" ry="2" />
<ellipse fill="#241918" fill-opacity="0.501961" cx="94" cy="214" rx="4" ry="4" />
<ellipse fill="#5b4127" fill-opacity="0.501961" cx="109" cy="173" rx="3" ry="3" />
<ellipse fill="#5a4a2d" fill-opacity="0.501961" cx="127" cy="197" rx="3" ry="3" />
<ellipse fill="#4c1b00" fill-opacity="0.501961" cx="76" cy="120" rx="1" ry="1" />
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment