<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg id="1775537928" width="6.5in" height="9in" viewBox="0 0 640 887" preserveAspectRatio="xMinYMin" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" ><title>Chords in Alternate Tunings App - Adams Guitars</title><desc>Chords in Alternate Tunings App from Adams Guitars</desc><defs><style type="text/css"><![CDATA[
.agSVGLogoLink {
	cursor: pointer;
}

.selectedTab, .selectedButton {
	fill: #ffffff;
	stroke: #000000;
	stroke-width: 1px;
}
.selectedButton {
	fill: #3d716d;
}

.unselectedTab, .unselectedButton, .rollUpEnabled, .rollDownEnabled {
	fill: #eeeeee;
	stroke: #333333;
	stroke-width: 0.5px;
	cursor: pointer;
}

.rollUpDisabled, .rollDownDisabled, .disabledButton {
	fill: none;
	stroke: #aaaaaa;
	stroke-width: 0.5px;
}

.disabledButtonText {
	fill: #aaaaaa;
	stroke: none;
}

.selectedTabText, .selectedButtonText, .rollCurrentValue {
	font-family: sans-serif;
	font-weight: bold;
	fill: #000000;
	stroke: none;
}
.selectedButtonText {
	fill: #ffffff;
}

.rollLabel {
	font-family: sans-serif;
	fill: #000000;
	stroke: none;
}

.unselectedTabText, .unselectedButtonText {
	font-family: sans-serif;
	fill: #555555;
	stroke: none;
	cursor: pointer;
}

.activeLink {
	cursor: pointer;
}

.defRect {
  fill: #ff0000;
  stroke: #00ff00;
}

.selectedCircle {
	fill: #ad6e67;
	stroke: #ad6e67;
}

.selectedText {
	fill: #ffffff;
	stroke: none;
}

.unselectedCircle {
	fill: #ffffff;
	stroke: #000000;
}

