Skip to content

Instantly share code, notes, and snippets.

@tomstove
Created April 26, 2013 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomstove/5466115 to your computer and use it in GitHub Desktop.
Save tomstove/5466115 to your computer and use it in GitHub Desktop.
Rivers in UK with Kartograph
<!DOCTYPE html>
<head>
<script src="jquery.min.js" ></script>
<script src="raphael.min.js"></script>
<script src="kartograph.min.js"></script>
</head>
<body>
<div id="map">
</div>
<script>
var map = Kartograph.map("#map", 700);
map.loadMap('rivers.svg', function() {
map.addLayer('countries', {
styles: {
'fill': '#eee',
'stroke': 'none'
}
});
map.addLayer('graticule', {
styles: {
'stroke-width': 0.5,
'stroke': '#ccc'
}
});
/*map.addLayer('cityarea', {
styles: {
"fill": "red",
"fill-opacity": "0.5",
"stroke": "none"
}
});
map.addLayer('trees', {
styles: {
"fill": "#b1bfb1",
"fill-opacity": 1,
"stroke": "none",
"stroke-width": "0.4px",
"stroke-opacity": 0.4
}
});
map.addLayer('grass', {
styles: {
"fill": "green",
"fill-opacity": 0.4,
"stroke": "none",
"stroke-width": "0.4px",
"stroke-opacity": 0.4
}
});*/
map.addLayer('rivers', {
styles: {
"fill": "none",
"stroke": "steelblue",
"stroke-width": "0.5px"
}
});
});
</script>
</body>
</html>
/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
//@ sourceMappingURL=jquery.min.map
*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;
return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="<a name='"+x+"'></a><div name='"+x+"'></div>",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&&gt(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Nt=/^(?:checkbox|radio)$/i,Ct=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l)
}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=ln(e,t),Pt.detach()),Gt[e]=n),n}function ln(e,t){var n=b(t.createElement(e)).appendTo(t.body),r=b.css(n[0],"display");return n.remove(),r}b.each(["height","width"],function(e,n){b.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(b.css(e,"display"))?b.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,i),i):0)}}}),b.support.opacity||(b.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=b.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===b.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),b(function(){b.support.reliableMarginRight||(b.cssHooks.marginRight={get:function(e,n){return n?b.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!b.support.pixelPosition&&b.fn.position&&b.each(["top","left"],function(e,n){b.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?b(e).position()[n]+"px":r):t}}})}),b.expr&&b.expr.filters&&(b.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!b.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||b.css(e,"display"))},b.expr.filters.visible=function(e){return!b.expr.filters.hidden(e)}),b.each({margin:"",padding:"",border:"Width"},function(e,t){b.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(b.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Nt.test(e))}).map(function(e,t){var n=b(this).val();return null==n?null:b.isArray(n)?b.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),b.param=function(e,n){var r,i=[],o=function(e,t){t=b.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=b.ajaxSettings&&b.ajaxSettings.traditional),b.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(b.isArray(t))b.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==b.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}b.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),b.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var mn,yn,vn=b.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Nn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Cn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=b.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=a.href}catch(Ln){yn=o.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(b.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(u){var l;return o[u]=!0,b.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||a||o[c]?a?!(l=c):t:(n.dataTypes.unshift(c),s(c),!1)}),l}return s(n.dataTypes[0])||!o["*"]&&s("*")}function Mn(e,n){var r,i,o=b.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&b.extend(!0,e,r),e}b.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),b.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&b.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?b("<div>").append(b.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){b.fn[t]=function(e){return this.on(t,e)}}),b.each(["get","post"],function(e,n){b[n]=function(e,r,i,o){return b.isFunction(r)&&(o=o||i,i=r,r=t),b.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Nn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Mn(Mn(e,b.ajaxSettings),t):Mn(b.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,u,l,c,p=b.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?b(f):b.event,h=b.Deferred(),g=b.Callbacks("once memory"),m=p.statusCode||{},y={},v={},x=0,T="canceled",N={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)m[t]=[m[t],e[t]];else N.always(e[N.status]);return this},abort:function(e){var t=e||T;return l&&l.abort(t),k(0,t),this}};if(h.promise(N).complete=g.add,N.success=N.done,N.error=N.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=b.trim(p.dataType||"*").toLowerCase().match(w)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?80:443))==(mn[3]||("http:"===mn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=b.param(p.data,p.traditional)),qn(An,p,n,N),2===x)return N;u=p.global,u&&0===b.active++&&b.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Cn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(b.lastModified[o]&&N.setRequestHeader("If-Modified-Since",b.lastModified[o]),b.etag[o]&&N.setRequestHeader("If-None-Match",b.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&N.setRequestHeader("Content-Type",p.contentType),N.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)N.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,N,p)===!1||2===x))return N.abort();T="abort";for(i in{success:1,error:1,complete:1})N[i](p[i]);if(l=qn(jn,p,n,N)){N.readyState=1,u&&d.trigger("ajaxSend",[N,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){N.abort("timeout")},p.timeout));try{x=1,l.send(y,k)}catch(C){if(!(2>x))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,C=n;2!==x&&(x=2,s&&clearTimeout(s),l=t,a=i||"",N.readyState=e>0?4:0,r&&(w=_n(p,N,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=N.getResponseHeader("Last-Modified"),T&&(b.lastModified[o]=T),T=N.getResponseHeader("etag"),T&&(b.etag[o]=T)),204===e?(c=!0,C="nocontent"):304===e?(c=!0,C="notmodified"):(c=Fn(p,w),C=c.state,y=c.data,v=c.error,c=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),N.status=e,N.statusText=(n||C)+"",c?h.resolveWith(f,[y,C,N]):h.rejectWith(f,[N,C,v]),N.statusCode(m),m=t,u&&d.trigger(c?"ajaxSuccess":"ajaxError",[N,p,c?y:v]),g.fireWith(f,[N,C]),u&&(d.trigger("ajaxComplete",[N,p]),--b.active||b.event.trigger("ajaxStop")))}return N},getScript:function(e,n){return b.get(e,t,n,"script")},getJSON:function(e,t,n){return b.get(e,t,n,"json")}});function _n(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);while("*"===l[0])l.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in u)if(u[s]&&u[s].test(o)){l.unshift(s);break}if(l[0]in r)a=l[0];else{for(s in r){if(!l[0]||e.converters[s+" "+l[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function Fn(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=u[++s];)if("*"!==r){if("*"!==l&&l!==r){if(i=a[l+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[l+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],u.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+l+" to "+r}}}l=r}return{state:"success",data:t}}b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),b.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=o.head||b("head")[0]||o.documentElement;return{send:function(t,i){n=o.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var On=[],Bn=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=On.pop()||b.expando+"_"+vn++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=b.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||b.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,On.push(o)),s&&b.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}b.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=b.ajaxSettings.xhr(),b.support.cors=!!Rn&&"withCredentials"in Rn,Rn=b.support.ajax=!!Rn,Rn&&b.ajaxTransport(function(n){if(!n.crossDomain||b.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=b.noop,$n&&delete Pn[a]),i)4!==u.readyState&&u.abort();else{p={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(p.text=u.responseText);try{c=u.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,l)},n.async?4===u.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},b(e).unload($n)),Pn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+x+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=Yn.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(b.cssNumber[e]?"":"px"),"px"!==r&&s){s=b.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,b.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=b.now()}function Zn(e,t){b.each(t,function(t,n){var r=(Qn[t]||[]).concat(Qn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function er(e,t,n){var r,i,o=0,a=Gn.length,s=b.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;for(;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(tr(c,l.opts.specialEasing);a>o;o++)if(r=Gn[o].call(l,e,c,l.opts))return r;return Zn(l,c),b.isFunction(l.opts.start)&&l.opts.start.call(e,l),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function tr(e,t){var n,r,i,o,a;for(i in e)if(r=b.camelCase(i),o=t[r],n=e[i],b.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=b.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}b.Animation=b.extend(er,{tweener:function(e,t){b.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,u,l,c,p,f=this,d=e.style,h={},g=[],m=e.nodeType&&nn(e);n.queue||(c=b._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,f.always(function(){f.always(function(){c.unqueued--,b.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===b.css(e,"display")&&"none"===b.css(e,"float")&&(b.support.inlineBlockNeedsLayout&&"inline"!==un(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",b.support.shrinkWrapBlocks||f.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],Vn.exec(a)){if(delete t[i],u=u||"toggle"===a,a===(m?"hide":"show"))continue;g.push(i)}if(o=g.length){s=b._data(e,"fxshow")||b._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?b(e).show():f.done(function(){b(e).hide()}),f.done(function(){var t;b._removeData(e,"fxshow");for(t in h)b.style(e,t,h[t])});for(i=0;o>i;i++)r=g[i],l=f.createTween(r,m?s[r]:0),h[r]=s[r]||b.style(e,r),r in s||(s[r]=l.start,m&&(l.end=l.start,l.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}b.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=b.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[b.cssProps[e.prop]]||b.cssHooks[e.prop])?b.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.each(["toggle","show","hide"],function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=er(this,b.extend({},e),o);a.finish=function(){t.stop(!0)},(i||b._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=b.timers,a=b._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&b.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=b._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}b.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||b.isFunction(e)&&e,duration:e,easing:n&&t||t&&!b.isFunction(t)&&t};return r.duration=b.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in b.fx.speeds?b.fx.speeds[r.duration]:b.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){b.isFunction(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},b.timers=[],b.fx=rr.prototype.init,b.fx.tick=function(){var e,n=b.timers,r=0;for(Xn=b.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||b.fx.stop(),Xn=t},b.fx.timer=function(e){e()&&b.timers.push(e)&&b.fx.start()},b.fx.interval=13,b.fx.start=function(){Un||(Un=setInterval(b.fx.tick,b.fx.interval))},b.fx.stop=function(){clearInterval(Un),Un=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fx.step={},b.expr&&b.expr.filters&&(b.expr.filters.animated=function(e){return b.grep(b.timers,function(t){return e===t.elem}).length}),b.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){b.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,b.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},b.offset={setOffset:function(e,t,n){var r=b.css(e,"position");"static"===r&&(e.style.position="relative");var i=b(e),o=i.offset(),a=b.css(e,"top"),s=b.css(e,"left"),u=("absolute"===r||"fixed"===r)&&b.inArray("auto",[a,s])>-1,l={},c={},p,f;u?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),b.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(l.top=t.top-o.top+p),null!=t.left&&(l.left=t.left-o.left+f),"using"in t?t.using.call(e,l):i.css(l)}},b.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===b.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),b.nodeName(e[0],"html")||(n=e.offset()),n.top+=b.css(e[0],"borderTopWidth",!0),n.left+=b.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-b.css(r,"marginTop",!0),left:t.left-n.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||o.documentElement;while(e&&!b.nodeName(e,"html")&&"static"===b.css(e,"position"))e=e.offsetParent;return e||o.documentElement})}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);b.fn[e]=function(i){return b.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?b(a).scrollLeft():o,r?o:b(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return b.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}b.each({Height:"height",Width:"width"},function(e,n){b.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){b.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return b.access(this,function(n,r,i){var o;return b.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?b.css(n,r,s):b.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=b,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return b})})(window);
(function(){function t(){var t={},e=[],n=1,o=1;return t.size=function(r){return arguments.length?(o=r,t):o},t.iterations=function(r){return arguments.length?(n=r,t):n},t.add=function(r){return e.push(r),t},t.means=function(){for(var t=[],i={},a=Math.min(o,e.length),s=0,l=2*a;l>s;s++){var u=e[~~(Math.random()*e.length)],p=u.x+"/"+u.y;if(!(p in i)&&(i[p]=1,t.push({x:u.x,y:u.y})>=a))break}a=t.length;for(var h=0;n>h;h++){for(var c=r().points(t),s=0;a>s;s++){var f=t[s];f.sumX=0,f.sumY=0,f.size=0,f.points=[],f.indices=[]}for(var s=0;e.length>s;s++){var d=e[s],f=c.find(d);f.sumX+=d.x,f.sumY+=d.y,f.size++,f.points.push(d),f.indices.push(s)}for(var s=0;a>s;s++){var f=t[s];f.size&&(f.x=f.sumX/f.size,f.y=f.sumY/f.size)}}return t},t}function r(){function t(r,n){if(r.length){var o=a[n%a.length],i=r.length>>1;return r.sort(e(o)),{axis:o,point:r[i],left:t(r.slice(0,i),n+1),right:t(r.slice(i+1),n+1)}}}function r(t,r){for(var e=0,n=0;a.length>n;n++){var o=a[n],i=t[o]-r[o];e+=i*i}return e}function e(t){return function(r,e){return r=r[t],e=e[t],e>r?-1:r>e?1:0}}function n(t,e,o){if(r(t.point,e)<r(o.point,e)&&(o=t),t.left&&(o=n(t.left,e,o)),t.right){var i=t.point[t.axis]-e[t.axis];r(o.point,e)>i*i&&(o=n(t.right,e,o))}return o}var o,i={},a=["x","y"],s=[];return i.axes=function(t){return arguments.length?(a=t,i):a},i.points=function(t){return arguments.length?(s=t,o=null,i):s},i.find=function(t){return n(i.root(),t,o).point},i.root=function(){return o||(o=t(s,0))},i}var e,n,o,i,a,l,u,p,h,c,f,d,y,v,g,_,b,x,w,M,P,C,j,A,B,L,S,k,I,N,G,z,E,T,R,F,V,O,H,X,q,D,U,K,Q,Y,W,Z,$,J,tr,rr,er,nr,or,ir,ar,sr,lr,ur,pr,hr,cr,fr,dr,yr,mr,vr,gr,_r,br,xr,wr,Mr,Pr,Cr,jr,Ar,Br,Lr,Sr,kr,Ir,Nr,Gr,zr,Er,Tr,Rr,Fr,Vr,Or,Hr,Xr,qr,Dr,Ur,Kr,Qr,Yr,Wr,Zr,$r,Jr,te,re,ee={}.hasOwnProperty,ne=function(t,r){function e(){this.constructor=t}for(var n in r)ee.call(r,n)&&(t[n]=r[n]);return e.prototype=r.prototype,t.prototype=new e,t.__super__=r.prototype,t},oe=function(t,r){return function(){return t.apply(r,arguments)}},ie=[].indexOf||function(t){for(var r=0,e=this.length;e>r;r++)if(r in this&&this[r]===t)return r;return-1};Ar="undefined"!=typeof exports&&null!==exports?exports:this,_r=Ar.$K=null!=(zr=Ar.Kartograph)?zr:Ar.Kartograph={},_r.version="0.6.1",e=Ar.jQuery,_r.__verbose=!1,Lr=function(){var t;try{return console.warn.apply(console,arguments)}catch(r){t=r;try{return opera.postError.apply(opera,arguments)}catch(r){return t=r,alert(Array.prototype.join.call(arguments," "))}}},br=function(){var t;if(_r.__verbose)try{return console.debug.apply(console,arguments)}catch(r){t=r;try{return opera.postError.apply(opera,arguments)}catch(r){return t=r,alert(Array.prototype.join.call(arguments," "))}}},null==(Er=(Nr=String.prototype).trim)&&(Nr.trim=function(){return this.replace(/^\s+|\s+$/g,"")}),Array.prototype.indexOf||(Array.prototype.indexOf=function(t){"use strict";if(null==this)throw new TypeError;var r=Object(this),e=r.length>>>0;if(0===e)return-1;var n=0;if(arguments.length>0&&(n=Number(arguments[1]),n!=n?n=0:0!=n&&1/0!=n&&n!=-1/0&&(n=(n>0||-1)*Math.floor(Math.abs(n)))),n>=e)return-1;for(var o=n>=0?n:Math.max(e-Math.abs(n),0);e>o;o++)if(o in r&&r[o]===t)return o;return-1}),Ir=function(){var t,r,e,n,o;for(t={},o="Boolean Number String Function Array Date RegExp Undefined Null".split(" "),e=0,n=o.length;n>e;e++)r=o[e],t["[object "+r+"]"]=r.toLowerCase();return function(r){var e;return e=Object.prototype.toString.call(r),t[e]||"object"}}(),i=function(){function t(t,r,e,n){var o;null==t&&(t=0),null==r&&(r=0),null==e&&(e=null),null==n&&(n=null),o=this,null===e?(o.xmin=Number.MAX_VALUE,o.xmax=-1*Number.MAX_VALUE):(o.xmin=o.left=t,o.xmax=o.right=t+e,o.width=e),null===n?(o.ymin=Number.MAX_VALUE,o.ymax=-1*Number.MAX_VALUE):(o.ymin=o.top=r,o.ymax=o.bottom=n+r,o.height=n)}return t.prototype.update=function(t,r){var e;return null==r&&(r=t[1],t=t[0]),e=this,e.xmin=Math.min(e.xmin,t),e.ymin=Math.min(e.ymin,r),e.xmax=Math.max(e.xmax,t),e.ymax=Math.max(e.ymax,r),e.left=e.xmin,e.top=e.ymin,e.right=e.xmax,e.bottom=e.ymax,e.width=e.xmax-e.xmin,e.height=e.ymax-e.ymin,this},t.prototype.intersects=function(t){return t.left<s.right&&t.right>s.left&&t.top<s.bottom&&t.bottom>s.top},t.prototype.inside=function(t,r){var e;return e=this,t>=e.left&&e.right>=t&&r>=e.top&&e.bottom>=r},t.prototype.join=function(t){var r;return r=this,r.update(t.left,t.top),r.update(t.right,t.bottom),this},t}(),i.fromXML=function(t){var r,e,n,o;return n=Number(t.getAttribute("x")),o=Number(t.getAttribute("y")),e=Number(t.getAttribute("w")),r=Number(t.getAttribute("h")),new _r.BBox(n,o,e,r)},_r.BBox=i,null==(Kr=_r.geom)&&(_r.geom={}),null==(Yr=(Gr=_r.geom).clipping)&&(Gr.clipping={}),d=function(){function t(){}var r,e,n,o,i;return e=0,n=1,o=2,r=4,i=8,t.prototype.compute_out_code=function(t,r,e){var n,o;return o=this,n=o.INSIDE,t.left>r?n|=o.LEFT:r>t.right&&(n|=o.RIGHT),t.top>e?n|=o.TOP:e>t.bottom&&(n|=o.BOTTOM),n},t.prototype.clip=function(t,r,e,n,o){var i,a,s,l,u,p,h;for(u=this,a=u.compute_out_code(t,r,e),s=u.compute_out_code(t,n,o),i=False;True;){if(!(a|s)){i=True;break}if(a&s)break;l=0===code?s:a,l&u.TOP?(p=r+(n-r)*(t.top-e)/(o-e),h=t.top):l&u.BOTTOM?(p=r+(n-r)*(t.bottom-e)/(o-e),h=t.bottom):l&u.RIGHT?(h=e+(o-e)*(t.right-r)/(n-r),p=t.right):l&u.LEFT&&(h=e+(o-e)*(t.left-r)/(n-r),p=t.left),l===a?(r=p,e=h,a=u.compute_out_code(t,r,e)):(n=p,o=h,s=u.compute_out_code(t,n,o))}return i?[r,e,n,o]:null},t}(),_r.geom.clipping.CohenSutherland=d,L=function(){function t(t,r,n){var o,i;i=this,i.container=o=e(t),null==r&&(r=o.width()),null==n&&(n=o.height()),0===n&&(n="auto"),i.size={h:n,w:r},i.markers=[],i.pathById={},i.container.addClass("kartograph")}return t.prototype.createSVGLayer=function(t){var r,n,o,i,a,s,l,u;return i=this,null==(u=i._layerCnt)&&(i._layerCnt=0),o=i._layerCnt++,l=i.viewport,n=i.container,a=Raphael(n[0],l.width,l.height),s=e(a.canvas),s.css({position:"absolute",top:"0px",left:"0px","z-index":o+5}),"static"===n.css("position")&&n.css({position:"relative",height:l.height+"px"}),s.addClass(t),r=e("desc",a.canvas).text(),e("desc",a.canvas).text(r.replace("with ","with kartograph "+_r.version+" and ")),a},t.prototype.createHTMLLayer=function(t){var r,n,o,i,a,s;return i=this,a=i.viewport,r=i.container,null==(s=i._layerCnt)&&(i._layerCnt=0),o=i._layerCnt++,n=e('<div class="layer '+t+'" />'),n.css({position:"absolute",top:"0px",left:"0px",width:a.width+"px",height:a.height+"px","z-index":o+5}),r.append(n),n},t.prototype.loadMap=function(t,r,n){var o,i,a,s;return i=this,o=e.Deferred(),i.clear(),i.opts=null!=n?n:{},null==(s=(a=i.opts).zoom)&&(a.zoom=1),i.mapLoadCallback=r,i._loadMapDeferred=o,i._lastMapUrl=t,i.cacheMaps&&null!=_r.__mapCache[t]?i._mapLoaded(_r.__mapCache[t]):e.ajax({url:t,dataType:"text",success:i._mapLoaded,context:i,error:function(t,r,e){return Lr(t,r,e)}}),o.promise()},t.prototype.setMap=function(t,r){var e,n,o;e=this,e.opts=null!=r?r:{},null==(o=(n=e.opts).zoom)&&(n.zoom=1),e._lastMapUrl="string",e._mapLoaded(t)},t.prototype._mapLoaded=function(t){var r,n,o,a,s,l,u,p,h,c,f,d,y,m,v,g,_;l=this,l.cacheMaps&&(null==(y=_r.__mapCache)&&(_r.__mapCache={}),_r.__mapCache[l._lastMapUrl]=t);try{t=e(t)}catch(b){return o=b,Lr("something went horribly wrong while parsing svg"),l._loadMapDeferred.reject("could not parse svg"),void 0}l.svgSrc=t,r=e("view",t),null==l.paper&&(f=l.size.w,a=l.size.h,"auto"===a&&(p=r.attr("w")/r.attr("h"),a=f/p),l.viewport=new i(0,0,f,a)),c=l.viewport,l.viewAB=n=_r.View.fromXML(r[0]),u=null!=(m=l.opts.padding)?m:0,s=null!=(v=l.opts.halign)?v:"center",h=null!=(g=l.opts.valign)?g:"center",d=null!=(_=l.opts.zoom)?_:1,l.viewBC=new _r.View(l.viewAB.asBBox(),c.width*d,c.height*d,u,s,h),l.proj=_r.Proj.fromXML(e("proj",r)[0]),null!=l.mapLoadCallback&&l.mapLoadCallback(l),null!=l._loadMapDeferred&&l._loadMapDeferred.resolve(l)},t.prototype.addLayer=function(t,r){var n,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g;return null==r&&(r={}),l=this,null==(m=l.layerIds)&&(l.layerIds=[]),null==(v=l.layers)&&(l.layers={}),null==l.paper&&(l.paper=l.createSVGLayer()),f=t,"object"===Ir(r)?(s=r.name,h=r.key,y=r.title):r={},null==s&&(s=f),d=e("#"+f,l.svgSrc),0!==d.length?(a=new F(s,h,l,r.filter),n=e("*",d[0]),c=n.length,o=null!=(g=r.chunks)?g:c,i=0,p=function(){var t,e,s,l,h,f;for(t=o*i,e=h=0;o>=0?o>h:h>o;e=o>=0?++h:--h)c>t+e&&a.addPath(n.get(t+e),y);if(null!=r.styles){f=r.styles;for(s in f)l=f[s],a.style(s,l)}return i++,c>i*o?setTimeout(p,0):u()},u=function(){var t,e,n,o;for(a.paths.length>0&&(l.layers[s]=a,l.layerIds.push(s)),t=["click","mouseenter","mouseleave","dblclick","mousedown","mouseup","mouseover","mouseout"],n=0,o=t.length;o>n;n++)e=t[n],"function"===Ir(r[e])&&a.on(e,r[e]);return null!=r.tooltips&&a.tooltips(r.tooltips),null!=r.done?r.done():void 0},null!=r.chunks?setTimeout(p,0):p(),l):void 0},t.prototype.getLayer=function(t){var r;return r=this,null==r.layers[t]?(Lr("could not find layer "+t),null):r.layers[t]},t.prototype.getLayerPath=function(t,r){var e,n;return n=this,e=n.getLayer(t),null!=e?"object"===Ir(r)?e.getPaths(r)[0]:e.getPath(r):null},t.prototype.onLayerEvent=function(t,r,e){var n;return n=this,n.getLayer(e).on(t,r),n},t.prototype.addMarker=function(t){var r,e;return r=this,r.markers.push(t),e=r.viewBC.project(r.viewAB.project(r.proj.project(t.lonlat.lon,t.lonlat.lat))),t.render(e[0],e[1],r.container,r.paper)},t.prototype.clearMarkers=function(){var t,r,e,n,o;for(r=this,o=r.markers,e=0,n=o.length;n>e;e++)t=o[e],t.clear();return r.markers=[]},t.prototype.fadeIn=function(t){var r,e,n,o,i,a,s,l,u,p,h;null==t&&(t={}),i=this,o=null!=(l=t.layer)?l:i.layerIds[i.layerIds.length-1],e=null!=(u=t.duration)?u:500,p=i.layers[o].pathsById,h=[];for(n in p)s=p[n],h.push(function(){var t,n,o;for(o=[],t=0,n=s.length;n>t;t++)a=s[t],r="function"===Ir(e)?e(a.data):e,a.svgPath.attr("opacity",0),o.push(a.svgPath.animate({opacity:1},r));return o}());return h},t.prototype.loadCoastline=function(){var t;return t=this,e.ajax({url:"coastline.json",success:t.renderCoastline,context:t})},t.prototype.resize=function(t,r){var e,n,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g;a=this,e=a.container,null==t&&(t=e.width()),null==r&&(r=e.height()),a.viewport=p=new _r.BBox(0,0,t,r),null!=a.paper&&a.paper.setSize(p.width,p.height),p=a.viewport,s=null!=(d=a.opts.padding)?d:0,n=null!=(y=a.opts.halign)?y:"center",u=null!=(m=a.opts.valign)?m:"center",h=a.opts.zoom,a.viewBC=new _r.View(a.viewAB.asBBox(),p.width*h,p.height*h,s,n,u),v=a.layers;for(o in v)i=v[o],i.setView(a.viewBC);if(null!=a.symbolGroups)for(g=a.symbolGroups,c=0,f=g.length;f>c;c++)l=g[c],l.onResize()},t.prototype.lonlat2xy=function(t){var r,e;return e=this,2===t.length&&(t=new _r.LonLat(t[0],t[1])),3===t.length&&(t=new _r.LonLat(t[0],t[1],t[2])),r=e.proj.project(t.lon,t.lat,t.alt),e.viewBC.project(e.viewAB.project(r))},t.prototype.addSymbolGroup=function(t){var r,e;return r=this,null==(e=r.symbolGroups)&&(r.symbolGroups=[]),r.symbolGroups.push(t)},t.prototype.removeSymbols=function(t){var r,e,n,o,i,a;if(r=this,null!=t)return r.symbolGroups[t].remove();for(i=r.symbolGroups,a=[],n=0,o=i.length;o>n;n++)e=i[n],a.push(e.remove());return a},t.prototype.clear=function(){var t,r,n,o,i,a;if(r=this,null!=r.layers){for(t in r.layers)r.layers[t].remove();r.layers={},r.layerIds=[]}if(null!=r.symbolGroups){for(a=r.symbolGroups,o=0,i=a.length;i>o;o++)n=a[o],n.remove();r.symbolGroups=[]}return null!=r.paper?(e(r.paper.canvas).remove(),r.paper=void 0):void 0},t.prototype.loadCSS=function(t,r){var n;return n=this,e.browser.msie?e.ajax({url:t,dataType:"text",success:function(t){return n.styles=_r.parsecss(t),r()},error:function(r,e,n){return Lr("error while loading "+t,r,e,n)}}):(e("body").append('<link rel="stylesheet" href="'+t+'" />'),r())},t.prototype.applyCSS=function(t,r){var e,n,o,i,a,s,l,u,p,h,c,f,d,y,m;if(o=this,null==o.styles)return t;null==(f=o._pathTypes)&&(o._pathTypes=["path","circle","rectangle","ellipse"]),null==(d=o._regardStyles)&&(o._regardStyles=["fill","stroke","fill-opacity","stroke-width","stroke-opacity"]);for(s in o.styles)for(i=s,y=i.split(","),u=0,h=y.length;h>u;u++)if(l=y[u],i=l.split(" "),i=i[i.length-1],i=i.split(":"),!(i.length>1||(i=i[0].split("."),e=i.slice(1),e.length>0&&0>e.indexOf(r)||(i=i[0],o._pathTypes.indexOf(i)>=0&&i!==t.type))))for(a=o.styles[s],m=o._regardStyles,p=0,c=m.length;c>p;p++)n=m[p],null!=a[n]&&t.attr(n,a[n]);return t},t.prototype.style=function(t,r,e,n,o){var i;return i=this,t=i.getLayer(t),null!=t?t.style(r,e,n,o):void 0},t}(),_r.Kartograph=L,_r.map=function(t,r,e){return new L(t,r,e)},_r.__mapCache={},T=function(){function t(t,r,e){null==e&&(e=0),this.lon=Number(t),this.lat=Number(r),this.alt=Number(e)}return t.prototype.distance=function(t){var r,e,n,o,i,a,s,l,u;return u=this,r=6371,a=Math.PI/180,o=(t.lat-u.lat)*a,i=(t.lon-u.lon)*a,s=u.lat*a,l=t.lat*a,e=Math.sin(o/2)*Math.sin(o/2)+Math.sin(i/2)*Math.sin(i/2)*Math.cos(s)*Math.cos(l),n=2*Math.atan2(Math.sqrt(e),Math.sqrt(1-e)),r*n},t}(),N=function(t){function r(t,e,n){null==n&&(n=0),r.__super__.constructor.call(this,e,t,n)}return ne(r,t),r}(T),_r.LonLat=T,_r.LatLon=N,F=function(){function t(t,r,e,n){var o;o=this,o.id=t,o.path_id=r,o.paper=e.paper,o.view=e.viewBC,o.map=e,o.filter=n}return t.prototype.addPath=function(t,r){var e,n,o,i,a,s,l;return n=this,null==(a=n.paths)&&(n.paths=[]),e=new V(t,n.id,n.map,r),"function"===Ir(n.filter)&&n.filter(e.data)===!1?(e.remove(),void 0):(n.paths.push(e),null!=n.path_id?(null==(s=n.pathsById)&&(n.pathsById={}),null==(l=(o=n.pathsById)[i=e.data[n.path_id]])&&(o[i]=[]),n.pathsById[e.data[n.path_id]].push(e)):void 0)},t.prototype.hasPath=function(t){var r;return r=this,null!=r.pathsById&&null!=r.pathsById[t]},t.prototype.getPathsData=function(){var t,r,e,n,o,i;for(t=this,e=[],i=t.paths,n=0,o=i.length;o>n;n++)r=i[n],e.push(r.data);return e},t.prototype.getPath=function(t){var r;return r=this,r.hasPath(t)?r.pathsById[t][0]:null},t.prototype.getPaths=function(t){var r,e,n,o,i,a,s,l;if(o=this,n=[],"object"===Ir(t))for(l=o.paths,a=0,s=l.length;s>a;a++){i=l[a],e=!0;for(r in t)e=e&&i.data[r]===t[r];e&&n.push(i)}return n},t.prototype.setView=function(t){var r,e,n,o,i;for(r=this,i=r.paths,n=0,o=i.length;o>n;n++)e=i[n],e.setView(t);return r},t.prototype.remove=function(){var t,r,e,n,o,i;for(t=this,o=t.paths,i=[],e=0,n=o.length;n>e;e++)r=o[e],i.push(r.remove());return i},t.prototype.style=function(t,r,e,n){var o,i,a,s,l,u,p,h,c,f,d;if(u=this,"object"===Ir(t)){for(l in t)h=t[l],u.style(l,h);return u}for(null==e&&(e=0),null==n&&(n=0),d=u.paths,c=0,f=d.length;f>c;c++)p=d[c],h=Cr(r,p.data),s=Cr(e,p.data),a=Cr(n,p.data),s>0?(i={},i[t]=h,o=Raphael.animation(i,1e3*s),p.svgPath.animate(o.delay(1e3*a))):p.svgPath.attr(t,h);return u},t.prototype.on=function(t,r){var n,o,i,a,s,l,u;for(i=this,n=function(){function t(t,r,e){this.type=t,this.cb=r,this.layer=e,this.handle=oe(this.handle,this)}return t.prototype.handle=function(t){var r;return i=this,r=i.layer.map.pathById[t.target.getAttribute("id")],i.cb(r.data,r.svgPath,t)},t}(),o=new n(t,r,i),u=i.paths,s=0,l=u.length;l>s;s++)a=u[s],e(a.svgPath.node).bind(t,o.handle);return i},t.prototype.tooltips=function(t,r){var n,o,i,a,s,l,u;for(n=this,i=function(t,n){var o;return o={position:{target:"mouse",viewport:e(window),adjust:{x:7,y:7}},show:{delay:null!=r?r:20},events:{show:function(t,r){return e(".qtip").filter(function(){return this!==r.elements.tooltip.get(0)}).hide()}},content:{}},null!=n?"string"==typeof n?o.content.text=n:e.isArray(n)&&(o.content.title=n[0],o.content.text=n[1]):o.content.text="n/a",e(t.svgPath.node).qtip(o)},u=n.paths,s=0,l=u.length;l>s;s++)o=u[s],a=Cr(t,o.data),i(o,a);return n},t.prototype.sort=function(t){var r,e,n,o,i,a;for(e=this,e.paths.sort(function(r,e){var n,o,i;return n=t(r.data),o=t(e.data),n===o?0:null!=(i=n>o)?i:{1:-1}}),r=!1,a=e.paths,o=0,i=a.length;i>o;o++)n=a[o],r&&n.svgPath.insertAfter(r.svgPath),r=n;return e},t}(),Cr=function(t,r){return"function"===Ir(t)?t(r):t},xr=0,V=function(){function t(t,r,e,n){var o,i,a,s,l,u,p,h,c,f,d,y,m;for(s=this,l=e.paper,f=e.viewBC,s.path=u=_r.geom.Path.fromSVG(t),s.vpath=f.projectPath(u),s.svgPath=s.vpath.toSVG(l),null==e.styles?s.svgPath.node.setAttribute("class",r):e.applyCSS(s.svgPath,r),h="path_"+xr++,s.svgPath.node.setAttribute("id",h),e.pathById[h]=s,i={},a=y=0,m=t.attributes.length-1;m>=0?m>=y:y>=m;a=m>=0?++y:--y)o=t.attributes[a],"data-"===o.name.substr(0,5)&&(c=o.value,d=Number(c),""===c.trim()||d!==c||isNaN(d)||(c=d),i[o.name.substr(5)]=c);s.data=i,"string"===Ir(n)?p=n:"function"===Ir(n)&&(p=n(i)),null!=p&&s.svgPath.attr("title",p)}return t.prototype.setView=function(t){var r,e,n;return r=this,e=t.projectPath(r.path),r.vpath=e,"path"===r.path.type?(n=e.svgString(),r.svgPath.attr({path:n})):"circle"===r.path.type?r.svgPath.attr({cx:e.x,cy:e.y,r:e.r}):void 0},t.prototype.remove=function(){var t;return t=this,t.svgPath.remove()},t}(),_r.parsecss=function(t,r){var e,n,o,i,a,s,l,u;for(i={},t=wr(t),u=t.split("`b%"),s=0,l=u.length;l>s;s++)if(e=u[s],e=e.split("%b`"),!(2>e.length))if(e[0]=jr(e[0]),o=Pr(e[1]),null!=i[e[0]])for(n in o)a=o[n],i[e[0]][n]=a;else i[e[0]]=o;return"function"!==Ir(r)?i:(r(i),void 0)},Mr={},Pr=function(t){var r,e,n,o,i,a;for(n=Mr[t].replace(/^{|}$/g,""),n=wr(n),e={},a=n.split(";"),o=0,i=a.length;i>o;o++)r=a[o],r=r.split(":"),2>r.length||(e[jr(r[0])]=jr(r.slice(1).join(":")));return e},$=/{[^{}]*}/,tr=/\[[^\[\]]*\]|{[^{}]*}|\([^()]*\)|function(\s+\w+)?(\s*%b`\d+`b%){2}/,J=/(?:\/\*(?:[^\*]|\*[^\/])*\*\/)|(\\.|"(?:[^\\\"]|\\.|\\\n)*"|'(?:[^\\\']|\\.|\\\n)*')/g,rr=/%\w`(\d+)`\w%/,Br=0,wr=function(t,r){var e,n,o;for(t=t.replace(J,function(t,r){var e;return r?(e="%s`"+ ++Br+"`s%",Mr[Br]=r.replace(/^\\/,""),e):""}),e=r?tr:$;n=e.exec(t);)o="%b`"+ ++Br+"`b%",Mr[Br]=n[0],t=t.replace(e,o);return t},jr=function(t){var r;if(null==t)return t;for(;r=rr.exec(t);)t=t.replace(rr,Mr[r[1]]);return t.trim()},null==(Wr=_r.geom)&&(_r.geom={}),U=function(){function t(t,r,e){var n;null==e&&(e=!0),n=this,n.type=t,n.contours=r,n.closed=e}return t.prototype.clipToBBox=function(){throw"path clipping is not implemented yet"},t.prototype.toSVG=function(t){var r;return r=this.svgString(),t.path(r)},t.prototype.svgString=function(){var t,r,e,n,o,i,a,s,l,u,p,h,c;for(n=this,o="",e=n.closed?"Z M":"M",h=n.contours,s=0,u=h.length;u>s;s++)for(t=h[s],r=!0,o+=""===o?"M":e,l=0,p=t.length;p>l;l++)c=t[l],i=c[0],a=c[1],r||(o+="L"),o+=i+","+a,r=!1;return n.closed&&(o+="Z"),o},t.prototype.area=function(){var t,r,e,n,o,i,a,s,l;if(n=this,null!=n.areas)return n._area;for(n.areas=[],n._area=0,s=n.contours,o=0,a=s.length;a>o;o++){for(r=s[o],t=0,e=i=0,l=r.length-2;l>=0?l>=i:i>=l;e=l>=0?++i:--i)t+=r[e][0]*r[e+1][1]-r[e+1][0]*r[e][1];t*=.5,t=t,n.areas.push(t),n._area+=t}return n._area},t.prototype.centroid=function(){var t,r,e,n,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g,_,b,x,w,M,P,C,j,A,B,L,S,k,I,N,G,z,E;if(y=this,null!=y._centroid)return y._centroid;for(e=y.area(),i=a=0,p=j=0,I=y.contours.length-1;I>=0?I>=j:j>=I;p=I>=0?++j:--j){for(o=y.contours[p],n=[],f=o.length,h=A=0,N=f-1;N>=0?N>=A:A>=N;h=N>=0?++A:--A)if(m=o[h],v=o[(h+1)%f],s=0,n.push(m),m[0]===v[0]&&(s=Math.abs(m[1]-v[1])),m[1]===v[1]&&(s=Math.abs(m[0]-v[0])),s>10)for(t=Math.floor(2*s),g=B=1,G=t-1;G>=1?G>=B:B>=G;g=G>=1?++B:--B)_=[m[0]+g/t*(v[0]-m[0]),m[1]+g/t*(v[1]-m[1])],n.push(_);for(r=y.areas[p],w=P=M=C=0,f=n.length,S=[],b=0,h=L=0,z=f-1;z>=0?z>=L:L>=z;h=z>=0?++L:--L)m=n[h],v=n[(h+1)%f],l=v[0]-m[0],u=v[1]-m[1],d=Math.sqrt(l*l+u*u),S.push(d),b+=d;for(h=k=0,E=f-1;E>=0?E>=k:k>=E;h=E>=0?++k:--k)m=n[h],x=S[h]/b,w+=x*m[0],P+=x*m[1];c=r/e,i+=w*c,a+=P*c}return y._centroid=[i,a],y._centroid},t.prototype.isInside=function(t,r){var e,n,o,i,a,s;if(i=this,e=i._bbox,e[0]>t||t>e[2]||e[1]>r||r>e[3])return!1;for(o=a=0,s=i.contours.length-1;s>=0?s>=a:a>=s;o=s>=0?++a:--a)if(n=i.contours[o],Sr(n,[t,r]))return!0;return!1},t}(),_r.geom.Path=U,f=function(t){function r(t,e,n){this.x=t,this.y=e,this.r=n,r.__super__.constructor.call(this,"circle",null,!0)}return ne(r,t),r.prototype.toSVG=function(t){var r;return r=this,t.circle(r.x,r.y,r.r)},r.prototype.centroid=function(){var t;return t=this,[t.x,t.y]},r.prototype.area=function(){var t;return t=this,Math.PI*t.r*m.r},r}(U),_r.geom.Circle=f,U.fromSVG=function(t){var r,e,n,o,i,a,s,l,u,p,h,c,f,d;if(o=[],c=t.nodeName,p=null,"path"===c){for(l=t.getAttribute("d").trim(),s=Raphael.parsePathString(l),r="Z"===s[s.length-1],h=r?"Z M":"M",n=[],f=0,d=s.length;d>f;f++)e=s[f],0!==e.length&&("M"===e[0]?(n.length>2&&(o.push(n),n=[]),n.push([e[1],e[2]])):"L"===e[0]?n.push([e[1],e[2]]):"Z"===e[0]&&n.length>2&&(o.push(n),n=[]));n.length>2&&(o.push(n),n=[]),p=new _r.geom.Path(c,o,r)}else"circle"===c&&(i=t.getAttribute("cx"),a=t.getAttribute("cy"),u=t.getAttribute("r"),p=new _r.geom.Circle(i,a,u));return p},G=function(){function t(t){this.points=t}return t.prototype.clipToBBox=function(r){var e,n,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g,_,b,x;for(c=this,e=(new _r.geom.clipping.CohenSutherland).clip,h=[],a=[],i=!1,o=v=0,g=c.points.length-2;g>=0?g>=v:v>=g;o=g>=0?++v:--v){_=c.points[o],s=_[0],l=_[1],b=c.points[o+1],u=b[0],p=b[1];try{x=e(r,s,l,u,p),f=x[0],y=x[1],d=x[2],m=x[3],i=!0,h.push([f,y]),(u!==d||p!==y||o===len(c.points)-2)&&h.push([d,m])}catch(w){n=w,i&&h.length>1&&(a.push(new t(h)),h=[]),i=!1}}return h.length>1&&a.push(new t(h)),a},t.prototype.toSVG=function(){var t,r,e,n,o,i,a,s;for(r=this,t=[],a=r.points,o=0,i=a.length;i>o;o++)s=a[o],e=s[0],n=s[1],t.push(e+","+n);return"M"+t.join("L")},t}(),_r.geom.Line=G,Sr=function(t,r){var e,n,o,i,a,s,l,u,p,h,c,f,d,y,m;for(s=Math.PI,n=Math.atan2,p=2*s,a=t.length,e=0,i=y=0,m=a-1;m>=0?m>=y:y>=m;i=m>=0?++y:--y){for(h=t[i][0]-r[0],f=t[i][1]-r[1],c=t[(i+1)%a][0]-r[0],d=t[(i+1)%a][1]-r[1],l=n(f,h),u=n(d,c),o=u-l;o>s;)o-=p;for(;-s>o;)o+=p;e+=o}return Math.abs(e)>=s},kr=_r.proj={},Function.prototype.bind=function(t){var r;return r=this,function(){return r.apply(t,arguments)}},Q=function(){function t(t){var r,e,n;r=this,r.lon0=null!=(e=t.lon0)?e:0,r.lat0=null!=(n=t.lat0)?n:0,r.PI=Math.PI,r.HALFPI=.5*r.PI,r.QUARTERPI=.25*r.PI,r.RAD=r.PI/180,r.DEG=180/r.PI,r.lam0=r.rad(this.lon0),r.phi0=r.rad(this.lat0),r.minLat=-90,r.maxLat=90}return t.parameters=[],t.title="Projection",t.prototype.rad=function(t){return t*this.RAD},t.prototype.deg=function(t){return t*this.DEG},t.prototype.plot=function(t,r){var e,n,o,i,a,s,l,u,p,h,c;for(null==r&&(r=!0),i=[],e=!0,u=0,p=t.length;p>u;u++)h=t[u],o=h[0],n=h[1],a=this._visible(o,n),a&&(e=!1),c=this.project(o,n),s=c[0],l=c[1],!a&&r?i.push(this._truncate(s,l)):i.push([s,l]);return e?null:[i]},t.prototype.sea=function(){var t,r,e,n,o,i,a,s,l,u,p,h,c,f;for(i=this,o=i.project.bind(this),n=[],t=i.lon0,i.lon0=0,e=a=-180;180>=a;e=++a)n.push(o(e,i.maxLat));for(r=s=p=i.maxLat,h=i.minLat;h>=p?h>=s:s>=h;r=h>=p?++s:--s)n.push(o(180,r));for(e=l=180;l>=-180;e=--l)n.push(o(e,i.minLat));for(r=u=c=i.minLat,f=i.maxLat;f>=c?f>=u:u>=f;r=f>=c?++u:--u)n.push(o(-180,r));return i.lon0=t,n},t.prototype.world_bbox=function(){var t,r,e,n,o,i;for(r=this.project.bind(this),n=this.sea(),t=new _r.BBox,o=0,i=n.length;i>o;o++)e=n[o],t.update(e[0],e[1]);return t},t.prototype.toString=function(){var t;return t=this,"[Proj: "+t.name+"]"},t}(),Q.fromXML=function(t){var r,e,n,o,i,a,s;for(n=t.getAttribute("id"),o={},e=a=0,s=t.attributes.length-1;s>=0?s>=a:a>=s;e=s>=0?++a:--a)r=t.attributes[e],"id"!==r.name&&(o[r.name]=r.value);return i=new _r.proj[n](o),i.name=n,i},_r.Proj=Q,v=function(t){function r(t){var e,n,o;null==t&&(t={}),e=this,e.flip=Number(null!=(n=t.flip)?n:0),1===e.flip&&(t.lon0=null!=(o=-t.lon0)?o:0),r.__super__.constructor.call(this,t)}return ne(r,t),r.parameters=["lon0","flip"],r.title="Cylindrical Projection",r.prototype._visible=function(){return!0},r.prototype.clon=function(t){return t-=this.lon0,-180>t?t+=360:t>180&&(t-=360),t},r.prototype.ll=function(t,r){return 1===this.flip?[-t,-r]:[t,r]},r}(Q),b=function(t){function r(){return Zr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.title="Equirectangular Projection",r.prototype.project=function(t,r){var e;return e=this.ll(t,r),t=e[0],r=e[1],t=this.clon(t),[1e3*t*Math.cos(this.phi0),1e3*-1*r]},r}(v),kr.lonlat=b,h=function(t){function r(t){var e;r.__super__.constructor.call(this,t),this.lat1=null!=(e=t.lat1)?e:0,this.phi1=this.rad(this.lat1)}return ne(r,t),r.parameters=["lon0","lat1","flip"],r.title="Cylindrical Equal Area",r.prototype.project=function(t,r){var e,n,o,i,a;return a=this.ll(t,r),t=a[0],r=a[1],e=this.rad(this.clon(t)),n=this.rad(-1*r),o=e*Math.cos(this.phi1),i=Math.sin(n)/Math.cos(this.phi1),[1e3*o,1e3*i]},r}(v),kr.cea=h,w=function(t){function r(t){t.lat1=45,r.__super__.constructor.call(this,t)}return ne(r,t),r.title="Gall-Peters Projection",r.parameters=["lon0","flip"],r}(h),kr.gallpeters=w,j=function(t){function r(t){t.lat1=37.7,r.__super__.constructor.call(this,t)}return ne(r,t),r.title="Hobo-Dyer Projection",r.parameters=["lon0","flip"],r}(h),kr.hobodyer=j,l=function(t){function r(t){t.lat1=30,r.__super__.constructor.call(this,t)}return ne(r,t),r.title="Behrmann Projection",r.parameters=["lon0","flip"],r}(h),kr.behrmann=l,a=function(t){function r(t){t.lat1=50,r.__super__.constructor.call(this,t)}return ne(r,t),r.title="Balthasart Projection",r.parameters=["lon0","flip"],r}(h),kr.balthasart=a,O=function(t){function r(t){r.__super__.constructor.call(this,t),this.minLat=-85,this.maxLat=85}return ne(r,t),r.title="Mercator Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l;return i=this,l=i.ll(t,r),t=l[0],r=l[1],n=Math,e=i.rad(i.clon(t)),o=i.rad(-1*r),a=1e3*e,s=1e3*n.log((1+n.sin(o))/n.cos(o)),[a,s]},r}(v),kr.mercator=O,W=function(t){function r(){return $r=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.title="Pseudo-Cylindrical Projection",r}(v),X=function(t){function r(t){var e;r.__super__.constructor.call(this,t),e=this,e.A0=.8707,e.A1=-.131979,e.A2=-.013791,e.A3=.003971,e.A4=-.001529,e.B0=1.007226,e.B1=.015085,e.B2=-.044475,e.B3=.028874,e.B4=-.005916,e.C0=e.B0,e.C1=3*e.B1,e.C2=7*e.B2,e.C3=9*e.B3,e.C4=11*e.B4,e.EPS=1e-11,e.MAX_Y=.8707*.52*Math.PI}return ne(r,t),r.title="Natural Earth Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u;return a=this,u=a.ll(t,r),t=u[0],r=u[1],e=a.rad(a.clon(t)),n=a.rad(-1*r),o=n*n,i=o*o,s=180*e*(a.A0+o*(a.A1+o*(a.A2+i*o*(a.A3+o*a.A4))))+500,l=180*n*(a.B0+o*(a.B1+i*(a.B2+a.B3*o+a.B4*i)))+270,[s,l]},r}(W),kr.naturalearth=X,er=function(t){function r(t){var e;r.__super__.constructor.call(this,t),e=this,e.X=[1,-5.67239e-12,-715511e-10,311028e-11,.9986,-482241e-9,-24897e-9,-133094e-11,.9954,-831031e-9,-44861e-9,-9.86588e-7,.99,-.00135363,-596598e-10,367749e-11,.9822,-.00167442,-44975e-10,-572394e-11,.973,-.00214869,-903565e-10,1.88767e-8,.96,-.00305084,-900732e-10,164869e-11,.9427,-.00382792,-653428e-10,-261493e-11,.9216,-.00467747,-104566e-9,48122e-10,.8962,-.00536222,-323834e-10,-543445e-11,.8679,-.00609364,-1139e-7,332521e-11,.835,-.00698325,-640219e-10,9.34582e-7,.7986,-.00755337,-500038e-10,9.35532e-7,.7597,-.00798325,-359716e-10,-227604e-11,.7186,-.00851366,-70112e-9,-863072e-11,.6732,-.00986209,-199572e-9,191978e-10,.6213,-.010418,883948e-10,624031e-11,.5722,-.00906601,181999e-9,624033e-11,.5322,0,0,0],e.Y=[0,.0124,3.72529e-10,1.15484e-9,.062,.0124001,1.76951e-8,-5.92321e-9,.124,.0123998,-7.09668e-8,2.25753e-8,.186,.0124008,2.66917e-7,-8.44523e-8,.248,.0123971,-9.99682e-7,3.15569e-7,.31,.0124108,373349e-11,-11779e-10,.372,.0123598,-13935e-9,439588e-11,.434,.0125501,520034e-10,-100051e-10,.4968,.0123198,-980735e-10,922397e-11,.5571,.0120308,402857e-10,-52901e-10,.6176,.0120369,-390662e-10,7.36117e-7,.6769,.0117015,-280246e-10,-8.54283e-7,.7346,.0113572,-408389e-10,-5.18524e-7,.7903,.0109099,-486169e-10,-10718e-10,.8435,.0103433,-646934e-10,5.36384e-9,.8936,.00969679,-646129e-10,-854894e-11,.9394,.00840949,-192847e-9,-421023e-11,.9761,.00616525,-256001e-9,-421021e-11,1,0,0,0],e.NODES=18,e.FXC=.8487,e.FYC=1.3523,e.C1=11.459155902616464,e.RC1=.08726646259971647,e.ONEEPS=1.000001,e.EPS=1e-8}return ne(r,t),r.title="Robinson Projection",r.prototype._poly=function(t,r,e){return t[r]+e*(t[r+1]+e*(t[r+2]+e*t[r+3]))},r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u;return a=this,u=a.ll(t,r),t=u[0],r=u[1],t=a.clon(t),n=a.rad(t),o=a.rad(-1*r),i=Math.abs(o),e=Math.floor(i*a.C1),e>=a.NODES&&(e=a.NODES-1),i=a.deg(i-a.RC1*e),e*=4,s=1e3*a._poly(a.X,e,i)*a.FXC*n,l=1e3*a._poly(a.Y,e,i)*a.FYC,0>o&&(l=-l),[s,l]},r}(W),kr.robinson=er,g=function(t){function r(t){var e;r.__super__.constructor.call(this,t),e=this,e.C_x=.4222382003157712,e.C_y=1.3265004281770023,e.RC_y=.7538633073600218,e.C_p=3.5707963267948966,e.RC_p=.2800495767557787,e.EPS=1e-7,e.NITER=6}return ne(r,t),r.title="Eckert IV Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u,p,h,c;for(s=this,c=s.ll(t,r),t=c[0],r=c[1],i=s.rad(s.clon(t)),a=s.rad(-1*r),l=s.C_p*Math.sin(a),e=a*a,a*=.895168+e*(.0218849+.00826809*e),o=s.NITER;o>0&&(n=Math.cos(a),u=Math.sin(a),e=(a+u*(n+2)-l)/(1+n*(n+2)-u*u),a-=e,!(Math.abs(e)<s.EPS));)o-=1;return 0===o?(p=s.C_x*i,h=0>a?-s.C_y:s.C_y):(p=s.C_x*i*(1+Math.cos(a)),h=s.C_y*Math.sin(a)),[p,h]},r}(W),kr.eckert4=g,ir=function(t){function r(){return Jr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.title="Sinusoidal Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s;return n=this,s=n.ll(t,r),t=s[0],r=s[1],e=n.rad(n.clon(t)),o=n.rad(-1*r),i=1032*e*Math.cos(o),a=1032*o,[i,a]},r}(W),kr.sinusoidal=ir,H=function(t){function r(t,e,n,o,i){var a,s,l,u;null==e&&(e=1.5707963267948966),null==n&&(n=null),null==o&&(o=null),null==i&&(i=null),r.__super__.constructor.call(this,t),a=this,a.MAX_ITER=10,a.TOLERANCE=1e-7,null!=e?(s=e+e,u=Math.sin(e),l=Math.sqrt(2*Math.PI*u/(s+Math.sin(s))),a.cx=2*l/Math.PI,a.cy=l/u,a.cp=s+Math.sin(s)):null!=n&&null!=o&&"undefined"!=typeof cz&&null!==cz?(a.cx=n,a.cy=o,a.cp=i):Lr("kartograph.proj.Mollweide: either p or cx,cy,cp must be defined")}return ne(r,t),r.title="Mollweide Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u,p,h,c;for(s=this,c=s.ll(t,r),t=c[0],r=c[1],a=Math,e=a.abs,i=s.rad(s.clon(t)),l=s.rad(r),o=s.cp*a.sin(l),n=s.MAX_ITER;0!==n&&(u=(l+a.sin(l)-o)/(1+a.cos(l)),l-=u,!(e(u)<s.TOLERANCE));)n-=1;return 0===n?l=l>=0?s.HALFPI:-s.HALFPI:l*=.5,p=1e3*s.cx*i*a.cos(l),h=1e3*s.cy*a.sin(l),[p,-1*h]},r}(W),kr.mollweide=H,fr=function(t){function r(t){r.__super__.constructor.call(this,t,1.0471975511965976)}return ne(r,t),r.title="Wagner IV Projection",r}(H),kr.wagner4=fr,dr=function(t){function r(t){r.__super__.constructor.call(this,t,null,.90977,1.65014,3.00896)}return ne(r,t),r.title="Wagner V Projection",r}(H),kr.wagner5=dr,R=function(t){function r(){return te=r.__super__.constructor.apply(this,arguments)}var e,n;return ne(r,t),n=-89,e=89,r.parameters=["lon0","lat0","flip"],r.title="Loximuthal Projection (equidistant)",r.prototype.project=function(t,r){var e,n,o,i,a,s,l;return o=this,l=o.ll(t,r),t=l[0],r=l[1],n=Math,e=o.rad(o.clon(t)),i=o.rad(r),a=i===o.phi0?e*n.cos(o.phi0):e*(i-o.phi0)/(n.log(n.tan(o.QUARTERPI+.5*i))-n.log(n.tan(o.QUARTERPI+.5*o.phi0))),a*=1e3,s=1e3*(i-o.phi0),[a,-1*s]},r}(W),kr.loximuthal=R,c=function(t){function r(){return re=r.__super__.constructor.apply(this,arguments)}var e,n,o,i,a;return ne(r,t),r.title="Canters Modified Sinusoidal I",r.parameters=["lon0"],e=1.1966,n=-.129,o=3*n,i=-.0076,a=5*i,r.prototype.project=function(t,r){var s,l,u,p,h,c;return s=this,c=s.ll(t,r),t=c[0],r=c[1],t=s.rad(s.clon(t)),r=s.rad(r),p=r*r,h=p*p,l=1e3*t*Math.cos(r)/(e+o*p+a*h),u=1e3*r*(e+n*p+i*h),[l,-1*u]},r}(W),kr.canters1=c,C=function(t){function r(t){r.__super__.constructor.call(this,t)}var e,n,o,i,a,s,l,u,p,h,c,f,d;return ne(r,t),r.title="Hatano Projection",l=20,o=1e-7,u=1.000001,e=2.67595,n=2.43763,p=.3736990601468637,h=.4102345310814193,a=1.75859,s=1.93052,f=.5686373742600607,d=.5179951515653813,i=.85,c=1.1764705882352942,r.prototype.project=function(t,r){var u,p,h,c,f,d,y,m,v,g;for(c=this,g=c.ll(t,r),t=g[0],r=g[1],h=c.rad(c.clon(t)),f=c.rad(r),u=Math.sin(f)*(0>f?n:e),p=v=l;v>=1&&(d=(f+Math.sin(f)-u)/(1+Math.cos(f)),f-=d,!(o>Math.abs(d)));p=v+=-1);return y=1e3*i*h*Math.cos(f*=.5),m=1e3*Math.sin(f)*(0>f?s:a),[y,-1*m]
},r}(W),kr.hatano=C,P=function(t){function r(t){var e;r.__super__.constructor.call(this,t),e=this,e.lat1=41.737,e.p1=new H,e.p0=new ir}return ne(r,t),r.title="Goode Homolosine Projection",r.parameters=["lon0"],r.prototype.project=function(t,r){var e,n;return e=this,n=e.ll(t,r),t=n[0],r=n[1],t=e.clon(t),Math.abs(r)>e.lat1?e.p1.project(t,r):e.p0.project(t,r)},r}(W),kr.goodehomolosine=P,q=function(t){function r(t){r.__super__.constructor.call(this,t),this.r=100*this.HALFPI}var e;return ne(r,t),r.title="Nicolosi Globular Projection",r.parameters=["lon0"],e=1e-10,r.prototype._visible=function(t){var r;return r=this,t=r.clon(t),t>-90&&90>t},r.prototype.project=function(t,r){var n,o,i,a,s,l,u,p,h,c,f,d,y;return s=this,y=s.ll(t,r),t=y[0],r=y[1],i=s.rad(s.clon(t)),u=s.rad(r),e>Math.abs(i)?(f=0,d=u):e>Math.abs(u)?(f=i,d=0):e>Math.abs(Math.abs(i)-s.HALFPI)?(f=i*Math.cos(u),d=s.HALFPI*Math.sin(u)):e>Math.abs(Math.abs(u)-s.HALFPI)?(f=0,d=u):(c=s.HALFPI/i-i/s.HALFPI,n=u/s.HALFPI,h=Math.sin(u),o=(1-n*n)/(h-n),p=c/o,p*=p,a=(c*h/o-.5*c)/(1+p),l=(h/p+.5*o)/(1+1/p),f=Math.cos(u),f=Math.sqrt(a*a+f*f/(1+p)),f=s.HALFPI*(a+(0>i?-f:f)),d=Math.sqrt(l*l-(h*h/p+o*h-1)/(1+1/p)),d=s.HALFPI*(l+(0>u?d:-d))),[100*f,-100*d]},r.prototype.sea=function(){var t,r,e,n,o;for(r=[],n=this.r,t=Math,e=o=0;360>=o;e=++o)r.push([t.cos(this.rad(e))*n,t.sin(this.rad(e))*n]);return r},r.prototype.world_bbox=function(){var t;return t=this.r,new _r.BBox(-t,-t,2*t,2*t)},r}(W),kr.nicolosi=q,o=function(t){function r(t,e){var n;null==e&&(e=1e3),r.__super__.constructor.call(this,t),n=this,n.r=e,n.elevation0=n.to_elevation(n.lat0),n.azimuth0=n.to_azimuth(n.lon0)}return ne(r,t),r.parameters=["lon0","lat0"],r.title="Azimuthal Projection",r.prototype.to_elevation=function(t){var r;return r=this,(t+90)/180*r.PI-r.HALFPI},r.prototype.to_azimuth=function(t){var r;return r=this,2*(t+180)/360*r.PI-r.PI},r.prototype._visible=function(t,r){var e,n,o,i,a;return a=this,i=Math,o=a.to_elevation(r),e=a.to_azimuth(t),n=i.sin(o)*i.sin(a.elevation0)+i.cos(a.elevation0)*i.cos(o)*i.cos(e-a.azimuth0),n>=0},r.prototype._truncate=function(t,r){var e,n,o,i,a;return e=Math,n=this.r,o=e.atan2(r-n,t-n),i=n+n*e.cos(o),a=n+n*e.sin(o),[i,a]},r.prototype.sea=function(){var t,r,e,n,o;for(r=[],n=this.r,t=Math,e=o=0;360>=o;e=++o)r.push([n+t.cos(this.rad(e))*n,n+t.sin(this.rad(e))*n]);return r},r.prototype.world_bbox=function(){var t;return t=this.r,new _r.BBox(0,0,2*t,2*t)},r}(Q),D=function(t){function r(){return Tr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.title="Orthographic Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u;return i=this,o=Math,n=i.to_elevation(r),e=i.to_azimuth(t),s=i.r*o.cos(n)*o.sin(e-i.azimuth0),u=-i.r*(o.cos(i.elevation0)*o.sin(n)-o.sin(i.elevation0)*o.cos(n)*o.cos(e-i.azimuth0)),a=i.r+s,l=i.r+u,[a,l]},r}(o),kr.ortho=D,S=function(t){function r(t){r.__super__.constructor.call(this,t),this.scale=.5*Math.sqrt(2)}return ne(r,t),r.title="Lambert Azimuthal Equal-Area Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u,p,h;return a=this.rad(r),o=this.rad(t),i=Math,s=i.sin,e=i.cos,n=i.pow(2/(1+s(this.phi0)*s(a)+e(this.phi0)*e(a)*e(o-this.lam0)),.5),n*=this.scale,u=this.r*n*e(a)*s(o-this.lam0),h=-this.r*n*(e(this.phi0)*s(a)-s(this.phi0)*e(a)*e(o-this.lam0)),l=this.r+u,p=this.r+h,[l,p]},r}(o),kr.laea=S,lr=function(t){function r(){return Rr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.title="Stereographic Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u,p,h,c;return s=this.rad(r),i=this.rad(t),a=Math,l=a.sin,e=a.cos,o=.5,n=2*o/(1+l(this.phi0)*l(s)+e(this.phi0)*e(s)*e(i-this.lam0)),p=this.r*n*e(s)*l(i-this.lam0),c=-this.r*n*(e(this.phi0)*l(s)-l(this.phi0)*e(s)*e(i-this.lam0)),u=this.r+p,h=this.r+c,[u,h]},r}(o),kr.stereo=lr,nr=function(t){function r(t){var e,n,o,i,a,s,l,u,p,h;for(r.__super__.constructor.call(this,{lon0:0,lat0:0}),this.dist=null!=(u=t.dist)?u:3,this.up=this.rad(null!=(p=t.up)?p:0),this.tilt=this.rad(null!=(h=t.tilt)?h:0),this.scale=1,i=Number.MAX_VALUE,o=-1*Number.MAX_VALUE,e=s=0;179>=s;e=++s)for(n=l=0;360>=l;n=++l)a=this.project(n-180,e-90),i=Math.min(a[0],i),o=Math.max(a[0],o);this.scale=2*this.r/(o-i),r.__super__.constructor.call(this,t)}return ne(r,t),r.parameters=["lon0","lat0","tilt","dist","up"],r.title="Satellite Projection",r.prototype.project=function(t,r,e){var n,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g,_,b,x,w,M;return null==e&&(e=0),c=this.rad(r),p=this.rad(t),h=Math,y=h.sin,i=h.cos,f=this.r,d=f*(e+6371)/3671,a=y(this.phi0)*y(c)+i(this.phi0)*i(c)*i(p-this.lam0),u=(this.dist-1)/(this.dist-a),u=(this.dist-1)/(this.dist-a),u*=this.scale,_=d*u*i(c)*y(p-this.lam0),w=-d*u*(i(this.phi0)*y(c)-y(this.phi0)*i(c)*i(p-this.lam0)),l=i(this.up),v=y(this.up),s=i(this.tilt),m=y(this.tilt),o=d*(this.dist-1),n=(w*l+_*v)*y(this.tilt/o)+s,b=(_*l-w*v)*i(this.tilt/n),M=(w*l+_*v)/n,g=f+b,x=f+M,[g,x]},r.prototype._visible=function(t,r){var e,n,o,i;return o=this.to_elevation(r),e=this.to_azimuth(t),i=Math,n=i.sin(o)*i.sin(this.elevation0)+i.cos(this.elevation0)*i.cos(o)*i.cos(e-this.azimuth0),n>=1/this.dist},r.prototype.sea=function(){var t,r,e,n,o;for(r=[],n=this.r,t=Math,e=o=0;360>=o;e=++o)r.push([n+t.cos(this.rad(e))*n,n+t.sin(this.rad(e))*n]);return r},r}(o),kr.satellite=nr,_=function(t){function r(){return Fr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.title="Equidistant Azimuthal Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u,p,h,c,f,d;return l=this,u=l.rad(r),a=l.rad(t),s=Math,p=s.sin,n=s.cos,o=p(this.phi0)*p(u)+n(this.phi0)*n(u)*n(a-this.lam0),e=s.acos(o),i=.325*e/p(e),c=this.r*i*n(u)*p(a-this.lam0),d=-this.r*i*(n(this.phi0)*p(u)-p(this.phi0)*n(u)*n(a-this.lam0)),h=this.r+c,f=this.r+d,[h,f]},r.prototype._visible=function(){return!0},r}(o),kr.equi=_,n=function(t){function r(t){var e;e=this,t.lat0=0,r.__super__.constructor.call(this,t),e.lam0=0}var e;return ne(r,t),r.title="Aitoff Projection",r.parameters=["lon0"],e=.6366197723675814,r.prototype.project=function(t,r){var n,o,i,a,s,l,u,p;return a=this,p=a.ll(t,r),t=p[0],r=p[1],t=a.clon(t),i=a.rad(t),s=a.rad(r),n=.5*i,o=Math.acos(Math.cos(s)*Math.cos(n)),0!==o?(u=1/Math.sin(o),l=2*o*Math.cos(s)*Math.sin(n)*u,u*=o*Math.sin(s)):l=u=0,a.winkel&&(l=.5*(l+i*e),u=.5*(u+s)),[1e3*l,-1e3*u]},r.prototype._visible=function(){return!0},r}(W),kr.aitoff=n,yr=function(t){function r(t){r.__super__.constructor.call(this,t),this.winkel=!0}return ne(r,t),r.title="Winkel Tripel Projection",r}(n),kr.winkel3=yr,y=function(t){function r(t){var e,n,o;e=this,r.__super__.constructor.call(this,t),e.lat1=null!=(n=t.lat1)?n:30,e.phi1=e.rad(e.lat1),e.lat2=null!=(o=t.lat2)?o:50,e.phi2=e.rad(e.lat2)}return ne(r,t),r.title="Conic Projection",r.parameters=["lon0","lat0","lat1","lat2"],r.prototype._visible=function(t,r){var e;return e=this,r>e.minLat&&e.maxLat>r},r.prototype._truncate=function(t,r){return[t,r]},r.prototype.clon=function(t){return t-=this.lon0,-180>t?t+=360:t>180&&(t-=360),t},r}(Q),k=function(t){function r(t){var e,n,o,i,a,s,l,u,p,h,c,f,d;p=this,r.__super__.constructor.call(this,t),a=Math,d=[a.sin,a.cos,a.abs,a.log,a.tan,a.pow],h=d[0],o=d[1],e=d[2],br=d[3],f=d[4],l=d[5],p.n=s=c=h(p.phi1),i=o(p.phi1),u=e(p.phi1-p.phi2)>=1e-10,u&&(s=br(i/o(p.phi2))/br(f(p.QUARTERPI+.5*p.phi2)/f(p.QUARTERPI+.5*p.phi1))),p.c=n=i*l(f(p.QUARTERPI+.5*p.phi1),s)/s,p.rho0=1e-10>e(e(p.phi0)-p.HALFPI)?0:n*l(f(p.QUARTERPI+.5*p.phi0),-s),p.minLat=-60,p.maxLat=85}return ne(r,t),r.title="Lambert Conformal Conic Projection",r.prototype.project=function(t,r){var e,n,o,i,a,s,l,u,p,h,c,f,d,y,m;return h=this,l=h.rad(r),o=h.rad(h.clon(t)),a=Math,m=[a.sin,a.cos,a.abs,a.log,a.tan,a.pow],c=m[0],n=m[1],e=m[2],br=m[3],f=m[4],u=m[5],s=h.n,p=1e-10>e(e(l)-h.HALFPI)?0:h.c*u(f(h.QUARTERPI+.5*l),-s),i=o*s,d=1e3*p*c(i),y=1e3*(h.rho0-p*n(i)),[d,-1*y]},r}(y),kr.lcc=k,Y=function(t){function r(){return Vr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r}(y),cr=function(){function t(t,r,e,n,o,i){var a;a=this,a.bbox=t,a.width=r,a.padding=null!=n?n:0,a.halign=null!=o?o:"center",a.valign=null!=i?i:"center",a.height=e,a.scale=Math.min((r-2*n)/t.width,(e-2*n)/t.height)}return t.prototype.project=function(t,r){var e,n,o,i,a,s,l;return null==r&&(r=t[1],t=t[0]),o=this,i=o.scale,e=o.bbox,n=o.height,a=o.width,s="center"===o.halign?.5*(a-e.width*i):"left"===o.halign?o.padding*i:a-(e.width-o.padding)*i,l="center"===o.valign?.5*(n-e.height*i):"top"===o.valign?o.padding*i:0,t=(t-e.left)*i+s,r=(r-e.top)*i+l,[t,r]},t.prototype.projectPath=function(t){var r,e,n,o,i,a,s,l,u,p,h,c,f,d,y,m,v;if(o=this,"path"===t.type){for(n=[],r=[99999,99999,-99999,-99999],d=t.contours,p=0,c=d.length;c>p;p++){for(a=d[p],e=[],h=0,f=a.length;f>h;h++)y=a[h],l=y[0],u=y[1],m=o.project(l,u),l=m[0],u=m[1],e.push([l,u]),r[0]=Math.min(r[0],l),r[1]=Math.min(r[1],u),r[2]=Math.max(r[2],l),r[3]=Math.max(r[3],u);n.push(e)}return i=new _r.geom.Path(t.type,n,t.closed),i._bbox=r,i}return"circle"===t.type?(v=o.project(t.x,t.y),l=v[0],u=v[1],s=t.r*o.scale,new _r.geom.Circle(l,u,s)):void 0},t.prototype.asBBox=function(){var t;return t=this,new _r.BBox(0,0,t.width,t.height)},t}(),cr.fromXML=function(t){var r,e,n,o,a;return a=Number(t.getAttribute("w")),n=Number(t.getAttribute("h")),o=Number(t.getAttribute("padding")),e=t.getElementsByTagName("bbox")[0],r=i.fromXML(e),new _r.View(r,a,n,o)},_r.View=cr,_r.Kartograph.prototype.dotgrid=function(t){var r,e,n,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g,_,b,x,w,M,P,C,j,A,B,L,S,k,I,N,G,z,E,T,R,F,V,O,H,X,q,D,U,K,Q,Y;if(v=this,m=null!=(T=t.layer)?T:v.layerIds[v.layerIds.length-1],!v.layers.hasOwnProperty(m))return Lr('dotgrid error: layer "'+m+'" not found'),void 0;if(y=v.layers[m],e=t.data,n=t.value,o=t.key,_={},null!=o&&"array"===Ir(e))for(A=0,k=e.length;k>A;A++)w=e[A],d=w[o],_[d+""]=w;else for(d in e)w=e[d],_[d+""]=w;if(l=null!=(R=t.style)?R:{fill:"black",stroke:"none"},P=t.size,f=null!=(F=t.gridsize)?F:15,s=null!=(V=y.dotgrid)?V:y.dotgrid={gridsize:f,grid:[]},s.gridsize!==f)for(O=s.grid,B=0,I=O.length;I>B;B++)c=O[B],null!=c.shape&&(c.shape.remove(),c.shape=null);if(f>0){if(0===s.grid.length)for(C=L=0,H=v.viewport.width;f>0?H>=L:L>=H;C=L+=f)for(j=S=0,X=v.viewport.height;f>0?X>=S:S>=X;j=S+=f){c={x:C+.2*(Math.random()-.5)*f,y:j+.2*(Math.random()-.5)*f,pathid:!1},h=!1,q=y.pathsById;for(d in q){for(b=q[d],z=0,N=b.length;N>z;z++)if(g=b[z],g.vpath.isInside(c.x,c.y)){h=!0,x=null!=(D=_[d])?D:null,M=P(x),c.pathid=d,c.shape=y.paper.circle(c.x,c.y,1);break}if(h)break}s.grid.push(c)}for(U=s.grid,E=0,G=U.length;G>E;E++)c=U[E],c.pathid&&(x=null!=(K=_[c.pathid])?K:null,M=P(x),p=null!=(Q=t.duration)?Q:0,i=null!=(Y=t.delay)?Y:0,a="function"===Ir(i)?i(x):i,p>0&&Raphael.svg?(r=Raphael.animation({r:.5*M},p),c.shape.animate(r.delay(a))):c.shape.attr({r:.5*M}),u="function"===Ir(l)?l(x):l,c.shape.attr(u))}},vr=null!=(Or=_r.filter)?Or:_r.filter={},vr.__knownFilter={},vr.__patternFills=0,F.prototype.SVG=function(t,r){var e,n;if("string"==typeof t&&(t=window.document.createElementNS("http://www.w3.org/2000/svg",t)),r)for(e in r)n=r[e],t.setAttribute(e,n);return t},_r.Kartograph.prototype.addFilter=function(t,r,e){var n,o,i;if(null==e&&(e={}),i=this,n=window.document,null==_r.filter[r])throw"unknown filter type "+r;return o=new _r.filter[r](e).getFilter(t),i.paper.defs.appendChild(o)},F.prototype.applyFilter=function(t){var r;return r=this,e("."+r.id,r.paper.canvas).attr({filter:"url(#"+t+")"})},F.prototype.applyTexture=function(t,r,e){var n,o,i,a,s,l;for(null==r&&(r=!1),null==e&&(e="#000"),o=this,vr.__patternFills+=1,s=o.paths,l=[],i=0,a=s.length;a>i;i++)n=s[i],!r||r(n.data)?l.push(n.svgPath.attr({fill:"url("+t+")"})):l.push(n.svgPath.attr("fill",e));return l},x=function(){function t(t){this.params=null!=t?t:{}}return t.prototype.getFilter=function(t){var r,e;return e=this,r=e.SVG("filter",{id:t}),e.buildFilter(r),r},t.prototype._getFilter=function(){throw"not implemented"},t.prototype.SVG=function(t,r){var e,n;if("string"==typeof t&&(t=window.document.createElementNS("http://www.w3.org/2000/svg",t)),r)for(e in r)n=r[e],t.setAttribute(e,n);return t},t}(),u=function(t){function r(){return Hr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.prototype.buildFilter=function(t){var r,e,n;return n=this,r=n.SVG,e=r("feGaussianBlur",{stdDeviation:n.params.size||4,result:"blur"}),t.appendChild(e)},r}(x),vr.blur=u,gr=function(t){var r,e,n,o;if(t.trim().match(/^#?([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/))return(4===t.length||7===t.length)&&(t=t.substr(1)),3===t.length&&(t=t.split(""),t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),o=parseInt(t,16),n=o>>16,e=255&o>>8,r=255&o,[n,e,r];throw'unknown color format: "'+t+'"'},M=function(t){function r(){return Xr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.prototype.buildFilter=function(t){var r,e,n,o,i,a,s,l,u,p,h,c,f;i=this,e=null!=(l=i.params.blur)?l:4,s=null!=(u=i.params.strength)?u:1,a=null!=(p=i.params.color)?p:"#D1BEB0","string"===Ir(a)&&(a=gr(a)),n=null!=(h=i.params.inner)?h:!1,o=null!=(c=i.params.knockout)?c:!1,r=null!=(f=i.params.alpha)?f:1,n?i.innerGlow(t,e,s,a,r,o):i.outerGlow(t,e,s,a,r,o)},r.prototype.outerGlow=function(t,r,e,n,o,i){var a,s,l,u,p,h,c;return p=this,a=p.SVG,u=a("feColorMatrix",{"in":"SourceGraphic",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0",result:"mask"}),t.appendChild(u),e>0&&(c=a("feMorphology",{"in":"mask",radius:e,operator:"dilate",result:"mask"}),t.appendChild(c)),u=a("feColorMatrix",{"in":"mask",type:"matrix",values:"0 0 0 0 "+n[0]/255+" 0 0 0 0 "+n[1]/255+" 0 0 0 0 "+n[2]/255+" 0 0 0 1 0",result:"r0"}),t.appendChild(u),s=a("feGaussianBlur",{"in":"r0",stdDeviation:r,result:"r1"}),t.appendChild(s),l=a("feComposite",{operator:"out","in":"r1",in2:"mask",result:"comp"}),t.appendChild(l),h=a("feMerge"),i||h.appendChild(a("feMergeNode",{"in":"SourceGraphic"})),h.appendChild(a("feMergeNode",{"in":"r1"})),t.appendChild(h)},r.prototype.innerGlow=function(t,r,e,n,o,i){var a,s,l,u,p,h,c;return p=this,a=p.SVG,br("innerglow"),u=a("feColorMatrix",{"in":"SourceGraphic",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0",result:"mask"}),t.appendChild(u),c=a("feMorphology",{"in":"mask",radius:e,operator:"erode",result:"r1"}),t.appendChild(c),s=a("feGaussianBlur",{"in":"r1",stdDeviation:r,result:"r2"}),t.appendChild(s),u=a("feColorMatrix",{type:"matrix","in":"r2",values:"1 0 0 0 "+n[0]/255+" 0 1 0 0 "+n[1]/255+" 0 0 1 0 "+n[2]/255+" 0 0 0 -1 1",result:"r3"}),t.appendChild(u),l=a("feComposite",{operator:"in","in":"r3",in2:"mask",result:"comp"}),t.appendChild(l),h=a("feMerge"),i||h.appendChild(a("feMergeNode",{"in":"SourceGraphic"})),h.appendChild(a("feMergeNode",{"in":"comp"})),t.appendChild(h)},r}(x),vr.glow=M,_r.Kartograph.prototype.addGeoPath=function(t,r,e){var n,o,i;return null==r&&(r=[]),null==e&&(e=""),n=this,i=n.getGeoPathStr(t,r),o=n.paper.path(i),""!==e&&o.node.setAttribute("class",e),o},_r.Kartograph.prototype.getGeoPathStr=function(t,r){var e,n,o,i,a,s,l;null==r&&(r=[]),o=this,"string"===Ir(r)&&(r=r.split("")),0===r.length&&r.push("M"),i="";for(n in t)a=t[n],e=null!=(l=r[n])?l:"L",s=o.lonlat2xy(a),isNaN(s[0])||isNaN(s[1])||(i+=e+s[0]+","+s[1]);return i},_r.Kartograph.prototype.addGeoPolygon=function(t,r){var e,n,o;o=this,e=["M"];for(n in t)e.push("L");return e.push("Z"),o.addGeoPath(t,e,r)},or=function(){function t(t,r,e){var n,o,i,a;null==t&&(t=[0,1]),null==r&&(r=null),null==e&&(e=null),this.rangedScale=oe(this.rangedScale,this),this.scale=oe(this.scale,this),o=this,a=[];for(n in t)("function"!==Ir(e)||e(t[n])!==!1)&&(i=null!=r?"function"===Ir(r)?r(t[n]):t[n][r]:t[n],isNaN(i)||a.push(i));a=a.sort(function(t,r){return t-r}),o.values=a,o._range=[0,1],o.rangedScale.range=function(t){return o._range=t,o.rangedScale}}return t.prototype.scale=function(t){return t},t.prototype.rangedScale=function(t){var r,e;return r=this,t=r.scale(t),e=r._range,t*(e[1]-e[0])+e[0]},t}(),z=function(t){function r(){return this.scale=oe(this.scale,this),qr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.prototype.scale=function(t){var r,e;return r=this,e=r.values,(t-e[0])/(e[e.length-1]-e[0])},r}(or),E=function(t){function r(){return this.scale=oe(this.scale,this),Dr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.prototype.scale=function(t){var r,e;return r=this,e=r.values,br=Math.log,(br(t)-br(e[0]))/(br(e[e.length-1])-br(e[0]))},r}(or),ar=function(t){function r(){return this.scale=oe(this.scale,this),Ur=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.prototype.scale=function(t){var r,e;return r=this,e=r.values,Math.sqrt((t-e[0])/(e[e.length-1]-e[0]))},r}(or),Z=function(t){function r(){return this.scale=oe(this.scale,this),Qr=r.__super__.constructor.apply(this,arguments)}return ne(r,t),r.prototype.scale=function(t){var r,e,n,o,i,a;n=this,a=n.values,e=a.length-1;for(r in a){if(i=a[Number(r)],o=a[Number(r)+1],t===i)return r/e;if(e>r&&t>i&&o>t)return r/e+(t-i)/(o-i)}},r}(or),_r.scale={},_r.scale.identity=function(){return new or(domain,prop,vr).rangedScale},_r.scale.linear=function(t,r,e){return new z(t,r,e).rangedScale},_r.scale.log=function(t,r,e){return new E(t,r,e).rangedScale},_r.scale.sqrt=function(t,r,e){return new ar(t,r,e).rangedScale},_r.scale.quantile=function(t,r,e){return new Z(t,r,e).rangedScale},pr=function(){function t(t){r=this,r.location=t.location,r.data=t.data,r.map=t.map,r.layers=t.layers,r.key=t.key,r.x=t.x,r.y=t.y}var r;return r=null,t.prototype.init=function(){return r},t.prototype.overlaps=function(){return!1},t.prototype.update=function(){return r},t.prototype.nodes=function(){return[]},t.prototype.clear=function(){return r},t}(),_r.Symbol=pr,hr=function(){function r(t){this._initTooltips=oe(this._initTooltips,this),this._noverlap=oe(this._noverlap,this),this._kMeans=oe(this._kMeans,this);var e,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g,_,b,x,w;for(n=this,c=["data","location","type","map"],p=["filter","tooltip","click","delay","sortBy","clustering","aggregate","clusteringOpts","mouseenter","mouseleave"],f=0,v=c.length;v>f;f++){if(h=c[f],null==t[h])throw"SymbolGroup: missing argument '"+h+"'";n[h]=t[h]}for(d=0,g=p.length;g>d;d++)h=p[d],null!=t[h]&&(n[h]=t[h]);if(e=n.type,null==e)return Lr("could not resolve symbol type",n.type),void 0;for(x=e.props,y=0,_=x.length;_>y;y++)h=x[y],null!=t[h]&&(n[h]=t[h]);for(n.layers={mapcanvas:n.map.paper},w=e.layers,m=0,b=w.length;b>m;m++)s=w[m],u=r._layerid++,a="sl_"+u,"svg"===s.type?l=n.map.createSVGLayer(a):"html"===s.type&&(l=n.map.createHTMLLayer(a)),n.layers[s.id]=l;n.symbols=[];for(i in n.data)o=n.data[i],"function"===Ir(n.filter)?n.filter(o,i)&&n.add(o,i):n.add(o,i);n.layout(),n.render(),n.map.addSymbolGroup(n)}var n;return n=null,r.prototype.add=function(t,r){var e,o,i,a,s,l,u,p;for(n=this,e=n.type,o=n._evaluate(n.location,t,r),"array"===Ir(o)&&(o=new _r.LonLat(o[0],o[1])),a={layers:n.layers,location:o,data:t,key:null!=r?r:n.symbols.length,map:n.map},p=e.props,l=0,u=p.length;u>l;l++)i=p[l],null!=n[i]&&(a[i]=n._evaluate(n[i],t,r));return s=new e(a),n.symbols.push(s),s},r.prototype.layout=function(){var t,r,e,o,i,a,s,l,u,p;for(u=n.symbols,s=0,l=u.length;l>s;s++){if(i=u[s],r=i.location,"string"===Ir(r)){if(p=r.split("."),t=p[0],o=p[1],e=n.map.getLayerPath(t,o),null==e){Lr("could not find layer path "+t+"."+o);continue}a=n.map.viewBC.project(e.path.centroid())}else a=n.map.lonlat2xy(r);i.x=a[0],i.y=a[1]}return"k-means"===n.clustering?n._kMeans():"noverlap"===n.clustering&&n._noverlap(),n},r.prototype.render=function(){var t,r,o,i,a,s,l,u,p,h,c;for(n=this,n.sortBy&&(i="asc","string"===Ir(n.sortBy)&&(n.sortBy=n.sortBy.split(" ",2),o=n.sortBy[0],i=null!=(p=n.sortBy[1])?p:"asc"),n.symbols=n.symbols.sort(function(t,r){var e,a,s;return"function"===Ir(n.sortBy)?(a=n.sortBy(t.data,t),s=n.sortBy(r.data,r)):(a=t[o],s=r[o]),a===s?0:(e="asc"===i?1:-1,a>s?1*e:-1*e)})),h=n.symbols,a=0,l=h.length;l>a;a++)for(r=h[a],r.render(),c=r.nodes(),s=0,u=c.length;u>s;s++)t=c[s],t.symbol=r;return"function"===Ir(n.tooltip)&&n._initTooltips(),e.each(["click","mouseenter","mouseleave"],function(o,i){var a,s,l,u;if("function"===Ir(n[i])){for(l=n.symbols,u=[],a=0,s=l.length;s>a;a++)r=l[a],u.push(function(){var o,a,s,l;for(s=r.nodes(),l=[],o=0,a=s.length;a>o;o++)t=s[o],l.push(e(t)[i](function(t){var r;for(r=t.target;!r.symbol;)r=e(r).parent().get(0);return t.stopPropagation(),n[i](r.symbol.data,r.symbol,t)}));return l}.call(this));return u}}),n},r.prototype.tooltips=function(t){return n=this,n.tooltips=t,n._initTooltips(),n},r.prototype.remove=function(t){var r,e,o,i,a,s,l,u,p,h;for(n=this,o=[],u=n.symbols,s=0,l=u.length;l>s;s++)if(a=u[s],null==t||t(a.data))try{a.clear()}catch(c){r=c,Lr("error: symbolgroup.remove")}else o.push(a);if(null==t){p=n.layers,h=[];for(e in p)i=p[e],"mapcanvas"!==e?h.push(i.remove()):h.push(void 0);return h}return n.symbols=o},r.prototype._evaluate=function(t,r,e){var n;return n="function"===Ir(t)?t(r,e):t},r.prototype._kMeans=function(){var r,e,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g,_,b,x,w,M,P;for(n=this,null==(x=n.osymbols)&&(n.osymbols=n.symbols),r=n.type,null!=n.clusteringOpts&&(h=n.clusteringOpts.size),null==h&&(h=64),e=t().iterations(16).size(h),w=n.osymbols,f=0,v=w.length;v>f;f++)p=w[f],e.add({x:p.x,y:p.y});for(s=e.means(),l=[],d=0,g=s.length;g>d;d++)if(a=s[d],0!==a.size){for(o=[],M=a.indices,y=0,_=M.length;_>y;y++)i=M[y],o.push(n.osymbols[i].data);for(o=n.aggregate(o),c={layers:n.layers,location:!1,data:o,map:n.map},P=r.props,m=0,b=P.length;b>m;m++)u=P[m],null!=n[u]&&(c[u]=n._evaluate(n[u],o));p=new r(c),p.x=a.x,p.y=a.y,l.push(p)}return n.symbols=l},r.prototype._noverlap=function(){var t,r,e,o,i,a,s,l,u,p,h,c,f,d,y,m,v,g,_,b,x,w,M,P,C,j,A,B,L,S,k,I,N,G,z,E,T,R,F,V,O,H,X,q,D,U,K;if(n=this,null==(H=n.osymbols)&&(n.osymbols=n.symbols),u=3,t=n.type,0>ie.call(t.props,"radius"))return Lr('noverlap layout only available for symbols with property "radius"'),void 0;for(j=n.osymbols.slice(),null!=n.clusteringOpts&&(L=n.clusteringOpts.tolerance,f=n.clusteringOpts.maxRatio),null==L&&(L=.05),null==f&&(f=.8),s=N=0,X=u-1;X>=0?X>=N:N>=X;s=X>=0?++N:--N){for(j.sort(function(t,r){return r.radius-t.radius}),p=j.length,d=[],y=G=0,q=p-3;q>=0?q>=G:G>=q;y=q>=0?++G:--G)if(M=j[y]){for(b=M.radius*(1-L),h=M.x-b,g=M.x+b,A=M.y-b,r=M.y+b,l=[],m=z=D=y+1,U=p-2;U>=D?U>=z:z>=U;m=U>=D?++z:--z)P=j[m],P&&(x=P.radius,c=P.x-x,_=P.x+x,B=P.y-x,e=P.y+x,f>x/M.radius&&(c>g||h>_||B>r||A>e||(i=P.x-M.x,a=P.y-M.y,(b+x)*(b+x)>i*i+a*a&&l.push(m))));if(l.length>0){for(o=[M.data],v=M.radius*M.radius,E=0,T=l.length;T>E;E++)s=l[E],o.push(j[s].data),v+=j[s].radius*j[s].radius;for(o=n.aggregate(o),C={layers:n.layers,location:!1,data:o,map:n.map},K=t.props,V=0,R=K.length;R>V;V++)y=K[V],null!=n[y]&&(C[y]=n._evaluate(n[y],o));for(w=new t(C),S=M.radius*M.radius/v,k=M.x*S,I=M.y*S,O=0,F=l.length;F>O;O++)s=l[O],P=j[s],S=P.radius*P.radius/v,k+=P.x*S,I+=P.y*S,j[s]=void 0;w.x=k,w.y=I,j[y]=void 0,d.push(w)}else d.push(M)}j=d}return n.symbols=j},r.prototype._initTooltips=function(){var t,r,o,i,a,s,l,u,p,h,c;for(n=this,i=n.tooltip,h=n.symbols,s=0,u=h.length;u>s;s++)for(o=h[s],t={position:{target:"mouse",viewport:e(window),adjust:{x:7,y:7}},show:{delay:20},content:{},events:{show:function(t,r){return e(".qtip").filter(function(){return this!==r.elements.tooltip.get(0)}).hide()}}},a=i(o.data,o.key),"string"===Ir(a)?t.content.text=a:"array"===Ir(a)&&(t.content.title=a[0],t.content.text=a[1]),c=o.nodes(),l=0,p=c.length;p>l;l++)r=c[l],e(r).qtip(t)},r.prototype.onResize=function(){var t,r,e,o;for(n=this,n.layout(),o=n.symbols,r=0,e=o.length;e>r;r++)t=o[r],t.update()},r.prototype.update=function(t,r,e){var o,i,a,s,l,u,p,h;for(n=this,null==t&&(t={}),p=n.symbols,a=0,l=p.length;l>a;a++){for(i=p[a],h=n.type.props,s=0,u=h.length;u>s;s++)o=h[s],null!=t[o]?i[o]=n._evaluate(t[o],i.data):null!=n[o]&&(i[o]=n._evaluate(n[o],i.data));i.update(r,e)}return n},r}(),hr._layerid=0,_r.SymbolGroup=hr,_r.Kartograph.prototype.addSymbols=function(t){return t.map=this,new hr(t)},_r.dorlingLayout=function(t,r){var n,o,i,a,s,l,u,p,h,c,f,d,y,m,v;for(null==r&&(r=40),f=[],e.each(t.symbols,function(t,r){return f.push({i:t,x:r.path.attrs.cx,y:r.path.attrs.cy,r:r.path.attrs.r})}),f.sort(function(t,r){return r.r-t.r}),i=function(){var r,e,n;for(e=0,n=f.length;n>e;e++)r=f[e],t.symbols[r.i].path.attr({cx:r.x,cy:r.y})},d=v=1;r>=1?r>=v:v>=r;d=r>=1?++v:--v)for(h in f)for(c in f)if(c>h){if(n=f[h],o=f[c],n.x+n.r<o.x-o.r||n.x-n.r>o.x+o.r)continue;if(n.y+n.r<o.y-o.r||n.y-n.r>o.y+o.r)continue;l=n.x-o.x,u=n.y-o.y,s=l*l+u*u,y=n.r+o.r,m=y*y,m>s&&(a=Math.sqrt(s),p=10/a,n.x+=l*p*(1-n.r/y),n.y+=u*p*(1-n.r/y),o.x-=l*p*(1-o.r/y),o.y-=u*p*(1-o.r/y))}return i()},p=function(t){function r(t){this.nodes=oe(this.nodes,this),this.clear=oe(this.clear,this),this.update=oe(this.update,this),this.render=oe(this.render,this),this.overlaps=oe(this.overlaps,this);var e,n,o;e=this,r.__super__.constructor.call(this,t),e.radius=null!=(n=t.radius)?n:4,e.style=t.style,e.attrs=t.attrs,e.title=t.title,e["class"]=null!=(o=t["class"])?o:"bubble"}return ne(r,t),r.prototype.overlaps=function(t){var r,e,n,o,i,a,s,l,u,p,h;return n=this,p=[n.x,n.y,n.radius],a=p[0],l=p[1],o=p[2],h=[t.x,t.y,t.radius],s=h[0],u=h[1],i=h[2],a-o>s+i||s-i>a+o||l-o>u+i||u-i>l+o?!1:(r=a-s,e=l-u,r*r+e*e>(o+i)*(o+i)?!1:!0)},r.prototype.render=function(){var t;return t=this,null==t.path&&(t.path=t.layers.mapcanvas.circle(t.x,t.y,t.radius)),t.update(),t.map.applyCSS(t.path),t},r.prototype.update=function(t,r){var n,o,i;return null==t&&(t=!1),null==r&&(r="expo-out"),o=this,i=o.path,n={cx:o.x,cy:o.y,r:o.radius},null!=o.attrs&&(n=e.extend(n,o.attrs)),t?i.animate(n,t,r):i.attr(n),null!=i.node&&(null!=o.style&&i.node.setAttribute("style",o.style),null!=o["class"]&&i.node.setAttribute("class",o["class"])),null!=o.title&&i.attr("title",o.title),o},r.prototype.clear=function(){var t;return t=this,t.path.remove(),t},r.prototype.nodes=function(){var t;return t=this,[t.path.node]},r}(pr),p.props=["radius","style","class","title","attrs"],p.layers=[],_r.Bubble=p,B=function(t){function r(t){var e,n,o,i,a,s;e=this,r.__super__.constructor.call(this,t),e.icon=null!=(n=t.icon)?n:"",e.offset=null!=(o=t.offset)?o:[0,0],e.iconsize=null!=(i=t.iconsize)?i:[10,10],e["class"]=null!=(a=t["class"])?a:"",e.title=null!=(s=t.title)?s:""}return ne(r,t),r.prototype.render=function(){var t,r;return r=this,t=r.map.container,r.img=e("<img />"),r.img.attr({src:r.icon,title:r.title,alt:r.title,width:r.iconsize[0],height:r.iconsize[1]}),r.img.addClass(r["class"]),r.img.css({position:"absolute","z-index":1e3,cursor:"pointer"}),r.img[0].symbol=r,t.append(r.img),r.update()},r.prototype.update=function(){var t;return t=this,t.img.css({left:t.x+t.offset[0]+"px",top:t.y+t.offset[1]+"px"})},r.prototype.clear=function(){var t;return t=this,t.img.remove(),t},r.prototype.nodes=function(){var t;return t=this,[t.img]},r}(_r.Symbol),B.props=["icon","offset","class","title","iconsize"],B.layers=[],_r.Icon=B,ur=function(t){function r(t){var e,n,o,i,a;e=this,r.__super__.constructor.call(this,t),e.text=null!=(n=t.text)?n:"",e.style=null!=(o=t.style)?o:"",e["class"]=null!=(i=t["class"])?i:"",e.offset=null!=(a=t.offset)?a:[0,0]}return ne(r,t),r.prototype.render=function(){var t,r;return r=this,r.lbl=t=r.layers.mapcanvas.text(r.x,r.y,r.text),r.update(),r},r.prototype.update=function(){var t;return t=this,t.lbl.attr({x:t.x+t.offset[0],y:t.y+t.offset[1]}),t.lbl.node.setAttribute("style",t.style),t.lbl.node.setAttribute("class",t["class"])},r.prototype.clear=function(){var t;return t=this,t.lbl.remove(),t},r.prototype.nodes=function(){var t;return t=this,[t.lbl.node]},r}(_r.Symbol),ur.props=["text","style","class","offset"],ur.layers=[],_r.Label=ur,A=function(t){function r(t){var e,n,o,i;e=this,r.__super__.constructor.call(this,t),e.text=null!=(n=t.text)?n:"",e.style=null!=(o=t.style)?o:"",e["class"]=null!=(i=t["class"])?i:""}return ne(r,t),r.prototype.render=function(){var t,r,n;return n=this,t=e("<div>"+n.text+"</div>"),t.css({width:"50px",position:"absolute",left:"-25px","text-align":"center"}),n.lbl=r=e('<div class="label" />'),r.append(t),n.layers.lbl.append(r),t.css({height:t.height()+"px",top:t.height()*-.4+"px"}),n.update(),n},r.prototype.update=function(){var t;return t=this,t.lbl.css({position:"absolute",left:t.x+"px",top:t.y+"px"})},r.prototype.clear=function(){var t;return t=this,t.lbl.remove(),t},r.prototype.nodes=function(){var t;return t=this,[t.lbl[0]]},r}(_r.Symbol),A.props=["text","style","class"],A.layers=[{id:"lbl",type:"html"}],_r.HtmlLabel=A,I=function(t){function r(t){this.nodes=oe(this.nodes,this),this.clear=oe(this.clear,this),this.update=oe(this.update,this),this.render=oe(this.render,this);var e,n,o;e=this,r.__super__.constructor.call(this,t),e.labelattrs=null!=(n=t.labelattrs)?n:{},e.buffer=t.buffer,e.center=null!=(o=t.center)?o:!0}return ne(r,t),r.prototype.render=function(t){var e;return e=this,null!=e.title&&""!==(e.title+"").trim()&&(e.buffer&&(e.bufferlabel=e.layers.mapcanvas.text(e.x,e.y,e.title)),e.label=e.layers.mapcanvas.text(e.x,e.y,e.title)),r.__super__.render.call(this,t),e},r.prototype.update=function(t,n){var o,i,a,s,l;return null==t&&(t=!1),null==n&&(n="expo-out"),i=this,r.__super__.update.call(this,t,n),null!=i.label&&(a=i.map.viewport,o=e.extend({},i.labelattrs),s=i.x,l=i.y,i.center?l-=0:s>.5*a.width?(o["text-anchor"]="end",s-=i.radius+5):.5*a.width>s&&(o["text-anchor"]="start",s+=i.radius+5),o.x=s,o.y=l,i.buffer&&(i.bufferlabel.attr(o),i.bufferlabel.attr({stroke:"#fff",fill:"#fff","stroke-linejoin":"round","stroke-linecap":"round","stroke-width":6})),i.label.attr(o),i.label.toFront()),i},r.prototype.clear=function(){var t;return t=this,r.__super__.clear.apply(this,arguments)},r.prototype.nodes=function(){var t,e;return t=this,e=r.__super__.nodes.apply(this,arguments),t.label&&e.push(t.label.node),t.bufferlabel&&e.push(t.bufferlabel.node),e},r}(p),I.props=["radius","style","class","title","labelattrs","buffer","center","attrs"],I.layers=[],_r.LabeledBubble=I,K=function(t){function r(t){var n,o,i,a,s,l,u,p,h,c;e=this,r.__super__.constructor.call(this,t),e.radius=null!=(o=t.radius)?o:4,e.styles=null!=(i=t.styles)?i:"",e.colors=null!=(a=t.colors)?a:["#3cc","#c3c","#33c","#cc3"],e.titles=null!=(s=t.titles)?s:["","","","",""],e.values=null!=(l=t.values)?l:[],e.border=null!=(u=t.border)?u:!1,e.borderWidth=null!=(p=t.borderWidth)?p:2,e["class"]=null!=(h=t["class"])?h:"piechart",null==(c=(n=Raphael.fn).pieChart)&&(n.pieChart=mr)}var e;return ne(r,t),e=null,r.prototype.overlaps=function(t){var r,n,o,i,a,s,l,u,p,h;return p=[e.x,e.y,e.radius],a=p[0],l=p[1],o=p[2],h=[t.x,t.y,t.radius],s=h[0],u=h[1],i=h[2],a-o>s+i||s-i>a+o||l-o>u+i||u-i>l+o?!1:(r=a-s,n=l-u,r*r+n*n>(o+i)*(o+i)?!1:!0)},r.prototype.render=function(){var t;return e=this,null!=e.border&&(t=e.layers.mapcanvas.circle(e.x,e.y,e.radius+e.borderWidth).attr({stroke:"none",fill:e.border})),e.chart=e.layers.mapcanvas.pieChart(e.x,e.y,e.radius,e.values,e.titles,e.colors,"none"),e.chart.push(t),e},r.prototype.update=function(){},r.prototype.clear=function(){var t,r,n,o;for(e=this,o=e.chart,r=0,n=o.length;n>r;r++)t=o[r],t.remove();return e},r.prototype.nodes=function(){var t,r,n,o,i;for(o=e.chart,i=[],r=0,n=o.length;n>r;r++)t=o[r],i.push(t.node);return i},r}(pr),K.props=["radius","values","styles","class","titles","colors","border","borderWidth"],K.layers=[],_r.PieChart=K,mr=function(t,r,e,n,o,i,a){var s,l,u,p,h,c,f,d,y,m,v;if(isNaN(t)||isNaN(r)||isNaN(e))return[];for(p=this,c=Math.PI/180,l=p.set(),f=function(t,r,e,n,o,i){var a,s,l,u;return a=t+e*Math.cos(-n*c),s=t+e*Math.cos(-o*c),l=r+e*Math.sin(-n*c),u=r+e*Math.sin(-o*c),p.path(["M",t,r,"L",a,l,"A",e,e,0,+(o-n>180),0,s,u,"z"]).attr(i)},s=-270,d=0,h=function(o){var u,p,h,c,y,m,v;v=n[o],u=360*v/d,m=s+.5*u,p=i[o],c=500,h=30,y=f(t,r,e,s,s+u,{fill:p,stroke:a,"stroke-width":1}),y.mouseover(function(){y.stop().animate({transform:"s1.1 1.1 "+t+" "+r},c,"elastic")}),y.mouseout(function(){y.stop().animate({transform:""},c,"elastic")}),s+=u,l.push(y)},m=0,v=n.length;v>m;m++)y=n[m],d+=y;for(u in n)h(u);return l},drawStackedBars=function(t,r,e,n,o,i,a,s){function l(t,r,e,n,o){return u.rect(t,r,e,n).attr(o)
}for(var u=this,p=this.set(),h=0,c=0,f=function(i){var u=o[i],f=n*u/c,d=t-.5*e,y=r+.5*n-h,m=e,v=a[i],g=500,_=l(d,y-f,m,f,{fill:v,stroke:s,"stroke-width":1});h+=f,_.mouseover(function(){_.stop().animate({transform:"s1.1 1.1 "+t+" "+r},g,"elastic")}).mouseout(function(){_.stop().animate({transform:""},g,"elastic")}),p.push(_)},d=0,y=o.length;y>d;d++)c+=o[d];for(d=0;y>d;d++)f(d);return p},sr=function(t){function r(t){var e,n,o,i,a,s,l,u,p,h;e=this,r.__super__.constructor.call(this,t),e.styles=null!=(o=t.styles)?o:"",e.colors=null!=(i=t.colors)?i:[],e.titles=null!=(a=t.titles)?a:["","","","",""],e.values=null!=(s=t.values)?s:[],e.width=null!=(l=t.width)?l:17,e.height=null!=(u=t.height)?u:30,e["class"]=null!=(p=t["class"])?p:"barchart",null==(h=(n=Raphael.fn).drawStackedBarChart)&&(n.drawStackedBarChart=drawStackedBars)}return ne(r,t),r.prototype.overlaps=function(t){var r,e,n,o,i,a,s,l,u,p,h;return n=this,p=[n.x,n.y,n.radius],a=p[0],l=p[1],o=p[2],h=[t.x,t.y,t.radius],s=h[0],u=h[1],i=h[2],a-o>s+i||s-i>a+o||l-o>u+i||u-i>l+o?!1:(r=a-s,e=l-u,r*r+e*e>(o+i)*(o+i)?!1:!0)},r.prototype.render=function(){var t,r,e,n,o,i;return e=this,n=e.width,r=e.height,o=e.x,i=e.y,t=e.layers.mapcanvas.rect(o-.5*n-2,i-.5*r-2,n+4,r+4).attr({stroke:"none",fill:"#fff"}),e.chart=e.layers.mapcanvas.drawStackedBarChart(e.x,e.y,e.width,e.height,e.values,e.titles,e.colors,"none"),e.chart.push(t),e},r.prototype.update=function(){var t;t=this},r.prototype.clear=function(){var t,r,e,n,o;for(t=this,o=t.chart,e=0,n=o.length;n>e;e++)r=o[e],r.remove();return t.chart=[],t},r.prototype.nodes=function(){var t,r,e,n,o,i;for(r=this,o=r.chart,i=[],e=0,n=o.length;n>e;e++)t=o[e],i.push(t.node);return i},r}(_r.Symbol),sr.props=["values","styles","class","titles","colors","width","height"],sr.layers=[],_r.StackedBarChart=sr}).call(this);
// ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël 2.1.0 - JavaScript Vector Library │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
// └────────────────────────────────────────────────────────────────────┘ \\
(function(n){var e,t,r="0.4.2",f="hasOwnProperty",i=/[\.\/]/,o="*",u=function(){},l=function(n,e){return n-e},s={n:{}},p=function(n,r){n+="";var f,i=t,o=Array.prototype.slice.call(arguments,2),u=p.listeners(n),s=0,a=[],c={},h=[],d=e;e=n,t=0;for(var g=0,v=u.length;v>g;g++)"zIndex"in u[g]&&(a.push(u[g].zIndex),0>u[g].zIndex&&(c[u[g].zIndex]=u[g]));for(a.sort(l);0>a[s];)if(f=c[a[s++]],h.push(f.apply(r,o)),t)return t=i,h;for(g=0;v>g;g++)if(f=u[g],"zIndex"in f)if(f.zIndex==a[s]){if(h.push(f.apply(r,o)),t)break;do if(s++,f=c[a[s]],f&&h.push(f.apply(r,o)),t)break;while(f)}else c[f.zIndex]=f;else if(h.push(f.apply(r,o)),t)break;return t=i,e=d,h.length?h:null};p._events=s,p.listeners=function(n){var e,t,r,f,u,l,p,a,c=n.split(i),h=s,d=[h],g=[];for(f=0,u=c.length;u>f;f++){for(a=[],l=0,p=d.length;p>l;l++)for(h=d[l].n,t=[h[c[f]],h[o]],r=2;r--;)e=t[r],e&&(a.push(e),g=g.concat(e.f||[]));d=a}return g},p.on=function(n,e){if(n+="","function"!=typeof e)return function(){};for(var t=n.split(i),r=s,f=0,o=t.length;o>f;f++)r=r.n,r=r.hasOwnProperty(t[f])&&r[t[f]]||(r[t[f]]={n:{}});for(r.f=r.f||[],f=0,o=r.f.length;o>f;f++)if(r.f[f]==e)return u;return r.f.push(e),function(n){+n==+n&&(e.zIndex=+n)}},p.f=function(n){var e=[].slice.call(arguments,1);return function(){p.apply(null,[n,null].concat(e).concat([].slice.call(arguments,0)))}},p.stop=function(){t=1},p.nt=function(n){return n?RegExp("(?:\\.|\\/|^)"+n+"(?:\\.|\\/|$)").test(e):e},p.nts=function(){return e.split(i)},p.off=p.unbind=function(n,e){if(!n)return p._events=s={n:{}},void 0;var t,r,u,l,a,c,h,d=n.split(i),g=[s];for(l=0,a=d.length;a>l;l++)for(c=0;g.length>c;c+=u.length-2){if(u=[c,1],t=g[c].n,d[l]!=o)t[d[l]]&&u.push(t[d[l]]);else for(r in t)t[f](r)&&u.push(t[r]);g.splice.apply(g,u)}for(l=0,a=g.length;a>l;l++)for(t=g[l];t.n;){if(e){if(t.f){for(c=0,h=t.f.length;h>c;c++)if(t.f[c]==e){t.f.splice(c,1);break}!t.f.length&&delete t.f}for(r in t.n)if(t.n[f](r)&&t.n[r].f){var v=t.n[r].f;for(c=0,h=v.length;h>c;c++)if(v[c]==e){v.splice(c,1);break}!v.length&&delete t.n[r].f}}else{delete t.f;for(r in t.n)t.n[f](r)&&t.n[r].f&&delete t.n[r].f}t=t.n}},p.once=function(n,e){var t=function(){return p.unbind(n,t),e.apply(this,arguments)};return p.on(n,t)},p.version=r,p.toString=function(){return"You are running Eve "+r},"undefined"!=typeof module&&module.exports?module.exports=p:"undefined"!=typeof define?define("eve",[],function(){return p}):n.eve=p})(this);(function(t,e){"function"==typeof define&&define.amd?define("raphael",["eve"],e):t.Raphael=e(t.eve)})(this,function(t){function e(n){if(e.is(n,"function"))return y?n():t.on("raphael.DOMload",n);if(e.is(n,W))return e._engine.create[T](e,n.splice(0,3+e.is(n[0],G))).add(n);var r=Array.prototype.slice.call(arguments,0);if(e.is(r[r.length-1],"function")){var i=r.pop();return y?i.call(e._engine.create[T](e,r)):t.on("raphael.DOMload",function(){i.call(e._engine.create[T](e,r))})}return e._engine.create[T](e,arguments)}function n(t){if(Object(t)!==t)return t;var e=new t.constructor;for(var r in t)t[B](r)&&(e[r]=n(t[r]));return e}function r(t,e){for(var n=0,r=t.length;r>n;n++)if(t[n]===e)return t.push(t.splice(n,1)[0])}function i(t,e,n){function i(){var a=Array.prototype.slice.call(arguments,0),s=a.join("␀"),o=i.cache=i.cache||{},u=i.count=i.count||[];return o[B](s)?(r(u,s),n?n(o[s]):o[s]):(u.length>=1e3&&delete o[u.shift()],u.push(s),o[s]=t[T](e,a),n?n(o[s]):o[s])}return i}function a(){return this.hex}function s(t,e){for(var n=[],r=0,i=t.length;i-2*!e>r;r+=2){var a=[{x:+t[r-2],y:+t[r-1]},{x:+t[r],y:+t[r+1]},{x:+t[r+2],y:+t[r+3]},{x:+t[r+4],y:+t[r+5]}];e?r?i-4==r?a[3]={x:+t[0],y:+t[1]}:i-2==r&&(a[2]={x:+t[0],y:+t[1]},a[3]={x:+t[2],y:+t[3]}):a[0]={x:+t[i-2],y:+t[i-1]}:i-4==r?a[3]=a[2]:r||(a[0]={x:+t[r],y:+t[r+1]}),n.push(["C",(-a[0].x+6*a[1].x+a[2].x)/6,(-a[0].y+6*a[1].y+a[2].y)/6,(a[1].x+6*a[2].x-a[3].x)/6,(a[1].y+6*a[2].y-a[3].y)/6,a[2].x,a[2].y])}return n}function o(t,e,n,r,i){var a=-3*e+9*n-9*r+3*i,s=t*a+6*e-12*n+6*r;return t*s-3*e+3*n}function u(t,e,n,r,i,a,s,u,l){null==l&&(l=1),l=l>1?1:0>l?0:l;for(var h=l/2,c=12,f=[-.1252,.1252,-.3678,.3678,-.5873,.5873,-.7699,.7699,-.9041,.9041,-.9816,.9816],p=[.2491,.2491,.2335,.2335,.2032,.2032,.1601,.1601,.1069,.1069,.0472,.0472],d=0,g=0;c>g;g++){var x=h*f[g]+h,v=o(x,t,n,i,s),m=o(x,e,r,a,u),y=v*v+m*m;d+=p[g]*D.sqrt(y)}return h*d}function l(t,e,n,r,i,a,s,o,l){if(!(0>l||l>u(t,e,n,r,i,a,s,o))){var h,c=1,f=c/2,p=c-f,d=.01;for(h=u(t,e,n,r,i,a,s,o,p);V(h-l)>d;)f/=2,p+=(l>h?1:-1)*f,h=u(t,e,n,r,i,a,s,o,p);return p}}function h(t,e,n,r,i,a,s,o){if(!(z(t,n)<O(i,s)||O(t,n)>z(i,s)||z(e,r)<O(a,o)||O(e,r)>z(a,o))){var u=(t*r-e*n)*(i-s)-(t-n)*(i*o-a*s),l=(t*r-e*n)*(a-o)-(e-r)*(i*o-a*s),h=(t-n)*(a-o)-(e-r)*(i-s);if(h){var c=u/h,f=l/h,p=+c.toFixed(2),d=+f.toFixed(2);if(!(+O(t,n).toFixed(2)>p||p>+z(t,n).toFixed(2)||+O(i,s).toFixed(2)>p||p>+z(i,s).toFixed(2)||+O(e,r).toFixed(2)>d||d>+z(e,r).toFixed(2)||+O(a,o).toFixed(2)>d||d>+z(a,o).toFixed(2)))return{x:c,y:f}}}}function c(t,n,r){var i=e.bezierBBox(t),a=e.bezierBBox(n);if(!e.isBBoxIntersect(i,a))return r?0:[];for(var s=u.apply(0,t),o=u.apply(0,n),l=~~(s/5),c=~~(o/5),f=[],p=[],d={},g=r?0:[],x=0;l+1>x;x++){var v=e.findDotsAtSegment.apply(e,t.concat(x/l));f.push({x:v.x,y:v.y,t:x/l})}for(x=0;c+1>x;x++)v=e.findDotsAtSegment.apply(e,n.concat(x/c)),p.push({x:v.x,y:v.y,t:x/c});for(x=0;l>x;x++)for(var m=0;c>m;m++){var y=f[x],b=f[x+1],_=p[m],w=p[m+1],k=.001>V(b.x-y.x)?"y":"x",B=.001>V(w.x-_.x)?"y":"x",S=h(y.x,y.y,b.x,b.y,_.x,_.y,w.x,w.y);if(S){if(d[S.x.toFixed(4)]==S.y.toFixed(4))continue;d[S.x.toFixed(4)]=S.y.toFixed(4);var C=y.t+V((S[k]-y[k])/(b[k]-y[k]))*(b.t-y.t),F=_.t+V((S[B]-_[B])/(w[B]-_[B]))*(w.t-_.t);C>=0&&1>=C&&F>=0&&1>=F&&(r?g++:g.push({x:S.x,y:S.y,t1:C,t2:F}))}}return g}function f(t,n,r){t=e._path2curve(t),n=e._path2curve(n);for(var i,a,s,o,u,l,h,f,p,d,g=r?0:[],x=0,v=t.length;v>x;x++){var m=t[x];if("M"==m[0])i=u=m[1],a=l=m[2];else{"C"==m[0]?(p=[i,a].concat(m.slice(1)),i=p[6],a=p[7]):(p=[i,a,i,a,u,l,u,l],i=u,a=l);for(var y=0,b=n.length;b>y;y++){var _=n[y];if("M"==_[0])s=h=_[1],o=f=_[2];else{"C"==_[0]?(d=[s,o].concat(_.slice(1)),s=d[6],o=d[7]):(d=[s,o,s,o,h,f,h,f],s=h,o=f);var w=c(p,d,r);if(r)g+=w;else{for(var k=0,B=w.length;B>k;k++)w[k].segment1=x,w[k].segment2=y,w[k].bez1=p,w[k].bez2=d;g=g.concat(w)}}}}}return g}function p(t,e,n,r,i,a){null!=t?(this.a=+t,this.b=+e,this.c=+n,this.d=+r,this.e=+i,this.f=+a):(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0)}function d(){return this.x+E+this.y+E+this.width+" × "+this.height}function g(t,e,n,r,i,a){function s(t){return((c*t+h)*t+l)*t}function o(t,e){var n=u(t,e);return((d*n+p)*n+f)*n}function u(t,e){var n,r,i,a,o,u;for(i=t,u=0;8>u;u++){if(a=s(i)-t,e>V(a))return i;if(o=(3*c*i+2*h)*i+l,1e-6>V(o))break;i-=a/o}if(n=0,r=1,i=t,n>i)return n;if(i>r)return r;for(;r>n;){if(a=s(i),e>V(a-t))return i;t>a?n=i:r=i,i=(r-n)/2+n}return i}var l=3*e,h=3*(r-e)-l,c=1-l-h,f=3*n,p=3*(i-n)-f,d=1-f-p;return o(t,1/(200*a))}function x(t,e){var n=[],r={};if(this.ms=e,this.times=1,t){for(var i in t)t[B](i)&&(r[J(i)]=t[i],n.push(J(i)));n.sort(he)}this.anim=r,this.top=n[n.length-1],this.percents=n}function v(n,r,i,a,s,o){i=J(i);var u,l,h,c,f,d,x=n.ms,v={},m={},y={};if(a)for(w=0,k=on.length;k>w;w++){var b=on[w];if(b.el.id==r.id&&b.anim==n){b.percent!=i?(on.splice(w,1),h=1):l=b,r.attr(b.totalOrigin);break}}else a=+m;for(var w=0,k=n.percents.length;k>w;w++){if(n.percents[w]==i||n.percents[w]>a*n.top){i=n.percents[w],f=n.percents[w-1]||0,x=x/n.top*(i-f),c=n.percents[w+1],u=n.anim[i];break}a&&r.attr(n.anim[n.percents[w]])}if(u){if(l)l.initstatus=a,l.start=new Date-l.ms*a;else{for(var S in u)if(u[B](S)&&(ne[B](S)||r.paper.customAttributes[B](S)))switch(v[S]=r.attr(S),null==v[S]&&(v[S]=ee[S]),m[S]=u[S],ne[S]){case G:y[S]=(m[S]-v[S])/x;break;case"colour":v[S]=e.getRGB(v[S]);var C=e.getRGB(m[S]);y[S]={r:(C.r-v[S].r)/x,g:(C.g-v[S].g)/x,b:(C.b-v[S].b)/x};break;case"path":var F=Re(v[S],m[S]),T=F[1];for(v[S]=F[0],y[S]=[],w=0,k=v[S].length;k>w;w++){y[S][w]=[0];for(var A=1,P=v[S][w].length;P>A;A++)y[S][w][A]=(T[w][A]-v[S][w][A])/x}break;case"transform":var E=r._,R=Oe(E[S],m[S]);if(R)for(v[S]=R.from,m[S]=R.to,y[S]=[],y[S].real=!0,w=0,k=v[S].length;k>w;w++)for(y[S][w]=[v[S][w][0]],A=1,P=v[S][w].length;P>A;A++)y[S][w][A]=(m[S][w][A]-v[S][w][A])/x;else{var q=r.matrix||new p,j={_:{transform:E.transform},getBBox:function(){return r.getBBox(1)}};v[S]=[q.a,q.b,q.c,q.d,q.e,q.f],De(j,m[S]),m[S]=j._.transform,y[S]=[(j.matrix.a-q.a)/x,(j.matrix.b-q.b)/x,(j.matrix.c-q.c)/x,(j.matrix.d-q.d)/x,(j.matrix.e-q.e)/x,(j.matrix.f-q.f)/x]}break;case"csv":var D=M(u[S])[I](_),z=M(v[S])[I](_);if("clip-rect"==S)for(v[S]=z,y[S]=[],w=z.length;w--;)y[S][w]=(D[w]-v[S][w])/x;m[S]=D;break;default:for(D=[][L](u[S]),z=[][L](v[S]),y[S]=[],w=r.paper.customAttributes[S].length;w--;)y[S][w]=((D[w]||0)-(z[w]||0))/x}var O=u.easing,V=e.easing_formulas[O];if(!V)if(V=M(O).match(Z),V&&5==V.length){var X=V;V=function(t){return g(t,+X[1],+X[2],+X[3],+X[4],x)}}else V=fe;if(d=u.start||n.start||+new Date,b={anim:n,percent:i,timestamp:d,start:d+(n.del||0),status:0,initstatus:a||0,stop:!1,ms:x,easing:V,from:v,diff:y,to:m,el:r,callback:u.callback,prev:f,next:c,repeat:o||n.times,origin:r.attr(),totalOrigin:s},on.push(b),a&&!l&&!h&&(b.stop=!0,b.start=new Date-x*a,1==on.length))return ln();h&&(b.start=new Date-b.ms*a),1==on.length&&un(ln)}t("raphael.anim.start."+r.id,r,n)}}function m(t){for(var e=0;on.length>e;e++)on[e].el.paper==t&&on.splice(e--,1)}e.version="2.1.0",e.eve=t;var y,b,_=/[, ]+/,w={circle:1,rect:1,path:1,ellipse:1,text:1,image:1},k=/\{(\d+)\}/g,B="hasOwnProperty",S={doc:document,win:window},C={was:Object.prototype[B].call(S.win,"Raphael"),is:S.win.Raphael},F=function(){this.ca=this.customAttributes={}},T="apply",L="concat",A="createTouch"in S.doc,P="",E=" ",M=String,I="split",R="click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend touchcancel"[I](E),q={mousedown:"touchstart",mousemove:"touchmove",mouseup:"touchend"},j=M.prototype.toLowerCase,D=Math,z=D.max,O=D.min,V=D.abs,X=D.pow,Y=D.PI,G="number",N="string",W="array",$=Object.prototype.toString,H=(e._ISURL=/^url\(['"]?([^\)]+?)['"]?\)$/i,/^\s*((#[a-f\d]{6})|(#[a-f\d]{3})|rgba?\(\s*([\d\.]+%?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+%?(?:\s*,\s*[\d\.]+%?)?)\s*\)|hsba?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsla?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\))\s*$/i),U={NaN:1,Infinity:1,"-Infinity":1},Z=/^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/,Q=D.round,J=parseFloat,K=parseInt,te=M.prototype.toUpperCase,ee=e._availableAttrs={"arrow-end":"none","arrow-start":"none",blur:0,"clip-rect":"0 0 1e9 1e9",cursor:"default",cx:0,cy:0,fill:"#fff","fill-opacity":1,font:'10px "Arial"',"font-family":'"Arial"',"font-size":"10","font-style":"normal","font-weight":400,gradient:0,height:0,href:"http://raphaeljs.com/","letter-spacing":0,opacity:1,path:"M0,0",r:0,rx:0,ry:0,src:"",stroke:"#000","stroke-dasharray":"","stroke-linecap":"butt","stroke-linejoin":"butt","stroke-miterlimit":0,"stroke-opacity":1,"stroke-width":1,target:"_blank","text-anchor":"middle",title:"Raphael",transform:"",width:0,x:0,y:0},ne=e._availableAnimAttrs={blur:G,"clip-rect":"csv",cx:G,cy:G,fill:"colour","fill-opacity":G,"font-size":G,height:G,opacity:G,path:"path",r:G,rx:G,ry:G,stroke:"colour","stroke-opacity":G,"stroke-width":G,transform:"transform",width:G,x:G,y:G},re=/[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/,ie={hs:1,rg:1},ae=/,?([achlmqrstvxz]),?/gi,se=/([achlmrqstvz])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/gi,oe=/([rstm])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/gi,ue=/(-?\d*\.?\d*(?:e[\-+]?\d+)?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/gi,le=(e._radial_gradient=/^r(?:\(([^,]+?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*([^\)]+?)\))?/,{}),he=function(t,e){return J(t)-J(e)},ce=function(){},fe=function(t){return t},pe=e._rectPath=function(t,e,n,r,i){return i?[["M",t+i,e],["l",n-2*i,0],["a",i,i,0,0,1,i,i],["l",0,r-2*i],["a",i,i,0,0,1,-i,i],["l",2*i-n,0],["a",i,i,0,0,1,-i,-i],["l",0,2*i-r],["a",i,i,0,0,1,i,-i],["z"]]:[["M",t,e],["l",n,0],["l",0,r],["l",-n,0],["z"]]},de=function(t,e,n,r){return null==r&&(r=n),[["M",t,e],["m",0,-r],["a",n,r,0,1,1,0,2*r],["a",n,r,0,1,1,0,-2*r],["z"]]},ge=e._getPath={path:function(t){return t.attr("path")},circle:function(t){var e=t.attrs;return de(e.cx,e.cy,e.r)},ellipse:function(t){var e=t.attrs;return de(e.cx,e.cy,e.rx,e.ry)},rect:function(t){var e=t.attrs;return pe(e.x,e.y,e.width,e.height,e.r)},image:function(t){var e=t.attrs;return pe(e.x,e.y,e.width,e.height)},text:function(t){var e=t._getBBox();return pe(e.x,e.y,e.width,e.height)},set:function(t){var e=t._getBBox();return pe(e.x,e.y,e.width,e.height)}},xe=e.mapPath=function(t,e){if(!e)return t;var n,r,i,a,s,o,u;for(t=Re(t),i=0,s=t.length;s>i;i++)for(u=t[i],a=1,o=u.length;o>a;a+=2)n=e.x(u[a],u[a+1]),r=e.y(u[a],u[a+1]),u[a]=n,u[a+1]=r;return t};if(e._g=S,e.type=S.win.SVGAngle||S.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")?"SVG":"VML","VML"==e.type){var ve,me=S.doc.createElement("div");if(me.innerHTML='<v:shape adj="1"/>',ve=me.firstChild,ve.style.behavior="url(#default#VML)",!ve||"object"!=typeof ve.adj)return e.type=P;me=null}e.svg=!(e.vml="VML"==e.type),e._Paper=F,e.fn=b=F.prototype=e.prototype,e._id=0,e._oid=0,e.is=function(t,e){return e=j.call(e),"finite"==e?!U[B](+t):"array"==e?t instanceof Array:"null"==e&&null===t||e==typeof t&&null!==t||"object"==e&&t===Object(t)||"array"==e&&Array.isArray&&Array.isArray(t)||$.call(t).slice(8,-1).toLowerCase()==e},e.angle=function(t,n,r,i,a,s){if(null==a){var o=t-r,u=n-i;return o||u?(180+180*D.atan2(-u,-o)/Y+360)%360:0}return e.angle(t,n,a,s)-e.angle(r,i,a,s)},e.rad=function(t){return t%360*Y/180},e.deg=function(t){return 180*t/Y%360},e.snapTo=function(t,n,r){if(r=e.is(r,"finite")?r:10,e.is(t,W)){for(var i=t.length;i--;)if(r>=V(t[i]-n))return t[i]}else{t=+t;var a=n%t;if(r>a)return n-a;if(a>t-r)return n-a+t}return n},e.createUUID=function(t,e){return function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(t,e).toUpperCase()}}(/[xy]/g,function(t){var e=0|16*D.random(),n="x"==t?e:8|3&e;return n.toString(16)}),e.setWindow=function(n){t("raphael.setWindow",e,S.win,n),S.win=n,S.doc=S.win.document,e._engine.initWin&&e._engine.initWin(S.win)};var ye=function(t){if(e.vml){var n,r=/^\s+|\s+$/g;try{var a=new ActiveXObject("htmlfile");a.write("<body>"),a.close(),n=a.body}catch(s){n=createPopup().document.body}var o=n.createTextRange();ye=i(function(t){try{n.style.color=M(t).replace(r,P);var e=o.queryCommandValue("ForeColor");return e=(255&e)<<16|65280&e|(16711680&e)>>>16,"#"+("000000"+e.toString(16)).slice(-6)}catch(i){return"none"}})}else{var u=S.doc.createElement("i");u.title="Raphaël Colour Picker",u.style.display="none",S.doc.body.appendChild(u),ye=i(function(t){return u.style.color=t,S.doc.defaultView.getComputedStyle(u,P).getPropertyValue("color")})}return ye(t)},be=function(){return"hsb("+[this.h,this.s,this.b]+")"},_e=function(){return"hsl("+[this.h,this.s,this.l]+")"},we=function(){return this.hex},ke=function(t,n,r){if(null==n&&e.is(t,"object")&&"r"in t&&"g"in t&&"b"in t&&(r=t.b,n=t.g,t=t.r),null==n&&e.is(t,N)){var i=e.getRGB(t);t=i.r,n=i.g,r=i.b}return(t>1||n>1||r>1)&&(t/=255,n/=255,r/=255),[t,n,r]},Be=function(t,n,r,i){t*=255,n*=255,r*=255;var a={r:t,g:n,b:r,hex:e.rgb(t,n,r),toString:we};return e.is(i,"finite")&&(a.opacity=i),a};e.color=function(t){var n;return e.is(t,"object")&&"h"in t&&"s"in t&&"b"in t?(n=e.hsb2rgb(t),t.r=n.r,t.g=n.g,t.b=n.b,t.hex=n.hex):e.is(t,"object")&&"h"in t&&"s"in t&&"l"in t?(n=e.hsl2rgb(t),t.r=n.r,t.g=n.g,t.b=n.b,t.hex=n.hex):(e.is(t,"string")&&(t=e.getRGB(t)),e.is(t,"object")&&"r"in t&&"g"in t&&"b"in t?(n=e.rgb2hsl(t),t.h=n.h,t.s=n.s,t.l=n.l,n=e.rgb2hsb(t),t.v=n.b):(t={hex:"none"},t.r=t.g=t.b=t.h=t.s=t.v=t.l=-1)),t.toString=we,t},e.hsb2rgb=function(t,e,n,r){this.is(t,"object")&&"h"in t&&"s"in t&&"b"in t&&(n=t.b,e=t.s,t=t.h,r=t.o),t*=360;var i,a,s,o,u;return t=t%360/60,u=n*e,o=u*(1-V(t%2-1)),i=a=s=n-u,t=~~t,i+=[u,o,0,0,o,u][t],a+=[o,u,u,o,0,0][t],s+=[0,0,o,u,u,o][t],Be(i,a,s,r)},e.hsl2rgb=function(t,e,n,r){this.is(t,"object")&&"h"in t&&"s"in t&&"l"in t&&(n=t.l,e=t.s,t=t.h),(t>1||e>1||n>1)&&(t/=360,e/=100,n/=100),t*=360;var i,a,s,o,u;return t=t%360/60,u=2*e*(.5>n?n:1-n),o=u*(1-V(t%2-1)),i=a=s=n-u/2,t=~~t,i+=[u,o,0,0,o,u][t],a+=[o,u,u,o,0,0][t],s+=[0,0,o,u,u,o][t],Be(i,a,s,r)},e.rgb2hsb=function(t,e,n){n=ke(t,e,n),t=n[0],e=n[1],n=n[2];var r,i,a,s;return a=z(t,e,n),s=a-O(t,e,n),r=0==s?null:a==t?(e-n)/s:a==e?(n-t)/s+2:(t-e)/s+4,r=60*((r+360)%6)/360,i=0==s?0:s/a,{h:r,s:i,b:a,toString:be}},e.rgb2hsl=function(t,e,n){n=ke(t,e,n),t=n[0],e=n[1],n=n[2];var r,i,a,s,o,u;return s=z(t,e,n),o=O(t,e,n),u=s-o,r=0==u?null:s==t?(e-n)/u:s==e?(n-t)/u+2:(t-e)/u+4,r=60*((r+360)%6)/360,a=(s+o)/2,i=0==u?0:.5>a?u/(2*a):u/(2-2*a),{h:r,s:i,l:a,toString:_e}},e._path2string=function(){return this.join(",").replace(ae,"$1")},e._preload=function(t,e){var n=S.doc.createElement("img");n.style.cssText="position:absolute;left:-9999em;top:-9999em",n.onload=function(){e.call(this),this.onload=null,S.doc.body.removeChild(this)},n.onerror=function(){S.doc.body.removeChild(this)},S.doc.body.appendChild(n),n.src=t},e.getRGB=i(function(t){if(!t||(t=M(t)).indexOf("-")+1)return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:a};if("none"==t)return{r:-1,g:-1,b:-1,hex:"none",toString:a};!(ie[B](t.toLowerCase().substring(0,2))||"#"==t.charAt())&&(t=ye(t));var n,r,i,s,o,u,l=t.match(H);return l?(l[2]&&(i=K(l[2].substring(5),16),r=K(l[2].substring(3,5),16),n=K(l[2].substring(1,3),16)),l[3]&&(i=K((o=l[3].charAt(3))+o,16),r=K((o=l[3].charAt(2))+o,16),n=K((o=l[3].charAt(1))+o,16)),l[4]&&(u=l[4][I](re),n=J(u[0]),"%"==u[0].slice(-1)&&(n*=2.55),r=J(u[1]),"%"==u[1].slice(-1)&&(r*=2.55),i=J(u[2]),"%"==u[2].slice(-1)&&(i*=2.55),"rgba"==l[1].toLowerCase().slice(0,4)&&(s=J(u[3])),u[3]&&"%"==u[3].slice(-1)&&(s/=100)),l[5]?(u=l[5][I](re),n=J(u[0]),"%"==u[0].slice(-1)&&(n*=2.55),r=J(u[1]),"%"==u[1].slice(-1)&&(r*=2.55),i=J(u[2]),"%"==u[2].slice(-1)&&(i*=2.55),("deg"==u[0].slice(-3)||"°"==u[0].slice(-1))&&(n/=360),"hsba"==l[1].toLowerCase().slice(0,4)&&(s=J(u[3])),u[3]&&"%"==u[3].slice(-1)&&(s/=100),e.hsb2rgb(n,r,i,s)):l[6]?(u=l[6][I](re),n=J(u[0]),"%"==u[0].slice(-1)&&(n*=2.55),r=J(u[1]),"%"==u[1].slice(-1)&&(r*=2.55),i=J(u[2]),"%"==u[2].slice(-1)&&(i*=2.55),("deg"==u[0].slice(-3)||"°"==u[0].slice(-1))&&(n/=360),"hsla"==l[1].toLowerCase().slice(0,4)&&(s=J(u[3])),u[3]&&"%"==u[3].slice(-1)&&(s/=100),e.hsl2rgb(n,r,i,s)):(l={r:n,g:r,b:i,toString:a},l.hex="#"+(16777216|i|r<<8|n<<16).toString(16).slice(1),e.is(s,"finite")&&(l.opacity=s),l)):{r:-1,g:-1,b:-1,hex:"none",error:1,toString:a}},e),e.hsb=i(function(t,n,r){return e.hsb2rgb(t,n,r).hex}),e.hsl=i(function(t,n,r){return e.hsl2rgb(t,n,r).hex}),e.rgb=i(function(t,e,n){return"#"+(16777216|n|e<<8|t<<16).toString(16).slice(1)}),e.getColor=function(t){var e=this.getColor.start=this.getColor.start||{h:0,s:1,b:t||.75},n=this.hsb2rgb(e.h,e.s,e.b);return e.h+=.075,e.h>1&&(e.h=0,e.s-=.2,0>=e.s&&(this.getColor.start={h:0,s:1,b:e.b})),n.hex},e.getColor.reset=function(){delete this.start},e.parsePathString=function(t){if(!t)return null;var n=Se(t);if(n.arr)return Fe(n.arr);var r={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},i=[];return e.is(t,W)&&e.is(t[0],W)&&(i=Fe(t)),i.length||M(t).replace(se,function(t,e,n){var a=[],s=e.toLowerCase();if(n.replace(ue,function(t,e){e&&a.push(+e)}),"m"==s&&a.length>2&&(i.push([e][L](a.splice(0,2))),s="l",e="m"==e?"l":"L"),"r"==s)i.push([e][L](a));else for(;a.length>=r[s]&&(i.push([e][L](a.splice(0,r[s]))),r[s]););}),i.toString=e._path2string,n.arr=Fe(i),i},e.parseTransformString=i(function(t){if(!t)return null;var n=[];return e.is(t,W)&&e.is(t[0],W)&&(n=Fe(t)),n.length||M(t).replace(oe,function(t,e,r){var i=[];j.call(e),r.replace(ue,function(t,e){e&&i.push(+e)}),n.push([e][L](i))}),n.toString=e._path2string,n});var Se=function(t){var e=Se.ps=Se.ps||{};return e[t]?e[t].sleep=100:e[t]={sleep:100},setTimeout(function(){for(var n in e)e[B](n)&&n!=t&&(e[n].sleep--,!e[n].sleep&&delete e[n])}),e[t]};e.findDotsAtSegment=function(t,e,n,r,i,a,s,o,u){var l=1-u,h=X(l,3),c=X(l,2),f=u*u,p=f*u,d=h*t+3*c*u*n+3*l*u*u*i+p*s,g=h*e+3*c*u*r+3*l*u*u*a+p*o,x=t+2*u*(n-t)+f*(i-2*n+t),v=e+2*u*(r-e)+f*(a-2*r+e),m=n+2*u*(i-n)+f*(s-2*i+n),y=r+2*u*(a-r)+f*(o-2*a+r),b=l*t+u*n,_=l*e+u*r,w=l*i+u*s,k=l*a+u*o,B=90-180*D.atan2(x-m,v-y)/Y;return(x>m||y>v)&&(B+=180),{x:d,y:g,m:{x:x,y:v},n:{x:m,y:y},start:{x:b,y:_},end:{x:w,y:k},alpha:B}},e.bezierBBox=function(t,n,r,i,a,s,o,u){e.is(t,"array")||(t=[t,n,r,i,a,s,o,u]);var l=Ie.apply(null,t);return{x:l.min.x,y:l.min.y,x2:l.max.x,y2:l.max.y,width:l.max.x-l.min.x,height:l.max.y-l.min.y}},e.isPointInsideBBox=function(t,e,n){return e>=t.x&&t.x2>=e&&n>=t.y&&t.y2>=n},e.isBBoxIntersect=function(t,n){var r=e.isPointInsideBBox;return r(n,t.x,t.y)||r(n,t.x2,t.y)||r(n,t.x,t.y2)||r(n,t.x2,t.y2)||r(t,n.x,n.y)||r(t,n.x2,n.y)||r(t,n.x,n.y2)||r(t,n.x2,n.y2)||(t.x<n.x2&&t.x>n.x||n.x<t.x2&&n.x>t.x)&&(t.y<n.y2&&t.y>n.y||n.y<t.y2&&n.y>t.y)},e.pathIntersection=function(t,e){return f(t,e)},e.pathIntersectionNumber=function(t,e){return f(t,e,1)},e.isPointInsidePath=function(t,n,r){var i=e.pathBBox(t);return e.isPointInsideBBox(i,n,r)&&1==f(t,[["M",n,r],["H",i.x2+10]],1)%2},e._removedFactory=function(e){return function(){t("raphael.log",null,"Raphaël: you are calling to method “"+e+"” of removed object",e)}};var Ce=e.pathBBox=function(t){var e=Se(t);if(e.bbox)return n(e.bbox);if(!t)return{x:0,y:0,width:0,height:0,x2:0,y2:0};t=Re(t);for(var r,i=0,a=0,s=[],o=[],u=0,l=t.length;l>u;u++)if(r=t[u],"M"==r[0])i=r[1],a=r[2],s.push(i),o.push(a);else{var h=Ie(i,a,r[1],r[2],r[3],r[4],r[5],r[6]);s=s[L](h.min.x,h.max.x),o=o[L](h.min.y,h.max.y),i=r[5],a=r[6]}var c=O[T](0,s),f=O[T](0,o),p=z[T](0,s),d=z[T](0,o),g=p-c,x=d-f,v={x:c,y:f,x2:p,y2:d,width:g,height:x,cx:c+g/2,cy:f+x/2};return e.bbox=n(v),v},Fe=function(t){var r=n(t);return r.toString=e._path2string,r},Te=e._pathToRelative=function(t){var n=Se(t);if(n.rel)return Fe(n.rel);e.is(t,W)&&e.is(t&&t[0],W)||(t=e.parsePathString(t));var r=[],i=0,a=0,s=0,o=0,u=0;"M"==t[0][0]&&(i=t[0][1],a=t[0][2],s=i,o=a,u++,r.push(["M",i,a]));for(var l=u,h=t.length;h>l;l++){var c=r[l]=[],f=t[l];if(f[0]!=j.call(f[0]))switch(c[0]=j.call(f[0]),c[0]){case"a":c[1]=f[1],c[2]=f[2],c[3]=f[3],c[4]=f[4],c[5]=f[5],c[6]=+(f[6]-i).toFixed(3),c[7]=+(f[7]-a).toFixed(3);break;case"v":c[1]=+(f[1]-a).toFixed(3);break;case"m":s=f[1],o=f[2];default:for(var p=1,d=f.length;d>p;p++)c[p]=+(f[p]-(p%2?i:a)).toFixed(3)}else{c=r[l]=[],"m"==f[0]&&(s=f[1]+i,o=f[2]+a);for(var g=0,x=f.length;x>g;g++)r[l][g]=f[g]}var v=r[l].length;switch(r[l][0]){case"z":i=s,a=o;break;case"h":i+=+r[l][v-1];break;case"v":a+=+r[l][v-1];break;default:i+=+r[l][v-2],a+=+r[l][v-1]}}return r.toString=e._path2string,n.rel=Fe(r),r},Le=e._pathToAbsolute=function(t){var n=Se(t);if(n.abs)return Fe(n.abs);if(e.is(t,W)&&e.is(t&&t[0],W)||(t=e.parsePathString(t)),!t||!t.length)return[["M",0,0]];var r=[],i=0,a=0,o=0,u=0,l=0;"M"==t[0][0]&&(i=+t[0][1],a=+t[0][2],o=i,u=a,l++,r[0]=["M",i,a]);for(var h,c,f=3==t.length&&"M"==t[0][0]&&"R"==t[1][0].toUpperCase()&&"Z"==t[2][0].toUpperCase(),p=l,d=t.length;d>p;p++){if(r.push(h=[]),c=t[p],c[0]!=te.call(c[0]))switch(h[0]=te.call(c[0]),h[0]){case"A":h[1]=c[1],h[2]=c[2],h[3]=c[3],h[4]=c[4],h[5]=c[5],h[6]=+(c[6]+i),h[7]=+(c[7]+a);break;case"V":h[1]=+c[1]+a;break;case"H":h[1]=+c[1]+i;break;case"R":for(var g=[i,a][L](c.slice(1)),x=2,v=g.length;v>x;x++)g[x]=+g[x]+i,g[++x]=+g[x]+a;r.pop(),r=r[L](s(g,f));break;case"M":o=+c[1]+i,u=+c[2]+a;default:for(x=1,v=c.length;v>x;x++)h[x]=+c[x]+(x%2?i:a)}else if("R"==c[0])g=[i,a][L](c.slice(1)),r.pop(),r=r[L](s(g,f)),h=["R"][L](c.slice(-2));else for(var m=0,y=c.length;y>m;m++)h[m]=c[m];switch(h[0]){case"Z":i=o,a=u;break;case"H":i=h[1];break;case"V":a=h[1];break;case"M":o=h[h.length-2],u=h[h.length-1];default:i=h[h.length-2],a=h[h.length-1]}}return r.toString=e._path2string,n.abs=Fe(r),r},Ae=function(t,e,n,r){return[t,e,n,r,n,r]},Pe=function(t,e,n,r,i,a){var s=1/3,o=2/3;return[s*t+o*n,s*e+o*r,s*i+o*n,s*a+o*r,i,a]},Ee=function(t,e,n,r,a,s,o,u,l,h){var c,f=120*Y/180,p=Y/180*(+a||0),d=[],g=i(function(t,e,n){var r=t*D.cos(n)-e*D.sin(n),i=t*D.sin(n)+e*D.cos(n);return{x:r,y:i}});if(h)B=h[0],S=h[1],w=h[2],k=h[3];else{c=g(t,e,-p),t=c.x,e=c.y,c=g(u,l,-p),u=c.x,l=c.y;var x=(D.cos(Y/180*a),D.sin(Y/180*a),(t-u)/2),v=(e-l)/2,m=x*x/(n*n)+v*v/(r*r);m>1&&(m=D.sqrt(m),n=m*n,r=m*r);var y=n*n,b=r*r,_=(s==o?-1:1)*D.sqrt(V((y*b-y*v*v-b*x*x)/(y*v*v+b*x*x))),w=_*n*v/r+(t+u)/2,k=_*-r*x/n+(e+l)/2,B=D.asin(((e-k)/r).toFixed(9)),S=D.asin(((l-k)/r).toFixed(9));B=w>t?Y-B:B,S=w>u?Y-S:S,0>B&&(B=2*Y+B),0>S&&(S=2*Y+S),o&&B>S&&(B-=2*Y),!o&&S>B&&(S-=2*Y)}var C=S-B;if(V(C)>f){var F=S,T=u,A=l;S=B+f*(o&&S>B?1:-1),u=w+n*D.cos(S),l=k+r*D.sin(S),d=Ee(u,l,n,r,a,0,o,T,A,[S,F,w,k])}C=S-B;var P=D.cos(B),E=D.sin(B),M=D.cos(S),R=D.sin(S),q=D.tan(C/4),j=4/3*n*q,z=4/3*r*q,O=[t,e],X=[t+j*E,e-z*P],G=[u+j*R,l-z*M],N=[u,l];if(X[0]=2*O[0]-X[0],X[1]=2*O[1]-X[1],h)return[X,G,N][L](d);d=[X,G,N][L](d).join()[I](",");for(var W=[],$=0,H=d.length;H>$;$++)W[$]=$%2?g(d[$-1],d[$],p).y:g(d[$],d[$+1],p).x;return W},Me=function(t,e,n,r,i,a,s,o,u){var l=1-u;return{x:X(l,3)*t+3*X(l,2)*u*n+3*l*u*u*i+X(u,3)*s,y:X(l,3)*e+3*X(l,2)*u*r+3*l*u*u*a+X(u,3)*o}},Ie=i(function(t,e,n,r,i,a,s,o){var u,l=i-2*n+t-(s-2*i+n),h=2*(n-t)-2*(i-n),c=t-n,f=(-h+D.sqrt(h*h-4*l*c))/2/l,p=(-h-D.sqrt(h*h-4*l*c))/2/l,d=[e,o],g=[t,s];return V(f)>"1e12"&&(f=.5),V(p)>"1e12"&&(p=.5),f>0&&1>f&&(u=Me(t,e,n,r,i,a,s,o,f),g.push(u.x),d.push(u.y)),p>0&&1>p&&(u=Me(t,e,n,r,i,a,s,o,p),g.push(u.x),d.push(u.y)),l=a-2*r+e-(o-2*a+r),h=2*(r-e)-2*(a-r),c=e-r,f=(-h+D.sqrt(h*h-4*l*c))/2/l,p=(-h-D.sqrt(h*h-4*l*c))/2/l,V(f)>"1e12"&&(f=.5),V(p)>"1e12"&&(p=.5),f>0&&1>f&&(u=Me(t,e,n,r,i,a,s,o,f),g.push(u.x),d.push(u.y)),p>0&&1>p&&(u=Me(t,e,n,r,i,a,s,o,p),g.push(u.x),d.push(u.y)),{min:{x:O[T](0,g),y:O[T](0,d)},max:{x:z[T](0,g),y:z[T](0,d)}}}),Re=e._path2curve=i(function(t,e){var n=!e&&Se(t);if(!e&&n.curve)return Fe(n.curve);for(var r=Le(t),i=e&&Le(e),a={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},s={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},o=(function(t,e){var n,r;if(!t)return["C",e.x,e.y,e.x,e.y,e.x,e.y];switch(!(t[0]in{T:1,Q:1})&&(e.qx=e.qy=null),t[0]){case"M":e.X=t[1],e.Y=t[2];break;case"A":t=["C"][L](Ee[T](0,[e.x,e.y][L](t.slice(1))));break;case"S":n=e.x+(e.x-(e.bx||e.x)),r=e.y+(e.y-(e.by||e.y)),t=["C",n,r][L](t.slice(1));break;case"T":e.qx=e.x+(e.x-(e.qx||e.x)),e.qy=e.y+(e.y-(e.qy||e.y)),t=["C"][L](Pe(e.x,e.y,e.qx,e.qy,t[1],t[2]));break;case"Q":e.qx=t[1],e.qy=t[2],t=["C"][L](Pe(e.x,e.y,t[1],t[2],t[3],t[4]));break;case"L":t=["C"][L](Ae(e.x,e.y,t[1],t[2]));break;case"H":t=["C"][L](Ae(e.x,e.y,t[1],e.y));break;case"V":t=["C"][L](Ae(e.x,e.y,e.x,t[1]));break;case"Z":t=["C"][L](Ae(e.x,e.y,e.X,e.Y))}return t}),u=function(t,e){if(t[e].length>7){t[e].shift();for(var n=t[e];n.length;)t.splice(e++,0,["C"][L](n.splice(0,6)));t.splice(e,1),c=z(r.length,i&&i.length||0)}},l=function(t,e,n,a,s){t&&e&&"M"==t[s][0]&&"M"!=e[s][0]&&(e.splice(s,0,["M",a.x,a.y]),n.bx=0,n.by=0,n.x=t[s][1],n.y=t[s][2],c=z(r.length,i&&i.length||0))},h=0,c=z(r.length,i&&i.length||0);c>h;h++){r[h]=o(r[h],a),u(r,h),i&&(i[h]=o(i[h],s)),i&&u(i,h),l(r,i,a,s,h),l(i,r,s,a,h);var f=r[h],p=i&&i[h],d=f.length,g=i&&p.length;a.x=f[d-2],a.y=f[d-1],a.bx=J(f[d-4])||a.x,a.by=J(f[d-3])||a.y,s.bx=i&&(J(p[g-4])||s.x),s.by=i&&(J(p[g-3])||s.y),s.x=i&&p[g-2],s.y=i&&p[g-1]}return i||(n.curve=Fe(r)),i?[r,i]:r},null,Fe),qe=(e._parseDots=i(function(t){for(var n=[],r=0,i=t.length;i>r;r++){var a={},s=t[r].match(/^([^:]*):?([\d\.]*)/);if(a.color=e.getRGB(s[1]),a.color.error)return null;a.color=a.color.hex,s[2]&&(a.offset=s[2]+"%"),n.push(a)}for(r=1,i=n.length-1;i>r;r++)if(!n[r].offset){for(var o=J(n[r-1].offset||0),u=0,l=r+1;i>l;l++)if(n[l].offset){u=n[l].offset;break}u||(u=100,l=i),u=J(u);for(var h=(u-o)/(l-r+1);l>r;r++)o+=h,n[r].offset=o+"%"}return n}),e._tear=function(t,e){t==e.top&&(e.top=t.prev),t==e.bottom&&(e.bottom=t.next),t.next&&(t.next.prev=t.prev),t.prev&&(t.prev.next=t.next)}),je=(e._tofront=function(t,e){e.top!==t&&(qe(t,e),t.next=null,t.prev=e.top,e.top.next=t,e.top=t)},e._toback=function(t,e){e.bottom!==t&&(qe(t,e),t.next=e.bottom,t.prev=null,e.bottom.prev=t,e.bottom=t)},e._insertafter=function(t,e,n){qe(t,n),e==n.top&&(n.top=t),e.next&&(e.next.prev=t),t.next=e.next,t.prev=e,e.next=t},e._insertbefore=function(t,e,n){qe(t,n),e==n.bottom&&(n.bottom=t),e.prev&&(e.prev.next=t),t.prev=e.prev,e.prev=t,t.next=e},e.toMatrix=function(t,e){var n=Ce(t),r={_:{transform:P},getBBox:function(){return n}};return De(r,e),r.matrix}),De=(e.transformPath=function(t,e){return xe(t,je(t,e))},e._extractTransform=function(t,n){if(null==n)return t._.transform;n=M(n).replace(/\.{3}|\u2026/g,t._.transform||P);var r=e.parseTransformString(n),i=0,a=0,s=0,o=1,u=1,l=t._,h=new p;if(l.transform=r||[],r)for(var c=0,f=r.length;f>c;c++){var d,g,x,v,m,y=r[c],b=y.length,_=M(y[0]).toLowerCase(),w=y[0]!=_,k=w?h.invert():0;"t"==_&&3==b?w?(d=k.x(0,0),g=k.y(0,0),x=k.x(y[1],y[2]),v=k.y(y[1],y[2]),h.translate(x-d,v-g)):h.translate(y[1],y[2]):"r"==_?2==b?(m=m||t.getBBox(1),h.rotate(y[1],m.x+m.width/2,m.y+m.height/2),i+=y[1]):4==b&&(w?(x=k.x(y[2],y[3]),v=k.y(y[2],y[3]),h.rotate(y[1],x,v)):h.rotate(y[1],y[2],y[3]),i+=y[1]):"s"==_?2==b||3==b?(m=m||t.getBBox(1),h.scale(y[1],y[b-1],m.x+m.width/2,m.y+m.height/2),o*=y[1],u*=y[b-1]):5==b&&(w?(x=k.x(y[3],y[4]),v=k.y(y[3],y[4]),h.scale(y[1],y[2],x,v)):h.scale(y[1],y[2],y[3],y[4]),o*=y[1],u*=y[2]):"m"==_&&7==b&&h.add(y[1],y[2],y[3],y[4],y[5],y[6]),l.dirtyT=1,t.matrix=h}t.matrix=h,l.sx=o,l.sy=u,l.deg=i,l.dx=a=h.e,l.dy=s=h.f,1==o&&1==u&&!i&&l.bbox?(l.bbox.x+=+a,l.bbox.y+=+s):l.dirtyT=1}),ze=function(t){var e=t[0];switch(e.toLowerCase()){case"t":return[e,0,0];case"m":return[e,1,0,0,1,0,0];case"r":return 4==t.length?[e,0,t[2],t[3]]:[e,0];case"s":return 5==t.length?[e,1,1,t[3],t[4]]:3==t.length?[e,1,1]:[e,1]}},Oe=e._equaliseTransform=function(t,n){n=M(n).replace(/\.{3}|\u2026/g,t),t=e.parseTransformString(t)||[],n=e.parseTransformString(n)||[];for(var r,i,a,s,o=z(t.length,n.length),u=[],l=[],h=0;o>h;h++){if(a=t[h]||ze(n[h]),s=n[h]||ze(a),a[0]!=s[0]||"r"==a[0].toLowerCase()&&(a[2]!=s[2]||a[3]!=s[3])||"s"==a[0].toLowerCase()&&(a[3]!=s[3]||a[4]!=s[4]))return;for(u[h]=[],l[h]=[],r=0,i=z(a.length,s.length);i>r;r++)r in a&&(u[h][r]=a[r]),r in s&&(l[h][r]=s[r])}return{from:u,to:l}};e._getContainer=function(t,n,r,i){var a;return a=null!=i||e.is(t,"object")?t:S.doc.getElementById(t),null!=a?a.tagName?null==n?{container:a,width:a.style.pixelWidth||a.offsetWidth,height:a.style.pixelHeight||a.offsetHeight}:{container:a,width:n,height:r}:{container:1,x:t,y:n,width:r,height:i}:void 0},e.pathToRelative=Te,e._engine={},e.path2curve=Re,e.matrix=function(t,e,n,r,i,a){return new p(t,e,n,r,i,a)},function(t){function n(t){return t[0]*t[0]+t[1]*t[1]}function r(t){var e=D.sqrt(n(t));t[0]&&(t[0]/=e),t[1]&&(t[1]/=e)}t.add=function(t,e,n,r,i,a){var s,o,u,l,h=[[],[],[]],c=[[this.a,this.c,this.e],[this.b,this.d,this.f],[0,0,1]],f=[[t,n,i],[e,r,a],[0,0,1]];for(t&&t instanceof p&&(f=[[t.a,t.c,t.e],[t.b,t.d,t.f],[0,0,1]]),s=0;3>s;s++)for(o=0;3>o;o++){for(l=0,u=0;3>u;u++)l+=c[s][u]*f[u][o];h[s][o]=l}this.a=h[0][0],this.b=h[1][0],this.c=h[0][1],this.d=h[1][1],this.e=h[0][2],this.f=h[1][2]},t.invert=function(){var t=this,e=t.a*t.d-t.b*t.c;return new p(t.d/e,-t.b/e,-t.c/e,t.a/e,(t.c*t.f-t.d*t.e)/e,(t.b*t.e-t.a*t.f)/e)},t.clone=function(){return new p(this.a,this.b,this.c,this.d,this.e,this.f)},t.translate=function(t,e){this.add(1,0,0,1,t,e)},t.scale=function(t,e,n,r){null==e&&(e=t),(n||r)&&this.add(1,0,0,1,n,r),this.add(t,0,0,e,0,0),(n||r)&&this.add(1,0,0,1,-n,-r)},t.rotate=function(t,n,r){t=e.rad(t),n=n||0,r=r||0;var i=+D.cos(t).toFixed(9),a=+D.sin(t).toFixed(9);this.add(i,a,-a,i,n,r),this.add(1,0,0,1,-n,-r)},t.x=function(t,e){return t*this.a+e*this.c+this.e},t.y=function(t,e){return t*this.b+e*this.d+this.f},t.get=function(t){return+this[M.fromCharCode(97+t)].toFixed(4)},t.toString=function(){return e.svg?"matrix("+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+")":[this.get(0),this.get(2),this.get(1),this.get(3),0,0].join()},t.toFilter=function(){return"progid:DXImageTransform.Microsoft.Matrix(M11="+this.get(0)+", M12="+this.get(2)+", M21="+this.get(1)+", M22="+this.get(3)+", Dx="+this.get(4)+", Dy="+this.get(5)+", sizingmethod='auto expand')"},t.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]},t.split=function(){var t={};t.dx=this.e,t.dy=this.f;var i=[[this.a,this.c],[this.b,this.d]];t.scalex=D.sqrt(n(i[0])),r(i[0]),t.shear=i[0][0]*i[1][0]+i[0][1]*i[1][1],i[1]=[i[1][0]-i[0][0]*t.shear,i[1][1]-i[0][1]*t.shear],t.scaley=D.sqrt(n(i[1])),r(i[1]),t.shear/=t.scaley;var a=-i[0][1],s=i[1][1];return 0>s?(t.rotate=e.deg(D.acos(s)),0>a&&(t.rotate=360-t.rotate)):t.rotate=e.deg(D.asin(a)),t.isSimple=!(+t.shear.toFixed(9)||t.scalex.toFixed(9)!=t.scaley.toFixed(9)&&t.rotate),t.isSuperSimple=!+t.shear.toFixed(9)&&t.scalex.toFixed(9)==t.scaley.toFixed(9)&&!t.rotate,t.noRotation=!+t.shear.toFixed(9)&&!t.rotate,t
},t.toTransformString=function(t){var e=t||this[I]();return e.isSimple?(e.scalex=+e.scalex.toFixed(4),e.scaley=+e.scaley.toFixed(4),e.rotate=+e.rotate.toFixed(4),(e.dx||e.dy?"t"+[e.dx,e.dy]:P)+(1!=e.scalex||1!=e.scaley?"s"+[e.scalex,e.scaley,0,0]:P)+(e.rotate?"r"+[e.rotate,0,0]:P)):"m"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)]}}(p.prototype);var Ve=navigator.userAgent.match(/Version\/(.*?)\s/)||navigator.userAgent.match(/Chrome\/(\d+)/);b.safari="Apple Computer, Inc."==navigator.vendor&&(Ve&&4>Ve[1]||"iP"==navigator.platform.slice(0,2))||"Google Inc."==navigator.vendor&&Ve&&8>Ve[1]?function(){var t=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});setTimeout(function(){t.remove()})}:ce;for(var Xe=function(){this.returnValue=!1},Ye=function(){return this.originalEvent.preventDefault()},Ge=function(){this.cancelBubble=!0},Ne=function(){return this.originalEvent.stopPropagation()},We=function(){return S.doc.addEventListener?function(t,e,n,r){var i=A&&q[e]?q[e]:e,a=function(i){var a=S.doc.documentElement.scrollTop||S.doc.body.scrollTop,s=S.doc.documentElement.scrollLeft||S.doc.body.scrollLeft,o=i.clientX+s,u=i.clientY+a;if(A&&q[B](e))for(var l=0,h=i.targetTouches&&i.targetTouches.length;h>l;l++)if(i.targetTouches[l].target==t){var c=i;i=i.targetTouches[l],i.originalEvent=c,i.preventDefault=Ye,i.stopPropagation=Ne;break}return n.call(r,i,o,u)};return t.addEventListener(i,a,!1),function(){return t.removeEventListener(i,a,!1),!0}}:S.doc.attachEvent?function(t,e,n,r){var i=function(t){t=t||S.win.event;var e=S.doc.documentElement.scrollTop||S.doc.body.scrollTop,i=S.doc.documentElement.scrollLeft||S.doc.body.scrollLeft,a=t.clientX+i,s=t.clientY+e;return t.preventDefault=t.preventDefault||Xe,t.stopPropagation=t.stopPropagation||Ge,n.call(r,t,a,s)};t.attachEvent("on"+e,i);var a=function(){return t.detachEvent("on"+e,i),!0};return a}:void 0}(),$e=[],He=function(e){for(var n,r=e.clientX,i=e.clientY,a=S.doc.documentElement.scrollTop||S.doc.body.scrollTop,s=S.doc.documentElement.scrollLeft||S.doc.body.scrollLeft,o=$e.length;o--;){if(n=$e[o],A){for(var u,l=e.touches.length;l--;)if(u=e.touches[l],u.identifier==n.el._drag.id){r=u.clientX,i=u.clientY,(e.originalEvent?e.originalEvent:e).preventDefault();break}}else e.preventDefault();var h,c=n.el.node,f=c.nextSibling,p=c.parentNode,d=c.style.display;S.win.opera&&p.removeChild(c),c.style.display="none",h=n.el.paper.getElementByPoint(r,i),c.style.display=d,S.win.opera&&(f?p.insertBefore(c,f):p.appendChild(c)),h&&t("raphael.drag.over."+n.el.id,n.el,h),r+=s,i+=a,t("raphael.drag.move."+n.el.id,n.move_scope||n.el,r-n.el._drag.x,i-n.el._drag.y,r,i,e)}},Ue=function(n){e.unmousemove(He).unmouseup(Ue);for(var r,i=$e.length;i--;)r=$e[i],r.el._drag={},t("raphael.drag.end."+r.el.id,r.end_scope||r.start_scope||r.move_scope||r.el,n);$e=[]},Ze=e.el={},Qe=R.length;Qe--;)(function(t){e[t]=Ze[t]=function(n,r){return e.is(n,"function")&&(this.events=this.events||[],this.events.push({name:t,f:n,unbind:We(this.shape||this.node||S.doc,t,n,r||this)})),this},e["un"+t]=Ze["un"+t]=function(e){for(var n=this.events||[],r=n.length;r--;)if(n[r].name==t&&n[r].f==e)return n[r].unbind(),n.splice(r,1),!n.length&&delete this.events,this;return this}})(R[Qe]);Ze.data=function(n,r){var i=le[this.id]=le[this.id]||{};if(1==arguments.length){if(e.is(n,"object")){for(var a in n)n[B](a)&&this.data(a,n[a]);return this}return t("raphael.data.get."+this.id,this,i[n],n),i[n]}return i[n]=r,t("raphael.data.set."+this.id,this,r,n),this},Ze.removeData=function(t){return null==t?le[this.id]={}:le[this.id]&&delete le[this.id][t],this},Ze.getData=function(){return n(le[this.id]||{})},Ze.hover=function(t,e,n,r){return this.mouseover(t,n).mouseout(e,r||n)},Ze.unhover=function(t,e){return this.unmouseover(t).unmouseout(e)};var Je=[];Ze.drag=function(n,r,i,a,s,o){function u(u){(u.originalEvent||u).preventDefault();var l=S.doc.documentElement.scrollTop||S.doc.body.scrollTop,h=S.doc.documentElement.scrollLeft||S.doc.body.scrollLeft;this._drag.x=u.clientX+h,this._drag.y=u.clientY+l,this._drag.id=u.identifier,!$e.length&&e.mousemove(He).mouseup(Ue),$e.push({el:this,move_scope:a,start_scope:s,end_scope:o}),r&&t.on("raphael.drag.start."+this.id,r),n&&t.on("raphael.drag.move."+this.id,n),i&&t.on("raphael.drag.end."+this.id,i),t("raphael.drag.start."+this.id,s||a||this,u.clientX+h,u.clientY+l,u)}return this._drag={},Je.push({el:this,start:u}),this.mousedown(u),this},Ze.onDragOver=function(e){e?t.on("raphael.drag.over."+this.id,e):t.unbind("raphael.drag.over."+this.id)},Ze.undrag=function(){for(var n=Je.length;n--;)Je[n].el==this&&(this.unmousedown(Je[n].start),Je.splice(n,1),t.unbind("raphael.drag.*."+this.id));!Je.length&&e.unmousemove(He).unmouseup(Ue),$e=[]},b.circle=function(t,n,r){var i=e._engine.circle(this,t||0,n||0,r||0);return this.__set__&&this.__set__.push(i),i},b.rect=function(t,n,r,i,a){var s=e._engine.rect(this,t||0,n||0,r||0,i||0,a||0);return this.__set__&&this.__set__.push(s),s},b.ellipse=function(t,n,r,i){var a=e._engine.ellipse(this,t||0,n||0,r||0,i||0);return this.__set__&&this.__set__.push(a),a},b.path=function(t){t&&!e.is(t,N)&&!e.is(t[0],W)&&(t+=P);var n=e._engine.path(e.format[T](e,arguments),this);return this.__set__&&this.__set__.push(n),n},b.image=function(t,n,r,i,a){var s=e._engine.image(this,t||"about:blank",n||0,r||0,i||0,a||0);return this.__set__&&this.__set__.push(s),s},b.text=function(t,n,r){var i=e._engine.text(this,t||0,n||0,M(r));return this.__set__&&this.__set__.push(i),i},b.set=function(t){!e.is(t,"array")&&(t=Array.prototype.splice.call(arguments,0,arguments.length));var n=new cn(t);return this.__set__&&this.__set__.push(n),n.paper=this,n.type="set",n},b.setStart=function(t){this.__set__=t||this.set()},b.setFinish=function(){var t=this.__set__;return delete this.__set__,t},b.setSize=function(t,n){return e._engine.setSize.call(this,t,n)},b.setViewBox=function(t,n,r,i,a){return e._engine.setViewBox.call(this,t,n,r,i,a)},b.top=b.bottom=null,b.raphael=e;var Ke=function(t){var e=t.getBoundingClientRect(),n=t.ownerDocument,r=n.body,i=n.documentElement,a=i.clientTop||r.clientTop||0,s=i.clientLeft||r.clientLeft||0,o=e.top+(S.win.pageYOffset||i.scrollTop||r.scrollTop)-a,u=e.left+(S.win.pageXOffset||i.scrollLeft||r.scrollLeft)-s;return{y:o,x:u}};b.getElementByPoint=function(t,e){var n=this,r=n.canvas,i=S.doc.elementFromPoint(t,e);if(S.win.opera&&"svg"==i.tagName){var a=Ke(r),s=r.createSVGRect();s.x=t-a.x,s.y=e-a.y,s.width=s.height=1;var o=r.getIntersectionList(s,null);o.length&&(i=o[o.length-1])}if(!i)return null;for(;i.parentNode&&i!=r.parentNode&&!i.raphael;)i=i.parentNode;return i==n.canvas.parentNode&&(i=r),i=i&&i.raphael?n.getById(i.raphaelid):null},b.getElementsByBBox=function(t){var n=this.set();return this.forEach(function(r){e.isBBoxIntersect(r.getBBox(),t)&&n.push(r)}),n},b.getById=function(t){for(var e=this.bottom;e;){if(e.id==t)return e;e=e.next}return null},b.forEach=function(t,e){for(var n=this.bottom;n;){if(t.call(e,n)===!1)return this;n=n.next}return this},b.getElementsByPoint=function(t,e){var n=this.set();return this.forEach(function(r){r.isPointInside(t,e)&&n.push(r)}),n},Ze.isPointInside=function(t,n){var r=this.realPath=this.realPath||ge[this.type](this);return e.isPointInsidePath(r,t,n)},Ze.getBBox=function(t){if(this.removed)return{};var e=this._;return t?((e.dirty||!e.bboxwt)&&(this.realPath=ge[this.type](this),e.bboxwt=Ce(this.realPath),e.bboxwt.toString=d,e.dirty=0),e.bboxwt):((e.dirty||e.dirtyT||!e.bbox)&&((e.dirty||!this.realPath)&&(e.bboxwt=0,this.realPath=ge[this.type](this)),e.bbox=Ce(xe(this.realPath,this.matrix)),e.bbox.toString=d,e.dirty=e.dirtyT=0),e.bbox)},Ze.clone=function(){if(this.removed)return null;var t=this.paper[this.type]().attr(this.attr());return this.__set__&&this.__set__.push(t),t},Ze.glow=function(t){if("text"==this.type)return null;t=t||{};var e={width:(t.width||10)+(+this.attr("stroke-width")||1),fill:t.fill||!1,opacity:t.opacity||.5,offsetx:t.offsetx||0,offsety:t.offsety||0,color:t.color||"#000"},n=e.width/2,r=this.paper,i=r.set(),a=this.realPath||ge[this.type](this);a=this.matrix?xe(a,this.matrix):a;for(var s=1;n+1>s;s++)i.push(r.path(a).attr({stroke:e.color,fill:e.fill?e.color:"none","stroke-linejoin":"round","stroke-linecap":"round","stroke-width":+(e.width/n*s).toFixed(3),opacity:+(e.opacity/n).toFixed(3)}));return i.insertBefore(this).translate(e.offsetx,e.offsety)};var tn=function(t,n,r,i,a,s,o,h,c){return null==c?u(t,n,r,i,a,s,o,h):e.findDotsAtSegment(t,n,r,i,a,s,o,h,l(t,n,r,i,a,s,o,h,c))},en=function(t,n){return function(r,i,a){r=Re(r);for(var s,o,u,l,h,c="",f={},p=0,d=0,g=r.length;g>d;d++){if(u=r[d],"M"==u[0])s=+u[1],o=+u[2];else{if(l=tn(s,o,u[1],u[2],u[3],u[4],u[5],u[6]),p+l>i){if(n&&!f.start){if(h=tn(s,o,u[1],u[2],u[3],u[4],u[5],u[6],i-p),c+=["C"+h.start.x,h.start.y,h.m.x,h.m.y,h.x,h.y],a)return c;f.start=c,c=["M"+h.x,h.y+"C"+h.n.x,h.n.y,h.end.x,h.end.y,u[5],u[6]].join(),p+=l,s=+u[5],o=+u[6];continue}if(!t&&!n)return h=tn(s,o,u[1],u[2],u[3],u[4],u[5],u[6],i-p),{x:h.x,y:h.y,alpha:h.alpha}}p+=l,s=+u[5],o=+u[6]}c+=u.shift()+u}return f.end=c,h=t?p:n?f:e.findDotsAtSegment(s,o,u[0],u[1],u[2],u[3],u[4],u[5],1),h.alpha&&(h={x:h.x,y:h.y,alpha:h.alpha}),h}},nn=en(1),rn=en(),an=en(0,1);e.getTotalLength=nn,e.getPointAtLength=rn,e.getSubpath=function(t,e,n){if(1e-6>this.getTotalLength(t)-n)return an(t,e).end;var r=an(t,n,1);return e?an(r,e).end:r},Ze.getTotalLength=function(){return"path"==this.type?this.node.getTotalLength?this.node.getTotalLength():nn(this.attrs.path):void 0},Ze.getPointAtLength=function(t){return"path"==this.type?rn(this.attrs.path,t):void 0},Ze.getSubpath=function(t,n){return"path"==this.type?e.getSubpath(this.attrs.path,t,n):void 0};var sn=e.easing_formulas={linear:function(t){return t},"<":function(t){return X(t,1.7)},">":function(t){return X(t,.48)},"<>":function(t){var e=.48-t/1.04,n=D.sqrt(.1734+e*e),r=n-e,i=X(V(r),1/3)*(0>r?-1:1),a=-n-e,s=X(V(a),1/3)*(0>a?-1:1),o=i+s+.5;return 3*(1-o)*o*o+o*o*o},backIn:function(t){var e=1.70158;return t*t*((e+1)*t-e)},backOut:function(t){t-=1;var e=1.70158;return t*t*((e+1)*t+e)+1},elastic:function(t){return t==!!t?t:X(2,-10*t)*D.sin((t-.075)*2*Y/.3)+1},bounce:function(t){var e,n=7.5625,r=2.75;return 1/r>t?e=n*t*t:2/r>t?(t-=1.5/r,e=n*t*t+.75):2.5/r>t?(t-=2.25/r,e=n*t*t+.9375):(t-=2.625/r,e=n*t*t+.984375),e}};sn.easeIn=sn["ease-in"]=sn["<"],sn.easeOut=sn["ease-out"]=sn[">"],sn.easeInOut=sn["ease-in-out"]=sn["<>"],sn["back-in"]=sn.backIn,sn["back-out"]=sn.backOut;var on=[],un=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){setTimeout(t,16)},ln=function(){for(var n=+new Date,r=0;on.length>r;r++){var i=on[r];if(!i.el.removed&&!i.paused){var a,s,o=n-i.start,u=i.ms,l=i.easing,h=i.from,c=i.diff,f=i.to,p=(i.t,i.el),d={},g={};if(i.initstatus?(o=(i.initstatus*i.anim.top-i.prev)/(i.percent-i.prev)*u,i.status=i.initstatus,delete i.initstatus,i.stop&&on.splice(r--,1)):i.status=(i.prev+(i.percent-i.prev)*(o/u))/i.anim.top,!(0>o))if(u>o){var x=l(o/u);for(var m in h)if(h[B](m)){switch(ne[m]){case G:a=+h[m]+x*u*c[m];break;case"colour":a="rgb("+[hn(Q(h[m].r+x*u*c[m].r)),hn(Q(h[m].g+x*u*c[m].g)),hn(Q(h[m].b+x*u*c[m].b))].join(",")+")";break;case"path":a=[];for(var y=0,b=h[m].length;b>y;y++){a[y]=[h[m][y][0]];for(var _=1,w=h[m][y].length;w>_;_++)a[y][_]=+h[m][y][_]+x*u*c[m][y][_];a[y]=a[y].join(E)}a=a.join(E);break;case"transform":if(c[m].real)for(a=[],y=0,b=h[m].length;b>y;y++)for(a[y]=[h[m][y][0]],_=1,w=h[m][y].length;w>_;_++)a[y][_]=h[m][y][_]+x*u*c[m][y][_];else{var k=function(t){return+h[m][t]+x*u*c[m][t]};a=[["m",k(0),k(1),k(2),k(3),k(4),k(5)]]}break;case"csv":if("clip-rect"==m)for(a=[],y=4;y--;)a[y]=+h[m][y]+x*u*c[m][y];break;default:var S=[][L](h[m]);for(a=[],y=p.paper.customAttributes[m].length;y--;)a[y]=+S[y]+x*u*c[m][y]}d[m]=a}p.attr(d),function(e,n,r){setTimeout(function(){t("raphael.anim.frame."+e,n,r)})}(p.id,p,i.anim)}else{if(function(n,r,i){setTimeout(function(){t("raphael.anim.frame."+r.id,r,i),t("raphael.anim.finish."+r.id,r,i),e.is(n,"function")&&n.call(r)})}(i.callback,p,i.anim),p.attr(f),on.splice(r--,1),i.repeat>1&&!i.next){for(s in f)f[B](s)&&(g[s]=i.totalOrigin[s]);i.el.attr(g),v(i.anim,i.el,i.anim.percents[0],null,i.totalOrigin,i.repeat-1)}i.next&&!i.stop&&v(i.anim,i.el,i.next,null,i.totalOrigin,i.repeat)}}}e.svg&&p&&p.paper&&p.paper.safari(),on.length&&un(ln)},hn=function(t){return t>255?255:0>t?0:t};Ze.animateWith=function(t,n,r,i,a,s){var o=this;if(o.removed)return s&&s.call(o),o;var u=r instanceof x?r:e.animation(r,i,a,s);v(u,o,u.percents[0],null,o.attr());for(var l=0,h=on.length;h>l;l++)if(on[l].anim==n&&on[l].el==t){on[h-1].start=on[l].start;break}return o},Ze.onAnimation=function(e){return e?t.on("raphael.anim.frame."+this.id,e):t.unbind("raphael.anim.frame."+this.id),this},x.prototype.delay=function(t){var e=new x(this.anim,this.ms);return e.times=this.times,e.del=+t||0,e},x.prototype.repeat=function(t){var e=new x(this.anim,this.ms);return e.del=this.del,e.times=D.floor(z(t,0))||1,e},e.animation=function(t,n,r,i){if(t instanceof x)return t;(e.is(r,"function")||!r)&&(i=i||r||null,r=null),t=Object(t),n=+n||0;var a,s,o={};for(s in t)t[B](s)&&J(s)!=s&&J(s)+"%"!=s&&(a=!0,o[s]=t[s]);return a?(r&&(o.easing=r),i&&(o.callback=i),new x({100:o},n)):new x(t,n)},Ze.animate=function(t,n,r,i){var a=this;if(a.removed)return i&&i.call(a),a;var s=t instanceof x?t:e.animation(t,n,r,i);return v(s,a,s.percents[0],null,a.attr()),a},Ze.setTime=function(t,e){return t&&null!=e&&this.status(t,O(e,t.ms)/t.ms),this},Ze.status=function(t,e){var n,r,i=[],a=0;if(null!=e)return v(t,this,-1,O(e,1)),this;for(n=on.length;n>a;a++)if(r=on[a],r.el.id==this.id&&(!t||r.anim==t)){if(t)return r.status;i.push({anim:r.anim,status:r.status})}return t?0:i},Ze.pause=function(e){for(var n=0;on.length>n;n++)on[n].el.id!=this.id||e&&on[n].anim!=e||t("raphael.anim.pause."+this.id,this,on[n].anim)!==!1&&(on[n].paused=!0);return this},Ze.resume=function(e){for(var n=0;on.length>n;n++)if(on[n].el.id==this.id&&(!e||on[n].anim==e)){var r=on[n];t("raphael.anim.resume."+this.id,this,r.anim)!==!1&&(delete r.paused,this.status(r.anim,r.status))}return this},Ze.stop=function(e){for(var n=0;on.length>n;n++)on[n].el.id!=this.id||e&&on[n].anim!=e||t("raphael.anim.stop."+this.id,this,on[n].anim)!==!1&&on.splice(n--,1);return this},t.on("raphael.remove",m),t.on("raphael.clear",m),Ze.toString=function(){return"Raphaël’s object"};var cn=function(t){if(this.items=[],this.length=0,this.type="set",t)for(var e=0,n=t.length;n>e;e++)!t[e]||t[e].constructor!=Ze.constructor&&t[e].constructor!=cn||(this[this.items.length]=this.items[this.items.length]=t[e],this.length++)},fn=cn.prototype;fn.push=function(){for(var t,e,n=0,r=arguments.length;r>n;n++)t=arguments[n],!t||t.constructor!=Ze.constructor&&t.constructor!=cn||(e=this.items.length,this[e]=this.items[e]=t,this.length++);return this},fn.pop=function(){return this.length&&delete this[this.length--],this.items.pop()},fn.forEach=function(t,e){for(var n=0,r=this.items.length;r>n;n++)if(t.call(e,this.items[n],n)===!1)return this;return this};for(var pn in Ze)Ze[B](pn)&&(fn[pn]=function(t){return function(){var e=arguments;return this.forEach(function(n){n[t][T](n,e)})}}(pn));return fn.attr=function(t,n){if(t&&e.is(t,W)&&e.is(t[0],"object"))for(var r=0,i=t.length;i>r;r++)this.items[r].attr(t[r]);else for(var a=0,s=this.items.length;s>a;a++)this.items[a].attr(t,n);return this},fn.clear=function(){for(;this.length;)this.pop()},fn.splice=function(t,e){t=0>t?z(this.length+t,0):t,e=z(0,O(this.length-t,e));var n,r=[],i=[],a=[];for(n=2;arguments.length>n;n++)a.push(arguments[n]);for(n=0;e>n;n++)i.push(this[t+n]);for(;this.length-t>n;n++)r.push(this[t+n]);var s=a.length;for(n=0;s+r.length>n;n++)this.items[t+n]=this[t+n]=s>n?a[n]:r[n-s];for(n=this.items.length=this.length-=e-s;this[n];)delete this[n++];return new cn(i)},fn.exclude=function(t){for(var e=0,n=this.length;n>e;e++)if(this[e]==t)return this.splice(e,1),!0},fn.animate=function(t,n,r,i){(e.is(r,"function")||!r)&&(i=r||null);var a,s,o=this.items.length,u=o,l=this;if(!o)return this;i&&(s=function(){!--o&&i.call(l)}),r=e.is(r,N)?r:s;var h=e.animation(t,n,r,s);for(a=this.items[--u].animate(h);u--;)this.items[u]&&!this.items[u].removed&&this.items[u].animateWith(a,h,h);return this},fn.insertAfter=function(t){for(var e=this.items.length;e--;)this.items[e].insertAfter(t);return this},fn.getBBox=function(){for(var t=[],e=[],n=[],r=[],i=this.items.length;i--;)if(!this.items[i].removed){var a=this.items[i].getBBox();t.push(a.x),e.push(a.y),n.push(a.x+a.width),r.push(a.y+a.height)}return t=O[T](0,t),e=O[T](0,e),n=z[T](0,n),r=z[T](0,r),{x:t,y:e,x2:n,y2:r,width:n-t,height:r-e}},fn.clone=function(t){t=this.paper.set();for(var e=0,n=this.items.length;n>e;e++)t.push(this.items[e].clone());return t},fn.toString=function(){return"Raphaël‘s set"},fn.glow=function(t){var e=this.paper.set();return this.forEach(function(n){var r=n.glow(t);null!=r&&r.forEach(function(t){e.push(t)})}),e},e.registerFont=function(t){if(!t.face)return t;this.fonts=this.fonts||{};var e={w:t.w,face:{},glyphs:{}},n=t.face["font-family"];for(var r in t.face)t.face[B](r)&&(e.face[r]=t.face[r]);if(this.fonts[n]?this.fonts[n].push(e):this.fonts[n]=[e],!t.svg){e.face["units-per-em"]=K(t.face["units-per-em"],10);for(var i in t.glyphs)if(t.glyphs[B](i)){var a=t.glyphs[i];if(e.glyphs[i]={w:a.w,k:{},d:a.d&&"M"+a.d.replace(/[mlcxtrv]/g,function(t){return{l:"L",c:"C",x:"z",t:"m",r:"l",v:"c"}[t]||"M"})+"z"},a.k)for(var s in a.k)a[B](s)&&(e.glyphs[i].k[s]=a.k[s])}}return t},b.getFont=function(t,n,r,i){if(i=i||"normal",r=r||"normal",n=+n||{normal:400,bold:700,lighter:300,bolder:800}[n]||400,e.fonts){var a=e.fonts[t];if(!a){var s=RegExp("(^|\\s)"+t.replace(/[^\w\d\s+!~.:_-]/g,P)+"(\\s|$)","i");for(var o in e.fonts)if(e.fonts[B](o)&&s.test(o)){a=e.fonts[o];break}}var u;if(a)for(var l=0,h=a.length;h>l&&(u=a[l],u.face["font-weight"]!=n||u.face["font-style"]!=r&&u.face["font-style"]||u.face["font-stretch"]!=i);l++);return u}},b.print=function(t,n,r,i,a,s,o){s=s||"middle",o=z(O(o||0,1),-1);var u,l=M(r)[I](P),h=0,c=0,f=P;if(e.is(i,"string")&&(i=this.getFont(i)),i){u=(a||16)/i.face["units-per-em"];for(var p=i.face.bbox[I](_),d=+p[0],g=p[3]-p[1],x=0,v=+p[1]+("baseline"==s?g+ +i.face.descent:g/2),m=0,y=l.length;y>m;m++){if("\n"==l[m])h=0,w=0,c=0,x+=g;else{var b=c&&i.glyphs[l[m-1]]||{},w=i.glyphs[l[m]];h+=c?(b.w||i.w)+(b.k&&b.k[l[m]]||0)+i.w*o:0,c=1}w&&w.d&&(f+=e.transformPath(w.d,["t",h*u,x*u,"s",u,u,d,v,"t",(t-d)/u,(n-v)/u]))}}return this.path(f).attr({fill:"#000",stroke:"none"})},b.add=function(t){if(e.is(t,"array"))for(var n,r=this.set(),i=0,a=t.length;a>i;i++)n=t[i]||{},w[B](n.type)&&r.push(this[n.type]().attr(n));return r},e.format=function(t,n){var r=e.is(n,W)?[0][L](n):arguments;return t&&e.is(t,N)&&r.length-1&&(t=t.replace(k,function(t,e){return null==r[++e]?P:r[e]})),t||P},e.fullfill=function(){var t=/\{([^\}]+)\}/g,e=/(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g,n=function(t,n,r){var i=r;return n.replace(e,function(t,e,n,r,a){e=e||r,i&&(e in i&&(i=i[e]),"function"==typeof i&&a&&(i=i()))}),i=(null==i||i==r?t:i)+""};return function(e,r){return(e+"").replace(t,function(t,e){return n(t,e,r)})}}(),e.ninja=function(){return C.was?S.win.Raphael=C.is:delete Raphael,e},e.st=fn,function(t,n,r){function i(){/in/.test(t.readyState)?setTimeout(i,9):e.eve("raphael.DOMload")}null==t.readyState&&t.addEventListener&&(t.addEventListener(n,r=function(){t.removeEventListener(n,r,!1),t.readyState="complete"},!1),t.readyState="loading"),i()}(document,"DOMContentLoaded"),C.was?S.win.Raphael=e:Raphael=e,t.on("raphael.DOMload",function(){y=!0}),e});(function(t,e){"function"==typeof define&&define.amd?require(["raphael"],e):t.Raphael&&e(t.Raphael)})(this,function(t){if(t.svg){var e="hasOwnProperty",r=String,n=parseFloat,i=parseInt,a=Math,s=a.max,o=a.abs,u=a.pow,h=/[, ]+/,l=t.eve,c="",f=" ",p="http://www.w3.org/1999/xlink",d={block:"M5,0 0,2.5 5,5z",classic:"M5,0 0,2.5 5,5 3.5,3 3.5,2z",diamond:"M2.5,0 5,2.5 2.5,5 0,2.5z",open:"M6,1 1,3.5 6,6",oval:"M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"},g={};t.toString=function(){return"Your browser supports SVG.\nYou are running Raphaël "+this.version};var x=function(n,i){if(i){"string"==typeof n&&(n=x(n));for(var a in i)i[e](a)&&("xlink:"==a.substring(0,6)?n.setAttributeNS(p,a.substring(6),r(i[a])):n.setAttribute(a,r(i[a])))}else n=t._g.doc.createElementNS("http://www.w3.org/2000/svg",n),n.style&&(n.style.webkitTapHighlightColor="rgba(0,0,0,0)");return n},v=function(e,i){var h="linear",l=e.id+i,f=.5,p=.5,d=e.node,g=e.paper,v=d.style,y=t._g.doc.getElementById(l);if(!y){if(i=r(i).replace(t._radial_gradient,function(t,e,r){if(h="radial",e&&r){f=n(e),p=n(r);var i=2*(p>.5)-1;u(f-.5,2)+u(p-.5,2)>.25&&(p=a.sqrt(.25-u(f-.5,2))*i+.5)&&.5!=p&&(p=p.toFixed(5)-1e-5*i)}return c}),i=i.split(/\s*\-\s*/),"linear"==h){var m=i.shift();if(m=-n(m),isNaN(m))return null;var b=[0,0,a.cos(t.rad(m)),a.sin(t.rad(m))],_=1/(s(o(b[2]),o(b[3]))||1);b[2]*=_,b[3]*=_,0>b[2]&&(b[0]=-b[2],b[2]=0),0>b[3]&&(b[1]=-b[3],b[3]=0)}var w=t._parseDots(i);if(!w)return null;if(l=l.replace(/[\(\)\s,\xb0#]/g,"_"),e.gradient&&l!=e.gradient.id&&(g.defs.removeChild(e.gradient),delete e.gradient),!e.gradient){y=x(h+"Gradient",{id:l}),e.gradient=y,x(y,"radial"==h?{fx:f,fy:p}:{x1:b[0],y1:b[1],x2:b[2],y2:b[3],gradientTransform:e.matrix.invert()}),g.defs.appendChild(y);for(var k=0,C=w.length;C>k;k++)y.appendChild(x("stop",{offset:w[k].offset?w[k].offset:k?"100%":"0%","stop-color":w[k].color||"#fff"}))}}return x(d,{fill:"url(#"+l+")",opacity:1,"fill-opacity":1}),v.fill=c,v.opacity=1,v.fillOpacity=1,1},y=function(t){var e=t.getBBox(1);x(t.pattern,{patternTransform:t.matrix.invert()+" translate("+e.x+","+e.y+")"})},m=function(n,i,a){if("path"==n.type){for(var s,o,u,h,l,f=r(i).toLowerCase().split("-"),p=n.paper,v=a?"end":"start",y=n.node,m=n.attrs,b=m["stroke-width"],_=f.length,w="classic",k=3,C=3,B=5;_--;)switch(f[_]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":w=f[_];break;case"wide":C=5;break;case"narrow":C=2;break;case"long":k=5;break;case"short":k=2}if("open"==w?(k+=2,C+=2,B+=2,u=1,h=a?4:1,l={fill:"none",stroke:m.stroke}):(h=u=k/2,l={fill:m.stroke,stroke:"none"}),n._.arrows?a?(n._.arrows.endPath&&g[n._.arrows.endPath]--,n._.arrows.endMarker&&g[n._.arrows.endMarker]--):(n._.arrows.startPath&&g[n._.arrows.startPath]--,n._.arrows.startMarker&&g[n._.arrows.startMarker]--):n._.arrows={},"none"!=w){var S="raphael-marker-"+w,A="raphael-marker-"+v+w+k+C;t._g.doc.getElementById(S)?g[S]++:(p.defs.appendChild(x(x("path"),{"stroke-linecap":"round",d:d[w],id:S})),g[S]=1);var T,M=t._g.doc.getElementById(A);M?(g[A]++,T=M.getElementsByTagName("use")[0]):(M=x(x("marker"),{id:A,markerHeight:C,markerWidth:k,orient:"auto",refX:h,refY:C/2}),T=x(x("use"),{"xlink:href":"#"+S,transform:(a?"rotate(180 "+k/2+" "+C/2+") ":c)+"scale("+k/B+","+C/B+")","stroke-width":(1/((k/B+C/B)/2)).toFixed(4)}),M.appendChild(T),p.defs.appendChild(M),g[A]=1),x(T,l);var F=u*("diamond"!=w&&"oval"!=w);a?(s=n._.arrows.startdx*b||0,o=t.getTotalLength(m.path)-F*b):(s=F*b,o=t.getTotalLength(m.path)-(n._.arrows.enddx*b||0)),l={},l["marker-"+v]="url(#"+A+")",(o||s)&&(l.d=Raphael.getSubpath(m.path,s,o)),x(y,l),n._.arrows[v+"Path"]=S,n._.arrows[v+"Marker"]=A,n._.arrows[v+"dx"]=F,n._.arrows[v+"Type"]=w,n._.arrows[v+"String"]=i}else a?(s=n._.arrows.startdx*b||0,o=t.getTotalLength(m.path)-s):(s=0,o=t.getTotalLength(m.path)-(n._.arrows.enddx*b||0)),n._.arrows[v+"Path"]&&x(y,{d:Raphael.getSubpath(m.path,s,o)}),delete n._.arrows[v+"Path"],delete n._.arrows[v+"Marker"],delete n._.arrows[v+"dx"],delete n._.arrows[v+"Type"],delete n._.arrows[v+"String"];for(l in g)if(g[e](l)&&!g[l]){var L=t._g.doc.getElementById(l);L&&L.parentNode.removeChild(L)}}},b={"":[0],none:[0],"-":[3,1],".":[1,1],"-.":[3,1,1,1],"-..":[3,1,1,1,1,1],". ":[1,3],"- ":[4,3],"--":[8,3],"- .":[4,3,1,3],"--.":[8,3,1,3],"--..":[8,3,1,3,1,3]},_=function(t,e,n){if(e=b[r(e).toLowerCase()]){for(var i=t.attrs["stroke-width"]||"1",a={round:i,square:i,butt:0}[t.attrs["stroke-linecap"]||n["stroke-linecap"]]||0,s=[],o=e.length;o--;)s[o]=e[o]*i+(o%2?1:-1)*a;x(t.node,{"stroke-dasharray":s.join(",")})}},w=function(n,a){var u=n.node,l=n.attrs,f=u.style.visibility;u.style.visibility="hidden";for(var d in a)if(a[e](d)){if(!t._availableAttrs[e](d))continue;var g=a[d];switch(l[d]=g,d){case"blur":n.blur(g);break;case"href":case"title":case"target":var b=u.parentNode;if("a"!=b.tagName.toLowerCase()){var w=x("a");b.insertBefore(w,u),w.appendChild(u),b=w}"target"==d?b.setAttributeNS(p,"show","blank"==g?"new":g):b.setAttributeNS(p,d,g);break;case"cursor":u.style.cursor=g;break;case"transform":n.transform(g);break;case"arrow-start":m(n,g);break;case"arrow-end":m(n,g,1);break;case"clip-rect":var k=r(g).split(h);if(4==k.length){n.clip&&n.clip.parentNode.parentNode.removeChild(n.clip.parentNode);var B=x("clipPath"),S=x("rect");B.id=t.createUUID(),x(S,{x:k[0],y:k[1],width:k[2],height:k[3]}),B.appendChild(S),n.paper.defs.appendChild(B),x(u,{"clip-path":"url(#"+B.id+")"}),n.clip=S}if(!g){var A=u.getAttribute("clip-path");if(A){var T=t._g.doc.getElementById(A.replace(/(^url\(#|\)$)/g,c));T&&T.parentNode.removeChild(T),x(u,{"clip-path":c}),delete n.clip}}break;case"path":"path"==n.type&&(x(u,{d:g?l.path=t._pathToAbsolute(g):"M0,0"}),n._.dirty=1,n._.arrows&&("startString"in n._.arrows&&m(n,n._.arrows.startString),"endString"in n._.arrows&&m(n,n._.arrows.endString,1)));break;case"width":if(u.setAttribute(d,g),n._.dirty=1,!l.fx)break;d="x",g=l.x;case"x":l.fx&&(g=-l.x-(l.width||0));case"rx":if("rx"==d&&"rect"==n.type)break;case"cx":u.setAttribute(d,g),n.pattern&&y(n),n._.dirty=1;break;case"height":if(u.setAttribute(d,g),n._.dirty=1,!l.fy)break;d="y",g=l.y;case"y":l.fy&&(g=-l.y-(l.height||0));case"ry":if("ry"==d&&"rect"==n.type)break;case"cy":u.setAttribute(d,g),n.pattern&&y(n),n._.dirty=1;break;case"r":"rect"==n.type?x(u,{rx:g,ry:g}):u.setAttribute(d,g),n._.dirty=1;break;case"src":"image"==n.type&&u.setAttributeNS(p,"href",g);break;case"stroke-width":(1!=n._.sx||1!=n._.sy)&&(g/=s(o(n._.sx),o(n._.sy))||1),n.paper._vbSize&&(g*=n.paper._vbSize),u.setAttribute(d,g),l["stroke-dasharray"]&&_(n,l["stroke-dasharray"],a),n._.arrows&&("startString"in n._.arrows&&m(n,n._.arrows.startString),"endString"in n._.arrows&&m(n,n._.arrows.endString,1));break;case"stroke-dasharray":_(n,g,a);break;case"fill":var M=r(g).match(t._ISURL);if(M){B=x("pattern");var F=x("image");B.id=t.createUUID(),x(B,{x:0,y:0,patternUnits:"userSpaceOnUse",height:1,width:1}),x(F,{x:0,y:0,"xlink:href":M[1]}),B.appendChild(F),function(e){t._preload(M[1],function(){var t=this.offsetWidth,r=this.offsetHeight;x(e,{width:t,height:r}),x(F,{width:t,height:r}),n.paper.safari()})}(B),n.paper.defs.appendChild(B),x(u,{fill:"url(#"+B.id+")"}),n.pattern=B,n.pattern&&y(n);break}var L=t.getRGB(g);if(L.error){if(("circle"==n.type||"ellipse"==n.type||"r"!=r(g).charAt())&&v(n,g)){if("opacity"in l||"fill-opacity"in l){var N=t._g.doc.getElementById(u.getAttribute("fill").replace(/^url\(#|\)$/g,c));if(N){var P=N.getElementsByTagName("stop");x(P[P.length-1],{"stop-opacity":("opacity"in l?l.opacity:1)*("fill-opacity"in l?l["fill-opacity"]:1)})}}l.gradient=g,l.fill="none";break}}else delete a.gradient,delete l.gradient,!t.is(l.opacity,"undefined")&&t.is(a.opacity,"undefined")&&x(u,{opacity:l.opacity}),!t.is(l["fill-opacity"],"undefined")&&t.is(a["fill-opacity"],"undefined")&&x(u,{"fill-opacity":l["fill-opacity"]});L[e]("opacity")&&x(u,{"fill-opacity":L.opacity>1?L.opacity/100:L.opacity});case"stroke":L=t.getRGB(g),u.setAttribute(d,L.hex),"stroke"==d&&L[e]("opacity")&&x(u,{"stroke-opacity":L.opacity>1?L.opacity/100:L.opacity}),"stroke"==d&&n._.arrows&&("startString"in n._.arrows&&m(n,n._.arrows.startString),"endString"in n._.arrows&&m(n,n._.arrows.endString,1));break;case"gradient":("circle"==n.type||"ellipse"==n.type||"r"!=r(g).charAt())&&v(n,g);break;case"opacity":l.gradient&&!l[e]("stroke-opacity")&&x(u,{"stroke-opacity":g>1?g/100:g});case"fill-opacity":if(l.gradient){N=t._g.doc.getElementById(u.getAttribute("fill").replace(/^url\(#|\)$/g,c)),N&&(P=N.getElementsByTagName("stop"),x(P[P.length-1],{"stop-opacity":g}));break}default:"font-size"==d&&(g=i(g,10)+"px");var E=d.replace(/(\-.)/g,function(t){return t.substring(1).toUpperCase()});u.style[E]=g,n._.dirty=1,u.setAttribute(d,g)}}C(n,a),u.style.visibility=f},k=1.2,C=function(n,a){if("text"==n.type&&(a[e]("text")||a[e]("font")||a[e]("font-size")||a[e]("x")||a[e]("y"))){var s=n.attrs,o=n.node,u=o.firstChild?i(t._g.doc.defaultView.getComputedStyle(o.firstChild,c).getPropertyValue("font-size"),10):10;if(a[e]("text")){for(s.text=a.text;o.firstChild;)o.removeChild(o.firstChild);for(var h,l=r(a.text).split("\n"),f=[],p=0,d=l.length;d>p;p++)h=x("tspan"),p&&x(h,{dy:u*k,x:s.x}),h.appendChild(t._g.doc.createTextNode(l[p])),o.appendChild(h),f[p]=h}else for(f=o.getElementsByTagName("tspan"),p=0,d=f.length;d>p;p++)p?x(f[p],{dy:u*k,x:s.x}):x(f[0],{dy:0});x(o,{x:s.x,y:s.y}),n._.dirty=1;var g=n._getBBox(),v=s.y-(g.y+g.height/2);v&&t.is(v,"finite")&&x(f[0],{dy:v})}},B=function(e,r){this[0]=this.node=e,e.raphael=!0,this.id=t._oid++,e.raphaelid=this.id,this.matrix=t.matrix(),this.realPath=null,this.paper=r,this.attrs=this.attrs||{},this._={transform:[],sx:1,sy:1,deg:0,dx:0,dy:0,dirty:1},!r.bottom&&(r.bottom=this),this.prev=r.top,r.top&&(r.top.next=this),r.top=this,this.next=null},S=t.el;B.prototype=S,S.constructor=B,t._engine.path=function(t,e){var r=x("path");e.canvas&&e.canvas.appendChild(r);var n=new B(r,e);return n.type="path",w(n,{fill:"none",stroke:"#000",path:t}),n},S.rotate=function(t,e,i){if(this.removed)return this;if(t=r(t).split(h),t.length-1&&(e=n(t[1]),i=n(t[2])),t=n(t[0]),null==i&&(e=i),null==e||null==i){var a=this.getBBox(1);e=a.x+a.width/2,i=a.y+a.height/2}return this.transform(this._.transform.concat([["r",t,e,i]])),this},S.scale=function(t,e,i,a){if(this.removed)return this;if(t=r(t).split(h),t.length-1&&(e=n(t[1]),i=n(t[2]),a=n(t[3])),t=n(t[0]),null==e&&(e=t),null==a&&(i=a),null==i||null==a)var s=this.getBBox(1);return i=null==i?s.x+s.width/2:i,a=null==a?s.y+s.height/2:a,this.transform(this._.transform.concat([["s",t,e,i,a]])),this},S.translate=function(t,e){return this.removed?this:(t=r(t).split(h),t.length-1&&(e=n(t[1])),t=n(t[0])||0,e=+e||0,this.transform(this._.transform.concat([["t",t,e]])),this)},S.transform=function(r){var n=this._;if(null==r)return n.transform;if(t._extractTransform(this,r),this.clip&&x(this.clip,{transform:this.matrix.invert()}),this.pattern&&y(this),this.node&&x(this.node,{transform:this.matrix}),1!=n.sx||1!=n.sy){var i=this.attrs[e]("stroke-width")?this.attrs["stroke-width"]:1;this.attr({"stroke-width":i})}return this},S.hide=function(){return!this.removed&&this.paper.safari(this.node.style.display="none"),this},S.show=function(){return!this.removed&&this.paper.safari(this.node.style.display=""),this},S.remove=function(){if(!this.removed&&this.node.parentNode){var e=this.paper;e.__set__&&e.__set__.exclude(this),l.unbind("raphael.*.*."+this.id),this.gradient&&e.defs.removeChild(this.gradient),t._tear(this,e),"a"==this.node.parentNode.tagName.toLowerCase()?this.node.parentNode.parentNode.removeChild(this.node.parentNode):this.node.parentNode.removeChild(this.node);for(var r in this)this[r]="function"==typeof this[r]?t._removedFactory(r):null;this.removed=!0}},S._getBBox=function(){if("none"==this.node.style.display){this.show();var t=!0}var e={};try{e=this.node.getBBox()}catch(r){}finally{e=e||{}}return t&&this.hide(),e},S.attr=function(r,n){if(this.removed)return this;if(null==r){var i={};for(var a in this.attrs)this.attrs[e](a)&&(i[a]=this.attrs[a]);return i.gradient&&"none"==i.fill&&(i.fill=i.gradient)&&delete i.gradient,i.transform=this._.transform,i}if(null==n&&t.is(r,"string")){if("fill"==r&&"none"==this.attrs.fill&&this.attrs.gradient)return this.attrs.gradient;if("transform"==r)return this._.transform;for(var s=r.split(h),o={},u=0,c=s.length;c>u;u++)r=s[u],o[r]=r in this.attrs?this.attrs[r]:t.is(this.paper.customAttributes[r],"function")?this.paper.customAttributes[r].def:t._availableAttrs[r];return c-1?o:o[s[0]]}if(null==n&&t.is(r,"array")){for(o={},u=0,c=r.length;c>u;u++)o[r[u]]=this.attr(r[u]);return o}if(null!=n){var f={};f[r]=n}else null!=r&&t.is(r,"object")&&(f=r);for(var p in f)l("raphael.attr."+p+"."+this.id,this,f[p]);for(p in this.paper.customAttributes)if(this.paper.customAttributes[e](p)&&f[e](p)&&t.is(this.paper.customAttributes[p],"function")){var d=this.paper.customAttributes[p].apply(this,[].concat(f[p]));this.attrs[p]=f[p];for(var g in d)d[e](g)&&(f[g]=d[g])}return w(this,f),this},S.toFront=function(){if(this.removed)return this;"a"==this.node.parentNode.tagName.toLowerCase()?this.node.parentNode.parentNode.appendChild(this.node.parentNode):this.node.parentNode.appendChild(this.node);var e=this.paper;return e.top!=this&&t._tofront(this,e),this},S.toBack=function(){if(this.removed)return this;var e=this.node.parentNode;return"a"==e.tagName.toLowerCase()?e.parentNode.insertBefore(this.node.parentNode,this.node.parentNode.parentNode.firstChild):e.firstChild!=this.node&&e.insertBefore(this.node,this.node.parentNode.firstChild),t._toback(this,this.paper),this.paper,this},S.insertAfter=function(e){if(this.removed)return this;var r=e.node||e[e.length-1].node;return r.nextSibling?r.parentNode.insertBefore(this.node,r.nextSibling):r.parentNode.appendChild(this.node),t._insertafter(this,e,this.paper),this},S.insertBefore=function(e){if(this.removed)return this;var r=e.node||e[0].node;return r.parentNode.insertBefore(this.node,r),t._insertbefore(this,e,this.paper),this},S.blur=function(e){var r=this;if(0!==+e){var n=x("filter"),i=x("feGaussianBlur");r.attrs.blur=e,n.id=t.createUUID(),x(i,{stdDeviation:+e||1.5}),n.appendChild(i),r.paper.defs.appendChild(n),r._blur=n,x(r.node,{filter:"url(#"+n.id+")"})}else r._blur&&(r._blur.parentNode.removeChild(r._blur),delete r._blur,delete r.attrs.blur),r.node.removeAttribute("filter")},t._engine.circle=function(t,e,r,n){var i=x("circle");t.canvas&&t.canvas.appendChild(i);var a=new B(i,t);return a.attrs={cx:e,cy:r,r:n,fill:"none",stroke:"#000"},a.type="circle",x(i,a.attrs),a},t._engine.rect=function(t,e,r,n,i,a){var s=x("rect");t.canvas&&t.canvas.appendChild(s);var o=new B(s,t);return o.attrs={x:e,y:r,width:n,height:i,r:a||0,rx:a||0,ry:a||0,fill:"none",stroke:"#000"},o.type="rect",x(s,o.attrs),o},t._engine.ellipse=function(t,e,r,n,i){var a=x("ellipse");t.canvas&&t.canvas.appendChild(a);var s=new B(a,t);return s.attrs={cx:e,cy:r,rx:n,ry:i,fill:"none",stroke:"#000"},s.type="ellipse",x(a,s.attrs),s},t._engine.image=function(t,e,r,n,i,a){var s=x("image");x(s,{x:r,y:n,width:i,height:a,preserveAspectRatio:"none"}),s.setAttributeNS(p,"href",e),t.canvas&&t.canvas.appendChild(s);var o=new B(s,t);return o.attrs={x:r,y:n,width:i,height:a,src:e},o.type="image",o},t._engine.text=function(e,r,n,i){var a=x("text");e.canvas&&e.canvas.appendChild(a);var s=new B(a,e);return s.attrs={x:r,y:n,"text-anchor":"middle",text:i,font:t._availableAttrs.font,stroke:"none",fill:"#000"},s.type="text",w(s,s.attrs),s},t._engine.setSize=function(t,e){return this.width=t||this.width,this.height=e||this.height,this.canvas.setAttribute("width",this.width),this.canvas.setAttribute("height",this.height),this._viewBox&&this.setViewBox.apply(this,this._viewBox),this},t._engine.create=function(){var e=t._getContainer.apply(0,arguments),r=e&&e.container,n=e.x,i=e.y,a=e.width,s=e.height;if(!r)throw Error("SVG container not found.");var o,u=x("svg"),h="overflow:hidden;";return n=n||0,i=i||0,a=a||512,s=s||342,x(u,{height:s,version:1.1,width:a,xmlns:"http://www.w3.org/2000/svg"}),1==r?(u.style.cssText=h+"position:absolute;left:"+n+"px;top:"+i+"px",t._g.doc.body.appendChild(u),o=1):(u.style.cssText=h+"position:relative",r.firstChild?r.insertBefore(u,r.firstChild):r.appendChild(u)),r=new t._Paper,r.width=a,r.height=s,r.canvas=u,r.clear(),r._left=r._top=0,o&&(r.renderfix=function(){}),r.renderfix(),r},t._engine.setViewBox=function(t,e,r,n,i){l("raphael.setViewBox",this,this._viewBox,[t,e,r,n,i]);var a,o,u=s(r/this.width,n/this.height),h=this.top,c=i?"meet":"xMinYMin";for(null==t?(this._vbSize&&(u=1),delete this._vbSize,a="0 0 "+this.width+f+this.height):(this._vbSize=u,a=t+f+e+f+r+f+n),x(this.canvas,{viewBox:a,preserveAspectRatio:c});u&&h;)o="stroke-width"in h.attrs?h.attrs["stroke-width"]:1,h.attr({"stroke-width":o}),h._.dirty=1,h._.dirtyT=1,h=h.prev;return this._viewBox=[t,e,r,n,!!i],this},t.prototype.renderfix=function(){var t,e=this.canvas,r=e.style;try{t=e.getScreenCTM()||e.createSVGMatrix()}catch(n){t=e.createSVGMatrix()}var i=-t.e%1,a=-t.f%1;(i||a)&&(i&&(this._left=(this._left+i)%1,r.left=this._left+"px"),a&&(this._top=(this._top+a)%1,r.top=this._top+"px"))},t.prototype.clear=function(){t.eve("raphael.clear",this);for(var e=this.canvas;e.firstChild;)e.removeChild(e.firstChild);this.bottom=this.top=null,(this.desc=x("desc")).appendChild(t._g.doc.createTextNode("Created with Raphaël "+t.version)),e.appendChild(this.desc),e.appendChild(this.defs=x("defs"))},t.prototype.remove=function(){l("raphael.remove",this),this.canvas.parentNode&&this.canvas.parentNode.removeChild(this.canvas);for(var e in this)this[e]="function"==typeof this[e]?t._removedFactory(e):null};var A=t.st;for(var T in S)S[e](T)&&!A[e](T)&&(A[T]=function(t){return function(){var e=arguments;return this.forEach(function(r){r[t].apply(r,e)})}}(T))}});(function(t,e){"function"==typeof define&&define.amd?require(["raphael"],e):t.Raphael&&e(t.Raphael)})(this,function(t){if(t.vml){var e="hasOwnProperty",r=String,i=parseFloat,n=Math,a=n.round,s=n.max,o=n.min,l=n.abs,h="fill",u=/[, ]+/,c=t.eve,f=" progid:DXImageTransform.Microsoft",p=" ",d="",g={M:"m",L:"l",C:"c",Z:"x",m:"t",l:"r",c:"v",z:"x"},x=/([clmz]),?([^clmz]*)/gi,v=/ progid:\S+Blur\([^\)]+\)/g,y=/-?[^,\s-]+/g,m="position:absolute;left:0;top:0;width:1px;height:1px",b=21600,_={path:1,rect:1,image:1},w={circle:1,ellipse:1},k=function(e){var i=/[ahqstv]/gi,n=t._pathToAbsolute;if(r(e).match(i)&&(n=t._path2curve),i=/[clmz]/g,n==t._pathToAbsolute&&!r(e).match(i)){var s=r(e).replace(x,function(t,e,r){var i=[],n="m"==e.toLowerCase(),s=g[e];return r.replace(y,function(t){n&&2==i.length&&(s+=i+g["m"==e?"l":"L"],i=[]),i.push(a(t*b))}),s+i});return s}var o,l,h=n(e);s=[];for(var u=0,c=h.length;c>u;u++){o=h[u],l=h[u][0].toLowerCase(),"z"==l&&(l="x");for(var f=1,v=o.length;v>f;f++)l+=a(o[f]*b)+(f!=v-1?",":d);s.push(l)}return s.join(p)},C=function(e,r,i){var n=t.matrix();return n.rotate(-e,.5,.5),{dx:n.x(r,i),dy:n.y(r,i)}},B=function(t,e,r,i,n,a){var s=t._,o=t.matrix,u=s.fillpos,c=t.node,f=c.style,d=1,g="",x=b/e,v=b/r;if(f.visibility="hidden",e&&r){if(c.coordsize=l(x)+p+l(v),f.rotation=a*(0>e*r?-1:1),a){var y=C(a,i,n);i=y.dx,n=y.dy}if(0>e&&(g+="x"),0>r&&(g+=" y")&&(d=-1),f.flip=g,c.coordorigin=i*-x+p+n*-v,u||s.fillsize){var m=c.getElementsByTagName(h);m=m&&m[0],c.removeChild(m),u&&(y=C(a,o.x(u[0],u[1]),o.y(u[0],u[1])),m.position=y.dx*d+p+y.dy*d),s.fillsize&&(m.size=s.fillsize[0]*l(e)+p+s.fillsize[1]*l(r)),c.appendChild(m)}f.visibility="visible"}};t.toString=function(){return"Your browser doesn’t support SVG. Falling down to VML.\nYou are running Raphaël "+this.version};var S=function(t,e,i){for(var n=r(e).toLowerCase().split("-"),a=i?"end":"start",s=n.length,o="classic",l="medium",h="medium";s--;)switch(n[s]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":o=n[s];break;case"wide":case"narrow":h=n[s];break;case"long":case"short":l=n[s]}var u=t.node.getElementsByTagName("stroke")[0];u[a+"arrow"]=o,u[a+"arrowlength"]=l,u[a+"arrowwidth"]=h},A=function(n,l){n.attrs=n.attrs||{};var c=n.node,f=n.attrs,g=c.style,x=_[n.type]&&(l.x!=f.x||l.y!=f.y||l.width!=f.width||l.height!=f.height||l.cx!=f.cx||l.cy!=f.cy||l.rx!=f.rx||l.ry!=f.ry||l.r!=f.r),v=w[n.type]&&(f.cx!=l.cx||f.cy!=l.cy||f.r!=l.r||f.rx!=l.rx||f.ry!=l.ry),y=n;for(var m in l)l[e](m)&&(f[m]=l[m]);if(x&&(f.path=t._getPath[n.type](n),n._.dirty=1),l.href&&(c.href=l.href),l.title&&(c.title=l.title),l.target&&(c.target=l.target),l.cursor&&(g.cursor=l.cursor),"blur"in l&&n.blur(l.blur),(l.path&&"path"==n.type||x)&&(c.path=k(~r(f.path).toLowerCase().indexOf("r")?t._pathToAbsolute(f.path):f.path),"image"==n.type&&(n._.fillpos=[f.x,f.y],n._.fillsize=[f.width,f.height],B(n,1,1,0,0,0))),"transform"in l&&n.transform(l.transform),v){var C=+f.cx,A=+f.cy,N=+f.rx||+f.r||0,E=+f.ry||+f.r||0;c.path=t.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x",a((C-N)*b),a((A-E)*b),a((C+N)*b),a((A+E)*b),a(C*b))}if("clip-rect"in l){var M=r(l["clip-rect"]).split(u);if(4==M.length){M[2]=+M[2]+ +M[0],M[3]=+M[3]+ +M[1];var z=c.clipRect||t._g.doc.createElement("div"),F=z.style;F.clip=t.format("rect({1}px {2}px {3}px {0}px)",M),c.clipRect||(F.position="absolute",F.top=0,F.left=0,F.width=n.paper.width+"px",F.height=n.paper.height+"px",c.parentNode.insertBefore(z,c),z.appendChild(c),c.clipRect=z)}l["clip-rect"]||c.clipRect&&(c.clipRect.style.clip="auto")}if(n.textpath){var R=n.textpath.style;l.font&&(R.font=l.font),l["font-family"]&&(R.fontFamily='"'+l["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g,d)+'"'),l["font-size"]&&(R.fontSize=l["font-size"]),l["font-weight"]&&(R.fontWeight=l["font-weight"]),l["font-style"]&&(R.fontStyle=l["font-style"])}if("arrow-start"in l&&S(y,l["arrow-start"]),"arrow-end"in l&&S(y,l["arrow-end"],1),null!=l.opacity||null!=l["stroke-width"]||null!=l.fill||null!=l.src||null!=l.stroke||null!=l["stroke-width"]||null!=l["stroke-opacity"]||null!=l["fill-opacity"]||null!=l["stroke-dasharray"]||null!=l["stroke-miterlimit"]||null!=l["stroke-linejoin"]||null!=l["stroke-linecap"]){var P=c.getElementsByTagName(h),I=!1;if(P=P&&P[0],!P&&(I=P=L(h)),"image"==n.type&&l.src&&(P.src=l.src),l.fill&&(P.on=!0),(null==P.on||"none"==l.fill||null===l.fill)&&(P.on=!1),P.on&&l.fill){var j=r(l.fill).match(t._ISURL);if(j){P.parentNode==c&&c.removeChild(P),P.rotate=!0,P.src=j[1],P.type="tile";var q=n.getBBox(1);P.position=q.x+p+q.y,n._.fillpos=[q.x,q.y],t._preload(j[1],function(){n._.fillsize=[this.offsetWidth,this.offsetHeight]})}else P.color=t.getRGB(l.fill).hex,P.src=d,P.type="solid",t.getRGB(l.fill).error&&(y.type in{circle:1,ellipse:1}||"r"!=r(l.fill).charAt())&&T(y,l.fill,P)&&(f.fill="none",f.gradient=l.fill,P.rotate=!1)}if("fill-opacity"in l||"opacity"in l){var D=((+f["fill-opacity"]+1||2)-1)*((+f.opacity+1||2)-1)*((+t.getRGB(l.fill).o+1||2)-1);D=o(s(D,0),1),P.opacity=D,P.src&&(P.color="none")}c.appendChild(P);var O=c.getElementsByTagName("stroke")&&c.getElementsByTagName("stroke")[0],V=!1;!O&&(V=O=L("stroke")),(l.stroke&&"none"!=l.stroke||l["stroke-width"]||null!=l["stroke-opacity"]||l["stroke-dasharray"]||l["stroke-miterlimit"]||l["stroke-linejoin"]||l["stroke-linecap"])&&(O.on=!0),("none"==l.stroke||null===l.stroke||null==O.on||0==l.stroke||0==l["stroke-width"])&&(O.on=!1);var Y=t.getRGB(l.stroke);O.on&&l.stroke&&(O.color=Y.hex),D=((+f["stroke-opacity"]+1||2)-1)*((+f.opacity+1||2)-1)*((+Y.o+1||2)-1);var G=.75*(i(l["stroke-width"])||1);if(D=o(s(D,0),1),null==l["stroke-width"]&&(G=f["stroke-width"]),l["stroke-width"]&&(O.weight=G),G&&1>G&&(D*=G)&&(O.weight=1),O.opacity=D,l["stroke-linejoin"]&&(O.joinstyle=l["stroke-linejoin"]||"miter"),O.miterlimit=l["stroke-miterlimit"]||8,l["stroke-linecap"]&&(O.endcap="butt"==l["stroke-linecap"]?"flat":"square"==l["stroke-linecap"]?"square":"round"),l["stroke-dasharray"]){var W={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"};O.dashstyle=W[e](l["stroke-dasharray"])?W[l["stroke-dasharray"]]:d}V&&c.appendChild(O)}if("text"==y.type){y.paper.canvas.style.display=d;var X=y.paper.span,H=100,U=f.font&&f.font.match(/\d+(?:\.\d*)?(?=px)/);g=X.style,f.font&&(g.font=f.font),f["font-family"]&&(g.fontFamily=f["font-family"]),f["font-weight"]&&(g.fontWeight=f["font-weight"]),f["font-style"]&&(g.fontStyle=f["font-style"]),U=i(f["font-size"]||U&&U[0])||10,g.fontSize=U*H+"px",y.textpath.string&&(X.innerHTML=r(y.textpath.string).replace(/</g,"&#60;").replace(/&/g,"&#38;").replace(/\n/g,"<br>"));var $=X.getBoundingClientRect();y.W=f.w=($.right-$.left)/H,y.H=f.h=($.bottom-$.top)/H,y.X=f.x,y.Y=f.y+y.H/2,("x"in l||"y"in l)&&(y.path.v=t.format("m{0},{1}l{2},{1}",a(f.x*b),a(f.y*b),a(f.x*b)+1));for(var Z=["x","y","text","font","font-family","font-weight","font-style","font-size"],Q=0,J=Z.length;J>Q;Q++)if(Z[Q]in l){y._.dirty=1;break}switch(f["text-anchor"]){case"start":y.textpath.style["v-text-align"]="left",y.bbx=y.W/2;break;case"end":y.textpath.style["v-text-align"]="right",y.bbx=-y.W/2;break;default:y.textpath.style["v-text-align"]="center",y.bbx=0}y.textpath.style["v-text-kern"]=!0}},T=function(e,a,s){e.attrs=e.attrs||{};var o=(e.attrs,Math.pow),l="linear",h=".5 .5";if(e.attrs.gradient=a,a=r(a).replace(t._radial_gradient,function(t,e,r){return l="radial",e&&r&&(e=i(e),r=i(r),o(e-.5,2)+o(r-.5,2)>.25&&(r=n.sqrt(.25-o(e-.5,2))*(2*(r>.5)-1)+.5),h=e+p+r),d}),a=a.split(/\s*\-\s*/),"linear"==l){var u=a.shift();if(u=-i(u),isNaN(u))return null}var c=t._parseDots(a);if(!c)return null;if(e=e.shape||e.node,c.length){e.removeChild(s),s.on=!0,s.method="none",s.color=c[0].color,s.color2=c[c.length-1].color;for(var f=[],g=0,x=c.length;x>g;g++)c[g].offset&&f.push(c[g].offset+p+c[g].color);s.colors=f.length?f.join():"0% "+s.color,"radial"==l?(s.type="gradientTitle",s.focus="100%",s.focussize="0 0",s.focusposition=h,s.angle=0):(s.type="gradient",s.angle=(270-u)%360),e.appendChild(s)}return 1},N=function(e,r){this[0]=this.node=e,e.raphael=!0,this.id=t._oid++,e.raphaelid=this.id,this.X=0,this.Y=0,this.attrs={},this.paper=r,this.matrix=t.matrix(),this._={transform:[],sx:1,sy:1,dx:0,dy:0,deg:0,dirty:1,dirtyT:1},!r.bottom&&(r.bottom=this),this.prev=r.top,r.top&&(r.top.next=this),r.top=this,this.next=null},E=t.el;N.prototype=E,E.constructor=N,E.transform=function(e){if(null==e)return this._.transform;var i,n=this.paper._viewBoxShift,a=n?"s"+[n.scale,n.scale]+"-1-1t"+[n.dx,n.dy]:d;n&&(i=e=r(e).replace(/\.{3}|\u2026/g,this._.transform||d)),t._extractTransform(this,a+e);var s,o=this.matrix.clone(),l=this.skew,h=this.node,u=~r(this.attrs.fill).indexOf("-"),c=!r(this.attrs.fill).indexOf("url(");if(o.translate(-.5,-.5),c||u||"image"==this.type)if(l.matrix="1 0 0 1",l.offset="0 0",s=o.split(),u&&s.noRotation||!s.isSimple){h.style.filter=o.toFilter();var f=this.getBBox(),g=this.getBBox(1),x=f.x-g.x,v=f.y-g.y;h.coordorigin=x*-b+p+v*-b,B(this,1,1,x,v,0)}else h.style.filter=d,B(this,s.scalex,s.scaley,s.dx,s.dy,s.rotate);else h.style.filter=d,l.matrix=r(o),l.offset=o.offset();return i&&(this._.transform=i),this},E.rotate=function(t,e,n){if(this.removed)return this;if(null!=t){if(t=r(t).split(u),t.length-1&&(e=i(t[1]),n=i(t[2])),t=i(t[0]),null==n&&(e=n),null==e||null==n){var a=this.getBBox(1);e=a.x+a.width/2,n=a.y+a.height/2}return this._.dirtyT=1,this.transform(this._.transform.concat([["r",t,e,n]])),this}},E.translate=function(t,e){return this.removed?this:(t=r(t).split(u),t.length-1&&(e=i(t[1])),t=i(t[0])||0,e=+e||0,this._.bbox&&(this._.bbox.x+=t,this._.bbox.y+=e),this.transform(this._.transform.concat([["t",t,e]])),this)},E.scale=function(t,e,n,a){if(this.removed)return this;if(t=r(t).split(u),t.length-1&&(e=i(t[1]),n=i(t[2]),a=i(t[3]),isNaN(n)&&(n=null),isNaN(a)&&(a=null)),t=i(t[0]),null==e&&(e=t),null==a&&(n=a),null==n||null==a)var s=this.getBBox(1);return n=null==n?s.x+s.width/2:n,a=null==a?s.y+s.height/2:a,this.transform(this._.transform.concat([["s",t,e,n,a]])),this._.dirtyT=1,this},E.hide=function(){return!this.removed&&(this.node.style.display="none"),this},E.show=function(){return!this.removed&&(this.node.style.display=d),this},E._getBBox=function(){return this.removed?{}:{x:this.X+(this.bbx||0)-this.W/2,y:this.Y-this.H,width:this.W,height:this.H}},E.remove=function(){if(!this.removed&&this.node.parentNode){this.paper.__set__&&this.paper.__set__.exclude(this),t.eve.unbind("raphael.*.*."+this.id),t._tear(this,this.paper),this.node.parentNode.removeChild(this.node),this.shape&&this.shape.parentNode.removeChild(this.shape);for(var e in this)this[e]="function"==typeof this[e]?t._removedFactory(e):null;this.removed=!0}},E.attr=function(r,i){if(this.removed)return this;if(null==r){var n={};for(var a in this.attrs)this.attrs[e](a)&&(n[a]=this.attrs[a]);return n.gradient&&"none"==n.fill&&(n.fill=n.gradient)&&delete n.gradient,n.transform=this._.transform,n}if(null==i&&t.is(r,"string")){if(r==h&&"none"==this.attrs.fill&&this.attrs.gradient)return this.attrs.gradient;for(var s=r.split(u),o={},l=0,f=s.length;f>l;l++)r=s[l],o[r]=r in this.attrs?this.attrs[r]:t.is(this.paper.customAttributes[r],"function")?this.paper.customAttributes[r].def:t._availableAttrs[r];return f-1?o:o[s[0]]}if(this.attrs&&null==i&&t.is(r,"array")){for(o={},l=0,f=r.length;f>l;l++)o[r[l]]=this.attr(r[l]);return o}var p;null!=i&&(p={},p[r]=i),null==i&&t.is(r,"object")&&(p=r);for(var d in p)c("raphael.attr."+d+"."+this.id,this,p[d]);if(p){for(d in this.paper.customAttributes)if(this.paper.customAttributes[e](d)&&p[e](d)&&t.is(this.paper.customAttributes[d],"function")){var g=this.paper.customAttributes[d].apply(this,[].concat(p[d]));this.attrs[d]=p[d];for(var x in g)g[e](x)&&(p[x]=g[x])}p.text&&"text"==this.type&&(this.textpath.string=p.text),A(this,p)}return this},E.toFront=function(){return!this.removed&&this.node.parentNode.appendChild(this.node),this.paper&&this.paper.top!=this&&t._tofront(this,this.paper),this},E.toBack=function(){return this.removed?this:(this.node.parentNode.firstChild!=this.node&&(this.node.parentNode.insertBefore(this.node,this.node.parentNode.firstChild),t._toback(this,this.paper)),this)},E.insertAfter=function(e){return this.removed?this:(e.constructor==t.st.constructor&&(e=e[e.length-1]),e.node.nextSibling?e.node.parentNode.insertBefore(this.node,e.node.nextSibling):e.node.parentNode.appendChild(this.node),t._insertafter(this,e,this.paper),this)},E.insertBefore=function(e){return this.removed?this:(e.constructor==t.st.constructor&&(e=e[0]),e.node.parentNode.insertBefore(this.node,e.node),t._insertbefore(this,e,this.paper),this)},E.blur=function(e){var r=this.node.runtimeStyle,i=r.filter;i=i.replace(v,d),0!==+e?(this.attrs.blur=e,r.filter=i+p+f+".Blur(pixelradius="+(+e||1.5)+")",r.margin=t.format("-{0}px 0 0 -{0}px",a(+e||1.5))):(r.filter=i,r.margin=0,delete this.attrs.blur)},t._engine.path=function(t,e){var r=L("shape");r.style.cssText=m,r.coordsize=b+p+b,r.coordorigin=e.coordorigin;var i=new N(r,e),n={fill:"none",stroke:"#000"};t&&(n.path=t),i.type="path",i.path=[],i.Path=d,A(i,n),e.canvas.appendChild(r);var a=L("skew");return a.on=!0,r.appendChild(a),i.skew=a,i.transform(d),i},t._engine.rect=function(e,r,i,n,a,s){var o=t._rectPath(r,i,n,a,s),l=e.path(o),h=l.attrs;return l.X=h.x=r,l.Y=h.y=i,l.W=h.width=n,l.H=h.height=a,h.r=s,h.path=o,l.type="rect",l},t._engine.ellipse=function(t,e,r,i,n){var a=t.path();return a.attrs,a.X=e-i,a.Y=r-n,a.W=2*i,a.H=2*n,a.type="ellipse",A(a,{cx:e,cy:r,rx:i,ry:n}),a},t._engine.circle=function(t,e,r,i){var n=t.path();return n.attrs,n.X=e-i,n.Y=r-i,n.W=n.H=2*i,n.type="circle",A(n,{cx:e,cy:r,r:i}),n},t._engine.image=function(e,r,i,n,a,s){var o=t._rectPath(i,n,a,s),l=e.path(o).attr({stroke:"none"}),u=l.attrs,c=l.node,f=c.getElementsByTagName(h)[0];return u.src=r,l.X=u.x=i,l.Y=u.y=n,l.W=u.width=a,l.H=u.height=s,u.path=o,l.type="image",f.parentNode==c&&c.removeChild(f),f.rotate=!0,f.src=r,f.type="tile",l._.fillpos=[i,n],l._.fillsize=[a,s],c.appendChild(f),B(l,1,1,0,0,0),l},t._engine.text=function(e,i,n,s){var o=L("shape"),l=L("path"),h=L("textpath");i=i||0,n=n||0,s=s||"",l.v=t.format("m{0},{1}l{2},{1}",a(i*b),a(n*b),a(i*b)+1),l.textpathok=!0,h.string=r(s),h.on=!0,o.style.cssText=m,o.coordsize=b+p+b,o.coordorigin="0 0";var u=new N(o,e),c={fill:"#000",stroke:"none",font:t._availableAttrs.font,text:s};u.shape=o,u.path=l,u.textpath=h,u.type="text",u.attrs.text=r(s),u.attrs.x=i,u.attrs.y=n,u.attrs.w=1,u.attrs.h=1,A(u,c),o.appendChild(h),o.appendChild(l),e.canvas.appendChild(o);var f=L("skew");return f.on=!0,o.appendChild(f),u.skew=f,u.transform(d),u},t._engine.setSize=function(e,r){var i=this.canvas.style;return this.width=e,this.height=r,e==+e&&(e+="px"),r==+r&&(r+="px"),i.width=e,i.height=r,i.clip="rect(0 "+e+" "+r+" 0)",this._viewBox&&t._engine.setViewBox.apply(this,this._viewBox),this},t._engine.setViewBox=function(e,r,i,n,a){t.eve("raphael.setViewBox",this,this._viewBox,[e,r,i,n,a]);var o,l,h=this.width,u=this.height,c=1/s(i/h,n/u);return a&&(o=u/n,l=h/i,h>i*o&&(e-=(h-i*o)/2/o),u>n*l&&(r-=(u-n*l)/2/l)),this._viewBox=[e,r,i,n,!!a],this._viewBoxShift={dx:-e,dy:-r,scale:c},this.forEach(function(t){t.transform("...")}),this};var L;t._engine.initWin=function(t){var e=t.document;e.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)");try{!e.namespaces.rvml&&e.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),L=function(t){return e.createElement("<rvml:"+t+' class="rvml">')}}catch(r){L=function(t){return e.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},t._engine.initWin(t._g.win),t._engine.create=function(){var e=t._getContainer.apply(0,arguments),r=e.container,i=e.height,n=e.width,a=e.x,s=e.y;if(!r)throw Error("VML container not found.");var o=new t._Paper,l=o.canvas=t._g.doc.createElement("div"),h=l.style;return a=a||0,s=s||0,n=n||512,i=i||342,o.width=n,o.height=i,n==+n&&(n+="px"),i==+i&&(i+="px"),o.coordsize=1e3*b+p+1e3*b,o.coordorigin="0 0",o.span=t._g.doc.createElement("span"),o.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",l.appendChild(o.span),h.cssText=t.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",n,i),1==r?(t._g.doc.body.appendChild(l),h.left=a+"px",h.top=s+"px",h.position="absolute"):r.firstChild?r.insertBefore(l,r.firstChild):r.appendChild(l),o.renderfix=function(){},o},t.prototype.clear=function(){t.eve("raphael.clear",this),this.canvas.innerHTML=d,this.span=t._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},t.prototype.remove=function(){t.eve("raphael.remove",this),this.canvas.parentNode.removeChild(this.canvas);for(var e in this)this[e]="function"==typeof this[e]?t._removedFactory(e):null;return!0};var M=t.st;for(var z in E)E[e](z)&&!M[e](z)&&(M[z]=function(t){return function(){var e=arguments;return this.forEach(function(r){r[t].apply(r,e)})}}(z))}});
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable_background="new 0 0 960 671" height="671px" pretty_print="False" style="stroke-linejoin: round; stroke:#000; fill: none;" version="1.1" viewBox="0 0 960 671" width="960px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"><![CDATA[path { fill-rule: evenodd; }]]></style></defs><metadata><views><view h="671.704869341" padding="0.02" w="960"><proj dist="1.1" id="satellite" lat0="48" lon0="-2" tilt="-3" up="25"/><bbox h="437.22" w="625.81" x="765.46" y="437.22"/></view></views></metadata><g class="" id="countries"><path d="M160.19,542.62L160.92,541.99L160.92,541.00L160.67,540.53L159.63,540.96L158.71,542.06L159.27,542.72L160.19,542.62Z M159.62,538.64L159.94,537.99L159.75,537.58L159.60,537.40L159.43,537.04L158.99,536.78L158.58,537.48L158.37,538.61L158.78,539.10L159.62,538.64Z M550.82,604.49L549.19,603.97L546.92,604.30L543.24,605.81L541.02,606.28L539.22,605.79L539.53,605.52L540.04,604.98L540.36,604.74L533.01,604.75L529.20,605.63L526.14,607.51L527.74,607.36L529.09,607.41L531.86,608.16L532.52,608.74L534.09,611.00L534.27,611.74L540.49,620.62L542.71,622.22L551.47,623.31L551.94,622.96L552.54,621.97L553.55,619.98L553.96,619.59L554.60,619.31L557.30,618.63L558.65,618.60L561.60,618.96L561.95,618.83L562.23,618.66L562.50,618.57L562.83,618.69L563.19,618.01L562.75,615.59L562.59,615.45L561.92,615.35L561.76,615.21L561.85,614.95L562.34,614.22L562.42,613.97L561.86,613.11L561.20,612.71L559.46,612.09L550.82,604.49Z M576.37,612.63L576.06,612.14L575.77,611.26L575.56,610.83L575.85,610.27L576.64,610.12L577.14,609.73L577.26,609.12L576.86,608.37L576.00,607.99L572.81,609.89L571.00,609.83L570.67,610.45L576.01,613.30L576.37,612.63Z M340.23,484.41L340.87,483.44L341.13,482.90L341.25,482.54L341.37,481.86L340.91,481.88L340.00,482.78L339.34,483.86L339.50,484.61L340.23,484.41Z M731.34,608.49L732.24,607.56L732.21,606.00L731.41,604.18L730.90,603.42L730.39,602.86L723.18,597.37L722.20,597.25L721.47,597.61L719.42,599.73L719.55,601.05L719.91,602.63L720.62,604.06L721.75,604.98L729.37,608.46L731.34,608.49Z M455.86,332.66L455.35,332.17L452.94,332.54L452.59,332.97L452.75,334.43L453.03,334.69L454.93,335.19L455.40,335.45L455.65,336.09L455.75,337.95L456.47,339.07L456.96,339.44L457.61,339.45L458.49,338.86L458.54,338.26L458.31,337.70L458.31,337.25L458.77,336.33L458.80,335.37L458.51,334.43L458.02,333.57L457.76,333.18L456.57,332.91L455.86,332.66Z M483.16,343.10L483.17,342.67L483.48,342.09L483.72,341.24L483.30,340.20L483.36,340.03L483.26,339.80L483.59,339.42L484.01,339.01L484.20,338.66L483.88,338.54L483.22,337.94L482.73,337.32L482.93,337.17L482.99,336.76L483.44,335.95L483.75,335.09L483.41,334.56L481.68,332.97L480.53,332.56L476.55,330.75L475.75,330.52L466.41,329.61L464.91,329.75L464.78,330.89L464.18,331.85L462.15,333.85L461.06,335.24L460.14,336.16L459.26,336.69L458.87,337.16L459.30,338.38L459.37,341.55L460.05,342.70L459.87,343.25L459.57,343.74L459.41,343.92L459.31,344.11L458.80,344.62L458.70,344.80L458.85,344.90L459.42,344.98L459.56,345.08L460.76,346.87L460.66,347.10L461.77,347.17L464.15,346.37L465.33,346.39L465.78,346.88L464.97,347.38L463.76,347.75L463.05,347.87L462.71,348.07L462.16,348.58L461.65,349.17L461.44,349.57L461.76,349.80L462.37,349.82L462.92,349.73L463.06,349.59L464.33,350.56L465.03,350.91L465.80,350.99L471.00,350.80L472.60,350.35L475.60,350.07L475.83,350.23L476.06,350.23L476.53,349.73L476.91,349.26L477.15,349.01L477.40,348.88L477.79,348.75L479.68,348.30L481.73,348.06L483.71,348.08L485.42,348.39L487.34,348.35L491.50,346.53L493.48,346.07L493.00,345.46L492.22,345.06L490.34,344.51L490.12,344.35L489.59,343.77L489.21,343.55L488.74,343.58L487.69,344.03L487.20,344.06L486.37,343.87L484.71,343.68L483.86,343.48L483.16,343.10Z M448.57,194.81L447.19,193.64L445.85,193.37L444.28,193.34L442.67,193.52L441.17,193.86L439.84,193.95L435.76,193.01L427.71,192.69L420.20,190.85L419.33,190.33L417.78,188.86L416.84,188.65L415.76,189.22L413.00,191.28L411.83,191.57L410.81,191.73L409.26,192.33L407.84,193.08L407.18,193.71L406.02,193.78L403.92,194.22L403.02,194.27L400.91,193.87L399.12,193.20L397.36,191.88L396.41,191.55L393.42,191.22L392.55,190.95L394.10,190.21L394.10,190.21L392.79,190.11L391.95,190.27L391.14,190.49L390.39,190.61L386.49,189.89L385.52,189.96L384.60,190.12L381.63,190.89L381.39,191.38L381.15,191.42L380.79,191.39L380.17,191.66L379.10,192.98L378.58,193.36L377.81,193.57L377.66,193.62L376.28,193.53L375.48,193.70L374.62,194.21L373.47,195.51L372.90,196.02L371.14,196.89L369.28,197.51L362.30,198.90L361.19,199.46L359.70,200.65L359.48,201.07L359.59,201.32L359.47,201.42L358.55,201.38L357.97,201.20L357.24,200.60L355.25,200.39L353.61,199.57L352.26,199.59L349.19,200.01L346.61,200.02L344.61,199.56L343.31,198.54L342.50,197.38L341.75,197.14L338.70,197.58L335.10,197.49L335.58,198.14L335.81,198.34L334.53,198.95L334.41,199.58L335.00,200.15L335.82,200.57L336.12,200.86L335.97,201.64L336.14,202.01L336.60,202.15L337.87,202.06L338.37,202.12L338.89,202.56L339.77,203.91L340.46,204.33L341.68,204.36L342.93,204.29L343.44,204.54L342.50,205.54L342.50,205.55L342.47,205.57L339.67,205.31L330.91,206.45L328.25,206.27L326.07,205.59L322.36,203.86L320.39,204.20L318.25,204.74L316.72,205.27L316.19,205.40L315.19,205.52L313.31,205.55L309.78,205.15L308.41,205.15L308.01,205.15L308.33,205.70L308.06,206.13L307.72,206.56L307.79,207.13L308.26,208.29L308.67,210.73L309.19,211.84L310.17,212.64L311.83,213.12L311.25,215.05L311.17,216.00L311.51,216.85L311.90,217.10L312.25,217.32L314.29,218.15L314.76,218.72L314.23,219.65L311.95,221.98L311.83,223.00L312.54,223.69L315.46,224.83L319.01,225.70L319.93,226.10L322.29,228.97L322.34,229.42L321.93,229.91L321.65,230.40L322.04,230.87L327.40,233.46L328.79,233.69L332.27,233.37L333.65,233.86L332.51,234.14L332.63,234.27L333.27,234.39L333.67,234.61L333.60,235.20L333.48,235.46L333.69,235.57L334.67,235.71L336.95,237.06L337.60,237.20L337.98,237.29L338.22,235.41L338.60,235.06L339.30,234.91L341.67,234.87L341.73,235.06L341.15,235.39L340.57,235.84L339.94,236.45L339.37,236.91L339.36,237.18L340.39,237.20L341.27,237.03L342.18,236.69L342.91,236.20L343.20,235.60L344.67,235.62L344.89,235.32L344.61,234.92L344.55,234.63L345.43,234.20L346.17,233.96L346.92,233.84L347.88,233.76L351.54,234.24L353.24,234.18L353.78,233.20L355.22,232.84L354.13,231.31L355.24,230.68L353.84,229.60L354.29,229.00L354.61,229.04L354.97,229.25L355.51,229.13L355.58,229.16L356.54,228.80L356.55,228.77L356.48,228.64L356.54,228.31L356.74,227.95L357.09,227.73L357.31,227.73L357.60,227.73L358.52,228.13L359.00,228.25L361.71,228.05L367.00,226.53L369.62,226.15L371.54,226.59L372.94,227.68L374.89,230.31L374.92,230.78L374.53,231.82L374.84,232.11L375.51,232.34L375.65,232.66L375.37,233.64L375.02,234.82L374.33,235.62L373.31,236.01L371.99,236.00L373.47,237.18L373.67,237.65L373.48,238.18L373.15,238.75L372.94,239.38L373.04,240.52L373.45,241.57L374.12,242.51L374.95,243.32L375.62,243.56L376.37,243.43L377.17,243.21L378.01,243.20L378.65,243.45L379.09,243.83L379.74,244.76L380.05,245.56L380.22,246.01L379.59,247.07L378.03,247.90L375.78,248.43L375.78,249.24L375.08,249.84L372.88,250.84L373.38,251.51L373.91,253.03L374.50,253.53L374.93,253.52L375.56,253.34L376.09,253.18L376.59,253.08L377.11,253.17L377.81,253.65L378.24,253.82L384.33,254.30L386.01,254.75L385.96,254.86L385.96,255.16L386.08,255.51L386.31,255.77L386.74,255.89L388.57,256.05L390.09,256.33L390.66,256.25L391.36,255.87L391.77,255.40L392.08,254.95L392.49,254.63L394.00,254.13L394.44,254.32L394.53,254.83L394.96,255.32L395.85,255.46L396.92,255.47L397.88,255.67L398.36,256.33L399.09,256.07L400.09,256.72L401.80,257.32L403.08,258.11L402.78,259.34L403.51,259.60L407.19,261.89L406.65,261.81L405.15,261.77L404.82,262.12L405.46,262.85L406.31,263.24L408.75,263.83L409.74,263.86L413.30,263.56L416.18,263.03L419.36,263.08L421.15,262.66L422.64,261.95L424.20,261.01L425.66,259.96L426.83,258.95L427.01,258.74L428.70,256.81L429.69,256.26L431.11,256.36L432.39,256.59L435.45,256.84L438.12,257.45L441.43,258.64L441.78,259.26L441.56,259.76L441.95,259.96L442.61,259.98L443.18,259.94L444.65,258.93L444.98,258.96L445.56,259.26L445.88,259.30L448.90,258.77L451.66,257.98L453.89,256.61L455.27,254.35L454.48,252.84L451.59,252.48L448.02,252.54L445.15,252.32L446.35,251.93L449.41,251.63L450.37,251.26L454.72,248.91L454.60,248.45L455.23,248.19L455.46,248.05L455.75,247.84L455.12,247.48L455.20,246.91L455.78,246.28L456.69,245.72L455.41,244.66L456.02,244.53L457.44,244.77L458.59,244.86L458.22,244.36L456.11,243.63L455.84,243.33L455.58,242.90L455.15,242.48L454.33,242.22L455.21,242.06L456.16,241.75L456.83,241.27L456.90,240.63L457.25,240.26L458.98,240.83L460.11,241.77L462.22,245.05L462.37,246.27L461.83,247.68L460.44,249.44L459.37,250.16L457.12,250.70L456.11,251.22L455.65,251.85L455.49,252.59L455.66,253.26L456.18,253.66L455.76,254.92L455.59,255.86L455.93,256.46L456.83,256.62L458.30,256.06L459.42,256.06L459.14,255.20L459.86,254.85L460.99,254.71L461.96,254.46L463.04,253.62L463.48,252.59L464.47,252.04L466.51,251.42L467.12,251.18L467.41,250.90L467.43,250.63L467.65,250.32L468.54,249.92L468.30,249.67L467.88,247.58L468.34,246.76L469.99,244.54L470.01,243.98L469.31,243.38L469.34,242.41L470.21,240.27L470.57,239.68L470.98,239.22L471.07,238.86L470.57,238.57L470.16,238.23L470.16,237.27L469.99,237.01L462.36,235.57L461.13,235.14L460.57,234.50L459.84,234.05L458.28,233.99L455.49,234.20L452.92,234.12L452.01,234.30L449.62,235.02L448.66,235.16L448.02,235.40L447.31,235.54L446.62,235.28L446.73,234.98L447.13,234.49L447.34,233.96L446.88,233.51L448.36,233.00L451.06,232.06L452.96,231.60L455.21,231.32L457.21,231.33L461.23,231.80L463.40,231.85L465.45,231.47L467.42,230.55L469.01,229.15L469.91,227.31L469.66,226.15L468.66,224.82L467.15,224.07L465.35,224.69L467.06,227.78L467.02,229.20L466.66,229.10L466.34,227.62L464.96,226.76L463.96,225.87L464.76,224.27L465.33,223.48L465.56,222.73L465.55,222.07L465.41,221.51L465.22,221.12L464.71,220.46L464.56,220.13L464.60,219.65L465.03,218.72L465.13,218.30L464.83,217.10L464.12,216.06L462.98,215.21L461.45,214.60L461.68,214.21L464.63,212.64L465.66,211.77L465.70,211.19L465.28,210.66L464.62,210.24L463.92,209.97L462.81,209.70L461.80,209.32L461.81,208.75L463.76,207.91L464.98,207.21L468.04,204.51L468.00,203.82L467.09,202.07L466.76,201.81L466.65,201.31L465.80,200.73L463.77,199.91L462.54,199.71L459.90,199.56L458.53,199.31L457.74,198.93L453.86,195.86L452.61,195.29L449.72,195.39L448.57,194.81Z M467.14,195.71L466.70,195.40L464.00,194.38L463.19,194.22L462.38,194.17L461.52,194.21L460.59,194.33L461.79,194.78L463.28,195.09L464.62,195.55L465.35,196.46L464.90,196.62L464.65,196.78L464.39,197.00L463.89,197.37L464.63,197.17L465.74,196.78L466.74,196.27L467.14,195.71Z M534.14,205.83L535.92,205.93L537.15,205.70L537.79,204.85L537.95,203.93L538.47,203.25L540.17,203.17L538.35,202.01L538.06,201.70L538.38,200.96L539.07,200.94L539.90,201.15L540.63,201.14L541.56,200.02L540.32,198.11L541.62,197.63L542.83,194.95L543.05,193.71L542.77,192.50L542.22,191.78L539.44,189.90L539.03,189.72L537.51,189.37L537.47,189.56L537.26,189.95L537.21,190.15L535.14,189.79L532.65,190.05L530.25,190.69L528.45,191.50L526.61,192.97L525.95,194.25L526.04,195.50L526.48,196.85L525.98,197.00L525.72,197.13L525.48,197.22L525.07,197.26L524.74,197.59L524.60,198.02L523.82,199.46L523.53,199.79L523.20,200.12L524.54,201.76L526.19,203.15L528.36,204.33L531.29,205.34L534.14,205.83Z M554.09,193.52L554.37,193.09L554.30,192.61L553.89,192.25L555.13,191.76L555.74,191.61L556.10,191.35L556.97,189.71L557.21,188.96L557.31,188.20L557.25,187.38L556.98,187.05L556.55,186.81L556.38,186.48L557.12,185.33L556.88,185.08L556.43,184.91L556.07,184.62L555.26,183.26L554.23,182.10L551.94,182.06L551.14,182.76L551.00,183.75L550.72,184.59L550.74,185.03L552.05,186.19L551.56,186.83L550.89,188.32L550.69,189.27L552.73,191.93L552.56,192.95L552.71,193.51L553.40,193.73L554.09,193.52Z M497.68,172.12L499.67,169.40L501.54,167.42L501.65,167.10L501.48,166.83L501.02,166.59L500.23,166.74L499.17,166.84L498.07,166.87L497.17,166.76L496.25,166.76L493.92,167.26L491.35,167.26L488.66,167.61L486.36,168.29L485.80,169.29L485.46,169.60L484.88,169.32L484.83,168.88L485.31,167.96L485.62,167.68L487.72,166.59L488.45,166.41L487.90,166.08L487.02,166.14L485.99,166.30L482.28,166.11L479.54,166.24L478.72,166.49L477.94,167.01L477.08,167.70L476.38,168.06L475.61,168.22L474.55,168.32L475.72,169.43L471.35,170.47L469.92,171.06L470.13,171.22L470.15,171.45L470.34,171.61L468.73,172.23L467.84,172.95L468.05,173.58L469.75,173.88L470.86,173.69L474.00,172.93L476.42,172.83L478.03,172.30L481.08,171.07L482.70,170.93L484.40,171.23L485.86,171.78L486.76,172.39L482.98,172.85L480.64,173.31L479.49,174.07L479.95,174.21L481.60,175.31L481.86,175.89L481.29,177.84L477.37,177.84L475.43,178.16L473.95,179.13L473.61,180.37L474.70,180.96L476.40,181.10L478.41,180.93L479.26,180.79L479.69,180.68L481.17,179.81L482.08,179.83L484.27,180.65L486.10,180.84L488.00,180.85L489.89,180.65L491.67,180.20L491.65,180.64L492.32,180.33L493.05,180.18L493.84,180.14L494.67,180.16L494.99,179.87L495.06,179.41L495.40,178.90L495.93,178.37L496.63,177.88L495.95,177.43L495.76,177.15L495.75,176.83L496.13,176.57L496.84,176.21L497.39,175.87L497.31,175.63L496.95,175.34L496.51,174.74L496.24,174.06L496.36,173.54L497.68,172.12Z M509.80,159.10L510.14,158.50L509.52,158.32L508.47,158.28L507.48,158.10L507.31,158.42L507.27,158.56L507.25,158.78L506.61,158.82L505.93,158.44L505.35,158.48L504.73,158.65L502.83,159.02L501.74,159.42L500.80,159.93L499.82,160.33L498.61,160.42L499.44,160.99L500.93,161.42L502.66,161.62L504.18,161.53L504.89,160.71L506.51,160.00L509.80,159.10Z M524.82,168.35L529.71,166.44L531.38,166.21L532.93,165.77L534.22,165.61L534.88,165.08L535.38,164.43L535.63,163.95L534.72,163.39L532.50,163.44L528.28,163.99L522.04,164.76L520.11,164.55L518.55,164.65L515.82,165.14L513.01,165.88L511.21,166.72L511.25,167.66L513.16,168.13L515.49,168.41L516.78,168.78L514.20,169.00L509.43,168.23L507.12,168.42L505.74,168.63L504.54,168.60L503.37,168.69L502.06,169.25L501.09,170.01L499.21,172.32L498.83,173.71L500.16,174.86L502.27,175.51L504.19,175.43L505.31,174.83L507.76,173.22L508.54,172.98L509.71,173.00L511.95,172.57L512.42,172.82L515.59,171.33L524.82,168.35Z M534.67,162.82L536.66,163.02L538.28,162.86L538.63,162.07L538.57,161.63L535.99,161.79L534.65,161.98L533.27,162.55L534.67,162.82Z M545.64,160.03L545.09,160.18L544.80,160.13L544.64,159.96L544.52,159.73L543.49,159.88L541.75,160.77L540.73,161.04L540.50,162.52L540.77,162.93L542.76,161.69L543.99,161.20L545.09,160.67L545.64,160.03Z M550.10,157.72L549.20,157.69L548.06,157.26L547.12,157.32L545.44,157.99L545.03,158.78L545.74,159.34L547.35,159.33L547.62,158.67L548.31,158.37L549.22,158.16L550.10,157.72Z M559.04,154.75L558.25,154.86L557.39,154.74L555.71,154.26L554.30,154.52L553.68,154.71L552.98,155.05L554.41,155.46L555.86,155.52L557.40,155.28L559.04,154.75Z M525.63,143.39L525.62,142.76L524.65,141.76L524.28,141.19L523.50,141.01L522.65,140.99L521.72,141.11L520.69,141.37L521.47,142.29L522.72,142.73L525.63,143.39Z M485.58,134.47L486.15,133.65L487.99,133.18L489.40,133.27L490.71,133.47L492.26,133.35L493.18,132.68L496.62,133.34L497.99,133.02L498.18,132.13L496.86,131.76L493.58,131.50L492.23,131.32L489.59,131.36L488.16,131.25L484.25,130.58L482.75,130.56L482.47,131.38L481.99,132.09L481.88,132.69L484.43,134.20L485.58,134.47Z M539.56,138.92L537.97,138.43L538.28,138.27L538.94,137.86L539.24,137.70L537.11,136.71L536.62,136.30L534.80,135.94L532.36,135.68L530.17,135.80L529.12,136.56L528.51,136.63L528.06,136.52L527.78,136.23L527.67,135.79L526.43,135.91L525.36,135.86L523.30,135.43L523.04,136.01L523.53,136.82L523.53,137.32L520.00,137.48L520.37,137.99L520.93,138.51L521.72,138.98L526.33,140.65L527.12,141.22L527.42,141.70L527.47,142.21L527.36,143.30L527.62,143.64L528.20,143.69L528.87,143.62L529.40,143.62L530.64,143.84L535.01,143.96L535.22,144.34L535.05,144.75L534.55,145.15L533.75,145.49L532.84,145.55L528.86,145.38L527.04,144.80L526.43,144.75L525.67,144.88L525.09,145.12L524.57,145.38L522.80,146.05L522.15,146.15L521.34,146.04L520.60,146.01L519.72,146.19L519.00,146.55L518.73,147.07L519.33,147.76L520.63,148.15L523.61,148.54L527.65,148.60L528.89,148.75L528.98,149.05L527.42,149.25L524.09,149.39L519.96,148.76L518.60,148.90L517.52,148.87L515.35,147.99L514.14,147.93L514.33,148.09L514.42,148.23L514.57,148.36L514.95,148.51L514.62,148.81L513.28,148.85L512.94,148.28L512.93,147.47L512.58,146.80L511.59,146.44L510.09,146.21L508.52,146.25L507.34,146.72L506.75,147.60L506.80,148.45L507.24,149.18L508.28,149.97L509.22,150.43L509.87,150.63L510.59,150.64L511.27,150.43L511.86,150.19L512.33,150.14L517.39,151.46L518.12,151.48L519.86,151.42L520.51,151.48L521.02,151.75L521.47,152.13L522.06,152.39L522.94,152.32L524.39,152.10L529.82,152.26L531.86,152.55L532.53,152.55L533.25,152.35L533.88,152.12L534.31,152.06L535.88,152.20L536.58,152.34L536.77,152.70L536.26,153.07L535.35,153.31L534.44,153.44L533.95,153.47L535.12,154.45L537.53,154.78L543.98,154.59L545.48,154.33L546.36,153.96L545.69,153.52L543.49,153.11L542.30,153.04L541.11,153.11L541.46,152.79L544.01,152.57L545.22,152.23L545.66,151.62L546.10,151.71L546.44,151.83L546.69,152.00L546.82,152.27L546.22,152.71L546.81,153.08L548.62,153.53L549.61,153.44L549.85,152.74L549.72,151.93L549.56,151.51L550.48,151.85L550.84,152.04L551.13,152.30L552.34,151.53L551.96,151.21L551.07,151.09L550.77,150.89L551.08,150.30L551.02,149.65L550.71,149.06L550.33,148.68L549.98,148.58L548.89,148.40L548.44,148.19L548.17,147.89L547.88,146.76L547.65,146.53L547.17,146.35L546.58,146.25L545.47,146.28L545.25,146.02L545.14,145.67L544.87,145.40L539.47,144.00L539.00,143.77L539.09,143.53L539.40,143.25L539.57,142.92L539.94,140.10L539.56,138.92Z M510.16,132.47L513.48,131.84L514.21,131.98L514.84,132.00L515.46,131.93L516.15,131.79L516.90,131.58L518.61,130.94L519.60,130.67L520.45,130.34L520.06,130.09L518.48,129.83L517.46,129.74L515.17,129.93L513.65,129.83L511.28,129.94L510.27,130.12L505.88,131.16L503.76,131.39L502.16,131.13L501.99,131.60L501.90,132.23L502.10,132.57L502.82,132.21L503.54,131.90L504.17,132.06L505.17,132.63L506.22,132.72L510.16,132.47Z M486.18,106.44L486.35,106.09L486.61,105.74L486.68,105.43L486.44,105.15L485.23,104.40L485.75,104.33L487.34,103.87L487.27,103.69L487.16,103.56L486.95,103.45L486.62,103.35L486.55,103.07L486.45,102.97L486.22,102.92L484.47,103.83L483.09,103.91L481.69,103.72L479.94,103.78L480.11,104.18L479.67,104.64L478.89,104.97L478.07,105.00L476.98,104.94L475.91,105.17L475.41,105.52L475.98,105.88L479.01,106.96L479.89,107.11L480.89,107.16L481.65,107.02L481.83,106.60L482.32,106.60L482.89,106.58L483.55,106.50L484.29,106.36L484.91,106.33L486.39,106.72L486.18,106.44Z M545.73,119.68L547.15,119.58L546.63,118.76L544.74,117.36L542.56,116.96L540.29,117.09L535.34,117.77L536.06,118.23L536.86,119.35L537.47,119.70L537.96,120.10L537.70,121.25L538.39,121.70L540.50,122.13L542.39,122.13L544.37,121.57L546.79,120.32L545.39,119.97L545.73,119.68Z M534.37,115.17L536.12,115.21L535.74,114.86L534.63,114.41L534.29,114.04L533.18,113.90L530.85,113.88L529.69,113.95L530.89,114.42L532.54,114.87L534.37,115.17Z M576.36,113.59L576.86,112.95L576.13,112.06L574.53,111.47L572.92,111.47L572.61,112.07L573.21,112.87L574.31,113.44L576.36,113.59Z M508.23,91.31L507.73,91.19L504.81,91.08L503.42,91.12L502.58,93.08L501.71,94.32L500.66,94.73L499.89,94.66L499.35,94.81L498.81,95.09L498.06,95.42L496.46,95.95L495.72,96.12L494.67,96.25L495.24,96.49L495.54,96.82L495.77,97.51L495.44,97.76L494.56,98.12L493.96,98.76L492.71,101.02L492.63,101.53L493.20,102.60L495.33,102.60L499.14,104.00L500.99,103.79L501.29,103.56L500.31,103.26L500.07,102.80L499.99,102.26L499.48,101.75L498.74,101.52L496.76,101.17L495.93,100.88L496.27,100.63L498.30,101.07L499.20,101.38L499.80,101.82L500.96,101.52L502.04,100.81L502.84,99.97L503.13,99.29L502.69,98.72L499.92,97.52L500.22,97.29L503.63,98.66L504.86,98.72L505.62,98.51L507.15,97.89L507.89,97.63L508.87,97.49L509.64,97.51L510.38,97.43L511.34,96.95L510.46,96.78L510.19,96.43L510.10,96.02L509.82,95.63L509.15,95.35L507.58,94.95L507.01,94.62L506.95,94.03L506.84,93.90L505.91,93.38L505.55,93.25L505.06,93.16L504.79,93.00L505.04,92.66L505.15,92.47L505.11,92.22L504.99,91.98L504.83,91.79L506.33,91.82L506.80,92.45L507.05,93.27L508.51,94.26L508.97,94.85L509.79,95.32L511.59,95.37L511.92,95.13L510.88,94.78L510.05,93.81L509.04,93.45L509.37,93.20L510.16,93.58L510.54,93.66L511.15,93.63L508.23,91.31Z M515.03,89.28L514.95,89.05L514.09,89.11L513.41,89.01L512.89,88.78L512.53,88.47L511.31,88.21L509.86,88.30L508.43,88.69L507.28,89.30L507.30,89.85L510.00,91.73L511.18,92.17L516.26,92.73L516.66,92.50L516.57,92.16L515.99,91.88L514.80,91.59L514.55,91.35L514.75,90.93L515.75,91.14L517.44,91.01L517.92,91.34L518.53,91.19L517.71,90.43L517.45,90.29L516.92,90.21L516.37,90.19L515.92,90.12L515.68,89.86L515.98,89.85L516.04,89.87L516.09,89.85L516.39,89.71L515.78,89.61L515.32,89.47L515.03,89.28Z M582.64,105.11L582.64,104.85L582.51,104.62L582.24,104.42L581.84,104.26L581.97,104.94L581.63,105.22L580.89,104.71L580.35,104.60L579.49,104.69L579.43,105.19L579.48,105.45L579.62,105.72L579.32,105.97L577.74,105.68L576.55,105.77L575.42,106.29L572.10,108.60L571.43,109.25L571.61,109.71L571.26,109.83L571.05,109.92L570.58,110.15L571.20,110.60L572.19,110.68L573.31,110.64L574.32,110.71L575.54,110.65L575.99,109.96L576.01,109.16L575.95,108.78L577.27,107.62L579.58,106.51L581.74,105.62L582.64,105.11Z M585.01,103.94L587.39,102.68L587.26,102.42L586.88,102.36L586.33,102.43L585.71,102.56L585.65,102.73L585.62,102.77L585.73,102.92L584.57,103.24L583.84,103.70L583.69,104.17L584.29,104.53L585.01,103.94Z M218.50,18.49L218.58,18.48L218.59,18.48L218.59,18.45L218.51,18.43L218.44,18.44L218.40,18.46L218.42,18.48L218.50,18.49Z M528.33,84.54L529.52,84.53L530.23,84.31L530.47,83.94L530.28,83.46L528.79,83.22L525.53,83.33L524.22,83.25L524.63,83.62L524.93,83.73L524.60,83.97L523.60,83.67L521.44,82.59L522.53,82.26L522.96,82.17L523.43,82.12L523.73,81.91L521.97,82.06L519.21,82.55L516.95,82.75L516.67,82.09L517.94,82.11L518.37,82.18L518.69,81.94L514.96,81.36L514.20,80.88L512.58,81.26L510.95,81.78L509.34,82.19L507.79,82.22L507.46,82.46L508.88,83.63L509.52,83.95L509.94,84.24L510.30,84.37L510.75,84.38L511.31,84.30L511.96,84.16L513.31,84.67L515.33,86.15L516.92,86.61L515.61,86.62L515.15,86.53L515.32,86.80L515.30,87.05L515.22,87.28L515.23,87.84L515.31,87.97L515.61,88.21L516.41,88.51L518.25,88.88L518.75,89.31L519.93,89.26L521.07,89.44L523.11,90.00L525.14,89.50L525.61,89.32L525.73,89.03L525.57,88.83L524.87,88.50L523.94,88.19L520.52,87.81L516.87,86.94L517.23,86.68L520.25,86.54L521.00,86.63L521.09,86.80L520.90,87.37L521.06,87.59L521.39,87.66L522.36,87.66L522.80,87.69L525.90,88.30L527.58,88.26L529.60,87.72L527.70,87.55L526.89,87.34L526.97,86.94L527.45,86.42L527.22,86.15L525.71,85.84L526.06,85.58L526.66,85.43L526.80,85.28L526.54,85.12L525.99,84.96L526.34,84.70L528.60,85.23L529.17,85.93L529.63,86.14L529.79,86.35L529.81,86.71L529.98,87.08L530.62,87.30L531.17,87.23L532.81,86.84L533.60,86.77L533.73,86.23L533.06,85.80L531.96,85.53L531.24,85.33L530.82,84.99L528.89,84.93L528.33,84.54Z M575.02,93.52L574.68,93.60L574.45,93.62L573.98,93.58L573.48,93.31L572.79,93.47L571.95,93.83L570.96,94.16L570.45,94.21L567.78,94.22L567.38,94.17L567.11,94.27L566.63,94.71L566.59,95.01L566.75,95.32L566.65,95.68L565.81,96.12L565.98,96.36L566.36,96.58L566.90,96.76L567.56,96.87L566.00,97.45L564.86,97.64L564.20,97.97L564.10,98.94L564.86,100.17L565.00,100.81L564.35,101.31L564.39,101.50L564.36,101.81L564.46,101.99L564.15,102.24L562.73,99.28L562.22,98.98L560.72,99.55L558.94,99.83L558.50,99.64L561.03,98.84L560.13,98.65L559.24,98.62L558.52,98.48L558.18,98.00L558.03,97.52L557.72,97.19L555.98,96.11L555.76,95.92L555.57,95.57L555.71,95.31L556.06,94.96L556.24,94.61L555.48,94.05L555.32,93.59L554.95,93.14L553.90,92.88L553.56,93.15L553.75,93.61L552.98,94.10L551.76,94.50L550.63,94.69L551.74,95.13L552.79,95.90L553.36,96.79L553.03,97.57L551.86,96.94L551.00,96.67L550.37,96.75L550.10,96.85L549.54,96.81L549.21,96.94L549.13,97.10L549.25,97.48L549.25,97.63L549.28,97.75L549.63,98.38L549.32,98.38L548.96,98.45L548.65,98.46L548.36,98.69L548.08,99.22L547.47,99.00L546.91,98.49L546.72,98.14L546.83,97.73L546.08,95.54L545.75,95.31L545.09,95.28L543.90,95.51L542.93,95.87L542.47,96.33L542.43,96.83L542.73,97.32L539.59,96.56L539.08,97.51L540.41,98.65L539.67,99.72L539.39,100.34L539.79,101.03L540.60,101.63L544.54,103.43L545.75,103.35L546.38,102.95L546.66,102.14L547.28,101.73L548.12,101.56L548.85,101.61L549.64,101.60L550.67,101.22L550.81,101.62L550.57,101.99L550.09,102.33L549.42,102.59L550.32,102.58L551.96,102.33L552.83,102.43L552.06,102.78L551.79,103.11L551.88,103.40L552.24,103.61L551.91,103.72L551.69,103.73L551.25,103.70L551.98,104.16L552.35,104.30L552.00,104.58L550.97,104.63L551.61,104.79L552.97,104.88L553.60,104.97L554.14,105.16L554.34,105.36L554.61,105.85L556.55,107.71L556.61,108.38L555.38,107.91L554.77,107.25L554.40,106.58L553.88,106.03L552.82,105.67L551.58,105.59L548.37,105.68L548.20,105.98L548.23,106.15L548.34,106.30L548.41,106.52L548.37,106.73L548.19,107.14L548.16,107.30L549.02,109.20L549.76,109.52L552.26,110.02L551.56,110.25L550.91,110.35L550.25,110.37L549.56,110.33L549.48,111.23L549.72,112.10L550.85,112.04L551.96,112.08L553.00,112.21L553.95,112.47L553.66,112.70L551.07,113.15L550.22,113.21L549.88,113.49L558.19,114.55L559.39,114.53L559.01,114.03L559.29,113.79L559.78,113.95L560.13,114.16L560.35,114.43L560.45,114.76L561.09,114.68L561.48,114.68L561.70,114.80L561.87,115.12L561.27,115.72L560.55,116.55L560.03,117.32L560.35,117.79L561.32,117.81L562.26,117.55L563.21,117.22L564.23,117.07L564.21,116.69L564.99,116.60L565.67,116.42L566.89,116.00L566.98,115.24L567.12,114.88L567.37,114.42L567.84,114.70L568.11,115.21L568.35,116.36L568.21,116.61L567.91,116.88L567.71,117.13L567.88,117.30L572.39,118.39L574.06,118.58L575.88,118.62L575.57,118.88L569.31,118.66L568.45,118.74L567.67,118.88L565.85,119.38L565.26,119.48L564.90,119.61L564.25,119.92L563.98,119.99L563.56,120.00L563.25,120.26L562.99,120.65L560.57,121.14L559.61,121.78L559.51,122.42L560.09,122.74L563.17,123.22L564.47,123.19L565.73,123.05L570.89,122.05L571.65,121.86L572.38,121.79L573.79,121.82L575.32,121.73L576.45,121.32L577.54,120.48L578.21,120.31L580.39,120.75L581.38,120.78L584.04,120.61L585.78,120.28L586.55,120.07L587.18,119.74L587.44,119.26L587.71,119.01L589.68,118.26L585.78,117.29L585.47,116.58L583.94,116.19L582.23,116.04L580.04,116.27L577.92,115.69L577.45,115.77L576.85,115.94L576.17,116.00L575.46,115.79L575.37,115.49L575.44,115.04L575.36,114.57L574.76,114.22L573.38,113.95L572.73,113.74L572.41,113.47L571.81,112.70L570.69,112.49L569.26,112.44L567.77,112.15L568.08,111.89L569.69,111.97L570.72,111.77L570.87,111.41L569.84,110.98L565.10,110.11L566.12,110.03L568.38,110.04L569.16,109.80L569.16,109.44L568.71,108.97L568.43,108.40L568.93,107.71L569.52,107.56L570.44,107.39L571.16,107.10L571.18,106.61L570.53,106.31L569.46,106.22L568.30,106.25L567.38,106.34L568.27,106.11L570.27,105.92L570.90,105.71L571.61,105.23L573.10,104.50L573.91,103.98L574.44,103.45L575.30,102.22L577.95,99.56L578.09,99.20L577.99,98.71L577.61,97.99L576.25,96.69L576.29,96.48L576.05,95.36L575.88,95.00L575.16,94.33L574.99,94.00L575.02,93.52Z M532.12,82.68L533.55,82.50L533.59,82.02L532.53,81.88L529.22,82.24L530.33,82.58L532.12,82.68Z M467.18,63.42L468.57,63.23L467.98,62.89L466.35,62.40L465.92,62.00L465.40,62.78L465.97,63.27L467.18,63.42Z M550.07,77.85L549.48,77.41L548.11,77.34L545.04,77.58L544.95,77.72L544.98,77.75L544.87,77.82L544.37,78.07L545.10,78.21L545.76,78.22L546.42,78.08L547.11,77.74L548.30,78.58L549.09,78.59L550.07,77.85Z M572.15,68.16L571.42,67.80L570.66,68.06L570.35,68.47L570.42,68.90L570.87,69.17L570.59,69.37L570.42,69.35L569.92,69.22L569.61,69.44L573.66,70.38L573.83,70.04L573.85,69.73L573.74,69.44L573.53,69.17L572.86,69.17L572.15,68.16Z M609.42,72.44L609.07,72.15L608.93,71.84L611.83,70.75L612.43,70.65L613.52,70.70L613.81,70.32L613.61,69.59L614.06,69.01L614.25,68.25L614.15,67.46L613.66,66.85L612.52,66.55L610.48,66.69L606.62,67.23L594.79,67.54L592.78,67.84L592.15,67.88L588.27,67.73L586.78,67.57L585.11,67.18L584.56,67.19L584.04,67.27L583.56,67.27L583.13,67.01L581.37,67.29L575.66,67.61L576.21,67.72L576.44,67.86L576.46,68.07L576.39,68.37L576.04,68.30L575.72,68.32L575.42,68.35L575.08,68.35L575.02,68.59L575.04,68.81L575.21,69.24L575.17,69.35L574.96,69.69L574.93,69.80L575.19,69.90L576.01,69.99L576.25,70.10L576.23,70.34L575.82,70.92L575.74,71.17L575.92,71.44L576.78,72.00L574.50,72.39L574.56,71.77L573.93,71.07L572.96,70.55L572.02,70.45L571.34,70.47L568.88,70.16L568.58,70.22L568.21,70.44L567.71,70.63L567.04,70.64L566.90,71.04L566.85,71.79L566.91,72.08L566.20,72.50L565.97,72.69L565.65,73.01L565.45,72.52L565.55,71.71L565.98,70.91L566.74,70.41L566.46,70.02L566.21,69.22L566.52,68.67L567.94,69.05L568.24,68.83L566.15,67.76L565.63,67.79L565.28,67.68L563.88,66.87L563.43,66.51L561.92,66.69L561.33,66.84L560.67,67.21L560.33,67.66L560.60,67.95L561.60,68.46L560.37,68.39L556.56,67.62L556.28,67.82L556.47,67.94L556.64,68.15L556.91,68.29L556.44,68.41L556.15,68.50L555.85,68.53L555.35,68.49L554.93,68.82L553.97,68.98L553.24,69.36L553.22,69.59L553.55,69.77L553.63,69.98L552.82,70.31L552.97,70.58L552.93,71.99L553.35,72.07L556.27,72.01L555.71,72.20L555.13,72.32L554.54,72.39L553.93,72.39L555.32,72.71L555.03,72.92L554.53,72.73L553.97,72.66L553.36,72.73L552.71,72.98L554.16,73.33L559.46,73.96L555.61,73.87L553.71,73.70L552.09,73.44L552.05,73.56L552.02,73.61L552.01,73.65L552.06,73.76L551.78,73.96L550.81,73.72L549.89,73.77L548.91,73.91L547.78,73.97L549.23,75.16L549.65,75.26L550.54,75.22L550.22,75.85L551.30,76.35L554.24,76.97L554.84,77.26L555.48,78.06L556.02,78.33L558.91,79.02L558.60,79.25L558.17,79.19L556.93,79.19L556.92,79.34L556.96,79.47L557.19,79.70L557.47,79.96L557.73,80.24L557.13,79.72L555.81,79.24L554.15,79.02L550.87,78.96L550.56,79.19L552.06,80.45L549.70,79.84L548.38,79.71L547.24,79.95L541.23,80.39L541.62,79.91L541.73,79.57L541.53,79.31L540.97,79.11L540.07,79.02L539.81,79.23L539.82,79.58L539.71,79.88L540.05,80.16L541.18,82.29L541.52,82.51L542.58,84.25L542.86,84.39L544.28,84.25L548.41,84.19L549.98,84.04L549.83,83.92L549.73,83.76L549.57,83.63L551.43,83.55L552.29,83.45L553.29,83.24L553.12,83.03L553.03,82.69L552.86,82.55L553.55,82.37L555.04,83.57L556.07,83.90L556.36,83.69L555.98,83.60L556.30,83.36L557.14,83.61L558.12,83.76L559.04,83.75L559.66,83.54L559.72,83.30L559.59,82.23L559.30,82.01L558.45,81.58L558.07,81.31L558.80,81.16L559.34,81.00L559.84,80.89L560.46,80.89L561.71,81.68L565.33,83.03L566.08,82.25L566.25,81.99L566.12,81.85L565.79,81.71L565.49,81.50L565.44,81.20L565.83,81.27L566.18,81.25L566.51,81.21L566.86,81.21L566.70,80.86L566.63,80.42L566.43,80.01L565.87,79.72L565.60,79.37L565.92,78.11L565.76,77.58L567.03,77.59L569.10,77.43L570.98,77.17L571.71,76.83L571.99,76.62L576.78,77.75L576.50,77.97L574.57,77.57L572.48,77.36L570.39,77.51L568.48,78.22L567.92,78.73L567.71,79.28L567.73,80.63L567.49,81.12L567.52,81.36L567.78,81.65L568.98,82.33L569.61,82.19L569.54,81.87L569.60,81.34L569.84,80.89L570.33,80.77L570.70,80.96L570.74,81.21L570.56,81.78L570.70,82.29L571.13,82.74L571.98,83.03L573.37,83.09L573.71,82.83L573.57,82.71L573.47,82.55L573.33,82.43L573.66,82.18L574.46,82.49L574.93,82.77L575.53,82.94L576.74,82.91L577.47,82.78L578.99,82.43L579.65,82.40L579.95,82.17L579.70,81.64L578.18,81.03L577.76,80.56L576.91,80.14L576.68,79.89L577.30,79.70L577.57,79.78L578.42,80.19L582.72,81.60L584.05,81.76L585.22,81.65L586.43,81.43L587.86,81.27L587.19,81.14L586.60,80.96L586.12,80.74L585.77,80.46L586.28,80.55L586.83,80.57L587.42,80.53L588.05,80.42L587.82,80.11L587.69,80.01L588.33,79.58L588.62,79.08L588.56,78.62L588.13,78.30L587.40,78.18L585.44,78.15L578.23,77.19L576.36,76.72L576.66,76.49L577.43,76.71L580.36,77.06L582.32,76.92L582.76,77.06L583.27,77.43L583.72,77.56L584.69,77.56L587.33,77.20L590.12,77.59L591.33,77.55L591.45,77.24L591.63,77.06L591.98,76.97L592.59,76.92L592.55,76.41L592.99,74.92L593.75,75.11L594.77,75.80L595.47,76.10L597.82,76.52L598.52,76.82L599.50,77.53L600.14,77.73L601.27,77.77L601.58,77.72L602.47,77.50L603.01,77.43L603.59,77.42L605.20,77.50L605.39,77.11L605.42,76.96L605.76,76.90L606.26,76.75L606.70,76.64L606.40,76.57L606.67,76.36L607.45,76.22L606.96,76.07L605.89,75.97L604.94,75.95L601.34,76.31L599.68,76.21L597.64,75.79L596.08,75.16L595.87,74.40L597.25,74.71L597.89,74.77L598.55,74.71L598.94,74.48L599.18,74.15L599.60,73.93L601.34,74.07L602.42,73.71L603.14,73.74L603.85,73.85L604.39,73.79L604.75,73.59L604.88,73.24L606.11,73.11L609.09,73.03L610.39,73.09L610.70,72.85L609.96,72.68L609.42,72.44Z M761.56,96.53L761.66,96.18L761.86,95.82L761.85,95.59L761.08,95.33L760.15,95.33L758.47,95.61L758.53,96.21L758.97,96.77L759.64,97.24L760.34,97.59L758.99,98.12L757.63,97.79L755.35,96.64L752.16,96.31L750.73,96.00L749.95,95.29L750.19,95.29L750.86,95.22L749.93,94.74L748.37,94.33L745.07,93.78L742.83,93.64L738.46,93.75L735.94,93.59L731.44,92.80L727.46,91.50L726.27,91.31L726.10,91.15L725.88,90.26L725.91,90.16L725.79,90.18L725.30,90.11L724.73,90.11L723.49,90.53L722.80,90.67L722.11,90.67L721.68,90.55L720.77,90.17L718.89,89.71L718.22,89.68L717.36,90.04L716.81,90.04L716.18,89.82L715.43,89.41L714.84,89.31L714.37,89.36L713.93,89.50L713.41,89.63L712.72,89.65L713.15,90.08L712.15,89.69L711.23,88.82L710.38,88.46L709.86,88.36L708.27,88.27L705.83,88.29L705.60,88.33L702.71,88.64L702.46,88.62L702.20,88.63L702.06,88.77L701.95,88.95L701.74,89.07L699.58,89.47L698.40,89.57L697.39,89.50L699.10,88.96L700.52,88.41L701.94,87.97L703.65,87.76L703.92,87.38L703.98,87.37L704.18,87.27L704.46,87.01L702.76,85.77L701.06,84.93L699.10,84.26L697.68,84.16L696.64,84.52L695.67,85.06L694.46,85.52L693.19,85.63L692.00,85.55L690.92,85.60L690.00,86.05L689.42,86.03L685.12,86.51L684.14,86.34L685.14,85.98L686.81,85.57L688.67,84.93L691.12,84.74L692.01,84.60L692.46,84.44L693.00,84.17L693.28,83.88L692.90,83.64L692.35,83.42L691.41,82.69L690.75,82.34L690.06,81.25L689.50,80.77L689.10,81.39L688.56,81.56L687.89,81.67L687.11,82.11L686.71,82.47L686.23,82.79L685.48,83.00L684.28,83.05L684.88,82.88L685.39,82.67L685.86,82.41L686.32,82.05L686.14,82.05L686.36,81.52L686.71,80.93L686.91,80.75L686.50,80.14L685.65,79.59L679.91,77.57L678.68,77.72L677.69,78.21L676.71,78.85L675.52,79.45L675.85,79.53L674.68,79.90L673.61,80.01L670.34,79.94L669.77,80.00L669.33,80.27L668.62,80.88L672.06,83.91L671.01,83.17L670.04,82.67L666.61,82.59L666.88,82.88L667.02,82.99L667.33,83.09L667.06,83.32L666.89,83.29L666.41,83.17L666.12,83.42L666.64,83.58L667.19,83.69L667.79,83.72L668.44,83.66L668.49,83.99L668.01,84.23L668.22,84.57L669.13,85.31L667.01,84.83L664.98,83.41L664.71,83.31L664.22,83.00L663.88,82.88L663.60,82.91L663.38,83.11L663.18,83.35L662.92,83.51L662.04,83.76L661.29,84.01L660.87,84.34L660.95,84.83L659.96,84.59L659.77,84.86L659.64,85.15L659.51,85.68L659.62,85.79L659.95,86.55L659.86,86.69L660.16,87.00L660.69,88.16L661.21,88.53L661.68,88.74L662.33,89.31L662.75,89.51L663.36,89.57L664.28,89.40L664.80,89.40L665.79,89.64L668.69,90.65L667.81,90.66L666.27,90.41L665.38,90.45L666.30,91.17L666.62,91.53L666.70,92.02L664.36,90.20L663.69,89.94L661.09,89.41L660.54,89.13L659.59,88.27L658.83,87.95L658.31,87.90L657.42,87.90L656.49,87.97L655.81,88.13L655.12,87.56L654.10,87.25L652.88,87.12L650.32,87.13L649.37,87.01L648.63,86.72L647.16,85.68L646.23,85.22L645.30,85.12L644.58,85.69L645.34,87.55L645.69,87.80L646.33,87.95L646.02,88.09L645.39,88.46L645.09,88.59L645.49,88.77L645.82,88.98L646.07,89.22L646.24,89.48L645.61,89.61L646.07,89.98L646.79,90.24L648.48,90.61L648.18,90.87L647.33,90.85L645.75,90.63L644.86,90.65L645.59,91.17L645.31,91.41L644.62,91.24L644.68,91.57L644.59,91.91L644.25,92.24L643.59,92.53L643.91,92.61L642.03,92.89L640.98,92.56L640.06,92.16L638.56,92.23L638.44,91.02L636.77,90.35L635.25,90.59L635.58,92.12L635.30,92.37L634.87,92.42L634.60,92.49L634.36,92.59L634.01,92.70L636.14,93.16L636.98,93.53L637.27,94.12L636.92,94.15L636.86,94.17L636.64,94.24L637.81,94.66L638.74,96.16L640.06,96.67L640.49,97.11L641.98,97.63L642.36,97.99L642.30,98.55L641.90,98.99L641.19,99.16L640.19,98.91L639.88,99.17L640.98,99.60L644.14,102.56L644.13,102.87L643.97,103.16L643.87,103.59L643.85,104.01L643.92,104.28L643.18,103.76L642.85,102.38L641.13,101.47L640.07,100.31L639.61,100.00L639.20,99.81L638.41,99.20L637.86,98.97L637.27,98.87L636.09,98.82L635.49,98.70L634.65,98.19L634.14,97.06L633.44,96.59L632.66,96.95L632.33,96.84L632.13,96.58L631.78,96.53L631.27,96.71L631.18,96.82L631.21,96.93L631.05,97.15L631.28,97.40L633.89,98.76L635.11,100.19L636.30,100.81L636.62,101.18L636.79,101.87L633.73,100.41L632.49,99.59L631.81,98.58L631.37,98.19L629.51,97.24L628.87,97.08L627.94,97.34L626.13,98.22L625.15,98.38L625.17,98.70L623.63,98.22L622.05,97.29L621.46,96.22L622.92,95.31L621.05,94.85L620.66,94.58L620.35,94.05L619.60,94.24L617.71,94.54L616.82,94.76L616.80,94.94L616.87,95.04L617.22,95.18L616.26,95.41L616.42,95.97L617.55,97.15L617.59,97.88L616.95,98.32L616.14,98.78L615.63,99.57L614.95,99.11L614.52,98.94L613.86,98.79L613.74,99.32L613.76,99.56L613.94,99.83L613.09,99.63L612.49,99.30L612.14,98.86L612.08,98.36L612.33,97.73L612.85,96.92L613.54,96.17L614.32,95.73L613.44,95.12L612.30,94.64L610.96,94.32L609.43,94.20L608.52,94.25L607.63,94.42L606.83,94.68L606.17,95.01L605.69,95.48L605.26,96.31L604.77,96.57L604.36,97.02L602.98,97.89L602.67,98.32L606.47,99.74L606.91,100.03L607.14,100.39L607.19,100.71L607.33,100.98L607.82,101.19L606.95,101.49L606.07,101.64L605.39,101.51L604.66,100.49L603.66,100.27L601.26,100.22L600.93,100.49L600.83,100.89L599.25,101.09L598.42,101.46L598.15,101.98L598.60,102.29L599.35,102.52L599.98,102.84L600.24,103.67L600.02,104.55L600.24,105.35L601.81,105.90L600.95,106.16L600.54,106.21L601.35,107.45L603.35,107.32L605.78,107.76L607.87,108.55L608.84,109.46L608.34,109.66L607.11,109.37L605.15,108.69L601.13,108.03L601.08,108.25L600.98,108.46L600.90,108.69L600.94,108.97L600.44,108.77L599.39,107.96L599.10,107.70L598.84,106.94L598.22,106.98L597.65,106.51L596.19,104.71L595.58,104.27L594.74,103.97L593.66,103.89L593.57,104.09L593.23,104.55L593.14,104.74L592.35,104.55L591.78,104.78L591.24,105.26L590.55,105.77L590.07,105.96L588.62,106.41L588.14,106.64L587.68,107.15L587.39,107.92L587.03,108.35L587.26,108.52L588.65,109.10L589.04,109.36L588.19,109.47L587.72,109.68L587.14,110.19L587.09,110.33L587.22,110.75L587.21,110.91L586.99,111.00L586.63,111.05L586.30,111.06L586.20,110.99L585.33,112.71L586.25,113.25L589.16,113.77L590.78,113.83L596.41,112.86L597.61,112.75L597.85,112.79L597.66,113.07L597.56,113.65L597.29,114.01L596.55,114.15L594.91,114.16L596.31,114.63L597.29,115.19L598.42,115.57L600.25,115.49L604.14,114.75L606.20,114.53L606.99,114.83L605.32,115.80L602.01,116.08L594.89,115.73L593.58,115.51L593.47,115.31L593.47,114.98L593.27,114.73L592.61,114.78L591.93,114.87L590.47,114.87L589.83,114.94L587.25,115.82L586.89,115.90L586.73,116.54L587.76,116.84L590.36,117.11L591.28,117.45L592.83,118.33L593.86,118.66L595.08,118.78L597.52,118.71L598.55,118.82L599.45,118.73L600.65,118.42L601.88,118.33L602.91,118.86L602.58,119.15L601.09,119.04L599.20,119.27L597.87,119.67L598.07,120.06L598.44,120.30L598.67,120.69L598.80,121.46L599.09,121.76L601.04,122.52L600.74,122.78L598.38,122.54L597.22,121.54L596.48,120.32L595.38,119.38L593.39,119.09L590.55,119.10L588.45,119.52L588.66,120.43L587.35,120.79L584.29,121.40L583.15,121.98L583.34,122.54L587.13,124.21L587.47,124.59L588.03,125.63L588.23,125.87L588.98,126.01L590.46,126.11L595.24,126.92L595.98,127.46L595.65,127.75L595.29,127.66L594.99,127.49L594.23,127.17L593.33,126.97L592.61,127.16L592.21,127.22L587.04,125.87L586.24,125.37L584.79,124.10L583.72,123.56L582.53,123.55L581.78,123.60L580.30,123.14L579.62,123.00L579.09,123.05L577.96,123.33L574.43,123.94L572.89,124.39L573.12,124.83L573.59,125.06L574.08,125.65L574.50,125.88L575.12,125.99L576.44,126.06L576.94,126.15L577.71,126.79L577.00,127.32L576.22,127.78L576.77,128.21L577.66,128.65L578.42,129.25L579.42,129.68L581.00,129.64L581.54,129.97L582.45,130.06L583.53,130.07L584.57,130.19L584.26,130.47L581.11,130.35L577.90,129.91L576.28,129.35L575.65,128.97L575.17,128.54L574.93,128.04L574.76,127.00L574.54,126.62L573.30,126.17L571.39,125.99L569.40,126.06L567.91,126.31L566.44,126.95L564.90,127.76L563.37,128.43L561.90,128.66L562.44,129.39L562.72,129.61L562.38,129.91L560.45,129.48L558.43,129.23L560.57,130.13L566.12,130.94L568.30,131.74L565.07,132.18L564.16,132.47L565.99,133.24L567.05,133.53L568.67,133.06L569.76,133.09L570.80,133.30L571.34,133.62L568.79,133.91L566.13,133.76L560.23,132.68L559.14,132.81L558.66,133.26L559.09,134.03L562.16,135.90L561.23,135.50L560.05,134.99L558.65,134.85L557.40,135.07L557.05,134.72L556.54,134.45L555.92,134.26L555.22,134.12L554.88,134.43L555.76,134.73L555.97,135.18L555.73,135.68L555.29,136.14L555.00,135.86L552.78,134.61L552.28,134.15L552.09,133.74L551.81,133.37L551.01,133.05L550.07,132.98L547.53,133.09L546.73,133.06L538.10,131.35L537.13,131.42L535.07,131.89L534.55,131.88L534.28,131.72L533.99,131.67L533.44,132.03L533.18,132.32L533.05,132.59L533.02,132.87L533.05,133.18L533.42,133.64L534.30,134.26L535.49,134.71L536.78,134.69L538.34,134.52L539.76,134.81L543.17,136.28L547.03,137.11L547.63,137.37L548.42,138.04L548.97,138.34L549.55,138.48L551.86,138.75L559.26,138.88L561.20,139.70L563.08,141.13L564.17,141.52L569.48,142.53L567.98,142.57L566.20,142.34L563.24,141.68L562.02,141.21L559.48,139.59L558.09,139.31L550.57,139.48L550.12,139.89L550.34,140.31L551.13,141.09L550.37,141.29L549.59,140.29L548.29,139.46L546.62,138.82L543.85,138.21L542.93,138.13L542.03,138.30L541.19,138.93L541.17,139.34L545.99,144.26L548.92,145.41L552.28,144.73L552.68,144.83L552.11,145.23L551.52,145.50L549.94,145.98L550.23,146.48L550.86,147.01L551.66,147.47L552.47,147.78L552.92,148.05L552.93,148.78L553.24,149.07L553.68,149.09L558.78,148.75L564.40,147.83L568.11,146.98L569.01,146.84L569.88,146.79L570.65,146.88L571.36,146.84L572.97,146.27L573.71,146.23L574.91,146.43L576.03,146.40L578.48,145.97L579.63,145.61L580.34,145.48L581.67,145.59L582.59,145.34L583.15,145.38L584.14,145.59L585.11,145.64L586.21,145.47L587.59,145.03L588.12,144.74L588.62,144.40L589.14,144.14L589.74,144.13L590.36,144.21L591.20,144.22L592.01,144.14L592.53,143.93L593.35,143.71L597.84,143.32L596.07,143.91L594.35,144.34L588.89,145.10L588.33,145.22L587.16,145.67L586.90,145.92L590.17,147.88L599.98,149.36L598.76,149.40L593.94,148.70L591.17,148.76L589.90,148.61L587.90,147.68L586.69,147.37L584.45,147.57L583.70,147.41L582.41,146.99L580.71,147.13L580.11,147.13L579.77,147.44L580.48,148.03L579.87,148.21L579.23,148.40L576.06,148.69L575.28,148.85L572.62,149.65L572.30,149.78L571.73,150.09L571.30,150.24L570.77,150.33L570.43,150.36L570.08,150.44L569.58,150.72L570.26,150.95L570.67,151.62L571.18,151.92L571.92,152.01L573.56,151.89L574.26,151.94L575.51,151.86L575.77,151.89L576.82,152.21L577.50,152.30L579.85,152.29L578.88,152.51L577.97,152.55L576.28,152.47L572.75,152.67L571.54,152.60L570.29,152.30L569.21,151.72L568.52,150.81L567.56,151.34L563.43,152.89L563.88,153.35L565.92,152.69L566.97,152.48L567.88,152.52L567.00,154.39L567.59,154.90L569.75,154.70L574.93,156.82L577.39,157.31L578.29,157.18L580.53,156.59L583.69,156.30L585.23,155.85L586.63,155.24L588.01,154.79L589.50,154.82L587.62,155.22L583.97,156.52L578.33,157.69L576.28,157.86L574.24,157.59L570.42,155.87L564.69,154.64L562.45,154.56L560.15,155.05L560.00,155.46L559.34,155.55L558.48,155.52L557.71,155.54L556.92,155.77L554.27,156.91L555.35,157.36L558.09,157.63L559.46,157.93L559.17,158.20L555.89,157.97L554.34,157.66L553.62,157.12L552.02,157.36L550.87,157.78L548.46,159.24L546.88,159.99L546.21,160.45L546.12,160.92L546.61,161.11L547.38,161.03L548.21,160.88L548.85,160.87L551.48,161.15L552.06,161.49L552.08,161.90L551.63,162.20L550.85,162.18L549.66,162.00L548.14,162.00L546.96,162.29L546.83,163.01L545.03,163.44L543.19,164.04L541.50,164.76L540.17,165.58L541.95,165.45L543.89,164.98L545.86,164.62L547.77,164.84L546.79,165.36L545.99,165.66L542.87,166.45L542.34,166.69L542.03,167.09L541.63,167.90L541.73,168.01L541.95,168.21L542.13,168.48L542.09,168.84L541.73,169.08L541.32,168.94L541.00,168.67L540.96,168.53L541.01,168.47L540.80,168.28L540.46,168.06L540.15,167.92L539.70,167.92L539.36,168.06L539.06,168.25L538.71,168.37L531.61,170.01L527.61,171.33L526.02,172.44L525.52,172.66L525.09,172.96L524.97,173.26L525.42,173.52L525.78,173.43L527.58,172.86L528.59,171.85L532.34,171.21L533.57,170.47L534.71,170.45L535.78,170.34L536.66,170.35L537.22,170.69L536.67,170.83L536.17,170.90L536.19,171.17L535.13,171.61L524.42,174.33L524.01,174.87L523.80,175.49L523.87,175.90L524.39,176.03L525.91,175.81L527.74,175.85L530.73,175.33L532.30,175.37L530.91,175.65L529.44,175.82L528.09,176.07L527.11,176.59L526.36,176.86L522.27,177.88L522.17,178.32L520.93,179.58L520.69,180.32L520.98,180.99L521.51,181.41L522.76,182.11L521.74,182.61L522.50,182.79L523.31,182.84L526.12,182.61L534.53,181.20L532.05,182.32L529.04,183.06L526.21,183.40L524.26,183.29L523.21,183.37L521.54,183.80L519.86,184.37L518.84,184.92L517.89,185.35L513.55,185.74L513.53,186.56L512.32,187.45L509.41,188.78L506.61,189.82L505.85,190.29L505.66,190.69L505.72,191.11L505.60,191.52L503.35,192.71L502.35,193.81L501.50,194.97L500.44,195.97L499.37,196.32L495.95,196.95L493.69,197.16L492.41,198.02L491.39,199.15L489.93,201.42L489.92,202.19L490.73,202.66L492.38,203.14L493.14,203.22L494.91,203.12L495.64,203.15L496.29,203.36L497.13,203.95L497.61,204.17L499.10,204.41L500.70,204.45L502.27,204.33L503.69,204.10L506.90,203.32L508.21,202.74L507.87,202.23L508.02,202.02L508.21,200.66L508.05,200.14L507.80,199.74L507.34,199.47L506.58,199.32L506.89,199.02L508.60,198.99L510.18,198.59L513.09,197.32L513.47,197.27L513.66,197.40L513.88,197.42L514.35,197.05L515.22,196.13L515.53,195.89L516.36,195.51L518.72,194.71L519.27,193.71L520.22,193.61L521.31,193.67L522.29,193.14L522.35,192.54L521.76,192.26L521.54,191.83L522.73,190.77L522.76,190.60L522.76,190.32L522.86,190.09L524.53,189.98L525.06,189.63L526.06,188.83L526.60,188.48L527.61,188.00L528.67,187.63L529.75,187.35L533.74,186.68L534.89,186.63L537.09,186.86L538.19,186.76L539.23,186.22L539.95,184.89L539.68,183.39L538.19,180.98L538.55,180.95L538.97,180.88L539.34,180.85L539.02,180.46L538.83,180.35L539.16,180.03L539.54,180.13L539.84,179.85L539.48,179.36L539.66,178.94L540.06,178.50L540.38,177.91L540.77,176.85L540.49,176.73L539.87,176.30L539.77,176.14L542.74,173.80L543.02,173.49L543.33,173.21L543.78,173.02L544.30,173.02L544.13,173.35L543.73,173.74L543.54,173.97L544.43,174.40L545.75,174.83L547.14,174.98L548.19,174.61L548.31,174.70L549.22,174.23L550.17,173.66L550.38,173.43L550.94,173.41L551.99,173.64L552.64,173.63L560.56,171.65L569.28,171.37L570.14,171.18L573.08,169.96L574.25,169.57L575.43,169.45L576.55,169.51L578.89,170.03L580.05,170.06L583.14,169.57L584.42,169.53L582.14,170.42L579.55,170.55L577.00,170.41L574.82,170.47L573.33,170.82L569.25,172.36L568.45,172.48L565.27,172.69L561.42,172.44L550.34,175.67L548.22,176.02L547.53,177.56L547.23,177.97L546.71,178.33L545.63,178.69L545.14,179.01L544.22,179.85L543.83,180.29L543.69,180.67L543.87,181.02L544.19,181.25L544.35,181.51L543.52,182.77L543.73,183.29L545.29,184.12L547.07,185.46L548.10,185.74L548.54,184.80L548.71,183.93L548.70,182.25L551.49,181.58L552.11,181.30L552.70,180.88L553.70,180.32L554.81,179.85L555.73,179.65L554.75,180.61L554.66,181.35L556.92,183.77L557.82,184.23L558.73,183.91L559.30,182.82L559.71,179.73L559.59,178.73L560.82,178.64L560.86,179.14L560.55,179.80L561.38,181.81L560.68,182.79L559.91,184.27L559.52,185.68L559.91,186.44L561.50,187.11L562.21,187.23L563.42,187.03L564.44,186.70L565.11,186.33L565.73,185.92L566.54,185.45L567.43,185.17L568.45,184.97L569.45,184.66L570.33,184.05L570.59,183.44L570.37,182.92L569.87,182.48L569.32,182.13L569.63,181.82L570.47,182.20L571.13,182.69L571.84,183.05L572.79,183.07L573.02,182.46L573.52,181.81L574.42,180.91L575.11,179.91L575.59,179.60L576.44,179.66L577.32,178.99L578.39,177.28L579.23,175.47L579.41,174.48L580.58,174.27L581.20,174.60L581.31,175.22L580.93,175.89L579.44,177.27L579.50,177.74L580.72,178.03L582.06,177.71L588.29,175.51L589.53,175.23L590.33,175.19L590.41,175.44L589.51,176.02L582.66,177.88L577.85,179.93L577.39,180.30L575.72,182.08L575.06,182.96L575.01,183.78L576.07,184.40L577.43,184.79L578.54,184.98L579.27,184.70L579.47,183.69L578.67,181.10L578.89,180.43L579.32,179.96L579.95,179.69L580.68,180.01L580.50,180.24L579.86,181.82L579.91,182.58L580.19,183.44L580.73,184.21L582.60,185.24L583.80,187.72L585.53,189.12L587.53,189.95L593.07,192.26L591.28,192.32L582.58,189.06L581.72,188.37L580.94,188.33L580.06,187.99L577.27,186.23L576.55,185.98L575.40,185.80L573.31,185.67L571.52,185.83L569.90,186.43L568.32,187.59L567.25,188.95L567.22,188.99L565.55,191.12L565.35,191.68L565.29,192.18L565.10,192.85L563.77,194.53L561.90,195.31L558.15,195.90L558.49,196.99L559.55,198.30L561.83,200.25L561.48,200.62L560.62,200.95L560.98,201.27L562.78,201.82L565.25,203.35L566.27,204.49L566.53,205.85L565.81,206.96L565.78,207.02L563.74,207.58L565.49,208.51L566.05,209.75L565.44,211.09L563.68,212.30L561.36,212.90L556.69,212.72L554.05,213.04L552.96,213.46L551.38,214.48L550.58,214.87L549.84,215.03L548.38,215.18L545.33,215.82L544.73,216.04L544.17,216.49L543.28,217.62L542.77,218.11L542.11,218.49L539.18,219.82L538.89,220.07L538.39,220.61L538.13,220.74L537.46,220.65L537.06,220.69L530.86,222.20L527.75,222.31L526.06,222.57L524.67,223.38L523.51,224.38L522.46,224.96L520.24,225.92L519.58,226.29L519.13,226.60L518.01,227.74L517.63,228.40L517.47,229.66L517.43,229.75L517.18,230.22L517.07,230.79L517.12,233.57L516.78,233.93L516.37,234.04L515.99,234.19L514.44,234.46L513.47,234.07L512.95,233.32L512.70,232.53L512.89,231.97L514.17,230.73L514.66,230.15L514.89,229.53L514.93,228.91L514.75,227.93L514.80,227.59L514.78,226.85L514.46,226.41L513.62,226.93L513.19,227.02L512.50,226.88L511.30,226.49L510.10,226.66L508.81,227.49L506.84,229.31L505.18,231.46L504.49,233.62L504.69,235.69L506.99,240.83L507.90,241.46L508.20,241.93L507.93,242.73L507.49,243.55L507.31,244.11L507.52,244.42L507.91,244.66L508.95,245.05L508.32,245.38L507.99,245.75L507.90,246.18L508.04,246.64L506.89,246.94L506.02,247.81L505.61,248.77L505.83,249.31L506.90,249.83L508.78,251.31L509.89,251.86L509.93,250.75L510.14,250.48L510.62,249.99L511.82,249.10L512.23,248.62L511.24,247.35L511.46,245.80L511.96,244.34L512.08,243.64L511.70,243.24L511.76,242.56L512.04,241.85L512.35,241.37L512.70,240.98L513.03,240.72L513.55,240.48L514.50,240.16L516.02,239.74L517.80,239.43L519.64,239.27L521.35,239.35L523.61,239.98L524.61,240.63L524.33,242.44L525.22,243.22L527.51,244.40L532.41,248.71L533.45,250.30L534.39,254.12L534.72,254.50L536.86,255.08L537.30,255.38L538.26,256.44L539.26,257.11L540.53,257.62L541.26,257.68L541.87,257.54L542.39,257.38L542.83,257.35L543.62,257.02L544.22,255.89L545.03,254.69L546.48,254.12L546.33,253.08L547.20,252.51L548.26,252.04L548.69,251.29L548.43,250.58L547.92,250.08L547.18,249.70L546.25,249.40L546.18,248.93L546.42,248.00L546.99,246.58L547.69,246.05L548.68,245.50L549.63,245.08L550.19,244.96L551.02,245.37L551.10,245.86L550.86,246.53L550.73,247.46L550.92,247.99L551.35,248.48L554.77,250.89L555.60,251.20L556.77,251.23L559.07,250.67L560.19,250.65L557.79,252.67L558.27,255.13L560.39,257.07L562.90,257.54L563.07,256.51L564.07,255.63L565.43,255.05L566.64,254.90L566.45,255.16L567.09,255.60L566.74,256.19L565.89,256.83L565.54,257.42L565.47,257.47L565.13,257.61L564.83,257.72L564.85,257.91L564.97,258.04L565.15,258.13L565.33,258.26L564.98,258.66L566.78,259.28L569.78,259.91L576.05,259.39L579.78,259.55L580.58,259.47L579.48,257.78L580.60,257.67L581.04,257.73L581.08,257.48L581.29,256.83L582.61,256.63L583.83,256.22L583.92,256.45L583.87,256.65L583.61,257.09L583.53,256.75L583.30,256.58L582.07,257.06L582.08,257.50L582.27,257.83L582.67,258.00L583.38,257.95L583.27,257.78L583.21,257.75L583.32,257.43L587.23,259.02L589.48,258.24L591.12,258.57L596.42,260.48L597.67,260.47L599.07,259.77L599.91,258.92L600.78,257.70L601.38,256.54L601.40,255.81L603.41,254.55L604.44,255.85L605.22,256.32L606.42,256.36L606.51,256.10L606.52,256.04L606.48,256.01L606.40,255.85L607.39,255.92L608.13,256.34L608.82,256.88L609.69,257.32L627.94,263.63L633.57,264.38L633.57,264.38L633.83,264.41L634.99,265.21L634.67,265.62L633.73,265.04L632.66,264.97L631.50,265.02L630.28,264.79L629.98,265.17L634.07,266.38L632.70,266.47L627.12,265.81L625.97,265.41L624.07,264.35L623.77,264.01L623.62,263.68L623.34,263.35L622.69,263.01L618.47,262.52L617.28,262.63L615.02,263.08L617.32,264.77L617.82,265.31L614.80,265.30L614.13,265.16L613.33,264.66L613.03,264.07L612.58,263.57L611.30,263.38L609.16,263.88L606.76,265.05L602.16,267.73L601.94,268.84L600.56,269.75L598.86,270.39L597.66,270.71L596.82,270.77L595.29,270.65L594.58,270.74L593.77,271.12L591.79,272.26L587.68,274.21L582.47,278.17L579.58,279.77L579.19,279.82L578.22,280.03L577.42,280.33L577.74,280.91L577.70,281.93L577.84,282.22L578.58,282.81L580.68,289.00L581.52,290.15L581.65,293.22L582.78,294.06L582.86,294.23L582.51,294.86L582.29,295.83L581.76,296.32L581.12,296.72L580.60,297.13L580.19,298.18L580.37,299.22L581.16,301.07L581.60,304.00L582.33,305.18L583.85,305.25L584.91,305.43L586.26,305.93L587.39,305.94L587.76,304.61L589.51,303.28L590.50,302.82L591.71,302.79L590.67,303.97L589.24,306.04L587.38,307.62L585.06,307.37L584.74,307.78L585.32,308.53L584.68,309.41L583.54,310.34L582.65,311.22L582.92,311.83L583.43,312.32L584.18,312.72L585.13,313.06L585.46,313.54L586.27,315.98L586.86,315.31L587.30,314.42L587.96,313.78L590.05,313.76L591.13,313.37L593.14,312.42L596.00,311.62L596.65,311.20L597.35,310.59L598.30,309.91L599.13,309.13L599.49,308.21L600.49,308.23L600.98,308.71L601.09,309.46L601.00,310.30L599.97,310.74L599.61,311.82L599.77,312.96L600.31,313.61L603.16,314.35L604.63,314.28L605.79,313.52L606.77,313.03L608.28,312.85L610.99,312.83L613.45,312.55L614.86,312.09L615.78,311.25L616.19,311.38L615.37,312.56L613.65,313.34L611.68,313.69L610.15,313.59L609.92,314.23L610.04,315.54L610.23,317.68L610.59,318.90L608.21,320.15L607.04,320.55L604.71,320.41L603.43,320.72L601.24,321.67L600.47,321.83L599.59,321.93L598.91,322.14L598.68,322.66L598.66,324.30L598.84,324.56L600.82,325.03L602.08,325.11L603.51,324.97L602.49,325.89L599.38,326.52L599.56,327.44L599.02,327.43L598.28,327.50L597.56,327.66L597.07,327.97L596.67,328.19L596.28,327.94L595.75,327.30L594.68,327.05L588.03,326.56L586.21,326.64L584.41,327.41L583.84,329.36L579.60,333.87L578.48,336.13L579.09,338.18L580.92,339.52L586.25,341.26L584.99,341.67L581.68,341.96L580.64,342.46L579.96,342.52L574.69,344.10L567.49,346.96L566.00,347.74L565.18,348.59L564.87,349.58L564.95,361.83L565.41,363.78L566.45,365.80L568.11,367.69L570.37,369.21L572.38,370.04L573.02,370.31L574.38,370.31L575.51,369.48L576.40,369.43L579.93,369.98L580.82,370.32L579.99,370.51L579.27,370.56L578.68,370.43L578.27,370.09L577.44,370.31L576.62,370.61L576.01,371.17L575.76,372.14L573.56,372.23L572.54,372.09L571.46,371.81L571.05,371.58L570.31,370.96L569.76,370.75L569.16,370.77L568.73,371.01L568.44,371.27L568.28,371.39L566.28,370.80L564.81,369.67L563.88,368.29L563.44,366.96L564.11,359.61L563.45,358.02L562.06,357.49L558.96,357.90L557.44,357.79L554.56,357.18L553.12,357.20L551.96,357.63L551.29,358.67L551.43,359.94L552.35,362.55L552.39,365.10L552.60,366.46L552.76,367.47L551.95,368.59L551.95,368.59L550.99,369.93L550.60,370.12L550.35,369.66L550.17,368.56L549.74,367.57L544.01,361.59L543.68,360.83L543.58,359.98L542.73,358.89L540.88,357.38L538.20,356.59L523.40,356.40L520.61,355.94L513.29,353.74L512.60,353.03L512.31,351.73L511.57,350.57L510.42,349.86L508.87,349.87L508.53,348.99L507.73,348.23L506.68,347.61L505.58,347.16L505.47,348.09L506.41,349.86L506.14,351.25L503.99,350.56L495.72,350.11L492.68,350.53L491.02,350.30L489.32,350.27L488.24,350.35L487.85,350.10L487.49,349.74L487.05,349.47L484.97,348.94L482.85,348.69L480.65,348.83L478.38,349.44L475.75,350.70L474.35,351.15L472.99,351.08L472.03,351.17L468.00,352.25L467.71,352.51L466.64,353.11L465.70,353.45L465.77,352.95L465.94,352.45L465.62,352.18L465.00,352.30L464.21,353.00L461.95,355.68L460.76,356.77L459.56,357.46L454.07,357.80L451.76,358.73L444.67,359.56L443.11,359.57L441.75,359.40L440.50,359.08L439.27,359.10L425.30,362.67L423.54,363.44L422.88,363.64L422.81,364.13L422.51,364.40L421.36,364.80L422.03,365.52L423.15,365.55L424.56,365.18L425.80,365.12L429.18,366.53L430.78,366.76L431.41,366.69L432.02,366.50L432.67,366.38L433.52,366.52L434.14,366.91L434.87,367.94L436.00,368.69L436.35,369.67L437.07,369.99L437.64,370.01L438.29,369.93L439.54,369.65L439.32,368.68L440.01,367.82L441.22,367.27L442.54,367.20L442.61,366.87L442.50,366.62L446.07,365.70L447.80,365.43L449.45,365.43L453.84,366.92L455.50,366.85L456.88,366.78L462.18,367.39L465.52,368.97L467.32,369.45L469.58,369.20L469.53,370.10L470.09,370.42L471.06,370.34L472.19,370.06L472.19,370.38L472.31,370.56L472.68,370.85L467.55,371.33L466.94,371.47L466.46,371.88L465.72,372.82L465.66,373.36L465.38,374.57L464.74,375.67L463.63,375.90L462.35,375.77L461.75,376.26L461.57,376.98L461.54,379.05L463.53,384.55L464.73,384.75L466.27,384.55L468.07,384.98L466.73,385.40L463.09,385.86L462.28,385.79L461.95,385.82L461.60,386.05L460.60,386.87L460.22,386.99L458.69,387.13L456.34,387.99L454.01,389.35L452.51,390.99L452.45,392.29L453.41,395.96L454.01,396.83L455.92,397.22L459.83,397.56L461.59,398.15L461.21,398.67L456.68,399.17L455.34,399.07L454.74,398.74L453.69,397.76L453.11,397.66L452.29,398.12L451.58,398.91L451.09,399.81L450.96,400.57L449.48,401.31L447.70,402.52L445.96,403.94L443.19,406.73L441.14,408.03L437.39,409.86L430.94,412.18L419.88,414.01L418.49,413.84L417.12,413.44L415.90,413.27L414.65,413.36L411.55,414.25L409.69,414.61L407.95,414.76L405.71,414.50L404.96,414.78L404.28,415.16L403.58,415.38L402.68,415.31L394.77,412.32L391.66,412.28L390.22,414.44L388.93,412.54L388.03,412.24L386.15,412.72L383.21,413.95L381.68,414.40L379.96,414.57L377.59,414.06L376.88,414.17L376.38,414.80L376.06,415.71L375.63,416.45L374.81,416.54L373.51,415.89L371.51,414.34L370.39,413.76L370.10,414.89L367.82,414.76L366.57,414.33L364.07,411.85L363.43,411.44L361.73,410.75L360.54,410.53L359.54,410.65L359.07,411.09L359.50,411.82L359.16,412.26L358.23,411.93L356.62,413.71L353.64,414.21L350.46,413.96L348.30,413.46L347.22,413.47L344.20,414.16L342.75,414.05L340.31,413.35L339.37,413.56L339.17,414.65L338.83,415.09L338.00,415.13L337.67,415.30L337.61,415.57L337.59,415.96L337.18,416.50L336.58,416.52L335.95,416.63L337.22,417.07L341.23,417.84L342.52,417.69L343.27,418.64L345.65,419.79L346.29,420.89L347.11,420.55L347.57,421.44L347.44,422.52L346.89,423.70L346.11,424.85L345.07,426.79L344.33,427.41L342.75,427.78L341.37,427.71L338.94,427.24L337.52,427.53L336.19,428.00L335.19,428.11L334.16,427.91L332.75,427.44L333.81,428.15L335.74,431.03L335.40,431.48L334.66,432.23L335.57,432.59L336.81,432.22L337.06,430.81L338.45,430.91L346.95,435.02L348.40,435.49L354.13,436.47L355.65,436.09L356.50,435.35L356.00,434.44L357.19,433.48L357.38,432.71L356.81,432.13L355.74,431.75L356.80,431.69L360.68,432.76L362.99,432.89L364.02,432.80L363.62,433.34L360.79,432.88L358.60,433.99L357.64,435.90L358.55,437.88L358.21,438.34L357.59,437.69L356.83,437.57L354.66,437.76L351.13,437.09L348.26,437.20L347.25,437.03L346.39,436.58L344.98,435.56L343.99,435.24L343.95,435.53L343.71,436.14L343.66,436.45L338.99,434.14L338.20,434.50L338.70,435.96L341.52,437.68L341.40,439.46L340.22,440.03L341.21,441.40L344.78,443.92L345.18,444.55L345.45,444.75L346.18,444.78L347.26,444.26L348.79,444.32L349.79,444.00L350.79,443.53L351.79,443.18L353.17,443.05L354.30,443.25L360.11,445.45L361.86,445.04L362.48,444.96L362.99,445.82L363.48,446.18L366.23,444.51L366.80,444.00L367.01,443.71L367.25,443.63L367.91,443.77L369.39,441.98L372.35,441.66L372.82,441.73L375.51,442.12L377.54,442.66L382.17,444.90L384.75,445.73L387.63,445.68L387.15,444.63L387.14,443.73L387.75,443.30L389.13,443.60L389.31,444.35L389.62,444.90L390.21,445.26L390.73,445.25L391.70,444.83L392.26,444.71L393.34,444.10L393.93,444.02L394.01,444.69L393.54,445.37L392.73,445.94L391.97,446.32L391.65,446.41L391.62,447.52L392.26,448.41L393.33,449.06L394.58,449.43L393.48,449.87L392.20,449.56L389.66,448.32L389.52,450.00L390.18,451.89L391.25,453.54L392.41,454.45L398.03,455.76L399.32,455.64L401.92,458.35L404.40,459.50L405.20,459.71L405.95,459.62L407.21,459.22L407.44,459.48L407.36,459.61L407.11,460.03L406.74,460.53L404.14,461.73L400.56,461.16L397.05,460.09L394.65,459.84L394.42,459.35L394.13,458.95L394.46,458.48L394.88,458.63L394.87,457.91L394.13,458.18L392.76,458.85L392.34,459.01L389.70,458.71L388.89,459.89L388.79,461.07L388.39,461.94L386.64,462.16L386.40,462.77L386.37,463.03L386.41,463.38L387.53,463.87L390.63,466.48L391.46,466.82L392.28,466.10L392.85,466.36L393.36,466.98L393.94,467.36L394.79,467.30L396.29,466.82L397.32,466.62L398.18,466.64L398.80,466.90L400.26,467.78L400.70,468.41L401.06,468.68L401.48,468.64L402.60,468.13L402.93,468.04L403.33,468.26L403.74,468.62L404.02,469.02L404.00,469.38L403.90,469.85L404.38,469.85L404.93,469.62L405.07,469.41L407.85,470.42L407.82,469.58L407.63,468.60L407.64,467.66L408.21,466.97L409.13,466.70L410.30,466.61L411.45,466.67L416.80,468.04L419.06,468.62L419.83,469.12L420.11,469.80L420.16,471.64L420.39,472.43L421.18,473.41L421.44,474.01L421.55,475.34L421.43,476.89L421.18,478.13L421.09,478.58L420.55,480.29L420.34,480.29L420.09,480.26L419.89,480.35L419.75,480.72L419.92,481.76L420.59,483.20L421.74,484.31L423.27,484.33L424.15,484.73L426.48,488.56L427.14,491.28L427.54,492.93L428.43,493.90L444.56,501.22L450.30,501.49L451.24,501.95L452.34,502.75L454.19,502.16L455.77,500.62L456.01,498.61L456.04,498.61L456.57,498.53L457.60,498.79L458.21,498.74L458.76,498.46L459.75,497.69L460.19,497.45L462.81,496.75L464.34,496.54L465.32,496.63L465.54,496.65L470.64,496.22L471.34,495.85L474.15,494.86L475.01,494.74L475.20,495.11L475.20,495.80L475.37,496.56L476.08,497.13L481.98,498.92L485.31,499.20L486.95,499.02L490.31,498.64L493.85,499.25L495.64,498.96L498.61,497.98L498.62,497.98L505.43,495.72L506.52,495.16L507.48,494.89L512.72,494.37L514.27,493.75L515.76,492.98L517.22,492.45L518.70,492.55L520.10,492.94L521.88,493.13L523.60,492.73L524.81,491.37L525.36,492.42L524.97,493.39L523.88,494.11L522.33,494.45L518.99,494.15L517.53,494.21L513.78,495.69L508.06,497.29L507.37,497.61L506.50,498.12L505.67,498.72L505.10,499.32L504.41,499.94L503.60,500.08L502.76,500.05L502.00,500.17L491.27,505.60L489.24,506.15L487.53,506.07L485.87,505.58L484.35,505.40L482.82,505.49L481.16,505.77L473.69,508.65L470.05,509.56L468.09,508.44L465.88,509.05L466.40,510.23L465.49,510.83L464.08,511.21L463.07,511.76L462.23,513.00L461.52,513.65L461.50,513.66L460.66,513.63L459.53,512.84L459.69,514.08L458.92,515.70L456.96,518.74L456.68,519.60L456.64,520.12L456.44,520.70L455.67,521.71L455.05,522.22L452.83,523.48L452.25,522.57L453.92,521.75L453.76,521.00L451.21,521.29L448.35,520.59L443.96,518.74L441.34,518.09L435.71,517.43L427.77,514.79L426.76,513.83L425.66,511.64L418.13,507.01L412.59,505.13L404.95,500.18L403.69,499.81L400.97,499.86L399.34,499.53L394.45,497.72L393.08,497.41L390.07,497.19L377.15,493.48L370.98,493.09L370.65,493.58L371.14,494.25L371.18,495.11L370.71,495.98L369.69,496.67L369.09,496.63L366.93,495.65L366.92,496.50L367.20,498.22L367.09,498.80L366.85,499.43L366.20,501.91L366.10,502.84L365.18,502.88L364.47,503.16L363.84,503.52L363.15,503.84L355.99,505.96L354.60,506.13L353.00,505.93L349.29,504.13L348.74,503.70L347.87,502.40L347.26,501.94L341.25,499.68L340.57,500.05L339.87,501.19L339.34,502.43L339.19,503.14L336.85,504.79L335.93,505.29L332.90,508.33L328.39,515.58L324.63,517.70L320.70,518.24L318.67,518.86L317.17,520.09L315.69,520.80L308.74,522.12L307.94,521.55L307.00,521.68L306.16,522.46L305.76,523.84L303.77,524.77L301.98,525.96L300.09,526.74L297.80,526.48L292.56,524.78L291.06,523.86L290.71,524.37L290.49,525.37L289.68,525.92L289.05,526.63L289.40,528.11L291.20,529.63L292.01,530.64L292.02,532.03L291.21,531.18L288.46,529.97L287.63,528.90L287.19,529.07L286.93,529.13L286.33,529.17L286.90,528.21L287.48,527.02L287.84,525.95L287.75,525.34L287.17,525.25L285.75,525.69L285.06,525.78L283.67,525.24L281.75,525.54L280.32,526.41L279.13,527.74L277.92,529.37L275.13,532.33L273.74,533.19L273.27,533.61L267.21,533.73L266.72,533.49L265.65,533.15L264.61,533.26L263.93,535.10L263.32,536.17L262.61,537.10L262.09,537.44L260.99,537.31L257.57,537.69L245.43,541.00L242.15,541.11L239.73,540.14L239.16,540.31L238.43,541.00L237.39,541.63L235.56,542.48L233.70,542.60L232.70,541.51L231.67,539.09L230.17,538.53L226.66,538.81L223.91,538.52L218.23,538.76L215.84,538.54L215.11,538.62L212.63,539.84L212.32,540.06L211.79,540.34L211.31,541.27L210.60,542.99L210.71,543.03L210.78,543.34L210.69,543.81L210.32,544.33L209.79,544.55L209.20,544.52L208.50,544.31L207.47,547.14L209.49,548.96L212.94,550.00L216.21,550.41L217.51,550.41L219.25,550.13L220.76,549.30L221.35,547.68L222.11,546.53L223.99,546.19L226.10,546.42L227.56,546.92L228.44,547.76L229.97,549.77L232.46,551.28L235.52,554.49L236.33,555.81L236.71,557.31L236.97,560.65L236.89,561.69L236.52,562.30L236.01,562.96L235.54,564.13L235.44,564.84L235.51,565.38L236.34,568.07L236.74,568.81L237.23,569.26L237.77,568.89L239.89,567.21L243.20,566.10L243.88,565.97L244.78,566.22L246.02,566.98L246.73,567.12L250.26,565.54L252.19,564.33L252.36,563.49L252.24,563.14L252.74,561.91L252.83,561.47L252.57,561.27L251.70,561.07L251.39,560.89L250.73,560.02L250.23,559.66L249.44,559.37L252.15,559.48L253.00,559.35L253.69,558.84L254.11,558.13L254.61,557.55L255.52,557.42L256.67,557.30L257.22,557.32L257.77,557.59L257.38,556.22L257.13,555.81L257.48,555.28L258.96,554.71L259.48,553.70L260.02,552.97L261.58,553.21L262.04,554.18L260.45,557.33L260.58,558.72L266.04,555.94L267.46,555.56L270.88,555.95L272.44,555.88L274.52,555.16L276.11,555.25L279.23,557.03L280.31,556.71L280.73,556.28L282.59,555.03L282.83,554.66L282.83,553.95L283.07,553.40L283.67,552.95L284.64,552.56L285.63,552.27L286.31,552.14L286.73,551.51L286.91,550.21L288.13,549.83L289.78,550.02L291.23,550.46L291.72,550.48L292.27,550.34L292.82,550.28L293.27,550.54L292.69,553.22L293.08,553.38L293.56,553.31L293.93,553.15L294.01,553.01L305.65,556.95L308.88,557.19L315.47,556.67L318.81,557.65L323.91,561.18L324.73,562.24L324.60,563.70L324.67,565.05L326.09,565.70L326.43,565.17L326.43,564.43L326.89,563.87L327.64,563.60L328.56,563.68L328.90,563.15L326.97,562.39L327.89,561.96L326.62,561.30L325.96,561.20L326.34,560.61L329.07,561.03L328.12,559.49L323.88,558.45L323.57,556.68L326.76,558.22L327.79,558.34L328.82,557.92L329.65,557.11L329.92,556.14L329.26,555.22L329.60,554.70L330.42,555.05L331.31,555.03L332.23,554.63L332.45,554.42L333.11,553.83L333.55,554.61L334.21,554.94L335.93,554.93L334.41,555.85L332.74,556.63L331.45,557.62L331.07,559.24L331.07,560.32L330.93,561.13L330.99,561.84L331.56,562.67L332.23,563.11L334.86,563.97L332.88,565.21L332.78,566.80L333.75,568.30L335.05,569.25L334.27,569.96L333.92,570.20L334.53,571.40L335.03,572.02L335.72,572.46L336.41,572.49L337.87,572.01L338.39,571.97L339.19,572.05L341.46,571.95L342.18,572.07L342.77,572.65L345.24,577.80L346.76,583.43L348.18,586.38L349.78,585.86L350.80,586.40L351.75,587.42L353.12,588.35L354.38,588.73L357.58,589.19L358.90,589.16L359.71,586.75L361.37,584.84L363.20,583.30L364.48,581.97L365.72,581.42L367.49,581.69L369.41,581.56L371.11,579.81L371.76,581.01L372.67,581.72L373.79,581.58L375.60,579.58L376.23,579.28L376.91,579.24L377.59,579.41L377.84,579.11L379.46,577.87L379.83,577.28L376.66,576.18L375.75,575.24L376.15,573.62L377.39,572.55L379.03,572.31L380.78,572.60L382.37,573.12L383.38,569.03L384.36,567.32L386.58,565.26L388.57,563.87L390.48,562.79L392.33,562.04L394.13,561.59L394.23,560.22L395.14,556.93L394.76,555.83L394.93,555.40L395.26,555.03L395.61,554.94L395.95,555.17L396.06,555.44L396.10,555.68L396.24,555.84L396.31,556.29L395.94,558.67L396.01,560.28L396.50,561.34L397.48,562.08L399.00,562.75L405.10,562.94L406.87,562.17L408.19,561.27L409.52,560.72L412.66,561.27L415.50,561.31L416.93,561.64L417.64,562.07L418.68,563.05L419.37,563.38L420.18,563.41L421.80,563.07L422.25,563.04L424.45,562.61L425.38,562.72L427.64,564.32L429.37,564.80L432.60,564.45L433.93,564.69L438.40,565.50L439.92,566.15L449.72,574.27L459.02,588.87L459.36,591.70L457.48,595.08L457.91,595.25L459.62,594.37L461.16,593.26L461.63,592.07L460.14,590.92L459.99,589.82L461.47,588.08L463.43,586.54L464.74,586.00L467.76,586.30L469.34,586.70L471.04,588.84L483.27,595.01L487.37,599.06L488.44,599.73L494.18,601.84L495.75,601.84L496.36,600.45L500.15,598.95L499.82,598.67L499.09,597.74L500.44,596.41L500.34,595.54L499.43,594.96L498.26,594.52L497.12,593.78L496.68,592.80L496.42,590.05L495.35,590.30L494.35,590.39L493.39,590.32L492.42,590.07L496.63,587.82L497.52,587.61L497.73,588.00L497.66,589.27L497.65,589.39L497.71,589.82L498.21,590.14L500.09,590.74L502.42,592.37L502.37,592.93L501.98,593.89L501.94,594.61L502.95,594.46L504.59,593.84L506.20,593.53L506.25,593.52L507.90,593.45L509.49,593.61L511.08,594.15L513.48,595.56L515.11,596.52L516.51,596.76L519.83,596.64L521.57,596.86L522.97,597.38L523.13,597.44L527.49,600.02L528.53,601.41L529.71,602.26L529.85,602.28L530.20,601.98L534.31,599.47L536.41,600.68L536.74,600.76L537.80,600.55L539.88,600.70L543.31,601.44L543.61,600.88L543.36,600.36L543.02,599.85L544.20,599.96L548.83,601.34L550.64,601.49L551.43,600.50L551.48,599.05L548.75,592.05L547.97,589.73L547.18,589.30L546.26,588.15L545.72,587.61L546.03,587.06L546.92,588.05L552.65,594.45L553.30,596.39L553.85,598.03L554.55,598.78L556.49,600.30L557.50,602.09L559.21,603.93L559.22,604.95L559.41,605.69L560.23,606.71L561.28,607.60L562.16,607.99L563.45,607.64L564.22,606.78L564.98,604.97L564.87,604.24L563.33,601.65L564.51,601.77L568.94,603.13L568.99,603.15L569.96,604.18L568.88,605.24L566.79,606.29L565.30,607.62L566.01,609.47L567.95,609.99L569.80,608.64L571.58,606.72L573.32,605.46L574.79,605.65L575.28,605.84L576.94,606.49L578.95,607.66L579.45,608.20L580.02,608.83L578.69,609.77L579.14,610.08L580.19,610.00L580.69,609.83L581.30,610.50L582.06,612.14L582.53,612.83L582.24,613.39L579.88,613.30L578.64,613.54L577.76,614.31L577.99,615.05L582.57,620.87L583.94,621.91L585.58,621.80L586.40,620.99L586.82,619.08L587.62,618.43L588.38,618.47L588.81,618.98L589.16,619.63L589.69,620.04L602.70,621.22L614.59,625.78L624.81,626.49L626.91,628.32L628.97,628.21L629.21,628.19L631.40,629.25L642.58,638.40L643.58,639.21L646.44,640.53L647.54,641.39L648.26,642.87L648.73,643.42L651.19,644.34L651.89,644.74L654.57,646.98L655.86,647.69L658.44,648.64L662.53,646.48L665.53,646.05L665.85,645.74L667.01,645.02L668.19,644.43L668.53,644.58L671.57,644.58L687.82,647.54L691.10,647.51L700.50,644.41L703.60,644.67L707.62,647.75L712.10,651.19L714.86,651.27L715.80,647.36L716.74,644.87L717.92,644.03L723.45,640.96L727.11,639.86L728.86,639.58L730.33,639.77L734.84,641.36L736.41,641.38L737.14,641.11L738.03,640.67L738.96,640.34L739.89,640.39L741.31,641.05L742.11,641.27L744.53,640.74L749.67,641.10L752.39,639.88L755.10,637.44L757.26,634.12L758.32,630.24L758.32,627.39L758.53,625.67L759.22,623.63L759.73,623.44L762.12,624.34L762.70,624.21L763.28,623.91L763.85,623.48L764.35,622.99L766.32,620.23L765.06,618.79L742.54,612.42L733.17,611.49L719.43,604.77L718.99,603.86L718.74,602.03L718.79,600.12L719.20,598.94L717.80,598.36L717.05,599.10L716.76,600.45L716.80,601.70L714.32,600.06L708.50,597.91L707.97,597.44L707.73,596.72L707.57,595.93L707.29,595.24L708.84,595.04L711.56,595.46L714.51,594.56L715.58,594.92L717.79,596.26L719.26,596.63L720.17,596.39L720.50,595.51L720.27,593.93L719.56,592.99L709.40,587.71L704.50,587.08L704.04,587.24L703.51,587.78L702.89,588.29L702.18,588.36L697.56,587.36L698.79,587.26L699.95,587.33L701.15,587.23L702.47,586.68L703.38,585.86L704.01,585.04L704.68,584.53L709.85,585.26L711.35,585.73L711.74,585.85L712.41,587.09L713.67,586.71L714.63,586.84L715.55,587.15L716.67,587.24L718.47,586.71L718.62,586.61L718.81,586.65L719.09,586.71L719.97,587.05L719.99,587.11L721.91,587.69L726.90,590.36L730.30,590.69L731.31,590.57L735.08,590.13L739.73,588.85L742.77,587.00L742.71,586.51L742.21,585.97L740.35,585.40L741.67,585.16L742.42,584.92L742.87,584.53L743.83,582.49L744.44,581.84L745.34,581.61L745.33,580.36L745.40,579.58L745.60,578.84L745.82,578.75L746.41,578.20L747.01,577.42L747.23,576.64L746.61,575.40L745.35,575.16L742.81,575.73L740.44,575.68L735.80,574.88L733.17,575.70L733.06,574.05L732.16,573.18L731.01,572.61L730.16,571.81L732.00,571.65L735.56,571.80L737.28,572.25L737.87,572.62L739.09,573.66L739.90,573.97L740.71,573.95L742.15,573.58L743.01,573.71L743.58,573.37L744.39,572.44L745.08,571.48L745.35,571.02L745.94,570.99L748.74,570.18L751.67,570.11L753.11,569.53L754.08,567.97L754.12,569.33L755.14,572.51L755.36,574.66L755.77,575.33L756.95,575.94L761.87,577.07L764.37,577.12L768.67,576.48L773.80,575.00L775.23,573.92L775.97,572.06L775.64,572.05L774.73,572.75L773.79,573.05L771.51,571.88L770.65,571.14L770.05,570.31L777.31,567.87L778.30,566.35L776.68,566.52L765.95,561.98L764.52,560.69L766.30,561.08L769.92,561.38L771.43,561.83L772.80,563.47L773.55,563.95L774.37,564.16L775.95,564.30L776.77,564.49L777.97,565.25L778.38,564.95L779.08,563.59L778.97,563.10L778.41,562.57L775.66,560.91L774.66,559.62L773.16,557.00L773.44,556.42L775.10,557.35L777.37,560.64L779.07,561.85L781.35,568.11L782.21,568.14L783.40,567.45L789.93,565.01L792.44,563.61L793.03,563.47L793.82,563.09L794.53,562.06L795.19,561.48L795.88,562.45L797.46,561.82L803.42,561.92L803.98,561.58L804.63,560.44L806.63,558.48L807.59,557.03L810.12,554.54L811.23,553.03L812.81,549.18L813.96,547.08L815.08,546.37L816.07,546.01L819.49,543.78L825.11,538.83L825.63,538.08L825.94,537.26L829.54,533.56L830.72,533.06L831.32,532.42L831.58,528.04L833.02,525.12L833.65,523.47L833.84,522.08L835.05,520.50L835.32,517.83L835.25,515.07L835.83,510.85L835.25,508.35L834.15,506.10L822.71,491.49L816.43,485.89L798.54,475.63L798.28,476.16L799.13,476.38L799.89,476.72L800.55,477.19L801.04,477.78L797.65,477.76L794.91,476.17L792.53,474.13L790.24,472.78L784.80,470.92L783.56,470.22L782.36,469.29L781.08,468.57L779.60,468.47L779.79,469.20L776.74,468.05L773.05,467.35L769.34,467.34L766.25,468.24L764.72,469.25L762.73,470.77L760.83,472.56L759.50,474.30L758.12,475.04L755.72,475.84L753.66,476.83L753.36,478.15L753.08,478.68L752.33,477.99L751.51,475.49L750.70,474.69L748.23,473.62L746.78,473.29L745.31,473.51L744.48,471.59L743.15,466.75L742.03,465.47L741.28,464.93L740.07,463.24L739.36,462.72L735.71,462.14L733.81,461.36L734.21,460.41L735.66,459.65L736.92,459.49L738.68,459.57L740.58,459.00L748.50,455.43L749.64,455.25L751.02,455.30L758.94,453.15L760.24,453.03L761.61,453.27L762.43,453.30L763.09,452.91L766.50,449.47L768.18,446.29L768.79,443.20L768.98,431.59L769.25,430.52L769.16,429.13L768.73,427.81L767.95,426.87L768.70,426.54L767.37,425.04L766.87,424.72L766.67,424.32L766.86,423.61L767.12,422.83L767.22,422.23L766.67,421.09L765.74,420.37L764.65,419.79L763.65,419.03L759.50,413.70L757.97,410.26L757.21,409.71L755.15,408.76L754.37,407.88L753.31,405.70L751.08,403.82L749.26,397.73L748.88,395.96L747.43,394.89L735.45,392.59L733.18,392.93L732.03,392.85L731.35,392.15L730.96,391.45L729.13,389.42L727.83,388.69L725.89,388.16L723.84,388.12L722.25,388.90L721.96,388.41L721.60,387.97L721.17,387.59L720.68,387.27L726.06,386.80L727.56,386.96L731.01,388.41L731.10,388.63L732.05,390.12L732.42,390.38L734.74,390.74L738.54,391.98L739.70,392.36L748.58,393.19L749.13,393.45L751.20,394.40L752.76,396.18L755.76,403.24L756.51,404.20L757.53,405.07L758.79,405.82L760.26,406.42L761.71,406.63L764.70,406.42L766.04,406.63L767.21,407.41L769.16,409.63L770.29,410.35L770.99,411.20L770.03,412.30L767.46,414.02L769.23,413.73L769.73,413.58L771.78,411.55L772.09,408.90L767.18,394.26L764.47,385.43L764.56,383.05L765.35,378.08L765.09,375.77L768.15,373.63L770.86,372.84L777.39,372.69L775.94,370.69L769.57,366.38L768.59,364.78L768.61,364.47L769.21,362.59L769.14,361.79L768.01,360.89L767.56,360.21L767.11,359.72L764.87,358.51L764.61,358.02L764.10,356.60L763.79,356.11L764.11,355.90L764.76,355.31L764.21,354.97L763.93,354.49L763.85,353.96L763.89,353.47L764.65,352.17L764.89,350.32L764.78,348.46L764.48,347.17L763.95,346.38L762.49,344.83L762.19,344.09L762.39,343.39L762.80,342.93L763.09,342.33L762.91,341.23L761.84,339.66L751.50,330.20L740.58,324.04L738.41,321.97L736.00,320.98L735.00,320.36L734.31,319.53L733.80,318.39L732.16,319.93L731.59,320.14L730.81,320.00L731.00,319.90L731.04,319.57L730.99,319.19L730.93,318.99L730.67,318.86L730.48,318.99L730.29,319.17L730.06,319.22L729.50,319.01L729.14,318.77L729.02,318.43L729.15,317.94L730.84,318.00L731.61,317.88L732.45,317.51L732.17,317.02L732.07,316.52L732.13,316.01L732.31,315.48L732.21,315.01L732.24,314.79L732.41,314.51L733.63,314.89L733.93,314.44L731.30,312.63L730.65,311.95L729.62,309.70L729.60,307.43L731.03,299.01L731.56,298.52L731.27,298.18L731.47,297.62L732.29,296.30L732.56,295.95L732.84,295.73L733.03,295.35L733.00,294.59L732.02,293.10L731.93,292.87L731.45,292.39L731.51,291.61L731.75,290.80L731.79,290.19L731.61,289.51L731.64,287.76L731.77,287.23L731.79,287.04L731.64,286.88L731.01,286.46L730.85,286.29L730.88,285.86L731.21,284.49L731.86,283.20L731.86,282.71L731.46,281.53L731.62,280.87L732.23,280.46L732.96,280.10L733.52,279.59L733.55,278.90L733.18,278.43L733.13,278.00L734.12,277.40L733.35,276.18L733.05,275.34L733.18,274.59L733.31,274.18L733.33,273.76L733.48,273.36L734.03,273.02L734.41,272.86L734.75,272.67L735.04,272.45L735.30,272.21L735.83,271.18L735.39,269.32L735.89,268.02L736.25,267.54L736.50,267.26L737.44,266.45L737.92,265.95L740.32,262.22L740.53,261.49L740.29,261.14L739.84,260.79L739.74,260.44L740.56,260.11L740.83,259.74L740.11,258.84L739.74,258.52L740.00,258.15L741.03,258.05L740.69,257.51L740.57,256.99L740.75,256.57L741.33,256.31L741.59,255.94L738.73,253.29L737.54,252.84L735.29,252.55L734.76,252.13L735.00,251.80L736.17,252.14L736.22,251.22L735.85,250.58L735.26,250.16L734.65,249.92L734.34,249.99L733.89,250.18L733.34,250.32L732.74,250.25L732.58,249.97L732.61,249.52L732.57,249.05L731.66,248.23L731.56,247.41L731.63,245.94L727.81,238.72L727.63,237.74L727.63,237.74L726.86,233.51L726.24,232.55L725.21,231.95L724.89,231.66L725.04,231.25L725.32,230.75L725.33,230.24L724.93,229.96L716.48,226.44L714.55,225.08L712.15,222.53L710.26,221.57L708.60,220.10L708.12,219.44L707.56,219.55L706.78,219.64L706.38,219.78L705.77,219.23L704.22,218.96L703.53,218.59L704.04,218.41L705.21,217.74L704.44,217.13L703.72,215.57L702.83,215.02L693.64,212.02L692.29,211.95L689.81,212.46L688.41,212.61L688.51,212.88L688.48,213.15L688.31,213.83L686.83,213.52L685.36,213.85L683.78,214.35L682.00,214.54L676.93,214.26L673.23,213.44L672.58,213.18L672.39,212.89L671.96,211.91L671.70,211.64L661.76,208.35L661.15,207.67L660.89,207.11L660.35,206.93L659.17,206.89L656.50,206.14L647.95,202.11L646.70,201.75L643.21,201.21L642.64,200.90L642.53,200.51L642.55,200.11L642.38,199.75L642.01,199.62L640.84,199.42L640.42,199.20L640.45,198.77L639.99,196.59L639.64,196.34L639.49,195.84L637.15,193.79L637.42,193.50L638.55,193.84L639.11,194.29L639.64,195.33L640.81,196.80L640.85,196.85L642.23,198.07L644.09,199.02L649.14,200.36L657.11,204.19L659.26,204.88L661.62,205.32L664.30,205.44L666.81,205.33L668.14,205.40L672.18,206.40L673.26,206.36L674.50,205.83L676.68,204.41L677.72,204.07L679.01,204.19L680.16,204.19L684.73,203.34L688.57,203.15L689.38,202.83L690.26,202.64L691.77,202.84L694.44,203.61L697.15,205.45L698.43,205.95L699.84,206.13L704.36,205.95L707.30,206.41L708.88,206.48L710.68,205.80L714.81,205.23L715.05,204.93L713.73,203.50L713.38,203.25L712.18,201.87L711.20,201.23L706.26,199.63L706.17,199.19L705.85,198.97L705.39,198.79L704.87,198.48L704.91,198.27L705.21,197.55L705.12,197.35L703.75,196.97L705.05,196.73L706.38,196.23L707.49,195.50L708.14,194.58L707.96,193.81L706.07,193.19L705.47,192.46L704.77,191.91L703.34,191.65L701.85,191.68L700.95,191.98L700.12,192.13L686.80,191.72L684.43,191.37L681.50,191.39L680.21,191.22L677.85,190.57L677.03,190.13L676.75,189.51L678.82,190.54L681.56,190.73L689.74,189.56L692.26,189.39L694.80,189.52L695.09,189.58L708.93,192.29L712.12,192.92L712.72,193.21L713.00,193.52L713.30,193.75L713.93,193.78L716.01,192.83L716.80,192.61L719.33,192.70L720.77,192.64L722.53,191.92L729.13,191.61L730.39,191.34L731.63,190.70L733.02,190.47L733.59,190.23L733.78,189.95L733.95,189.22L734.25,188.86L735.37,188.33L736.50,188.07L737.62,187.70L739.86,185.85L740.33,185.67L741.26,185.31L742.66,185.04L743.89,184.92L747.66,184.86L748.94,184.61L751.12,183.90L753.36,183.34L755.78,183.17L756.99,182.88L757.98,182.16L758.38,181.98L759.86,181.66L760.33,181.48L760.78,180.94L760.78,180.53L760.68,180.17L760.82,179.74L762.84,178.32L765.79,177.17L773.46,174.98L773.52,174.96L775.02,174.38L775.16,173.96L774.43,173.32L774.94,172.46L775.96,171.65L779.05,169.73L785.70,166.63L787.82,166.06L795.16,165.27L795.76,164.71L797.28,164.19L800.46,163.48L802.05,163.34L802.60,163.18L802.04,162.89L801.68,162.57L801.92,162.20L802.53,161.97L803.30,162.13L802.39,160.99L802.21,160.38L802.84,159.90L803.05,159.64L802.77,158.75L803.07,157.93L803.49,157.12L803.59,156.28L800.88,152.96L800.73,152.24L800.52,151.97L799.89,151.79L798.77,151.89L798.16,151.68L797.89,151.33L797.75,150.83L797.73,150.39L797.82,150.22L792.15,148.60L791.24,148.46L787.30,148.63L785.86,148.40L784.93,147.97L783.14,146.75L782.10,146.37L781.60,146.34L780.97,146.37L780.41,146.49L780.06,146.68L779.62,146.81L779.05,146.57L778.26,146.03L777.73,145.98L776.53,146.11L775.81,146.09L775.31,145.88L775.00,145.57L774.65,145.40L774.00,145.61L772.00,144.43L771.11,144.14L770.27,144.14L769.63,144.36L769.16,144.31L768.82,143.53L767.15,143.13L763.27,141.31L761.18,141.21L760.85,140.81L760.41,140.73L759.86,140.76L759.20,140.69L758.76,140.46L758.58,139.92L758.31,139.74L750.09,137.59L749.12,137.49L745.03,137.61L742.68,137.34L740.43,136.71L734.50,133.95L731.59,131.90L725.24,130.11L724.55,130.03L722.83,130.02L722.06,129.96L721.47,129.74L721.08,129.49L720.57,129.41L719.68,129.68L719.54,130.21L718.57,130.58L717.33,130.79L716.37,130.83L715.29,130.65L714.31,130.34L712.66,129.57L712.72,130.89L711.86,130.77L711.03,130.71L710.34,130.56L709.87,130.16L710.47,130.08L710.92,129.96L711.72,129.63L708.33,129.12L698.01,129.49L696.21,129.28L691.40,127.79L686.32,126.87L684.90,126.46L686.13,127.68L686.30,128.26L685.16,128.21L684.34,128.10L683.30,128.11L682.23,128.22L680.67,128.55L680.00,128.53L678.78,128.26L678.63,128.37L677.97,128.52L676.68,128.74L675.35,128.69L674.43,128.42L672.75,127.73L673.67,127.58L674.66,127.33L676.53,126.67L676.09,126.31L675.45,126.06L673.93,125.70L674.23,125.41L677.08,126.14L678.13,126.60L678.54,126.64L678.42,126.15L679.77,125.91L681.02,125.92L683.53,126.45L683.41,126.31L683.34,126.16L683.32,125.97L683.36,125.73L686.39,125.02L688.40,124.92L690.67,124.55L692.55,124.02L692.79,123.47L691.95,123.32L689.11,123.32L688.17,123.44L687.06,123.49L685.91,123.22L683.54,122.32L683.21,121.79L682.72,121.54L682.28,121.45L679.59,121.35L676.73,121.67L673.76,121.65L672.77,121.85L671.84,122.09L670.70,122.29L669.62,122.40L667.78,122.27L666.85,122.31L666.61,122.22L667.66,121.73L668.49,121.45L669.22,121.32L674.02,120.80L674.88,120.87L675.93,120.81L676.83,120.37L677.67,120.03L678.56,120.23L679.45,120.55L683.22,121.03L684.57,121.33L685.38,121.39L690.87,120.96L692.95,121.15L693.79,122.04L692.54,122.48L692.41,122.92L693.06,123.28L694.17,123.46L695.13,123.35L697.34,122.87L698.90,122.79L709.59,120.90L710.33,120.67L711.08,120.08L711.11,119.62L710.52,119.42L709.39,119.58L707.08,120.06L704.55,120.28L702.29,120.14L700.80,119.52L702.00,119.20L701.57,118.49L700.08,117.92L696.24,118.10L694.63,117.45L692.25,115.72L691.89,116.43L691.04,116.23L690.18,115.57L689.74,114.92L689.18,114.36L688.03,114.16L685.56,114.03L683.77,113.36L682.69,112.42L681.66,110.15L682.54,110.55L683.16,111.14L683.86,112.46L684.67,113.05L689.25,113.67L690.52,114.18L692.85,115.53L694.27,115.91L694.83,115.87L696.23,115.61L696.85,115.59L697.64,115.78L698.93,116.40L699.73,116.61L699.94,116.12L700.59,115.80L702.36,115.37L702.02,114.36L701.85,114.11L701.22,113.76L699.65,113.33L699.12,112.91L699.01,112.46L699.19,112.12L699.58,112.03L700.69,112.74L701.94,113.14L702.50,113.47L701.91,113.61L702.06,113.76L702.71,114.16L703.14,113.78L703.64,113.51L704.21,113.38L704.82,113.38L709.00,113.32L710.77,113.58L712.33,113.62L712.97,113.55L713.53,113.35L714.80,112.72L715.64,112.44L716.94,112.31L721.47,112.51L736.15,111.77L739.17,111.39L740.71,111.01L741.70,110.50L742.48,110.27L746.18,109.91L748.36,109.93L753.35,110.45L755.90,110.51L758.60,110.15L762.67,109.34L766.40,108.26L768.07,107.10L768.64,107.17L769.28,107.08L769.80,106.81L770.04,106.35L769.84,106.05L769.32,105.98L768.65,105.96L768.00,105.83L767.18,105.31L767.06,104.75L767.62,104.17L768.84,103.62L769.43,103.48L771.18,103.33L771.92,103.15L773.27,102.69L774.11,102.54L774.84,102.07L776.47,101.58L777.39,101.02L775.98,100.32L772.49,99.75L770.86,99.33L768.96,97.99L766.91,97.57L763.30,97.14L761.78,96.76L761.56,96.53Z M789.89,96.40L790.36,96.00L789.42,95.51L787.23,94.88L784.93,94.50L782.75,94.34L782.54,94.56L785.88,95.39L785.64,95.65L784.92,95.66L784.26,95.56L783.70,95.35L783.27,95.05L783.94,96.32L783.96,96.97L783.06,97.05L782.82,97.31L784.29,98.83L785.63,98.84L786.30,98.56L786.53,98.04L786.54,97.31L787.34,97.27L787.44,97.04L787.40,96.74L787.78,96.45L788.20,96.38L789.89,96.40Z M774.79,89.40L774.04,88.97L773.09,88.57L772.02,87.56L771.44,87.20L770.85,87.06L768.44,86.81L766.91,86.94L766.68,87.04L765.29,87.52L765.11,87.90L765.47,88.02L766.00,88.11L766.32,88.37L766.51,88.47L767.29,88.41L767.59,88.54L767.64,88.81L767.37,88.93L767.03,89.03L766.89,89.23L767.21,90.18L767.49,90.45L767.90,90.74L768.19,91.05L768.11,91.40L768.18,92.52L768.27,92.74L772.84,93.88L775.53,94.22L777.39,93.85L776.05,93.45L772.70,93.24L771.20,92.91L772.23,92.59L773.55,92.56L774.86,92.69L775.84,92.88L776.04,92.66L775.67,92.14L775.36,91.94L774.81,91.78L775.05,91.52L775.95,91.48L774.79,89.40Z M787.20,82.28L786.08,81.80L783.80,81.19L781.33,80.78L778.66,80.78L776.43,81.43L775.24,82.99L774.68,83.13L772.92,83.94L772.47,85.20L773.07,86.42L774.48,87.05L774.69,86.84L776.27,86.71L776.98,86.50L777.17,86.01L777.13,85.93L777.43,85.68L777.47,85.43L777.16,85.18L777.67,85.17L778.11,85.23L778.49,85.38L778.85,85.60L779.07,85.37L778.99,85.07L779.24,84.90L779.73,84.83L780.37,84.85L780.29,85.13L780.26,85.42L780.32,85.70L780.47,86.00L780.26,86.21L779.04,86.47L777.84,86.96L776.97,87.64L776.75,88.52L777.55,89.25L780.65,89.80L781.67,90.29L782.26,89.97L782.95,90.00L784.41,90.42L784.19,89.77L784.77,89.96L785.18,90.17L785.60,90.30L786.23,90.28L787.05,90.59L788.11,90.49L789.11,90.33L789.76,90.44L789.92,90.75L790.38,92.57L790.61,92.98L791.00,93.32L794.16,94.81L794.88,95.03L795.86,95.01L797.70,94.51L798.50,94.50L800.50,94.81L801.59,94.86L802.21,94.72L802.70,94.21L802.99,93.80L802.95,93.46L802.40,93.15L801.55,93.01L799.55,93.00L798.64,92.81L798.74,93.12L798.74,94.01L797.72,93.86L796.98,93.55L796.55,93.09L796.42,92.51L797.41,92.42L799.87,92.39L800.50,92.13L800.45,91.85L800.05,91.67L798.92,91.42L797.92,91.33L796.88,91.38L795.88,91.35L794.95,91.03L795.20,90.89L795.71,90.53L795.97,90.40L794.91,90.43L794.55,90.11L794.34,89.66L793.74,89.30L792.94,89.25L792.09,89.31L791.34,89.21L790.12,88.14L789.06,88.17L787.91,88.40L786.97,88.44L785.23,87.90L784.43,87.52L783.93,87.11L784.89,87.22L786.34,87.15L787.77,86.89L788.70,86.46L789.07,86.64L792.32,86.94L792.16,86.82L792.03,86.67L791.88,86.54L792.16,86.46L792.35,86.45L792.76,86.48L790.56,85.24L790.00,84.65L790.35,84.71L791.24,84.68L790.91,84.44L790.54,83.86L790.18,83.60L789.61,83.48L788.92,83.44L788.27,83.29L787.20,82.28Z M813.49,88.41L813.74,88.35L813.94,88.14L813.29,87.94L811.16,87.70L811.53,87.96L812.48,88.91L812.61,89.18L812.03,89.51L811.32,89.49L810.53,89.33L809.70,89.27L808.12,89.66L808.62,90.10L809.78,90.23L810.14,89.67L811.21,89.63L812.13,89.92L812.50,90.48L811.90,91.27L813.14,91.30L815.34,91.70L816.51,91.57L815.46,90.93L815.36,90.65L816.02,90.35L816.19,90.34L816.32,90.38L816.44,90.36L816.57,90.18L815.23,90.13L814.55,90.05L814.02,89.84L813.74,89.40L814.13,89.13L814.80,89.07L815.37,89.29L815.11,89.02L814.58,88.82L813.24,88.50L813.49,88.41Z M794.58,82.47L794.29,82.37L794.06,82.18L794.02,81.99L794.07,81.83L794.08,81.76L792.90,81.44L791.32,81.34L790.02,81.58L789.71,82.24L790.31,83.02L791.27,83.64L792.53,84.13L794.01,84.55L795.61,84.71L796.11,84.27L796.46,83.71L797.66,83.50L797.86,83.51L798.00,83.55L798.12,83.52L798.25,83.35L797.67,83.03L797.05,82.88L794.92,82.56L794.58,82.47Z M808.98,83.52L809.34,83.61L809.57,83.36L808.82,83.14L808.14,83.20L807.64,83.49L807.37,83.95L807.11,84.15L806.83,84.78L806.67,84.88L806.08,84.81L805.50,84.80L805.00,84.69L804.56,84.36L803.91,85.05L804.58,85.30L805.03,85.64L805.17,86.07L804.92,86.55L805.17,86.77L806.04,86.94L807.64,87.10L807.85,86.87L807.08,86.65L806.95,86.28L807.26,85.82L807.75,85.30L808.13,85.20L809.73,84.88L810.31,84.68L810.28,84.30L809.98,84.03L809.45,83.85L808.77,83.74L808.98,83.52Z M828.29,86.30L828.48,85.49L828.27,85.33L827.35,85.44L825.81,85.76L825.04,85.66L824.28,85.47L823.51,85.33L821.80,85.51L820.13,85.24L819.41,85.29L819.37,85.13L819.27,85.05L818.95,84.92L820.63,84.69L821.54,84.64L822.40,84.66L822.62,84.41L821.40,84.15L819.09,84.08L817.95,83.80L818.32,84.34L818.49,84.51L817.86,84.91L817.41,84.94L816.95,84.82L816.27,84.78L815.68,84.88L814.42,85.18L813.79,85.29L813.03,85.31L812.51,85.27L812.01,85.35L811.34,85.77L811.00,86.15L811.17,86.28L811.64,86.14L812.18,85.72L812.93,86.02L814.25,85.91L816.83,85.47L817.02,85.74L817.40,85.86L818.49,85.89L818.29,86.11L818.07,86.19L817.52,86.48L820.42,86.11L821.26,86.28L820.67,87.01L821.25,87.04L821.77,86.93L823.41,86.38L824.09,86.33L824.80,86.07L825.86,86.13L828.15,86.65L828.29,86.30Z M803.78,78.02L803.90,77.88L803.24,77.44L802.33,77.45L800.36,77.80L799.48,77.72L798.08,77.23L797.09,76.99L796.96,77.34L797.21,77.47L797.61,77.56L797.96,77.78L798.16,78.13L798.15,78.34L798.07,78.54L798.10,79.39L798.17,79.62L798.39,79.82L798.78,80.04L799.14,80.17L799.57,80.17L800.22,79.97L800.67,80.38L800.55,79.93L800.43,79.75L800.67,79.51L801.91,79.89L802.95,80.47L804.52,81.86L803.97,81.98L803.61,82.13L803.31,82.33L802.97,82.60L804.60,82.33L805.33,82.31L806.28,82.55L806.48,82.34L806.26,82.02L805.84,81.84L805.35,81.69L804.93,81.44L804.84,81.19L804.75,80.12L804.20,79.82L800.88,78.49L801.09,78.28L801.40,78.38L802.40,78.60L802.47,78.27L802.65,78.12L803.41,78.00L803.57,78.01L803.68,78.04L803.78,78.02Z M872.57,87.41L872.87,87.35L873.58,87.47L873.75,87.46L873.87,87.49L873.98,87.46L874.08,87.30L873.16,87.05L872.00,86.93L870.86,87.04L870.06,87.50L869.93,88.05L870.67,88.13L871.77,88.02L872.69,88.04L872.89,87.80L872.25,87.64L872.57,87.41Z M899.70,73.51L900.33,73.18L900.52,72.90L900.28,72.83L899.88,72.88L899.01,72.75L898.84,72.87L899.02,73.10L898.98,73.32L898.30,73.51L897.76,73.89L897.25,74.18L896.45,74.31L896.43,74.46L897.22,74.43L898.24,74.21L898.51,74.06L898.71,73.88L898.72,73.98L898.38,74.34L897.94,74.61L897.72,74.82L897.96,74.89L898.44,74.76L899.23,74.38L899.84,74.16L900.31,73.90L900.34,73.63L900.02,73.57L899.51,73.64L899.70,73.51Z M867.76,64.22L868.20,63.68L868.22,63.38L867.75,63.20L866.66,63.00L865.81,62.99L865.37,63.05L865.09,63.24L865.25,63.50L865.85,63.96L866.80,64.39L867.76,64.22Z M912.97,73.59L912.90,73.37L912.54,73.35L912.20,73.57L911.79,73.55L911.07,73.21L910.18,73.03L909.89,73.35L910.34,73.92L909.43,74.87L909.69,75.19L910.74,75.86L911.25,75.90L912.08,75.32L912.60,75.15L913.16,74.89L913.60,74.48L913.76,74.27L913.07,74.30L912.76,74.22L912.82,73.91L912.97,73.59Z M921.03,69.97L922.60,69.81L923.64,69.63L924.43,69.54L924.85,69.45L924.89,69.30L924.60,69.25L924.43,69.26L923.93,69.20L922.32,68.85L921.90,68.93L921.41,68.93L920.88,68.82L920.33,68.78L919.72,68.87L919.32,69.04L919.12,69.16L918.80,69.22L918.44,69.32L919.14,69.71L921.03,69.97Z M934.31,63.97L934.29,63.83L934.50,63.64L934.58,63.43L934.17,63.23L929.08,61.95L928.92,62.16L929.63,63.52L930.23,64.23L931.36,64.63L931.29,64.49L931.26,64.37L931.19,64.25L931.02,64.09L931.18,63.88L932.43,64.18L933.53,64.73L934.66,65.16L935.98,65.09L936.48,64.84L936.50,64.55L936.15,64.27L935.52,64.04L935.32,64.04L935.03,64.07L934.68,64.07L934.31,63.97Z M912.98,58.91L913.05,58.63L913.40,58.48L913.55,58.25L913.56,57.57L912.08,57.94L911.75,58.21L912.30,58.67L912.06,58.72L911.83,58.81L911.01,58.24L910.00,57.73L908.85,57.38L907.63,57.28L907.66,57.44L907.64,57.57L907.42,57.68L906.87,57.79L907.00,57.88L907.32,58.15L905.71,58.15L905.18,58.07L904.88,58.11L903.87,58.46L903.33,58.57L904.00,58.80L904.35,59.14L904.56,59.45L904.79,59.64L905.90,59.92L906.51,60.14L906.90,60.40L905.22,60.32L903.71,59.71L902.65,58.87L902.60,58.13L902.27,57.67L901.68,57.56L900.97,57.65L900.32,57.82L900.08,57.97L899.93,58.17L899.74,58.38L899.35,58.52L899.06,58.50L898.01,58.19L897.48,58.24L896.80,58.48L896.29,58.75L896.28,58.94L897.79,59.35L898.52,59.40L899.20,59.17L899.70,59.61L900.37,59.79L901.16,59.90L902.06,60.11L901.32,60.17L900.83,60.37L900.79,60.65L901.39,60.92L901.96,60.89L902.67,60.70L903.72,60.29L903.32,61.29L902.99,61.81L902.58,62.14L902.89,62.41L903.43,62.62L904.82,62.96L904.66,63.16L904.01,63.26L903.63,63.50L903.56,63.82L903.85,64.16L904.31,64.32L904.88,64.33L905.99,64.21L905.75,64.91L906.62,65.40L907.86,65.83L908.72,66.34L906.53,65.76L905.65,65.66L905.95,66.13L905.30,65.95L905.06,65.83L904.85,65.63L903.30,66.19L904.21,66.93L903.37,67.03L902.47,67.22L902.54,66.45L901.88,65.80L900.80,65.38L899.65,65.28L899.58,65.62L899.61,65.78L898.69,65.55L898.73,65.71L898.72,66.08L898.81,66.30L898.56,66.33L897.96,66.32L897.71,66.29L898.38,65.40L897.95,65.01L895.78,64.58L895.62,64.78L895.95,64.86L895.78,65.06L894.39,64.47L894.39,64.96L893.63,64.78L893.24,64.47L892.95,64.10L892.46,63.75L891.74,63.54L890.81,63.41L889.85,63.35L889.04,63.38L888.17,63.48L887.86,63.61L887.86,64.30L887.64,65.18L887.88,65.44L888.75,65.72L889.07,65.87L889.03,66.02L888.95,66.17L889.11,66.35L889.50,66.50L890.53,66.70L892.15,66.74L892.85,66.83L892.91,67.16L892.90,67.52L893.46,67.61L894.22,67.46L894.79,67.12L895.18,66.93L895.76,67.83L896.22,68.12L895.55,68.07L894.10,67.86L893.45,67.90L893.02,68.03L892.89,68.16L892.94,68.51L893.10,68.52L893.76,69.13L893.81,69.22L895.21,70.08L895.63,70.20L896.19,70.06L896.59,69.76L897.03,69.49L897.71,69.46L897.61,69.92L898.07,69.95L898.71,69.63L899.13,69.08L899.70,69.23L900.03,69.44L900.65,69.98L901.31,69.62L901.09,69.03L900.77,68.52L900.27,68.09L899.53,67.73L899.71,67.50L901.07,67.99L901.75,68.54L902.00,69.21L902.06,70.06L904.06,69.42L904.97,69.28L905.80,69.53L905.64,69.73L905.07,69.77L904.47,69.91L903.88,70.11L902.59,70.74L902.25,70.96L902.31,71.10L902.79,71.25L903.05,71.20L903.83,71.20L904.30,71.30L903.08,71.75L902.83,71.87L902.71,71.98L902.67,72.33L902.90,72.42L903.19,72.45L903.33,72.63L902.91,73.52L901.96,74.00L900.82,74.43L898.97,75.72L897.86,76.07L896.99,76.43L896.81,77.05L895.60,76.74L895.43,76.95L895.75,77.15L896.29,77.71L896.15,77.88L895.64,77.71L895.09,77.64L894.52,77.67L893.94,77.83L893.82,78.39L892.68,78.59L892.91,79.11L893.54,79.44L895.08,79.68L895.59,80.07L895.42,80.29L894.68,80.44L894.57,80.70L894.91,80.83L895.53,80.60L895.90,81.28L895.96,81.48L896.51,81.45L896.88,81.25L896.97,80.95L896.65,80.60L897.38,80.28L897.79,79.94L897.91,79.56L897.84,79.10L897.91,79.20L897.98,79.39L898.97,79.12L899.81,78.63L900.43,78.00L900.74,77.31L901.92,78.00L902.57,78.18L903.23,77.94L902.91,76.79L903.04,76.32L903.67,76.60L904.56,76.76L905.43,76.70L906.01,76.32L905.57,76.21L904.97,75.70L904.86,75.18L905.91,75.03L905.14,74.63L904.81,74.50L904.95,74.32L905.42,74.45L905.80,74.48L906.15,74.40L906.56,74.20L906.10,73.81L906.91,74.01L907.55,73.92L908.12,73.88L908.73,74.25L908.89,74.04L908.56,73.95L908.73,73.73L909.99,74.05L910.14,73.86L908.95,73.03L909.98,72.66L909.60,72.38L908.53,72.28L907.53,72.45L908.13,72.06L910.23,71.38L909.59,71.30L909.04,71.33L907.89,71.53L908.61,71.20L909.01,71.05L909.46,70.92L907.66,70.46L907.80,70.28L908.65,70.29L909.06,70.34L909.50,70.46L909.64,70.27L909.40,70.08L909.28,69.85L909.38,69.65L909.81,69.55L910.22,69.68L910.42,69.99L910.56,70.50L911.25,70.77L912.16,70.85L914.40,70.71L914.19,70.57L913.61,70.38L913.33,70.22L913.11,70.15L912.66,70.22L912.48,70.12L912.45,69.96L912.53,69.77L912.67,69.63L912.89,69.60L913.47,69.63L916.17,69.43L915.25,68.83L913.15,68.09L912.47,67.55L913.21,67.62L916.78,68.37L917.27,68.34L917.72,68.10L918.07,67.82L918.22,67.66L918.21,67.27L917.62,67.13L916.94,67.12L916.61,67.14L915.95,67.32L915.51,67.38L915.27,67.26L915.40,67.01L915.83,66.85L919.91,66.40L920.94,66.05L920.07,65.84L919.11,65.81L918.17,65.97L917.39,66.36L917.51,66.12L917.51,66.00L917.44,65.87L916.89,65.98L916.50,66.16L916.20,66.35L915.88,66.48L915.41,66.51L915.23,66.41L915.07,66.39L914.66,66.65L914.33,66.57L914.69,65.98L914.26,65.72L912.53,65.64L912.70,65.42L913.26,65.40L913.49,65.37L912.32,65.28L911.74,65.19L911.64,65.09L912.18,65.10L912.73,65.05L913.25,64.94L913.81,64.92L914.64,65.35L915.30,65.33L914.87,65.00L914.99,64.95L915.33,64.88L915.39,64.49L915.24,64.18L914.90,63.92L914.42,63.70L914.95,63.44L914.61,63.01L913.94,62.64L913.46,62.62L913.14,62.76L911.82,63.06L911.28,63.13L911.60,62.63L911.22,62.44L910.53,62.46L909.90,62.56L910.30,62.99L911.98,64.04L909.04,63.51L907.59,63.50L907.22,64.04L906.65,64.06L906.07,64.01L905.50,63.90L904.95,63.74L905.13,63.52L906.15,63.47L908.02,62.72L908.97,62.81L909.15,62.59L909.14,62.38L909.41,62.24L910.38,61.95L910.25,61.70L909.78,61.78L909.32,61.80L908.86,61.77L908.41,61.70L910.10,60.96L909.78,60.85L909.64,60.75L909.55,60.65L909.35,60.54L909.87,60.64L910.10,60.64L910.43,60.55L909.52,60.32L910.36,60.08L911.18,60.02L911.78,59.80L911.98,59.06L912.44,59.12L912.77,59.07L912.98,58.91Z M925.27,57.38L924.74,57.25L924.01,57.39L923.34,57.59L923.00,57.76L922.66,58.02L922.50,58.29L922.66,58.46L922.70,58.57L921.97,58.88L921.70,59.04L921.53,59.46L921.56,60.36L921.59,60.53L921.05,60.49L920.52,60.12L920.31,59.66L920.70,59.36L920.84,59.18L919.31,58.91L918.45,59.42L916.86,62.25L916.98,63.05L917.72,63.66L919.11,64.14L919.25,63.96L918.93,63.65L919.12,63.49L919.47,63.44L919.64,63.47L919.68,63.75L920.15,63.95L921.25,64.21L922.18,64.62L922.58,64.64L923.00,64.31L923.18,63.95L923.18,63.65L922.91,62.99L923.81,63.13L924.55,62.97L924.80,62.62L924.28,62.14L924.55,62.14L924.58,62.12L924.74,62.04L924.07,61.85L923.45,61.59L923.06,61.28L923.09,60.91L923.57,61.22L924.16,61.42L924.82,61.51L925.51,61.51L925.12,60.47L924.80,59.96L924.44,59.62L925.27,59.87L925.85,60.26L926.85,61.15L927.41,60.94L927.91,60.70L927.58,59.96L927.74,59.68L928.48,59.45L928.32,59.35L928.20,59.22L928.02,59.13L928.18,58.92L928.49,58.92L928.65,58.82L928.93,58.44L927.08,57.91L926.11,57.78L925.36,57.98L925.27,57.38Z M939.63,59.10L940.46,59.03L940.14,58.92L939.43,58.54L940.38,58.59L940.73,58.66L940.85,58.28L940.67,57.97L940.30,57.72L939.81,57.50L939.22,57.33L938.99,57.23L938.81,57.02L938.24,57.13L936.55,57.93L936.05,57.98L935.32,57.98L934.73,57.93L934.68,57.82L935.26,57.69L935.87,57.66L936.43,57.59L936.84,57.32L936.95,56.90L936.69,56.58L936.20,56.46L935.57,56.64L935.40,56.91L934.56,57.08L933.54,57.15L932.77,57.09L932.62,57.30L932.99,57.66L932.67,58.09L931.97,58.37L931.16,58.29L931.19,58.70L931.00,59.13L930.59,59.30L929.98,58.91L930.02,59.16L929.91,59.42L929.65,59.67L929.23,59.90L929.79,60.24L930.42,60.47L931.77,60.74L932.42,60.88L933.26,61.12L933.56,61.28L933.83,61.46L934.14,61.61L934.58,61.70L935.39,61.62L935.30,61.26L934.92,60.79L934.87,60.37L935.31,60.28L937.53,60.14L937.69,59.93L937.48,59.78L937.24,59.65L936.97,59.54L937.83,59.74L937.99,59.53L937.95,59.11L938.65,59.05L939.63,59.10Z "/><path d="M496.08,288.75L498.23,287.42L499.08,287.16L499.94,287.17L501.01,287.32L502.06,287.36L502.81,287.01L504.22,286.66L508.63,286.41L509.18,285.68L511.71,285.28L514.34,285.28L516.38,284.83L517.22,283.10L519.33,283.07L519.89,282.96L520.60,282.65L521.38,282.22L522.15,281.87L522.77,281.81L524.47,281.07L524.97,280.99L525.70,280.95L526.03,280.44L526.10,279.81L526.05,279.39L525.76,279.07L524.72,278.66L524.39,278.36L524.38,277.87L524.80,276.81L524.84,276.29L525.39,275.48L528.45,273.72L529.50,273.01L528.76,272.42L527.52,272.28L526.10,272.29L523.58,271.91L519.47,271.99L516.35,272.47L513.60,273.57L507.86,276.33L506.46,276.71L503.81,277.07L501.76,277.60L499.81,277.71L498.32,277.49L498.00,277.68L497.73,278.09L497.05,278.58L495.74,279.26L494.86,279.93L493.33,281.64L491.89,282.50L488.43,283.50L487.53,284.64L487.02,284.57L486.69,284.58L486.39,284.62L485.97,284.62L485.60,285.05L486.82,285.76L488.48,285.67L490.26,285.36L491.86,285.41L492.60,285.88L493.00,287.07L493.73,287.53L494.67,287.61L495.60,287.60L496.19,287.85L496.08,288.75Z "/><path d="M42.00,333.06L40.22,332.14L38.77,331.74L37.37,331.62L36.04,331.79L35.29,332.35L35.86,332.97L36.29,333.38L41.91,333.98L42.40,333.98L43.32,333.71L43.07,333.33L42.41,333.21L42.00,333.06Z M31.34,305.25L30.99,305.05L29.97,304.66L29.10,304.80L24.81,305.08L22.94,305.60L22.63,306.11L23.90,306.40L24.81,306.24L26.92,306.79L29.86,306.89L31.36,306.80L32.25,306.48L32.42,306.02L31.84,305.76L31.48,305.68L31.34,305.25Z M139.54,247.42L138.82,246.36L137.46,245.96L136.34,246.26L137.31,247.60L141.97,251.45L143.19,251.60L143.75,251.21L143.58,251.08L143.34,251.07L142.49,250.25L142.87,249.87L143.81,249.63L143.83,249.10L142.75,248.33L141.78,247.90L140.22,247.64L139.54,247.42Z M150.85,243.82L153.11,243.18L153.24,241.45L153.07,241.02L152.42,240.70L151.51,240.55L150.55,240.63L149.42,240.96L149.14,241.28L148.99,241.76L148.28,242.60L148.54,243.56L150.85,243.82Z M182.29,198.73L181.56,198.18L176.89,196.73L175.36,196.73L173.28,196.90L171.63,196.70L171.41,195.60L170.58,195.74L169.99,195.70L169.65,195.48L169.59,195.08L167.72,195.86L166.18,196.08L164.77,195.92L163.34,195.54L162.92,195.88L164.34,196.30L166.33,197.62L167.69,198.16L172.43,198.86L173.32,199.37L173.37,199.97L172.87,200.44L172.01,200.95L170.99,201.64L170.62,202.19L171.11,202.44L171.94,202.58L172.61,202.82L173.12,203.76L173.29,204.77L173.94,205.38L175.86,205.14L176.47,204.41L177.70,203.58L179.03,202.91L179.95,202.65L180.36,202.32L180.25,201.94L179.76,201.74L179.01,201.66L178.12,201.67L178.58,201.30L179.21,201.14L179.80,200.85L180.30,200.48L180.65,200.04L181.78,200.36L182.29,198.73Z M319.93,175.71L320.62,174.89L320.66,174.35L320.26,173.94L319.62,173.51L319.58,173.22L319.38,173.03L318.91,172.98L318.11,173.11L318.11,173.21L318.13,173.38L318.10,173.52L317.72,173.50L316.56,173.56L316.24,173.95L316.21,174.02L316.16,174.02L315.78,174.19L315.42,174.48L315.93,175.05L317.08,175.42L319.93,175.71Z M412.33,181.79L411.90,181.19L411.43,178.32L411.03,177.81L409.52,176.67L408.69,176.36L405.62,174.67L404.34,173.65L403.46,173.27L402.25,173.31L402.38,173.74L402.73,174.20L403.71,175.02L402.59,176.13L403.09,177.60L405.09,179.93L403.55,180.01L402.33,179.65L401.41,179.04L400.78,178.37L401.13,178.51L402.34,178.79L402.45,177.72L401.65,177.14L400.32,177.01L396.93,177.53L395.68,177.21L394.90,176.55L394.32,175.79L394.16,176.06L394.04,176.20L393.96,176.32L393.93,176.51L392.72,176.57L392.01,176.29L391.40,175.90L390.52,175.59L390.25,176.49L389.01,177.38L387.47,178.02L385.60,178.23L385.06,178.68L384.70,179.23L384.57,179.61L384.69,179.99L385.39,180.88L385.69,183.17L385.99,183.36L384.70,184.49L383.34,184.99L382.62,185.36L382.66,185.63L383.36,186.19L382.85,186.92L381.63,187.60L380.23,187.98L379.01,187.93L377.54,187.73L376.13,187.67L375.06,188.05L374.39,187.96L366.14,189.02L364.72,189.09L363.41,188.95L363.79,188.63L364.95,188.51L368.31,187.73L372.23,187.52L373.29,187.35L375.06,186.52L374.30,185.94L370.59,185.33L370.96,185.00L375.14,184.88L376.84,184.56L377.84,184.46L378.81,184.57L379.77,184.37L380.99,183.68L381.77,182.88L381.42,182.32L381.05,181.94L381.00,181.24L381.28,180.49L381.89,179.93L380.74,179.11L380.38,178.60L380.57,178.10L381.01,177.87L382.08,177.23L383.03,176.54L383.14,176.12L382.89,175.78L382.99,175.20L382.92,174.60L382.19,174.17L381.35,174.10L378.39,174.38L377.33,174.31L375.53,173.61L375.22,173.87L371.97,174.93L371.08,175.46L371.40,175.93L372.76,176.61L372.94,177.02L373.01,177.48L373.23,177.89L373.91,178.18L374.16,177.59L374.64,176.77L375.31,176.08L376.15,175.86L376.65,176.21L376.53,176.85L376.08,177.52L375.63,177.99L375.56,178.35L375.23,179.22L374.73,180.06L374.15,180.33L373.44,180.49L371.11,181.48L370.18,181.79L370.76,181.38L372.03,180.62L372.44,180.29L372.66,179.91L372.89,179.17L372.98,178.97L373.04,178.40L372.53,177.65L371.83,176.96L371.28,176.59L370.72,176.49L369.81,176.65L369.32,176.51L369.11,176.26L369.09,175.97L369.14,175.73L369.13,175.62L369.61,175.31L373.44,173.50L373.36,173.34L373.31,173.32L373.44,173.05L371.08,173.47L369.00,173.60L367.45,173.93L366.67,174.95L366.88,176.16L366.44,176.71L364.79,177.37L363.81,177.58L363.29,177.47L362.77,177.21L361.73,176.95L362.11,176.64L362.83,176.77L363.59,176.75L364.38,176.57L365.20,176.19L364.17,176.09L362.98,176.18L362.41,176.14L363.27,175.66L363.61,175.38L363.64,174.51L362.90,174.55L361.80,174.49L360.92,174.30L360.82,173.98L360.61,173.77L357.56,173.74L357.94,173.42L361.46,173.27L362.54,172.88L361.71,171.95L360.33,171.72L358.85,172.20L357.44,172.81L356.24,172.96L354.94,172.86L350.37,172.97L347.35,173.66L346.38,173.74L346.37,173.43L347.01,173.04L347.66,172.82L348.40,172.62L349.23,172.31L348.21,172.17L345.99,172.14L344.87,171.96L342.55,170.47L341.67,170.27L340.54,170.60L337.93,171.77L336.93,171.90L336.25,172.19L335.48,173.05L334.46,174.58L333.69,174.70L332.30,175.45L331.76,175.55L331.51,175.19L332.67,174.07L332.48,173.66L331.87,173.72L329.44,174.54L328.59,174.56L328.08,174.37L327.51,174.37L326.43,174.95L326.78,175.04L326.42,175.17L325.28,175.48L324.98,175.04L324.42,174.81L323.73,174.76L322.99,174.85L322.57,175.20L323.12,177.04L323.63,177.97L324.87,178.75L322.96,178.82L322.06,178.75L321.23,178.60L320.68,178.25L320.49,177.85L320.12,177.57L319.10,177.63L318.73,178.69L318.57,179.92L319.04,180.96L320.57,181.43L320.78,181.30L321.17,181.00L321.66,180.69L322.14,180.55L322.48,180.58L323.45,180.90L323.98,181.28L323.60,182.29L323.96,182.79L323.01,182.68L321.06,181.89L319.79,182.07L318.82,182.85L319.11,183.59L320.03,184.19L320.92,184.53L320.53,184.85L319.40,184.53L317.03,183.07L314.13,182.59L312.97,182.20L312.54,181.36L311.61,181.45L310.27,181.74L309.48,181.80L308.70,181.70L308.16,181.54L307.62,181.54L306.84,181.94L308.06,182.36L309.19,183.63L310.83,184.57L312.02,186.85L310.69,186.82L310.02,186.27L309.79,185.46L309.78,184.70L309.28,184.40L306.72,183.78L305.61,183.74L306.02,184.55L309.33,186.10L308.97,186.40L307.49,185.97L305.15,184.68L299.68,183.07L297.93,182.95L292.27,183.28L291.21,183.46L290.36,183.99L289.51,184.22L288.65,184.20L287.79,184.03L286.85,183.94L286.35,184.22L286.31,184.65L286.75,185.08L286.39,185.37L285.90,185.46L285.54,185.57L285.22,185.71L284.81,185.84L285.80,186.10L289.32,188.26L289.52,188.67L288.52,189.01L289.10,189.60L293.30,190.78L293.94,191.49L294.53,191.79L295.91,191.29L296.72,191.35L298.12,191.69L298.56,191.70L299.39,191.66L299.82,191.72L300.17,191.93L299.99,192.13L299.68,192.33L299.53,192.73L299.61,193.28L299.91,193.68L300.52,193.48L302.07,192.69L303.78,192.29L304.51,192.50L303.07,193.51L303.45,193.62L304.82,193.40L305.01,194.02L304.36,194.75L303.18,194.90L301.95,194.75L300.68,194.87L298.34,195.31L297.99,195.61L298.92,195.74L300.00,195.72L301.13,195.61L305.48,194.87L307.34,194.91L309.88,194.37L310.96,194.40L311.60,194.77L311.58,195.23L310.99,195.65L309.91,195.91L309.56,196.21L311.09,196.23L314.12,195.95L318.34,196.70L319.79,196.72L321.47,196.51L321.41,196.69L321.41,196.74L321.45,196.77L321.51,196.92L320.72,197.26L318.24,198.65L317.63,198.38L317.41,198.08L317.27,197.75L316.89,197.38L315.64,198.64L311.63,199.11L310.66,200.10L306.06,200.54L306.26,201.21L306.85,201.65L308.67,202.21L308.25,202.58L306.21,202.28L302.61,202.46L301.80,202.33L296.67,201.49L296.51,201.47L294.34,201.42L292.00,201.56L292.31,201.25L292.26,201.20L292.08,201.09L292.29,200.74L292.50,200.10L292.26,199.82L291.07,200.61L289.87,201.57L289.25,201.92L288.73,201.98L287.61,201.88L278.30,202.39L276.38,202.18L275.44,202.21L274.49,202.37L273.81,202.68L273.27,203.22L273.39,203.46L278.98,205.05L279.99,205.57L280.74,206.30L280.61,206.89L279.07,206.92L278.42,205.99L277.88,205.66L276.98,206.08L276.66,206.53L276.91,206.78L278.11,207.07L279.08,207.46L279.87,208.02L280.40,208.74L280.59,209.59L277.06,208.07L276.16,208.09L275.54,208.24L274.90,207.93L274.02,207.25L273.30,207.30L271.95,207.71L271.29,207.84L270.86,208.21L271.72,208.46L272.57,208.91L273.09,209.45L272.99,209.94L272.72,210.60L273.28,211.14L274.11,211.59L274.67,212.05L274.27,212.39L272.48,211.81L271.48,211.66L270.36,211.76L270.28,210.48L270.01,209.96L268.81,209.17L269.02,208.58L269.53,207.96L269.75,207.40L268.66,206.53L264.80,205.91L263.98,204.84L262.26,205.00L260.81,204.84L258.06,204.05L257.33,203.70L256.63,202.88L255.93,202.46L255.33,201.88L255.03,201.40L254.63,201.41L254.13,201.48L253.66,201.44L250.77,200.06L248.75,199.65L246.94,200.23L245.01,201.40L242.86,202.12L240.82,202.42L239.24,202.34L238.71,203.16L237.80,203.82L236.67,204.52L235.55,205.40L235.21,205.31L236.37,204.33L236.83,203.45L236.80,202.68L235.65,200.64L235.94,200.11L237.47,200.03L237.92,199.66L237.08,199.01L237.49,198.68L238.09,198.53L238.65,198.22L239.04,197.80L239.15,197.31L238.86,197.42L238.17,197.36L237.07,197.18L237.04,196.88L237.71,195.84L237.55,195.52L237.10,195.35L235.37,194.04L234.76,193.79L233.98,193.86L233.23,194.02L232.27,194.10L231.36,194.11L230.73,194.03L226.75,192.46L226.51,192.19L226.27,191.55L225.90,191.33L225.22,191.22L223.88,191.17L223.20,191.05L214.25,188.05L213.38,187.60L212.16,186.34L211.20,185.87L207.45,185.41L206.90,185.73L206.35,186.50L206.33,187.16L208.77,188.29L209.40,188.89L208.37,188.42L207.83,188.29L207.16,188.25L206.74,188.59L207.44,189.24L207.53,189.62L207.34,190.12L206.26,189.67L205.27,188.41L204.30,187.90L203.11,187.95L201.38,188.38L200.05,189.05L200.06,189.84L198.92,189.87L197.52,190.20L196.33,190.33L195.84,189.76L195.15,189.24L193.92,188.83L193.44,188.31L194.98,187.47L195.50,188.53L196.75,189.00L198.72,188.83L201.45,187.97L201.23,187.86L201.22,187.81L201.32,187.74L201.42,187.56L200.60,187.64L200.12,187.50L199.94,187.17L200.01,186.69L198.89,186.75L198.00,186.42L197.38,185.90L197.06,185.41L197.16,185.13L197.47,184.80L197.72,184.48L197.60,184.24L197.04,184.11L196.57,184.23L196.13,184.44L195.65,184.58L192.33,184.62L191.38,184.73L190.23,185.17L189.13,185.71L188.09,186.00L187.05,185.72L187.12,186.31L187.58,186.68L189.25,187.18L187.87,187.59L186.86,187.72L185.90,187.99L184.61,188.80L183.64,189.27L180.67,190.29L179.62,190.76L178.54,191.71L178.41,192.34L178.97,192.77L179.94,193.09L181.10,193.17L181.52,192.71L181.42,192.07L181.03,191.61L182.49,191.59L182.97,191.72L184.00,190.76L184.09,190.40L183.56,190.05L183.94,189.76L185.53,189.75L186.30,189.86L186.99,190.14L187.41,189.81L187.36,189.58L187.50,188.94L188.39,189.36L189.54,189.43L190.35,189.12L190.23,188.39L191.68,188.11L192.60,188.71L193.85,190.75L193.00,191.05L192.22,191.11L191.60,190.92L191.20,190.44L191.68,192.08L191.66,192.85L191.43,192.64L190.86,192.29L190.65,192.07L190.24,192.73L190.32,193.39L191.18,194.51L189.82,194.53L186.87,194.21L185.84,193.88L185.35,195.46L185.97,196.46L187.73,196.73L190.60,196.14L190.23,196.04L190.65,195.70L191.28,195.81L191.65,195.83L191.93,195.67L192.29,195.24L194.04,195.39L194.65,195.59L194.88,195.97L192.48,196.23L192.47,196.68L191.50,196.68L190.65,196.84L190.31,197.13L190.86,197.53L189.67,197.78L188.80,197.70L187.91,197.75L186.75,198.41L186.03,199.18L185.93,199.70L186.00,200.08L185.79,200.45L185.77,200.67L186.77,200.88L187.07,201.02L187.04,201.33L186.79,201.54L186.46,201.77L185.58,203.18L185.52,203.65L186.00,203.95L186.11,203.48L186.49,203.17L187.17,203.46L187.35,203.89L187.35,204.39L187.50,204.84L186.56,205.36L185.98,205.94L185.50,206.35L184.84,206.37L184.53,205.92L185.73,204.69L185.42,204.24L184.79,203.91L184.15,203.09L183.83,202.82L180.74,202.43L180.33,202.76L180.73,202.88L180.35,203.19L179.76,203.48L179.51,203.70L179.10,204.20L177.73,204.30L175.69,205.58L174.65,205.67L175.20,207.22L178.65,207.72L186.10,207.65L193.98,209.98L195.18,210.76L195.68,210.68L196.01,210.66L196.31,210.68L196.73,210.75L196.05,211.18L195.34,211.50L194.63,211.71L193.93,211.79L194.57,212.42L195.00,212.57L192.05,212.86L190.91,213.14L190.65,213.62L190.24,213.97L189.84,213.90L189.47,213.92L189.11,213.96L188.68,213.98L190.19,215.24L190.93,215.58L190.48,215.95L178.94,213.92L178.50,213.60L177.86,212.87L177.51,212.80L176.55,212.95L175.82,212.89L174.40,212.59L172.53,212.46L170.18,212.05L169.41,212.10L168.78,213.16L167.50,213.84L165.88,214.48L164.24,215.47L162.28,217.97L164.96,220.84L166.77,222.07L170.87,223.04L171.51,223.61L171.13,223.93L166.95,222.47L164.60,221.41L163.99,220.60L163.56,220.29L162.77,220.11L160.07,220.20L158.20,219.97L154.17,218.45L151.74,218.08L151.82,218.94L153.69,221.19L152.85,221.22L151.29,221.64L150.60,221.61L150.73,220.58L150.66,220.29L148.61,219.18L146.18,218.43L146.01,218.70L145.48,219.34L145.32,219.60L143.98,219.14L142.93,218.52L141.66,218.12L139.66,218.35L139.85,218.79L140.54,218.95L142.45,219.18L142.66,219.59L142.41,220.32L141.99,221.02L141.65,221.36L141.91,222.45L143.41,223.57L145.21,224.43L146.39,224.70L145.23,225.13L144.24,224.68L143.29,223.93L142.22,223.45L141.96,224.01L141.96,224.47L142.27,224.83L142.85,225.07L142.39,225.46L140.95,225.71L140.03,225.52L138.22,224.63L136.95,224.37L135.76,224.44L134.50,224.82L133.00,225.51L134.04,225.81L134.61,225.83L135.35,225.74L135.54,226.47L136.78,226.95L139.28,227.40L139.88,227.79L139.84,228.28L139.63,228.85L139.68,229.45L140.06,229.86L140.67,230.19L142.90,230.84L144.13,230.88L144.83,231.01L145.68,231.00L146.22,230.51L146.76,229.87L147.53,229.41L148.55,229.26L149.02,229.46L149.26,229.79L149.64,230.05L150.35,230.08L151.07,229.92L151.81,229.78L152.60,229.94L151.51,230.31L149.90,230.42L149.04,230.80L148.67,231.48L149.46,231.79L150.52,231.74L150.92,231.36L152.80,231.20L153.60,231.25L154.43,231.50L154.01,231.86L152.45,231.83L151.99,232.22L153.93,232.80L153.55,233.13L152.19,233.31L148.89,233.49L147.77,233.36L146.99,233.15L146.41,233.08L145.78,233.17L145.13,233.49L144.32,234.05L143.25,234.63L142.76,234.77L143.22,235.39L146.05,235.81L146.53,236.68L146.74,237.58L147.65,237.86L151.10,237.99L152.70,237.64L155.63,236.69L157.21,236.04L158.13,235.77L159.02,235.81L160.43,235.48L161.01,235.39L161.15,235.56L161.16,235.82L161.36,236.03L160.91,236.46L159.26,237.21L157.86,238.12L158.18,239.03L159.54,239.11L160.94,238.48L161.89,237.53L161.88,236.68L163.11,236.61L164.21,236.82L166.19,237.49L163.28,237.54L162.20,237.75L163.03,239.70L162.66,239.85L162.35,239.92L161.41,240.30L161.05,240.35L160.70,240.17L160.41,239.77L160.28,239.67L158.63,239.78L156.31,242.33L153.95,243.11L153.50,243.50L153.67,244.43L154.64,244.62L156.08,244.14L157.66,243.05L159.32,242.23L160.29,242.51L159.99,243.26L157.84,243.85L158.07,244.54L157.97,245.22L158.06,245.91L158.89,246.61L161.25,247.34L162.73,247.53L163.99,247.43L166.36,247.47L185.89,252.32L188.45,252.42L189.74,252.66L193.90,254.45L193.49,254.82L192.49,254.80L190.72,254.59L189.87,254.71L189.50,255.05L191.11,255.55L190.70,255.92L189.53,255.61L186.50,255.18L185.08,255.23L185.64,255.72L191.22,257.59L191.79,257.68L193.16,257.75L193.78,257.93L190.95,258.16L189.38,258.47L187.72,259.08L187.74,259.54L187.56,260.05L186.84,261.34L186.11,260.96L185.64,260.52L185.39,259.98L185.31,259.35L186.20,258.91L185.82,258.71L184.98,258.67L183.84,258.90L183.17,258.59L182.22,257.83L181.77,258.24L183.30,259.78L182.93,260.12L181.90,259.70L181.06,258.31L180.39,257.82L176.60,257.14L176.15,257.56L178.16,258.81L178.43,259.56L177.30,260.40L176.45,259.50L174.94,259.30L173.27,259.37L171.91,259.27L171.00,258.56L169.93,256.24L169.09,255.36L167.56,255.28L165.49,255.92L163.40,256.85L161.43,257.48L159.32,257.87L152.48,260.31L152.49,260.83L151.59,260.88L150.61,261.10L147.05,262.25L145.80,262.55L143.13,262.99L144.29,263.79L148.95,265.07L149.81,265.61L147.97,266.49L142.16,267.40L141.25,268.11L140.83,268.49L140.09,268.58L139.47,268.86L138.81,269.25L137.93,269.64L136.84,269.99L135.75,270.26L134.73,270.42L133.89,270.43L133.86,270.99L133.27,271.32L133.03,271.36L133.01,271.39L133.06,271.72L132.05,272.11L131.16,272.69L130.34,273.16L129.53,273.20L128.82,273.07L127.43,273.01L126.71,272.87L125.06,272.16L124.17,272.06L123.42,272.07L122.16,272.20L121.34,272.18L120.96,272.82L120.88,273.08L101.90,276.07L98.44,275.59L94.84,275.87L93.48,275.82L93.09,276.18L104.27,278.63L106.55,278.44L106.85,278.67L107.15,279.05L107.69,279.10L108.76,278.36L109.98,277.88L111.60,277.94L114.52,278.43L120.22,278.60L120.46,278.08L120.46,277.61L120.26,277.23L119.84,276.94L120.26,276.55L122.41,277.19L122.69,277.72L121.43,278.51L121.69,279.25L123.48,280.05L123.53,280.51L123.46,281.17L124.26,281.83L125.36,282.37L128.37,283.27L133.49,283.82L136.07,283.72L135.25,284.51L133.64,284.80L131.82,284.90L130.36,285.11L130.70,285.55L131.22,285.94L131.90,286.23L132.68,286.40L133.54,286.34L135.28,285.86L135.75,285.79L141.32,287.12L142.81,287.12L152.45,284.56L156.64,283.00L157.55,282.30L159.72,281.97L162.19,281.96L163.99,282.20L163.19,282.38L161.75,282.92L160.77,283.23L161.44,283.74L160.95,284.38L160.14,285.05L159.85,285.63L159.44,286.02L158.27,286.18L157.95,286.58L158.32,287.06L159.20,287.49L163.41,288.37L165.10,289.24L167.96,291.41L169.02,291.77L166.60,291.53L155.48,289.00L154.60,289.01L153.61,289.36L152.68,289.78L151.99,290.00L150.89,289.97L149.54,289.73L148.63,289.24L148.82,288.44L147.28,288.54L138.72,287.61L137.50,287.70L136.18,287.95L134.99,287.87L132.64,287.45L128.99,286.20L127.88,286.17L127.49,285.92L127.27,285.84L122.98,284.31L122.46,284.21L121.89,284.27L121.07,284.51L120.19,284.60L119.73,284.29L119.46,283.87L119.14,283.59L114.55,282.10L112.62,280.94L111.86,280.88L111.11,281.00L110.57,281.04L110.44,280.76L108.00,281.32L107.34,281.66L106.74,282.39L106.28,282.70L105.43,282.89L105.00,283.29L105.04,283.69L104.82,284.03L104.38,284.28L103.73,284.47L104.77,284.72L105.56,285.13L105.82,285.74L105.21,286.60L104.58,285.97L103.34,285.24L101.86,284.72L100.49,284.76L98.78,285.27L97.58,285.42L90.10,285.17L86.05,284.06L84.70,283.94L83.26,284.20L83.53,285.25L84.62,286.26L87.26,287.61L87.57,288.52L84.33,291.30L83.93,292.49L82.09,292.36L81.50,292.18L81.04,292.61L81.49,292.81L81.77,293.03L82.22,293.55L81.06,293.52L80.46,293.32L80.17,292.90L79.93,292.24L79.49,292.83L79.24,293.35L79.17,293.81L79.29,294.25L80.59,294.14L81.31,294.56L82.48,295.85L84.28,296.48L84.93,296.91L85.21,297.81L80.65,296.77L80.08,296.10L80.68,296.00L81.27,295.95L80.76,295.53L79.84,295.53L77.60,296.11L76.47,296.13L74.11,295.31L72.45,294.39L71.24,293.29L70.43,292.87L69.92,292.30L70.48,291.49L71.42,290.56L72.06,289.63L72.98,289.12L72.58,288.69L70.54,288.05L70.69,289.62L68.85,290.68L66.21,291.22L63.86,291.27L59.74,290.39L60.01,289.99L63.10,288.02L62.71,287.25L55.62,286.36L54.70,286.41L52.08,287.25L50.96,287.45L49.70,287.25L48.88,286.94L47.95,286.95L46.45,287.67L46.61,287.82L46.87,288.29L45.65,288.58L45.22,289.01L44.98,289.48L44.31,289.89L43.51,289.92L42.98,289.51L42.45,288.43L43.73,287.79L42.44,287.63L40.75,287.65L39.53,287.94L39.61,288.61L39.21,288.97L37.49,289.23L36.80,289.24L36.03,290.57L35.06,291.59L34.68,292.43L35.69,293.22L37.04,293.49L40.02,293.57L41.28,293.96L40.90,293.58L40.92,293.34L41.29,292.93L42.62,293.38L44.67,294.89L45.94,295.54L46.34,295.17L45.73,294.54L45.35,294.29L44.78,294.11L45.18,293.74L47.11,293.96L47.72,294.21L48.17,295.64L48.75,295.63L49.52,295.41L50.27,295.46L50.50,296.01L50.45,296.76L50.70,297.32L52.65,297.24L61.67,298.60L63.33,299.26L63.99,299.69L64.48,300.19L64.62,300.78L63.95,301.85L64.49,301.68L65.58,301.12L66.11,299.65L78.01,303.11L75.14,303.25L75.27,303.53L75.34,304.11L75.51,304.48L70.82,303.39L69.07,302.72L68.00,301.44L63.08,304.54L62.68,305.15L61.85,304.90L61.16,304.52L61.11,303.87L62.25,302.80L61.82,302.66L58.43,304.26L55.16,304.35L48.92,303.24L44.09,303.11L41.94,303.25L40.09,302.94L38.48,302.92L38.00,303.94L37.04,303.95L35.28,303.79L34.33,303.84L33.94,304.21L34.92,304.67L34.87,305.46L34.66,306.29L35.13,306.89L35.13,307.15L34.74,307.57L34.12,307.91L33.46,307.94L32.47,307.60L26.55,307.06L24.50,306.57L24.07,306.98L24.25,307.06L24.68,307.16L24.85,307.25L24.50,307.52L24.22,307.65L23.95,307.75L23.59,307.93L23.64,308.00L23.78,308.05L23.82,308.18L23.55,308.48L22.45,309.00L23.09,309.36L24.31,309.69L25.02,310.10L24.54,311.02L22.01,312.54L21.51,313.43L22.76,313.37L25.70,312.89L26.63,312.90L27.63,312.80L30.59,311.86L31.59,311.76L33.16,313.28L32.53,315.16L30.49,316.44L27.82,316.13L31.51,319.71L30.34,320.40L32.06,320.59L34.22,320.53L36.48,320.25L38.49,319.84L39.33,320.75L41.06,320.83L44.96,320.39L45.79,320.48L47.33,320.82L48.20,320.90L48.81,320.77L49.48,320.55L50.22,320.47L51.05,320.75L50.62,321.02L49.75,321.66L49.32,321.91L50.07,322.03L52.57,321.90L52.67,321.32L53.77,321.43L55.69,322.10L56.46,321.83L57.35,321.60L58.92,321.55L66.60,322.15L71.21,323.25L70.74,323.71L68.46,323.48L63.75,323.55L61.46,323.28L60.00,322.67L59.46,322.59L58.89,322.74L57.37,323.33L55.79,323.35L53.14,323.97L52.01,324.03L51.62,324.41L52.41,325.18L52.82,325.40L52.39,325.82L50.11,325.08L49.21,324.61L48.80,324.00L47.63,324.98L46.34,325.37L45.04,325.35L43.87,325.13L44.52,324.89L45.48,324.36L45.95,324.15L44.16,323.86L41.50,323.81L38.72,324.10L36.59,324.87L38.97,325.70L38.50,326.16L33.99,326.95L32.35,326.86L30.13,325.90L28.69,325.63L27.18,326.13L28.12,326.40L28.79,326.88L28.80,327.49L27.78,328.17L27.90,328.30L28.06,328.34L28.07,328.42L27.79,328.69L26.53,328.74L21.83,328.08L21.31,328.13L20.77,328.39L20.36,328.76L19.89,329.06L19.23,329.12L19.15,329.72L20.86,329.39L22.57,329.46L25.47,330.18L25.98,330.46L26.80,331.18L27.40,331.49L29.55,331.23L34.02,331.73L34.50,331.69L34.91,331.55L35.20,331.33L35.44,331.10L35.72,330.97L37.03,330.83L40.16,330.96L48.25,332.85L50.83,333.00L54.95,334.08L56.46,334.25L58.09,334.18L60.84,333.63L62.02,333.53L63.41,333.74L63.46,332.84L63.96,332.29L64.61,331.74L65.17,330.85L65.63,331.19L65.99,331.61L66.22,332.06L66.32,332.46L66.13,332.72L65.23,333.47L65.05,333.73L65.20,333.90L65.73,334.06L66.38,335.24L67.65,335.33L68.93,335.28L69.49,335.87L69.10,336.26L68.66,336.35L68.03,336.63L67.45,336.84L66.32,337.81L64.07,337.72L61.56,337.29L58.61,337.29L56.51,336.77L54.90,337.32L45.06,337.36L42.22,337.10L41.10,337.50L40.10,337.94L39.27,338.00L38.57,337.97L35.00,338.18L38.86,339.29L54.05,339.46L56.59,340.60L54.83,340.70L52.06,340.60L50.37,340.79L45.84,341.85L44.23,342.05L42.51,342.02L40.08,341.66L38.53,341.77L35.03,342.44L33.45,342.57L31.90,342.38L31.74,343.14L31.84,343.38L32.24,343.67L31.85,344.07L31.37,344.26L30.97,344.52L30.09,345.30L30.95,344.97L30.89,345.59L33.61,345.14L34.27,345.20L33.40,345.85L38.71,345.99L38.50,345.83L38.42,345.68L38.33,345.27L43.49,344.44L44.43,344.03L44.95,344.65L44.97,345.61L44.42,346.27L45.41,346.65L46.28,346.69L48.13,346.37L48.57,346.47L49.56,346.90L49.98,346.76L50.67,346.17L51.16,345.99L55.97,346.87L58.20,346.92L58.43,345.98L59.47,346.01L60.43,346.52L61.06,347.20L61.08,347.75L59.96,348.58L58.87,349.14L58.20,349.72L58.28,350.63L60.23,350.34L61.22,350.09L61.81,349.81L64.47,349.71L65.30,349.54L65.23,349.81L65.22,349.90L65.25,349.98L65.28,350.18L64.08,350.39L61.95,350.54L60.77,350.88L59.37,351.57L59.40,351.87L60.30,351.91L61.56,351.81L60.55,352.32L59.66,352.61L58.79,352.75L57.79,352.82L59.74,353.48L60.75,353.59L61.87,353.40L62.61,353.33L63.06,353.52L63.48,353.55L64.17,353.03L66.47,352.92L66.26,353.31L66.16,353.63L65.99,353.98L65.61,354.43L66.55,354.44L66.99,354.75L67.35,355.13L68.06,355.31L68.92,355.08L69.73,354.66L70.53,354.40L71.41,354.68L71.80,354.28L72.24,353.57L72.82,353.64L74.12,354.46L75.15,354.67L76.39,354.64L77.67,354.35L78.86,353.78L78.64,353.29L78.46,353.10L78.92,352.63L79.55,353.03L80.36,354.07L80.95,354.53L84.73,355.23L85.96,355.20L86.71,355.40L87.25,355.78L87.87,356.81L88.16,357.09L88.05,357.43L88.11,358.09L88.50,358.43L89.41,357.83L89.88,357.81L92.47,358.09L93.76,357.54L95.46,356.64L97.02,356.20L97.91,357.01L98.62,356.83L98.97,357.01L99.27,357.34L99.81,357.68L102.04,358.47L102.27,358.92L102.28,359.50L102.49,359.91L103.28,359.83L105.39,360.85L105.81,360.00L106.43,359.42L107.27,359.07L108.31,358.91L107.45,358.07L108.08,357.94L108.65,357.90L109.11,357.42L106.90,356.63L106.12,356.02L105.85,355.08L112.63,358.13L116.13,358.63L117.08,359.05L117.50,359.80L117.14,361.42L117.48,362.16L118.07,361.37L118.71,360.28L119.32,359.54L119.87,359.19L122.25,357.97L122.70,358.03L123.39,358.02L124.09,357.88L124.56,357.55L124.75,356.95L124.31,356.90L123.35,357.12L122.85,356.74L121.69,356.22L121.31,355.76L121.69,355.36L124.47,356.36L125.32,357.30L124.52,358.77L125.78,358.72L126.74,358.11L127.14,357.25L126.68,356.46L127.56,356.56L128.30,357.17L128.65,358.01L128.34,358.88L129.83,358.42L130.94,358.31L133.58,358.74L135.78,358.72L137.08,358.26L140.50,357.48L141.24,357.06L141.45,356.64L141.49,356.23L141.74,355.84L142.16,355.67L144.23,354.95L142.10,354.21L142.68,354.15L143.22,354.15L144.23,354.31L144.07,354.12L143.81,353.63L144.26,353.15L144.67,353.29L145.05,352.89L144.48,352.50L142.06,351.85L145.07,350.20L144.26,348.93L141.94,347.80L140.39,346.60L142.08,346.57L143.41,346.89L145.82,347.85L147.16,348.02L148.61,348.06L149.81,348.26L150.02,348.78L149.65,349.17L152.21,349.98L153.28,350.59L153.74,351.23L154.73,350.92L155.40,350.87L155.67,351.16L155.45,351.82L154.74,351.87L154.20,352.03L152.95,352.71L153.53,352.94L153.79,353.20L153.97,353.47L154.22,353.74L152.88,354.06L151.69,354.16L150.62,354.10L149.64,353.90L149.35,354.61L149.26,354.89L148.60,354.81L147.86,354.84L147.13,355.03L146.54,355.44L146.59,355.76L147.16,356.02L147.89,356.23L149.48,356.93L153.58,358.03L156.48,358.23L161.71,359.21L163.08,359.17L162.74,357.87L164.39,357.39L168.49,357.58L171.38,358.10L173.15,358.18L174.42,357.76L173.85,357.31L173.04,355.58L174.39,355.97L175.82,355.91L177.33,355.54L178.94,354.95L179.60,354.45L181.10,352.93L181.29,352.83L181.59,352.68L182.04,353.19L181.76,353.88L181.31,354.51L181.26,354.84L187.27,357.68L187.94,357.48L188.54,356.80L189.88,356.07L191.56,356.09L194.62,357.46L196.21,357.40L196.97,357.30L197.65,357.44L198.29,357.48L198.92,357.10L200.96,355.20L203.76,354.94L204.85,354.27L205.00,353.96L204.61,353.74L203.26,352.57L202.31,351.98L201.27,351.75L200.22,352.03L200.96,350.89L202.49,350.30L204.19,350.13L205.45,350.29L205.47,350.55L205.26,351.04L205.10,351.58L205.31,351.98L205.99,352.11L206.61,351.91L207.15,351.66L207.59,351.60L210.20,352.04L215.82,352.00L228.46,355.23L230.49,356.40L231.64,356.80L233.21,356.85L233.92,356.65L234.61,356.30L235.37,356.06L236.29,356.15L236.73,356.39L237.26,356.97L237.84,357.26L237.87,356.91L237.94,356.64L237.94,356.38L237.75,356.07L238.12,355.66L239.04,355.89L239.75,356.23L240.77,357.09L237.63,358.04L236.61,358.65L238.15,358.88L241.01,359.79L242.59,360.05L244.16,359.87L247.39,358.87L248.85,358.68L249.25,358.23L247.68,357.72L248.10,357.04L250.34,355.69L250.70,354.98L250.80,353.60L250.88,353.22L251.42,352.55L251.64,352.19L252.10,351.44L252.59,350.62L252.77,351.58L251.87,353.92L252.19,354.58L252.64,355.04L252.89,355.82L252.97,356.64L252.93,357.21L251.65,360.25L251.07,360.89L249.93,361.14L248.84,361.21L247.72,361.39L246.43,362.00L247.12,362.77L248.45,362.51L249.89,361.93L250.90,361.72L257.02,361.46L256.94,360.85L257.16,360.92L257.57,361.10L257.80,361.14L258.23,360.65L257.77,360.54L257.37,360.36L258.20,360.10L258.72,359.79L259.77,358.89L259.39,358.76L259.01,358.87L258.05,358.95L258.65,358.53L258.82,358.32L258.92,358.08L259.31,357.53L260.10,357.26L261.01,358.04L262.54,358.12L264.20,357.80L265.55,357.37L264.54,358.35L263.19,358.96L261.77,359.23L260.59,359.17L260.15,359.67L261.20,360.26L266.02,361.33L269.88,363.83L270.68,364.63L271.34,366.32L272.35,366.79L275.90,366.67L279.27,367.29L280.76,367.18L281.42,367.38L281.86,368.17L280.57,367.73L280.21,368.14L282.97,369.07L283.21,369.06L283.44,368.97L284.57,368.80L285.56,368.47L286.05,368.47L286.75,368.78L286.58,369.11L285.31,369.73L284.58,369.88L284.15,370.18L284.62,370.87L285.15,371.15L285.71,371.19L286.70,370.99L288.14,370.53L292.43,368.24L290.99,365.02L291.04,363.07L293.28,362.05L293.64,361.64L290.73,362.75L289.45,363.07L289.71,362.27L289.60,361.53L287.88,360.58L288.87,360.03L289.15,359.00L289.06,358.04L288.63,357.23L287.88,356.69L288.24,356.28L289.00,356.13L289.72,356.05L290.43,356.04L291.12,356.09L289.73,357.15L290.80,357.86L294.61,358.89L295.07,359.22L295.30,359.70L295.30,360.35L296.17,359.50L297.05,358.32L298.12,357.14L299.59,356.32L302.49,355.12L304.21,354.58L305.59,354.56L307.48,354.06L314.75,351.34L316.56,350.48L319.12,347.77L319.82,346.72L320.77,344.68L321.54,343.69L322.91,342.60L328.69,340.32L331.16,339.09L331.62,338.86L332.48,337.33L336.62,334.79L338.12,334.10L339.37,333.75L343.41,333.05L343.36,332.43L348.12,330.11L349.19,329.90L349.74,329.73L351.40,328.76L351.97,328.59L352.97,328.64L353.19,328.11L352.18,325.46L352.22,324.24L353.37,323.32L354.70,322.55L356.36,321.18L357.78,319.71L358.39,318.61L358.71,318.56L358.76,318.58L358.84,318.55L359.15,318.35L359.42,315.02L359.24,314.03L360.67,313.06L360.91,312.28L360.66,311.52L360.66,311.50L360.61,310.66L361.07,309.65L361.72,308.78L363.00,307.47L363.43,307.28L364.20,306.89L364.64,306.40L364.09,305.95L363.70,305.74L363.33,305.23L361.83,304.44L361.41,303.77L361.17,302.34L360.56,301.00L360.60,300.37L361.38,299.77L366.45,299.26L366.95,299.33L368.29,299.36L368.94,299.47L369.06,299.68L369.29,300.50L369.41,300.72L370.03,301.26L370.47,301.94L371.27,302.16L372.94,301.29L372.21,300.52L369.78,299.64L369.05,299.03L369.45,298.91L370.24,298.60L370.63,298.47L370.46,297.87L370.88,297.10L371.19,296.36L368.29,294.04L369.69,293.90L371.15,294.04L372.13,294.47L372.03,295.21L372.99,294.94L374.69,294.08L375.60,293.72L376.17,293.30L376.81,293.00L378.73,292.36L379.88,291.67L380.55,290.75L380.84,289.83L380.86,289.15L380.11,288.27L378.76,287.20L377.71,286.03L377.99,284.29L377.57,283.83L376.99,283.20L376.71,282.70L376.85,281.96L377.23,281.01L377.74,280.07L379.87,277.46L381.13,275.91L382.90,274.48L384.88,274.07L384.12,273.06L384.35,272.01L385.37,271.03L386.98,270.22L387.38,269.79L383.27,268.12L381.82,266.93L381.47,265.52L382.06,264.43L383.08,263.44L385.01,261.89L386.31,261.08L387.76,260.57L388.63,260.16L388.18,259.67L388.59,259.26L391.51,260.43L394.71,262.68L395.65,262.85L396.10,263.48L397.03,264.40L398.23,265.14L399.47,265.22L402.65,264.53L403.53,263.91L403.27,262.64L403.00,262.33L402.59,262.07L401.38,261.62L401.18,261.34L401.09,260.29L400.83,259.99L400.16,259.45L398.36,256.34L398.36,256.33L397.88,255.67L396.92,255.47L395.85,255.46L394.96,255.32L394.53,254.83L394.44,254.32L394.00,254.13L392.49,254.63L392.08,254.95L391.77,255.40L391.36,255.87L390.66,256.25L390.09,256.33L388.57,256.05L386.74,255.89L386.31,255.77L386.08,255.51L385.96,255.16L385.96,254.86L386.01,254.75L384.33,254.30L378.24,253.82L377.81,253.65L377.11,253.17L376.59,253.08L376.09,253.18L375.56,253.34L374.93,253.52L374.50,253.53L373.91,253.03L373.38,251.51L372.88,250.84L375.08,249.84L375.78,249.24L375.78,248.43L378.03,247.90L379.59,247.07L380.22,246.01L380.05,245.56L379.74,244.76L379.09,243.83L378.65,243.45L378.01,243.20L377.17,243.21L376.37,243.43L375.62,243.56L374.95,243.32L374.12,242.51L373.45,241.57L373.04,240.52L372.94,239.38L373.15,238.75L373.48,238.18L373.67,237.65L373.47,237.18L371.99,236.00L373.31,236.01L374.33,235.62L375.02,234.82L375.37,233.64L375.65,232.66L375.51,232.34L374.84,232.11L374.53,231.82L374.92,230.78L374.89,230.31L372.94,227.68L371.54,226.59L369.62,226.15L367.00,226.53L361.71,228.05L359.00,228.25L358.52,228.13L357.60,227.73L357.31,227.73L357.09,227.73L356.74,227.95L356.54,228.31L356.48,228.64L356.55,228.77L356.54,228.80L355.58,229.16L355.51,229.13L354.97,229.25L354.61,229.04L354.29,229.00L353.84,229.60L355.24,230.68L354.13,231.31L355.22,232.84L353.78,233.20L353.24,234.18L351.54,234.24L347.88,233.76L346.92,233.84L346.17,233.96L345.43,234.20L344.55,234.63L344.61,234.92L344.89,235.32L344.67,235.62L343.20,235.60L342.91,236.20L342.18,236.69L341.27,237.03L340.39,237.20L339.36,237.18L339.37,236.91L339.94,236.45L340.57,235.84L341.15,235.39L341.73,235.06L341.67,234.87L339.30,234.91L338.60,235.06L338.22,235.41L337.98,237.29L337.60,237.20L336.95,237.06L334.67,235.71L333.69,235.57L333.48,235.46L333.60,235.20L333.67,234.61L333.27,234.39L332.63,234.27L332.51,234.14L333.65,233.86L332.27,233.37L328.79,233.69L327.40,233.46L322.04,230.87L321.65,230.40L321.93,229.91L322.34,229.42L322.29,228.97L319.93,226.10L319.01,225.70L315.46,224.83L312.54,223.69L311.83,223.00L311.95,221.98L314.23,219.65L314.76,218.72L314.29,218.15L312.25,217.32L311.90,217.10L311.51,216.85L311.17,216.00L311.25,215.05L311.83,213.12L310.17,212.64L309.19,211.84L308.67,210.73L308.26,208.29L307.79,207.13L307.72,206.56L308.06,206.13L308.33,205.70L308.01,205.15L308.41,205.15L309.78,205.15L313.31,205.55L315.19,205.52L316.19,205.40L316.72,205.27L318.25,204.74L320.39,204.20L322.36,203.86L326.07,205.59L328.25,206.27L330.91,206.45L339.67,205.31L342.47,205.57L342.50,205.55L342.50,205.54L343.44,204.54L342.93,204.29L341.68,204.36L340.46,204.33L339.77,203.91L338.89,202.56L338.37,202.12L337.87,202.06L336.60,202.15L336.14,202.01L335.97,201.64L336.12,200.86L335.82,200.57L335.00,200.15L334.41,199.58L334.53,198.95L335.81,198.34L335.58,198.14L335.10,197.49L338.70,197.58L341.75,197.14L342.50,197.38L343.31,198.54L344.61,199.56L346.61,200.02L349.19,200.01L352.26,199.59L353.61,199.57L355.25,200.39L357.24,200.60L357.97,201.20L358.55,201.38L359.47,201.42L359.59,201.32L359.48,201.07L359.70,200.65L361.19,199.46L362.30,198.90L369.28,197.51L371.14,196.89L372.90,196.02L373.47,195.51L374.62,194.21L375.48,193.70L376.28,193.53L377.66,193.62L377.81,193.57L378.58,193.36L379.10,192.98L380.17,191.66L380.79,191.39L381.15,191.42L381.39,191.38L381.63,190.89L384.60,190.12L385.52,189.96L386.49,189.89L390.39,190.61L391.14,190.49L391.95,190.27L392.79,190.11L394.10,190.21L394.44,190.04L396.15,189.36L397.92,188.82L402.27,187.82L403.42,187.69L405.20,187.88L407.56,187.91L410.52,187.51L412.93,187.44L415.26,187.56L417.01,187.84L419.23,187.82L420.49,186.89L420.51,185.96L418.97,185.88L418.28,185.14L416.32,183.92L414.42,183.16L412.33,181.79Z "/></g><g class="" id="rivers"><path d="M933.52,58.29L933.58,58.76L932.58,59.16L932.49,59.21L932.61,59.27L932.32,59.30 "/><path d="M933.47,59.91L933.17,59.82L932.94,59.66L932.38,59.58L932.13,59.59L931.95,59.49 "/><path d="M924.05,62.08L924.08,62.20L924.42,62.30 "/><path d="M920.53,62.34L920.79,62.28L920.94,61.83L921.35,61.61L921.51,61.38L921.99,61.32L922.18,61.20L922.26,61.15 "/><path d="M907.27,59.08L906.93,58.98L906.36,59.03 "/><path d="M908.63,59.94L908.60,59.68L908.56,59.36L908.20,59.20 "/><path d="M918.98,62.13L918.72,62.08L918.51,62.27L918.49,62.49L918.65,62.61L918.48,62.72L918.61,62.87L918.55,63.25L918.53,63.38 "/><path d="M908.95,64.86L908.44,64.71L909.15,64.22L909.90,64.35L910.26,64.18L911.14,64.02L910.84,63.79L910.42,63.61 "/><path d="M907.20,68.65L907.01,68.52L907.21,68.43L907.22,68.27L907.77,68.21L907.81,68.21L907.88,68.12L908.03,67.91L907.85,67.70 "/><path d="M906.35,67.12L906.54,67.08L906.96,67.29L906.99,67.63L906.76,67.92L906.34,68.25L905.95,68.32L905.81,68.52L905.51,68.54L905.04,68.82L904.71,68.82L904.53,68.83 "/><path d="M905.29,69.68L905.46,69.51L905.80,69.48L905.95,69.23L906.77,68.93 "/><path d="M903.42,73.22L904.49,73.50L904.34,73.09L904.03,72.89L905.23,72.41L905.36,72.31L905.57,72.15 "/><path d="M902.81,76.21L902.46,75.95L902.66,75.71L902.63,75.49L902.52,75.47L901.74,75.30L901.66,75.19L901.78,75.07L901.62,74.85L900.66,74.69 "/><path d="M331.95,223.46L331.29,223.37 "/><path d="M621.44,347.69L621.02,347.73L620.81,347.93L619.63,348.01L619.17,348.24L618.64,348.50L618.37,348.83L618.42,349.09L618.43,349.12L618.18,349.61L618.14,349.70 "/><path d="M281.57,247.15L281.20,247.06L281.19,247.06 "/><path d="M710.20,381.61L709.86,382.14L709.41,382.11L708.90,381.86L707.11,381.74L707.01,381.74L706.75,381.60L706.50,381.46L706.46,381.49L705.73,381.98L705.42,382.04L705.19,382.03L705.27,381.71L704.76,381.51L704.49,381.53L704.41,381.54L704.26,381.63L704.37,382.03L703.77,381.87L703.18,381.57L702.72,381.60L701.71,381.13L700.65,381.08L700.58,380.96L700.41,380.66L699.92,380.65L700.05,380.29L699.85,379.96L699.78,379.86L699.35,379.84L699.26,379.38L698.77,379.39L698.64,379.08L698.65,379.04L698.73,378.68L698.12,378.68L697.97,378.68L697.51,378.41L697.45,378.03L697.44,377.95L696.90,377.58L696.79,377.18L696.77,377.16L696.52,376.92L696.13,376.77 "/><path d="M711.27,384.04L711.13,384.05L710.96,384.06L710.90,384.06L709.82,384.10L709.45,384.07L707.02,383.90L706.38,383.81L704.67,383.59L703.04,383.37L702.99,383.38L702.19,383.51L701.57,383.89L701.12,383.92 "/><path d="M701.12,383.92L700.34,383.78 "/><path d="M701.12,383.92L701.18,383.35L700.54,383.36L700.34,383.78 "/><path d="M700.34,383.78L698.89,383.23L698.40,382.91L697.51,382.35L696.12,380.94L696.00,380.86L694.26,379.69L693.92,378.88L693.79,378.56L693.74,378.54L693.65,378.51L692.03,378.05L691.62,377.77L690.98,377.32L690.57,377.04L690.35,376.94L689.39,376.53L689.39,376.52L689.38,376.26L689.38,376.21 "/><path d="M588.10,347.53L587.88,347.77L587.26,348.42L587.38,348.70L587.00,349.21L586.56,349.38 "/><path d="M656.60,367.99L656.40,368.06L656.11,368.16L655.73,368.30L655.14,368.51L654.08,368.46L654.01,368.46L653.78,368.52L653.22,368.66L652.24,369.45L651.73,369.47L651.32,369.34L651.29,369.33L650.65,369.14L650.10,368.97L648.57,368.72L648.53,368.71L647.52,368.66L647.42,368.68L647.25,368.69L645.91,368.84L645.66,368.82L644.64,368.74L644.62,368.74L644.20,368.76L643.43,368.79L643.07,368.81L642.25,368.85L641.55,369.00L640.98,369.13L640.80,369.10L640.50,369.05L640.37,368.96L639.96,368.69 "/><path d="M711.28,384.48L711.06,384.46L711.05,384.46L710.63,384.44L709.17,384.36L707.01,384.24L706.48,384.17L704.47,383.89L703.37,383.74L702.73,383.75L702.65,383.75L702.14,384.12L701.71,384.68L701.44,386.08L701.12,386.70L700.96,387.01L700.84,387.09L700.61,387.26L700.07,387.39L696.92,387.28L696.27,386.83L695.92,386.99L694.40,386.99 "/><path d="M694.40,386.99L695.85,386.37L697.94,385.16L700.34,383.78 "/><path d="M302.14,263.26L301.77,263.10L300.90,263.03L300.47,262.77L300.08,262.79L300.01,262.79 "/><path d="M284.63,259.35L285.07,258.87 "/><path d="M662.56,375.75L662.02,375.71L661.21,375.85L660.79,375.74L660.43,375.65L660.10,375.69L659.97,375.92L659.82,376.18L659.79,376.19L658.49,376.60L657.33,376.82L656.74,376.78L656.31,376.75L656.29,376.75L655.45,376.53L654.46,376.00L653.81,375.95L652.91,376.09 "/><path d="M307.20,267.73L307.27,267.91L307.33,268.08L307.86,268.30 "/><path d="M306.67,267.74L306.51,267.74L306.12,267.74L306.23,268.05 "/><path d="M586.56,349.38L586.67,349.46L586.76,349.53L586.57,349.71L586.87,349.99L586.87,350.44L586.50,351.21L586.53,351.63L586.76,351.76L587.01,351.89L586.90,352.80L586.88,352.96L587.56,353.26L589.46,354.47L589.74,354.78L589.78,355.44L590.03,355.81L590.11,355.94L590.31,356.01L591.25,356.34L592.16,356.91L592.36,357.42L592.40,357.52L592.46,357.67L592.46,357.67L592.83,358.11L592.85,358.23L592.87,358.32L592.87,358.34L592.89,358.43L592.91,358.55L593.39,358.95 "/><path d="M303.45,268.42L303.60,267.88L303.75,267.33L303.68,267.11L303.61,266.92L303.58,266.81 "/><path d="M647.46,377.29L647.31,377.08L646.11,376.50L645.40,376.41L644.95,376.63 "/><path d="M686.54,390.39L686.61,390.28L686.61,390.28L686.71,390.12L687.17,390.10L687.19,390.10L687.68,390.07L688.03,390.06L688.04,390.06L689.26,389.53L690.23,389.62L691.25,389.41L691.25,389.40L691.75,388.81L692.46,388.65L692.94,388.42L693.12,388.34L693.16,387.87L693.16,387.84L693.23,387.09L693.38,386.91L693.83,386.87L694.40,386.99 "/><path d="M714.91,393.94L714.60,393.88L714.50,393.87L713.80,393.73L710.98,393.20L710.12,392.81L709.80,392.66L709.31,392.44L709.15,392.37L708.96,392.28L708.44,391.91L708.32,391.83L708.02,391.41L706.98,390.73L706.96,390.72L705.90,390.41L703.70,389.78L702.80,389.26L702.43,389.19L702.23,389.15L702.08,389.13L701.92,389.00L701.86,388.95L701.67,388.81L701.38,388.31L701.35,388.29L701.34,388.28L700.97,388.05L700.24,387.88L700.18,387.87L699.54,387.72L697.33,387.58L695.84,387.27L694.06,387.38L693.72,387.66L693.71,387.74L693.67,388.02L693.61,388.40L693.38,388.68L693.29,388.74L693.09,388.85L692.10,389.07L691.86,389.35L691.79,389.44L691.65,389.48L691.18,389.63L690.57,389.83L689.31,389.89L687.96,390.34L687.77,390.40L687.44,390.42L686.81,390.47L686.79,390.47L686.70,390.48L686.54,390.39 "/><path d="M664.19,376.22L664.46,376.33L664.84,376.74L665.06,376.97L665.26,377.69L665.12,378.02L665.32,379.12L665.33,379.13L665.35,379.15L665.54,379.30L665.84,379.55L666.45,379.81L667.00,380.05L667.76,380.88L667.77,380.90L667.75,381.19L667.92,381.33L667.95,381.36L668.45,381.79L668.96,382.15L669.37,382.43L669.92,382.59L670.60,382.54L671.15,382.67L672.06,382.88L672.40,383.10L672.49,383.16L672.51,383.16L672.64,383.15L673.22,383.13L673.65,383.37L673.77,383.58L673.62,383.86L673.59,383.92L673.88,384.40L673.58,384.62L673.78,384.93L673.66,385.04L673.41,385.26L672.99,385.95L673.33,386.41L673.68,386.89L673.75,386.91L674.72,387.18L674.77,387.21L675.63,387.64L675.68,387.66L675.84,387.74L675.87,387.76L675.98,387.81L676.26,387.81L676.33,387.81L676.54,387.82L676.82,387.88L677.45,388.04L677.71,388.30L678.03,388.62L678.47,388.80L678.82,389.49L679.07,389.67L679.39,389.91L679.47,389.97L679.58,390.50 "/><path d="M679.58,390.50L679.57,390.61L680.18,391.14L680.27,391.23L680.79,391.44L681.20,391.61L681.55,391.58L681.66,391.45L681.97,391.13L682.62,391.09L683.66,390.66L684.11,390.68L684.40,390.85L684.66,391.00L684.73,391.03L685.22,391.10L685.67,390.60L685.71,390.56L685.85,390.53L686.54,390.39 "/><path d="M624.26,373.93L624.74,373.47L625.00,373.61L626.37,374.33L627.82,374.54L628.04,374.44L628.56,374.21L629.00,374.02L629.35,373.57L629.42,373.22L630.65,372.21L630.85,372.04L630.99,371.93L631.54,371.78L631.72,371.79L632.33,371.81L632.71,371.69L632.89,371.53L633.26,371.22L633.43,371.07L633.55,370.97L633.38,370.71L633.52,370.55L633.53,370.53L634.11,370.39L635.19,370.12L635.55,370.19L635.88,370.24L636.81,370.39L637.13,370.61L637.45,371.21L638.55,372.05 "/><path d="M617.19,370.98L618.47,371.38L618.58,371.41L619.06,371.91L620.08,372.35L620.53,372.82L621.18,372.91L621.54,373.10L622.15,373.42L622.92,373.48L623.82,373.78L624.26,373.93 "/><path d="M638.57,377.66L639.63,377.68L642.29,378.42L642.36,378.53L642.40,378.59L642.49,378.73L642.63,379.67L641.40,380.49 "/><path d="M609.99,371.03L610.43,370.80L610.92,370.74L611.89,370.88 "/><path d="M608.30,368.98L609.49,370.56L609.99,371.03 "/><path d="M305.93,268.31L305.38,268.47L305.19,268.36L304.86,268.34L304.30,268.45L303.78,268.70L303.69,268.74L303.62,268.86L303.36,269.34L303.30,269.44L303.79,270.19L304.53,270.61L305.34,270.74L306.49,270.92L307.19,271.22L307.49,271.54L307.83,272.30L308.41,272.84L309.21,273.32L309.65,273.40L309.88,273.43L310.01,273.46L311.48,273.72L313.50,274.40L314.34,274.54L314.66,274.60L315.58,275.28L316.26,275.49L317.38,276.76L318.40,276.89L319.13,277.45L319.14,277.70L319.14,277.77L319.14,277.77L320.41,278.19L320.52,278.23L321.10,278.57L321.47,279.06L321.76,279.45L321.89,280.12 "/><path d="M642.30,380.58L643.51,380.16L643.80,380.26L644.00,380.56L644.50,380.82L644.71,381.59L645.38,382.00L645.96,382.14L646.14,382.35L645.60,383.34 "/><path d="M608.92,372.40L609.08,372.26L609.20,372.14L609.44,371.93L609.95,371.75L610.35,371.62L610.37,371.46L610.34,371.42L610.27,371.34L609.99,371.03 "/><path d="M602.63,370.10L603.26,370.36L603.35,370.39L603.35,370.40L603.26,370.59L603.49,370.81L603.75,370.83L603.92,370.51L604.00,370.52L604.34,370.58L604.59,370.62L604.58,370.88L605.01,371.02L605.44,371.49L605.52,371.57L605.65,371.52L606.63,371.20L606.76,371.16L606.80,371.24L606.98,371.57L607.06,371.71L608.05,372.34L608.06,372.35L608.55,372.38L608.92,372.40 "/><path d="M679.58,390.50L678.54,390.28L678.34,390.24L675.94,389.72L675.62,389.79L675.45,389.83L675.08,390.28L674.84,390.58L674.14,391.44L673.72,391.58L673.29,391.72L673.17,391.98L672.34,392.34L672.24,392.39L671.09,392.21L671.05,392.20L670.66,392.14L670.19,392.18L670.14,392.18L670.00,392.19L669.60,392.30L668.89,392.86 "/><path d="M704.38,402.87L703.99,402.61L703.31,402.18L702.86,401.61L702.82,401.55L702.46,401.10L702.42,401.04L700.40,400.05L698.38,399.53L697.93,399.63L697.81,399.94L696.82,400.30L696.68,400.35L696.15,400.33L695.48,399.80L694.88,399.68L694.45,399.88L694.08,400.29L693.82,400.06L693.42,400.21L692.85,400.01L692.71,399.68L692.16,399.54L691.07,399.53L690.92,399.72L690.66,400.05L690.74,400.37 "/><path d="M666.36,392.57L666.69,392.34L667.75,392.51L668.06,392.56L668.22,392.58L668.89,392.86 "/><path d="M623.48,379.37L623.79,379.30L623.91,379.13L623.92,379.12L623.93,379.13L624.32,379.31L624.94,379.37L625.27,379.28L625.42,378.99L625.82,378.97L626.11,378.73L626.65,378.72L626.97,378.53L627.48,378.52L627.80,378.36L628.50,378.77L628.55,378.63L628.65,378.34L629.00,378.29L629.64,378.20L629.91,377.98L630.59,377.82L630.41,377.45L630.75,377.43L630.84,377.42L631.10,377.40L631.29,377.31L631.51,377.20L631.91,377.22L632.52,377.25 "/><path d="M622.53,379.19L622.55,378.99L622.55,378.95L621.91,378.76L621.54,378.48L621.59,378.29L621.81,377.95L622.28,377.23L622.34,377.14L622.35,377.13L623.44,376.65L623.85,375.98L624.00,375.51L624.03,375.44L624.03,375.43L624.02,375.41L623.91,374.71L623.85,374.34L624.09,374.10L624.26,373.93 "/><path d="M713.91,395.25L713.25,394.92L710.18,393.38L709.86,393.42L709.36,393.32L708.67,393.17L707.82,393.50L705.95,394.23L704.87,395.30L703.18,395.48L702.08,394.98L702.03,394.96L699.74,394.68L699.22,394.96L697.07,393.88L696.89,393.78L696.30,394.07L694.60,393.97L691.58,394.65L691.45,394.68L691.07,394.77L690.93,394.80L690.66,394.94L690.46,395.05L690.03,394.95L690.01,394.95L689.28,394.52L689.18,394.47L689.09,394.41L688.62,394.32L688.56,394.35L687.44,394.92L687.35,395.14L687.55,395.42L687.73,395.68L688.36,395.96L688.44,396.24L687.18,397.14L687.50,397.45L686.75,397.99L686.18,398.40L686.06,398.48L685.40,398.63L684.96,398.97L684.60,399.14L684.05,399.39L683.76,399.13L683.61,399.00L682.89,398.80L682.52,398.81 "/><path d="M622.53,379.19L622.55,379.20L622.78,379.30L622.99,379.39L623.22,379.38L623.48,379.37 "/><path d="M622.53,379.19L621.54,379.03L621.33,379.10L620.73,379.28L620.54,379.14L620.59,378.93L620.28,378.78L619.68,378.47L619.54,378.40L619.37,378.04L619.39,378.04L619.73,377.88L619.55,377.67L618.95,377.54L619.28,377.21L619.40,377.09L619.31,377.00L619.15,377.08L619.00,377.15L618.61,377.35L618.13,377.28L617.53,377.19L617.50,377.19L616.28,377.15L616.10,377.14L616.09,377.14L615.99,377.11L614.11,376.50L613.10,376.53L613.06,376.53L612.92,376.54L612.84,376.50L612.37,376.31L612.33,376.31L612.10,376.29L611.80,376.27L611.73,376.21L611.65,376.14L611.75,375.91L612.24,375.79L612.34,375.76L612.46,375.55L612.30,375.40L612.16,375.40L612.06,375.40L611.95,375.60L611.77,375.59L611.72,375.58L611.68,375.31L611.69,375.30L611.87,375.09L612.07,374.86L612.17,374.74L611.86,374.63L611.50,374.68L611.34,374.70L611.28,374.65L610.27,373.77L610.25,373.68L610.19,373.26L609.76,372.89L609.55,372.48L609.32,372.45L608.92,372.40 "/><path d="M623.07,380.40L623.43,379.90L623.53,379.76L623.66,379.58L623.48,379.37 "/><path d="M666.36,392.57L666.22,392.59L665.18,392.75L664.92,392.79L664.90,392.80L662.30,393.49L661.76,393.63 "/><path d="M661.76,393.63L662.13,393.83L663.21,393.86L663.67,393.88L665.00,393.37L665.32,393.25L665.89,393.04L666.25,392.68L666.36,392.57 "/><path d="M647.22,377.88L648.20,378.22L648.35,378.25L650.04,378.63L651.35,378.92L651.88,379.03L652.40,379.49L653.06,379.48L653.26,379.62L653.37,379.65L654.24,379.86L656.02,379.87L656.76,380.28L657.03,380.43L657.91,381.18L657.96,381.22L658.18,381.50L658.61,382.03L658.71,382.60L658.73,382.72L658.61,382.83L658.54,382.90L658.47,382.91L658.39,382.93L657.99,383.01L658.32,383.60L658.76,383.83L659.44,383.91L659.62,384.05L659.07,384.24L659.18,384.58L658.99,384.99L658.92,385.02L658.59,385.14L658.56,385.50L658.48,386.49L658.07,387.61L658.53,388.05L658.44,388.61L658.85,389.46L659.05,389.88L659.50,390.27L659.51,390.40L659.52,390.52L659.53,390.60L659.55,390.84L659.83,391.19L660.08,391.50L659.98,392.20L659.96,392.31L660.59,393.23L660.65,393.31L660.66,393.32L660.69,393.37L660.73,393.39L660.85,393.44L661.05,393.54L661.11,393.52L661.57,393.43L661.76,393.63 "/><path d="M600.32,373.94L600.69,373.75L601.58,373.80L601.86,373.70L601.95,373.66L602.65,373.80L603.42,373.95L603.83,373.98L604.62,374.03L605.08,374.06L605.29,373.98L605.51,373.90L606.59,373.53L608.55,372.58L608.76,372.48L608.92,372.40 "/><path d="M596.33,371.55L596.67,371.87L597.25,371.97L597.57,372.15L597.92,372.16L598.42,372.42L599.25,373.09L599.28,373.11L600.32,373.94 "/><path d="M676.05,395.80L676.43,395.72L677.58,396.08L678.22,396.28L678.68,396.64L678.69,396.66L678.91,397.27L678.94,397.35L679.01,397.52L679.20,398.06L679.39,398.22L681.04,399.15L681.39,399.60L682.81,400.36L683.84,400.92L684.55,401.93L685.07,401.93L685.72,401.92L686.04,402.08L686.12,402.12L686.20,402.40L686.30,402.46L686.60,402.64L687.06,402.05L686.80,401.41L686.96,401.14L687.32,400.96L687.72,401.06L688.04,401.29L688.30,401.27L688.57,400.90L688.42,400.77L688.62,400.53L689.40,400.34L689.50,400.36L689.68,400.40L689.89,400.62L689.98,400.70L690.40,400.70L690.74,400.37 "/><path d="M298.44,278.43L299.75,278.73L299.83,278.94 "/><path d="M321.89,280.12L321.36,280.10L320.40,280.05L319.55,280.22L318.90,280.09L318.84,280.09L317.87,280.19L316.96,280.74L316.09,280.77L315.47,281.00L314.87,281.09L314.79,281.08L314.41,281.04L314.11,281.00L313.41,281.13L312.33,281.06L311.56,281.14L310.96,281.69L310.61,281.80L309.74,281.50L309.61,281.46L309.59,281.43L309.22,281.11L308.76,280.70L308.51,280.08L308.09,279.92L304.92,279.69L304.42,279.82L303.24,279.63L302.12,279.95L301.52,279.80L301.02,279.50L300.99,279.48L300.45,279.16L300.04,279.13L299.83,278.94 "/><path d="M298.44,278.43L297.93,278.64L296.46,278.34 "/><path d="M296.46,278.34L296.68,277.98L297.82,278.14L298.44,278.43 "/><path d="M344.52,293.10L344.38,293.12L343.89,293.18L342.73,292.36L340.60,291.31L339.01,291.05L338.05,290.41L338.01,290.36L336.68,288.95 "/><path d="M296.32,278.55L296.46,278.34 "/><path d="M583.39,369.68L583.92,369.43L584.97,369.69L585.20,369.64L585.44,369.58 "/><path d="M344.90,293.96L345.01,293.68L345.08,293.54L345.10,293.49L344.83,293.31L344.52,293.10 "/><path d="M296.22,278.82L296.32,278.55 "/><path d="M299.83,278.94L298.51,279.21L297.94,279.16L297.27,278.93L296.75,279.00L296.25,278.90L296.22,278.82 "/><path d="M295.15,278.67L296.32,278.55 "/><path d="M296.22,278.82L295.46,278.94L295.15,278.67 "/><path d="M596.33,371.55L594.60,371.41L591.99,371.20L590.90,371.11L590.30,371.06L589.32,370.98L588.83,370.94L588.29,370.90L587.84,370.86L587.64,370.85L586.59,370.76L582.53,370.43L582.49,370.43 "/><path d="M581.89,370.37L579.03,370.03 "/><path d="M295.15,278.67L293.66,278.50L292.81,278.80L292.64,279.07L292.69,279.24L292.35,279.29L291.86,279.16L291.66,279.22 "/><path d="M285.77,278.09L285.55,277.30L286.22,276.85L286.02,275.69L285.96,275.68L285.77,275.52L285.30,275.46 "/><path d="M325.56,290.53L326.62,290.02L327.27,289.38L327.30,289.35L327.36,289.29L328.01,288.43L328.19,287.57L328.08,287.01L328.04,286.80L328.00,286.61L327.97,286.46L327.44,285.83L326.73,285.40L325.67,284.75L325.52,284.66L325.34,284.40L324.89,283.76 "/><path d="M285.77,278.09L288.72,278.19L289.66,278.62L289.73,278.77L289.70,278.82L289.54,279.15L289.67,279.77 "/><path d="M690.37,408.75L690.91,408.91L690.95,408.92L691.58,408.91L692.06,408.81L692.50,408.47L692.55,408.43L692.55,408.43L692.95,408.44L693.57,407.88L693.87,407.78L694.02,407.52L694.54,406.65L696.23,406.20L695.96,405.46L695.57,405.34L695.31,404.84L695.75,404.41L695.49,403.91L695.78,403.71L694.81,402.99L694.73,402.67L694.95,402.69L699.57,403.04L700.08,402.76L700.49,402.29L700.68,402.26L701.39,402.13L701.40,402.14L701.86,402.49L702.48,402.54L702.94,402.57L703.24,402.60L703.62,402.90L703.72,402.98 "/><path d="M690.74,400.37L691.18,400.55L691.10,400.76L690.41,401.07L690.99,401.93L691.81,401.94L692.35,402.25L692.44,402.63L692.97,403.13L693.86,402.98L694.11,403.15L694.10,403.38L694.44,403.62L694.50,404.28L694.11,404.64L694.01,405.37L693.43,406.14L692.83,406.46L692.35,406.43L692.16,406.62L691.88,406.63L691.54,406.52L691.20,406.41L690.93,406.55L690.66,406.51L690.57,406.65L690.82,407.15L691.11,407.27L691.20,407.30L691.41,407.87L691.24,408.21L691.18,408.35L691.17,408.35L690.75,408.56L690.37,408.75 "/><path d="M582.18,373.47L582.44,372.74L582.64,372.21L583.35,372.07L583.54,372.04L584.07,371.59L584.96,371.30L585.36,371.17L585.66,371.25L586.10,371.36L586.45,371.44L587.20,371.32L587.95,371.48L587.99,371.47L588.74,371.47L589.77,371.45L589.79,371.45L590.72,371.62L591.01,371.67L591.29,371.92L591.37,372.00L591.42,371.99L591.84,371.95L592.20,371.90L592.55,371.86L592.95,371.96L593.22,372.02L594.06,372.21L594.07,372.21L594.32,372.27L594.61,372.25L594.98,372.23L595.42,372.39L596.28,372.70L597.52,372.93L597.91,373.13L598.60,373.84L599.00,374.04L599.15,374.12L599.69,374.19L600.32,373.94 "/><path d="M690.37,408.75L690.18,408.40L690.12,408.29L689.72,408.06L689.54,407.96L689.54,407.96L689.32,407.64L688.55,406.47L688.26,406.33L687.38,406.33L687.36,406.33L686.30,406.33L685.77,406.90L685.55,406.96L685.08,407.09L684.13,407.00L682.01,407.20L680.96,407.12L680.16,406.63L679.97,406.52L679.55,406.26L679.06,406.05L678.91,405.99L678.78,405.93L678.49,405.81L678.16,405.55L677.61,405.14L677.21,404.61L677.07,404.42L676.80,404.05L675.16,403.04L675.03,402.99L674.94,402.95L674.19,402.64L673.88,402.37L673.48,402.02L671.86,401.13L671.64,401.10L671.56,401.08L670.91,401.43L670.51,402.05 "/><path d="M616.13,385.92L616.12,385.89L615.95,385.17L616.69,384.63L616.76,384.57L617.47,384.41L617.88,384.00L619.08,383.78L619.52,383.07L619.69,382.99L620.47,382.62L620.55,382.59L621.06,381.86L621.09,381.84L621.18,381.76L621.33,381.65L621.80,381.53L622.07,380.97L622.47,380.90L622.49,380.89L623.07,380.40 "/><path d="M578.59,373.46L578.08,373.51L577.89,373.45L577.62,373.37L577.57,373.30L577.57,373.29L577.36,372.95L577.30,372.87L577.19,372.70L576.91,372.26L576.42,372.13L576.06,372.25L575.82,372.19L575.54,371.83L575.60,371.46 "/><path d="M669.63,402.52L669.77,403.10L670.41,403.61L670.35,403.83 "/><path d="M623.07,380.40L623.18,380.88L623.18,380.89L623.22,381.04L623.02,381.26L622.94,381.34L622.88,381.40L622.95,382.26L623.39,382.70L623.40,382.72L623.46,383.12L625.36,384.02L625.71,384.62L625.91,385.45L625.79,385.65L625.45,386.22L625.44,386.25L625.30,386.31L624.76,386.55L624.69,386.58L624.24,387.18L623.95,387.56L623.82,388.70 "/><path d="M600.32,373.94L600.92,375.11L601.14,375.24L601.44,375.42L601.67,375.85L602.46,376.17L602.99,376.05L603.85,376.40L604.03,376.52L604.38,376.75L604.28,376.92L604.67,377.30L604.71,377.33L605.21,377.60L605.18,377.80L605.70,378.54L605.69,378.97L606.24,379.16L606.19,379.37L606.36,379.47L607.19,379.18L607.78,379.27L608.68,379.89L608.44,379.97L608.25,380.03L608.31,380.24L608.74,380.49L609.37,380.56L609.57,380.33L610.08,380.20L610.39,380.27L610.46,380.39L610.47,380.41L610.51,380.48L610.56,380.50L611.24,380.88L611.64,381.19L612.03,381.49L612.18,381.92L613.46,382.60L613.82,383.01L613.84,383.42L614.31,383.72L614.08,384.27L614.15,384.38L614.30,384.63L614.03,385.01L614.03,385.02L614.45,385.35L615.19,385.95L615.73,385.93L616.13,385.92 "/><path d="M272.33,276.76L272.80,276.82L273.16,276.58L274.21,276.60L275.23,276.43L275.48,276.57L276.95,276.85L277.11,277.08L277.23,277.15L277.78,277.46L277.70,277.83L277.83,277.92L280.60,278.62L280.80,278.67L281.25,278.56L281.32,278.56L282.77,278.52L283.26,278.85L283.72,278.83L284.16,278.60L284.31,278.52L285.14,278.56L285.53,278.27L285.77,278.09 "/><path d="M272.33,276.76L271.94,276.48L271.31,276.28L269.90,276.10L269.55,275.61L268.81,275.30L268.62,275.31 "/><path d="M287.37,282.29L287.92,282.43L290.63,282.13L291.41,282.13L293.26,282.83L293.71,283.00L294.33,283.07 "/><path d="M287.37,282.29L287.41,281.78L286.05,280.61L285.87,280.11L286.00,279.21L285.82,278.34L285.77,278.09 "/><path d="M294.33,283.07L294.38,283.04L296.17,282.36L297.09,282.17L299.08,282.20L299.62,282.48L300.50,282.52L301.66,282.58L302.98,282.81L306.25,283.61L306.73,283.84L306.92,284.36L306.96,284.47L307.62,284.79L308.87,285.37L309.14,285.46L310.14,285.82L312.61,286.69L313.35,287.09L314.70,288.13L314.86,288.40L315.01,288.65L315.59,288.97L315.36,290.12L315.45,290.28L315.64,290.58L316.98,291.41L318.53,292.19L319.19,292.52 "/><path d="M275.87,279.03L274.69,278.61 "/><path d="M321.55,290.90L321.14,291.14L321.00,291.61L320.59,291.99L320.67,292.35L320.73,292.61L320.45,292.84L319.90,292.82L319.39,292.60L319.19,292.52 "/><path d="M274.69,278.61L273.83,278.43L272.65,277.82L272.54,277.71L272.31,277.46L272.32,277.14L272.33,276.76 "/><path d="M275.87,279.03L277.00,279.42L278.38,279.88L278.52,279.93L279.55,280.16L279.82,280.22L279.91,280.24L280.80,280.43L282.84,280.88L283.96,281.43L284.86,281.73L287.37,282.29 "/><path d="M618.46,388.74L618.08,388.38L616.97,388.23L616.76,388.10L616.47,387.23L616.55,386.87L616.60,386.66L616.13,385.92 "/><path d="M275.87,279.03L275.06,279.00 "/><path d="M274.65,278.92L275.06,279.00 "/><path d="M274.65,278.92L274.69,278.61 "/><path d="M265.53,275.99L266.29,276.15L268.69,276.03L269.57,276.18L270.81,276.85L270.87,276.88L271.93,277.45L271.96,277.62L271.99,277.83L272.70,278.34L273.49,278.45L274.65,278.92 "/><path d="M322.44,291.74L324.11,291.81L324.25,291.92L322.65,292.19L322.37,292.40L322.05,292.44L321.83,292.46L321.19,292.72L320.99,292.89L321.66,293.48L321.61,293.67 "/><path d="M319.19,292.96L319.19,292.52 "/><path d="M294.33,283.07L293.28,283.33L292.74,283.31L292.26,283.49L292.14,283.73L292.27,284.02L291.70,284.81L290.54,285.26 "/><path d="M657.56,403.98L657.72,403.91L658.70,403.49L658.70,403.49L658.78,403.42L659.14,403.07L659.91,403.21L660.52,403.41L661.27,403.65L661.28,403.66L661.82,403.94L662.23,403.91L662.93,403.85 "/><path d="M657.56,403.98L657.59,403.91L657.74,403.50L657.75,403.50L658.11,403.33L658.62,403.09L658.67,403.01L658.81,402.77L658.82,402.75L659.26,402.67L660.11,402.92L660.89,403.15L661.20,403.24L661.36,403.35L661.85,403.68L662.25,403.71L662.47,403.65L662.58,403.62L662.83,403.56L663.02,403.36L663.01,403.24L662.99,403.05L663.52,402.67L663.95,402.88L663.99,402.90L664.43,402.86L664.79,402.64L664.92,402.45L664.81,402.27L664.74,402.15L664.98,402.07L665.26,401.98L665.28,401.97L665.40,401.74L665.33,401.64L665.18,401.41L665.59,400.93L665.93,400.93L666.01,400.93L666.60,400.48L666.73,400.39L666.75,400.37L666.80,400.37L667.38,400.28L667.83,399.84L667.97,399.19L667.75,398.69L667.71,398.59L667.60,398.34L667.40,397.88L667.09,397.14L667.16,397.01L667.37,396.69L667.38,396.66L667.38,396.65L667.16,396.20L667.29,395.53L667.40,395.43L667.53,395.31L667.83,395.25L668.31,395.15L668.57,395.10L668.59,395.09L668.92,395.02L668.95,394.97L669.04,394.85L668.94,394.78L668.82,394.67L668.33,394.27L668.32,394.25L668.31,394.22L668.19,393.83L668.80,392.98L668.89,392.86 "/><path d="M590.66,380.34L591.65,379.95L592.04,379.95L592.99,380.21L593.07,380.25L593.87,380.62L594.06,380.86L594.05,381.12L594.06,381.14L594.52,381.55L595.39,382.02L595.53,382.04L595.71,382.07L595.82,382.16L596.37,382.62L596.24,383.09L596.83,383.57L596.83,383.58L596.87,383.86L597.99,384.30L599.20,384.36L599.69,384.93L600.45,385.31L600.89,385.39L601.00,385.40L601.16,385.43L601.54,385.33L601.89,385.05 "/><path d="M260.29,276.16L259.92,276.44L260.26,276.55L260.77,276.53L261.88,276.22L262.76,276.15L263.53,276.22L264.39,275.97 "/><path d="M690.37,408.75L690.55,409.18L690.61,409.33L690.42,409.61L690.33,409.75L690.57,409.99L690.63,410.06L690.01,410.44L690.05,410.79L689.26,411.79L688.60,411.84L688.15,412.07L688.50,412.40L689.03,412.63L689.11,412.85L688.72,413.42L688.49,413.75L688.14,413.90L687.11,413.49L685.58,413.22L684.51,413.03L684.43,413.02L683.74,412.98L683.09,412.93L682.72,413.00 "/><path d="M622.47,390.74L622.03,391.46L621.96,392.24L621.48,392.67L620.94,392.52L620.83,392.49L620.20,392.49 "/><path d="M680.25,413.13L681.12,412.99L681.65,413.12L681.98,412.95L682.16,412.96L682.72,413.00 "/><path d="M319.19,292.52L318.58,292.42L318.09,292.33L317.41,292.38L317.00,292.33L315.27,292.11L314.75,292.13L314.22,292.31L311.97,292.37L310.10,292.70L308.78,292.74L308.23,292.86L308.21,293.03 "/><path d="M247.72,274.68L248.15,274.76L248.30,274.79L249.20,274.83L249.97,274.87L251.11,274.93L251.23,274.93L251.71,274.86L251.98,274.81L253.52,274.57 "/><path d="M602.18,385.01L602.63,384.76L603.19,384.78L603.33,385.12L603.97,385.49L604.07,386.02L603.91,386.47L604.19,387.08L605.02,387.90L605.03,388.10L605.74,388.19L606.20,388.73L606.76,389.04L607.72,389.29L607.80,389.75L607.84,389.97L608.27,390.31 "/><path d="M247.72,274.68L247.39,274.75 "/><path d="M275.06,279.00L275.53,279.09L275.76,279.28L276.76,279.62L277.42,279.67L277.50,280.00L278.50,280.14L278.65,280.16L279.27,280.30L279.43,280.33L279.45,280.34L280.20,280.51L280.76,281.04L282.45,282.10L283.41,282.19L284.18,282.67L284.73,282.65L285.25,282.81L285.44,283.00L285.68,283.04L285.92,283.08L286.21,283.23L286.93,283.62L287.89,285.20L287.61,285.46L286.51,285.85L286.41,285.99L286.91,286.72L287.33,286.85L287.23,287.03L287.55,287.44L287.78,287.53 "/><path d="M246.39,275.21L247.31,274.92L247.72,274.68 "/><path d="M246.39,275.21L246.44,275.39L247.25,275.45L247.97,275.13L248.01,274.96L247.72,274.68 "/><path d="M588.68,385.13L589.00,385.48 "/><path d="M246.39,275.21L245.59,275.47L245.42,275.53 "/><path d="M305.46,293.10L303.80,292.78L303.42,292.91L301.78,292.71L299.13,292.66 "/><path d="M299.13,292.66L299.24,292.29L298.84,291.64L299.22,291.13L299.56,290.97L299.89,290.99L299.81,291.19L300.60,291.32L300.93,290.87L301.27,290.78L302.17,290.99L302.48,290.87L302.72,290.63L302.51,290.39L303.02,289.70L303.04,288.94L302.87,288.69L302.58,288.59L301.96,288.59L300.11,287.92L300.03,287.89L299.56,287.42L299.95,286.93L299.94,286.47L300.36,285.71L300.14,285.40L299.59,285.36L299.12,285.07L298.66,285.03L296.98,283.96L295.44,283.99L295.06,283.79L294.89,283.42L294.33,283.07 "/><path d="M584.46,384.66L584.52,384.46L584.55,384.35L584.60,384.18L584.60,384.17L585.18,383.52L585.23,383.11L584.72,381.48L584.84,381.46L585.04,381.42L586.14,381.20L586.20,381.16L586.99,380.65L587.05,380.64L587.21,380.63L587.34,380.50L587.90,379.95L588.00,379.84L588.05,379.80 "/><path d="M588.97,386.45L589.06,386.38L589.24,386.24L589.08,385.72L589.00,385.48 "/><path d="M644.45,390.17L644.32,390.60L644.33,390.68L644.40,391.44L644.22,391.72L644.21,391.73L644.05,391.99L644.23,392.32L645.89,393.88L646.29,394.04L646.36,394.28L646.11,394.95L646.01,396.13L645.01,396.94L645.16,397.11L644.97,397.47L645.18,397.90L645.03,398.21L644.83,398.30L644.72,398.35L644.69,398.82L644.68,398.98L644.42,399.44L644.43,400.64L643.92,401.60L643.96,402.02L643.57,402.68L643.68,402.96L642.90,403.66L642.55,403.74L642.53,403.77L642.33,404.19 "/><path d="M628.18,391.03L628.54,391.29L628.59,391.64L628.49,391.83L628.38,392.03L627.73,392.31L627.31,392.49L627.28,392.55L627.25,392.61L627.17,392.77L627.05,393.00L627.08,393.20L627.09,393.23L627.12,393.46L627.13,393.49L627.30,393.59L627.82,393.92L628.17,394.14L628.59,394.19L628.82,394.54L629.11,394.60L629.37,394.48L630.42,394.94L631.12,395.05L632.04,395.19L632.24,395.38L632.69,395.24L632.65,395.09L633.25,395.17L633.49,395.42L634.77,395.73L634.77,395.74L635.27,396.08L635.52,396.25L636.55,396.53L636.67,396.82L637.00,396.92L637.09,397.34L637.66,397.91L637.35,398.05L636.43,397.73L636.22,397.87L636.20,398.41L636.28,398.52L636.69,399.18L637.67,399.51L638.63,399.82L639.88,400.79L640.19,401.91L640.16,402.56L640.33,402.79L640.60,403.14L640.91,403.55L642.33,404.19 "/><path d="M241.74,274.77L240.75,275.04 "/><path d="M616.13,385.92L615.63,386.25L615.44,386.65L615.44,386.65L614.96,386.87L614.59,387.22L614.56,387.40L614.51,387.73L614.03,388.41L613.70,388.44L613.43,388.46L613.36,388.72L612.87,389.07L612.87,389.18L612.87,389.38L612.48,389.76L611.59,389.72L611.22,389.70L611.15,389.70L611.11,389.76L610.84,390.19L610.71,391.05L609.91,391.23L609.60,391.30L608.34,392.42L608.37,392.56L608.49,393.11 "/><path d="M607.72,392.96L608.49,393.11 "/><path d="M588.97,386.45L588.67,386.33L587.88,386.01L587.13,385.96L586.28,386.21L586.27,386.21L585.89,386.42L585.51,386.64 "/><path d="M584.82,385.72L584.93,386.06L585.51,386.64 "/><path d="M621.73,394.54L621.06,394.91L620.12,395.09L619.63,395.41L618.98,395.45L618.63,395.60L618.19,395.63L617.47,395.30L616.30,395.38L616.09,395.03L615.51,394.72L614.82,394.58L613.94,394.74L613.71,395.10L613.26,395.10L613.20,395.45L612.30,395.36L611.73,395.45L610.74,394.93L610.13,394.90L609.70,394.89L609.58,394.84L609.34,394.76L609.19,394.42L608.91,394.26L608.61,394.08L608.51,393.89L608.63,393.41L608.49,393.11 "/><path d="M238.39,275.66L238.64,275.56L239.38,275.61L239.60,275.51 "/><path d="M238.39,275.66L237.99,275.60 "/><path d="M237.99,275.60L237.93,275.39 "/><path d="M589.00,385.48L589.24,385.48L589.32,385.49L589.57,385.49L590.31,385.49L590.68,385.71L590.82,385.79L593.62,386.43L594.22,386.57L594.29,386.73L594.76,386.94L595.06,386.83L595.37,386.92L596.25,387.18L596.57,387.41L596.83,387.59L597.24,387.66L598.12,388.26L597.93,388.56L598.58,389.23L599.17,389.36L599.73,390.14L599.65,390.42L599.74,390.52L599.80,390.59L600.23,390.74L600.93,390.73L601.33,390.98L601.38,391.25L601.95,391.54L602.07,391.87L601.99,392.21L602.21,392.42L602.31,392.51L602.67,392.86L603.05,392.87L603.40,392.89L604.32,392.46L604.78,392.24L605.17,392.33L605.61,392.26L605.89,391.94L606.33,392.04L606.81,392.38L607.50,392.60L607.56,392.64L607.73,392.77L607.72,392.96 "/><path d="M236.93,275.64L237.65,275.76L237.99,275.60 "/><path d="M657.56,403.98L657.40,404.19L657.16,404.49L657.09,404.93L657.04,405.00L656.82,405.25L656.77,405.27L656.58,405.35L656.42,405.42L656.23,405.51L656.16,405.66L655.94,406.15L655.86,406.30L656.08,406.56L656.36,406.89L656.50,407.43L656.29,408.65L656.03,409.13L655.66,409.33L655.68,409.67L655.68,409.73L655.70,409.76L656.02,410.11L656.02,410.12L655.90,410.56L655.47,410.71L655.41,411.20L655.53,411.37L655.56,411.41L656.38,411.48 "/><path d="M299.13,292.66L298.79,292.92L299.03,293.35L298.95,293.82L298.47,293.91L298.45,294.06L299.20,294.63L299.18,294.66L299.10,294.83L299.02,295.00L297.51,295.67 "/><path d="M297.72,296.08L297.51,295.67 "/><path d="M297.51,295.67L297.38,294.98L297.36,294.92L294.28,293.84L293.44,293.70L293.01,293.45L292.34,293.30L292.32,293.30L292.18,293.02L291.72,292.98L291.59,292.81L291.38,292.56L290.40,292.85L290.10,292.86L288.99,292.89L288.51,292.67L287.14,293.04L286.70,292.94L286.69,292.67L286.52,292.57L286.00,292.44L285.60,292.73L285.21,292.46L284.91,292.60L284.37,292.36L283.63,292.23 "/><path d="M567.89,383.83L567.97,383.51L567.69,382.82L567.90,382.39L567.30,381.52L567.06,380.84L567.34,380.33L567.06,379.64L567.14,378.86L566.77,378.59L566.78,377.91L566.78,377.82L566.39,377.56L566.49,377.35L566.92,377.17L567.29,376.53L567.24,376.38L567.06,375.88L566.90,375.41L566.85,375.37L566.52,375.09L566.38,374.98L566.26,374.88L566.09,374.42L566.30,373.68L566.27,373.42L566.24,373.21L566.23,373.11L566.58,372.46L567.21,371.79L567.23,371.77L567.46,371.14 "/><path d="M567.89,383.83L567.15,383.52L566.46,382.94L565.86,382.11L565.78,381.66L565.13,380.87L565.15,380.41L564.58,379.84L563.44,378.04L563.37,377.99L563.17,377.83L563.13,377.80L562.26,377.11L562.20,377.06L561.01,376.83L560.71,376.66L560.50,376.54L560.27,376.42 "/><path d="M567.89,383.83L568.38,384.03L568.32,384.11 "/><path d="M661.32,415.03L663.02,414.85L663.53,414.49L663.38,413.96L663.89,413.34L664.63,413.30L665.67,412.97L666.23,412.79L666.42,412.85L666.94,413.02L668.16,413.18L668.85,413.27L670.04,413.24L670.25,413.17L671.11,412.87L671.24,412.76L671.26,412.75L671.48,412.55L671.47,412.29L672.26,412.32L672.89,412.25L672.97,412.24L674.50,412.09L674.57,412.08L676.69,412.19L677.72,412.42L678.26,412.77L678.36,412.79L678.58,412.83 "/><path d="M283.63,292.23L282.95,292.25L282.86,292.25L282.22,292.11 "/><path d="M680.68,419.61L680.65,419.26L681.08,419.24L681.71,419.45L681.72,419.45L682.86,420.28L683.05,420.61L683.61,421.03L684.12,422.28L684.86,422.78L685.71,423.06L685.81,423.11L687.00,423.76L687.29,423.82L687.47,423.86L687.82,423.60L689.66,423.61L690.25,423.49L690.90,423.17L691.03,423.19L691.18,423.21L691.55,423.28L692.37,423.42L692.52,423.38L692.72,423.32 "/><path d="M244.24,275.74L244.16,275.89L243.90,276.36L243.89,276.37L243.92,276.49L244.09,277.02L244.01,277.40L243.67,277.91L243.76,278.11L244.34,278.41L244.35,278.41L244.67,279.22L244.80,279.57L245.70,279.73L245.88,279.92L246.05,280.09L247.03,280.39L247.22,280.69L247.50,280.89L247.89,281.17L249.08,281.41L249.79,281.43L249.92,281.43L250.21,281.71L250.37,281.87L250.74,281.89L251.72,282.90L251.79,282.96L252.66,283.03L253.81,283.30L254.24,283.30L254.86,283.28L256.79,283.70 "/><path d="M283.18,293.47L288.16,293.19L289.12,293.35L289.79,293.35L290.34,293.46L291.14,293.62L291.81,293.58L292.24,293.67L293.85,294.01L294.41,294.30L294.36,294.63L294.55,295.00L295.84,295.12L295.96,295.13L296.07,295.16L296.59,295.31L296.87,295.47L297.30,296.06L297.40,296.22 "/><path d="M283.63,292.23L283.53,292.44L283.47,292.56L283.47,293.16L283.18,293.47 "/><path d="M282.22,292.11L281.83,292.40L281.06,292.44L280.82,292.58L280.88,292.78 "/><path d="M282.42,293.29L282.09,293.10L280.88,292.78 "/><path d="M283.18,293.47L282.73,293.48L282.42,293.29 "/><path d="M585.51,386.64L584.59,387.00L585.01,387.32L584.85,387.52L584.35,387.59L584.48,387.92L584.32,388.07L583.40,387.82L583.17,388.86L582.86,388.83L582.70,388.63L582.27,388.63L582.41,389.49L581.38,389.45L580.71,389.26L579.12,389.31L578.22,389.34L576.59,388.85 "/><path d="M576.59,388.85L576.56,388.84L575.99,388.59L575.23,387.46L574.77,387.05L574.19,386.82L574.17,386.77L574.03,386.49L572.60,385.86L572.14,385.36L572.03,385.30L570.94,384.74L568.86,384.15L568.32,384.11 "/><path d="M567.62,385.97L568.01,386.06L568.22,385.84L568.20,385.58L568.78,385.28L568.90,385.07L568.32,384.37L568.25,384.29L568.32,384.11 "/><path d="M643.30,411.38L643.23,411.10L642.71,410.76L642.60,410.53L642.84,410.35L642.98,409.93L643.24,409.80L643.45,409.32L643.76,409.07L643.85,408.99L643.85,408.98L643.64,408.76L642.73,407.79L642.86,407.44L642.61,406.96L642.13,406.97L641.77,406.38L641.63,406.16L642.17,404.94L642.33,404.19 "/><path d="M665.98,419.41L666.45,419.47L667.97,419.65L671.09,419.38L671.64,419.34L672.43,419.08L673.58,419.10L674.81,419.24L675.19,419.28L675.98,419.57L676.32,419.69L676.70,419.61L676.82,419.40L677.24,418.71L678.00,418.10L678.34,417.65L678.51,417.43L678.98,417.13L679.19,416.59L679.20,416.57L679.59,416.05L679.68,415.93L679.81,415.74L679.89,415.74L680.05,415.73L680.50,415.70L680.55,415.67L682.23,414.71L682.50,414.36L682.45,414.16L682.87,414.02L682.98,413.76L682.72,413.00 "/><path d="M243.55,282.46L243.67,282.46L243.86,282.07L243.39,281.63L243.45,281.08L243.47,280.88L242.85,280.17L242.32,279.86L242.32,279.82L242.31,279.48L242.09,279.28L241.59,278.83L241.40,278.79L241.22,278.75L241.05,278.72L240.40,277.73L239.30,277.22L238.77,276.71L238.79,276.43L238.35,276.05L238.39,275.66 "/><path d="M275.06,279.00L274.88,279.06L274.97,279.42L275.75,279.46L276.09,279.64L276.09,279.82L276.12,280.53L276.10,280.54L275.02,281.38L274.82,281.54L274.29,281.75L274.17,282.39L274.22,282.44L275.06,283.39L275.56,284.28L275.52,284.86L275.26,285.09L273.74,285.47L273.66,285.51L271.78,286.38L271.54,286.49L271.08,287.13L271.02,287.22L269.50,287.65L268.81,287.85L268.34,288.13L267.81,288.67L267.03,288.96L266.70,289.21L265.27,289.41L263.87,289.32 "/><path d="M644.09,412.34L644.10,412.34L644.69,412.55L645.00,412.80L644.94,413.02 "/><path d="M577.17,390.53L576.97,390.00L577.07,389.78L576.59,388.85 "/><path d="M282.22,292.11L280.58,291.81L279.99,290.81L279.92,290.18L280.19,289.80L280.18,289.50L280.17,289.42L280.35,289.18L280.30,289.10L280.18,288.91L279.48,288.63L279.21,287.98L279.02,287.86L279.15,287.47L278.98,287.24L278.49,287.12L278.17,286.73L277.68,286.65L277.29,286.73L276.59,287.23L276.02,287.29L275.88,287.28L274.02,287.09L273.28,287.29L272.95,287.84L273.06,288.08L272.97,288.30L272.86,288.55L273.01,289.01L273.66,289.60L273.35,289.89L272.48,290.06L272.17,290.32L271.99,290.35L270.27,290.63L269.06,290.28L268.49,290.36L266.98,290.31L266.85,290.31 "/><path d="M256.11,274.58L257.12,274.74L257.30,274.83L257.31,274.83L259.14,275.66L259.36,276.26L259.79,276.39L259.69,276.93L259.48,277.10L259.00,277.26L258.97,277.35L258.91,277.65L258.67,277.82L257.11,277.94L256.99,277.95L256.69,278.13L256.66,278.22L256.35,278.99L256.35,279.00L256.03,279.30L255.32,279.63L255.28,279.65L254.96,279.98L255.11,280.14L255.17,280.16L255.77,280.35L256.32,280.24L256.33,280.24L257.18,280.52L259.08,280.86L259.38,281.15L259.75,281.50L259.98,281.72L260.50,281.98L261.17,282.04L261.47,282.26L262.14,282.36L263.63,283.21L264.18,283.41L264.71,283.86L264.94,284.06L264.73,284.34L264.45,284.44L264.39,284.46L263.82,284.56L263.34,284.63L262.71,284.62L261.47,284.97L261.30,285.23L261.54,285.50L261.50,285.53L261.34,285.66L260.82,285.76L260.94,285.88L261.23,286.18L261.25,286.39L260.44,287.35L260.72,287.80L261.45,288.29L261.75,288.63L261.85,288.74 "/><path d="M596.57,397.21L596.69,397.12L598.26,395.94L601.80,394.26L602.29,393.92L602.95,393.78L603.90,393.99L604.00,394.01L604.25,394.06L604.28,394.07L604.58,394.03L604.77,393.81L604.91,393.64L604.91,393.64L604.82,393.18L604.78,392.98L604.98,392.68L605.20,392.64L606.10,392.46L607.04,392.75L607.26,392.82L607.72,392.96 "/><path d="M588.97,386.45L589.05,386.49L589.38,386.63L589.51,387.09L589.68,387.73L589.71,387.82L590.03,389.01L589.96,389.88L589.33,390.77L589.36,390.86L589.47,391.38L590.68,391.90L591.90,392.44L592.94,393.33L593.17,393.53L593.84,393.74L594.66,394.28L594.68,394.32L595.32,395.49L595.42,395.67L595.96,396.19L595.89,396.63L596.37,397.03L596.57,397.21 "/><path d="M243.55,282.46L243.46,282.72L243.83,283.12L243.85,283.12L245.17,282.98L245.40,283.06L245.51,283.58L246.97,284.42L248.22,284.54L248.86,284.75L250.80,284.72L251.72,284.98 "/><path d="M689.74,427.41L689.60,427.08L689.06,427.00L688.93,427.24L688.73,427.06L688.55,426.91L688.01,426.88L687.52,427.04L687.29,427.20L686.70,427.60L686.05,427.77L686.18,428.24L686.17,428.25L686.03,428.35 "/><path d="M251.72,284.98L253.24,285.25L253.35,285.27L254.60,285.34L255.71,285.83L256.54,285.73L256.92,285.83L257.05,286.07L257.20,286.32L257.26,286.43L257.12,286.70L257.21,287.10L257.00,287.50L257.29,287.63L257.96,287.69L259.08,288.41L260.23,288.92L260.03,289.38L259.99,289.47L260.25,289.75L260.35,289.86 "/><path d="M280.88,292.78L280.65,292.94L280.07,292.81L279.83,292.75L279.14,292.97L278.68,292.96L278.29,293.11L277.10,293.24L276.47,293.16L276.08,292.97L275.41,292.86L275.16,292.95L274.43,292.78L273.96,292.58L273.22,292.26L272.93,292.03L272.12,291.92L271.30,292.37L269.93,292.49L269.68,292.52L268.83,292.32L268.62,292.43L268.10,292.29L267.23,292.05L266.81,291.63 "/><path d="M650.80,406.65L652.32,407.62L652.75,408.69L653.30,408.93L653.93,409.90L653.80,410.08L653.74,410.15L652.79,411.43L652.62,411.65L651.81,412.27L651.70,412.53L651.90,412.68L651.80,412.96L651.62,412.98L651.50,412.99L651.21,413.64L650.67,414.18L650.00,414.50L649.92,414.68L649.73,415.04L649.53,415.24L649.03,415.72L648.47,415.84L648.24,416.18L648.47,416.42L648.15,416.50L647.81,416.30L647.68,416.22L647.30,415.99L647.03,415.95L646.84,416.06L646.78,416.10 "/><path d="M646.78,416.10L646.71,416.06L646.09,415.79L645.87,415.69L645.49,415.52L645.33,414.96L645.55,414.37L645.28,413.14L644.94,413.02 "/><path d="M602.32,401.47L602.06,400.56L602.61,399.73L602.64,399.37L602.90,399.30 "/><path d="M621.93,395.29L622.68,395.55L623.49,396.49L623.96,396.79L624.20,397.18L624.79,397.24L625.31,397.47L626.08,398.09L626.76,399.23L627.65,400.24L627.78,400.61L627.65,400.84L628.04,401.58L628.18,402.46L627.72,402.47L626.94,403.07L626.80,403.50L627.22,403.81L627.05,404.36L627.29,404.83L627.18,405.27L627.75,406.00L627.65,406.57L627.44,406.72L627.28,407.12L626.56,407.12L626.36,407.28L626.54,407.58L626.40,407.93L626.06,408.16L626.24,408.54L625.88,409.38L626.24,409.65L626.09,409.82L625.51,409.93L625.29,410.11 "/><path d="M620.82,396.40L621.37,396.18L621.84,396.19L622.24,396.52L622.37,397.62L622.84,397.98L623.36,398.18L623.61,398.60L624.24,398.85L625.24,399.05L626.09,399.77L625.59,400.40L625.18,401.47L625.35,401.66L625.18,402.21L624.99,402.36L625.40,402.89L625.27,403.16L625.03,403.30L624.68,403.29L624.39,403.48L623.87,403.42L623.60,403.60L623.15,403.64L623.19,403.89L622.85,404.20L622.77,404.63L622.94,405.12L622.68,405.66L622.30,405.78L622.63,406.21L622.62,406.44L623.07,406.62L623.32,407.08L623.78,407.29L623.41,407.57L623.63,407.90L623.37,408.15L623.69,408.60L624.14,408.81L623.81,409.47L624.66,409.67L625.29,410.11 "/><path d="M601.48,402.20L601.67,401.92L601.88,401.59L602.08,401.54L602.32,401.47 "/><path d="M601.16,403.01L601.30,402.84L601.54,402.56L601.71,402.34L601.48,402.20 "/><path d="M601.48,402.20L601.38,402.34L601.09,402.77L601.11,402.84L601.16,403.01 "/><path d="M251.72,284.98L250.77,285.81L250.78,285.86L250.88,286.28L250.46,286.82L251.09,287.74L251.14,287.81L251.21,287.86L252.51,288.93L252.50,290.00L252.76,290.17L253.70,290.36L254.57,290.39L254.93,290.52L255.48,290.71L255.60,290.98 "/><path d="M600.07,403.58L600.65,403.45L600.69,403.42L601.16,403.01 "/><path d="M577.17,390.53L576.66,390.52L576.40,390.51L575.78,390.71L575.74,390.73L575.55,391.11L575.58,391.22L575.62,391.40L574.99,392.12L574.61,392.22L574.29,392.30L572.52,393.99L571.84,394.36L570.81,394.03L570.32,394.07 "/><path d="M570.32,394.07L570.18,393.35L569.96,393.08L569.94,392.82L569.92,392.48L569.39,392.14L568.90,392.11L568.32,391.65L568.59,390.82L568.60,390.79L567.83,390.06L567.81,389.62L567.80,389.59L568.03,389.35L568.16,388.62L568.73,388.10L568.85,387.99L568.81,387.62 "/><path d="M602.32,401.47L602.91,401.40L603.34,401.57L603.79,401.74L603.97,401.81L604.37,401.85L604.61,401.76L604.89,401.66L605.18,401.62L605.61,401.57L606.03,401.33L606.07,401.30L606.17,401.32L606.81,401.44L606.82,401.45L609.04,402.47L609.14,402.92L609.30,403.13L609.77,403.79L609.55,404.63L610.35,405.51L610.60,406.17L610.60,406.18L611.13,406.92L611.18,407.00L611.77,407.40L612.16,407.97L612.56,408.13 "/><path d="M293.31,304.15L292.99,303.97L292.66,303.78L291.20,303.42L290.79,303.22L290.42,302.82L290.47,302.31L292.65,299.89L293.59,299.55L294.93,298.66L294.90,297.42L294.85,297.30L294.73,297.00L294.98,296.78L295.21,296.75L296.47,296.61L297.20,296.30L297.40,296.22 "/><path d="M596.57,397.21L596.91,397.51L597.10,397.69L597.11,398.09L597.11,398.18L597.13,398.87L597.14,399.63L597.16,400.43L597.40,400.87L597.31,401.04L597.24,401.15L597.17,401.29L597.05,401.49L597.04,401.51L597.15,401.92L597.33,402.07L597.51,402.22L597.29,402.47L597.23,402.54L597.23,402.68L597.22,403.03L597.22,403.20L597.21,403.38 "/><path d="M597.21,403.38L597.82,403.98L598.43,404.18L599.00,403.88L599.70,403.69L600.07,403.58 "/><path d="M597.28,404.80L597.72,404.78L597.96,404.76L598.91,404.30L599.84,404.13L599.98,403.81L600.07,403.58 "/><path d="M597.21,403.38L597.26,404.30L597.28,404.80 "/><path d="M572.26,397.00L572.25,396.89L572.67,396.72L572.47,396.28L572.90,395.68L572.92,395.35L572.92,395.26L572.50,394.92L572.11,394.80L572.00,394.77L570.99,394.79L570.41,394.48L570.32,394.07 "/><path d="M575.30,398.14L575.87,398.03L576.17,397.82L576.42,397.33L577.04,397.25L577.23,396.83L577.80,396.82L578.26,396.59L578.47,396.29L578.26,396.04L578.49,395.89L578.28,395.62L578.37,395.38L578.03,395.09L577.49,394.03L577.54,393.95L577.87,393.50L578.02,393.30L578.29,392.92L578.49,392.64L578.52,392.61L578.84,392.38L579.23,392.11L579.96,392.15L580.32,392.05L580.63,391.83L580.53,391.64L580.80,391.34L580.93,391.30L581.25,391.21L581.40,391.16L581.64,390.83L581.72,390.71L581.99,389.83L583.15,389.16L583.90,388.32L584.89,388.27L584.95,387.98L585.32,387.83L585.57,387.36L585.51,386.64 "/><path d="M575.30,398.14L575.89,394.28L575.94,394.24L576.35,393.82L576.62,393.56L577.30,393.10L577.45,392.67L577.33,392.34L577.23,392.04L577.20,391.96L577.33,391.02L577.29,390.88L577.17,390.53 "/><path d="M570.15,396.32L570.87,395.94L571.21,396.04L571.22,396.04L571.60,396.45L571.72,397.17L572.26,397.00 "/><path d="M293.72,306.87L293.66,306.55L293.34,304.81 "/><path d="M575.30,398.14L574.72,398.30L574.70,398.78L574.57,398.83L574.32,398.91L574.16,399.22L573.90,399.20L573.64,398.97L573.42,398.54L573.17,398.06L572.81,397.80L572.53,397.77L572.66,397.38L572.26,397.00 "/><path d="M266.11,291.16L265.73,291.30L264.62,291.44L263.86,291.77L263.68,292.05L263.21,292.17L262.60,292.32L262.20,292.69L261.43,293.03L260.97,293.24L260.85,293.73L260.27,294.32L259.18,294.43L258.75,294.22L258.21,294.40L258.23,294.92L258.05,295.06L258.29,295.45L258.77,295.67L258.79,295.78L258.82,295.93L258.40,296.21L258.52,296.29L258.95,296.58L258.93,296.92 "/><path d="M567.91,396.52L567.16,396.69L566.48,397.14 "/><path d="M262.78,298.43L263.29,298.25L263.93,298.25L264.36,297.78L264.25,297.57L264.73,297.32L264.86,297.06L264.68,296.73L264.67,296.71L265.17,296.32L265.56,296.22L265.11,295.49L264.53,295.15L264.14,295.09L263.66,294.53L263.69,294.23L264.00,293.97L264.46,293.87L265.33,293.94L266.17,293.71L266.34,293.35L265.89,292.96L266.02,292.65L266.19,292.24 "/><path d="M258.93,296.92L259.92,296.68L260.01,296.44L260.48,296.44L260.95,296.63L261.46,296.65L262.05,297.21L262.58,297.48L262.35,297.64L262.37,297.66L262.38,297.67L262.84,298.16L262.78,298.43 "/><path d="M597.28,404.80L597.05,404.95L596.01,405.63L595.56,405.70L595.37,405.74L594.89,405.67L594.68,405.64L594.71,405.75L594.77,405.94L594.24,406.71L594.24,407.28 "/><path d="M282.42,293.29L281.88,293.56L281.75,293.88L282.10,294.25L281.92,294.48L281.56,294.94L280.94,295.15L280.03,295.74L278.75,296.10L278.28,296.42L278.19,296.48L277.54,297.35L277.60,297.85L277.62,298.02L277.65,298.25L277.68,298.44L277.69,298.53L277.67,298.61L277.63,298.72L277.61,298.76L277.56,298.91L277.49,299.12L277.05,299.56L276.23,299.80L276.01,300.06L275.80,300.31L275.58,301.21L275.72,301.46L275.56,301.71L275.76,301.94L275.91,302.12L275.87,302.58L276.07,302.90L275.55,303.00L275.08,303.56 "/><path d="M594.24,407.28L594.04,408.13 "/><path d="M594.24,407.28L593.78,407.32L593.63,407.76L593.68,408.12L593.82,408.23L594.04,408.13 "/><path d="M249.25,291.43L248.78,291.54L248.08,292.29L248.40,292.77L248.26,292.88L248.10,293.00L247.50,293.18L246.86,293.22L245.77,293.81L245.76,293.82L245.47,293.80L244.87,293.76L244.06,293.71L243.91,293.35L243.90,293.32L243.64,293.23L243.30,293.11L242.94,293.15L242.79,293.25L242.48,293.45L242.29,293.48L242.06,293.51L241.85,293.32L241.55,293.05L241.11,292.65L240.68,292.25L240.80,291.71L240.76,291.58L240.44,290.57L240.52,290.08L239.85,289.49L239.88,289.15L239.33,288.65L239.11,288.18L239.25,287.69L238.98,287.09L239.00,286.49L238.73,285.97L239.05,285.53L239.54,285.31L239.79,284.92L241.22,284.31L241.34,284.18L241.81,283.61L242.62,283.39L242.69,283.30L243.01,282.97L242.90,282.67L243.07,282.45L243.55,282.46 "/><path d="M657.67,429.07L657.01,428.93L655.77,429.09L655.39,428.93L654.76,428.66L654.18,428.69L653.67,428.37L653.61,428.24L653.20,427.51L653.65,426.93L654.21,426.71L653.71,426.38L653.71,426.12L653.91,425.95L653.94,425.38L654.22,424.81 "/><path d="M265.74,301.93L265.94,301.76L265.69,301.55L266.39,301.24L267.92,300.07L268.43,300.14L268.92,299.98L269.48,299.19L269.84,298.94L269.86,298.67L269.89,298.37L270.56,298.00L270.57,297.95L270.63,297.78L270.44,297.49L270.05,297.27L270.37,297.00L269.90,296.29L270.34,295.84L270.18,295.69L270.27,295.18L270.37,294.63L270.79,294.44L271.16,294.45 "/><path d="M262.78,298.43L262.74,298.78L262.96,299.07L262.88,299.24L262.85,299.30L263.45,299.66L263.62,300.10L263.24,300.73L263.38,301.11L264.58,301.48L265.32,301.57L265.74,301.93 "/><path d="M570.32,394.07L569.73,394.11L568.27,393.93L567.02,394.08L565.77,393.51L564.95,393.49L564.56,393.48L563.93,394.11L563.17,394.59L562.92,394.66L562.15,394.89L561.89,395.23L561.60,395.62L561.69,395.86L561.74,395.97L561.77,396.05L561.34,396.11L560.77,396.20L560.25,396.88L559.85,396.94L559.52,397.33L559.07,397.87L558.48,398.58L557.17,398.90L556.07,398.88L555.52,398.63 "/><path d="M594.41,412.22L594.41,412.00L594.44,411.33L595.29,409.14L595.54,407.87L595.72,407.52L596.00,407.01L596.52,406.02L596.75,405.73L596.98,405.43L597.00,405.41L597.01,405.40L597.29,405.04L597.28,404.80 "/><path d="M594.41,412.22L594.39,412.22L594.05,412.16L593.91,412.14L593.75,411.98L593.65,411.39L594.13,410.86L594.13,410.86L594.29,410.16L593.91,409.79L593.90,409.71L593.87,409.55L593.84,409.41L594.01,409.21L594.61,409.00L594.70,408.73L594.35,408.41L594.04,408.13 "/><path d="M585.29,405.88L584.82,405.82L583.77,405.38L583.70,405.35L583.27,405.10L582.58,404.29L581.96,404.01L580.98,403.82L579.89,403.87L579.25,403.45L578.71,403.41L577.85,403.57L576.31,404.48L575.87,404.42L575.38,405.12L575.07,405.23L574.00,405.59 "/><path d="M574.00,405.59L574.11,405.38L574.10,405.35L573.97,404.93L573.90,404.73L573.64,403.91L573.80,403.12L574.64,402.09L574.74,401.52L574.55,400.28L575.27,399.05L575.27,398.91L575.30,398.14 "/><path d="M555.52,398.63L555.43,399.48L555.61,399.66 "/><path d="M549.77,398.28L550.18,398.31L550.64,398.09L551.42,398.14L552.37,397.84L552.69,397.74L554.04,398.05L554.80,398.34L554.80,398.34L555.52,398.63 "/><path d="M220.42,280.30L221.20,280.73L221.28,280.97L221.08,281.32L221.58,281.86L221.57,281.90L221.55,282.12L221.21,282.53L221.32,282.62L222.03,283.14L223.09,283.52L223.32,283.60L223.24,284.02L223.53,284.21L223.90,284.45L224.66,284.45L224.99,284.46L225.15,284.54L225.47,284.72L226.07,285.49L225.80,285.73L225.75,285.78L225.85,286.29L226.03,286.39L226.18,286.47L226.36,286.57L226.69,287.08L226.79,287.23L226.44,287.59L226.68,288.08L226.60,288.16L226.37,288.42L226.43,288.49L226.84,288.98L226.76,289.17L226.73,289.26L226.69,289.34L227.29,290.06L227.83,290.69L227.74,291.03L228.09,291.68L228.17,291.82L228.27,292.01L228.38,291.99L228.85,291.91L229.34,292.61L229.23,292.83L228.83,292.86L228.73,293.11L228.92,293.55L229.03,293.79L228.89,294.20L228.86,294.29L228.33,294.28 "/><path d="M539.89,395.07L540.22,395.57L541.01,396.02L541.50,396.30L542.13,396.65L543.08,397.45L544.34,397.62L544.17,397.23L545.41,396.75L547.06,396.72L547.78,397.35L547.79,397.35L549.07,397.97 "/><path d="M650.25,433.65L650.23,433.52L650.18,433.19L650.17,433.15L650.14,432.96L650.13,432.85L650.34,432.44L650.47,432.37L650.93,432.11L650.96,432.09L651.35,431.64L651.32,430.92L651.30,430.52L651.30,430.50L651.29,430.33L651.30,430.32L651.67,429.63L652.11,429.23L652.28,429.08L652.30,428.82L652.45,427.44L652.47,427.31L652.98,426.90L653.24,426.42L652.89,425.82L652.98,425.41L653.47,424.82L653.54,424.44L653.58,424.18L653.61,423.98L653.64,423.86L653.55,422.64L653.61,422.28L653.62,422.21L653.74,421.41L653.91,420.32L654.11,419.00L654.00,418.90L653.77,418.71L652.22,418.48L650.48,417.69L650.22,417.62L650.07,417.57L649.85,417.51L649.51,417.42L649.35,417.37L648.98,417.36L648.30,417.34L648.12,417.21L648.05,417.16L647.83,417.01L647.82,416.77L647.50,416.49L646.78,416.10 "/><path d="M647.30,432.86L646.67,432.55L646.61,432.14L645.86,431.71L645.96,431.50L646.19,431.51L646.20,431.51L646.57,431.54L646.70,431.34L646.36,431.18L645.91,431.26L645.91,431.26L645.91,431.26L645.41,430.94L645.50,430.89L645.79,430.73L645.39,430.24L644.93,430.31L644.75,430.17L644.75,430.17L644.74,429.82L644.51,429.60L643.77,429.30L643.58,429.23L643.44,429.17L642.87,429.23L641.77,428.47L641.61,428.36L641.43,428.24L641.17,427.85L641.07,427.71L641.06,427.14L640.41,426.79L640.27,426.71L640.16,426.55L640.02,426.33L639.93,426.20L639.87,426.10L639.65,426.05L639.60,426.04L639.69,425.43L639.70,425.36L639.75,425.03L640.23,424.76L640.32,424.49L640.57,424.47L640.67,424.19L640.72,424.07L641.11,424.11L641.37,423.90L641.43,423.76L641.66,423.20L641.29,422.94L641.28,422.74L641.67,422.66L641.69,422.64L641.85,422.48L641.59,421.97L641.96,421.29L641.79,420.79L642.17,420.80L642.26,420.58L642.80,420.31L642.92,420.09L642.86,420.00L642.73,419.78L642.81,419.33L642.95,418.44L643.12,418.24L643.26,418.07L643.45,418.03L643.82,417.94L644.04,417.89L644.05,417.88L644.23,417.70L644.10,417.46L644.06,417.38L644.16,417.00L644.43,416.90L644.75,416.79L644.87,416.43L644.83,416.26L644.79,416.12L644.45,414.85L644.64,414.44L644.43,413.91L644.67,413.50L644.74,413.37L644.94,413.02 "/><path d="M647.30,432.86L647.77,432.93L648.08,432.98L648.61,433.05L649.11,433.43L649.17,433.47L649.23,433.52L650.25,433.65 "/><path d="M650.52,434.01L650.25,433.65 "/><path d="M258.93,296.92L258.25,296.99L257.65,296.91L257.23,297.19L256.50,297.41L255.30,297.21L254.60,296.97L253.57,296.92L253.19,296.82L252.23,296.89L251.68,296.82L251.18,297.03L250.97,297.03L249.95,297.07L249.29,297.09L248.50,296.80L248.00,296.77L247.45,296.43L246.91,296.38L246.52,296.53L245.96,296.34L245.70,296.34L245.23,296.32L244.96,296.45L243.86,296.29L242.20,296.39L241.06,296.47L240.29,296.65L240.10,296.73L238.53,297.41L237.98,297.41L237.65,297.29L237.61,297.28L236.25,297.33L235.71,297.22L235.19,297.42L234.59,297.41L234.08,297.12L232.70,296.88 "/><path d="M258.14,306.20L258.02,305.99L256.29,305.49L255.59,305.66L255.12,305.50L254.72,305.04L254.27,304.91L254.16,304.74L253.35,304.87L252.59,304.46L251.85,304.43L250.76,304.11L250.31,303.03L249.99,302.83L249.15,302.65L248.43,302.63L247.12,302.59L246.91,302.58L246.25,302.26L245.51,302.11L244.96,302.20L244.80,301.88L243.46,301.40L243.31,301.34L243.37,301.01L243.18,300.68L243.04,300.44L242.45,300.36L242.15,300.12L242.14,299.73L241.39,299.49L240.98,299.09L240.42,299.00L240.32,298.87L239.85,298.20 "/><path d="M261.83,307.83L262.08,307.61L262.10,307.00L262.10,306.93L262.70,306.57L262.95,306.62L263.10,306.89L263.35,306.88L263.44,306.62L264.01,306.47L264.08,306.12L263.77,305.96L263.94,305.45L264.47,305.14L264.65,304.86L264.39,304.47L264.50,304.07L264.82,303.97L265.06,303.72L264.83,303.52L265.26,303.08L264.89,302.58L265.37,302.22L265.74,301.93 "/><path d="M261.83,307.83L260.88,307.44L260.78,307.42L259.67,307.18L259.41,306.98L258.94,306.85L258.89,306.83L258.14,306.20 "/><path d="M637.19,431.57L637.35,431.52L637.91,431.71L638.24,431.95L638.18,432.52L638.33,432.64L638.57,432.84L638.91,432.88L639.09,432.91L640.03,433.57L640.65,433.70L640.80,433.73L641.15,433.92L642.02,433.57L642.04,433.57L642.74,433.64L643.25,433.49L643.66,433.38L643.99,433.39L644.32,433.74L644.45,433.57L644.58,433.40L644.75,433.37L645.20,433.28L645.24,432.99L645.85,433.11L646.78,433.29L647.30,432.86 "/><path d="M626.82,429.36L627.75,429.05L628.17,428.91L629.56,429.04L630.03,428.83L630.70,428.80L631.24,428.77L632.13,428.74L633.31,428.68L633.78,428.82L633.88,428.85L634.76,429.43L636.59,430.64L638.04,431.02L638.22,431.24L639.08,432.29L639.27,432.53L639.30,432.57L639.74,433.10L640.93,433.20L641.71,433.13L642.34,433.07L642.66,433.04L643.56,432.50L643.89,432.49L644.02,432.49L645.10,432.76L645.32,432.64L645.45,432.58L646.49,432.83L647.30,432.86 "/><path d="M625.29,410.11L625.46,410.43L625.35,410.72L626.00,411.00L626.36,411.44L626.06,412.22L625.40,412.63L625.53,413.05L624.96,413.31L624.77,413.49L624.57,413.67L624.30,414.19L623.36,414.26L622.50,414.01L622.14,414.06L621.75,414.46L621.26,414.47L620.80,414.31L620.63,414.61L620.33,414.66L619.49,414.42L618.93,414.42L618.41,415.01L618.44,415.53L618.05,415.61L617.53,415.95L617.25,416.49L616.99,416.56L617.02,416.83L616.55,416.76L615.56,416.93L615.46,417.22L614.93,417.33L615.13,417.52L614.90,417.68L614.55,417.67L614.44,417.88L614.85,418.16L614.91,418.42L614.76,418.55L614.97,418.77L614.73,418.94L614.75,418.99L614.82,419.26L615.15,419.43L615.15,420.10L614.90,420.13L614.86,420.13L614.55,420.71L614.75,421.04L615.09,421.02L615.13,421.28L615.58,421.64L615.72,421.63L616.05,421.61L616.64,421.57L617.03,422.23L617.20,422.25L617.45,422.02L618.15,422.31L618.01,422.52L618.34,422.78L618.76,422.87L618.93,423.07L619.16,423.35L619.48,423.51L619.30,423.72L619.17,423.90L619.09,424.00L619.29,424.17L619.62,424.15L619.77,424.14L619.80,424.25L619.90,424.57L620.33,424.82L620.90,425.09L621.15,424.93L621.27,424.85L621.85,424.92L622.10,425.17L622.01,425.35L621.97,425.41L622.26,425.47L623.05,425.63L623.32,425.79L624.01,426.18L624.11,426.31L624.33,426.60L625.06,426.89L625.15,426.93L625.33,427.12L625.68,427.16L625.66,427.34L626.04,427.58L626.36,427.59L626.34,427.89L626.49,428.15L626.75,428.62L626.62,428.94L626.71,429.11L626.82,429.36 "/><path d="M605.53,422.75L606.16,421.60L606.00,421.00L606.11,420.88L606.44,420.98L606.65,420.67L606.45,420.34L607.09,420.06L606.99,419.82L607.38,419.46L607.45,419.06L607.43,419.03L607.17,418.54L606.38,418.16L606.33,417.88L606.58,417.59L606.41,416.79L606.79,416.68L606.92,416.30L606.58,415.88L606.66,415.59L606.54,415.46L605.94,414.76L605.84,414.64L605.79,414.55L605.68,414.33L604.62,412.22L603.11,410.48L602.86,409.70L602.73,409.31L602.72,409.27L602.94,408.81L602.91,408.24L602.73,407.93L602.65,407.80L603.09,407.38L603.05,407.09L603.06,407.08L603.43,406.96L603.42,406.57L603.42,406.57L603.42,406.42L604.68,405.85L604.89,405.58L605.01,405.42 "/><path d="M261.74,310.47L261.73,310.30L262.09,309.95L263.01,309.41L263.57,308.89L265.12,308.41L265.87,307.97L266.21,308.12L267.21,307.98L267.57,308.20L267.96,308.26L268.70,307.77L269.74,307.71L270.04,307.84L270.24,307.78L270.31,307.55L271.15,306.84L272.46,306.61L272.61,306.52L272.84,306.37L273.39,306.37L274.06,305.93L274.64,305.76 "/><path d="M261.83,307.83L261.69,308.08L261.85,308.40L261.54,308.53L261.41,308.89L261.72,309.03L261.77,309.40L261.01,310.08L261.18,310.31L261.74,310.47 "/><path d="M598.99,422.61L599.26,422.31L599.81,421.69L598.80,420.06L598.44,419.06L598.21,418.45L597.30,417.95L597.02,417.33L596.40,416.86L596.13,416.45L595.56,415.04L595.20,414.17L594.89,413.42L594.68,412.89L594.57,412.63L594.45,412.33L594.41,412.22 "/><path d="M594.01,420.98L592.47,420.33L592.44,420.32L592.23,420.23L592.20,420.20L592.07,420.07L592.02,420.02L592.11,419.71L592.10,419.70L591.99,419.61L591.06,418.87L590.79,418.33L590.62,417.97L590.70,417.46L590.24,416.51L590.22,416.06L590.04,415.85L589.72,415.47L589.80,415.05L590.19,414.90L590.46,414.79L590.56,414.38L590.42,413.93L590.27,413.80L590.08,413.63L589.54,413.54L589.41,413.52L589.22,413.31L589.20,413.23L589.09,412.77L588.89,411.96L587.91,410.92L587.80,410.80L587.66,410.72L587.53,410.64L587.33,410.52L586.78,410.41L586.41,410.12L585.81,409.07L585.30,408.75L584.99,408.55L584.79,408.24L584.76,406.85L584.75,406.56 "/><path d="M222.42,299.19L222.37,298.71L222.53,298.50L222.98,298.31L223.02,297.99L223.87,297.27L224.39,297.21L224.62,296.98L225.50,297.03L226.61,296.52L226.72,296.26L225.87,296.20L225.40,295.98L225.52,295.67L225.23,295.47L225.46,295.14L225.15,294.83L225.14,294.81L225.20,294.67L225.33,294.65L225.58,294.60L225.85,294.39L225.69,294.29L225.63,294.26L225.59,294.23L225.58,294.18L225.57,294.02L225.22,293.66L225.14,293.58L224.58,293.39L224.16,293.02L223.49,292.85L223.31,292.63L222.82,292.43L222.43,291.98L221.79,291.72L220.87,291.58L220.21,291.67L219.24,291.63L218.47,291.42L218.01,291.62L217.16,291.70L216.41,291.93L216.33,291.91L215.79,291.81L215.35,291.49L215.26,291.43L215.10,291.09L214.91,290.98L214.68,290.84L214.49,290.46L214.31,290.42 "/><path d="M598.99,422.61L597.87,423.06L596.70,422.87 "/><path d="M598.99,422.61L598.22,422.55L596.70,422.87 "/><path d="M596.70,422.87L596.19,422.74L594.71,421.30L594.52,421.11L594.50,421.10L594.01,420.98 "/><path d="M574.00,405.59L573.57,405.69L573.09,405.67L572.07,405.64L571.84,405.63L571.42,405.62L570.53,405.17L570.05,405.25L570.02,405.73L568.93,405.47L568.18,405.63L567.26,405.57L566.45,406.31L566.92,408.31L566.50,409.13L565.85,409.85L565.69,410.02L565.66,410.55L565.98,411.16L565.59,411.69L564.60,412.54L564.02,412.60 "/><path d="M564.02,412.60L564.30,412.94L565.24,412.89L566.24,413.14L566.85,413.34L567.02,413.75L568.91,414.24L569.17,414.21L569.34,413.93L569.17,413.43L570.01,413.26L570.20,413.09L570.11,412.77L570.38,412.69L571.15,412.84L571.37,412.75L571.49,412.70L572.74,413.33L573.38,414.71L573.75,415.06L574.28,415.55L574.43,415.98L574.69,416.17L574.72,416.18L576.10,416.36L576.20,416.64 "/><path d="M280.32,310.17L280.34,310.91L280.11,311.47L280.25,311.77L280.38,312.05L280.27,312.29L279.52,312.73L279.66,312.91L278.60,313.10L278.20,313.04L277.88,313.22L277.55,313.23L276.84,312.76L276.79,312.73L276.51,312.68L276.05,312.18L274.58,311.91L272.26,312.47L271.56,312.47L271.44,312.51L271.25,312.59L270.72,312.60L270.08,313.05L270.18,313.38L270.04,313.63L269.98,313.73L269.41,313.89L269.23,314.23L269.02,314.31L269.08,314.63L268.15,315.14L267.70,315.19 "/><path d="M258.14,306.20L257.20,306.38L256.56,306.16L256.07,306.24L255.56,306.11L254.93,306.64L254.12,306.57L254.04,306.60L253.88,306.68L253.57,307.22L253.37,307.28L252.53,307.00L251.45,307.10L250.98,306.76L250.69,306.73L250.27,306.88L249.89,307.19L249.51,307.98L249.70,308.44L249.80,308.67L249.49,309.10L249.73,309.53L249.79,309.64L250.63,310.28 "/><path d="M602.46,427.28L602.66,427.23L602.65,427.06L602.29,426.42L602.28,425.79L600.60,424.84L600.41,424.74L600.32,424.60L600.26,424.50L599.61,424.20L599.58,424.18L599.38,423.90L599.34,423.26L599.81,422.56L599.82,422.54L600.09,421.77L600.17,421.56L600.11,421.47L599.17,419.98L598.94,419.16L598.85,418.83L598.48,418.46L597.59,417.58L596.49,416.21L596.42,415.80L595.75,414.81L595.66,414.68L595.47,414.19L595.15,413.41L594.83,412.61L594.77,412.48L594.56,412.33L594.41,412.22 "/><path d="M602.46,427.28L601.82,425.89L600.68,425.38L600.38,425.25L600.11,424.90L599.29,424.50L599.11,424.15L598.90,423.74L598.99,422.61 "/><path d="M609.23,430.67L608.63,430.17L608.72,429.90L608.44,429.61L608.71,429.08L608.47,428.10L608.04,427.84L608.05,427.52L607.63,427.29L607.49,426.73L607.19,426.60L607.03,426.04L606.43,425.42 "/><path d="M602.46,427.28L602.79,427.33L602.85,427.60L602.98,427.72L603.16,427.87L603.82,428.43L603.89,428.62L604.06,429.01L604.38,429.16L604.61,429.49 "/><path d="M609.23,430.67L608.46,430.60L607.92,430.12L607.40,430.04L606.99,429.83L606.74,429.80L605.98,430.01L605.67,430.10 "/><path d="M604.61,429.49L605.12,429.98L605.12,429.98L605.67,430.10 "/><path d="M602.46,427.28L602.44,427.40L602.32,427.92L602.43,428.09L603.17,429.30L603.17,429.30L603.74,429.53L604.61,429.49 "/><path d="M596.70,422.87L596.23,422.91L595.53,422.67L594.38,421.42L594.18,421.51L593.98,421.60L593.74,421.70L593.61,421.76L593.56,421.80L593.28,422.08L593.11,422.23L593.07,422.28L592.91,422.69L591.70,423.33L591.50,423.57L591.23,424.26L591.33,424.93L590.77,425.47 "/><path d="M594.01,420.98L593.93,421.04L593.57,421.31L593.38,421.45L593.26,421.54L592.62,422.02L591.24,423.61L590.70,425.11L590.77,425.47 "/><path d="M626.82,429.36L624.75,429.59L624.62,429.60L623.89,429.80L622.86,430.08L622.67,430.13L622.14,430.43L621.29,430.63L620.32,430.85L619.11,431.36L618.43,432.03L618.40,432.06L617.20,432.33L616.56,432.75L616.10,432.86L615.23,433.07L614.47,433.39L614.13,433.40L613.00,433.44 "/><path d="M609.23,430.67L610.08,430.61L610.25,430.67L610.37,430.72L610.65,431.12L610.78,431.31L611.21,431.34L611.19,431.86L611.59,432.17L611.81,432.15L611.92,431.90L612.14,431.94L612.64,432.49L612.64,433.10L613.00,433.44 "/><path d="M272.84,320.46L272.97,320.27L272.61,320.00L272.55,319.79L272.89,319.38L273.07,319.27L273.68,319.27L274.06,319.17L274.47,319.25L275.03,318.64L275.46,318.40L275.56,318.15L275.25,317.81L274.15,317.41L273.85,317.09L272.93,317.00L272.68,317.13L271.71,316.85L271.09,316.96L269.99,316.81L269.80,316.57L269.38,316.40L269.23,316.13L268.71,316.16L268.69,316.13L268.51,315.87L268.19,315.87L267.80,315.56L267.70,315.19 "/><path d="M615.00,434.48L614.96,434.38L614.81,433.96L614.34,433.77L614.01,433.63L613.00,433.44 "/><path d="M615.19,434.88L616.16,434.82L616.61,434.24L617.10,434.17L617.39,433.39L618.28,433.22L618.54,432.95L618.79,432.68L618.81,432.66L619.02,432.58L619.17,432.52L619.81,432.61L619.82,432.60L620.11,432.43L620.09,432.11L620.24,432.04L620.85,431.82L621.30,432.35L621.64,432.47L621.67,432.48L622.18,432.44L622.62,432.32L622.83,432.26L623.65,432.03L623.67,432.02L624.54,431.18L624.56,431.15L624.67,431.05L624.75,431.04L625.38,430.98L625.64,430.82L626.00,430.60L626.74,430.16L627.98,430.22L628.66,429.87L628.91,429.74L629.03,429.85L629.28,430.08L629.52,430.08L629.68,429.82L629.82,429.58L630.49,429.52L631.00,429.75L631.07,429.79L631.44,429.73L631.87,429.67L631.90,429.71L631.98,429.79L632.09,429.91L632.37,429.69L632.68,429.76L632.96,429.96L633.33,430.03L633.83,430.64L634.42,430.79L634.39,431.29L635.14,431.68L635.56,431.73L635.72,431.93L635.91,431.92L636.05,431.58 "/><path d="M615.00,434.48L615.19,434.88 "/><path d="M220.66,304.07L220.85,303.98L221.82,304.00L221.98,303.37L222.05,303.12L222.33,302.73L222.26,302.50L222.63,302.24L223.26,302.33L223.54,302.16L223.59,301.90L224.22,301.51L224.27,301.32L223.97,300.66L223.37,299.91L223.70,299.29L224.23,299.31L224.55,299.10 "/><path d="M590.77,425.47L590.26,425.58L589.09,425.85L589.00,425.84L588.47,425.82L587.58,425.78L586.86,425.31L586.19,424.88L585.94,424.37L584.13,423.49L583.86,423.15L583.60,422.02L582.73,420.78L582.80,420.51L582.54,420.05L582.32,419.14L582.27,418.95L582.20,418.84L580.87,416.65 "/><path d="M613.00,433.44L612.40,433.69L611.43,433.40L609.59,433.44 "/><path d="M609.59,433.44L608.27,433.62L608.11,433.05L607.40,432.41L607.43,432.13L607.45,431.98L607.38,431.82L607.29,431.63L606.62,431.37L606.45,431.15L605.67,430.10 "/><path d="M258.32,317.76L258.63,317.74L258.68,317.57L258.94,317.51L259.15,317.67L259.42,317.55L259.77,317.39L260.40,317.55L260.96,317.41L261.21,317.35L261.21,317.31L261.19,317.02L261.33,316.92L261.73,317.11L261.78,317.10L262.11,317.04L262.07,316.99L261.95,316.85L262.39,316.78L262.62,316.47L263.58,316.62L264.46,316.26L264.61,316.08L265.03,316.32L265.24,316.10L265.59,316.10L265.72,315.91L266.10,315.95L267.16,315.24L267.56,315.20L267.70,315.19 "/><path d="M258.32,317.76L258.26,317.44L257.38,316.99L257.28,316.69L257.42,316.24L257.07,315.92L257.14,315.43L257.54,315.08L257.33,314.91L257.97,314.51L258.29,314.47L258.61,313.95L259.19,313.61L259.06,313.21L259.28,312.81L260.04,312.70L260.62,312.50L260.70,312.35L260.77,312.22L260.55,311.68L260.88,311.24L261.70,311.07L261.76,310.97L261.87,310.77L261.74,310.47 "/><path d="M556.09,416.59L556.84,416.42L557.95,416.52L558.34,416.44L558.90,415.67L559.79,415.05L561.49,414.68L561.63,413.66L562.74,413.14L563.21,412.64L564.02,412.60 "/><path d="M556.09,416.59L556.31,416.27L556.80,416.18L556.81,415.99L556.30,415.63L556.31,415.41L556.54,415.25L556.99,415.25L557.18,415.03L557.25,414.45L556.83,413.78L556.13,413.06L556.49,411.98L556.07,410.81L556.46,410.51L556.64,409.99L556.90,409.80L556.95,409.76L558.26,409.57L558.64,409.11L558.26,408.75L558.05,408.54L557.70,407.48L557.90,406.64L558.21,406.55L558.28,406.35L558.03,406.07L557.34,405.94L557.26,405.92L557.11,405.69L557.31,405.24L557.68,405.02L558.67,404.90L558.79,404.56L558.48,404.10L558.89,403.73L559.49,403.44L559.82,403.55L560.08,403.44L560.36,402.79L560.21,402.50L561.36,401.36L561.56,401.16L561.56,400.75L561.94,400.55L562.53,399.84L562.56,399.54L563.09,398.91L562.98,398.53L562.96,398.46L563.20,398.12L562.32,397.71 "/><path d="M577.83,425.30L577.14,424.86L577.00,424.67L576.87,424.50L576.83,424.02L576.24,423.48L576.68,422.48L576.96,422.30L576.87,422.02L576.37,421.52L576.16,420.86L576.58,420.53L575.95,419.33L576.08,419.02L576.56,418.74L577.03,418.04L577.20,417.78L577.20,417.51 "/><path d="M609.59,433.44L610.15,433.91L610.26,434.34L610.77,434.56L610.81,434.76L610.75,434.90L610.55,435.38L610.04,435.55L609.33,435.58L608.86,435.89L608.76,436.10L608.68,436.28L608.78,436.51L608.85,436.66 "/><path d="M187.48,292.65L185.97,292.34L185.29,292.20L184.74,292.33L184.67,292.33L181.51,293.67L181.22,294.12L180.69,294.27L180.52,294.44L179.80,294.57 "/><path d="M556.09,416.59L556.07,416.59L555.29,416.65L553.71,416.32L553.34,416.54L553.26,416.59L552.71,416.38L552.71,416.38L551.54,416.27L551.11,416.41L550.76,416.87L550.73,417.09L550.67,417.44 "/><path d="M587.50,430.20L587.02,429.92L586.91,429.90L586.22,429.77L585.87,429.48L586.07,428.92L586.73,428.54L587.03,428.37L587.06,428.35L588.04,428.29L588.47,427.82L588.71,427.56L588.58,427.01L588.73,426.76L588.84,426.57L589.95,426.12L590.05,426.08L590.77,425.47 "/><path d="M627.92,442.91L627.44,442.90L626.82,443.68 "/><path d="M626.82,443.68L626.39,443.22L626.51,443.00L627.00,442.80L626.52,442.34L626.56,441.70L626.60,441.23L626.45,441.07L626.28,440.90L626.24,440.85L625.58,440.71L624.86,439.85L624.46,439.81L624.16,439.78L623.34,439.16L622.88,439.14L622.59,439.30L622.02,439.24L621.41,439.39L621.32,439.62L620.70,439.60L620.53,439.27L620.17,439.08L619.59,439.14L619.43,438.84L618.86,438.53L618.70,438.63L618.61,438.60L618.44,438.54L617.83,438.32L616.80,438.32L616.48,438.04L616.23,437.82L615.65,437.74L615.83,437.16L615.44,437.25L615.01,437.12L614.91,436.96L615.10,436.63L614.76,436.02L614.75,435.99L614.98,435.64L614.65,435.24L614.77,434.97L615.19,434.88 "/><path d="M587.50,430.20L587.91,430.08L588.33,430.12L589.16,430.19L590.44,430.79L590.82,431.11L591.21,431.44L591.41,431.82L591.47,431.94 "/><path d="M225.34,310.32L225.45,310.12L225.24,309.83L225.63,309.43L225.76,309.04L226.91,308.85L227.20,308.62L227.21,308.36L227.60,307.90L228.06,307.54L228.16,306.74L227.27,306.58L227.09,306.43L227.22,306.13L227.64,306.09L227.97,305.87L228.11,305.61L228.59,305.41L228.64,305.09L228.88,305.07L229.28,304.71L229.31,304.40L229.67,304.08L230.19,303.98L230.31,303.86L230.49,303.66L230.98,303.52L231.07,303.49L231.83,302.88L231.81,302.60L232.04,302.40L232.66,302.30L232.91,302.26L233.49,301.79L234.70,301.43L234.83,300.98L235.39,300.18L235.82,299.95L236.37,299.39L236.20,299.10L235.80,299.13L235.09,298.96L234.92,298.92L234.50,298.83L234.01,298.62L233.69,298.12L233.37,298.00L233.14,297.91L232.14,297.76L230.51,296.76L229.89,296.71 "/><path d="M638.37,448.20L638.16,447.61L639.14,446.95L639.56,446.94 "/><path d="M597.24,434.43L597.56,434.81L597.67,435.29L597.69,435.41L598.03,435.61L598.09,435.64L598.13,435.88 "/><path d="M608.85,436.66L608.65,436.69L606.69,436.91L606.63,436.92L606.17,436.86L605.93,436.83L605.47,436.62L605.35,436.56L604.35,436.09L603.18,436.08L602.73,436.07L602.38,436.07L602.06,435.88L601.92,435.80L601.90,435.79L601.80,435.78L601.64,435.77L601.42,435.74L601.27,435.89L601.01,436.13L601.01,436.13L601.05,436.36L601.07,436.44L600.13,436.54L600.01,436.41L599.78,436.18L599.63,436.03L598.63,436.08L598.13,435.88 "/><path d="M615.00,434.48L614.79,434.51L614.41,434.56L614.13,435.15L613.54,435.27L613.01,435.98L612.19,436.08L611.91,436.26L611.56,436.47L611.23,437.07L611.49,437.16L611.97,437.03L612.46,437.20L612.69,437.53L612.81,438.30L612.49,438.64L612.01,438.65L611.81,438.89L611.94,439.24L611.70,439.47L611.06,439.57L610.89,439.67L610.43,439.98L609.89,440.61L609.65,440.63 "/><path d="M608.85,436.66L608.89,436.81L608.97,437.06L609.87,437.69L609.58,438.04L609.75,438.33L610.40,438.62L610.49,439.07L610.47,439.50L609.74,440.24L609.65,440.63 "/><path d="M598.13,435.88L597.71,436.02L597.51,436.36L597.35,436.39L597.00,436.45L596.96,436.45 "/><path d="M593.86,435.69L594.16,435.23L594.78,434.27L594.98,434.20 "/><path d="M593.86,435.69L594.31,435.87L594.51,436.11L595.02,435.73L595.23,435.58L595.62,435.62L596.12,435.92L596.61,435.95L596.61,435.96L596.96,436.45L596.96,436.45 "/><path d="M638.69,448.86L638.46,449.29L638.04,450.08L638.23,450.49L638.09,450.75L638.68,450.99L638.91,451.24L638.96,451.61L638.98,451.72L639.54,451.61L639.57,451.61L640.07,451.71L640.38,451.69L640.85,451.66L641.98,451.88L642.16,451.91L643.03,451.88L643.15,451.94L643.48,452.11L643.89,451.84L643.94,451.82L644.72,451.73L645.52,451.30L645.87,451.11L647.55,450.56L647.83,450.24L648.41,449.57L648.89,449.59L648.99,449.59L649.06,449.50L649.20,449.32L649.59,449.20L649.72,449.17L650.38,448.98L651.03,449.26L651.77,449.10L652.11,448.68L652.42,448.73L652.43,448.74L652.59,448.90 "/><path d="M609.65,440.63L609.79,440.97L609.85,441.00L610.40,441.33L610.73,442.05L611.55,442.33L611.64,442.36 "/><path d="M235.05,316.79L235.37,316.31L235.16,315.62L234.66,315.41L234.70,315.19L234.67,315.17L234.16,314.76L234.50,314.50L234.83,314.49L235.16,314.10L235.70,313.90L235.50,313.66L235.63,313.26L236.15,313.26L237.16,312.52L237.76,311.80L237.70,311.70L237.23,310.95L237.69,310.69L237.73,310.47L237.56,310.01L237.14,310.02L237.12,309.96L236.88,309.44L236.28,309.43L235.67,309.08L235.27,309.10L235.24,309.08L234.98,308.90L234.36,309.26L233.93,309.25L233.77,309.47L233.18,309.48L232.66,309.37L232.49,309.92L231.88,310.50L230.34,310.43L229.48,310.07L229.41,310.05L228.62,309.88L228.41,310.03L228.12,310.23L228.08,310.22L227.34,310.09L226.20,310.42L225.65,310.58L225.34,310.32 "/><path d="M611.64,442.36L611.86,442.41L612.00,442.44L612.51,442.55L612.85,442.28L613.15,442.05L613.39,441.86L613.95,441.79L614.17,441.95L614.54,441.94L614.88,442.52L615.16,442.68L615.98,442.66L616.08,442.66L616.40,442.99L616.58,443.63L616.94,443.95L617.41,444.14L617.35,444.26L617.21,444.55L616.94,444.67L616.63,444.82L616.37,444.76 "/><path d="M616.37,444.76L616.46,444.50L616.54,444.28L615.96,443.89L616.15,443.54L615.57,443.26L614.84,442.91L614.37,442.69L613.81,442.59L613.67,442.63L613.64,442.64L612.36,443.07L611.71,443.28L611.33,443.41 "/><path d="M611.64,442.36L611.68,442.71L611.36,443.09L611.33,443.41 "/><path d="M616.37,444.76L616.22,445.17L617.21,445.54L617.45,445.63 "/><path d="M581.34,433.40L581.97,433.07L582.79,432.64L582.99,432.49L583.66,431.94L583.79,431.83L584.00,431.39L584.29,431.20L584.55,431.03L585.22,430.90L585.42,430.85L585.69,430.60L586.76,430.84L586.73,430.49L586.72,430.41L586.96,430.34L587.50,430.20 "/><path d="M581.34,433.40L580.72,432.23L581.77,430.91L582.46,430.03L582.62,429.83L582.29,428.98L582.33,426.57L582.33,426.54L582.20,425.79L581.71,425.19L581.34,424.13L581.44,423.77L581.75,422.57L581.19,420.91L581.58,420.22L581.57,419.84L581.18,418.79L581.08,418.65L579.75,416.80L579.72,416.00L579.99,415.26L580.05,415.09L579.92,414.45L579.53,414.13L578.57,413.36L577.54,412.92L575.97,411.41L574.91,410.98L574.66,410.70L574.46,409.89L573.90,409.06L573.58,407.74L574.06,407.09L573.68,406.48L573.95,405.72L574.00,405.59 "/><path d="M611.33,443.41L610.91,443.44L610.81,443.45L610.70,443.45 "/><path d="M609.65,440.63L609.37,440.98L609.41,441.13L609.48,441.39L610.34,442.45L610.67,443.35L610.70,443.45 "/><path d="M581.19,433.98L581.23,433.84L581.34,433.40 "/><path d="M215.26,312.04L215.76,311.73L216.78,311.58L218.34,310.91L218.75,311.00L220.01,310.68L220.23,310.53L220.28,310.30L220.93,310.03L220.99,310.04L221.83,310.22L221.88,310.39L222.32,310.22L222.62,310.25L222.94,310.58L224.68,310.56L224.70,310.55L225.34,310.32 "/><path d="M593.86,435.69L593.29,435.46L593.17,435.46L592.67,435.45L592.33,435.68L592.13,436.47L592.12,436.53L592.17,436.56L592.61,436.83L592.62,436.95L592.63,437.20L592.65,437.42L592.65,437.48L592.24,437.56L591.93,437.93L590.36,438.11 "/><path d="M590.38,432.72L590.34,432.83L590.24,433.14L590.69,433.90L590.61,434.75L590.59,435.01L590.58,435.09L590.49,435.18L590.33,435.33L590.02,435.34L589.51,435.35L589.33,435.47L589.59,435.97L589.74,436.25L590.07,436.90L590.39,437.52L590.36,438.11 "/><path d="M512.28,411.61L512.41,411.74L512.90,412.19 "/><path d="M581.19,433.98L581.57,434.41L581.86,434.72L582.21,435.11L581.57,436.01L581.80,436.30L581.97,436.32 "/><path d="M581.97,436.32L582.39,436.37L582.92,436.24L583.61,436.08L584.12,436.12L585.85,436.83L585.99,436.89L586.06,436.92L586.18,436.99L587.57,437.85L587.62,438.24L588.13,438.69L588.12,438.74L588.03,439.07 "/><path d="M588.03,439.07L588.63,439.40L588.66,439.42L589.02,439.61L589.64,439.54L589.91,439.37L590.06,439.28L590.36,438.11 "/><path d="M608.87,447.24L608.61,446.90L608.17,446.94L608.33,447.21L608.20,447.49L608.19,447.51L608.29,447.67L608.47,447.95L608.66,447.88L608.74,447.47L608.78,447.44L608.94,447.32L608.87,447.24 Z "/><path d="M585.32,440.36L585.30,440.19L585.18,439.31L585.27,439.14L585.32,439.07L585.39,438.95L585.54,438.88L585.74,438.79L587.03,438.67L588.02,439.07L588.03,439.07 "/><path d="M596.96,436.45L596.50,436.55L595.81,437.23L595.73,437.37L595.42,437.90L595.50,438.64L595.52,438.89L595.53,438.91L594.99,438.90L594.51,439.04L594.40,438.75L594.37,438.66L594.04,438.48L593.59,438.52L593.30,438.87L593.26,438.92L593.57,439.80L593.13,440.32L592.90,440.49L592.18,441.02L591.20,442.28L591.17,442.33L591.08,442.43L590.81,442.48 "/><path d="M561.34,432.06L561.87,431.93L561.92,431.92L562.29,431.97L562.96,432.58L563.48,432.70L564.05,433.41L564.15,433.53L564.25,433.48L564.62,433.29L564.98,432.67L565.52,432.76L565.81,432.08L566.20,431.99L566.55,431.75L566.56,431.63L566.05,431.55L566.51,431.00L566.30,430.82L565.93,430.75L565.98,430.58L566.35,430.44L566.43,430.10L566.70,430.01L566.82,429.36L566.89,429.35L567.30,429.27L567.49,428.59L567.83,428.63L567.83,428.57L567.85,428.29L568.13,427.96L567.88,427.71L567.46,427.62L567.11,426.93L567.52,425.46L567.87,425.08L568.43,424.92L568.90,424.93L569.11,424.93L569.48,424.93L569.27,424.57L569.01,424.50L568.97,424.49L569.01,424.41L569.13,424.21L569.01,424.03L568.24,423.60L568.14,423.54L568.12,423.47L568.11,423.42L568.02,423.14L567.81,423.00L566.87,422.36L566.58,421.94 "/><path d="M581.80,439.57L582.63,439.50L582.98,439.25L583.11,439.26L583.76,439.30L584.00,439.45L583.77,440.05 "/><path d="M581.80,439.57L581.91,438.91L582.43,438.33L581.90,437.62L581.72,436.96L581.97,436.32 "/><path d="M585.32,440.36L585.40,440.82 "/><path d="M585.32,440.36L584.79,440.40L584.40,440.43L584.11,440.45 "/><path d="M255.44,330.02L256.11,329.56L256.67,329.38L257.15,328.94L257.22,328.65L258.21,328.12L258.60,327.60L258.89,327.22L259.61,326.88L259.94,326.52L259.99,326.17L259.75,325.36L260.43,324.42L260.46,324.18L258.90,323.15L258.90,322.76L258.90,322.65L258.42,322.46L258.25,322.21L258.28,322.14L258.68,321.37L258.67,321.34L258.55,321.00L259.04,320.66L258.73,320.39L259.15,319.74L259.15,319.26L258.46,318.78L258.22,318.23L258.45,317.92L258.32,317.76 "/><path d="M585.40,440.82L584.52,440.80 "/><path d="M590.81,442.48L590.53,442.41L590.48,442.40L590.17,442.33L590.07,442.31L590.07,442.31L588.13,441.88L585.26,441.55 "/><path d="M585.40,440.82L585.40,440.82L585.26,441.55 "/><path d="M585.04,441.77L585.26,441.55 "/><path d="M255.44,330.02L255.13,329.68L254.27,329.48L253.02,329.61L252.83,329.63L252.00,329.17L251.03,329.11L250.58,328.98L250.39,328.67L250.33,328.56L249.87,328.66L249.56,328.72L249.24,328.68L249.21,328.67L248.82,328.40L248.65,328.04L248.20,328.06L247.59,327.72L246.10,327.76L245.14,327.18L244.93,327.19L244.88,327.43L244.69,327.48L244.01,327.18L243.77,327.07L243.82,326.43L243.11,325.95L241.93,325.15L241.97,324.78L242.37,324.65L242.49,324.41L242.93,324.23L242.87,323.73L242.84,323.52L242.97,323.16L242.63,322.90L242.05,322.79L241.17,322.09L240.78,321.46L241.07,320.84L241.34,320.61L241.89,320.48L242.18,320.09L242.33,319.89L241.77,317.55L241.93,317.29L241.77,316.85L242.31,316.17 "/><path d="M582.67,441.70L583.53,441.62L583.64,441.63L585.04,441.77 "/><path d="M582.67,441.70L582.18,441.35L581.96,441.00L581.80,439.57 "/><path d="M585.11,442.88L585.96,442.73L587.17,442.87 "/><path d="M585.04,441.77L585.11,442.88 "/><path d="M606.73,451.13L606.79,451.07L606.82,451.04L607.03,450.82L607.74,450.79L607.85,450.53L606.86,450.07L606.73,449.89L606.85,449.74L606.98,449.56L607.63,449.22L608.09,449.21L608.50,448.78L608.39,448.53L608.51,448.45L609.05,448.58L609.25,448.46L609.14,448.07L609.11,447.98L609.29,447.58L609.14,447.27L609.09,447.16L608.95,446.84L609.06,446.56L609.48,446.52L609.23,445.85L609.34,445.60L609.77,445.40L609.87,444.98L610.49,444.81L610.66,444.56L610.98,444.57L611.11,444.15L611.25,443.69L611.33,443.41 "/><path d="M585.11,442.88L585.10,443.65L585.09,443.89 "/><path d="M585.09,443.89L584.58,443.43L583.96,442.86L582.67,441.70 "/><path d="M627.29,444.54L627.60,445.03L628.19,445.14L629.18,445.77L629.34,446.12L629.20,446.38L628.81,446.51L628.67,446.73L628.30,446.74L628.01,446.97L628.31,447.41L628.97,447.78L629.06,448.06L629.38,448.26L629.44,448.57L629.13,449.09L628.85,449.30L628.15,449.35L628.00,449.67L628.07,450.20L628.38,450.61L628.18,451.04L628.36,451.54L629.01,451.97L629.53,452.14L629.60,452.27L629.64,452.35L629.42,452.60L628.88,452.68L628.57,452.38L628.27,452.33L627.96,452.48L627.81,452.75L627.26,452.71L626.91,452.83L626.53,453.24L626.21,455.16L626.19,455.28L626.76,455.83L626.70,455.97L626.66,456.05L626.56,456.28L626.89,456.68L626.91,456.70L626.79,456.95L626.75,457.04L626.01,457.49L625.90,457.70L626.25,458.27 "/><path d="M626.25,458.27L626.89,458.30L627.23,458.47L627.50,458.60L628.66,459.19L629.08,459.24L630.41,459.41L630.98,459.70L631.55,459.79L632.39,459.57L632.90,459.61L633.14,459.89L633.44,459.99L634.03,459.82L634.65,459.93L635.32,459.73L635.87,459.76L636.10,459.55L636.72,459.34L636.79,459.25L636.88,459.12L637.00,458.96L636.82,458.77L636.57,458.50L636.75,458.34L637.14,457.96L637.29,457.82L637.55,457.79L637.74,457.87L638.06,458.02L639.40,457.99L639.72,457.64L639.86,457.66L640.19,457.96L640.20,457.97L641.54,458.17L641.91,458.09L642.10,458.04L642.19,457.87L642.37,457.49L642.75,457.46L643.05,457.84L643.08,457.88L643.56,457.83 "/><path d="M590.81,442.48L590.84,442.84L590.86,443.03L591.51,444.06L592.47,444.74L593.71,445.23L594.21,445.66L594.53,446.67L595.00,447.41L595.12,447.59L595.33,447.93 "/><path d="M625.11,458.36L625.82,458.31L626.25,458.27 "/><path d="M617.45,445.63L617.91,445.95L618.35,445.96L618.39,446.12L618.02,446.67L618.26,447.37L618.01,447.74L619.38,448.32L619.78,448.94L620.15,448.97L620.53,449.99L620.28,450.46L620.25,450.52L620.37,450.75L619.85,451.17L620.21,451.59L620.73,451.89L620.73,452.20L621.67,452.80L621.64,453.12L621.14,453.10L621.08,453.23L621.34,453.57L621.45,453.73L621.39,453.87L622.06,454.41L622.12,454.55L622.15,454.63L622.08,454.66L621.79,454.77L621.89,454.91L622.07,455.17L621.86,455.56L621.70,455.88L621.84,456.06L621.93,456.17L622.81,456.19L622.88,456.19L623.24,456.38L623.41,456.72L623.98,456.91L623.99,456.99L624.07,457.36L624.80,457.31L625.21,457.70L625.28,458.04L625.27,458.07L625.11,458.36 "/><path d="M610.70,443.45L610.24,443.60L610.22,443.94L609.24,444.79L608.90,445.75L608.17,446.82L606.24,448.23L606.18,448.24L605.94,448.28L604.98,448.44L604.40,448.54L602.28,448.33L601.85,448.28L601.68,448.18L601.35,448.00L601.13,448.00L600.54,447.99L600.34,448.07L599.81,448.28L599.76,448.30L598.86,448.20L598.44,448.15L596.71,448.48L596.65,448.49L596.54,448.51L596.47,448.53L595.92,448.35L595.90,448.33L595.33,447.93 "/><path d="M620.49,458.32L621.78,458.27L621.81,458.27L622.44,458.24L622.89,458.38L623.21,458.62L623.45,458.78L624.14,458.78L624.45,458.58L624.98,458.60L625.05,458.47L625.11,458.36 "/><path d="M620.49,458.32L620.73,457.82L621.12,457.50L621.04,457.28L621.01,457.20L621.28,456.70L621.17,456.46L621.16,456.43L621.02,456.15L620.52,455.13L620.46,455.00L620.50,454.94L620.61,454.78L621.25,454.68L621.18,454.24L621.16,454.16L621.11,454.12L620.83,453.89L620.49,453.03L620.13,452.67L619.95,452.25L619.21,451.77L619.21,451.41L618.91,450.90L618.99,450.45L619.00,450.40L618.57,449.94L618.54,449.91L618.41,449.24L618.37,449.02L618.33,448.81L618.25,448.38L617.52,447.07L617.83,446.52L617.45,445.63 "/><path d="M583.54,445.00L583.39,445.30L583.58,445.48L583.89,445.78L584.15,445.78L584.47,445.77L584.86,445.56L585.10,445.19L584.75,445.01L584.22,444.74L583.65,443.79L582.01,441.95L582.67,441.70 "/><path d="M595.33,447.93L594.56,448.03L593.83,448.14L592.56,448.64L592.54,448.76 "/><path d="M590.20,448.83L590.58,448.75L592.07,448.42L592.08,448.43L592.54,448.76 "/><path d="M585.09,443.89L585.81,444.71L585.86,444.74L586.82,445.20L587.16,445.60L587.14,445.98L588.02,446.27L588.11,446.29L588.40,446.56L588.75,446.88L589.64,448.35L590.20,448.83 "/><path d="M570.57,443.26L571.53,442.35L571.95,441.35L571.99,441.25L572.75,440.75L573.02,440.22L572.79,439.88L573.00,439.00L573.33,438.59L573.36,438.54L573.85,438.45L573.89,438.44L574.21,438.07L574.63,437.57L574.32,436.90L574.33,436.41L574.60,436.08L575.25,435.31L576.58,434.97L576.71,434.94L577.16,435.01L577.33,435.04L578.02,435.14L578.33,435.09L578.64,434.91L578.95,434.73L579.08,434.65L579.71,434.51L580.38,434.35L580.90,434.23L581.19,433.98 "/><path d="M594.34,451.78L595.13,451.73L595.34,451.66L596.02,451.45L596.43,451.01L596.80,450.89L597.20,450.43L597.73,450.45L599.18,450.50L599.44,450.57L599.49,450.68L599.79,451.31L599.90,451.55L600.18,451.68L600.23,451.67L600.50,451.63L600.55,451.62L600.60,451.66L600.83,451.83L600.86,451.84L600.93,451.84L601.14,451.84L601.55,451.84L602.08,452.18L602.21,452.48L602.90,452.41L602.96,452.40L603.26,452.59L603.53,452.36L603.30,451.93L603.37,451.86L603.46,451.78L603.85,451.85L603.98,451.87L604.32,451.45L604.33,451.45L604.79,451.61L604.87,451.64L604.88,451.65L605.29,451.57L605.43,451.30L605.52,451.13L606.29,451.13L606.73,451.13 "/><path d="M593.65,451.91L594.19,451.81L594.34,451.78 "/><path d="M593.65,451.91L593.01,451.38L592.59,450.53L592.47,450.28L592.51,450.12L592.53,450.06L592.53,450.04L592.57,449.90L592.38,449.45L592.40,449.40L592.54,448.76 "/><path d="M618.84,460.66L619.23,460.04L619.57,459.51L620.51,459.39L620.63,459.21L620.73,459.07L620.66,458.84L620.55,458.50L620.49,458.32 "/><path d="M581.29,448.90L580.96,448.72L580.50,448.47L580.44,448.44L580.45,448.43L580.69,447.84L581.07,447.48L581.08,447.47L581.01,447.23L580.72,446.26L580.72,446.23L580.66,446.03L580.74,445.72L580.79,445.53L580.84,445.35L580.78,444.34L580.76,444.33L580.46,444.25L580.04,444.57L579.83,444.73L579.40,444.77L578.87,444.60L578.80,444.58L578.61,443.99L579.12,443.32L579.24,443.16L579.03,443.01L578.72,443.13L578.52,443.35L578.32,443.57L578.17,443.57L577.68,443.59L577.49,443.60L576.98,444.06L576.86,444.18L576.14,444.40L575.19,444.46L574.94,444.29L575.63,443.76L575.64,443.72L575.67,443.57L575.34,443.47L574.10,443.62L573.97,443.63L573.34,443.71L573.20,443.72L572.12,443.40L571.88,443.41L571.12,443.45L570.88,443.37L570.57,443.26 "/><path d="M642.08,471.17L641.11,471.36L640.98,471.25 "/><path d="M255.44,330.02L254.94,330.35L254.79,330.63L255.53,331.81L255.39,332.41L255.72,332.65L256.32,332.72L256.53,332.69L257.84,332.54L258.17,332.60L258.36,332.80L258.29,333.11L257.79,333.25L257.62,333.50L257.90,333.91L257.59,334.29L258.18,334.58L258.34,335.25L258.51,335.37L259.06,335.05L259.57,335.00L259.95,335.07L260.09,335.17L260.11,335.18L260.71,335.59L260.75,336.04L260.25,336.39L259.88,336.65L260.02,336.74L260.18,336.85L260.83,336.96L260.82,337.29L260.29,338.06L260.50,338.49L260.95,338.80L259.98,339.05L259.88,339.19L260.11,339.37L260.92,339.42L261.07,339.54L260.82,339.91L261.06,340.38L260.25,341.42L260.54,341.97L260.82,342.09L261.35,342.32L262.28,342.45L262.86,342.79 "/><path d="M229.48,321.63L228.70,322.11L228.26,322.76L228.46,323.25L229.84,323.70L230.20,324.18L231.74,324.85L232.22,325.26L232.08,325.96L232.48,326.78L232.45,327.28L232.09,327.36L232.31,327.80L232.13,327.91L231.45,327.70L230.78,327.76L229.24,327.90L227.47,327.16L226.67,327.34L225.72,326.58L225.27,326.56L224.76,326.76L224.12,326.72L223.20,327.20L223.26,327.44L223.01,327.60L221.97,327.97L221.78,327.88L221.32,328.17L221.08,328.74L220.89,328.86 "/><path d="M222.81,318.40L222.76,318.90L223.09,319.32L222.56,320.01L221.98,320.19L221.23,321.50L221.22,321.76L221.00,321.95L220.40,322.04L220.23,322.49L219.82,322.77L219.50,323.29L219.54,323.63L219.91,323.82L219.65,324.34L219.71,324.79L219.98,325.07L220.59,325.03L220.95,325.75L221.03,325.91L220.86,326.22L221.07,326.63L220.79,327.04L220.77,327.38L220.52,327.47L220.89,328.86 "/><path d="M590.10,454.49L591.15,454.56L591.41,454.02L592.12,453.63L592.60,452.61L592.72,452.37L592.98,452.11L593.60,452.08L593.61,452.04L593.65,451.91 "/><path d="M590.20,448.83L590.25,448.86L590.41,448.97L590.36,449.18L590.33,449.32L589.82,449.68L588.80,449.75L588.12,450.28L587.70,450.43L587.43,450.53L587.30,450.71L587.11,450.98L587.20,452.07L586.93,452.75L586.90,452.84L587.02,453.11L587.12,453.32L586.69,453.61 "/><path d="M586.69,453.61L587.51,453.74L587.83,454.09L588.58,454.32L589.06,454.32L589.14,454.36L589.50,454.53L590.10,454.49 "/><path d="M618.84,460.66L618.79,460.65L618.16,460.52L617.96,460.48L617.70,460.43L617.67,460.43L617.61,460.44L617.49,460.46L616.83,460.55L616.58,460.84L616.62,461.02L616.65,461.14L616.67,461.26L616.02,461.97L615.52,462.93L615.14,463.05L614.73,462.75L614.65,462.60L614.52,462.37L614.50,462.32L614.10,462.65L613.56,463.08 "/><path d="M629.40,470.56L629.42,470.37L629.47,469.94L629.75,469.61L629.96,469.37L629.69,469.12L629.93,468.93L630.02,468.54L630.03,468.50L630.66,468.37L631.03,468.12L630.89,467.88L630.99,467.68L631.47,467.77L631.79,467.64L632.14,467.81L633.04,467.56L633.31,467.48L634.20,467.64L635.11,467.49L635.44,467.21L635.51,467.15L636.50,467.21L636.51,467.21L636.55,467.22L636.55,467.22L636.80,467.43L636.82,467.44L637.99,467.69L638.08,467.76L638.21,467.88L638.92,467.93L639.82,467.82L639.91,467.81L640.36,467.25L640.98,466.98L641.30,466.95L641.49,467.27L641.94,467.36L642.14,467.60L642.73,467.63L643.21,467.25L644.30,467.30L644.64,467.09 "/><path d="M618.84,460.66L618.82,460.68L618.49,461.02L618.56,461.16L618.82,461.67L619.31,462.12L619.40,462.13L620.33,462.24L621.25,462.34L621.33,462.47L621.59,462.88L622.07,462.70L622.49,462.79L622.89,463.12L622.92,463.15L622.94,463.19L623.22,463.89L623.16,464.18L623.05,464.66L623.19,464.79L624.20,465.77L624.45,466.35L624.46,466.36L624.02,467.12L624.57,467.62L624.90,467.63L625.31,467.46L625.41,467.68L625.72,468.28L625.86,468.39L626.07,468.56L626.71,468.69L627.66,469.75L627.69,469.79L628.73,470.43L628.73,470.43L628.91,470.47L629.11,470.50L629.40,470.56 "/><path d="M563.50,447.87L563.72,447.72L563.88,447.62L564.26,447.37L564.45,447.25L564.80,446.54L565.70,446.38L565.99,446.09L567.42,446.17L567.75,446.08L568.82,444.45L568.60,444.18L568.82,443.90L569.08,443.79L569.89,443.92L570.57,443.26 "/><path d="M574.54,432.12L575.05,432.26L575.24,432.51L574.99,432.97L573.84,433.33L573.76,433.36L573.29,434.11L573.11,434.41L572.95,434.52L572.64,434.75L572.83,435.27L572.18,436.14L572.36,436.36L573.76,437.16L573.88,437.24L573.65,437.49L573.64,437.49L573.07,437.63L573.02,438.11L572.42,438.82L572.53,439.54L572.37,439.79L572.40,440.14L571.42,441.29L571.44,441.47L571.47,441.71L571.17,441.85L570.53,442.75L570.28,442.76L570.10,443.49L569.41,443.60L569.11,443.46L568.61,443.52L568.09,443.90L568.07,444.09L568.44,444.35L567.50,446.04L566.57,445.71L565.74,445.73L565.43,446.10L564.63,446.34L564.45,446.39L564.02,447.16L563.87,447.24L563.50,447.42L563.43,447.45L563.35,447.68L563.36,447.70L563.50,447.87 "/><path d="M629.40,470.56L629.47,470.64L629.98,471.18 "/><path d="M630.14,471.47L630.61,471.44L630.77,471.43L631.38,471.19L631.53,471.37L632.16,471.33L632.51,471.63L632.71,471.56L632.74,471.36L632.83,471.34L633.23,471.26L633.53,471.41L634.05,471.67L634.26,471.90L634.44,472.10L634.77,472.10L634.97,472.11L635.51,471.96L635.74,471.90L636.39,472.01L636.69,472.34L637.30,472.47L637.41,472.39L638.44,471.63L639.16,471.40 "/><path d="M629.98,471.18L630.14,471.47 "/><path d="M220.89,328.86L220.41,329.12L220.22,329.45L219.73,329.80L219.89,330.14L219.66,330.42L219.93,331.12L219.54,331.48L219.06,331.40L218.49,331.54L218.48,331.54L217.61,331.34L217.59,331.39L217.44,331.66L217.46,332.14L217.33,332.27L216.95,332.65 "/><path d="M606.73,451.13L606.64,451.31L606.20,451.33L606.08,451.33L606.13,451.50L606.23,451.89L605.86,452.11L605.47,452.34L605.44,452.36L605.47,452.38L605.67,452.55L606.29,453.07L606.08,453.26L605.74,453.22L605.55,453.56L605.65,453.82L606.17,454.22L606.03,454.34L605.87,454.34L605.26,454.31L605.13,454.52L605.24,455.04L604.82,455.63L604.58,455.77L604.25,455.78L604.11,455.79L603.85,456.44L603.80,456.57L603.70,456.82L603.77,456.95L603.88,457.13L604.03,457.39L603.89,457.59L603.53,457.69L602.93,457.54L602.99,458.09L602.87,458.20L602.34,458.68L602.23,458.78L602.42,459.19L602.24,459.42L602.37,459.77L601.76,459.92L601.51,460.45L600.86,460.42L600.75,460.61L600.50,461.05L599.96,461.13L599.89,461.38L600.23,462.34L599.93,463.21L599.47,463.87L599.68,464.20L601.14,464.23 "/><path d="M227.44,329.42L227.98,329.39L228.94,329.54L229.66,330.16L229.74,330.39L230.01,330.52L230.86,330.40L231.93,330.82L232.23,330.87L232.47,330.90L232.63,331.06L232.00,332.19L232.26,332.34L234.74,332.38L235.09,332.77L235.97,333.10L235.99,333.40L236.16,333.50L236.44,333.49L236.39,333.76L236.38,333.80L236.57,334.19L235.64,334.87L235.46,335.00L235.17,335.13L234.74,335.31L234.05,336.33L234.01,336.38L233.75,336.51L233.21,336.78L232.54,337.11L232.31,337.47L232.33,337.84L232.49,338.16L232.73,338.64L232.65,338.92L232.59,339.13 "/><path d="M563.50,447.87L562.91,448.34L562.88,448.40L562.26,449.38L562.10,449.45L560.62,450.18L560.45,450.49L560.30,450.75L559.55,450.84L559.23,451.11L559.16,451.17 "/><path d="M563.50,447.87L563.83,448.22L563.82,448.38L563.82,448.43L563.67,448.58L563.57,448.69L563.39,448.73L562.78,448.88L562.85,449.23L562.88,449.41L561.63,450.03L561.39,450.55L560.72,450.74L560.69,450.75L560.82,450.93L560.64,451.09L559.96,451.11L559.62,451.43L559.51,451.54L559.48,451.56L559.46,451.58 "/><path d="M626.96,479.10L627.47,478.87L627.52,478.78L627.71,478.39L627.66,477.96L627.23,477.41L627.87,475.56L629.67,475.20L630.74,474.99L631.32,474.71L631.37,474.63L631.49,474.38L631.23,473.68L631.12,473.38L631.11,473.34L631.07,473.31L630.68,472.97L630.52,472.53L630.27,471.83L630.14,471.47 "/><path d="M594.34,451.78L595.09,452.41L595.59,452.82L595.60,453.03L595.68,454.23L595.97,454.60L596.32,455.05L596.98,455.61L597.23,456.14L598.11,456.51L599.24,456.99L599.25,457.48L599.15,457.61L598.95,457.85L598.50,458.11L598.31,458.22L598.15,458.51L598.75,459.12L598.42,459.75L598.42,459.76L598.30,460.29L598.26,460.46L598.17,460.88L597.99,461.71L597.33,462.61L597.37,463.16L596.63,463.87L596.09,464.18L596.14,464.46L596.20,464.80L596.04,465.04L596.92,466.07L596.98,466.39L596.61,466.58L597.45,467.98L597.83,468.19L599.04,468.42L599.90,468.82L600.09,469.00L600.67,469.54L601.03,470.10L601.45,470.35L601.76,470.36L602.22,470.38L602.33,470.39L603.39,470.44L604.52,471.49L604.95,471.26L605.01,470.83L604.92,470.70L604.67,470.33L604.78,470.13L604.85,470.00L605.28,469.77L605.63,469.87L606.32,470.07L607.13,469.85L607.06,469.44L606.58,468.92L607.04,468.64L607.85,468.83L608.67,469.20L609.04,469.08L609.13,468.90L608.97,468.50L608.37,468.25L608.46,468.03L609.08,467.72L609.82,467.70L609.98,468.38L610.16,468.49L610.69,468.23L611.56,468.24L611.87,468.41L612.57,468.16L612.89,468.24L613.15,468.72L613.44,468.74L613.83,468.27L614.73,468.19L614.85,467.96L614.63,467.64L615.03,467.49L615.30,467.08L615.69,467.18L615.79,467.25L616.23,467.55L616.77,467.60L617.12,467.89L617.18,467.95L617.21,468.24L617.48,468.47L618.02,468.47L617.98,467.84L618.25,467.75L618.54,467.77L618.80,468.10L619.09,468.21L619.48,468.14L620.25,468.00L620.63,468.27L621.19,468.33L621.80,468.13L622.93,468.57L623.71,468.58L624.12,468.84L624.04,469.43L624.34,469.89L624.73,469.80L624.84,469.58L624.63,469.27L624.79,469.01L625.38,469.12L626.08,469.68L626.70,469.91L626.71,469.91L626.78,469.94L626.88,470.17L626.87,470.18L626.58,470.53L626.73,470.67L626.77,470.71L627.09,470.68L627.12,470.60L627.35,470.05L627.66,470.16L627.98,470.84L628.23,471.01L628.34,471.08L628.50,471.03L629.03,470.85L629.35,470.92L629.59,471.29L629.98,471.18 "/><path d="M633.37,481.72L632.73,481.83L632.58,481.80L631.69,481.61L629.49,480.47L628.58,479.78L628.09,479.58L626.96,479.10 "/><path d="M243.04,348.43L243.30,348.07L243.36,347.99L243.38,347.97L243.49,347.46L243.36,347.22L243.09,346.75L243.14,346.55L243.22,346.19L242.97,345.98L242.95,345.42L243.69,345.52L243.53,345.06L243.88,345.25L244.16,345.23L244.14,345.08L244.89,344.26L244.71,344.04L244.93,343.92L245.05,343.19L245.47,342.74L245.38,342.49L245.93,342.10L245.93,341.91L245.11,341.58L244.79,341.63L244.54,341.67L244.36,341.49L244.39,341.16L244.02,340.96L243.84,340.50L244.42,339.75L244.04,339.06L244.40,338.69L244.11,338.53L244.68,337.91L244.55,336.31L244.14,335.95L243.58,335.76L243.62,335.54L241.91,335.44L240.82,335.02 "/><path d="M589.53,468.37L590.07,468.33L590.34,468.32L590.65,467.94L591.20,468.01L591.70,467.89L592.20,467.41L593.53,467.13L594.55,466.68L594.91,466.27L594.85,465.71L595.22,465.29L595.40,464.70L595.77,463.57L595.49,463.34L594.52,463.18L593.36,461.90L592.98,461.49L592.20,460.62L592.04,460.14L591.94,459.82L591.35,459.42L591.31,459.08L590.82,458.67L590.72,458.36L590.95,458.02L591.40,457.90L591.67,457.84L590.84,456.77L590.71,456.60L590.75,456.17L590.77,455.90L590.10,454.49 "/><path d="M588.70,461.25L589.17,461.32L589.39,461.68L589.31,461.93L589.43,462.15L589.54,462.34L589.60,462.46L589.38,463.06L590.80,463.86L590.76,464.14L591.41,464.64L591.43,464.77L591.47,465.00L591.31,465.22L590.11,466.86L590.44,467.28L590.32,467.60L590.14,467.60L589.80,468.03L589.53,468.37 "/><path d="M619.33,479.27L619.69,479.52L620.36,479.55L620.83,479.90L622.46,479.95L623.82,479.48L624.35,479.51L624.63,479.16L626.26,479.34L626.96,479.10 "/><path d="M581.12,470.23L581.19,470.20L581.57,470.05L581.87,470.24L582.20,470.15L582.48,470.23L582.55,470.03L582.92,469.86L583.11,469.78L584.37,469.79L584.53,470.20L584.93,470.34L585.55,470.01L585.57,470.00L586.23,469.96L586.31,469.66L586.74,469.50L587.00,469.21L587.80,469.14L588.18,468.79L588.66,468.79L588.66,468.79L589.01,468.41L589.53,468.37 "/><path d="M581.12,470.23L581.12,470.19L581.13,469.93L580.74,469.38L581.06,468.70L581.38,468.47L581.56,468.34L581.70,468.09L581.54,467.74L582.40,466.66L582.45,466.47L582.56,466.12L582.45,465.41L582.11,465.11L582.29,464.45L582.23,464.20L582.22,464.14L582.19,464.01L581.97,463.90L581.87,463.85L581.82,463.75L581.77,463.67L581.67,463.47L581.80,463.03L581.57,462.61L581.62,462.52L581.92,461.99L581.75,461.37L581.91,461.13L582.10,460.83L582.22,460.65L582.43,460.60L582.66,460.53L582.99,459.95L583.06,458.87L583.30,458.70L583.67,458.69L584.35,458.43L584.82,458.09L584.78,457.87 "/><path d="M589.53,468.37L589.31,468.78L589.53,469.41L589.19,470.07L589.17,470.10L589.44,470.52L588.49,471.61L588.47,471.97L588.72,472.52L588.57,473.07L589.51,474.14L589.58,474.22L589.58,474.59L590.15,474.80L590.36,474.95L590.85,475.30L591.04,475.66 "/><path d="M586.69,453.61L586.10,454.18L584.37,454.86L583.75,455.10L583.73,455.11L582.70,456.03L582.51,455.99L581.86,455.89L581.05,456.14L581.14,456.75L580.89,456.98L580.61,457.02L580.52,457.03L579.81,458.11L579.31,458.27L577.93,458.17L577.50,457.99L576.94,458.43L576.87,458.48L576.03,458.59L574.80,458.76L574.78,458.76L574.00,458.56L573.69,458.66L573.02,458.44L572.60,458.43L572.27,458.61L571.32,458.70L570.36,458.79L568.64,459.65L567.14,460.41L566.62,460.41L565.86,460.88L565.36,462.04L564.78,462.28L564.42,462.68L564.29,462.82L564.21,462.91L563.62,463.21L562.98,463.17L562.44,462.98L561.92,462.80L561.87,462.78L560.98,462.76L560.29,462.74L559.10,462.24L558.95,462.22L558.78,462.20L558.74,462.20L558.48,462.16L558.01,462.10L557.29,462.27L556.93,462.35L556.66,462.68L556.67,463.08L556.67,463.32L556.67,463.43L556.29,463.79L556.21,463.81L555.67,463.99L555.63,464.00 "/><path d="M581.12,470.23L580.49,470.45L580.16,470.26L579.76,470.35L579.38,470.79L579.05,470.80L579.25,471.69L579.16,472.07L578.79,472.26L578.76,472.64L578.39,472.98L577.62,473.21L577.64,473.80L577.04,474.34 "/><path d="M562.86,472.81L563.01,472.45L563.76,472.47L564.32,472.27L564.51,472.20L564.67,471.91L564.51,471.36L564.66,471.09L565.07,470.88L565.15,470.61L565.37,469.86L565.32,469.52L565.76,469.04L566.51,468.77L566.80,468.47L566.73,468.12L566.16,467.37L566.36,467.21L567.26,467.06L567.78,466.98L568.60,467.34L568.73,467.35L568.87,467.35L568.99,467.36L569.08,467.33L569.32,467.27L569.72,467.17L569.93,466.95L570.15,466.91L570.49,466.86L570.83,466.81L571.23,466.35L572.04,466.13L572.46,465.86 "/><path d="M625.56,490.55L626.18,491.00L626.26,491.25L625.94,491.57L626.22,492.38L624.73,492.05L624.07,492.05L622.62,491.27L621.82,491.50L621.09,491.40L620.64,491.53L619.84,491.32L619.20,491.29L618.36,491.50L617.23,491.01L616.88,490.70L615.61,490.79L615.25,490.64L614.62,490.39L613.90,490.67L613.28,490.65L612.68,491.02 "/><path d="M640.89,499.00L640.32,499.29L639.76,499.12L639.41,498.81L638.71,498.67L638.30,498.75L638.22,498.70L637.47,498.19L637.11,497.61L635.98,497.43L635.72,497.39L635.37,496.88L635.11,496.70L634.97,496.61L634.44,496.43L633.19,496.02L632.29,496.11L631.80,496.50L630.75,496.54L630.33,496.73L629.14,496.66L628.34,496.45L627.89,496.33L627.64,496.44L626.96,496.13L625.54,496.56L625.23,497.15L624.69,497.28L623.70,496.90L622.99,496.87L622.52,496.65L622.26,496.35L621.67,496.37L619.99,495.44 "/><path d="M619.86,497.07L619.41,497.61L619.38,497.64L618.55,497.54L618.08,498.28L618.47,499.63L618.43,499.84L618.38,500.10L619.10,500.94L619.01,501.41L619.24,501.72L620.07,502.42L621.23,503.04L621.61,503.24L622.14,503.85L622.69,503.99L622.71,504.44L622.99,504.71L623.44,504.73L623.68,504.91L624.32,504.92L624.41,504.92L624.78,505.24L624.65,505.55L624.96,505.92L625.72,505.96L626.12,505.76L626.34,505.89L626.05,506.25L626.95,506.42L627.59,506.93L628.36,507.16L628.43,507.18L628.88,507.31L629.72,507.56L629.77,507.70L629.91,508.12L630.20,508.24L630.48,507.94L630.97,507.93L631.48,508.22L631.53,508.22L632.50,508.27L632.77,508.04L634.97,507.91L635.53,507.76L636.82,507.41L637.71,507.83L637.98,507.77L638.36,507.56L638.52,507.11L638.78,507.03L638.92,506.57L639.23,506.40L639.65,506.85L639.95,506.90L640.52,506.56L640.17,505.87L640.41,505.43L641.89,505.81L641.99,505.84L642.58,505.75 "/><path d="M637.38,511.02L637.45,510.78L636.98,510.42L636.92,510.17L636.20,509.87L636.08,509.86L634.79,509.79L634.22,509.59L633.53,509.26L633.20,508.81L632.35,508.53L631.94,509.18L631.87,509.74L631.43,509.86L631.29,509.58L631.05,509.11L630.65,508.97L630.03,509.29L629.79,509.65L629.33,510.37L627.94,510.89L627.90,510.98L627.73,511.34L627.67,511.48L626.65,511.90L626.08,511.99L625.40,511.48L624.05,511.75L623.51,511.40L622.62,511.42L622.23,510.73L621.74,510.40L621.83,510.17L622.35,510.01L622.15,509.80L621.54,509.70L620.79,509.88L620.51,509.75L620.73,509.29L620.49,508.86L619.01,508.18L618.91,508.14L619.08,507.73L618.47,507.59L618.43,507.59L617.13,507.74L614.58,506.69L613.68,506.53L612.62,506.34L611.72,506.42L610.86,506.00L610.43,505.61L610.24,505.09L609.92,504.88L609.66,504.82L609.01,504.68 "/><path d="M609.84,500.40L609.40,501.32L609.46,501.70L609.48,501.82L609.40,501.99L609.02,502.73L608.34,503.07L608.16,503.74L607.08,504.08L606.89,504.66L606.85,504.80L606.66,504.93L606.65,504.93L606.40,505.10L606.42,505.20L606.60,505.98L606.42,506.34L605.88,506.58L605.24,506.59L604.99,506.83L604.38,507.95L604.45,508.74L603.85,509.10L603.87,509.22L603.98,510.13L603.74,510.39L602.76,510.70L602.73,511.14L601.99,511.05L601.73,511.01L601.88,511.26L602.14,511.70L602.08,512.15 "/><path d="M631.23,524.28L631.43,524.01L631.20,523.55L631.64,522.97L633.00,522.43L633.26,522.39L634.09,522.24L634.74,522.27L635.11,522.55L635.32,522.50L635.60,522.15L636.18,521.99L636.78,521.07L636.49,520.84L636.76,520.56L637.22,520.40L637.36,520.07L638.02,519.94L639.44,520.08L639.85,519.52L640.05,519.44L640.20,519.38L640.39,518.98L640.28,518.63L640.27,518.59L639.86,518.27L638.77,518.07L638.42,518.25 "/><path d="M643.51,529.07L643.20,528.69L643.11,528.15L642.74,528.01L642.28,527.32L641.61,527.33L641.26,527.12L641.20,527.12L640.81,527.06L640.20,526.57L639.66,526.47L638.73,526.56L638.27,526.43L638.14,526.29L638.25,526.17L638.37,526.06L637.75,525.65L637.56,525.16L637.09,525.09L636.73,524.62L636.63,524.50L636.12,524.46L635.76,524.11L635.16,524.15L634.84,524.02L633.50,524.57L633.43,525.14L633.40,525.33L632.95,525.12L632.23,524.78L631.69,524.66L631.23,524.28 "/><path d="M626.59,519.53L626.22,519.64L625.43,519.40L623.83,519.25L622.34,519.10L621.32,518.55L621.13,517.97L620.53,517.17L620.52,517.10L620.41,516.53L620.00,516.28L619.93,516.23L619.61,515.68L618.84,515.70L618.61,515.61L617.73,515.29L617.04,515.18L616.60,515.35L616.13,515.53L615.61,515.58L615.25,515.28L614.98,515.36L614.59,515.47L613.55,515.48L613.17,515.35L612.33,515.59L611.78,515.39L611.11,515.51L610.05,515.26L609.54,515.83L608.57,516.36L608.30,516.71L607.62,516.77L606.92,516.56L606.08,516.08L605.33,516.06L604.36,515.71L604.07,515.84 "/><path d="M642.20,529.44L642.01,529.26L639.67,528.81L638.71,528.62L635.59,527.04L634.39,526.77L633.27,526.51 "/><path d="M604.07,515.84L603.00,515.77L602.93,515.77L602.64,515.61L602.75,515.38L602.50,515.11L602.32,514.91L602.26,514.85L602.30,514.84L602.72,514.75L602.82,514.43L602.71,514.18L601.32,512.85 "/><path d="M643.05,530.38L642.23,530.68L641.60,530.63 "/><path d="M639.74,530.80L639.25,530.81L638.72,530.83L638.22,530.61L636.29,530.95L635.69,530.85L635.31,531.02L635.59,531.36L635.22,531.96 "/><path d="M618.63,527.19L618.56,526.70L619.17,526.60L619.36,526.35L619.78,526.35L620.01,526.12L620.61,525.99L621.13,526.09L621.29,526.12L621.49,526.04L621.80,525.43L622.37,525.24L622.70,524.86L623.59,524.59L624.26,524.78L624.76,524.66L625.29,524.87L625.73,524.81L626.66,524.97L627.54,524.86L628.62,524.99L629.00,524.91L629.36,524.57L629.90,524.43L630.00,524.46L630.43,524.55L630.66,524.47L630.82,524.42L630.92,524.38L631.23,524.28 "/><path d="M599.54,516.97L599.76,517.71L599.76,517.73L599.80,517.85L600.02,518.60L600.03,519.06L600.03,519.17L599.98,519.23L599.30,520.10L599.44,520.39L599.59,520.71L599.24,521.12 "/><path d="M618.63,527.19L618.93,527.14L619.09,527.19L620.19,527.50L620.62,527.85L622.27,528.09L623.35,528.24L624.70,527.82L625.60,528.02L626.51,527.87L626.81,527.53L627.44,527.30L627.77,527.31L628.18,527.98L629.07,528.40L629.39,529.01L629.93,529.43L630.78,529.81L630.72,530.09L630.59,530.61L630.15,531.15L630.13,531.35L630.12,531.69L629.77,532.06L629.44,532.16 "/><path d="M600.13,521.88L600.31,521.65L600.53,521.35L600.82,521.29L601.11,521.23L601.29,521.19L601.49,520.83L601.41,520.68L601.40,520.68L601.33,520.54L601.29,520.52L601.15,520.45L601.01,520.37L601.02,520.29L601.03,520.19L601.10,519.50L601.10,519.50L601.61,519.26L601.70,518.97L601.35,518.50L601.31,518.43L601.49,518.22L601.52,518.18L601.89,518.25L602.13,518.30L602.28,518.33L602.57,518.10L602.20,517.28L602.99,517.08L602.86,516.81L603.05,516.65L603.75,516.56L604.11,516.17L604.07,515.84 "/><path d="M422.82,466.83L422.40,466.51L422.32,466.22 "/><path d="M600.68,532.87L601.18,532.30L601.42,532.31L601.89,532.33L602.11,532.00L602.00,531.61L602.21,531.53L603.56,531.80L603.84,531.50L604.75,531.39L604.81,530.56L604.59,530.31L604.02,530.07L604.31,529.35L604.82,529.34L605.09,528.76L606.41,527.85L606.36,527.75L606.26,527.56L606.36,527.34L607.63,527.50L607.96,527.07L607.97,526.80L607.99,526.28L608.20,526.18L608.72,526.22L608.95,525.85L608.77,525.29L608.76,525.27L608.89,524.97L609.18,524.79L609.28,524.80L609.52,524.83L609.71,525.01L610.41,525.64L611.34,525.52L611.35,524.52L612.38,524.71L613.43,525.93L613.60,526.43L614.06,526.73L614.75,526.79L615.20,525.91L615.44,525.96L615.96,526.41L616.18,526.49L617.62,527.04L618.06,527.38L618.45,527.37L618.63,527.19 "/><path d="M643.43,555.92L643.27,555.67L642.63,554.67L642.24,554.33L641.42,553.59L641.23,553.48L640.86,553.27L640.76,553.11L640.76,553.10L640.59,552.79L640.44,552.51L640.65,551.49L640.45,550.82L640.42,550.35L640.39,549.80L640.38,549.62L640.82,548.74L640.57,547.13L640.60,546.44L640.63,545.68L640.26,545.10L639.81,544.37L639.60,544.14L639.53,544.06L638.87,543.33L638.56,542.98L638.26,542.83L637.81,542.62L636.52,541.35L635.62,540.85L635.34,540.69L635.04,540.28L634.96,540.17L634.52,537.79 "/><path d="M671.59,571.52L671.79,571.10L672.13,570.42L672.09,570.23L672.06,570.10L671.98,569.75L671.94,569.55 "/><path d="M640.65,559.61L640.31,559.55L640.10,559.52L638.83,559.32L638.65,559.30L638.38,559.25L636.91,558.87L635.02,557.97L634.85,557.83L633.98,557.12 "/><path d="M650.16,564.36L650.53,563.99L650.44,563.78L650.01,563.54L650.06,563.48L650.20,563.34L650.52,562.98L650.48,562.70L650.82,562.31L650.94,562.17L651.46,562.34L651.93,562.49L652.42,562.38L652.67,562.62L653.61,562.96L653.64,562.97L653.83,562.97L655.35,562.96L656.01,562.95 "/><path d="M613.49,551.10L613.57,551.11L614.06,551.21L614.40,550.85L614.01,550.24L614.63,549.26L613.99,548.00L614.01,547.57L614.01,547.56L614.14,547.33L614.24,547.13L614.30,547.09L615.63,545.99L616.36,546.05L616.84,546.55L616.94,547.08L616.80,547.42L617.02,547.66L617.35,547.72L618.00,548.35L618.58,548.40L618.89,548.69L619.55,548.36L619.89,548.37L619.93,548.37L620.31,548.60L621.03,548.67L621.57,549.03L622.06,549.08L622.80,548.86L623.41,548.33L623.49,548.27L624.08,548.29L624.32,548.43L624.57,548.59L624.90,548.79L625.61,548.83L627.17,548.50L627.80,548.51L628.15,549.03L628.14,549.40L627.84,549.96L628.18,550.31L628.68,550.37L628.89,550.64L628.78,551.47L628.34,552.05L628.02,552.24L627.82,552.35L627.74,552.40L627.07,553.36L626.91,553.53L626.74,553.71L626.40,554.07L625.92,554.57 "/><path d="M645.84,563.12L645.96,563.22L646.98,564.06L648.15,564.03L649.62,564.00L650.16,564.36 "/><path d="M629.24,558.10L628.49,558.24L627.48,557.50L627.06,556.61L627.03,556.56L627.01,556.23L626.96,555.47L626.95,555.45L626.76,555.15L626.00,554.80L625.93,554.61L625.92,554.57 "/><path d="M650.16,564.36L650.46,564.72L650.54,564.92L650.73,565.38L651.13,566.36L651.15,566.38L651.36,566.65L651.91,567.33L652.02,567.46 "/><path d="M633.88,564.94L634.04,564.57 "/><path d="M630.30,558.71L630.32,558.73L630.76,559.00L631.25,559.31L631.86,558.85L632.25,558.81L632.51,559.23L632.80,560.53L632.32,561.08L632.59,561.50L633.51,561.47L633.54,561.79L633.40,562.07L632.66,562.39L632.37,562.72L632.39,562.99L632.98,564.41L633.43,564.47L633.88,564.94 "/><path d="M640.65,559.61L640.72,560.54L640.74,560.74L640.37,561.16L640.16,561.41L640.16,561.42L639.93,561.95L639.33,562.24L639.27,562.31L639.04,562.57L638.45,562.76L637.81,563.22L637.73,563.52L636.44,564.21L636.16,564.67L635.80,564.76L635.65,565.11L635.64,565.15L635.84,565.47L635.83,565.52L635.72,565.88L635.71,565.90L635.67,565.92L635.29,566.18 "/><path d="M633.88,564.94L633.99,565.03L634.57,565.55L635.29,566.18 "/><path d="M623.90,562.32L622.20,560.79L621.33,560.68L620.79,560.10L620.18,559.95L619.13,560.08L618.90,560.41L618.35,560.57L618.31,560.57L617.82,560.50L617.79,560.46L617.47,560.00L617.72,559.13L618.42,558.67L618.92,557.94L619.48,557.77L619.57,557.52L619.32,557.01L619.59,556.72L619.95,556.60L620.08,556.56L620.22,556.57L620.74,556.63L620.94,556.65L621.03,556.66L621.43,556.49L622.51,555.59L622.69,555.09L622.71,555.01L623.56,555.02L623.85,555.14L623.95,555.18L624.09,555.15L625.26,554.97L625.57,554.65L625.89,554.58L625.92,554.57 "/><path d="M636.77,572.10L636.02,571.57L636.08,571.12L636.06,571.09L635.88,570.94L635.33,570.95L635.23,570.60L635.42,570.12L635.39,570.00L635.29,569.52L635.74,568.62L635.38,568.08L635.20,567.82L634.73,567.56L635.40,566.92L635.45,566.59L635.46,566.47L635.29,566.18 "/><path d="M603.27,561.27L603.52,561.51L603.74,561.52L604.20,561.55L604.41,561.85L604.35,562.16L604.85,562.55L606.77,564.07L607.80,564.13L608.78,564.73L609.78,565.09L609.97,565.30L610.15,565.50 "/><path d="M619.81,565.32L619.57,565.77L619.13,566.61L619.35,567.27L619.61,567.64L619.72,567.70L620.15,567.94L620.70,568.24L621.15,568.48L621.18,568.59L621.28,568.88L621.42,569.31L622.18,569.99L622.26,570.06L622.27,570.07L623.50,570.62L624.22,570.74L624.78,571.03L625.78,571.54L626.16,571.73L627.23,572.07L627.87,572.74L628.47,572.89L628.88,572.76L629.04,572.71L630.34,573.34L630.78,573.41L631.23,573.27L631.42,573.04L632.49,573.48L632.55,573.50L632.58,573.49L633.29,573.18L633.31,573.16L633.65,572.83L633.90,572.61L634.48,572.44L634.84,572.34L635.25,572.63 "/><path d="M610.56,566.03L610.60,566.53L611.88,567.14L611.93,567.16L612.30,567.55L612.72,568.41L612.85,568.66L612.94,568.84L613.09,569.15L612.88,569.55L612.97,569.80L613.06,570.04L613.11,570.19L613.39,570.48L613.57,570.92L613.60,571.00L613.69,571.22L613.21,574.24L613.06,574.41L612.98,574.50L612.93,574.56 "/><path d="M895.74,78.70L895.93,78.64L896.07,78.59L896.08,78.52L896.11,78.36L896.29,78.32L896.72,78.21 "/><path d="M895.04,78.56L894.77,78.53 "/><path d="M893.95,79.26L894.77,78.53 "/><path d="M792.79,83.25L793.93,83.24L794.94,83.36L795.34,83.55L795.78,83.61L796.02,83.58L796.05,83.58L796.29,83.68 "/><path d="M782.98,80.93L783.27,81.23L783.37,81.33L783.80,81.27L784.10,81.34 "/><path d="M778.72,80.73L779.33,80.94L779.56,81.02 "/><path d="M781.11,82.11L781.74,82.22L782.05,82.22 "/><path d="M782.28,82.34L782.93,82.69L783.07,83.13L783.64,83.51L783.89,83.78L784.54,83.98L785.03,84.34L785.23,84.59L785.66,84.86 "/><path d="M778.81,81.55L778.81,81.89L779.11,82.12L779.74,82.40L779.86,82.46L779.92,83.24L780.46,83.68L780.35,84.00 "/><path d="M762.98,99.11L763.09,98.96L762.50,98.48L762.50,98.14L762.84,97.85L762.83,97.78L762.79,97.45L763.02,97.24L763.22,97.22 "/><path d="M743.80,94.09L743.77,94.25L744.00,94.59L744.08,94.70L743.94,94.89L744.24,95.15L744.06,95.86L744.29,96.17L744.26,96.27L744.23,96.36L744.44,96.60 "/><path d="M681.12,78.56L680.80,78.63L680.57,78.80L680.64,78.87L680.81,79.02L680.57,79.51L680.17,79.81L680.28,80.05L680.61,80.26L680.67,80.39L680.45,80.51L679.84,80.55L679.63,80.70L679.29,80.69L678.69,80.84 "/><path d="M673.41,79.57L673.50,79.78 "/><path d="M744.44,96.60L744.87,97.46L744.87,97.46 "/><path d="M693.88,85.45L693.82,85.50 "/><path d="M711.00,89.72L711.04,89.36L711.34,89.39L711.65,89.51L711.48,89.70L711.00,89.72 Z "/><path d="M765.72,103.44L765.55,103.33L765.27,103.29L764.76,103.01L764.83,102.77L764.49,102.61L764.35,102.06L764.59,101.98L764.80,101.70L763.18,100.62L763.21,100.37L762.97,100.23L763.13,100.02L763.04,99.83L763.16,99.61L763.06,99.54 "/><path d="M753.36,99.85L753.30,100.02L753.87,100.51L754.01,100.52 "/><path d="M693.34,85.67L692.81,85.94L692.75,85.97 "/><path d="M766.48,103.81L766.53,103.92L766.63,104.13L766.54,104.22L766.94,104.41 "/><path d="M754.91,100.63L755.37,100.73L756.14,101.53L755.94,101.66L755.85,101.72 "/><path d="M744.95,98.85L744.96,99.08 "/><path d="M744.44,96.60L744.12,96.60L744.00,96.66L743.92,96.69L743.39,96.55L743.15,96.33L742.78,96.22L742.63,96.32L742.84,96.78L742.76,96.83L741.68,96.67L741.39,96.92L741.52,97.30L741.25,97.29L741.16,97.68L741.36,97.91L741.09,98.02L741.16,98.48L741.00,98.53 "/><path d="M673.42,80.43L673.27,80.56L673.71,80.98L673.59,81.18L673.72,81.36L674.33,81.62L674.42,81.64L675.12,81.74L675.38,82.02L677.12,82.54L677.06,82.94L677.39,83.26 "/><path d="M758.31,103.37L758.74,103.56 "/><path d="M751.87,96.30L750.89,96.51L750.33,96.64L750.28,96.65L750.27,96.67L750.18,96.86L750.26,97.05L749.64,96.97L749.58,97.01L749.45,97.08L749.45,97.09L749.43,97.16L749.40,97.23L749.50,97.31L749.67,97.46L750.20,97.92L750.16,98.00L750.11,98.09L750.57,98.38L751.23,98.80L751.08,98.93L750.76,98.95L750.70,98.96L750.73,99.28L750.51,99.45L749.81,99.50L749.03,99.37L748.62,99.42L748.64,99.46L748.88,99.93L748.86,99.93L748.11,99.94L747.52,100.10L746.20,100.11L746.06,100.16L746.24,100.44L746.10,100.53L746.26,100.74L746.56,100.93 "/><path d="M711.00,89.72L710.64,89.86L710.54,90.16L710.22,90.26L709.29,90.22L709.23,90.23L708.56,90.38L707.85,91.16L707.58,91.24L706.16,91.20L705.82,90.93L704.96,90.90L704.24,90.97 "/><path d="M758.74,103.56L760.10,103.88L760.35,104.01L760.85,104.55L761.33,104.77L761.86,104.84L761.99,105.03L762.61,105.25L762.98,105.48L763.17,105.76L763.61,105.91L764.19,105.93L764.55,105.95L765.18,106.05L765.38,106.23L765.61,106.29L765.82,106.57L766.81,107.00L766.81,107.00L767.19,107.17 "/><path d="M746.56,100.93L745.83,100.94L745.20,100.84L744.68,100.83L743.98,100.82L743.78,100.91L743.92,101.37L743.77,101.44L743.12,101.50L742.77,101.63L742.63,101.93 "/><path d="M731.73,99.63L731.20,99.32 "/><path d="M672.11,84.99L671.64,84.34L671.61,84.30 "/><path d="M610.51,70.39L610.33,70.02L610.47,69.78L609.86,68.89L609.45,68.78L608.83,68.47L608.94,68.22L608.63,67.57L608.58,67.46L608.88,67.19L608.72,67.09 "/><path d="M610.51,70.39L610.00,70.28 "/><path d="M743.15,102.61L743.55,102.39 "/><path d="M742.80,102.44L743.15,102.61 "/><path d="M610.51,70.39L611.32,70.63L611.76,70.67L611.91,70.75 "/><path d="M684.16,83.20L684.04,83.36L683.77,83.38L683.71,83.52L683.31,83.56L683.31,83.59L683.31,83.69L682.15,83.93L680.84,83.82L680.55,83.96L679.82,84.06L679.34,84.26L678.78,84.65L678.88,85.01L679.82,86.15L679.82,86.54L679.81,86.74L679.44,86.91 "/><path d="M697.89,89.83L697.78,89.88L697.93,90.00L697.76,90.11L696.73,90.11L696.47,90.18L695.97,90.19L695.61,90.30L695.46,90.44L695.85,90.69L695.51,90.88 "/><path d="M741.09,99.23L741.11,99.51L741.32,99.75L740.98,99.99L740.79,99.99L740.66,100.20L740.30,100.29L739.92,100.78L739.89,101.15L739.88,101.28L739.08,101.49L738.97,101.73 "/><path d="M673.10,85.27L672.65,85.41L672.31,85.35 "/><path d="M758.74,103.56L757.71,103.47L757.69,103.48L757.28,103.63L757.26,103.73L756.92,103.75L756.76,103.84L756.63,103.91L756.28,103.91L755.99,104.07L755.57,104.16L755.29,104.07L754.33,104.01L752.42,103.68L751.69,103.79L751.09,103.79L751.01,103.88L751.52,104.97 "/><path d="M715.32,95.96L715.67,95.97L715.88,95.90L717.30,95.88L717.71,95.63L718.43,95.20L719.10,94.80L719.48,94.57L719.89,94.16L720.34,94.12L720.51,94.14L720.74,94.16L721.01,94.10L721.45,94.21L721.66,94.13L722.06,94.16L722.37,94.07L722.84,93.37L722.97,93.27L723.34,92.96L723.61,92.88L723.59,92.70L724.10,92.27L724.52,92.36L724.78,92.30L725.12,91.88L725.39,91.81L725.60,91.54L725.74,91.36 "/><path d="M673.54,85.87L673.81,86.10 "/><path d="M743.15,102.61L743.28,102.70L743.14,102.95L742.06,103.03L741.80,102.82L741.31,102.80 "/><path d="M605.06,69.94L605.21,70.09L606.30,70.25 "/><path d="M674.17,86.57L674.37,86.72 "/><path d="M600.18,67.23L600.08,67.55L600.13,67.59L600.98,68.39L601.16,68.83L600.84,69.02L600.77,69.26L601.25,69.42L601.78,69.41L602.29,69.50L602.64,69.46 "/><path d="M675.49,87.04L675.68,87.28 "/><path d="M679.66,87.52L679.21,87.99L678.85,88.05 "/><path d="M676.04,87.43L677.00,87.02 "/><path d="M738.62,101.98L738.93,102.10L739.03,102.24L737.92,102.51L737.67,102.55L737.49,102.38L736.70,102.41L736.46,102.09L735.94,101.96L735.36,101.67L735.22,101.52L734.92,101.49L734.73,101.41L734.50,101.40L733.39,101.35L733.08,101.17L733.03,100.97L733.19,100.87L732.89,100.31L731.93,99.84 "/><path d="M606.55,70.24L607.06,70.27L607.47,70.45L607.82,70.50L608.09,70.63L608.48,71.23L609.36,71.57 "/><path d="M746.56,100.93L747.16,101.41L747.15,102.08L747.14,102.33L747.77,102.46L747.63,102.69L748.05,103.08L747.63,103.25L748.01,103.42L748.19,103.87L749.30,104.22L748.47,104.98L748.00,105.05L747.90,105.34 "/><path d="M694.24,91.37L693.54,91.32L692.98,91.35L691.22,91.15L690.88,91.19L690.52,91.09L690.06,91.09L689.59,90.84L689.53,90.67L689.92,90.28 "/><path d="M747.90,105.34L747.53,105.34L747.22,105.43L745.93,104.94 "/><path d="M699.62,93.66L699.27,93.55L698.54,93.50L698.12,93.46 "/><path d="M747.90,105.34L748.06,105.56L747.90,105.73L748.14,106.06 "/><path d="M668.36,85.47L668.41,85.55L668.84,85.63L669.16,85.69L669.53,85.85L669.69,85.92L670.08,86.34L669.77,86.40L669.62,86.71L670.08,87.20L670.58,87.38L670.93,87.66 "/><path d="M745.50,105.20L745.51,105.54L745.38,105.62L744.97,105.68L744.33,105.59L743.84,105.79 "/><path d="M748.22,106.50L748.04,106.93 "/><path d="M696.35,93.26L695.77,93.19L694.88,93.24L694.69,93.40L694.35,93.36L694.09,93.56L693.68,93.58L693.03,93.49L692.55,93.34L692.04,93.36L691.87,93.19L691.46,93.12L691.42,93.05L691.82,92.98L692.16,92.71 "/><path d="M712.15,94.84L711.48,94.78L711.32,95.28L711.49,95.48L711.30,95.63L711.47,95.79L710.20,96.37L709.88,96.59L709.21,96.83L708.81,97.22L708.59,97.25L708.56,97.34L708.46,97.62L708.28,97.73L709.07,97.89 "/><path d="M688.08,88.41L687.71,88.63L687.90,88.94L687.66,89.21L687.96,89.49L687.79,89.57L687.95,89.73L686.84,90.16L686.85,90.38L686.50,90.38L685.74,91.07L685.74,91.07L684.26,91.12L684.22,91.11L683.67,90.95L683.13,90.98L682.85,90.86L682.38,90.87L681.70,90.74L681.61,90.76L681.46,90.79L681.17,90.63L680.31,90.44L680.14,90.35L679.51,90.33L678.89,90.40L678.68,90.50L677.84,90.44 "/><path d="M671.89,88.54L671.39,89.01 "/><path d="M719.51,99.15L720.08,99.15L720.92,99.55L720.95,99.65L720.57,99.77L720.47,99.94L719.98,100.18L720.03,100.45L719.68,100.54L719.83,100.74L719.75,100.92 "/><path d="M703.05,97.00L703.87,96.83L704.57,96.46L705.33,96.28L705.49,96.04L705.82,95.89L706.83,95.77L707.19,95.48L707.20,95.47L709.21,95.05L709.63,95.11L709.75,94.89L710.25,94.76L710.83,94.76L711.02,94.70L711.53,94.34L711.54,94.30L711.63,93.85L712.09,93.53L712.36,93.51L712.51,93.42L712.33,93.25L712.56,93.13L712.74,92.70L712.77,92.28L712.61,92.01L713.02,91.25L713.35,91.04L713.27,90.61L713.27,90.60 "/><path d="M702.81,96.93L703.05,97.00 "/><path d="M730.19,92.88L730.38,93.06L730.16,93.46L730.10,93.57L729.22,94.22L729.77,94.58L729.71,94.75L729.14,94.88L728.76,94.83L727.99,95.43L727.59,95.48L727.76,95.69L727.43,95.93L727.24,96.54L726.96,96.72L726.95,96.98L726.43,97.58L726.54,97.90L726.60,98.08L726.54,98.21L726.50,98.28L726.65,98.46L726.45,98.65L725.70,99.02L725.18,99.21L724.94,99.30L724.71,99.31L724.75,99.43L724.52,99.58L724.11,99.69L724.11,99.77L724.39,99.94L724.41,100.17L724.42,100.19L724.67,100.35L724.85,100.46L724.70,100.57L725.05,100.66L725.21,101.19L725.34,101.35L725.41,101.43L725.27,101.48L725.55,101.64L725.72,102.09L725.56,102.22L726.23,102.66L726.25,102.94L726.10,103.01 "/><path d="M678.67,90.99L678.04,91.20 "/><path d="M602.00,73.59L601.80,73.62L601.72,73.55L601.67,73.50L601.78,73.40L601.18,73.18L600.97,72.68L600.73,72.54L600.89,72.42L600.51,71.98L600.86,71.45L600.80,71.34L601.06,71.18L600.76,70.93L600.91,70.57L601.28,70.23 "/><path d="M689.92,94.95L690.73,95.11L691.56,95.04L691.71,95.14L692.18,95.15L692.39,95.26L692.82,95.27L693.02,95.44L693.33,95.48L693.42,95.56L693.59,95.75L694.21,95.94 "/><path d="M689.92,94.95L689.54,94.74L689.64,94.51L688.60,93.75L688.82,93.59L688.65,93.25L688.64,93.24 "/><path d="M683.61,93.20L683.85,93.23L684.66,93.65L685.25,93.65L685.90,93.88L687.18,94.09L687.51,94.26L687.98,94.31L688.27,94.58L688.86,94.72L688.98,94.86L689.92,94.95 "/><path d="M739.45,103.24L738.35,103.17L738.03,103.22L737.78,103.39L737.47,103.38L737.25,103.49L736.94,103.43L735.74,103.41L735.44,103.49L734.78,103.53L733.67,103.29L733.36,103.27L732.65,103.44L732.36,103.81L731.77,103.87L731.38,104.23L730.17,104.46L729.81,104.73L729.78,104.74L728.96,104.89L728.62,104.88L728.21,104.72L727.79,104.10L727.84,104.00L727.58,103.74L727.25,103.62L727.05,103.46L726.35,103.44L726.14,103.32L725.29,103.36 "/><path d="M705.77,99.42L706.28,99.55L707.15,99.44 "/><path d="M592.83,68.48L592.82,68.77L592.88,68.83L593.63,69.65L593.56,69.79L593.85,69.96L593.86,70.12L594.27,70.23L594.15,70.45L594.35,70.85L594.27,70.92L593.85,70.84L593.34,71.05L593.08,71.50L592.51,71.91L592.31,71.95L591.66,71.85L591.54,71.76L591.37,71.75L591.14,71.83L590.91,71.82 "/><path d="M682.75,93.45L682.86,93.78L682.05,93.88 "/><path d="M711.87,100.91L712.19,101.00L712.43,101.27L713.16,101.61 "/><path d="M577.49,68.18L577.72,68.17L577.89,68.21L578.19,68.28L578.09,68.52L578.43,68.58L578.22,68.73L578.63,69.00L578.56,69.22L578.82,69.54 "/><path d="M677.62,91.39L677.24,91.88L676.92,91.95L676.80,92.13L677.33,92.61L677.02,92.72L676.72,92.84L676.48,92.93 "/><path d="M588.19,68.05L588.13,68.27L588.11,68.33L586.87,68.99L586.93,69.21L586.68,69.36L587.06,69.55L586.14,69.90L586.16,70.30L585.95,70.39L585.87,70.82L586.29,71.18L586.04,71.35 "/><path d="M716.25,103.21L716.44,103.15L716.55,102.97L716.91,102.93L717.06,102.92L717.23,102.94L717.32,102.95L717.35,102.94L717.85,102.83L717.93,102.72L718.24,102.69L718.57,102.46L719.03,102.41L719.70,102.04L719.66,101.84 "/><path d="M714.31,102.07L715.53,102.47L716.10,102.85L716.25,103.21 "/><path d="M736.09,105.46L735.68,105.90L735.49,106.03L735.27,106.06L735.54,106.23L736.02,106.34L736.29,106.65L736.89,106.87L737.84,106.99L739.07,107.31L739.52,107.38L740.25,107.90L740.67,108.00L740.85,108.20L741.57,108.49L742.04,109.28L742.71,109.50L742.77,109.52L742.98,109.59L743.05,109.71L743.20,110.01 "/><path d="M698.88,98.96L699.77,98.78L701.48,98.89L703.18,98.89L702.84,98.60L703.25,98.27L702.88,98.19L702.67,98.02L702.82,97.93L703.26,97.95L703.14,97.72L703.24,97.41L703.05,97.00 "/><path d="M674.33,91.57L674.07,91.75L673.90,91.87L674.23,92.20L673.37,92.60L673.97,92.85 "/><path d="M579.48,70.15L579.01,70.16L578.89,70.03 "/><path d="M681.18,94.91L681.25,94.56L681.55,94.43L681.40,94.29L681.52,94.20 "/><path d="M581.12,70.92L580.47,70.92L580.04,70.69L579.91,70.50L580.03,70.45 "/><path d="M704.58,99.44L703.87,99.39L703.37,99.54L702.75,100.27L701.90,100.36 "/><path d="M594.59,74.60L594.39,74.48L594.38,74.38L594.11,74.34L593.99,74.32L593.83,74.17L592.56,73.89L591.80,73.80L591.78,73.63L591.52,73.48L591.13,73.37L590.71,73.34L590.36,73.21L589.90,72.75L589.32,72.51L588.94,72.25 "/><path d="M716.25,103.21L716.66,103.68L717.15,103.98L717.36,104.32L717.38,104.35L717.21,104.51L717.27,104.62L717.09,104.72L717.19,104.83 "/><path d="M676.80,94.45L675.63,94.84 "/><path d="M586.67,71.82L586.46,72.12L586.59,72.43L586.43,72.58L585.79,72.81L585.75,73.07L586.38,73.30L585.91,73.33L585.97,73.37 "/><path d="M586.30,73.55L587.01,73.82L587.48,74.01L587.59,74.00 "/><path d="M588.34,74.20L588.36,74.30L588.77,74.30L589.59,74.62L590.18,74.55L590.53,74.63L590.64,74.58L591.30,74.70L591.49,74.74L591.69,74.77L592.11,75.00L592.49,75.11L592.69,75.32L592.90,75.10L592.95,74.95L593.49,74.89 "/><path d="M717.19,104.83L717.02,104.80L716.14,104.63L715.70,104.43L714.93,104.30L714.34,103.91L713.77,103.88L713.67,103.93L713.24,103.85L712.65,103.57L712.32,103.55L711.24,103.70L709.55,103.19L708.45,103.24L707.82,103.40L707.70,103.57 "/><path d="M691.56,99.59L692.07,99.32 "/><path d="M667.22,93.21L667.56,93.84L667.75,93.95 "/><path d="M723.52,103.64L724.46,104.24L725.79,104.56L726.23,104.50L726.50,104.56L727.62,105.21L728.16,105.36L728.38,105.72L729.81,106.32L730.96,106.53L731.16,106.69L731.03,106.95L731.50,107.16L732.38,107.18L732.61,107.14L732.85,107.11L733.38,106.90L733.72,106.98L734.27,107.24L734.62,107.30L735.61,107.77L735.92,108.10L736.64,108.32L736.81,108.45L736.84,108.67L737.52,108.92L737.58,109.05L737.41,109.25L737.56,109.35L738.11,109.37L738.35,109.51L738.32,109.67L738.05,109.76L738.17,109.88L737.68,110.20L737.18,110.21L737.12,110.38L736.55,110.41L736.37,110.43L736.20,110.54L736.78,110.94L736.93,111.04L737.29,111.15L737.11,111.25L737.14,111.27L737.41,111.44 "/><path d="M561.65,68.67L561.70,68.72L561.87,68.90 "/><path d="M669.38,94.69L669.09,94.58 "/><path d="M685.28,96.56L684.72,96.57L684.71,96.71L684.30,96.66L683.36,96.75L683.18,96.90L683.39,97.01L683.00,97.35L683.03,97.56L682.72,97.68L682.69,98.17 "/><path d="M669.91,95.46L669.94,95.58L669.73,95.70 "/><path d="M574.55,72.39L574.51,72.40L573.94,72.43L573.01,72.59 "/><path d="M648.54,90.65L648.59,90.64L649.22,90.59L650.99,90.89L652.39,90.84L653.28,90.89L653.45,90.79L653.63,90.80L654.00,91.14L654.50,91.10L654.69,91.23 "/><path d="M679.67,98.61L679.74,98.51L679.80,98.42L679.91,98.25L680.16,98.22L680.28,97.98L680.23,97.50L679.95,97.22L680.40,96.90L680.40,96.64L680.62,96.36L680.52,96.19L680.66,96.03L680.94,95.97L680.97,95.86 "/><path d="M559.67,68.61L559.66,68.61L559.32,68.77L559.54,68.89L559.23,69.04L558.81,69.76L558.50,69.83 "/><path d="M717.19,104.83L717.26,105.23L717.51,105.46L718.69,105.96L718.58,106.53L718.50,106.56L718.36,106.59L718.43,106.69L718.50,106.80L718.12,107.27L718.11,107.28L719.03,108.18L719.48,108.27L719.55,108.40L720.05,108.74L720.36,108.76L721.68,109.37L722.09,109.41L722.60,109.46L723.14,109.74L725.22,110.25L725.72,110.56L727.11,111.06L727.21,111.14L726.79,111.52L726.89,111.58L726.93,111.61L727.01,111.66L726.98,111.71L726.91,111.81L727.10,111.93 "/><path d="M704.63,106.31L704.65,106.05L704.91,105.95L704.64,105.54L704.64,105.33L704.07,105.11L704.40,104.90L704.96,104.74L706.38,104.50L706.99,104.30L707.21,104.11L707.05,103.78L706.31,103.50L706.03,103.13L705.57,102.86L705.57,102.68L705.73,102.59L705.70,102.33L705.38,102.18L704.72,101.86L704.55,101.70L703.40,101.23L703.13,100.99L702.81,100.95L702.71,100.78L702.23,100.67 "/><path d="M700.39,100.19L700.00,100.54L699.43,100.80L699.31,100.98L698.47,100.95L698.33,101.03L698.41,101.16L698.18,101.26L697.59,101.28L697.37,101.41L697.60,101.79L697.20,102.08L698.24,102.39L698.49,102.74L698.41,102.84L698.78,103.20L699.30,103.56L699.84,103.65L700.16,103.82L700.43,104.09L700.84,104.52L701.49,104.84L701.65,105.08L701.88,105.18L702.21,105.21L702.42,105.32L702.46,105.60L702.79,105.79L703.00,105.69L703.21,105.72L703.56,106.05L704.63,106.31 "/><path d="M557.95,70.26L557.12,70.80 "/><path d="M649.21,92.79L648.83,92.75L648.07,92.49L646.69,91.64L646.45,91.55L646.03,91.40 "/><path d="M565.85,72.66L565.82,72.76L565.75,73.04L565.47,73.06L565.34,73.24 "/><path d="M572.36,74.90L572.39,74.71 "/><path d="M661.32,93.92L661.08,93.99L660.71,94.54L660.07,94.76L660.42,95.02L660.27,95.24L660.34,95.40L660.01,95.66L659.38,95.89 "/><path d="M650.58,93.68L651.20,94.04L651.60,94.41 "/><path d="M561.31,72.20L561.20,72.59L561.51,73.07L561.16,73.07L561.02,73.15L561.20,73.28L562.00,73.22L562.32,73.41L562.85,73.56L562.96,73.67L563.78,73.67L564.66,73.48 "/><path d="M559.48,72.91L559.25,72.87 "/><path d="M704.63,106.31L705.59,106.63L706.15,107.18L706.25,107.71L706.13,107.91L706.36,108.16L706.22,108.24L706.28,108.40L706.35,108.61 "/><path d="M556.02,72.33L556.39,72.41L557.45,72.37L558.00,72.51 "/><path d="M655.03,96.31L655.48,96.30 "/><path d="M640.37,92.77L640.74,92.67L640.79,92.66 "/><path d="M664.12,98.61L664.68,98.55L665.01,98.34L665.28,98.31L665.59,97.94L665.50,97.69L665.00,97.47L665.10,97.14L665.01,96.94L664.76,96.77L665.21,96.31L666.06,96.23 "/><path d="M708.28,109.62L708.16,109.33L708.00,109.36L707.89,109.39L707.35,109.00L707.15,109.04L706.95,108.97L706.35,108.61 "/><path d="M682.95,98.55L683.26,98.70L683.35,99.01L684.52,99.51L685.12,100.03L685.24,100.36L685.11,100.43L686.55,101.96L686.40,102.06L686.69,102.22L686.54,102.34L686.73,102.43L687.03,102.90L686.58,102.97L686.78,103.12L686.66,103.39L686.57,103.59L686.34,103.73L685.81,103.80L685.76,103.98L685.63,104.00L685.55,104.00L685.25,104.03 "/><path d="M656.34,96.49L656.59,96.65L656.82,96.81L656.95,96.83L657.22,96.87L657.56,97.06L657.87,97.06L658.35,97.17L658.57,97.35L658.60,97.55 "/><path d="M560.58,74.15L561.16,74.00L561.49,74.15L561.91,74.21L562.26,74.37 "/><path d="M577.25,78.12L576.81,78.05L576.54,77.93 "/><path d="M696.87,102.80L696.34,102.54L696.26,102.31L695.56,102.32L695.41,102.42L694.91,102.47L694.04,102.32L693.60,102.35L693.13,102.73L693.27,102.99L693.06,103.14L692.45,103.26L692.22,103.38L692.59,103.81L693.02,103.98L693.63,104.37L693.94,104.47L693.98,104.67L694.31,104.83L695.18,104.99L695.30,105.19L695.38,105.33L695.73,105.44L696.34,105.77L696.69,106.24L697.17,106.49L697.46,106.53L697.60,106.69L698.20,106.93L698.28,107.12L698.73,107.32L698.77,107.44L699.07,107.53L699.33,107.86L700.20,108.22L700.66,108.27L701.41,108.34L701.67,108.27L703.97,108.64L704.21,108.49L704.24,108.49L705.01,108.51L705.98,108.68L706.35,108.61 "/><path d="M584.86,80.16L584.21,79.99L583.18,79.57L582.62,79.35L581.86,79.14L579.36,78.55L578.91,78.49 "/><path d="M641.17,93.47L641.73,93.91 "/><path d="M659.54,98.08L659.84,98.32L659.83,98.64L660.06,98.75L660.57,98.86L660.79,98.55L660.82,98.54L661.14,98.43 "/><path d="M578.88,79.72L577.89,79.60 "/><path d="M577.20,79.49L575.81,79.31 "/><path d="M575.19,79.19L574.88,78.96L573.59,78.64L572.77,78.61 "/><path d="M580.90,79.93L581.07,80.18L580.70,80.33L581.07,80.58 "/><path d="M713.06,113.25L713.04,113.23L712.78,113.10L712.18,113.04L712.09,113.03L711.86,113.01L711.44,112.81L711.08,112.94L710.83,112.87L710.96,112.66L710.27,112.39L710.07,112.24L709.61,111.92L709.37,111.86L709.28,111.73 "/><path d="M647.13,96.77L647.08,96.92L646.87,96.94L646.83,97.05L646.96,97.14L647.24,97.13L647.42,97.24L647.40,97.32 "/><path d="M563.40,76.52L562.52,76.67L561.50,77.05L560.85,77.09L560.22,77.42L560.36,77.49 "/><path d="M670.04,95.98L670.30,96.27L671.21,96.72L671.31,96.92L670.97,97.29L670.99,97.48L671.57,97.96L671.63,98.51L671.51,98.64L671.73,98.88L671.66,99.15L671.34,99.38L671.30,99.81L671.66,100.09L671.67,100.21L672.12,100.67L672.58,100.97L672.80,100.96L672.83,101.17L673.08,101.32L672.88,101.48L673.15,101.81L673.12,102.17L673.25,102.34L673.14,102.48L673.34,102.67L673.33,102.97L673.60,103.14L673.69,103.42L674.32,104.08L674.42,104.53L674.18,104.69L674.32,104.81L674.40,104.87L674.25,105.34 "/><path d="M666.88,103.91L666.41,103.41L666.34,103.33L665.98,103.23L665.88,103.22L665.60,103.20L664.82,102.90L664.74,102.81L664.13,102.14L664.06,101.79L663.78,101.62L663.71,101.37L663.54,101.29L663.60,101.18L664.00,101.17L664.44,100.82L663.98,100.35L663.03,99.83L663.40,99.42L663.24,99.31L663.03,99.16L663.46,99.03 "/><path d="M674.25,105.34L673.13,105.09L672.89,104.96L672.27,104.92L671.29,104.52L670.27,104.55L668.94,104.04L668.63,104.02L668.04,104.22L666.88,103.91 "/><path d="M699.40,112.19L699.14,111.96L699.12,111.95L697.71,111.21L697.75,111.00L697.36,110.87L697.47,110.74L697.42,110.72L697.27,110.69L696.91,110.64L696.47,110.48L696.64,110.36L695.98,109.88L695.70,109.83L695.65,109.75L695.84,109.65L696.02,109.57L696.06,109.34L695.85,109.23L695.28,109.14L694.77,108.96L694.67,108.82L693.41,108.59L692.80,108.30L692.16,108.19L691.96,108.16L691.28,107.82L690.75,107.43L689.45,106.97L688.91,106.86L688.34,106.60L688.12,106.35L688.06,106.29 "/><path d="M643.57,98.51L644.03,98.47L644.16,98.37L644.48,98.43L644.68,98.55L645.64,98.27L646.26,98.31L646.73,98.25L647.09,98.07L647.10,97.93L647.44,97.89L647.66,97.71L648.40,97.58L648.76,97.40L650.02,97.29L650.53,97.12L651.41,96.99 "/><path d="M685.11,105.71L685.07,105.75L684.86,105.97L684.89,106.19L684.67,106.33L684.14,106.39L683.85,106.75L683.18,107.08L682.78,107.50L682.64,108.01L682.40,108.16L682.36,108.41L682.15,108.51L682.05,108.56L682.00,108.59L681.85,108.62L681.80,108.63L681.36,108.73 "/><path d="M674.25,105.34L675.22,106.01L675.76,106.19L675.84,106.40L676.49,106.64L678.23,107.05L678.80,107.25L679.43,107.35L679.89,107.57L680.28,107.97L681.12,108.37L681.36,108.73 "/><path d="M666.88,103.91L665.02,103.73L664.10,103.84L662.43,103.75L661.84,103.78L660.58,103.63L658.78,102.71L657.24,102.22L655.40,101.98L655.26,101.89L654.99,101.72L654.58,101.69L653.96,101.42L652.32,100.92L651.60,100.70L649.07,100.45L648.84,100.36 "/><path d="M681.36,108.73L681.20,108.92 "/><path d="M685.82,108.74L686.20,109.11L686.24,109.38L686.34,110.06L686.59,110.37L686.61,110.38L687.79,110.75L687.89,110.74 "/><path d="M645.41,100.98L644.53,100.81L644.21,100.62L643.55,100.54L642.91,100.36L642.37,100.52L642.11,100.60L641.69,100.56 "/><path d="M671.42,108.80L672.24,108.75L672.70,108.65L674.42,108.74L675.08,109.03L675.65,109.17L676.20,109.47L676.31,109.62L677.99,110.37L680.47,110.95L680.92,110.95L681.75,110.95L681.84,110.95L682.06,110.95L682.28,111.06L682.62,111.08L682.77,111.09 "/><path d="M689.18,111.15L689.60,111.40L689.62,111.68L690.00,111.88L691.54,112.14L692.42,112.49L692.73,112.48L693.67,112.72L694.11,113.04L694.03,113.12L694.21,113.49L694.75,113.88L695.02,113.92L695.57,114.32L696.49,114.79L696.55,114.82L697.35,115.07L697.66,115.16L697.91,115.21L698.56,115.33L698.66,115.45L698.99,115.48L699.07,115.59L698.89,115.89L698.99,115.95L699.18,116.09 "/><path d="M658.91,107.28L659.37,107.23L660.00,106.90L659.87,106.52L660.09,106.22L660.46,106.08L661.72,106.14L663.29,105.84L663.35,105.70L662.84,105.22L662.97,105.14L663.99,105.24L665.20,105.27L666.16,105.48L666.80,105.83L666.85,105.87L667.21,105.97L667.44,106.25L667.35,106.47L667.76,106.71L669.20,108.21L669.64,108.18L670.28,108.63L671.18,108.71L671.42,108.80 "/><path d="M671.42,108.80L671.02,108.84L669.95,109.17L669.04,109.14L667.78,108.63L666.85,108.68L665.95,108.86L664.91,108.84L664.45,108.75L662.40,108.96L660.96,108.83L659.64,108.90L659.31,108.91L658.95,108.88L658.16,108.56L655.48,108.23L654.88,108.01L653.99,107.47L653.51,107.32L652.18,107.26L651.22,107.05L650.99,106.95L650.71,106.50L651.02,106.37L650.24,106.01L650.20,105.89L650.34,105.78L650.60,105.59L651.23,105.35L651.15,104.77L651.39,104.28L652.14,104.20L652.68,104.05L652.93,103.89L652.95,103.66L652.23,103.64L650.81,102.82L650.70,102.64L650.47,102.57L648.81,102.07L648.16,101.95L648.01,101.92L647.84,101.77 "/><path d="M628.44,101.71L628.00,101.27L627.37,100.96L627.29,100.14L627.44,99.93L626.78,99.11L626.94,98.96L626.59,98.73L626.56,98.47L626.53,98.27 "/><path d="M624.88,98.69L624.85,98.69L624.36,98.76L623.61,99.33L623.80,99.64L623.37,99.70L622.95,100.17L622.24,100.47L621.76,100.46 "/><path d="M656.41,109.83L656.30,109.27L655.83,109.04L655.11,109.14L654.96,109.26L655.03,109.48 "/><path d="M650.04,107.25L650.24,107.38L652.02,107.96L651.88,108.13L651.47,108.18L651.44,108.42L651.10,108.61L650.25,108.95 "/><path d="M660.56,110.28L661.01,110.35L661.10,110.53L660.94,110.61L661.35,110.85L661.39,111.21L661.84,111.71L661.83,111.86L662.75,112.14L663.35,112.18L663.63,112.09L665.15,112.22L666.02,112.17L668.04,112.27L668.57,112.56L668.24,113.01L668.43,113.14L668.84,113.42L669.49,113.53L670.48,114.05L670.56,114.19L670.17,114.27 "/><path d="M649.99,109.31L649.54,109.75 "/><path d="M614.41,101.08L613.83,100.52L613.81,99.95 "/><path d="M679.48,114.96L679.83,115.02L680.18,115.20L680.73,115.25L681.03,116.18L681.72,116.56L682.03,116.60L682.19,116.74L682.40,116.92L682.56,116.98L682.60,116.99L684.47,117.63L685.56,118.19L687.21,118.65L687.12,118.80L687.71,119.16L687.84,119.24L688.18,119.17L689.02,119.17L689.02,119.17L689.03,119.17L689.04,119.18L689.64,119.42L689.97,119.44L690.27,119.56L690.64,119.61L690.96,119.75L690.90,119.84L691.24,120.05L691.29,120.11L691.53,120.40L691.54,120.42L691.61,120.62L691.39,120.68L691.76,120.83L692.12,121.13 "/><path d="M649.32,110.11L649.11,110.16L649.50,110.50 "/><path d="M643.24,104.72L643.67,105.13L643.63,105.35L643.23,105.70L643.36,105.96L643.19,106.15L643.46,106.50L643.37,106.74L643.00,106.86L642.79,107.19L641.93,107.35L641.67,107.50L641.04,107.61L640.45,107.72L639.89,107.75L639.14,107.92L638.47,107.90 "/><path d="M664.20,112.60L663.37,112.72L662.62,112.59L662.40,113.26L663.02,113.46L663.29,114.17L663.97,114.39L665.14,114.56L665.51,114.72L666.37,114.79 "/><path d="M624.01,104.52L624.51,104.93L624.50,105.04 "/><path d="M632.58,106.75L632.57,107.38L633.06,107.57L634.39,107.70 "/><path d="M654.53,111.57L655.00,111.94L654.85,112.12L655.10,112.51L654.96,112.78L655.15,112.92L655.06,113.06L655.55,113.49 "/><path d="M631.47,103.59L631.29,103.80L632.71,104.41L632.67,104.50L632.99,104.64L632.93,104.78L633.15,104.87L633.52,104.92L633.77,105.12L633.73,105.24L632.09,105.88L631.42,106.51L631.27,106.97L630.64,107.17L629.92,107.23L629.57,107.14L629.47,107.03 "/><path d="M653.29,113.04L654.15,113.44L654.74,113.54L655.55,113.49 "/><path d="M679.85,120.36L679.78,120.03L679.85,119.88L679.89,119.79L679.93,119.68L679.94,119.66L679.76,119.41L679.69,119.30L679.70,119.22L679.71,119.17L679.74,118.92L679.46,118.71L679.45,118.71L679.52,118.59L679.50,118.58L679.50,118.57L679.31,118.33L678.86,117.93L678.52,117.77L677.60,117.51L677.23,117.26L676.62,117.01L676.17,116.94L675.77,116.65L674.80,116.52L674.65,116.40L674.21,116.32L673.94,116.09L673.24,115.80L673.03,115.71L672.21,115.60 "/><path d="M605.11,102.17L604.65,101.80L604.52,101.54L604.93,101.52L605.06,101.43L604.83,101.16L604.99,100.98L604.91,100.78 "/><path d="M729.97,133.39L729.29,133.12L729.06,133.02L728.15,132.79L727.37,132.83L726.36,132.71L725.33,132.35L724.19,132.48L722.93,132.32 "/><path d="M676.15,120.56L676.12,120.54L675.58,120.19L675.36,120.10L674.80,119.90L673.59,119.45L673.01,119.39L672.54,119.35L671.95,119.08L671.37,118.67L671.39,118.48L669.94,117.63L669.70,117.18L669.42,117.03 "/><path d="M632.25,108.53L631.44,108.98L631.48,109.10L632.35,109.55L633.09,109.59L635.50,110.36 "/><path d="M605.18,102.51L605.31,102.77L605.75,102.87L606.07,103.09L606.47,103.21L605.83,103.67L606.28,103.94 "/><path d="M574.98,93.93L574.34,94.12L574.16,94.17L573.82,94.43L573.91,94.45L573.47,94.57L572.93,94.53L572.68,94.59L572.09,94.52L571.77,94.58L571.03,95.12L571.18,95.55L571.67,95.73L572.33,95.81 "/><path d="M607.15,104.37L607.34,104.44L607.90,104.49L608.23,104.82 "/><path d="M709.73,130.23L709.55,130.53L709.09,130.52L709.10,130.68 "/><path d="M710.14,130.61L710.03,130.71L709.61,130.75L709.53,130.86 "/><path d="M709.53,130.86L709.10,130.68 "/><path d="M647.48,115.21L647.40,115.15L647.28,115.05L646.91,114.77L646.59,114.62L646.78,114.46L646.25,114.04L646.28,113.77L645.89,113.24L645.12,112.97L644.51,112.97 "/><path d="M647.94,115.40L647.85,115.36L647.48,115.21 "/><path d="M646.06,115.29L646.48,115.37L647.48,115.21 "/><path d="M644.34,114.94L644.14,114.91L644.03,114.89 "/><path d="M655.55,113.49L655.73,113.57L656.12,113.74L656.55,114.21L657.58,114.71L657.94,115.11L657.93,115.32L657.68,115.48L656.72,115.59L656.00,115.88L655.93,116.32L655.90,116.47L655.65,116.66L655.10,116.71L654.88,116.84L654.53,116.86L654.31,116.86L654.31,116.86L654.26,116.99L654.45,117.18L654.46,117.19L654.98,117.70 "/><path d="M622.89,109.68L622.62,109.44L623.10,109.38L623.20,109.29L622.66,108.99L622.44,108.72L621.91,108.67 "/><path d="M763.29,141.98L762.57,141.91L762.46,142.06L761.99,142.13L761.75,142.37L761.77,142.45L761.82,142.62L761.51,142.90L761.51,142.90L761.49,143.14L760.92,143.10L760.36,143.44L759.76,143.45L758.81,143.83L758.29,143.83L758.03,143.56L757.73,143.45L756.51,143.49L755.57,143.41L754.66,143.24L754.08,143.23L753.79,143.23L752.85,143.08L752.29,142.88L752.03,142.67 "/><path d="M622.89,109.68L623.30,109.97L623.75,109.92L625.00,110.14L626.00,110.17L627.63,109.90L627.84,109.73L627.82,108.88L627.65,108.10L627.39,107.96 "/><path d="M610.90,106.98L610.56,106.74L610.11,106.65L609.89,106.20 "/><path d="M632.11,113.43L632.52,113.51L633.32,113.68L633.39,113.69L633.73,113.84L634.94,113.90L635.54,113.99L635.74,114.11L637.66,113.91L637.80,113.93L638.10,113.97L638.38,113.94L638.64,114.06L639.20,114.05L640.90,114.25L641.33,114.34L641.74,114.51L642.20,114.46L642.56,114.54L642.50,114.68L642.62,114.75L642.95,114.75 "/><path d="M652.85,118.95L652.43,118.39L652.70,118.30 "/><path d="M650.42,118.62L650.91,118.73L652.17,118.74L652.85,118.95 "/><path d="M622.89,109.68L622.58,109.77L622.39,109.82L622.27,109.99L622.00,110.05L621.99,110.17L621.69,110.16L621.55,110.36L620.68,110.55L619.22,110.60L618.56,110.72 "/><path d="M627.12,112.44L626.90,112.49L625.56,112.32L624.58,111.96L623.02,111.92 "/><path d="M664.71,122.44L665.02,122.27L665.43,122.23L665.48,122.23 "/><path d="M652.85,118.95L653.42,119.26L653.56,119.48L654.33,119.71L654.83,119.85L655.13,120.07L655.27,120.07 "/><path d="M655.98,118.53L656.23,118.63L656.30,118.65L657.17,118.77L658.13,119.10L658.14,119.23L657.64,119.34L657.86,120.05L658.08,120.76L658.25,120.90L659.00,121.01L659.40,121.24 "/><path d="M576.68,97.01L576.97,97.32L576.92,97.41L576.70,97.47L576.41,97.55L576.09,97.82L576.18,98.21L575.97,98.42L575.30,98.63L574.96,98.64L574.60,98.86L574.87,99.04L574.50,99.22L574.21,99.26L573.93,99.69L573.49,99.72L572.98,99.88L572.85,100.02 "/><path d="M659.40,121.24L659.03,121.34L658.70,121.33L658.52,121.32L657.94,121.20L656.74,120.75 "/><path d="M659.40,121.24L659.81,121.38L660.49,121.61L660.72,121.82L661.14,121.87L661.97,122.28 "/><path d="M618.57,111.16L618.50,111.41 "/><path d="M661.97,122.28L662.66,122.56L663.30,122.66L663.40,122.68L663.77,122.67 "/><path d="M769.30,144.57L769.03,144.81L768.36,144.83L767.84,144.64L767.52,144.79L767.32,144.89L767.24,145.07L767.28,145.24L767.98,145.56L768.26,145.88L768.00,146.18L767.44,146.35L767.17,146.80L766.73,146.98L766.97,147.14L766.60,147.31L766.53,147.51L766.70,147.84L766.45,148.25L766.78,148.67L766.64,148.87L766.62,148.91L766.20,149.08L766.14,149.20L766.59,149.44L766.92,150.05 "/><path d="M621.76,112.25L621.57,112.41L621.84,112.68 "/><path d="M696.65,129.10L696.57,129.19L696.53,129.20L696.17,129.26L696.16,129.27L696.07,129.47L696.04,129.53L696.04,129.54L695.64,129.60L695.49,129.76L694.63,129.99L694.19,130.11L692.70,130.13L692.05,130.01L690.49,130.33 "/><path d="M626.63,114.37L628.01,114.42 "/><path d="M709.53,130.86L709.38,131.22L709.37,131.23L708.79,131.27L708.53,131.45L708.50,131.45L707.63,131.44L707.52,131.44L707.63,131.67L707.13,131.70L706.86,131.92L707.02,132.39L706.92,132.84L706.71,132.85L706.50,132.76L706.32,132.83L706.53,133.17L706.37,133.29L706.00,133.31L705.45,133.10L705.27,133.41L704.71,133.51L704.57,133.63L704.80,133.87L704.72,133.99L704.37,134.01L704.42,134.12L704.32,134.18 "/><path d="M563.91,98.78L564.60,99.00L564.64,99.14L565.02,99.13L566.79,99.10L567.87,99.29L568.18,99.40L568.59,99.39L569.20,99.95L570.03,100.27L570.47,100.32L571.01,100.56L571.11,100.70 "/><path d="M796.36,158.62L796.04,158.56L795.73,158.34L795.41,158.30L795.26,158.20L795.45,157.88L794.55,157.24L793.65,157.18L792.91,156.93L792.62,156.64L792.64,156.45L792.29,156.29L792.20,156.21L791.66,155.73L791.68,155.57L791.13,154.99L790.79,154.97L790.25,154.71L789.47,154.57L789.16,154.43L788.92,154.13L789.09,153.99L789.16,153.93L788.62,153.57L788.60,153.42L788.53,153.05L788.27,152.69L786.82,152.17L786.82,151.95L786.44,151.73L786.01,150.97L785.36,150.72L784.60,150.44L784.41,150.10L783.72,149.76L783.35,149.29 "/><path d="M766.92,150.05L767.47,150.50L767.55,150.53L768.02,150.72L768.39,151.38L768.74,151.54L770.22,151.67L771.07,151.61L771.89,151.76L773.00,151.66L774.18,151.71L775.31,151.92L775.70,151.85L776.88,151.29L777.18,151.28L777.63,151.27L778.28,150.76L779.33,150.53L779.40,150.36L779.75,150.34L780.24,150.31L780.28,150.16L779.35,149.23 "/><path d="M801.81,160.61L801.48,160.51L801.18,160.04L800.92,159.93L800.86,159.90L800.53,160.00L800.23,160.09L800.03,159.86L800.36,159.72L800.17,159.53L799.47,159.29L799.14,158.97L799.31,158.85L799.11,158.67L798.47,158.62L798.38,158.75L798.06,158.75L797.63,158.58L797.09,158.76L796.36,158.62 "/><path d="M619.61,111.99L619.70,112.40L619.22,112.72L618.80,112.68L618.27,112.74L616.88,112.38L615.78,112.26L614.57,112.00L614.21,111.86 "/><path d="M661.97,122.28L661.42,122.36L660.83,122.45L660.20,122.81L660.07,122.80L659.58,122.76L659.26,122.66L657.44,122.08L657.18,121.80L656.46,121.58L656.01,121.53L655.35,121.66L655.02,121.56L654.79,121.67L654.33,121.63L653.74,121.77L652.89,121.77L651.44,121.32 "/><path d="M647.47,118.34L647.07,118.30L645.24,117.85L644.64,117.59L643.97,117.55L642.37,118.03L641.16,118.24L640.25,118.29L638.62,118.20L637.94,117.93 "/><path d="M572.38,101.79L572.34,101.48L572.78,101.15L572.76,100.97L573.39,100.93L573.74,100.78L573.86,100.17L574.05,100.05L574.60,100.06L575.32,99.95L575.73,99.98L576.14,100.15L576.42,100.20L576.57,100.22L576.85,100.37L577.04,100.35 "/><path d="M779.62,152.16L780.45,152.67L780.79,152.75L781.79,153.67L782.39,154.04L782.78,154.10L783.43,154.39L783.63,154.47L784.05,154.87L784.21,155.18L784.56,155.32L785.00,155.28L785.29,155.89L786.91,156.35L787.80,156.43L788.38,156.64L789.46,157.04L789.61,157.18L789.05,157.42L789.16,157.47L789.51,157.51L789.62,157.61L790.26,157.78L791.13,157.85L791.16,157.87L791.62,158.21L792.17,158.16L793.36,158.31L793.65,158.23L793.85,158.25L794.17,158.29L794.66,158.51L795.74,158.78L795.97,158.67L796.36,158.62 "/><path d="M750.68,146.96L751.27,146.90L751.28,146.90L752.93,147.35L753.66,147.73L754.37,148.35L754.72,148.32L754.93,148.18L754.67,147.77L755.23,147.51L755.40,147.17L756.03,147.23L756.96,147.55L756.75,147.62L756.93,147.73L756.95,147.73L757.52,147.84L757.69,147.94L757.61,148.34L758.14,148.67L758.14,148.69L758.12,148.97L758.47,149.07L758.86,149.31L759.17,149.36L759.40,149.23L760.43,149.27L761.03,149.45L761.42,149.70L762.13,149.98L762.41,149.88L762.32,149.64L762.66,149.44L762.98,149.46L763.29,149.32L763.82,149.40L764.28,149.65L766.92,150.05 "/><path d="M728.58,142.21L729.04,141.98L728.98,141.75L728.54,141.54L728.45,141.40L728.84,140.92L729.46,140.88L729.63,140.73L729.52,140.52L729.68,140.40L730.02,140.36L730.12,140.34L730.13,140.36L730.55,140.74L730.93,140.81L731.33,140.76L732.04,140.79L732.47,140.57L732.49,140.56L732.88,140.54L732.94,140.54L733.26,140.10L733.73,139.92L734.59,139.77L734.95,139.45L735.04,139.38L735.49,139.30L735.56,139.24L735.66,139.14L735.87,138.95L736.45,138.92L736.61,138.83L736.54,138.64L737.21,138.26L737.31,138.20L737.74,138.06L738.40,137.47L738.81,137.32L738.84,136.93L739.31,136.64 "/><path d="M591.12,105.08L591.50,105.18L591.71,105.35L591.46,105.53L591.30,106.52L591.90,107.27L591.72,107.61L591.91,107.78 "/><path d="M565.06,101.35L565.27,101.56L565.35,101.59L565.66,101.70L566.31,101.76L566.65,101.91L567.07,102.00L571.16,102.52 "/><path d="M733.87,144.48L734.55,144.43L735.35,144.57L736.61,144.40L737.05,144.55L737.07,144.56L738.69,144.47L738.95,144.44L739.35,144.18L739.18,144.00L739.43,143.64L739.51,143.53L739.86,143.60L740.04,143.64L741.22,143.70L741.58,143.67L741.77,143.47L741.86,143.38L742.14,143.09L742.15,143.08L742.45,143.03L742.51,143.01L742.62,143.03L743.68,143.14L743.94,143.17L744.35,143.34L744.42,143.43L744.54,143.55L744.57,143.59L745.57,143.99L746.05,144.01L746.46,144.13L747.05,144.51L747.43,144.66L748.64,144.96L748.85,145.12L748.86,145.15L748.89,145.29L748.53,146.14L748.97,146.36L749.15,146.79L749.46,146.97L749.82,147.05L750.31,146.93L750.68,146.96 "/><path d="M615.71,114.25L616.50,114.16L618.38,114.32L618.74,114.48L619.43,114.59L621.22,114.38L621.76,114.40L621.82,114.38L622.11,114.27L623.00,114.19L624.84,114.31 "/><path d="M643.95,120.43L643.55,120.37L642.89,120.14L642.41,120.10L641.82,120.19L640.78,120.17L639.91,119.95L639.51,119.93L638.86,119.78L637.64,119.84L637.07,119.69L636.73,119.51L635.97,119.36L635.57,119.37L635.23,119.24 "/><path d="M689.67,133.41L689.83,133.41L690.20,133.19L690.88,133.15L691.11,133.20L691.32,133.35L692.00,133.43L692.34,133.56L692.66,133.60L693.03,133.82L693.51,133.84L693.83,134.00L694.25,134.01L694.97,133.73L695.17,133.52L695.55,133.47L695.65,133.35L695.85,133.13L695.75,132.97L695.97,132.69L696.20,132.66L696.32,132.44L696.57,132.38L696.65,132.31L696.76,132.21L696.76,131.99L697.39,132.13L697.67,132.33L698.04,132.30L699.24,132.19L699.75,132.29L700.39,132.23L700.56,132.11L701.29,132.15L701.82,132.06L702.33,132.13L702.70,132.04L703.35,132.02L703.47,131.84L703.20,131.58L703.39,131.26L704.03,131.23L704.23,131.33L704.74,131.16L704.76,131.15L704.77,131.06L705.65,131.09L706.31,130.92L706.89,131.04L707.01,131.17L707.28,131.08L707.43,130.88L707.47,130.84L707.49,130.81L708.26,130.75L708.42,130.67L708.83,130.73L709.10,130.68 "/><path d="M730.75,133.24L731.52,133.01L731.87,132.72L731.38,132.08L731.70,131.99L732.51,132.85L732.56,133.12L731.99,133.52L731.16,133.88L730.65,134.48L730.89,134.72L730.77,134.85L730.53,134.87L730.38,135.12L730.05,135.23L729.79,135.05L729.47,134.97L729.30,134.92L728.94,134.52L728.57,134.44L728.11,134.35L727.91,134.12L727.24,134.00L727.07,133.97L727.03,134.00L726.94,134.07L726.80,134.05L726.65,134.03L726.44,133.87L726.04,133.86L726.04,133.97L726.04,133.98L725.66,133.97L724.52,133.79L724.48,133.86L724.81,133.98L725.40,133.98L725.68,134.12L725.82,134.30L725.86,134.35L725.66,134.76L725.71,135.00L725.43,135.18L724.92,135.31L724.58,135.83L724.61,136.03L724.22,136.29L723.81,136.26L723.45,136.49L723.00,136.44L722.56,136.57L722.29,136.50L722.14,136.58L720.83,136.39L719.97,136.45L719.70,136.42L719.68,136.32L717.89,136.25L716.61,135.92L716.27,135.96L716.05,136.10L715.58,136.16L715.58,136.17L715.31,136.34L715.60,136.68L715.33,136.70L715.12,136.86L715.30,137.02L715.70,137.11L715.98,137.43L715.67,137.47L715.58,137.57L715.17,137.59L714.98,137.95L714.60,137.90L714.55,137.89L714.02,137.99L713.39,138.31L711.82,138.13L711.17,138.29L711.09,138.41L711.35,138.63L711.48,138.95L710.92,138.88L710.71,138.92 "/><path d="M571.41,103.37L570.74,103.68L570.70,103.90 "/><path d="M750.68,146.96L749.84,147.28L749.82,147.68L749.81,147.79L750.00,148.04L749.91,148.50L749.64,148.98L749.39,149.17L748.77,149.34L748.78,149.41 "/><path d="M635.56,117.09L635.07,117.14L634.44,116.98L634.16,116.91L633.82,117.06L633.27,117.03L632.46,117.09L630.97,117.28L629.77,117.20L629.22,117.09L628.66,116.84L625.53,116.41L625.25,116.46L624.94,116.74L624.09,116.83L623.84,116.93L623.39,117.11L622.62,116.91 "/><path d="M633.76,119.00L633.07,119.02L632.37,118.93L632.29,118.94L630.92,119.10L630.47,119.05L630.16,118.90L630.15,118.77L630.41,118.68 "/><path d="M595.71,110.86L595.69,110.13L594.45,109.14L594.08,108.71L593.50,108.71L592.49,108.88L590.95,108.97L590.21,109.07L589.95,109.19L589.02,109.28 "/><path d="M685.16,133.84L685.54,133.58L685.94,133.54L686.97,133.20L687.35,133.17L687.80,132.97L688.14,132.98L688.92,132.70L689.24,132.21L689.50,132.07L690.11,131.92L690.51,131.91L690.85,131.70L690.40,131.26L690.34,130.97L690.58,130.67L690.49,130.33 "/><path d="M615.06,116.38L615.49,116.26L616.25,116.33L619.49,116.27 "/><path d="M620.25,117.73L619.50,117.62L618.62,117.35L617.88,117.02L617.59,116.98 "/><path d="M660.70,125.43L660.42,125.52L660.32,125.56L659.82,125.51L659.67,125.57L659.59,125.61L659.57,125.62L659.90,126.03L659.83,126.07L659.57,126.20L659.26,126.15L658.86,125.93L658.84,125.93L657.87,125.93L657.62,125.74L657.59,125.63L657.55,125.47L656.56,125.05L656.10,125.02L655.04,125.17L654.35,125.60L653.85,125.63L653.57,125.74L653.54,125.85L653.02,125.88L652.26,125.80L652.35,125.96L652.20,125.95L651.75,125.92L651.41,125.71L650.73,125.54L650.47,125.57L650.39,125.57L650.36,125.51L650.29,125.31L649.36,124.94L649.12,125.10L648.38,125.09 "/><path d="M606.76,114.86L607.22,114.79L607.27,114.87L607.41,114.87L607.69,114.74L607.93,114.77L608.19,114.81L608.43,114.56L609.14,114.52L609.35,114.43L609.70,114.49L610.11,114.46L610.45,114.58L610.58,114.63L610.93,114.53L611.92,114.72L612.18,114.68L612.56,114.40L613.51,114.33 "/><path d="M704.32,134.18L704.41,134.34L703.79,134.76L704.13,135.09L703.71,135.67L703.18,135.89L702.82,135.92L702.75,136.02L702.27,136.08L702.19,136.09L701.96,136.30L701.74,136.27L701.74,136.44L701.07,136.91L701.35,137.20L701.11,137.56L701.38,137.81L701.25,138.00L701.01,138.02L700.87,138.22L700.52,138.18L699.49,138.04L699.10,138.20L698.88,138.05L698.12,138.18 "/><path d="M728.58,142.21L727.89,142.27L727.48,142.30L727.23,142.48L725.03,142.47L724.51,142.53L724.15,142.49L723.87,142.27L723.53,142.15L723.13,142.17L722.71,142.35L722.37,142.39L721.32,142.27L720.91,142.30L720.44,142.10L719.81,141.58L719.41,141.57L719.03,141.86L718.70,141.80L718.43,141.47L718.18,141.44L718.15,141.45L718.00,141.52L717.71,141.38L717.37,141.36L717.47,141.70L716.98,142.34L716.15,142.57L715.43,142.61L715.36,142.69 "/><path d="M648.38,125.09L647.85,124.78L647.85,124.78L647.03,124.58L646.49,124.37L646.19,124.32L645.60,124.52L644.51,124.58L644.18,124.52L642.84,123.96L641.60,123.76L641.30,123.64L640.89,123.66L639.91,123.45 "/><path d="M637.86,123.29L637.26,123.33L637.03,123.18L636.72,123.16 "/><path d="M635.58,123.10L635.19,123.00L635.31,122.80L635.14,122.72L634.08,122.59L633.45,122.25L633.09,122.28L632.72,122.21L632.54,122.12L632.57,122.00L631.93,121.70L631.53,121.64L630.92,121.28L630.38,121.21 "/><path d="M543.92,100.48L544.20,99.79L543.64,99.25L543.84,99.08L543.41,98.58L543.55,97.94L543.37,97.70L543.33,97.65L542.65,97.41 "/><path d="M779.87,156.48L780.28,156.45L781.36,156.69L781.96,157.01L781.96,157.01L782.87,157.31L783.15,157.91L783.54,157.96L783.57,158.15L783.54,158.26L783.52,158.40L783.11,158.49L783.14,158.59L783.42,158.63L783.37,158.76L783.07,158.76L783.31,158.95L783.23,159.07L782.80,158.97L782.65,159.02L782.64,159.25L782.36,159.45L781.83,159.61L781.49,160.51L781.28,160.56L780.93,160.50L780.79,160.62L781.00,160.89L780.23,160.95L780.17,161.28L779.88,161.32L779.76,161.53L779.51,161.56 "/><path d="M756.37,152.73L756.91,152.74L757.25,152.98L758.08,152.91L758.58,152.99L759.12,153.38L759.51,153.53L760.39,153.86L761.08,154.05L761.49,154.08L761.84,153.75L762.84,153.40L764.12,153.26L764.73,153.10L765.36,153.06L766.02,153.13L766.98,152.90L767.06,152.88L767.36,152.95L767.47,153.04L767.68,153.23L767.58,154.03L768.11,154.52L768.15,154.76L768.19,154.98L768.06,155.14L767.55,155.18L767.07,155.53L767.27,155.81L768.03,156.16L768.91,156.78L769.29,156.88L769.38,156.65L769.98,156.54L770.05,156.37L770.66,156.55L771.12,156.45L771.23,156.43L771.58,156.46L772.16,156.68L772.28,156.79L772.55,156.76L772.53,156.55L772.91,156.60L773.41,156.88L773.97,156.78L774.27,156.80L774.68,157.13L774.79,157.44L775.68,158.21L775.70,158.40L776.43,158.89L777.17,159.17L777.76,159.28L777.95,159.42L777.92,159.57L778.36,159.79L778.43,160.21L778.33,160.46L778.30,160.52L778.67,160.89L778.74,161.12L779.51,161.56 "/><path d="M559.87,105.13L560.52,105.11L561.30,105.26L561.48,105.24L561.62,105.07L561.81,105.05L562.01,104.61L562.30,104.55L562.66,104.17L562.73,103.92L562.83,103.56L562.98,103.48L563.68,103.42L564.12,103.25L564.54,102.79L564.00,102.54L563.97,102.53L563.64,102.26 "/><path d="M551.98,103.31L552.31,103.29L552.39,103.28L552.80,103.34L553.00,103.21L554.04,103.14L554.71,103.29L555.13,103.26L555.86,103.05L557.26,102.98L557.45,103.01L558.12,103.35L558.30,103.77L558.55,103.86L559.04,103.84 "/><path d="M656.44,129.45L656.74,129.63L657.31,129.58L658.92,129.13L660.16,128.50L660.68,128.43L661.53,128.10L662.77,127.13L662.87,126.97L662.64,126.62L662.75,126.53L662.80,126.48L663.08,126.42L663.09,126.42L663.79,126.45L664.13,126.46L664.58,126.43L664.62,126.42L664.90,126.40 "/><path d="M669.39,133.15L670.07,133.04L670.53,132.97L671.65,132.54L672.80,132.47L673.09,132.41L673.99,132.22L674.06,132.20L674.50,132.20L674.84,132.20L674.94,132.18L675.41,132.13L676.07,132.04L676.88,131.84L677.39,131.53L677.97,131.18L679.79,130.82L680.00,130.80L680.81,130.73L681.66,130.77L682.51,130.81L684.19,130.73L685.76,130.51L687.24,130.60L687.64,130.34L688.18,130.38L688.66,130.29L688.99,130.43L690.49,130.33 "/><path d="M669.39,133.15L668.71,133.19L668.41,132.96L668.15,132.92L667.85,132.96 "/><path d="M784.94,164.14L782.69,163.32L782.10,163.23L781.82,163.18L781.27,162.98L780.96,162.64L780.67,162.54L779.81,162.42L779.47,162.19L779.12,161.95L779.51,161.56 "/><path d="M714.18,145.27L714.59,145.02L714.62,144.72L715.20,144.72L715.52,144.43L715.88,144.32L715.86,144.04L716.18,144.03L716.15,143.96L716.07,143.81L715.60,143.61L715.74,143.42L715.78,143.35L715.47,142.92L715.57,142.75L715.36,142.69 "/><path d="M666.76,132.97L667.20,133.11 "/><path d="M695.85,139.02L695.65,139.29L695.06,139.38L694.48,140.02L694.50,140.21L693.67,140.35 "/><path d="M648.38,125.09L647.57,125.20L647.33,125.38L646.73,125.37L646.79,125.60L646.18,125.86L645.34,125.93L644.78,126.15L644.32,126.09L644.11,126.19L643.75,126.21L643.65,126.37L642.18,126.53L641.94,126.75L641.73,126.77L640.71,126.89L640.22,126.88 "/><path d="M640.22,126.88L640.01,126.75L639.88,126.67L639.79,126.66L639.36,126.60L637.93,126.07L637.62,125.62L637.53,125.50L637.34,125.34L637.19,125.21L636.17,124.95L635.79,124.89L635.08,124.97L634.60,125.02L633.94,124.63L632.64,124.55L632.16,124.63L630.82,124.50 "/><path d="M728.58,142.21L728.69,142.33L728.58,142.41L728.41,142.51L728.68,142.66L728.78,142.89L728.99,142.99L729.39,143.00L729.94,142.91L730.10,142.98L730.29,143.49L730.17,144.15L730.32,144.65L730.31,144.74L730.27,145.18L730.47,145.35L730.61,145.39L730.88,145.47L732.84,145.83L732.76,146.04L732.03,146.09L731.53,146.39L731.29,146.53L730.57,146.59L729.81,146.98L729.79,146.99L728.75,146.92L727.93,147.18L726.77,147.30L726.71,147.40L726.93,147.55L727.17,147.59L727.23,147.70L726.99,147.84L726.26,148.04L725.42,148.13L724.93,148.34L724.52,148.30L723.57,148.56L723.28,148.57L723.01,148.45L722.78,148.16 "/><path d="M629.73,124.49L629.27,124.43 "/><path d="M648.13,129.37L648.64,129.57L648.60,129.72L648.93,129.83L649.94,130.01L650.72,129.92L651.29,130.00L652.66,130.49L653.73,130.78L653.75,130.78L654.22,130.91L655.09,131.26 "/><path d="M757.84,158.79L757.88,158.34L757.69,158.15L757.05,158.00L756.60,157.79L756.29,157.45L756.32,157.14L756.07,156.78L755.17,156.08L755.24,155.88L754.98,155.52L755.28,155.00L755.33,154.92L755.67,154.31L755.50,154.10L755.14,153.95L754.73,153.98L754.24,153.85L753.57,153.63L753.39,153.57L753.08,153.33L752.81,153.32L752.71,153.31L752.39,153.18L750.98,153.05L750.35,152.99L748.85,152.52 "/><path d="M658.51,132.61L658.61,132.84L659.45,132.98L659.52,132.99L660.84,132.95L661.98,132.80 "/><path d="M566.60,106.14L566.48,106.25L566.29,106.40L566.28,106.67L566.13,106.80L565.74,107.16L565.33,107.25L564.14,108.19L563.68,108.29L562.79,108.69L562.39,108.58L562.05,108.31L561.70,108.23L561.56,108.00L561.06,107.84L560.90,107.72L560.23,107.79 "/><path d="M660.22,133.55L661.25,133.69 "/><path d="M640.22,126.88L640.03,126.89L639.58,126.91L638.83,126.80L638.27,126.81L636.99,127.02L636.68,127.22L635.64,127.23L635.16,127.13L634.74,126.93L632.75,126.79L632.36,126.85 "/><path d="M740.79,155.46L741.31,155.34L741.82,154.81L742.21,154.77L743.29,155.02L744.87,155.17L745.08,155.36L745.03,155.55L745.94,155.92L746.16,156.41L746.80,156.62L748.02,156.71L748.40,156.93L748.93,156.96L749.44,157.10L749.64,157.28L750.26,157.51L750.43,157.63L750.64,157.79L751.33,157.79L751.98,157.90L753.32,157.75L753.60,157.59L753.93,157.64L754.24,157.82L754.73,157.91L754.74,157.92L755.03,158.10L755.46,158.21L755.49,158.20L755.64,158.13L756.75,158.30L757.30,158.66L757.34,158.67L757.84,158.79 "/><path d="M501.46,94.86L501.07,94.47 "/><path d="M609.98,121.72L611.55,121.65L613.03,121.48L613.89,121.48L614.53,121.35L615.57,121.34 "/><path d="M748.78,149.41L748.71,149.53L748.08,149.64L747.83,149.80L747.65,149.82L747.14,149.89L746.60,149.88L746.59,149.88L746.28,149.99L746.00,150.09L745.83,150.24L745.90,150.38L746.09,150.46L746.40,150.59L746.27,150.70L746.05,150.69L745.87,150.69L745.71,150.92L745.35,150.99L745.31,151.19L745.05,151.26L744.85,151.63L744.43,151.91L744.26,152.65L744.21,152.86L744.32,153.11L744.19,153.22L743.47,153.26L743.27,153.33L742.82,153.49L742.38,153.45L742.09,153.65L741.29,153.68L740.20,154.29L739.28,154.38L739.17,154.56L738.80,154.51L738.75,154.49L738.51,154.40L737.68,154.10L736.99,153.79L736.27,153.31L735.75,153.31L734.80,152.95L733.12,153.26L732.80,153.33L732.45,153.53 "/><path d="M715.36,142.69L715.28,142.77L715.03,142.77L713.92,142.39L712.85,142.38L712.50,142.43L712.34,142.57L711.43,142.54L710.97,142.46L710.52,142.22L710.20,142.19L709.97,142.21L709.62,142.43L709.09,142.52L709.06,142.64L709.29,142.78L708.89,143.15L708.46,143.17L708.01,143.09L707.64,142.92L705.80,142.81L705.64,142.84L705.49,143.09L705.45,143.10L705.09,143.19L704.85,143.03L704.41,143.06L704.30,143.17L704.39,143.31L704.16,143.44L703.84,143.42L703.62,143.28L703.18,143.31L702.70,143.78L702.04,143.93L701.46,143.77L700.46,143.78L699.97,143.68L699.62,143.46L699.51,143.43L699.29,143.37L698.06,143.68L697.79,143.90L697.00,143.83L696.29,143.96L695.91,143.90 "/><path d="M614.57,117.03L614.21,117.22L614.15,117.23L613.10,117.46L612.53,117.40L612.14,117.43L611.98,117.65L611.67,117.75L611.28,118.12L609.81,118.17L608.86,118.33L607.84,118.30L607.35,118.18L605.81,118.38L605.29,118.37L604.16,118.72L603.83,118.95L603.40,119.04L604.10,119.41L604.37,119.71L604.31,119.85L604.07,119.87L604.17,120.00L605.17,120.31L605.90,120.91L606.64,121.22L608.06,121.67L609.33,121.75 "/><path d="M660.22,133.55L659.38,133.50L658.96,133.39L658.24,133.45L657.53,133.51L657.35,133.53L656.55,133.50L656.41,133.50L655.69,133.70L655.38,133.58L654.86,133.58L654.68,133.44L653.74,133.44L652.99,133.33 "/><path d="M506.27,96.59L506.47,96.84L506.79,97.02 "/><path d="M694.25,144.21L694.86,144.28L695.14,144.19L695.33,143.98L695.91,143.90 "/><path d="M507.46,97.23L508.06,97.33L508.53,97.49 "/><path d="M617.10,122.68L616.33,122.45L614.80,122.30L614.31,122.51L613.46,122.63L612.78,122.91L612.70,123.26L612.51,123.36 "/><path d="M748.78,149.41L748.53,149.42L747.84,149.24L747.19,149.19L746.67,149.03L746.55,149.00L746.16,149.00L745.73,148.74L745.58,148.55L745.69,148.39L745.55,148.16L745.15,147.92L744.77,147.92L744.69,147.96L743.91,148.38L743.71,148.39L742.39,148.09L742.14,147.94L741.72,147.92L741.60,147.83L741.13,147.86L740.59,147.75L740.03,147.80L739.45,147.66L738.43,147.65L738.01,147.65L738.27,148.01L737.90,148.26L737.45,148.39L737.15,148.78L736.65,148.75L736.25,148.87L735.27,148.79L735.23,149.10L735.11,149.15L734.69,149.09L734.22,149.30L733.67,149.42L733.16,149.50L732.96,149.41L732.79,149.45L732.64,149.61L731.69,149.77L731.75,150.04L731.30,150.02L730.87,150.32L730.85,150.33L730.90,150.55L730.92,150.64L730.71,151.06L730.83,151.21L730.72,151.41L730.22,151.63L730.74,151.88L730.97,152.14L730.78,152.31L730.15,152.31L729.79,152.52L729.71,152.71L729.16,152.91L727.94,152.85L727.79,152.96L727.93,153.08L727.65,153.14L727.06,153.09L726.69,152.91L726.44,152.61 "/><path d="M501.57,95.17L501.85,95.36L501.96,95.39L502.27,95.47L502.79,95.52L503.06,95.62L503.39,95.53L503.80,95.58L504.27,95.91L504.35,96.08L504.87,96.18L504.98,96.30L504.78,96.51L505.54,97.10 "/><path d="M757.84,158.79L758.30,158.92L758.88,159.24L758.89,159.25L759.28,159.22L759.71,159.32L759.76,159.33L760.34,159.29L760.66,159.37L761.18,159.72L761.48,160.17L761.38,160.28L761.31,160.29L761.11,160.34L761.28,160.86L761.52,160.99L761.73,161.00L762.08,161.01L763.52,161.70L763.77,161.92L763.75,162.44L764.02,162.60L763.70,162.66L763.40,163.09 "/><path d="M720.82,151.79L721.97,151.66L722.12,151.35L721.43,150.89L721.03,150.50L721.27,150.33L721.22,150.15L720.98,149.96L718.86,149.80L718.30,149.62L717.79,149.28L717.15,149.15L716.66,148.49L716.29,148.26L715.48,148.06L715.26,147.73L715.27,147.70L715.37,147.58L715.19,147.21L715.37,146.92L715.13,146.49L715.27,146.37L715.21,145.96L715.00,145.77L714.51,145.73L714.18,145.27 "/><path d="M624.54,127.07L624.07,126.88L623.67,126.85L622.95,126.80 "/><path d="M663.93,137.58L663.56,137.24L663.86,137.08L663.76,136.89L664.16,136.74L664.18,136.60L663.01,135.97L662.43,135.26L662.52,135.14L663.01,134.91L663.11,134.86L663.31,134.76L664.64,134.77L666.04,134.50L667.90,134.42L667.99,134.39L668.33,134.29L668.49,134.20L669.00,133.91L668.83,133.70L668.83,133.69L669.48,133.54L669.73,133.40L669.39,133.15 "/><path d="M646.55,129.07L646.08,128.98L645.78,128.81L644.26,128.55L644.11,128.46L643.82,128.47L643.36,128.07L642.38,127.99L641.70,128.23L641.36,128.50L640.84,128.58L640.62,128.74L638.99,128.93L637.26,128.90L636.43,129.04L635.60,129.27L635.15,129.40L634.62,129.43L634.12,129.79L633.63,129.92 "/><path d="M763.40,163.09L763.37,163.05L763.07,162.71L762.85,162.69L761.96,162.60L761.64,162.62L761.51,162.60L761.20,162.53L761.02,162.32L760.55,162.23L760.26,162.24L759.59,162.28L759.01,162.19L758.81,162.26L758.51,162.89L757.14,163.02L757.40,163.23L757.34,163.33L756.12,163.40L754.68,162.91L754.16,162.84L753.77,162.64L753.29,162.41L753.21,162.22L753.48,162.01L753.39,161.77L753.73,161.22L753.59,161.10L752.30,160.59L752.28,160.27L752.08,160.06L751.78,159.93L751.42,159.86L750.42,160.01L749.02,159.92L748.42,159.67L747.71,159.56L747.58,159.68L748.10,159.81L748.21,159.94L747.37,160.09L747.23,160.11L747.09,159.96L746.30,159.87L745.96,159.73L745.62,159.71L745.22,159.50L744.82,159.52L744.56,159.25L743.45,159.23L743.39,159.23L743.16,159.16L742.76,159.04L742.33,158.99 "/><path d="M563.88,110.11L563.47,110.22L563.33,110.26L563.17,110.38L563.29,111.04L562.98,111.37L563.00,111.56L562.69,111.79L562.38,111.83L562.26,111.93L562.41,112.21L562.38,112.92L562.92,113.40L562.92,113.69L562.63,113.80 "/><path d="M555.68,110.08L556.20,110.09L556.59,110.29L556.61,110.54L556.00,110.75L554.65,110.85L553.59,111.13L553.25,111.42L553.07,112.09 "/><path d="M641.90,134.21L641.49,134.01L641.46,133.99L641.20,133.71L640.50,133.26L637.90,133.16L637.11,133.03L636.70,133.21L635.73,132.99 "/><path d="M660.22,133.55L660.40,133.68L660.76,133.71L660.82,134.07L660.63,134.32L660.71,134.52L661.15,134.78L661.13,134.82L661.06,134.93L661.06,134.93L660.33,135.17L659.93,135.46L658.60,135.74L658.79,135.94L658.69,136.44L658.43,136.59L658.61,137.26L658.80,137.46L658.69,137.76L658.86,138.01L658.77,138.13L659.12,138.36L659.09,138.40L658.63,138.96 "/><path d="M498.22,98.24L498.52,98.46L498.47,98.81L498.78,99.07L500.01,99.27L500.56,99.23 "/><path d="M561.94,114.29L561.64,114.31L561.49,114.68 "/><path d="M576.20,118.58L576.72,118.41L577.31,117.72L577.46,117.73L577.81,117.77L579.24,117.63L579.37,117.90L579.90,117.90L580.95,118.37L581.15,118.60L580.92,119.06L581.01,119.21 "/><path d="M694.25,144.21L693.64,144.15L693.30,144.28L691.36,144.21L691.06,144.09L690.49,144.25L689.82,144.28L689.47,144.30L689.19,144.37L689.16,144.66L688.91,144.81L688.48,144.91L687.92,144.82L687.65,144.87L687.45,145.26L687.19,145.44L686.40,145.49L686.09,145.58L685.07,145.54L684.78,145.44L684.20,145.41L683.98,145.49L684.08,145.59L684.19,145.71L684.09,145.81L682.90,145.81L682.78,145.81L682.35,146.09 "/><path d="M601.75,122.65L602.32,122.75L603.22,123.09L603.86,123.68L603.80,123.93L604.21,124.39L604.97,125.03L606.16,125.55L606.57,125.53L607.00,125.74L607.57,125.75L607.98,125.92L608.08,126.01L607.18,126.59L606.75,126.66 "/><path d="M774.68,171.06L774.54,171.00L773.91,170.77L773.88,170.78L773.72,170.86L773.55,170.83L773.45,170.63L772.51,170.44L772.41,170.39L771.83,170.11L771.40,170.09L771.05,169.88L770.48,169.53L770.88,169.29L770.97,168.90L771.33,168.60L771.21,168.07L770.99,167.92L770.42,167.52L770.19,167.25L770.25,167.07L769.96,166.93L769.01,166.69L768.76,166.51L768.76,166.43L768.77,166.40L767.92,166.24L767.33,166.24L766.48,165.76L765.79,165.79L765.25,165.56L764.85,165.61L764.51,165.53L763.93,165.21L764.00,165.10L763.38,164.76L763.80,164.67L763.49,164.32L763.63,163.85L763.12,163.60L763.40,163.09 "/><path d="M607.01,127.05L607.91,127.08L608.72,126.86L609.07,126.63L608.99,125.94L609.76,125.84L610.67,125.96L611.70,125.85L611.84,125.66L612.28,125.64L612.80,125.73L615.02,125.90L615.50,126.14L615.99,126.17L616.43,126.35L617.23,126.53L617.37,126.57L618.17,126.63L618.41,126.45 "/><path d="M649.69,133.85L649.44,134.07L649.57,134.31L649.45,134.49L648.70,134.77L648.41,135.06L648.08,135.14L647.91,135.43L647.20,135.67L647.17,135.69L647.06,135.78L647.15,135.97L646.73,136.06L647.30,136.27L647.54,136.45L647.48,136.59L647.65,136.82L647.54,136.97L647.87,137.25L647.89,137.45L648.13,137.66L648.80,137.69L648.94,138.14 "/><path d="M595.08,125.01L595.25,124.89L595.20,124.78L594.74,124.50L594.63,124.12L595.21,123.29L595.11,122.91L594.59,122.66L594.71,122.52L594.65,122.28L594.28,121.86L593.74,121.50L593.35,121.47L592.39,120.98L591.48,120.89L591.21,120.91L591.12,120.92L590.28,120.79L589.98,120.81L589.78,120.71L589.61,120.63L589.24,120.57L589.23,120.47L589.22,120.37L589.00,120.26L588.78,120.26 "/><path d="M714.18,145.27L713.60,145.49L713.30,145.72L712.60,145.61L711.36,145.78L709.77,146.42L709.41,146.38L708.63,146.54L708.25,146.92L708.46,147.23L708.32,147.41L707.84,147.60L707.79,147.92L708.02,148.17L707.97,148.41L707.96,148.45L707.87,148.49L707.65,148.58L707.48,148.85L707.64,148.91L708.20,149.12L707.89,149.63L708.04,149.86L707.83,150.17L708.06,150.43L707.56,150.83L706.88,150.92L706.80,151.14L706.28,151.27L705.97,151.80L706.14,152.09L705.48,152.44L705.88,152.97L705.96,153.43L706.32,153.61L706.17,153.99 "/><path d="M734.83,160.88L735.27,161.31L735.22,161.47L735.47,161.68L736.10,161.82L736.42,162.01L736.54,162.05L737.33,162.33L738.27,162.36L739.34,162.63L739.61,162.65L740.25,162.70L740.62,162.40L741.07,162.33L741.22,162.17L741.83,162.16L742.23,162.15L742.22,161.89L742.50,161.69L742.06,161.35L742.08,161.10L741.51,160.88L741.27,160.73L741.03,160.57L741.05,160.30L741.36,160.23L741.21,159.90L741.37,159.70L741.55,159.61L741.63,159.41L742.00,159.19L742.33,158.99 "/><path d="M663.65,142.98L665.21,143.16L665.67,143.08L666.03,142.91L666.59,143.02L666.96,143.24L667.46,143.24L668.50,142.89L669.58,142.73L669.98,142.77L670.36,142.95L671.00,142.95L671.55,142.81L672.21,143.00L673.34,143.01L673.81,142.90L674.05,142.74L675.09,142.57L675.47,142.51L675.66,142.42L676.51,142.44L677.21,142.58L678.18,142.35L678.53,142.09L679.07,142.12L679.64,141.96L680.42,142.04L681.05,142.00L681.24,141.88L682.66,141.82L682.89,141.65L682.97,141.58L683.61,141.61L683.78,141.82L684.23,141.86L684.96,141.83L685.52,141.97L685.65,141.96L685.82,141.94L686.20,141.89L686.35,141.94L687.21,142.18L687.75,142.17L687.93,142.20L688.31,142.28L689.41,142.23L690.34,142.39L690.91,142.58L691.21,142.56L691.77,142.75L692.05,142.72L692.35,142.94L692.75,142.83L693.05,142.87L693.22,142.78L694.06,143.03L694.40,143.24L695.20,143.24L695.54,143.32L695.96,143.70L695.91,143.90 "/><path d="M634.16,133.00L633.97,133.05L633.20,133.01L632.95,132.87L632.69,132.91L631.88,132.79L631.46,132.86L630.92,132.73L630.66,132.77L630.63,132.79L630.43,132.96L630.35,132.96L629.89,132.95L628.47,132.72L627.05,132.30L624.92,132.18L624.61,132.07L623.92,132.06L623.42,132.06L623.28,132.03L622.86,131.95L622.59,132.08L622.53,132.11L622.37,132.19L622.12,132.18L621.33,132.17 "/><path d="M707.36,154.59L707.14,154.23L707.41,153.78L708.12,153.65L708.73,153.86L708.82,154.10L709.08,154.24L709.55,154.24L709.78,154.39L711.17,154.63L711.62,154.68L711.81,154.62L713.38,155.00L713.63,155.16L713.75,155.16L714.23,155.17L714.40,155.35L714.30,155.44L714.02,155.67L714.62,155.96L714.68,156.29L714.91,156.40L715.23,156.33L715.54,156.26L715.67,156.00L716.75,156.18L716.79,156.18L717.73,156.12L717.85,156.11L718.26,155.95L719.06,156.06L719.66,155.98L719.91,156.07L719.76,156.30L719.95,156.45L720.99,156.26L721.75,156.46L722.38,156.52L722.56,156.49L723.09,155.99L723.56,155.93L723.96,156.07L723.98,156.30L724.72,156.66L724.85,156.68L726.07,156.86L726.46,156.77L726.60,156.80L727.06,156.87L727.48,156.81L727.74,156.64L727.68,156.37L728.13,156.25L729.00,156.78L730.11,157.15L731.02,157.59L731.31,157.91L731.51,157.93L731.74,157.95L732.81,158.30L733.24,158.36L733.91,158.13L734.89,158.15L735.01,158.02L735.13,157.88L735.63,157.76L735.80,157.60L734.93,157.31L735.08,157.11L735.60,157.18L735.89,157.07L736.72,157.28L736.93,157.23L736.90,156.96L737.29,156.93L737.73,157.31L738.17,157.46L738.61,157.52L739.02,157.78L739.08,158.20L739.30,158.27L739.75,158.23L740.12,158.30L740.81,158.71L742.03,158.86L742.33,158.99 "/><path d="M621.33,132.17L620.81,132.06L619.86,131.88L619.52,131.92L619.29,131.73L618.57,131.57 "/><path d="M749.85,166.41L749.94,166.15L749.97,166.04L749.98,166.01L749.87,165.82L750.17,165.73L752.84,165.75L754.70,165.77L754.76,165.77L755.42,165.73L755.61,165.71L755.81,165.80L756.07,165.90L757.72,166.59L757.69,166.63L757.59,166.77L758.54,167.15L759.10,167.68 "/><path d="M682.35,146.09L681.91,146.26L681.83,146.34L681.77,146.41L681.69,146.50L681.47,146.52L681.34,146.44L681.27,146.39L681.11,146.29L680.82,146.29L680.62,146.49L680.46,146.65L680.14,146.74L680.14,146.75L680.08,146.95L678.13,147.13L677.97,147.09L677.52,146.98L676.68,146.97L675.52,146.94 "/><path d="M608.32,128.58L606.27,128.21L605.08,128.55L604.56,128.63 "/><path d="M621.33,132.17L621.05,132.39L620.56,132.54L620.07,132.60L619.68,132.65L619.18,132.58 "/><path d="M675.52,146.94L675.08,146.94L674.88,147.07L674.87,147.07 "/><path d="M706.17,153.99L705.61,154.71L706.10,155.18L705.73,155.46 "/><path d="M706.17,153.99L705.49,154.00L705.27,153.87L704.49,153.90L703.10,153.63L700.96,153.45L700.35,153.24L700.11,153.04L698.74,152.84L698.41,152.65L698.36,152.47L698.04,152.46L697.76,152.24L696.70,152.43L696.47,152.62L695.93,152.66L695.56,152.94L695.05,152.96L694.36,153.00L693.94,152.88L692.79,152.77L691.70,152.26L691.09,152.17L690.99,152.21 "/><path d="M694.25,144.21L694.46,144.64L694.47,144.66L694.31,144.86L694.50,145.04L695.35,145.32L695.39,145.54L695.66,145.72L695.77,145.95L695.79,145.97L695.43,146.65L695.65,147.00L694.84,147.18L694.73,147.42L694.33,147.49L694.19,147.61L694.29,147.83L694.06,148.01L694.04,148.30L693.80,148.59L693.42,148.73L693.45,148.96L693.06,149.28L692.98,149.35L693.16,149.87L693.04,150.05L692.50,150.19L691.72,151.10L690.33,152.12 "/><path d="M567.07,120.52L568.08,120.77 "/><path d="M690.28,152.17L689.81,152.20 "/><path d="M564.74,119.80L564.91,119.85L564.99,120.01L565.43,120.09L565.60,120.35L566.28,120.43 "/><path d="M653.61,143.03L653.96,142.87L655.21,142.82L657.41,142.05L658.61,141.81L660.31,141.27L660.25,141.07L660.76,140.46L661.14,140.27L663.24,140.11L664.51,140.01L665.88,140.07L666.99,139.95L667.21,139.81L667.83,139.66L669.59,139.94L670.09,139.91L670.85,139.65L671.04,139.27L672.12,139.14L672.55,138.98L672.93,138.67L673.41,138.52L673.82,138.58L673.98,138.53L674.03,138.52L674.08,138.34L674.52,138.41L674.87,138.59L676.90,138.73L676.97,138.46L677.51,138.45L678.08,138.52L679.02,138.46L679.09,138.44L679.27,138.38L679.33,138.11L679.35,138.04L679.63,137.97L679.78,137.70L679.80,137.70L680.41,137.63L680.87,137.58L681.13,137.43L679.55,136.98L679.55,136.98L679.55,136.97L679.54,136.97L679.93,136.64L680.50,136.61L680.62,136.61L680.96,136.49L681.13,136.31L682.04,136.43L683.62,136.25L683.84,136.11L683.70,135.91L684.04,135.74L684.49,135.73L684.71,135.82L685.04,135.79L685.45,135.54L686.03,135.48L686.56,135.56L687.01,135.50L686.92,135.22L687.44,135.25L687.93,135.49L688.15,135.50L688.35,135.20L688.20,135.04L688.37,134.95L689.11,134.98L689.41,134.91L690.18,135.14L691.31,135.26L691.91,135.56L692.16,135.58L692.40,135.69L693.39,135.60L694.36,135.92L694.72,135.88L694.97,135.71L695.47,135.74L696.28,135.59L695.90,135.41L695.97,135.25L695.85,135.08L696.02,134.99L696.29,135.02L696.57,135.20L697.24,135.17L697.23,134.91L697.57,134.93L697.63,134.76L697.90,134.74L698.21,134.73L698.43,134.87L698.72,134.92L699.29,134.87L699.23,134.64L699.31,134.62L699.60,134.52L700.04,134.52L700.91,134.70L701.37,134.40L702.36,134.28L702.57,134.19L702.95,134.28L704.32,134.18 "/><path d="M609.72,131.42L609.25,131.42L608.53,131.25L607.01,130.38L606.66,130.35L606.29,130.16L605.91,130.12L605.62,130.19L605.23,130.68 "/><path d="M762.49,172.25L762.59,172.21L763.24,172.25L763.89,172.50L764.26,172.51L764.57,172.38L765.04,172.41L765.48,172.60L766.21,172.68L767.06,172.76L768.30,172.64L768.78,172.82L768.89,172.83L770.42,173.02L770.84,173.07L771.75,172.87L772.04,172.93L772.53,173.02L773.07,172.72L773.41,172.74L773.57,172.75L773.58,172.75L773.74,172.83 "/><path d="M762.49,172.25L761.97,171.93L761.64,171.86L761.84,171.70L761.91,171.65L761.41,171.33L761.47,171.10L761.82,170.92L761.75,170.66L761.71,170.47L761.32,170.22L761.03,170.12L760.40,169.91L760.03,169.50L758.78,168.81L758.65,168.60L759.12,168.44L759.17,168.23L759.38,168.15 "/><path d="M673.24,147.52L672.88,147.49L672.80,147.43L672.57,147.29L672.09,147.45L671.78,147.39L671.49,147.46L670.98,147.41L670.79,147.55L670.60,147.69L669.79,147.75L669.56,147.60L669.41,147.50L669.03,147.57L668.81,147.60L668.53,147.54L668.19,147.46 "/><path d="M682.35,146.09L682.36,146.10L682.59,146.37L682.73,146.52L683.53,146.75L683.79,147.02L683.74,147.28L684.00,147.67L683.93,147.93L683.63,148.10L683.97,148.39L683.33,149.12L682.51,149.37L682.41,149.57L682.03,149.70L681.95,149.96L681.47,150.41L680.93,150.52L680.41,150.77L680.46,150.92L680.29,150.95L680.23,150.97 "/><path d="M643.07,139.98L640.66,139.67L640.17,139.49L639.79,139.45L639.14,139.48L638.83,139.61L638.40,139.50L637.63,139.57L635.28,139.37L634.46,139.02L634.28,138.75L634.25,138.10L634.56,137.67L634.37,137.22L634.26,136.96L634.74,136.47L634.75,136.30L634.95,136.21L634.74,136.08L635.13,135.94L635.18,135.95L635.41,136.01 "/><path d="M689.12,152.22L688.52,152.24L688.13,152.17L687.79,152.27L687.86,152.50L687.51,152.80L687.00,153.05 "/><path d="M727.40,159.35L727.55,159.47L727.55,159.49L727.53,159.69L727.53,159.74L727.69,159.82L728.58,160.26L728.68,160.74L729.97,161.19L730.54,161.29L730.85,161.57L731.64,161.93L732.04,162.26L733.49,162.99L733.91,163.59L733.86,163.80L733.33,163.86L733.38,163.99L733.86,164.27L733.95,164.43L734.26,164.94L734.40,165.01L734.65,165.12L734.27,165.29L734.20,165.31L734.28,165.44L735.11,165.95L735.76,166.19L736.53,166.45 "/><path d="M732.53,165.51L732.91,165.62L734.31,165.70L734.88,165.96L735.76,166.30L735.90,166.38L736.53,166.45 "/><path d="M648.87,138.90L648.40,139.30L648.60,139.92L648.31,140.19L648.38,140.31L648.98,140.56L649.08,140.74L648.71,141.04L649.04,141.32L648.78,141.59L649.04,141.70L649.19,141.95L648.92,142.25L649.17,142.57L649.00,142.75L649.30,142.95L648.90,143.45 "/><path d="M627.06,137.55L626.17,137.39L625.34,137.25L624.10,137.03L623.84,136.88L624.27,136.73L623.77,136.50L623.81,136.30 "/><path d="M608.90,133.28L608.36,133.13L607.68,133.16L606.73,132.47L605.98,132.03L605.76,132.00 "/><path d="M610.78,133.66L611.06,133.94L612.14,134.31L613.74,134.61L613.88,134.55 "/><path d="M653.53,144.00L653.41,144.16L653.48,144.32L652.86,144.75L653.08,144.99L653.61,145.17L655.39,145.52L656.90,145.93L658.08,146.12L660.41,146.20L660.69,146.26L660.84,146.57L660.75,146.70L660.57,146.96L660.63,147.07 "/><path d="M717.92,162.13L718.08,161.96L718.22,161.82L717.89,161.48L717.86,161.18L718.02,160.91L717.40,160.64L717.55,160.32L717.19,160.16L716.38,160.02L715.98,159.81L715.51,159.41L715.20,159.29L714.72,159.28L714.46,159.27L714.13,159.16L713.46,159.24L713.14,158.89L712.79,158.72L712.65,158.40L712.39,158.22L712.07,158.20L711.78,158.33L711.22,158.34L711.02,158.21L710.87,158.11L710.41,158.10L710.12,157.93L709.43,157.95L709.14,157.76L709.10,157.37L708.90,157.26L708.21,157.22L707.50,156.90L706.52,156.84L706.35,156.58L705.89,156.37L705.18,156.33L704.56,156.50L703.90,156.54L703.55,156.81L703.07,156.87L700.92,156.63L700.49,156.71L700.11,156.78L699.73,156.96L699.16,156.97L699.00,157.09L698.00,156.98 "/><path d="M668.19,147.46L666.75,147.39L666.52,147.37L666.38,147.40L666.36,147.40L666.19,147.43L666.06,147.45L666.02,147.58L665.74,147.58L665.49,147.49L665.17,147.59L664.83,147.39L664.25,147.29L663.99,147.16L663.85,147.09L662.54,147.06L662.50,147.10L662.29,147.30L661.81,147.33L661.47,147.27L661.38,147.25L661.11,147.30L660.79,147.09L660.63,147.07 "/><path d="M762.49,172.25L762.17,172.50L761.55,172.64L761.01,172.56L760.39,172.35L760.21,172.33L759.08,172.23L758.50,172.26L758.30,172.11L758.27,171.79L758.02,171.79L757.49,171.98L756.31,171.85L755.33,171.99L754.67,171.82L754.33,171.81L753.62,171.81L753.04,171.74L752.66,171.70L751.54,171.36L751.25,171.23L750.45,170.86L748.42,170.81 "/><path d="M736.53,166.45L737.37,166.82L737.75,166.84L738.12,166.66L738.35,166.12L739.09,166.13L739.34,166.44L740.21,166.78L740.33,166.93L740.19,167.31L741.06,168.34L741.42,168.59L741.96,168.67L742.26,168.83L742.43,169.05L742.76,169.19L742.99,169.20L743.26,169.09L743.73,169.12L744.12,169.46L744.22,169.54L744.52,169.64L745.75,169.70L746.17,169.79L747.77,170.69L748.06,170.74L748.42,170.81 "/><path d="M679.16,151.65L679.19,151.81L678.96,151.95L679.01,152.26L678.82,152.46 "/><path d="M718.70,163.18L719.55,163.07L720.22,162.88L721.60,163.05L723.42,163.00L724.16,163.24L724.34,163.56L723.98,163.75L724.41,163.98L725.13,164.05L725.40,163.93L725.82,163.98L726.03,163.82L726.46,163.87L727.04,164.06L728.79,164.16L729.12,164.03L729.31,164.06L729.54,164.10L729.66,164.48L730.48,164.78L731.55,165.01L732.07,164.96L732.37,165.00L732.53,165.51 "/><path d="M718.70,163.18L718.24,162.92L718.12,162.74L718.40,162.37L718.24,162.20L717.92,162.13 "/><path d="M660.63,147.07L659.41,147.21L658.53,147.16L658.08,147.32 "/><path d="M583.29,127.66L584.27,127.71L584.57,127.85L585.56,127.99L585.69,128.11L585.62,128.59L585.36,128.73 "/><path d="M707.36,160.65L708.48,160.52L708.82,160.55L709.14,160.66L709.67,161.12L710.31,161.21L710.50,161.16L712.13,161.20L712.76,161.37L713.13,161.39L713.32,161.30L714.85,161.36L715.62,161.59L716.50,162.10L716.89,162.15L717.26,162.02L717.92,162.13 "/><path d="M625.23,138.06L624.25,138.21L624.09,138.27L623.91,138.34L623.27,138.39L623.23,138.40L622.57,138.59 "/><path d="M577.92,127.15L578.03,127.23L578.47,127.19L578.96,127.44L579.96,127.69L580.97,127.68L581.52,127.53L581.93,127.52 "/><path d="M748.42,170.81L748.00,171.10L747.39,171.31L746.26,171.43L746.05,171.55L745.44,171.55L744.83,171.45L744.69,171.42L744.46,171.46L743.91,171.29 "/><path d="M592.14,130.34L591.92,130.56L591.64,130.58L591.43,130.76L589.28,130.81 "/><path d="M647.83,146.06L649.25,146.21L649.58,146.41L650.41,146.39L651.07,146.49L651.09,146.50L651.82,146.90L651.88,147.14L653.18,147.17L653.41,147.34L653.91,147.35L654.30,147.55L655.47,147.64L655.74,147.74L656.60,147.67L656.70,147.47L656.89,147.42L658.08,147.32 "/><path d="M635.60,142.55L634.47,142.58L633.58,142.52 "/><path d="M646.20,145.77L645.72,145.75L645.31,145.59L645.33,145.22L644.90,144.94L644.89,144.93L644.88,144.93L644.07,144.85L643.78,144.66L643.35,144.53L643.23,144.27L642.71,144.29L641.31,143.95L640.58,143.38L639.88,143.35L639.14,143.01L638.43,142.92L638.20,142.78L637.88,142.71L636.52,142.58 "/><path d="M707.36,160.65L705.36,160.82L704.37,160.78L704.11,160.83L703.78,161.06L703.45,161.11L702.09,161.04L701.66,160.94L701.43,160.79L701.15,160.46L700.89,160.16L700.53,160.10L700.05,159.68L699.19,159.30L698.28,159.29 "/><path d="M743.91,171.29L743.62,171.15L743.15,171.14L742.07,170.76L741.84,170.61L741.37,170.64L741.24,170.50L740.25,170.43L739.93,170.53L739.67,170.46L739.70,170.36L739.27,170.15L739.11,169.95L738.50,170.04L737.93,169.84L735.44,169.51L734.73,169.49L733.26,168.95L732.69,169.00L732.50,168.94L732.14,168.84L730.13,168.47L729.41,168.46L728.91,168.37L728.35,168.40L727.74,168.65 "/><path d="M697.66,160.97L697.68,160.70L698.02,160.45L697.96,159.89L698.50,159.66L698.28,159.29 "/><path d="M716.29,166.39L717.08,166.01L717.64,165.91L719.31,166.07L719.72,166.14L720.07,166.28L720.56,166.23L721.97,165.68L722.59,165.83L723.60,165.60L725.01,165.61L725.66,165.48L726.29,165.52L726.77,165.76L727.78,165.85L728.22,165.88L728.44,165.82L728.56,165.48L728.85,165.30L729.25,165.22L731.23,165.47L731.87,165.37L732.53,165.51 "/><path d="M760.90,178.70L760.63,178.55L760.61,178.54L760.52,178.49L760.49,178.33L760.47,178.25L760.09,177.94L759.63,177.58L759.32,177.37L758.77,177.00L758.65,176.96L758.02,176.75L757.74,176.88L757.19,176.89L756.97,176.90L756.62,176.53L755.78,176.09L755.49,176.20L754.91,176.07L754.40,175.82L754.14,175.80L752.72,175.70L752.15,175.49L751.74,175.43L751.18,175.47L750.84,175.35L749.60,174.94L747.96,175.08L746.91,174.87 "/><path d="M668.19,147.46L668.21,147.52L668.35,148.09L668.55,148.23L668.77,148.27L668.69,148.43L668.43,148.55L667.64,148.89L665.37,149.42L664.51,149.77L664.50,149.99L662.87,150.20L662.55,150.33L662.40,150.61L662.87,151.00L662.72,151.18L662.93,151.38L662.85,151.50L662.74,151.67L662.57,151.69L662.75,151.88L662.48,151.91L662.22,152.18L661.79,152.27 "/><path d="M707.36,160.65L707.30,160.87L707.46,161.03L707.14,161.26L707.13,161.39L707.40,161.65L707.07,161.83L707.10,162.35L707.34,162.88L707.74,163.21L707.66,163.54L705.59,164.05 "/><path d="M594.26,134.36L593.75,134.40L593.40,134.22L592.59,134.27L591.53,134.13L590.07,133.80L589.54,133.84L588.97,133.57L588.26,133.55L587.39,133.36L585.49,133.16 "/><path d="M609.78,139.28L610.05,139.54L610.53,139.74L610.78,139.84L610.78,139.95 "/><path d="M718.70,163.18L717.31,163.18L716.69,163.34L716.35,163.81L715.35,164.33L712.91,164.65L711.73,164.72L711.26,165.03L710.58,165.26L710.61,165.44L710.44,165.54L709.68,165.57L709.64,165.80L709.17,165.89 "/><path d="M698.30,163.05L697.91,162.57L697.54,162.38L697.50,162.01L697.87,161.91L697.90,161.60L698.37,161.48L697.72,161.02L697.66,160.97 "/><path d="M675.52,146.94L675.53,147.01L675.55,147.44L675.87,147.72L675.88,147.81L675.92,148.08L675.82,148.19L675.41,148.26L675.46,148.51L674.73,148.71L674.02,149.05L673.62,149.59L673.55,150.21L673.28,150.40L673.26,150.62L672.93,151.04L672.62,151.16L671.93,151.88L671.49,151.95L671.27,152.16L671.00,152.25L671.26,153.16L671.76,153.58L671.86,153.98L672.07,154.16L674.18,154.81L675.42,155.34L675.76,155.76L675.67,155.88L675.43,155.90L674.49,155.64L673.05,155.54L672.71,155.59L671.89,155.70L671.56,155.88L671.11,155.87L669.67,155.26L669.05,155.21L668.04,154.61L667.27,154.72L667.06,154.89 "/><path d="M660.41,152.91L660.27,153.35 "/><path d="M743.91,171.29L743.60,171.33L743.42,171.49L743.26,171.63L743.00,172.08L743.14,172.30L742.80,172.47L742.92,172.62L742.33,172.70L741.90,172.92L741.38,172.89L741.35,173.43L741.01,173.43L740.77,173.32L740.51,173.21L740.10,173.14L739.96,173.30L740.05,173.49L739.86,173.57L739.55,173.57L739.65,174.01L739.40,174.04L738.78,173.92L738.49,173.96L738.02,173.77L737.28,173.66L736.70,173.69L735.79,173.73L735.41,173.53L735.34,173.30L734.42,172.94L732.58,172.88L732.15,172.80L731.94,172.63L732.12,172.01 "/><path d="M698.28,159.29L697.75,159.36L697.57,159.45L697.15,159.46L696.20,159.27L695.05,159.34L694.82,159.44L693.74,159.37L692.68,159.18L692.40,159.00L691.46,158.71L690.80,158.61L690.27,158.43L689.06,158.23L688.37,158.20L687.70,157.95L686.41,157.86L685.90,157.88L684.39,157.93L683.85,158.18L683.63,158.18L681.59,157.33L680.35,157.04L679.65,157.01L679.13,156.91L678.79,156.67L677.47,156.52L676.41,156.17L676.21,156.26L675.85,156.86L675.37,157.14L674.64,157.59 "/><path d="M660.27,153.35L659.98,153.40L659.85,153.59L659.53,153.61 "/><path d="M594.85,136.22L595.20,136.78L595.11,136.89 "/><path d="M594.27,136.18L594.17,136.33L595.11,136.89 "/><path d="M606.77,138.36L606.15,138.39L605.90,138.31L605.25,138.26L605.08,138.32L604.29,138.21L601.62,138.05L600.02,137.42L599.66,137.19L598.69,136.93L596.68,136.81L595.36,136.98L595.11,136.89 "/><path d="M660.27,153.35L660.40,154.19L660.65,154.40L661.12,154.61L661.27,154.81L661.86,154.99 "/><path d="M631.60,146.90L630.67,146.86 "/><path d="M609.04,141.39L609.10,141.20L609.17,140.98 "/><path d="M720.88,170.85L720.59,170.87L720.11,170.71L719.53,170.64 "/><path d="M575.34,132.82L575.16,132.63L575.60,132.44L575.75,132.13L575.58,131.59L575.04,131.49L574.94,131.38L575.32,131.33L575.49,131.19L575.14,131.04L575.14,130.96 "/><path d="M582.80,134.72L582.09,134.62L579.83,134.00L579.69,133.91 "/><path d="M658.64,153.71L658.46,153.78L657.61,153.76L656.49,153.94L656.36,154.04 "/><path d="M698.96,163.59L699.15,163.91L699.19,164.51L699.62,164.71L699.67,164.93L699.35,165.22L698.75,165.39L697.99,165.30 "/><path d="M720.88,170.85L720.38,170.59L720.11,170.20L719.26,169.50L719.36,169.35L719.05,169.01L718.75,168.88L718.46,168.57L718.16,168.50L717.75,168.55L717.00,168.30L716.50,168.09L715.98,167.72L715.87,167.54L716.40,167.30L716.46,167.16L716.09,167.08L715.34,167.01L715.02,167.08L714.70,167.31L713.85,167.37L713.35,167.25L713.25,167.23L712.55,167.47L711.72,167.34L711.26,167.45L710.82,168.16L710.32,168.41L710.43,168.72 "/><path d="M609.17,140.98L608.75,140.99L608.50,141.00L608.23,141.01L606.25,141.28L605.19,141.31 "/><path d="M597.06,139.10L596.95,138.87L597.17,138.51L601.13,138.95L601.57,139.21L602.22,139.43L602.55,139.86L603.32,140.27L603.93,140.36L604.96,141.24L604.99,141.26L605.19,141.31 "/><path d="M687.73,162.90L688.10,162.98L688.63,163.29L689.27,163.51L691.25,163.42L692.50,162.97L693.21,162.88L693.31,162.61L694.43,162.49L695.24,162.21L695.49,161.91L696.00,161.59L697.66,160.97 "/><path d="M632.65,140.43L632.74,140.65L632.22,141.00L631.34,141.04L630.83,141.26L631.00,141.70L630.93,141.86L631.27,142.09L630.94,142.13L630.56,141.98L628.72,142.09L627.85,141.89L626.54,141.46L625.44,141.52L625.17,141.68L623.95,141.70L623.75,141.75L623.32,141.86L622.90,141.82L622.53,141.95L621.98,141.88L621.72,141.94L621.21,141.89L620.75,142.30L620.16,142.38L619.80,142.92L619.98,143.11L619.73,143.25L618.90,143.52L618.49,143.76L617.47,143.97L616.27,144.00L615.69,144.02L615.67,144.10L615.63,144.22L615.80,144.31 "/><path d="M639.39,150.49L639.82,150.34L640.07,150.00L640.85,149.65L640.97,149.44L641.38,149.28L641.82,148.65L642.26,148.48L642.34,148.34L642.11,148.14L642.27,148.04L642.92,147.97L643.55,147.72L643.71,147.44L644.03,147.40L644.31,147.20L645.00,147.10L645.21,146.94L644.59,146.85L644.02,146.95L643.46,146.92L643.24,146.80L642.95,146.64L642.37,146.55 "/><path d="M609.04,141.39L609.47,141.77L609.81,141.83L609.91,141.99L609.97,142.09L609.90,142.41L610.12,142.62L610.97,142.69L611.40,142.81L611.72,142.90L611.91,143.02L612.58,143.02L613.19,143.14L613.54,143.32L613.79,143.45L614.26,143.98L614.97,144.12L615.35,144.34L615.80,144.31 "/><path d="M622.94,146.37L623.15,146.37L624.46,146.39 "/><path d="M615.80,144.31L616.10,144.45L616.59,144.53L617.22,144.74L617.72,144.83L618.22,144.78L618.66,144.93L619.25,144.99L620.54,145.47L620.74,145.61L621.67,145.78L622.02,146.10L622.63,146.34L622.94,146.37 "/><path d="M717.64,170.44L717.36,170.32L716.91,170.32L715.93,169.59L715.58,169.49L715.03,169.75L714.98,170.04L714.35,170.09L714.04,169.99L713.49,170.02L713.30,169.83L712.66,169.69L711.18,169.63L710.80,169.84L710.50,169.79L709.92,169.48L709.46,169.45 "/><path d="M570.78,133.23L570.89,133.32L570.95,133.36L571.43,133.28L571.77,133.33L572.12,133.23L572.91,133.28L573.30,133.52L573.48,133.63 "/><path d="M576.94,134.79L577.70,135.11 "/><path d="M583.26,136.61L583.68,136.48L584.29,136.29L584.65,135.47L585.87,135.23L586.26,135.02L586.54,134.69L587.58,134.71 "/><path d="M646.26,153.75L646.10,153.05L646.10,153.04L646.20,152.87L646.36,152.78L647.66,152.08L647.83,151.99L648.04,151.95L648.35,151.89L648.94,151.60L649.36,151.10L649.38,151.07L649.77,150.61L650.33,150.35L651.31,150.20L651.38,150.19L651.57,150.02L651.99,149.90L653.32,149.80L653.62,149.70L653.99,149.57L655.07,149.34L655.21,149.14L655.55,149.02L655.42,148.87L655.83,148.70L656.44,148.68L657.08,148.33L657.54,148.09L658.06,147.68L658.08,147.32 "/><path d="M595.11,136.89L594.98,137.11L594.46,137.18L593.69,137.17L593.26,137.25L590.88,137.12L590.08,137.32L589.29,137.33L588.62,137.46L588.48,137.65L587.83,137.74L587.63,138.19L587.54,138.37L587.51,138.45L587.86,138.46L588.11,138.58 "/><path d="M622.94,146.37L622.92,146.65L622.66,146.85L621.56,147.01L621.42,147.21L621.21,147.28 "/><path d="M741.91,175.22L742.49,175.28L743.77,175.22L744.97,175.47L745.71,175.87L745.84,176.20L746.20,176.49L746.32,176.90L747.12,177.24L747.44,177.38L748.12,177.94L749.07,178.39L750.08,178.61L750.33,178.98L750.36,179.02L750.40,179.08L750.21,179.24L749.87,179.30L749.83,179.45L749.82,179.49L749.44,179.61L748.81,179.63L748.22,179.46L748.19,179.45L747.77,179.54L747.76,179.55L747.45,179.78L747.17,179.75L747.29,180.29L747.87,180.40L748.05,180.58L747.88,180.77L748.25,180.92L749.01,181.22L749.55,181.17L750.23,181.32L750.38,181.60L750.69,181.82L751.16,181.82L751.79,182.26L751.67,182.37L752.23,182.59L752.43,182.91L752.61,183.19 "/><path d="M605.19,141.31L604.89,141.44L602.69,141.89L601.72,142.20L600.38,142.31L600.20,142.32L599.98,142.31L599.47,142.29L598.60,142.09 "/><path d="M626.76,149.51L627.51,148.88L627.50,148.60L628.13,148.47L628.20,148.34L628.59,148.17L629.65,147.94L629.88,147.74L630.27,147.69L630.84,147.42L630.92,147.11L630.69,147.09L630.35,146.91 "/><path d="M609.04,141.39L608.47,141.13L608.37,141.12L608.07,141.10L607.25,141.44L605.95,141.53L605.56,141.47L605.41,141.58L604.48,141.77L604.11,141.75L603.18,142.04L602.99,142.27L602.44,142.14L602.22,142.37L601.54,142.39L601.34,142.50L601.53,142.74L601.49,142.90L601.27,143.06L600.85,143.07L600.41,143.07L600.22,143.07L600.12,143.07L599.77,143.00 "/><path d="M638.89,150.81L638.91,151.08L638.35,151.25L638.00,151.21L637.77,151.36L636.83,151.37L634.97,151.73L634.60,152.35L634.40,152.38 "/><path d="M713.88,173.72L713.82,173.44L714.14,173.40L713.91,173.21L712.79,173.15L711.37,173.33L710.94,173.31L710.66,173.53L709.67,173.58 "/><path d="M701.47,164.76L701.23,165.30L701.53,165.72L701.58,166.10L701.96,166.26L702.82,166.27L703.20,166.38L704.52,167.11L705.23,167.26L705.47,167.61L705.35,168.18L705.06,168.59L705.02,169.16L705.30,169.54L705.70,169.78L706.00,169.76L706.17,169.87L706.33,169.98L706.26,170.12L706.80,170.37L706.87,170.62L707.56,170.96L707.94,171.15L708.90,171.90L709.18,171.95L709.53,172.45L709.70,172.53L709.52,172.67L709.97,173.06L709.57,173.41L709.67,173.58 "/><path d="M625.49,149.85L625.18,150.21L625.33,150.55L625.16,150.83L624.86,150.91L624.93,151.19L624.64,151.37 "/><path d="M632.04,151.10L631.24,151.60L629.47,151.52L627.79,151.69L625.19,151.56L624.64,151.37 "/><path d="M731.67,180.73L732.05,180.43L731.80,179.84L731.90,179.44L731.77,179.28L730.94,178.94L731.28,178.74L731.37,178.55L731.22,178.20L731.02,177.76L731.09,177.52L730.81,177.16L730.72,177.04L730.73,176.74L730.25,175.98L730.17,175.03L730.48,174.77L730.35,174.67L729.65,174.15L728.69,173.70L728.27,173.63L727.85,173.69L727.49,173.95L727.00,173.90L726.58,173.71L726.45,173.33L724.92,172.52L724.27,172.38L722.97,172.29L721.95,172.10L721.39,171.81L721.23,171.23L721.05,171.03L720.88,170.85 "/><path d="M731.67,180.73L730.26,180.36L730.24,180.34L729.56,179.60L729.59,179.05L728.77,178.68L728.19,178.32L728.02,178.06L727.97,177.99L727.21,177.90L727.13,177.99L727.39,178.17L727.38,178.18L727.23,178.29L726.28,178.29L726.22,178.25L725.97,178.10L725.71,178.25L725.70,178.25L725.18,178.26L724.86,178.03L724.77,177.97L724.80,177.78L724.55,177.42L724.16,177.18L723.92,177.03L723.94,176.74L723.48,176.03L723.43,175.61L723.62,175.46L722.67,175.17L721.75,174.53L721.29,174.54L720.89,174.87L720.45,174.96L719.76,174.92L718.75,174.13L718.34,173.68L717.60,173.37L717.38,173.12L717.04,172.98L716.32,172.67L716.51,172.52L715.83,172.16L715.37,171.74L714.60,171.34L714.04,171.31L713.29,171.53 "/><path d="M641.16,154.20L640.57,154.27L639.90,154.46L639.31,154.76L639.29,155.16L638.51,155.72L638.99,156.37L640.21,156.29L640.62,156.37L641.78,156.85L642.40,157.00L642.74,156.85L643.02,156.85L643.08,156.61 "/><path d="M612.30,147.09L610.32,147.41L609.49,147.68L609.47,147.87L609.16,147.94L609.15,148.08L610.15,148.38L610.88,149.01L611.24,149.10L611.81,149.12L612.96,149.64L613.59,149.75L613.80,149.88L614.03,149.85L614.18,149.67L614.85,149.61 "/><path d="M666.19,154.61L665.84,154.96L665.31,155.19L665.10,155.50L663.96,155.68L663.85,155.91L664.25,156.08L664.26,156.30L664.56,156.47L663.95,157.03L663.92,157.44L664.28,158.17L664.09,158.55L663.82,158.90L663.20,159.08L663.11,159.47L662.85,159.63L662.78,159.63L662.24,159.60L661.74,159.80L661.40,159.83L661.08,160.24L661.11,160.65L660.90,161.12L660.66,161.13L660.09,161.80L659.66,161.93L659.76,162.01L660.18,162.34 "/><path d="M576.98,138.26L577.33,138.44L577.80,138.48L577.98,138.63L580.07,139.09L581.03,139.67L582.24,140.04L582.62,140.31L584.80,141.07L584.90,141.25L585.12,141.26L585.84,141.52L586.67,141.66L586.98,141.94L587.52,142.14L587.62,142.18L588.49,143.08L588.45,143.28L588.64,143.40L588.87,143.42L588.88,143.48L588.91,143.61L589.27,143.72 "/><path d="M660.18,162.34L659.95,162.33L659.60,162.33L658.80,162.10L658.41,162.09 "/><path d="M646.01,155.13L645.92,155.22L646.12,155.43L646.95,155.68L648.20,156.49L650.01,156.99L650.68,157.25L650.72,157.27L651.29,157.65L651.55,157.68L651.57,157.68L652.05,158.07L652.61,158.30L652.94,158.36L653.52,158.47L653.77,158.81L654.17,159.04L655.27,159.27L655.66,159.58L656.11,159.93L656.06,160.34L656.94,160.97L657.24,161.33L657.53,161.52L658.41,162.09 "/><path d="M664.18,163.75L664.52,163.65L664.65,163.61L664.83,163.29L665.18,163.22L665.36,162.91L666.34,162.40L666.51,162.04L666.82,161.82L667.35,161.67L667.77,161.67L668.10,161.50L670.25,161.78L671.84,161.52L674.09,161.30L678.72,160.85L679.19,160.46L677.81,159.77L676.78,159.76L674.93,159.31L674.04,159.45L673.31,159.21L673.02,158.89L672.58,158.41L671.78,158.09L671.49,157.74L670.36,157.81L669.77,157.57L669.12,157.46L668.42,156.98L668.81,156.63L669.88,156.62 "/><path d="M660.18,162.34L661.71,162.72L662.55,163.12L663.73,163.48L664.18,163.75 "/><path d="M568.65,139.16L568.39,139.09L568.29,138.96L568.44,138.90L567.56,138.39 "/><path d="M578.43,139.93L578.28,139.82L577.59,139.78L577.41,139.88L576.83,139.87L576.29,139.68L576.15,139.52L575.88,139.51L574.90,139.64L574.47,139.57L572.86,139.97L572.41,139.99L571.47,139.83L570.91,139.86L570.45,139.77 "/><path d="M557.42,135.28L557.26,135.37L557.63,135.67L557.58,135.89L557.23,135.87L557.20,135.99L557.97,136.24L558.07,136.33L558.28,136.51L558.24,136.66 "/><path d="M605.39,148.87L605.77,148.92L606.40,148.79L606.76,148.60L607.55,148.56L608.00,148.19L608.56,148.03L608.67,147.86L606.72,147.67L605.45,147.62L605.27,147.51L605.29,147.41L604.87,147.24L603.52,147.10L603.06,146.96L602.87,146.67L602.61,146.57L601.17,146.62L600.90,146.53L599.81,146.18L599.74,146.02L600.14,145.91L600.14,145.76L599.93,145.43L600.09,145.31L599.94,145.17L600.02,144.98L599.79,144.14L600.19,143.87L600.21,143.86L600.09,143.72L600.08,143.71L599.96,143.57L599.92,143.53L599.42,143.38L599.40,143.36L599.27,143.22L598.75,143.21 "/><path d="M740.42,184.96L739.29,184.70L739.20,184.70L738.90,184.70L738.66,184.56L738.36,184.15L738.43,183.84L737.16,182.79L737.01,182.58L736.91,182.43L736.74,182.18L736.44,182.04L736.28,181.96L735.69,181.91L735.32,181.55L734.25,181.27L733.46,181.06L732.39,181.03L731.67,180.73 "/><path d="M658.41,162.09L656.89,162.28L655.89,162.21L655.19,162.08L654.75,161.83L654.13,161.71L653.26,161.35L651.05,160.65L650.89,160.46L650.64,160.16L650.62,160.14L650.02,159.76 "/><path d="M697.51,173.66L697.68,173.25L697.57,172.93L697.96,172.60L698.26,172.54L699.11,171.47L699.20,171.12L699.10,170.89L699.34,170.59 "/><path d="M545.22,134.40L544.71,134.04L544.75,133.89L544.55,133.74L544.85,133.50L544.86,133.03L544.64,132.63 "/><path d="M540.65,133.55L540.63,133.44L540.24,133.19L540.19,132.99L539.28,132.82L538.58,132.39L538.66,132.23L538.44,132.12L538.79,131.95L538.65,131.74L538.17,131.45L537.45,131.44 "/><path d="M664.18,163.75L665.35,164.37L665.55,164.48L666.53,165.25L667.06,165.55L667.16,165.75L666.80,166.09L666.79,166.09L666.19,166.37L666.06,166.43L666.17,166.60 "/><path d="M710.03,178.55L709.44,177.85L709.43,177.54L709.67,177.33L709.43,176.98L709.39,176.64L709.57,176.34L709.45,175.88L709.54,175.45L709.25,174.90L709.58,174.53L709.20,174.14L709.24,173.84L709.67,173.58 "/><path d="M666.36,166.78L666.17,166.60 "/><path d="M666.17,166.60L665.80,166.55L665.49,166.37L665.36,166.29L665.11,166.14L664.99,165.91L663.74,165.81L663.42,165.85L662.20,165.67 "/><path d="M617.86,153.95L618.25,153.46L618.16,153.33L618.67,153.11L618.68,153.02L618.32,152.87L618.39,152.76L618.58,152.78L618.78,152.80L619.00,152.75L619.54,152.82L620.34,152.73L620.95,152.24L621.27,152.24L622.68,152.52 "/><path d="M710.03,178.55L709.19,178.44L708.97,178.33L708.49,178.10L708.06,178.04L707.55,177.70L707.20,177.62L706.96,177.23L707.35,176.66L707.25,176.20L707.05,175.95L706.53,175.94L705.96,175.64L705.81,175.42L706.15,175.33L706.12,175.11L705.23,173.74L704.66,173.31L704.58,173.25L704.13,173.22L703.94,173.06L703.82,172.60L703.54,172.34L702.60,172.21L700.71,170.84L699.84,169.76L700.17,169.24L699.88,168.81L699.82,168.38 "/><path d="M661.31,165.60L660.58,165.36 "/><path d="M653.72,164.01L652.97,163.76L653.03,163.69L652.76,163.54L652.24,163.48L652.17,163.47L652.10,163.37L652.02,163.27L651.94,163.24L651.66,163.15L650.73,163.09L649.90,162.77L648.81,162.61L648.48,162.48 "/><path d="M600.57,149.46L601.13,149.55L601.31,149.73L601.54,149.77L601.84,149.83L601.98,149.91L602.67,150.32L602.85,150.66L604.37,151.09L605.33,151.15L606.23,151.61 "/><path d="M545.19,135.03L544.83,135.13L544.13,135.33L543.97,135.66 "/><path d="M732.83,184.83L731.96,184.83L731.14,184.55L730.93,184.34L730.33,184.32L729.82,184.13L729.08,183.79L729.17,183.58L728.86,183.37L728.78,183.32L728.61,183.20L727.76,183.04L727.63,183.02L727.57,183.01L727.34,182.74L727.29,182.69L727.22,182.70L727.10,182.71L727.05,182.86L726.15,182.80L725.72,182.44L725.31,182.35L725.20,182.55L724.87,182.53L724.60,182.39L724.13,182.43L723.74,182.29L723.10,182.06L722.66,182.01L721.54,181.88L721.16,182.01L720.87,181.98L720.10,181.75L719.72,181.50L719.40,181.48L718.45,181.70L717.75,181.64L717.30,181.23L717.09,181.12L716.92,181.04L716.39,180.98L716.03,180.81L715.65,180.38L714.50,180.57L714.17,180.28L713.77,180.28L713.44,180.51L712.63,180.02L712.18,179.95L711.99,179.92L711.86,179.82L711.97,179.50L711.40,179.25L710.92,179.16L710.32,178.86L710.24,178.82L710.03,178.55 "/><path d="M644.68,162.09L644.42,162.10L643.50,161.46L642.58,161.42 "/><path d="M542.47,133.53L542.94,133.79L543.14,134.34L543.15,134.35L542.93,134.51L542.35,134.49L542.05,134.57L541.58,135.10L541.21,135.22 "/><path d="M630.46,156.39L630.74,156.72L630.09,156.90L629.82,157.27L629.55,157.35L629.80,157.93L630.14,158.06L630.31,158.29L630.24,158.35L630.21,158.38L630.07,158.51 "/><path d="M697.55,176.82L696.68,176.16L695.90,175.87L695.78,175.69L695.87,175.28L695.87,175.27L696.13,175.08L696.49,174.98 "/><path d="M628.20,158.52L627.86,158.58L627.54,158.53L627.30,158.34L626.44,158.24L625.77,157.94L625.64,157.78L624.68,157.75L623.90,157.59 "/><path d="M622.13,157.12L621.79,157.06L621.04,156.93L620.83,156.89L620.43,156.65 "/><path d="M517.02,130.36L516.92,130.11L517.15,130.07L517.11,129.90L517.10,129.86L516.89,129.77 "/><path d="M518.15,130.82L517.71,130.34L517.02,130.36 "/><path d="M517.65,131.02L517.65,130.89L517.03,130.76L516.75,130.43L517.02,130.36 "/><path d="M697.79,178.60L699.08,178.55L699.28,178.35L698.48,178.05L698.26,177.60L697.65,177.34 "/><path d="M697.79,178.60L697.07,178.02L696.25,177.84L696.23,177.54L695.70,177.29L694.81,177.09L694.27,176.81L694.34,176.58L693.76,175.59L693.91,175.46L694.45,175.33L694.68,175.06L694.37,174.72L694.71,174.71L694.77,174.46L694.59,174.10L693.71,173.48L693.37,173.48L692.82,173.47L692.53,173.39L692.23,173.09L692.36,172.89L692.27,172.50L692.18,172.10L692.45,171.98L691.86,171.45L691.99,171.18L693.05,170.82L693.51,170.12L693.79,170.09L694.42,169.34L694.99,168.92L695.09,168.65L695.40,168.47L695.35,168.35L695.15,167.78L695.36,167.51L696.88,167.04L696.97,166.80L696.87,166.57L696.30,166.21L696.42,165.86L696.75,165.62 "/><path d="M716.45,183.70L716.14,183.64L715.83,183.74L715.33,183.61 "/><path d="M685.91,163.04L686.11,163.50L686.34,163.71L686.70,164.66L686.70,165.03L686.16,166.05L686.52,166.51L687.19,167.04L687.36,167.13L687.98,167.47L688.53,168.04L688.75,168.38L688.66,168.78L688.88,169.13L689.07,169.44L688.66,169.96L688.68,170.25L688.55,170.47L688.48,170.60L688.18,170.77L688.17,171.03L687.75,171.12L687.47,171.89L686.68,172.21L685.81,172.34L686.20,172.56L685.80,172.59L685.48,173.36L685.39,174.01L685.03,174.32L684.89,174.45L684.57,174.54L684.32,174.98L684.76,175.47 "/><path d="M677.70,162.92L677.45,163.19L677.46,163.73L678.85,164.29L679.09,164.52L679.44,164.62L680.09,165.38L680.66,166.39L680.60,167.22L680.02,167.39L679.81,167.55L680.00,168.06L679.88,168.16L679.59,168.42L679.83,168.56L680.03,168.67L680.15,168.88L680.73,169.17L680.92,170.06L681.34,170.75L681.05,170.94L681.44,171.23L680.93,172.29L681.17,172.73L681.06,172.95L681.48,173.11L681.66,173.41L681.56,173.61L682.01,174.35L681.79,174.57L681.82,174.59L682.02,174.75L682.98,175.16L683.93,175.44L684.17,175.47L684.49,175.51L684.76,175.47 "/><path d="M667.58,168.05L668.64,168.55L668.74,168.75L668.44,169.07L669.39,170.03L669.18,170.20L669.36,170.52L669.32,170.72L669.22,171.12L669.12,171.59 "/><path d="M511.98,130.09L512.28,130.25L512.27,130.38L512.26,130.48L512.58,130.71 "/><path d="M732.73,188.33L732.71,188.23L732.01,188.29L731.74,188.22L731.70,188.22L731.67,188.23L731.57,188.35L731.26,188.28L730.96,188.20L730.13,188.29L729.56,188.28L729.16,188.28L728.18,188.40L727.74,188.33L726.13,187.72L725.24,186.94L724.01,186.58L723.07,186.52L722.96,186.48L721.53,185.85L721.18,185.69L720.59,185.49L719.12,184.96L718.37,184.62L718.25,184.35 "/><path d="M706.29,182.44L707.71,182.55L709.17,182.81L709.20,182.81L709.61,182.79 "/><path d="M512.50,131.04L512.41,131.24L512.75,131.42 "/><path d="M613.12,157.31L612.63,157.38L611.74,157.25L611.91,157.05L611.63,157.01 "/><path d="M566.78,145.86L566.79,145.48L566.61,145.32L565.67,144.91L565.33,144.63L565.09,144.60 "/><path d="M649.55,167.83L649.71,167.60L649.82,167.45L649.60,166.99L649.79,166.71L650.09,166.61L650.11,166.43L649.85,166.13L649.28,165.48L648.97,165.36L648.39,165.32L646.13,164.75L645.79,164.72L644.64,163.73L644.24,163.59 "/><path d="M649.55,167.83L651.00,168.36L651.11,168.63 "/><path d="M608.04,157.19L607.72,157.12L607.57,157.09 "/><path d="M669.12,171.59L668.85,171.57L668.12,170.89L667.70,170.96L667.35,170.66L666.67,170.42L665.89,170.25L665.42,170.00L664.96,169.49L664.07,169.23L663.74,169.28L663.35,169.33L662.42,169.25L661.67,169.26L661.42,169.35L660.63,169.33L660.00,169.45L659.09,169.37L658.90,169.40L658.70,169.58L658.39,169.57L657.77,169.55L657.44,169.41L657.08,169.38L656.95,169.40L656.35,169.50L655.59,169.40L654.18,169.07L652.95,169.05L652.69,169.01L652.22,168.94L651.56,168.82L651.29,168.78L651.11,168.63 "/><path d="M531.11,136.33L531.35,136.80L531.17,136.92L531.33,137.18L531.23,137.35L531.75,137.55 "/><path d="M551.48,142.73L550.97,142.59 "/><path d="M694.43,181.02L695.06,180.86L695.89,180.91L696.06,180.89L696.81,180.85L696.92,180.73L696.66,180.48L696.67,180.43L696.72,180.21L696.43,179.85L696.38,179.83L695.64,179.51L695.60,179.55L695.38,179.38L695.69,179.19L697.04,179.35L697.45,179.30L697.72,178.99L697.79,178.60 "/><path d="M706.29,182.44L704.67,182.30L704.15,182.44L703.73,182.35L703.36,182.13L702.98,182.05L702.55,181.61L702.27,181.48L700.47,181.45L699.96,181.26L699.10,181.19L698.84,181.26L698.15,181.12L697.99,181.27L696.47,181.36L696.13,181.49L696.00,181.47L695.81,181.44L695.24,181.10L694.61,181.04L694.43,181.02 "/><path d="M606.67,157.23L606.38,157.36L605.84,156.90L605.61,156.87L605.06,157.15L604.73,156.94L604.20,156.82L602.33,156.59L601.28,156.56L600.80,156.45L600.59,156.25L600.65,155.96 "/><path d="M507.40,132.29L507.85,132.10L508.61,131.90L509.44,131.68 "/><path d="M648.39,169.20L648.53,169.15L648.84,169.04L649.52,169.02L649.64,168.89L649.86,168.92L650.06,169.07L650.31,169.05L650.54,168.71L651.11,168.63 "/><path d="M553.05,144.09L553.37,143.99L553.60,144.00L553.66,144.01L553.88,143.91L554.07,143.83L554.78,143.77L555.15,143.46L555.52,143.32L556.06,143.34L556.31,143.18L556.60,143.28L556.97,143.16L557.72,143.23L558.15,143.00L558.67,143.08L559.13,142.98L561.38,143.18L562.14,143.45L562.52,143.49L562.59,143.49L563.69,143.43 "/><path d="M553.05,144.09L553.18,143.77 "/><path d="M680.99,178.02L679.50,177.68L679.40,177.66 "/><path d="M582.33,151.82L582.49,151.75L582.80,151.89L583.05,151.72L583.38,151.77L583.72,151.99L584.31,151.59L584.82,151.50L585.23,151.29L586.05,151.23L586.96,151.28L588.02,150.47L589.19,150.59L589.86,150.57L590.38,150.88L590.24,151.01 "/><path d="M678.50,177.47L678.00,177.15L677.94,176.97L676.48,176.36L675.38,176.12L674.88,176.05L674.63,176.10 "/><path d="M538.46,138.78L538.23,139.06L537.92,139.43L537.22,139.41L536.81,139.18L536.02,139.23L536.86,139.97L537.35,140.26 "/><path d="M531.95,138.08L531.95,138.10L531.93,138.49L532.17,138.82L532.19,139.13L532.04,139.22 "/><path d="M689.66,181.12L690.24,180.92L690.44,180.73L690.40,180.69L690.30,180.60L690.53,180.47L691.16,180.71L691.31,180.76L692.50,180.91L693.11,180.89L693.10,180.74L693.09,180.66L693.63,180.62L693.78,180.76L693.88,180.85L694.43,181.02 "/><path d="M689.66,181.12L689.18,180.67L688.93,180.43L689.06,180.25L688.42,180.05L688.31,179.76L687.95,179.73L687.20,179.81L686.86,179.52L686.04,179.31L685.82,179.20L685.56,179.06L685.33,178.75L685.34,178.71L685.36,178.52L685.37,178.38L685.07,177.91L685.43,177.88L685.79,177.86L685.91,177.79L685.60,177.56L685.69,177.44L686.09,177.39L686.30,177.19L686.16,176.94L686.29,176.76L685.94,176.33L685.63,175.96L685.25,175.79L685.14,175.57L684.76,175.47 "/><path d="M706.29,182.44L706.87,183.16L706.83,183.27L707.02,183.43L707.12,183.51L707.01,183.63L707.52,184.20L707.57,184.25L708.61,184.84L708.66,184.91L708.91,185.26L709.10,185.36L709.18,185.40L708.97,185.54L709.17,185.77L711.08,186.44L711.61,186.52L712.32,187.03L712.53,187.33L712.99,187.68L713.57,187.70 "/><path d="M590.79,154.90L592.15,154.67L592.82,154.36L593.41,154.25L594.56,153.82L595.02,153.82L595.18,153.82L595.91,153.59L596.40,153.64L596.77,153.81L597.14,153.78L597.58,154.02L598.32,154.16L599.02,154.17L599.51,154.30L600.43,154.28L601.13,154.34L602.56,154.12L604.31,153.85L604.59,153.90L607.70,154.40L608.51,154.62L609.03,154.43L609.12,154.28L609.25,154.08 "/><path d="M669.12,171.59L669.81,172.87L669.47,173.15L669.60,173.36L669.78,173.64L668.67,175.58L669.02,175.82L670.15,176.16 "/><path d="M553.05,144.09L552.98,144.22L552.78,144.63L552.47,144.82L552.54,145.00 "/><path d="M590.21,154.65L589.56,154.60L589.31,154.69 "/><path d="M579.63,152.16L579.85,152.12L580.13,152.08L580.33,152.27L580.82,152.30L581.44,152.01 "/><path d="M606.06,159.24L606.40,159.28L606.94,159.35L607.34,159.26L607.62,159.35L609.29,159.53L610.19,159.47L610.93,159.23L611.30,159.19L612.29,159.29L612.73,159.18L614.90,159.39L615.40,159.57L615.84,159.65L616.01,159.68L616.26,159.59L616.51,159.66L616.49,159.68L616.47,159.76L616.72,159.93L616.70,160.19L616.42,160.71L616.10,161.32 "/><path d="M552.75,145.13L553.22,145.39L554.46,145.71L554.87,145.92L556.02,146.26L556.27,146.21 "/><path d="M713.73,188.51L713.58,188.43L712.82,188.40L712.43,188.26L712.13,188.10L711.92,187.98L711.77,187.75 "/><path d="M623.41,164.50L624.85,164.54L625.60,164.34L625.92,164.12L626.42,164.07L626.67,163.89L627.03,163.88L627.22,163.97L627.74,163.99L628.45,163.87L628.72,164.05L629.15,164.11L630.42,164.05L630.76,164.23L631.51,164.12L632.56,164.39L633.57,164.42L633.51,164.61L634.17,164.65L634.35,164.59L635.01,164.70L635.41,164.78L635.78,165.07L636.32,165.10L636.43,165.25L636.74,165.35L638.69,165.49L639.99,165.67L641.73,166.64L642.28,166.70L642.82,166.93L643.30,167.02L643.89,166.93L644.24,166.95L644.66,167.07L644.96,167.26L644.82,167.50L644.74,167.63L645.56,167.85L646.20,168.03L646.85,167.94L647.00,168.01L647.47,168.02L648.31,167.79L648.88,167.75L649.13,167.78L649.55,167.83 "/><path d="M622.05,164.20L621.22,164.19L620.17,163.98L619.65,163.64L619.17,163.52L618.26,163.31 "/><path d="M684.09,181.20L683.21,180.71L683.08,180.44L683.32,180.29L683.41,180.23L683.21,180.01L682.41,179.14L681.82,178.93L681.67,178.62 "/><path d="M689.66,181.12L688.10,181.26L688.16,181.46L687.69,181.41L687.20,181.23L686.89,181.52L686.51,181.31L686.50,181.31L686.19,181.26L686.05,181.29L686.20,181.47L686.01,181.55L685.62,181.46L685.13,181.15L685.11,181.14L684.82,181.12L684.81,181.15L684.81,181.18L684.80,181.23L685.08,181.36L684.97,181.46L684.36,181.28L684.09,181.20 "/><path d="M535.77,142.09L535.75,141.62 "/><path d="M602.45,159.49L600.93,158.88L600.40,158.75L599.92,158.75L599.64,158.63L599.18,158.67L598.44,158.59L598.05,158.44L597.66,158.40L597.24,158.22 "/><path d="M538.81,143.19L538.56,143.16L538.37,143.02L537.75,142.60L536.67,142.31L536.11,142.34L535.77,142.09 "/><path d="M680.88,181.39L681.34,181.32L681.40,181.32L682.76,181.37L683.33,181.54L683.60,181.63L683.84,181.55L683.97,181.37L684.09,181.20 "/><path d="M670.15,176.16L670.19,176.17L670.73,176.39L671.47,177.00L671.48,177.34L672.48,178.07L673.04,178.27L673.63,178.18L673.87,178.22L674.51,178.73L676.30,179.32L676.58,179.63L677.65,180.08L678.91,180.19L679.17,179.93L679.58,179.94L679.64,179.94L680.23,180.07L680.40,180.22L680.24,180.50L680.93,181.24L680.88,181.39 "/><path d="M645.28,171.82L645.52,171.71L647.84,172.04L648.29,172.20L649.70,172.09L650.53,172.26L651.36,172.56L651.74,172.79L652.26,172.86L652.90,173.34L653.38,173.88 "/><path d="M487.68,130.72L487.93,130.66L488.66,130.68 "/><path d="M492.67,132.30L492.44,132.22L492.28,132.16L492.34,131.89 "/><path d="M529.60,137.97L529.66,138.01L529.95,138.23L529.78,138.50L530.05,138.99L529.71,139.00L529.54,139.11L529.88,139.43L530.79,139.77L530.84,140.02L531.22,140.17L531.72,140.72L531.86,141.19L532.25,141.44L532.14,141.54L530.90,141.60L530.55,142.02L530.31,142.03L530.21,142.13 "/><path d="M670.15,176.16L669.86,176.26L668.77,176.11L668.76,176.10L668.28,176.13L667.72,176.00L666.69,176.15L665.13,175.91L664.98,176.07L664.58,176.15L664.12,176.24L663.45,175.94L663.00,175.88L662.52,175.92L662.34,176.05L661.70,175.86L660.83,175.94L660.58,175.81L659.50,175.79L659.14,175.68L658.59,175.76L658.31,176.01L658.16,176.00L657.90,175.99L657.55,175.84L656.97,175.78L656.74,175.66L656.52,175.55L655.61,175.37L655.39,175.21L655.11,175.19L654.94,175.18L654.77,175.05 "/><path d="M535.77,142.09L535.30,142.08L534.87,141.90L534.32,141.91L534.15,141.73L533.97,141.84L534.13,142.05L533.82,142.31L533.54,142.40L533.53,142.57L532.72,142.62L532.32,142.51L531.43,142.42L531.32,142.66 "/><path d="M717.44,192.47L717.43,192.40L717.42,192.13L717.05,192.00L717.38,191.65L717.13,191.29L716.89,191.15L716.61,190.97L716.49,190.73L716.64,190.55L716.41,190.29L715.61,189.98L715.34,189.87L715.06,189.57L715.11,189.41L715.13,189.37L714.52,188.94 "/><path d="M487.20,132.35L487.39,132.54L487.34,132.61L487.26,132.74 "/><path d="M535.26,144.88L535.28,145.24L535.29,145.28L535.98,145.37 "/><path d="M483.28,131.64L483.73,131.71L484.09,131.67L484.58,131.84L484.50,131.97L484.46,132.03L484.12,132.16 "/><path d="M610.24,163.04L609.60,163.42L608.94,163.51L608.95,164.45L609.23,164.78 "/><path d="M691.77,185.05L692.19,185.31L692.73,185.25L694.11,186.07L695.03,186.36L695.29,186.44L696.05,186.59L696.68,186.85L698.07,186.96L698.91,187.22L699.31,187.38L700.04,187.90L700.19,188.11L700.67,188.34L700.68,188.52L700.86,188.61L701.27,188.65L702.00,189.20L702.05,189.24L702.39,189.42L703.48,190.00L703.88,190.06L704.37,190.14L704.48,190.19L704.61,190.26L705.03,190.48L705.30,190.51L706.53,190.64L706.86,190.80L708.09,191.38L708.11,191.46L708.11,191.50L708.12,191.57L707.98,191.64L707.97,191.65L707.97,191.65 "/><path d="M482.87,132.75L483.44,132.61 "/><path d="M645.22,176.42L644.89,175.90L644.43,175.62L643.67,175.56L642.94,175.37 "/><path d="M542.09,149.43L542.25,149.38L542.29,149.07L542.56,148.96L542.47,148.06L542.61,147.94L542.46,147.76L541.99,147.55L541.98,147.40L541.69,147.27L541.23,146.52L541.82,145.34L541.56,145.18L541.29,144.74L541.29,144.73L541.66,144.56 "/><path d="M609.36,167.23L609.15,167.21L608.89,166.98L609.84,166.66L610.58,166.55L611.51,166.07L611.51,165.80L612.02,165.59L612.96,165.62L613.21,165.56L613.41,165.65L616.09,165.92L616.52,165.86L618.52,165.99L619.05,166.21L619.77,166.25L620.01,166.27L621.25,166.54L622.62,167.19L622.89,167.51L624.49,168.56L624.78,168.75L625.28,168.81L625.71,169.03L625.90,169.12L626.00,169.17L625.93,169.39L626.16,169.55 "/><path d="M680.88,181.39L680.49,181.42L679.94,181.33L679.48,181.47L678.62,181.73L677.35,181.67L677.00,182.13L675.49,182.21L675.49,182.33L675.98,182.64L675.41,182.62L674.36,182.33L674.12,182.69L673.01,182.99L672.83,183.25L672.84,183.68L672.56,183.86L672.42,183.89L672.38,183.89L671.81,183.98L671.61,184.20L671.69,184.52 "/><path d="M566.91,154.64L566.66,155.00L566.57,155.12L566.52,155.14L565.22,155.61L565.15,155.82L564.87,155.84L565.02,156.15L565.21,156.15 "/><path d="M637.91,172.87L638.71,172.68L639.09,172.80L640.08,173.31L640.73,173.28L641.51,173.05L642.19,173.41L642.34,173.59L643.17,173.85L643.39,174.14L643.72,174.28L644.98,174.41L647.75,175.18L648.05,175.20L649.00,175.67L649.15,175.75L649.47,176.12L650.88,176.74L653.74,177.48L653.88,177.55L654.45,177.82L654.40,178.40L654.88,178.65L654.92,179.17L655.14,179.34L655.78,179.34L656.00,179.39L656.52,179.50L656.68,179.53L656.86,179.86L657.23,180.03L657.91,180.14L658.71,180.26L658.93,180.42L659.41,180.40L659.72,180.53L660.47,180.39L660.70,180.41L660.98,180.64L661.49,180.66L661.53,180.78L662.05,180.71L662.43,180.79L662.56,180.99L662.92,180.93L663.39,181.10L663.70,181.07L664.63,181.29L665.01,181.60L665.48,181.61L665.63,181.78L665.49,181.91L666.22,182.36L666.30,182.52L666.81,182.65L666.96,182.82L666.98,183.17L667.38,183.40L667.88,183.43L667.70,183.60L667.81,183.74L668.12,183.74L668.31,183.90L668.26,184.15L668.48,184.25L668.83,184.08L669.40,184.43L669.80,184.43L670.51,184.42L671.16,184.48L671.47,184.51L671.69,184.52 "/><path d="M611.21,168.80L612.42,168.96L613.21,168.99L613.62,169.16L614.97,169.23L615.17,169.41L615.60,169.41L616.81,169.87L617.57,169.96L618.63,169.89L621.26,169.95L621.55,170.07L622.10,170.09L624.02,169.94L624.12,169.94L624.54,169.90L625.31,169.84L626.04,169.79L626.36,169.67 "/><path d="M545.33,151.45L544.92,151.39L543.13,150.67L542.03,149.77L541.70,149.81L541.58,149.99L540.99,150.07L540.77,150.23L540.35,150.29 "/><path d="M672.66,185.66L672.97,185.69L673.48,185.73L673.92,185.82L674.17,185.87L674.95,186.04L675.43,185.98L675.52,186.01L675.76,186.08L676.13,185.61L676.51,185.53L677.06,185.55L677.49,185.76L678.02,185.77L678.64,185.65L679.01,185.80L680.10,185.56L680.92,185.63L681.28,185.47L682.73,185.50 "/><path d="M671.69,184.52L672.47,185.21L672.66,185.66 "/><path d="M577.00,160.09L576.49,159.57L575.93,159.35L575.82,159.15L575.87,159.05L575.94,158.88L575.91,158.83L575.39,158.04L575.27,157.86L575.01,157.67 "/><path d="M584.37,162.03L584.65,162.06L585.11,162.10L585.39,162.13L586.06,162.47L586.78,162.85L587.36,162.91L587.76,162.95L588.46,163.28L589.90,163.41L590.47,163.31L591.20,163.37L591.24,163.37L591.30,163.36L591.71,163.29L591.89,163.16L592.97,163.24L593.60,163.04L595.24,162.98L595.85,162.64L596.17,162.53L597.76,161.98L599.30,161.70L599.78,161.53L601.62,161.44L602.28,161.17L602.96,161.12L603.40,161.09L603.54,160.83L603.49,160.68L603.47,160.64L604.09,160.17L604.04,159.96 "/><path d="M608.57,168.78L609.21,168.76 "/><path d="M563.83,156.83L564.28,156.78L566.49,157.67L567.72,158.29L568.29,158.17 "/><path d="M605.05,164.18L604.61,164.54L603.81,164.73L603.71,164.77L603.14,165.01L602.91,165.22L602.77,165.34L603.45,166.11L603.71,166.20L604.30,166.38L604.76,166.94L605.14,167.08L605.87,168.16L606.01,168.25L606.41,168.49L607.17,168.79L607.72,168.80 "/><path d="M579.19,161.35L579.40,161.28L579.62,161.20L579.77,161.14L579.71,160.86 "/><path d="M531.49,149.13L531.96,149.13L532.00,149.13L532.25,148.97L532.54,149.01L532.43,149.23L532.89,149.20L533.15,149.36L533.67,149.37L533.90,149.21L533.83,149.05L534.10,149.01L534.32,149.21L534.68,149.27L535.80,150.08L536.26,150.13L537.69,150.01L537.70,150.01L537.89,149.86L537.87,149.61L537.49,149.40L537.24,149.37 "/><path d="M672.66,185.66L672.51,186.06L672.46,186.17L672.38,186.38L672.29,186.48L672.06,186.74 "/><path d="M569.45,158.17L570.40,158.44L570.07,158.86L570.24,159.47 "/><path d="M526.15,148.11L526.29,147.86L526.16,147.44L525.53,146.68L525.61,146.49L525.72,146.45L526.18,146.29L527.41,146.36L527.72,146.47 "/><path d="M672.24,187.34L672.41,187.42L672.62,187.52L673.08,187.57L673.33,187.56L673.77,187.53L673.93,187.57L674.23,187.65L675.29,188.24 "/><path d="M641.11,179.06L641.16,178.91L641.04,178.74L640.56,178.02L640.71,177.82L641.44,177.95L641.70,177.86L641.40,177.57L640.47,177.06L640.22,176.75L639.38,176.71L639.01,176.61L638.64,176.06L638.83,175.96L638.26,175.12L638.46,174.91 "/><path d="M646.03,177.95L646.12,178.53L646.71,179.26L648.25,179.93L648.14,180.15L648.23,180.29L648.06,180.41L647.78,180.60L647.69,180.88L647.24,180.92 "/><path d="M639.94,178.97L641.11,179.06 "/><path d="M639.94,178.97L639.31,178.64L638.34,178.40L637.87,178.48L637.56,178.23L637.51,177.97L637.62,177.91L637.51,177.76L637.01,177.46L636.31,177.27L635.82,177.04L635.34,176.98L634.70,176.70L634.54,176.36L633.95,176.17 "/><path d="M647.24,180.92L646.92,180.74L645.84,180.45L644.42,180.43L644.09,180.27L644.26,180.08L643.32,179.96L642.68,179.72L642.21,179.71L641.80,179.45L641.31,179.33L641.11,179.06 "/><path d="M559.61,157.86L559.97,157.79L560.00,157.81L560.14,157.93L560.38,157.83L560.45,157.56L560.93,157.59L561.41,157.31 "/><path d="M535.44,152.04L534.91,151.33L534.55,151.07 "/><path d="M573.56,162.48L573.59,162.12L574.00,162.03L574.11,161.86L574.03,161.68L574.43,161.64L574.60,161.56L574.73,161.49L575.12,161.44 "/><path d="M531.33,151.04L531.60,151.42L531.38,151.46L529.83,151.29L529.17,150.99L528.67,150.93L528.66,150.72L528.37,150.50L528.51,150.14L528.36,149.65L528.35,149.61 "/><path d="M612.41,173.16L612.16,173.12 "/><path d="M695.94,196.83L696.60,196.54L697.13,196.48L697.97,196.62L698.73,196.29L699.05,196.25L699.82,196.41L700.35,196.38L700.55,196.20L700.61,196.14 "/><path d="M677.48,190.41L676.99,190.39L676.23,190.16L676.16,190.12L675.61,189.83L675.38,189.84L675.35,189.84L675.30,190.28L675.13,190.41L674.84,190.41L674.67,190.32L674.89,190.11L674.92,189.72L674.09,189.53L673.65,189.26L672.82,189.18L672.31,188.95L672.26,188.94L671.77,188.88L671.68,188.87L671.40,188.69L671.24,188.59L671.20,188.52L670.98,188.15L670.69,188.28L670.60,188.32L670.56,188.22L670.53,188.18L670.52,188.16L670.24,188.03L670.06,187.99L669.66,187.92L669.40,187.74L669.34,187.70L669.28,187.70L668.85,187.73L668.84,187.73L668.65,187.75L668.81,187.51L668.75,187.48L668.30,187.44L668.28,187.41L668.11,187.17L666.87,187.13L666.28,187.03L665.91,187.10L665.96,186.88L665.63,186.78L665.59,186.92L665.21,186.99L664.67,186.87L663.87,186.94L662.89,186.67L662.06,186.90L662.06,186.71L661.57,186.56L661.20,186.50L660.44,186.62L660.15,186.24L659.54,186.29L659.47,185.99L659.43,185.97L659.32,185.93L659.29,185.91L658.83,186.01L658.44,185.88L657.86,185.89L657.09,185.60L656.74,185.62L656.28,185.41L655.21,185.49L654.85,185.30L654.64,185.31L654.28,184.98L653.82,185.20L653.29,185.20L652.33,184.63L651.65,184.50L651.44,184.39L651.45,184.03L651.18,183.86L650.23,183.63L650.43,183.37L650.02,183.16L649.38,183.04L648.96,182.96L649.00,182.81L648.28,182.71L648.21,182.56L648.60,182.51L648.65,182.33L648.65,182.33L648.44,182.06L648.05,181.89L647.64,181.82L647.38,181.61L647.28,181.15L647.24,180.92 "/><path d="M554.35,157.69L554.45,157.85L554.08,157.91L554.10,158.03L554.61,158.65L554.58,158.95L554.78,159.11L555.25,159.14L556.12,159.19L556.48,159.34L557.78,159.35L557.92,159.49L558.48,159.55 "/><path d="M549.57,158.02L550.05,157.83L550.30,157.57 "/><path d="M610.74,172.94L610.29,172.91L610.06,173.06L609.74,172.92L606.66,172.66L605.76,172.38L604.33,172.57L601.30,171.93L600.80,171.71L600.53,171.48L600.71,171.30 "/><path d="M617.81,173.73L618.29,173.91L618.49,174.09L618.91,174.19L619.01,174.36L619.45,174.37L619.78,174.87L619.56,175.44L619.27,175.69L618.70,175.88L618.34,176.57 "/><path d="M514.05,148.53L514.16,148.58L515.15,149.07L515.33,149.30 "/><path d="M603.34,171.39L603.70,171.16L604.33,171.07L604.89,170.48L604.68,169.96L604.79,169.65L604.20,168.93L604.04,168.91L603.88,168.93L602.33,169.26L602.06,169.25L601.23,169.22L600.29,169.40L600.11,169.40L598.30,169.46L597.70,169.96L597.35,170.24L597.28,170.30L596.64,170.67L596.69,170.92 "/><path d="M560.92,160.16L561.16,160.23L561.51,160.71L561.47,160.90L561.80,161.08L562.10,161.64L561.94,161.72 "/><path d="M522.70,149.44L522.70,149.45L523.00,149.64L522.91,149.76L523.11,150.12L522.98,150.30L523.37,151.03L523.99,151.14L524.33,151.36L524.73,151.42L525.09,151.62L525.24,151.60L525.09,152.27 "/><path d="M625.18,176.82L624.94,177.02L625.16,177.24L625.63,177.38L626.17,177.99L626.56,178.12L627.34,178.71L627.75,178.89L628.73,180.05L629.89,180.05L630.49,179.74L631.02,179.63L632.40,179.80L632.69,179.72L632.77,179.55L633.90,179.53L634.41,179.53L634.61,179.64L634.83,179.62L634.92,179.52L638.54,179.69L638.52,179.49L638.68,179.38L639.52,179.27L639.58,179.02L639.84,179.04L639.94,178.97 "/><path d="M544.76,158.00L544.76,157.84 "/><path d="M515.72,149.80L515.46,150.11L514.90,150.22 "/><path d="M700.33,200.25L700.79,200.25L700.87,200.31L701.10,200.47L701.58,200.51L701.82,200.40L702.69,200.41L703.56,200.81L704.40,200.92L705.45,201.48L708.00,201.61L708.24,201.49L709.01,201.52L709.26,201.39L709.38,201.32L710.33,201.40 "/><path d="M695.94,196.83L695.87,197.19L695.54,197.30L695.71,197.53L695.59,197.74L695.21,198.04L695.60,198.41L696.27,198.57L696.61,198.65L696.99,198.80L697.14,199.03L698.74,199.56L698.68,199.73L698.91,199.86 "/><path d="M601.50,173.32L600.12,172.49L599.99,172.41L600.03,172.35L600.14,172.14L599.51,171.45L599.71,171.27 "/><path d="M666.22,191.02L666.43,190.88L666.93,190.96L666.95,190.75L667.49,190.78L667.53,190.60L667.62,190.60L668.12,190.58 "/><path d="M584.16,169.64L584.50,169.55L584.54,169.47L584.63,169.30L584.91,169.34L585.04,169.43L585.61,169.22L585.90,169.21L586.69,169.16L587.17,169.22L587.48,169.08L588.55,169.03L589.05,168.65L589.37,168.17L592.00,167.38L592.11,167.27L591.90,167.04L590.25,166.49L590.06,166.47L589.67,166.44L588.90,166.54L587.92,166.38 "/><path d="M577.25,168.28L577.54,168.18L578.05,168.02L578.34,167.80L578.79,167.81L580.73,167.18L581.31,167.11L581.63,167.07L582.14,166.84L583.07,166.60L583.69,166.25 "/><path d="M666.89,191.54L667.36,191.77L667.90,192.03L668.11,192.13L668.68,192.29L668.63,192.63L668.83,192.75L669.37,192.78L669.46,192.78L669.75,193.03L669.84,193.58L670.36,193.91L670.67,194.11L671.92,194.09L672.11,194.22L672.71,194.19L672.89,194.05L673.43,194.11L673.77,194.31L673.95,194.22L674.49,194.23L675.29,194.35L676.83,194.41L676.91,194.45L677.66,194.81L678.68,194.99L679.97,195.43L680.84,195.73L681.52,196.54L682.12,196.83L682.41,196.87L683.71,197.02L684.20,197.14L685.12,197.36L686.71,197.33L687.10,197.00L687.96,197.06L688.20,197.01L688.55,196.93L689.83,196.93L690.40,196.80L690.41,196.80L690.98,196.67L691.12,196.64L691.15,196.65L691.20,196.67L691.24,196.69L691.38,196.74L691.49,196.71L691.50,196.70L691.89,196.58L692.35,196.44L692.85,196.55L692.90,196.56L693.61,196.71L694.01,196.62L694.03,196.62L694.05,196.62L694.62,196.79L695.73,196.88L695.94,196.83 "/><path d="M575.96,168.91L576.15,168.89L576.25,168.88L576.21,168.81L576.14,168.70L576.20,168.69L576.37,168.67 "/><path d="M592.33,172.44L592.38,173.16L592.69,173.43L593.47,173.61L593.80,173.69L593.84,173.70L594.02,173.74L594.48,173.85 "/><path d="M595.74,174.38L596.46,174.49L596.83,174.38L597.52,174.55 "/><path d="M618.79,179.26L618.49,179.56L618.33,180.13L618.47,180.29L618.91,180.21L619.22,180.28L620.05,180.70L620.94,181.16L621.21,181.30 "/><path d="M621.21,181.30L621.19,181.30L620.60,181.31L619.54,181.13L618.35,181.25 "/><path d="M612.44,179.70L612.60,179.49L612.91,179.08 "/><path d="M610.16,179.15L609.89,179.02L609.60,178.87L608.85,178.79L608.72,178.72L608.82,178.64 "/><path d="M602.01,176.97L602.00,176.26L601.84,176.06 "/><path d="M612.44,179.70L611.98,179.68 "/><path d="M613.01,180.25L612.59,179.95L612.64,179.83L612.44,179.70 "/><path d="M645.41,189.25L645.13,189.30L643.58,189.23L642.17,189.65 "/><path d="M655.79,190.33L656.30,190.81L656.63,190.98L656.02,191.73L657.14,192.73L658.47,193.33L659.26,193.69L660.32,193.91L660.50,193.95L661.22,194.00L662.26,194.51L663.01,194.88L663.54,195.28L663.72,195.42L664.06,195.68L664.44,195.80L664.75,195.77 "/><path d="M570.29,170.19L570.29,170.05L569.65,170.07L568.87,169.93L568.63,169.77L568.65,169.74L568.71,169.67L568.89,169.46L568.59,169.16L568.75,168.94L568.37,168.42L567.91,168.19L567.33,168.10L565.10,168.41L564.72,168.37 "/><path d="M683.65,201.58L683.81,201.74L684.40,201.89L684.91,202.01L685.00,202.02L685.35,201.91L686.01,201.97L686.34,202.17L686.59,202.31L686.86,202.29L686.91,202.29L687.14,202.27L687.39,202.40L687.83,202.62 "/><path d="M603.47,179.80L603.48,179.58L602.58,179.16L602.72,179.04L602.17,178.38 "/><path d="M668.67,198.01L673.23,198.36L673.52,198.39L674.20,198.71L675.08,198.81L675.26,198.90L675.66,199.09L676.62,198.93L676.94,198.99L677.03,199.06L677.27,199.23L677.90,199.29L677.96,199.31L678.35,199.50L678.78,199.49L678.92,199.49L679.20,199.69L679.51,199.89L680.36,200.47L680.42,200.52L680.53,200.59L680.71,200.71L681.19,200.60L681.55,200.72L681.96,201.10L682.51,201.15L682.99,201.39L683.51,201.49L683.55,201.49L683.65,201.58 "/><path d="M545.68,164.71L546.27,164.60 "/><path d="M611.72,182.20L611.89,182.52L612.20,182.65L612.65,182.83L613.20,182.92L613.35,183.02 "/><path d="M551.15,166.47L551.37,166.30L551.40,166.28L552.06,166.10 "/><path d="M624.51,187.64L623.32,187.00L622.47,186.79L622.27,186.56L621.83,186.46L621.81,186.20L620.90,185.39L620.35,185.08L619.81,184.99L619.37,184.73L618.83,184.62L617.86,184.19L617.20,184.07L615.83,184.14L615.66,184.02 "/><path d="M621.21,181.30L621.44,181.29L621.74,181.58L621.82,181.66L622.54,182.06L622.56,182.14L622.10,182.31L621.99,182.46L622.20,182.91L622.54,183.13L623.11,183.10L623.34,183.22L623.24,183.36L623.70,183.67L624.25,183.84L624.83,184.33L625.80,184.91L626.40,185.10L626.84,185.36L627.77,186.29L628.22,186.47L628.24,186.48L628.82,187.10L628.60,187.44L628.68,187.66L629.23,187.87L629.36,188.23L630.07,189.08L629.85,189.20L630.05,189.35L629.97,189.45L629.90,189.51L630.09,189.55L630.18,189.56L630.32,189.68 "/><path d="M637.48,180.79L637.93,181.26L637.72,181.55L637.95,181.98L638.40,182.17L638.39,182.77L639.27,183.46L641.40,184.63L641.64,184.98L641.64,185.14L641.62,185.76L641.21,186.30L640.68,186.33L640.33,186.20L640.25,186.17L640.15,186.16L639.37,186.11L639.20,186.30L638.45,186.44L637.71,186.46L637.50,186.35L636.84,186.36L636.61,186.30L635.92,186.40L635.59,186.23L635.44,186.27L635.55,186.55L635.19,186.55L634.87,186.71L634.31,186.79L634.36,187.21L634.07,187.37L633.17,187.42L633.48,187.70L633.38,188.01L633.36,188.09L632.90,188.47L633.22,188.62L633.26,188.64L633.05,189.13L633.01,189.16L632.67,189.47L632.60,189.52L632.52,189.90L632.36,190.04L632.28,190.10L631.90,189.96L631.70,190.08 "/><path d="M667.87,200.10L667.99,199.80L667.81,199.68L667.45,199.62L667.23,199.59 "/><path d="M667.87,200.10L668.14,200.16L668.46,200.23L669.00,200.35L669.16,200.38L669.23,200.49L669.26,200.53L669.75,200.72L670.37,200.82L671.33,200.83L672.34,200.85L673.57,201.03L674.26,201.21L674.50,201.27L675.31,201.30L675.80,201.32L676.66,201.60L678.07,201.91L678.33,201.90L678.51,201.89L678.75,201.94L679.16,202.02L679.19,202.03L679.24,202.04L679.38,201.98L680.20,201.65L680.33,201.73L680.41,201.71L680.63,201.68L681.49,201.82L681.93,201.89L682.14,201.71L682.61,201.73L682.88,201.55L683.43,201.57L683.65,201.58 "/><path d="M607.87,181.22L608.67,181.38L609.05,181.73L609.50,181.86L609.99,182.47L609.53,182.97L609.65,183.13L609.71,183.20L610.10,183.37L610.21,183.63L610.66,183.51L610.93,183.55L611.15,183.84L610.81,184.09L610.94,184.35L612.28,184.44L612.38,184.64L613.36,184.75L613.63,184.95L613.28,185.14L613.95,185.47L614.24,185.38L614.36,185.34L614.57,185.42L615.08,185.42L615.09,185.25L615.33,185.18L616.01,185.34L616.30,185.92L616.47,185.95L616.74,185.81L617.04,185.83L617.53,185.98L617.66,186.18L617.49,186.34L617.69,186.43L618.33,186.47L618.56,186.28L619.14,186.46L619.55,186.39L619.88,186.47L620.42,186.66L620.55,186.88L620.09,186.98L620.41,187.14L621.42,187.34L621.51,187.30L621.38,187.04L621.72,187.04L622.38,187.16L622.64,187.28L622.52,187.38L623.07,187.62L623.35,187.66L623.40,187.49L623.80,187.45L624.15,187.75L624.39,187.77L624.51,187.64 "/><path d="M550.26,168.35L550.76,168.21L551.33,167.51L551.29,167.15L550.68,166.83 "/><path d="M631.70,190.08L630.90,190.18L630.32,189.68 "/><path d="M572.16,174.93L571.96,174.40L571.64,174.23L571.56,173.44L571.16,173.05L571.27,172.79L571.49,172.68L571.58,172.68L572.66,172.68L573.17,172.59L573.77,172.65L574.74,172.56L575.10,172.36L575.74,172.19L575.95,172.04L576.33,171.98L576.51,171.96L578.26,172.03L578.45,171.93 "/><path d="M646.88,189.67L647.50,189.77L648.13,189.73L648.98,190.24L649.47,190.34L650.12,190.28L651.84,190.55L652.20,190.71L652.76,190.82L652.95,191.15L653.46,191.35L653.65,191.49L653.93,191.70L653.79,191.96L654.06,192.33L654.38,192.41L654.54,192.56L654.35,192.80L654.41,192.92L654.50,193.08L654.67,193.18L655.04,193.21L655.16,193.43L655.56,193.52L655.59,193.72L655.63,193.75L656.31,194.19L656.19,194.19L654.30,194.07L654.19,194.13L654.04,194.20L653.27,194.31L652.40,194.13L651.98,194.12L651.70,193.99L651.26,194.07L649.78,193.97L649.42,194.02L649.24,194.23L647.77,193.73L647.80,193.51L647.03,193.35L646.86,193.48L646.63,193.32L645.69,193.44L645.52,193.39L644.89,193.19L644.38,193.23L643.39,192.96L643.18,192.75L642.91,192.70L642.28,192.71L641.99,192.62L641.72,192.76L641.08,192.45L640.11,192.27L639.64,191.90L639.29,191.87L638.90,191.96L637.33,191.71L637.21,191.84L637.03,192.04L637.14,192.33L637.20,192.49L637.26,192.67L636.98,192.70 "/><path d="M630.32,189.68L630.33,189.75L630.35,190.00L630.06,190.41L629.59,190.43L629.49,190.67L629.10,190.66L627.67,189.84L627.95,189.66L627.62,189.49L626.92,189.63L626.77,189.48L626.86,189.35L626.43,189.32L626.10,188.99L626.27,188.93L626.51,189.09L626.76,189.05L627.00,188.85L626.71,188.70L626.16,188.77L625.93,188.49L625.58,188.59L625.44,188.78L625.23,188.76L624.49,188.30L624.24,188.15L624.58,188.07L624.97,188.08L624.97,187.97L624.51,187.64 "/><path d="M635.90,192.48L635.33,192.35L635.36,192.03L635.21,191.79L634.95,191.76L634.80,191.80L634.12,191.97L633.87,191.89L633.75,191.73L634.24,191.65L634.08,191.49L633.54,191.55L633.34,191.77L632.76,191.65L632.56,191.61L632.35,191.57L632.46,191.42L632.65,191.46L632.88,191.52L632.97,191.35L633.00,191.30L633.38,191.22L633.52,191.07L633.53,191.06L633.37,190.98L632.88,190.96L632.83,191.01L632.66,191.20L632.65,191.21L632.36,191.13L632.19,190.88L632.15,190.82L632.11,190.77L631.43,190.51L631.57,190.39L632.04,190.37L631.70,190.08 "/><path d="M667.87,200.10L667.49,200.04L667.31,200.02L666.86,199.85L665.46,199.89L665.18,199.81L664.94,200.03L664.58,200.12L663.83,200.10L663.47,200.18L662.43,200.06L662.23,200.03L662.02,200.24L661.60,200.29 "/><path d="M660.02,200.11L659.34,200.07L659.15,199.87L658.15,199.36L657.94,199.34L657.47,199.28L656.87,198.55L656.99,198.38L657.49,198.19L656.51,197.69 "/><path d="M592.14,181.65L591.60,181.64L591.42,181.51L590.63,180.94L589.74,180.46L587.91,180.40L587.47,180.27L587.02,180.26L586.26,179.55L585.85,178.41 "/><path d="M559.55,168.80L559.07,168.88L558.58,169.15L556.89,169.67L555.17,169.83L554.98,170.08L554.72,170.11L554.42,170.04L553.71,170.09L553.59,170.33L553.03,170.41L552.78,170.62L552.23,170.81L551.62,170.87L551.31,170.81L551.07,170.88L550.21,170.53L550.35,170.36L549.77,169.90L549.36,169.93L548.98,169.81L548.14,169.85L547.44,169.73L547.00,169.88L546.81,170.28L546.54,170.45L546.63,170.61L546.41,170.66L546.20,170.48L545.64,170.46L545.60,170.43L545.38,170.32L545.50,170.13L544.89,169.77L545.03,169.56L544.40,169.48L544.26,169.39L543.12,169.39L542.81,169.33L542.40,169.57L542.14,169.61L542.11,169.73L541.82,169.67L541.34,169.41 "/><path d="M552.05,172.67L552.09,172.54L552.14,172.36L552.20,172.19L552.10,172.02 "/><path d="M525.43,167.09L525.72,166.94L525.47,166.53L524.51,165.68L524.18,165.67L523.13,165.87L522.53,165.79 "/><path d="M620.61,189.45L619.87,189.41L619.42,189.53L618.74,189.56L618.29,189.74L618.13,189.95L618.38,190.49L618.92,190.83L619.18,191.44L618.95,191.59L618.30,191.74L618.15,191.78L617.79,191.71L617.67,191.53L616.98,191.46L616.73,191.30L615.94,191.20L615.39,191.26L614.85,190.85L614.41,190.66L613.96,190.48L613.50,190.11L613.39,190.10L612.92,190.02L612.29,189.12L612.09,189.12L611.61,188.90L610.18,188.55L609.65,188.60L609.60,188.41L609.29,188.40L609.00,188.23L607.86,188.10L607.64,187.93L607.13,187.90L606.02,187.61L605.49,187.63L605.38,187.59L604.72,187.41L604.35,187.40L604.21,187.31L604.47,187.09L603.62,187.24L603.26,187.18L602.99,187.15L602.89,187.29L602.01,187.44L602.16,187.56L602.56,187.56L602.27,187.90 "/><path d="M597.13,185.00L597.41,185.52L597.62,185.63L597.87,185.55L597.68,185.14L597.96,185.14L598.07,185.39L598.53,185.73L598.92,185.87L599.17,186.19L599.32,186.20L599.49,186.09L599.80,186.21L599.71,186.29L599.67,186.32L599.97,186.46L600.00,186.46L600.40,186.49L600.41,186.73L600.67,186.91L600.77,187.20L601.08,187.48L601.67,187.69L602.27,187.90 "/><path d="M621.36,193.88L622.09,194.02L622.64,194.33L623.21,194.49L624.44,194.42L624.96,194.38L625.83,194.03 "/><path d="M589.47,184.81L588.95,184.60L588.93,184.59L588.40,184.52L588.15,184.85L587.31,184.62L586.88,184.72L586.33,184.56L586.36,184.36L585.99,184.29L585.51,184.32L584.83,184.06L584.64,183.89L584.76,183.71L584.56,183.46L584.71,183.15L584.29,182.87L584.46,182.63L584.11,182.39L583.68,181.79L583.26,181.62L582.36,180.85L582.33,180.69L582.30,180.52L582.55,179.25L583.26,179.13 "/><path d="M569.90,179.38L569.74,179.73L568.97,180.24 "/><path d="M568.97,180.24L568.56,179.77L568.47,179.76L568.26,179.75L567.93,179.07L567.48,178.59L566.29,178.01L565.91,177.12L566.33,176.77L568.04,176.06L568.72,175.88L568.64,175.57 "/><path d="M524.74,167.61L524.63,167.69L524.98,167.94L524.72,168.15L524.19,168.29 "/><path d="M561.05,178.48L561.16,178.32L561.45,177.91L561.81,177.68L562.62,177.64L563.41,177.27L563.55,177.12L563.42,177.01L564.26,176.55L564.53,176.50 "/><path d="M624.77,194.84L625.45,195.15L626.10,195.22L626.87,195.46L627.38,195.62L627.72,195.73L627.88,195.78L628.55,196.12L628.78,196.17L628.96,196.21L629.34,196.29L629.89,196.28L629.90,196.29L629.94,196.45L630.31,196.61L630.85,197.11L630.87,197.13L630.73,197.22L630.82,197.29L631.10,197.51L631.72,197.74L632.11,197.89L632.57,197.92L632.70,197.74L632.94,197.76L633.61,198.07L633.62,198.07L633.99,198.41L634.08,198.49L634.44,198.55L634.49,198.48L634.18,198.29L634.23,198.25L634.29,198.20L634.51,198.28L634.76,198.38L635.06,198.34L635.30,198.31L636.67,198.32L636.70,198.37L636.83,198.58L636.84,198.58L636.84,198.58L637.24,198.48L637.24,198.48L637.24,198.48L637.26,198.65L637.50,198.76L638.03,199.01L638.24,199.03L638.50,199.05L638.87,199.22L639.23,199.24L639.51,199.25L639.58,199.25 "/><path d="M540.74,169.17L540.65,169.33L542.54,170.61L543.55,170.92L543.94,171.04L544.26,171.32L544.60,172.00L544.40,172.31L544.37,172.36L543.20,172.92L542.80,173.30L542.74,173.36L542.88,173.66 "/><path d="M560.58,179.19L561.33,179.42L561.70,179.41L561.81,179.32L561.85,179.31L561.85,179.31 "/><path d="M519.15,168.63L519.22,168.53L520.08,168.40L520.12,168.39L520.63,167.88L521.03,167.88L521.38,167.58L521.70,167.06L521.49,166.87L521.12,166.73L521.06,166.30 "/><path d="M563.44,179.35L563.48,179.42L563.75,179.93L564.21,180.28L565.14,180.97L565.80,181.23L566.54,181.33L566.81,181.42L567.05,181.49L567.44,181.35L568.12,181.38L568.18,181.39L568.31,181.39L568.33,181.38L568.47,181.29L568.55,181.29L569.29,181.35L569.79,181.27L569.43,181.03L569.38,180.99L569.04,181.04L568.86,180.94L568.92,180.91L569.11,180.82L569.17,180.61L568.76,180.44L568.97,180.24 "/><path d="M607.02,190.01L606.42,191.14L606.70,191.70L606.62,191.84L606.38,192.23L606.29,192.37L606.01,192.43L605.35,192.23L605.30,192.21L604.54,191.88L603.73,191.05L602.35,189.65L602.82,189.29L602.77,189.04L602.60,188.84L602.26,188.44L602.42,188.20L602.27,187.90 "/><path d="M566.66,174.22L566.40,174.28L566.03,174.58L564.65,174.91L561.83,175.36L561.72,175.35L561.28,175.31L561.17,175.46L560.62,175.52L559.99,175.79L559.59,175.76L559.39,175.91L558.71,176.04L558.63,176.05L558.53,176.04L558.26,175.99L558.12,176.03L557.89,176.11L557.69,176.11L557.49,176.11L556.72,176.62L555.60,176.98L555.44,177.02L555.18,177.60L555.36,177.85L555.38,177.88L555.88,178.54L555.94,178.84 "/><path d="M619.37,197.08L621.83,197.23L624.36,197.39L625.56,197.80L625.63,197.80L627.10,197.93L628.96,197.98L630.34,198.01L631.02,198.15L631.24,198.19L631.38,198.24L631.69,198.35L632.23,198.55L632.57,198.67L632.65,198.70L632.97,198.81L634.38,199.13L634.49,199.12L634.55,199.12L634.66,199.11L634.83,199.10L635.86,199.03L636.89,199.16L637.47,199.24L637.69,199.26 "/><path d="M642.48,200.60L642.00,200.65L641.83,200.77L641.72,200.84L641.07,200.72L641.05,200.72L640.81,200.78L640.75,201.03L640.95,201.20L641.37,201.33L641.49,201.44L642.07,202.02L642.13,202.08L642.35,202.17L643.15,202.49L643.31,202.51L643.51,202.53L643.63,202.63L643.66,202.66L643.33,202.96L643.21,203.07L643.08,203.18L642.88,203.25L642.84,203.26L641.77,203.24L641.38,203.37 "/><path d="M634.44,200.35L637.29,201.07L637.61,201.15L639.42,201.76L639.63,201.83L639.64,201.83L640.14,202.13L640.43,202.30L640.87,202.87L640.81,203.07L641.38,203.37 "/><path d="M547.04,177.90L547.26,177.85L547.97,178.00L548.28,178.07L548.96,178.10L549.72,178.24L550.49,178.21L550.92,178.47L551.03,178.72L551.45,178.90L551.75,178.94L552.33,178.69 "/><path d="M588.60,190.33L588.54,190.21L588.40,189.92L588.41,189.89L588.43,189.86L588.63,189.42L588.72,189.38L589.08,189.22L589.12,189.20L589.15,189.02L589.17,189.02L589.54,189.03L589.38,188.88L589.19,188.72L589.29,188.56L589.57,188.49L589.66,188.47L589.64,188.43L589.61,188.36L590.19,188.10L590.63,187.48L590.71,187.36L590.31,187.02L590.34,186.96L590.52,186.61 "/><path d="M599.11,191.62L599.57,191.56L600.37,191.62L600.62,191.87L600.83,192.08L600.95,192.15L600.96,192.15L601.24,192.30L601.41,192.71L601.67,192.89L601.59,193.04L601.89,193.22L602.04,193.30L602.65,193.39L602.62,193.93L602.70,194.14L602.76,194.27L602.91,194.64L603.37,195.01L604.75,195.39L604.98,195.58 "/><path d="M604.98,195.58L605.00,195.58L605.23,195.59L605.41,195.71L605.55,195.80L607.17,196.07L607.76,195.96L608.73,195.99L610.09,196.26L611.25,196.34L613.50,196.48L615.04,196.71L615.66,196.62L617.41,196.65L618.27,196.84L619.37,197.08 "/><path d="M665.60,211.44L664.53,211.63L663.35,211.83L662.40,211.73 "/><path d="M662.40,211.73L662.38,211.63L662.37,211.58L662.36,211.56L662.35,211.48L662.56,211.46L662.65,211.28L663.09,211.27L663.32,211.15L663.34,211.14L663.81,210.90L664.34,210.95L664.53,210.88L664.62,210.85L665.14,210.95L665.33,210.80L665.53,210.90L665.87,210.86L665.91,210.84L666.34,210.71L666.33,210.50L667.00,210.61L667.90,210.43L669.22,210.46L669.32,210.31L669.37,210.25L669.13,209.92 "/><path d="M661.93,208.08L661.81,208.18L661.60,208.36L661.10,208.37L660.58,208.57L660.44,208.62L660.21,208.71L659.40,208.53L658.86,208.23L658.48,208.16L658.04,208.30L657.87,208.35L656.36,208.41L655.31,208.13L655.23,207.93L655.02,207.91L654.70,208.10L654.65,208.14L654.18,208.24L653.91,208.46L653.44,208.41L653.30,208.48L653.07,208.61L652.83,208.49L652.57,208.52L652.51,208.57L652.13,208.87L651.96,209.00 "/><path d="M641.38,203.37L641.75,203.50L641.92,203.56L643.49,203.83L643.79,203.81L644.09,203.79L645.28,203.91L645.66,203.95L647.12,204.22L647.96,204.44L648.73,204.79L650.60,205.41L651.92,206.18L651.78,206.73L652.05,207.14L652.14,207.27L651.74,207.56L651.20,207.55L650.19,207.54L649.90,207.65L649.81,207.81L650.16,208.15L650.20,208.18L651.65,208.79L651.70,208.83L651.96,209.00 "/><path d="M651.96,209.00L652.83,209.11L653.93,209.46L656.02,209.89L656.72,210.49L657.16,210.68L659.25,210.88L659.27,210.95L659.40,211.26L659.43,211.34L659.90,211.49L660.31,211.55L660.40,211.56L661.66,211.74L661.81,211.76L662.30,211.74L662.40,211.73 "/><path d="M573.98,188.03L574.70,187.82 "/><path d="M702.11,217.84L702.00,217.67L701.70,217.65L701.14,217.88L701.09,218.04L700.92,218.07L700.71,218.10L699.85,218.26L699.36,218.20L699.11,217.92L698.86,217.88L698.55,218.13L698.55,218.14L698.50,218.18L697.26,218.36L695.96,218.14L694.98,218.29L694.75,218.26L694.54,218.07L693.52,217.93L692.98,218.02L692.66,217.90L692.34,217.93L692.05,217.81L691.40,217.80L691.21,217.76L690.66,217.63L690.66,217.91L690.43,217.97L690.32,217.95L690.06,217.91L689.25,217.78L689.32,218.07L688.99,218.23L688.24,218.31L687.65,218.16L686.65,218.36L685.94,218.19L685.07,218.35L684.40,218.25L684.16,218.38L683.32,218.49L682.97,218.43 "/><path d="M526.06,175.43L527.79,174.45L530.41,173.92L531.03,173.93L532.86,173.49 "/><path d="M594.58,194.07L595.13,194.23L595.31,194.51L595.61,194.98 "/><path d="M601.39,196.68L601.46,196.45L601.17,196.12L600.84,195.95L600.91,195.88L601.01,195.79L601.39,195.78L601.91,196.01L601.96,196.03L602.02,196.01L602.27,195.88L603.49,195.90L603.49,195.74L604.40,195.78L604.77,195.56L604.98,195.58 "/><path d="M601.39,196.68L600.64,196.36L600.37,196.24L600.25,196.13L599.52,195.38L599.12,195.31L599.01,195.33L598.51,195.45L598.06,195.35L596.03,194.49L595.11,193.87L594.18,193.42 "/><path d="M619.37,197.08L618.04,197.06L617.25,196.88L614.75,196.99L613.59,196.76L613.47,196.75L612.53,196.69L612.02,196.76L610.69,196.75L610.28,196.75L609.20,196.44L609.09,196.42L608.73,196.39L608.29,196.36L607.88,196.33L607.40,196.57L606.15,196.48L606.09,196.47L605.96,196.48L605.96,196.49L604.54,196.60L604.36,196.69L604.32,196.71L604.20,196.77L603.83,196.94L602.27,197.10 "/><path d="M601.39,196.68L602.20,196.87L602.27,197.10 "/><path d="M655.93,212.20L658.79,212.24L659.42,212.29L660.47,212.38L660.59,212.39L661.12,212.43L661.56,212.32L661.66,212.07L662.34,211.94L662.40,211.73 "/><path d="M526.86,176.73L526.97,176.75L529.16,177.28L530.01,177.26L530.41,177.16L530.71,177.18L531.03,177.35L531.55,177.37L531.86,177.23L532.77,177.29L533.04,177.46L534.34,177.59L535.22,177.51 "/><path d="M574.52,189.79L574.95,189.51L574.95,188.93L575.60,188.85L575.80,188.68 "/><path d="M595.61,194.98L595.14,195.18L594.90,195.42 "/><path d="M507.42,171.19L506.80,171.38L506.03,171.42L505.72,171.30 "/><path d="M602.27,197.10L602.38,197.44L602.74,197.58L602.90,197.89L603.04,198.16L603.42,198.30L603.82,198.44 "/><path d="M655.93,212.20L655.72,212.55L656.74,213.21L656.79,213.24 "/><path d="M591.65,195.17L593.22,195.16L594.90,195.42 "/><path d="M509.46,172.83L509.81,172.33L510.02,172.03L509.82,171.82L509.02,171.59L508.63,171.35L508.21,171.29 "/><path d="M698.70,225.23L698.72,225.15L698.83,224.73L698.60,224.32L698.00,223.80L697.92,223.62L698.07,223.34L697.85,222.92 "/><path d="M500.06,170.57L500.39,170.43L500.47,170.24L500.82,170.14L501.32,169.55L501.67,169.57L501.85,169.66L501.78,169.71L501.30,169.80L501.62,170.37L502.04,170.52L502.59,170.60L503.66,171.13L504.10,171.20L504.69,171.56L506.27,171.99 "/><path d="M641.38,203.37L640.95,203.55L640.70,203.43L639.55,203.66L639.82,203.90L639.67,204.01L639.34,204.00L638.53,203.97L638.28,204.02L637.72,203.93L637.58,203.91L637.36,204.19L637.63,204.50L637.08,205.22L637.08,205.23L636.67,205.23L636.17,205.37L635.85,205.45L635.13,205.35L635.04,205.36L633.66,205.48L633.55,205.48L633.33,205.45L633.28,205.47L632.74,205.67L631.80,205.56L630.88,205.46L630.31,205.59L629.96,205.47L629.34,205.45L629.40,205.62L629.19,205.79L628.47,205.83 "/><path d="M599.85,197.92L600.75,197.85L601.31,197.95L601.74,197.85L601.92,197.69L601.66,197.47L601.54,197.38L601.67,197.21L601.35,196.90L601.32,196.87L601.39,196.68 "/><path d="M599.85,197.92L599.14,197.47L598.65,197.28L598.06,197.05L597.40,196.46L596.71,195.83L596.32,195.47L595.94,195.27L595.79,195.19L595.61,194.98 "/><path d="M627.16,205.56L626.93,205.39L626.07,205.34L625.78,205.20L625.06,205.11 "/><path d="M578.22,189.35L578.82,189.60L578.98,189.86L579.90,189.98L580.36,190.19L580.40,190.34L580.53,190.38L581.19,190.60L581.23,190.74L581.79,190.94L581.93,191.31L582.20,191.54L582.22,191.55L582.23,191.55L582.17,191.67L582.67,191.85L582.60,192.07L582.27,192.22L582.32,192.66L583.05,193.08L583.39,193.56L583.73,193.71L584.13,193.89L584.36,194.00L584.94,194.27L585.45,194.36L585.75,194.41L586.10,194.48L586.96,194.38L587.27,194.55L588.28,194.48L588.61,194.57L588.74,194.61L588.96,194.67L590.66,194.79L590.78,194.81L591.30,194.90L591.36,194.95L591.65,195.17 "/><path d="M624.18,205.07L622.86,204.84 "/><path d="M534.81,181.00L534.29,180.72L534.05,180.59L534.83,180.20L534.61,179.71L533.89,179.48L533.68,179.19L534.47,178.64L534.36,178.46L535.45,178.16L535.69,177.88 "/><path d="M655.93,212.20L653.80,211.89L652.63,212.18L651.67,212.06L650.37,212.14L650.21,212.53L649.76,212.68L649.67,212.76L649.51,212.91L648.32,213.13 "/><path d="M609.65,202.61L609.59,202.55L610.17,202.27L610.34,202.19L610.92,202.26L611.51,202.33L612.49,202.73L612.84,202.76L613.09,203.16L613.18,203.30L613.24,203.41L613.82,203.49L614.12,203.66L614.32,203.77L615.42,203.63L615.56,203.57L615.94,203.39L616.06,203.33L616.65,203.32L616.77,203.67L617.01,203.84L617.55,203.91L617.72,204.30L618.16,204.42L618.36,204.42L618.76,204.23L618.93,204.01L619.35,204.02L619.38,204.02L619.43,204.02L619.88,204.53L619.96,204.62L620.16,204.62L620.78,204.28L621.72,204.54L621.95,204.70 "/><path d="M699.78,226.21L701.80,226.87L702.11,227.11L702.17,227.15L702.48,227.70L702.44,228.04L702.43,228.11L701.98,228.38L702.32,228.77L702.82,229.06L703.46,229.26 "/><path d="M674.79,213.69L674.65,213.85L674.62,213.86L673.89,214.04L673.81,214.14L673.73,214.23L673.79,214.30L674.30,214.32L674.36,214.32L674.34,214.36L674.10,214.65L674.00,214.78L674.01,214.86L674.01,214.88L674.04,215.17L673.53,215.27L672.98,215.49L672.88,215.53L672.82,215.67L672.50,215.70L672.32,216.01L672.29,216.07L672.26,216.12L671.93,216.23L671.79,216.27L671.73,216.35L671.52,216.66L670.56,216.78L670.41,216.91L670.16,217.13L669.34,217.85L669.10,217.89L669.05,218.05L669.50,218.46L669.43,218.57L669.14,218.99L668.24,219.11L667.79,219.36 "/><path d="M609.65,202.61L609.07,202.78L608.46,202.26L608.35,202.17L607.71,202.12L607.43,202.10L606.66,202.04L605.90,201.98L605.67,201.96L605.67,201.96L605.51,201.75L605.52,201.70L605.53,201.63L605.59,201.28L605.45,201.15L604.82,201.25L604.63,201.05L604.90,200.87L604.80,200.66L604.73,200.51L604.35,200.68L603.37,200.69L603.41,200.29L603.00,199.96L603.09,199.67L602.73,199.37L602.51,199.20L602.27,199.10L602.19,199.07L601.72,198.88L601.55,198.81L600.61,198.44L599.85,197.92 "/><path d="M682.97,218.43L683.44,218.75L683.40,218.90L682.68,219.17L682.57,219.79L682.15,220.05L682.14,220.64L681.69,221.03L681.69,221.06L681.65,221.29L681.43,221.45L680.99,221.46L681.12,221.81L680.75,222.33L680.71,222.67L681.01,223.04L681.05,223.51 "/><path d="M682.97,218.43L682.46,218.32L681.57,217.68L680.86,217.64L679.32,217.36L679.01,217.53L678.51,217.51L678.28,217.61L678.00,217.63L677.70,217.66L676.52,218.08L676.14,218.66L676.04,218.69L674.93,219.08L674.91,219.09L674.34,219.53L674.07,219.53L673.52,219.86L673.55,220.37L674.21,220.71L674.15,221.22L673.12,221.53L672.93,221.62L672.45,221.85 "/><path d="M572.57,190.03L571.63,190.43L570.56,190.60L570.28,190.50L569.76,190.56L568.58,190.88L568.29,191.07L567.15,191.25L566.48,191.82L566.46,191.82L565.95,192.01L565.35,192.02L565.16,192.03L565.03,191.88 "/><path d="M580.62,196.29L582.41,196.40L583.94,196.33L583.96,196.33L584.31,196.21L585.00,196.15L585.19,196.06L585.31,196.00L586.74,195.88L587.69,195.96L588.15,195.99L588.82,196.05L589.24,195.81L589.51,195.67L589.90,195.74L590.85,195.52L590.92,195.49L591.42,195.27L591.65,195.17 "/><path d="M667.79,219.36L667.31,219.49L666.92,219.48L666.64,219.67L666.76,219.83L666.34,220.09L665.73,220.17 "/><path d="M703.46,229.26L703.26,229.43L702.88,229.37L702.47,229.55L702.43,229.81L701.75,229.91L699.98,229.67L699.23,229.79L698.88,229.68L698.41,229.32L698.06,229.19L697.61,229.25 "/><path d="M644.81,214.40L645.10,213.96L645.98,213.71L645.84,213.47L646.19,213.23L646.86,213.18 "/><path d="M651.96,209.00L651.32,209.27L650.68,209.20L650.43,209.17L649.22,209.51L648.77,209.37L648.32,209.49L647.11,209.43L646.70,209.39L645.63,209.26L645.26,209.12L644.82,209.10L644.41,209.08L643.61,208.86L641.99,208.84L642.10,209.03L641.47,209.63L640.87,209.79L640.37,209.77L639.27,209.72L638.86,209.56L638.21,209.54L637.86,209.53L637.08,209.60L635.47,209.51L634.62,209.58L633.74,209.65L632.82,209.55L632.70,209.57L632.40,209.61L631.56,209.55L631.06,209.66L630.36,209.55L630.02,209.41L629.00,209.37L628.91,209.39L628.23,209.56L628.04,209.67L628.10,209.83 "/><path d="M523.45,181.18L523.83,181.17L523.93,181.11L524.44,180.83L524.48,180.67L525.32,180.45L526.19,180.03L526.73,180.03L527.20,180.14L527.56,180.32L528.16,180.21L527.54,179.99L527.61,179.91L528.21,180.19L528.76,180.03L529.67,180.05L530.90,179.69 "/><path d="M696.24,229.11L695.48,229.16L694.64,228.76L693.78,228.70L693.40,228.49L693.49,228.14L693.33,227.95 "/><path d="M571.85,191.78L572.14,191.46L573.39,191.65L574.17,191.68L574.26,191.70L575.59,191.94L576.09,192.15L576.13,192.21L576.36,192.48L576.65,192.60L576.27,193.35L576.82,193.81L576.79,193.97L578.03,194.90L578.29,195.25L578.36,195.35L578.77,195.56L578.06,196.06L578.03,196.08L578.76,196.45 "/><path d="M493.20,169.04L492.29,169.35L491.99,169.59L491.49,169.69L491.00,169.70L490.57,169.50L490.20,169.48L489.96,169.66L489.22,169.68L488.53,169.38L488.01,169.56L487.77,169.43L487.63,169.45L487.60,169.68L487.43,169.79L486.86,169.77L486.28,170.01L485.41,170.14L483.85,169.87L483.20,169.83L482.97,169.90L482.88,170.04L483.14,170.41L483.17,170.43L483.21,170.45L483.51,170.64L483.47,170.74 "/><path d="M578.52,196.64L578.64,196.55L578.76,196.45 "/><path d="M715.45,235.42L715.31,235.28L715.78,235.12L715.71,234.96L715.23,234.88L714.51,234.58L714.77,234.40L714.70,234.21L714.58,233.89L714.03,233.93L712.04,233.71L711.49,233.40L711.61,233.19L710.59,232.72L709.92,232.81L709.48,232.69L709.30,232.42L709.26,232.41L708.94,232.33L708.78,232.11L708.43,232.05L708.13,231.86L708.46,231.62L708.62,231.50L708.35,231.35L708.22,231.28L708.23,231.24L708.23,231.17L708.70,230.98L709.35,231.05L709.36,231.05L710.35,230.78L710.10,230.56L709.87,230.52L709.34,230.41L709.10,230.25L708.74,229.29L708.32,229.04L708.10,229.00L708.01,229.10L707.11,229.26L705.88,228.92L705.34,229.37L704.96,229.41L704.40,229.46L703.46,229.26 "/><path d="M583.62,197.53L583.23,197.74L582.80,197.67L582.17,197.83L581.79,197.77 "/><path d="M609.65,202.61L610.00,203.06L609.96,203.12L609.58,203.69L609.33,203.84L609.42,203.99L609.33,204.11L609.27,204.19L609.26,204.20L609.31,204.21L609.43,204.25L609.69,204.33L609.78,204.45L609.69,204.63L609.66,204.68L609.76,204.72L610.13,204.87L610.47,204.90L610.69,205.07L610.88,205.11L611.37,205.22L611.59,205.26L611.85,205.32L612.19,205.68L612.62,205.81L612.35,206.05L612.61,206.23L612.92,206.45 "/><path d="M665.19,220.67L664.93,220.95L664.24,221.05 "/><path d="M568.73,194.56L568.62,194.42L568.72,194.32L569.11,193.90L569.71,193.74L569.81,193.63 "/><path d="M577.51,196.93L577.28,197.00 "/><path d="M569.32,195.18L569.16,195.02 "/><path d="M577.28,197.00L577.31,197.11L577.25,197.16L576.93,197.41L577.21,197.70L577.27,197.72L577.63,197.80L577.68,197.94L578.24,197.80L579.65,197.66L580.40,197.88 "/><path d="M575.57,197.42L576.86,197.02L577.28,197.00 "/><path d="M715.45,235.42L716.53,235.79L716.65,235.59L717.82,235.77L718.09,236.08L718.54,236.16L718.83,236.39L719.36,236.42L719.90,236.77L720.61,236.91L721.63,237.38L721.83,237.48L722.38,237.76L722.43,237.92L721.95,237.95L721.67,238.15L721.73,238.29L722.73,238.36L723.44,238.89L723.42,239.06L724.12,239.43L724.30,239.47L724.71,239.55L724.93,239.39L725.28,239.13L726.57,239.25L726.78,239.43L726.91,239.54L726.90,239.54 "/><path d="M667.79,219.36L667.31,219.22L665.98,219.24L665.91,219.46L665.72,219.51L664.63,219.24L663.25,219.55L662.90,219.93L662.61,219.96L662.32,220.17L661.92,220.20L661.68,220.05L660.92,220.30L660.29,220.64L660.09,220.87L659.70,220.89L659.43,221.01L659.35,221.31L658.97,221.68 "/><path d="M533.57,186.37L533.62,186.09L533.72,185.58L533.58,185.40L532.77,185.08L532.41,185.07L531.90,185.30L531.29,185.36L530.88,185.40L530.45,185.62L529.73,185.74L528.10,185.58 "/><path d="M522.71,183.58L523.32,183.97L523.36,183.98L523.65,184.07L523.88,184.30L523.81,184.47L523.37,184.60L523.81,184.98 "/><path d="M524.65,185.26L524.73,185.42L525.89,185.56L526.04,185.73 "/><path d="M494.31,173.32L494.17,173.52L492.58,173.40L492.12,173.55L491.49,173.55L491.22,173.74L489.87,173.89L488.76,173.83L488.32,173.64L487.98,173.61L487.49,173.70L487.36,173.80L487.70,173.95L487.36,174.06L486.60,174.13L485.97,174.08L485.86,174.13L486.10,174.24L485.67,174.41L485.17,174.22L484.19,174.26L483.93,174.36L483.51,174.12L483.25,173.98L482.29,173.79L481.96,173.72L481.43,173.82L481.38,173.95L480.76,174.01L480.50,173.90L480.19,173.95 "/><path d="M594.90,195.42L594.58,195.63L594.32,195.80L593.58,195.92L593.30,196.04L593.22,196.07L592.69,196.51L592.68,196.60L592.65,196.78L592.60,197.06L592.57,197.22L592.58,197.23L593.17,197.53L593.45,197.86L593.52,197.88L594.62,198.18L595.10,198.13L595.17,198.17L595.47,198.32L595.65,198.18L595.90,198.20L596.85,198.67L596.52,198.96L596.89,199.09L597.11,199.17L597.20,199.26L597.51,199.62L597.55,199.67L597.82,199.71L598.01,199.74L598.33,199.80L598.39,199.81L598.49,199.83L598.50,200.10L599.04,200.11L599.27,200.12L600.32,200.57L600.35,201.08L600.21,201.30L600.20,201.30L599.66,201.38L599.45,201.41L599.45,201.76L599.31,201.87L599.23,201.94L599.07,201.95L598.90,201.96L598.82,202.03L598.71,202.14L598.42,202.42L598.25,202.59L598.18,202.59L597.89,202.63L597.83,202.83L597.09,202.82L596.94,202.92L596.86,203.24L596.75,203.67L596.84,203.74L596.90,203.80L597.21,203.80L597.42,204.11L597.52,204.26L597.51,204.30L597.39,204.62L597.16,204.69L596.96,204.76L596.76,205.13L596.12,205.18L595.92,205.40L595.62,205.45L594.66,205.17L594.37,204.98L593.89,204.91L593.50,205.05 "/><path d="M592.71,204.81L591.79,205.13 "/><path d="M693.35,229.49L693.91,229.79L693.95,230.09L694.27,230.57L694.01,230.78L694.12,230.98L694.90,231.40L695.28,231.73L695.32,232.42L695.65,232.60L695.38,232.72L695.15,233.04L695.79,233.65L697.14,233.90L697.25,234.01L697.05,234.14L697.14,234.46L698.10,235.10L698.10,235.25L698.10,235.45L698.26,235.54L698.32,235.54L698.66,235.50L698.67,235.51L700.50,235.82L701.70,235.81L702.53,235.78L702.76,235.68L703.81,235.68L704.57,235.37L705.02,235.49L707.81,235.79L708.12,235.70L709.22,235.40L710.24,235.58L710.26,235.27L710.69,235.32L711.13,235.36L711.21,235.12L712.10,235.30L712.60,235.28L712.47,235.47L713.23,235.67L713.45,235.39L713.99,235.32L714.37,235.46L714.69,235.37L714.95,235.55L715.45,235.42 "/><path d="M490.89,176.85L491.08,177.61L490.60,177.93L491.06,178.10L491.47,178.64L491.92,178.47L492.37,178.45L493.06,178.60L493.54,178.86L493.59,179.17L493.68,179.23L493.91,179.37L494.18,179.36L494.31,179.22L494.58,179.23 "/><path d="M726.90,239.54L726.74,239.52L726.16,239.42L725.66,239.47L725.34,239.41L724.86,239.67L724.79,239.70L724.22,239.67L721.96,238.81L721.33,238.57L720.70,238.54L720.46,238.69L720.51,238.92L720.26,239.08L719.78,239.08L719.33,239.43L718.92,239.41L718.66,239.22L718.54,239.13L718.13,239.01L717.60,239.02L717.21,239.50L716.91,239.67L715.92,239.48L715.21,239.51L715.10,239.71L715.28,240.31L714.12,240.25L713.28,240.42L712.81,240.72L711.61,240.90 "/><path d="M643.39,215.72L643.90,216.35L643.65,216.61L643.70,216.82L643.42,216.98L643.79,217.44L643.38,217.59L643.74,218.20L643.46,218.34L642.91,218.27L641.68,218.70L641.12,218.48L639.29,218.31L637.72,218.29L637.94,218.61L636.71,218.61L636.64,218.61L635.22,218.73L635.02,218.75L634.28,218.64L634.02,218.45L633.28,218.30L632.42,217.86L631.26,217.68L630.76,217.76L630.36,217.69L630.19,217.52 "/><path d="M620.29,215.07L620.79,214.83L620.79,214.73L621.09,214.76L621.30,214.87L622.19,214.71L622.43,214.74L622.83,214.96L623.61,215.03L624.13,215.29L624.41,215.43L625.02,215.53L625.09,215.53L626.10,215.48L626.40,215.29L626.74,215.33L627.00,215.46L627.41,215.45L627.59,215.41L628.93,215.13L629.10,215.00L630.96,215.14L632.07,215.02L632.35,214.95L633.44,214.67L633.96,214.27L634.45,214.20L634.74,214.00L634.65,213.81L635.43,213.20L636.83,213.15L637.03,213.14L637.06,213.10L637.31,212.73L637.71,212.76L637.91,212.66L637.86,212.46L637.45,212.21 "/><path d="M620.29,215.07L619.93,214.90L619.27,214.79L619.25,214.78L618.24,214.23L617.90,213.83L617.84,213.31L617.55,212.98L617.79,212.67L617.58,212.26L617.67,211.99L617.44,211.53L617.09,211.31L617.22,211.10L616.87,210.72L617.13,210.48L616.77,210.17L616.35,210.19L616.29,209.93L616.18,209.48L615.47,209.05L615.13,208.84L614.47,208.07L614.59,207.93L614.65,207.86L614.47,207.68L613.19,207.30L613.51,206.97L613.66,206.80L612.92,206.45 "/><path d="M480.77,176.77L481.01,176.85L481.36,176.72L481.99,176.69L482.15,176.71L482.59,176.77L482.91,176.68L483.50,176.69L485.71,177.88L486.71,178.07L487.98,178.04 "/><path d="M518.32,187.51L517.78,187.54L516.89,187.24L515.70,186.98L514.73,186.88L513.79,187.00L513.54,186.91L513.21,186.79 "/><path d="M660.93,218.91L658.70,219.81L658.58,220.01L658.42,220.11L657.83,220.46L657.64,220.82L657.67,221.15L656.74,221.94L655.90,223.00L655.18,223.28L654.69,223.78L654.37,224.26L654.60,224.50L654.59,224.53L654.43,224.94L654.59,225.36L654.56,225.69L654.53,225.97L654.35,226.18L654.27,226.27 "/><path d="M648.53,216.38L648.53,216.55L648.34,216.66L648.35,217.05L649.00,217.46L648.99,217.71L648.69,217.79L648.66,217.93L649.09,218.13L649.06,218.46L649.04,218.75L649.24,219.05L649.20,219.24L649.61,219.53L649.67,219.80L649.17,220.35L648.56,220.49L648.56,220.49L648.41,221.13L648.16,221.33L648.08,221.89L647.54,222.72L647.51,222.76L647.98,223.29L647.83,223.67L648.59,224.20L648.61,224.35L648.35,224.40L648.19,224.43L648.18,224.58L648.56,224.81L649.77,224.91L650.25,225.26L650.32,225.48 "/><path d="M630.19,217.52L630.19,217.32L629.21,217.33L629.00,217.17L628.79,217.01L628.35,217.18L627.54,217.16L627.34,216.93L626.81,217.01L626.15,216.67L625.55,216.67L625.19,216.92L625.33,217.15L625.20,217.50L625.04,217.55L623.97,217.22L623.71,217.27L623.39,217.33L622.84,217.20L622.49,217.40L621.24,217.62 "/><path d="M620.29,215.07L620.30,215.09L620.60,215.44L620.39,215.65L620.72,215.84L620.89,216.43L620.85,216.55L620.49,216.70L620.52,216.85L621.20,217.14L621.33,217.42L621.24,217.62 "/><path d="M569.64,196.06L569.80,196.44L569.06,197.03L568.98,197.43L568.79,197.62L568.72,197.68L568.81,197.97L569.68,198.46L569.69,198.49L569.78,198.75L570.11,198.86L570.25,198.92L570.26,198.92L570.24,199.01L570.24,199.01L570.23,199.05L570.09,199.06L569.37,199.14L569.37,199.15L569.14,199.89L568.65,200.17L568.22,200.86L568.30,200.91L568.35,200.95L568.51,201.05L568.45,201.24L568.52,201.39L568.66,201.67L568.37,201.83L568.27,201.89L568.34,202.11L568.21,202.21L568.07,202.32L568.20,202.49L568.19,202.52L568.13,202.76 "/><path d="M650.32,225.48L650.93,225.87L650.89,226.02L651.34,226.21L652.25,226.12L652.75,225.83L653.15,225.88L653.93,226.15L654.27,226.27 "/><path d="M568.13,202.76L568.21,202.83L568.49,202.77L568.71,202.73L568.71,202.73L569.35,202.72L569.82,203.02L570.05,202.83L569.82,202.68L570.37,202.29L571.75,202.01L572.16,202.07L572.29,201.92L573.54,201.98L574.08,202.11L574.51,201.91L574.61,201.86L575.94,201.64L576.09,201.48L576.16,201.39L577.23,201.21L577.49,200.92L578.76,200.82L580.83,200.21L581.29,200.18L581.70,200.07L581.93,200.00L583.81,199.47L584.19,199.43 "/><path d="M568.13,202.76L567.83,202.74L567.20,202.52L566.78,202.38 "/><path d="M663.33,221.75L663.07,222.16L662.63,222.31L662.32,222.77L662.09,222.85L661.79,223.33L661.55,223.48L661.42,223.77L661.55,224.02L663.78,224.17L665.31,223.52L665.88,223.48L667.08,223.22L667.58,223.40L667.48,224.31L667.80,224.50L668.61,224.47L669.12,224.13L669.42,224.09L670.34,224.25L671.40,224.18L671.57,224.01L671.76,224.02L671.89,224.17L672.43,224.29L672.97,224.23L673.25,224.30L673.79,224.78L673.85,225.18L674.16,225.64L673.77,225.93L673.96,226.46L674.37,226.89L674.72,227.02L674.39,227.56L674.42,227.68L674.49,227.92L673.65,228.45L673.54,228.65L674.71,229.33L674.69,229.53L674.04,229.77L673.71,230.27L672.89,230.42L672.72,230.59L672.75,230.69L673.42,230.96L673.42,231.12L672.87,231.03L672.82,231.41L673.08,231.78L673.29,232.43L673.43,232.53L673.92,232.57L674.28,232.82L674.24,232.98L674.00,233.05L673.78,233.11L673.82,233.34L673.90,233.41L674.68,234.08L674.69,234.12L674.90,234.47L675.61,235.04L676.27,235.21L676.38,235.27L676.53,235.36 "/><path d="M689.33,225.40L689.28,225.53L688.10,225.71L687.43,225.97L687.03,226.48L686.51,226.56L686.22,226.81L685.46,226.96L685.01,227.15L684.35,227.09L683.52,227.46L683.33,227.62L683.24,227.70L682.58,227.77L682.49,227.92L682.92,228.50L682.71,229.31L682.92,229.54L682.84,229.73L683.03,229.89L682.94,230.06L683.30,230.36L683.22,230.56L683.59,231.00L684.11,231.24L684.22,231.56L683.94,231.97L683.28,232.46L683.40,232.77L683.27,232.93L683.16,233.06L683.22,233.21L683.27,233.31L682.99,233.68L682.66,233.87L682.79,234.02L682.36,234.30L682.53,234.66L682.33,235.01L682.51,235.20L682.72,235.42L682.85,235.56L682.77,236.39L682.59,236.50L682.73,236.61L682.51,236.64L682.43,236.66L682.25,236.98L681.97,237.15 "/><path d="M676.53,235.36L676.83,235.37L677.11,235.38L677.74,235.87L678.22,235.98L678.81,236.38L680.22,236.56L680.84,236.89L681.68,237.08L681.97,237.15 "/><path d="M596.72,207.59L595.20,207.65L594.56,207.91L594.27,208.50L594.02,208.65L593.21,208.59L592.35,209.39L591.57,209.46L591.40,209.71L591.04,209.92L591.04,210.12L591.04,210.18L590.32,210.64L590.04,210.82L589.53,210.81L588.95,210.68L588.36,210.40L587.71,210.32L587.30,210.12L587.11,210.03L584.66,209.68L583.84,209.33L583.30,209.11L582.17,208.73L581.67,208.55L581.38,208.55 "/><path d="M581.38,208.55L581.20,208.24L581.10,208.22L580.70,208.15L580.26,207.83L579.90,207.79L579.80,207.88L580.01,207.99L579.83,208.15L579.74,208.15L579.12,208.09L579.06,208.07L578.79,207.97L578.71,207.97L578.25,207.98L578.17,207.98L577.87,207.68L577.81,207.62L577.55,207.61L577.50,207.61L577.28,207.79L576.27,207.62L576.15,207.61 "/><path d="M590.82,205.49L590.62,205.79L590.76,205.90L590.56,206.08L590.27,206.11L589.97,206.03L589.69,206.12L587.81,205.95L587.41,206.04L586.03,205.94L583.64,206.26L583.12,206.20L581.52,206.63L580.47,206.64L580.45,206.64L580.28,206.76L580.07,206.77L578.96,206.79L578.82,206.86L578.76,206.88L578.67,206.88L578.20,206.90L577.82,207.21L577.74,207.28L577.49,207.29L577.25,207.31L577.01,207.32L576.22,207.58L576.15,207.61 "/><path d="M711.61,240.90L710.95,241.11L710.73,241.59L710.42,241.66L710.28,241.64L709.83,241.61L708.97,241.77L708.61,241.84L708.40,242.03L708.97,242.32L708.93,242.48L708.29,242.49L707.99,242.40L707.46,242.00L706.24,241.81L705.68,241.61L704.96,241.14L704.80,241.14L704.40,241.13L704.01,241.12L703.54,241.03L702.89,241.27L702.60,241.23L702.41,240.97L702.07,240.83L701.81,240.73L699.55,241.04L698.99,240.99L698.46,241.43L696.76,241.47L695.75,241.72L695.58,241.68L695.39,241.64L695.26,241.44L695.22,241.39 "/><path d="M567.02,203.97L567.08,203.90L567.09,203.90L567.09,203.89L567.09,203.89L567.09,203.89L567.26,203.68L567.36,203.64L567.47,203.61L567.82,203.70L567.79,203.91L567.78,204.07L567.76,204.17L568.06,204.61L567.96,204.74L567.74,205.02L568.27,205.14L569.07,205.33L569.65,205.74L570.39,205.76L570.61,205.61L571.03,205.68L571.25,205.79L570.90,206.12L572.95,206.46L572.64,206.75L572.60,206.79L572.67,206.89L573.37,207.07L573.42,207.09L573.42,207.09L573.74,207.17L573.83,207.18L573.89,207.19L574.30,207.23L574.36,207.27L574.51,207.37L574.87,207.40L575.42,207.58L576.05,207.60L576.12,207.60L576.15,207.61 "/><path d="M598.06,214.12L597.57,213.86L597.40,213.63L597.42,213.35L597.24,213.19L597.26,212.45L597.52,212.26L597.96,212.16L598.98,212.14L599.60,211.73L600.36,211.42L601.54,211.42L601.92,211.19L602.67,211.25L602.99,211.35L603.29,211.44L603.84,211.39L605.08,211.69L605.53,211.67L605.59,211.66L606.05,211.44L606.31,211.31L606.87,211.20L607.54,211.34L608.11,211.12L608.26,211.10L608.50,211.07L608.68,211.10L608.86,211.13L609.11,210.93L609.55,210.80L609.66,210.61L609.93,210.60L610.13,210.69L611.39,210.70L611.64,210.87L612.04,210.67L612.57,210.64L612.88,210.19L612.20,209.72L612.24,209.38L612.10,209.15L612.35,208.94L612.57,208.98L612.71,209.01L612.85,208.95L612.84,208.92L612.67,208.66L612.00,208.77L612.00,208.61L612.00,208.45L611.78,208.21L611.71,208.13L611.77,208.03L611.47,207.89L611.46,207.66L611.72,207.51L611.38,207.21L611.46,207.09L612.07,207.01L612.17,206.94L612.56,206.68L612.92,206.45 "/><path d="M711.61,240.90L712.54,241.15L713.05,241.16L713.35,241.29L713.34,241.30L713.23,241.50L713.36,241.67L713.82,241.70L714.01,241.96L714.40,242.12L714.61,242.43L715.10,242.71L714.96,242.99L715.08,243.16L715.35,243.26L715.38,243.53L716.09,243.51L716.48,243.63L716.01,243.78L715.84,244.04L714.68,244.41L716.01,244.82L715.85,245.17L716.14,245.56L715.91,245.55L715.70,245.54L715.34,245.84L715.00,245.91L715.18,246.15L715.00,246.52L715.14,246.84L715.25,247.10L715.91,247.64L716.49,247.88L716.55,248.06L717.24,248.35L717.33,248.41L717.88,248.84 "/><path d="M538.89,198.01L538.64,197.78L538.49,197.64L538.49,197.32L537.95,197.07L537.63,197.04L537.26,196.76L537.18,196.48L537.58,195.92L537.81,195.16L537.61,194.66L537.34,194.48 "/><path d="M676.53,235.36L675.82,235.48L673.52,235.90L673.07,236.09 "/><path d="M518.77,187.22L519.14,187.17L519.44,186.95L519.68,186.90L520.46,187.07L521.24,187.43L521.53,187.67L521.52,188.01L521.24,188.15L520.10,188.29L519.76,188.44L520.64,188.79L520.88,189.13L520.76,189.29L520.95,189.60L520.67,189.75L520.59,190.04L520.82,190.55L520.63,190.69L520.79,190.85L520.81,190.87L519.63,191.53L519.51,191.61L519.31,191.98L519.28,192.03L519.32,192.06L519.40,192.14L519.35,192.33L519.31,192.49L519.56,192.73L519.63,192.79L520.15,192.90L519.88,193.06 "/><path d="M527.12,195.06L527.33,195.02L528.21,194.84L528.90,194.87L529.66,195.01L530.43,195.33L532.31,195.20L532.55,195.00L533.42,194.81L533.59,194.50L533.94,194.49L534.24,194.36L534.90,193.88L536.37,193.11 "/><path d="M654.27,226.27L654.89,226.56L655.63,226.92L656.37,227.61L657.82,228.07L658.53,228.08L658.94,228.21L658.99,228.39L658.48,228.85L658.52,229.08L659.14,229.61L659.37,230.06L659.93,230.39L660.29,230.40L661.22,230.18L662.61,230.35L662.89,230.57L663.30,230.70L664.40,230.65L665.16,230.77L666.33,231.33L666.47,231.78L666.85,232.09L667.39,232.33L668.17,232.50L668.82,233.28L670.17,233.83L670.49,234.17L669.90,234.78L670.06,235.01L670.21,235.07L670.61,235.24L671.21,235.36L671.31,235.43L671.78,235.73L672.14,235.97L672.65,236.04L673.07,236.09 "/><path d="M598.07,214.73L598.63,215.17L598.94,215.12L599.24,215.07L600.87,215.08L601.57,215.15L602.27,215.33 "/><path d="M695.22,241.39L695.14,241.24L695.06,241.21L694.69,241.02L694.29,240.98L693.14,241.16L692.79,241.03L692.47,240.75L692.04,240.75L690.77,241.08L689.00,241.14L688.40,240.99L687.37,240.31L686.51,240.34L685.60,240.16L684.92,239.79L684.27,239.82L684.00,240.04L683.45,239.99L683.41,239.99L683.09,239.78L683.13,239.63L683.83,239.47L684.03,239.30L683.70,239.07L682.59,239.02L682.06,239.14L681.79,239.01L682.08,238.76L681.73,238.46L681.95,238.15L682.40,237.92L682.97,237.85L683.09,237.71L682.51,237.61L682.19,237.45L681.97,237.15 "/><path d="M506.23,190.53L506.39,190.53L508.01,190.50L509.16,190.59L509.34,190.52L514.11,190.70L514.60,190.60L515.05,190.64L515.43,190.49L515.48,190.26L515.81,190.03L517.01,189.43L517.16,189.24 "/><path d="M695.22,241.39L695.04,241.39L694.55,241.39L694.50,241.39L694.24,241.29L693.97,241.34L693.47,241.57L693.25,241.84L690.84,243.04L691.12,243.30L690.97,243.48L691.36,244.00 "/><path d="M673.07,236.09L672.69,236.27L672.33,236.26L671.76,236.25L671.27,236.43L670.96,236.65L670.84,236.74L669.71,236.92L669.41,237.02L668.45,237.33L667.24,237.24 "/><path d="M510.59,192.22L511.22,192.44L510.62,192.86L510.10,192.99L510.24,193.26L509.98,193.63L510.05,193.70 "/><path d="M588.45,213.15L587.69,213.26L587.11,213.20L584.47,213.77L583.63,213.55L583.27,213.57L582.85,213.84L581.43,213.82L581.14,213.30L580.87,213.18L581.13,212.85L581.14,212.62L580.71,212.48L580.36,212.23L580.56,211.88L580.32,211.70L580.79,211.53L580.91,211.29L581.17,211.20L581.38,211.12L580.67,210.90L579.84,210.63L579.83,210.63L579.44,210.55L579.04,210.67L578.73,210.57L579.05,210.15L579.48,209.86L579.04,209.74L578.84,209.53L578.65,209.35L578.48,209.18L578.68,209.02L578.94,208.96L579.08,208.93L579.17,208.93L579.94,208.87L580.38,208.72L580.53,208.66L580.81,208.63L581.38,208.55 "/><path d="M685.78,244.14L686.36,244.03L686.84,244.18L687.23,244.05L687.95,244.34L688.36,244.40L688.55,244.31L689.38,244.63L690.05,244.61L690.36,244.48L690.56,244.17L691.36,244.00 "/><path d="M634.45,229.79L635.15,229.71L636.35,229.34L636.67,229.07L636.77,228.42L636.98,228.06L637.33,227.89L639.38,227.41L639.71,226.41L639.96,226.22L641.08,226.12L641.61,225.71L642.02,225.67L643.03,225.80L643.17,225.86L644.26,226.31L644.88,226.40L646.23,226.27L647.78,225.89L648.60,225.61L648.93,225.36L649.41,225.34L650.32,225.48 "/><path d="M682.66,243.80L683.92,243.95L683.93,243.95L684.72,243.85L685.58,244.17L685.78,244.14 "/><path d="M650.02,234.48L650.32,234.36L650.73,234.39L651.24,234.58L652.18,234.72L652.36,234.89L653.00,234.84L653.54,235.03L654.49,235.00L655.77,235.22L656.30,235.42L657.63,235.38L657.94,235.28L658.29,234.97L658.90,234.89L659.88,234.90L660.16,235.14L662.53,235.05L662.63,235.04L664.65,235.11L665.56,235.30L665.66,235.53L666.05,235.82L666.42,236.79L667.12,237.10L667.24,237.24 "/><path d="M621.24,217.62L621.18,217.79L620.64,217.91L619.88,217.92L617.97,218.43L616.46,219.04L616.39,219.18L616.32,219.34L615.79,219.64L615.17,219.70L614.92,219.72L614.43,219.62L612.47,219.95L611.69,220.34L610.20,220.76L610.07,220.80L609.82,220.87L609.09,220.78L608.04,220.83L607.60,220.73L607.09,220.46L606.88,220.23L606.14,220.30L604.67,219.80L603.96,219.68L603.48,219.67L603.10,219.91L602.46,220.05L601.96,220.52L601.73,220.59L600.41,220.36 "/><path d="M578.60,214.43L580.02,214.87L580.48,215.01L580.77,214.96L581.62,214.81L581.87,215.00L582.81,215.22L582.87,214.99L583.43,215.10L584.29,215.08L584.59,215.42L585.24,215.73L585.79,215.77L586.66,216.15L586.92,216.12L587.49,216.39L587.70,216.31L587.97,216.39L588.21,216.78L589.90,216.73L590.35,216.84L590.96,216.77L591.99,217.04L592.48,217.08L593.28,217.44L593.58,217.83L593.92,217.93L594.71,218.18L594.93,218.46L595.31,218.62L595.59,218.50L598.07,218.63L598.72,218.52L600.04,218.59L602.23,218.95L603.04,219.09L603.59,219.29L604.00,219.17L604.03,219.18L604.24,219.23 "/><path d="M634.45,229.79L634.57,230.56L634.41,230.80 "/><path d="M646.91,234.41L646.64,234.22L645.83,233.67L645.28,233.70L643.89,233.24 "/><path d="M624.75,228.20L624.09,228.08L623.70,227.87L622.69,227.87L622.17,227.64L621.46,227.55L620.86,227.28L619.88,227.58 "/><path d="M511.93,197.44L511.72,197.23L511.53,197.21L511.28,197.19L510.18,196.74L508.67,196.35L508.37,196.15L508.47,196.02L508.12,195.60L507.87,195.56L507.82,195.45L508.08,195.21L507.66,194.92L507.80,194.74 "/><path d="M619.88,227.58L618.93,227.62L618.80,227.63L618.05,227.35L617.90,227.20L617.87,226.78L619.23,225.78L619.33,225.36L620.07,224.97L620.40,224.82L620.68,224.70L621.30,224.58L621.57,224.30L622.26,224.13L625.18,223.76L625.21,223.76L625.41,223.66L625.47,223.63L625.91,223.41L626.46,223.26L627.47,222.97L628.66,222.99L629.77,222.75L630.35,222.77L631.06,222.51L631.29,222.32L631.18,222.17L630.45,222.08L629.82,221.51L629.71,221.24L628.95,220.92L628.44,220.41L629.01,220.09L629.57,219.96L629.54,219.77L629.71,219.64L630.33,219.55L629.88,219.25L630.10,218.92L630.05,218.58L630.46,218.53L629.90,218.16L629.63,217.70L630.19,217.52 "/><path d="M578.73,216.78L578.84,216.50L578.27,216.36L578.16,216.13L577.81,215.97L578.17,215.82L578.41,215.52L577.93,215.41L577.45,215.01L577.71,214.78L578.43,214.66L578.60,214.43 "/><path d="M562.70,211.80L562.92,212.05L562.99,212.12L563.21,212.38L563.42,212.62L563.46,212.66L563.80,212.79L564.21,212.95L564.99,212.89L565.11,212.99L565.40,213.20L566.11,213.31L566.78,213.12L567.55,213.06L568.29,212.82L569.25,212.94L569.29,213.05L568.17,213.47L568.22,213.86L569.10,213.85L569.52,213.74L569.78,213.54L570.30,213.62L570.59,213.66L571.01,213.59L571.22,213.55L571.47,213.58L571.58,213.59L572.20,213.84L572.30,213.89L572.85,213.95L573.03,213.71L573.30,213.67L573.65,213.93L574.12,213.95L575.05,213.80L575.41,213.74L575.56,213.61L575.96,213.60L576.07,213.52L575.87,213.35L576.57,213.47L576.87,213.68L576.88,213.87L576.46,213.88L576.46,213.98L576.83,214.08L576.83,214.22L577.01,214.30L577.44,214.21L578.60,214.43 "/><path d="M705.70,253.67L705.71,253.33 "/><path d="M526.07,202.88L526.69,202.66L528.51,201.99L528.88,201.72L529.56,201.58L529.71,201.44L530.14,201.38L530.55,201.15L531.66,200.86L533.62,200.93L534.13,201.12 "/><path d="M638.71,235.27L639.02,235.41L639.50,235.43L639.98,235.31L640.38,234.93L640.18,234.69L640.26,234.52L640.84,234.28L640.84,234.11L640.38,233.77 "/><path d="M717.88,248.84L717.77,248.90L717.66,248.98L717.28,248.98L717.03,249.08L716.80,249.55L716.13,249.70L715.87,249.49L715.16,249.31L715.01,249.27L714.66,248.90L714.01,248.55L711.83,247.95L711.19,247.92L710.82,247.81L710.63,247.69L710.93,247.50L710.78,247.25L709.81,246.20L709.62,246.10L708.66,245.61L708.59,245.58L707.64,245.33L707.08,245.28L706.83,245.06L705.69,245.16L705.40,245.62L704.27,246.22L703.66,246.55L702.74,246.57L702.69,246.57L701.91,246.94L701.64,247.18L701.52,247.28L700.95,247.31L699.91,248.07L699.61,248.52L699.49,248.90L699.27,249.63L698.78,249.76L698.77,249.96L699.44,250.64L700.44,251.22L701.15,251.48L701.40,251.96L701.39,252.77L700.77,253.26L701.33,253.52 "/><path d="M596.02,223.35L596.70,223.44L597.67,222.99L597.62,222.87L596.37,222.32L595.89,221.94L595.06,221.94L594.41,221.79L593.73,221.77L592.30,221.09L591.33,220.98L590.59,221.06L590.20,220.95L589.69,220.64L589.36,220.59L589.09,220.66L588.47,219.96L588.31,219.88L587.64,219.58L587.36,219.22L587.49,218.97L586.66,218.74L585.66,218.82L585.08,218.69L583.94,218.43L583.66,218.37L583.24,218.51L583.23,218.51L583.17,218.50L582.93,218.47L582.90,218.45L582.60,218.29L582.63,218.13L582.33,217.97L581.71,217.92L581.18,217.64L580.79,217.59L580.54,217.45L580.09,217.44L579.98,217.33L579.65,217.35L579.56,217.18L578.73,216.78 "/><path d="M725.66,255.35L725.58,255.75L725.12,256.00L725.32,256.41L724.69,256.80L724.37,256.88L724.32,257.14L724.41,257.32L724.89,257.65L724.93,258.00L725.19,258.33L725.52,258.46L725.37,258.73L725.67,259.00L725.68,259.25L726.42,259.69L726.95,259.79L727.44,260.08L727.75,260.63L728.01,260.79L728.04,261.00L728.38,261.22L728.06,261.61 "/><path d="M659.20,241.72L659.80,241.94L660.35,241.91L660.96,242.00L661.48,241.93L661.49,241.61L662.12,241.41L663.24,241.31L663.65,241.09L664.28,240.99L666.40,240.83L667.72,240.35L667.83,240.34L668.53,240.28L668.64,240.14L669.01,240.07L669.45,240.14L670.56,240.56L670.66,240.60L670.86,240.76L671.02,240.88L671.37,240.92L671.62,240.69L672.01,240.60L673.29,240.55L673.69,240.30L674.48,240.40L675.32,240.17L675.83,240.15L675.90,240.27L676.36,240.31L677.16,240.60L677.37,240.62L677.61,240.65L678.46,240.53L678.85,240.67L678.44,240.73L678.22,240.91L678.29,241.15L678.56,241.10L679.58,241.36L680.10,241.40L680.24,241.54L679.96,241.78L680.30,241.79L680.43,241.85L681.11,242.10L681.46,242.58L682.10,242.68L682.49,242.85L682.50,242.97L683.36,243.25L683.35,243.48L682.98,243.55L682.66,243.80 "/><path d="M717.88,248.84L718.40,249.16L718.40,249.34L719.11,249.85L719.01,250.09L719.27,250.18L719.57,250.29L719.49,250.46L719.60,250.61L719.93,251.05L720.48,251.27L721.56,251.13L721.61,251.39L721.88,251.64L722.54,251.70L722.66,251.95L723.13,252.23L723.43,252.21L723.69,252.02L723.95,252.16L724.43,252.21L724.87,252.42L724.89,252.54L724.42,252.62L724.31,253.09L723.84,253.22L723.58,253.11L722.74,253.60L722.20,253.56L721.82,253.96L722.17,254.33L722.01,254.49L721.74,254.54L721.55,254.89L721.38,254.89L721.59,255.14L721.88,255.20L721.80,255.41L722.10,255.72L722.00,255.85L721.65,255.86L721.57,256.11L722.03,256.84L722.57,256.96L722.88,257.36L722.70,257.78L722.23,257.72L722.15,258.01L721.77,258.16L721.19,257.98L720.97,258.13L720.56,258.42L720.00,258.35L718.98,258.21L718.57,258.07L718.36,258.00L715.69,257.64L714.78,257.12L714.78,257.11L714.65,256.92L714.31,256.88L713.68,257.06L713.34,257.52L711.75,257.24L711.43,257.07L711.42,256.69L710.84,256.39L710.27,256.40L709.99,256.16L709.92,256.11L708.54,255.78L707.86,255.92L707.00,255.37L706.39,254.76L706.12,253.97L705.70,253.67 "/><path d="M503.97,195.08L503.62,195.12L503.23,195.70L503.13,195.85L503.65,196.40L504.15,197.39L503.58,197.78L502.92,197.75L502.44,197.56L501.69,197.46L501.49,197.31L500.27,197.08L499.83,197.08L499.22,196.85L498.95,196.65 "/><path d="M638.85,236.69L639.00,236.62L639.17,236.55L640.37,236.35L640.60,236.40L640.66,236.42L641.05,236.68 "/><path d="M638.10,235.72L638.80,236.62L638.85,236.69 "/><path d="M634.84,235.61L634.77,234.29L635.36,234.20L635.71,233.93L635.79,233.73L635.43,233.37L635.44,233.05L636.11,232.52 "/><path d="M634.45,229.79L632.38,230.08L631.29,230.04L629.22,230.43L628.80,230.86L628.08,231.30L627.68,231.77L627.65,232.39L627.02,232.52L626.34,233.42 "/><path d="M728.06,261.61L726.79,261.61L725.22,261.38L724.88,261.67L724.57,261.67L724.02,261.89L723.54,261.62L721.36,261.55L721.09,261.46L720.97,261.47L720.74,261.50L720.53,261.33L720.11,261.38L720.10,261.38L719.54,261.16L719.22,261.24L718.79,261.17L718.44,260.99L717.83,260.89L717.27,260.43L715.82,260.33L715.46,260.31L715.26,260.13L714.45,260.06L714.07,259.82L713.59,259.77L713.36,259.18L713.27,259.14L713.12,259.09L712.45,259.09L711.45,258.86L711.33,258.55L711.02,258.29L710.23,258.23 "/><path d="M728.06,261.61L728.18,261.86L728.89,262.20L729.28,262.02L729.72,262.02L729.92,262.23L729.91,262.47L730.20,262.76L730.13,262.86L729.73,262.84L729.72,263.08L729.97,263.24L730.40,263.28L730.60,263.41L731.02,263.70L731.73,263.79L732.12,264.17L732.25,264.30L732.34,264.59L732.88,264.77L732.93,264.78L733.03,264.82L732.71,265.04L732.49,265.06L732.43,265.07L732.43,265.11L732.44,265.17L732.75,265.36L733.13,265.31L733.38,265.36L733.54,265.49L733.92,265.52L733.90,265.74L733.89,265.85L734.11,265.93L734.23,265.97L734.30,266.10L734.75,266.08L735.26,266.05L735.57,266.35L735.44,266.49L735.06,266.34L734.59,266.70 "/><path d="M674.54,250.51L675.41,250.14L676.05,250.17L676.45,250.08L676.76,250.11L677.01,250.30L677.50,250.30L678.81,250.29L679.15,250.44L679.52,250.77L680.28,250.90L680.49,251.03L681.02,251.03L681.79,251.21L682.13,251.11L683.28,249.96L683.53,249.87L683.69,249.81L683.70,249.62L682.88,249.00L682.95,248.77L683.10,248.30L682.65,248.22L682.52,247.55L682.63,247.31L682.36,246.85L682.28,246.72L682.55,246.67L683.15,246.56L683.08,246.23L683.05,246.08L683.71,245.73L683.88,245.53L684.23,245.48L684.64,245.43L685.32,244.85L685.58,244.63L685.71,244.32L685.78,244.14 "/><path d="M617.46,234.03L617.00,233.59L616.59,233.46L616.51,232.91L616.67,232.54L617.08,232.17L616.81,231.67L617.06,231.21L617.45,230.92L617.95,230.88L618.58,230.34L618.70,230.24L618.39,230.19L618.38,230.00L618.51,229.85L618.70,229.62L618.50,229.29L619.06,229.20L620.02,229.03L620.40,228.82L620.52,228.55L620.46,228.30L620.37,227.95L619.88,227.58 "/><path d="M685.61,254.17L685.93,253.88L686.73,254.00L687.39,253.71L687.96,253.75L689.35,254.03L689.81,253.96L690.09,253.73L690.16,253.13L691.08,251.80L692.41,251.36L693.00,250.95L693.47,250.15L693.83,250.06L694.38,249.92L694.98,249.20L695.64,249.06L695.98,248.81L696.07,248.56L696.53,248.28L696.55,247.82L696.88,247.32L697.02,247.13L697.21,247.10L697.25,246.98L697.12,246.90L697.00,246.83L696.20,246.75L695.36,246.23L694.95,246.17L694.75,246.09L694.01,245.80L693.87,245.62L693.67,245.37L693.01,245.04L693.01,244.86L692.55,244.62L692.10,244.57L691.64,244.22L691.57,244.16L691.36,244.00 "/><path d="M578.73,216.78L578.46,216.85L577.67,217.04L577.13,216.99L576.85,217.24L577.08,217.61L577.00,217.99L576.59,218.22L577.02,218.45L577.08,219.04L576.90,219.38L576.18,219.86L575.76,219.85L575.71,220.06L576.06,220.23L576.06,220.62L575.37,220.68L574.66,220.86L574.52,221.09L574.68,221.47L574.43,221.65L574.00,221.70L573.79,221.67L571.93,221.43 "/><path d="M667.24,237.24L666.18,237.47L665.39,236.89L665.04,236.83L663.48,237.49L661.34,237.12L660.96,237.27L660.87,237.31L660.34,237.35L659.33,237.60L658.79,237.84L658.47,238.15L658.15,238.19L657.03,238.04L656.63,237.76L656.50,237.53L656.13,237.38L656.05,237.35L655.80,237.48L654.70,237.48L653.76,237.63L653.52,237.86L653.07,237.98L652.52,237.95L651.93,238.17L650.91,238.29L650.37,238.77L650.02,238.70L648.94,238.75L647.83,239.05L646.84,239.05L646.76,239.04L645.14,238.80L644.90,238.61L644.06,238.40L643.99,238.39L642.32,238.68L641.16,238.55L639.51,239.14L636.21,239.42L635.64,239.75L635.41,240.21L634.56,240.18L634.31,240.28 "/><path d="M679.34,254.83L683.05,254.96L683.44,255.05L684.18,255.74 "/><path d="M586.33,222.86L585.65,222.71L583.78,222.31L583.38,222.07L583.07,222.09L582.67,222.35L582.19,222.14L581.77,222.08L581.57,221.92L581.07,221.86L580.20,221.89L579.55,221.82L578.98,221.87L578.46,222.09L577.50,222.00L577.16,222.20L576.68,222.72L576.45,222.97L576.11,223.56L575.69,223.79L575.38,223.95L575.17,224.23L575.20,224.79 "/><path d="M560.74,212.99L560.77,213.29L560.78,213.36L560.62,213.48L560.79,213.80L560.87,213.94L561.08,214.06L561.40,214.03L561.22,214.32L561.39,214.58L560.76,214.93L560.15,215.00L560.19,215.15L560.25,215.37L560.53,215.51L560.53,215.77L559.91,215.94L559.86,216.18L559.85,216.24L559.36,216.21L559.22,216.27L559.59,216.50L560.53,216.48L561.32,216.27L562.10,216.31L562.32,216.43L562.82,216.71L563.10,216.71L563.19,217.02L563.20,217.08L563.36,217.17L563.84,217.01L564.82,217.05L565.29,217.24L565.62,217.84L565.51,218.16L565.90,218.34L566.05,218.40L566.12,218.77L565.63,218.94L565.54,219.30L565.96,220.06L566.25,220.58L566.65,220.85L566.76,221.08L567.49,221.44L567.63,221.80L567.88,221.98L567.79,222.15L568.28,222.51L568.26,222.60L568.24,222.72L568.39,222.88 "/><path d="M497.78,203.81L497.97,203.69L498.94,203.58L499.54,203.25L499.29,202.59L499.65,202.02L500.07,201.67L500.29,200.76L500.07,200.64L499.91,200.55L499.95,200.41L499.65,200.09L499.71,199.96L499.38,199.79L498.80,199.70L498.26,199.24L498.41,198.99L496.98,198.58 "/><path d="M583.57,228.21L583.76,228.15L583.67,227.59 "/><path d="M586.33,222.86L585.80,223.06L585.68,223.11L584.47,223.92L584.44,224.55L584.84,225.29L584.97,226.03L584.64,226.61L583.77,226.78L583.46,227.03L583.31,227.97L583.57,228.21 "/><path d="M682.66,243.80L681.64,243.64L681.33,243.77L680.87,243.74L680.43,243.86L679.75,243.81L679.34,243.95L678.29,244.01L677.74,244.22L676.50,244.43L674.68,244.44L672.65,244.18L672.06,244.38L671.93,244.42L670.84,244.44L669.92,244.66L669.80,244.66L668.66,244.61L668.13,244.59L667.99,244.63L667.84,244.67L667.68,244.72L666.92,244.65L666.62,244.74L666.28,244.84L665.79,244.70L664.89,244.83L664.78,244.84L664.65,244.94L664.64,244.94L664.26,245.22L662.86,245.45L662.63,245.56L662.01,245.54L661.33,245.70L661.09,245.93L660.22,246.28L659.91,246.34L658.80,246.31L658.30,246.30L657.65,246.29L657.53,246.31L657.28,246.35L655.04,246.75L655.02,246.75L653.47,246.90L650.72,247.89L650.32,247.85L650.03,247.67L649.92,247.14L649.60,246.93L648.55,246.80L647.48,246.23 "/><path d="M615.77,235.30L615.71,236.34L616.05,236.61L615.34,237.52L615.52,237.96 "/><path d="M583.57,228.21L583.60,228.50L582.47,229.01 "/><path d="M568.83,223.26L568.84,223.28L568.88,223.51L568.73,223.67L568.85,223.87L568.60,224.42L568.28,224.58L567.90,225.15 "/><path d="M733.68,269.33L733.60,269.06L733.50,269.00L733.37,268.92L733.25,269.11L733.01,269.09L732.81,268.86L732.27,268.63L732.07,268.63L731.94,269.06L732.15,269.35L731.88,269.47L731.47,269.38L730.34,269.42L729.93,269.44L729.87,269.45L729.71,269.80L729.70,269.81L729.70,269.81L729.30,269.81L729.07,269.55L729.24,269.29L729.16,269.21L728.85,269.27L728.69,269.45L728.34,269.45L728.37,269.86L728.06,269.89L727.55,269.81L727.25,269.89L727.54,270.34L727.38,270.47L727.10,270.28L726.46,270.29L726.14,270.18L725.03,270.32L724.50,270.17L724.23,270.09L723.87,269.84L723.93,269.65L723.79,269.58L723.18,269.73L722.92,269.96L722.53,269.86L722.29,269.59L721.49,269.99L720.81,269.89L720.43,269.83L720.21,269.59L719.76,269.51L719.53,269.34L719.46,269.29L718.63,269.33L718.55,269.24L718.80,269.07L717.92,268.80L717.60,268.31L716.81,267.96L716.65,267.69L716.35,267.21L715.49,266.85L715.28,266.37L714.85,266.15L713.60,265.91L712.89,265.89L712.42,265.53L712.04,265.40L711.67,264.99L711.40,264.95L711.31,264.79L710.98,264.76L710.66,264.62L710.17,264.62L709.93,264.45L709.32,264.51L707.94,264.64L706.89,264.88L706.46,264.58L706.24,264.53L705.90,264.46L705.69,264.42L705.58,264.31L705.95,263.87L705.86,263.43L705.37,262.66L705.61,262.31L705.35,261.91L704.71,261.66L704.21,261.28L703.91,260.89L703.57,260.89L702.57,259.74L700.72,259.37L700.43,259.09L701.04,258.94L700.78,258.39L700.62,258.05L700.78,257.84L700.63,257.63L701.02,257.22L700.70,256.79L700.88,256.63L701.43,256.51L701.52,256.29L701.20,256.00L701.32,255.75L701.87,255.19L702.89,255.11L703.17,254.83L703.09,254.54L705.70,253.67 "/><path d="M539.50,219.60L539.75,219.64L540.20,219.53L540.31,219.60L540.33,219.61L540.44,219.68L540.83,219.57L541.33,219.59L541.51,219.71L541.64,219.74L542.39,219.92L543.34,219.67L544.04,219.70L544.81,219.91L545.36,219.87L546.94,220.16L547.19,220.04L548.07,220.09L549.99,219.89L550.70,220.03L551.18,219.88L552.48,219.87L552.75,219.87L553.52,219.69L553.75,219.54L553.49,219.34L553.73,219.14L554.73,219.15L555.02,218.96L556.11,218.86L556.23,218.58L556.95,218.48L557.11,218.66L556.74,218.81L556.80,218.91L557.58,219.01L558.24,218.91L559.10,219.19L558.90,219.28L559.17,219.37L559.20,219.92L558.85,220.12L558.89,220.36L559.15,220.53L559.58,220.33L559.76,220.56L559.81,220.63L560.23,220.81L559.79,220.88L560.24,221.38L560.04,221.58L560.17,222.12L559.50,222.64L559.54,222.96L559.88,223.33L560.46,223.59L560.74,223.57L561.02,223.54L562.93,224.20L563.28,224.66L563.08,225.06L562.43,225.46 "/><path d="M394.98,177.34L394.84,177.84L395.04,177.96L394.95,178.16L395.23,178.25L395.87,178.96L395.89,179.55L395.89,179.56L395.58,179.78L395.92,180.35 "/><path d="M671.41,258.80L671.66,258.53L671.96,258.58L673.55,258.09L673.99,258.08L674.22,257.86L674.60,257.85L675.05,257.59L675.56,257.53L676.62,257.18L677.42,257.15L678.74,256.51L679.68,256.35L680.01,256.52L680.55,256.60 "/><path d="M704.13,267.00L703.97,267.61L704.59,267.96L704.52,268.31L705.44,268.88L705.96,269.09L706.05,269.13L706.84,269.12L707.52,268.95L708.30,268.99L708.77,269.15L708.91,269.38 "/><path d="M415.09,183.28L414.82,183.30L414.41,183.51L413.79,184.10L413.30,184.26L413.00,184.27L412.37,184.30L412.19,184.56L411.47,184.80L411.15,184.77L411.03,184.80L410.74,184.87L409.92,184.78L409.65,184.64L409.64,184.31L409.21,183.92L408.77,183.84L408.48,183.20L408.64,183.00L407.82,181.64L407.61,181.30L407.90,181.10L408.38,181.02L408.76,181.09L409.22,181.06L409.83,181.22L410.30,181.14L410.33,180.98L410.33,180.98L411.06,180.98L411.15,180.98 "/><path d="M640.06,240.22L640.18,240.58L639.47,241.37L639.49,241.69L639.90,242.11L639.89,242.54L639.46,242.88L639.51,243.22L639.59,243.70L639.24,244.26L639.25,244.53L638.98,244.75L639.18,245.28L638.86,245.56L638.96,246.34L638.95,246.39L638.73,247.01L638.28,247.21L638.04,247.32L637.86,247.51L637.96,247.81L637.26,247.84L637.02,247.96L636.84,248.35L636.43,248.46L636.35,248.66L636.49,248.95L636.22,249.67L636.38,249.82 "/><path d="M401.53,178.71L401.50,179.02L401.65,179.16L401.36,179.40L401.28,179.46L401.43,179.72L401.18,180.08L400.81,180.15L400.42,180.49L400.34,180.57L399.55,180.84L399.30,181.07L399.40,181.50L399.30,181.77L398.83,181.98L398.22,182.08L397.67,182.37L397.58,182.55 "/><path d="M633.56,246.04L633.70,246.12L633.63,246.34L633.20,246.52L633.15,246.71L632.70,247.10L632.54,247.24L632.69,247.37L633.71,247.54L634.11,247.48L634.51,247.73L634.80,248.19L634.67,248.49L634.80,248.68L635.41,248.99L634.64,249.25L634.70,249.39L635.40,249.50L635.61,249.81L636.38,249.82 "/><path d="M558.35,227.69L558.08,227.50L558.57,226.98L558.92,226.22L559.51,226.02L559.54,225.75L559.97,225.59 "/><path d="M404.32,184.98L404.45,184.77L403.87,184.27L403.84,184.03L403.42,183.55L403.59,183.12L404.18,182.50L404.24,182.45L403.84,181.42L404.09,181.18L404.32,180.94L404.96,180.70L405.23,180.47L405.17,180.35L405.12,180.24L405.29,180.06 "/><path d="M581.44,228.79L581.65,228.51L581.56,227.79L581.09,226.86L580.65,226.60L580.04,226.54L579.88,226.40L579.64,226.36L579.42,225.96L579.02,225.88L578.21,226.18L577.71,226.48L577.08,226.38L576.76,226.58L575.49,226.77L575.25,227.21L574.69,227.42L574.07,227.43L573.55,227.65L573.39,227.71L573.15,228.29L573.64,228.69L573.24,229.31L573.61,229.82L573.32,230.25L572.50,230.40L572.50,230.40L572.49,230.40L572.17,230.74L571.75,230.96L572.48,231.28L572.87,231.40L572.97,231.42L573.50,231.58L573.65,231.74L574.53,232.16L575.28,233.01L575.74,233.32 "/><path d="M412.07,187.65L412.14,187.43L412.14,187.43L411.62,186.74L411.95,185.93L411.86,185.56L411.77,185.21L411.80,185.19L411.97,185.07L412.65,184.99L413.46,185.47L414.84,185.71L415.43,186.13 "/><path d="M576.31,234.07L576.96,233.99L577.19,233.83L577.81,233.91L578.71,233.84L578.60,233.57L579.01,233.36L579.38,232.80L580.32,232.28L581.41,231.99L583.21,231.32L583.69,230.91L585.09,230.36L586.43,230.24L587.17,230.18L587.23,230.03L586.72,229.65L586.63,229.32L586.15,229.04 "/><path d="M403.99,185.32L403.31,185.29L402.85,185.40L402.36,185.58L402.00,185.93 "/><path d="M710.59,269.75L711.21,269.95L711.37,270.19L712.51,270.69L713.17,271.11L713.26,271.48L713.71,271.64L713.74,271.97L713.56,272.16L713.94,272.19L714.25,272.47L714.07,273.18L714.34,273.40L714.91,273.48L715.10,273.72L715.79,274.04L716.86,274.54L716.81,274.68L717.23,275.03L717.11,275.27L717.32,275.56L717.18,275.81L717.21,275.88L717.30,276.07L718.14,276.44L718.49,276.77L718.78,276.69L719.07,276.77L719.30,276.97L719.23,277.05 "/><path d="M719.23,277.05L719.55,277.30L719.61,277.35L719.96,277.34L720.12,277.21L720.49,277.25L721.19,277.48L721.39,277.55L721.26,277.75L721.80,277.91L721.94,277.92L722.11,277.93L722.24,277.75L722.41,277.77L722.78,277.80L723.10,277.72L723.45,277.97L723.53,278.03L723.32,278.23L723.56,278.44L724.82,278.49L725.32,278.71L725.94,278.64L725.82,278.91L726.16,279.15L725.82,279.29L726.15,279.46L726.52,279.43L726.93,279.40L727.07,279.39L727.35,279.26L728.10,279.51L728.49,279.86L728.57,279.93 "/><path d="M393.22,181.39L392.83,181.83L392.66,181.87L392.17,181.97L391.45,182.47L390.92,182.54L389.75,183.36 "/><path d="M575.05,234.64L574.71,234.68L574.30,234.87L574.20,235.47 "/><path d="M389.75,183.36L390.47,183.67L390.65,183.97L390.88,184.06L392.45,184.31L393.39,185.13L394.15,185.17L394.42,185.27L395.17,185.20L395.81,185.00L396.28,184.73L396.91,184.58L397.18,184.40L397.10,184.16L397.45,183.72L397.53,183.30L397.38,183.23L396.75,183.26 "/><path d="M536.12,225.19L536.02,225.07L535.93,224.98L536.26,224.74L536.66,224.66L536.98,224.59L537.65,224.45L538.43,223.90L539.00,223.89L541.43,223.86L541.64,223.98L542.74,223.98L543.05,223.86L545.13,223.84L546.03,223.74L546.64,223.51L546.74,223.36L547.22,223.38L547.91,223.26L548.11,223.23L549.51,223.45L550.41,223.74L550.81,223.98L551.55,224.12L552.32,224.57L553.07,224.67L554.28,225.14L554.81,225.19L555.62,225.12L556.26,224.96L557.14,224.96L557.53,225.06L557.98,225.61L557.77,225.88L557.88,225.92L558.13,226.03L558.17,226.18L557.93,226.36L557.49,226.39L557.41,226.39L557.01,226.55L556.86,226.81L556.29,227.17 "/><path d="M638.85,236.69L636.97,237.27L636.35,237.29L635.56,237.51L635.22,237.78L633.91,237.99L631.93,238.69L628.80,239.60L627.37,239.60L627.06,239.71L625.88,240.12L625.78,240.15L625.25,241.42L625.38,241.95L625.20,242.75L625.02,243.07L625.02,243.07L624.44,243.31L624.32,244.05L623.77,244.73L623.87,245.00L623.15,244.99L622.71,245.31L622.18,245.45L622.11,245.47L621.84,245.71L621.26,246.22L620.88,246.33L621.02,246.92L620.32,246.92L620.09,247.24L620.37,247.50L619.88,248.02L620.32,248.18L620.05,248.62L619.35,248.96L619.39,249.27L619.02,249.36 "/><path d="M619.02,249.36L618.37,248.88L618.49,248.74L618.68,248.72L618.66,248.61L618.40,248.47L617.96,248.67L617.79,248.64L617.61,248.33L618.36,248.03L617.94,247.73L616.93,247.72L616.26,247.92L615.78,247.92L615.40,247.70L615.36,247.37L615.03,247.17L614.02,247.06L613.66,246.89L613.20,246.20L612.34,245.87L611.85,245.55L611.50,245.32L611.37,245.23L611.10,244.79L611.25,244.40L610.35,243.48L610.44,243.16L610.84,242.82L611.50,242.52L611.52,241.94L611.74,241.78L612.43,241.65L611.50,240.93L611.22,240.51L611.32,240.01L611.18,239.55L610.87,239.17L610.19,238.77L609.57,238.41L609.15,237.65L608.86,237.50 "/><path d="M565.05,228.65L564.57,228.47L563.66,228.85L563.17,228.88L561.87,229.40L560.72,229.99L560.69,230.12L559.99,230.26L559.10,230.81L559.21,231.18L558.59,231.92 "/><path d="M385.80,183.55L386.03,183.38L386.61,183.43L387.02,183.16L387.37,183.16L388.08,183.15L388.26,183.03L389.15,183.00L389.35,183.31L389.75,183.36 "/><path d="M686.14,256.97L686.79,257.17L687.16,257.51L687.47,257.59L688.13,258.57L688.12,258.91L688.71,259.69L689.73,260.30L690.38,260.46L691.49,261.42L691.37,261.72L691.60,262.02L692.06,262.27L692.69,263.05L693.01,263.66L693.27,263.86L693.34,263.91L693.33,264.29L693.63,264.75L695.42,266.04L695.53,266.31L695.41,266.64L695.97,267.11L695.81,267.35L695.09,267.49L694.20,268.14L694.08,268.31L694.41,268.58L694.52,268.88L694.43,269.04L693.73,268.94L693.21,268.86L693.02,269.03L692.58,269.10L692.11,269.05L691.87,269.02L690.73,269.48L690.72,269.71L690.53,269.84L690.17,269.82L689.30,270.27L688.63,270.39 "/><path d="M676.81,263.31L677.06,263.45L677.11,263.63L677.72,263.74L677.61,263.99L678.27,264.87L679.10,265.25L681.08,265.63L681.63,265.97L682.14,265.97L682.86,266.39L682.77,266.72L683.13,267.00L683.07,267.19L683.82,267.63L685.08,267.73L685.80,268.49L685.93,268.63L686.82,269.23L686.71,269.36L687.30,269.83L688.37,270.06L688.63,270.39 "/><path d="M719.23,277.05L718.72,277.08L718.43,277.30L717.48,276.82L716.73,276.82L716.39,276.63L715.67,276.73L715.49,276.60L715.07,276.54L714.72,276.32L714.60,276.32L714.20,276.29L714.11,276.10L713.40,275.60L712.51,276.01L711.87,275.71L711.43,275.64L711.08,275.68L710.60,275.38L708.34,274.82L708.02,274.68L707.69,274.66L707.38,274.64L706.68,274.31L706.03,274.18L705.13,274.18L704.67,274.04L704.29,273.78L703.81,273.85L703.51,273.74L703.45,273.41L703.01,273.13L702.97,273.10L702.16,272.96L701.98,272.87L701.76,272.76L699.62,272.72L699.17,272.97L699.06,273.40L698.26,273.28L697.08,272.76 "/><path d="M595.61,243.14L596.19,243.24L596.46,243.20L596.67,243.08L596.79,242.53L596.56,242.22L596.82,241.74L596.75,241.34L595.79,240.18L595.06,239.87L594.70,239.51L594.71,239.10L594.47,238.83L593.36,238.53L593.04,238.37L592.30,238.28L592.09,238.14L592.07,237.83L591.89,237.62L591.67,237.38L591.58,237.31L590.63,236.60L589.92,236.20L589.86,236.04L589.17,235.69L588.36,235.52L588.00,235.33L587.22,234.21L587.15,233.18L586.62,232.51L585.91,231.96L585.94,231.63 "/><path d="M573.69,235.95L573.10,236.47L573.32,236.76 "/><path d="M595.61,243.14L595.10,242.64L594.30,242.20L593.27,241.85L592.41,241.66L592.00,241.73L590.68,241.50L589.79,241.67 "/><path d="M558.18,233.06L558.66,232.64L558.71,232.39 "/><path d="M686.78,271.71L686.99,271.63L687.71,271.72L688.23,271.61L688.61,271.67L688.83,271.53L688.40,271.09L688.83,270.72L688.63,270.39 "/><path d="M453.65,204.87L454.08,204.59L455.04,203.56L455.57,203.45L456.22,203.04L456.87,202.32L457.29,202.19L457.77,201.56L457.77,201.38L458.25,201.03L458.43,200.60L458.45,200.42L458.23,200.27L458.44,199.93L458.25,199.79L458.39,199.65L458.35,199.48L458.31,199.33 "/><path d="M523.82,224.88L524.40,224.92L524.49,224.93L525.03,224.96L527.19,224.89L527.45,224.72L528.91,224.55L529.11,224.32L529.70,224.41L529.97,224.57L530.59,224.49L531.26,224.75L531.88,224.80L532.17,224.64L532.59,224.79L535.01,224.94L535.99,225.16L536.12,225.19 "/><path d="M729.30,282.23L728.84,282.22L728.73,282.19L728.68,282.18L728.53,282.13L727.85,281.94L727.76,281.97L727.64,282.02L726.65,281.89L726.46,281.94L726.35,281.97L725.96,282.30L726.28,282.48L725.91,282.56L725.64,282.76L724.74,282.58L724.51,282.24L724.29,282.22L724.01,282.36L723.87,282.32L723.89,282.14L723.72,282.11L723.63,282.10L723.14,282.33L723.00,282.28L723.03,282.05L721.78,282.07L720.77,282.09L720.37,282.10L720.12,281.82L719.85,281.80L719.49,281.90L718.78,281.87L718.50,281.87L718.28,281.97L718.07,281.94L718.05,281.82L717.48,281.73L717.33,281.66L716.92,281.45 "/><path d="M563.57,233.31L562.79,233.44L562.15,233.30L561.31,233.44L560.87,233.81L560.45,233.79L559.96,234.55L559.62,234.65L559.42,234.84L559.97,235.48 "/><path d="M716.92,281.45L715.81,281.00L715.51,281.09L714.76,281.06L714.10,280.67L714.70,280.52L715.27,280.16L714.96,279.92L715.23,279.76L714.71,279.45L714.36,279.42L714.05,279.23L712.63,279.00L711.90,278.79L711.03,278.50L710.94,278.47L710.82,278.43L710.03,277.99L709.09,277.67L708.08,277.38L708.03,277.37L706.23,277.23L705.68,277.37L704.86,277.05L702.21,276.74L701.50,276.46L700.64,276.41L700.63,276.40L700.20,276.00L699.28,275.97L699.07,276.04 "/><path d="M557.25,233.32L556.00,233.46L555.39,233.86L554.43,233.99 "/><path d="M686.78,271.71L686.48,271.62L685.15,270.69L684.35,270.49L684.04,270.66L683.71,270.61L682.94,270.96L682.89,271.14L682.55,271.13L682.28,270.92L681.58,270.81L679.52,270.08L678.87,270.02L678.01,269.60L676.71,269.33L676.45,269.37L675.58,269.12L675.03,269.14L674.56,269.16L674.38,269.02 "/><path d="M559.97,235.48L559.37,235.56 "/><path d="M604.36,248.73L604.26,248.69L604.34,248.55L604.40,248.45L604.05,248.38L603.55,247.86L603.37,247.80L602.59,247.58L602.18,247.17L600.47,246.68L599.76,246.20L598.78,246.13L598.19,245.76L597.81,245.76L597.06,245.48L596.19,244.61L595.68,243.32L595.61,243.14 "/><path d="M604.36,248.73L604.54,248.81L605.06,249.03L605.11,249.05L605.57,249.07L605.65,248.86L605.27,247.79L604.92,247.59L605.04,247.44L604.90,247.08L605.16,246.88L604.55,245.69L604.16,245.54L603.46,245.27L603.17,244.82L603.41,244.46L602.54,243.77L602.47,243.41L602.36,242.78L602.27,242.31L602.11,242.11L601.58,241.95L601.75,241.65L601.47,241.29L601.56,240.61L601.41,239.96L601.73,239.55L601.24,239.14L601.22,238.88L601.33,238.58L601.68,238.34L601.35,237.92L602.16,237.78L602.17,237.77L602.43,237.53L602.42,237.03L602.69,236.78L602.34,236.45L602.54,236.16L602.65,236.01L602.42,235.77L602.85,235.54L602.78,234.94L603.54,234.46L604.12,233.89L604.28,233.52L604.11,232.81L603.62,232.51L603.12,232.41L602.81,232.13L602.51,231.40L601.46,230.84L601.06,230.20L600.20,229.87L599.77,229.54L599.35,229.48L599.03,229.32L598.61,228.34L598.77,228.05L597.66,227.69L596.53,226.97L596.17,226.74L595.43,226.39L595.21,226.28L594.41,225.90L594.31,225.85L594.10,225.48L593.86,225.37L592.74,225.02L592.59,225.00L592.13,224.96L591.38,224.75L591.10,224.63L589.95,224.11L589.48,224.05L589.01,223.76L588.48,223.67L588.22,223.51L587.51,223.43L586.61,223.13L586.33,222.86 "/><path d="M559.97,235.48L560.17,235.71L561.58,236.44L561.63,236.82L562.36,237.01L562.57,237.21L563.06,237.28L563.12,237.31L563.35,237.42 "/><path d="M348.85,173.58L349.01,173.71L349.12,173.79L348.95,174.06L349.17,174.34L348.82,174.54L348.36,175.39L348.55,175.54L347.84,175.68L347.04,176.37L347.06,176.48L346.78,176.62L346.64,176.90 "/><path d="M368.35,182.87L368.56,182.83L368.81,182.80L369.07,182.49L369.71,182.35L370.01,182.29L370.44,182.34L370.65,182.25L371.07,182.34L371.22,182.58L371.12,182.76 "/><path d="M549.16,233.76L549.92,233.89L551.77,233.80 "/><path d="M549.16,233.76L549.00,233.32L549.07,233.07L549.73,232.42L549.66,232.26L550.24,231.57L551.12,231.07L551.46,230.51L551.21,230.03L551.31,229.49L551.05,229.20L551.44,229.04L551.76,228.72L551.67,228.56L552.41,228.04L553.66,228.18L554.05,228.08L554.44,227.98L554.77,227.81L556.30,227.45 "/><path d="M411.54,192.65L411.91,192.88L412.21,192.87L412.35,192.67L412.86,192.74L413.24,192.87L413.40,193.21L413.29,193.35L412.76,193.34L412.31,193.62L411.69,193.85L411.37,194.34L411.03,194.23L410.70,194.41L411.14,194.63L410.97,195.19 "/><path d="M670.51,252.13L670.06,252.69L670.47,252.95L670.63,253.06L670.49,253.30L669.66,253.75L669.70,254.10L669.20,254.19L669.00,254.40L669.22,254.77L668.98,254.88L667.71,254.88L667.05,255.16L666.34,255.18L665.69,255.38L665.19,255.39L664.53,255.71L662.95,256.07L662.78,256.11L662.48,256.27L662.42,256.27L661.06,256.45L659.84,256.88L658.83,256.98L657.90,257.06L657.74,256.94L657.20,257.07L655.61,257.74L655.46,257.84L654.59,258.40L654.39,258.75L653.88,258.96L653.67,259.32L653.17,259.56L653.17,259.56L652.67,259.81L652.82,260.01L652.56,260.22L652.50,260.27L652.25,260.33L651.90,260.18L651.63,260.20L651.62,260.20L651.62,260.20L651.53,260.42L650.90,260.59L649.35,260.54L648.86,260.89L648.45,261.00L648.00,260.95L648.04,261.04L647.70,261.17L647.30,261.10L646.63,261.59L645.92,261.51L645.86,261.41L645.78,261.29L645.56,261.27L645.46,261.33L645.19,261.47L644.66,261.43L643.85,261.38L643.52,261.50L643.49,261.71L643.47,261.88L643.11,261.81L643.05,261.80L642.99,261.79 "/><path d="M636.38,249.82L636.72,249.94L637.35,249.91L637.60,249.44L638.16,249.45L638.55,249.66L638.44,249.82L638.90,250.03L638.93,250.21L639.21,250.37L639.44,250.37L639.88,250.37L640.37,250.97L640.45,251.32L640.81,251.55L641.47,251.64L641.47,252.31L641.63,252.57L642.17,253.02L642.59,253.21L642.88,253.21L643.11,253.10L643.40,253.17L643.56,253.37L643.31,253.89L643.45,254.02L643.51,254.07L644.23,254.09L644.23,254.44L643.74,254.64L643.64,254.87L643.29,254.98L643.82,255.58L643.78,255.72L643.71,256.03L644.04,256.45L644.08,256.50L644.05,256.61L643.91,257.04L644.08,257.36L643.62,257.46L643.24,258.68L643.22,259.00L643.55,259.37L643.53,259.49L643.41,260.09L643.61,260.54L643.69,260.71L643.53,260.80L643.65,261.04L643.25,261.49L642.99,261.79 "/><path d="M573.22,237.63L573.15,237.77L572.92,238.26L572.32,238.53L572.33,238.58L572.37,238.70L573.18,238.98L573.06,239.18L574.06,239.54L574.13,239.73L573.92,239.74L573.72,239.94L573.86,240.10L573.96,240.21L573.67,240.51L573.69,240.72L572.97,241.36 "/><path d="M382.24,187.44L382.64,187.44L383.04,187.77L384.00,187.91L384.64,188.12L384.66,188.12L389.18,188.78L389.92,188.75L391.02,188.88L391.51,188.84L392.28,188.50L392.33,188.36L392.00,188.16L391.67,187.74 "/><path d="M430.97,201.28L431.28,200.99L431.23,200.71L430.72,200.26L430.68,198.91L430.84,198.50L430.47,198.16L430.44,197.78L430.27,197.66L429.54,197.17L429.41,196.91L429.54,196.59L429.60,196.44L429.74,196.09L429.76,196.05L429.93,195.95L430.27,195.76L430.34,195.65L430.40,195.54L430.04,195.00L429.74,194.78L429.31,194.47 "/><path d="M354.09,180.14L354.32,180.11L354.56,180.24L354.68,180.18L355.04,180.02L356.58,179.81L357.37,179.66L357.60,179.53L358.03,179.59L359.72,179.40L360.01,179.37L360.17,179.38L360.57,179.43L361.68,179.17 "/><path d="M430.64,201.40L430.97,201.28 "/><path d="M550.39,226.75L550.30,227.40L549.96,227.53L550.27,228.23L550.15,228.49L549.86,228.69L549.95,228.89L549.45,228.93L549.13,229.16L548.90,229.03L547.87,228.84L547.60,229.01L546.35,229.11L545.70,229.33L545.26,229.30L544.58,229.48L543.95,230.66L543.72,230.72L543.56,230.77L543.48,230.93L543.61,231.08L543.83,231.32L543.76,231.66L544.67,231.98L544.27,232.17L544.53,232.51L544.16,232.66L544.01,232.87L543.52,232.90L543.15,233.29 "/><path d="M410.97,195.19L411.70,195.34L411.83,195.37L412.29,195.37L412.67,195.77L412.60,195.91L412.97,196.00L413.60,195.90L413.89,196.05L414.43,195.91L414.88,195.66L415.27,195.81L417.16,195.63L417.85,195.87L418.89,195.98L419.26,196.42L419.28,196.44L419.06,196.69L419.25,196.97L419.66,196.43L419.81,196.22L422.05,196.04L422.41,196.08L422.82,196.37L423.30,196.26L423.68,196.34L424.01,196.62L424.40,196.72L425.56,197.04L426.01,197.11L426.63,197.20L426.91,197.35L426.99,197.39L427.11,197.40L427.45,197.42L427.27,197.84L427.12,198.18L426.82,198.41L426.73,198.92L426.96,199.09L426.87,199.55L427.03,199.63L427.13,199.68L427.06,199.82L427.04,199.84L427.06,199.85L427.44,199.93L428.07,200.68L428.37,200.82L428.91,200.77L429.32,200.85L429.80,200.95L429.91,201.13L430.28,201.17L430.22,201.32L430.64,201.40 "/><path d="M543.15,233.29L542.39,233.21L542.62,232.86L541.90,232.85L541.33,232.67 "/><path d="M619.54,255.76L619.72,255.51L619.66,255.26L620.01,254.87L619.81,254.45L620.38,254.03L620.96,253.79L621.03,253.61L621.60,253.55L622.19,253.24L622.26,253.21L622.30,252.93L622.36,252.56L624.13,252.21L624.36,252.25L624.59,252.50L625.19,252.54L625.89,252.41L626.35,252.16L626.35,251.95L626.49,251.75L626.79,251.62L626.94,251.24L626.94,251.24L626.96,251.17L627.78,250.64L628.48,250.43L628.80,250.07L629.50,249.79L630.31,249.62L630.94,249.69L631.57,249.53L632.06,249.22L632.91,249.03L633.09,248.86 "/><path d="M619.02,249.36L618.72,249.52L618.71,249.91L618.56,250.02L618.95,250.50L618.55,250.84L618.55,250.85L618.31,251.34L618.06,251.46L618.02,251.69L617.49,251.79L617.70,252.07L616.95,252.14L616.93,252.58L616.50,252.92L616.74,253.59L617.18,253.48L617.79,253.62L618.48,254.22L618.21,254.48L618.39,254.83L618.19,255.11L618.42,255.26L618.57,255.36L618.95,255.39L619.54,255.76 "/><path d="M333.70,174.35L334.04,174.45L334.50,174.44L334.87,174.55L335.59,174.77L336.09,175.25L336.76,175.42L337.71,175.92L338.89,176.55 "/><path d="M430.64,201.90L430.64,201.40 "/><path d="M465.38,206.38L465.04,206.22L464.53,206.17L463.36,206.29L462.75,205.92L462.01,205.71L462.00,205.71L461.50,205.68L461.11,205.52L458.82,205.75L458.22,205.74L456.55,206.25L455.44,206.42L454.87,206.99L454.42,207.16L454.25,207.35L453.57,207.53L453.13,207.65L452.87,208.14L453.45,208.37L453.43,208.45 "/><path d="M691.07,277.63L691.47,277.63L691.80,277.62L693.04,277.82L694.31,277.90L695.25,277.85L696.81,277.76L697.16,277.65L697.16,277.35L697.79,277.00L697.75,276.78L697.38,276.62L697.04,276.61L696.93,276.41 "/><path d="M686.78,271.71L687.10,271.97L687.25,272.37L687.00,273.14L687.61,273.61L687.93,274.21L688.15,274.34L687.93,274.54L688.09,274.97L688.49,275.17L689.24,275.25L689.44,275.36L689.24,275.80L690.92,276.59L691.07,277.63 "/><path d="M546.24,235.21L546.59,235.17L546.84,234.92L547.42,234.79L548.85,234.72L548.98,234.61L548.64,234.32L548.78,234.06L549.23,233.89L549.16,233.76 "/><path d="M546.24,235.21L546.28,234.16L546.04,233.90L545.68,233.51L545.74,233.32L543.72,233.20L543.15,233.29 "/><path d="M451.79,208.36L451.27,208.23L450.81,208.30L450.38,208.20L449.92,207.95L449.72,207.62L449.74,207.19L449.17,206.49L449.21,206.17L448.86,205.59L449.03,204.27L448.56,203.64L448.61,203.44L448.31,203.39L448.37,203.18L449.25,202.30L449.73,201.84L449.47,201.60L449.09,201.63L449.03,201.63L448.72,201.48L448.02,201.43L447.86,201.18L447.11,201.35L445.68,201.29L444.74,201.45L444.61,201.56L444.20,201.54L443.28,201.80L443.10,201.60L443.59,201.30L443.02,200.81L442.62,200.87L442.16,200.72L441.56,200.74L441.48,200.86L440.48,200.49L440.36,200.44L439.73,200.38L439.56,200.22L439.11,200.18L439.05,199.86L438.54,199.43L438.37,199.01L439.14,198.30L439.00,198.11L439.63,197.58L440.40,196.30L440.99,195.87L441.43,195.27L442.04,194.94L442.06,194.74L442.14,194.69L442.23,194.63L441.96,194.51L442.55,194.11L442.46,193.91 "/><path d="M602.97,252.28L602.78,251.89L602.99,251.51L603.21,251.13L603.28,250.69L603.92,250.48L603.96,250.44L604.16,250.20L603.96,249.88L603.87,249.73L603.82,249.66L604.56,249.47L604.64,249.27L604.36,248.73 "/><path d="M370.52,185.45L370.21,185.39L369.51,185.47L369.43,185.48L368.99,185.33L368.64,185.22L368.66,185.06L367.43,185.34L366.69,185.35L366.60,185.27L367.25,184.93L367.16,184.71L367.04,184.41L367.18,184.24L366.51,184.26L366.17,184.15L366.21,183.85 "/><path d="M676.32,274.07L677.81,273.95L678.56,273.52L678.44,273.37 "/><path d="M716.92,281.45L714.88,281.65L714.53,281.89L714.18,281.97L714.32,282.16L714.22,282.29L714.23,282.29L714.68,282.94L714.51,283.10L714.29,283.31L714.06,283.52L714.04,283.53L713.92,283.56L713.86,283.57L713.75,283.60L712.50,283.46L712.03,283.53L711.66,283.42L711.53,283.25L711.44,283.14L710.47,283.09L710.30,283.27L709.60,283.38L709.41,283.40L708.97,283.23L709.02,283.01L708.38,282.63L708.37,282.63L707.68,282.50L706.87,282.35L705.32,281.61L704.83,281.23L704.28,281.07L704.00,281.10L703.67,281.31L702.88,281.17L700.92,280.47L698.58,280.58L698.09,280.32L697.82,280.26L695.79,279.87L695.47,279.81 "/><path d="M376.01,188.37L376.60,188.04 "/><path d="M574.64,245.30L573.80,245.09L573.52,244.81L573.15,244.83L572.81,244.85L572.67,244.95L572.31,244.75L571.99,244.92L571.65,244.84L570.72,243.71L569.42,243.29L569.49,243.10L569.17,242.77L569.28,242.27L569.14,242.16L567.54,241.27L566.68,241.16L566.32,240.97L565.92,240.55L565.88,240.53L564.17,239.61L563.94,239.31L563.92,239.28 "/><path d="M691.07,277.63L690.79,277.84L688.51,278.05L688.24,278.29L688.55,278.97L688.53,279.02L688.35,279.41L688.35,279.41L688.31,279.51L688.38,279.64L688.07,279.90L688.07,280.20 "/><path d="M527.33,228.11L527.19,229.09L526.67,229.41L526.74,229.73L526.42,229.95L526.87,230.43L526.63,230.77L525.91,230.76L524.41,231.04L524.33,231.31L524.30,231.39L524.49,231.64L524.15,232.10 "/><path d="M523.31,231.93L524.15,232.10 "/><path d="M342.66,179.22L342.49,179.50L341.73,179.61L341.52,179.73L341.37,179.75L340.65,179.85L340.18,179.91L339.88,180.20L339.28,180.32L338.54,180.32 "/><path d="M608.22,243.90L608.43,244.16L609.53,244.79L608.66,246.11L608.64,246.41L608.29,246.65L608.03,247.34L608.17,248.11L608.18,248.11L608.45,248.51L608.28,248.79L609.06,249.62L609.09,250.07L609.08,250.10L608.86,250.49L608.94,250.81L608.89,250.96L608.88,250.99L608.68,251.54L608.57,251.63L608.49,251.69L608.33,251.82L608.34,252.13L607.10,252.92L606.59,253.40L606.48,253.73L606.81,254.18L606.52,254.81L606.62,255.18L606.69,255.45L606.55,255.69L606.77,255.99L607.27,256.06L607.49,256.35L607.45,256.60L608.28,256.85L608.43,256.69L608.62,256.68L609.07,257.15L609.34,257.19L609.70,256.92 "/><path d="M631.80,263.89L631.75,263.42L631.74,263.39L630.70,262.74L630.66,262.71L630.67,262.70L630.89,262.58L631.37,262.46L630.80,261.80L630.80,261.79L630.86,261.53L629.97,260.80L629.19,260.52L629.12,260.17L628.22,259.55L628.15,259.21L628.12,259.07L628.07,259.03L627.85,258.87L627.75,258.61L627.71,258.50L628.08,258.22L628.52,257.88L629.12,257.67L629.36,257.80L629.79,257.78L630.01,257.65L629.76,257.32L630.03,256.95L630.39,256.97L630.61,256.85L630.54,256.65L630.52,256.60L630.48,256.47L630.87,256.39L631.10,256.56L631.83,256.38L632.38,256.42L632.69,256.33L632.79,256.07L633.08,256.00L633.42,255.65L633.46,255.36L634.21,254.65L634.86,254.64L635.08,254.55L635.11,254.41L635.92,254.05L636.16,253.65 "/><path d="M350.01,183.54L349.72,183.56L349.67,183.67L349.20,183.61L347.96,183.60L346.72,183.08L346.63,183.04L346.59,183.01L346.43,182.87L346.02,182.94L344.32,182.44L343.83,182.42L343.35,182.53 "/><path d="M642.99,261.79L642.95,261.81L642.92,261.83L642.81,261.90L642.15,261.92L641.82,262.23L641.83,262.43L642.49,262.74L642.46,262.84L641.53,262.84L639.87,263.27L639.14,264.04L639.11,264.07L638.96,264.11L637.87,264.39L637.79,264.41L637.94,264.76L636.79,264.92L635.81,265.42L635.52,265.47L635.37,265.49L634.98,265.46L634.71,265.44L634.07,265.39L633.59,265.35L633.41,265.18L633.61,264.85L633.54,264.66 "/><path d="M619.54,255.76L620.55,256.02L620.62,256.33L621.07,256.60L622.02,256.74L622.33,256.97L622.57,257.38L622.23,257.70L622.20,257.98L621.89,258.18L622.32,258.51L622.06,258.97L621.66,259.27L621.44,259.44L621.54,259.57L621.62,259.68L621.55,259.85L621.13,259.89L621.13,259.90L620.94,260.09L620.81,260.22L620.23,260.39L619.73,260.53L620.09,261.38 "/><path d="M668.41,275.80L668.30,275.55L668.15,275.21L668.14,275.18L667.91,275.03L667.98,274.94L668.12,274.76L668.93,274.46L669.11,274.12L669.43,273.90L669.88,273.89L671.21,273.85L672.07,273.72L672.54,273.87L673.80,273.92L674.85,274.17 "/><path d="M688.07,280.20L687.68,280.03L687.52,280.01L687.08,279.97L686.75,279.72L686.54,279.28L686.11,279.02L686.13,278.80L686.01,278.71L686.01,278.71L685.87,278.61L685.38,278.52L685.36,278.52L684.93,278.44L683.78,278.54L682.78,278.77L682.27,278.95L682.16,279.09L681.28,278.96L681.01,278.97L679.77,279.03L678.99,278.75L678.06,278.69L677.82,278.52L677.71,278.33L677.50,277.99L677.06,277.78L676.91,277.71 "/><path d="M676.91,277.71L676.42,277.48L675.11,277.37L674.81,277.35L674.35,277.09L674.18,277.00L673.76,276.96L673.42,276.93L673.09,277.09L671.45,276.88L671.42,276.73L670.73,276.47L670.18,276.46L669.33,276.29L669.13,276.02L668.41,275.80 "/><path d="M340.10,182.06L340.52,182.03L340.64,181.85L341.76,181.81L342.98,181.62L344.05,181.57L345.13,181.34L345.89,181.28L349.16,181.02L349.26,181.01 "/><path d="M714.16,289.54L716.53,290.69L717.71,290.78L718.85,290.72L718.95,290.71L719.00,290.72L719.52,290.80L720.29,291.46L720.89,291.66L721.45,292.14L722.50,292.29L722.83,292.16L723.80,291.25L724.24,291.17L725.10,291.30L725.41,291.38L726.63,291.72L726.87,291.78L727.19,291.87L727.29,291.89 "/><path d="M438.58,210.05L438.87,209.45L439.21,209.45L439.53,209.14L439.44,208.90L439.95,208.21L440.31,208.05L440.40,207.58L440.46,207.51L440.66,207.25L440.50,206.96L440.18,206.78L440.46,206.55L440.40,206.40L439.98,206.20L439.68,205.91L439.75,205.69L439.49,205.32L438.98,205.05L438.97,205.01L438.96,204.91L438.98,204.90L439.25,204.79L439.08,204.19L439.21,204.12L439.42,204.00L439.20,203.88L439.11,203.83L439.11,203.82L439.12,203.71L439.52,203.69L439.09,203.35L439.40,203.16L439.14,202.90L439.13,202.89L439.09,202.45L439.09,202.45L439.38,202.15L438.75,201.82L438.74,201.67L438.37,201.46L438.42,201.32L437.19,201.31L436.88,201.51L436.63,201.67L436.60,201.68L435.98,201.74L435.64,201.78L435.14,201.83L434.83,201.76L434.78,201.72L434.52,201.51L433.75,201.49L433.16,201.47L432.98,201.38L433.02,201.28L432.75,201.17L432.48,201.18L431.90,201.47L431.76,201.54L431.24,201.45L430.97,201.28 "/><path d="M688.07,280.20L688.07,280.25L688.08,280.39L688.09,280.62L688.77,280.85L688.86,280.88L689.08,280.96L689.12,280.97L689.46,281.20L689.52,281.24L689.62,281.35L689.98,281.76L690.05,281.84L690.43,282.04L690.77,282.22L691.10,282.26L691.21,282.28L691.39,282.23L691.77,282.12L691.88,281.95L692.07,281.96L692.86,282.59L693.44,282.63L693.89,282.96L694.28,283.24L694.53,283.62L695.43,283.86L695.60,284.01L695.62,284.37L695.86,284.76L696.54,285.28L696.96,285.23L697.11,285.22L698.60,286.04L698.85,286.09L699.03,285.94L700.50,286.02L701.35,285.85L701.71,285.91L702.02,286.11L702.85,286.13L703.42,285.99L704.50,286.16L705.20,286.01L705.78,286.47L708.40,286.52L708.43,286.52L708.85,286.66L708.95,286.73L709.27,286.97L709.35,287.03L710.31,287.25L710.38,287.27L711.31,287.79L711.45,287.91L711.71,288.11L711.74,288.57L712.40,288.84L713.13,288.84L713.42,289.03L713.55,289.12L713.60,289.15L714.16,289.54 "/><path d="M346.97,185.08L347.83,184.92L349.08,184.84L349.38,185.19L349.72,185.27L351.47,185.37L352.71,185.12L353.20,185.20L353.45,185.33L353.59,185.40L354.16,185.43L354.73,185.18L355.59,184.80L356.09,184.75L357.36,184.82L358.11,184.64L358.84,184.46L359.40,184.41L359.86,184.37L360.80,184.08L361.72,184.02L361.88,184.12L362.19,183.99L362.75,183.76L363.16,183.69L364.93,183.63L365.17,183.62L365.65,183.71L365.96,183.64 "/><path d="M548.76,241.99L548.51,241.98L548.16,242.14L547.97,242.03L548.28,241.90L548.24,241.72L547.73,241.54L547.79,241.43L547.95,241.15L547.95,241.15L547.99,240.75L548.01,240.54L548.04,240.20L547.96,240.10L547.82,239.95L546.24,239.22L546.59,238.78L546.88,237.80L546.90,237.76L546.76,236.85L546.24,235.87L546.24,235.71L546.24,235.21 "/><path d="M529.12,228.13L529.75,228.27L530.71,228.72L530.69,229.28L530.93,229.52L530.41,229.95L530.39,230.10L531.04,230.22L531.01,230.75L530.65,231.19L530.62,231.22L530.75,231.31L530.44,231.50L529.13,231.66L527.80,232.31L527.45,232.48L527.92,232.80L528.14,233.15L527.77,233.53L527.41,233.90L528.05,234.11L528.14,234.30L527.89,234.54L528.46,234.90L528.36,235.30L527.82,235.56L526.81,235.51L526.51,235.39L525.32,235.55 "/><path d="M525.32,235.55L525.49,235.13L525.23,235.00L525.14,234.96L525.29,234.83L525.38,234.75L525.49,234.32L525.50,234.25L525.51,234.20L525.48,234.15L525.10,233.58L524.70,233.55L524.14,232.30L524.30,232.18L524.15,232.10 "/><path d="M560.18,238.86L559.97,238.97L559.23,239.05L559.07,239.56L558.99,239.81L558.75,239.84L557.59,239.67L556.83,239.85L556.73,240.09L556.54,240.14L555.68,240.13L555.42,240.27L554.59,240.71L554.02,240.84L553.64,240.76L553.40,240.84L553.09,241.06L553.17,241.20L553.01,241.46L552.09,241.82L551.99,242.14L551.43,242.76L551.09,242.74L551.09,242.78L551.09,242.88L550.89,243.02L550.88,243.03L550.71,243.15L550.84,243.30L550.46,243.31 "/><path d="M404.64,201.78L404.95,201.64L405.30,201.29L405.73,201.46L406.09,201.38L406.24,201.15L406.09,200.94L405.37,200.53L405.82,200.54L406.03,200.26L407.01,200.08L407.26,199.53L407.67,199.38L408.11,198.65L408.41,198.55L408.55,198.49L408.79,198.28L408.58,197.97L409.38,197.71L409.42,197.58L409.51,197.34L409.35,197.08L408.88,196.87L408.97,196.57L409.28,196.34L409.36,196.28L409.34,196.23L409.26,195.92L409.59,195.58L409.72,195.45L410.30,195.30L410.67,195.41L410.88,195.37L410.97,195.19 "/><path d="M452.56,211.74L452.21,211.54L450.10,211.20L449.19,211.31L448.74,211.26L448.24,211.39L447.43,211.30L446.67,211.55L446.07,211.53L445.69,211.52L445.46,211.62L445.27,211.51L443.86,211.54L443.60,211.81L443.17,211.87L443.12,212.07L442.42,212.24L442.14,212.11L441.70,212.23L441.46,212.21L441.39,211.97L440.95,212.05L440.58,211.93L440.46,211.89L440.39,210.83L440.08,210.52L439.65,210.51L439.44,210.29L439.31,210.14L438.68,210.17L438.58,210.05 "/><path d="M584.76,253.86L585.23,253.67L585.63,253.50L585.93,253.56L586.18,253.84L587.04,253.72L587.25,253.44L587.13,253.30L587.52,253.26L587.41,252.94L588.01,252.47L588.52,252.55L589.17,252.26L589.59,252.35L590.27,252.17L590.50,252.03L590.47,251.95L590.44,251.83L590.67,251.65L590.57,251.43L590.87,251.28L591.21,251.40L593.10,251.22L594.03,251.06L594.30,250.97L595.26,250.67L596.23,250.55L596.45,250.63L596.63,250.70L596.94,251.10 "/><path d="M587.27,240.29L586.36,240.50L586.18,241.06L586.21,241.13L586.33,241.36L586.00,241.64L585.50,241.78L585.40,242.18L585.55,242.55L586.02,242.85L585.43,243.00L585.25,243.41L584.91,243.44L584.81,243.59L585.10,243.99L584.89,244.01L584.76,244.15L584.79,244.52L584.79,244.60L584.29,245.02L584.27,245.28L583.32,246.41L582.97,246.37L582.56,246.51L582.36,246.98L582.39,247.23L582.48,247.89L582.36,248.09L582.26,248.28L582.46,248.55L582.34,248.73L582.58,249.00L582.52,249.15L582.87,249.31L583.10,249.77L583.32,249.90L584.71,250.67L584.63,250.86L585.16,251.38L585.06,251.53L585.15,251.85L585.17,251.89L584.79,252.20L584.94,252.41L584.76,252.72L584.39,252.82L584.11,253.43L584.16,253.54L584.33,253.86L584.76,253.86 "/><path d="M363.06,188.98L362.76,188.97L362.44,188.61L361.72,188.61L361.53,188.74L361.42,188.81L360.69,188.73L360.19,188.55L359.89,188.57L359.82,188.58L359.68,188.38L357.87,188.17L357.39,188.00L356.74,188.05L355.99,187.98L355.43,188.11L354.68,188.00L354.36,187.84L354.16,187.50L353.69,187.18L352.75,186.99L352.75,186.99L352.55,186.80L352.08,186.79L351.91,186.64L351.79,186.54L351.24,186.55L350.97,186.39L349.51,186.45L349.23,186.46L348.47,186.18L347.84,185.95L347.35,185.96L346.51,185.81L345.62,185.90L345.19,185.85L344.73,185.94 "/><path d="M430.64,201.90L430.09,201.87L429.84,201.98L429.54,201.87L428.99,201.94L428.67,201.80L428.54,201.84L428.20,201.95L428.12,202.45L428.01,202.52L427.53,202.80L426.46,202.62L425.45,202.12L425.06,202.25L424.34,202.26L423.56,202.77L423.54,202.91L422.92,203.01L422.66,203.20L421.78,203.01L420.55,203.41L420.49,203.39L420.12,203.29L419.86,203.42L419.63,203.29L418.79,203.21L418.32,202.98L417.35,202.97L417.24,203.12L415.97,203.33L413.68,203.35L413.21,203.63L411.73,203.65L411.61,204.27L410.57,204.52L409.81,204.41 "/><path d="M643.26,271.97L643.84,272.08L644.09,272.08L644.46,272.07L644.53,272.16L644.51,272.19L644.33,272.34L644.52,272.43L645.64,272.23L645.67,272.18L645.97,271.70L646.32,271.67L646.36,271.37L646.83,271.36L647.15,271.26L647.70,271.30L648.16,271.19L648.31,270.90L648.63,270.78L649.19,270.86L649.96,270.98L649.94,270.75L650.35,270.70L650.97,270.92L651.34,270.92L651.79,271.06L652.54,271.40L653.51,271.54L653.76,271.47L653.81,271.50L654.01,271.63L654.55,271.51L655.94,271.77L657.31,271.69L657.69,271.94L659.65,271.93L660.00,272.01L660.08,271.90L660.56,271.92L660.63,271.76L660.81,271.72L661.23,271.96L661.53,271.98L662.16,271.80L662.42,271.67L662.51,271.62L662.33,271.30L662.49,271.21L662.41,271.05L662.83,270.67L663.67,270.67L664.04,270.79L664.93,270.70L665.46,270.64L666.02,270.75L666.25,270.60L667.52,270.87L667.73,270.71L669.12,270.90L669.31,270.74L669.12,270.32L669.18,270.09L669.42,270.01L668.97,269.81L669.15,269.22L669.70,269.29L669.92,269.05L669.70,268.67L670.50,268.43L670.89,268.52L670.76,268.21L670.12,267.70L669.38,267.64L669.08,267.73L668.90,267.72L668.10,267.68L667.69,267.43L667.26,267.35L667.13,267.45L666.94,267.42L666.96,266.96L666.43,266.10L666.08,266.13L665.52,265.71L664.44,265.28L663.22,265.21L662.45,264.75 "/><path d="M539.64,241.68L539.79,241.57L539.26,241.18L539.65,240.86L539.59,240.56L540.37,240.37L540.75,240.06L540.76,240.05L540.85,240.04L541.49,239.93L541.71,239.57L541.04,239.33L541.21,238.53L541.07,238.33L541.44,238.04L541.43,237.62L541.73,237.54L542.42,236.65L542.39,236.51L542.28,235.93L542.57,235.67L542.60,235.50L542.66,235.17L542.87,234.90L543.31,234.66 "/><path d="M637.38,271.15L637.47,271.11L637.65,271.03L639.17,271.54L639.11,271.17L639.56,270.93L639.79,270.81L640.02,270.88L640.01,271.18L640.29,271.20L640.32,271.17L640.58,270.90L640.58,270.57L641.51,270.67L641.82,270.70L642.09,270.87L642.04,271.33L642.20,271.57L642.30,271.61L643.26,271.97 "/><path d="M636.14,270.62L636.19,270.68L636.33,270.82L636.66,270.89L636.66,270.89L636.96,270.82L637.26,270.75L637.15,270.93L637.10,271.03L637.38,271.15 "/><path d="M636.14,270.62L636.12,270.36L635.54,270.31L635.36,270.39L635.28,270.42L634.84,270.40L634.82,270.40L634.77,270.40L634.70,270.35L634.43,270.17L634.24,270.05L634.06,269.69L634.26,269.41L634.67,269.46L634.96,269.51L634.87,269.12L634.73,269.05L634.13,268.74L633.84,268.67L633.42,268.57L633.02,268.37L633.02,268.15L634.06,267.84L634.33,267.62L634.30,266.97L633.88,266.80L632.85,266.70L632.22,266.36 "/><path d="M536.12,225.19L536.45,225.38L536.46,225.41L536.92,226.45L536.80,227.04L537.31,227.49L537.37,227.74L537.85,228.09L537.90,228.19L538.18,228.79L539.10,229.26L539.14,229.72L539.37,230.05L538.72,230.52L538.66,230.75L537.74,230.61L537.76,230.42L537.25,230.24L537.01,230.02L536.90,230.06L536.62,230.17L536.14,230.15L535.84,230.29L534.83,230.34L534.38,230.69L533.75,230.77L533.42,230.95L533.56,231.39L533.05,231.99L533.10,232.20L532.68,232.49L532.47,232.89L532.74,233.11L532.58,233.49L532.42,233.64L532.26,233.79L532.17,234.29L532.30,234.43L532.94,234.53L533.37,234.81L533.07,235.09L533.23,235.30L533.22,235.50L533.21,235.65L533.50,235.99L533.14,236.30L533.45,236.71L533.05,236.96L533.17,237.16L532.97,237.59L532.65,237.62L531.96,238.18L532.66,238.71L533.47,238.78L533.61,238.93L533.39,239.15L533.43,239.73L533.40,239.78L533.34,239.89L533.25,240.04L533.87,240.33L534.42,240.24L534.64,240.28L534.72,240.76L534.49,241.17L534.69,241.27L534.84,241.26L536.22,241.18L537.09,241.29L537.91,241.26L539.01,241.40L539.64,241.68 "/><path d="M404.64,201.78L404.40,201.82L404.04,201.69L403.22,201.67L402.90,201.66L402.59,201.83L401.98,201.92L401.78,202.13L400.97,202.14L400.72,202.31L400.75,202.51L399.85,202.43L398.55,202.68L397.83,202.72L397.67,202.73L397.63,202.73L397.16,202.63L396.52,202.29L396.80,202.06L396.86,202.01L396.95,201.93L397.92,201.67 "/><path d="M584.76,253.86L584.77,254.31L584.19,254.83L584.10,255.08L583.82,255.14L583.26,255.07L582.58,255.22L583.10,255.96L583.28,256.03 "/><path d="M412.87,206.08L413.19,205.92L413.85,205.96L414.60,205.74L415.74,205.85L416.24,205.68L416.58,205.84L416.75,206.27L416.96,206.38L417.45,206.38L417.88,206.68L418.30,206.75L418.33,207.13L418.35,207.34L418.12,207.55L417.51,207.67L417.48,207.88L418.29,208.63 "/><path d="M571.66,252.95L572.63,252.49L574.04,252.11L574.17,251.81L574.54,251.68L575.81,251.70L576.03,251.55L576.01,251.49L575.86,251.13L576.59,251.02L577.09,250.64L577.35,250.05L576.96,249.82L577.33,249.48L577.51,248.80 "/><path d="M430.64,201.90L430.62,202.19L430.17,202.54L429.04,203.38L428.56,203.46L428.47,203.55L428.39,203.62L428.40,204.02L428.35,204.11L427.92,204.88L428.21,205.16L428.84,205.43L428.89,205.59L428.45,205.69L428.28,205.86L428.02,206.60L428.25,206.77L427.91,206.92L428.38,207.55L428.46,207.99L428.51,208.26L428.34,208.74L428.40,209.41L428.26,209.52L427.50,209.66L427.42,210.07L426.89,210.85L427.13,211.14L426.98,211.55 "/><path d="M326.12,183.80L327.02,183.65L329.06,183.31L330.86,183.18L331.25,183.07L331.41,183.03L331.57,182.87L331.60,182.84L331.98,182.93L332.58,183.07L333.65,183.02L333.93,183.17L334.38,183.08L334.95,183.16L335.90,182.84L336.58,183.04L336.64,183.06L337.31,183.15L337.69,183.11L337.93,182.99L338.86,182.93L339.31,182.75L339.37,182.63 "/><path d="M560.08,250.42L561.61,250.06L561.73,249.83L561.77,249.76L561.59,249.39L561.58,249.37L561.65,249.15L562.01,249.04L562.10,248.86L561.92,248.15L562.31,247.56L562.04,247.01L562.58,246.63L562.49,246.08L562.64,245.90L563.66,245.46L564.05,244.73L564.07,244.72 "/><path d="M426.98,211.55L426.26,211.48L425.95,211.54L425.53,211.62L424.50,211.33L424.26,211.52L423.94,211.46L423.64,211.05L423.11,211.03L422.97,210.91L423.15,210.65L422.76,210.39L422.09,210.10L421.45,209.95L421.02,209.95L420.32,210.17L420.10,210.16L420.01,209.89L419.64,209.85L419.47,209.64L419.12,209.49L419.11,209.32L418.31,209.10L418.25,208.95 "/><path d="M523.90,240.06L524.00,239.51L524.19,239.36L524.19,239.36L524.01,239.22L523.57,238.87L523.97,238.61L524.16,237.63L524.46,237.19L524.21,236.74L524.82,235.78L525.32,235.55 "/><path d="M509.69,234.18L509.99,234.20L510.50,234.61L511.46,235.01L512.13,236.07L512.23,236.48L512.30,236.76L512.69,236.95L513.06,236.98L513.34,237.00L513.78,237.03L513.82,237.05L514.82,237.52L515.78,237.61L516.21,237.82L516.51,237.85L517.06,237.91L519.02,237.90L519.59,238.18L519.68,238.38L519.74,238.51L519.91,238.92L519.92,238.94L519.97,238.93L520.52,238.79L520.45,239.02L520.45,239.04L520.63,239.17L521.37,239.20L521.53,239.20 "/><path d="M569.12,253.86L569.19,253.85L569.61,253.83L569.70,253.82L570.63,253.44 "/><path d="M539.64,241.68L539.77,241.73L539.58,241.98L539.97,242.24L539.75,242.87L539.94,243.12L539.60,243.45L539.57,243.74L539.74,243.99L540.23,244.17L540.52,244.51L540.97,244.56L541.15,244.86L541.06,245.00L540.72,244.92L540.25,245.32L540.41,245.41L541.45,245.43L541.90,245.18L542.57,245.41L542.91,245.62L543.24,245.83L543.44,246.30L543.61,246.37L544.33,246.66L544.68,246.80L545.69,246.93L545.86,246.95L546.25,246.73 "/><path d="M405.61,206.96L406.89,207.42L408.08,207.42L408.65,207.20L408.86,206.90L409.19,206.71L409.58,206.60L410.05,206.08L409.54,205.29L408.66,205.13L407.92,204.79L407.56,204.45L407.05,204.32L406.04,204.29L405.81,204.08L405.75,203.61L405.28,203.43L405.05,203.00L404.29,202.71L404.31,202.33L404.01,202.26L404.14,202.06L404.57,201.98L404.58,201.94L404.64,201.78 "/><path d="M435.36,215.84L435.16,215.75L435.08,215.55L435.22,215.26L435.25,215.19L434.86,214.87L435.03,214.56L434.74,214.23L434.89,214.00L434.66,213.75L434.96,213.50L435.03,212.91L435.36,212.86L435.16,212.58L435.93,212.01L435.99,211.60L436.36,211.49L436.60,211.12L436.96,211.01L437.19,210.71L437.57,210.70L438.15,210.45L438.37,210.13L438.40,210.09L438.58,210.05 "/><path d="M453.34,212.86L453.54,213.14L453.83,213.20L455.28,213.17L455.44,213.27L455.08,213.90L455.10,214.17L454.38,214.35L454.45,214.58L454.31,214.70L453.71,214.72L453.25,214.97L452.72,215.00L452.40,215.14L452.20,215.44L451.87,215.61L451.83,215.87L450.63,216.14L450.01,216.15L449.43,215.99L447.83,215.82L447.72,215.82L446.87,215.82L445.97,215.61L444.95,215.58L443.86,215.17L443.34,215.14L442.33,215.41L441.68,215.33L440.47,215.43L440.26,215.49L439.53,215.68L439.40,215.85L439.26,216.01L438.49,216.00L438.37,216.00L438.22,215.83L438.08,215.69L437.81,215.73L437.64,216.01L437.50,216.01L437.16,216.02L437.01,216.07L436.48,216.22L436.41,215.93L436.05,215.89L435.36,215.84 "/><path d="M369.34,197.50L368.32,197.11L367.62,197.12L367.60,197.08L367.37,196.78L366.90,196.79L365.48,196.43L364.86,196.48L362.59,196.00L361.38,195.96L361.33,195.55L360.97,195.48L360.88,195.34L360.82,194.65L360.54,194.44L360.11,194.48L359.78,193.93L359.77,193.90L359.35,193.83L358.77,193.87L358.11,193.65L357.89,193.79L357.70,193.77L357.44,193.64L356.91,193.62L356.64,193.43L356.06,193.45L356.17,193.08L355.64,192.87L355.49,192.82L355.00,192.85L354.99,192.67L354.62,192.52L354.66,192.20L354.47,192.04L354.30,192.07L354.27,192.08L353.77,191.72L353.86,191.46L353.26,191.32L353.03,191.12L352.86,191.10L352.75,191.09L352.64,190.91L352.18,190.92L351.32,190.30L351.27,190.18L351.11,189.78L350.92,189.71L351.31,189.38L351.58,189.36L351.43,189.20L351.06,189.11L351.05,189.01L350.69,188.95L349.84,188.50L349.65,188.29L349.43,188.25 "/><path d="M714.16,289.54L714.05,289.63L713.87,289.77L713.81,289.81L713.69,289.84L713.03,289.98L711.45,290.33L711.02,290.63L710.78,290.45L710.48,290.50L710.56,290.74L710.45,290.81L710.02,290.73L709.73,290.86L709.40,291.01L709.07,290.97L708.95,290.95L708.81,291.18L707.91,291.14L706.71,291.38L706.38,291.33L706.02,290.89L705.74,290.83L705.45,290.90L705.09,290.77L704.91,291.01L704.80,290.99L704.63,290.96L704.53,290.79L704.18,290.75L703.95,290.59L703.52,290.53L703.37,290.51L702.93,290.29L701.85,290.56L701.35,290.53L701.22,290.90L701.09,290.92L700.82,290.70L700.48,290.69L700.47,290.82L700.69,290.95L700.51,291.15L699.77,291.36L699.63,291.39L699.35,291.71L699.04,292.05L698.55,292.12L698.51,292.53L698.05,292.67L697.04,292.75L696.69,292.78L696.45,292.60L695.77,292.69L694.97,292.52L695.02,292.80L694.70,292.88L694.50,292.71L694.74,292.47L694.30,292.29L694.31,292.20L694.71,292.17L694.92,291.89L694.57,291.67L694.54,291.44L693.31,291.07L693.13,290.92L693.23,290.68 "/><path d="M395.89,205.67L395.48,205.41L394.93,205.36L394.38,205.00L393.88,204.39L393.34,204.14L392.24,203.21L392.69,202.92L392.34,202.62L391.35,202.26L391.75,201.70L392.54,201.47L393.24,201.08L392.42,200.66L392.40,200.41L392.05,200.38L391.80,200.35L391.67,200.16L391.75,199.70L391.36,199.48L390.19,199.36L389.81,199.50L389.03,199.22L388.68,198.59L388.97,198.26L388.80,198.14L389.04,197.84L388.73,197.10L388.79,196.69L388.18,196.50L387.91,196.25L388.05,195.99L387.87,195.88L388.05,195.64L387.77,195.08L387.82,195.00L388.08,194.60L388.09,194.58L387.85,194.47L387.64,194.38L387.15,194.17L387.23,194.10L387.33,194.01L387.38,193.97L387.74,193.94L387.93,193.87L388.00,193.84L388.13,193.79L388.26,193.80L388.78,193.88L388.99,193.82L389.06,193.68L389.08,193.63L389.37,193.57L389.38,193.39L389.38,193.36L389.54,193.31L389.58,193.29L390.24,193.07L390.48,192.85L390.64,192.71L390.77,192.59L391.35,192.37L391.37,192.37L391.61,192.49L391.61,192.50L392.31,192.42L392.62,192.48L393.00,192.29L393.85,191.87L393.57,191.72 "/><path d="M341.84,190.71L342.23,190.69L342.43,190.44L342.49,190.38L342.27,189.89L342.46,189.59L342.51,189.51L342.09,189.17L341.83,189.09L340.73,188.77L340.37,188.47L340.26,188.38L339.90,188.07L338.84,187.95L337.59,187.39L337.54,187.17L337.44,186.73L336.67,186.37L336.27,186.26L335.76,186.37L334.97,186.31L334.77,186.32 "/><path d="M369.34,197.50L368.67,198.00L368.43,198.07L368.21,198.04L368.00,198.01L367.90,198.04L367.78,198.11 "/><path d="M424.94,215.09L425.41,215.05L425.83,214.72L425.79,214.34L425.99,213.85L425.88,213.70L426.50,212.97L426.83,211.99L426.85,211.93L426.98,211.55 "/><path d="M689.02,289.49L687.57,289.68L685.73,289.47L685.10,289.56L684.30,289.54L683.84,289.39L683.21,288.95L681.96,288.49L680.65,288.27L679.07,288.47L678.21,288.91L677.31,289.17 "/><path d="M565.81,249.86L564.89,251.39L564.34,251.59L564.36,251.67L564.42,251.91L564.19,252.18L563.64,252.83L563.49,252.84L563.35,252.86L563.03,252.79L562.40,253.02L560.62,253.12L559.37,253.84L558.65,253.99 "/><path d="M331.82,189.62L331.85,189.39L330.56,189.21L330.32,188.91 "/><path d="M385.72,204.71L385.61,204.44L385.31,204.22L385.43,204.01L385.16,203.64L384.68,203.48L384.10,202.78L383.64,202.84L382.88,202.50L382.62,201.85L382.19,201.71L381.96,201.70L381.78,201.69L381.17,201.31L380.81,201.24L380.50,200.95L380.82,200.80L380.69,200.72L380.20,200.84L379.93,200.79L379.52,200.01L379.10,199.97L378.98,199.86L378.99,199.75L379.03,198.96L379.51,198.61L379.92,198.54L380.26,198.47L380.70,198.17L380.59,197.96L380.15,197.88L380.00,197.77L379.58,197.73L379.09,197.67L378.34,197.36L376.18,197.12L376.14,197.09L375.92,196.97L375.94,196.78L375.86,196.73L375.32,196.45L375.11,196.46L374.86,196.13L374.72,196.14L374.35,196.16L374.17,196.26L373.96,196.12L373.62,196.27L373.41,196.21L373.42,196.01L373.02,195.99 "/><path d="M367.78,198.11L367.53,198.25L367.43,198.26L366.64,198.44L365.91,198.37L365.88,198.37L364.66,198.57L363.95,198.44L363.80,198.63L362.96,198.58L361.69,198.97L361.63,198.93L361.52,198.85L361.64,198.73L360.50,198.18L360.51,198.02L359.05,197.42L357.91,197.21L357.26,197.21L356.43,197.06L356.36,197.03L356.04,196.85L354.62,196.91L354.25,196.48L353.30,196.14L353.16,195.79L352.93,195.68L352.01,195.57L351.93,195.47L351.74,195.27L351.45,195.15L350.36,195.08L349.33,194.88L349.63,194.75L349.56,194.68L349.54,194.65L348.92,194.61L348.69,194.50L348.57,194.27L347.50,193.95L347.41,193.55L347.38,193.44L346.90,193.40L346.83,193.39L344.57,192.41L344.35,192.23L343.56,191.98L342.67,191.50L342.26,191.01L341.77,190.83L341.84,190.71 "/><path d="M328.57,189.93L329.38,190.12L330.05,190.13L330.97,190.40L331.72,190.42L332.29,190.61L332.95,190.71L334.25,190.40L334.82,189.91L335.15,189.89L336.06,189.91L337.63,190.08L337.97,190.34L338.08,190.42L338.12,190.46L338.23,190.66L338.81,190.90L339.75,191.04L339.94,190.76L340.09,190.74L340.64,190.63L341.84,190.71 "/><path d="M689.21,294.21L688.00,294.31 "/><path d="M676.91,277.71L676.33,277.83L676.28,277.84L675.80,278.39L675.31,278.52L675.13,278.87L675.28,279.24L674.87,279.51L675.11,279.71L675.00,280.16L674.63,280.26L674.57,280.34L674.48,280.46L674.78,281.19L674.59,281.32L675.51,281.90L676.25,282.17L676.74,282.79L676.73,283.09L676.10,284.13L675.94,284.29L675.64,284.58L675.75,284.92L676.00,285.09L675.32,285.82L675.47,286.12L675.24,286.56L675.26,287.26L674.52,288.29L674.54,288.49L674.92,288.87L674.67,289.31L674.22,289.52L674.02,289.88L674.24,290.21 "/><path d="M312.39,185.98L312.69,186.02L313.04,186.26L313.50,186.17L313.92,186.25L314.89,186.08L315.02,186.29L316.59,186.71L318.54,187.02L318.95,187.17L319.48,187.07L319.56,186.88L319.94,186.91L320.11,187.17L320.21,187.24L321.06,187.76L322.01,187.83L322.46,187.98L323.10,187.91L323.70,188.04L326.35,188.63L326.74,188.92L327.63,188.89L329.13,188.85L329.34,188.90 "/><path d="M693.35,296.76L693.30,296.21L693.08,295.93L692.66,295.68L692.58,295.44L692.15,295.32L691.69,295.04L691.45,294.74L690.31,294.29 "/><path d="M622.22,276.08L622.37,276.00L623.00,276.01L623.60,275.78L623.68,275.75L623.96,275.84L624.44,275.76L624.65,275.49L625.23,275.25L625.48,274.97L625.32,274.80L625.62,274.65L626.73,274.65L627.40,274.31L627.28,274.07L627.74,273.35L627.72,273.27L627.65,272.99L627.25,272.66L627.19,272.61L625.87,272.04L625.27,271.99L625.15,271.94L624.42,271.67L624.12,271.39L624.07,271.34L624.10,271.08L623.47,271.03L623.27,271.27L622.98,271.12L622.74,270.82L622.61,270.65L622.57,270.55L622.21,269.50L621.52,269.06L620.97,267.76L620.69,267.49L621.40,267.23L621.59,267.03L621.48,266.91L621.76,266.68L621.53,266.39L622.08,265.96L622.07,265.83L621.11,265.79L620.75,265.90L620.69,265.88L620.36,265.77L620.00,265.85L619.71,265.56 "/><path d="M422.05,217.92L422.11,217.91L422.32,217.86L422.48,217.83L422.83,217.30L422.70,217.19 "/><path d="M418.38,217.92L418.26,217.80L418.81,217.28L419.05,217.05L418.78,216.80L418.48,216.52L418.02,216.30L418.10,215.54L417.92,215.30L417.90,215.29L417.66,215.24L417.85,214.95L417.69,214.56L417.24,214.43L417.40,214.14L416.48,213.89L416.07,213.56L415.87,213.53L415.77,213.51L415.02,212.90L415.01,212.69L414.55,212.48L414.31,212.18L413.96,212.13L413.88,212.04L413.73,211.86L413.32,211.71L412.97,211.77L412.93,211.63L412.15,211.49L411.96,211.11L411.83,211.03L411.48,210.82L410.53,210.55L410.38,210.25L409.60,210.46L409.26,210.43L408.73,210.05L408.17,210.19L407.57,210.02L407.15,210.04L406.79,210.27L406.64,210.55L406.23,210.68L405.68,210.59L405.43,210.45L404.07,210.37L404.07,210.38L403.98,210.65L403.77,210.71L403.26,210.86L403.26,210.86L402.73,210.84L401.19,211.17L399.83,211.46L399.11,211.49L398.46,211.39L397.83,211.39L397.49,211.26L397.44,210.86L396.43,210.50L396.29,210.32L395.78,210.14 "/><path d="M670.20,291.87L669.93,291.87L668.55,291.39L667.81,290.91L666.73,290.65L666.27,290.41 "/><path d="M373.37,205.47L373.36,205.15L373.36,205.09L373.67,204.71L375.02,204.77L375.86,204.97L377.42,204.81L377.55,204.82L378.01,204.85L378.06,204.88L378.65,205.14L379.27,205.24L379.69,205.54L380.79,205.60L381.29,205.80L381.44,206.05L382.00,206.13L382.21,206.41L383.35,206.73L384.47,206.82L385.53,206.91L386.55,206.86L388.71,207.13L389.26,207.03L389.57,207.13L389.76,207.32L390.58,207.30L391.23,207.40L391.47,207.51L392.51,207.41L393.13,207.48L393.55,207.74L394.57,207.84L395.89,208.12L396.03,208.05L396.34,207.88L397.22,207.69L397.36,207.61L397.56,207.48L397.26,206.40 "/><path d="M693.94,295.34L694.46,295.51L695.45,295.41L696.30,295.60L696.74,295.86L696.82,295.91L696.96,296.30L697.65,296.65L698.38,296.61L700.07,296.95L700.83,296.98L701.24,297.41L701.84,297.34L702.26,297.41L702.49,297.68L703.02,297.70L703.10,297.56L703.35,297.54L703.38,297.26L703.93,297.30L704.57,297.54L704.97,297.51L705.17,297.67L705.20,297.67L705.37,297.69L705.57,297.71L705.86,298.14L706.25,298.43L706.92,298.66L707.27,298.97L709.03,299.40L709.20,299.60L709.05,299.80L709.94,299.86L710.64,300.28L710.66,300.49L710.34,300.64L710.34,300.81L710.79,301.25L710.66,301.62L710.73,301.65L711.18,301.85L711.19,301.90L711.20,302.10L711.01,302.22L710.97,302.25L710.92,302.28L710.95,302.37L710.98,302.49L711.02,302.69L710.97,302.76L710.72,303.05L710.57,303.04L710.34,303.03L710.46,303.19L710.57,303.33L710.35,303.51L710.29,303.56L710.59,303.78L710.46,303.91L710.42,303.91L710.17,303.88L710.00,304.03L709.72,304.05L709.59,304.19L710.17,304.43L710.28,304.45L710.50,304.48L710.71,304.51L710.96,304.41L711.19,303.83L711.64,303.96L712.11,304.28L712.17,304.66L712.47,304.76L712.72,304.51L712.54,304.24L712.65,304.09L713.11,304.11L713.17,303.98L713.03,303.85L713.49,303.51L713.48,303.14L713.74,302.94L713.51,302.80L713.40,302.73L713.01,302.64L712.44,302.82L712.43,302.40L712.59,302.24L712.66,302.17L713.25,302.24L713.67,302.29L713.70,302.27L713.94,302.08L714.08,301.97L714.53,301.96L714.87,302.12L715.18,302.09L715.30,301.74L716.03,301.84L716.27,301.64L716.51,301.64L716.88,301.64L716.57,301.25L716.50,301.17L716.45,300.94L716.63,300.66L716.20,300.50L715.25,300.52L714.77,300.38L715.27,299.95L715.46,299.93L715.60,300.24L715.89,300.12L715.83,299.74L715.96,299.49L715.39,299.16L715.46,299.00L715.86,298.80L715.96,298.39L715.97,298.34L716.17,298.32L716.18,298.33L716.36,298.46L716.12,298.89L716.37,298.94L716.76,298.65L716.81,297.69L717.33,297.75L717.53,297.78L717.51,297.33L717.73,297.24L717.84,297.24L718.04,297.68L718.48,297.90L718.81,297.93L719.56,297.78L720.04,297.79L720.28,297.55L720.90,297.49L721.10,297.57L721.43,297.45L721.85,297.30L721.97,297.25L722.63,297.27L722.81,297.27L722.94,297.27L724.09,296.86L724.30,296.85L724.33,297.01L724.38,297.28L724.64,297.33L725.00,297.04L725.13,297.02L725.31,297.00L725.54,296.97L726.69,296.99L727.08,296.99L727.48,297.00L728.04,297.15L728.35,297.37L728.49,297.47L729.24,297.42L729.28,297.42L729.28,297.73L729.52,298.00L729.74,298.07L730.51,298.29 "/><path d="M365.76,203.39L365.84,203.22L365.65,202.72L365.77,202.48L366.19,202.48L366.52,202.23L365.80,201.85L365.73,201.64L365.20,201.31L366.08,201.11L366.39,200.56L366.27,200.24L366.44,199.90L366.81,199.83L367.15,199.57L368.53,199.16L368.70,198.99L368.68,198.92L368.63,198.71L368.35,198.45L368.26,198.37L368.08,198.20L367.80,198.11L367.78,198.11 "/><path d="M692.72,297.45L692.73,297.63L692.16,298.30L692.31,298.60L692.18,299.00L692.65,299.43L692.61,299.52L692.56,299.66 "/><path d="M692.56,299.66L691.93,299.58L691.10,299.21L690.55,299.17L689.38,298.83L688.21,298.60L687.55,298.47L686.30,297.78L686.35,297.63L686.39,297.50L685.71,296.74L685.41,296.60L685.26,296.53L685.27,296.51L685.32,296.26L684.99,296.09L683.44,295.90L682.37,295.78L681.50,295.53L681.28,295.47L681.00,295.38L679.66,295.00L678.55,294.98L677.54,294.51L675.98,294.10L675.61,293.94L675.05,293.71L673.74,292.95L673.00,292.28L672.64,292.14L672.53,292.10L671.47,292.22 "/><path d="M368.50,205.20L368.67,205.14L368.76,205.11L369.13,205.31L369.45,205.25L370.20,205.33L370.64,205.47L371.05,205.43L371.37,205.52L371.94,205.35L372.67,205.33L373.37,205.47 "/><path d="M435.36,215.84L434.65,215.98L434.57,216.13L434.51,216.23L435.23,216.57L435.09,216.78L435.22,216.92L435.33,217.04L435.35,217.06L435.27,217.10L434.27,217.51L434.34,217.89L434.36,217.97L434.23,217.98L433.60,218.04L433.52,218.46L433.20,218.56L433.24,218.83L432.29,218.92L432.30,218.97L432.34,219.17L431.79,219.35L431.61,218.99L431.28,219.16L431.29,219.43L430.72,219.60L430.88,220.03L430.35,220.31L430.23,220.38L429.66,221.28L429.47,221.57L429.86,221.96L429.48,222.71 "/><path d="M368.50,205.20L368.42,205.22L367.89,205.38L367.69,205.35L367.98,205.09L367.89,205.05L367.16,204.74L366.57,204.15L366.17,203.94L366.08,203.63L365.76,203.39 "/><path d="M661.22,291.35L661.56,290.99L662.51,290.60L662.66,290.36L663.00,290.22L663.33,289.04L662.87,287.79L662.62,287.51L662.40,287.53L660.76,286.15L660.67,285.96L661.41,285.39L661.61,284.94L661.88,284.86L661.93,284.67L661.96,284.57L661.91,284.46L661.89,284.43L661.79,284.22L662.29,283.62L661.44,282.54L661.68,281.78L660.88,280.94L660.96,280.33L662.03,279.03L661.88,278.63L662.25,278.35L662.67,278.25L662.69,277.37L662.54,277.16L662.62,277.11L663.10,276.81L662.98,276.27L663.30,275.81L663.91,275.45L664.27,275.43L664.61,275.56L664.95,275.54L665.31,275.64L665.77,275.56L666.20,275.61L666.56,275.45L667.44,275.39L668.08,275.84L668.41,275.80 "/><path d="M594.68,270.99L594.77,271.21L594.38,271.29L594.56,271.38L594.61,271.40L596.06,271.24L596.50,271.50L597.63,271.65L598.34,271.83L598.48,271.87L598.64,271.85L599.28,271.79L600.33,271.90L600.39,271.68L600.57,271.60L600.87,271.93L601.52,271.92L601.94,271.76L602.23,271.82L603.05,272.01L605.25,271.79L605.53,271.98L605.55,271.99L606.24,272.07L606.41,272.09L606.88,272.02L607.32,272.12L608.12,272.04L608.50,272.19L609.38,272.33L609.58,272.45L610.07,272.34L610.31,272.44L610.88,272.43L611.41,272.93L611.81,273.09L611.93,273.24L612.17,273.54L612.58,273.76L613.34,273.88L613.85,274.26L614.76,274.62L615.19,275.36L614.43,276.24L614.47,276.35L614.53,276.56L614.60,276.75L615.72,277.33L615.72,277.51L615.47,277.70L614.92,277.78 "/><path d="M297.86,186.51L298.15,186.31L298.92,185.34L298.79,185.08L299.02,184.91L298.78,184.63L299.07,184.48L298.70,184.29 "/><path d="M718.33,309.09L719.17,309.41L720.82,310.36L720.84,310.38L720.92,310.39L721.39,310.46L721.60,310.56L721.89,310.69 "/><path d="M304.08,188.65L303.84,188.35L303.51,188.18L303.50,187.91L302.66,187.55L302.01,187.52L301.14,187.35L300.11,186.96L298.98,186.76L298.53,186.55L297.86,186.51 "/><path d="M432.78,223.69L433.26,223.61L433.37,223.90L433.61,224.12L433.69,224.18L433.75,224.24L433.75,224.25L433.52,224.68L433.51,224.71L433.45,224.82L434.07,224.83L434.36,225.25L434.80,225.13L434.83,225.12L434.88,225.14L435.46,225.31L435.72,225.50L436.03,225.73L436.57,225.90L436.71,226.13L436.80,226.18L437.89,226.34L439.08,226.52L439.78,226.36L441.35,226.32L441.76,226.31L442.22,226.51L442.61,226.50L442.82,226.48L443.86,226.37L444.08,226.25L444.58,226.34L445.00,226.42L446.47,226.28L446.85,226.18L447.33,226.23L447.96,226.11L448.37,226.18L449.03,225.96L449.52,226.02L449.68,225.91L450.11,225.86L450.69,225.51L452.10,225.30L452.33,225.12L452.42,225.09L452.95,224.94L453.16,224.92L454.46,224.79L454.78,224.60L455.29,224.58L455.44,224.49L455.52,224.43L455.64,224.35L455.73,223.88 "/><path d="M373.37,205.47L374.05,205.57L374.71,206.00L374.77,206.15L374.43,206.18L376.22,207.13L376.74,207.41L376.84,207.57L376.63,207.79L376.71,207.86L377.63,207.71L379.46,208.07L379.83,207.90L380.45,207.85L381.28,208.42L382.40,208.60L382.84,208.80L383.01,208.79L383.40,208.79L383.78,209.05L384.23,209.14L385.06,209.57L385.65,209.56L385.63,209.78L385.99,209.98L386.01,210.40L385.86,210.66L386.00,210.81L385.88,210.94L386.12,211.20L386.06,211.43L386.66,211.92L387.59,211.98L388.49,212.24L388.37,212.42L388.66,212.60L389.04,212.62L389.42,212.89L390.11,212.83L390.03,212.68L390.22,212.60L390.85,212.76L391.10,212.82L391.59,212.64L392.31,212.70L392.63,212.49L393.13,212.50L393.50,212.70L394.03,212.74L394.16,212.54L394.40,212.50L396.21,212.78L396.78,213.06L397.71,213.15L397.82,213.57 "/><path d="M350.97,202.16L352.02,202.11L352.34,202.28L353.50,202.15L354.31,202.26L354.84,202.44L354.91,202.46L355.25,202.76L356.00,202.75L356.64,202.86L357.75,202.69L358.41,202.80L359.27,203.12L359.25,203.20L358.98,203.24L359.33,203.56L359.70,203.52L360.11,203.32L361.01,203.13L362.27,203.24L362.70,203.21L364.06,203.14L364.72,203.22L364.96,203.42L365.55,203.40L365.76,203.39 "/><path d="M350.97,202.16L350.70,201.81L350.81,201.66L350.49,201.43L349.83,201.18L348.73,200.98L348.39,200.81L346.72,200.65L346.43,200.51L345.67,199.92L345.37,199.68L344.35,199.18L344.63,198.90L344.22,198.56L343.50,198.40L343.21,198.20L343.30,197.77L343.17,197.63L343.11,197.56L343.21,197.48L343.21,197.48L343.32,197.41L343.31,197.38L343.26,197.26L342.51,196.93L342.47,196.76L342.40,196.43L342.21,196.34L340.58,196.18L340.35,196.15L340.30,196.13L339.15,195.50L339.35,195.30 "/><path d="M333.66,194.17L333.45,194.22L333.14,194.28L333.09,194.52L333.06,194.64L333.13,194.67L333.50,194.81L334.94,194.81L335.71,194.90L335.89,194.99L336.10,195.10L336.28,195.41L336.36,195.53L336.18,195.68L335.84,195.73L332.86,196.21L332.76,196.21L332.04,196.22L331.31,196.24L331.10,196.24L330.55,196.25L329.99,196.32L329.87,196.33L328.94,196.23L328.59,195.94 "/><path d="M723.72,312.54L724.17,312.17L724.10,311.63 "/><path d="M655.73,290.57L656.34,290.71L657.24,290.76L657.96,291.00L659.14,291.03L660.68,291.67L660.82,292.03L661.47,292.36L661.74,292.35L661.92,292.60L662.31,292.79L662.25,293.20L662.06,293.38L662.36,293.74L662.27,293.90L662.40,294.22L662.86,294.42 "/><path d="M643.26,271.97L643.68,272.35L643.47,272.51L642.86,272.40L642.86,272.49L642.86,272.87L642.26,273.22L642.09,273.46L641.76,273.95L641.38,274.18L641.83,274.42L642.00,275.01L642.56,275.45L642.54,275.76L643.08,276.56L643.08,277.07L644.44,277.57L644.41,277.75L643.93,277.95L643.81,278.22L643.68,278.28L643.10,278.56L643.15,278.83L642.72,279.01L641.96,279.11L641.63,279.46L641.74,279.87L642.79,280.32L642.59,280.71L642.90,281.37L643.48,281.82L643.95,282.48L644.43,282.73L644.29,283.13L644.51,283.48L645.18,283.89L645.29,284.12L644.47,284.69L644.32,284.69L644.14,284.69L644.02,284.70L643.86,284.82L643.94,285.09L643.76,285.21L643.28,285.31L643.57,285.72L642.75,285.79L642.39,286.18L642.66,286.54L642.70,286.87L643.06,287.11L643.33,287.30L642.99,287.77L643.08,287.96L643.71,288.35L643.66,288.59L644.03,288.90 "/><path d="M702.82,306.84L702.78,306.76L702.73,306.64L702.26,306.61L702.15,306.45L702.67,305.83L703.12,305.85L703.23,305.62L702.84,305.37L702.18,305.24L702.64,305.00L702.96,304.66L703.04,304.66L703.47,304.68L703.55,304.73L703.79,304.88L704.26,304.86L705.71,305.10L706.12,304.95L706.68,305.05L707.43,304.94L708.28,304.73L708.40,304.70L709.62,304.81L709.79,304.74L709.95,304.69L710.21,304.68L710.39,304.68L710.57,304.67L710.70,304.62L711.17,304.45L711.38,304.50L711.35,304.63L710.90,304.73L710.77,305.10L711.29,305.07L711.34,305.31L712.32,305.67L712.49,305.84L712.84,306.22L712.59,306.41L712.58,306.45L712.50,306.76L712.66,307.05L712.82,307.35L712.90,307.48L713.08,307.59L713.10,307.60L713.23,307.55L713.34,307.51L713.38,307.49L714.02,307.65L714.51,307.77L715.10,307.92L715.32,307.98L717.77,307.58L718.02,307.67L718.04,307.68L718.33,307.59L718.95,307.73L719.00,307.75L719.29,307.51 "/><path d="M637.38,271.15L637.67,271.42L637.77,271.51L637.76,271.52L637.72,271.68L637.63,271.69L637.24,271.76L637.15,271.98L637.12,272.05L636.92,272.18L636.84,272.22L636.80,272.86L636.81,272.86L637.68,273.81L637.68,274.47L637.69,274.57L638.00,275.09L638.09,275.68L637.48,275.67L637.15,275.79L636.95,276.05L637.20,276.43L637.69,276.65L637.21,277.34L637.57,277.66L637.40,277.86L637.26,277.87L636.80,277.88L637.04,278.36L636.73,278.78L636.98,279.49L637.62,279.98L637.68,280.65L637.36,281.20L637.93,281.81L638.10,282.34L637.53,283.02L636.96,284.87L636.47,285.21L636.38,285.27L636.23,285.39L635.96,285.34L635.82,285.32L635.78,285.32L635.25,285.54L634.55,285.54L634.31,285.40L634.26,285.14L633.69,284.78L632.60,284.49L632.10,284.49L631.64,284.63L631.34,284.94L630.99,284.98L630.82,285.23L630.58,285.08L630.53,284.89L629.12,284.86L628.42,284.26L628.39,284.00 "/><path d="M600.57,276.46L600.94,276.21L601.25,276.16L601.32,275.96L602.48,275.65L604.23,275.84L604.47,275.69L604.86,275.97L605.23,276.06L605.17,276.24L605.64,276.38L606.15,276.69L606.96,276.85L607.05,276.96L607.15,277.09L607.75,277.04L608.17,277.14L608.46,277.32L608.43,277.51L608.13,277.70L608.75,277.94 "/><path d="M702.82,306.84L702.45,306.98L701.22,306.92L700.87,307.04L700.66,306.45L700.26,306.18L699.97,305.98L699.89,305.97L699.15,305.90L699.35,305.72L699.03,305.56L698.77,305.53L698.52,305.50L698.61,305.26L697.84,305.16L697.55,304.92L697.27,304.89L697.25,304.89L697.00,305.04L696.25,304.91L696.20,304.90L695.74,304.62L695.57,304.30L695.93,304.13L695.34,303.44L695.27,303.14L695.43,302.86L695.28,302.38L695.03,301.54L694.95,301.49L693.80,300.92L693.29,300.36L693.07,300.23L692.93,300.14L692.65,299.97L692.56,299.66 "/><path d="M638.53,288.65L639.18,288.58L640.08,288.49L640.30,288.59L640.32,288.76L640.33,288.82L640.74,289.15L641.12,289.19L640.93,288.61L641.24,288.59L641.93,288.94L643.08,289.00L644.03,288.90 "/><path d="M322.03,196.55L322.17,196.50L322.44,196.52L322.75,196.54L323.40,196.58L323.75,196.37L325.39,196.09L327.27,196.09L327.85,196.01L327.89,195.90 "/><path d="M292.54,188.40L293.41,188.28L294.13,188.17L294.63,188.01L294.77,187.85L294.71,187.63L295.06,187.56L295.13,187.41L296.47,187.01L296.59,186.82L296.98,186.66L297.86,186.51 "/><path d="M312.39,194.09L312.75,194.13L313.13,193.90L313.26,193.81L314.48,193.37L314.73,193.31L316.04,193.03L316.63,193.15L317.36,193.09L317.77,193.22L318.20,193.11L318.52,193.16L318.65,193.30L318.80,193.46L319.42,193.47L319.65,193.69L320.14,193.63L320.49,193.68L320.68,193.82L321.68,193.99L324.14,193.21L325.25,193.26L326.49,193.08L327.24,193.12L328.21,193.05L329.07,192.90L329.30,192.70L330.18,192.70L330.23,192.54 "/><path d="M644.03,288.90L643.68,289.48L643.75,289.65L644.08,289.82L644.49,289.83L644.69,290.02L644.53,290.30L644.82,290.68L644.78,290.88 "/><path d="M587.77,273.76L587.99,273.85L588.36,273.88L588.67,273.91L588.81,274.01L589.20,274.28L589.33,274.31L590.05,274.48L591.13,274.39L591.29,274.08L591.56,274.17L591.62,274.18L591.98,274.56L592.39,274.60L592.26,274.40L593.26,274.29L593.43,274.45L593.32,274.66L594.66,274.99L594.88,275.19L595.65,275.18L595.91,275.37L596.23,275.33L596.44,275.11L596.89,275.10L598.76,275.58L598.85,275.61L599.44,276.01L599.82,276.04L600.08,276.29L600.10,276.30L600.57,276.46 "/><path d="M655.01,290.33L655.41,290.63L655.01,290.82L653.98,290.82L653.12,291.17L652.15,291.18L651.00,290.74L650.59,290.71L649.70,290.76L648.80,290.97L648.32,290.69L647.15,291.37L646.17,291.30L645.93,291.29L645.64,291.13L645.04,291.11L644.78,290.88 "/><path d="M613.43,281.80L613.71,281.71L613.97,281.76L614.15,282.04L614.47,282.15L615.47,282.08L616.59,281.96L616.77,281.66L617.18,281.55L618.28,281.53L620.65,281.06L621.19,281.19L622.04,281.81L623.35,282.30L624.05,282.24L624.29,281.63L624.28,281.30L624.27,281.14L625.33,280.36L625.77,280.22L625.89,279.80L625.76,279.52L625.85,279.31L625.66,279.06L624.90,278.70L624.57,278.23L624.71,277.94L624.59,277.84L626.57,277.73L626.82,277.57L626.90,277.18L627.56,276.90L628.24,276.78L628.28,276.54L628.72,276.43L628.74,275.98L628.96,275.76L630.06,275.63L630.55,275.17L631.35,275.08L631.52,274.94L631.20,274.38L631.27,274.20L630.95,273.94L631.35,273.29L632.72,273.00L633.21,272.93L633.47,272.99L633.58,273.02L633.95,272.85L634.43,272.84L634.61,272.54L634.79,272.23L635.25,272.01L635.70,271.78L635.82,271.72L635.81,271.59L635.81,271.49L635.81,270.85L635.81,270.82L635.87,270.78L636.08,270.66L636.14,270.62 "/><path d="M314.92,188.80L313.89,188.61L313.42,189.27L313.43,189.73L313.23,189.84L312.76,189.94L312.16,190.32L309.42,190.64L309.14,190.87L308.83,190.89L308.57,191.12L308.13,191.19L307.99,191.41L307.42,191.50L307.23,191.77L306.82,191.84L306.75,191.94L306.53,192.27L306.65,192.41L306.05,192.63L305.90,192.68L305.02,193.01 "/><path d="M350.97,202.16L350.38,202.16L349.51,202.40L348.76,202.47L348.43,202.40L348.29,202.54L348.07,202.56L347.26,201.99L346.05,202.23L345.53,201.68L345.03,201.76L344.82,201.68L344.02,201.83L342.36,201.81L341.23,201.65L340.55,201.76L338.93,201.81L338.80,201.83L337.28,202.09L336.57,201.85L335.79,201.81 "/><path d="M335.79,201.81L336.04,201.55L335.76,201.38L335.76,201.37L335.68,201.32L335.79,201.30L335.80,201.30L336.15,201.25L336.44,200.86L336.02,200.64L335.75,200.23L334.58,199.84L334.60,198.87L334.48,198.63L333.77,198.24L334.09,198.09L333.69,197.93L333.82,197.79L334.32,197.75L334.51,197.61L334.11,197.33L333.73,197.23 "/><path d="M335.79,201.81L335.62,201.70L335.62,201.70L335.31,201.52 "/><path d="M400.00,220.19L402.14,220.62L403.08,220.73L403.42,220.92L404.11,220.89L404.23,221.10L405.36,221.56L405.57,221.56L405.79,221.32L406.57,221.39L407.05,220.93L407.15,220.92L407.60,220.84L407.99,220.98L408.44,220.93L408.51,220.79L408.92,220.84L408.93,220.84L409.27,221.09L409.75,220.92L410.92,220.94L411.02,221.08L410.85,221.32L410.87,221.34L411.08,221.51L412.20,221.74L412.79,221.54L413.65,221.45L414.06,221.51 "/><path d="M400.00,220.19L399.84,219.98L399.30,219.98L399.24,219.86L399.14,219.66L398.67,219.51L398.70,219.46L398.86,219.12L398.68,218.98L398.35,218.90L398.43,218.78L396.84,218.05L396.31,218.09L396.33,217.83L395.65,217.14L394.62,217.10L394.15,216.86L393.77,216.50L393.23,216.49L392.21,215.93L391.62,215.42L391.38,215.22L389.91,214.77L389.90,214.51L389.75,214.42L388.24,214.46L387.46,214.65L387.21,214.67L386.44,214.74L386.79,215.26L386.24,215.75 "/><path d="M729.02,318.53L728.33,318.23L727.81,318.01L727.82,317.87L727.38,317.64L727.39,317.55L726.88,317.65L726.79,317.61L726.38,317.44L726.23,317.38L726.11,316.90L726.50,316.46L726.17,316.28L725.85,316.11L725.44,316.04L724.95,315.95L723.89,316.02L723.79,316.02L723.34,315.65L723.21,315.11L722.00,314.54L721.87,313.57L722.03,313.41L722.18,313.26L722.53,313.30L722.58,313.21L722.62,313.13L723.00,313.14 "/><path d="M368.50,205.20L368.46,205.33L368.12,206.56L367.73,206.73L367.60,206.90L366.83,207.92L366.94,208.11L367.41,208.33L367.64,208.63L367.44,208.89L367.12,208.98L366.54,208.96L366.32,209.25L366.74,209.64L366.72,210.08L367.10,210.08L367.19,210.19L366.55,210.52L366.78,210.65L366.73,210.73L365.89,210.75L365.82,210.75L365.61,210.90L365.13,210.81 "/><path d="M331.69,201.37L330.45,200.73L329.67,200.73 "/><path d="M677.14,302.82L676.55,302.79L675.89,302.47L675.28,301.89L674.94,301.83L674.67,301.61L674.70,301.42L674.36,301.25L674.18,300.91L673.70,300.96L673.43,300.56L673.42,300.22L672.90,299.94L672.19,299.19L671.05,298.68L670.33,298.60L669.84,298.66L669.19,298.26L669.01,298.10L669.42,298.00L669.12,297.43L668.71,297.32L668.42,297.24L667.45,296.75L666.84,296.77L666.24,297.14L665.23,297.24L664.76,297.05L664.39,296.54L664.41,296.37 "/><path d="M329.19,200.96L328.98,200.86 "/><path d="M702.82,306.84L702.96,307.08L702.86,307.22L703.02,307.35L702.68,307.36L702.67,307.36L702.46,307.37L702.59,307.62L702.66,307.75L702.33,307.93L702.54,308.20L702.48,308.25L702.34,308.38L701.67,308.26L701.24,308.53L700.91,308.58L700.87,308.75L699.83,308.87L699.33,308.76L698.87,308.57L698.14,308.28L697.80,308.14L697.64,308.01L697.46,307.87L697.38,307.81L697.16,307.79L696.43,307.75L696.27,307.81L696.07,307.88L695.28,307.70L694.73,307.85L694.09,307.73L693.46,307.76L693.14,307.58L693.13,307.57L692.17,307.02L691.65,306.89L691.24,306.89L690.69,307.13L689.82,307.03L689.32,306.46L688.82,306.23L687.24,306.00L687.13,305.77L686.34,305.50L685.58,305.45L684.37,305.08L684.01,304.87L682.54,304.64 "/><path d="M365.13,210.81L364.96,210.75L364.48,210.56L364.12,210.57L363.90,210.14L363.85,210.03L363.34,209.81L363.29,209.65L362.81,209.71L362.81,209.29L362.33,208.95L361.90,208.80L361.91,208.70L361.15,208.69L361.24,208.42L360.29,207.92L359.68,207.73L359.42,207.81L358.72,207.74L358.41,207.79L358.16,208.05L357.95,208.08L357.73,207.84L357.25,207.81L356.40,208.00L356.11,208.25L356.05,208.31L355.30,208.52L354.92,208.29L354.48,208.41L354.34,208.09L353.90,207.86L353.16,207.71L353.01,207.54L352.79,207.56L352.50,207.77L352.28,207.76L350.80,207.13L350.09,207.04L349.75,206.89L348.84,205.85 "/><path d="M638.53,288.65L638.13,288.30L637.87,288.28L637.74,288.45L637.17,288.35L636.72,288.27L636.69,288.28L636.29,288.45L636.01,288.16L635.55,288.21L635.28,288.23L635.17,288.52L634.75,288.57L634.44,288.22L632.63,288.25L630.50,289.29 "/><path d="M330.33,201.66L330.03,201.69 "/><path d="M677.14,302.82L676.85,303.09L676.27,303.17L675.79,303.10L674.82,303.34 "/><path d="M365.13,210.81L365.45,211.37L365.29,211.57L365.06,211.63L365.05,211.64L365.21,211.79L365.69,211.78L365.69,211.96L365.45,212.12L365.44,212.13L365.48,212.14L365.49,212.15L365.97,212.32 "/><path d="M610.41,284.01L611.49,283.95L611.77,284.19L612.73,284.30L612.94,284.33L613.72,284.42L614.23,284.27L614.52,284.31L614.74,284.44L615.28,284.49L615.52,284.68L616.15,284.72L616.16,284.73L616.36,284.98 "/><path d="M609.75,281.24L609.93,281.49L609.85,281.80L610.25,282.30L610.20,282.70L610.36,282.93L610.07,283.39L610.03,283.46L610.52,283.84L610.41,284.01 "/><path d="M616.36,284.98L616.71,284.91L617.66,285.04L619.68,284.79L620.50,284.93L621.17,284.83L621.38,285.15L622.20,285.10L623.17,285.37L624.01,285.76L623.81,285.94L622.75,286.35L622.74,286.67L621.61,287.27L621.22,287.74L620.33,287.67L619.26,287.58 "/><path d="M672.16,303.57L671.89,303.58L671.65,303.44 "/><path d="M328.92,201.58L328.05,201.48L327.52,201.61L327.00,201.60L326.49,201.70L325.93,201.55L325.25,201.48L325.07,201.46L324.74,201.43L324.35,201.50L324.18,201.53L323.88,201.49L323.61,201.25L322.90,201.31L322.35,200.97L321.95,200.40L321.39,200.27L321.26,200.31L321.13,200.34L320.78,200.20L320.35,200.38L319.68,200.25L319.72,200.07L320.05,199.91L319.55,199.52L318.75,199.37L318.61,199.34L318.59,199.34L318.26,199.28L317.65,199.00L316.83,198.86L316.80,198.77L317.33,198.73L317.47,198.56L317.38,198.46 "/><path d="M669.26,302.70L668.13,302.69L666.85,302.36L664.94,301.53L664.33,300.79L663.71,300.49L662.20,300.14L661.14,299.69L660.83,299.10L660.16,298.67 "/><path d="M680.09,306.82L680.01,306.41L679.64,305.86L679.87,305.25L679.38,304.55L677.99,303.82L678.02,303.28L677.41,302.82L677.14,302.82 "/><path d="M727.51,321.10L726.76,320.86L726.36,320.89L726.25,320.80L726.39,320.65L725.96,320.28L725.82,320.17L725.56,319.95L725.16,319.61L724.90,319.49L724.32,319.54L723.87,320.05L723.65,320.30 "/><path d="M723.65,320.30L723.23,319.67L723.18,319.64L722.90,319.51L722.67,319.40L722.67,319.27L722.67,319.24L722.61,319.21L722.22,318.98L722.29,318.81L722.03,318.68L721.94,318.64L721.75,318.55L721.67,318.51L721.77,318.47L722.08,318.34L722.12,318.20L722.17,318.04L722.25,317.79L721.90,317.50L720.89,317.14L719.89,316.55L719.59,316.46L719.32,316.38L719.11,316.15L718.37,316.20L718.22,316.35L718.08,316.49L718.07,316.51L717.67,316.53L716.83,316.01L716.30,315.98L716.07,316.37L716.05,316.40L715.76,316.47L715.48,316.42L715.44,316.35L715.10,315.81L715.03,315.69L714.74,315.60L714.72,315.59L714.30,315.84L713.82,315.83L713.59,315.59L713.37,314.73L713.37,314.73L713.56,314.59L714.18,314.74L715.48,314.56L714.68,313.54L715.15,313.34L715.33,312.73L715.70,312.64L716.12,312.54L716.49,312.63L716.78,312.82 "/><path d="M600.57,276.46L600.74,276.61L599.95,276.96L599.90,277.20L599.86,277.37L599.95,277.62L600.60,277.95L600.69,278.55L600.73,278.77L601.25,278.96L601.66,279.58L601.60,279.87L601.27,280.14L600.93,280.82L600.98,281.09L600.48,281.46L599.81,281.66L599.56,281.91L599.63,282.52 "/><path d="M680.09,306.82L679.04,306.70L677.65,306.18L677.21,306.18L676.69,305.90L675.05,305.75 "/><path d="M425.16,229.50L425.36,230.07L426.27,230.41L426.80,230.41L427.06,230.60L427.17,230.61L427.50,230.65L427.85,230.43L428.09,230.42L428.73,230.39L430.00,230.47L430.71,230.64L431.35,230.96L431.84,231.35L431.26,231.60L431.70,232.32L430.81,233.24L431.19,233.52L431.77,233.50L432.18,233.49L432.55,233.88L432.56,233.88L433.28,234.19L433.55,234.19L433.76,234.02L434.21,234.00L434.70,234.18L435.57,234.24L435.85,234.00 "/><path d="M616.36,284.98L615.90,285.35L615.81,285.64L615.25,285.75L615.47,286.14L615.47,286.52L615.09,286.81L615.05,287.34L614.78,287.50L614.48,287.52L613.83,287.58L613.63,287.72 "/><path d="M671.85,305.49L671.25,305.28 "/><path d="M365.97,212.32L366.00,212.40L366.06,212.59L366.01,212.69L365.75,213.21L365.49,213.43L365.32,213.56L365.48,213.82L365.46,213.83L365.44,213.84L365.11,213.99L365.12,213.84L364.92,213.75L364.77,213.69L364.40,213.65L364.36,213.67L363.79,213.81L363.69,213.98L363.28,213.99L362.80,213.85L362.74,214.13 "/><path d="M384.43,220.49L384.27,219.81L384.46,219.57L383.98,219.14L384.25,218.91L384.15,218.83L383.52,218.77L382.00,218.06L381.44,217.70L380.37,217.59L380.09,217.47L378.50,216.79L378.02,216.79L377.69,216.64L376.85,216.53L376.31,216.74L375.68,216.82L375.17,216.77L374.99,216.76L374.43,216.41L374.06,216.32L374.00,216.14L373.02,215.63L372.90,215.39L373.03,215.22L372.84,215.08L372.45,215.01L372.83,214.80L372.80,214.65L372.30,214.39L371.54,214.34L370.10,214.64L369.31,214.50L369.13,214.64L368.09,214.70L367.22,214.61L366.79,214.74L366.55,214.41L366.91,214.23L367.27,214.05L367.06,214.00L366.76,213.92L366.78,213.91L367.03,213.70L366.84,213.36L366.61,213.27L366.74,213.14L366.77,213.13L367.18,213.00L367.25,212.65L367.26,212.60L367.06,212.59L367.00,212.59L366.95,212.56L366.83,212.50L366.82,212.49L366.81,212.43L366.80,212.32L365.97,212.32 "/><path d="M731.16,324.58L732.10,324.73L732.48,325.01L733.15,324.80L733.41,325.05L733.77,324.87L734.37,324.90L735.80,324.96L736.26,325.64L736.29,325.65L736.72,325.86L737.06,325.92L737.18,325.92L738.01,325.51L738.62,325.63L738.99,325.52L740.31,325.69L740.58,325.73L741.41,325.16L741.56,325.05 "/><path d="M669.47,304.61L669.10,304.49L667.78,304.69L667.01,304.70L666.44,304.41L665.09,304.25L664.68,304.07L663.64,303.89 "/><path d="M454.22,241.81L454.12,241.60L453.24,241.05L453.54,241.04L453.53,240.76L453.51,240.51L453.10,240.32L452.90,239.31L452.68,239.26L452.66,239.23L452.48,238.96L452.49,238.63L452.31,238.48L452.39,238.25L452.08,238.10L451.93,238.02L451.77,237.48L452.38,237.55L452.58,237.46L452.72,237.40L452.74,237.35L452.85,236.93L453.69,236.32L453.61,236.08L453.82,235.96 "/><path d="M384.73,220.76L384.99,220.72L385.41,221.17L385.79,221.35L385.85,221.68L386.39,222.15L387.18,222.56L387.31,222.56L388.03,222.46L389.17,222.50L389.51,222.80L390.06,222.71L390.56,222.63L390.30,222.42L390.37,222.35L391.29,222.41L391.77,222.27L392.25,222.44L392.29,222.44L392.98,222.36L393.33,222.18L393.25,221.99L394.52,221.53L394.69,221.46L395.35,221.41L395.65,221.46L395.72,221.61L396.12,221.52L396.24,221.30L396.74,221.20L396.84,221.18L397.22,221.24L397.47,221.40L397.74,221.36L397.97,220.84L398.53,220.95L399.11,220.92L399.65,220.75L399.96,220.47L400.00,220.19 "/><path d="M599.35,284.85L599.82,285.40 "/><path d="M638.53,288.65L637.49,288.59L637.20,288.78L637.12,288.90L637.04,289.01L636.72,289.49L636.69,289.53L636.95,289.76L635.68,290.27L635.33,290.27L634.83,290.67L634.78,291.23L634.50,291.67L634.07,291.69L633.75,292.14L633.83,292.26L633.26,292.53L632.76,293.15L632.69,293.54L632.96,293.75L632.65,293.89L632.52,294.13L632.67,294.42L632.58,294.50L632.14,294.85L630.25,294.63 "/><path d="M684.57,311.76L683.85,311.79L682.55,310.63L682.12,310.46L682.07,310.41L681.56,309.93L681.66,309.60L681.71,309.41L681.69,309.37L681.33,308.78L681.68,308.67L681.03,308.30L680.56,307.63L680.69,307.38L680.10,306.96L680.09,306.82 "/><path d="M335.99,209.06L336.43,209.04L336.75,209.19L337.22,209.17L337.37,209.17L337.59,209.00L337.61,208.72L338.72,208.54L339.69,208.78L341.07,208.80L341.14,208.41L342.12,208.20L342.46,208.19L343.71,208.15L344.76,207.66L345.38,207.64L347.06,207.18L347.08,206.92L347.19,206.85L347.42,206.69L347.27,206.44L347.70,206.27 "/><path d="M716.39,322.89L717.08,321.58L717.36,321.56L717.65,321.26L717.78,321.65L718.26,321.60L718.67,321.75L719.10,321.63L719.10,321.63L719.22,321.60L719.24,321.51L719.30,321.19L719.33,321.09L719.53,321.05L719.72,321.02L719.77,320.85L719.81,320.73L719.84,320.63L719.89,320.48L720.06,320.31L720.38,319.99L720.77,320.02L721.11,320.24L721.36,320.40L721.99,320.51L722.64,320.51L723.17,320.51L723.65,320.30 "/><path d="M362.74,214.13L362.30,214.49L361.71,214.39L361.40,214.15L361.05,214.09L361.07,214.07L361.18,213.93L361.01,213.80L360.54,213.79L360.43,213.60L359.89,213.60L359.58,213.39L359.23,213.54L358.84,213.38L358.21,213.43L358.14,213.57L357.65,213.57L356.80,213.82L356.73,213.60L356.18,213.84L355.98,213.87L355.76,213.74L355.14,213.94L354.69,213.87L354.24,213.62L353.82,213.40L353.83,213.15L353.58,212.96L353.09,212.84L353.03,212.72L352.95,212.57L352.58,212.62L352.50,212.41L351.47,212.23L351.26,211.97L350.80,212.01L350.44,212.17L349.63,212.04L348.86,212.08L348.67,212.16L348.69,212.52L348.46,212.62L348.12,212.50L347.83,212.56L347.11,212.35L346.97,212.20L346.29,212.22L345.51,211.97L345.12,212.31L344.90,212.36 "/><path d="M750.59,329.81L750.24,330.07L750.12,330.16L749.57,330.04L749.20,330.23L747.80,330.28L746.31,330.91L746.15,331.10L746.24,331.42L745.72,331.86L745.60,332.15L745.53,332.30 "/><path d="M622.27,294.32L621.74,293.87L620.86,293.76L620.52,293.59L620.29,293.21L620.42,292.79L620.82,292.65L620.71,291.97L620.87,291.88L620.50,291.27 "/><path d="M398.26,224.14L398.15,223.86L397.90,223.82L396.98,224.46L397.22,224.83L397.04,225.14L397.14,225.34L397.67,225.70L397.45,226.04L397.45,226.05L397.51,226.19L398.34,226.76L398.07,227.14L398.34,227.70L398.82,227.99L398.85,228.17 "/><path d="M402.73,228.71L402.50,228.64L401.86,228.68L401.03,228.83L400.50,228.65L400.69,228.44L399.40,228.39L398.85,228.17 "/><path d="M309.65,202.93L309.63,202.92L309.60,202.90L309.20,202.73L308.80,202.56 "/><path d="M600.67,286.58L600.95,287.19L601.45,287.75L601.82,287.80L602.03,288.02L602.15,288.60 "/><path d="M397.67,228.76L397.83,228.67L398.09,228.53L398.78,228.35L398.85,228.17 "/><path d="M625.16,296.29L624.62,296.29L623.80,295.86 "/><path d="M623.80,295.86L623.45,295.95L623.17,295.88L623.27,295.72L623.80,295.86 Z "/><path d="M594.56,285.18L594.94,285.30L595.83,285.88L597.16,286.12L599.13,287.34L599.82,287.99L600.62,288.43L601.18,289.27 "/><path d="M701.79,320.11L702.11,320.09L702.56,320.06L702.81,319.65L702.92,319.09L702.75,318.88L702.97,318.70L702.84,318.49L702.92,318.34L702.94,318.31L704.01,318.06L704.07,318.04L704.09,318.00L704.36,317.45L704.41,317.34L704.73,317.14L705.16,317.11L705.48,317.08L705.58,317.27L705.63,317.37L705.70,317.49L706.04,317.70L706.48,317.82L706.85,317.78L706.99,317.76L707.06,317.51L707.08,317.45L707.13,317.29L707.34,317.30L707.55,317.30L707.85,317.15L708.17,317.22L708.39,317.16L708.36,316.96L707.66,316.80L707.39,316.61L707.52,316.49L707.69,316.32L707.59,315.98L706.34,315.48L706.32,315.47L706.22,315.43L706.31,314.63L706.14,314.09L705.98,313.62L706.26,313.56L706.53,313.28L706.82,313.11L707.37,312.80L708.23,312.83L708.53,312.94L708.82,313.04L709.22,313.18L709.24,313.19L709.46,313.15L709.64,313.12L709.85,312.87L709.84,312.29L709.75,312.14L709.58,311.86L709.66,311.67L710.37,311.26L711.13,311.04L711.44,310.96L711.51,310.96L711.55,310.97L711.65,310.98L712.02,311.23L712.11,311.23L712.93,311.25L713.34,311.26L713.91,310.65L714.61,310.59L715.05,310.35L716.31,310.53L717.02,310.96L716.80,311.17L717.25,311.51L717.72,311.60L718.29,311.71L718.49,311.88L719.05,311.74L719.15,311.46L719.43,311.59L719.47,311.55L719.74,311.32L720.32,311.48L720.83,311.49L721.08,311.27L721.44,311.34L721.67,311.24L722.13,311.03 "/><path d="M684.57,311.76L684.99,311.79L685.38,312.17L685.96,312.14L687.82,313.01L687.98,312.99L688.07,312.75L688.77,313.00L689.81,312.85L691.02,312.31L692.52,312.38L692.88,312.73L692.99,313.21L693.55,313.24L693.77,313.58L694.16,313.64L694.95,314.27L695.31,314.39L695.69,314.52L696.24,314.92L697.00,314.97L697.74,315.27L697.84,315.44L697.56,315.86L698.81,316.27L698.94,316.50L698.63,316.75L698.24,316.69L698.29,316.82L698.84,317.18L699.27,317.23L699.29,317.23L699.95,317.10L700.27,317.19L700.59,317.46L700.26,317.74L700.38,317.87L701.40,317.98L701.61,318.17L701.43,318.34L700.81,318.40L700.99,318.63L701.42,318.60L701.38,318.80L701.30,318.82L700.87,318.91L700.86,319.08L701.25,319.66L701.79,320.11 "/><path d="M416.20,233.41L416.53,233.53L416.93,233.37L418.06,233.22L419.16,233.41L420.11,233.24L421.18,233.63L421.22,233.87L422.01,234.62L421.96,234.84L422.21,235.13L421.87,235.35L422.26,235.75L422.65,235.86L422.80,235.90L422.83,236.07L422.83,236.08L422.87,236.30L422.75,236.40L422.65,236.48 "/><path d="M701.79,320.11L700.89,319.87L700.45,319.55L700.08,319.58L699.97,319.33L699.57,319.13L698.82,319.24L698.25,319.09L698.04,318.90L698.11,318.65L697.29,318.52L696.96,318.48L696.85,318.46L696.46,318.55L696.36,318.69L695.48,318.33L695.36,318.06L695.60,317.97L695.12,317.79L694.82,317.91L694.68,317.83L694.74,317.51L694.30,316.81L694.35,316.54L693.93,316.35L693.87,315.81L693.56,315.59L693.39,315.53L692.93,315.38L692.49,315.46L691.72,315.16L691.46,314.92L690.08,314.93L689.35,314.81L688.92,314.52L688.26,314.35L687.46,313.85L687.14,313.85L686.72,313.63L686.04,313.99L685.81,314.32L685.68,314.51L685.38,314.57L684.33,314.01L683.18,313.82L682.65,313.51L682.24,313.55L681.79,313.74L681.70,313.78L681.11,313.74L680.79,313.93 "/><path d="M612.52,291.13L611.81,291.47L611.11,291.62L609.70,291.47L609.15,291.65L608.84,291.63L608.74,291.95L608.13,292.20 "/><path d="M316.71,206.74L317.58,206.80 "/><path d="M313.55,204.77L313.68,204.90L313.49,205.16L313.49,205.16L313.33,205.37L313.33,205.37L313.68,205.54L313.66,205.66L314.18,205.83L314.44,206.06L314.97,206.07L315.56,206.43L316.03,206.47 "/><path d="M622.01,296.95L621.88,296.45L621.63,296.24 "/><path d="M608.05,292.74L608.80,293.07L609.26,293.15 "/><path d="M608.93,286.51L608.13,286.92L607.52,287.10L607.37,287.25L607.47,287.64L607.25,287.96L606.89,288.11L606.93,288.62L606.66,288.78L605.92,288.96L605.53,288.91L603.86,289.19L603.82,289.54L603.48,289.83L603.20,290.40L602.19,290.96L602.23,291.13L602.52,291.24 "/><path d="M303.80,204.19L303.81,204.01L303.08,203.69L303.07,203.66L303.04,203.49L302.49,203.28L302.37,203.11L302.21,202.90L302.01,202.89L301.56,202.85L300.94,202.59L300.92,202.15L300.92,201.95 "/><path d="M684.57,311.76L684.39,312.05L684.55,312.22L684.22,312.54L684.12,312.64L683.68,312.83L683.27,312.77L682.52,313.03L681.04,312.93L680.71,312.75L680.03,312.68L679.31,312.23L679.28,311.80L678.39,311.34L678.35,311.13L677.55,310.70L677.10,310.64L676.47,310.24L675.97,310.16L675.29,309.86L674.64,309.87L674.31,309.66L674.20,309.59L673.34,309.50L673.11,309.61L672.47,309.64L672.12,310.07L671.72,310.06L670.63,310.38L669.96,310.33L668.94,310.44L667.35,310.27L666.69,309.97L665.76,309.76L663.77,309.76L663.41,309.49L662.35,309.81L661.54,309.75L660.99,309.72L660.67,309.48L660.28,309.37 "/><path d="M596.88,290.28L597.46,290.29L598.26,290.11L598.57,289.89L599.32,289.81L600.52,290.14L600.87,290.33L600.90,290.52L600.42,290.64 "/><path d="M611.49,294.81L612.08,294.54L612.08,294.54L612.18,294.38L612.11,294.26L612.03,294.15L611.55,294.13L611.08,293.72L609.99,293.16 "/><path d="M716.39,322.89L716.15,322.94L715.87,323.00L715.54,322.93L715.64,322.69L715.72,322.48L715.49,322.32L715.43,322.28L715.26,322.25L715.18,322.24L715.14,322.24L714.81,322.29L714.62,322.71L714.44,322.74L714.33,322.75L713.98,322.58L713.92,322.55L713.53,322.54L713.24,323.00L712.54,323.33L711.86,323.14L711.91,322.72L711.68,322.51L711.34,322.53L710.91,323.33L710.62,323.40L710.27,323.33L709.44,322.91L709.43,322.80L709.78,322.80L709.93,322.68L709.25,322.09L709.21,321.84L709.18,321.63L708.81,321.01L707.69,320.83L707.53,321.00L708.32,321.45L708.33,321.67L707.95,321.87L707.87,322.22L707.45,322.39L707.25,322.78L707.44,323.29L707.36,323.40L706.92,323.32L706.78,323.51L707.04,323.96L706.81,324.11L706.42,324.05L706.14,323.56L706.56,323.22L706.47,322.70L706.60,322.45L706.36,322.28L705.66,322.29L705.48,322.12L705.23,321.88L706.20,321.51L705.95,321.33L705.46,321.29L704.34,321.77L704.17,321.58L704.72,321.21L704.52,321.01L704.40,320.98L703.71,320.81L703.49,320.86L703.49,321.10L703.25,321.27L703.72,321.63L703.70,321.78L702.89,321.68L702.07,321.17L702.12,320.79L702.14,320.64L701.99,320.42L701.79,320.11 "/><path d="M292.50,200.90L292.28,201.24 "/><path d="M611.48,295.39L611.70,295.55L612.54,295.50 "/><path d="M354.55,219.47L356.02,219.87L356.29,220.10L356.82,220.15L357.25,220.30L357.96,220.27L358.25,220.09L358.83,220.24L359.35,220.18L359.54,219.89L359.23,219.67L358.46,218.69L357.97,218.27L357.72,218.24L358.32,217.81L358.18,217.69L358.33,217.50L358.73,217.47L358.93,217.24L359.47,217.25L360.21,217.07L360.25,217.06L360.23,216.94L360.18,216.68L360.59,216.67L361.16,215.93L361.41,215.82L362.07,215.82L362.16,215.69L362.03,215.59L362.90,214.35L362.74,214.13 "/><path d="M324.96,211.11L324.15,211.12 "/><path d="M758.88,337.74L758.79,337.86L758.45,338.33L758.31,338.50L757.40,338.59L756.64,338.66L754.87,338.40L754.86,338.40L754.29,338.41L754.30,338.69L753.86,338.70L753.63,338.53L753.40,338.58L753.26,338.86L752.78,338.92L752.52,338.59L752.29,338.54L751.99,338.84L751.69,338.85L751.56,338.85L751.53,338.83L751.42,338.75L751.65,338.64L751.46,338.52L750.89,338.73L750.53,338.58L750.15,338.70L749.82,338.64 "/><path d="M323.60,211.10L322.79,210.58L321.73,210.52L321.14,210.60L320.71,210.51L320.39,210.20L320.53,209.85L320.82,209.82L320.61,209.65L319.80,209.37L319.63,209.05 "/><path d="M732.80,328.33L732.75,328.52L732.97,328.89L733.04,329.01L733.63,329.24L734.00,329.54L734.10,330.17L734.50,330.50L734.45,330.74L734.75,331.01L735.23,331.14L736.56,331.04L736.79,331.20L736.78,331.42L737.21,331.64L737.35,331.92L737.69,331.99L737.74,332.11L737.48,332.16L737.73,332.74L737.81,332.77L738.11,332.78L738.25,332.94L738.28,332.98L738.35,332.98L738.62,332.99L739.37,333.37L739.64,333.44L740.11,333.57L740.55,333.89L741.07,333.84L741.18,334.05L741.01,334.26L741.28,334.48L741.48,334.65L742.26,334.88L743.81,335.34L743.84,335.43L743.91,335.65L744.28,335.74L744.82,335.60L744.92,335.65L745.18,335.79L745.14,335.98L745.14,336.02L745.19,336.05L745.19,336.05L746.26,336.69L746.22,336.82L745.80,336.80L745.72,336.94L745.58,337.21L745.80,337.32L745.98,337.41L746.19,337.82L746.63,337.81L746.74,338.06L746.78,338.14L747.11,338.07L747.11,338.07L747.48,338.00L748.51,338.60L748.54,338.62L748.54,338.62L749.12,338.73L749.43,338.57L749.82,338.64 "/><path d="M603.55,292.22L604.72,292.68L605.10,293.32L605.59,293.74L606.68,293.86L607.02,294.06L607.83,294.11L608.59,294.60L609.05,295.22L610.19,295.90L610.21,296.14 "/><path d="M613.39,295.87L613.69,296.17L613.64,296.34L613.33,296.51L613.70,297.05L613.44,297.35L613.22,297.60L612.43,297.47L612.09,297.20L611.30,297.16L610.71,296.90L610.35,296.75L610.31,296.50 "/><path d="M384.80,230.11L384.90,229.82L385.37,229.77L385.14,229.49L385.07,229.41L385.44,229.14L385.28,229.00L385.91,228.54L386.18,228.56L386.48,228.27L386.28,228.05L386.47,227.94L386.41,227.75L385.51,227.41L385.38,227.24L385.09,227.27L384.60,227.18L383.89,226.92L383.84,226.76L384.05,226.60L383.80,226.49L383.42,226.47L383.37,226.11L382.76,226.06L382.47,225.83L382.31,225.55L382.79,225.31L383.24,225.30L383.43,225.13L383.55,225.03L383.73,225.03L384.18,225.03L384.25,224.84L383.76,224.52L383.61,224.13L383.47,223.77L383.46,223.74L383.97,223.43L384.07,223.06L383.21,222.58L382.42,222.47L381.25,222.02L380.96,221.63 "/><path d="M580.19,288.14L580.34,287.88L580.05,287.31L580.06,287.31L580.18,287.05L580.07,286.78L580.38,286.72L580.36,286.49L580.10,286.26L580.30,286.09L580.82,285.99L580.54,285.79L580.69,285.63L580.95,285.35L581.08,284.90L581.47,284.60L581.86,284.55L582.19,284.21L582.17,284.02L582.62,284.00L582.62,284.00L582.69,284.00L583.26,282.92L584.75,282.60L585.23,282.66L585.74,282.54L585.87,282.43L585.94,282.37L586.56,282.44L587.50,282.28L587.85,282.23L587.88,282.22L588.85,282.30L589.09,282.58L589.68,282.62L589.99,282.78L590.08,283.18L590.87,283.51L591.15,283.39L591.43,283.66 "/><path d="M405.78,236.44L405.82,235.81L405.83,235.71L405.84,235.43L405.84,235.42L405.85,235.32L405.91,235.28L406.08,235.17L406.68,235.11L406.92,234.72L406.82,234.36L407.10,234.08L407.52,233.93L407.76,233.65L408.41,233.51L408.47,233.42L408.68,233.08L408.20,232.82L408.02,232.58L407.62,232.53L407.31,232.33L407.35,231.98L407.72,231.48L407.52,231.16L407.13,231.18L406.60,231.40L406.24,230.93L405.51,229.97 "/><path d="M384.29,230.48L384.48,230.45L384.80,230.11 "/><path d="M397.67,228.76L397.21,228.85L396.83,228.82L396.31,229.26L396.20,229.59L396.04,229.67L395.85,229.70L394.47,229.87L394.16,230.04L393.98,230.15L392.65,230.42L392.45,230.39L392.03,230.31L391.57,230.49L391.47,231.07L390.78,230.94L390.27,231.27L390.22,231.61L389.67,231.74L389.43,232.03L388.74,232.12L388.14,232.04L387.81,231.89L387.88,231.77L387.96,231.64L387.80,231.43L387.18,231.17L386.46,231.16L386.24,231.03L386.08,230.61L385.10,230.16L384.80,230.11 "/><path d="M333.64,216.42L333.93,216.30L334.62,216.29L334.92,216.37L336.27,216.13L336.69,216.14L336.69,216.14L336.95,216.25L338.12,216.17L338.56,216.25L338.53,216.47L338.57,216.47L339.34,216.43L339.70,216.41L340.54,216.49L340.78,216.45L340.99,216.24L342.20,216.28L343.01,216.31L343.04,216.30L343.77,215.91L344.27,216.01L344.60,215.91L344.64,215.66L345.13,215.57L345.01,215.34L345.13,215.21L345.21,215.12L345.44,215.09L345.71,214.79L345.54,214.54L345.11,214.36L345.00,214.13L344.29,213.55L343.91,213.53L343.85,213.42L344.16,213.18L345.07,212.90 "/><path d="M682.16,316.57L683.15,316.43L684.13,316.45L684.69,316.32L684.86,316.13L686.06,316.09L686.49,316.21L687.00,316.84L687.79,317.15L688.19,317.44L688.01,317.80L688.42,318.27L689.42,318.75L689.37,319.09L689.79,319.35L690.04,319.69L690.23,319.71L690.46,320.44L690.62,320.65L690.91,321.05L691.25,321.51L691.44,321.76L690.90,322.26L691.07,322.65L690.71,322.76L690.92,323.58 "/><path d="M443.26,249.14L444.13,248.69L444.35,248.67L444.38,248.62L444.73,247.98L445.09,247.94L444.76,247.62L445.63,246.80L445.57,246.41L445.14,246.20L445.30,245.89L445.57,245.82L445.71,244.94L445.41,244.65L444.52,244.76L444.39,244.65L444.47,244.20L443.92,244.00L443.88,243.98L443.48,243.97L443.41,243.90L443.37,243.86L443.66,243.60L443.60,243.44L443.53,243.43L442.82,243.30L442.43,243.02L442.09,243.01L442.03,242.71L441.89,242.63L441.67,242.49L441.74,242.39 "/><path d="M443.26,249.14L443.21,248.97L442.61,248.59L442.42,248.24L442.18,248.25L441.54,247.46L441.38,247.44L441.04,247.66L440.19,247.43L439.70,247.72L439.04,247.77L438.72,247.67L438.42,247.91L438.26,247.56L438.46,247.40L438.36,247.29L437.97,247.34L437.93,247.35L437.40,247.19L437.44,247.07L436.95,246.64L436.74,246.69L436.61,246.72L436.46,246.64L436.17,246.23L436.38,246.00L436.28,245.78L435.72,245.60L435.65,245.46L435.53,245.22L435.09,245.03L435.09,244.89L435.37,244.71L435.33,244.50L434.93,244.26L434.69,243.62L434.11,243.18L433.82,243.12L433.65,243.28L433.15,243.28L432.78,243.17L432.36,243.35L432.12,243.22L431.65,243.16L430.82,243.08L430.66,243.20 "/><path d="M749.82,338.64L749.97,338.88L750.17,338.88L750.18,338.90L750.24,338.99L750.09,339.24L749.73,339.27L749.49,339.43L749.28,339.40L749.13,339.37L749.09,339.54L749.06,339.63L749.00,339.63L748.71,339.63L748.17,340.28L748.37,340.58L748.23,340.74L748.37,341.03L748.19,341.20L747.68,341.18L746.73,341.43L746.46,341.76L746.08,341.82L745.27,341.44L744.75,341.44L743.99,341.20L743.47,340.81L743.43,340.58L742.66,340.06L741.69,339.91L740.96,339.80L740.61,339.52L740.38,338.88L740.00,338.73L739.73,338.21 "/><path d="M406.00,238.84L406.26,237.96L406.30,237.92L406.43,237.79L405.50,237.12L405.41,236.82L405.78,236.44 "/><path d="M309.90,208.38L310.43,208.40L311.29,208.88L311.54,208.93L312.05,209.45L312.17,209.80L312.49,209.87L312.39,210.10L312.64,210.48L313.16,210.59L313.48,211.02L313.18,211.27L313.21,211.85L313.22,211.85L313.37,211.91L314.27,212.23L314.27,212.52L314.55,212.71L315.19,212.60L315.69,212.68L315.73,212.43L316.10,212.49L316.59,212.81L316.72,212.87L317.34,213.13L317.99,213.19L319.13,213.66L319.59,213.96 "/><path d="M296.92,207.82L297.16,207.74L297.37,207.68L297.98,207.72L298.63,207.46L299.18,206.97 "/><path d="M325.83,211.27L326.24,211.56L326.28,211.69L326.01,211.79L326.31,212.22L326.28,212.42L325.87,212.49L325.90,212.78L325.62,212.70L325.44,212.78L325.70,213.14L325.33,213.76L324.55,213.98L324.47,214.32L323.70,214.37L323.77,214.74L324.42,214.84L324.59,215.08L323.96,215.65 "/><path d="M690.92,323.58L690.12,323.40L690.16,323.18L689.94,323.05L689.60,323.12L689.08,323.22L688.33,323.01L688.17,322.87L688.56,322.53L688.27,322.09L688.05,321.99L687.97,321.94L687.25,321.93L686.87,321.81L686.43,321.49L686.35,321.48L685.38,321.37L685.11,321.21L685.16,321.03L685.12,321.00L684.29,320.47L682.36,320.10L682.09,320.16L681.78,320.45L681.42,320.50L681.28,320.97L681.21,320.97L680.56,320.94L680.29,321.08L679.54,321.18L678.22,321.19L677.19,320.91L676.14,320.43L675.87,320.20L675.65,319.74L674.32,319.25L674.19,318.95L673.56,318.89L672.87,318.63L671.36,318.53L669.85,318.04L669.50,318.00L668.99,318.12L668.75,318.18L667.34,318.03L666.25,317.32L665.27,316.95L665.10,316.74L664.60,316.74L663.71,316.55L662.09,315.90L661.97,315.31L662.49,314.54L661.13,313.31L660.28,312.92L659.81,312.88L657.89,312.74L657.51,312.42L656.62,311.96L655.94,311.19L655.51,310.37L654.92,310.10L654.34,310.14L653.65,310.39 "/><path d="M582.36,292.17L582.55,292.01L582.75,291.98L583.43,291.86L583.47,291.88L583.80,291.99L584.51,291.84L584.61,291.77L585.40,291.24L586.23,291.53L586.57,291.33L586.75,291.35L586.93,291.69L587.45,291.48L588.20,291.38L588.30,291.23L587.88,290.94L588.05,290.69L587.89,290.44L588.20,290.16L589.07,290.03L589.31,290.03L589.75,290.55L590.30,290.63L590.95,290.93L591.79,290.99L592.12,291.16L592.47,291.16 "/><path d="M652.52,311.80L652.65,311.98L652.38,312.22L651.44,312.22L650.49,312.70L649.48,312.90L648.90,312.70L648.84,312.48L649.12,312.09L649.86,311.70L649.97,311.40L650.67,310.67L650.66,310.30L651.09,310.05L651.95,308.87L651.92,308.52L651.52,308.39L651.44,308.27L651.74,307.97L651.67,307.57L652.05,306.92L652.30,306.74L653.32,306.48L653.52,306.26L653.36,305.89L653.59,305.40L653.70,305.18L653.24,304.96L653.14,304.56L653.39,304.19L653.27,304.04L654.05,304.02L654.48,303.69L654.08,303.37L653.49,303.17L652.98,302.63L653.25,302.31L652.67,302.06L652.60,301.77L652.33,301.56L652.37,301.45L652.44,301.29L652.04,300.98L651.24,300.80L650.91,300.58L650.47,300.01L650.65,299.50L650.14,299.17L649.55,299.07L649.43,298.98L649.40,298.96L648.99,298.99L648.70,298.72L648.58,298.46L649.19,297.85L649.18,297.48L648.94,297.11L648.57,297.29L648.39,297.07L648.63,296.91L648.46,296.45L647.84,296.12L647.41,296.25L647.24,296.10L647.37,295.84L647.03,295.70L646.48,295.48L646.90,295.17L646.48,294.87L646.53,294.66L646.19,294.42L645.97,293.38L645.08,293.25L644.65,293.04L644.39,292.62L644.12,291.99L644.18,291.69L643.92,291.46L644.43,291.29L644.56,291.02L644.63,290.88L644.78,290.88 "/><path d="M604.78,299.36L604.54,298.83L604.48,298.72L604.06,298.58L603.82,298.17L603.26,297.75L603.13,297.51 "/><path d="M341.37,221.87L341.68,221.73L341.97,221.73L342.66,221.33L343.22,221.31L344.59,220.85L345.87,220.58L346.63,220.42L346.93,220.20L347.64,220.14L347.90,219.94L349.14,219.78L349.48,219.58L351.48,219.20L351.73,219.15 "/><path d="M622.88,305.82L623.42,305.80L623.78,305.54L623.84,305.49L624.83,305.05L625.11,304.53L625.63,304.46L625.86,304.16L625.88,303.91L625.53,303.52L624.94,301.21L624.72,300.84L624.61,299.55L624.81,298.51L624.86,298.24L625.28,297.85L624.54,297.56L624.23,297.09 "/><path d="M622.88,305.82L622.73,305.18L622.11,304.18L622.15,304.10L622.26,303.87L621.80,303.66L621.03,303.64L620.77,303.29L620.76,302.65L620.21,301.54L620.22,301.04L620.50,300.83L621.21,299.76L621.90,299.63L622.63,298.77L622.57,298.66L622.40,298.27L621.87,298.00L621.94,297.43 "/><path d="M445.49,235.14L445.55,235.21L445.73,235.43L445.54,235.58L445.07,235.64L444.89,235.93L444.86,235.97L444.57,235.99L444.08,236.02L443.55,236.35L443.81,236.68L443.43,236.69L443.40,236.73L443.29,236.91L442.90,236.82L442.65,237.06L441.97,237.07L441.87,237.15L441.54,237.03L441.18,237.11L440.93,237.16L440.87,237.30L440.51,237.14L440.07,237.24L439.85,237.42L439.98,237.70L439.82,237.78L439.53,237.72L439.01,237.84L438.75,237.70L438.79,237.56L438.40,237.50L438.36,237.49L438.35,236.99L438.14,236.96L437.67,236.91L437.45,236.89L436.58,236.89L436.49,236.89L436.43,236.89L436.42,236.90L436.32,237.13L435.84,237.20L435.39,237.27L435.24,237.39L435.29,237.48L435.37,237.64L435.02,237.93L434.72,237.93L433.66,237.95L433.56,237.99L432.70,238.30L432.36,238.29L431.91,238.02L431.85,237.76L431.83,237.69L431.44,237.51L431.09,237.49L431.03,237.49L430.85,237.48L429.67,237.43L429.53,237.43L428.93,237.48L428.24,237.31L427.68,237.03L426.73,237.31L426.25,237.35L426.15,237.36L425.40,237.43L423.31,237.15L422.05,236.98L421.97,236.98L421.15,236.94L420.40,236.65L419.74,236.58L419.60,236.82L417.88,236.93L417.65,237.14L416.54,237.37L416.39,237.48L416.02,237.75L415.49,238.62L415.86,238.98L415.65,239.09L415.79,239.22L416.21,239.30L416.36,239.50L416.22,239.81L416.43,239.93L416.84,239.93L417.64,239.65L418.17,239.72L418.51,239.56L418.84,239.56L419.40,240.12L420.25,240.18L420.26,240.33L420.26,240.40L421.57,240.90L422.41,241.22L422.80,241.46L423.53,241.59L424.75,242.23L424.91,242.32L424.53,242.45L425.05,242.65L425.22,242.67L425.59,242.73L425.74,242.86L425.64,243.04L425.97,243.38L425.85,243.54L426.12,243.80L425.88,244.00L426.85,244.32L427.27,244.64L428.03,244.63L428.46,244.93L427.81,245.14L427.63,245.79L430.08,246.98L430.25,247.21L429.95,247.52L429.43,247.60L429.20,247.80 "/><path d="M341.37,221.87L340.54,222.08 "/><path d="M311.69,214.52L311.58,214.35L311.75,214.23L312.41,214.41L312.86,214.38L313.11,214.74L313.31,214.48L313.69,214.44L314.16,214.54L314.66,214.94L314.97,214.77L315.88,214.63L316.34,214.74L316.73,214.45L317.24,214.46L317.74,214.36L317.99,214.39L318.20,214.62L318.97,214.86L319.11,215.01 "/><path d="M384.29,230.48L383.96,230.46L383.63,230.66L383.12,230.76L383.01,231.04L382.66,231.26L382.22,231.80L381.47,232.03L381.01,232.31L380.57,232.36L380.31,232.52L379.94,232.51L379.26,232.77L379.02,233.07L378.68,233.20L377.46,233.67 "/><path d="M353.10,220.58L353.06,221.02L353.45,221.26L353.83,221.30L354.47,221.60L354.94,221.94L355.34,222.04L355.50,222.23L356.05,222.47L356.16,222.90L357.14,222.81L357.62,223.07L359.11,223.14L359.90,222.88L361.37,222.94L362.35,223.19L362.33,223.42L362.68,223.66L363.04,223.74L363.21,223.70L363.49,223.63L364.05,223.77L364.39,223.68L364.43,223.43L365.07,223.51L365.95,223.40L366.06,223.60L366.46,223.72L367.05,223.89L367.61,224.22L368.16,224.19L368.47,224.56L369.43,224.62L370.05,225.39L370.48,225.46L371.42,225.82L371.77,226.21L372.24,226.39L372.69,226.74L372.50,227.07L372.56,227.14L372.77,227.34L373.49,227.22L373.73,227.51L373.51,227.84L373.56,227.85L373.99,227.95L374.34,228.35L374.00,228.56L374.30,228.82L374.72,228.87L374.60,229.30L375.51,229.64L374.95,229.65L374.65,229.78L374.95,229.95L375.49,230.00L375.70,230.24L375.82,230.65L375.32,230.78L375.27,231.29L375.04,231.39L374.87,231.63L375.51,231.81L375.78,232.14L375.80,232.16L376.28,232.30L375.86,233.06L375.95,233.31L376.41,233.57L377.25,233.57L377.46,233.67 "/><path d="M445.45,252.40L445.31,252.62L445.30,252.63L445.12,252.67L445.10,252.65L444.87,252.49L444.53,252.47L444.25,252.59L444.10,252.57L443.73,252.52L443.65,252.61L443.58,252.69L441.90,252.90L441.75,252.87L441.87,252.67L441.58,252.50L441.68,252.23L441.91,252.09L441.57,251.92L441.01,251.82L440.90,251.72L441.11,251.51L440.91,251.14L441.38,250.74L441.62,250.74L441.78,250.52L441.97,250.51L442.13,250.13L442.65,249.86L442.95,249.82L442.76,249.47L442.91,249.25L443.26,249.14 "/><path d="M287.57,207.34L284.47,207.22L283.98,207.03L283.60,207.04L282.84,206.50L282.06,206.30L281.33,206.11 "/><path d="M630.21,308.58L630.38,308.70L630.21,309.24L629.93,309.29L629.94,309.29L629.98,309.57L629.62,309.97L629.34,310.07 "/><path d="M404.07,242.75L404.63,242.38L405.74,241.18L405.73,240.04L405.75,239.98L405.82,239.64L405.94,239.11L406.00,238.84 "/><path d="M331.12,220.14L330.24,220.20L330.31,220.55L330.07,220.78L329.96,220.88L328.88,220.77L328.47,220.88L327.23,220.76L327.08,220.68L327.08,220.65L327.11,220.11L326.92,220.01L326.26,220.10L326.15,220.04L325.98,219.94L326.10,219.66L326.89,219.53L327.28,219.21L326.86,218.88L327.57,218.02L327.37,217.69L326.78,217.47L326.50,217.53L325.80,217.68L325.65,217.51L326.02,216.98L325.82,216.83L326.11,216.65L326.22,216.35L326.02,216.09L325.75,216.10L325.30,216.30L323.94,216.26L323.78,216.19L323.98,215.95 "/><path d="M690.92,323.58L691.15,323.74L691.05,323.88L691.69,324.20L691.76,324.24L693.59,324.58L693.33,324.89L693.59,325.97L694.12,326.29L694.01,326.72L695.27,326.96L695.50,327.24L696.34,327.42L697.10,327.82L697.21,328.24L697.75,328.26L697.75,328.34L697.77,328.55L697.57,328.67L697.75,328.97L697.22,328.98L697.43,329.17L697.42,329.22L697.39,329.44L697.54,329.68L697.75,329.99L698.14,330.21L697.78,330.34L697.70,330.37L697.63,330.56L698.14,330.86L698.13,331.19L698.08,331.21L698.06,331.22L697.48,331.48L697.37,331.49L696.93,331.52L697.14,331.80L696.89,332.01 "/><path d="M290.07,208.02L291.26,209.19L291.66,209.58L291.39,209.95L291.15,210.27L290.07,210.33 "/><path d="M384.29,230.48L384.19,230.63L383.80,230.71L383.47,231.10L383.22,231.16L382.99,231.39L383.00,231.71L382.59,232.02L380.99,232.78L380.03,232.90L379.64,233.26L379.01,233.32L378.69,233.35L377.95,233.66L377.41,233.78L377.18,233.97L377.24,234.10L376.73,234.36L376.37,234.83L375.55,235.28 "/><path d="M631.73,312.30L631.37,311.92L631.73,311.37L633.13,310.96L633.28,310.76L633.88,309.94L633.75,309.53L634.04,309.27L633.67,308.37L634.10,308.39L634.40,308.26L634.67,307.76L635.25,307.27L635.26,306.87L634.56,305.75L634.87,305.65L635.03,305.38L635.16,305.15L635.62,304.94L635.54,304.42L635.53,304.33L636.27,303.79L636.21,303.61L636.06,303.17L635.75,303.04L635.47,302.92L635.68,301.92L635.26,301.25L635.29,300.25L635.15,300.08L634.85,300.08L634.42,300.09L633.21,300.36L632.31,300.26L632.02,300.28L631.00,300.34L630.78,300.35L630.18,299.94 "/><path d="M315.54,218.32L315.28,218.31L314.91,218.29L315.01,217.98 "/><path d="M331.95,223.46L332.03,223.04 "/><path d="M330.99,222.99L331.29,223.37 "/><path d="M333.80,224.27L333.67,224.04L333.00,223.81L332.97,223.63L332.75,223.52L331.95,223.46 "/><path d="M696.89,332.01L696.46,331.92L695.97,331.55L694.69,331.66L694.24,331.60L693.98,331.69L693.69,331.78L693.69,332.24L693.01,332.08L692.73,332.34L692.44,332.34L692.12,331.91L692.07,331.84L691.87,331.70L691.64,331.54L691.63,331.48L691.60,331.36L691.54,331.07L692.24,331.04L692.27,330.79L691.82,330.33L690.34,329.86L690.08,329.93L690.02,329.94L689.56,329.81L688.62,329.29L688.15,329.22L687.40,329.11L685.77,328.33L684.91,328.03L683.80,327.51L683.10,327.02L683.10,326.97L683.10,326.74L682.81,326.51L682.16,325.98L681.67,325.93L680.61,325.34L680.58,325.18L678.98,324.53 "/><path d="M337.29,225.56L337.70,225.52L338.22,225.61L338.50,225.51L338.74,225.43L338.86,225.33L339.18,225.05L339.21,225.06L339.73,225.10L340.26,224.98L340.46,224.67L340.79,224.63L340.96,224.78L342.17,224.85L343.22,224.50L343.30,224.38L343.02,224.22L344.12,223.54L344.62,223.44L344.83,223.23L345.19,223.18L345.73,223.48L345.76,223.76L346.23,223.48L347.38,223.55L347.59,223.56L347.87,223.69L348.11,224.01L348.80,224.23L348.78,224.32L348.00,224.28L347.75,224.37L347.89,224.52L348.05,224.69L347.84,224.93L348.08,225.17L349.48,225.24L349.70,225.41L350.22,225.48L350.52,225.76L351.05,225.84L351.46,226.26L351.81,226.32L352.01,226.50L353.22,226.42L353.96,227.20L354.71,227.65L354.82,228.92L355.31,228.95L355.49,229.14L355.70,229.36L357.67,229.61 "/><path d="M337.29,225.56L337.15,225.25L337.82,225.12L338.54,224.73L338.97,224.65L339.10,224.63L339.07,223.65L338.93,223.52L339.22,223.31L339.72,223.27L339.89,223.15L339.74,222.98L340.56,222.75L341.06,222.38L341.45,222.36L341.37,221.87 "/><path d="M651.21,313.34L649.98,313.33L649.47,313.19L649.24,313.27L649.15,313.54L649.41,314.51L649.26,314.84L649.44,315.46L651.24,316.26L651.59,316.42L652.20,316.91L653.11,317.30L653.76,317.96L654.15,318.19L654.80,318.57L654.84,318.80L655.21,318.97L655.63,318.89L655.72,318.88L656.25,319.03L656.73,319.33L656.81,319.54L657.16,319.77L657.58,319.69L658.99,320.12L660.65,320.39L660.96,320.52L661.62,320.54L662.13,321.00L662.91,321.35L662.93,321.36L662.95,321.37L663.58,321.38L666.18,323.18L667.16,323.58L667.24,323.61L667.44,323.93L667.83,323.80L668.83,323.97L670.10,323.99L670.46,323.87L672.26,324.21L672.40,324.46L673.01,324.54L673.23,325.04L674.22,325.57L675.25,325.69L675.45,325.78L675.74,325.90L676.64,326.03L677.01,326.21L676.99,326.55L677.48,326.56L677.69,326.68L677.44,326.82L677.71,326.96L677.98,326.95L678.12,326.95L678.32,326.94L678.42,327.09L678.20,327.10L678.44,327.41L679.03,327.41L679.27,327.65L679.07,327.88L679.22,328.03L679.57,328.11L679.74,328.44L680.25,328.78 "/><path d="M222.74,190.53L222.62,190.61L222.20,190.90L221.80,191.32L221.63,191.50L221.31,191.52L221.24,191.53L220.75,191.39L220.23,191.54L220.09,191.51L219.96,191.47L219.43,191.34L218.63,191.29L218.10,191.32L217.44,191.36 "/><path d="M377.46,233.67L377.08,234.00L376.67,234.15L376.32,234.51L375.73,234.49L375.01,234.87L375.20,235.31L374.63,235.69L374.59,235.72L374.56,235.72L374.08,235.74L373.85,236.07L373.83,236.11L373.75,236.09L373.55,236.06L373.41,235.90L373.51,235.74L373.53,235.71L373.17,235.54L372.98,235.66L372.62,235.91L372.80,236.16 "/><path d="M280.11,209.37L280.34,209.50L280.98,209.85 "/><path d="M590.81,301.98L591.19,301.72L591.27,301.35L591.19,301.08L591.10,300.75L591.44,300.20L592.16,299.73L592.29,299.42L592.66,299.21L592.32,298.81L592.55,298.44L593.59,298.21L594.41,298.15L594.67,297.81L595.94,297.36L596.74,297.43L598.47,296.50L598.63,296.41L598.84,296.03L599.84,295.70L599.94,295.50L601.04,295.07L603.80,295.31 "/><path d="M328.92,223.99L329.81,223.81L330.37,223.86L330.76,223.53L331.29,223.37 "/><path d="M328.92,223.99L328.26,223.87L327.81,223.65L328.47,223.56L328.51,223.36L328.28,223.15L328.24,223.14L326.83,222.77L325.96,222.21L325.10,222.07L324.49,221.88L323.50,221.58L323.38,221.19L322.60,220.65L322.55,220.45L321.75,220.59L321.53,220.40L320.74,220.44L319.94,220.13L319.42,219.94 "/><path d="M372.80,236.16L372.10,236.19L370.82,236.26L370.42,236.12L370.15,235.88L368.38,235.48L367.41,235.36 "/><path d="M367.41,235.36L366.96,235.30L366.96,235.30L365.67,235.44L365.17,235.16L364.55,235.01L365.20,234.75L365.35,234.53L364.81,234.21L363.98,234.36L362.81,233.74L362.81,233.55L362.43,233.59L362.23,233.28L361.60,233.39L361.44,233.29L361.77,232.64L362.30,232.35L362.05,232.16L361.42,232.12L361.28,231.97L361.40,231.62L361.45,231.57L361.67,231.35L362.33,231.24L362.90,230.62L362.53,230.28L361.84,229.97L361.47,229.31L360.11,228.95L359.54,228.47L359.56,228.32L359.56,228.24 "/><path d="M328.20,224.71L328.62,224.60L328.81,224.44L328.55,224.26L328.92,223.99 "/><path d="M514.10,279.98L513.84,279.27L514.01,279.03L513.34,278.59L513.17,278.29L513.46,278.02L514.44,278.08L514.87,277.42L515.47,277.17L516.00,276.74L515.98,276.37L516.26,276.06L516.40,276.03L516.84,275.91L517.78,275.87L519.55,276.41L520.37,276.66L521.18,276.73L521.80,276.78L522.08,276.91L522.21,276.96L522.73,277.19L523.27,277.42 "/><path d="M622.88,305.82L623.35,306.32L623.30,306.38L622.99,306.71L622.95,307.09L622.92,307.33L622.89,307.35L622.59,307.46L622.47,307.73L622.34,308.01L621.92,308.37L621.53,308.35L621.48,308.52L621.44,308.69L620.45,309.56L619.35,310.53L619.19,310.55L618.85,310.61L618.61,310.84L618.21,310.93L617.72,310.90L617.54,310.89L617.12,310.74L616.86,310.81L617.01,311.12L616.68,311.20L616.30,311.12L616.17,310.94L616.13,310.94L615.63,310.96L615.34,310.83L614.92,310.85L614.82,311.06 "/><path d="M699.33,337.49L699.73,337.13L699.91,337.24L700.10,337.22L700.27,337.00L700.62,337.02L700.82,337.04L700.95,336.45L701.19,336.32L701.39,335.68L701.04,335.07L701.28,334.54L701.05,334.32L701.16,333.36L700.89,332.93L701.17,332.69L701.00,332.29L701.05,331.94L701.09,331.89L701.39,331.52L701.52,331.36L701.23,331.08L701.49,330.47L701.84,330.40L701.99,330.24L702.29,329.94L702.04,329.51L702.24,329.16L702.53,329.16L702.73,328.56L702.39,328.23L702.54,327.98L702.35,327.68L702.61,327.44L702.54,327.21L702.48,327.16L701.91,326.79L702.71,326.25L702.79,326.15L703.14,325.71L702.93,325.31L703.37,324.95L703.93,324.87L704.67,325.04L705.34,325.45L705.76,325.71L706.18,325.82L706.77,325.97L706.92,326.01L707.60,326.03L707.94,325.94L708.70,326.21L709.36,326.22L709.46,326.41L709.85,326.59L710.38,326.66L710.49,326.92L711.00,327.18L711.00,327.21L710.95,327.45L711.42,327.82L711.84,327.80L711.98,328.00L711.70,328.56L712.22,328.72L712.12,328.98L711.77,329.10L711.79,329.23L712.12,329.39L712.23,329.60L712.51,329.62L712.65,329.62L712.86,329.86L712.44,329.91L712.35,330.20L712.13,330.24L712.02,330.26L711.97,330.41L712.00,330.45L712.36,330.88L712.44,330.97L712.77,330.90L713.10,330.82L713.64,330.32L715.47,330.17L715.77,330.28 "/><path d="M699.33,337.49L699.00,337.20L699.05,336.97L698.62,336.27L698.87,335.81L698.64,335.19L698.02,335.07L698.03,334.66L698.33,334.60L698.43,334.27L698.27,333.95L697.86,333.71L698.02,333.41L697.75,333.38L697.54,333.46L697.28,333.26L697.12,332.59L697.22,332.37L697.46,332.36L697.46,332.17L696.89,332.01 "/><path d="M628.73,310.60L628.52,310.75L627.93,310.87L627.71,311.20L628.17,311.68L627.78,311.80L627.42,311.73L627.06,311.43L626.35,311.36L626.30,311.33L626.02,311.10L625.96,311.10L624.88,311.05L624.56,310.78L623.78,310.82L622.69,312.14L622.08,312.27L621.54,312.75L620.82,312.94L620.58,313.00 "/><path d="M620.58,313.00L620.25,312.56L620.08,312.34L620.24,312.07L620.63,311.82L620.24,311.44 "/><path d="M420.37,252.56L419.83,252.08L419.70,251.64L418.32,251.09L417.96,251.03L417.67,251.09L417.45,251.38L416.49,251.15L416.42,251.02L415.39,251.16 "/><path d="M415.39,251.16L414.98,250.74L415.76,249.99L415.53,249.63L415.81,249.38L416.33,249.29L415.67,248.98L416.39,248.63L416.88,248.64L416.59,248.28L416.53,247.73L416.91,247.57L416.77,247.33L416.36,247.26L416.21,246.97L416.54,246.44L416.07,245.77L415.76,245.62L415.81,245.25L415.55,244.96L415.13,244.48L415.12,244.29L414.45,243.97L414.24,243.65L413.39,243.65L412.91,243.31L412.77,243.30L412.53,243.28L412.16,243.09L412.11,243.07L412.09,243.06L411.85,242.78L411.88,242.35L411.62,241.93L411.92,241.42L411.97,241.33L412.14,241.03L411.72,240.80L411.51,240.48L411.05,240.28L410.44,240.21L410.33,239.95L409.28,239.95L408.44,240.09L408.11,240.15L407.82,240.08L407.69,239.62L407.31,239.34L407.27,239.31L407.31,238.69L406.73,238.43L406.79,237.80L406.80,237.62L406.06,237.12L405.82,236.77L406.00,236.62L405.78,236.44 "/><path d="M601.57,307.49L602.58,307.68L603.27,307.51L604.36,307.44L604.48,307.30L604.74,307.02L605.18,306.83L606.34,306.70L606.87,306.82L607.32,306.77 "/><path d="M643.43,320.47L643.72,319.89L643.75,319.68L643.99,318.24L643.57,317.63L643.19,317.42L640.57,317.18L640.09,317.01L636.99,314.83L636.65,314.39L636.33,314.19L636.05,314.01L635.79,313.59L635.46,313.47L635.29,313.19L634.95,313.02L634.68,312.49L633.99,311.96L633.15,311.63L632.66,311.69L632.25,312.19L631.99,312.25L631.73,312.30 "/><path d="M190.86,185.97L190.24,186.16L189.80,186.19 "/><path d="M600.09,307.16L599.82,306.94L599.74,306.88L599.62,306.39L599.96,306.29L599.97,306.02L599.61,305.30L599.47,304.50L599.91,304.04L600.14,303.52L600.07,303.35L600.50,302.79 "/><path d="M219.39,189.77L218.92,189.90L217.93,189.79L217.45,189.85L216.69,189.81L216.54,189.54L216.52,189.52L216.29,189.50L215.94,189.62L214.83,189.65L214.04,189.45L214.01,189.34L213.92,189.08L213.08,189.12L212.27,189.53L211.76,189.65L210.89,189.68L210.13,190.17L209.44,190.09L209.36,190.35L209.90,190.64L209.64,190.91L209.62,191.25L210.14,191.44L210.18,191.47L210.45,191.74L211.39,192.01L212.01,192.32L212.63,192.33L212.75,192.51L213.02,192.58L213.48,192.51L213.89,192.56L214.36,192.41L214.56,192.41L214.63,192.44L214.87,192.64L215.16,192.58L216.95,192.83L217.12,192.89L217.25,192.94L216.93,193.39L217.00,193.59L216.84,193.79L216.82,193.82L216.98,193.96L217.89,193.88L218.12,193.96L218.43,193.88L219.15,193.90L219.66,193.79L220.08,193.70L220.25,193.60 "/><path d="M333.87,227.80L334.25,227.77L335.01,227.45L334.73,227.14L334.79,227.02L335.34,227.10L335.58,227.31L335.77,227.25L335.97,226.74L336.79,226.55L336.75,226.22L336.35,226.07L336.39,225.84L337.11,225.87L337.29,225.56 "/><path d="M430.56,255.50L430.29,255.68L429.63,255.83L429.12,255.82L429.08,255.78L428.67,255.30L428.41,255.26L428.13,255.01L427.73,254.96L427.51,254.78L427.52,254.46L427.80,254.29L427.68,254.02L427.96,253.64L427.73,253.24L427.90,253.12L428.03,253.03L428.17,252.54L427.94,252.25L428.06,251.98L427.14,251.46L426.18,251.36L425.36,250.93L425.11,250.91L424.87,250.75L424.44,250.78L424.40,250.75L424.15,250.59L424.50,250.51L424.78,250.01L424.70,249.70L425.17,249.69L425.37,249.51L425.21,248.93L425.62,248.86L425.91,248.58L426.72,248.67L426.94,248.50L427.40,248.47L427.93,248.27 "/><path d="M286.47,212.74L286.66,212.94L286.33,213.42L285.97,213.40L285.90,213.53L287.16,214.05L287.35,214.52L287.40,214.62L287.24,214.81L288.15,215.22L288.46,215.25L288.81,215.20L289.98,215.03L290.75,214.83L290.91,214.69L291.71,214.70L291.94,214.61L292.06,214.37L292.54,214.37L292.79,214.22L292.80,214.05L293.93,213.85L294.48,214.01L294.57,214.01L295.27,213.99L295.53,213.78L295.51,213.54L296.03,213.24L296.12,213.06L297.38,212.79L297.55,212.57L297.67,212.41L298.19,212.04L298.31,211.96L298.28,211.87L298.22,211.70L298.37,211.46L298.63,211.05L298.40,210.50L298.45,210.42L298.61,210.11L297.81,209.42L297.79,209.40L297.60,209.24L297.44,208.99L297.44,208.86L297.44,208.50 "/><path d="M293.23,217.26L293.21,217.05L293.57,216.82L294.49,216.49L295.22,216.62L295.46,216.56L295.68,216.50L296.60,216.52L297.06,216.76L297.89,216.94 "/><path d="M205.22,189.39L205.59,189.56L205.81,189.88L206.40,190.09L206.57,190.30L206.65,191.06L206.38,191.40L206.34,191.44L206.56,191.61L206.27,191.81L205.40,191.90L204.87,192.03 "/><path d="M680.25,328.78L681.41,329.93L681.61,330.01L681.99,329.98L682.19,329.75L682.43,329.94L682.36,330.12L683.75,330.62L683.95,330.96L684.62,331.04L684.82,331.25L684.88,332.33L684.71,332.60L685.02,332.71L685.10,332.40L685.41,332.45L685.37,332.87L685.56,333.34L685.04,334.16L685.06,334.38L685.06,334.50L685.32,334.66L685.52,334.80L685.29,335.21L684.96,335.33 "/><path d="M380.26,242.82L381.40,242.26L381.51,242.20L382.85,241.72L383.21,241.40L383.02,241.09L383.16,240.55L384.12,240.17L384.68,239.59L384.68,239.21L384.29,238.78L384.43,238.24L384.51,237.90L385.15,237.30L385.70,237.18L385.86,237.29L386.21,237.13L386.33,236.95L386.58,236.60L387.14,236.49L387.40,236.21L387.56,236.03L388.02,236.00L388.06,236.00L388.10,235.93L388.12,235.89L388.16,235.82L388.20,235.75L388.52,235.56L388.53,235.53L388.62,235.30L388.51,235.20L388.73,235.02L388.96,234.96L389.30,234.87L389.43,235.01L389.59,235.19L389.71,235.19L389.94,235.19L390.16,235.05L390.11,234.59L389.59,234.43L390.66,233.65L391.11,233.82L391.90,233.75L392.12,233.58L392.76,233.61L393.20,233.28L394.11,233.09L394.25,233.05L394.43,232.89L393.90,232.64L393.99,231.98L395.49,231.56L395.56,231.54L395.85,231.07L396.35,230.78L397.05,230.37L397.89,229.61L397.65,229.47L397.67,228.76 "/><path d="M620.58,313.00L620.29,313.16L620.12,313.19L619.44,313.30L618.90,313.59L618.78,313.61L617.87,313.74L617.71,313.82L617.22,314.05L616.69,314.16L616.26,314.07L616.02,314.22L615.69,314.04L615.65,314.02L616.01,313.08L615.73,312.98L615.48,312.46 "/><path d="M678.39,333.71L678.61,333.76L678.75,333.53L679.80,333.39L681.98,334.14L682.24,334.06L682.94,334.19L684.26,334.80L684.36,335.02L684.96,335.33 "/><path d="M499.14,277.27L498.55,277.80L498.62,277.88L498.68,277.96L498.78,278.08L499.49,278.43L499.80,278.83L500.79,279.35L501.40,279.31L501.61,279.29L502.13,279.38L502.36,279.41L502.68,279.34L502.97,278.90L504.22,278.78L505.76,278.84L506.24,278.79L506.92,278.40L507.23,278.34L508.93,278.85 "/><path d="M613.54,303.99L613.34,304.37L612.86,304.65L612.64,305.04L612.01,305.36L611.80,305.79L612.12,306.09L612.20,306.91L612.41,307.18L611.83,307.57L611.79,307.93L610.78,308.82L610.11,309.20L610.39,309.56L610.02,310.11L610.15,310.91L610.17,311.02L610.18,311.10L610.07,311.28L609.96,311.32L609.71,311.41L609.32,311.37L608.82,311.91L609.48,312.54L609.50,312.56 "/><path d="M223.34,197.61L223.75,197.98L224.61,198.34L225.77,198.27L225.98,197.95L226.40,197.65L227.14,197.56L227.87,197.14L228.15,196.67L229.26,195.80L230.39,194.61L230.47,194.52L230.92,194.43L231.16,194.04 "/><path d="M729.60,350.26L729.70,349.86L730.17,349.81L730.27,349.63L729.89,349.34L729.76,349.02L730.07,348.75L729.69,348.00L729.99,347.69L729.63,347.21L729.11,346.50L728.93,345.71L728.91,345.59L729.01,345.23L728.66,344.99L728.56,344.75L728.71,344.46L728.12,344.22L728.12,343.68L728.29,343.52L728.75,343.49L729.00,343.22L728.31,342.67L728.23,342.61L728.16,342.42L728.31,342.05L727.99,341.43L728.12,341.20L727.76,340.18L727.90,339.65L727.67,338.91L727.32,338.39L727.69,337.99L727.66,337.67L727.97,337.27L728.28,337.23L728.43,337.07L728.37,336.78L729.09,336.30L729.17,335.17L729.00,334.51L728.99,334.44L728.64,334.10L728.20,333.30L727.93,332.37L728.11,332.12L728.13,331.61L727.66,330.96L727.69,330.27L727.33,330.12L727.19,329.92L727.33,329.47L726.48,328.99L726.06,329.01L725.69,328.80L724.59,328.79L722.76,328.39L722.57,328.35L722.20,328.35L722.03,328.34L721.61,328.48L720.58,328.08L720.05,328.25L719.54,328.15L719.15,327.76L718.93,327.79L719.13,328.12L718.74,328.09L718.44,327.90L717.91,327.91L718.14,327.59L717.68,327.54L717.28,326.97L716.62,326.95L716.21,326.68L715.85,326.64L715.70,326.41L716.05,325.94L716.83,325.77L716.93,325.46L716.94,325.43L717.08,325.39L717.17,325.49L717.30,325.62L717.56,325.53L717.76,325.46L718.24,325.47L718.39,325.29L718.45,325.23L717.59,324.72L717.59,324.72L717.39,324.52L717.37,324.15L717.00,324.10L716.89,323.92L717.33,323.92L717.49,323.46L717.07,323.32L717.15,323.12L716.88,322.93L716.39,322.89 "/><path d="M729.60,350.26L729.40,350.08L729.20,349.91L728.36,349.81L727.86,349.36L727.03,349.13L725.76,348.57L725.07,348.47L724.81,348.33L724.73,348.00L724.34,347.67L723.96,347.63L723.80,347.49L723.83,347.07L723.45,346.95L723.46,346.52L723.73,346.26L723.51,346.12L723.72,345.90L723.55,345.74L723.17,345.68L723.11,345.41L722.55,344.99L722.54,344.72L722.54,344.69L722.26,344.63L722.07,344.85L721.49,344.81L721.38,344.91L721.86,345.15L721.71,345.27L721.17,345.09L720.76,345.09L719.80,344.64L720.06,344.39L720.04,344.21L719.16,343.80L718.93,343.21L719.17,342.75L718.99,342.11L718.62,341.81L718.84,341.62L719.47,341.43L719.47,341.06L719.05,340.49L719.15,339.98L719.43,339.80L720.31,339.74L720.17,339.13L721.20,338.63L721.51,338.40L721.70,338.01L722.16,337.94L722.28,337.68L722.52,337.62L722.75,336.77L723.16,336.44L722.93,336.03L723.08,335.82L722.92,335.32L723.01,334.69L723.17,334.59L723.09,334.38L724.00,333.88L724.16,333.46L724.70,332.90L725.24,332.80L725.61,332.89L725.80,333.32 "/><path d="M753.07,345.07L754.51,345.62L756.00,346.60L756.41,347.15L756.50,347.68L756.17,347.74L756.13,348.34L755.68,348.86L755.65,349.50L755.33,349.92L755.47,350.98L756.13,351.40L756.68,351.49L757.23,351.78L757.15,352.31L757.09,352.75L757.92,353.52L757.81,353.64L757.98,354.02L757.54,354.45L757.67,355.14L757.41,355.40L757.20,355.62L757.83,356.31L757.46,356.68L757.59,356.88L756.99,356.99L757.13,357.33L756.85,357.78L756.64,357.84L756.33,357.69L756.01,358.16L756.00,358.17L755.00,358.27L754.63,358.52 "/><path d="M352.03,235.66L352.88,235.56L353.76,235.57L355.08,235.27L356.61,235.31L356.94,235.58L357.79,235.34L358.24,235.58L359.56,235.56L360.06,235.18L361.80,235.58L362.94,235.66L363.34,235.86L363.99,235.84L364.80,236.06L365.22,236.06L365.67,236.05L366.38,236.05L366.79,235.59L366.87,235.50L367.41,235.36 "/><path d="M352.03,235.66L352.44,235.28L351.46,235.00L351.35,234.96L351.49,234.77L350.90,234.73L350.96,234.60L351.39,234.51L351.44,234.42L351.12,234.31L351.24,234.14L350.78,233.84L351.17,233.76L351.38,233.72L351.70,233.49L352.86,233.18L352.95,233.02L352.79,232.86L353.98,232.57L353.42,232.24L352.79,232.23L352.02,231.94L351.32,231.86L350.82,231.53L350.42,231.40L350.05,231.27L349.63,231.25L348.79,231.01L348.35,230.65L348.47,230.46L348.12,230.25L347.77,229.76L347.42,229.61L346.90,229.61L346.41,229.46L346.23,229.22L345.71,229.04 "/><path d="M403.59,243.08L402.60,243.92L402.79,244.58L402.52,244.97L401.97,245.09L401.72,245.15L401.72,245.29L401.71,245.52L401.28,245.90L400.14,246.16L399.85,246.67L399.91,247.16L399.48,247.54L399.46,248.00L399.45,248.25L398.86,248.84L398.68,249.41L398.84,249.49 "/><path d="M676.93,334.22L676.82,334.26 "/><path d="M372.80,236.16L372.88,236.24L373.06,236.44L372.50,236.77L371.54,237.75L371.16,237.97L370.65,238.81L370.55,238.89L370.10,239.25L370.30,239.57L370.04,240.04L369.52,240.13L369.77,240.49L369.64,240.66L370.27,241.06L370.26,241.16 "/><path d="M351.20,235.68L351.43,235.75L352.03,235.66 "/><path d="M729.60,350.26L730.02,350.99L729.97,351.22 "/><path d="M274.75,213.58L274.72,212.89L274.95,212.59L274.91,212.45L274.91,212.43L275.12,212.31L274.79,212.14L274.68,212.09L274.68,212.04L274.63,211.70 "/><path d="M735.10,336.48L734.97,337.04L735.47,338.43L735.37,338.94L735.61,339.39L735.55,339.63L736.39,340.30L737.29,341.41L737.31,341.84L737.71,342.15L738.11,343.02L738.09,343.51L737.64,344.06L737.65,344.25L737.42,344.46L737.04,344.54L737.01,344.67L736.96,344.90L736.65,345.18L736.65,345.52L736.34,345.78L736.52,346.16L736.35,346.23L735.94,346.12L735.72,346.17L735.99,346.42L735.28,346.80L734.92,346.69L734.90,346.81L735.32,347.07L734.96,347.34L735.00,347.62L735.03,347.79L734.63,347.69L734.16,347.83L734.12,348.01L733.47,348.10L733.06,348.60L733.21,348.80L732.51,349.73L732.65,350.06L732.31,350.42L732.47,350.83L732.61,351.20L732.09,351.83L731.69,352.06 "/><path d="M731.69,352.06L731.47,351.50L730.74,351.50L729.97,351.22 "/><path d="M702.39,342.86L703.12,342.95L703.48,343.09L703.72,343.17L704.26,343.11L705.11,343.44L705.42,343.41L706.66,343.85L706.88,343.86L707.11,343.88L707.40,343.39L708.04,343.11L708.11,342.89L708.32,342.84L708.58,342.36L708.51,341.91L708.78,341.66L709.03,341.56L709.39,341.42L709.50,341.29L709.60,341.17L710.32,341.34L710.57,340.91L711.20,340.72L711.64,340.32L711.71,340.01L711.74,339.89L712.45,339.76L712.53,339.48L713.42,339.17L713.51,338.89L713.01,337.95L713.18,337.67L713.51,337.54 "/><path d="M702.39,342.86L702.39,342.46L702.63,342.20L703.16,342.09L703.51,342.02L703.78,341.65L704.27,341.63L704.68,341.25L704.76,340.98L704.95,340.39L704.94,340.22L704.92,339.89L704.86,339.76L704.76,339.54L704.71,339.45L704.77,338.96L705.00,338.64L704.81,338.33L704.98,338.05L705.01,338.04L705.30,337.93L705.34,337.75L704.70,336.57L704.90,336.25L705.16,336.22L705.29,335.91L705.77,335.53L706.33,335.28L706.64,334.69L707.15,334.50L707.52,334.15L707.71,333.93L707.70,333.58L708.48,333.02L708.54,332.49L709.06,331.81L709.83,331.71L710.42,331.99L711.01,332.06L711.33,332.10L711.57,332.13L711.99,332.45L712.77,332.74L713.10,332.73L713.51,332.00L713.73,331.85L714.23,331.73L714.79,331.60L715.16,331.60L715.64,331.83L715.64,332.04L716.45,332.74 "/><path d="M299.80,221.18L299.61,220.88L300.13,220.46L300.19,220.42L300.04,220.28L300.56,220.03L301.22,220.03L301.69,219.90L301.88,219.72L301.97,219.64L302.10,219.21L301.85,218.82L301.97,218.40L301.71,218.13L301.76,217.87L301.53,217.76L301.93,217.08L301.27,216.61L301.05,216.26 "/><path d="M680.25,328.78L679.62,328.72L678.78,328.63L678.38,328.46L677.70,328.38L675.62,327.85L675.28,327.88L674.99,327.75L673.44,328.07L672.23,327.99L671.75,328.16L671.15,328.10L670.87,328.25L670.55,328.16L670.37,328.37L669.87,328.45L669.50,328.74L668.75,328.85L668.76,329.04L667.63,329.28L666.43,329.53L665.32,329.39L663.87,329.40L663.15,329.55L662.40,329.53L661.25,329.92L659.99,329.72 "/><path d="M666.74,331.55L665.96,331.64 "/><path d="M402.24,251.37L403.23,250.68L404.24,249.79L404.86,249.61L404.99,249.37L405.08,249.20L405.05,248.91L405.58,248.35L406.16,248.25L406.12,248.01L406.56,247.42L406.04,246.86L406.40,246.52L407.04,246.52L407.64,246.21L408.32,246.15L408.59,246.45L408.82,246.47L409.14,246.32L409.25,246.27 "/><path d="M675.59,334.44L674.03,334.28L673.19,333.90L672.89,333.87 "/><path d="M714.97,346.70L715.84,347.51L716.35,347.49L716.71,347.70L717.09,347.76L718.35,347.67L719.41,347.91L719.99,348.30L722.37,348.99L722.78,348.90L723.53,349.12L723.96,349.38L724.16,349.76L726.07,350.24L726.35,350.26L726.72,350.11L727.09,350.23L727.19,350.27L727.89,350.24L728.70,350.45L729.03,350.61L728.94,350.85L729.21,351.10L729.48,351.14L729.97,351.22 "/><path d="M766.04,363.62L766.19,363.19L766.15,363.06L765.73,361.80L765.68,361.64L765.29,361.20L764.55,360.99L764.39,360.81L763.41,360.62L762.62,360.13L762.41,360.08L762.00,359.97L761.00,359.22L760.37,358.91L757.79,358.68L757.22,358.63L756.17,358.72L755.81,358.75L754.63,358.52 "/><path d="M415.39,251.16L415.52,251.28L415.36,251.56L414.69,251.59L414.56,251.62L413.29,251.91L412.48,252.50L411.65,252.67L411.45,253.13L411.95,253.22L412.15,253.53L412.41,253.60L412.70,253.54L413.59,254.27L413.87,254.33L413.83,254.51L414.30,254.53L414.96,255.37 "/><path d="M389.18,247.77L389.63,247.57L390.03,247.39L390.74,247.44L391.59,246.85L392.01,246.87L392.89,246.34L393.48,245.56L394.43,245.10L395.23,244.40L395.11,244.02L395.64,243.40L395.59,242.94L395.55,242.60L395.60,242.55L395.80,242.33L396.18,242.20L396.65,242.17L397.26,242.13L397.59,241.51L398.32,241.16L398.90,241.03L399.00,240.83L399.44,240.76L399.58,240.80L399.85,240.88L400.09,240.84L400.51,240.44L400.84,240.43L401.25,240.59L401.68,240.24L401.80,240.22L401.93,240.19L402.73,240.27L403.07,240.09L403.45,240.22L403.48,240.21L404.13,240.14L404.60,240.20L405.01,240.03L405.08,239.97L405.21,239.85L405.40,239.69L405.53,239.51L405.83,239.09L406.00,238.84 "/><path d="M398.84,249.49L399.84,248.24L399.86,248.22L400.16,248.14L400.24,248.51L400.71,248.51L401.14,248.30L401.66,248.36L401.74,248.50L401.76,248.54L401.60,248.72L402.16,249.30L401.49,250.02L401.42,250.10L400.96,250.28L400.74,251.18L401.21,251.44L401.82,251.51L402.24,251.37 "/><path d="M420.13,257.11L421.19,256.74L421.76,256.96L422.00,257.24 "/><path d="M274.75,213.58L273.90,213.61L273.54,213.62L273.40,213.61L272.36,213.51L272.04,213.48L271.34,213.58 "/><path d="M737.35,354.87L737.06,354.49L736.49,354.43L736.23,354.00L736.66,353.56L737.18,353.47L737.28,353.29L737.14,352.74L736.62,352.26L736.74,352.02L737.43,351.77L737.34,351.57L737.69,351.49L737.49,350.98L738.07,350.95L738.24,350.58L738.75,350.47L738.92,350.30L739.26,349.97L739.58,349.66L739.59,349.65L739.83,349.42L740.36,349.46L740.78,349.36L741.22,349.51L741.89,349.58L742.49,349.65L743.09,349.71L743.92,349.23L744.08,348.92L743.82,348.33L744.07,348.10L743.69,347.61L743.65,347.57L743.76,347.22L743.84,346.92L743.82,346.55L743.57,346.20L743.89,345.97L743.89,345.97L743.87,345.72L744.56,345.44L744.82,345.52L744.95,345.72L745.29,345.47L745.85,345.34L746.27,344.91L746.70,345.07L746.77,345.10L747.74,345.09L747.66,344.91L747.58,344.74L747.71,344.75L747.73,344.75L748.08,344.77L747.95,344.25L748.10,343.99L748.35,343.93L748.59,343.88L749.09,343.93L749.18,343.94L749.33,344.10L749.16,344.35L749.24,344.43 "/><path d="M401.98,251.91L402.30,251.56L402.24,251.37 "/><path d="M664.97,331.59L664.02,331.32L662.69,331.33L662.00,331.14 "/><path d="M754.63,358.52L753.95,358.24L753.55,357.80L753.25,357.66L753.20,357.64L751.64,357.33L750.70,356.84L749.59,356.83L749.18,356.72L748.69,356.37L748.29,356.23L748.21,355.97L747.92,355.76L747.13,355.60L746.86,355.65L746.54,355.36L746.15,355.33L745.52,355.56L744.84,355.37L743.72,354.72L743.34,354.64L742.78,354.68L740.52,354.84L738.94,354.73L738.56,354.90L738.54,355.30L738.72,355.54 "/><path d="M737.35,354.87L737.45,354.94L737.80,355.20L738.10,355.42L738.72,355.54 "/><path d="M700.35,343.54L700.16,343.32L700.63,342.70L701.09,342.59L701.61,342.67L701.99,342.85L702.39,342.86 "/><path d="M699.33,337.49L699.09,337.78L698.53,337.74L698.35,337.91L698.26,338.44L697.40,338.86L697.76,339.14L697.62,339.30L697.54,339.40L697.66,339.76L697.51,340.06L697.64,340.24L697.19,340.50L697.13,340.71L697.31,341.23L698.00,341.58L698.28,341.92L699.29,342.35L699.54,342.63L699.65,343.01L699.73,343.30L699.96,343.48L700.35,343.54 "/><path d="M397.79,251.15L398.00,250.82L398.12,250.62L398.25,250.57L398.61,250.43L398.83,250.34L399.07,250.11L399.03,249.99L398.97,249.84L398.84,249.49 "/><path d="M254.58,200.80L254.05,201.08L254.02,201.13L253.93,201.28L254.19,201.77L253.87,202.51L254.28,203.22L254.17,203.47L253.86,203.62L253.73,203.69L253.68,203.86L253.61,204.09L253.49,204.10L253.07,204.12L252.88,204.70L252.37,204.82L251.88,205.11L251.42,205.14L251.38,205.25L251.72,205.52L251.57,205.61L250.96,205.69L250.37,206.09L249.84,206.17L249.84,206.32L249.83,206.42L249.49,206.77L249.58,207.02L249.97,207.19L249.86,207.61L250.29,207.72L250.33,207.87L251.32,208.24L251.75,208.24L252.03,208.35L252.55,208.28L252.81,208.41L253.25,208.45L253.47,208.63L253.01,208.95 "/><path d="M298.47,222.09L298.45,221.86L299.13,221.49L299.69,221.56L299.95,221.47L299.80,221.18 "/><path d="M336.08,233.08L336.03,232.68L335.82,232.48L335.37,232.40L334.89,232.51L334.01,232.43 "/><path d="M293.88,217.79L293.96,218.07L293.84,218.22L294.47,218.50L294.85,218.97L294.60,219.34L294.84,219.86L295.46,220.49L295.29,220.70L294.85,220.78L295.16,220.99L295.06,221.20 "/><path d="M731.69,352.06L731.31,352.73L731.81,352.94L732.31,353.47L732.66,353.43L733.04,353.81L733.03,354.03L734.00,354.45L734.22,354.71L735.11,354.53L735.60,354.82L736.86,354.99L737.35,354.87 "/><path d="M333.90,232.65L334.17,232.82L334.57,232.86L334.75,232.97L334.74,233.17 "/><path d="M507.53,284.79L507.59,284.78L508.33,284.64L508.35,284.61L508.43,284.50L508.72,284.10L509.08,283.59L508.73,282.82L508.68,282.72L508.90,282.41L509.19,281.99L511.52,281.18L512.08,280.72L513.20,280.51 "/><path d="M507.53,284.79L507.61,284.30L507.59,284.26L507.57,284.21L507.49,283.99L507.47,283.96L507.20,283.82L506.90,283.66L505.98,283.59L505.31,283.23L505.09,282.82L505.11,282.36L504.29,281.85L504.37,281.47L503.36,280.80L503.25,280.58L503.35,280.49L503.38,280.47L503.58,280.29L505.30,279.99 "/><path d="M365.80,242.51L365.74,242.32 "/><path d="M417.19,257.75L417.55,257.61L418.37,257.54 "/><path d="M311.78,225.84L311.82,225.84L312.67,226.37L313.16,226.54L313.27,226.58L313.22,226.73L313.14,226.93L313.46,227.20L313.86,227.23L315.66,227.33L316.06,227.36L317.57,227.07L318.37,227.19L318.71,227.24L319.35,226.75L319.53,226.61L320.68,226.34L320.89,226.19L320.92,226.16L320.96,226.13L320.97,226.13L321.06,226.06L321.25,226.02L321.28,226.02L321.88,225.89L322.24,225.97L322.80,225.92L322.72,226.34L323.78,226.52L323.84,226.40L324.81,226.25L324.94,226.36L325.16,226.37L325.55,226.08L325.34,225.88L325.49,225.76L325.90,225.71L326.83,226.07L327.09,225.87L327.12,225.85L327.57,225.77L327.39,225.60L327.43,225.46L327.63,225.41L328.20,225.66L329.16,225.73 "/><path d="M622.68,320.34L622.67,320.04L623.99,319.93L624.34,319.82L624.55,319.59L624.52,319.39L624.86,319.05L625.67,318.65L626.25,318.14L626.28,318.11L626.42,317.85L626.12,317.54L626.24,317.43L626.88,317.48L627.36,317.35L626.98,316.65L626.55,316.48L626.97,316.04L626.91,315.89L627.68,315.69L627.97,315.30L628.60,315.14L628.19,314.74L628.26,314.72L628.84,314.59L629.31,314.09L629.69,314.05L630.37,313.16L630.84,313.00L631.00,312.68L631.52,312.54L631.73,312.30 "/><path d="M233.56,199.13L233.10,199.24L231.90,199.52L231.24,199.84L230.18,200.03L230.43,200.23L230.19,200.37L230.14,200.56L229.56,200.62L229.53,200.81L228.91,200.81L228.47,200.91L228.38,200.70L227.10,201.14L226.60,201.15L226.13,200.87L225.15,200.96L224.94,201.11L224.41,201.17L224.13,201.27L222.76,201.10L222.66,201.09L222.13,201.03L221.59,200.67L221.62,200.48L220.99,200.14L220.71,199.78L220.78,199.60L220.53,199.49L220.63,199.31L220.26,198.97L220.33,198.84L220.69,198.76L220.89,198.60L220.85,198.30L221.01,198.09L220.88,197.73L221.44,197.32L221.66,196.94 "/><path d="M271.34,213.58L271.29,213.17L271.17,213.11L270.87,212.99L270.58,212.97L269.99,212.92L269.92,212.93L269.84,212.90L269.58,212.79L269.01,212.56L268.08,212.49L268.08,212.49L268.07,212.49L267.57,212.31L266.39,212.37L265.61,212.30L264.70,212.04L263.92,212.29L263.48,212.34L263.28,212.36L262.40,212.15L261.42,212.47L261.17,212.41L261.12,212.28L261.43,212.02L261.47,211.98L261.36,211.56L261.38,211.42L261.43,211.07L261.45,210.89L261.30,210.50L260.94,210.30L259.42,210.20L258.65,209.84L258.20,209.49L257.53,209.23L257.34,209.03 "/><path d="M508.83,285.80L508.56,285.75L508.08,285.66L507.87,285.55L507.73,285.48L507.67,285.42L507.33,285.07L507.53,284.79 "/><path d="M299.80,221.18L300.29,221.00L300.60,221.09L300.71,220.97L300.95,220.97L300.93,221.22L301.12,221.24L301.31,221.27L301.56,221.40L301.82,221.21L301.77,221.07L302.08,220.92L302.70,220.83L302.71,221.13L302.94,221.01L303.49,220.70L304.08,220.62L304.76,220.72L304.90,220.96L305.37,221.09L305.95,221.05L306.14,221.34L306.47,221.29L306.93,221.43L307.13,221.68L307.53,221.70L307.77,221.89L307.91,221.88L307.99,221.88L308.10,222.04L308.05,222.12L307.81,222.49L307.96,222.61L308.11,222.71L307.93,222.90L307.86,222.97L308.20,223.16L307.93,223.33L307.92,223.33L308.21,223.75L308.54,223.90L308.87,224.05L308.85,224.19L308.82,224.46L309.12,224.74L308.69,224.98L308.67,225.16L309.45,225.86L309.35,226.04L308.96,226.11L308.86,226.39L308.82,226.49 "/><path d="M198.16,194.70L199.02,194.55L199.33,194.37L200.01,194.32L201.06,194.10L201.33,194.04 "/><path d="M622.68,320.34L622.89,320.84L623.32,321.07L623.69,321.27L624.08,321.30L624.14,321.57L625.28,322.09L626.35,322.32L626.61,322.56L628.35,322.91L628.29,323.15L628.82,323.31L629.15,323.07L629.98,322.99L630.28,323.22L630.99,323.25L631.34,323.26L631.77,323.08L632.28,323.10L633.15,322.70L633.94,322.65L636.55,322.49L638.76,321.67L638.96,321.41L639.35,321.47L639.85,321.32L640.19,320.98L640.86,320.71L641.26,320.47L641.29,320.44L641.81,320.12L642.18,319.51L642.12,319.15 "/><path d="M336.63,235.16L336.64,234.87L336.25,234.61 "/><path d="M370.71,244.65L371.28,244.86L371.49,244.94L371.73,245.48L371.65,245.66 "/><path d="M336.63,235.16L337.53,235.30L337.79,235.44L337.80,235.70L337.80,235.73L338.17,235.79L338.17,235.79L338.25,235.81L341.33,235.58L344.68,235.33L346.07,235.23L346.71,235.59L347.60,235.58L349.84,235.54L350.47,235.53L351.20,235.68 "/><path d="M365.88,244.05L365.80,243.69L366.11,243.25L366.00,243.12L366.29,242.96L366.10,242.72 "/><path d="M668.48,332.14L669.06,332.19L670.20,332.56L671.10,333.07L671.43,333.13L671.16,333.42L671.13,333.83L670.32,334.46L670.19,335.24L670.67,335.58L670.58,335.98L671.05,336.84L671.37,337.13 "/><path d="M336.63,235.16L336.02,235.33 "/><path d="M335.88,235.33L336.02,235.33 "/><path d="M336.02,235.33L336.20,235.62L336.45,235.73L337.47,235.65L337.57,235.76L337.50,235.90L337.46,235.98 "/><path d="M372.22,245.83L372.66,246.40 "/><path d="M198.16,194.70L197.62,194.76L197.15,195.08L195.97,195.10 "/><path d="M363.93,243.83L364.74,244.25L365.14,244.29L365.35,244.08L365.88,244.05 "/><path d="M235.19,205.49L235.04,205.79L234.23,206.20L233.94,206.35 "/><path d="M222.53,193.65L222.03,194.03L222.42,194.22L222.13,194.55L220.87,195.32L220.07,195.31L219.08,195.44L218.69,196.30L218.41,196.49L217.45,196.67L217.02,196.63L216.55,196.84L216.56,197.16L216.36,197.38L215.66,197.58L214.94,197.63L213.98,197.91L213.92,197.95L213.55,198.17L211.94,198.33L211.11,198.94L211.12,199.13L210.92,199.24L210.06,199.46L210.06,199.46L209.73,199.54L209.65,199.56L209.38,199.22L208.02,198.84L208.09,198.67L207.82,198.55L207.78,198.29L207.48,197.98L207.15,197.98L206.90,197.71L206.51,197.69L206.06,197.20L205.40,197.01L204.61,197.08L203.46,197.19L203.23,197.04L203.49,196.87L203.10,196.84L203.00,196.13L202.75,195.86L202.34,195.91L201.98,195.77L201.87,195.77L201.50,195.79L200.62,195.43L200.31,195.46L199.99,195.07L199.63,195.15L199.62,194.86L199.29,194.94L199.00,194.82L198.63,195.02L198.47,194.96L198.62,194.76L198.16,194.70 "/><path d="M362.77,243.67L362.44,243.55L361.45,243.46L361.23,243.39L361.17,243.14L360.55,243.24L360.05,243.15L359.34,243.29L359.18,243.24 "/><path d="M337.65,236.27L337.81,236.28L337.81,236.47L337.68,236.64L337.45,236.94L337.63,237.06L338.60,236.99L338.97,236.76L339.62,236.56L339.62,236.56L339.75,236.52L340.09,236.53L340.10,236.65L340.10,236.65L340.10,236.70L340.83,236.76L341.00,236.92L341.81,236.81L341.97,236.77L342.54,236.39L342.71,236.26L342.88,236.29L342.88,236.29L343.53,236.37L344.16,236.13L344.56,236.30L345.04,236.15L345.39,236.24L346.94,236.00L347.49,236.19L348.10,236.24L348.21,236.31L348.40,236.43L348.58,236.38L348.66,236.20L349.56,236.23L349.59,236.23L349.80,235.76L350.25,235.92L350.90,235.88L351.20,235.68 "/><path d="M271.34,213.58L270.85,213.56L270.71,213.68L270.91,214.05L270.16,214.33L269.36,214.30L269.05,214.53L268.71,214.50L268.44,214.31L268.30,214.34L268.30,214.48L268.54,214.64L268.80,214.81L268.56,215.00L268.12,215.02L267.64,215.57L267.50,215.56L267.48,215.38L267.05,215.44L267.02,215.76L266.37,216.37L265.54,216.46L265.26,216.40L265.17,216.29L265.56,215.89L264.99,215.86 "/><path d="M690.05,345.09L690.87,344.82L690.67,344.48L691.06,343.89L690.67,343.37L690.49,342.44L690.42,342.35L690.29,342.20L690.07,341.92L690.10,341.87L690.38,341.45L691.24,341.40L691.28,341.25L690.88,341.15L691.05,340.84L690.58,340.10L691.28,339.63L690.99,339.41L690.53,339.27L690.05,338.60L689.40,338.08L689.38,338.01L689.32,337.71L688.48,337.04L688.23,337.04L687.43,337.02L687.40,337.40L687.83,337.40L687.73,337.63L687.12,337.69L685.92,337.42L685.41,337.51L684.96,337.03L684.49,336.91L684.38,336.69L684.87,336.72L684.59,336.13L684.76,335.85L685.09,335.68L684.88,335.44L684.96,335.33 "/><path d="M690.05,345.09L689.95,344.86L690.11,343.46L689.67,343.21L689.53,343.12L689.24,342.73L689.20,342.68L688.49,342.65L688.23,342.32L688.16,342.30L687.84,342.24L687.76,341.90L687.18,341.24L687.38,341.08L686.92,340.78L685.93,340.61L685.75,340.81L685.07,340.82L684.99,341.02L684.45,341.32L683.85,341.38L683.47,341.29L683.10,341.06L682.67,340.97L683.05,340.69L683.43,340.66L683.56,340.40L683.00,340.11L682.96,339.67L682.60,339.32L682.52,339.03L682.17,338.86L681.27,338.81L680.75,338.55L679.08,338.86L678.53,338.78L678.46,338.99L677.70,338.78L676.14,337.24L674.78,336.41 "/><path d="M352.70,242.46L353.09,242.57L353.26,242.78 "/><path d="M355.64,243.50L356.42,243.28L356.57,243.15 "/><path d="M347.34,240.98L347.12,240.72L346.46,240.49L345.54,240.64 "/><path d="M353.26,242.78L353.50,242.95L354.35,243.03L354.45,243.28L354.02,243.30 "/><path d="M354.31,243.46L354.48,243.53L355.00,243.47 "/><path d="M746.24,362.68L742.98,362.85L742.15,362.74L740.63,362.13 "/><path d="M374.33,248.80L374.63,249.24L374.55,249.39L374.87,249.63L374.90,249.85 "/><path d="M700.35,343.54L700.84,343.88L700.77,344.10L701.22,344.42L700.93,344.91L701.44,345.18L701.42,345.37L701.73,345.55L701.52,345.89L700.70,346.25L700.52,346.59L700.50,346.62L700.65,347.10L700.44,347.49L700.13,347.55L700.03,347.82L699.78,347.84L699.60,348.01L699.81,348.21L700.25,348.09L700.17,348.61L699.78,348.59L699.70,348.99L699.44,348.90L698.96,348.99L698.71,348.89L698.56,349.14 "/><path d="M698.56,349.14L698.09,348.98L697.63,348.34L697.29,348.21L697.35,347.95L697.08,347.84L696.80,347.53L695.53,347.51L695.01,347.28L694.76,347.28L694.63,347.28L694.21,347.62L693.80,347.46L693.52,347.52L693.28,347.32L693.21,347.26L692.30,346.85L691.82,346.85L691.64,346.66L691.92,346.31L691.79,346.16L691.29,346.08L690.26,345.46L690.05,345.09 "/><path d="M350.46,239.85L350.15,240.04L350.27,240.38L350.00,240.51L348.50,240.85L348.43,241.08L349.00,241.48L348.73,241.80L349.19,241.87L349.52,242.36L349.77,242.29L350.05,242.22L351.20,242.24 "/><path d="M274.75,213.58L275.59,213.55L275.98,213.53L276.31,213.61L276.37,213.78L276.09,213.94L275.34,214.04L275.26,214.64L274.99,214.79L274.78,214.76L274.38,214.71L274.19,214.81L274.29,215.06L274.20,215.22L273.94,215.70L273.97,215.79L274.27,216.97L274.62,217.07L275.88,217.42L276.17,217.91L275.80,218.15L275.78,218.40L275.78,218.48L275.97,218.52L276.14,218.56L276.42,218.61L276.69,218.81L276.74,218.98L276.79,219.17L276.22,219.85L275.93,219.85L275.85,219.99L276.34,220.95 "/><path d="M262.30,216.90L263.30,216.40 "/><path d="M346.42,241.20L345.22,241.27 "/><path d="M233.94,206.35L234.03,206.52L234.62,207.63L234.71,207.65L235.22,207.76L235.77,207.77L236.29,207.68L236.41,207.59L236.57,207.48L236.92,207.47L237.18,207.32L237.76,207.50L238.53,207.43L239.21,207.53L240.41,207.44L240.88,207.53L241.50,207.90L242.10,207.97L242.56,208.32L242.74,208.79L243.30,209.00L243.43,209.20L243.49,209.31L243.26,209.46L242.96,209.44L243.20,210.15L242.98,210.51L242.90,210.64L243.15,211.05L243.12,211.08L242.97,211.30L242.94,211.34L242.53,211.35L242.33,211.35L242.07,211.25 "/><path d="M365.88,244.05L366.22,244.03L366.93,244.20L367.36,244.53L367.19,244.70L367.10,244.78L367.45,245.04L367.45,245.29L367.15,245.52L366.91,245.57L366.75,245.43L366.87,245.22L366.65,245.12L366.45,245.46L366.53,246.11L366.21,246.56L366.93,247.43L367.96,247.74L368.51,248.39 "/><path d="M750.63,362.99L751.41,363.34L752.70,363.38L753.37,363.24L754.11,363.40L755.89,363.45L757.00,363.76L757.40,364.03L758.14,364.14L759.41,364.71L759.84,364.81L760.31,364.93L760.50,365.07L760.61,365.47L761.34,365.78L762.47,366.27L762.58,366.42L762.37,366.68L762.04,367.08L762.14,367.70L761.04,368.95L761.75,369.05L762.37,369.34L763.59,369.51L764.34,369.91L765.42,369.95L765.75,370.23L766.59,370.44L767.24,370.84L767.51,371.00L767.69,371.11L768.10,371.36L768.11,371.60L768.43,371.80L768.54,371.87L768.57,371.95L768.69,372.25 "/><path d="M351.34,239.98L352.86,239.83L353.03,239.71L352.82,239.38L352.45,239.24L351.16,239.07L349.22,239.60L348.40,239.56L347.49,240.03L346.78,239.99L345.31,239.67L343.13,239.80L342.95,239.97L343.41,240.35L343.41,240.37L343.56,240.72L343.95,240.89L344.07,241.36L344.22,241.48L344.52,241.37 "/><path d="M499.37,282.52L499.08,283.08L499.46,284.01L498.93,284.80L498.30,284.95L497.84,285.26L496.74,285.58L496.41,285.92L495.66,286.08L495.65,286.08L494.98,286.36L494.59,286.52L494.58,286.53L494.48,286.56L494.37,286.85 "/><path d="M263.55,216.91L263.40,217.23L263.47,217.74L264.19,218.05L264.21,218.11L264.38,218.55L264.94,218.47L264.90,218.65L264.98,218.70L265.07,218.77 "/><path d="M248.91,214.18L249.43,214.10L249.70,213.83L251.42,213.98L252.20,213.56L252.44,213.52L252.83,213.58L253.25,213.44L253.54,213.46L253.91,213.60L254.80,213.27L254.93,213.25L255.23,213.21L255.79,213.21L256.13,213.41L256.51,213.09L257.13,213.00L257.34,212.82L258.17,212.81L258.58,212.33L258.24,211.85L258.24,211.69L258.26,211.40L258.21,211.35L257.99,211.13L256.50,210.58L256.17,209.83 "/><path d="M250.69,209.55L251.16,209.76L250.77,210.10L250.32,210.18L249.47,210.67L249.20,210.40L248.35,210.55L248.10,210.77L248.15,210.97L247.79,211.25L248.22,211.56L248.12,211.83L248.47,211.99L248.34,212.12L247.97,212.18L247.81,212.82L247.85,212.92L247.92,213.11L247.66,213.50L247.37,213.62L247.68,213.79L247.90,213.91L248.60,213.91L248.91,214.18 "/><path d="M622.68,320.34L622.22,320.75L621.44,320.84L621.40,320.87L621.02,321.12L620.13,321.20L619.62,321.45L619.65,321.92L618.64,322.08L617.50,322.49L616.73,322.49L615.99,322.69L615.34,322.69L615.00,322.79L614.62,323.22L613.98,323.16L613.78,322.99L614.37,322.88L614.42,322.78L613.31,322.68L612.53,322.85L612.32,322.89L612.17,323.05L611.95,323.07L611.74,322.72L611.32,322.67L609.86,322.47L609.64,322.38L609.30,322.24L608.39,322.42 "/><path d="M191.93,197.60L192.13,197.83L192.30,197.85L192.74,197.88L192.89,198.01L193.03,198.01L193.27,197.80L193.78,197.76L193.93,197.94L194.40,197.96L194.67,198.44L194.91,198.55L194.78,198.71L194.93,198.83 "/><path d="M608.39,322.42L607.93,322.32L607.83,322.30L607.65,322.26L607.40,322.21L607.20,322.09L607.09,322.02L607.08,322.00L606.88,321.45L607.37,320.92L607.50,320.85L607.99,320.57L608.96,320.42L609.51,320.17L610.01,320.09L610.31,319.91L610.91,319.57L611.55,319.54L612.12,319.19L613.02,319.09L613.06,319.10L613.11,319.10L613.92,319.19L614.10,319.21L614.47,319.24L615.50,319.17L615.61,319.01L615.79,318.75L615.58,318.37L615.60,318.31L615.66,318.19L615.42,317.96L615.43,317.94L616.03,317.07L616.03,317.01L616.04,316.95L616.04,316.68L616.34,316.39L616.60,316.31L617.10,316.14L618.41,314.65L618.72,314.54L619.39,314.30L620.32,313.97L620.60,313.63L620.65,313.56L620.62,313.31L620.58,313.00 "/><path d="M313.66,233.50L313.30,233.51 "/><path d="M309.27,226.95L310.01,228.22L310.07,228.32L310.45,228.49L310.34,228.95L310.52,229.18L312.02,229.39L312.36,229.29L312.59,229.47L312.60,229.47L313.08,229.44L312.86,229.83L312.34,229.77L312.07,230.15L311.39,230.48L311.29,230.67L311.60,230.90L312.81,230.91L313.23,231.02L313.63,231.33L313.66,231.54L313.76,231.56L314.07,231.63L314.26,231.88L313.90,232.41L314.15,232.79L313.30,233.51 "/><path d="M331.61,233.03L331.32,233.12L331.32,233.12L331.25,233.14L331.17,233.16L331.11,233.15L330.35,233.05L330.13,233.36L330.12,233.37L330.09,233.42L329.53,233.50L329.21,233.74L328.82,233.79L328.76,233.80L328.11,233.62L327.95,233.34L326.68,232.75L326.57,232.31L325.91,232.38L325.78,232.39L325.60,232.55L325.36,232.42L324.99,232.22L323.96,232.17L323.65,232.15L323.16,232.39L322.59,232.46L322.09,232.50L322.07,232.50L321.64,232.82L320.82,232.91L320.64,232.93L320.00,233.36L319.48,233.34L318.80,233.17L317.42,233.73L317.20,234.23L316.34,234.36L315.97,234.53L315.96,234.46L315.94,234.29 "/><path d="M313.30,233.51L312.79,233.60 "/><path d="M412.97,263.33L412.70,263.03L413.08,262.67L412.94,262.61L412.89,262.58L412.92,262.48L413.71,262.28L413.72,262.04L414.57,261.70L414.97,261.25L415.24,261.18L415.04,260.67L415.37,260.16L415.26,259.58L415.91,259.24 "/><path d="M313.89,234.02L314.27,234.07 "/><path d="M344.32,243.07L344.78,242.66L345.63,242.53L345.87,242.74L347.85,242.61L348.57,242.70L348.65,242.83L348.88,242.77L348.94,242.58L349.37,242.70L349.46,242.73 "/><path d="M194.93,198.83L195.76,198.83L196.06,198.91L196.99,198.82L197.36,199.00L199.01,198.83L199.34,198.86L199.27,199.00L199.44,199.08L199.98,199.02L200.28,199.10L201.09,199.53L201.15,200.07L200.65,200.51L200.68,201.04L200.69,201.20L200.82,201.32 "/><path d="M334.71,233.30L334.60,233.49L334.14,233.62L333.44,233.69L332.98,233.73L332.87,233.74L332.14,233.81L332.00,234.21L331.81,234.29L331.38,234.26L331.08,234.58L330.65,234.70L330.46,235.30L329.82,235.59L329.82,235.59L329.54,235.65L329.12,235.57L328.22,235.82L327.94,236.02L327.97,236.43L328.52,236.68L328.78,237.08L329.26,237.30L329.28,237.47L328.79,238.00L328.63,238.05L327.83,238.32L327.73,238.45L328.36,238.61L328.60,238.86 "/><path d="M344.32,243.07L343.49,242.87L343.34,243.10L343.01,243.14L342.57,243.05L341.76,242.58 "/><path d="M366.36,250.11L366.15,249.87L366.47,249.42 "/><path d="M608.39,322.42L608.03,322.50L607.86,322.53L607.50,322.93L606.93,323.17L606.48,322.86L606.47,322.85L606.38,322.84L605.07,322.66L603.88,322.71 "/><path d="M366.36,250.11L367.04,250.62 "/><path d="M357.88,247.71L357.16,247.54L356.20,247.48 "/><path d="M361.70,249.25L362.08,249.06L362.96,249.08L363.21,249.20L363.65,249.22L364.63,249.87L364.72,250.04L365.02,250.15L366.36,250.11 "/><path d="M407.11,262.39L407.19,262.67L407.59,262.97L408.27,263.00L408.55,262.79L408.92,262.76L409.33,262.36L409.20,262.11L409.36,261.93L408.98,261.76L408.86,261.43L409.07,261.20L409.45,260.79L409.49,260.45L409.88,260.07L411.00,259.56L411.58,259.50L413.05,257.86L413.22,257.48L413.24,257.45L413.94,256.76L414.40,256.50 "/><path d="M359.31,248.49L359.64,248.80L360.17,249.02L360.59,249.01L360.85,249.26 "/><path d="M341.76,242.58L341.71,242.35L341.94,242.13L341.36,242.04L341.31,241.81L340.91,241.52L340.64,241.49L340.17,241.63L339.70,241.57L339.32,241.86L339.10,241.88L338.70,241.69L337.76,241.54L337.56,241.58L337.38,241.39L336.88,241.50L335.91,241.01L335.09,240.86L334.67,240.69L334.73,240.32L334.47,240.22L333.97,240.35L333.90,240.21L334.09,239.98L333.86,239.88L333.03,239.91L332.68,239.76L332.47,239.78L332.03,239.82L331.63,239.67L331.24,239.80L330.79,239.61L330.17,239.90L329.77,240.09L329.45,240.15L329.37,239.92L329.72,239.55L329.15,239.54L328.48,239.70L328.26,239.37L328.92,239.22L328.97,239.08L328.60,238.86 "/><path d="M711.90,347.94L711.67,348.10L711.76,348.34L711.15,348.63L710.40,348.77L710.27,348.80L709.87,348.75L709.39,348.51L708.67,348.61L708.35,348.45L707.94,348.57L707.63,348.52L707.08,348.43L706.50,348.53L706.33,348.85L705.75,349.01L705.59,349.69L705.30,350.08L705.19,350.22L705.37,350.47L705.15,350.65L704.76,350.49L703.64,350.63L703.93,350.97L703.70,351.21L704.33,351.65L704.44,351.73L704.53,352.35L704.91,352.61L705.03,353.15L704.87,353.37L705.18,353.76L704.88,353.86L705.09,354.14L704.97,354.39L703.70,354.41L703.61,354.50L703.89,354.85L703.54,354.93 "/><path d="M354.95,247.56L354.92,247.18L354.77,247.16L354.38,247.43L353.86,247.51 "/><path d="M344.32,243.07L344.88,243.22L345.49,243.12L345.60,243.41L345.72,243.43L346.48,243.56L346.64,243.69L347.64,243.58L348.20,244.09L347.97,244.46L348.04,244.61L348.69,244.59L348.98,244.79L348.77,245.11L349.57,245.57L349.79,245.83L350.46,245.68L350.84,245.82L351.37,246.07L351.51,246.56L352.18,246.55L352.43,246.85L352.99,246.95L353.26,246.99L353.86,247.51 "/><path d="M698.56,349.14L698.67,349.73L699.93,350.11L700.29,350.34L700.23,350.84L700.44,351.50L700.84,351.76L700.81,352.06L700.31,352.64L700.61,353.17L700.28,353.64L700.34,353.89L700.87,353.88L701.37,354.13L701.78,354.17L702.26,354.62L703.00,354.65L703.54,354.93 "/><path d="M389.16,248.16L388.47,248.24L387.57,249.05L386.18,249.69L385.89,250.09L386.58,251.87L387.39,252.86L387.39,253.15L386.28,254.16L385.85,254.38L385.94,254.61L385.66,254.86L385.72,255.32L385.83,256.04L385.77,256.03L385.40,255.97L385.46,256.13L385.02,256.49L384.93,257.09 "/><path d="M665.64,341.48L666.31,341.49L666.62,341.60L666.88,341.84L667.06,342.37L667.79,342.70L668.05,343.12L667.53,343.47L668.37,344.26 "/><path d="M309.07,233.36L308.95,233.21L308.33,233.11L308.05,233.16L307.19,233.68L306.43,233.75L305.89,233.47L304.91,233.44L304.69,233.34L304.97,232.95L304.71,232.38L304.87,232.21L305.05,232.02L305.88,231.84L305.91,231.84L304.68,231.50L304.31,231.27L304.26,231.24L303.63,231.42L302.39,231.43L302.08,231.14 "/><path d="M384.65,243.45L384.88,243.78L384.76,244.07L385.04,245.11L385.02,245.38L385.01,245.46L384.44,245.96L384.58,246.12L384.64,246.19L384.54,246.22L384.09,246.38L383.99,246.50L383.96,246.51L383.92,246.54L383.59,246.55L383.37,246.92L382.49,247.09L382.21,247.40L381.67,247.35L380.73,247.59L380.52,247.78L380.69,247.95L380.20,248.62L380.75,248.99L380.77,249.32L380.72,249.40L380.39,249.99L380.33,250.45L379.82,250.80L379.84,251.04L379.85,251.15L379.60,251.24L379.37,251.33L379.26,251.53L379.17,251.68L379.28,252.72L379.00,253.11L379.13,253.51L378.79,253.60L378.76,253.72L379.06,253.74L379.06,253.74L379.75,254.32L380.30,254.58L380.81,255.42L381.72,255.93L382.01,256.07L383.70,256.86L383.94,256.88L384.17,256.69L384.47,256.66L384.64,257.05L384.93,257.09 "/><path d="M300.03,231.98L299.83,231.71L299.17,231.71L298.47,231.20L296.24,231.32L295.81,231.17 "/><path d="M353.86,247.51L353.65,247.94L353.76,248.21L353.65,248.45 "/><path d="M703.54,354.93L703.40,355.33L703.53,355.65L702.99,356.42 "/><path d="M243.29,216.44L243.31,216.10L243.69,215.80L244.16,215.63L244.63,215.76L246.21,215.88L246.66,216.07L247.01,215.90L247.77,215.82L247.75,215.64L248.41,215.72L248.70,215.85L248.93,215.59L248.60,215.32L248.59,215.27L248.56,215.17L248.50,214.99L248.57,214.87L248.61,214.79L248.35,214.46L248.91,214.18 "/><path d="M385.94,258.52L385.75,258.33L385.71,258.28L385.25,258.05L385.22,258.04L385.10,257.98L385.13,257.86L385.55,257.64L385.58,257.47L385.15,257.43L384.91,257.24L384.93,257.09 "/><path d="M265.07,218.77L264.97,218.79L264.48,218.91L264.26,219.05L264.37,219.29L264.06,219.40L263.86,219.31L263.79,219.28L262.78,219.61L261.74,220.12L259.93,220.03L259.77,219.87L259.68,219.79L259.36,219.74L259.11,219.79L258.93,219.83L258.55,220.17L258.14,220.15L257.99,220.25L257.89,220.58L257.56,220.86L257.01,221.02L256.67,220.96 "/><path d="M352.97,248.63L352.55,248.83L352.38,249.08L352.39,249.12L352.54,249.38L353.27,249.29 "/><path d="M669.16,345.78L669.07,346.19L669.53,346.70L669.54,347.38L669.54,347.42 "/><path d="M194.93,198.83L195.35,199.01L194.88,199.55L195.08,199.96L194.04,200.70L193.56,200.79L193.25,201.09L193.34,201.46L193.63,201.59L193.61,201.77L194.05,201.78L193.84,202.01L194.21,202.36L194.06,202.80L194.56,202.89L195.47,202.83L195.79,203.01L196.41,202.92L196.56,202.69L196.82,202.58L197.15,202.58L197.08,202.89L197.17,202.90L197.54,202.93L197.69,203.39L198.15,203.42L198.32,203.56L198.44,203.57L198.74,203.59L198.92,203.70L199.37,203.73L199.80,204.05L199.92,204.37L199.80,204.65L198.65,204.90L198.51,204.83 "/><path d="M225.83,205.55L226.23,205.34L226.19,205.14L226.91,205.20L227.16,205.01L227.08,204.81L226.54,204.57L226.49,204.44L225.71,204.45L225.43,204.22L225.43,204.22L225.55,204.06L225.87,203.62L225.10,203.64L224.86,203.79L224.18,203.89L223.86,203.95L223.28,204.39L223.37,204.51L222.81,204.57L222.74,204.59L221.93,204.83L220.91,204.80L219.86,204.97L219.48,204.77L219.29,204.77L218.70,204.79L218.41,204.66L218.11,204.33L217.81,204.35L217.57,204.56L217.05,204.61L216.93,204.83L216.77,204.85L216.45,204.70L216.64,204.45L216.53,204.31L216.11,204.29L215.77,203.85L215.17,203.92L215.27,204.18L214.92,204.48L214.30,204.20L214.14,203.97L213.72,203.83L213.60,203.57L213.72,203.28L213.16,203.31L212.43,202.33L212.19,202.40L211.63,202.57L210.95,202.38L210.79,202.33L210.67,202.45L210.81,202.64L210.67,202.82L210.75,202.98L210.76,202.99L210.75,202.99L210.33,203.11L210.28,203.23L210.24,203.33L210.34,203.53L210.39,203.63L210.19,203.71L210.51,204.41L209.61,204.39L209.27,204.49L209.16,204.68L209.29,204.88L208.63,205.47L207.42,205.76L206.77,206.05L206.46,206.38L206.17,207.14L206.13,207.24 "/><path d="M296.18,233.60L296.61,233.60L296.88,233.43L297.19,233.44 "/><path d="M297.65,232.62L297.61,232.65L297.34,232.89L296.53,233.13L296.18,233.60 "/><path d="M294.58,230.80L293.71,230.86L292.75,230.92L292.43,230.87L292.27,230.83L292.26,230.83L292.16,230.74L292.04,230.64L291.16,230.60L291.07,230.69L290.90,230.84L289.66,230.88L289.43,230.89L289.15,230.97L287.52,230.79L286.87,230.84L286.78,230.85 "/><path d="M286.78,230.85L286.58,230.72L286.56,230.70L286.34,230.55L286.32,230.40L287.29,229.65L287.27,229.16L288.20,228.03L289.50,227.54L289.72,227.50L290.55,227.37L290.78,227.33L291.39,227.15L290.88,226.48L290.72,226.42L289.78,226.13L289.75,226.12L289.41,226.02L289.80,225.75L289.66,225.46L289.72,225.30L290.07,224.37L289.88,224.16L289.47,224.10L288.51,223.59L288.38,222.90L288.24,222.76L287.92,222.42L287.93,221.08L287.57,220.90L287.16,220.38L287.40,219.54L287.65,219.45L288.26,219.53 "/><path d="M280.49,229.03L279.98,228.46L280.07,227.95L279.89,227.76 "/><path d="M603.89,327.51L604.10,327.10L604.05,326.74L604.38,326.14L604.33,326.02L604.24,325.82L604.76,325.23L605.33,324.58L605.27,324.39L605.17,324.09L605.56,323.73L605.67,323.71L606.00,323.67L606.39,323.61L606.72,323.57L606.94,323.50L608.06,323.17L608.20,323.00L608.38,322.78L608.38,322.65L608.39,322.42 "/><path d="M603.89,327.51L603.37,327.38L603.21,327.35L602.75,327.06L602.43,326.38L602.26,326.28L601.36,325.76L601.29,325.49 "/><path d="M314.20,239.45L314.26,239.32L313.86,239.03L313.94,238.98L314.21,238.78L314.86,238.61L315.10,238.30L315.28,238.25 "/><path d="M671.01,348.89L670.65,348.71 "/><path d="M320.66,241.51L321.11,241.38 "/><path d="M327.99,243.70L328.30,243.58L328.76,243.56L328.78,243.55L329.22,243.37L329.77,243.37L330.02,243.51L330.60,243.48L331.17,243.61L331.35,243.74L331.72,244.02L333.71,244.38L333.94,244.56L334.33,245.34 "/><path d="M170.01,197.93L169.47,197.40L168.93,197.14L168.59,196.66 "/><path d="M280.31,230.42L280.23,230.22L280.30,230.15L280.55,229.95 "/><path d="M283.98,231.54L284.51,231.19L284.91,231.10L285.44,231.29L285.95,231.21L286.21,231.02L286.21,231.02L286.78,230.85 "/><path d="M672.05,339.15L672.32,339.50L672.12,340.02L672.51,340.70L672.41,341.16L672.59,341.45L673.02,341.75L673.14,342.24L674.74,342.95L675.13,344.01L675.39,344.29L675.29,344.52L674.92,344.74L674.99,345.10L674.69,345.39L674.99,345.79L675.57,346.13L676.47,346.18L677.03,346.30L677.80,346.47L678.31,346.78L678.81,347.61L680.27,348.16L680.58,348.39L680.82,348.38L680.96,348.01L681.27,348.08L681.79,348.51L682.30,348.50L682.80,348.49L683.11,348.63L683.32,348.96L683.40,349.08L683.69,349.25L683.39,349.56L683.64,349.83L685.24,350.06L685.57,350.37L685.90,350.51L686.18,350.63L685.75,350.70L685.82,350.85L685.97,350.92L686.90,351.36L686.75,351.49L686.79,351.53L687.00,351.75L686.98,351.88L686.95,352.04L687.18,352.25L687.32,352.83L687.54,353.07L687.80,353.03L688.23,352.72L688.91,352.60L689.04,352.63L689.21,352.66L689.00,352.89L688.53,353.41L688.99,353.76L689.16,354.14L689.01,354.27L688.93,354.34L689.02,354.50L689.07,354.60L689.93,354.67L689.97,354.78L689.49,354.89L689.83,355.27L690.23,355.25L690.50,355.61L691.03,355.66L691.12,355.95L691.63,355.92L691.76,355.91L691.75,356.13L691.74,356.36L692.02,356.63L692.66,356.81L692.67,356.58L693.49,356.67L693.82,356.99L694.93,357.10L695.13,357.10L695.29,356.66L695.61,356.72L695.59,356.87L695.93,357.01L696.04,356.72L696.36,356.77L696.68,357.07L696.85,357.00L696.77,356.61L697.38,356.71L697.60,356.85L697.38,357.12L697.91,357.25L698.14,357.46L698.60,357.10L698.39,356.91L698.72,356.60L699.00,356.66L699.10,356.89L699.45,356.88L699.71,356.87L699.47,356.66L699.60,356.50L699.72,356.35L700.15,356.37L700.23,356.70L700.91,356.49L701.27,356.57L701.20,356.71L701.45,356.89L701.83,356.85L702.05,356.55L702.29,356.58L702.39,356.77L702.72,356.63L702.75,356.42L702.99,356.42 "/><path d="M233.94,206.35L233.16,206.54L233.13,206.55L232.89,206.61L232.45,206.71L232.39,206.79L231.87,207.38L231.99,207.65L232.19,208.10L231.97,208.46L231.62,208.70L230.65,208.85L230.45,208.97L230.36,209.03L230.33,209.18L230.31,209.31L230.24,209.33L229.83,209.47L229.51,210.10L229.47,210.17L229.53,210.21L229.90,210.49L229.99,210.56L230.02,210.78L229.87,210.95L229.32,211.09L229.17,211.32L229.29,211.51L229.80,211.51L229.84,211.73L229.64,211.74L229.50,211.75L229.09,211.90L229.03,212.08L228.49,212.29L228.33,212.51L228.62,212.61L228.70,212.76L228.35,213.03L227.75,213.15L227.64,213.63L227.37,213.81L227.07,213.87L226.58,213.95L226.22,214.30L225.69,214.32L225.40,214.44 "/><path d="M225.40,214.44L224.91,214.24L224.90,214.24 "/><path d="M274.74,227.38L273.81,227.51L273.06,227.52L272.91,227.74L272.66,227.76L272.26,227.78L272.18,227.79L271.70,227.61L271.02,227.75L270.94,227.77L269.19,227.31L268.80,227.03L268.49,226.97 "/><path d="M205.37,205.01L204.55,205.24L203.90,205.22L202.63,205.36L202.55,205.37L202.46,205.47L202.14,205.83L202.04,205.88L201.44,206.19L201.49,206.39L200.99,206.67L200.66,206.71L200.12,207.14L199.71,207.32 "/><path d="M743.08,373.38L744.55,373.75L745.47,373.56L746.29,373.63L746.66,373.78L747.56,373.31L748.02,373.18L748.40,373.07L749.09,372.91L749.39,372.97L749.50,372.99L750.01,372.89L750.26,372.94L750.63,373.00L750.85,372.93L751.33,373.14L752.01,373.28L752.17,373.31L752.22,373.35L752.35,373.46L753.48,374.43L753.79,375.15L753.84,375.82L753.85,375.96L753.92,376.73L754.11,377.13 "/><path d="M338.66,248.31L338.90,248.10L339.31,248.07L339.37,248.26L339.80,248.17L339.89,248.22L340.07,248.32L340.36,248.25 "/><path d="M267.06,226.89L266.33,226.69L265.80,226.65L265.63,226.74 "/><path d="M311.35,240.30L311.93,240.20L312.40,239.77L312.71,239.76L313.25,239.73L313.61,240.00L313.87,240.04L314.27,239.81 "/><path d="M341.76,242.58L341.55,242.73L341.02,243.10L340.67,243.23L339.68,243.36L339.19,243.67L338.64,243.79L337.78,244.25L337.58,244.51L337.26,244.41L336.89,244.69L336.78,244.74L336.05,245.07L335.86,245.31L336.02,245.67L336.35,245.60L336.60,245.35L337.17,245.24L337.62,244.97L337.62,244.96L337.75,244.89L338.13,244.77L338.27,244.80L338.25,245.13L338.23,245.70L337.91,246.06L337.42,246.62L337.35,246.97L337.59,247.46L337.63,247.55L338.09,247.75L338.14,248.27L338.66,248.31 "/><path d="M714.33,348.65L713.83,348.82L714.15,349.16L714.07,349.34L713.66,349.43L713.41,349.71L713.34,350.04L713.64,350.32L714.02,351.20L714.15,351.73L713.88,351.98L714.20,352.23L714.26,352.86L714.83,353.56L714.30,353.84L714.61,354.36L714.99,354.62L715.60,354.75L716.56,355.55L716.82,355.86L716.72,356.08L716.90,356.16L717.15,356.30L717.29,356.82L717.34,357.03L717.84,357.49L717.81,357.78L716.91,358.19L715.90,358.08L715.26,358.17L715.02,358.05L714.89,358.19L714.44,358.25L714.36,358.53L714.25,358.89L713.78,358.77L713.19,359.09L713.17,359.10L713.34,359.32L712.73,359.34L712.38,359.86L712.36,360.14L712.04,360.30L711.90,360.62L711.77,360.68L711.06,360.98L710.78,361.29L710.64,361.44L710.51,361.58L710.23,361.88L710.26,362.18L709.93,362.45L709.66,362.68L709.63,362.71L708.91,363.09L708.88,363.10 "/><path d="M702.99,356.42L703.25,356.51L703.65,356.39L703.97,356.52L703.95,356.80L703.99,356.81L704.33,356.89L705.62,358.77L706.05,359.38L706.64,359.43L706.69,359.43L707.13,359.47L707.35,359.74L707.14,360.09L707.39,360.77L707.25,361.01L707.26,361.03L707.48,361.66L707.50,361.66L708.12,361.59L708.13,361.67L708.21,362.13L708.36,362.23L708.76,362.52L708.87,363.08L708.88,363.10 "/><path d="M259.09,225.21L258.68,225.35L258.16,224.67L258.62,224.34L258.34,224.04L258.61,223.82L258.28,223.49L258.36,223.31L258.90,223.17L259.33,222.91L260.19,223.04L260.46,223.17L261.04,223.45L261.78,223.56L262.68,224.02L262.85,223.97L262.91,223.96L262.91,223.93L262.91,223.89L262.91,223.25L262.27,222.27L262.48,222.27L263.25,222.28L263.71,222.51L263.91,222.48L263.89,222.21L264.38,222.06L264.43,221.83L263.87,221.53L263.85,221.16L264.29,221.03L264.44,220.86L264.29,220.57L264.49,220.36L264.44,220.12L265.29,219.72L265.70,219.73L265.83,219.57L265.42,219.29L265.32,218.98L265.07,218.77 "/><path d="M339.75,249.33L338.66,248.31 "/><path d="M670.63,351.20L670.25,350.62L669.93,350.50L670.02,350.11L670.56,350.06L671.04,349.81 "/><path d="M243.29,216.44L243.98,216.51L244.41,216.82L244.95,216.85L245.15,217.11L245.80,217.31L246.08,217.54L246.93,217.51L247.97,217.95L247.91,218.08L247.75,218.41L247.58,218.75L247.89,219.07L248.41,219.18L248.65,219.65L248.97,219.82L248.82,220.09L248.96,220.43L249.42,220.54L250.16,220.43L250.72,220.55L251.20,220.76L251.48,220.88L251.55,221.24L252.44,221.61L252.35,221.75L253.78,222.85L254.41,223.17L255.05,224.07L255.07,224.39 "/><path d="M384.05,262.14L383.80,262.18L383.33,262.25L383.24,262.26L383.12,262.07L382.49,262.15L382.53,262.41L381.96,262.62L381.73,262.11L381.39,261.98L381.30,261.94L381.39,261.71L380.89,261.67L380.64,261.83L379.90,261.71L379.72,261.08L379.13,260.78L379.09,260.76L378.94,260.45L377.93,259.60L377.77,259.06L377.25,258.82L376.42,258.65L376.04,258.35L375.94,258.27L375.93,258.26L375.63,258.02L375.25,257.47L375.63,256.97L375.43,256.37L375.33,256.26L375.11,256.01L375.01,255.97L374.32,255.66L374.02,255.31L374.01,255.10L374.51,254.99L374.54,254.67L373.99,253.46L374.08,253.12L374.08,253.12L374.15,252.85L373.75,252.55L374.02,251.57L373.44,251.28L373.36,251.23L373.36,250.76L373.36,250.49L374.14,250.53L374.30,250.42 "/><path d="M308.19,240.61L308.37,240.51L308.74,240.71 "/><path d="M279.88,230.60L279.10,230.72L278.85,230.76L278.10,230.65L277.08,230.73L276.52,230.77L275.87,230.73L275.38,231.01L274.26,230.96 "/><path d="M309.32,241.07L310.11,241.46L310.70,241.44L310.59,241.81 "/><path d="M226.50,217.17L226.84,217.07L227.13,216.98L227.41,217.02L227.73,217.41L228.17,217.30L228.27,217.25L229.05,216.84L229.40,216.85L229.64,217.12L230.03,217.05L230.28,216.74L231.39,216.69L231.38,217.02L231.54,217.08L232.13,216.97L232.32,216.98L233.48,217.00L233.70,216.92L233.88,216.85L234.30,216.94L234.75,217.26L235.29,217.14L235.58,217.25L236.07,217.23L236.41,217.55L237.09,217.74L237.28,217.79L238.24,217.87L238.36,217.78L238.25,217.63L237.72,217.36L237.76,217.18L238.43,217.19L238.60,217.05L238.92,217.04L239.07,216.79L240.36,216.64L241.29,216.34L241.45,216.22L243.29,216.44 "/><path d="M226.50,217.17L226.53,216.88L226.36,216.80L225.82,216.89L225.71,216.72L226.04,216.63L226.10,216.51L225.87,216.26L225.24,216.28L224.96,216.20L224.73,216.14L224.56,215.97L224.62,215.78L224.72,215.44L224.96,215.20L224.70,214.89L224.92,214.64L225.37,214.61L225.40,214.44 "/><path d="M307.15,240.95L307.55,240.70 "/><path d="M763.00,382.74L762.43,382.67L762.24,382.39L761.74,382.21L761.64,382.07L761.71,381.92L762.02,381.94L762.12,381.66L762.39,381.59L762.41,381.04L762.01,380.69L762.09,380.31L762.38,380.27L762.74,379.90L762.46,378.02L762.57,377.73L761.55,376.55L760.78,376.44L760.38,376.33L758.92,375.89L758.69,375.83L757.40,376.23L757.23,376.65L756.89,376.81L756.60,376.72L756.20,376.36L755.99,376.34L755.37,376.65L754.62,376.68L754.55,376.75L754.11,377.13 "/><path d="M306.41,241.03L306.29,241.21 "/><path d="M296.18,233.60L296.11,233.73L296.31,234.07L295.91,234.43L295.60,234.52L294.96,234.35L294.20,234.32L293.77,234.54L293.56,234.73L293.57,235.03L292.93,235.46L292.73,235.89L292.21,236.44L292.39,236.62L291.98,236.87L291.66,236.90 "/><path d="M291.66,236.90L291.58,236.59 "/><path d="M361.40,257.98L360.26,257.98L359.80,257.71L359.21,256.74L359.31,256.14L359.95,255.26L360.55,255.18L361.05,254.52L360.86,254.31L361.08,254.00 "/><path d="M226.50,217.17L226.49,217.29L226.89,217.28L227.03,217.38L226.73,217.74L227.37,217.98L227.83,218.28L227.83,218.54L228.24,218.95 "/><path d="M671.81,352.81L671.86,353.02L672.40,353.39L672.41,353.70L671.89,354.14L672.02,354.29L671.81,354.51 "/><path d="M764.05,384.31L763.09,384.21L762.98,384.11 "/><path d="M361.49,258.95L361.19,258.37L361.40,257.98 "/><path d="M671.81,354.51L671.11,354.12L670.12,354.06L669.83,353.99L669.37,353.87L667.80,353.88L667.63,353.76L667.33,353.54L667.36,353.10L666.86,353.04L666.47,352.80L666.18,352.30L666.37,352.00L666.25,351.84L665.61,351.73L665.35,351.45L664.73,351.44L664.45,351.22L664.40,350.84L662.88,350.15L662.75,350.09L661.52,349.87L661.46,349.84L661.10,349.61L660.63,349.31L659.98,349.26L659.63,348.85L659.88,348.54L659.37,347.86L659.41,347.30L659.70,346.82L659.20,346.08L659.36,345.83L659.48,345.82L659.80,345.78L660.24,345.14L660.79,345.04L660.95,344.81L660.70,344.26L659.24,342.90L659.53,342.52L659.88,342.06L660.88,341.82L660.66,341.56L660.03,341.29L659.75,340.86L659.28,340.58L659.30,340.15L658.99,340.04L659.33,339.73L659.28,339.61L658.88,339.42L658.68,338.97L657.29,338.21L657.39,337.96L656.93,337.93L656.71,337.56L656.68,337.11L655.83,336.42L655.63,336.09L655.92,335.61L656.74,334.26L657.37,332.60L657.32,331.90L657.22,331.66L656.36,329.73L656.58,329.55L656.25,328.69L656.56,327.99L656.09,327.23L656.00,327.20L654.75,326.77L654.25,326.42L653.64,325.69L652.74,325.08L651.79,324.62L649.62,324.05L648.66,323.88L647.22,323.83L646.93,323.91L646.08,323.82L644.57,324.10L644.87,324.30L645.34,324.29L645.84,324.58 "/><path d="M753.13,381.45L753.27,380.94L753.78,380.22L753.97,380.16 "/><path d="M189.16,208.33L189.73,208.39L189.91,208.24L189.96,208.24L190.47,208.21L191.39,208.41L192.47,208.29L192.80,208.32L192.95,208.12L193.34,207.98L194.19,207.29L194.28,207.22L194.49,206.90L194.98,206.66L195.02,206.35L194.62,206.06L194.67,205.89 "/><path d="M221.73,214.71L221.31,214.88L221.84,215.60L221.24,216.14L220.77,216.08L220.20,216.45L220.67,216.71L221.23,216.79L220.45,217.03L220.05,217.02L219.40,217.17 "/><path d="M295.12,239.65L295.77,239.42L296.38,238.89L297.17,238.69L297.71,238.17L298.12,238.32L298.09,238.50L298.24,238.56L298.61,238.44L298.67,238.44L298.79,238.45L299.45,238.53L299.56,238.27L299.59,238.19L299.88,238.19L300.02,238.42L300.06,238.49L300.28,238.41L300.93,238.14L301.75,237.49L302.90,237.61L303.11,237.54L303.29,237.22L303.49,237.13L303.80,237.19L304.23,237.63L304.54,237.61L304.62,237.56L305.10,237.26L305.71,237.28L306.17,236.73L307.03,236.45L307.28,236.36L307.56,236.41 "/><path d="M603.89,327.51L603.71,327.82L603.88,328.54L603.64,328.78L603.01,328.70L602.46,328.93L602.57,330.16L602.26,330.45L602.15,330.79L601.57,330.90L601.39,331.53L600.42,331.68L599.98,331.98L600.28,332.45L600.58,332.67L600.89,332.90L600.99,333.17L601.72,332.94L602.26,332.53L602.24,332.25L602.22,332.08L602.69,331.61L603.11,331.57L602.89,330.92L603.12,330.73L603.33,330.76L603.57,330.80L604.34,330.37L604.74,330.15L605.08,330.17L605.60,330.18L606.13,330.04L606.29,329.82L606.57,329.81L606.98,329.18L607.36,329.03L608.31,329.19L608.54,329.12L609.13,329.28L609.77,329.73L610.64,329.95L611.49,330.09L612.18,329.95L612.30,330.01L612.72,330.18L613.20,330.95L614.00,331.44L614.65,331.32L615.92,331.60L616.23,331.60L616.45,331.60L617.18,331.41L617.34,330.97 "/><path d="M761.01,383.92L760.79,383.96L760.26,383.69L759.56,383.62L759.53,383.61L757.20,382.95L756.82,382.48L756.53,382.52L756.32,382.74L755.55,382.63L755.44,382.45L755.54,382.04L755.13,381.82L754.59,381.71L754.45,381.96L754.13,382.01L754.07,381.96L753.78,381.67L753.13,381.45 "/><path d="M294.32,239.83L294.14,239.79 "/><path d="M748.76,380.82L749.06,380.39L749.91,380.41L750.06,380.41L749.96,380.06L749.93,379.96L749.98,379.90L750.04,379.85L750.62,379.72L751.14,379.90L751.36,379.87L751.44,379.45L752.39,379.29L753.02,378.02L753.90,377.48L754.11,377.13 "/><path d="M219.40,217.17L219.15,217.30L219.14,217.32L219.06,217.50L218.63,217.45L218.37,217.26L217.61,217.29 "/><path d="M310.66,242.36L310.76,242.94L310.79,243.18L310.36,243.52L310.44,243.99L310.79,243.68L311.19,243.78L311.64,244.07L311.68,244.28L311.50,244.44L311.24,244.48L311.00,244.89 "/><path d="M753.13,381.45L752.96,382.33 "/><path d="M752.96,382.33L749.80,381.20L748.76,380.82 "/><path d="M752.96,382.33L753.51,382.54L753.68,382.60 "/><path d="M291.66,236.90L291.66,236.93L291.65,237.01L291.65,237.09L291.64,237.17L291.00,237.94L290.91,238.63L290.45,238.71L290.43,238.89 "/><path d="M219.40,217.17L220.33,216.76L220.15,216.61L219.03,216.73L219.06,216.44L218.59,216.43L218.42,216.56L217.97,216.58L217.73,216.76L217.28,216.79L217.10,216.72L217.30,216.44L217.07,216.35L216.50,216.37L216.02,216.51L215.29,216.42L214.79,216.53L214.24,216.35L213.97,216.42L213.53,216.36L213.36,216.25L214.08,215.75L214.24,215.44L214.11,215.26L213.87,215.28L213.44,215.52L213.25,215.51L213.34,215.31L213.35,215.26L212.32,215.28L212.64,214.80L212.52,214.54L212.72,214.40L212.68,214.33L212.34,214.40L212.03,213.90L211.85,213.62L211.81,213.26L211.28,213.09L211.12,212.91L211.19,212.06 "/><path d="M733.27,371.90L732.88,372.09L732.35,372.00L732.00,372.13L731.28,372.03L730.99,372.11L730.40,372.63L729.46,372.86L729.41,372.88L728.79,373.15L728.61,373.23L726.82,372.97L726.52,372.93L726.07,372.87L725.67,372.90L725.52,372.91L725.22,372.66L724.48,372.81L723.51,372.73L723.50,372.73L722.86,372.81 "/><path d="M722.86,372.81L723.15,372.46L723.50,372.04L723.81,371.89L724.79,371.79L725.20,371.46L725.53,371.38L725.54,371.38L726.12,370.75L728.44,369.50L728.81,369.43L729.16,369.00L729.49,368.95L729.94,368.43L730.44,368.26L730.65,367.99L730.50,367.75L730.63,367.50L730.50,367.36 "/><path d="M300.87,242.15L301.04,242.07L301.98,242.14L302.41,241.71L303.08,241.80L303.57,241.68L303.97,241.76L304.53,241.13L304.74,241.09L305.38,241.33L305.64,241.33 "/><path d="M248.81,224.94L249.13,225.20L249.84,225.79L249.98,226.17L251.32,227.01L251.73,227.27L252.04,227.71 "/><path d="M339.27,253.64L339.72,253.56L339.93,253.29L340.47,253.18L340.89,253.39L340.92,253.65L341.49,253.50L341.72,253.52L341.95,253.54L342.46,253.20L342.47,252.93L342.90,252.78L344.50,252.74L345.06,252.63L345.45,252.69L345.69,252.61L345.93,252.70L346.33,252.68L346.56,252.94L346.88,252.69 "/><path d="M722.08,372.67L722.86,372.81 "/><path d="M196.93,211.59L196.93,211.60L197.03,211.69L197.68,211.85L198.82,211.71L198.87,211.61L199.51,211.61L199.50,211.84L199.85,211.91L200.35,211.67L200.67,211.86L201.03,211.82L201.21,211.67L202.11,211.69L202.34,211.79L203.40,211.60L203.60,211.70L203.97,211.51L204.92,211.67 "/><path d="M601.87,334.48L602.46,334.63L602.60,334.66L602.82,334.72L603.13,334.71L603.48,334.71L604.15,334.88L604.67,334.78L605.07,334.53L605.42,333.78L606.07,333.63L606.47,332.93L606.89,332.77L608.58,332.62L609.52,332.78L610.11,332.71L610.35,332.98L610.98,333.09L611.46,333.36L611.07,333.72L611.08,333.87 "/><path d="M252.04,227.71L252.87,227.91L254.18,228.56L254.43,228.51L254.48,228.45L254.62,228.28L253.60,227.65L253.51,227.31L253.72,227.18L255.00,227.08L255.93,227.39L256.37,227.29L256.43,227.13L256.94,227.05L257.69,227.10L257.76,227.23L258.39,227.34 "/><path d="M228.24,218.95L228.22,218.98L227.62,219.64L227.93,220.18L227.70,220.45L227.30,220.51L227.61,220.88 "/><path d="M601.87,334.48L601.23,334.43L600.79,334.18L600.34,334.17L600.24,334.17 "/><path d="M601.87,334.48L602.20,334.04L602.02,333.41L601.30,333.43L600.92,333.18L600.45,333.29L600.36,333.50L600.58,333.87L600.30,334.12L600.24,334.17 "/><path d="M339.27,253.64L339.43,254.11 "/><path d="M382.14,266.78L381.75,266.94 "/><path d="M381.75,266.94L381.53,266.40L381.62,266.20L380.67,265.77L380.37,265.22L379.90,265.30L379.82,265.31L379.55,265.26L379.06,264.51L378.39,264.48L377.71,264.45L377.37,264.18L376.99,264.11L376.09,264.23L375.96,264.28L375.65,264.40L375.36,264.36L375.20,264.20L374.81,263.82L374.00,263.49L374.52,263.13L373.93,263.04L373.72,263.01L373.68,262.99L373.45,262.90L373.28,262.84L373.31,262.80L373.36,262.74L373.51,262.52L373.40,262.37L373.14,262.33L372.78,262.28L372.64,261.97L372.29,261.72L372.16,261.04L372.31,260.81L372.37,260.79L372.80,260.71L372.82,260.56L372.68,260.46L372.45,260.31L371.95,259.69L371.92,259.66L369.56,259.07L366.86,259.15L366.50,259.16L366.06,259.46L365.03,259.33L364.79,259.31L364.44,259.40L364.11,259.35L363.83,259.01L363.07,259.15L362.54,259.41L362.20,259.39 "/><path d="M299.81,242.49L300.34,242.42 "/><path d="M313.54,246.67L313.66,246.20L313.90,246.06L314.00,245.84L314.70,245.72L314.96,245.67L315.13,245.29L315.18,245.30L315.77,245.20L316.25,245.32L316.48,245.11L317.96,244.90L317.99,244.89L318.00,244.91L318.09,245.13L318.31,245.07L318.74,244.95L318.81,244.69L318.46,244.34L318.99,243.75L318.95,243.53L319.98,243.33L320.19,243.51L320.79,242.92L321.62,242.68L321.63,242.64L321.68,242.43L321.51,242.23L320.78,241.90L320.79,241.83 "/><path d="M714.49,371.03L715.41,371.09L716.16,370.18L716.71,370.15L717.47,369.93L718.65,370.60L719.73,371.48L720.82,371.93 "/><path d="M738.72,355.54L738.98,356.01L738.66,356.26L738.02,356.22L737.50,356.50L737.18,356.57L736.49,356.70L736.31,356.74L735.30,356.51L735.13,356.85L734.36,356.83L733.23,356.81L732.91,356.80L732.04,357.23L731.85,357.33L731.23,357.30L730.40,357.95L730.22,358.27L730.12,358.46L729.84,358.67L729.04,358.59L728.54,358.30L728.49,358.19L728.31,357.87L727.91,357.70L727.70,357.70L727.17,358.13L726.71,358.23L726.62,358.24L726.51,358.40L726.55,358.44L727.31,359.19L726.98,359.79L725.83,360.01L725.14,360.01L724.99,360.14L725.00,360.41L724.45,360.44L724.39,360.74L724.93,361.06L724.87,361.24L724.86,361.29L723.89,361.55L723.56,361.89L723.38,362.37L723.70,362.83L723.65,362.99L723.17,363.06L722.77,363.12L722.21,363.43L721.87,363.61L721.33,363.50L720.40,363.73L719.61,363.92L719.11,364.51L718.56,364.80L718.46,365.03L718.91,365.61L718.54,366.01L718.06,366.16L718.06,366.16L718.21,366.36L717.88,366.59L717.59,366.78L717.58,367.40L717.07,367.59L717.33,367.94L717.15,368.28L717.01,368.36L716.84,368.21L716.56,368.20L716.18,368.68L716.00,368.92L715.56,368.92L715.12,369.47L714.49,369.61L714.37,369.88L714.77,370.19L714.81,370.61L714.49,371.03 "/><path d="M262.36,228.78L262.50,229.03L262.84,229.20L262.68,229.41L263.14,229.72L263.38,230.10L263.04,230.49L263.19,230.66L263.53,230.78L263.53,230.90L263.08,231.16L263.47,231.47L263.21,231.58L262.94,231.70L263.04,232.25 "/><path d="M237.43,224.84L237.02,224.79L236.48,224.54L236.31,224.38L235.91,223.99L235.37,223.94L234.15,223.82L233.91,223.93L233.53,223.64L233.11,223.58L232.45,223.00L232.43,222.97L232.25,222.95L231.68,223.16L230.91,223.00L230.75,222.70L230.41,222.47L230.41,222.23L229.70,221.90L229.23,221.36L229.16,221.12L229.54,220.55L229.70,220.31L229.30,219.90L228.92,219.52L228.88,219.02L228.80,219.01L228.24,218.95 "/><path d="M237.43,224.84L237.78,224.92L237.96,225.14L238.91,225.39L239.24,225.26L239.23,224.74L239.55,224.35L239.52,224.30L239.16,223.75L239.12,223.68 "/><path d="M280.11,237.72L280.03,237.47L279.28,237.29L278.97,237.01L278.48,237.14 "/><path d="M354.37,259.94L354.19,259.42L354.14,259.38L353.75,259.10L353.49,258.54L353.68,258.29L354.18,258.09L354.27,257.89L353.80,257.64L353.71,257.15L353.35,256.91L352.76,256.88L352.46,256.70L351.91,256.76L351.58,256.64L351.42,256.30L350.82,255.93L350.68,255.70 "/><path d="M591.11,332.76L591.47,332.75L591.75,332.86L591.99,333.17L592.58,333.18L592.98,333.43L593.88,333.38L593.87,333.79L594.73,334.22L594.89,334.21L594.95,334.01L595.67,334.08L597.34,334.62L597.36,334.32L597.54,334.24L600.24,334.17 "/><path d="M378.17,267.52L378.76,267.49L378.83,267.34L378.52,267.16L378.63,267.03L379.56,266.70L379.84,266.83L380.03,267.14L380.51,266.93L380.82,266.98L381.15,267.33L381.37,267.31L381.75,266.94 "/><path d="M313.74,248.16L313.80,248.06L314.55,247.89L315.12,247.92L315.57,247.80L315.88,247.86L315.95,247.87L316.23,248.13L316.35,248.10L316.74,248.01L316.83,248.03L317.18,248.09L317.03,247.76L317.12,247.53L317.73,247.37L318.13,247.45L317.98,247.67L318.66,248.35L318.72,248.34L319.17,248.30L319.58,247.82L319.90,247.81L320.42,248.13L320.74,248.19L320.94,247.81L321.22,247.70L321.44,248.05L321.86,248.04L322.05,248.43L322.38,248.55L322.66,248.84L323.19,248.64L323.69,248.92L324.09,249.00L325.39,249.05L325.74,248.99L326.20,248.55L326.66,248.52L327.41,248.75L327.73,248.72L328.17,248.43L328.65,248.41L328.66,248.55L328.93,248.48L329.15,247.99L329.72,247.49L330.94,247.04 "/><path d="M239.61,226.24L239.97,226.13 "/><path d="M277.93,236.95L277.49,236.87L277.13,236.80L275.73,236.77L275.59,236.61L275.16,236.70L274.68,236.46L273.44,236.35L273.48,236.09L273.00,236.08L272.79,235.86L272.48,235.55L272.75,235.38L272.70,235.31L272.27,235.22L272.16,234.98L271.83,234.85L271.76,234.55L271.93,234.29L271.49,234.05L271.46,233.63L271.14,233.46L270.90,233.44 "/><path d="M313.23,248.21L312.91,248.15 "/><path d="M217.61,217.29L216.78,217.42L216.65,217.24L215.64,217.26L215.32,217.19L214.76,217.25L214.06,217.13L213.61,217.24L212.28,217.00L211.93,217.03L210.00,217.17L209.65,217.19L209.29,217.16L209.04,217.13L208.71,217.09L208.68,217.10L208.13,217.16 "/><path d="M240.30,226.76L240.02,226.56 "/><path d="M237.43,224.84L237.23,225.19L237.55,225.42L237.24,225.68L236.92,225.72L236.48,225.64L235.86,225.26L235.75,225.06 "/><path d="M238.96,226.22L239.03,226.28L239.15,226.39L239.23,226.47L239.40,226.43 "/><path d="M242.73,227.54L243.37,227.40L243.82,226.97L243.66,226.72L243.93,226.23L244.38,226.30L244.87,226.53L245.34,226.56L245.64,226.49L245.89,226.61L246.30,226.54L246.65,226.86L247.82,227.17L248.83,227.09L249.52,227.56L250.76,227.90L251.08,227.88L251.34,227.67L252.04,227.71 "/><path d="M644.48,350.25L644.32,350.02L643.01,349.17L643.11,348.82L642.86,348.60L641.83,348.67L639.27,348.20L639.06,348.16L638.77,348.23L638.49,348.30L637.97,348.06L637.91,348.04L637.73,348.05L637.21,348.08L636.86,348.10L636.53,348.01L636.07,347.68L635.93,347.66L635.46,347.60L635.11,347.56L634.92,347.42L634.49,347.48 "/><path d="M263.04,232.25L263.55,232.38L264.09,233.00L264.69,233.27L266.22,233.77L266.48,234.00L267.12,234.02L267.25,234.16L267.20,234.57L267.81,234.98L267.88,235.03L268.39,235.15L269.20,235.20L269.63,235.33L269.82,235.39 "/><path d="M206.61,217.10L207.08,217.17 "/><path d="M708.88,363.10L708.78,363.46L708.21,363.90L708.20,363.93L708.11,364.12L708.27,364.61L707.60,364.69L707.15,364.74L707.01,364.85L707.19,365.10L706.93,365.43L706.37,365.69L706.24,365.98L706.21,366.06L705.33,366.14L705.40,366.96L704.67,367.64L704.54,367.74L703.87,367.73L703.00,368.00L702.49,368.02L702.48,368.83L702.05,368.94L701.93,369.09L701.74,369.31L701.39,369.34 "/><path d="M353.26,261.05L353.31,261.04L353.55,261.02L353.98,260.80L354.25,260.40L354.70,260.19 "/><path d="M671.81,354.51L671.51,354.80L672.70,355.24L672.76,355.28L673.36,355.65L674.52,355.59L674.70,355.65L674.87,355.72L674.63,355.97L674.74,356.04L675.31,356.47L675.69,356.09L675.98,356.06L676.89,356.28L677.06,356.41L676.95,356.65L677.66,357.01L677.94,356.67L679.34,357.15L679.43,357.16L681.70,357.40L681.93,357.66L682.08,357.82L682.89,358.04L683.27,358.34L683.31,358.57L683.93,358.69L684.28,358.75L685.06,358.60L685.54,359.22L686.41,359.11L687.21,359.35L687.47,359.31L688.35,358.61L688.63,358.63L688.86,358.86L689.04,359.03L689.11,359.09L689.17,359.38L689.69,359.76L690.35,359.79L690.72,360.09L690.17,360.29L690.94,361.21L691.00,361.25L691.44,361.54L691.59,361.63L692.30,361.62L692.42,361.62L693.08,361.81L694.01,362.30L693.81,362.48L694.10,363.13L694.34,363.23L694.67,363.36L695.16,364.17L695.12,364.33L695.03,364.70L695.24,364.86L695.65,364.91L696.13,366.08L697.04,366.66L697.27,366.81L697.13,367.09L697.76,367.29L698.20,367.79L698.44,367.75L698.51,367.56L698.56,367.44L698.58,367.44L699.05,367.55L699.16,367.72L699.01,368.07L699.20,368.34L699.88,368.26L700.26,368.56L700.63,368.61L700.50,369.31L701.14,369.10L701.36,369.18L701.39,369.34 "/><path d="M204.29,216.94L204.84,217.01L205.13,217.17 "/><path d="M619.13,343.44L620.48,343.30L620.96,343.12L621.24,342.83L621.05,342.52L621.51,342.46L622.56,341.60L623.42,341.69L623.82,341.60L624.13,341.53L624.12,341.29L624.32,341.10L624.73,341.03L625.59,341.20L626.36,340.95L627.31,341.31L627.64,340.90L628.23,340.95L628.42,340.86L628.32,340.50L628.82,340.43L629.32,340.15L629.59,339.99L630.30,340.19L630.64,339.93L631.13,340.11L631.69,339.91L631.98,340.20L632.97,340.30L633.62,340.06L634.74,340.11L634.88,339.68L635.39,339.67L636.04,339.43L636.74,339.45L639.03,338.94L639.32,338.63L639.21,338.38L639.45,337.98L639.02,337.63L638.69,337.48L638.04,337.20L637.79,336.97L638.05,336.62L637.44,335.25L637.69,335.07L637.67,334.81L637.16,334.47L637.87,333.55L637.64,333.22L637.77,332.92L638.14,332.60L638.20,332.55L639.00,332.30L639.21,332.02L639.63,331.95L639.68,331.95L639.75,331.78L640.02,331.13L640.58,331.01L640.85,330.28L641.03,329.81L641.18,329.40L641.16,329.36L641.04,329.04L641.27,328.53L641.47,328.36L641.73,328.15L641.72,327.97L641.37,327.76L642.06,326.95L642.07,326.57L642.13,324.45L642.30,324.14L642.62,323.64L643.30,323.32L644.26,323.30L644.76,322.93L645.66,322.76L646.21,322.50L648.36,322.26L648.53,321.76 "/><path d="M626.44,334.37L625.69,335.01L625.59,335.39L625.19,335.33L624.72,335.81L623.08,336.17L622.17,336.36L621.90,336.13L621.16,336.13L620.86,335.90L620.81,335.60L620.04,335.25L619.32,335.22L618.82,335.77L618.37,335.79L618.09,335.91L618.25,336.10L617.87,336.41L617.70,336.84L617.02,337.00L616.94,337.12L616.51,337.85L616.19,337.92L615.65,338.44L615.17,338.28L615.04,338.42L615.46,338.73L616.16,339.00L617.25,339.21L617.79,339.60L618.11,339.60L618.10,340.06L618.48,339.98L619.16,341.07L619.00,341.41L619.22,341.80L618.77,341.96L619.32,342.33L619.21,342.57L618.74,342.75L619.24,343.13L619.23,343.17L619.13,343.44 "/><path d="M241.09,227.88L241.38,227.49L241.33,227.25L241.72,227.29L241.98,227.46L242.60,227.38L242.73,227.54 "/><path d="M290.92,242.68L291.92,242.09L292.52,241.36L293.13,241.29 "/><path d="M241.09,227.88L240.69,227.86L240.69,227.68 "/><path d="M242.73,227.54L243.40,227.96L243.19,228.23L242.49,228.43 "/><path d="M280.68,239.93L280.80,239.83L281.00,239.67 "/><path d="M290.92,242.68L291.18,242.89L291.02,243.06L291.55,243.32L291.90,243.35L292.73,243.17L293.41,242.50L293.62,242.46L294.20,242.58L294.56,242.47L294.92,242.86L294.64,243.79L294.81,243.86L295.29,243.70L295.97,243.77L296.23,243.93L296.47,243.92L296.69,243.75L297.18,243.72L297.42,243.24L297.88,243.24L298.20,243.54L298.33,243.53L298.85,242.99L299.20,242.63 "/><path d="M335.58,256.54L336.00,256.46L336.01,256.23L336.02,255.98L336.26,255.82L336.08,255.53L337.07,254.42L337.71,253.69L338.45,253.30L338.75,253.00L338.98,253.03L339.24,253.32L339.27,253.64 "/><path d="M618.62,344.01L618.96,343.43L619.13,343.44 "/><path d="M277.30,239.58L276.97,239.11L277.16,238.69L277.07,238.36L277.62,238.33 "/><path d="M240.78,228.85L240.58,228.47L241.12,228.09L241.09,227.88 "/><path d="M249.21,231.10L248.88,231.03L248.29,230.64L247.92,230.40L247.69,230.11L246.92,229.79L246.66,229.77L246.40,229.86L246.15,230.06L245.55,229.74L244.05,229.43L243.87,229.20L243.60,229.20L242.80,229.41L242.45,229.36 "/><path d="M227.61,220.88L227.20,220.99L227.06,221.22L226.65,221.18L226.49,221.26L225.95,221.26L225.22,221.75L225.42,222.14L225.00,222.31L223.59,222.61L222.99,222.55L222.77,222.41L221.97,222.94L221.98,223.53L222.22,223.63L222.72,223.56L222.92,223.44L223.18,223.66L223.32,223.78 "/><path d="M323.16,253.86L323.25,254.02L323.63,254.06L323.64,254.06L324.17,253.90L324.37,254.13L324.91,254.11L325.38,253.95L325.44,253.74L326.08,253.81L326.32,253.70L327.54,253.80L327.78,253.56L327.76,253.37L328.28,252.88L328.14,252.69L328.23,252.55L328.68,252.46L329.12,252.37L329.52,252.03L329.33,251.51L330.09,250.93 "/><path d="M227.61,220.88L227.71,221.08L227.74,221.15L227.59,221.54L228.22,222.63L228.96,223.12L229.64,223.12L229.98,223.37L229.71,223.42L229.92,223.58L230.81,223.63L230.96,224.13L231.23,224.44L231.01,224.72L231.49,225.25L231.62,225.71L231.71,226.04L232.29,226.32L232.35,226.52L232.47,226.58L232.65,226.69L232.68,226.70L232.78,227.18 "/><path d="M255.66,234.58L256.37,234.32L257.95,234.15L258.14,234.07L259.24,233.64L259.82,233.69L259.95,233.57L260.00,233.52L261.02,233.53L261.40,233.44L262.08,232.75L262.39,232.75L262.48,232.86L262.65,232.75L262.54,232.51L263.04,232.25 "/><path d="M378.17,267.52L377.07,267.20L376.56,267.05L375.99,267.00L375.86,266.99L375.88,266.73L375.30,266.49L375.47,266.30L375.36,266.23L375.08,266.08L374.10,266.09L373.88,265.94L373.97,265.77L373.92,265.76L372.36,265.21L372.09,264.99L371.64,264.91L370.60,264.74L370.53,264.73L370.27,264.90L369.93,264.91L369.25,264.93L369.19,264.91L368.99,264.84L368.90,264.82L368.60,264.73L368.58,264.72L367.91,264.51L367.13,264.51L366.82,264.43L366.77,264.44L366.00,264.56L365.25,264.42L365.41,264.16L365.43,264.12L364.78,263.60L364.22,263.70L363.75,264.03L362.75,264.00L362.49,264.10L362.23,264.20L362.15,264.23L361.57,264.15L360.36,264.46L359.90,264.62L359.76,264.88L358.15,264.68L357.62,264.81L355.87,264.65L355.61,264.45L355.55,264.10L355.46,263.63L355.23,263.49L354.73,263.40L354.59,263.29L354.49,263.21L354.52,263.02L354.56,262.81L354.40,262.70L353.74,262.28L353.31,262.18L353.02,261.81L353.16,261.65 "/><path d="M238.57,229.35L239.39,229.95L240.29,229.86L240.26,229.69 "/><path d="M236.60,229.54L236.47,229.41L236.73,229.20L237.20,229.18L237.78,228.88L238.03,228.91L238.23,229.11 "/><path d="M621.44,347.69L621.79,347.28L621.42,347.23L621.21,346.94L620.36,346.74L620.18,346.53L620.38,346.18L620.84,346.03L620.87,345.71L620.10,345.28L619.31,344.84L619.31,344.81L619.26,344.56L618.97,344.42L619.22,344.00L618.78,344.08L618.62,344.01 "/><path d="M233.58,228.48L233.75,228.79 "/><path d="M223.69,223.97L223.90,224.34L224.21,224.28L224.49,223.88L225.07,223.87L225.22,223.74L225.06,223.47L225.36,223.31L225.91,223.29L226.00,223.40L225.77,223.66L226.05,224.39L226.31,224.56L226.74,224.32L226.96,224.39L227.48,225.07L228.07,225.25L228.49,225.58L228.33,225.77L228.25,225.88L228.32,226.07L228.54,226.27L228.59,226.31L228.56,226.46L228.98,226.53L228.80,226.74L229.17,226.94L229.22,227.05L229.49,227.58 "/><path d="M634.49,347.48L634.29,347.33L633.31,347.38L633.15,347.39L633.03,347.39L632.95,347.47L632.60,347.84L632.01,347.94L631.98,347.95L631.56,347.87L631.34,348.13L631.01,348.12L630.27,348.50L630.14,348.57L630.04,348.91L629.44,349.04L629.43,349.03L629.26,348.84L629.05,348.80L628.97,348.51L628.95,348.51L628.24,348.49L627.71,348.60L626.88,348.45L625.99,348.57L625.52,348.49L625.06,348.41L624.62,348.70L623.76,348.33L623.22,348.38L622.93,348.21L622.80,348.14L622.58,347.75L622.29,348.06L621.71,347.92L621.44,347.69 "/><path d="M286.50,244.62L286.82,244.37L287.01,244.34L287.40,244.30L288.19,243.99L288.65,243.82L289.32,243.03L289.83,242.88L290.44,242.88L290.92,242.68 "/><path d="M366.74,268.84L367.57,268.69L367.67,268.57L368.92,268.82L369.17,268.87L369.58,269.11L370.81,269.24L371.88,269.59L372.69,269.67L372.77,269.68L373.21,269.91L373.61,269.89L374.17,269.62L374.74,269.50L375.47,269.56L376.57,269.66L376.62,269.62L376.77,269.53L376.54,269.30L376.32,269.07L376.29,268.80L376.47,268.57L376.53,268.48L376.78,268.14L376.87,268.12L377.24,268.05L377.48,267.71L378.17,267.52 "/><path d="M703.26,374.85L703.20,374.77L702.98,374.48L702.91,374.38L703.35,374.40L704.23,374.43L704.57,373.77L705.23,373.24L704.79,373.11L704.34,372.78L703.95,372.15L703.74,372.11L703.29,371.75L703.35,371.57L704.20,371.14L704.24,370.97L704.01,370.83L703.30,370.88L703.26,370.85L702.57,370.28L701.74,370.07L701.12,370.11L701.18,369.35L701.39,369.34 "/><path d="M724.31,381.69L725.65,378.82L726.25,378.20L727.32,377.79L729.03,377.47L729.31,377.37L729.92,377.15L730.52,377.18 "/><path d="M307.99,248.73L308.21,248.77L308.50,249.21L308.91,249.40L308.97,249.72L308.99,249.81L310.06,250.28L310.81,250.38L311.40,250.68L311.44,251.02L311.45,251.20L311.47,251.42L311.15,251.72L310.88,251.79L310.60,252.07L309.45,252.18 "/><path d="M724.31,381.69L723.65,381.23L722.29,381.07L720.49,379.88L719.71,378.83L719.32,378.32L718.58,377.99L718.55,377.51L718.86,377.32L718.78,377.13L719.07,376.93L719.73,376.77L720.03,376.25L720.08,376.24L720.30,376.21L720.40,375.97L721.58,375.92L721.75,375.63L721.98,375.54L722.15,375.47L722.43,375.45L722.67,375.72L722.74,375.81L723.33,376.02L723.73,375.95L724.06,375.60L724.49,375.61L725.36,375.93L725.67,375.79L725.99,375.65L726.41,375.63L727.44,375.76L727.56,376.06L727.82,376.17L728.46,376.45L728.57,376.44L729.49,376.40L730.12,376.81L730.23,376.82L731.81,376.96L732.91,377.24 "/><path d="M313.91,253.67L314.45,253.78L314.74,253.76L315.49,253.72 "/><path d="M233.63,229.62L233.72,229.85L233.80,229.90L234.29,230.21L234.93,229.98L235.04,229.90L235.36,229.68 "/><path d="M270.53,241.51L271.08,241.39L271.06,241.27L271.04,241.06L269.67,240.56L269.62,240.04L269.22,239.79L269.45,239.40L269.30,239.25L268.25,239.00L267.72,239.13L266.70,239.03L266.09,238.68L265.12,238.65L264.27,238.72L263.92,238.76L263.43,238.80L262.68,238.72L262.49,238.31L261.96,238.03L261.20,237.62 "/><path d="M601.87,334.48L601.98,334.77L601.61,335.24L601.40,335.50L601.39,335.92L601.21,335.95L601.13,335.96L600.58,336.05L600.87,336.42L600.91,336.48L600.81,336.52L599.94,336.86L599.71,337.09L599.83,337.56L599.36,337.67L599.29,338.25L599.29,338.29L599.03,338.48L598.62,338.53L596.71,338.76L595.92,338.67L595.22,338.37L594.84,338.32L594.60,338.39L594.46,338.43L593.98,339.07L593.69,339.47L593.71,339.63L594.63,340.31L595.77,340.69L596.27,340.86L597.33,341.43L597.93,341.54L598.07,341.78L598.49,342.55L598.71,342.69 "/><path d="M618.14,349.70L618.78,349.52L618.79,349.51L619.53,349.12L619.56,349.09L619.58,349.07L619.91,348.72L620.53,348.70L620.80,348.69L621.92,349.13L622.26,349.11L622.49,348.92L624.25,349.10L624.34,349.11L624.66,349.17L626.73,349.57L626.80,349.58L628.24,349.85L628.35,349.87L628.46,349.90L628.54,350.09L628.58,350.19L628.60,350.23L628.89,350.50L628.99,350.60L629.26,350.86L629.39,350.98L629.90,350.48L630.12,350.26L630.01,350.18L629.76,349.98L629.96,349.76L630.07,349.65L630.02,349.53L629.89,349.21L631.27,348.42L631.45,348.32L631.62,348.22L632.44,348.07L633.35,347.71L633.44,347.68L633.71,347.58L634.02,347.61L634.48,347.48L634.49,347.48 "/><path d="M331.04,260.72L330.74,260.40L330.06,260.25L329.94,260.09L330.07,259.82L329.91,259.64L327.98,259.20L327.46,259.23L326.33,258.71L325.53,257.47L324.75,257.33L324.50,257.42L324.04,257.25L323.65,257.10L323.47,256.63L323.13,256.53L322.42,256.53L321.61,256.07L321.37,255.94L321.29,255.58L321.71,254.92L321.56,254.69 "/><path d="M284.07,246.28L284.44,246.77 "/><path d="M714.49,371.03L714.17,370.97L713.99,371.45L713.28,371.63L713.12,371.77L713.22,372.36L712.75,372.48L712.41,372.98L712.28,373.42L712.40,373.85L712.08,374.31L712.65,374.72L712.84,375.00L713.00,375.23L712.82,375.41L712.19,375.56L711.99,375.81L711.43,375.94L711.48,376.46L711.12,376.69L710.49,377.48L710.66,378.00L710.63,378.06L710.51,378.25L710.34,378.51L710.13,378.60L710.01,378.65L708.61,378.76L707.11,378.62 "/><path d="M268.96,242.27L269.14,242.17L269.88,242.14L270.05,241.91L269.91,241.71L270.04,241.64 "/><path d="M707.11,378.62L706.88,378.58L706.50,378.19L706.43,377.82L706.67,377.39L706.02,377.09L705.98,376.76L705.64,376.83L704.81,377.00L704.33,376.98L704.08,376.82L703.98,376.41L704.22,376.20L704.78,376.15L704.95,375.91L703.98,375.43L703.94,375.41L703.94,375.41L703.26,374.85 "/><path d="M618.62,344.01L618.28,343.95L618.00,343.44L617.77,343.35L616.97,343.50L616.46,343.39L616.23,343.63L615.27,343.65L614.76,343.77L614.48,343.35L613.66,343.37L612.81,343.72L612.37,343.43L612.14,343.45L612.01,343.77L611.99,343.82L611.57,343.75L610.51,343.13L609.84,343.31L609.65,343.54L609.37,343.52L609.07,343.24L608.88,343.21L608.53,343.60L608.50,343.92L608.25,343.94L608.23,343.90L607.92,343.30L607.62,343.14L606.96,343.36L606.58,343.90L606.13,343.99L605.60,343.83L604.68,343.34L604.44,343.38L604.54,343.61L604.93,343.89L604.82,344.16L604.09,344.30L603.94,344.25L603.46,344.11L603.44,344.11L603.12,344.16L602.84,344.38L602.06,344.27L601.34,344.68L601.19,344.68L600.73,344.66L600.55,344.26L599.83,344.28 "/><path d="M268.96,242.27L269.13,242.52L269.61,242.59L270.00,242.78L270.83,242.76L271.71,242.48L272.81,242.63L272.90,242.69L273.63,242.68L274.84,242.45L275.44,242.17L275.61,242.08L276.07,242.03L276.50,241.69L276.78,241.60L276.98,241.42L276.79,241.10L276.92,240.94L277.26,240.82L277.20,240.51L277.68,240.52L278.60,240.21 "/><path d="M285.36,241.18L285.27,241.20L284.54,241.31L283.99,241.24L283.68,241.31L282.09,242.62L281.90,243.04L282.04,243.19L281.48,243.36L280.85,243.39L280.61,243.56L279.88,243.58L279.26,243.75L279.12,244.45L278.77,244.99L278.65,245.18L278.75,245.47 "/><path d="M679.24,370.14L678.56,368.83L678.46,368.75L677.10,367.72L675.93,367.45L675.55,367.19L675.57,367.12L675.65,366.93L675.44,366.50L675.40,366.49L674.72,366.15L674.41,365.52L673.99,364.66L673.42,364.46L673.29,364.42L672.71,364.21L672.32,363.85L672.31,363.84L671.84,363.40L671.66,363.27L671.59,363.22L671.03,362.80L670.99,362.78L670.65,362.52L670.54,362.44L670.26,362.03L670.24,361.99L670.15,361.41L669.64,360.94L669.25,360.57L669.21,360.52L669.03,360.50L668.83,360.47L668.44,360.65L668.29,360.63L668.22,360.63L667.89,360.42L667.28,359.73L666.24,358.55L665.11,358.39L665.11,358.39L665.10,358.38L664.73,358.17L664.66,358.01L664.59,357.87L664.66,357.67L664.70,357.53L664.88,356.96L664.59,356.72L664.24,356.62L664.08,356.65L663.11,356.81L662.49,356.92L661.56,356.98L661.35,357.00L661.00,357.02L660.82,356.90L660.40,356.62L660.06,356.46L658.41,355.72L658.17,355.61L658.14,355.60L658.03,355.42L657.68,354.88L657.69,354.07L657.70,353.58L657.45,353.44L657.17,353.28L656.57,352.44L656.55,352.42L655.19,351.68L655.11,351.63L654.42,350.75L654.09,350.33L654.47,350.06L654.53,349.77L654.37,349.36L654.36,349.33L654.35,349.30L654.32,349.24L653.91,348.87L653.64,348.81L651.80,348.43L650.28,347.42L650.61,347.14L650.51,346.83L650.72,346.42L650.40,345.92L650.80,345.17L650.88,344.81L650.98,344.34L651.03,344.12L650.95,344.06L650.62,343.83L650.52,343.81L650.07,343.75L649.66,343.69L648.77,343.10L648.52,342.94L648.53,342.15L647.99,341.73L647.80,341.38L647.86,341.10L647.76,341.01L647.59,340.86L647.50,340.84L646.75,340.62L646.09,340.60L645.24,340.57L645.11,340.56L644.88,340.81L644.19,340.81L643.99,341.21L643.22,341.37L643.63,341.63L643.26,342.07L643.14,342.21L641.88,342.44L641.79,342.50L641.50,342.68L640.82,342.84L639.86,342.94L639.41,342.98L639.33,343.06L639.20,343.18L639.28,343.69L639.08,343.91L638.69,344.32L638.85,344.75L638.38,345.15L638.12,345.93L637.73,346.12L636.23,346.33L634.68,347.17L634.49,347.48 "/><path d="M707.28,379.28L707.46,379.06L707.11,378.62 "/><path d="M599.83,344.28L599.81,344.27L599.58,344.25L599.01,343.89L598.91,343.88L598.89,343.88L598.57,343.85L598.17,343.83L598.07,343.70L597.99,343.59L597.99,343.44L597.99,343.33L598.00,343.18L597.91,343.11L597.66,342.91L596.96,342.69L596.31,342.49L595.16,342.34L592.37,341.98L590.66,341.93 "/><path d="M749.39,393.12L749.66,392.75L749.71,392.68L749.97,392.31L751.08,391.69L751.26,391.48L751.78,390.86L751.72,390.76L750.75,389.09L750.50,388.65L750.48,388.21L750.43,387.54L750.41,387.21L750.64,385.90L751.09,385.80L751.13,385.52L751.53,385.49L751.78,384.92L751.90,384.63L752.29,384.45L752.49,384.06L752.40,383.76L752.83,383.23L752.93,383.10L752.80,382.60L752.96,382.33 "/><path d="M280.00,246.25L280.11,246.17L279.80,245.82L279.48,245.64L278.82,245.55L278.75,245.47 "/><path d="M312.55,256.17L313.32,255.54L313.69,255.41L314.07,255.42L314.17,255.05L314.31,254.99L314.08,254.77L314.31,254.48L313.95,254.20L313.35,254.19L313.26,254.01 "/><path d="M748.76,380.82L748.54,381.25L747.62,381.14L747.90,381.67L747.36,382.52L747.40,382.84L747.45,383.26L747.12,383.61L746.63,383.79L746.48,383.96L746.68,384.22L747.31,384.60L747.34,385.11L747.01,385.31L747.07,385.52L747.59,385.75L747.67,386.15L747.96,386.61L748.12,386.87L747.95,387.23L747.14,387.33L746.81,387.66L746.88,387.85L746.93,387.98L747.03,388.24L747.03,388.24L747.07,388.36L747.15,388.42L747.35,388.55L747.45,388.83L747.45,388.84L747.22,388.92L747.35,389.17L747.30,389.22L747.24,389.28L747.07,389.45L747.42,389.99L747.49,390.04L747.50,390.05L747.82,390.27L747.68,390.60L747.25,390.72L747.06,390.96L747.33,391.30L747.23,391.49L746.95,391.56L746.92,392.08L746.91,392.19L746.74,392.33L746.53,392.51 "/><path d="M284.44,246.77L283.82,247.07L283.42,247.41L282.90,247.26L281.57,247.15 "/><path d="M188.84,216.37L188.85,216.44L188.88,216.65L189.82,217.05L190.56,217.18L190.40,217.36L189.89,217.48L189.43,217.36L189.23,217.39L189.06,217.56L189.18,217.75L188.96,217.99L188.05,218.27L187.72,218.54L187.82,218.89L187.62,219.12L187.67,219.21 "/><path d="M682.53,372.12L683.84,372.28L684.05,372.35L684.95,372.63L685.78,372.50 "/><path d="M682.53,372.12L682.27,371.66L681.79,370.81L679.93,370.51 "/><path d="M261.00,241.30L261.68,241.17L262.31,241.33L263.19,241.31L263.43,241.35L263.72,241.41L265.78,242.34L266.45,242.23L267.20,242.56L268.10,242.27L268.96,242.27 "/><path d="M696.13,376.77L696.68,376.10L697.61,375.66L697.95,375.50L699.87,375.68L701.00,375.78L701.48,375.55L701.71,375.43L701.77,375.40L702.54,375.03L702.62,374.99L702.73,374.93L703.26,374.85 "/><path d="M284.44,246.77L284.88,246.97L285.36,247.18L285.58,247.48L285.58,248.19L285.77,248.49L285.85,248.53L286.21,248.70L286.44,248.91L286.57,249.04L287.05,249.09L287.34,249.20L287.52,249.27L288.27,249.34L288.37,249.35L288.69,249.19L289.00,248.82L289.12,248.79L289.61,248.66L290.64,248.92L291.10,248.85L291.43,248.91L292.39,249.77L292.80,249.77L293.16,249.53L292.98,249.20L293.73,248.82L294.03,248.87L294.58,249.21L294.89,250.13L295.24,250.22L295.56,250.18L296.59,249.47L296.91,249.47L297.32,249.02L297.88,249.10L298.01,249.12L298.61,249.03L298.76,249.30L298.97,249.27L299.41,249.20L299.94,249.25L301.14,250.87L301.49,250.87L301.56,250.81L301.82,250.64L302.07,250.20L303.09,249.97L304.06,250.58L304.79,251.61L305.07,252.01L305.64,252.11L306.08,252.54L306.34,252.64L306.93,252.86 "/><path d="M752.08,395.20L752.48,394.94L753.20,394.88L753.51,395.12L754.87,395.39L755.76,395.56L756.81,396.00L757.34,396.48L757.68,396.54L758.29,396.24L758.67,396.28L759.10,395.99L759.72,395.94L759.92,395.72L759.86,395.23L760.24,394.70L760.61,394.63L760.81,394.42L760.79,393.79L760.77,393.19L760.58,392.95L760.65,392.78L760.74,392.54L761.62,392.53L761.73,392.43L761.98,392.21L763.12,392.34L763.67,392.16L764.12,392.19L765.11,392.72L766.31,392.84 "/><path d="M260.34,241.15L259.45,240.94L259.03,241.02 "/><path d="M599.83,344.28L599.83,344.31L599.87,344.62L600.45,345.00L601.16,345.29L601.63,345.30L601.86,345.45L601.98,345.54L602.29,345.57L602.68,345.76L603.12,345.82L603.41,345.66L603.85,345.75L603.96,345.55L604.49,345.36L605.17,345.37L605.60,345.60L606.08,345.54L606.71,345.82L606.86,346.55L607.33,346.87L607.35,347.00L606.74,347.15L606.78,347.66L606.47,347.76L606.47,347.76L606.39,347.99L606.90,348.39L607.26,348.42L607.31,348.63L607.33,348.70L608.09,348.59L608.19,348.50L608.28,348.41L608.86,348.31L609.69,348.35L609.90,348.44L610.19,348.55L610.63,348.73L610.79,348.80L611.03,349.15L611.50,349.00L611.78,348.98L611.80,348.98L612.41,348.94L612.70,348.76L612.78,348.71L613.42,348.70L613.81,348.53L614.24,348.72L614.72,348.61L615.05,348.54L615.10,348.30L615.15,348.04L615.16,348.04L615.41,347.99L615.84,347.91L617.62,348.11L617.85,348.24L617.83,348.34L617.73,348.82L617.76,348.96L617.85,349.31L617.86,349.37L617.74,349.44L617.40,349.64L617.49,349.72L617.60,349.82L617.87,349.84L617.90,349.83L617.95,349.80L618.14,349.70 "/><path d="M724.31,381.69L724.31,382.85L724.31,384.82L724.31,385.15L724.31,385.76L724.26,385.83L723.96,386.24L724.23,386.62 "/><path d="M278.75,245.47L278.26,245.53L276.76,245.42L276.34,245.49L276.07,245.54L274.89,245.76L274.50,246.11L274.05,246.08L273.54,245.78L273.39,245.69L273.29,245.63L271.79,245.20 "/><path d="M196.09,222.27L196.18,222.13L197.42,221.81L199.36,220.78L199.93,220.85L200.16,220.69L200.47,220.47L200.95,220.41L201.04,221.00L201.24,221.20L201.50,221.19L201.89,221.34L201.80,221.89L202.25,222.03L201.58,223.09L201.39,224.01L201.36,224.14L201.15,224.30L200.90,224.50 "/><path d="M345.51,268.15L345.96,267.86L346.33,267.44L346.84,267.27L347.18,266.78L347.20,266.20L346.84,265.82L346.81,265.59L345.89,264.85L345.87,264.82L345.60,264.35L345.68,264.13L345.35,263.91L344.95,262.82L345.04,262.49L344.90,262.32L344.13,262.03L343.92,261.39L343.60,261.16L343.83,260.97L344.34,260.80L344.53,260.74L344.53,260.38L344.50,260.02L343.89,258.85L343.81,258.36L344.06,257.98L343.66,257.93L343.51,257.72L343.86,257.03L344.30,256.94L344.24,256.51L345.34,255.43L346.13,255.32L346.56,255.39L346.87,255.31L347.22,255.02L347.39,254.99L347.94,254.89L348.54,255.23L348.87,255.25L349.10,255.06L349.58,255.17L350.43,254.87 "/><path d="M345.51,268.15L345.30,267.89L344.70,267.15L343.35,266.10L343.06,265.58L342.96,265.39L342.22,264.96L340.72,264.61L340.71,264.60L339.52,264.04L338.44,263.85L338.29,263.29L337.87,262.95L338.27,262.72L338.32,262.54L337.76,262.33L337.32,262.16L337.37,261.91L336.50,261.21L335.80,260.89L335.75,260.66L335.94,260.55L335.69,260.37L335.97,259.93L335.73,259.44L336.07,259.13 "/><path d="M618.14,349.70L618.05,349.84L618.00,349.90L617.52,350.60L617.20,350.64L617.30,350.99L617.31,351.02L617.10,351.59L617.00,351.64L616.56,351.88L616.58,352.38L616.24,352.63 "/><path d="M696.13,376.77L695.63,376.56L695.16,376.50L694.78,376.46L694.44,376.61L693.99,376.32L694.11,376.10L693.84,376.03L691.54,375.99L691.31,375.85L691.07,375.95L690.89,376.03L690.87,376.32L690.54,376.28L690.25,376.10L689.62,376.28L689.61,376.27L689.38,376.21 "/><path d="M689.38,376.21L689.06,376.06L688.80,376.05L688.47,376.03L688.12,375.72L687.55,375.22L687.55,375.22L687.46,375.06L687.46,375.04L687.31,374.76L687.33,374.50L687.35,374.28L687.25,374.08L686.76,373.17L686.65,372.95 "/><path d="M217.61,217.29L217.56,217.42L216.90,217.78L217.12,217.96L216.14,218.58L216.48,218.87L216.51,218.89L216.40,218.92L215.94,219.04L215.41,219.44L215.24,219.48L214.45,219.67L214.37,219.67L213.75,219.64L212.78,220.01L212.58,220.08L212.23,220.45L211.01,221.08L210.84,221.42L211.18,221.68L211.05,222.06L210.84,222.66L210.66,223.19L211.05,223.08L211.30,223.11L211.11,223.51L211.53,223.62L211.36,224.00L211.48,224.25L212.12,224.26L212.33,224.42L212.12,224.81L212.24,225.03L212.71,224.98L213.10,225.59L212.32,226.28L211.86,226.34L211.07,226.66L210.73,227.04L210.53,227.43L210.84,227.92L210.80,228.19L210.77,228.37L211.21,228.37 "/><path d="M247.40,239.51L247.65,239.48L248.31,239.91L248.65,239.97L248.82,239.63L248.28,239.33L248.23,239.08L248.47,238.86L249.10,239.13L249.23,238.99L248.74,238.15L248.88,237.91L248.84,237.51L248.82,237.32L247.96,236.84L247.59,236.33L248.17,236.14L248.43,235.86L248.88,235.76L249.10,235.63L249.63,235.34L249.71,235.30L249.96,235.30L250.13,235.47L250.41,235.75L250.99,235.99L251.09,235.83L250.66,235.26L250.77,234.90L249.47,233.78L249.77,233.37L249.62,233.00L250.55,232.86L251.22,233.10L251.29,232.26L251.46,232.02L251.75,232.02L252.64,232.16L253.07,232.61L253.50,232.75L253.56,232.74L254.04,232.66L254.38,232.72L254.93,233.19 "/><path d="M244.25,238.62L243.42,238.24L241.97,238.17L239.98,237.62L239.55,237.27L239.79,236.86L240.04,236.79L239.49,236.59L238.11,236.31L237.85,236.07L238.06,235.78L237.98,235.49L238.37,235.37L238.37,235.22L238.37,235.04L238.69,234.80L238.59,234.57L237.96,234.31L237.94,234.28L237.69,233.96L237.66,233.95L237.14,233.63L236.75,233.53 "/><path d="M244.25,238.62L244.70,238.51L244.69,238.27L245.00,238.34L245.24,238.51L245.62,238.55L246.23,238.97L246.53,239.45L246.59,239.53L246.84,239.67L246.98,239.75L247.15,239.65L247.40,239.51 "/><path d="M312.55,256.17L312.98,256.30L313.32,256.76L313.69,257.25L314.52,258.37L315.03,258.68L315.55,259.00L315.68,259.40L316.84,260.24L317.87,261.27 "/><path d="M200.53,224.99L200.02,224.94L199.81,224.84L199.75,224.81L199.61,224.88L199.22,225.09L198.94,225.23L198.44,225.49 "/><path d="M177.43,219.42L176.85,219.19L176.68,218.60L176.88,218.35L176.14,217.30L175.62,217.18L175.57,216.96L175.51,216.65L175.68,216.45L175.58,216.19L175.26,215.98L175.45,215.68L175.28,215.51L174.95,215.48L174.51,215.22L174.65,215.00L175.11,214.93L175.24,214.67L175.81,214.62L175.92,214.51L175.62,214.28L175.56,214.04L175.09,213.84L175.11,213.63L175.06,213.61L174.83,213.52L174.81,213.23L174.52,213.10L174.91,212.97 "/><path d="M287.15,249.51L287.27,249.75L287.30,249.82L287.15,249.90L287.08,249.93L286.36,249.91L285.96,249.90L284.91,250.04L284.90,250.05L284.76,250.16L284.43,250.43L284.31,250.53L283.47,250.82L282.46,251.07L282.11,251.12L280.86,251.31 "/><path d="M281.57,247.15L281.37,247.35L280.39,248.35L280.73,249.29L280.27,249.70L280.33,250.01L280.68,250.53L280.84,250.76L280.86,251.31 "/><path d="M589.39,343.23L589.53,343.53L589.24,344.43L589.05,344.56L588.28,344.64L588.29,345.42L588.29,345.71L588.08,346.07L588.14,346.25L588.23,346.51L588.08,346.75 "/><path d="M306.92,259.79L307.26,259.32L307.24,259.05L307.59,258.76L308.79,258.37L308.54,258.16L308.82,257.97L309.28,257.89L309.39,257.61L309.72,257.62L310.26,257.15L310.70,256.35L310.94,256.21L311.29,256.17L311.96,256.40L312.29,256.39L312.55,256.17 "/><path d="M320.25,262.28L320.17,262.73L320.44,263.17L320.91,263.39L320.94,263.55L320.51,264.00 "/><path d="M588.08,346.75L588.10,347.53 "/><path d="M320.51,264.00L319.56,264.02L319.47,263.93 "/><path d="M170.01,218.66L169.67,218.44L168.62,218.18L168.51,218.07L168.23,218.11L167.77,218.48L168.32,218.85 "/><path d="M373.63,276.36L372.53,276.24L372.42,276.17L372.06,275.96L371.88,275.85L371.15,275.62L370.42,275.40L369.45,274.64L369.29,274.52L369.05,274.34L368.66,274.28L368.31,274.45L368.34,274.85L368.13,275.06L367.50,275.38L366.93,275.53L366.22,275.34L365.55,275.53L364.91,275.49L364.42,275.62L363.54,275.52L362.92,275.22L362.72,274.97L362.68,274.92L362.77,274.65L363.08,274.39L362.49,274.16L362.30,274.08L361.42,273.98L361.03,273.76L360.68,273.22L360.58,273.06L360.14,272.79L359.80,272.75L359.37,272.81L358.68,273.10L357.98,273.16L357.19,273.09L355.94,273.28L355.43,273.19L353.69,273.44L353.59,273.42L352.39,273.15L352.06,273.16L351.69,273.26L351.15,273.40L350.90,273.62L350.61,273.62L350.39,273.74L349.64,273.55 "/><path d="M349.64,273.55L349.50,273.43L349.45,273.39L348.80,273.24L348.33,273.01L348.32,273.00L348.30,272.95L347.91,272.39L347.98,272.11L347.67,271.76L347.64,271.30L347.99,270.83L346.99,269.61L346.57,269.76L345.78,269.46L346.09,268.97L346.19,268.81L345.99,268.49L345.51,268.15 "/><path d="M320.51,264.00L320.47,264.20L320.46,264.25L320.91,264.85 "/><path d="M610.85,355.34L610.35,354.71L609.97,354.23L609.34,354.15L608.92,353.90L608.93,353.61 "/><path d="M295.86,257.32L295.23,256.84L294.64,256.57L294.05,256.71L293.69,256.63L293.68,256.59L293.32,255.45L292.91,254.12 "/><path d="M249.42,243.36L249.32,242.84L248.83,242.54L248.97,242.33L248.38,242.16L248.33,242.01L247.92,241.95L247.46,241.20L247.86,240.75L247.49,240.44L247.82,240.15L247.54,239.72L247.40,239.51 "/><path d="M197.67,219.65L197.21,219.74L197.35,220.03L197.24,220.26L197.22,220.30L195.99,221.01L195.13,221.26L194.73,221.07L194.52,221.08L194.50,221.33L193.17,222.00L192.95,221.91L192.58,222.01L192.25,221.91L191.32,222.17L191.10,222.45L191.25,222.73L190.86,222.96L190.39,223.07L189.91,223.44L189.23,223.62L188.60,223.97L188.08,224.26L187.20,224.44L185.69,224.32 "/><path d="M230.69,231.01L230.85,231.14L231.11,231.36L232.17,231.29L232.26,231.34L232.37,231.41L232.20,231.67L232.04,231.92L231.52,232.18L231.80,232.45L231.28,232.78L230.86,232.80L230.56,232.68L230.28,232.73L229.84,233.13L229.88,233.39L226.81,234.70L226.11,234.96L224.33,235.22L222.87,235.44L222.46,235.34L221.90,235.03L221.79,234.85L221.41,234.82L220.83,234.78 "/><path d="M249.42,243.36L249.02,243.40L248.67,243.13L248.52,243.17 "/><path d="M682.53,372.12L680.96,371.92L680.81,371.96L680.54,372.05L679.92,371.98L679.88,371.97L679.20,372.19L679.08,372.12L678.37,371.73L677.83,371.62L677.82,371.62L675.44,371.59L675.33,371.59L673.53,373.00L673.32,373.17L673.07,373.36L673.02,373.40L672.90,373.50L672.65,373.50L672.49,373.50L672.48,373.50L671.81,373.30L671.68,373.26L671.68,373.26L671.63,373.29L671.24,373.50L671.01,373.62L670.62,373.63L670.43,373.63L670.18,373.63L669.19,373.64L668.44,373.72L667.80,373.80L667.72,373.81L667.47,373.84L667.42,373.85L667.07,373.79L666.91,373.76L666.58,373.54L665.95,373.10L665.46,372.63L665.42,372.58L665.28,372.46L665.16,372.34L664.19,371.40L663.02,370.60L662.93,370.54L662.09,370.12L661.84,369.88L661.78,369.82L661.65,369.69L660.27,369.63L660.11,369.60L659.45,369.50L659.18,369.46L658.86,369.31L658.58,369.18L658.49,369.08L657.35,367.89L656.60,367.99 "/><path d="M599.39,352.61L599.53,352.48L599.83,352.21L599.72,351.84L600.05,351.30L600.15,351.12L600.39,350.27L600.40,350.27L600.56,350.11L600.87,349.79L601.94,349.71L602.54,349.34L603.79,349.06L604.89,348.66L605.21,348.54L605.74,348.50L606.23,348.73L606.63,348.92L607.02,348.99L607.43,349.37L607.64,349.20L607.91,349.00L608.90,348.88L609.57,348.80L611.11,349.30L611.15,349.32L611.30,349.60L611.22,349.74L611.15,349.84L611.67,350.72L611.95,350.93L612.00,350.96L612.58,351.02L613.17,351.43L613.26,351.60L613.58,352.13L613.66,352.38L613.38,353.14L613.58,353.62L613.58,353.63 "/><path d="M588.08,346.75L587.83,346.77L586.81,347.95L586.83,348.17L586.90,348.67L586.56,349.38 "/><path d="M170.36,221.22L170.82,220.98L170.90,220.79 "/><path d="M612.37,357.66L612.81,357.14L612.61,356.93 "/><path d="M252.52,245.92L253.43,245.62L253.48,245.60L253.20,245.11L253.51,244.95L254.17,244.93L254.49,245.16L254.83,245.17L255.66,244.98L255.56,244.72L255.64,244.66L255.75,244.57L256.28,244.60L256.41,244.49L255.85,243.95L256.58,243.87L257.35,243.54L256.41,243.14L256.23,242.87L255.96,242.46L256.52,242.23L256.39,241.73L256.07,241.43L255.50,240.91L256.03,240.56L255.49,240.07L255.83,239.62L255.39,239.06L254.73,238.72L254.77,238.27L255.35,238.37L254.73,237.82 "/><path d="M249.42,243.36L249.94,243.31L250.21,243.75L249.40,244.33L249.55,244.70L251.70,245.45L252.31,245.51L252.62,245.67L252.52,245.92 "/><path d="M377.27,280.46L376.89,280.35L375.87,280.07L374.63,280.07L374.23,280.00L374.07,279.97L372.93,279.45L371.45,279.40L369.85,278.94L368.82,278.97L367.62,278.70L367.15,278.66L365.49,278.48L363.89,279.05L363.84,279.07L363.32,279.54L363.02,279.52L362.58,279.50 "/><path d="M299.44,260.60L298.96,259.72L299.17,259.39L299.08,258.94L298.59,258.65L298.05,257.75L296.61,257.94 "/><path d="M220.83,234.78L220.76,235.01L220.89,235.14L221.06,235.32L221.02,235.63L221.38,235.90L221.23,236.27L220.24,236.41L220.31,236.76 "/><path d="M599.39,352.61L599.31,352.59L599.02,352.54L598.86,352.67L598.78,352.73L598.67,352.83L597.50,353.08L597.12,353.51L596.80,353.46L596.84,353.05L596.54,352.71L596.47,352.01L596.82,351.49L596.61,351.17L596.58,350.76L596.47,350.72L595.17,350.25L594.74,350.10L594.51,349.89L594.35,349.91L593.94,349.94L592.96,349.50L591.76,349.34L590.67,348.89L590.53,348.83L589.86,348.25L589.60,348.11L589.11,347.84L588.77,347.74L588.73,347.73L588.10,347.53 "/><path d="M229.22,229.81L229.06,229.96L229.18,230.36L229.03,230.43L228.43,230.35L228.22,230.00L227.82,229.92L227.58,230.23L227.57,230.56L227.29,230.74L226.55,230.68L225.46,230.14L225.19,230.27L224.92,230.64L224.88,230.68L224.39,230.87L224.49,231.16L224.53,231.26L224.44,231.47L222.68,231.77L222.17,231.77L220.94,231.96L220.32,231.92L219.95,231.90L219.38,231.67L219.31,231.10L219.09,230.97L218.71,230.98L218.68,231.00L218.63,231.04L218.56,231.08L218.24,231.30L217.68,231.14L216.93,231.19L216.73,231.31L216.42,231.28L216.20,231.10L215.54,231.05L215.03,231.11L215.06,230.74L215.06,230.73L214.62,230.81L214.10,230.90L213.70,230.88L213.26,230.22L213.48,229.94L212.89,229.56L212.47,229.81L211.99,229.91L211.69,229.82L211.68,229.80L211.76,229.65L211.72,229.61L211.61,229.48L211.68,229.38L211.76,229.27L211.59,229.15L211.26,229.25L210.84,229.11L209.82,229.73L208.76,230.07L208.57,230.18L208.43,230.26L208.41,230.27L208.16,230.31L207.83,230.25L207.49,230.19L207.32,230.33L207.23,230.77L206.17,231.43L205.65,231.30L205.56,231.13L205.89,230.93L205.54,230.71L205.12,230.69L205.11,230.54L205.52,230.12L205.46,229.78L205.40,229.44L205.51,229.18L204.63,229.45L204.47,229.70L203.98,229.60L203.58,229.68L203.38,229.54L203.14,229.56L202.58,229.73L202.47,230.07L201.95,230.14L201.63,230.10L201.40,230.28L201.01,230.19L200.68,230.36L200.12,230.35L199.70,230.35L199.43,230.44L199.17,230.52L198.56,230.25L198.75,229.99L197.59,229.65L197.67,229.40L196.98,228.86 "/><path d="M352.66,275.86L352.64,276.06L353.14,276.59L353.65,276.88L354.06,276.95L355.69,277.74L357.26,278.10L358.58,278.39L359.24,278.99L359.38,279.05L359.95,279.32L362.58,279.50 "/><path d="M241.16,243.29L240.45,242.75L240.50,242.48L241.04,242.50L241.10,242.11L241.57,241.92L241.03,241.38L240.82,241.17L240.93,240.84L241.37,240.77L241.41,240.71L241.72,240.30L241.68,240.21L241.53,239.85L241.09,239.67L241.41,239.46L241.91,239.56L242.15,239.61L243.02,239.35L243.47,239.38L243.68,239.32L244.04,239.20L244.26,239.07L244.14,238.68L244.25,238.62 "/><path d="M299.84,261.16L300.58,260.81L301.09,260.76L301.12,260.47L301.17,260.47L301.52,260.51L301.72,260.67L302.18,260.65L302.52,260.27L303.05,260.07L303.51,260.03L304.23,260.17L304.58,260.12L304.73,260.10L304.90,259.95L305.31,259.94L305.76,260.69 "/><path d="M178.87,219.88L179.00,219.75L178.69,219.58L178.66,219.33L178.85,218.98L178.47,218.63L178.75,218.37L179.78,218.31L180.93,219.06L182.31,220.30L182.10,220.48L181.65,220.84L181.49,220.98L181.51,221.11L182.32,221.50L184.14,221.78L184.22,221.83L184.24,221.84L184.52,222.02L183.73,222.45L183.43,222.53L182.64,222.53L182.20,222.87L181.46,222.98L178.41,223.43L177.72,223.25L177.33,223.39L176.72,223.14L176.54,223.20L176.34,223.09L174.48,223.25L174.11,223.15L173.91,223.22L173.81,223.26 "/><path d="M321.06,265.37L321.22,265.75L319.46,266.25L319.08,266.61L319.01,267.08 "/><path d="M310.21,260.61L310.34,260.76L311.12,260.70L311.61,260.77L312.24,261.10L312.46,261.43L312.32,261.72L312.56,262.55L312.59,262.65L312.79,262.85L313.55,263.16L314.22,263.81L314.11,264.03L314.25,264.18L314.75,264.33L315.32,264.73L315.70,264.99L316.29,265.24L316.60,265.77L317.06,266.00L317.65,266.06L317.89,266.34L318.25,266.76L319.01,267.08 "/><path d="M168.70,222.46L168.86,222.31L169.75,221.50 "/><path d="M319.55,267.95L319.01,267.08 "/><path d="M171.87,223.50L172.72,223.49 "/><path d="M186.93,228.01L186.66,227.79L185.88,227.65L186.16,227.27L185.77,227.01L184.89,225.31L183.74,224.63L182.96,224.53L182.40,224.57L181.87,224.68L181.20,225.08 "/><path d="M586.56,349.38L585.95,349.62L585.48,350.05L584.69,350.77L584.06,351.06L583.80,351.18L583.73,351.21 "/><path d="M288.87,259.74L289.57,259.79L290.13,260.20L290.46,260.25L291.04,260.21L291.46,260.17L291.80,259.89L291.75,259.63L291.73,259.49L292.37,259.35L293.51,259.41L294.10,259.84L295.01,260.02L295.75,260.48L296.11,260.59L296.30,260.64L296.66,260.59L297.19,259.94L297.36,259.94L298.20,259.95L298.65,260.44L298.52,260.78L298.59,260.88L298.88,261.28L299.28,261.38 "/><path d="M285.07,258.87L285.15,258.83L285.49,258.68L285.60,258.62L285.86,257.99L285.72,257.48L285.75,257.40L286.26,256.35L285.98,255.51L286.08,254.93L286.38,254.48 "/><path d="M288.87,259.74L288.87,259.50L288.71,259.45L287.87,259.56L287.66,259.69L287.61,259.72L287.03,259.76L286.00,259.39L285.59,259.34L285.07,258.87 "/><path d="M254.65,249.98L254.92,249.91L256.91,249.37L257.12,249.17L257.53,249.10L257.89,249.14L258.59,249.75L259.01,249.89L259.54,249.93L259.99,249.97L260.54,249.84L260.78,249.86L261.09,250.22L261.70,250.91L262.59,251.04L262.67,251.05L263.65,250.95L264.07,251.27L264.53,251.34L264.83,251.64L265.16,251.77L265.20,252.04L265.21,252.12 "/><path d="M748.83,397.06L746.88,397.00L745.83,397.69L745.65,397.70L745.13,398.36L744.65,398.55L744.59,399.48L744.06,399.67L743.87,399.91L743.91,400.09L744.09,400.88L744.10,400.89L743.88,401.02L743.70,401.13L743.54,401.23L743.52,401.24L743.38,401.54L743.44,401.83L743.47,401.97L743.58,402.09L743.72,402.25L744.66,403.29L744.89,403.55L745.12,403.81L745.19,403.89L745.28,404.48L745.87,405.23 "/><path d="M288.87,259.74L288.49,259.64L288.29,259.70L288.05,259.96L287.75,259.95L287.57,259.95L286.87,260.17L286.74,260.14L286.87,259.96L286.64,259.87L286.03,259.90L285.73,259.53L285.43,259.58L284.63,259.35 "/><path d="M715.12,394.68L715.06,394.77L714.91,394.98L714.74,395.02L713.91,395.25 "/><path d="M285.07,258.87L284.71,258.97L283.52,258.78L283.14,258.54L282.88,258.50L282.71,258.47L282.00,258.70L281.90,258.73L281.88,258.71L281.60,258.39L280.63,258.41L280.21,258.21L279.92,258.18L279.52,258.14L278.60,258.06L278.27,257.91L278.09,257.83L278.13,257.53L278.64,257.27L278.81,257.03L278.89,256.93L278.73,256.75L278.36,256.31L278.33,255.52L278.72,255.12L279.25,254.86L279.27,254.80L280.15,252.62L280.82,251.76L280.86,251.31 "/><path d="M282.99,259.66L283.44,259.50L283.42,259.27L284.20,259.19L284.63,259.35 "/><path d="M181.16,229.16L180.64,228.51L180.35,228.38L180.45,228.02L180.02,227.86 "/><path d="M247.72,248.68L248.17,248.91L248.61,249.48 "/><path d="M615.55,364.17L616.11,364.06L616.43,363.82L616.60,363.70L616.79,363.71L616.95,363.72L617.09,363.60L616.97,363.43L617.28,363.26L617.74,363.01L617.97,362.88L618.11,362.87L618.46,362.86L618.57,362.93L618.67,362.98L619.22,362.88L619.62,362.91L619.97,362.75L621.19,363.03L621.82,363.04L621.96,363.04L621.99,363.04L622.03,363.08L622.19,363.22L622.33,363.24L622.69,363.27L622.85,363.50L623.18,363.59L623.20,363.57L623.57,363.37L623.68,363.36L624.36,363.30L624.85,363.50L625.08,363.59L625.41,363.55L626.20,363.44L626.25,363.29L625.92,363.21L626.43,362.66L626.37,362.62L625.94,362.35L626.15,361.80L626.22,361.63L626.61,361.24L627.09,360.76L627.20,360.65L627.50,360.08L627.62,359.85 "/><path d="M627.38,354.31L627.11,354.41L626.64,354.36L626.48,354.45L626.68,354.76L626.54,354.95L625.21,355.51L625.16,355.96L625.13,356.27L624.90,356.54L624.80,356.55L624.68,356.56L624.40,356.58L624.15,356.44L623.88,356.44L623.71,356.31L623.91,356.19L623.31,356.03L623.02,355.81L622.68,355.55L622.49,355.54L622.34,355.53L621.42,355.57L621.05,355.72L620.93,355.77L620.37,355.99L620.05,356.27L620.04,356.27L619.57,356.27L619.11,356.61L619.01,356.87L619.23,357.08L619.28,357.13L619.03,357.26L619.02,357.42L619.01,357.54L619.00,357.68L618.85,357.95L618.57,358.47L618.56,358.47L618.02,358.58L618.20,358.75L618.34,358.87L618.34,359.06L618.34,359.06L618.35,359.22L618.26,359.30L618.14,359.39L617.30,359.29L617.26,359.29L617.27,359.56L617.27,360.19L617.28,360.58L617.01,360.72L616.95,360.75L617.14,360.95L617.15,360.96L617.77,361.06L617.16,361.48L616.78,361.75L615.85,362.41L615.70,362.51L615.54,362.78L615.49,362.85L615.55,362.89L615.86,363.16L615.85,363.27L615.85,363.35L615.84,363.39L616.06,363.63L615.99,363.77L615.55,363.72L615.55,364.17 "/><path d="M252.52,245.92L252.70,246.41L252.32,246.60L252.41,246.84L251.94,247.25L251.53,247.36L251.37,247.62L251.52,247.87L251.54,247.90L250.94,247.99L250.99,248.09L251.20,248.54L252.18,249.43L252.23,249.68L251.75,249.77L251.19,249.87L251.08,249.78L250.55,249.36L250.62,248.98L250.00,248.47L249.73,248.45L249.71,248.64L249.28,248.57L249.02,248.73L249.17,248.94L249.65,249.59L249.46,249.86L249.23,249.86L248.99,249.50L248.61,249.48 "/><path d="M154.67,220.76L154.85,221.02L155.24,221.21L155.10,221.41L155.85,221.46L156.12,221.84L156.58,222.06L156.59,222.06L156.84,222.18L156.93,222.17L157.57,222.17L158.05,222.49L158.35,222.57L158.60,222.64L158.64,222.80 "/><path d="M230.34,244.62L230.60,244.55L231.54,243.42L230.88,242.95L230.71,242.92L230.10,242.84L229.84,242.64L229.86,242.37L230.41,242.12L230.88,242.13L231.49,242.36L231.93,242.41L232.19,242.29L232.02,241.80L231.65,241.65L231.34,241.32L231.04,241.25L230.36,241.36L229.91,240.96L229.31,240.69L228.68,240.61L228.26,240.41L228.11,240.34L227.57,240.28L227.21,239.82L226.76,239.58L226.52,239.20L226.96,239.12L226.76,238.85L226.68,238.74L226.53,238.53L224.37,238.38L223.87,238.59L223.25,238.59L222.54,238.10L221.84,237.86L221.35,237.81L220.31,236.76 "/><path d="M334.78,276.50L334.27,276.15L333.79,275.09L333.85,274.39L334.33,273.47L333.90,270.87L334.31,270.47L333.99,269.88L334.08,269.61L334.42,269.46L333.89,269.00L333.84,268.85L333.82,268.78L334.09,268.48L334.39,268.40L334.44,268.22L334.22,268.01L332.86,267.56L332.83,267.41L332.80,267.27L332.40,266.77L331.69,266.45L331.54,266.28L331.26,265.96L331.25,265.63L331.58,265.43L331.80,264.53L331.35,264.02L331.86,263.44L331.83,263.26L332.22,263.01L332.11,262.78L331.17,262.26L330.92,262.12L330.38,262.07L329.86,261.77L329.12,261.53L329.11,261.22 "/><path d="M349.64,273.55L349.51,273.98L349.51,274.03L349.62,274.88L349.47,275.22L349.28,275.65L349.55,276.48L349.33,276.87L348.09,277.01L346.54,277.01L345.26,276.83L344.99,276.90L344.68,277.39L344.41,277.47L343.32,277.37L341.95,277.64L341.73,277.73L340.32,278.29 "/><path d="M615.55,364.17L614.81,364.33L614.50,364.26L614.24,363.93L613.73,363.89L613.43,363.97L613.19,363.92L612.74,363.82L612.26,363.86L611.92,363.66L611.72,363.53L611.37,363.60L611.03,363.38L610.09,363.31 "/><path d="M610.09,363.31L609.84,363.24L609.98,362.88L609.23,362.11L608.78,361.96L609.14,361.69L609.38,361.51L609.53,361.40L609.73,361.25L609.94,361.09L610.15,360.77L610.18,360.73L610.61,360.09L610.58,360.04L610.35,359.62L610.44,359.59L610.77,359.45L610.88,359.21L610.89,359.18L611.04,358.84L611.71,358.29 "/><path d="M340.32,278.29L339.95,278.31 "/><path d="M339.95,278.31L339.37,277.78L337.94,277.60L337.56,277.22L337.50,277.16L335.36,276.78L334.78,276.50 "/><path d="M599.39,352.61L599.08,352.94L599.10,353.37L598.14,354.32L598.17,354.51L598.21,354.67L597.93,355.09L597.92,355.10L597.23,355.43L596.89,355.74L595.77,356.12L595.51,356.44L595.51,356.45L595.77,357.02L595.79,357.56L596.60,358.57L596.62,358.76L596.03,358.88L594.79,359.13L594.35,359.08L593.91,359.02L593.86,359.01L593.39,358.95 "/><path d="M362.58,279.50L362.07,279.86L361.97,280.14L361.67,280.21L361.03,280.18L360.74,280.07L359.26,280.26L359.17,280.26L357.86,280.25L356.78,281.15L356.39,282.61L356.36,282.69L356.30,282.94L356.30,283.18L357.55,284.46L358.17,284.65L358.19,284.67L358.27,284.71L358.39,284.79L358.72,285.01L359.54,285.18L361.46,285.38 "/><path d="M276.14,259.72L276.48,259.39L277.00,259.35L277.15,259.34L277.92,258.85L278.60,259.30L279.30,259.27L279.83,259.25L280.10,259.29L280.33,259.33L281.28,259.47L281.40,259.72L282.03,259.92L282.99,259.66 "/><path d="M274.58,258.59L274.90,258.49L275.35,258.53L275.36,258.81L276.14,259.72 "/><path d="M190.63,234.12L190.56,233.88L190.94,233.56L190.99,233.52L191.36,232.67L191.79,232.43L192.31,232.33L192.73,232.03L192.60,231.74L192.04,231.68L191.78,231.46 "/><path d="M157.95,224.32L158.41,224.51L158.81,224.56L159.18,224.47L160.18,224.61L161.83,224.40L162.05,224.09L161.52,223.75L161.46,223.48L161.15,223.48 "/><path d="M162.55,226.27L162.46,226.19L162.73,225.98L162.68,225.86L163.13,225.68L163.62,224.90L163.86,224.03L164.13,224.07L164.35,224.47L165.12,224.59L165.44,224.83L166.48,224.96L166.62,225.13 "/><path d="M193.33,235.62L193.60,235.39L194.14,235.30L194.63,235.09L194.83,234.91L195.13,234.65L197.81,234.73L198.72,234.93L199.61,234.80L199.99,234.87L200.48,235.12L200.85,235.12L201.27,234.98L201.81,234.62L202.34,234.78L202.38,234.79L202.90,234.47L202.94,234.44L203.20,234.43L203.45,234.62L204.12,234.63 "/><path d="M593.39,358.95L593.01,359.42L592.97,359.46L592.74,360.10 "/><path d="M583.73,351.21L583.78,351.25L585.02,352.29L585.79,352.22L585.97,352.39L586.81,353.14L586.79,353.25L589.46,354.72L589.58,354.92L589.45,355.78L589.78,356.14L590.12,356.31L590.24,356.37L590.38,356.40L590.91,356.49L591.21,356.75L591.82,357.00L592.01,357.38L592.06,357.47L592.17,357.70L592.30,357.95L592.32,357.98L592.41,358.16L592.43,358.21L592.36,358.40L592.35,358.43L592.29,358.60L592.49,358.71L592.57,358.75L592.57,358.75L592.61,358.77L593.08,359.02L592.90,359.22L592.70,359.46L592.37,359.45L592.51,359.69L592.53,359.73L592.74,360.10 "/><path d="M326.90,263.36L327.83,263.70L327.86,263.71L328.24,264.14L328.09,264.41L328.35,264.87L328.26,265.20L328.37,265.41L328.58,265.82L328.17,266.31L327.85,266.70L326.93,267.02L325.71,267.25L325.26,267.78L325.28,268.11L325.28,268.24L325.30,268.53L325.08,268.91L324.50,269.30L324.54,269.45L325.37,270.02L325.48,270.10L325.72,270.14L325.97,270.17L326.59,270.27L326.94,270.53L326.91,270.86L326.87,271.17L327.15,271.52L327.14,272.52L327.10,272.57L326.98,272.77L327.22,272.89L327.30,273.27L327.25,273.77L327.21,274.24L327.92,274.93L328.18,275.92L328.63,276.34L329.54,277.18L329.97,277.39 "/><path d="M329.97,277.39L330.63,277.90L331.08,277.93L331.55,278.15L331.79,278.25L331.85,278.24L332.96,277.91L333.19,277.72L333.30,277.62L333.75,277.51L333.33,277.22L333.72,276.64L334.78,276.50 "/><path d="M151.75,221.46L152.09,221.68L152.09,221.77L152.10,222.21L152.54,222.46L152.47,222.94L152.16,223.17L152.17,223.48L152.52,224.02L153.03,224.12 "/><path d="M303.45,268.42L303.26,268.47L303.01,268.53L302.97,268.53L302.87,268.56L302.68,268.60L302.67,268.61L302.32,268.88L301.64,268.81L301.05,268.74L299.82,268.88L298.07,268.53L297.35,268.29L296.75,267.01L296.63,266.76L296.08,266.17L295.82,265.63L296.01,265.42L296.11,265.32L296.25,265.17L296.45,264.69L296.29,264.29L296.26,264.25L296.06,264.03L295.38,264.08L295.38,263.79L295.27,263.56L294.64,262.32L294.28,261.95L293.46,261.83L290.83,261.02L290.17,260.82L288.87,259.74 "/><path d="M174.47,231.24L174.20,231.08L173.87,230.36L173.87,230.36L173.53,230.27L172.94,229.82L173.10,229.56L172.60,229.51L171.86,228.60L171.67,228.69L171.16,228.66L170.80,228.32L170.31,228.31L170.25,228.17L169.76,227.99L169.29,227.66L168.66,227.59L168.11,227.25L168.07,226.98L168.35,226.83L168.11,226.59L168.25,226.40L168.02,226.04L167.74,225.61L167.91,225.40L168.21,225.29L169.24,225.33 "/><path d="M731.97,392.58L731.89,392.68L731.22,393.56L729.55,395.75L729.05,398.16L728.61,400.26L728.40,401.28L728.34,401.57L728.32,401.65L728.26,401.96L727.94,402.58L727.64,403.16L727.45,404.01L727.44,404.08L727.18,405.28 "/><path d="M727.18,405.28L728.80,405.40L729.92,405.89L732.75,406.19L733.01,406.21L733.39,406.25L733.72,406.55L733.96,406.58L734.31,406.28L735.13,406.64L736.17,407.52L736.33,407.82L736.39,407.93L737.47,408.98L738.22,409.26 "/><path d="M371.90,291.95L371.73,291.87L371.41,292.00L371.09,291.79L370.55,291.77L370.13,291.56L369.58,291.28L368.73,290.41L367.70,289.75L367.34,289.24L366.13,288.55L365.45,287.83L364.97,287.29L364.37,286.20L364.55,285.85L364.05,285.72L362.81,285.41L362.40,285.01L361.84,284.45 "/><path d="M329.97,277.39L329.28,277.50L329.02,277.30L327.83,277.06L326.75,277.46L326.22,278.03L326.20,278.05L326.20,278.05 "/><path d="M299.17,269.81L299.48,269.68L300.94,269.71L301.18,269.54L301.56,269.53L302.00,269.36L302.06,269.34L302.43,269.37L302.64,269.17L302.68,269.15L303.01,269.02L303.48,268.82L303.61,268.77L303.50,268.54L303.45,268.42 "/><path d="M340.32,278.29L339.99,278.55L340.51,278.96L340.60,279.36L340.44,279.64L342.29,281.03L341.74,281.59L341.87,281.75L342.28,281.81L342.47,282.20L342.31,282.69L343.13,283.03L343.90,283.03L343.98,283.03L344.63,283.47L345.26,284.09 "/><path d="M245.83,253.75L246.17,253.63L246.04,253.31L246.16,253.09L245.85,252.70L246.47,252.22L246.99,252.18L247.27,252.35L247.49,252.30L247.69,252.05L247.32,251.69L247.10,251.48L247.32,251.33L248.05,251.20L247.63,250.79L248.06,250.75L248.14,250.63L247.88,250.39L248.33,250.15L247.99,249.59L248.61,249.48 "/><path d="M243.63,245.43L241.92,245.28L241.59,245.42L241.49,245.62L241.83,246.02L241.66,246.10L241.13,246.13L240.88,246.42L240.41,246.46L239.80,246.14L239.19,245.97L239.33,246.46L239.10,246.68L238.68,246.67L238.43,246.85L238.39,246.98L238.48,247.08L238.72,247.36L238.66,247.69L238.37,248.25L238.04,248.49L238.11,248.87L237.91,249.18L237.18,249.13L237.03,249.12L236.52,249.35L236.86,249.69L237.54,250.07L237.78,250.09L237.80,250.16L237.94,250.62L239.24,251.94 "/><path d="M319.43,268.48L319.63,268.77L319.73,268.92L319.59,269.07L319.10,269.57L319.18,269.91L318.63,270.50L318.08,271.65L318.22,272.05L318.09,272.39L317.73,273.36L317.80,273.65L317.30,274.19L317.36,274.27L317.77,274.88L317.49,275.40L317.67,275.63L318.23,275.58L318.59,275.65L319.80,275.86L321.17,276.93L321.96,277.26L322.07,277.34L322.69,277.76L323.68,277.87L324.52,277.96 "/><path d="M146.13,224.04L146.26,224.07L147.36,224.31L147.62,224.43L147.66,224.44L148.21,224.68L148.75,224.67L149.81,224.47L150.26,224.54L150.54,224.88L153.66,225.68L154.11,225.70L154.78,225.96L155.17,225.69L155.64,225.66L155.93,225.82L156.14,225.81L156.42,225.64L157.11,225.59L157.76,225.63L157.91,225.70L158.43,225.91 "/><path d="M245.83,253.75L245.64,253.56L245.20,253.48L244.95,253.27L245.07,252.87L244.68,252.61L243.90,252.65L242.80,253.22L242.37,253.15L241.79,252.77L240.95,252.74L240.33,252.36L239.74,252.32L239.37,252.04L239.24,251.94 "/><path d="M162.03,228.54L161.58,228.77 "/><path d="M656.60,367.99L656.45,367.16L655.74,366.63L655.44,366.41L654.66,365.84L654.06,365.40L653.92,365.30L652.22,365.26L651.40,365.07L650.16,365.26L650.13,365.26L650.11,365.26L649.70,364.98L649.70,364.98L649.69,364.97L649.69,364.96L649.62,364.56L649.60,364.44L648.73,363.91L648.66,363.82L648.04,363.05L647.46,362.62L647.36,362.60L646.81,362.52L646.68,362.50L646.60,362.43L646.42,362.28L646.11,362.18L645.81,362.08L645.59,362.00L645.42,361.87L645.14,361.63L645.07,361.07L644.60,360.20L643.17,359.63L641.31,358.25L640.99,358.16L640.78,358.23L640.48,358.34L640.39,358.37L639.55,358.38L638.10,358.88L637.11,358.84L636.66,358.82L636.10,358.72L634.81,358.50L634.73,358.48L634.44,358.64L634.41,358.73L634.06,359.95L634.32,360.62L634.32,361.19L634.24,361.35L633.95,361.92L633.41,362.48L633.23,362.67L632.61,362.96L632.48,363.01L629.65,363.60L629.40,363.71L629.12,363.84L628.91,364.04L628.56,364.37L628.35,364.41L628.05,364.46L627.68,364.45L627.24,364.44L626.98,364.43L625.63,364.39L625.48,364.44L624.62,364.72L624.33,364.92L624.21,365.01L624.16,365.15L624.15,365.18L623.97,365.70L623.84,366.11L623.84,366.11L623.28,366.56L623.23,367.13L623.22,367.17L623.46,367.37L623.63,367.51L623.58,367.55L623.45,367.66L623.07,367.98L623.03,368.01L622.95,368.14L622.76,368.44L622.78,368.96L622.79,369.39L622.80,369.63L622.62,369.90L622.29,370.38L622.25,370.44L621.68,370.61L621.16,370.76L619.71,370.67L618.42,370.75L618.24,370.77L617.95,370.79L617.19,370.98 "/><path d="M565.86,351.37L566.18,351.05L566.23,350.79L566.02,350.38L566.50,350.22L566.85,350.10L567.03,350.03L567.04,350.10L567.09,350.40L567.46,350.30L567.83,350.51L568.15,350.70L568.17,350.95L568.84,351.17L569.39,351.60L569.62,352.17L569.96,352.36L570.99,353.46L571.21,353.94L570.83,354.25L570.93,354.84L571.67,355.17L571.83,355.45L571.83,355.45L571.85,355.49L572.08,355.91L572.16,356.05L572.12,356.15L572.08,356.27L572.06,356.35L572.67,357.14L572.73,357.11L572.79,357.07L573.20,356.85L573.22,356.84L573.23,356.58L573.24,356.49L572.80,355.91L572.93,355.45L572.95,355.37L573.01,355.13L572.97,355.07L572.73,354.79L572.61,354.63L572.83,353.77L572.70,353.19L572.69,353.15L572.71,353.12L572.85,352.93L573.58,352.80L573.68,352.78L574.20,352.43L573.98,351.77L573.48,351.08L573.67,350.78L574.03,350.73L574.40,350.54L575.00,350.23L576.02,349.99L577.11,349.40L577.67,349.32L578.00,349.39L579.71,349.71L581.25,349.78L582.89,350.55L583.10,350.65L583.13,350.66L583.42,350.92L583.73,351.21 "/><path d="M592.74,360.10L592.63,360.34L593.35,360.82L593.87,361.15L593.90,361.17L594.16,361.35L594.20,362.07L594.21,362.14L594.31,362.30L594.68,362.93L595.44,363.40L596.05,363.51L596.52,363.80L597.13,363.87L597.48,363.91L597.98,363.97L598.64,364.34L599.07,364.57L600.91,365.29L601.00,365.33L601.73,365.45L602.94,365.66L603.07,365.69L604.35,366.05L605.13,366.04L605.15,366.04L605.69,366.43L606.14,366.47L606.72,366.53L607.30,366.72L607.32,366.73L607.83,367.06L608.00,367.17L608.28,367.35L608.41,367.59L608.44,367.66L608.02,368.21L608.02,368.23L608.20,368.72L608.30,368.98 "/><path d="M282.99,259.66L283.60,260.03L283.75,260.76L284.12,260.96L284.28,261.49L284.14,261.64L284.03,261.76L284.44,262.30L284.95,262.60L285.10,262.98L284.99,263.52L285.72,264.12L285.60,264.41L285.74,264.88L285.77,265.00L285.68,265.13L286.19,265.37L286.89,265.46L287.17,265.79L286.97,266.15L287.02,266.50L287.11,267.10L287.53,267.95 "/><path d="M208.02,235.65L207.83,236.11L207.86,236.49L207.53,236.84L206.50,237.05L206.24,237.27L206.27,237.62L206.14,237.73L205.30,237.99L204.90,238.23L203.73,238.06L203.45,238.12L203.11,238.42L203.06,238.42L202.30,238.41L200.80,238.39L200.46,238.39L200.09,238.24L199.48,238.38L199.05,238.39L198.40,238.68L198.03,239.00L197.77,239.22L197.22,239.43L196.73,239.61L196.25,239.55L195.95,239.68L195.63,239.63L195.28,239.30L194.55,238.99L193.43,239.08L193.18,239.19L192.64,239.10L192.31,238.77L191.19,238.65L191.17,238.55 "/><path d="M617.19,370.98L616.79,371.07L616.64,371.06L616.63,371.06L615.67,371.01L614.82,371.12L614.38,371.04L614.29,371.03L614.14,371.00L613.73,370.94 "/><path d="M610.09,363.31L610.84,363.96L610.84,363.99L610.76,364.31L610.73,364.45L610.88,364.71L610.98,364.88L611.49,364.96L611.93,365.72L612.05,365.77L613.08,366.25L613.12,366.27L613.16,366.40L613.30,366.83L613.45,367.25L613.77,367.64L613.64,368.12L613.57,368.38L613.85,368.69L614.03,368.67L614.17,368.65L614.19,368.64L614.77,368.20L615.07,368.33L615.18,368.37L615.11,368.50L614.70,368.59L614.60,368.76L614.58,368.79L613.97,369.85L613.92,369.94L613.87,370.03L614.02,370.08L614.06,370.04L614.34,369.75L615.32,369.75L615.46,369.85L615.24,369.98L615.34,370.19L615.07,370.53L614.63,370.53L614.28,370.54L614.21,370.59L613.81,370.88L613.73,370.94 "/><path d="M159.96,229.71L159.60,229.53L159.06,229.27 "/><path d="M611.89,370.88L611.99,370.90L612.45,370.97L613.29,370.81L613.73,370.94 "/><path d="M611.89,370.88L610.92,369.76L610.53,369.32L610.19,369.17L609.08,369.06L608.30,368.98 "/><path d="M367.72,293.37L367.46,292.95L367.38,292.83L366.51,292.26L366.42,291.88L364.97,290.74L363.60,290.39L361.88,289.50L361.71,289.48L360.98,289.40L360.78,289.37L360.27,289.11L359.88,288.43L359.31,288.08L359.28,288.06L358.70,287.36L358.62,287.26L358.53,287.16L357.42,286.73L357.12,286.46L357.28,286.13L357.09,285.95L356.63,285.80L356.56,285.78L356.05,285.86L355.42,285.23L354.70,284.92L354.17,284.69L353.38,283.94L351.87,283.21L351.52,282.93 "/><path d="M342.01,285.49L341.92,285.43L341.64,285.24L341.07,285.08L340.08,283.61L339.30,283.30L338.22,282.65L337.80,281.91L337.18,281.51L337.45,281.26L336.48,280.98L336.00,280.84L335.66,280.42L335.72,280.23L335.73,280.17L335.55,279.92L335.41,279.73L335.32,279.37L335.71,278.98L335.90,278.98L337.28,278.97L337.97,278.74L339.51,278.53L339.95,278.31 "/><path d="M157.22,228.99L157.21,228.99L157.19,229.00L157.06,229.00L156.88,228.99L156.80,228.97L156.80,228.97 "/><path d="M209.89,245.88L210.07,245.84L211.45,245.60L212.13,245.36L213.01,245.47L213.88,245.58L214.48,245.58L214.74,245.75L216.31,245.80L216.38,245.80L216.79,245.51L216.66,245.13L216.38,244.86L216.53,244.78L217.76,244.81L218.71,244.95L218.84,244.84L218.61,244.45L218.87,244.36L220.31,244.72L220.61,244.80L220.95,244.74L221.72,244.92L222.13,245.27L222.17,245.29L222.99,245.54L223.59,245.59L223.88,245.49L223.89,245.27L224.65,245.18L224.92,245.14L225.63,245.24L226.10,244.71L225.86,244.35L225.92,244.12L225.25,243.43L225.48,243.22L226.60,243.20L226.77,243.36L227.07,243.40L227.32,243.29L228.10,243.19L228.51,242.84L228.82,242.57 "/><path d="M209.89,245.88L209.96,245.76L210.33,245.18L210.43,245.03L210.43,244.61L210.97,243.71L210.92,243.43L210.62,243.08L210.64,242.88L210.66,242.65L210.40,242.21L210.98,242.01L210.70,241.86L210.82,241.55L211.32,241.36L211.59,241.55L212.00,241.63L212.32,241.86L212.91,241.74L213.09,241.58L213.08,241.56L213.02,241.24L213.70,241.36L214.01,241.42L214.15,241.24L214.02,241.03L213.88,240.81L214.21,240.10L213.81,239.30L214.01,239.00L213.71,238.66L214.71,237.99L215.03,238.14L215.20,238.05L215.22,236.99L215.47,236.78L216.38,236.64L216.81,236.48L217.31,236.58L217.38,236.59L217.74,236.45L218.01,236.51L218.23,236.57L218.41,236.32L218.86,236.35L219.25,236.26L219.57,236.44L219.69,236.51L219.72,236.58L219.83,236.84L220.31,236.76 "/><path d="M704.38,402.87L705.78,402.35L706.63,402.03L707.40,401.11L708.27,401.13L708.36,400.64L709.41,399.88L710.36,400.05L711.35,399.57L712.36,398.51L712.46,397.74L713.12,397.29L713.09,396.94L713.04,396.36L713.07,396.27L713.26,395.76L713.91,395.25 "/><path d="M588.21,364.94L587.82,364.69L587.35,364.38L587.02,363.98L586.70,363.89L586.34,363.51L585.26,362.88L585.23,362.86L584.27,362.30L583.91,362.30L583.83,362.25L583.57,362.11L583.68,361.90L583.70,361.86L583.34,361.37L583.33,361.33L583.32,361.13L583.31,361.01L583.29,360.81L582.84,360.50L582.83,359.94L582.44,359.74L581.47,358.45L581.56,358.21L581.37,357.86L581.20,357.56L581.17,357.43L581.15,357.33L581.04,356.89L581.11,356.58L581.65,356.43L582.06,356.31 "/><path d="M703.72,402.98L704.38,402.87 "/><path d="M608.30,368.98L607.42,368.98L607.15,368.98L606.78,368.99L605.43,368.99L604.21,369.27L603.99,369.32L603.89,369.34L603.59,369.52L602.63,370.10 "/><path d="M225.88,251.77L226.50,251.53L226.86,251.63L227.99,251.25L228.06,251.26L228.45,251.28L229.08,251.58L229.65,251.67L230.61,251.44L231.69,250.97L232.10,250.79L232.12,250.79L232.74,250.77L234.45,251.34L234.69,251.26L235.55,251.35L235.74,251.67L236.19,251.80L237.00,252.34L237.23,252.35L237.48,252.12L237.57,252.04L237.83,251.98L237.81,251.77L238.34,251.76L238.58,251.90L238.81,252.05L239.06,251.98L239.24,251.94 "/><path d="M151.63,229.30L151.46,229.20L151.60,228.98L151.62,228.95L151.44,228.70L152.18,228.45L152.58,228.32L152.90,228.21L153.07,228.21L153.41,228.20L153.68,228.20 "/><path d="M276.14,259.72L276.60,259.97L276.63,259.98L276.73,260.03L277.32,260.11L277.47,260.33L278.35,260.54L278.51,260.66L278.94,260.97L279.17,261.65L279.11,262.28L278.90,262.61L279.28,263.05L279.07,264.31L278.76,264.66L278.35,264.66L278.27,264.88L277.67,265.31L276.05,265.89L275.97,265.92L275.08,266.37L274.97,266.62L274.57,266.68L274.50,267.14L274.92,267.48L275.53,267.64 "/><path d="M207.04,247.01L207.97,246.68L208.64,246.72L209.13,246.35L209.19,246.33L209.63,246.21L209.89,245.88 "/><path d="M176.33,237.84L175.74,236.86 "/><path d="M324.28,283.32L324.89,283.76 "/><path d="M588.21,364.94L588.33,364.93L588.51,364.91L588.59,364.99L589.19,365.52L589.10,366.00L589.10,366.04L589.04,366.33L589.12,367.06L589.18,367.59 "/><path d="M588.21,364.94L588.32,365.14L588.82,365.45L588.78,365.76L588.76,365.91L588.73,366.12L588.88,366.34L588.70,366.88L588.80,367.03L589.18,367.59 "/><path d="M182.95,238.99L182.65,239.01L182.41,238.80L182.03,239.03L181.95,239.07L181.22,239.07L180.43,238.84L180.22,239.09L179.83,238.91L179.39,239.07L178.66,238.81L178.16,238.80L177.69,238.56L177.50,238.26L177.42,238.14L177.23,238.08L176.99,238.00 "/><path d="M565.25,359.98L566.04,359.11L566.20,358.94L566.39,358.07L566.47,357.73L566.48,357.66L567.29,357.46L567.62,357.22L567.53,356.29L567.24,356.07L566.95,355.86L566.96,355.64L567.21,355.43L567.59,355.30L567.96,355.17L568.01,355.15L568.09,355.18L568.98,355.42L569.69,355.15L570.07,355.20L570.42,355.37L570.59,355.61L570.66,355.71L570.73,355.81L570.82,355.94L570.84,355.97L571.38,356.74L571.42,356.80L571.90,357.09L572.53,357.22L572.73,357.27L572.74,357.27L572.75,357.27L572.98,357.57L573.04,357.85L573.13,358.21L572.93,358.41L572.33,358.27L572.24,358.25L572.24,358.53L572.24,358.57L572.32,358.68L572.71,359.24L572.61,359.70L572.60,359.80L573.30,360.64L574.18,361.71L574.31,362.17L574.37,362.39L574.26,362.74 "/><path d="M741.59,419.03L741.77,418.62L741.08,417.92L741.34,417.17L741.21,416.82L741.40,416.60L741.55,416.42L742.02,416.57L742.86,416.49L743.62,416.55L744.94,416.00L745.12,415.74L744.83,415.28L745.15,414.57L744.94,414.34L745.28,414.09L745.34,414.05L745.37,413.94L745.49,413.54L745.37,413.36L746.56,413.04L747.34,412.96L747.42,412.95L747.78,412.92L748.10,412.65L748.88,412.49L748.91,412.48L749.40,412.99L750.28,413.39L751.17,414.15L752.13,414.62L752.19,414.84L753.02,415.13L753.11,415.17L753.69,415.37L754.34,415.91L754.99,416.17L755.06,416.19L755.92,416.45L756.34,416.57L757.18,416.45L757.88,416.08L758.12,416.14 "/><path d="M336.68,288.95L336.20,288.34L335.96,288.03L335.96,287.74L335.97,287.60L335.70,287.30L335.38,286.92L333.67,285.63L332.75,285.28L331.39,285.12L330.40,285.25L329.77,285.09L329.05,284.67L328.26,284.51L327.40,284.47L326.76,284.44L326.53,284.39L326.04,284.26L325.48,283.86L324.89,283.76 "/><path d="M602.63,370.10L602.31,370.30L602.06,370.46L602.03,370.48L601.38,370.58L599.96,370.80L598.87,370.97L597.50,371.54L597.42,371.58L596.60,371.62L596.33,371.55 "/><path d="M260.49,266.21L260.43,265.99L260.91,265.39L260.55,264.77L260.40,264.49L260.72,264.20L260.94,264.13 "/><path d="M727.18,405.28L726.16,409.61L725.61,411.30L726.06,412.49L725.75,413.07L725.67,413.22L725.86,413.61L725.59,414.16L725.87,414.76L725.93,414.89L726.33,415.08L727.92,415.21L728.29,415.24L728.57,415.58L729.20,415.89L729.22,415.90L729.23,415.90L730.79,416.10L731.02,416.25L731.11,416.32L731.40,416.52L731.46,416.54L731.73,416.65L732.24,416.84L732.67,417.01L732.73,417.11L732.77,417.20L732.80,417.24L733.03,417.67L734.24,418.43L734.80,418.26L735.06,418.18L737.50,419.12L737.66,418.90L738.05,418.38 "/><path d="M589.18,367.59L589.33,367.83L589.50,368.12L589.36,368.32L589.16,368.34L588.36,368.44L588.12,368.63L588.09,368.65L587.67,368.97L587.53,369.08L587.19,369.34L586.84,369.61L586.69,369.62L586.47,369.65L586.34,369.66L586.21,369.59L585.97,369.47L585.79,369.51L585.44,369.58 "/><path d="M585.44,369.58L585.79,369.75L585.79,369.75L586.30,370.00L586.61,370.01L586.80,369.95L587.16,369.81L587.22,369.79L587.43,369.72L587.64,369.75L587.59,369.87L587.59,369.87L587.42,370.26L587.55,370.40L587.59,370.45L587.95,370.44L588.03,370.39L588.48,370.13L588.63,370.12L588.70,370.11L588.99,370.10L589.10,370.09L589.65,370.28L589.76,370.22L589.95,370.11L590.13,370.23L590.36,370.38L590.73,370.41L591.00,370.11L591.28,370.13L591.56,370.15L592.37,370.21L593.27,370.61L594.10,370.99L594.66,371.06L595.48,371.15L596.33,371.55 "/><path d="M336.68,288.95L337.41,289.10L338.95,289.43L339.32,289.51L340.15,289.77L340.86,290.56L341.69,291.00L342.13,291.51L344.09,292.49L344.52,293.10 "/><path d="M259.21,267.43L259.53,267.57L260.87,267.68L261.56,268.00L262.94,268.40L263.26,268.46L263.43,268.50L264.19,268.49L265.10,268.78L265.78,268.99L267.08,268.71L268.18,268.10L268.52,268.03L269.19,267.90L269.96,267.75L270.31,267.43L270.01,267.24L269.98,267.05L270.26,266.85L270.30,266.83L270.60,266.82 "/><path d="M360.31,299.12L360.01,298.95L359.83,298.84L359.53,298.22L359.30,297.99L358.75,297.40L358.01,297.04L357.82,296.94L357.05,296.74L357.03,296.74L356.98,296.71L356.52,296.45L356.02,296.17L355.23,296.03L353.43,294.75L353.23,294.60L353.18,294.46L353.06,294.11L352.82,293.40L352.34,292.92L351.98,292.76L351.88,292.71L351.45,292.52L351.45,292.35L351.21,292.21L350.32,291.92L350.01,291.82L349.72,291.54L350.01,291.14L349.92,291.03L349.55,290.54L350.02,290.33L349.93,289.68L349.65,289.31L348.29,288.26L347.15,286.13L346.77,285.65L346.66,285.51L346.34,284.58L346.00,284.40 "/><path d="M174.82,241.75L174.56,241.78L174.16,241.46L174.53,241.25 "/><path d="M589.18,367.59L588.68,368.15L587.97,368.47L587.48,368.88L587.41,368.93L587.33,369.00L587.05,369.24L586.39,369.46L585.61,369.30L585.31,369.28L584.01,369.20L583.72,369.30L583.54,369.36L583.22,369.38L582.46,369.43L582.34,369.41L580.49,369.08L579.24,369.11L578.97,369.12L578.75,369.13 "/><path d="M344.52,293.10L345.19,293.14L345.39,293.23L347.08,293.99L347.49,294.06L349.20,293.71L349.60,293.80L351.10,294.70L351.66,294.87L351.99,294.97L353.55,295.25L353.80,295.30L354.51,295.92L355.07,296.16L355.80,296.46L356.45,296.72L356.49,296.74L356.54,296.76L356.74,296.91L358.20,298.03L358.58,298.32L359.29,298.86L359.40,299.13L359.41,299.17L359.06,299.69 "/><path d="M239.06,262.45L240.05,262.35L240.32,262.45L240.61,262.21L240.75,262.08L240.23,261.91L240.28,261.78L240.72,261.61L240.48,261.34L240.77,260.87L241.22,260.87L242.41,260.40L242.82,260.31L243.29,260.02L243.14,259.59L243.22,259.43L243.07,259.26L243.33,258.88L242.90,258.65L242.42,258.59L242.31,258.42L242.71,258.23L242.99,257.74L242.92,257.51L243.24,257.22L243.56,257.25L244.31,257.31L244.43,257.45L244.91,257.37L245.35,257.14L245.19,256.81L244.86,256.65L244.88,256.44L244.42,256.10L244.77,255.71L244.05,254.72L244.18,254.64L245.44,254.61L245.22,254.19L245.43,253.88L245.83,253.75 "/><path d="M239.06,262.45L238.72,262.08L238.11,261.42L237.77,261.04L237.83,260.82L238.10,260.71L238.06,260.44L237.40,259.56L237.14,259.34L236.75,259.02L236.85,258.89L237.06,258.61L236.74,258.19L236.91,257.65L236.68,257.43L236.84,257.04L235.96,256.51L235.58,256.46L234.94,256.62L234.38,256.52L234.06,256.40L233.46,256.17L233.30,255.79L232.13,255.54L231.58,255.83L230.29,256.08L229.68,256.31L229.11,256.18L228.63,256.27L228.34,256.61L227.82,256.72L227.04,256.57L226.17,256.61L226.02,256.77L225.62,256.83L225.50,256.85L225.26,256.77L225.05,257.02L224.51,257.20L224.04,257.10L223.28,257.18L222.70,256.69L222.72,256.65L222.99,256.25 "/><path d="M359.06,299.69L359.73,300.00 "/><path d="M359.06,299.69L358.61,299.50L358.47,299.45L358.23,299.35L357.49,299.24L357.34,299.22L357.15,299.20L356.21,298.77L356.15,298.74L354.49,298.27L354.29,298.21L353.98,298.15L353.24,298.02L352.85,297.79L352.77,297.44L352.69,297.14L352.26,296.50L351.69,296.21L351.58,296.15L350.53,295.96L349.95,295.64L349.76,295.16L349.01,294.98L348.72,294.77L348.55,294.76L348.35,294.75L347.75,295.00L347.68,295.00L346.41,294.95L346.40,294.94L346.15,294.78L346.23,294.37L345.36,294.10L344.90,293.96 "/><path d="M274.45,273.59L275.01,273.09L275.13,272.98L276.12,272.68L277.02,271.83L277.47,271.69L279.54,271.65L280.32,271.90L281.14,271.88L281.91,271.85L283.15,271.66L283.52,271.31L283.86,271.34L284.32,271.39L285.09,271.30L285.17,271.06L285.24,270.85L285.03,270.40L284.97,270.27L285.29,269.97L285.67,269.83L286.10,269.68L286.20,269.48L286.17,269.37L285.96,268.61L286.32,267.59 "/><path d="M576.75,369.83L576.82,369.82L577.25,369.78L577.47,369.76L577.47,369.76L577.76,369.74 "/><path d="M186.20,246.85L186.75,246.92L187.31,246.68 "/><path d="M474.40,335.49L474.52,335.58L475.24,336.11L474.86,337.20 "/><path d="M292.93,272.22L292.69,272.59L292.59,272.73L292.53,272.83L292.63,273.11L292.44,273.36L291.95,273.55L291.17,273.71L290.82,273.38L290.03,273.55L289.79,273.47L289.40,273.35L288.74,273.40L288.62,273.60L288.87,273.78L288.82,274.03L288.01,274.23L287.77,274.43L287.25,274.42L286.90,274.68L286.64,274.88L286.58,274.92L286.23,274.96L285.90,274.74L285.92,274.67L285.95,274.55L285.81,274.45L285.31,274.49L285.27,274.51L285.01,274.71L284.98,274.73L283.90,274.87L283.69,275.11L283.29,275.23L283.13,275.27L282.81,275.53L282.73,276.03L282.46,276.00L281.71,275.54L279.85,274.89L279.34,274.90L279.46,275.71L279.26,275.74L278.73,275.40L278.46,274.98L278.44,274.94L278.16,274.76L277.22,274.75L276.69,274.58L276.56,274.54L276.51,274.59L276.00,274.09L275.53,274.16L274.97,273.98L274.67,273.63L274.45,273.59 "/><path d="M207.04,247.01L207.49,247.45L207.59,247.54L208.33,247.87L208.56,248.14L209.01,247.93L209.90,247.98L210.53,248.19L210.92,248.05L211.74,248.38L212.00,248.29L212.24,248.34L213.07,248.51L213.77,248.31L215.72,248.50L216.26,248.76L216.30,248.79L216.34,248.79L216.58,248.78L217.47,248.78L217.76,248.90L218.06,249.31L218.36,249.42L218.90,249.44L219.29,249.94L219.91,250.11L219.97,250.19L219.64,250.42L219.89,250.74L219.02,251.80L217.75,252.43L217.40,252.80L216.62,252.88L216.16,253.07L216.06,253.94L215.30,254.27L214.97,254.56L215.22,254.81L215.49,255.11L215.88,255.30L216.00,255.36L217.96,255.27L218.63,255.35L219.21,255.59L219.00,256.00L219.53,256.31L219.54,256.65L219.30,257.09L219.63,257.29L219.62,257.43 "/><path d="M576.75,369.83L575.77,370.01 "/><path d="M253.33,267.95L253.43,267.81L253.87,267.70L254.21,267.74L254.49,267.94 "/><path d="M191.86,249.15L193.27,249.18L193.88,248.99L194.08,249.02L195.27,249.19L195.91,249.18L196.35,249.37L197.11,249.26L197.99,249.34L198.10,249.59L198.68,249.81L198.67,249.87L198.64,250.01L198.64,250.04L199.25,250.11L199.49,250.32L199.22,250.56L199.05,250.72L199.76,250.85L200.49,250.76L200.82,250.83L200.89,251.18L201.41,251.39L201.78,251.39L202.14,251.07L202.18,251.04L203.87,250.88L204.55,250.03L204.59,249.77L204.37,249.52L204.39,249.50L204.73,249.23L205.33,249.13L206.55,248.64L206.66,248.32L206.30,248.02L206.14,247.88L207.04,247.01 "/><path d="M162.58,239.89L162.01,240.28 "/><path d="M175.17,244.93L175.45,244.65L176.19,244.62L176.30,244.23L176.70,244.14L177.07,243.45L176.74,243.18L176.92,242.91L176.59,242.92L176.35,242.61L176.49,242.38L176.30,241.99L175.93,241.99L175.54,241.85 "/><path d="M175.17,244.93L174.58,244.68L174.36,244.69 "/><path d="M576.75,369.83L576.97,369.95L577.06,370.00L577.19,370.07L577.39,370.10L578.29,370.26L578.81,370.34L579.85,370.75L580.69,371.09L580.92,371.27L581.03,371.27L581.56,371.26L581.99,371.48L582.01,371.83L581.69,372.06L581.80,372.37L581.81,372.40L581.97,372.87L582.06,373.14L582.18,373.47 "/><path d="M461.75,335.39L462.43,335.33L462.98,335.54L463.00,335.54L464.25,335.48L464.38,335.57L464.46,335.63L465.21,335.48L465.55,335.57L466.18,335.22L466.85,335.07L467.43,335.19L468.93,335.08L469.24,335.25L469.65,335.26L469.85,335.27 "/><path d="M552.79,363.41L552.84,363.53L553.45,365.16 "/><path d="M578.59,373.46L578.30,373.17L578.29,373.16L577.98,372.83L577.78,372.62L577.33,372.16L576.20,371.84L575.60,371.46 "/><path d="M274.45,273.59L272.30,273.53L271.82,273.67L271.00,273.91L270.61,274.25L269.07,274.29L268.64,274.74L268.76,275.07L268.62,275.31 "/><path d="M701.7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment