<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg width="1024" height="768"
	xmlns="http://www.w3.org/2000/svg" version="1.1" 
	xmlns:xlink="http://www.w3.org/1999/xlink"
	onload="startup(evt)"
>
<script>
<![CDATA[
var svgDocument;
var xmlns="http://www.w3.org/2000/svg"
function startup(evt) {
	O=evt.target
	svgDocument=O.ownerDocument
	O.setAttribute("onmousedown","click()")

        root = svgDocument.documentElement;
        root.setAttribute("width",screen.width);
        root.setAttribute("height",screen.height);
        svgDocument.getElementById("all").setAttribute(
         "transform","scale("+(screen.width/1024)+","+(screen.height/768)+")");

        init();
}


function init() {
  setTimeout("playSolution(\"title\");waitForSolution();",1000);
}

function click() {
    nextPage();
}

function nextPage() {
 window.location = "02.xml";
}



function playSolution(anim_name) {
    anim = anim_name;
    running = true;
    k = 0;
    frame = 0;
    step();
}

running = false;

function waitForSolution() {
 if (running) {
  setTimeout("waitForSolution()",1000);
 }
 else
 {setTimeout("window.location.reload()",1000);}
}

k = 0;
frame = 0;
fps = 1;
delay = 0;
prevx = 0;
prevy = 0;
var prevstone = null;
nextx = 0;
nexty = 0;
var nextstone = null;
anim = "";
var curseg = null;

function addseg(x1,y1,x2,y2) {
  sol = svgDocument.getElementById(anim+"sol");
    newseg =
    svgDocument.createElementNS("http://www.w3.org/2000/svg","line");
    newseg.setAttribute("x1",x1);
    newseg.setAttribute("y1",y1);
    newseg.setAttribute("x2",x2);
    newseg.setAttribute("y2",y2);
    newseg.setAttribute("stroke", "red");
    newseg.setAttribute("stroke-width", ".4");
    newseg.setAttribute("stroke-linecap", "square");
    sol.appendChild(newseg);
    return newseg;
}

function step(){
    if (k==0) {
	prevstone = svgDocument.getElementById(anim+k);
	prevx=prevstone.getAttribute("cx");
	prevy=prevstone.getAttribute("cy");
	prevstone.setAttribute("fill","grey");
	k++;

        curseg = addseg(prevx,prevy,prevx,prevy);

	nextstone = svgDocument.getElementById(anim+k);
	nextx=nextstone.getAttribute("cx");
	nexty=nextstone.getAttribute("cy");
	k++;
    }
    x = (1*prevx)+frame*((nextx-prevx)/fps);
    y = (1*prevy)+frame*((nexty-prevy)/fps);

//    poly = svgDocument.getElementById(anim+"poly");
//    p = poly.getAttribute("points");
//    poly.setAttribute("points",p+" "+x+","+y);

    curseg.setAttribute("x2",x);
    curseg.setAttribute("y2",y);

    head = svgDocument.getElementById(anim+"head");
    head.setAttribute("transform","translate("+x+","+y+") rotate(45)");
    frame++;
    if (frame > fps) {
	prevstone = nextstone;
	prevx=nextx;
	prevy=nexty;
	prevstone.setAttribute("fill","grey");

        curseg = addseg(prevx,prevy,prevx,prevy);

	nextstone = svgDocument.getElementById(anim+k);
	if (nextstone == null) {
	    running = false;
            return;
	}
	nextx=nextstone.getAttribute("cx");
	nexty=nextstone.getAttribute("cy");
	k++;
	frame=0;
	setTimeout("step()",4*delay);
    }
    else {
	setTimeout("step()",delay);
    }
    
    
}

//]]>
</script>
<g id="all">
<g id="title" transform="translate(50,100) scale(24,24)">
<line x1="0" x2="0" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="1" x2="1" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="2" x2="2" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="3" x2="3" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="4" x2="4" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="5" x2="5" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="6" x2="6" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="7" x2="7" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="8" x2="8" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="9" x2="9" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="10" x2="10" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="11" x2="11" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="12" x2="12" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="13" x2="13" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="14" x2="14" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="15" x2="15" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="16" x2="16" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="17" x2="17" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="18" x2="18" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="19" x2="19" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="20" x2="20" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="21" x2="21" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="22" x2="22" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="23" x2="23" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="24" x2="24" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="25" x2="25" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="26" x2="26" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="27" x2="27" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="28" x2="28" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="29" x2="29" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="30" x2="30" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="31" x2="31" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="32" x2="32" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="33" x2="33" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="34" x2="34" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="35" x2="35" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="36" x2="36" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="37" x2="37" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="38" x2="38" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line x1="39" x2="39" y1="-.5" y2="4.5" stroke="grey" stroke-width=".2"/>
<line y1="0" y2="0" x1="-.5" x2="39.5" stroke="grey" stroke-width=".2"/>
<line y1="1" y2="1" x1="-.5" x2="39.5" stroke="grey" stroke-width=".2"/>
<line y1="2" y2="2" x1="-.5" x2="39.5" stroke="grey" stroke-width=".2"/>
<line y1="3" y2="3" x1="-.5" x2="39.5" stroke="grey" stroke-width=".2"/>
<line y1="4" y2="4" x1="-.5" x2="39.5" stroke="grey" stroke-width=".2"/>
<circle id="title0" cx="0" cy="0" r=".5" />
<circle id="title1" cx="0" cy="1" r=".5" />
<circle id="title2" cx="0" cy="2" r=".5" />
<circle id="title3" cx="1" cy="2" r=".5" />
<circle id="title4" cx="2" cy="2" r=".5" />
<circle id="title5" cx="3" cy="2" r=".5" />
<circle id="title6" cx="3" cy="3" r=".5" />
<circle id="title7" cx="3" cy="4" r=".5" />
<circle id="title8" cx="0" cy="4" r=".5" />
<circle id="title9" cx="0" cy="3" r=".5" />
<circle id="title10" cx="5" cy="3" r=".5" />
<circle id="title11" cx="5" cy="2" r=".5" />
<circle id="title12" cx="5" cy="1" r=".5" />
<circle id="title13" cx="3" cy="1" r=".5" />
<circle id="title14" cx="3" cy="0" r=".5" />
<circle id="title15" cx="5" cy="0" r=".5" />
<circle id="title16" cx="5" cy="4" r=".5" />
<circle id="title17" cx="7" cy="4" r=".5" />
<circle id="title18" cx="10" cy="4" r=".5" />
<circle id="title19" cx="10" cy="2" r=".5" />
<circle id="title20" cx="10" cy="1" r=".5" />
<circle id="title21" cx="7" cy="1" r=".5" />
<circle id="title22" cx="7" cy="0" r=".5" />
<circle id="title23" cx="8" cy="0" r=".5" />
<circle id="title24" cx="9" cy="0" r=".5" />
<circle id="title25" cx="9" cy="2" r=".5" />
<circle id="title26" cx="9" cy="3" r=".5" />
<circle id="title27" cx="7" cy="3" r=".5" />
<circle id="title28" cx="7" cy="2" r=".5" />
<circle id="title29" cx="8" cy="2" r=".5" />
<circle id="title30" cx="12" cy="2" r=".5" />
<circle id="title31" cx="15" cy="2" r=".5" />
<circle id="title32" cx="15" cy="1" r=".5" />
<circle id="title33" cx="12" cy="1" r=".5" />
<circle id="title34" cx="12" cy="3" r=".5" />
<circle id="title35" cx="15" cy="3" r=".5" />
<circle id="title36" cx="17" cy="3" r=".5" />
<circle id="title37" cx="17" cy="2" r=".5" />
<circle id="title38" cx="17" cy="1" r=".5" />
<circle id="title39" cx="17" cy="0" r=".5" />
<circle id="title40" cx="14" cy="0" r=".5" />
<circle id="title41" cx="13" cy="0" r=".5" />
<circle id="title42" cx="13" cy="4" r=".5" />
<circle id="title43" cx="14" cy="4" r=".5" />
<circle id="title44" cx="17" cy="4" r=".5" />
<circle id="title45" cx="19" cy="4" r=".5" />
<circle id="title46" cx="19" cy="3" r=".5" />
<circle id="title47" cx="19" cy="2" r=".5" />
<circle id="title48" cx="21" cy="2" r=".5" />
<circle id="title49" cx="23" cy="2" r=".5" />
<circle id="title50" cx="23" cy="1" r=".5" />
<circle id="title51" cx="22" cy="1" r=".5" />
<circle id="title52" cx="20" cy="1" r=".5" />
<circle id="title53" cx="19" cy="1" r=".5" />
<circle id="title54" cx="19" cy="0" r=".5" />
<circle id="title55" cx="23" cy="0" r=".5" />
<circle id="title56" cx="23" cy="3" r=".5" />
<circle id="title57" cx="23" cy="4" r=".5" />
<circle id="title58" cx="26" cy="4" r=".5" />
<circle id="title59" cx="26" cy="0" r=".5" />
<circle id="title60" cx="27" cy="0" r=".5" />
<circle id="title61" cx="27" cy="4" r=".5" />
<circle id="title62" cx="30" cy="4" r=".5" />
<circle id="title63" cx="30" cy="3" r=".5" />
<circle id="title64" cx="30" cy="2" r=".5" />
<circle id="title65" cx="30" cy="1" r=".5" />
<circle id="title66" cx="30" cy="0" r=".5" />
<circle id="title67" cx="34" cy="0" r=".5" />
<circle id="title68" cx="37" cy="0" r=".5" />
<circle id="title69" cx="38" cy="0" r=".5" />
<circle id="title70" cx="38" cy="4" r=".5" />
<circle id="title71" cx="37" cy="4" r=".5" />
<circle id="title72" cx="34" cy="4" r=".5" />
<circle id="title73" cx="34" cy="3" r=".5" />
<circle id="title74" cx="34" cy="2" r=".5" />
<circle id="title75" cx="32" cy="2" r=".5" />
<circle id="title76" cx="28" cy="2" r=".5" />
<circle id="title77" cx="28" cy="3" r=".5" />
<circle id="title78" cx="33" cy="3" r=".5" />
<circle id="title79" cx="36" cy="3" r=".5" />
<circle id="title80" cx="36" cy="2" r=".5" />
<circle id="title81" cx="36" cy="1" r=".5" />
<circle id="title82" cx="34" cy="1" r=".5" />
<circle id="title83" cx="31" cy="1" r=".5" />
<circle id="title84" cx="28" cy="1" r=".5" />
<circle id="title85" cx="25" cy="1" r=".5" />
<circle id="title86" cx="25" cy="2" r=".5" />
<circle id="title87" cx="25" cy="3" r=".5" />
<circle id="title88" cx="39" cy="3" r=".5" />
<circle id="title89" cx="39" cy="2" r=".5" />
<circle id="title90" cx="39" cy="1" r=".5" />
<polyline id="titlepoly" points="" fill="none" stroke="red" stroke-width=".4"/>
<rect id="titlehead" transform="scale(0,0)" x="-.5" y="-.5" width="1"
height="1" fill="red"/>
<g id="titlesol">
</g>
</g>


  <defs
     id="defs4714" />
  <g
     id="layer1">
    <path
       d="M 139.42383,335.3125 L 148.4082,335.3125 L 148.4082,390 L 139.42383,390 L 139.42383,335.3125 M 139.42383,314.02344 L 148.4082,314.02344 L 148.4082,325.40039 L 139.42383,325.40039 L 139.42383,314.02344 M 202.02148,336.92383 L 202.02148,345.41992 C 199.48238,344.11788 196.84566,343.14132 194.11133,342.49023 C 191.37692,341.83924 188.54489,341.51372 185.61523,341.51367 C 181.15558,341.51372 177.80271,342.19731 175.55664,343.56445 C 173.34308,344.93169 172.23631,346.98246 172.23633,349.7168 C 172.23631,351.80017 173.03384,353.44405 174.62891,354.64844 C 176.22394,355.82035 179.43032,356.94339 184.24805,358.01758 L 187.32422,358.70117 C 193.70439,360.06839 198.22913,362.00524 200.89844,364.51172 C 203.60021,366.9857 204.95112,370.45249 204.95117,374.91211 C 204.95112,379.99024 202.9329,384.01042 198.89648,386.97266 C 194.89254,389.9349 189.37497,391.41601 182.34375,391.41602 C 179.41404,391.41601 176.35415,391.12305 173.16406,390.53711 C 170.0065,389.98372 166.66991,389.13737 163.1543,387.99805 L 163.1543,378.7207 C 166.4746,380.44597 169.74608,381.74806 172.96875,382.62695 C 176.19139,383.47331 179.38149,383.89649 182.53906,383.89648 C 186.7708,383.89649 190.02601,383.18035 192.30469,381.74805 C 194.5833,380.28321 195.72262,378.23243 195.72266,375.5957 C 195.72262,373.15431 194.89254,371.28257 193.23242,369.98047 C 191.60478,368.67841 188.00778,367.42515 182.44141,366.2207 L 179.31641,365.48828 C 173.74998,364.31643 169.72981,362.52607 167.25586,360.11719 C 164.78189,357.67581 163.54492,354.33923 163.54492,350.10742 C 163.54492,344.96424 165.36783,340.99289 169.01367,338.19336 C 172.65949,335.39393 177.83527,333.9942 184.54102,333.99414 C 187.8613,333.9942 190.98629,334.23834 193.91602,334.72656 C 196.84566,335.2149 199.54748,335.94732 202.02148,336.92383 M 250.70312,317.09961 L 271.69922,317.09961 L 298.21289,367.09961 L 298.21289,317.09961 L 316.03516,317.09961 L 316.03516,390 L 295.03906,390 L 268.52539,340 L 268.52539,390 L 250.70312,390 L 250.70312,317.09961 M 334.29688,317.09961 L 365.49805,317.09961 C 374.77534,317.09968 381.88796,319.16674 386.83594,323.30078 C 391.81634,327.40241 394.30657,333.26178 394.30664,340.87891 C 394.30657,348.52869 391.81634,354.42061 386.83594,358.55469 C 381.88796,362.65628 374.77534,364.70706 365.49805,364.70703 L 353.0957,364.70703 L 353.0957,390 L 334.29688,390 L 334.29688,317.09961 M 353.0957,330.72266 L 353.0957,351.08398 L 363.49609,351.08398 C 367.14189,351.08402 369.95764,350.20512 371.94336,348.44727 C 373.92899,346.65694 374.92183,344.13416 374.92188,340.87891 C 374.92183,337.62375 373.92899,335.11724 371.94336,333.35938 C 369.95764,331.60162 367.14189,330.72272 363.49609,330.72266 L 353.0957,330.72266 M 403.24219,358.60352 L 429.56055,358.60352 L 429.56055,366.61133 L 403.24219,366.61133 L 403.24219,358.60352 M 483.27148,337.41211 L 483.27148,345.81055 C 480.73238,344.41085 478.17704,343.36919 475.60547,342.68555 C 473.06637,341.96945 470.49476,341.61138 467.89062,341.61133 C 462.06377,341.61138 457.53904,343.46684 454.31641,347.17773 C 451.09373,350.85616 449.48241,356.03194 449.48242,362.70508 C 449.48241,369.37828 451.09373,374.57033 454.31641,378.28125 C 457.53904,381.95964 462.06377,383.79883 467.89062,383.79883 C 470.49476,383.79883 473.06637,383.45704 475.60547,382.77344 C 478.17704,382.0573 480.73238,380.99936 483.27148,379.59961 L 483.27148,387.90039 C 480.76493,389.07227 478.16076,389.95117 475.45898,390.53711 C 472.78968,391.12305 469.94137,391.41601 466.91406,391.41602 C 458.67836,391.41601 452.1354,388.82813 447.28516,383.65234 C 442.43489,378.47657 440.00976,371.49416 440.00977,362.70508 C 440.00976,353.78584 442.45116,346.77088 447.33398,341.66016 C 452.24933,336.54953 458.97133,333.9942 467.5,333.99414 C 470.26689,333.9942 472.96871,334.28717 475.60547,334.87305 C 478.24214,335.42649 480.79748,336.27284 483.27148,337.41211 M 520.18555,341.61133 C 515.36781,341.61138 511.55922,343.4994 508.75977,347.27539 C 505.96027,351.01892 504.56053,356.16214 504.56055,362.70508 C 504.56053,369.24807 505.94399,374.40757 508.71094,378.18359 C 511.51039,381.92709 515.33526,383.79883 520.18555,383.79883 C 524.97067,383.79883 528.76298,381.91082 531.5625,378.13477 C 534.36193,374.35874 535.76167,369.21552 535.76172,362.70508 C 535.76167,356.22725 534.36193,351.1003 531.5625,347.32422 C 528.76298,343.51567 524.97067,341.61138 520.18555,341.61133 M 520.18555,333.99414 C 527.99801,333.9942 534.13407,336.53326 538.59375,341.61133 C 543.05333,346.6895 545.28315,353.72074 545.2832,362.70508 C 545.28315,371.65692 543.05333,378.68816 538.59375,383.79883 C 534.13407,388.87695 527.99801,391.41601 520.18555,391.41602 C 512.34047,391.41601 506.18813,388.87695 501.72852,383.79883 C 497.30142,378.68816 495.08789,371.65692 495.08789,362.70508 C 495.08789,353.72074 497.30142,346.6895 501.72852,341.61133 C 506.18813,336.53326 512.34047,333.9942 520.18555,333.99414 M 602.70508,345.81055 C 604.95112,341.77414 607.63666,338.79562 610.76172,336.875 C 613.88666,334.95448 617.56504,333.9942 621.79688,333.99414 C 627.49341,333.9942 631.88794,335.99615 634.98047,340 C 638.07283,343.9714 639.61905,349.63546 639.61914,356.99219 L 639.61914,390 L 630.58594,390 L 630.58594,357.28516 C 630.58586,352.04431 629.65812,348.15434 627.80273,345.61523 C 625.94719,343.07622 623.11516,341.80669 619.30664,341.80664 C 614.65163,341.80669 610.97325,343.35291 608.27148,346.44531 C 605.56961,349.5378 604.2187,353.75329 604.21875,359.0918 L 604.21875,390 L 595.18555,390 L 595.18555,357.28516 C 595.1855,352.01176 594.25777,348.12179 592.40234,345.61523 C 590.54684,343.07622 587.68225,341.80669 583.80859,341.80664 C 579.21872,341.80669 575.57289,343.36919 572.87109,346.49414 C 570.16925,349.58663 568.81834,353.78584 568.81836,359.0918 L 568.81836,390 L 559.78516,390 L 559.78516,335.3125 L 568.81836,335.3125 L 568.81836,343.80859 C 570.86912,340.45578 573.3268,337.98182 576.19141,336.38672 C 579.05596,334.79172 582.45765,333.9942 586.39648,333.99414 C 590.3678,333.9942 593.73694,335.00331 596.50391,337.02148 C 599.30334,339.03976 601.37039,341.96945 602.70508,345.81055 M 666.08398,381.79688 L 666.08398,410.80078 L 657.05078,410.80078 L 657.05078,335.3125 L 666.08398,335.3125 L 666.08398,343.61328 C 667.97199,340.35812 670.34828,337.94927 673.21289,336.38672 C 676.11,334.79172 679.56052,333.9942 683.56445,333.99414 C 690.20504,333.9942 695.5924,336.63091 699.72656,341.9043 C 703.89317,347.17778 705.9765,354.11136 705.97656,362.70508 C 705.9765,371.29885 703.89317,378.23243 699.72656,383.50586 C 695.5924,388.7793 690.20504,391.41601 683.56445,391.41602 C 679.56052,391.41601 676.11,390.63476 673.21289,389.07227 C 670.34828,387.47722 667.97199,385.05209 666.08398,381.79688 M 696.65039,362.70508 C 696.65034,356.09704 695.28316,350.92126 692.54883,347.17773 C 689.84696,343.40174 686.11975,341.51372 681.36719,341.51367 C 676.61455,341.51372 672.87107,343.40174 670.13672,347.17773 C 667.43488,350.92126 666.08397,356.09704 666.08398,362.70508 C 666.08397,369.31317 667.43488,374.50522 670.13672,378.28125 C 672.87107,382.02475 676.61455,383.89649 681.36719,383.89648 C 686.11975,383.89649 689.84696,382.02475 692.54883,378.28125 C 695.28316,374.50522 696.65034,369.31317 696.65039,362.70508 M 720.86914,314.02344 L 729.85352,314.02344 L 729.85352,390 L 720.86914,390 L 720.86914,314.02344 M 795.38086,360.41016 L 795.38086,364.80469 L 754.07227,364.80469 C 754.46288,370.9896 756.31834,375.70965 759.63867,378.96484 C 762.99151,382.18751 767.64646,383.79883 773.60352,383.79883 C 777.054,383.79883 780.39058,383.37566 783.61328,382.5293 C 786.86844,381.68295 790.09109,380.41342 793.28125,378.7207 L 793.28125,387.2168 C 790.05854,388.58399 786.75451,389.62565 783.36914,390.3418 C 779.98368,391.05794 776.54944,391.41601 773.06641,391.41602 C 764.34242,391.41601 757.42511,388.87695 752.31445,383.79883 C 747.23632,378.72071 744.69726,371.85223 744.69727,363.19336 C 744.69726,354.24157 747.10611,347.14523 751.92383,341.9043 C 756.77407,336.63091 763.30076,333.9942 771.50391,333.99414 C 778.86064,333.9942 784.67118,336.3705 788.93555,341.12305 C 793.23237,345.84314 795.3808,352.27217 795.38086,360.41016 M 786.39648,357.77344 C 786.33133,352.85811 784.94787,348.93559 782.24609,346.00586 C 779.57678,343.07622 776.02861,341.61138 771.60156,341.61133 C 766.58851,341.61138 762.56834,343.02739 759.54102,345.85938 C 756.54621,348.69145 754.82095,352.67907 754.36523,357.82227 L 786.39648,357.77344 M 818.81836,319.78516 L 818.81836,335.3125 L 837.32422,335.3125 L 837.32422,342.29492 L 818.81836,342.29492 L 818.81836,371.98242 C 818.81834,376.44207 819.42055,379.30665 820.625,380.57617 C 821.86196,381.84571 824.35219,382.48048 828.0957,382.48047 L 837.32422,382.48047 L 837.32422,390 L 828.0957,390 C 821.16209,390 816.37694,388.71419 813.74023,386.14258 C 811.10351,383.53842 809.78515,378.81837 809.78516,371.98242 L 809.78516,342.29492 L 803.19336,342.29492 L 803.19336,335.3125 L 809.78516,335.3125 L 809.78516,319.78516 L 818.81836,319.78516 M 895.9668,360.41016 L 895.9668,364.80469 L 854.6582,364.80469 C 855.04881,370.9896 856.90428,375.70965 860.22461,378.96484 C 863.57745,382.18751 868.23239,383.79883 874.18945,383.79883 C 877.63994,383.79883 880.97652,383.37566 884.19922,382.5293 C 887.45438,381.68295 890.67703,380.41342 893.86719,378.7207 L 893.86719,387.2168 C 890.64448,388.58399 887.34045,389.62565 883.95508,390.3418 C 880.56962,391.05794 877.13538,391.41601 873.65234,391.41602 C 864.92836,391.41601 858.01105,388.87695 852.90039,383.79883 C 847.82226,378.72071 845.2832,371.85223 845.2832,363.19336 C 845.2832,354.24157 847.69205,347.14523 852.50977,341.9043 C 857.36001,336.63091 863.88669,333.9942 872.08984,333.99414 C 879.44657,333.9942 885.25712,336.3705 889.52148,341.12305 C 893.81831,345.84314 895.96674,352.27217 895.9668,360.41016 M 886.98242,357.77344 C 886.91727,352.85811 885.53381,348.93559 882.83203,346.00586 C 880.16272,343.07622 876.61455,341.61138 872.1875,341.61133 C 867.17445,341.61138 863.15427,343.02739 860.12695,345.85938 C 857.13214,348.69145 855.40689,352.67907 854.95117,357.82227 L 886.98242,357.77344"
       style="font-size:100px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       id="text2013" />
    <image
       xlink:href="seglxfff.gif"
       x="450.19531"
       y="571.5"
       width="135"
       height="135"
       id="image3344" />
    <image
       xlink:href="brics_black.png"
       x="628"
       y="620.5"
       width="200.82759"
       height="39"
       id="image3528" />
    <image
       xlink:href="cagt_grey.png"
       x="227.88794"
       y="606"
       width="180.61208"
       height="73"
       id="image3712" />
    <path
       d="M 366.74316,469.60901 L 366.74316,490.01721 L 371.03223,490.01721 C 374.65331,490.01721 377.30174,489.1969 378.97754,487.55627 C 380.66502,485.91566 381.50877,483.32582 381.50879,479.78674 C 381.50877,476.27113 380.66502,473.69887 378.97754,472.06995 C 377.30174,470.42934 374.65331,469.60903 371.03223,469.60901 L 366.74316,469.60901 M 363.19238,466.69104 L 370.4873,466.69104 C 375.57323,466.69107 379.30564,467.75161 381.68457,469.87268 C 384.06345,471.98208 385.2529,475.28676 385.25293,479.78674 C 385.2529,484.31019 384.05759,487.63245 381.66699,489.75354 C 379.27635,491.87463 375.54979,492.93518 370.4873,492.93518 L 363.19238,492.93518 L 363.19238,466.69104 M 399.70215,483.0387 C 397.08886,483.03871 395.27831,483.33753 394.27051,483.93518 C 393.26269,484.53285 392.75878,485.55238 392.75879,486.99377 C 392.75878,488.14222 393.13378,489.05628 393.88379,489.73596 C 394.6455,490.40393 395.67675,490.73792 396.97754,490.73792 C 398.7705,490.73792 400.20604,490.10511 401.28418,488.83948 C 402.37401,487.56214 402.91893,485.86878 402.91895,483.7594 L 402.91895,483.0387 L 399.70215,483.0387 M 406.15332,481.70276 L 406.15332,492.93518 L 402.91895,492.93518 L 402.91895,489.9469 C 402.18065,491.14221 401.26073,492.02698 400.15918,492.6012 C 399.05761,493.1637 397.70995,493.44495 396.11621,493.44495 C 394.10058,493.44495 392.49511,492.88245 391.2998,491.75745 C 390.11621,490.62073 389.52441,489.10315 389.52441,487.20471 C 389.52441,484.98988 390.26269,483.31996 391.73926,482.19495 C 393.22753,481.06996 395.44237,480.50746 398.38379,480.50745 L 402.91895,480.50745 L 402.91895,480.19104 C 402.91893,478.70277 402.42674,477.55434 401.44238,476.74573 C 400.46971,475.92543 399.09862,475.51528 397.3291,475.51526 C 396.20409,475.51528 395.10839,475.65004 394.04199,475.91956 C 392.97558,476.1891 391.95019,476.5934 390.96582,477.13245 L 390.96582,474.14417 C 392.14941,473.68715 393.29785,473.34731 394.41113,473.12463 C 395.52441,472.89028 396.60839,472.77309 397.66309,472.77307 C 400.51073,472.77309 402.63768,473.51137 404.04395,474.98792 C 405.45018,476.46449 406.1533,478.70277 406.15332,481.70276 M 429.26855,481.05237 L 429.26855,492.93518 L 426.03418,492.93518 L 426.03418,481.15784 C 426.03416,479.29457 425.67088,477.90004 424.94434,476.97424 C 424.21776,476.04848 423.12792,475.58559 421.6748,475.58557 C 419.9287,475.58559 418.55175,476.14223 417.54395,477.25549 C 416.53613,478.36879 416.03222,479.88637 416.03223,481.80823 L 416.03223,492.93518 L 412.78027,492.93518 L 412.78027,473.24768 L 416.03223,473.24768 L 416.03223,476.30627 C 416.80566,475.1227 417.71386,474.23793 418.75684,473.65198 C 419.81151,473.06606 421.0244,472.77309 422.39551,472.77307 C 424.65721,472.77309 426.36815,473.47622 427.52832,474.88245 C 428.68846,476.27699 429.26853,478.33363 429.26855,481.05237 M 435.75488,473.24768 L 438.98926,473.24768 L 438.98926,492.93518 L 435.75488,492.93518 L 435.75488,473.24768 M 435.75488,465.58362 L 438.98926,465.58362 L 438.98926,469.67932 L 435.75488,469.67932 L 435.75488,465.58362 M 462.5791,482.28284 L 462.5791,483.86487 L 447.70801,483.86487 C 447.84863,486.09144 448.5166,487.79065 449.71191,488.96252 C 450.91894,490.12268 452.59472,490.70276 454.73926,490.70276 C 455.98143,490.70276 457.1826,490.55042 458.34277,490.24573 C 459.51463,489.94104 460.67479,489.48401 461.82324,488.87463 L 461.82324,491.93323 C 460.66307,492.42542 459.47362,492.80042 458.25488,493.05823 C 457.03612,493.31604 455.79979,493.44495 454.5459,493.44495 C 451.40526,493.44495 448.91503,492.53088 447.0752,490.70276 C 445.24707,488.87464 444.33301,486.40198 444.33301,483.28479 C 444.33301,480.06215 445.20019,477.50746 446.93457,475.62073 C 448.68066,473.72231 451.03026,472.77309 453.9834,472.77307 C 456.63182,472.77309 458.72362,473.62856 460.25879,475.33948 C 461.80564,477.03871 462.57908,479.35316 462.5791,482.28284 M 459.34473,481.33362 C 459.32127,479.5641 458.82323,478.15199 457.85059,477.09729 C 456.88963,476.04262 455.61229,475.51528 454.01855,475.51526 C 452.21386,475.51528 450.76659,476.02504 449.67676,477.04456 C 448.59863,478.0641 447.97753,479.49965 447.81348,481.3512 L 459.34473,481.33362 M 467.81738,465.58362 L 471.05176,465.58362 L 471.05176,492.93518 L 467.81738,492.93518 L 467.81738,465.58362 M 498.1748,470.18909 L 493.3584,483.24963 L 503.00879,483.24963 L 498.1748,470.18909 M 496.1709,466.69104 L 500.19629,466.69104 L 510.19824,492.93518 L 506.50684,492.93518 L 504.11621,486.20276 L 492.28613,486.20276 L 489.89551,492.93518 L 486.15137,492.93518 L 496.1709,466.69104 M 530.2373,481.05237 L 530.2373,492.93518 L 527.00293,492.93518 L 527.00293,481.15784 C 527.00291,479.29457 526.63963,477.90004 525.91309,476.97424 C 525.18651,476.04848 524.09667,475.58559 522.64355,475.58557 C 520.89745,475.58559 519.5205,476.14223 518.5127,477.25549 C 517.50488,478.36879 517.00097,479.88637 517.00098,481.80823 L 517.00098,492.93518 L 513.74902,492.93518 L 513.74902,473.24768 L 517.00098,473.24768 L 517.00098,476.30627 C 517.77441,475.1227 518.68261,474.23793 519.72559,473.65198 C 520.78026,473.06606 521.99315,472.77309 523.36426,472.77307 C 525.62596,472.77309 527.3369,473.47622 528.49707,474.88245 C 529.65721,476.27699 530.23728,478.33363 530.2373,481.05237 M 549.67871,476.23596 L 549.67871,465.58362 L 552.91309,465.58362 L 552.91309,492.93518 L 549.67871,492.93518 L 549.67871,489.98206 C 548.99901,491.15393 548.13768,492.02698 547.09473,492.6012 C 546.06346,493.1637 544.82128,493.44495 543.36816,493.44495 C 540.98925,493.44495 539.0498,492.49573 537.5498,490.59729 C 536.06152,488.69886 535.31738,486.20277 535.31738,483.10901 C 535.31738,480.01527 536.06152,477.51918 537.5498,475.62073 C 539.0498,473.72231 540.98925,472.77309 543.36816,472.77307 C 544.82128,472.77309 546.06346,473.0602 547.09473,473.6344 C 548.13768,474.19692 548.99901,475.0641 549.67871,476.23596 M 538.65723,483.10901 C 538.65722,485.48792 539.14355,487.35706 540.11621,488.71643 C 541.10058,490.06409 542.44823,490.73792 544.15918,490.73792 C 545.8701,490.73792 547.21776,490.06409 548.20215,488.71643 C 549.18651,487.35706 549.67869,485.48792 549.67871,483.10901 C 549.67869,480.73011 549.18651,478.86684 548.20215,477.51917 C 547.21776,476.15981 545.8701,475.48012 544.15918,475.4801 C 542.44823,475.48012 541.10058,476.15981 540.11621,477.51917 C 539.14355,478.86684 538.65722,480.73011 538.65723,483.10901 M 576.41504,482.28284 L 576.41504,483.86487 L 561.54395,483.86487 C 561.68456,486.09144 562.35253,487.79065 563.54785,488.96252 C 564.75487,490.12268 566.43065,490.70276 568.5752,490.70276 C 569.81737,490.70276 571.01854,490.55042 572.17871,490.24573 C 573.35057,489.94104 574.51072,489.48401 575.65918,488.87463 L 575.65918,491.93323 C 574.49901,492.42542 573.30955,492.80042 572.09082,493.05823 C 570.87206,493.31604 569.63573,493.44495 568.38184,493.44495 C 565.2412,493.44495 562.75097,492.53088 560.91113,490.70276 C 559.083,488.87464 558.16894,486.40198 558.16895,483.28479 C 558.16894,480.06215 559.03613,477.50746 560.77051,475.62073 C 562.5166,473.72231 564.8662,472.77309 567.81934,472.77307 C 570.46776,472.77309 572.55955,473.62856 574.09473,475.33948 C 575.64158,477.03871 576.41502,479.35316 576.41504,482.28284 M 573.18066,481.33362 C 573.15721,479.5641 572.65916,478.15199 571.68652,477.09729 C 570.72557,476.04262 569.44823,475.51528 567.85449,475.51526 C 566.04979,475.51528 564.60253,476.02504 563.5127,477.04456 C 562.43456,478.0641 561.81347,479.49965 561.64941,481.3512 L 573.18066,481.33362 M 593.06152,476.27112 C 592.69823,476.0602 592.29979,475.90785 591.86621,475.81409 C 591.44432,475.70864 590.97557,475.6559 590.45996,475.65588 C 588.63183,475.6559 587.22558,476.25356 586.24121,477.44885 C 585.26855,478.63246 584.78222,480.33754 584.78223,482.56409 L 584.78223,492.93518 L 581.53027,492.93518 L 581.53027,473.24768 L 584.78223,473.24768 L 584.78223,476.30627 C 585.46191,475.11098 586.34667,474.22621 587.43652,473.65198 C 588.52636,473.06606 589.85057,472.77309 591.40918,472.77307 C 591.63182,472.77309 591.87792,472.79067 592.14746,472.82581 C 592.41698,472.84926 592.71581,472.89028 593.04395,472.94885 L 593.06152,476.27112 M 608.96973,473.82776 L 608.96973,476.88635 C 608.05565,476.41762 607.10643,476.06606 606.12207,475.83167 C 605.13768,475.59731 604.11815,475.48012 603.06348,475.4801 C 601.458,475.48012 600.25097,475.72621 599.44238,476.21838 C 598.6455,476.71059 598.24707,477.44887 598.24707,478.43323 C 598.24707,479.18324 598.53417,479.77504 599.1084,480.20862 C 599.68261,480.63051 600.83691,481.0348 602.57129,481.42151 L 603.67871,481.6676 C 605.97557,482.1598 607.60448,482.85707 608.56543,483.7594 C 609.53807,484.65003 610.0244,485.89808 610.02441,487.50354 C 610.0244,489.33167 609.29784,490.77893 607.84473,491.84534 C 606.40331,492.91174 604.41698,493.44495 601.88574,493.44495 C 600.83105,493.44495 599.72949,493.33948 598.58105,493.12854 C 597.44433,492.92932 596.24316,492.62463 594.97754,492.21448 L 594.97754,488.87463 C 596.17285,489.49573 597.35058,489.96448 598.51074,490.28088 C 599.67089,490.58557 600.81933,490.73792 601.95605,490.73792 C 603.47948,490.73792 604.65136,490.4801 605.47168,489.96448 C 606.29198,489.43714 606.70213,488.69886 606.70215,487.74963 C 606.70213,486.87073 606.40331,486.19691 605.80566,485.72815 C 605.21971,485.25941 603.92479,484.80824 601.9209,484.37463 L 600.7959,484.11096 C 598.79199,483.6891 597.34472,483.04457 596.4541,482.17737 C 595.56347,481.29847 595.11816,480.0973 595.11816,478.57385 C 595.11816,476.72231 595.77441,475.29262 597.08691,474.28479 C 598.39941,473.277 600.26269,472.77309 602.67676,472.77307 C 603.87206,472.77309 604.99706,472.86098 606.05176,473.03674 C 607.10643,473.21254 608.07909,473.47622 608.96973,473.82776 M 627.67285,473.82776 L 627.67285,476.88635 C 626.75877,476.41762 625.80956,476.06606 624.8252,475.83167 C 623.84081,475.59731 622.82128,475.48012 621.7666,475.4801 C 620.16112,475.48012 618.95409,475.72621 618.14551,476.21838 C 617.34863,476.71059 616.95019,477.44887 616.9502,478.43323 C 616.95019,479.18324 617.2373,479.77504 617.81152,480.20862 C 618.38574,480.63051 619.54003,481.0348 621.27441,481.42151 L 622.38184,481.6676 C 624.6787,482.1598 626.3076,482.85707 627.26855,483.7594 C 628.24119,484.65003 628.72752,485.89808 628.72754,487.50354 C 628.72752,489.33167 628.00096,490.77893 626.54785,491.84534 C 625.10643,492.91174 623.12011,493.44495 620.58887,493.44495 C 619.53417,493.44495 618.43261,493.33948 617.28418,493.12854 C 616.14746,492.92932 614.94629,492.62463 613.68066,492.21448 L 613.68066,488.87463 C 614.87597,489.49573 616.05371,489.96448 617.21387,490.28088 C 618.37402,490.58557 619.52245,490.73792 620.65918,490.73792 C 622.18261,490.73792 623.35448,490.4801 624.1748,489.96448 C 624.9951,489.43714 625.40526,488.69886 625.40527,487.74963 C 625.40526,486.87073 625.10643,486.19691 624.50879,485.72815 C 623.92284,485.25941 622.62792,484.80824 620.62402,484.37463 L 619.49902,484.11096 C 617.49511,483.6891 616.04785,483.04457 615.15723,482.17737 C 614.2666,481.29847 613.82129,480.0973 613.82129,478.57385 C 613.82129,476.72231 614.47754,475.29262 615.79004,474.28479 C 617.10253,473.277 618.96581,472.77309 621.37988,472.77307 C 622.57518,472.77309 623.70018,472.86098 624.75488,473.03674 C 625.80956,473.21254 626.78221,473.47622 627.67285,473.82776 M 641.4541,475.51526 C 639.71972,475.51528 638.34862,476.19496 637.34082,477.55432 C 636.333,478.90199 635.8291,480.75355 635.8291,483.10901 C 635.8291,485.46449 636.32714,487.32191 637.32324,488.68127 C 638.33105,490.02893 639.708,490.70276 641.4541,490.70276 C 643.17675,490.70276 644.54198,490.02307 645.5498,488.6637 C 646.5576,487.30433 647.06151,485.45277 647.06152,483.10901 C 647.06151,480.77699 646.5576,478.93129 645.5498,477.5719 C 644.54198,476.20082 643.17675,475.51528 641.4541,475.51526 M 641.4541,472.77307 C 644.26659,472.77309 646.47557,473.68715 648.08105,475.51526 C 649.6865,477.3434 650.48924,479.87465 650.48926,483.10901 C 650.48924,486.33167 649.6865,488.86292 648.08105,490.70276 C 646.47557,492.53088 644.26659,493.44495 641.4541,493.44495 C 638.62987,493.44495 636.41503,492.53088 634.80957,490.70276 C 633.21582,488.86292 632.41894,486.33167 632.41895,483.10901 C 632.41894,479.87465 633.21582,477.3434 634.80957,475.51526 C 636.41503,473.68715 638.62987,472.77309 641.4541,472.77307 M 672.19824,481.05237 L 672.19824,492.93518 L 668.96387,492.93518 L 668.96387,481.15784 C 668.96385,479.29457 668.60057,477.90004 667.87402,476.97424 C 667.14745,476.04848 666.0576,475.58559 664.60449,475.58557 C 662.85839,475.58559 661.48144,476.14223 660.47363,477.25549 C 659.46581,478.36879 658.96191,479.88637 658.96191,481.80823 L 658.96191,492.93518 L 655.70996,492.93518 L 655.70996,473.24768 L 658.96191,473.24768 L 658.96191,476.30627 C 659.73534,475.1227 660.64355,474.23793 661.68652,473.65198 C 662.7412,473.06606 663.95409,472.77309 665.3252,472.77307 C 667.5869,472.77309 669.29783,473.47622 670.45801,474.88245 C 671.61814,476.27699 672.19822,478.33363 672.19824,481.05237 M 396.18652,511.69104 L 399.75488,511.69104 L 399.75488,527.6344 C 399.75488,530.44691 400.26464,532.47425 401.28418,533.71643 C 402.3037,534.9469 403.95604,535.56214 406.24121,535.56213 C 408.51463,535.56214 410.16112,534.9469 411.18066,533.71643 C 412.20018,532.47425 412.70994,530.44691 412.70996,527.6344 L 412.70996,511.69104 L 416.27832,511.69104 L 416.27832,528.07385 C 416.2783,531.49573 415.42869,534.07972 413.72949,535.82581 C 412.04197,537.5719 409.54588,538.44495 406.24121,538.44495 C 402.92479,538.44495 400.41698,537.5719 398.71777,535.82581 C 397.03027,534.07972 396.18652,531.49573 396.18652,528.07385 L 396.18652,511.69104 M 423.27441,533.47034 L 426.9834,533.47034 L 426.9834,537.93518 L 423.27441,537.93518 L 423.27441,533.47034 M 454.65137,515.18909 L 449.83496,528.24963 L 459.48535,528.24963 L 454.65137,515.18909 M 452.64746,511.69104 L 456.67285,511.69104 L 466.6748,537.93518 L 462.9834,537.93518 L 460.59277,531.20276 L 448.7627,531.20276 L 446.37207,537.93518 L 442.62793,537.93518 L 452.64746,511.69104 M 479.2959,528.0387 C 476.68261,528.03871 474.87206,528.33753 473.86426,528.93518 C 472.85644,529.53285 472.35253,530.55238 472.35254,531.99377 C 472.35253,533.14222 472.72753,534.05628 473.47754,534.73596 C 474.23925,535.40393 475.2705,535.73792 476.57129,535.73792 C 478.36425,535.73792 479.79979,535.10511 480.87793,533.83948 C 481.96776,532.56214 482.51268,530.86878 482.5127,528.7594 L 482.5127,528.0387 L 479.2959,528.0387 M 485.74707,526.70276 L 485.74707,537.93518 L 482.5127,537.93518 L 482.5127,534.9469 C 481.7744,536.14221 480.85448,537.02698 479.75293,537.6012 C 478.65136,538.1637 477.3037,538.44495 475.70996,538.44495 C 473.69433,538.44495 472.08886,537.88245 470.89355,536.75745 C 469.70996,535.62073 469.11816,534.10315 469.11816,532.20471 C 469.11816,529.98988 469.85644,528.31996 471.33301,527.19495 C 472.82128,526.06996 475.03612,525.50746 477.97754,525.50745 L 482.5127,525.50745 L 482.5127,525.19104 C 482.51268,523.70277 482.02049,522.55434 481.03613,521.74573 C 480.06346,520.92543 478.69237,520.51528 476.92285,520.51526 C 475.79784,520.51528 474.70214,520.65004 473.63574,520.91956 C 472.56933,521.1891 471.54394,521.5934 470.55957,522.13245 L 470.55957,519.14417 C 471.74316,518.68715 472.8916,518.34731 474.00488,518.12463 C 475.11816,517.89028 476.20214,517.77309 477.25684,517.77307 C 480.10448,517.77309 482.23143,518.51137 483.6377,519.98792 C 485.04393,521.46449 485.74705,523.70277 485.74707,526.70276 M 503.90527,521.27112 C 503.54198,521.0602 503.14354,520.90785 502.70996,520.81409 C 502.28807,520.70864 501.81932,520.6559 501.30371,520.65588 C 499.47558,520.6559 498.06933,521.25356 497.08496,522.44885 C 496.1123,523.63246 495.62597,525.33754 495.62598,527.56409 L 495.62598,537.93518 L 492.37402,537.93518 L 492.37402,518.24768 L 495.62598,518.24768 L 495.62598,521.30627 C 496.30566,520.11098 497.19042,519.22621 498.28027,518.65198 C 499.37011,518.06606 500.69432,517.77309 502.25293,517.77307 C 502.47557,517.77309 502.72167,517.79067 502.99121,517.82581 C 503.26073,517.84926 503.55956,517.89028 503.8877,517.94885 L 503.90527,521.27112 M 522.99512,526.05237 L 522.99512,537.93518 L 519.76074,537.93518 L 519.76074,526.15784 C 519.76073,524.29457 519.39744,522.90004 518.6709,521.97424 C 517.94432,521.04848 516.85448,520.58559 515.40137,520.58557 C 513.65526,520.58559 512.27831,521.14223 511.27051,522.25549 C 510.26269,523.36879 509.75878,524.88637 509.75879,526.80823 L 509.75879,537.93518 L 506.50684,537.93518 L 506.50684,510.58362 L 509.75879,510.58362 L 509.75879,521.30627 C 510.53222,520.1227 511.44042,519.23793 512.4834,518.65198 C 513.53808,518.06606 514.75097,517.77309 516.12207,517.77307 C 518.38377,517.77309 520.09471,518.47622 521.25488,519.88245 C 522.41502,521.27699 522.9951,523.33363 522.99512,526.05237 M 529.14746,530.16565 L 529.14746,518.24768 L 532.38184,518.24768 L 532.38184,530.0426 C 532.38183,531.90589 532.74511,533.30628 533.47168,534.24377 C 534.19823,535.16956 535.28808,535.63245 536.74121,535.63245 C 538.48729,535.63245 539.86424,535.07581 540.87207,533.96252 C 541.89159,532.84925 542.40135,531.33167 542.40137,529.40979 L 542.40137,518.24768 L 545.63574,518.24768 L 545.63574,537.93518 L 542.40137,537.93518 L 542.40137,534.91174 C 541.6162,536.10706 540.70213,536.99768 539.65918,537.58362 C 538.62792,538.15784 537.42675,538.44495 536.05566,538.44495 C 533.79394,538.44495 532.07714,537.74182 530.90527,536.33557 C 529.73339,534.92932 529.14746,532.87269 529.14746,530.16565 M 564.88379,518.82776 L 564.88379,521.88635 C 563.96971,521.41762 563.02049,521.06606 562.03613,520.83167 C 561.05175,520.59731 560.03222,520.48012 558.97754,520.4801 C 557.37206,520.48012 556.16503,520.72621 555.35645,521.21838 C 554.55956,521.71059 554.16113,522.44887 554.16113,523.43323 C 554.16113,524.18324 554.44824,524.77504 555.02246,525.20862 C 555.59667,525.63051 556.75097,526.0348 558.48535,526.42151 L 559.59277,526.6676 C 561.88964,527.1598 563.51854,527.85707 564.47949,528.7594 C 565.45213,529.65003 565.93846,530.89808 565.93848,532.50354 C 565.93846,534.33167 565.2119,535.77893 563.75879,536.84534 C 562.31737,537.91174 560.33104,538.44495 557.7998,538.44495 C 556.74511,538.44495 555.64355,538.33948 554.49512,538.12854 C 553.35839,537.92932 552.15722,537.62463 550.8916,537.21448 L 550.8916,533.87463 C 552.08691,534.49573 553.26464,534.96448 554.4248,535.28088 C 555.58495,535.58557 556.73339,535.73792 557.87012,535.73792 C 559.39354,535.73792 560.56542,535.4801 561.38574,534.96448 C 562.20604,534.43714 562.6162,533.69886 562.61621,532.74963 C 562.6162,531.87073 562.31737,531.19691 561.71973,530.72815 C 561.13378,530.25941 559.83886,529.80824 557.83496,529.37463 L 556.70996,529.11096 C 554.70605,528.6891 553.25878,528.04457 552.36816,527.17737 C 551.47754,526.29847 551.03222,525.0973 551.03223,523.57385 C 551.03222,521.72231 551.68847,520.29262 553.00098,519.28479 C 554.31347,518.277 556.17675,517.77309 558.59082,517.77307 C 559.78612,517.77309 560.91112,517.86098 561.96582,518.03674 C 563.02049,518.21254 563.99315,518.47622 564.88379,518.82776 M 571.8623,533.47034 L 575.57129,533.47034 L 575.57129,536.49377 L 572.68848,542.11877 L 570.4209,542.11877 L 571.8623,536.49377 L 571.8623,533.47034 M 597.64941,514.60901 L 597.64941,535.01721 L 601.93848,535.01721 C 605.55956,535.01721 608.20799,534.1969 609.88379,532.55627 C 611.57127,530.91566 612.41502,528.32582 612.41504,524.78674 C 612.41502,521.27113 611.57127,518.69887 609.88379,517.06995 C 608.20799,515.42934 605.55956,514.60903 601.93848,514.60901 L 597.64941,514.60901 M 594.09863,511.69104 L 601.39355,511.69104 C 606.47948,511.69107 610.21189,512.75161 612.59082,514.87268 C 614.9697,516.98208 616.15915,520.28676 616.15918,524.78674 C 616.15915,529.31019 614.96384,532.63245 612.57324,534.75354 C 610.1826,536.87463 606.45604,537.93518 601.39355,537.93518 L 594.09863,537.93518 L 594.09863,511.69104 M 621.80176,511.69104 L 625.35254,511.69104 L 625.35254,522.78284 L 637.12988,511.69104 L 641.7002,511.69104 L 628.6748,523.92542 L 642.63184,537.93518 L 637.95605,537.93518 L 625.35254,525.29651 L 625.35254,537.93518 L 621.80176,537.93518 L 621.80176,511.69104"
       style="font-size:36px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       id="text5455" />
    <rect x="0" y="0" width="1024" height="768" fill="none" stroke="black"/>
  </g>
</g>
</svg>