.unselectedText {
	fill: #000000;
	stroke: none;
}
]]></style><g id="defRect"><rect class="defRect" x="0" y="0" width="150" height="50" /></g></defs><script type="text/ecmascript"><![CDATA[
var SVGDocument = null;
var SVGRoot = null;
var svgns = "http://www.w3.org/2000/svg";
var xlinkns = "http://www.w3.org/1999/xlink";

function Init(evt) {
  SVGDocument = evt.target.ownerDocument;
  SVGRoot = SVGDocument.documentElement;
}

function logo_click(evt) {

        var newURL = "http://adamsguitars.com/index.php?pg=54";

        location.href = newURL;

        return false;
}


function widgetClick(evt) {
	
	// Get the widget's variable name/value pair
	var groupID = evt.target.parentNode.id;
	var idItem = groupID.split("_");
	var varName = "missing";
	var varValue = 0;
	if (idItem.length > 1) {
		varName = idItem[0];
		varValue = idItem[1];
	}
	
	// Get the document's current URL
	var currentURL = "" + document.location;
	var newURL = null;
	if (varName == "rst") {
		newURL = updateVarInURL(currentURL, "s0", "40");
		newURL = updateVarInURL(newURL, "s1", "45");
		newURL = updateVarInURL(newURL, "s2", "50");
		newURL = updateVarInURL(newURL, "s3", "55");
		newURL = updateVarInURL(newURL, "s4", "59");
		newURL = updateVarInURL(newURL, "s5", "64");
	} else {
		newURL = updateVarInURL(currentURL, varName, varValue);
	}
	document.location = newURL;
	
	return false;
}

function updateVarInURL(currentURL, varName, varValue) {
	
	// Split the current URL into an address and variables
	var urlItem = currentURL.split("?");
	var newURL = urlItem[0];
	
	// At least one variable has been set
	if (urlItem.length > 1) {
		newURL = newURL + "?w=" + varName;
		var nameValPair = urlItem[1].split("&");
		if (nameValPair != null) {
			var foundMe = false;
			for (var nv = 0; nv < nameValPair.length; nv++) {
				
				// Add the name value pairs
				var pairItem = nameValPair[nv].split("=");
				if (pairItem != null) {
					// The widget's veriable was previously set, overwrite it
					if (pairItem[0] == varName) {
						foundMe = true;
						newURL = newURL + "&" + varName + "=" + varValue;
						
					// This is the "whodunnit" variable
					} else if (pairItem[0] == "w") {
						// do nothing
						
					// This is not the widget's variable, pass it along
					} else {
						newURL = newURL + "&" + pairItem[0] + "=" + pairItem[1]; 
					}
				}
				
			}
			
			// The widget's variable has not previously been set, so set it
			if (foundMe == false) {
				newURL = newURL + "&" + varName + "=" + varValue;
			}
		}
		
		
	// No variables have been set yet, so just inlcude the widget's variable
	} else {
		if (varName != "w") {
			newURL = newURL + "?w=" + varName;
			newURL = newURL + "&" + varName + "=" + varValue;
		}
	}
	
	return newURL;
}


function useOne_click(evt) {
	alert("Clicked on the first use");
}

function useTwo_click(evt) {
	alert("Clicked on the second use");
}

function callout_click(evt) {
	var groupID = evt.target.parentNode.id;
	
	var circleID = groupID.replace("co","cc");
	var circleElement = document.getElementById(circleID);
	if (circleElement != null) {
		if (circleElement.getAttribute("class") == "selectedCircle") {
			circleElement.setAttribute("class","unselectedCircle");
		} else {
			circleElement.setAttribute("class","selectedCircle");
		}
	}
	
	var textID = groupID.replace("co","ct");
	var textElement = document.getElementById(textID);
	if (textElement != null) {
		if (textElement.getAttribute("class") == "selectedText") {
			textElement.setAttribute("class","unselectedText");
		} else {
			textElement.setAttribute("class","selectedText");
		}
	}
	
	return false;
}

function color_click(evt) {
	var oldURL = location.href;
	
	var urlItem = oldURL.split("?");
	
	var newURL = urlItem[0] + "?clr=" + evt.target.id;
	
	location.href = newURL;
	
	return false;
}

]]></script><!-- START IMPORT ERRORS --><!-- END IMPORT ERRORS --><!-- START IMPORTED HEADERS --><defs id="defs4"><linearGradient id="linearGradient3445"><stop style="stop-color:#222222;stop-opacity:1;" offset="0" id="stop3447">
  
    
      </stop><stop id="stop3457" offset="0.65306121" style="stop-color:#000000;stop-opacity:1;">
      </stop><stop style="stop-color:#222222;stop-opacity:1;" offset="1" id="stop3449">
      </stop>
    </linearGradient><inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" id="perspective10">
    </inkscape:perspective><inkscape:perspective id="perspective2447" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d">
    </inkscape:perspective>
  </defs><sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="359.32733" inkscape:cy="742.43376" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="900" inkscape:window-height="859" inkscape:window-x="461" inkscape:window-y="19" showborder="true">
  </sodipodi:namedview><metadata id="metadata7"><rdf:rdf><cc:work rdf:about=""><dc:format>
  
    
      
        image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage">
        </dc:type>
      </cc:work>
    </rdf:rdf>
  </metadata><!-- END IMPORTED HEADERS --><g id="svgGlobalGroup" transform="translate(0,0) scale(1) rotate(0)"><rect width="639" height="885" stroke-width="3" fill="none" stroke="#000000"/><g id="agSVGLogoLink" class="agSVGLogoLink" onclick="logo_click(evt)"><image x="220" y="10" width="200px" height="75px" xlink:href="http://adamsguitars.com/aglogo.jpg"><title>Adams Guitars</title></image></g><g id="IMPORTEDSVG" transform="translate(181,460) scale(0.3333) rotate(0)"><rect width="420" height="660" stroke-width="1" fill="none" stroke="none"/><!-- START IMPORTED SVG ELEMENTS --><g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1"><g id="g3343" style="fill:#cccccc;fill-opacity:1" transform="translate(-145,-162)"><path id="path3249" d="M 476.24257,295.01412 L 484.08261,295.01412 L 491.13865,266.78996 L 521.71481,267.57397 C 521.71481,267.57397 557.77901,301.28615 521.71481,339.70236 L 491.13865,340.48636 L 483.29861,312.26221 L 475.45856,312.26221 L 476.24257,295.01412 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
  
    
      </path><path id="path3251" d="M 462.9145,289.52608 L 462.13049,317.75023 L 476.24257,315.39822 L 475.45856,290.31008 L 462.9145,289.52608 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path id="path3259" d="M 482.67635,412.83075 L 490.51639,412.83075 L 497.57243,384.60659 L 528.14859,385.3906 C 528.14859,385.3906 564.21279,419.10278 528.14859,457.51899 L 497.57243,458.30299 L 489.73239,430.07884 L 481.89234,430.07884 L 482.67635,412.83075 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path sodipodi:nodetypes="ccccc" id="path3261" d="M 465.42826,407.34271 L 466.21226,433.99885 L 482.67635,433.21485 L 481.89234,408.12671 L 465.42826,407.34271 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path id="path3269" d="M 493.22041,530.43139 L 501.06045,530.43139 L 508.11649,502.20723 L 538.69265,502.99124 C 538.69265,502.99124 574.75685,536.70342 538.69265,575.11963 L 508.11649,575.90363 L 500.27645,547.67948 L 492.4364,547.67948 L 493.22041,530.43139 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path sodipodi:nodetypes="ccccc" id="path3271" d="M 475.97232,524.94335 L 479.10833,553.1675 L 493.22041,550.81549 L 492.4364,525.72735 L 475.97232,524.94335 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path id="path3279" d="M 227.36032,296.61015 L 219.52028,296.61015 L 212.46424,268.38599 L 181.88808,269.17 C 181.88808,269.17 145.82388,302.88218 181.88808,341.29839 L 212.46424,342.08239 L 220.30428,313.85824 L 228.14433,313.85824 L 227.36032,296.61015 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path id="path3281" d="M 240.68839,291.12211 L 241.4724,319.34626 L 227.36032,316.99425 L 228.14433,291.90611 L 240.68839,291.12211 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path id="path3289" d="M 222.92654,416.42678 L 215.0865,416.42678 L 208.03046,388.20262 L 177.4543,388.98663 C 177.4543,388.98663 141.3901,422.69881 177.4543,461.11502 L 208.03046,461.89902 L 215.8705,433.67487 L 223.71055,433.67487 L 222.92654,416.42678 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path sodipodi:nodetypes="ccccc" id="path3291" d="M 240.17463,410.93874 L 239.39063,437.59488 L 222.92654,436.81088 L 223.71055,411.72274 L 240.17463,410.93874 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path id="path3299" d="M 210.38248,532.02742 L 202.54244,532.02742 L 195.4864,503.80326 L 164.91024,504.58727 C 164.91024,504.58727 128.84604,538.29945 164.91024,576.71566 L 195.4864,577.49966 L 203.32644,549.27551 L 211.16649,549.27551 L 210.38248,532.02742 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path sodipodi:nodetypes="ccccc" id="path3301" d="M 227.63057,526.53938 L 224.49456,554.76353 L 210.38248,552.41152 L 211.16649,527.32338 L 227.63057,526.53938 z" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path>
    </g><path style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 130,633.36218 L 279,633.36218 C 279,633.36218 274,539.36218 355,490.36218 L 352,479.36218 C 352,479.36218 298,244.36218 323,40.36218 L 317,37.36218 C 317,37.36218 271,43.36218 234,18.36218 C 197,-6.63782 167,23.36218 167,23.36218 C 167,23.36218 135,43.36218 93,38.36218 L 88,43.36218 C 88,43.36218 113,303.36218 56,490.36218 L 67,497.36218 C 67,497.36218 137,555.36218 130,633.36218 z" id="path3313" sodipodi:nodetypes="ccccccscccccc">
    </path><path style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 137.5,632.16983 L 269.5,632.16983 C 269.5,632.16983 263.5,539.16983 341.5,491.16983 L 342.5,481.16983 C 342.5,481.16983 294.5,259.16983 313.5,48.16983 L 313.5,46.16983 C 313.5,46.16983 263.18718,50.21555 235.5,27.16983 C 206.11558,2.7114 172.5,26.16983 172.5,26.16983 C 172.5,26.16983 143.5,49.16983 101.5,44.16983 L 97.5,46.16983 C 97.5,46.16983 121.5,298.16983 64.5,485.16983 L 69.5,492.16983 C 69.5,492.16983 140.5,536.16983 137.5,632.16983 z" id="path3321" sodipodi:nodetypes="ccccccscccccc">
    </path><rect style="fill:#eeeeee;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect3315" width="151" height="24" x="129" y="632.36218">
    </rect><path style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 162,632.36218 L 253,632.36218 C 253,632.36218 259,491.36218 205,422.36218 L 205,422.36218 C 205,422.36218 147,475.36218 162,632.36218 z" id="path3317" sodipodi:nodetypes="ccccc">
    </path><g id="g3403" transform="translate(-145,-162)"><path transform="translate(-6,-2)" d="M 453.15442,319.71024 A 25.480137,25.480137 0 1 1 402.19415,319.71024 A 25.480137,25.480137 0 1 1 453.15442,319.71024 z" sodipodi:ry="25.480137" sodipodi:rx="25.480137" sodipodi:cy="319.71024" sodipodi:cx="427.67429" id="path3225" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
    
      </path><path transform="matrix(0.8355607,0,0,0.8355607,68.584484,52.865721)" d="M 439.6634,334.05134 L 416.32469,340.30492 L 399.23957,323.2198 L 405.49316,299.8811 L 428.83186,293.62751 L 445.91698,310.71263 L 439.6634,334.05134 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="1.3089969" sodipodi:arg1="0.78539816" sodipodi:r2="16.08642" sodipodi:r1="24.162006" sodipodi:cy="316.96622" sodipodi:cx="422.57828" sodipodi:sides="6" id="path2453" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.49600148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="star">
      </path><path transform="translate(-65.58432,7.4080505)" d="M 496.27465,310.30219 A 9.0160484,9.0160484 0 1 1 478.24256,310.30219 A 9.0160484,9.0160484 0 1 1 496.27465,310.30219 z" sodipodi:ry="9.0160484" sodipodi:rx="9.0160484" sodipodi:cy="310.30219" sodipodi:cx="487.25861" id="path3227" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="translate(-1.5662176,115.81664)" d="M 453.15442,319.71024 A 25.480137,25.480137 0 1 1 402.19415,319.71024 A 25.480137,25.480137 0 1 1 453.15442,319.71024 z" sodipodi:ry="25.480137" sodipodi:rx="25.480137" sodipodi:cy="319.71024" sodipodi:cx="427.67429" id="path3255" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(0.8355607,0,0,0.8355607,73.018263,170.68236)" d="M 439.6634,334.05134 L 416.32469,340.30492 L 399.23957,323.2198 L 405.49316,299.8811 L 428.83186,293.62751 L 445.91698,310.71263 L 439.6634,334.05134 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="1.3089969" sodipodi:arg1="0.78539816" sodipodi:r2="16.08642" sodipodi:r1="24.162006" sodipodi:cy="316.96622" sodipodi:cx="422.57828" sodipodi:sides="6" id="path3253" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.49600148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="star">
      </path><path transform="translate(-61.150538,125.22469)" d="M 496.27465,310.30219 A 9.0160484,9.0160484 0 1 1 478.24256,310.30219 A 9.0160484,9.0160484 0 1 1 496.27465,310.30219 z" sodipodi:ry="9.0160484" sodipodi:rx="9.0160484" sodipodi:cy="310.30219" sodipodi:cx="487.25861" id="path3257" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="translate(8.977844,237.41727)" d="M 453.15442,319.71024 A 25.480137,25.480137 0 1 1 402.19415,319.71024 A 25.480137,25.480137 0 1 1 453.15442,319.71024 z" sodipodi:ry="25.480137" sodipodi:rx="25.480137" sodipodi:cy="319.71024" sodipodi:cx="427.67429" id="path3265" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(0.8355607,0,0,0.8355607,83.562331,292.28299)" d="M 439.6634,334.05134 L 416.32469,340.30492 L 399.23957,323.2198 L 405.49316,299.8811 L 428.83186,293.62751 L 445.91698,310.71263 L 439.6634,334.05134 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="1.3089969" sodipodi:arg1="0.78539816" sodipodi:r2="16.08642" sodipodi:r1="24.162006" sodipodi:cy="316.96622" sodipodi:cx="422.57828" sodipodi:sides="6" id="path3263" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.49600148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="star">
      </path><path transform="translate(-50.606476,246.82532)" d="M 496.27465,310.30219 A 9.0160484,9.0160484 0 1 1 478.24256,310.30219 A 9.0160484,9.0160484 0 1 1 496.27465,310.30219 z" sodipodi:ry="9.0160484" sodipodi:rx="9.0160484" sodipodi:cy="310.30219" sodipodi:cx="487.25861" id="path3267" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(-1,0,0,1,707.60289,-2.4039665)" d="M 453.15442,319.71024 A 25.480137,25.480137 0 1 1 402.19415,319.71024 A 25.480137,25.480137 0 1 1 453.15442,319.71024 z" sodipodi:ry="25.480137" sodipodi:rx="25.480137" sodipodi:cy="319.71024" sodipodi:cx="427.67429" id="path3275" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(-0.8355607,0,0,0.8355607,633.01841,52.461751)" d="M 439.6634,334.05134 L 416.32469,340.30492 L 399.23957,323.2198 L 405.49316,299.8811 L 428.83186,293.62751 L 445.91698,310.71263 L 439.6634,334.05134 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="1.3089969" sodipodi:arg1="0.78539816" sodipodi:r2="16.08642" sodipodi:r1="24.162006" sodipodi:cy="316.96622" sodipodi:cx="422.57828" sodipodi:sides="6" id="path3273" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.49600148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="star">
      </path><path transform="matrix(-1,0,0,1,767.18721,7.004083)" d="M 496.27465,310.30219 A 9.0160484,9.0160484 0 1 1 478.24256,310.30219 A 9.0160484,9.0160484 0 1 1 496.27465,310.30219 z" sodipodi:ry="9.0160484" sodipodi:rx="9.0160484" sodipodi:cy="310.30219" sodipodi:cx="487.25861" id="path3277" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(-1,0,0,1,705.1691,119.41267)" d="M 453.15442,319.71024 A 25.480137,25.480137 0 1 1 402.19415,319.71024 A 25.480137,25.480137 0 1 1 453.15442,319.71024 z" sodipodi:ry="25.480137" sodipodi:rx="25.480137" sodipodi:cy="319.71024" sodipodi:cx="427.67429" id="path3285" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(-0.8355607,0,0,0.8355607,630.58463,174.27839)" d="M 439.6634,334.05134 L 416.32469,340.30492 L 399.23957,323.2198 L 405.49316,299.8811 L 428.83186,293.62751 L 445.91698,310.71263 L 439.6634,334.05134 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="1.3089969" sodipodi:arg1="0.78539816" sodipodi:r2="16.08642" sodipodi:r1="24.162006" sodipodi:cy="316.96622" sodipodi:cx="422.57828" sodipodi:sides="6" id="path3283" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.49600148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="star">
      </path><path transform="matrix(-1,0,0,1,764.75342,128.82072)" d="M 496.27465,310.30219 A 9.0160484,9.0160484 0 1 1 478.24256,310.30219 A 9.0160484,9.0160484 0 1 1 496.27465,310.30219 z" sodipodi:ry="9.0160484" sodipodi:rx="9.0160484" sodipodi:cy="310.30219" sodipodi:cx="487.25861" id="path3287" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(-1,0,0,1,690.62504,237.0133)" d="M 453.15442,319.71024 A 25.480137,25.480137 0 1 1 402.19415,319.71024 A 25.480137,25.480137 0 1 1 453.15442,319.71024 z" sodipodi:ry="25.480137" sodipodi:rx="25.480137" sodipodi:cy="319.71024" sodipodi:cx="427.67429" id="path3295" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="matrix(-0.8355607,0,0,0.8355607,616.04056,291.87902)" d="M 439.6634,334.05134 L 416.32469,340.30492 L 399.23957,323.2198 L 405.49316,299.8811 L 428.83186,293.62751 L 445.91698,310.71263 L 439.6634,334.05134 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="1.3089969" sodipodi:arg1="0.78539816" sodipodi:r2="16.08642" sodipodi:r1="24.162006" sodipodi:cy="316.96622" sodipodi:cx="422.57828" sodipodi:sides="6" id="path3293" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.49600148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="star">
      </path><path transform="matrix(-1,0,0,1,750.20936,246.42135)" d="M 496.27465,310.30219 A 9.0160484,9.0160484 0 1 1 478.24256,310.30219 A 9.0160484,9.0160484 0 1 1 496.27465,310.30219 z" sodipodi:ry="9.0160484" sodipodi:rx="9.0160484" sodipodi:cy="310.30219" sodipodi:cx="487.25861" id="path3297" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path transform="translate(-2,-2)" d="M 356,611.36218 A 6,6 0 1 1 344,611.36218 A 6,6 0 1 1 356,611.36218 z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="611.36218" sodipodi:cx="350" id="path3323" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path id="path3325" d="M 347.70732,603.5695 L 348.03659,615.25852" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path><path transform="translate(2.0701218,169.02439)" d="M 356,611.36218 A 6,6 0 1 1 344,611.36218 A 6,6 0 1 1 356,611.36218 z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="611.36218" sodipodi:cx="350" id="path3327" style="fill:#cccccc;fill-opacity:1;stroke:#000000;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" sodipodi:type="arc">
      </path><path id="path3329" d="M 351.77744,774.59389 L 352.10671,786.28291" style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
      </path>
    </g><path style="fill:none;fill-rule:evenodd;stroke:#ffcc22;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 128,397.36218 L 141,632.36218" id="path3331">
    </path><path style="fill:none;fill-rule:evenodd;stroke:#ffcc22;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 142,278.36218 L 165,631.36218" id="path3333">
    </path><path style="fill:none;fill-rule:evenodd;stroke:#ffcc22;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 144,156.36218 L 191,632.36218" id="path3335">
    </path><path style="fill:none;fill-rule:evenodd;stroke:#ffcc22;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 268,150.36218 L 220,632.36218" id="path3337">
    </path><path style="fill:none;fill-rule:evenodd;stroke:#cccccc;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 273,272.36218 L 246,632.36218" id="path3339">
    </path><path style="fill:none;fill-rule:evenodd;stroke:#cccccc;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 284,393.36218 L 269,632.36218" id="path3341">
    </path>
  </g><!-- END IMPORTED SVG ELEMENTS --></g><g id="RollControl" transform="translate(165,105) scale(1) rotate(0)"><rect width="250" height="20" stroke-width="1" fill="none" stroke="none"/><text x="100" y="15.333333333333" text-anchor="end" class="rollLabel" font-size="16">Key Signature:</text><g id="k_6" onclick="widgetClick(evt)" ><circle cx="115" cy="10" r="10" class="rollDownEnabled"/><line x1="115" y1="5" x2="115" y2="15" class="rollDownEnabled"/><line x1="110" y1="8.75" x2="115" y2="15" class="rollDownEnabled"/><line x1="120" y1="8.75" x2="115" y2="15" class="rollDownEnabled"/></g><g id="k_8" onclick="widgetClick(evt)" ><circle cx="140" cy="10" r="10" class="rollUpEnabled"/><line x1="140" y1="5" x2="140" y2="15" class="rollUpEnabled"/><line x1="140" y1="5" x2="145" y2="11.25" class="rollUpEnabled"/><line x1="140" y1="5" x2="135" y2="11.25" class="rollUpEnabled"/></g><text x="155" y="15.333333333333" text-anchor="start" class="rollCurrentValue" font-size="16">C Major / A Minor</text></g><g id="TabbedMenu" transform="translate(10,180) scale(1) rotate(0)"><rect width="480" height="275" stroke-width="1" fill="none" stroke="none"/><g id="r_1" onclick="widgetClick(evt)" ><path class="unselectedTab" d="M 78.571428571429 14 l 0 17 l 64.571428571429 0 l 0 -17 c 0,-7 -7,-7 -7 -7 l -50.571428571429 0 c -7,0 -7,7 -7 7 z" /><text x="110.85714285714" y="22.5" text-anchor="middle" class="unselectedTabText" font-size="13.6">D</text></g><g id="r_2" onclick="widgetClick(evt)" ><path class="unselectedTab" d="M 143.14285714286 14 l 0 17 l 64.571428571429 0 l 0 -17 c 0,-7 -7,-7 -7 -7 l -50.571428571429 0 c -7,0 -7,7 -7 7 z" /><text x="175.42857142857" y="22.5" text-anchor="middle" class="unselectedTabText" font-size="13.6">E</text></g><g id="r_3" onclick="widgetClick(evt)" ><path class="unselectedTab" d="M 207.71428571429 14 l 0 17 l 64.571428571429 0 l 0 -17 c 0,-7 -7,-7 -7 -7 l -50.571428571429 0 c -7,0 -7,7 -7 7 z" /><text x="240" y="22.5" text-anchor="middle" class="unselectedTabText" font-size="13.6">F</text></g><g id="r_4" onclick="widgetClick(evt)" ><path class="unselectedTab" d="M 272.28571428571 14 l 0 17 l 64.571428571429 0 l 0 -17 c 0,-7 -7,-7 -7 -7 l -50.571428571429 0 c -7,0 -7,7 -7 7 z" /><text x="304.57142857143" y="22.5" text-anchor="middle" class="unselectedTabText" font-size="13.6">G</text></g><g id="r_5" onclick="widgetClick(evt)" ><path class="unselectedTab" d="M 336.85714285714 14 l 0 17 l 64.571428571429 0 l 0 -17 c 0,-7 -7,-7 -7 -7 l -50.571428571429 0 c -7,0 -7,7 -7 7 z" /><text x="369.14285714286" y="22.5" text-anchor="middle" class="unselectedTabText" font-size="13.6">A</text></g><g id="r_6" onclick="widgetClick(evt)" ><path class="unselectedTab" d="M 401.42857142857 14 l 0 17 l 64.571428571429 0 l 0 -17 c 0,-7 -7,-7 -7 -7 l -50.571428571429 0 c -7,0 -7,7 -7 7 z" /><text x="433.71428571429" y="22.5" text-anchor="middle" class="unselectedTabText" font-size="13.6">B</text></g><g><path class="selectedTab" d="M 7 38 l 0 223 c 0,7 7,7 7 7 l 452 0 c 7,0 7,-7 7 -7 l 0 -223 c 0,-7 -7,-7 -7 -7 l -387.42857142857 0 l 0 -17 c 0,-7 -7,-7 -7 -7 l -50.571428571429 0 c -7,0 -7,7 -7 7 l 0 17 l -0 0 c -7,0 -7,7 -7 7 z" /><text x="46.285714285714" y="22.5" text-anchor="middle" class="selectedTabText" font-size="13.6">C</text></g></g><g id="ButtonArray" transform="translate(17,218) scale(1) rotate(0)"><rect width="473" height="223" stroke-width="1" fill="none" stroke="none"/><g id="c_0" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 17 17 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="selectedButton" d="M 14 14 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="55" y="22.5" text-anchor="middle" class="selectedButtonText" font-size="13.6">C</text></g><g id="c_1" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 103 14 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="144" y="22.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm</text></g><g id="c_2" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 192 14 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="233" y="22.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C(b5)</text></g><g id="c_3" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 284 17 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="unselectedButton" d="M 281 14 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="322" y="22.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C(add 9)</text></g><g id="c_4" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 373 17 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="unselectedButton" d="M 370 14 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="411" y="22.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C5</text></g><g id="c_5" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 17 48 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="unselectedButton" d="M 14 45 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="55" y="53.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Csus</text></g><g id="c_6" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 103 45 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="144" y="53.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C+</text></g><g id="c_7" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 192 45 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="233" y="53.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Co</text></g><g id="c_8" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 284 48 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="unselectedButton" d="M 281 45 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="322" y="53.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C6</text></g><g id="c_9" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 373 48 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="unselectedButton" d="M 370 45 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="411" y="53.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C6/9</text></g><g id="c_10" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 14 76 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="55" y="84.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm6/9</text></g><g id="c_11" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 103 76 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="144" y="84.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm6</text></g><g id="c_12" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 192 76 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="233" y="84.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C7</text></g><g id="c_13" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 281 76 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="322" y="84.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C7sus</text></g><g id="c_14" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 370 76 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="411" y="84.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm7</text></g><g id="c_15" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 14 107 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="55" y="115.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm7(b5)</text></g><g id="c_16" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 103 107 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="144" y="115.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C7+</text></g><g id="c_17" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 192 107 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="233" y="115.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C7(b5)</text></g><g id="c_18" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 284 110 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="unselectedButton" d="M 281 107 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="322" y="115.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cmaj7</text></g><g id="c_19" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 370 107 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="411" y="115.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cmaj7(b5)</text></g><g id="c_20" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 14 138 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="55" y="146.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm(maj7)</text></g><g id="c_21" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 103 138 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="144" y="146.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C7(b9)</text></g><g id="c_22" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 192 138 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="233" y="146.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C7(#9)</text></g><g id="c_23" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 281 138 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="322" y="146.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C7+(b9)</text></g><g id="c_24" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 370 138 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="411" y="146.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm9</text></g><g id="c_25" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 14 169 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="55" y="177.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C9</text></g><g id="c_26" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 103 169 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="144" y="177.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C9+</text></g><g id="c_27" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 192 169 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="233" y="177.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C9(b5)</text></g><g id="c_28" onclick="widgetClick(evt)" ><path fill="#555555" stroke="#999999" stroke-width="1" d="M 284 172 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><path class="unselectedButton" d="M 281 169 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="322" y="177.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cmaj9</text></g><g id="c_29" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 370 169 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="411" y="177.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C9(#11)</text></g><g id="c_30" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 14 200 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="55" y="208.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm9(maj7)</text></g><g id="c_31" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 103 200 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="144" y="208.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C11</text></g><g id="c_32" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 192 200 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="233" y="208.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">Cm11</text></g><g id="c_33" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 281 200 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="322" y="208.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C13</text></g><g id="c_34" onclick="widgetClick(evt)" ><path class="unselectedButton" d="M 370 200 l 0 10 c 0,7 7,7 7 7 l 68 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -68 0 c -7,0 -7,7 -7 7 z" /><text x="411" y="208.5" text-anchor="middle" class="unselectedButtonText" font-size="13.6">C13(b9)</text></g></g><g id="ResetButton" transform="translate(330,630) scale(1) rotate(0)"><rect width="90" height="50" stroke-width="1" fill="none" stroke="none"/><g id="rst_0" ><path class="disabledButton" d="M 14 14 l 0 10 c 0,7 7,7 7 7 l 41 0 c 7,0 7,-7 7 -7 l 0 -10 c 0,-7 -7,-7 -7 -7 l -41 0 c -7,0 -7,7 -7 7 z" /><text x="41.5" y="22.5" text-anchor="middle" class="disabledButtonText" font-size="13.6">Reset</text></g></g><g id="ArrayOfRollControls0" transform="translate(30,575) scale(1) rotate(0)"><rect width="100" height="20" stroke-width="1" fill="none" stroke="none"/><g id="s0_39" onclick="widgetClick(evt)" ><circle cx="40" cy="10" r="10" class="rollDownEnabled"/><line x1="40" y1="5" x2="40" y2="15" class="rollDownEnabled"/><line x1="35" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/><line x1="45" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/></g><g id="s0_41" onclick="widgetClick(evt)" ><circle cx="65" cy="10" r="10" class="rollUpEnabled"/><line x1="65" y1="5" x2="65" y2="15" class="rollUpEnabled"/><line x1="65" y1="5" x2="70" y2="11.25" class="rollUpEnabled"/><line x1="65" y1="5" x2="60" y2="11.25" class="rollUpEnabled"/></g><text x="80" y="15.333333333333" text-anchor="start" class="rollCurrentValue" font-size="16">E</text></g><g id="ArrayOfRollControls1" transform="translate(30,535) scale(1) rotate(0)"><rect width="100" height="20" stroke-width="1" fill="none" stroke="none"/><g id="s1_44" onclick="widgetClick(evt)" ><circle cx="40" cy="10" r="10" class="rollDownEnabled"/><line x1="40" y1="5" x2="40" y2="15" class="rollDownEnabled"/><line x1="35" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/><line x1="45" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/></g><g id="s1_46" onclick="widgetClick(evt)" ><circle cx="65" cy="10" r="10" class="rollUpEnabled"/><line x1="65" y1="5" x2="65" y2="15" class="rollUpEnabled"/><line x1="65" y1="5" x2="70" y2="11.25" class="rollUpEnabled"/><line x1="65" y1="5" x2="60" y2="11.25" class="rollUpEnabled"/></g><text x="80" y="15.333333333333" text-anchor="start" class="rollCurrentValue" font-size="16">A</text></g><g id="ArrayOfRollControls2" transform="translate(30,495) scale(1) rotate(0)"><rect width="100" height="20" stroke-width="1" fill="none" stroke="none"/><g id="s2_49" onclick="widgetClick(evt)" ><circle cx="40" cy="10" r="10" class="rollDownEnabled"/><line x1="40" y1="5" x2="40" y2="15" class="rollDownEnabled"/><line x1="35" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/><line x1="45" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/></g><g id="s2_51" onclick="widgetClick(evt)" ><circle cx="65" cy="10" r="10" class="rollUpEnabled"/><line x1="65" y1="5" x2="65" y2="15" class="rollUpEnabled"/><line x1="65" y1="5" x2="70" y2="11.25" class="rollUpEnabled"/><line x1="65" y1="5" x2="60" y2="11.25" class="rollUpEnabled"/></g><text x="80" y="15.333333333333" text-anchor="start" class="rollCurrentValue" font-size="16">D</text></g><g id="ArrayOfRollControls3" transform="translate(315,495) scale(1) rotate(0)"><rect width="100" height="20" stroke-width="1" fill="none" stroke="none"/><g id="s3_54" onclick="widgetClick(evt)" ><circle cx="40" cy="10" r="10" class="rollDownEnabled"/><line x1="40" y1="5" x2="40" y2="15" class="rollDownEnabled"/><line x1="35" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/><line x1="45" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/></g><g id="s3_56" onclick="widgetClick(evt)" ><circle cx="65" cy="10" r="10" class="rollUpEnabled"/><line x1="65" y1="5" x2="65" y2="15" class="rollUpEnabled"/><line x1="65" y1="5" x2="70" y2="11.25" class="rollUpEnabled"/><line x1="65" y1="5" x2="60" y2="11.25" class="rollUpEnabled"/></g><text x="80" y="15.333333333333" text-anchor="start" class="rollCurrentValue" font-size="16">G</text></g><g id="ArrayOfRollControls4" transform="translate(315,535) scale(1) rotate(0)"><rect width="100" height="20" stroke-width="1" fill="none" stroke="none"/><g id="s4_58" onclick="widgetClick(evt)" ><circle cx="40" cy="10" r="10" class="rollDownEnabled"/><line x1="40" y1="5" x2="40" y2="15" class="rollDownEnabled"/><line x1="35" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/><line x1="45" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/></g><g id="s4_60" onclick="widgetClick(evt)" ><circle cx="65" cy="10" r="10" class="rollUpEnabled"/><line x1="65" y1="5" x2="65" y2="15" class="rollUpEnabled"/><line x1="65" y1="5" x2="70" y2="11.25" class="rollUpEnabled"/><line x1="65" y1="5" x2="60" y2="11.25" class="rollUpEnabled"/></g><text x="80" y="15.333333333333" text-anchor="start" class="rollCurrentValue" font-size="16">B</text></g><g id="ArrayOfRollControls5" transform="translate(315,575) scale(1) rotate(0)"><rect width="100" height="20" stroke-width="1" fill="none" stroke="none"/><g id="s5_63" onclick="widgetClick(evt)" ><circle cx="40" cy="10" r="10" class="rollDownEnabled"/><line x1="40" y1="5" x2="40" y2="15" class="rollDownEnabled"/><line x1="35" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/><line x1="45" y1="8.75" x2="40" y2="15" class="rollDownEnabled"/></g><g id="s5_65" onclick="widgetClick(evt)" ><circle cx="65" cy="10" r="10" class="rollUpEnabled"/><line x1="65" y1="5" x2="65" y2="15" class="rollUpEnabled"/><line x1="65" y1="5" x2="70" y2="11.25" class="rollUpEnabled"/><line x1="65" y1="5" x2="60" y2="11.25" class="rollUpEnabled"/></g><text x="80" y="15.333333333333" text-anchor="start" class="rollCurrentValue" font-size="16">E</text></g><g id="Staff" transform="translate(35,70) scale(0.5) rotate(0)"><rect width="200" height="200" stroke-width="1" fill="none" stroke="none"/><g id="staffgroup1" transform="translate(0 20)"><g id="trebleclef1" transform="translate(-18 0)"><path stroke="#000000" stroke-width="1" fill="#000000" d="M 40 140 C 40 149 58 148 58 134 C 58 120 40 44 40 30 C 40 18 46 5 52 5  C 56 5 60 15 60 27 C 60 66 26 64 26 91 C 26 108 40 113 48 113 C 72 112 68 83 52 83 C 43 83 35 95 47 105 C 27 97 38 75 54 75 C 75 75 79 114 48 114 C 29 115 21 98 21 85 C 21 60 58 45 57 24 C 57 11 43 17 43 38 C 43 51 61 122 61 133 C 61 156 32 148 32 137 C 32 121 49 132 43 133 C 39 140 40 140 40 141 z"/><circle r="7" cx="40" cy="134" fill="#000000" stroke="#000000" stroke-width="1"/><text x="50" y="167" fill="#000000" stroke="none" text-anchor="middle" font-family="serif" font-size="30">8</text></g><g id="staff1" transform="translate(0 0)"><line stroke="#000000" stroke-width="2" fill="none" x1="2" y1="35" x2="200" y2="35"/><line stroke="#000000" stroke-width="2" fill="none" x1="2" y1="55" x2="200" y2="55"/><line stroke="#000000" stroke-width="2" fill="none" x1="2" y1="75" x2="200" y2="75"/><line stroke="#000000" stroke-width="2" fill="none" x1="2" y1="95" x2="200" y2="95"/><line stroke="#000000" stroke-width="2" fill="none" x1="2" y1="115" x2="200" y2="115"/></g></g></g><g id="Board" transform="translate(500,10) scale(1) rotate(0)"><rect width="123.15190286817" height="750" stroke-width="1" fill="none" stroke="none"/><polygon fill="#ffffff" stroke="#000000" stroke-width="1" points="8.4420957914755,25.004167361227 114.70980707669,25.004167361227 114.70980707669,35.005834305718 8.4420957914755,35.005834305718"  /><polygon fill="#333333" stroke="#000000" stroke-width="1" points="8.4420957914755,35.005834305718 114.70980707669,35.005834305718 123.59840585676,750 -0.44650298859334,750"  /><line x1="7.7981746957826" x2="115.35372817238" y1="103.61726954492" y2="103.61726954492" stroke="#cccccc" stroke-width="2" /><line x1="6.969911651942" x2="116.18199121622" y1="168.55309218203" y2="168.55309218203" stroke="#cccccc" stroke-width="2" /><line x1="6.1885314219037" x2="116.96337144626" y1="229.81330221704" y2="229.81330221704" stroke="#cccccc" stroke-width="2" /><line x1="5.4540340056676" x2="117.6978688625" y1="287.39789964994" y2="287.39789964994" stroke="#cccccc" stroke-width="2" /><line x1="4.7507917986331" x2="118.40111106953" y1="342.53208868145" y2="342.53208868145" stroke="#cccccc" stroke-width="2" /><line x1="4.0944324054009" x2="119.05747046276" y1="393.99066511085" y2="393.99066511085" stroke="#cccccc" stroke-width="2" /><line x1="3.4693282213702" x2="119.68257464679" y1="442.99883313886" y2="442.99883313886" stroke="#cccccc" stroke-width="2" /><line x1="2.8911068511419" x2="120.26079601702" y1="488.33138856476" y2="488.33138856476" stroke="#cccccc" stroke-width="2" /><line x1="2.344140690115" x2="120.80776217805" y1="531.21353558926" y2="531.21353558926" stroke="#cccccc" stroke-width="2" /><line x1="1.8128021336889" x2="121.33910073448" y1="572.87047841307" y2="572.87047841307" stroke="#cccccc" stroke-width="2" /><line x1="1.3283463910652" x2="121.8235564771" y1="610.85180863477" y2="610.85180863477" stroke="#cccccc" stroke-width="2" /><line x1="0.85951825304218" x2="122.29238461512" y1="647.60793465578" y2="647.60793465578" stroke="#f4efec" stroke-width="2" /><line x1="0.42194532422071" x2="122.72995754394" y1="681.91365227538" y2="681.91365227538" stroke="#cccccc" stroke-width="2" /><line x1="20.944179472089" x2="20.944179472089" y1="25.004167361227" y2="35.005834305718" stroke="#ffd700" stroke-width="2" /><line x1="20.944179472089" x2="11.377852941477" y1="35.005834305718" y2="750" stroke="#ffd700" stroke-width="2" /><line x1="37.196888256886" x2="37.196888256886" y1="25.004167361227" y2="35.005834305718" stroke="#ffd700" stroke-width="2" /><line x1="37.196888256886" x2="31.457092338519" y1="35.005834305718" y2="750" stroke="#ffd700" stroke-width="2" /><line x1="53.449597041684" x2="53.449597041684" y1="25.004167361227" y2="35.005834305718" stroke="#ffd700" stroke-width="2" /><line x1="53.449597041684" x2="51.536331735561" y1="35.005834305718" y2="750" stroke="#ffd700" stroke-width="2" /><line x1="69.702305826481" x2="69.702305826481" y1="25.004167361227" y2="35.005834305718" stroke="#ffd700" stroke-width="2" /><line x1="69.702305826481" x2="71.615571132604" y1="35.005834305718" y2="750" stroke="#ffd700" stroke-width="2" /><line x1="85.955014611279" x2="85.955014611279" y1="25.004167361227" y2="35.005834305718" stroke="#ffd700" stroke-width="2" /><line x1="85.955014611279" x2="91.694810529646" y1="35.005834305718" y2="750" stroke="#ffd700" stroke-width="2" /><line x1="102.20772339608" x2="102.20772339608" y1="25.004167361227" y2="35.005834305718" stroke="#ffd700" stroke-width="2" /><line x1="102.20772339608" x2="111.77404992669" y1="35.005834305718" y2="750" stroke="#ffd700" stroke-width="2" /><g id="co_0_0" onclick="callout_click(evt)"><circle id="cc_0_0" cx="20.944179472089" cy="13.002083680613" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_0_0" x="20.944179472089" y="18.502083680613" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_3_0" onclick="callout_click(evt)"><circle id="cc_3_0" cx="69.702305826481" cy="13.002083680613" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_3_0" x="69.702305826481" y="18.502083680613" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">G</text></g><g id="co_5_0" onclick="callout_click(evt)"><circle id="cc_5_0" cx="102.20772339608" cy="13.002083680613" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_5_0" x="102.20772339608" y="18.502083680613" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_4_1" onclick="callout_click(evt)"><circle id="cc_4_1" cx="86.572974747492" cy="75.246791131855" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_4_1" x="86.572974747492" y="80.746791131855" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">C</text></g><g id="co_2_2" onclick="callout_click(evt)"><circle id="cc_2_2" cx="53.074832199924" cy="141.40781796966" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_2_2" x="53.074832199924" y="146.90781796966" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_0_3" onclick="callout_click(evt)"><circle id="cc_0_3" cx="18.273347428653" cy="203.89323220537" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_0_3" x="18.273347428653" y="209.39323220537" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">G</text></g><g id="co_1_3" onclick="callout_click(evt)"><circle id="cc_1_3" cx="35.594389030825" cy="203.89323220537" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_1_3" x="35.594389030825" y="209.39323220537" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">C</text></g><g id="co_5_3" onclick="callout_click(evt)"><circle id="cc_5_3" cx="104.87855543951" cy="203.89323220537" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_5_3" x="104.87855543951" y="209.39323220537" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">G</text></g><g id="co_2_5" onclick="callout_click(evt)"><circle id="cc_2_5" cx="52.622673506809" cy="318.65402567095" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_2_5" x="52.622673506809" y="324.15402567095" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">G</text></g><g id="co_3_5" onclick="callout_click(evt)"><circle id="cc_3_5" cx="70.529229361356" cy="318.65402567095" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_3_5" x="70.529229361356" y="324.15402567095" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">C</text></g><g id="co_4_5" onclick="callout_click(evt)"><circle id="cc_4_5" cx="88.435785215903" cy="318.65402567095" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_4_5" x="88.435785215903" y="324.15402567095" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_1_7" onclick="callout_click(evt)"><circle id="cc_1_7" cx="33.931611901303" cy="421.16277712952" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_1_7" x="33.931611901303" y="426.66277712952" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_0_8" onclick="callout_click(evt)"><circle id="cc_0_8" cx="14.908203237955" cy="467.72053675613" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_0_8" x="14.908203237955" y="473.22053675613" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">C</text></g><g id="co_4_8" onclick="callout_click(evt)"><circle id="cc_4_8" cx="89.576600351759" cy="467.72053675613" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_4_8" x="89.576600351759" y="473.22053675613" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">G</text></g><g id="co_5_8" onclick="callout_click(evt)"><circle id="cc_5_8" cx="108.24369963021" cy="467.72053675613" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_5_8" x="108.24369963021" y="473.22053675613" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">C</text></g><g id="co_3_9" onclick="callout_click(evt)"><circle id="cc_3_9" cx="71.020977986127" cy="511.4194865811" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_3_9" x="71.020977986127" y="516.9194865811" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_1_10" onclick="callout_click(evt)"><circle id="cc_1_10" cx="32.918943123174" cy="553.48483080513" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_1_10" x="32.918943123174" y="558.98483080513" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">G</text></g><g id="co_2_10" onclick="callout_click(evt)"><circle id="cc_2_10" cx="52.023615330446" cy="553.48483080513" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_2_10" x="52.023615330446" y="558.98483080513" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">C</text></g><g id="co_0_12" onclick="callout_click(evt)"><circle id="cc_0_12" cx="12.84015022912" cy="629.85589264877" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_0_12" x="12.84015022912" y="635.35589264877" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_3_12" onclick="callout_click(evt)"><circle id="cc_3_12" cx="71.323111675075" cy="629.85589264877" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_3_12" x="71.323111675075" y="635.35589264877" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">G</text></g><g id="co_5_12" onclick="callout_click(evt)"><circle id="cc_5_12" cx="110.31175263905" cy="629.85589264877" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_5_12" x="110.31175263905" y="635.35589264877" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">E</text></g><g id="co_4_13" onclick="callout_click(evt)"><circle id="cc_4_13" cx="91.086226956193" cy="664.97841306884" r="11" fill="#ffffff" stroke="#000000" stroke-width="2" cursor="pointer"/><text id="ct_4_13" x="91.086226956193" y="670.47841306884" text-anchor="middle" font-family="sans-serif"  font-size="10" cursor="pointer">C</text></g></g></g></svg>