
/*
 * PseudoCSS 1.0 - Enables Cross Browser support of CSS2 and CSS3 pseudo classes
 *
 * Copyright (c) 2008 Alen Grakalic (pseudocss.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 * Built using jQuery library 
 *	
 * jQuery 1.2.3 - New Wave Javascript
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 */
 
 (function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[value];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]==elem)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv&&callback(elems[i],i)||inv&&!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!==null&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();

/*!
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		},

		strict: (function() {
			var doctype;
			// no doctype (doesn't always catch it though.. IE I'm looking at you)
			if (document.compatMode == 'BackCompat') return false;
			// WebKit, Gecko, Opera, IE9+
			doctype = document.doctype;
			if (doctype) {
				return !/frameset|transitional/i.test(doctype.publicId);
			}
			// IE<9, firstChild is the doctype even if there's an XML declaration
			doctype = document.firstChild;
			if (doctype.nodeType != 8 || /^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)) {
				return false;
			}
			return true;
		})()

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 100;
			return {
				'ultra-condensed': 0.5,
				'extra-condensed': 0.625,
				condensed: 0.75,
				'semi-condensed': 0.875,
				'semi-expanded': 1.125,
				expanded: 1.25,
				'extra-expanded': 1.5,
				'ultra-expanded': 2
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		var checkTypes = {
			'': 1,
			'text/css': 1
		};

		function isContainerReady(el) {
			if (!checkTypes[el.type.toLowerCase()]) return true;
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		// mouseover/mouseout (standards) mode
		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		// mouseenter/mouseleave (probably ie) mode
		function onEnterLeave(e) {
			if (!e) e = window.event;
			// ie model, we don't have access to "this", but
			// mouseenter/leave doesn't bubble so it's fine.
			trigger(e.target || e.srcElement, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				if (hoverState) {
					options = merge(options, options.hover);
					options._mediatorMode = 1;
				}
				api.replace(el, options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

		this.detach = function(el) {
			if (el.onmouseenter === undefined) {
				removeEvent(el, 'mouseover', onOverOut);
				removeEvent(el, 'mouseout', onOverOut);
			}
			else {
				removeEvent(el, 'mouseenter', onEnterLeave);
				removeEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			// we don't really need "this" right now, saves code
			el.attachEvent('on' + type, listener);
		}
	}

	function attach(el, options) {
		if (options._mediatorMode) return el;
		var storage = sharedStorage.get(el);
		var oldOptions = storage.options;
		if (oldOptions) {
			if (oldOptions === options) return el;
			if (oldOptions.hover) hoverHandler.detach(el);
		}
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function removeEvent(el, type, listener) {
		if (el.removeEventListener) {
			el.removeEventListener(type, listener, false);
		}
		else if (el.detachEvent) {
			el.detachEvent('on' + type, listener);
		}
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.ignoreClass && options.ignoreClass.test(el.className)) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		autoDetect: false,
		engine: null,
		forceHitArea: false,
		hover: false,
		hoverables: {
			a: true
		},
		ignore: {
			applet: 1,
			canvas: 1,
			col: 1,
			colgroup: 1,
			head: 1,
			iframe: 1,
			map: 1,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		ignoreClass: null,
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.ignoreClass == 'string') {
			options.ignoreClass = new RegExp('(?:^|\\s)(?:' + options.ignoreClass.replace(/\s+/g, '|') + ')(?:\\s|$)');
		}
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (typeof elements == 'string') {
			if (!ignoreHistory) replaceHistory.add(elements, arguments);
			elements = [ elements ];
		}
		else if (elements.nodeType) elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (document.documentMode || 0) < 8;

	document.write(('<style type="text/css">' +
		'cufoncanvas{text-indent:0;}' +
		'@media screen{' +
			'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}' +
			'cufoncanvas{position:absolute;text-align:left;}' +
			'cufon{display:inline-block;position:relative;vertical-align:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +

			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;
		var pixelRatio = window.devicePixelRatio || 1;
		if (pixelRatio != 1) {
			canvas.width = canvasWidth * pixelRatio;
			canvas.height = canvasHeight * pixelRatio;
			g.scale(pixelRatio, pixelRatio);
		}

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());


//Cufon replace

Cufon.replace('h1', { fontFamily: 'Kozuka Gothic Pro OpenType r' });
Cufon.replace('h4', { fontFamily: 'Kozuka Gothic Pro OpenType r' });
Cufon.replace('#header .indent1', { fontFamily: 'Kozuka Gothic Pro OpenType r', hover:true });
Cufon.replace('#header .indent2', { fontFamily: 'Kozuka Gothic Pro OpenType r', hover:true });
//Cufon.replace('#header ul li a', { fontFamily: 'Kozuka Gothic Pro OpenType', hover:true });
Cufon.replace('#content .row1 h2', { fontFamily: 'Kozuka Gothic Pro OpenType' })
Cufon.replace('#content .row2 h2', { fontFamily: 'Kozuka Gothic Pro OpenType m' })
Cufon.replace('#content .row2 h3', { fontFamily: 'Kozuka Gothic Pro OpenType m' })



Cufon.replace('p.page_quote', { fontFamily: 'Georgia' })
Cufon.replace('p.slider_quote', { fontFamily: 'Georgia' })

// copyright 1999 Idocs, Inc. http://www.idocs.com/tags/
// Distribute this script freely, but please keep this 
// notice with the code.

var rollOverArr=new Array();
function setrollover(OverImgSrc,pageImageName)
{
if (! document.images)return;
if (pageImageName == null)
    pageImageName = document.images[document.images.length-1].name;
rollOverArr[pageImageName]=new Object;
rollOverArr[pageImageName].overImg = new Image;
rollOverArr[pageImageName].overImg.src=OverImgSrc;
}

function rollover(pageImageName)
{
if (! document.images)return;
if (! rollOverArr[pageImageName])return;
if (! rollOverArr[pageImageName].outImg)
    {
    rollOverArr[pageImageName].outImg = new Image;
    rollOverArr[pageImageName].outImg.src = document.images[pageImageName].src;
    }
document.images[pageImageName].src=rollOverArr[pageImageName].overImg.src;
}

function rollout(pageImageName)
{
if (! document.images)return;
if (! rollOverArr[pageImageName])return;
document.images[pageImageName].src=rollOverArr[pageImageName].outImg.src;
}


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2001,2002,2005 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Kozuka Gothic is either a registered trademark or trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * KozGoPro-Light
 * 
 * Designer:
 * Masahiko Kozuka
 * 
 * Vendor URL:
 * http://www.adobe.co.jp/products/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":196,"face":{"font-family":"Kozuka Gothic Pro OpenType","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 2 0 0 0 0 0 0 0","ascent":"317","descent":"-43","x-height":"4","bbox":"-19 -352 327 101","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":86},"!":{"d":"56,-273r-5,200r-18,0r-4,-200r27,0xm42,4v-11,0,-17,-9,-17,-19v0,-11,8,-19,18,-19v10,0,17,8,17,19v0,10,-7,19,-18,19","w":85},"\"":{"d":"29,-189r-5,-91r25,0r-6,91r-14,0xm81,-189r-5,-91r25,0r-6,91r-14,0","w":124},"#":{"d":"66,-85r-11,85r-18,0r11,-85r-33,0r0,-16r35,0r9,-69r-35,0r0,-16r37,0r10,-83r18,0r-10,83r44,0r10,-83r18,0r-10,83r33,0r0,16r-35,0r-9,69r35,0r0,16r-37,0r-11,85r-18,0r11,-85r-44,0xm77,-170r-9,69r44,0r9,-69r-44,0","w":188},"$":{"d":"141,-73v0,-61,-109,-63,-109,-126v0,-33,23,-58,57,-63r0,-43r18,0r0,42v22,1,38,8,48,15r-8,16v-9,-5,-24,-14,-47,-14v-31,0,-47,22,-47,43v0,25,15,38,50,54v38,18,60,37,60,73v0,32,-20,62,-59,68r0,43r-18,0r0,-43v-20,0,-44,-7,-58,-18r8,-16v31,30,105,21,105,-31"},"%":{"d":"71,-268v35,0,55,29,55,79v0,56,-25,82,-57,82v-29,0,-56,-25,-56,-79v0,-56,28,-82,58,-82xm70,-253v-26,0,-38,34,-38,67v0,35,13,64,37,64v27,0,38,-30,38,-66v0,-34,-10,-65,-37,-65xm232,-159v34,0,55,29,55,79v0,109,-114,113,-113,3v0,-56,28,-82,58,-82xm231,-144v-25,0,-38,33,-38,66v0,36,13,65,37,65v27,0,38,-30,38,-66v0,-34,-10,-65,-37,-65xm237,-269r-156,274r-18,0r156,-274r18,0","w":300},"&":{"d":"199,-145r21,0v-7,43,-17,76,-36,99r43,46r-27,0r-29,-30v-51,58,-158,38,-158,-42v0,-38,24,-61,53,-81v-40,-44,-30,-125,39,-125v30,0,53,21,53,55v0,31,-22,50,-62,76r76,88v13,-21,21,-48,27,-86xm94,-13v35,0,56,-19,65,-30r-83,-96v-17,10,-41,30,-41,64v0,35,24,62,59,62xm102,-260v-52,0,-44,74,-17,99v31,-17,52,-33,52,-60v0,-19,-10,-39,-35,-39","w":227},"'":{"d":"29,-189r-5,-91r25,0r-6,91r-14,0","w":72},"(":{"d":"103,49r-20,0v-27,-34,-56,-85,-56,-165v0,-80,29,-131,56,-166r20,0v-32,41,-55,93,-55,167v0,72,24,123,55,164","w":108,"k":{"\u00dd":-14,"Y":-14,"W":-14,"V":-14,"T":-14,"J":-14}},")":{"d":"6,-282r20,0v27,34,55,85,55,165v0,80,-28,131,-55,166r-20,0v31,-41,54,-93,54,-166v0,-73,-23,-124,-54,-165","w":108},"*":{"d":"105,-278r20,11r-37,51r60,-6r0,21v-19,-1,-42,-6,-59,-5r36,48r-20,12v-9,-17,-15,-38,-26,-54r-28,54r-17,-11r36,-50r-58,6r0,-21r57,5r-35,-49r19,-11r27,53","w":159},"+":{"d":"112,-117r0,-99r18,0r0,99r96,0r0,18r-96,0r0,99r-18,0r0,-99r-96,0r0,-18r96,0","w":241},",":{"d":"31,-37r28,-4v-8,31,-25,77,-32,90r-18,2v7,-18,18,-62,22,-88","w":72},"-":{"d":"12,-101r0,-19r97,0r0,19r-97,0","w":121},".":{"d":"39,4v-11,0,-17,-9,-17,-19v0,-12,8,-20,18,-20v10,0,17,8,17,20v0,10,-7,19,-18,19","w":71},"\/":{"d":"141,-278r-124,294r-20,0r124,-294r20,0","w":139},"0":{"d":"96,4v-45,0,-81,-43,-81,-137v0,-99,39,-140,86,-140v47,0,80,43,80,135v0,95,-33,142,-85,142xm97,-14v44,0,61,-55,61,-122v0,-69,-17,-119,-59,-119v-35,0,-61,45,-61,119v0,73,22,122,59,122"},"1":{"d":"116,0r-22,0r0,-247r-44,26r-5,-17v24,-10,35,-33,71,-31r0,269"},"2":{"d":"175,-18r0,18r-157,0v-2,-24,17,-27,25,-40v69,-70,102,-109,102,-155v0,-30,-13,-60,-55,-60v-22,0,-42,12,-55,23r-8,-15v17,-15,40,-27,67,-27v54,0,73,41,73,75v0,56,-65,123,-119,181r127,0"},"3":{"d":"90,-273v91,2,84,106,19,127v86,18,77,153,-29,150v-27,0,-51,-8,-63,-17r9,-18v9,6,31,17,55,17v51,0,65,-36,65,-61v-2,-49,-44,-65,-92,-62r0,-17v42,3,81,-11,81,-54v0,-25,-14,-47,-49,-47v-20,0,-39,10,-50,18r-8,-16v13,-10,37,-20,62,-20"},"4":{"d":"149,-78r0,78r-22,0r0,-78r-120,0r0,-14r122,-177r20,0r0,173r39,0r0,18r-39,0xm31,-96r96,0v-1,-47,6,-103,0,-146v-28,57,-63,96,-96,146"},"5":{"d":"50,-269r114,0r0,18r-98,0r-12,85v61,-8,110,20,113,80v4,78,-94,112,-150,74r7,-18v39,30,127,15,120,-52v5,-51,-52,-76,-111,-65"},"6":{"d":"158,-254v-76,-1,-118,60,-120,115v12,-19,36,-36,67,-36v47,0,76,36,76,86v0,48,-28,93,-81,93v-49,0,-86,-40,-86,-112v0,-72,41,-163,144,-165r0,19xm101,-14v35,0,58,-30,58,-73v0,-45,-25,-70,-60,-70v-36,0,-62,36,-62,54v0,53,23,89,64,89"},"7":{"d":"24,-251r0,-18r154,0r0,14r-116,255r-22,0r116,-251r-132,0"},"8":{"d":"71,-142v-72,-28,-49,-133,29,-131v84,3,96,98,25,129v34,17,55,39,55,72v0,45,-37,76,-82,76v-48,0,-81,-31,-81,-71v0,-35,21,-61,54,-75xm98,-13v39,0,60,-26,60,-56v0,-37,-25,-54,-65,-66v-72,15,-72,120,5,122xm100,-256v-36,0,-52,26,-52,49v0,31,22,48,55,57v26,-10,46,-29,46,-57v0,-24,-14,-49,-49,-49"},"9":{"d":"40,-15v70,3,114,-53,118,-116v-16,21,-37,33,-65,33v-48,0,-75,-38,-75,-81v0,-49,31,-94,84,-94v46,0,80,41,80,112v0,100,-50,164,-142,165r0,-19xm99,-255v-35,0,-58,32,-58,75v0,39,23,64,56,64v36,0,62,-29,62,-46v0,-57,-21,-93,-60,-93"},":":{"d":"39,-145v-11,0,-17,-10,-17,-20v0,-11,8,-19,18,-19v10,0,17,7,17,19v0,10,-7,20,-18,20xm39,4v-11,0,-17,-9,-17,-19v0,-12,8,-20,18,-20v10,0,17,8,17,20v0,10,-7,19,-18,19","w":71},";":{"d":"32,-37r27,-4v-8,31,-25,77,-32,90r-17,2v7,-18,18,-62,22,-88xm43,-145v-11,0,-17,-10,-17,-20v0,-12,7,-19,17,-19v11,0,18,7,18,19v0,10,-7,20,-18,20","w":72},"<":{"d":"213,0r-185,-100r0,-16r185,-100r0,21r-164,88r164,86r0,21","w":241},"=":{"d":"226,-157r0,18r-210,0r0,-18r210,0xm226,-80r0,18r-210,0r0,-18r210,0","w":241},">":{"d":"28,-216r185,100r0,16r-185,100r0,-21r165,-87r-165,-87r0,-21","w":241},"?":{"d":"135,-220v4,49,-73,84,-57,148r-21,0v-20,-60,55,-102,55,-147v0,-43,-58,-52,-83,-27r-8,-16v39,-33,122,-10,114,42xm67,4v-12,0,-18,-9,-18,-18v0,-11,7,-21,18,-21v11,0,18,8,18,20v0,10,-7,19,-18,19","w":154},"@":{"d":"211,-166v-6,32,-18,65,-18,99v0,17,6,25,16,25v22,0,46,-31,46,-79v0,-62,-35,-104,-97,-104v-68,0,-123,55,-123,140v0,92,90,137,164,96r6,15v-86,44,-189,-3,-189,-109v0,-85,56,-157,145,-157v69,0,113,48,113,115v0,63,-34,98,-69,98v-17,0,-29,-13,-29,-37v-23,49,-98,54,-101,-12v-3,-63,69,-119,136,-90xm124,-43v46,0,59,-64,66,-111v-50,-17,-97,27,-96,78v0,19,11,33,30,33","w":288},"A":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139","w":235,"k":{"Y":11,"W":4,"V":11,"T":11}},"B":{"d":"187,-77v0,45,-45,79,-107,79v-21,0,-38,-1,-48,-2r0,-269v15,-4,34,-6,55,-6v109,0,114,102,42,128v22,8,58,24,58,70xm54,-154v53,5,100,-10,100,-53v0,-49,-58,-55,-100,-47r0,100xm54,-136r0,118v52,7,111,-2,110,-58v-2,-55,-53,-63,-110,-60","w":203},"C":{"d":"208,-27r5,18v-89,34,-198,1,-198,-126v0,-85,52,-143,136,-143v36,0,55,9,61,12r-6,19v-81,-35,-168,11,-168,112v0,98,87,143,170,108","w":226},"D":{"d":"32,0r0,-269v21,-4,44,-6,69,-6v111,0,142,66,142,132v0,53,-20,145,-152,145v-21,0,-40,0,-59,-2xm54,-253r0,235v98,14,166,-29,166,-124v0,-90,-75,-129,-166,-111","w":257,"k":{"\u00d6":-4,"\u00d5":-4,"\u00d4":-4,"\u00d3":-4,"\u00d2":-4}},"E":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0","w":186},"F":{"d":"54,0r-22,0r0,-273r135,0r0,18r-113,0r0,106r104,0r0,19r-104,0r0,130","w":185,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"A":11,".":14,",":18}},"G":{"d":"226,-137r0,125v-14,6,-42,15,-78,15v-98,0,-133,-69,-133,-138v0,-101,103,-170,203,-129r-6,18v-81,-33,-174,11,-174,109v0,99,85,143,166,112r0,-94r-61,0r0,-18r83,0","w":248},"H":{"d":"220,-273r0,273r-23,0r0,-135r-143,0r0,135r-22,0r0,-273r22,0r0,119r143,0r0,-119r23,0","w":252},"I":{"d":"32,0r0,-273r22,0r0,273r-22,0","w":86},"J":{"d":"110,-273r0,188v0,84,-50,99,-107,83r3,-18v46,13,81,5,81,-68r0,-185r23,0","w":138,"k":{"}":-7,"]":-7,")":-7}},"K":{"d":"96,-157r110,157r-27,0r-98,-142r-27,30r0,112r-22,0r0,-273r22,0r1,137v36,-48,77,-91,115,-137r27,0","w":203},"L":{"d":"172,-19r0,19r-140,0r0,-273r22,0r0,254r118,0","w":180,"k":{"\u00dd":7,"Y":7,"V":4,"T":7,"-":4}},"M":{"d":"270,-273r18,273r-22,0r-14,-248r-90,248r-16,0r-51,-142v-17,-41,-22,-79,-35,-106v-1,32,-2,79,-5,124r-9,124r-21,0r19,-273r27,0r55,151v14,35,19,65,30,90v22,-75,60,-166,87,-241r27,0","w":311},"N":{"d":"223,-273r0,273r-21,0r-99,-154v-19,-31,-37,-61,-51,-90r1,244r-21,0r0,-273r22,0r100,156v21,34,37,59,50,86v-5,-74,-2,-162,-3,-242r22,0","w":254},"O":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121","w":266,"k":{".":4,",":4}},"P":{"d":"32,0r0,-270v15,-3,35,-5,59,-5v84,0,93,53,93,77v0,78,-68,92,-130,82r0,116r-22,0xm54,-254r0,119v52,14,108,-8,108,-61v0,-57,-59,-67,-108,-58","w":201,"k":{"\u00e0":4,"\u00cf":-4,"\u00ce":-4,"\u00cd":-4,"\u00cc":-4,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"I":-4,".":22,",":22}},"Q":{"d":"248,36r-116,-32v-65,-1,-117,-49,-117,-138v0,-91,53,-144,121,-144v68,0,116,54,116,139v1,76,-35,118,-82,136v30,7,60,15,84,19xm135,-259v-131,1,-126,244,-2,245v62,0,96,-58,96,-124v0,-57,-30,-121,-94,-121","w":266},"R":{"d":"32,-270v69,-13,152,-6,152,67v0,37,-22,60,-53,71v43,2,48,112,62,132r-23,0v-4,-8,-11,-32,-17,-67v-10,-54,-41,-60,-99,-57r0,124r-22,0r0,-270xm54,-142v58,5,108,-8,108,-58v0,-60,-63,-61,-108,-54r0,112","w":203},"S":{"d":"158,-265r-8,19v-8,-5,-25,-13,-48,-13v-42,0,-56,27,-56,48v0,30,16,48,55,60v92,28,91,154,-20,155v-24,0,-50,-8,-64,-18r7,-18v37,29,122,20,122,-37v0,-30,-15,-49,-53,-63v-42,-16,-70,-38,-70,-76v0,-61,90,-87,135,-57","w":186},"T":{"d":"190,-273r0,18r-85,0r0,255r-22,0r0,-255r-86,0r0,-18r193,0","w":187,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"z":4,"y":7,"w":4,"u":4,"s":4,"r":4,"o":4,"m":4,"e":7,"a":7,"T":-4,"A":7,":":-4,".":4,"-":4,",":4,")":-14}},"U":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,166v0,67,30,93,69,93v43,0,73,-28,73,-93r0,-166r22,0","w":250,"k":{".":7,",":4}},"V":{"d":"186,-273r24,0r-98,273r-22,0r-89,-273r24,0r78,248v21,-80,56,-169,83,-248","w":207,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"o":4,"e":4,"a":4,"A":4,":":-7,".":7,"-":4,",":7,")":-14}},"W":{"d":"304,-273r23,0r-79,273r-22,0r-40,-154v-10,-38,-16,-66,-20,-92v-15,74,-48,170,-68,246r-21,0r-71,-273r23,0r61,245v14,-77,46,-169,66,-245r21,0r39,149v10,32,15,69,22,96","w":329,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,"-":4,",":11,")":-14}},"X":{"d":"122,-140r85,140r-26,0r-74,-122r-70,122r-25,0r84,-139r-81,-134r25,0r70,117r70,-117r26,0","w":218},"Y":{"d":"179,-273r25,0r-91,155r0,118r-22,0r0,-118r-85,-155r25,0r73,138v21,-44,51,-94,75,-138","w":203,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"v":4,"u":4,"t":4,"q":4,"o":4,"e":4,"d":4,"a":4,"A":11,".":7,"-":4,",":7,")":-14}},"Z":{"d":"199,-273r0,14r-157,240r159,0r0,19r-188,0r0,-14r158,-241r-145,0r0,-18r173,0","w":214,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"[":{"d":"104,29r0,16r-68,0r0,-323r68,0r0,16r-49,0r0,291r49,0","w":108,"k":{"f":-7,"J":-14}},"\u00a5":{"d":"106,-76r0,76r-21,0r0,-76r-62,0r0,-15r62,0r0,-34r-62,0r0,-15r54,0r-68,-129r24,0v23,42,39,91,65,130v17,-44,44,-88,65,-130r24,0r-73,129r54,0r0,15r-62,0r0,34r62,0r0,15r-62,0"},"]":{"d":"4,-262r0,-16r69,0r0,323r-69,0r0,-16r50,0r0,-291r-50,0","w":108},"^":{"d":"130,-264r83,185r-20,0r-73,-164r-71,164r-21,0r83,-185r19,0","w":241},"_":{"d":"0,45r0,-18r203,0r0,18r-203,0","w":203},"`":{"d":"62,-223r-49,-56r30,0r35,56r-16,0","w":121},"a":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39","w":182},"b":{"d":"54,-160v13,-24,37,-39,69,-39v48,0,81,40,81,99v1,109,-107,135,-153,66r-2,34r-19,0r1,-288r23,0r0,128xm117,-181v-52,0,-63,48,-63,106v0,27,22,61,62,61v42,0,65,-36,65,-85v0,-44,-22,-82,-64,-82","w":220},"c":{"d":"159,-26r5,18v-9,4,-28,12,-55,12v-55,0,-93,-40,-93,-99v0,-80,83,-126,149,-93r-7,18v-9,-5,-23,-11,-44,-11v-50,0,-75,39,-75,84v0,71,68,101,120,71","w":176},"d":{"d":"186,-287r2,287r-20,0v-2,-11,1,-27,-3,-36v-10,21,-32,40,-67,40v-47,0,-82,-39,-82,-98v0,-100,106,-135,148,-72r0,-121r22,0xm103,-14v55,0,61,-48,61,-103v0,-40,-29,-64,-60,-64v-40,0,-65,36,-65,85v0,43,20,82,64,82","w":217},"e":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66","w":193,"k":{"j":-4}},"f":{"d":"33,-195v-8,-65,36,-116,94,-90r-6,17v-42,-21,-73,20,-65,73r50,0r0,18r-50,0r0,177r-23,0r0,-177r-27,0r0,-18r27,0","w":106,"k":{"}":-32,"]":-29,")":-32,"'":-29,"\"":-32}},"g":{"d":"185,-28v0,110,-78,132,-152,97r7,-18v46,27,129,23,123,-61r0,-26v-10,19,-32,36,-65,36v-48,0,-82,-42,-82,-96v0,-106,114,-130,150,-67r1,-32r20,0v-4,48,-2,114,-2,167xm104,-18v49,0,59,-46,59,-102v0,-31,-23,-61,-59,-61v-39,0,-65,33,-65,83v0,44,22,80,65,80","w":217},"h":{"d":"112,-180v-31,0,-58,24,-58,60r0,120r-23,0r0,-288r23,0r0,126v11,-21,37,-37,64,-37v20,0,67,11,67,81r0,118r-23,0v-7,-71,26,-180,-50,-180","w":214},"i":{"d":"59,-250v0,11,-7,18,-17,18v-10,0,-16,-8,-16,-18v0,-9,7,-18,17,-18v10,0,16,8,16,18xm54,-195r0,195r-23,0r0,-195r23,0","w":85},"j":{"d":"62,-250v0,11,-7,18,-17,18v-10,0,-16,-8,-16,-18v0,-9,7,-18,17,-18v10,0,16,9,16,18xm57,-195r0,181v6,59,-27,98,-73,99r-3,-18v50,-3,54,-35,54,-94r0,-168r22,0","w":87},"k":{"d":"88,-114r87,114r-27,0r-75,-100r-19,20r0,80r-23,0r0,-288r23,0r0,186r84,-93r27,0","w":172},"l":{"d":"54,-288r0,288r-23,0r0,-288r23,0","w":85},"m":{"d":"297,-116r0,116r-22,0v-4,-69,20,-180,-48,-181v-28,0,-52,27,-52,57r0,124r-22,0v-6,-68,23,-181,-45,-181v-28,0,-54,28,-54,61r0,120r-22,0r-2,-195r20,0v2,11,0,25,3,34v17,-48,102,-50,117,3v25,-51,127,-73,127,42","w":326},"n":{"d":"185,-118r0,118r-23,0v-7,-72,26,-181,-51,-181v-33,0,-57,29,-57,60r0,121r-23,0r-1,-195r20,0v2,11,0,25,3,34v10,-21,34,-38,65,-38v20,0,67,11,67,81","w":214},"o":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84","w":212},"p":{"d":"50,-195v2,11,-1,27,3,36v39,-73,151,-39,151,59v0,105,-103,135,-150,70r0,110r-23,0r-1,-275r20,0xm117,-181v-56,0,-63,48,-63,104v0,33,25,63,61,63v42,0,67,-35,67,-85v0,-43,-23,-82,-65,-82","w":220},"q":{"d":"167,-195r21,0r-2,275r-22,0r-1,-112v-9,19,-32,36,-65,36v-46,0,-82,-39,-82,-98v0,-111,110,-132,150,-69xm103,-14v58,0,61,-48,61,-104v0,-39,-28,-63,-59,-63v-41,0,-66,35,-66,85v0,42,19,82,64,82","w":217},"r":{"d":"114,-198r0,21v-76,-8,-59,100,-60,177r-23,0r-1,-195r20,0v1,12,-1,29,2,39v9,-26,31,-47,62,-42","w":119,"k":{".":4,",":4}},"s":{"d":"44,-149v0,43,100,44,89,96v4,56,-75,70,-116,44r7,-18v23,20,87,17,87,-23v0,-20,-11,-33,-39,-42v-69,-21,-65,-104,11,-107v18,0,34,5,44,12r-9,17v-17,-18,-80,-13,-74,21","w":150},"t":{"d":"39,-195r0,-35r22,-8r0,43r53,0r0,18r-53,0r0,123v-3,35,23,47,49,36r2,18v-6,3,-15,4,-27,4v-40,0,-46,-31,-46,-61r0,-120r-31,0r0,-18r31,0","w":124},"u":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0","w":212},"v":{"d":"154,-195r23,0r-77,195r-20,0r-74,-195r24,0r62,170","w":181,"k":{".":7,",":4}},"w":{"d":"259,-195r23,0r-64,195r-19,0r-55,-171v-14,60,-38,114,-57,171r-19,0r-59,-195r23,0r46,169r2,0v14,-55,37,-115,55,-169r20,0r53,169r2,0v12,-55,33,-115,49,-169","w":288,"k":{":":-4,".":7,",":7}},"x":{"d":"140,-195r25,0r-67,95r69,100r-26,0r-56,-85v-16,29,-37,57,-55,85r-26,0r70,-100r-66,-95r25,0r54,79","w":173},"y":{"d":"150,-195r24,0r-56,142v-27,70,-49,125,-100,142r-7,-18v48,-24,71,-67,64,-85r-70,-181r23,0r49,125v6,14,8,32,14,42","w":177,"k":{":":-7,".":7,",":7}},"z":{"d":"15,-195r140,0r0,15r-120,162r121,0r0,18r-150,0r0,-13r123,-164r-114,0r0,-18","w":162},"{":{"d":"38,-117v37,10,19,68,19,108v0,38,26,38,43,38r0,16v-18,0,-63,0,-63,-55v-1,-39,32,-95,-26,-99r1,-15v59,-3,25,-63,25,-102v0,-53,47,-52,63,-52r0,16v-18,0,-43,0,-43,38v0,40,19,98,-19,107","w":108,"k":{"f":-7,"J":-11}},"\u00a6":{"d":"53,-274r0,142r-19,0r0,-142r19,0xm53,-71r0,142r-19,0r0,-142r19,0","w":87},"}":{"d":"71,-117v-39,-8,-20,-68,-20,-107v0,-38,-25,-38,-42,-38r0,-16v16,0,62,-1,62,52v0,39,-32,99,26,102r0,15v-58,4,-26,60,-26,99v0,55,-44,55,-62,55r0,-16v17,0,42,0,42,-38v0,-40,-20,-98,20,-108","w":108},"\\":{"d":"20,-278r121,294r-20,0r-122,-294r21,0","w":138},"|":{"d":"34,101r0,-405r19,0r0,405r-19,0","w":87},"~":{"d":"66,-143v24,0,84,35,113,35v17,0,24,-13,24,-34r17,0v-5,103,-101,18,-155,18v-17,0,-26,13,-26,35r-17,0v-2,-33,18,-54,44,-54","w":241},"\u00a1":{"d":"51,-119r5,199r-27,0r4,-199r18,0xm43,-197v24,1,22,40,-1,39v-10,0,-17,-8,-17,-19v0,-11,8,-20,18,-20","w":85},"\u00a2":{"d":"122,-36r0,42r-18,0r0,-42v-60,-6,-78,-54,-78,-99v0,-55,32,-94,78,-100r0,-43r18,0r0,42v20,0,37,6,46,11r-7,17v-9,-5,-22,-11,-44,-11v-43,0,-70,40,-70,84v0,74,67,99,116,70r5,16v-7,4,-25,12,-46,13"},"\u00a3":{"d":"88,-129v8,50,-8,86,-33,111r126,0r0,18r-158,0r0,-13v37,-22,53,-62,44,-116r-43,0r0,-16r40,0v-17,-59,7,-128,65,-128v21,0,34,5,42,10r-7,17v-7,-4,-18,-9,-36,-9v-52,0,-52,67,-42,110r58,0r0,16r-56,0"},"\u00a4":{"d":"27,-229r26,29v20,-23,73,-21,91,0r28,-29r13,14r-30,28v20,22,19,79,1,100r28,29r-13,14r-27,-30v-23,26,-69,24,-92,2r-26,28r-13,-14r27,-27v-19,-24,-19,-79,1,-102r-28,-28xm98,-201v-35,0,-53,32,-53,65v0,86,103,87,104,-2v0,-31,-16,-63,-51,-63"},"\u00ab":{"d":"68,-175r22,0r-57,73r57,73r-22,0r-56,-73xm128,-175r22,0r-56,73r56,73r-22,0r-56,-73","w":159},"\u00b7":{"d":"36,-88v-12,0,-17,-9,-17,-19v0,-11,7,-19,17,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":72},"\u00bb":{"d":"10,-29r56,-73r-57,-73r22,0r56,73r-56,73r-21,0xm70,-29r56,-73r-57,-73r22,0r56,73r-56,73r-21,0","w":159},"\u00bf":{"d":"93,-197v24,1,22,40,-1,39v-11,0,-17,-8,-17,-19v0,-11,7,-20,18,-20xm24,28v-3,-50,73,-87,58,-149r20,0v20,60,-54,101,-54,147v0,43,57,51,83,27r7,17v-39,33,-122,10,-114,-42","w":154},"\u00af":{"d":"18,-238r0,-18r86,0r0,18r-86,0","w":121},"\u00b8":{"d":"39,32r19,-33r17,0r-15,23v15,2,28,12,28,27v1,34,-40,38,-64,25r6,-14v12,9,39,9,40,-9v0,-13,-12,-17,-31,-19","w":121},"\u00c6":{"d":"72,-107r-49,107r-24,0r127,-273r149,0r0,18r-115,0r11,102r100,0r0,19r-97,0r14,115r96,0r0,19r-116,0r-12,-107r-84,0xm139,-257v-22,42,-39,89,-59,132r73,0","w":297},"\u00aa":{"d":"66,-240v67,1,40,74,49,132r-17,0v-1,-6,0,-14,-3,-18v-14,29,-81,26,-81,-18v0,-28,27,-47,80,-45v7,-32,-42,-46,-65,-24r-5,-13v12,-9,28,-14,42,-14xm59,-121v37,0,37,-22,35,-54v-26,-1,-61,3,-61,30v0,15,13,24,26,24","w":132},"\u00d8":{"d":"62,-21r-26,33r-13,-10r26,-36v-21,-24,-34,-59,-34,-101v0,-122,106,-180,190,-118r24,-32r14,9r-25,36v21,24,34,60,34,101v-1,133,-107,176,-190,118xm134,-259v-98,0,-119,140,-72,206r131,-183v-15,-14,-35,-23,-59,-23xm133,-14v91,0,125,-135,71,-207r-131,182v16,16,34,25,60,25","w":266},"\u00ba":{"d":"69,-240v39,0,61,28,61,66v0,47,-33,68,-62,68v-35,0,-61,-26,-61,-66v0,-43,31,-68,62,-68xm68,-225v-60,1,-50,104,0,104v25,0,43,-21,43,-52v0,-22,-12,-52,-43,-52","w":136},"\u00e6":{"d":"29,-183v45,-30,109,-18,118,29v12,-28,36,-45,67,-45v64,0,74,62,70,98r-131,0v-10,82,67,102,116,76r6,17v-40,22,-119,14,-132,-34v-10,30,-38,46,-71,46v-39,0,-57,-27,-57,-53v0,-44,40,-70,117,-69v0,-26,0,-63,-48,-63v-17,0,-37,5,-48,14xm76,-14v51,-2,60,-38,56,-88v-38,-1,-94,4,-94,51v0,24,17,37,38,37xm153,-118r110,0v1,-25,-13,-64,-51,-64v-39,0,-57,37,-59,64","w":301},"\u00f8":{"d":"56,-11r-16,23r-13,-10r17,-24v-17,-18,-28,-42,-28,-74v0,-88,76,-126,141,-88r15,-22r13,8r-16,25v18,18,27,44,27,74v-2,94,-77,124,-140,88xm106,-181v-70,2,-85,95,-49,142r89,-128v-10,-9,-24,-14,-40,-14xm67,-27v78,54,139,-64,89,-128","w":212},"\u00df":{"d":"169,-54v0,-42,-57,-62,-57,-102v0,-21,14,-37,38,-49v11,-35,-10,-69,-43,-69v-35,0,-53,24,-53,87r0,187r-23,0v9,-112,-38,-292,80,-292v45,0,81,57,55,98v-19,7,-32,19,-32,35v0,39,56,54,56,101v0,53,-62,76,-109,53r6,-18v31,20,82,5,82,-31","w":205},"\u00ad":{"d":"16,-100r0,-18r210,0r0,18r-210,0","w":241},"\u00a9":{"d":"15,-138v0,-84,69,-125,123,-125v68,0,121,56,121,125v0,70,-53,126,-121,126v-69,0,-123,-57,-123,-126xm32,-136v0,65,49,110,106,110v62,0,104,-52,104,-112v0,-58,-41,-111,-104,-111v-59,0,-106,48,-106,113xm190,-87r5,12v-51,33,-124,1,-124,-60v0,-65,75,-92,121,-65r-4,13v-6,-3,-19,-10,-39,-10v-41,0,-60,28,-60,61v0,50,62,76,101,49","w":274},"\u00ac":{"d":"226,-158r0,106r-19,0r0,-88r-191,0r0,-18r210,0","w":241},"\u00ae":{"d":"15,-212v0,-37,30,-64,66,-64v37,0,66,28,66,64v0,37,-29,65,-66,65v-37,0,-66,-28,-66,-65xm29,-212v0,32,25,54,52,54v29,0,51,-24,51,-54v0,-29,-21,-53,-51,-53v-29,0,-52,24,-52,53xm69,-177r-12,0r0,-67v18,-4,56,-3,51,17v1,9,-8,13,-13,17v11,1,12,28,17,33v-28,7,-10,-37,-43,-28r0,28xm79,-236v-15,-3,-9,11,-10,21v24,5,39,-19,10,-21","w":160},"\u00b2":{"d":"104,-179r-100,0v-1,-21,17,-22,25,-34v33,-32,53,-55,53,-78v0,-35,-51,-39,-67,-19r-7,-12v9,-9,27,-17,45,-17v36,0,49,25,49,44v0,35,-41,70,-71,100r73,0r0,16","w":115},"\u00b3":{"d":"28,-270v23,2,46,-6,49,-31v4,-28,-48,-26,-60,-12r-6,-14v22,-21,95,-12,86,25v1,16,-13,29,-30,38v22,4,37,19,37,40v9,40,-70,60,-101,36r6,-14v5,4,21,10,36,10v28,0,39,-18,39,-32v0,-33,-39,-32,-56,-32r0,-14","w":113},"\u00b5":{"d":"37,80v-12,-73,-4,-190,-6,-276r23,0v7,71,-27,181,50,181v30,0,56,-27,56,-59r0,-122r22,0r0,148v0,23,5,33,20,34v-2,7,0,22,-10,18v-15,1,-26,-11,-31,-35v-10,32,-89,54,-108,9v0,33,-1,75,5,102r-21,0","w":213},"\u00b9":{"d":"60,-337r0,158r-19,0r-1,-140r-27,14r-4,-15v16,-6,26,-19,51,-17","w":87},"\u00bc":{"d":"250,-44r0,44r-18,0r0,-44r-81,0r0,-11r82,-105r17,0r0,101r25,0r0,15r-25,0xm232,-59v-1,-26,3,-56,0,-80v-18,31,-39,53,-59,80r59,0xm23,-234r-4,-15v16,-6,26,-19,51,-17r0,158r-19,0r-1,-140xm66,4r-17,0r154,-272r18,0","w":289},"\u00bd":{"d":"17,-234r-5,-15v17,-6,26,-19,51,-17r0,158r-18,0r-1,-140xm59,4r-18,0r155,-272r17,0xm268,0r-100,0v-1,-21,17,-23,25,-35v33,-32,53,-54,53,-77v0,-35,-51,-39,-67,-19r-7,-13v9,-9,26,-16,44,-16v36,0,49,25,49,44v0,36,-41,70,-70,100r73,0r0,16","w":289},"\u00be":{"d":"254,-44r0,44r-18,0r0,-44r-81,0r0,-11r82,-105r17,0r0,101r26,0r0,15r-26,0xm236,-59v-1,-26,3,-56,0,-80v-18,31,-39,53,-59,80r59,0xm62,-268v59,1,56,60,15,75v21,4,36,19,36,40v9,40,-69,60,-100,36r6,-14v6,4,21,10,36,10v28,0,39,-18,39,-32v0,-33,-40,-32,-57,-32r0,-14v24,2,46,-5,50,-31v4,-27,-49,-27,-60,-12r-6,-13v9,-5,23,-13,41,-13xm82,4r-18,0r155,-272r17,0","w":289},"\u00c0":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm111,-288r-53,-46r33,0r39,46r-19,0","w":235,"k":{"\u00dd":11,"Y":7,"W":4,"V":4}},"\u00c1":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm105,-288r39,-46r32,0r-52,46r-19,0","w":235,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c2":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm67,-288r41,-44r18,0r42,44r-23,0v-10,-9,-18,-21,-29,-29r-28,29r-21,0","w":235,"k":{"\u00dd":7,"Y":11,"W":4,"V":4,"T":7}},"\u00c3":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-12,48,-30,94,-46,139xm96,-326v14,0,28,15,43,15v6,0,10,-2,11,-15r14,0v0,20,-8,34,-25,34v-19,0,-51,-37,-54,2r-14,0v0,-20,8,-36,25,-36","w":235,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c4":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-12,47,-31,94,-46,139xm82,-294v-21,0,-20,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17xm153,-294v-22,0,-20,-34,0,-34v10,0,15,8,15,17v0,9,-5,17,-15,17","w":235,"k":{"Y":7,"W":4,"V":4,"T":7}},"\u00c5":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm118,-352v23,0,38,16,38,35v0,19,-17,34,-38,34v-22,0,-37,-15,-37,-34v0,-19,14,-35,37,-35xm118,-340v-27,0,-26,45,0,45v12,0,20,-11,20,-23v0,-13,-8,-22,-20,-22","w":235,"k":{"\u00fd":7,"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c7":{"d":"15,-135v0,-85,52,-143,137,-143v33,0,52,8,61,12r-7,19v-81,-35,-168,11,-168,112v0,98,87,143,170,108r5,18v-14,7,-55,16,-88,12r-12,19v15,2,28,13,28,28v1,32,-42,37,-64,24r5,-15v10,8,40,10,40,-8v0,-12,-14,-16,-31,-18r19,-33v-53,-12,-95,-55,-95,-135","w":226},"\u00c8":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm87,-288r-52,-46r32,0r39,46r-19,0","w":186},"\u00c9":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm81,-288r40,-46r31,0r-52,46r-19,0","w":186},"\u00ca":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm42,-288r42,-44r18,0r43,44r-24,0r-28,-29r-29,29r-22,0","w":186},"\u00cb":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm59,-294v-22,0,-22,-34,-1,-34v10,0,17,8,17,17v0,9,-6,17,-16,17xm129,-294v-22,0,-20,-34,0,-34v10,0,15,8,15,17v0,9,-5,17,-15,17","w":186},"\u00cc":{"d":"32,0r0,-273r22,0r0,273r-22,0xm37,-288r-53,-46r33,0r39,46r-19,0","w":86},"\u00cd":{"d":"32,0r0,-273r22,0r0,273r-22,0xm31,-288r39,-46r32,0r-52,46r-19,0","w":86},"\u00ce":{"d":"32,0r0,-273r22,0r0,273r-22,0xm-8,-288r42,-44r17,0r43,44r-23,0v-10,-9,-18,-21,-29,-29r-28,29r-22,0","w":86},"\u00cf":{"d":"32,0r0,-273r22,0r0,273r-22,0xm8,-294v-21,0,-20,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17xm78,-294v-21,0,-19,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17","w":86},"\u00d0":{"d":"33,-130r-35,0r0,-18r35,0r0,-122v20,-3,43,-5,69,-5v118,0,142,73,142,131v0,53,-18,146,-151,146v-21,0,-41,0,-60,-2r0,-130xm56,-148r80,0r0,18r-80,0r0,112v99,14,165,-30,165,-125v0,-86,-72,-129,-165,-110r0,105","w":258},"\u00d1":{"d":"223,-273r0,273r-21,0r-99,-154v-19,-31,-37,-61,-51,-90r1,244r-21,0r0,-273r22,0r100,156v21,34,37,59,50,86v-5,-74,-2,-162,-3,-242r22,0xm106,-326v14,0,28,15,43,15v6,0,10,-2,11,-15r14,0v0,20,-8,34,-25,34v-19,0,-51,-37,-54,2r-14,0v0,-20,8,-36,25,-36","w":254},"\u00d2":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm127,-288r-52,-46r32,0r39,46r-19,0","w":266},"\u00d3":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm121,-288r40,-46r32,0r-53,46r-19,0","w":266},"\u00d4":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm82,-288r42,-44r18,0r43,44r-23,0v-11,-9,-17,-22,-30,-29r-28,29r-22,0","w":266},"\u00d5":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm112,-326v14,0,28,15,43,15v6,0,10,-2,11,-15r14,0v0,20,-7,34,-24,34v-19,0,-52,-37,-55,2r-14,0v0,-20,8,-36,25,-36","w":266},"\u00d6":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm99,-294v-22,0,-22,-34,-1,-34v10,0,16,8,16,17v0,9,-5,17,-15,17xm168,-294v-21,0,-19,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17","w":266},"\u00d9":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,166v0,67,30,93,69,93v43,0,73,-28,73,-93r0,-166r22,0xm119,-288r-53,-46r32,0r40,46r-19,0","w":250},"\u00da":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,165v0,67,30,94,69,94v43,0,73,-29,73,-94r0,-165r22,0xm113,-288r39,-46r32,0r-52,46r-19,0","w":250},"\u00db":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,165v0,67,30,94,69,94v43,0,73,-29,73,-94r0,-165r22,0xm74,-288r42,-44r18,0r42,44r-23,0v-10,-9,-18,-21,-29,-29r-28,29r-22,0","w":250},"\u00dc":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,166v0,67,30,93,69,93v43,0,73,-28,73,-93r0,-166r22,0xm90,-294v-21,0,-20,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17xm161,-294v-22,0,-20,-34,0,-34v10,0,15,8,15,17v0,9,-5,17,-15,17","w":250},"\u00dd":{"d":"179,-273r25,0r-91,155r0,118r-22,0r0,-118r-85,-155r25,0r73,138v21,-44,51,-94,75,-138xm90,-288r39,-46r32,0r-53,46r-18,0","w":203,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,".":7,"-":4,",":7,")":-14}},"\u00de":{"d":"54,0r-22,0r0,-273r22,0r0,55v12,-2,27,-3,40,-3v76,0,90,44,90,72v1,63,-59,92,-130,81r0,68xm54,-199r0,112v56,9,108,-9,108,-59v0,-54,-61,-64,-108,-53","w":201},"\u00e0":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm93,-223r-49,-56r30,0r35,56r-16,0","w":182},"\u00e1":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm77,-223r36,-56r30,0r-49,56r-17,0","w":182},"\u00e2":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm46,-223r37,-56r16,0r38,56r-21,0v-9,-13,-15,-28,-25,-40r-25,40r-20,0","w":182},"\u00e3":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm46,-231v-1,-52,40,-35,66,-21v6,0,10,-4,11,-17r14,0v0,21,-6,35,-24,35v-20,0,-50,-37,-53,3r-14,0","w":182},"\u00e4":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm57,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-7,16,-16,16xm126,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":182},"\u00e5":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm92,-290v22,0,37,17,37,37v0,21,-17,36,-37,36v-22,0,-38,-16,-38,-36v0,-22,17,-37,38,-37xm91,-277v-13,0,-20,12,-20,24v0,12,8,23,20,23v13,0,22,-11,22,-24v0,-13,-9,-23,-22,-23","w":182},"\u00e7":{"d":"16,-95v0,-80,83,-126,149,-93r-7,18v-9,-5,-23,-11,-44,-11v-50,0,-75,39,-75,84v0,71,68,101,120,71r5,18v-9,5,-37,14,-65,12r-11,18v15,2,28,12,28,27v1,33,-41,39,-64,25r5,-14v12,9,40,10,41,-9v0,-12,-14,-17,-32,-19r19,-31v-42,-10,-69,-46,-69,-96","w":176},"\u00e8":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm99,-223r-50,-56r31,0r35,56r-16,0","w":193,"k":{"j":-4}},"\u00e9":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm83,-223r35,-56r30,0r-49,56r-16,0","w":193,"k":{"j":-4}},"\u00ea":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm52,-223r37,-56r16,0r37,56r-20,0v-9,-13,-16,-28,-26,-40r-24,40r-20,0","w":193,"k":{"j":-4}},"\u00eb":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm63,-234v-11,0,-17,-8,-17,-16v0,-9,8,-17,17,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm132,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":193,"k":{"j":-4}},"\u00ec":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm44,-223r-49,-56r30,0r35,56r-16,0","w":85},"\u00ed":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm28,-223r36,-56r30,0r-49,56r-17,0","w":85},"\u00ee":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm-3,-223r37,-56r16,0r38,56r-21,0r-25,-40r-25,40r-20,0","w":85},"\u00ef":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm8,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-7,16,-16,16xm77,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":85},"\u00f0":{"d":"122,-248v41,36,68,75,69,147v0,75,-46,105,-89,105v-49,0,-86,-38,-86,-99v0,-89,80,-135,139,-82v-6,-23,-30,-42,-51,-61r-56,27r-7,-14r49,-24v-12,-10,-29,-19,-44,-27r11,-16v18,9,37,22,52,34r49,-25r7,14xm168,-98v0,-51,-15,-83,-64,-83v-92,0,-80,168,-2,167v37,0,66,-33,66,-84","w":208},"\u00f1":{"d":"185,-118r0,118r-23,0v-7,-72,26,-181,-51,-181v-33,0,-57,29,-57,60r0,121r-23,0r-1,-195r20,0v2,11,0,25,3,34v10,-21,34,-38,65,-38v20,0,67,11,67,81xm61,-231v-1,-52,41,-35,67,-21v6,0,10,-4,11,-17r14,0v4,50,-45,32,-66,19v-7,0,-10,8,-11,19r-15,0","w":214},"\u00f2":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm108,-223r-49,-56r30,0r35,56r-16,0","w":212},"\u00f3":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm92,-223r35,-56r31,0r-49,56r-17,0","w":212},"\u00f4":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm61,-223r37,-56r16,0r38,56r-21,0v-9,-13,-14,-30,-26,-40r-24,40r-20,0","w":212},"\u00f5":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm60,-231v-1,-52,41,-34,67,-21v6,0,10,-4,11,-17r14,0v0,21,-7,35,-25,35v-20,0,-49,-37,-52,3r-15,0","w":212},"\u00f6":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm72,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm141,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":212},"\u00f9":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm108,-223r-49,-56r30,0r35,56r-16,0","w":212},"\u00fa":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm92,-223r35,-56r30,0r-49,56r-16,0","w":212},"\u00fb":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm61,-223r37,-56r16,0r37,56r-20,0v-9,-13,-16,-28,-26,-40r-24,40r-20,0","w":212},"\u00fc":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm72,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm141,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":212},"\u00fd":{"d":"150,-195r24,0r-56,142v-27,70,-49,125,-100,142r-7,-18v48,-24,71,-67,64,-85r-70,-181r23,0r49,124v6,14,8,33,14,43xm75,-223r35,-56r30,0r-49,56r-16,0","w":177,"k":{":":-4,".":7,",":7}},"\u00fe":{"d":"54,-162v41,-68,150,-36,150,62v0,106,-103,135,-150,70r0,110r-23,0r0,-350r23,0r0,108xm117,-181v-50,0,-63,48,-63,105v0,32,24,62,63,62v39,0,65,-33,65,-86v0,-43,-24,-81,-65,-81","w":220},"\u00ff":{"d":"150,-195r24,0v-46,93,-68,249,-156,284r-7,-18v52,-26,71,-69,64,-85r-70,-181r24,0r48,124v6,14,8,32,14,43xm55,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm124,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":177,"k":{":":-4,".":7,",":7}},"\u00b4":{"d":"203,-335r32,0r-54,48r-16,0","w":360},"\u00a8":{"d":"143,-293v-24,-1,-19,-34,1,-34v9,0,15,8,15,17v0,8,-6,17,-16,17xm216,-293v-21,-1,-18,-34,1,-34v9,0,16,8,16,17v0,8,-5,17,-17,17","w":360},"\u00b1":{"d":"189,-184r123,0r0,17r-123,0r0,104r-18,0r0,-104r-123,0r0,-17r123,0r0,-104r18,0r0,104xm48,-8r0,-18r265,0r0,18r-265,0","w":360},"\u00d7":{"d":"193,-135r101,103r-12,12r-102,-102r-102,102r-12,-12r102,-103r-102,-101r12,-13r102,102r102,-102r12,12","w":360},"\u00f7":{"d":"180,-250v13,0,23,11,23,23v0,13,-10,23,-23,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23xm48,-126r0,-17r264,0r0,17r-264,0xm180,-65v13,0,23,11,23,23v0,13,-10,23,-23,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23","w":360},"\u00b0":{"d":"73,-287v26,0,47,22,47,46v0,25,-22,46,-47,46v-25,0,-45,-21,-45,-46v0,-25,20,-46,45,-46xm73,-274v-19,0,-32,16,-32,33v0,18,14,33,32,33v18,0,33,-15,33,-33v0,-18,-15,-33,-33,-33","w":360},"\u00a7":{"d":"111,2r9,-15v9,8,26,18,56,18v35,0,56,-21,56,-44v0,-21,-12,-33,-62,-47v-73,-20,-90,-58,-44,-105v-33,-37,-1,-89,59,-87v29,0,51,10,62,18r-8,16v-9,-7,-31,-18,-59,-18v-28,0,-48,19,-48,36v0,25,28,37,61,43v69,13,83,67,44,107v34,38,1,96,-62,96v-30,0,-51,-6,-64,-18xm138,-183v-30,39,-34,54,36,79v33,11,44,16,51,20v28,-34,18,-70,-36,-81v-19,-4,-39,-11,-51,-18","w":360},"\u00b6":{"d":"196,21r-17,0r0,-126v-52,0,-91,-32,-91,-79v0,-41,22,-89,112,-89v24,0,36,1,44,3r0,291r-17,0r0,-278r-31,0r0,278","w":360},"\u00a0":{"w":86}}});

Cufon.registerFont({"w":202,"face":{"font-family":"Kozuka Gothic Pro OpenType m","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 0 0 0 0 0 0 0","ascent":"317","descent":"-43","x-height":"4","bbox":"-17 -360 327 102","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":80},"!":{"d":"71,-276r-7,194r-32,0r-7,-194r46,0xm48,4v-17,0,-27,-13,-27,-28v0,-16,12,-28,27,-28v16,0,26,12,26,28v0,16,-10,28,-26,28","w":95},"\"":{"d":"26,-181r-7,-101r39,0r-7,101r-25,0xm90,-181r-7,-101r39,0r-7,101r-25,0","w":141},"#":{"d":"72,-81r-10,81r-27,0r10,-81r-32,0r0,-26r37,0r7,-60r-34,0r0,-26r38,0r10,-78r27,0r-11,78r39,0r11,-78r26,0r-10,78r32,0r0,26r-36,0r-7,60r33,0r0,26r-37,0r-11,81r-27,0r11,-81r-39,0xm84,-167r-8,60r39,0r7,-60r-38,0","w":198},"$":{"d":"113,-8r0,44r-28,0r0,-42v-23,-1,-47,-8,-61,-17r11,-31v26,23,100,25,100,-22v0,-22,-13,-35,-46,-49v-36,-16,-62,-34,-62,-70v0,-35,23,-62,60,-69r0,-41r29,0r0,39v23,1,39,8,51,14r-10,30v-10,-5,-27,-13,-49,-13v-27,0,-40,18,-40,34v0,20,14,34,46,45v80,27,83,131,-1,148"},"%":{"d":"75,-270v40,0,61,33,61,79v0,56,-30,84,-63,84v-34,0,-61,-29,-61,-80v0,-51,27,-83,63,-83xm74,-246v-42,1,-39,117,0,115v21,0,30,-26,30,-58v0,-30,-8,-57,-30,-57xm245,-160v40,0,61,34,61,80v0,56,-30,83,-63,83v-34,0,-62,-29,-62,-80v0,-51,28,-83,64,-83xm244,-136v-22,0,-31,30,-31,58v0,32,11,57,31,57v21,0,30,-25,30,-57v0,-30,-8,-58,-30,-58xm247,-270r-152,275r-25,0r152,-275r25,0","w":317},"&":{"d":"197,-50r45,50r-49,0v-7,-7,-13,-14,-22,-25v-21,19,-46,29,-75,29v-102,0,-106,-124,-33,-157v-39,-46,-26,-127,49,-127v35,0,62,23,62,60v0,30,-21,50,-57,75v19,23,42,51,59,70v12,-19,19,-48,23,-77r38,0v-6,41,-19,77,-40,102xm103,-27v25,0,40,-13,48,-22r-69,-81v-13,9,-30,25,-30,50v0,29,20,53,51,53xm109,-252v-43,0,-34,62,-11,84v24,-15,39,-30,39,-51v0,-16,-8,-33,-28,-33","w":243},"'":{"d":"26,-181r-7,-101r39,0r-7,101r-25,0","w":76},"(":{"d":"106,49r-31,0v-24,-33,-51,-86,-51,-166v0,-80,27,-133,51,-166r31,0v-27,39,-47,93,-47,167v0,73,21,125,47,165","w":115,"k":{"\u00dd":-14,"Y":-14,"W":-14,"V":-14,"T":-14,"J":-14}},")":{"d":"10,-283r31,0v24,32,50,85,50,166v0,80,-26,133,-50,166r-31,0v59,-68,61,-264,0,-332","w":115},"*":{"d":"84,-222v11,-17,16,-39,25,-58r27,16r-39,51r61,-9r0,31v-20,-1,-43,-8,-61,-7r39,49r-27,16r-25,-58r-26,58r-26,-16r40,-51r-60,9r0,-31v19,2,42,8,59,8r-39,-50r28,-15","w":169},"+":{"d":"107,-123r0,-95r29,0r0,95r91,0r0,28r-91,0r0,95r-29,0r0,-95r-91,0r0,-28r91,0","w":243},",":{"d":"31,-52r45,-4v-10,36,-28,81,-42,104r-29,2v10,-27,21,-70,26,-102","w":88},"-":{"d":"12,-94r0,-30r99,0r0,30r-99,0","w":123},".":{"d":"48,4v-17,0,-27,-12,-27,-28v0,-17,12,-29,27,-29v16,0,27,12,27,29v0,17,-10,28,-27,28","w":88},"\/":{"d":"135,-280r-104,297r-30,0r103,-297r31,0","w":133},"0":{"d":"100,4v-57,0,-87,-56,-87,-139v0,-89,34,-140,90,-140v57,0,86,55,86,137v0,92,-33,142,-89,142xm101,-30v35,0,46,-50,46,-106v0,-64,-13,-106,-45,-106v-27,0,-47,38,-47,106v0,67,17,106,46,106"},"1":{"d":"132,0r-41,0r0,-233r-46,25r-9,-30r61,-33r35,0r0,271"},"2":{"d":"181,-35r0,35r-164,0r0,-26v46,-49,117,-122,117,-166v0,-26,-13,-50,-47,-50v-21,0,-39,12,-52,22r-13,-30v17,-14,43,-25,73,-25v56,0,81,37,81,78v0,57,-58,116,-104,162r109,0"},"3":{"d":"93,-275v93,-1,96,105,27,129v91,25,68,150,-39,150v-28,0,-53,-8,-66,-17r11,-32v10,6,32,15,54,15v39,0,54,-25,54,-49v-1,-41,-37,-54,-80,-51r0,-30v36,3,68,-8,72,-44v5,-44,-69,-45,-91,-22r-11,-30v14,-10,41,-19,69,-19"},"4":{"d":"161,-72r0,72r-40,0r0,-72r-113,0r0,-27r106,-172r47,0r0,168r33,0r0,31r-33,0xm122,-232v-22,48,-49,86,-75,129r74,0"},"5":{"d":"48,-271r124,0r0,34r-95,0r-9,65v60,-7,109,22,110,83v0,52,-40,93,-99,93v-27,0,-51,-7,-64,-15r10,-32v35,24,110,17,110,-42v0,-46,-51,-64,-104,-55"},"6":{"d":"166,-242v-76,-1,-108,55,-110,93v41,-53,134,-26,134,58v0,50,-32,95,-86,95v-111,0,-108,-183,-47,-237v31,-27,70,-42,108,-42xm104,-27v27,0,44,-26,44,-62v0,-35,-18,-59,-46,-59v-24,0,-48,24,-48,48v0,42,18,73,50,73"},"7":{"d":"21,-237r0,-34r164,0r0,26r-108,245r-43,0r108,-237r-121,0"},"8":{"d":"14,-69v-1,-36,23,-58,50,-74v-73,-33,-39,-136,40,-132v89,4,100,95,34,130v30,13,51,37,51,70v0,47,-38,79,-89,79v-55,0,-86,-35,-86,-73xm101,-26v29,0,46,-20,46,-45v0,-30,-20,-47,-50,-57v-53,12,-56,101,4,102xm102,-246v-27,0,-39,19,-39,40v0,25,17,39,43,48v40,-10,51,-88,-4,-88"},"9":{"d":"36,-30v69,8,112,-55,110,-93v-41,50,-131,20,-131,-57v0,-50,34,-95,88,-95v55,0,86,46,86,113v-1,97,-51,168,-153,166r0,-34xm57,-183v0,67,90,74,90,15v0,-45,-16,-77,-47,-77v-26,0,-43,26,-43,62"},":":{"d":"48,-138v-17,0,-27,-13,-27,-28v0,-16,12,-28,27,-28v16,0,26,11,26,28v0,16,-10,28,-26,28xm48,4v-17,0,-27,-13,-27,-28v0,-16,12,-29,27,-29v16,0,26,12,26,29v0,16,-10,28,-26,28","w":88},";":{"d":"31,-52r45,-4v-11,36,-28,81,-42,103r-29,3v10,-28,21,-71,26,-102xm50,-138v-17,0,-26,-13,-26,-28v0,-17,12,-28,27,-28v16,0,26,11,26,28v0,16,-10,28,-27,28","w":88},"<":{"d":"217,0r-191,-96r0,-25r191,-97r0,33r-156,77r156,76r0,32","w":243},"=":{"d":"228,-164r0,28r-211,0r0,-28r211,0xm228,-84r0,28r-211,0r0,-28r211,0","w":243},">":{"d":"26,-218r192,96r0,27r-192,95r0,-32r159,-77r-159,-77r0,-32","w":243},"?":{"d":"145,-220v0,53,-66,78,-54,139r-37,0v-15,-55,45,-93,48,-133v2,-35,-49,-39,-72,-21r-10,-30v12,-9,34,-15,56,-15v48,0,69,29,69,60xm71,4v-17,0,-26,-13,-26,-28v0,-17,11,-28,26,-28v16,0,27,11,27,28v0,16,-11,28,-27,28","w":160},"@":{"d":"213,-166r-16,97v0,14,4,21,13,21v20,0,42,-28,42,-77v0,-58,-33,-98,-93,-98v-63,0,-118,54,-118,137v0,93,86,131,159,94r7,19v-88,42,-190,-2,-190,-111v0,-85,59,-159,146,-159v68,0,113,49,113,115v0,64,-32,101,-72,101v-20,0,-27,-16,-32,-34v-23,47,-92,48,-95,-16v-3,-64,69,-121,136,-89xm130,-51v37,0,46,-59,52,-98v-43,-11,-74,26,-75,70v0,17,8,28,23,28","w":290},"A":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126","w":237,"k":{"Y":11,"W":4,"V":11,"T":11}},"B":{"d":"192,-209v1,27,-19,48,-46,61v29,7,55,30,55,69v0,29,-14,47,-24,56v-18,28,-103,29,-148,22r0,-271v15,-3,40,-6,64,-6v84,0,99,41,99,69xm70,-161v43,4,80,-8,80,-43v0,-43,-46,-45,-80,-40r0,83xm70,-130r0,99v42,5,89,-4,88,-49v-2,-44,-43,-53,-88,-50","w":216},"C":{"d":"200,-41r7,33v-91,36,-193,-12,-193,-127v0,-117,100,-166,194,-134r-9,35v-69,-28,-141,4,-141,97v0,89,70,125,142,96","w":219},"D":{"d":"241,-144v0,122,-93,161,-212,143r0,-271v20,-3,44,-6,70,-6v117,0,142,73,142,134xm71,-242r0,210v79,9,125,-24,126,-111v1,-79,-51,-110,-126,-99","w":254,"k":{"\u00d6":-4,"\u00d5":-4,"\u00d4":-4,"\u00d3":-4,"\u00d2":-4}},"E":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0","w":192},"F":{"d":"71,0r-42,0r0,-275r143,0r0,35r-101,0r0,84r94,0r0,35r-94,0r0,121","w":190,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"A":11,".":14,",":18}},"G":{"d":"227,-148r0,137v-15,6,-46,14,-79,14v-119,0,-134,-95,-134,-139v0,-113,105,-167,205,-131r-9,34v-70,-27,-152,2,-152,95v0,83,58,123,128,101r0,-78r-47,0r0,-33r88,0","w":248},"H":{"d":"225,-276r0,276r-42,0r0,-125r-112,0r0,125r-42,0r0,-276r42,0r0,114r112,0r0,-114r42,0","w":253},"I":{"d":"29,0r0,-275r42,0r0,275r-42,0","w":99},"J":{"d":"120,-276r0,185v1,89,-54,105,-119,90r5,-35v40,10,72,5,72,-57r0,-183r42,0","w":145,"k":{"}":-7,"]":-7,")":-7}},"K":{"d":"122,-158r96,158r-48,0r-77,-130r-23,29r0,101r-41,0r0,-275r41,0r1,129v28,-46,61,-86,91,-129r51,0","w":216},"L":{"d":"177,-35r0,35r-148,0r0,-275r42,0r0,240r106,0","w":185,"k":{"\u00dd":7,"Y":7,"V":4,"T":7,"-":4}},"M":{"d":"276,-276r16,276r-40,0r-11,-230v-18,75,-48,154,-71,227r-32,0r-38,-122v-12,-35,-18,-74,-28,-105r-12,230r-38,0r18,-276r52,0r39,122r26,94v17,-71,45,-147,67,-216r52,0","w":313},"N":{"d":"226,-275r0,275r-42,0r-72,-129v-19,-29,-30,-66,-48,-93v4,62,3,151,3,222r-38,0r0,-275r45,0r72,127v18,29,32,64,46,91v-6,-65,-4,-145,-4,-218r38,0","w":254},"O":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107","w":261,"k":{".":4,",":4}},"P":{"d":"96,-278v62,-1,101,25,101,82v0,76,-63,96,-127,88r0,108r-41,0r0,-272v17,-3,39,-6,67,-6xm70,-242r0,101v44,9,85,-10,85,-53v0,-43,-45,-58,-85,-48","w":210,"k":{"\u00e0":4,"\u00cf":-4,"\u00ce":-4,"\u00cd":-4,"\u00cc":-4,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"I":-4,".":22,",":22}},"Q":{"d":"238,41v-41,-10,-74,-27,-113,-37v-60,-2,-111,-50,-111,-140v0,-87,48,-144,119,-144v72,0,115,59,115,139v0,71,-31,112,-68,131v24,7,50,13,71,18xm132,-246v-51,0,-74,55,-74,109v0,56,27,107,73,107v48,0,73,-50,73,-109v0,-53,-23,-107,-72,-107","w":261},"R":{"d":"29,-272v71,-14,167,-9,167,70v0,36,-23,59,-49,71v41,6,45,110,59,131r-43,0v-4,-8,-11,-32,-18,-66v-10,-47,-28,-54,-75,-51r0,117r-41,0r0,-272xm70,-148v47,4,84,-9,84,-49v0,-47,-46,-52,-84,-46r0,95","w":214},"S":{"d":"168,-267r-10,34v-9,-5,-26,-12,-49,-12v-33,0,-47,19,-47,37v0,23,15,38,51,50v96,33,84,164,-31,162v-26,0,-54,-8,-67,-17r10,-35v29,23,111,26,111,-25v0,-23,-14,-38,-47,-52v-41,-17,-69,-41,-69,-78v0,-67,95,-95,148,-64","w":194},"T":{"d":"193,-275r0,35r-75,0r0,240r-42,0r0,-240r-74,0r0,-35r191,0","w":194,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"z":7,"y":7,"w":7,"u":7,"s":7,"r":7,"o":7,"m":4,"e":11,"a":11,"T":-4,"A":7,":":-4,".":4,"-":4,",":4,")":-14}},"U":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0","w":250,"k":{".":7,",":4}},"V":{"d":"177,-275r45,0r-90,275r-46,0r-83,-276r45,0r64,232v16,-79,44,-156,65,-231","w":222,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"o":7,"e":7,"a":4,"A":4,":":-7,".":7,"-":4,",":7,")":-14}},"W":{"d":"285,-275r42,0r-70,275r-44,0r-30,-133v-8,-31,-11,-61,-17,-89v-11,75,-34,150,-51,222r-44,0r-65,-275r45,0r45,227v13,-73,36,-154,52,-227r42,0r29,131v8,31,11,65,18,95v12,-77,31,-152,48,-226","w":331,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,"-":4,",":11,")":-14}},"X":{"d":"134,-141r78,141r-47,0r-58,-111r-53,111r-46,0r76,-140r-73,-135r47,0r53,106r52,-106r47,0","w":220},"Y":{"d":"165,-275r47,0r-85,159r0,116r-42,0r0,-115r-81,-160r47,0r57,128","w":212,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"v":4,"u":7,"t":4,"q":7,"o":7,"e":7,"d":4,"a":7,"A":11,".":11,"-":4,",":11,")":-14}},"Z":{"d":"197,-275r0,25r-132,215r134,0r0,35r-189,0r0,-24r134,-216r-122,0r0,-35r175,0","w":210,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"[":{"d":"105,20r0,26r-74,0r0,-326r74,0r0,25r-42,0r0,275r42,0","w":115,"k":{"f":-7,"J":-14}},"\u00a5":{"d":"118,-72r0,72r-39,0r0,-72r-60,0r0,-22r60,0r0,-31r-60,0r0,-22r50,0r-64,-124r44,0r36,82v8,14,8,32,17,41v13,-42,35,-84,52,-123r43,0r-68,124r51,0r0,22r-62,0r0,31r62,0r0,22r-62,0"},"]":{"d":"10,-255r0,-25r75,0r0,326r-75,0r0,-26r43,0r0,-275r-43,0","w":115},"^":{"d":"136,-266r85,190r-33,0r-67,-155r-66,155r-32,0r85,-190r28,0","w":243},"_":{"d":"0,45r0,-18r204,0r0,18r-204,0","w":204},"`":{"d":"57,-225r-48,-58r42,0r35,58r-29,0","w":122},"a":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31","w":191},"b":{"d":"68,-289r1,118v42,-64,137,-25,137,69v0,106,-96,138,-143,72r-2,30r-36,0r2,-289r41,0xm114,-169v-40,0,-46,44,-46,91v0,25,19,48,46,48v32,0,49,-28,49,-70v0,-37,-16,-69,-49,-69","w":220},"c":{"d":"154,-37r6,31v-65,28,-146,-7,-146,-91v0,-76,74,-127,147,-97r-8,32v-44,-23,-96,8,-96,63v0,60,51,81,97,62","w":171},"d":{"d":"192,-289r2,289r-37,0v-2,-10,0,-23,-3,-31v-38,67,-140,30,-140,-66v0,-95,90,-137,136,-79r0,-113r42,0xm106,-30v41,0,44,-43,44,-88v0,-32,-20,-52,-43,-52v-32,0,-50,32,-50,71v0,39,17,69,49,69","w":218},"e":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53","w":195,"k":{"j":-4}},"f":{"d":"5,-198r27,0v0,-22,0,-54,22,-76v21,-20,54,-24,79,-13r-4,32v-35,-15,-63,12,-56,57r44,0r0,31r-43,0r0,167r-42,0r0,-167r-27,0r0,-31","w":119,"k":{"}":-32,"]":-29,")":-32,"'":-29,"\"":-32}},"g":{"d":"155,-198r37,0v-3,45,-2,118,-2,170v0,40,-3,113,-97,113v-23,0,-47,-6,-62,-15r9,-32v46,30,127,13,108,-68v-41,61,-134,16,-134,-68v0,-97,99,-137,139,-74xm105,-33v36,0,44,-43,44,-89v0,-26,-17,-48,-43,-48v-29,0,-49,28,-49,70v0,39,17,67,48,67","w":217},"h":{"d":"190,-120r0,120r-41,0v-7,-61,24,-168,-38,-168v-21,0,-43,17,-43,47r0,121r-41,0r0,-289r41,0r1,118v38,-53,121,-46,121,51","w":216},"i":{"d":"72,-253v0,13,-9,24,-24,24v-14,0,-25,-11,-25,-24v0,-14,11,-25,25,-25v14,0,24,11,24,25xm68,-199r0,199r-41,0r0,-199r41,0","w":95},"j":{"d":"77,-253v0,13,-10,24,-25,24v-14,0,-24,-11,-24,-24v0,-14,11,-25,25,-25v15,0,24,11,24,25xm73,-199v-6,88,20,215,-24,263v-15,16,-40,21,-61,21r-5,-32v43,-4,49,-26,49,-84r0,-168r41,0","w":99},"k":{"d":"113,-117r79,117r-51,0r-56,-91r-17,20r0,71r-41,0r0,-289r41,0r1,180v20,-32,43,-59,65,-89r49,0","w":188},"l":{"d":"68,-289r0,289r-41,0r0,-289r41,0","w":95},"m":{"d":"299,-120r0,120r-41,0v-6,-59,21,-168,-36,-168v-19,0,-39,17,-39,46r0,122r-41,0r0,-120v0,-28,-10,-48,-34,-48v-19,0,-40,17,-40,48r0,120r-41,0r-2,-198r36,0v2,9,0,22,3,29v16,-41,98,-46,112,3v33,-55,123,-56,123,46","w":324},"n":{"d":"190,-121r0,121r-41,0v-7,-61,24,-168,-38,-168v-21,0,-43,16,-43,48r0,120r-41,0r-2,-198r37,0v2,9,0,22,3,29v9,-17,30,-34,60,-34v31,0,65,21,65,82","w":216},"o":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73","w":212},"p":{"d":"62,-198v2,9,0,22,3,30v43,-67,141,-32,141,66v0,102,-89,134,-138,79r0,103r-41,0r-2,-278r37,0xm114,-169v-38,0,-46,42,-46,89v0,36,24,51,45,51v32,0,50,-30,50,-71v0,-38,-17,-69,-49,-69","w":220},"q":{"d":"154,-198r40,0r-2,278r-42,0r-1,-107v-40,61,-135,25,-135,-69v0,-72,44,-107,84,-107v27,-1,43,14,55,31xm105,-30v46,0,45,-43,45,-89v0,-31,-20,-50,-43,-50v-32,0,-50,29,-50,70v0,39,15,69,48,69","w":218},"r":{"d":"126,-202r0,40v-75,-14,-56,92,-58,162r-41,0r-2,-198r37,0v1,11,-1,27,2,36v11,-28,32,-45,62,-40","w":132,"k":{".":4,",":4}},"s":{"d":"135,-191r-10,30v-14,-13,-66,-18,-66,13v0,14,8,24,33,31v75,23,61,121,-24,121v-21,0,-41,-5,-54,-13r9,-31v18,15,81,21,79,-13v0,-15,-8,-25,-33,-33v-76,-25,-61,-115,18,-117v19,0,37,6,48,12","w":155},"t":{"d":"121,-1v-45,15,-86,-5,-86,-63r0,-103r-28,0r0,-31r28,0r0,-36r41,-13r0,49r47,0r0,31r-47,0r0,100v-2,33,19,43,44,34","w":132},"u":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0","w":214},"v":{"d":"142,-198r43,0r-71,198r-40,0r-69,-198r45,0r46,156","w":189,"k":{".":7,",":4}},"w":{"d":"241,-198r42,0r-61,198r-37,0r-26,-88v-7,-20,-9,-42,-16,-63v-10,57,-27,100,-42,151r-38,0r-57,-198r43,0r36,158v11,-54,29,-106,43,-158r34,0r43,158v8,-53,24,-107,36,-158","w":288,"k":{":":-4,".":7,",":7}},"x":{"d":"134,-198r45,0r-62,95r63,103r-47,0r-43,-76r-41,76r-46,0r64,-101r-61,-97r46,0r42,72v12,-26,26,-48,40,-72","w":183},"y":{"d":"140,-198r44,0v-44,100,-61,261,-158,288r-11,-36v45,-21,64,-52,57,-69r-68,-183r45,0r48,151","w":186,"k":{":":-7,".":7,",":7}},"z":{"d":"15,-198r144,0r0,26r-100,138r102,0r0,34r-153,0r0,-25r101,-140r-94,0r0,-33","w":168},"{":{"d":"44,-118v37,8,25,64,25,105v0,33,20,33,35,33r0,26v-25,0,-67,0,-67,-56v0,-39,29,-92,-26,-96r1,-23v55,-3,25,-59,25,-97v0,-54,46,-54,67,-54r0,25v-15,0,-35,0,-35,33v0,38,15,99,-25,104","w":115,"k":{"f":-7,"J":-11}},"\u00a6":{"d":"65,-276r0,143r-32,0r0,-143r32,0xm65,-71r0,143r-32,0r0,-143r32,0","w":98},"}":{"d":"11,-255r0,-25v22,0,68,0,68,54v0,34,-30,98,25,97r1,23v-56,2,-26,58,-26,96v0,56,-43,56,-68,56r0,-26v15,0,36,0,36,-33v0,-38,-13,-100,25,-105v-40,-4,-25,-65,-25,-104v0,-33,-21,-33,-36,-33","w":115},"\\":{"d":"32,-280r97,297r-30,0r-98,-297r31,0","w":130},"|":{"d":"33,102r0,-409r32,0r0,409r-32,0","w":98},"~":{"d":"72,-149v26,0,77,36,103,35v13,0,20,-12,20,-34r27,0v2,47,-20,65,-47,65v-27,0,-79,-35,-104,-36v-13,0,-21,10,-22,34r-28,0v-1,-44,22,-64,51,-64","w":243},"\u00a1":{"d":"64,-114r7,193r-45,0r6,-193r32,0xm48,-201v17,0,27,13,27,28v0,16,-11,28,-27,28v-15,0,-26,-12,-26,-28v0,-16,11,-28,26,-28","w":95},"\u00a2":{"d":"133,-36r0,41r-29,0r0,-42v-50,-7,-77,-44,-77,-99v0,-52,29,-93,77,-102r0,-41r29,0r0,40v15,0,31,4,40,9r-8,31v-44,-26,-96,7,-96,62v0,63,53,84,98,61r7,30v-8,4,-24,9,-41,10"},"\u00a3":{"d":"185,-34r0,34r-165,0r0,-23v30,-17,51,-52,43,-99r-40,0r0,-28r35,0v-17,-63,11,-125,74,-125v20,0,35,5,43,10r-9,31v-29,-19,-73,-2,-73,40v0,17,1,31,4,44r55,0r0,28r-51,0v3,33,4,49,-30,88r114,0"},"\u00a4":{"d":"27,-239r29,32v21,-23,72,-21,91,0r29,-32r20,20r-33,31v17,22,17,79,0,99r31,32r-19,20r-28,-32v-25,23,-67,22,-92,1r-28,31r-19,-20r31,-30v-19,-23,-18,-79,1,-101r-32,-31xm101,-195v-27,0,-43,25,-43,57v2,76,84,77,85,-1v0,-30,-15,-56,-42,-56"},"\u00ab":{"d":"61,-178r32,0r-51,75r51,75r-32,0r-50,-75xm129,-178r32,0r-50,75r50,75r-32,0r-50,-75","w":169},"\u00b7":{"d":"45,-79v-17,0,-27,-12,-27,-28v0,-17,12,-29,27,-29v16,0,26,12,26,29v0,17,-10,28,-26,28","w":88},"\u00bb":{"d":"9,-28r50,-75r-50,-75r32,0r50,75r-50,75r-32,0xm77,-28r50,-75r-50,-75r31,0r51,75r-50,75r-32,0","w":169},"\u00bf":{"d":"93,-201v17,0,26,13,26,28v0,16,-10,28,-26,28v-16,0,-27,-12,-27,-28v0,-16,11,-28,27,-28xm18,23v0,-53,68,-78,55,-139r37,0v18,56,-47,91,-49,134v-1,36,51,39,73,20r10,30v-12,8,-35,16,-57,16v-48,0,-69,-30,-69,-61","w":160},"\u00af":{"d":"15,-239r0,-25r92,0r0,25r-92,0","w":122},"\u00b8":{"d":"37,33r18,-34r24,0r-12,21v15,2,28,13,28,29v1,35,-47,39,-72,26r7,-18v13,8,38,11,38,-7v0,-10,-12,-15,-31,-17","w":122},"\u00c6":{"d":"80,-90r-36,90r-43,0r114,-275r171,0r0,35r-106,0r8,81r96,0r0,34r-91,0r10,90r95,0r0,35r-131,0r-10,-90r-77,0xm140,-246v-18,39,-31,83,-48,123r60,0","w":308},"\u00aa":{"d":"69,-241v71,0,46,72,54,132r-27,0v-1,-5,0,-12,-3,-15v-18,28,-80,20,-80,-21v0,-31,31,-49,78,-48v6,-28,-44,-32,-61,-16r-7,-20v11,-7,28,-12,46,-12xm64,-128v27,0,29,-20,27,-45v-22,0,-48,4,-48,25v0,13,10,20,21,20","w":138},"\u00d8":{"d":"71,-15r-23,34r-23,-17r23,-36v-22,-25,-34,-61,-34,-103v0,-111,93,-178,179,-124r20,-32r25,15r-23,36v21,25,33,62,33,102v1,122,-93,175,-177,125xm131,-246v-72,-2,-93,114,-59,174r101,-157v-11,-10,-25,-17,-42,-17xm131,-30v69,3,94,-110,60,-173r-101,156v11,11,24,17,41,17","w":261},"\u00ba":{"d":"72,-242v39,0,62,28,62,67v1,94,-125,87,-125,2v0,-43,29,-69,63,-69xm71,-219v-45,0,-38,90,0,90v20,0,32,-20,32,-45v0,-20,-9,-45,-32,-45","w":143},"\u00e6":{"d":"148,-164v13,-24,37,-39,65,-39v64,0,79,64,72,110r-121,0v-6,67,65,75,106,55r7,29v-45,23,-115,16,-134,-27v-13,25,-38,40,-70,40v-39,0,-60,-27,-60,-58v0,-47,43,-72,111,-71v1,-23,-2,-47,-41,-47v-18,0,-36,6,-47,14r-9,-27v35,-26,110,-25,121,21xm84,-27v43,0,42,-33,41,-71v-32,-1,-71,6,-71,41v0,20,14,30,30,30xm164,-122r83,0v1,-22,-9,-51,-39,-51v-30,0,-43,29,-44,51","w":300},"\u00f8":{"d":"60,-9r-16,26r-17,-13r16,-26v-18,-18,-29,-44,-29,-77v-1,-85,74,-127,139,-91r16,-25r18,12r-17,27v18,18,28,44,28,76v-2,93,-74,124,-138,91xm66,-55r69,-105v-7,-7,-17,-11,-29,-11v-53,3,-62,75,-40,116xm147,-141r-69,103v38,31,80,-10,80,-61v0,-14,-3,-28,-11,-42","w":212},"\u00df":{"d":"163,-59v-2,-36,-51,-54,-51,-93v0,-21,13,-39,35,-50v10,-29,-7,-58,-34,-58v-27,0,-45,20,-45,76r0,184r-41,0r0,-182v0,-76,26,-106,89,-111v53,-5,92,56,65,103v-71,36,23,75,23,128v0,55,-64,80,-114,58r6,-31v24,14,69,6,67,-24","w":217},"\u00ad":{"d":"17,-96r0,-28r211,0r0,28r-211,0","w":243},"\u00a9":{"d":"14,-139v0,-77,63,-126,125,-126v69,0,124,57,124,126v0,71,-55,127,-124,127v-70,0,-125,-57,-125,-127xm36,-138v0,62,48,107,103,107v59,0,101,-50,101,-108v0,-57,-42,-107,-101,-107v-58,0,-103,47,-103,108xm190,-93r5,17v-51,33,-125,0,-125,-61v0,-65,77,-93,124,-65r-5,18v-5,-3,-21,-9,-40,-9v-36,0,-55,23,-55,55v0,50,59,70,96,45","w":276},"\u00ac":{"d":"227,-167r0,119r-29,0r0,-91r-182,0r0,-28r211,0","w":243},"\u00ae":{"d":"17,-212v0,-38,31,-68,68,-68v39,0,69,31,69,68v0,37,-30,67,-69,67v-38,0,-68,-29,-68,-67xm34,-212v0,32,24,53,51,53v30,0,51,-23,51,-53v0,-29,-22,-53,-51,-53v-29,0,-51,24,-51,53xm75,-179r-16,0r0,-65v17,-2,56,-9,56,17v1,8,-8,12,-14,16v10,0,13,26,17,32r-18,0v-5,-9,-3,-30,-25,-25r0,25xm76,-234r0,18v19,5,31,-17,8,-18r-8,0","w":170},"\u00b2":{"d":"114,-179r-110,0v-3,-24,14,-29,24,-40v28,-30,49,-48,49,-69v0,-31,-45,-31,-61,-14r-9,-22v10,-9,29,-16,50,-16v89,0,52,92,4,124v-3,4,-9,7,-11,12r64,0r0,25","w":124},"\u00b3":{"d":"30,-274v20,1,42,-3,44,-23v2,-25,-46,-20,-57,-9r-7,-22v26,-21,106,-13,97,27v1,18,-13,28,-30,37v21,3,36,18,36,39v0,44,-75,62,-110,38r7,-23v16,14,69,13,69,-16v0,-27,-34,-27,-49,-27r0,-21","w":122},"\u00b5":{"d":"32,81v-11,-75,-3,-193,-5,-280r41,0r0,119v0,28,10,50,37,50v18,0,42,-16,42,-46r0,-123r42,0r0,144v0,19,4,27,17,27r-3,30v-26,7,-44,-4,-51,-30v-7,26,-68,47,-87,13v0,31,0,74,5,96r-38,0","w":215},"\u00b9":{"d":"76,-338r0,159r-32,0r-1,-131r-30,14r-5,-24v20,-8,36,-21,68,-18","w":102},"\u00bc":{"d":"268,-41r0,41r-31,0r0,-41r-76,0r0,-18r72,-102r35,0r0,98r22,0r0,22r-22,0xm192,-64v12,3,31,0,45,1v0,-23,4,-49,1,-70v-13,26,-30,46,-46,69xm21,-226r-6,-23v20,-9,36,-23,69,-19r0,160r-33,0r0,-132xm82,4r-25,0r151,-274r25,0","w":304},"\u00bd":{"d":"15,-226r-5,-23v20,-9,35,-23,68,-19r0,160r-32,0r-1,-132xm73,4r-25,0r151,-274r25,0xm287,0r-110,0v-3,-24,13,-29,23,-40v29,-30,49,-48,49,-69v0,-31,-46,-31,-60,-14r-10,-22v11,-9,29,-17,50,-17v38,0,55,24,55,47v0,35,-37,63,-62,89r65,0r0,26","w":304},"\u00be":{"d":"271,-41r0,41r-31,0r0,-41r-76,0r0,-18r73,-102r34,0r0,98r23,0r0,22r-23,0xm196,-64v12,3,30,0,44,1v0,-23,4,-49,1,-70v-12,26,-29,46,-45,69xm85,-194v21,3,37,19,37,40v0,42,-76,59,-110,37r7,-23v16,14,69,14,69,-16v0,-27,-34,-27,-49,-27r0,-20v20,1,41,-4,43,-24v3,-25,-45,-20,-56,-9r-7,-22v26,-21,106,-13,97,27v0,17,-12,30,-31,37xm95,4r-26,0r151,-274r25,0","w":304},"\u00c0":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm109,-291r-52,-47r48,0r37,47r-33,0","w":237,"k":{"\u00dd":11,"Y":11,"W":4,"V":4}},"\u00c1":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm98,-290r37,-48r48,0r-52,48r-33,0","w":237,"k":{"\u00dd":11,"Y":7,"W":4,"V":4,"T":7}},"\u00c2":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm63,-290r40,-46r32,0r41,46r-33,0v-9,-8,-15,-19,-25,-26r-23,26r-32,0","w":237,"k":{"\u00dd":7,"Y":11,"W":4,"V":4,"T":7}},"\u00c3":{"d":"144,-275r85,275r-45,0r-24,-81r-85,0r-24,81r-42,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm96,-336v20,0,48,36,53,-1r21,0v4,55,-45,43,-70,27v-6,0,-10,6,-11,17r-21,0v-1,-27,10,-43,28,-43","w":237,"k":{"\u00dd":11,"Y":11,"W":4,"V":4,"T":7}},"\u00c4":{"d":"144,-275r85,275r-45,0r-24,-81r-84,0r-24,81r-43,0r85,-275r50,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm81,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,22,10,22,23v0,13,-10,22,-22,22xm157,-294v-13,0,-21,-10,-21,-22v0,-12,9,-23,21,-23v12,0,22,10,22,23v0,13,-9,22,-22,22","w":237,"k":{"Y":11,"W":4,"V":4,"T":7}},"\u00c5":{"d":"144,-275r85,275r-45,0r-24,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm120,-360v28,0,41,18,41,38v0,21,-16,37,-41,37v-26,0,-42,-16,-42,-36v0,-21,16,-39,42,-39xm119,-343v-26,0,-25,41,0,41v12,0,19,-9,19,-20v0,-11,-7,-21,-19,-21","w":237,"k":{"\u00fd":7,"\u00dd":11,"Y":7,"W":4,"V":4,"T":7}},"\u00c7":{"d":"200,-41r7,33v-12,8,-51,15,-81,11r-10,17v15,3,29,13,29,30v0,37,-47,42,-73,27r6,-19v11,6,38,10,39,-7v0,-10,-13,-14,-32,-16r18,-36v-55,-15,-89,-62,-89,-134v0,-117,100,-166,194,-134r-9,35v-69,-28,-141,4,-141,97v0,89,70,125,142,96","w":219},"\u00c8":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm86,-291r-51,-47r47,0r38,47r-34,0","w":192},"\u00c9":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm75,-290r37,-48r48,0r-51,48r-34,0","w":192},"\u00ca":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm40,-290r40,-46r32,0r41,46r-33,0v-9,-8,-15,-19,-25,-26r-23,26r-32,0","w":192},"\u00cb":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm58,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,22,10,22,23v0,13,-10,22,-22,22xm135,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":192},"\u00cc":{"d":"29,0r0,-275r42,0r0,275r-42,0xm40,-291r-52,-47r48,0r37,47r-33,0","w":99},"\u00cd":{"d":"29,0r0,-275r42,0r0,275r-42,0xm29,-290r37,-48r47,0r-51,48r-33,0","w":99},"\u00ce":{"d":"29,0r0,-275r42,0r0,275r-42,0xm-7,-290r40,-46r33,0r40,46r-33,0v-8,-8,-15,-19,-24,-26r-23,26r-33,0","w":99},"\u00cf":{"d":"29,0r0,-275r42,0r0,275r-42,0xm12,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-9,22,-21,22xm88,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":99},"\u00d0":{"d":"243,-144v0,123,-93,160,-212,143r0,-124r-31,0r0,-32r31,0r0,-115v20,-4,45,-6,71,-6v120,0,141,77,141,134xm73,-157r61,0r0,32r-61,0r0,93v79,8,125,-25,126,-111v1,-76,-49,-111,-126,-99r0,85","w":257},"\u00d1":{"d":"226,-275r0,275r-42,0r-72,-129v-19,-29,-30,-66,-48,-93v4,62,3,151,3,222r-38,0r0,-275r45,0r72,127v18,29,32,64,46,91v-6,-65,-4,-145,-4,-218r38,0xm105,-336v19,0,47,36,52,-1r21,0v4,56,-45,42,-70,27v-6,0,-9,6,-10,17r-21,0v-1,-27,10,-43,28,-43","w":254},"\u00d2":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm121,-291r-52,-47r48,0r37,47r-33,0","w":261},"\u00d3":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm110,-290r37,-48r48,0r-52,48r-33,0","w":261},"\u00d4":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm74,-290r40,-46r33,0r41,46r-34,0v-8,-8,-15,-19,-24,-26r-23,26r-33,0","w":261},"\u00d5":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-50,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-23,-107,-73,-107xm108,-336v20,0,48,36,53,-1r21,0v4,55,-45,43,-70,27v-6,0,-10,6,-11,17r-21,0v-1,-27,10,-43,28,-43","w":261},"\u00d6":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm93,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-9,22,-21,22xm169,-294v-13,0,-21,-10,-21,-22v0,-12,9,-23,21,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":261},"\u00d9":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm115,-291r-51,-47r48,0r37,47r-34,0","w":250},"\u00da":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm105,-290r36,-48r48,0r-51,48r-33,0","w":250},"\u00db":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm69,-290r40,-46r32,0r41,46r-33,0v-8,-8,-15,-19,-24,-26r-23,26r-33,0","w":250},"\u00dc":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm88,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-9,22,-21,22xm164,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":250},"\u00dd":{"d":"165,-275r47,0r-85,159r0,116r-42,0r0,-115r-81,-160r47,0r57,128xm85,-290r37,-48r48,0r-51,48r-34,0","w":212,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,".":11,"-":4,",":11,")":-14}},"\u00de":{"d":"70,0r-41,0r0,-275r41,0r0,52v9,-1,19,-2,33,-2v78,0,93,49,93,77v0,69,-59,96,-126,86r0,62xm70,-96v44,8,84,-8,84,-48v0,-42,-45,-56,-84,-46r0,94","w":210},"\u00e0":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm91,-225r-47,-58r42,0r34,58r-29,0","w":191},"\u00e1":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm75,-225r34,-58r42,0r-48,58r-28,0","w":191},"\u00e2":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm44,-225r37,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-22,37r-29,0","w":191},"\u00e3":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm74,-275v19,0,48,39,52,-1r21,0v3,57,-44,43,-70,28v-6,0,-9,6,-10,18r-22,0v-1,-27,11,-45,29,-45","w":191},"\u00e4":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm58,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22xm134,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":191},"\u00e5":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm96,-296v25,0,42,16,42,39v0,21,-18,38,-42,38v-26,0,-42,-17,-42,-38v0,-23,17,-39,42,-39xm96,-279v-28,1,-25,42,0,43v13,0,20,-9,20,-21v0,-12,-7,-22,-20,-22","w":191},"\u00e7":{"d":"154,-37r6,31v-10,5,-36,11,-60,10r-9,16v15,2,29,13,29,29v1,35,-48,39,-73,26r7,-18v13,7,38,11,38,-7v0,-10,-12,-15,-31,-17r17,-33v-40,-12,-64,-47,-64,-97v0,-76,75,-127,147,-97r-8,32v-44,-23,-96,8,-96,63v0,60,50,81,97,62","w":171},"\u00e8":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm94,-225r-48,-58r42,0r34,58r-28,0","w":195,"k":{"j":-4}},"\u00e9":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm77,-225r34,-58r42,0r-48,58r-28,0","w":195,"k":{"j":-4}},"\u00ea":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm46,-225r38,-58r28,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-21,37r-30,0","w":195,"k":{"j":-4}},"\u00eb":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm60,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22xm136,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":195,"k":{"j":-4}},"\u00ec":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm43,-225r-48,-58r43,0r34,58r-29,0","w":95},"\u00ed":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm26,-225r35,-58r42,0r-48,58r-29,0","w":95},"\u00ee":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm-4,-225r37,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-21,37r-30,0","w":95},"\u00ef":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm10,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm85,-231v-13,0,-22,-10,-22,-22v0,-13,10,-23,23,-23v12,0,21,10,21,23v0,12,-9,22,-22,22","w":95},"\u00f0":{"d":"97,-230r-54,25r-8,-18r43,-21v-11,-9,-24,-16,-38,-24r19,-24v18,9,37,19,54,32r49,-24r10,19r-41,19v47,40,64,89,64,142v2,148,-181,138,-181,7v0,-80,67,-119,123,-89v-10,-16,-24,-31,-40,-44xm152,-99v0,-19,0,-71,-47,-71v-69,0,-60,142,-1,143v30,0,48,-32,48,-72","w":210},"\u00f1":{"d":"190,-121r0,121r-41,0v-7,-61,24,-168,-38,-168v-21,0,-43,16,-43,48r0,120r-41,0r-2,-198r37,0v2,9,0,22,3,29v9,-17,30,-34,60,-34v31,0,65,21,65,82xm86,-275v19,0,48,39,53,-1r20,0v4,58,-44,42,-70,28v-6,0,-9,6,-10,18r-22,0v-1,-27,11,-45,29,-45","w":216},"\u00f2":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm102,-225r-48,-58r42,0r35,58r-29,0","w":212},"\u00f3":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm85,-225r35,-58r42,0r-48,58r-29,0","w":212},"\u00f4":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm54,-225r38,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-22,37r-30,0","w":212},"\u00f5":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm84,-275v19,0,48,39,52,-1r21,0v4,58,-44,42,-70,28v-6,0,-9,6,-10,18r-22,0v-1,-27,11,-45,29,-45","w":212},"\u00f6":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm69,-231v-14,0,-23,-10,-23,-22v0,-13,10,-23,23,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm144,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":212},"\u00f9":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm103,-225r-48,-58r43,0r34,58r-29,0","w":214},"\u00fa":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm86,-225r35,-58r42,0r-48,58r-29,0","w":214},"\u00fb":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm55,-225r38,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-22,37r-30,0","w":214},"\u00fc":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm70,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm145,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":214},"\u00fd":{"d":"140,-198r44,0v-44,100,-61,261,-158,288r-11,-36v45,-21,64,-52,57,-69r-68,-183r45,0r48,151xm72,-225r35,-58r42,0r-48,58r-29,0","w":186,"k":{":":-4,".":7,",":7}},"\u00fe":{"d":"68,-274r1,104v42,-64,137,-29,137,69v0,74,-43,105,-83,105v-25,1,-43,-12,-55,-27r0,103r-41,0r0,-354r41,0xm115,-169v-45,0,-47,44,-47,91v0,17,13,49,46,49v31,0,49,-29,49,-71v0,-38,-17,-69,-48,-69","w":220},"\u00ff":{"d":"140,-198r44,0v-43,100,-62,262,-158,288r-11,-36v45,-21,64,-50,57,-69r-68,-183r45,0r48,151xm56,-231v-14,0,-23,-10,-23,-22v0,-13,10,-23,23,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm131,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":186,"k":{":":-4,".":7,",":7}},"\u00b4":{"d":"195,-341r50,0r-53,50r-34,0","w":360},"\u00a8":{"d":"142,-293v-14,0,-22,-11,-22,-23v0,-12,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,23,-22,23xm220,-293v-13,0,-21,-11,-21,-23v0,-12,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,23,-23,23","w":360},"\u00b1":{"d":"195,-195r115,0r0,29r-115,0r0,96r-30,0r0,-96r-115,0r0,-29r115,0r0,-96r30,0r0,96xm50,-5r0,-30r261,0r0,30r-261,0","w":360},"\u00d7":{"d":"201,-136r96,96r-21,21r-96,-96r-96,96r-21,-21r96,-96r-96,-96r22,-21r95,96r96,-96r21,21","w":360},"\u00f7":{"d":"180,-255v16,0,28,13,28,28v0,16,-13,28,-28,28v-15,0,-28,-12,-28,-28v0,-15,13,-28,28,-28xm50,-121r0,-30r260,0r0,30r-260,0xm180,-73v16,0,28,13,28,28v0,16,-13,29,-28,29v-15,0,-28,-13,-28,-29v0,-15,13,-28,28,-28","w":360},"\u00b0":{"d":"71,-292v28,0,49,23,49,49v0,27,-22,49,-49,49v-27,0,-49,-22,-49,-49v0,-27,22,-49,49,-49xm71,-273v-17,0,-30,14,-30,30v0,17,14,30,30,30v17,0,30,-13,30,-30v0,-17,-13,-30,-30,-30","w":360},"\u00a7":{"d":"104,8r11,-27v16,19,105,28,105,-15v0,-17,-11,-29,-52,-39v-70,-17,-103,-69,-46,-113v-37,-40,1,-94,66,-94v27,0,49,6,64,14r-10,28v-16,-16,-99,-24,-99,13v0,19,20,29,52,35v69,13,95,74,47,115v8,6,16,20,16,37v1,67,-107,79,-154,46xm143,-173v-26,26,-27,48,28,65v26,9,41,15,49,19v24,-25,17,-54,-26,-65v-18,-5,-39,-13,-51,-19","w":360},"\u00b6":{"d":"194,20r-28,0r0,-127v-40,0,-80,-28,-80,-79v0,-43,24,-90,115,-90v24,0,41,1,51,3r0,293r-28,0r0,-269r-30,0r0,269","w":360},"\u00a0":{"w":80}}});

Cufon.registerFont({"w":198,"face":{"font-family":"Kozuka Gothic Pro OpenType r","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 0 0 0 0 0 0 0","ascent":"317","descent":"-43","x-height":"4","bbox":"-18 -355 327 102","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":83},"!":{"d":"62,-274r-5,198r-24,0r-5,-198r34,0xm45,4v-13,0,-21,-10,-21,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22","w":89},"\"":{"d":"28,-186r-6,-95r31,0r-7,95r-18,0xm85,-186r-6,-95r30,0r-5,95r-19,0","w":131},"#":{"d":"69,-83r-11,83r-22,0r11,-83r-33,0r0,-20r36,0r8,-66r-34,0r0,-20r37,0r10,-81r22,0r-11,81r42,0r11,-81r21,0r-10,81r32,0r0,20r-35,0r-8,66r34,0r0,20r-37,0r-11,83r-21,0r10,-83r-41,0xm80,-169r-8,66r41,0r8,-66r-41,0","w":192},"$":{"d":"139,-74v0,-57,-109,-61,-109,-124v0,-34,23,-59,58,-65r0,-42r22,0r0,41v23,1,39,7,50,14r-9,22v-10,-5,-26,-14,-48,-14v-29,0,-44,21,-44,40v0,23,17,35,49,50v39,18,60,38,60,75v0,33,-21,63,-60,69r0,43r-23,0r0,-41v-21,0,-44,-8,-58,-18r9,-23v28,25,103,23,103,-27"},"%":{"d":"73,-269v36,0,58,30,58,79v0,109,-119,112,-118,4v0,-54,28,-83,60,-83xm72,-250v-24,0,-35,33,-35,64v0,33,12,60,35,60v24,0,34,-28,34,-62v0,-32,-8,-62,-34,-62xm237,-159v36,0,58,30,58,79v0,109,-120,111,-118,3v0,-54,28,-82,60,-82xm237,-140v-24,0,-35,31,-35,62v0,34,11,62,34,62v25,0,35,-28,35,-63v0,-32,-8,-61,-34,-61xm241,-269r-154,274r-21,0r154,-274r21,0","w":308},"&":{"d":"199,-148r28,0v-7,42,-18,76,-38,100r44,48r-36,0v-8,-8,-15,-16,-26,-28v-48,57,-158,33,-158,-44v0,-37,23,-62,52,-82v-40,-45,-27,-125,43,-125v31,0,56,21,56,57v0,30,-19,51,-60,75r70,81v13,-21,20,-48,25,-82xm42,-76v0,61,83,74,114,31r-78,-90v-15,10,-36,28,-36,59xm105,-257v-48,0,-40,69,-15,93v28,-16,47,-32,47,-56v0,-18,-9,-37,-32,-37","w":234},"'":{"d":"28,-186r-6,-95r31,0r-7,95r-18,0","w":74},"(":{"d":"104,49r-24,0v-26,-33,-54,-85,-54,-165v0,-80,28,-133,54,-167r24,0v-30,40,-51,93,-51,167v0,72,22,124,51,165","w":111,"k":{"\u00dd":-14,"Y":-14,"W":-14,"V":-14,"T":-14,"J":-14}},")":{"d":"8,-283r24,0v26,33,53,86,53,166v0,80,-27,131,-53,166r-24,0v29,-40,51,-93,51,-166v0,-73,-21,-125,-51,-166","w":111},"*":{"d":"107,-279r22,13r-37,51r60,-7r0,25v-19,-1,-42,-7,-60,-6r38,49r-23,13v-9,-18,-15,-39,-26,-56r-27,56r-20,-13r37,-50r-59,7r0,-25r59,6r-37,-49r22,-13r26,54","w":163},"+":{"d":"110,-120r0,-97r23,0r0,97r93,0r0,22r-93,0r0,98r-23,0r0,-98r-94,0r0,-22r94,0","w":242},",":{"d":"31,-43r35,-4v-9,33,-26,78,-36,95r-22,3v8,-22,19,-66,23,-94","w":79},"-":{"d":"12,-98r0,-23r99,0r0,23r-99,0","w":122},".":{"d":"42,4v-14,0,-21,-10,-21,-22v0,-14,9,-24,22,-24v13,0,21,10,21,24v0,13,-9,22,-22,22","w":78},"\/":{"d":"138,-279r-115,295r-24,0r114,-295r25,0","w":137},"0":{"d":"98,4v-49,0,-84,-48,-84,-138v0,-94,38,-140,88,-140v51,0,82,48,82,136v0,94,-32,142,-86,142xm99,-20v40,0,55,-52,55,-116v0,-67,-16,-114,-54,-114v-32,0,-55,43,-55,114v0,71,20,116,54,116"},"1":{"d":"123,0r-29,0r-1,-242r-44,26r-8,-22v27,-11,40,-36,82,-32r0,270"},"2":{"d":"177,-24r0,24r-159,0v-3,-27,14,-33,26,-46v62,-67,96,-104,96,-148v0,-29,-12,-55,-51,-55v-22,0,-41,12,-54,22r-10,-21v17,-15,41,-26,70,-26v54,0,76,39,76,76v0,57,-65,119,-113,174r119,0"},"3":{"d":"91,-274v91,1,89,106,22,128v32,5,59,31,59,70v0,43,-32,80,-92,80v-27,0,-51,-8,-63,-17r9,-23v10,6,31,16,55,16v45,0,60,-31,60,-56v-2,-46,-40,-61,-87,-58r0,-22v40,3,77,-9,77,-50v0,-23,-14,-44,-46,-44v-20,0,-38,10,-49,18r-9,-22v13,-10,38,-20,64,-20"},"4":{"d":"153,-76r0,76r-28,0r0,-76r-118,0r0,-19r115,-175r31,0r0,171r37,0r0,23r-37,0xm37,-99r88,0r0,-139v-26,54,-58,91,-88,139"},"5":{"d":"49,-270r118,0r0,25r-96,0r-12,77v59,-10,109,20,112,81v4,79,-97,113,-155,75r9,-23v38,28,116,15,116,-49v0,-49,-53,-73,-109,-60"},"6":{"d":"161,-249v-74,-1,-114,56,-116,106v36,-58,140,-34,140,53v0,49,-30,94,-83,94v-53,0,-88,-43,-88,-113v0,-80,45,-163,147,-165r0,25xm103,-19v31,0,51,-28,51,-69v0,-41,-22,-65,-54,-65v-32,0,-56,31,-56,51v0,49,22,83,59,83"},"7":{"d":"23,-245r0,-25r158,0r0,19r-113,251r-31,0r113,-245r-127,0"},"8":{"d":"15,-67v0,-37,26,-58,53,-76v-72,-31,-44,-135,34,-131v85,4,97,98,28,129r0,2v33,14,54,38,54,70v0,46,-37,77,-85,77v-51,0,-84,-32,-84,-71xm99,-18v35,0,54,-23,54,-51v0,-34,-22,-51,-58,-63v-65,13,-65,113,4,114xm101,-252v-31,0,-47,22,-47,45v0,29,20,45,50,54v23,-9,41,-27,41,-53v0,-23,-12,-46,-44,-46"},"9":{"d":"38,-21v65,2,107,-36,115,-106v-40,56,-136,25,-136,-52v0,-49,32,-95,85,-95v50,0,83,44,83,113v0,102,-52,164,-147,165r0,-25xm100,-251v-31,0,-53,30,-53,70v0,36,21,61,52,61v29,0,55,-22,55,-44v0,-52,-18,-87,-54,-87"},":":{"d":"43,-143v-14,0,-21,-11,-21,-23v0,-13,8,-23,21,-23v13,0,21,10,21,23v0,13,-8,23,-21,23xm43,4v-14,0,-21,-10,-21,-22v0,-13,8,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22","w":78},";":{"d":"31,-43r35,-4v-9,33,-26,78,-36,95r-22,3v8,-22,19,-66,23,-94xm46,-143v-14,0,-21,-11,-21,-23v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,23,-21,23","w":79},"<":{"d":"215,0r-187,-99r0,-19r187,-99r0,25r-161,84r161,83r0,25","w":242},"=":{"d":"226,-160r0,22r-210,0r0,-22r210,0xm226,-81r0,22r-210,0r0,-22r210,0","w":242},">":{"d":"27,-217r188,99r0,20r-188,98r0,-25r163,-83r-163,-84r0,-25","w":242},"?":{"d":"139,-220v0,52,-70,82,-56,145r-27,0v-19,-59,52,-97,52,-142v0,-40,-54,-48,-79,-25r-8,-22v13,-9,34,-15,54,-15v45,0,64,28,64,59xm69,4v-14,0,-21,-10,-21,-22v0,-13,8,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22","w":156},"@":{"d":"212,-166v-6,32,-18,64,-18,98v0,15,5,23,15,23v21,0,44,-30,44,-78v0,-60,-33,-101,-94,-101v-66,0,-121,55,-121,139v0,92,87,133,162,95r6,16v-86,44,-189,-3,-189,-109v0,-85,57,-158,145,-158v68,0,112,49,112,115v0,64,-33,99,-70,99v-16,0,-27,-14,-29,-36v-24,48,-96,52,-99,-13v-3,-64,69,-120,136,-90xm126,-46v42,0,54,-63,61,-106v-47,-14,-88,27,-88,75v0,19,9,31,27,31","w":289},"A":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133","w":236,"k":{"Y":11,"W":4,"V":11,"T":11}},"B":{"d":"31,-270v63,-13,152,-9,152,62v0,28,-21,49,-47,61v26,6,57,28,57,69v0,78,-86,86,-162,77r0,-269xm60,-157v49,5,92,-9,92,-49v0,-43,-54,-53,-92,-44r0,93xm60,-134r0,111v49,5,102,-3,101,-55v-2,-51,-49,-59,-101,-56","w":208},"C":{"d":"204,-32r7,24v-90,34,-196,-4,-196,-127v0,-113,102,-167,196,-132r-8,25v-76,-32,-157,8,-157,106v0,95,79,136,158,104","w":223},"D":{"d":"242,-144v0,114,-88,163,-211,143r0,-270v20,-3,43,-5,69,-5v110,0,142,65,142,132xm60,-249r0,225v90,13,150,-28,150,-119v0,-86,-63,-121,-150,-106","w":256,"k":{"\u00d6":-4,"\u00d5":-4,"\u00d4":-4,"\u00d3":-4,"\u00d2":-4}},"E":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0","w":189},"F":{"d":"60,0r-29,0r0,-274r138,0r0,25r-109,0r0,97r100,0r0,25r-100,0r0,127","w":186,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"A":11,".":14,",":18}},"G":{"d":"226,-141r0,130v-15,6,-43,14,-78,14v-108,0,-133,-80,-133,-138v0,-108,103,-169,204,-130r-8,25v-74,-33,-165,6,-165,103v0,93,74,133,151,107r0,-87r-56,0r0,-24r85,0","w":248},"H":{"d":"221,-274r0,274r-29,0r0,-131r-132,0r0,131r-29,0r0,-274r29,0r0,117r132,0r0,-117r29,0","w":252},"I":{"d":"31,0r0,-274r29,0r0,274r-29,0","w":91},"J":{"d":"114,-274r0,187v0,85,-51,100,-112,86r4,-25v44,13,78,4,78,-64r0,-184r30,0","w":141,"k":{"}":-7,"]":-7,")":-7}},"K":{"d":"107,-158r104,158r-35,0r-90,-138r-26,30r0,108r-29,0r0,-274r29,0v2,43,-4,95,2,134v32,-48,70,-89,105,-134r36,0","w":208},"L":{"d":"174,-26r0,26r-143,0r0,-274r29,0r0,248r114,0","w":182,"k":{"\u00dd":7,"Y":7,"V":4,"T":7,"-":4}},"M":{"d":"272,-274r17,274r-29,0r-13,-242v-9,31,-20,65,-33,103r-49,138r-22,0r-46,-135r-32,-106r-13,242r-29,0r19,-274r37,0r48,139v13,33,19,66,29,92v20,-74,54,-158,79,-231r37,0","w":312},"N":{"d":"224,-274r0,274r-30,0r-87,-144v-18,-31,-37,-62,-50,-92r2,236r-28,0r0,-274r31,0r88,144v19,33,35,62,48,90r-3,-234r29,0","w":254},"O":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116","w":264,"k":{".":4,",":4}},"P":{"d":"31,0r0,-271v16,-3,36,-5,62,-5v89,0,96,56,96,78v-2,74,-65,96,-129,85r0,113r-29,0xm60,-249r0,111v49,11,99,-8,99,-57v0,-51,-54,-64,-99,-54","w":205,"k":{"\u00e0":4,"\u00cf":-4,"\u00ce":-4,"\u00cd":-4,"\u00cc":-4,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"I":-4,".":22,",":22}},"Q":{"d":"243,38v-41,-10,-77,-25,-114,-34v-63,-2,-114,-50,-114,-139v0,-90,51,-144,120,-144v69,0,115,55,115,139v0,75,-34,115,-76,135v27,7,55,14,78,18xm134,-254v-119,0,-115,234,-2,233v57,0,87,-54,87,-117v0,-55,-27,-116,-85,-116","w":264},"R":{"d":"31,-270v69,-15,158,-7,158,67v0,37,-24,60,-51,72v41,3,47,112,60,131r-31,0v-4,-8,-11,-32,-18,-66v-9,-52,-35,-58,-89,-55r0,121r-29,0r0,-270xm60,-144v53,5,98,-8,98,-55v0,-54,-56,-57,-98,-50r0,105","w":207},"S":{"d":"162,-265r-9,25v-8,-5,-25,-13,-48,-13v-38,0,-53,23,-53,43v0,27,16,41,53,56v44,19,67,42,67,81v0,44,-31,77,-90,77v-25,0,-52,-7,-66,-17r8,-25v35,27,118,23,118,-33v0,-27,-15,-44,-51,-58v-41,-15,-69,-39,-69,-77v0,-64,92,-89,140,-59","w":189},"T":{"d":"191,-274r0,25r-81,0r0,249r-30,0r0,-249r-80,0r0,-25r191,0","w":190,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"z":4,"y":7,"w":4,"u":4,"s":4,"r":4,"o":4,"m":4,"e":7,"a":7,"T":-4,"A":7,":":-4,".":4,"-":4,",":4,")":-14}},"U":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0","w":250,"k":{".":7,",":4}},"V":{"d":"183,-274r32,0r-95,274r-31,0r-87,-274r32,0r42,138v13,36,20,73,30,103v20,-79,52,-163,77,-241","w":213,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"o":4,"e":4,"a":4,"A":4,":":-7,".":7,"-":4,",":7,")":-14}},"W":{"d":"296,-274r31,0r-76,274r-30,0r-36,-147v-10,-35,-12,-65,-19,-90v-14,73,-43,162,-61,237r-31,0r-68,-274r32,0r53,238r2,0v12,-77,40,-163,59,-238r31,0r34,142v9,32,14,67,21,95v14,-79,39,-160,58,-237","w":330,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,"-":4,",":11,")":-14}},"X":{"d":"127,-141r83,141r-35,0r-67,-118r-63,118r-35,0r82,-139r-78,-135r34,0r63,113v19,-38,42,-75,63,-113r34,0","w":219},"Y":{"d":"174,-274r33,0r-88,156r0,118r-30,0r0,-117r-83,-157r34,0v23,44,41,93,67,134v18,-44,45,-92,67,-134","w":208,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"v":4,"u":4,"t":4,"q":4,"o":4,"e":4,"d":4,"a":4,"A":11,".":7,"-":4,",":7,")":-14}},"Z":{"d":"198,-274r0,19r-147,230r149,0r0,25r-188,0r0,-18r148,-231r-136,0r0,-25r174,0","w":212,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"[":{"d":"104,26r0,20r-70,0r0,-325r70,0r0,20r-46,0r0,285r46,0","w":111,"k":{"f":-7,"J":-14}},"\u00a5":{"d":"111,-75r0,75r-29,0r0,-75r-61,0r0,-17r61,0r0,-33r-61,0r0,-18r53,0r-66,-127r32,0r59,127v16,-43,41,-86,60,-127r32,0r-71,127r53,0r0,18r-62,0r0,33r62,0r0,17r-62,0"},"]":{"d":"7,-259r0,-20r71,0r0,325r-71,0r0,-20r46,0r0,-285r-46,0","w":111},"^":{"d":"132,-264r84,186r-25,0r-70,-160r-70,160r-25,0r84,-186r22,0","w":242},"_":{"d":"0,45r0,-18r203,0r0,18r-203,0","w":203},"`":{"d":"60,-224r-48,-57r34,0r36,57r-22,0","w":122},"a":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36","w":186},"b":{"d":"59,-288r1,123v12,-23,34,-36,65,-36v46,0,79,41,79,101v1,107,-102,135,-148,68r-2,32r-26,0r2,-288r29,0xm116,-176v-49,0,-57,45,-57,99v0,29,22,57,55,57v38,0,60,-33,60,-79v0,-41,-20,-77,-58,-77","w":219},"c":{"d":"157,-30r5,23v-9,4,-28,11,-53,11v-56,0,-94,-40,-94,-100v0,-78,80,-128,148,-94r-7,24v-8,-5,-22,-10,-41,-10v-45,0,-69,36,-69,78v0,67,60,92,111,68","w":174},"d":{"d":"188,-288r1,288r-26,0v-2,-10,0,-24,-3,-33v-10,21,-32,37,-64,37v-45,0,-81,-39,-81,-99v0,-98,98,-137,143,-75r0,-118r30,0xm104,-20v46,0,54,-46,54,-98v0,-39,-28,-58,-53,-58v-37,0,-59,34,-59,79v0,41,19,77,58,77","w":217},"e":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61","w":194,"k":{"j":-4}},"f":{"d":"6,-196r27,0v0,-24,-1,-57,21,-79v19,-19,52,-20,75,-12r-5,24v-41,-18,-68,17,-61,67r47,0r0,23r-47,0r0,173r-30,0r0,-173r-27,0r0,-23","w":111,"k":{"}":-32,"]":-29,")":-32,"'":-29,"\"":-32}},"g":{"d":"162,-197r27,0v-4,47,-1,116,-2,169v0,34,0,113,-93,113v-22,0,-47,-6,-62,-16r8,-23v44,24,123,23,117,-56r0,-24v-10,18,-31,34,-61,34v-47,0,-81,-42,-81,-97v0,-104,107,-132,146,-70xm157,-82v0,-52,-10,-95,-52,-95v-35,0,-59,30,-59,78v0,42,20,75,58,75v22,0,53,-17,53,-58","w":216},"h":{"d":"186,-120r0,120r-29,0v-7,-68,25,-176,-46,-176v-23,0,-52,19,-52,55r0,121r-29,0r0,-288r29,0r1,122v37,-52,126,-58,126,46","w":214},"i":{"d":"64,-251v0,13,-8,20,-20,20v-12,0,-19,-8,-19,-20v0,-11,8,-20,20,-20v12,0,19,9,19,20xm59,-196r0,196r-29,0r0,-196r29,0","w":89},"j":{"d":"68,-251v0,12,-8,20,-20,20v-12,0,-19,-9,-19,-20v0,-11,8,-20,20,-20v12,0,19,9,19,20xm63,-196v-6,87,20,210,-22,260v-14,16,-39,21,-55,21r-4,-24v48,-3,51,-32,51,-89r0,-168r30,0","w":92},"k":{"d":"98,-115r84,115r-37,0r-68,-97r-18,21r0,76r-29,0r0,-288r29,0r1,183v24,-32,51,-60,76,-91r36,0","w":178},"l":{"d":"59,-288r0,288r-29,0r0,-288r29,0","w":89},"m":{"d":"297,-118r0,118r-30,0v-5,-65,21,-174,-43,-176v-24,0,-46,23,-46,53r0,123r-30,0v-6,-64,24,-176,-41,-176v-26,0,-48,25,-48,56r0,120r-29,0r-2,-197r26,0v2,10,0,24,3,32v15,-43,102,-50,114,3v32,-55,126,-64,126,44","w":325},"n":{"d":"186,-120r0,120r-29,0v-7,-68,25,-176,-46,-176v-26,0,-52,22,-52,56r0,120r-29,0r-2,-197r27,0r2,32v30,-49,129,-62,129,45","w":214},"o":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80","w":212},"p":{"d":"55,-197v2,11,0,25,3,34v41,-70,146,-37,146,62v0,105,-96,134,-145,74r0,107r-29,0r-2,-277r27,0xm116,-176v-47,0,-57,45,-57,98v0,38,28,58,55,58v39,0,60,-33,60,-80v0,-41,-20,-76,-58,-76","w":219},"q":{"d":"161,-197r28,0r-1,277r-30,0r-1,-110v-10,19,-31,34,-62,34v-44,0,-80,-39,-80,-99v0,-74,46,-106,86,-106v30,-1,48,17,59,34xm104,-20v51,0,54,-46,54,-98v0,-32,-23,-58,-53,-58v-37,0,-59,33,-59,79v0,41,18,77,58,77","w":217},"r":{"d":"119,-199r0,28v-78,-10,-58,96,-60,171r-29,0r-2,-196r26,0v2,12,-1,28,3,38v10,-26,33,-49,62,-41","w":124,"k":{".":4,",":4}},"s":{"d":"130,-189r-9,23v-14,-16,-71,-18,-71,17v0,17,11,25,36,36v32,13,50,29,50,59v0,56,-79,72,-121,45r9,-23v21,18,83,19,83,-19v0,-18,-9,-31,-36,-39v-72,-21,-63,-110,14,-111v19,0,35,6,45,12","w":152},"t":{"d":"37,-196r0,-36r30,-10r0,46r51,0r0,23r-51,0r0,114v-3,35,21,44,47,35r2,23v-6,3,-17,5,-30,5v-48,0,-49,-43,-49,-64r0,-113r-30,0r0,-23r30,0","w":127},"u":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0","w":212},"v":{"d":"149,-196r31,0r-74,196r-28,0r-73,-197r32,0r57,165","w":184,"k":{".":7,",":4}},"w":{"d":"252,-197r30,0r-63,197r-26,0r-50,-163v-13,58,-33,109,-50,163r-27,0r-58,-197r31,0r43,166v13,-56,34,-112,50,-166r26,0r49,166","w":288,"k":{":":-4,".":7,",":7}},"x":{"d":"138,-196r32,0r-65,95r67,101r-34,0r-51,-81v-14,28,-34,54,-50,81r-33,0r67,-100r-64,-96r34,0r49,76v14,-28,32,-50,48,-76","w":177},"y":{"d":"146,-196r31,0v-45,95,-64,255,-156,285r-8,-25v49,-25,68,-61,61,-79r-70,-181r33,0r57,160v14,-54,35,-108,52,-160","w":181,"k":{":":-7,".":7,",":7}},"z":{"d":"15,-196r142,0r0,19r-113,153r114,0r0,24r-151,0r0,-18r114,-154r-106,0r0,-24","w":164},"{":{"d":"40,-118v37,9,22,65,22,108v0,36,24,36,40,36r0,19v-22,0,-65,0,-65,-55v0,-38,31,-93,-25,-98r0,-18v57,-3,25,-63,25,-100v0,-53,47,-53,65,-53r0,20v-17,0,-40,-1,-40,35v0,40,18,99,-22,106","w":111,"k":{"f":-7,"J":-11}},"\u00a6":{"d":"58,-274r0,142r-24,0r0,-142r24,0xm58,-71r0,142r-24,0r0,-142r24,0","w":91},"}":{"d":"71,-117v-37,-9,-21,-67,-21,-107v0,-36,-23,-35,-40,-35r0,-20v18,0,64,0,64,53v0,40,-31,97,26,100r0,18v-57,4,-26,59,-26,98v0,55,-42,55,-64,55r0,-19v16,0,40,0,40,-36v0,-39,-19,-99,21,-107","w":111},"\\":{"d":"25,-279r111,295r-24,0r-112,-295r25,0","w":135},"|":{"d":"34,102r0,-407r24,0r0,407r-24,0","w":91},"~":{"d":"68,-145v25,0,82,37,109,35v15,0,23,-13,23,-34r21,0v-2,108,-100,22,-154,22v-15,0,-24,12,-24,35r-21,0v-1,-37,19,-58,46,-58","w":242},"\u00a1":{"d":"57,-118r5,197r-34,0r5,-197r24,0xm45,-199v14,0,21,11,21,23v0,13,-8,23,-21,23v-12,0,-21,-10,-21,-23v0,-13,9,-23,21,-23","w":89},"\u00a2":{"d":"127,-36r0,42r-23,0r0,-43v-119,-16,-92,-189,0,-200r0,-41r23,0r0,40v18,0,34,6,43,11r-8,23v-46,-30,-106,7,-106,68v0,70,61,92,109,67r5,21v-7,4,-24,11,-43,12"},"\u00a3":{"d":"183,-24r0,24r-161,0r0,-17v34,-20,53,-58,43,-109r-41,0r0,-21r38,0v-17,-61,7,-127,68,-127v20,0,34,5,42,10r-7,23v-7,-4,-18,-9,-35,-9v-49,-2,-50,62,-40,103r57,0r0,21r-54,0v2,42,6,57,-32,102r122,0"},"\u00a4":{"d":"27,-233r27,30v20,-24,73,-20,91,0r28,-30r16,16r-31,29v19,23,17,79,0,100r30,30r-16,17r-27,-31v-24,24,-69,23,-92,1r-27,30r-15,-17r29,-28v-19,-24,-20,-79,0,-102r-30,-28xm99,-199v-31,0,-49,29,-49,62v0,82,95,83,97,-1v0,-31,-16,-61,-48,-61"},"\u00ab":{"d":"65,-176r26,0r-54,73r54,74r-26,0r-53,-74xm129,-176r25,0r-54,73r54,74r-25,0r-54,-74","w":163},"\u00b7":{"d":"40,-84v-13,0,-22,-11,-22,-23v0,-13,10,-23,22,-23v13,0,21,9,21,23v0,13,-8,23,-21,23","w":79},"\u00bb":{"d":"9,-29r54,-74r-54,-73r26,0r54,73r-54,74r-26,0xm72,-29r54,-74r-54,-73r26,0r54,73r-54,74r-26,0","w":163},"\u00bf":{"d":"93,-199v14,0,21,11,21,23v0,13,-9,23,-22,23v-13,0,-21,-10,-21,-23v0,-13,9,-23,22,-23xm22,27v0,-50,69,-84,56,-146r27,0v19,59,-52,97,-52,142v0,40,54,46,79,25r8,21v-13,9,-34,16,-54,16v-44,0,-64,-28,-64,-58","w":156},"\u00af":{"d":"17,-239r0,-20r88,0r0,20r-88,0","w":122},"\u00b8":{"d":"38,33r19,-34r20,0r-14,22v15,2,28,12,28,28v1,34,-43,38,-67,25r6,-15v11,8,38,8,39,-8v0,-9,-6,-15,-31,-18","w":122},"\u00c6":{"d":"75,-100r-44,100r-31,0r121,-274r159,0r0,25r-112,0r10,93r98,0r0,25r-95,0r13,106r96,0r0,25r-122,0r-12,-100r-81,0xm138,-253r-53,129r68,0v-6,-42,-5,-91,-15,-129","w":302},"\u00aa":{"d":"67,-240v69,1,42,73,51,132r-21,0v-1,-6,0,-14,-3,-18v-15,30,-81,25,-81,-19v0,-29,29,-47,80,-46v7,-30,-44,-40,-64,-21r-6,-16v12,-8,28,-12,44,-12xm61,-124v33,0,33,-21,32,-50v-23,-1,-56,3,-56,28v0,14,11,22,24,22","w":134},"\u00d8":{"d":"66,-19r-25,34r-17,-13r25,-36v-21,-24,-34,-60,-34,-102v0,-117,101,-179,184,-120r23,-33r19,13r-25,35v22,24,34,60,34,101v0,129,-101,177,-184,121xm133,-254v-87,-1,-110,131,-67,194r119,-174v-14,-13,-31,-20,-52,-20xm132,-20v83,1,111,-125,67,-194r-119,172v14,14,29,22,52,22","w":264},"\u00ba":{"d":"71,-240v39,0,61,28,61,66v1,93,-124,87,-124,2v0,-43,30,-68,63,-68xm70,-222v-54,1,-47,100,0,98v23,0,38,-21,38,-49v0,-21,-10,-49,-38,-49","w":139},"\u00e6":{"d":"28,-184v41,-29,109,-20,119,26v12,-26,36,-43,66,-43v65,0,75,61,71,104r-127,0v-8,78,65,91,112,67r7,21v-42,23,-118,16,-133,-31v-12,28,-38,44,-70,44v-39,0,-59,-26,-59,-54v0,-45,42,-72,115,-71v1,-24,-3,-56,-46,-56v-17,0,-35,6,-47,14xm80,-19v45,0,53,-36,49,-81v-35,-1,-84,5,-84,47v0,20,13,34,35,34xm157,-120r99,0v1,-24,-11,-59,-46,-59v-35,0,-52,34,-53,59","w":300},"\u00f8":{"d":"58,-10r-17,24r-14,-11r17,-25v-17,-17,-29,-43,-29,-75v-1,-87,76,-128,140,-89r16,-24r15,10r-17,25v17,18,28,44,28,75v-2,94,-76,125,-139,90xm141,-165v-75,-49,-123,64,-81,120xm105,-19v56,1,81,-83,47,-131r-80,119v9,9,20,12,33,12","w":212},"\u00df":{"d":"166,-56v0,-40,-54,-59,-54,-98v0,-21,13,-39,36,-50v13,-31,-9,-64,-39,-64v-32,0,-50,22,-50,82r0,186r-29,0v9,-114,-38,-292,83,-292v48,0,86,55,59,100v-18,7,-31,20,-31,34v0,37,54,54,54,99v0,54,-62,77,-111,55r6,-24v28,18,76,7,76,-28","w":210},"\u00ad":{"d":"16,-98r0,-22r210,0r0,22r-210,0","w":242},"\u00a9":{"d":"15,-138v0,-81,65,-126,123,-126v69,0,123,56,123,125v0,70,-54,127,-123,127v-69,0,-123,-56,-123,-126xm34,-137v0,64,48,109,104,109v61,0,104,-51,104,-110v0,-58,-42,-110,-104,-110v-58,0,-104,47,-104,111xm190,-90r5,15v-52,33,-124,0,-124,-61v0,-66,75,-92,122,-65r-5,15v-6,-3,-19,-10,-39,-10v-39,0,-59,26,-59,59v0,50,62,75,100,47","w":275},"\u00ac":{"d":"226,-161r0,110r-23,0r0,-89r-186,0r0,-21r209,0","w":242},"\u00ae":{"d":"16,-212v0,-37,30,-66,67,-66v38,0,67,29,67,66v0,37,-29,66,-67,66v-37,0,-67,-29,-67,-66xm31,-212v0,32,25,53,52,53v30,0,51,-23,51,-53v0,-30,-22,-53,-52,-53v-29,0,-51,23,-51,53xm72,-177r-14,0r0,-67v18,-2,52,-8,53,17v1,9,-7,13,-13,17v10,0,13,28,16,33r-15,0v-5,-10,-3,-33,-27,-27r0,27xm72,-235r0,20v22,5,35,-19,9,-20r-9,0","w":165},"\u00b2":{"d":"109,-179r-105,0v-2,-23,15,-25,25,-36v30,-32,51,-52,51,-74v0,-35,-50,-36,-65,-17r-7,-17v10,-9,28,-16,47,-16v37,0,51,24,51,45v0,37,-41,66,-67,96r70,0r0,19","w":119},"\u00b3":{"d":"29,-271v23,1,44,-5,47,-28v3,-27,-48,-25,-59,-11r-6,-17v24,-21,99,-12,91,26v1,17,-14,28,-31,37v21,3,37,19,37,40v0,42,-73,62,-105,36r7,-18v16,17,79,12,72,-18v0,-31,-37,-31,-53,-31r0,-16","w":117},"\u00b5":{"d":"35,81v-11,-75,-3,-191,-5,-278r30,0v7,67,-26,176,44,176v27,0,51,-24,51,-54r0,-123r30,0r0,147v0,22,4,31,18,32r-2,22v-25,5,-37,-6,-44,-33v-9,30,-80,52,-99,11v0,32,0,75,5,100r-28,0","w":213},"\u00b9":{"d":"67,-337r0,158r-25,0r0,-136r-29,14r-4,-19v18,-7,30,-20,58,-17","w":93},"\u00bc":{"d":"257,-43r0,43r-23,0r0,-43r-79,0r0,-14r78,-104r24,0r0,100r25,0r0,18r-25,0xm181,-62v15,3,36,0,53,1v-1,-25,3,-53,0,-76v-14,28,-35,50,-53,75xm22,-231r-4,-18v18,-7,30,-21,58,-18r0,159r-25,0r0,-137xm73,4r-21,0r153,-273r20,0","w":295},"\u00bd":{"d":"16,-231r-4,-18v18,-7,29,-21,57,-18r0,159r-24,0r0,-137xm65,4r-21,0r153,-273r20,0xm276,0r-105,0v-2,-23,17,-25,25,-37v32,-31,51,-52,51,-74v0,-34,-49,-34,-64,-17r-8,-16v10,-9,28,-17,47,-17v37,0,51,24,51,45v0,36,-39,68,-67,96r70,0r0,20","w":295},"\u00be":{"d":"261,-43r0,43r-23,0r0,-43r-79,0r0,-14r78,-104r24,0r0,100r24,0r0,18r-24,0xm238,-61v-1,-25,3,-53,0,-76v-15,28,-35,51,-53,76r53,0xm63,-269v60,0,60,60,18,76v21,3,36,19,36,40v0,42,-72,60,-105,36r7,-18v16,16,79,11,72,-19v0,-31,-36,-30,-53,-30r0,-17v23,1,46,-5,48,-28v3,-25,-48,-24,-59,-10r-7,-17v9,-6,24,-13,43,-13xm87,4r-20,0r152,-273r21,0","w":295},"\u00c0":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm110,-289r-52,-46r38,0r39,46r-25,0","w":236,"k":{"\u00dd":11,"Y":7,"W":4,"V":4}},"\u00c1":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm102,-289r39,-46r38,0r-52,46r-25,0","w":236,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c2":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm65,-289r41,-45r24,0r41,45r-27,0v-9,-9,-17,-20,-27,-28r-26,28r-26,0","w":236,"k":{"\u00dd":7,"Y":11,"W":4,"V":4,"T":7}},"\u00c3":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-28,89r-31,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm96,-330v16,-1,28,15,43,15v6,0,10,-2,11,-15r17,0v0,23,-9,37,-27,37v-19,0,-50,-37,-53,2r-17,0v0,-23,9,-39,26,-39","w":236,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c4":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm82,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm154,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":236,"k":{"Y":7,"W":4,"V":4,"T":7}},"\u00c5":{"d":"136,-274r91,274r-32,0r-29,-89r-95,0r-29,89r-31,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm119,-355v25,0,39,17,39,36v0,20,-17,35,-39,35v-23,0,-39,-16,-39,-35v0,-20,15,-36,39,-36xm118,-341v-13,0,-19,11,-19,22v0,11,7,21,19,21v12,0,20,-9,20,-21v0,-12,-8,-22,-20,-22","w":236,"k":{"\u00fd":7,"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c7":{"d":"15,-135v0,-113,101,-168,196,-132r-8,25v-77,-32,-157,8,-157,106v0,95,79,136,158,104r7,23v-14,7,-54,16,-86,12r-11,18v15,3,29,13,29,29v0,34,-43,38,-68,26r6,-17v11,7,39,9,39,-8v0,-11,-13,-16,-31,-18r18,-33v-54,-13,-92,-58,-92,-135","w":223},"\u00c8":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm86,-289r-52,-46r39,0r38,46r-25,0","w":189},"\u00c9":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm78,-289r39,-46r38,0r-52,46r-25,0","w":189},"\u00ca":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm41,-289r41,-45r24,0r42,45r-27,0v-10,-9,-17,-20,-28,-28r-26,28r-26,0","w":189},"\u00cb":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm58,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm131,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":189},"\u00cc":{"d":"31,0r0,-274r29,0r0,274r-29,0xm38,-289r-52,-46r38,0r38,46r-24,0","w":91},"\u00cd":{"d":"31,0r0,-274r29,0r0,274r-29,0xm30,-289r38,-46r38,0r-52,46r-24,0","w":91},"\u00ce":{"d":"31,0r0,-274r29,0r0,274r-29,0xm-8,-289r41,-45r24,0r42,45r-27,0v-9,-9,-17,-20,-27,-28r-27,28r-26,0","w":91},"\u00cf":{"d":"31,0r0,-274r29,0r0,274r-29,0xm10,-294v-12,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm82,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":91},"\u00d0":{"d":"243,-144v0,118,-87,160,-210,143r0,-127r-34,0r0,-24r34,0r0,-118v20,-4,43,-6,69,-6v115,0,141,71,141,132xm63,-152r72,0r0,24r-72,0r0,104v90,12,149,-27,149,-119v0,-81,-63,-123,-149,-105r0,96","w":258},"\u00d1":{"d":"224,-274r0,274r-30,0r-87,-144v-18,-31,-37,-62,-50,-92r2,236r-28,0r0,-274r31,0r88,144v19,33,35,62,48,90r-3,-234r29,0xm105,-330v15,-1,29,15,43,15v6,0,10,-2,11,-15r17,0v0,23,-9,37,-27,37v-19,0,-50,-37,-53,2r-17,0v0,-23,9,-39,26,-39","w":254},"\u00d2":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm125,-289r-53,-46r39,0r38,46r-24,0","w":264},"\u00d3":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm117,-289r38,-46r38,0r-52,46r-24,0","w":264},"\u00d4":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm79,-289r41,-45r24,0r42,45r-27,0v-10,-9,-17,-20,-28,-28r-26,28r-26,0","w":264},"\u00d5":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm132,-254v-117,1,-112,233,0,233v57,0,87,-54,87,-117v0,-55,-28,-116,-87,-116xm110,-330v16,-1,28,15,43,15v6,0,10,-2,11,-15r17,0v0,23,-9,37,-27,37v-19,0,-50,-37,-53,2r-17,0v0,-23,9,-39,26,-39","w":264},"\u00d6":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm96,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm169,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":264},"\u00d9":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm117,-289r-52,-46r39,0r38,46r-25,0","w":250},"\u00da":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm109,-289r39,-46r38,0r-52,46r-25,0","w":250},"\u00db":{"d":"220,-274r0,163v0,83,-43,115,-98,115v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm72,-289r41,-45r23,0r43,45r-27,0v-10,-9,-17,-20,-28,-28r-26,28r-26,0","w":250},"\u00dc":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm89,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm162,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":250},"\u00dd":{"d":"174,-274r33,0r-88,157r0,117r-30,0r0,-117r-83,-157r34,0v23,44,41,93,67,134v18,-44,45,-92,67,-134xm89,-289r38,-46r38,0r-52,46r-24,0","w":208,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,".":7,"-":4,",":7,")":-14}},"\u00de":{"d":"60,0r-29,0r0,-274r29,0r0,54v11,-2,25,-3,38,-3v70,0,91,40,91,74v1,65,-59,94,-129,83r0,66xm60,-91v49,11,102,-8,98,-54v5,-49,-55,-62,-98,-50r0,104","w":204},"\u00e0":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm93,-224r-49,-57r34,0r36,57r-21,0","w":186},"\u00e1":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm76,-224r35,-57r35,0r-48,57r-22,0","w":186},"\u00e2":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm45,-224r37,-57r22,0r37,57r-24,0v-8,-12,-14,-27,-24,-38r-24,38r-24,0","w":186},"\u00e3":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm72,-271v17,0,48,38,52,-1r17,0v3,53,-44,36,-68,23v-6,0,-9,7,-10,18r-18,0v0,-24,10,-40,27,-40","w":186},"\u00e4":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm57,-233v-12,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,17,8,17,19v0,10,-7,18,-18,18xm129,-233v-11,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-8,18,-19,18","w":186},"\u00e5":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm94,-292v23,0,39,16,39,37v0,21,-17,37,-39,37v-23,0,-40,-17,-40,-37v0,-23,17,-37,40,-37xm93,-278v-28,1,-25,45,0,46v13,0,21,-10,21,-23v0,-13,-8,-23,-21,-23","w":186},"\u00e7":{"d":"15,-96v0,-78,79,-128,148,-94r-7,24v-8,-5,-22,-10,-41,-10v-45,0,-69,36,-69,78v0,67,60,92,111,68r5,23v-9,5,-36,12,-62,11r-11,17v15,2,28,12,28,28v1,34,-43,38,-67,25r6,-15v12,7,39,9,39,-9v0,-11,-13,-15,-31,-17r18,-32v-41,-10,-67,-47,-67,-97","w":174},"\u00e8":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm96,-224r-48,-57r34,0r36,57r-22,0","w":194,"k":{"j":-4}},"\u00e9":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm80,-224r35,-57r35,0r-49,57r-21,0","w":194,"k":{"j":-4}},"\u00ea":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm49,-224r37,-57r21,0r38,57r-24,0v-9,-12,-15,-27,-25,-38r-23,38r-24,0","w":194,"k":{"j":-4}},"\u00eb":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm61,-233v-12,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,17,8,17,19v0,10,-7,18,-18,18xm133,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":194,"k":{"j":-4}},"\u00ec":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm44,-224r-49,-57r35,0r35,57r-21,0","w":89},"\u00ed":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm27,-224r35,-57r35,0r-48,57r-22,0","w":89},"\u00ee":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm-3,-224r37,-57r21,0r38,57r-25,0v-8,-12,-14,-27,-24,-38r-23,38r-24,0","w":89},"\u00ef":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm9,-233v-12,0,-18,-8,-18,-18v0,-10,7,-19,18,-19v10,0,18,8,18,19v0,10,-7,18,-18,18xm81,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":89},"\u00f0":{"d":"101,-235r-55,27r-7,-16r46,-23v-12,-9,-27,-18,-42,-26r14,-19v19,9,37,20,53,33r49,-24r8,16r-41,20v47,41,66,90,66,145v0,76,-45,106,-89,106v-50,0,-88,-38,-88,-100v0,-88,75,-126,133,-85v-11,-19,-27,-38,-47,-54xm162,-98v0,-46,-13,-78,-58,-78v-83,0,-71,158,-1,157v35,0,59,-33,59,-79","w":208},"\u00f1":{"d":"186,-120r0,120r-29,0v-7,-68,25,-176,-46,-176v-26,0,-52,22,-52,56r0,120r-29,0r-2,-197r27,0r2,32v30,-49,129,-62,129,45xm86,-271v18,0,48,38,53,-1r17,0v3,52,-45,36,-69,23v-6,0,-9,7,-10,18r-18,0v0,-24,10,-40,27,-40","w":214},"\u00f2":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm105,-224r-49,-57r35,0r35,57r-21,0","w":212},"\u00f3":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm89,-224r35,-57r35,0r-49,57r-21,0","w":212},"\u00f4":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm58,-224r37,-57r21,0r38,57r-24,0v-9,-12,-15,-27,-25,-38r-23,38r-24,0","w":212},"\u00f5":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm85,-271v18,0,48,38,52,-1r17,0v0,24,-9,38,-27,38v-19,0,-49,-36,-51,3r-18,0v0,-24,10,-40,27,-40","w":212},"\u00f6":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm70,-233v-12,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,17,8,17,19v0,10,-7,18,-18,18xm142,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":212},"\u00f9":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm106,-224r-49,-57r35,0r35,57r-21,0","w":212},"\u00fa":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm89,-224r36,-57r34,0r-48,57r-22,0","w":212},"\u00fb":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm59,-224r37,-57r21,0r38,57r-25,0v-8,-12,-14,-27,-24,-38r-24,38r-23,0","w":212},"\u00fc":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm71,-233v-12,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18xm143,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":212},"\u00fd":{"d":"146,-196r31,0v-45,95,-64,255,-156,285r-8,-25v49,-25,68,-61,61,-79r-70,-181r33,0r57,160v14,-54,35,-108,52,-160xm73,-224r36,-57r35,0r-49,57r-22,0","w":181,"k":{":":-4,".":7,",":7}},"\u00fe":{"d":"59,-271r1,106v40,-67,144,-34,144,64v0,106,-96,133,-145,74r0,107r-29,0r0,-351r29,0xm116,-176v-50,0,-57,46,-57,100v0,23,19,56,57,56v36,0,58,-32,58,-80v0,-41,-21,-76,-58,-76","w":219},"\u00ff":{"d":"146,-196r31,0v-44,97,-65,254,-156,285r-8,-25v47,-25,67,-60,60,-79r-69,-181r33,0r57,160xm55,-233v-12,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18xm127,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":181,"k":{":":-4,".":7,",":7}},"\u00b4":{"d":"200,-337r39,0r-53,48r-24,0","w":360},"\u00a8":{"d":"143,-293v-26,0,-23,-39,0,-39v23,0,25,39,0,39xm218,-293v-11,0,-18,-9,-18,-19v0,-10,9,-20,19,-20v23,1,25,39,-1,39","w":360},"\u00b1":{"d":"191,-189r120,0r0,23r-120,0r0,100r-22,0r0,-100r-120,0r0,-23r120,0r0,-100r22,0r0,100xm49,-7r0,-23r263,0r0,23r-263,0","w":360},"\u00d7":{"d":"196,-135r100,99r-16,17r-100,-100r-99,100r-16,-17r99,-99r-99,-99r16,-17r99,100r100,-100r16,16","w":360},"\u00f7":{"d":"180,-252v14,0,25,12,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25xm49,-123r0,-23r262,0r0,23r-262,0xm180,-68v14,0,25,12,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":360},"\u00b0":{"d":"73,-289v26,0,47,22,47,47v0,26,-21,47,-47,47v-26,0,-47,-21,-47,-47v0,-26,21,-47,47,-47xm73,-273v-18,0,-32,14,-32,31v0,18,14,32,32,32v17,0,31,-14,31,-32v0,-17,-14,-31,-31,-31","w":360},"\u00a7":{"d":"108,4r10,-20v18,24,109,26,109,-21v0,-19,-12,-32,-58,-44v-72,-19,-95,-63,-44,-108v-36,-38,3,-90,61,-90v28,0,50,9,63,17r-9,20v-17,-20,-104,-23,-104,16v0,23,24,34,57,40v69,13,89,70,46,111v35,39,-3,97,-65,97v-29,0,-51,-6,-66,-18xm140,-179v-29,34,-32,52,32,73v31,10,44,16,51,20v26,-29,18,-65,-31,-75v-19,-4,-40,-11,-52,-18","w":360},"\u00b6":{"d":"195,21r-21,0r0,-126v-48,0,-87,-32,-87,-79v0,-42,23,-91,114,-91v24,0,37,2,46,4r0,292r-21,0r0,-275r-31,0r0,275","w":360},"\u00a0":{"w":83}}});

Cufon.registerFont({"w":1024,"face":{"font-family":"Georgia","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 4 5 2 5 4 5 2 3 3","ascent":"1638","descent":"-410","x-height":"16","bbox":"-355 -1868.84 2389 621","underline-thickness":"101","underline-position":"-131","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":494},"\u00a0":{"w":494},"!":{"d":"344,-1456v74,0,130,60,128,135v0,33,-11,145,-33,336v-22,191,-41,375,-58,553r-78,0v-15,-178,-33,-362,-55,-553v-22,-191,-32,-303,-32,-336v-1,-74,54,-135,128,-135xm344,-252v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":678},"\"":{"d":"612,-1529v69,0,113,48,113,112v0,128,-59,281,-84,450r-62,0v-15,-99,-32,-193,-51,-282v-19,-89,-29,-145,-29,-168v1,-65,42,-112,113,-112xm231,-1529v68,0,112,49,112,112v0,128,-59,281,-84,450r-61,0v-18,-113,-36,-211,-54,-291v-18,-80,-26,-133,-26,-159v1,-65,42,-112,113,-112","w":843},"#":{"d":"1163,-745r-249,0r-72,251r261,0r0,123r-296,0r-107,371r-111,0r107,-371r-217,0r-107,371r-111,0r107,-371r-214,0r0,-123r249,0r73,-251r-262,0r0,-123r296,0r105,-362r111,0r-105,362r217,0r105,-362r111,0r-105,362r214,0r0,123xm807,-747r-222,0r-74,255r221,0","w":1317},"$":{"d":"987,-910v-56,0,-113,-34,-114,-81v-1,-49,13,-95,22,-138v-40,-51,-119,-86,-214,-86r0,464v191,78,418,123,422,386v3,221,-201,373,-422,382r0,282r-82,0r0,-280v-228,1,-439,-117,-444,-319v-2,-73,32,-120,99,-122v62,-1,110,35,113,89v2,30,-39,134,-43,156v43,75,150,117,275,117r0,-506v-190,-72,-407,-130,-407,-384v0,-198,203,-348,407,-345r0,-229r82,0r0,229v177,4,308,70,371,184v42,76,35,201,-65,201xm599,-1215v-118,-4,-229,79,-229,190v0,159,108,205,229,250r0,-440xm681,-61v144,-7,234,-83,234,-223v0,-154,-103,-218,-234,-260r0,483","w":1249},"%":{"d":"449,-1453v207,0,339,158,339,370v0,221,-132,370,-340,370v-208,0,-339,-149,-339,-370v0,-213,131,-370,340,-370xm448,-787v130,0,171,-147,171,-296v0,-147,-41,-296,-170,-296v-131,0,-171,149,-171,296v0,150,40,296,170,296xm1226,-708v207,0,339,158,339,370v0,221,-132,370,-340,370v-208,0,-339,-149,-339,-370v0,-213,131,-370,340,-370xm1225,-42v130,0,171,-147,171,-296v0,-147,-41,-296,-170,-296v-131,0,-171,149,-171,296v0,150,40,296,170,296xm1499,-1424r-1179,1424r-138,0r1176,-1424r141,0","w":1674},"&":{"d":"953,-374v68,-112,141,-227,141,-368v0,-21,-15,-38,-46,-50v-31,-12,-74,-25,-129,-36r0,-71r535,0r0,71v-80,8,-174,29,-211,82v-90,130,-132,310,-235,432v45,54,139,150,197,186v43,27,170,54,234,57r0,71r-412,0r-149,-170v-97,99,-200,205,-393,205v-181,0,-312,-79,-374,-208v-58,-120,-44,-290,29,-397v45,-66,126,-138,245,-213v-54,-71,-96,-133,-126,-185v-50,-84,-62,-209,-17,-302v51,-109,167,-183,323,-183v188,0,311,101,311,280v0,193,-135,281,-280,362v119,162,234,289,357,437xm553,-870v115,-67,190,-131,194,-283v3,-126,-55,-211,-173,-211v-162,0,-206,191,-133,324v25,46,61,103,112,170xm281,-420v-3,175,111,318,285,315v110,-1,209,-52,259,-123r-209,-258v-78,-94,-140,-173,-187,-238v-98,67,-145,156,-148,304","w":1455},"'":{"d":"221,-1529v68,0,112,49,112,112v0,128,-59,281,-84,450r-61,0v-18,-113,-36,-211,-54,-291v-18,-80,-26,-133,-26,-159v1,-65,42,-112,113,-112","w":441},"(":{"d":"701,328v-182,-23,-321,-118,-429,-275v-204,-296,-201,-1012,0,-1307v108,-159,247,-254,429,-278r0,83v-128,23,-221,107,-292,245v-127,248,-130,947,-2,1202v70,139,163,224,294,248r0,82","w":768},")":{"d":"496,-1254v201,295,204,1011,0,1307v-109,157,-247,252,-429,275r0,-82v131,-24,224,-109,294,-248v128,-256,125,-955,-2,-1202v-71,-138,-164,-222,-292,-245r0,-83v182,24,321,119,429,278","w":768},"*":{"d":"807,-1170v44,-3,75,25,75,71v0,48,-30,71,-75,71v-69,0,-199,-49,-293,-55v62,90,128,144,191,224v47,60,-30,146,-94,103v-38,-25,-42,-59,-59,-122v-11,-42,-33,-105,-68,-188v-49,112,-61,203,-100,281v-12,25,-27,39,-61,40v-55,2,-98,-62,-61,-112v57,-76,136,-142,192,-226v-92,4,-224,55,-293,55v-46,0,-75,-22,-75,-71v0,-45,31,-74,75,-71v79,5,185,48,293,53v-55,-80,-134,-150,-192,-225v-46,-60,31,-146,94,-103v42,28,41,56,65,137v16,55,36,114,63,174v47,-96,65,-205,100,-281v10,-23,31,-39,61,-40v36,-1,75,30,75,67v0,27,-19,59,-56,96v-37,37,-87,95,-150,175v103,-7,216,-48,293,-53","w":967},"+":{"d":"1173,-497r-451,0r0,451r-127,0r0,-451r-451,0r0,-125r451,0r0,-451r127,0r0,451r451,0r0,125","w":1317},",":{"d":"257,-252v172,0,207,217,139,353v-56,112,-151,195,-253,253r-46,-67v107,-70,203,-139,226,-289v-113,10,-193,-29,-193,-129v1,-60,56,-121,127,-121","w":552},"-":{"d":"681,-465r-596,0r0,-157r596,0r0,157","w":766},"\u00ad":{"d":"681,-465r-596,0r0,-157r596,0r0,157","w":766},".":{"d":"278,-252v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":552},"\/":{"d":"870,-1523r-691,1947r-130,0r689,-1947r132,0","w":960},"0":{"d":"628,32v-350,0,-525,-221,-525,-569v0,-263,108,-437,295,-523v129,-60,340,-58,466,1v181,86,290,264,290,522v0,273,-116,455,-312,532v-64,25,-135,37,-214,37xm854,-174v98,-171,98,-570,-2,-732v-106,-171,-340,-169,-446,0v-101,162,-101,561,-4,732v102,179,350,178,452,0","w":1257},"1":{"d":"585,-1105r-9,308r0,593v6,88,53,112,145,123v39,5,69,9,88,10r0,71r-674,0r0,-71v68,-10,201,-5,229,-55v9,-16,16,-37,16,-67r0,-702r-249,0r0,-84v162,13,306,-50,371,-126r83,0","w":880},"2":{"d":"549,-1105v294,-8,521,179,425,469v-30,91,-111,150,-194,194v-47,24,-120,58,-217,101v-102,46,-211,103,-285,164r769,0r0,177r-937,0r0,-136v104,-112,265,-201,412,-282v148,-81,250,-136,250,-363v0,-206,-187,-289,-362,-217v-39,16,-68,41,-87,71v8,43,29,109,28,162v-2,59,-54,97,-125,97v-113,0,-125,-150,-74,-236v70,-117,210,-196,397,-201","w":1144},"3":{"d":"1026,-66v2,322,-372,504,-711,408v-130,-37,-251,-113,-251,-263v0,-65,31,-128,101,-128v70,0,121,39,123,97v2,36,-20,125,-27,151v62,75,228,113,353,64v123,-48,190,-154,190,-333v0,-183,-84,-285,-274,-281r-131,0r0,-115r87,0v192,-1,244,-109,260,-305v21,-261,-299,-324,-431,-159v10,51,28,110,27,167v-1,57,-54,97,-124,96v-111,-2,-124,-147,-73,-232v73,-122,214,-206,414,-206v208,0,340,86,392,232v13,37,17,69,17,96v-7,202,-128,293,-297,342r0,16v202,25,353,121,355,353","w":1130},"4":{"d":"1084,-90r-203,0r0,455r-192,0r0,-455r-640,0r0,-154r701,-855r131,0r0,878r203,0r0,131xm689,-221r0,-655r-540,655r540,0","w":1157},"5":{"d":"267,-471v62,-42,169,-98,280,-95v195,5,334,92,405,231v28,55,44,123,44,205v0,286,-230,495,-520,495v-197,0,-417,-109,-417,-276v0,-66,33,-127,102,-127v69,0,121,43,123,100v2,38,-21,123,-28,151v67,62,232,99,341,44v126,-64,182,-190,182,-386v0,-178,-111,-329,-285,-326v-127,3,-211,48,-274,130r-67,-26r85,-722r716,0r0,178r-635,0","w":1082},"6":{"d":"671,-908v227,-4,410,209,404,447v-6,232,-132,389,-299,458v-120,49,-273,46,-386,-6v-186,-86,-285,-277,-287,-549v-3,-490,333,-844,782,-896r18,90r-90,16v-276,86,-437,280,-489,577v98,-85,191,-134,347,-137xm593,-47v180,0,265,-180,265,-387v0,-196,-94,-358,-274,-358v-123,0,-196,47,-264,122v-14,185,6,383,72,490v53,87,118,133,201,133","w":1159},"7":{"d":"1029,-1008r-713,1373r-125,0r671,-1270r-529,2v-75,6,-117,17,-145,85v-15,36,-29,82,-38,137r-61,0r0,-392r940,0r0,65","w":1029},"8":{"d":"1064,-1091v-3,168,-120,279,-260,340v111,47,191,100,240,157v49,57,73,130,73,218v0,246,-248,410,-526,410v-270,0,-487,-148,-487,-397v0,-208,139,-291,311,-362v-140,-81,-247,-166,-253,-348v-7,-224,234,-383,470,-383v237,0,436,145,432,365xm734,-787v97,-61,139,-163,141,-315v2,-156,-106,-275,-258,-275v-146,0,-257,112,-257,256v0,70,27,129,82,178v55,49,152,101,292,156xm617,-46v175,0,301,-116,300,-283v-1,-96,-45,-151,-105,-197v-81,-62,-214,-115,-326,-164v-114,61,-183,158,-186,316v-3,192,126,328,317,328","w":1221},"9":{"d":"568,-1106v314,0,494,255,488,590v-7,393,-190,646,-460,786v-97,50,-205,84,-325,100r-18,-90r90,-16v276,-87,441,-265,492,-567v-99,82,-186,132,-347,135v-223,3,-404,-209,-404,-447v0,-268,216,-491,484,-491xm839,-404v15,-181,-6,-385,-71,-490v-53,-87,-119,-133,-202,-133v-181,0,-265,177,-265,385v0,196,94,358,274,358v123,0,199,-46,264,-120","w":1159},":":{"d":"320,-990v74,0,137,64,137,137v0,73,-65,136,-137,136v-73,0,-137,-63,-137,-136v0,-73,63,-137,137,-137xm320,-252v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":640},";":{"d":"320,-990v74,0,137,64,137,137v0,73,-65,136,-137,136v-73,0,-137,-63,-137,-136v0,-73,63,-137,137,-137xm302,-252v172,0,208,217,140,352v-56,112,-151,196,-254,254r-46,-67v107,-71,203,-139,226,-289v-113,10,-193,-29,-193,-129v1,-60,56,-121,127,-121","w":640},"\u037e":{"d":"320,-990v74,0,137,64,137,137v0,73,-65,136,-137,136v-73,0,-137,-63,-137,-136v0,-73,63,-137,137,-137xm302,-252v172,0,208,217,140,352v-56,112,-151,196,-254,254r-46,-67v107,-71,203,-139,226,-289v-113,10,-193,-29,-193,-129v1,-60,56,-121,127,-121","w":640},"<":{"d":"1118,-22r-925,-481r0,-113r925,-481r0,137r-769,400r769,401r0,137","w":1317},"=":{"d":"1163,-683r-1009,0r0,-125r1009,0r0,125xm1163,-311r-1009,0r0,-125r1009,0r0,125","w":1317},">":{"d":"1124,-503r-925,481r0,-137r769,-401r-769,-400r0,-137r925,481r0,113","w":1317},"?":{"d":"206,-1098v-100,0,-123,-127,-78,-202v52,-88,176,-152,320,-152v211,0,346,102,404,254v18,48,27,100,27,157v-1,264,-190,417,-442,443r0,221r-92,0r0,-379v196,-19,344,-86,344,-307v0,-215,-124,-355,-329,-297v-24,7,-40,18,-51,26v5,26,23,107,22,138v-2,57,-55,98,-125,98xm394,-252v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":980},"@":{"d":"993,236v223,0,379,-64,506,-168r31,51v-128,110,-311,197,-544,194v-367,-5,-622,-180,-747,-443v-91,-191,-93,-470,-7,-679v90,-218,249,-386,468,-485v192,-87,475,-104,669,-20v225,98,362,293,370,597v8,299,-189,581,-473,581v-111,0,-203,-60,-210,-162r-7,-2v-52,78,-127,156,-234,160v-219,7,-275,-241,-197,-438v51,-129,125,-242,238,-317v61,-40,125,-61,195,-61v80,1,143,49,153,124r6,0r43,-112r149,0r-189,538v-10,26,-20,78,-20,109v-1,64,35,97,93,98v103,0,188,-49,259,-145v102,-137,140,-408,67,-602v-78,-207,-264,-342,-551,-342v-340,0,-553,202,-667,458v-81,181,-83,467,-14,656v90,248,288,410,613,410xm756,-400v0,93,11,176,88,176v117,0,170,-89,223,-180r115,-338v-18,-93,-40,-155,-136,-155v-102,0,-167,98,-208,174v-45,83,-82,207,-82,323","w":1902},"A":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0","w":1374},"B":{"d":"1170,-1110v0,216,-158,299,-337,344r0,9v215,33,415,124,415,371v0,209,-140,312,-306,362v-56,17,-115,24,-175,24r-672,0r0,-71v61,-7,160,-13,180,-61v7,-16,13,-36,13,-61r0,-1020v6,-106,-98,-123,-186,-135r0,-71r655,0v173,1,305,53,375,163v25,40,38,89,38,146xm628,-791v201,0,303,-98,301,-299v-2,-164,-91,-252,-266,-250r-162,4r0,545r127,0xm694,-79v207,-1,309,-128,307,-343v-1,-178,-132,-293,-326,-288r-174,4r0,500v2,95,87,127,193,127","w":1339},"C":{"d":"1289,-359v-100,249,-259,392,-566,392v-309,0,-497,-186,-592,-423v-70,-176,-70,-436,-1,-614v97,-252,294,-446,624,-446v150,0,254,41,352,99r41,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-388,-452v-335,0,-449,300,-449,655v0,278,106,481,285,582v58,33,123,48,195,48v233,0,349,-143,417,-315","w":1315},"D":{"d":"288,-1213v7,-106,-96,-125,-186,-135r0,-71r620,0v323,10,551,153,664,379v89,177,95,476,3,653v-124,239,-363,387,-707,387r-588,0r0,-71v31,0,118,-9,137,-18v38,-17,56,-49,57,-100r0,-1024xm717,-82v359,0,495,-252,495,-620v0,-294,-118,-490,-318,-589v-108,-54,-245,-48,-393,-43r0,1091v2,131,79,161,216,161","w":1534},"E":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020","w":1338},"F":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1113,0r0,355r-75,0v-19,-86,-128,-258,-215,-268v-120,-14,-274,-6,-408,-8r0,570r163,0v171,7,225,-84,243,-231r76,0r0,557r-76,0v-12,-98,-45,-210,-133,-232v-72,-18,-181,-11,-273,-13r0,489v5,80,40,104,124,118v34,6,59,10,76,11r0,71r-615,0r0,-71v30,-2,124,-9,145,-18v38,-17,56,-49,57,-100r0,-1024","w":1227},"G":{"d":"1205,-923v-61,-221,-144,-442,-420,-442v-254,0,-372,168,-431,380v-44,156,-45,371,0,531v63,219,193,390,460,398v102,3,216,-40,263,-84v13,-85,9,-180,9,-273v0,-60,-14,-102,-59,-122v-36,-16,-132,-29,-178,-32r0,-73r622,0r0,73v-63,9,-152,18,-173,71v-18,45,-12,113,-12,174v0,80,1,134,2,162v1,28,2,51,3,69v-217,99,-528,181,-786,73v-252,-105,-427,-330,-427,-680v0,-353,177,-586,432,-696v87,-38,181,-56,281,-56v156,0,271,44,366,99r41,-68r80,0r9,496r-82,0","w":1485},"H":{"d":"1381,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-505r-667,0r0,494v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,440r667,0r0,-430v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023","w":1669},"I":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027","w":798},"J":{"d":"593,-1213v7,-114,-118,-122,-213,-135r0,-71r626,0r0,71v-67,7,-165,10,-186,64v-8,19,-12,39,-12,61r0,841v-7,183,-110,317,-244,378v-54,25,-117,38,-187,38v-210,3,-366,-130,-366,-338v0,-87,47,-173,137,-173v102,0,160,90,120,186v-25,60,-70,107,-90,167v33,49,94,85,185,83v211,-5,230,-204,230,-421r0,-751","w":1060},"K":{"d":"288,-1213v6,-105,-99,-121,-186,-135r0,-71r589,0r0,71v-64,8,-159,13,-178,64v-7,19,-12,39,-12,61r0,490r20,0v157,-131,339,-309,451,-469v24,-36,36,-68,36,-96v-14,-45,-92,-45,-147,-50r0,-71r532,0r0,71v-96,6,-185,28,-234,83r-215,242v-75,83,-149,159,-222,228v101,115,186,213,252,296r211,265v75,88,145,155,290,163r0,71r-398,0v-157,-244,-352,-482,-550,-694r-26,0r0,494v-7,104,98,119,190,129r0,71r-589,0r0,-71v71,-7,150,-6,172,-57v8,-18,14,-37,14,-61r0,-1024","w":1422},"L":{"d":"288,-1209v7,-108,-103,-123,-190,-139r0,-71r599,0r0,71v-65,9,-163,14,-183,67v-7,20,-13,40,-13,62r0,953v-1,111,6,174,105,182v120,10,322,20,389,-47v50,-50,146,-218,171,-291r71,0r-30,422r-1109,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1016","w":1236},"M":{"d":"1611,-200v-8,107,102,120,195,129r0,71r-627,0r0,-71v39,-1,137,-9,161,-24v37,-24,59,-49,60,-105r0,-1032r-15,0r-484,1209r-50,0r-461,-1234r-13,0r0,847v7,185,3,284,154,319v46,11,76,19,90,20r0,71r-573,0r0,-71v105,-11,202,-31,219,-134v6,-39,13,-103,13,-194r0,-726v5,-155,-85,-215,-223,-223r0,-71r484,0r406,1064r347,-890v18,-44,42,-129,47,-174r463,0r0,71v-64,8,-162,12,-181,64v-7,19,-12,39,-12,61r0,1023","w":1899},"N":{"d":"1554,-1348v-38,1,-146,29,-169,47v-58,47,-61,157,-61,276r0,1039r-87,0r-860,-1161r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r798,1082r0,-675v-1,-130,-6,-228,-62,-279v-26,-24,-144,-55,-188,-57r0,-71r577,0r0,71","w":1571},"O":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49","w":1524},"P":{"d":"739,-1419v241,-4,446,125,445,350v-1,236,-148,364,-331,420v-103,32,-223,26,-352,26r0,430v1,81,40,107,123,115v30,3,58,6,83,7r0,71r-609,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1024v-1,-54,-12,-89,-57,-105v-42,-15,-94,-22,-140,-26r0,-71r648,0xm603,-710v215,1,333,-110,333,-309v0,-196,-90,-320,-294,-318r-141,0r0,627r102,0","w":1249},"Q":{"d":"1418,343v-106,33,-294,67,-431,23v-142,-45,-229,-158,-247,-334v-320,-17,-517,-198,-611,-448v-67,-178,-65,-429,5,-600v100,-245,302,-437,628,-437v329,0,532,190,629,439v63,159,71,383,18,554v-69,222,-219,377,-432,455v-5,131,122,285,245,285v88,0,136,-6,196,-16r0,79xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49","w":1524},"R":{"d":"1201,-1081v-1,239,-159,325,-346,382r345,465v72,97,133,152,280,163r0,71r-382,0r-230,-344v0,0,-142,-196,-222,-299r-145,0r0,450v0,81,38,107,121,115v30,3,55,6,76,7r0,71r-600,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1026v-1,-54,-12,-87,-57,-103v-30,-11,-96,-23,-133,-26r0,-71r655,0v192,1,339,58,411,183v25,43,37,94,37,155xm632,-729v186,1,322,-135,322,-329v0,-173,-107,-282,-283,-280r-170,0r0,609r131,0","w":1437},"S":{"d":"550,-1364v-120,-3,-230,93,-229,210v3,261,268,282,448,367v155,73,300,158,300,384v0,253,-224,432,-484,432v-132,0,-270,-50,-354,-101r-43,73r-80,0r-14,-486r81,0v48,174,123,317,269,392v46,23,100,35,161,35v171,-1,267,-80,267,-249v0,-132,-82,-228,-191,-270r-149,-57v-209,-78,-398,-157,-398,-430v0,-189,120,-301,264,-358v168,-67,371,-7,482,71r41,-68r80,0r8,471r-81,0v-59,-204,-121,-410,-378,-416","w":1149},"T":{"d":"1251,-1034r-69,0v-28,-95,-89,-195,-150,-260v-61,-65,-172,-39,-292,-47r0,1135v6,86,47,106,138,122v39,7,69,12,90,13r0,71r-670,0r0,-71v32,-3,141,-13,165,-23v42,-18,64,-46,64,-103r0,-1144r-135,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1236,0r0,385","w":1267},"U":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361","w":1549},"V":{"d":"1407,-1348v-75,7,-149,38,-179,91v-13,23,-27,48,-40,78r-201,495r-276,702r-83,0r-460,-1231v-31,-79,-105,-126,-206,-135r0,-71r587,0r0,71v-50,3,-92,9,-127,15v-61,10,-56,45,-40,89r356,950r175,-437v66,-168,110,-283,133,-346v31,-89,41,-110,44,-183v-17,-76,-128,-76,-211,-88r0,-71r528,0r0,71","w":1365},"W":{"d":"2028,-1348v-111,15,-182,68,-213,169r-368,1197r-92,0r-358,-1092r-373,1092r-88,0r-347,-1231v-23,-82,-95,-127,-193,-135r0,-71r579,0r0,71v-51,3,-93,9,-129,15v-63,11,-60,41,-46,90r255,897r354,-1053r98,0r357,1076r124,-433v35,-124,64,-230,86,-318v23,-93,36,-113,36,-186v0,-23,-15,-42,-46,-57v-31,-15,-82,-26,-151,-31r0,-71r515,0r0,71","w":1998},"X":{"d":"684,-1348v-54,3,-177,10,-183,53v28,102,110,204,162,292v27,46,64,98,105,157v75,-102,140,-194,195,-276v55,-82,82,-135,82,-160v0,-21,-12,-37,-37,-47v-25,-10,-68,-16,-127,-19r0,-71r529,0r0,71v-83,1,-175,36,-210,80r-69,84r-147,194r-163,220r367,536v31,48,94,113,136,141v27,18,93,20,133,22r0,71r-664,0r0,-71v55,-1,100,-5,133,-15v67,-21,59,-42,27,-104v-74,-144,-176,-286,-263,-421v-59,77,-125,170,-200,279v-75,109,-112,174,-112,193v0,22,10,39,30,49v20,10,66,16,135,19r0,71r-530,0r0,-71v38,-3,105,-11,133,-26v69,-38,102,-77,147,-137r341,-459r-340,-495v-63,-89,-83,-130,-200,-152v-28,-4,-50,-7,-67,-8r0,-71r657,0r0,71","w":1455},"Y":{"d":"1009,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169","w":1260},"Z":{"d":"1214,-443r-47,443r-1140,0r0,-35r893,-1305r-422,2v-114,5,-139,29,-220,117v-57,62,-96,132,-124,203r-70,0r43,-401r1063,0r0,35r-893,1305r337,0v93,-1,262,-11,306,-53v76,-72,164,-212,204,-311r70,0","w":1232},"[":{"d":"701,310r-533,0r0,-1829r533,0r0,91r-355,0r0,1646r355,0r0,92","w":768},"\\":{"d":"911,424r-130,0r-691,-1947r132,0","w":960},"]":{"d":"600,310r-533,0r0,-92r355,0r0,-1646r-355,0r0,-91r533,0r0,1829","w":768},"^":{"d":"1126,-796r-145,0r-321,-524r-324,524r-145,0r412,-660r113,0","w":1317},"_":{"d":"1322,282r-1327,0r0,-101r1327,0r0,101","w":1317},"`":{"d":"344,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52"},"a":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110","w":1032},"b":{"d":"647,-1013v258,0,426,239,426,519v0,273,-211,527,-465,524v-121,-1,-225,-43,-307,-92r-74,115r-62,-14v3,-49,7,-109,7,-178r2,-1177v-7,-76,-35,-129,-118,-136v-30,-3,-54,-8,-72,-9r0,-64r362,-23r14,15r0,650r7,2v68,-73,161,-132,280,-132xm360,-226v33,96,101,179,232,180v81,0,145,-41,197,-118v92,-136,101,-458,9,-608v-44,-71,-112,-130,-221,-130v-102,0,-165,45,-217,102r0,574","w":1147},"c":{"d":"925,-230v-72,134,-216,253,-397,256v-294,4,-461,-220,-456,-523v4,-234,111,-390,275,-473v203,-103,529,-24,521,215v-2,67,-31,127,-103,127v-68,0,-121,-40,-124,-97v-2,-48,23,-125,26,-162v-34,-61,-153,-66,-221,-31v-117,61,-168,220,-168,413v0,219,102,421,299,421v154,0,216,-80,284,-188","w":930},"d":{"d":"360,-973v134,-65,322,-40,431,22r0,-343v-2,-93,-43,-144,-129,-156v-32,-4,-65,-10,-102,-13r0,-62r403,-23r15,15r0,1330v-2,96,76,122,174,120r0,65r-344,22r-15,-14r0,-92r-8,-2v-86,105,-288,177,-449,94v-160,-82,-264,-247,-264,-485v0,-236,119,-396,288,-478xm570,-79v107,0,172,-58,221,-112r0,-577v-34,-93,-103,-169,-230,-169v-215,0,-276,220,-280,454v-3,175,52,300,159,370v36,23,80,34,130,34","w":1176},"e":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0","w":990},"f":{"d":"627,-1549v100,-1,179,39,179,120v0,60,-33,109,-97,107v-94,-2,-123,-88,-164,-143v-45,2,-76,34,-103,93v-31,70,-39,249,-37,390r254,0r0,96r-254,0r0,708v-6,102,101,103,189,112r0,66r-520,0r0,-66v80,-3,145,-15,145,-102r0,-718r-195,0r0,-96r195,0r0,-63v-7,-272,158,-501,408,-504","w":666},"g":{"d":"365,-373v-30,11,-75,40,-73,86v4,101,119,88,219,96v112,9,233,-6,321,34v96,43,171,119,171,260v0,184,-131,272,-285,315v-155,44,-462,28,-565,-40v-72,-47,-111,-107,-111,-191v0,-146,135,-221,284,-225r0,-14v-86,-28,-175,-62,-175,-174v0,-93,70,-139,151,-174r0,-15v-111,-52,-200,-134,-202,-279v-3,-193,170,-324,372,-320v67,1,124,16,180,32r344,0r0,96r-232,0r0,6v43,48,71,117,73,197v5,173,-175,315,-351,310r-121,0xm468,-442v122,2,179,-117,179,-245v0,-139,-54,-256,-181,-256v-134,0,-170,114,-172,250v-2,129,59,249,174,251xm523,368v179,0,316,-61,316,-228v0,-125,-71,-147,-220,-150v-58,-1,-125,-5,-202,-5v-127,0,-199,72,-199,198v0,146,143,185,305,185","w":1043},"h":{"d":"999,-176v-1,86,65,103,144,110r0,66r-484,0r0,-66v81,-3,152,-12,152,-102r0,-507v4,-123,-63,-219,-170,-219v-125,0,-212,69,-256,149r0,567v-1,87,72,104,152,112r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-1148v-7,-76,-35,-133,-119,-138v-30,-2,-55,-6,-74,-7r0,-64r365,-23r14,15r0,688r4,0v81,-82,169,-168,336,-168v186,1,274,128,274,324r0,513","w":1192},"i":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm295,-1515v72,0,130,60,130,128v0,73,-58,142,-130,142v-66,0,-126,-67,-126,-133v0,-69,58,-137,126,-137","w":600},"j":{"d":"-151,325v-1,-57,34,-110,94,-108v95,4,120,83,161,143v51,0,86,-31,108,-92v22,-61,33,-160,33,-295r0,-742v-12,-81,-39,-119,-133,-131v-41,-5,-70,-12,-91,-14r0,-62r396,-22r14,14r0,924v-2,224,-96,391,-245,468v-111,58,-334,52,-337,-83xm316,-1516v72,0,130,60,130,128v0,73,-58,142,-130,142v-66,0,-126,-67,-126,-133v0,-69,58,-137,126,-137","w":598},"k":{"d":"733,-864v-1,-41,-87,-51,-127,-58r0,-64r434,0r0,62v-139,44,-228,103,-315,195v-29,31,-70,69,-123,118v55,67,116,148,184,242r150,204v57,72,74,90,181,99r0,66r-298,0r-167,-242v-59,-86,-121,-170,-185,-251r-82,77r0,234v-2,91,70,108,152,116r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-1146v-6,-80,-38,-133,-121,-140v-30,-3,-54,-6,-72,-7r0,-64r365,-23r14,15r0,1043r169,-168v60,-60,111,-112,152,-159v8,-9,27,-33,27,-47","w":1097},"l":{"d":"387,-180v-1,87,68,106,147,114r0,66r-481,0r0,-66v80,-3,148,-14,148,-102r0,-1142v-8,-81,-38,-126,-122,-139v-32,-5,-58,-11,-77,-12r0,-64r371,-23r14,15r0,1353","w":586},"m":{"d":"1612,-178v-3,90,69,105,149,112r0,66r-481,0r0,-66v79,-3,143,-16,143,-102r0,-509v3,-122,-59,-217,-166,-217v-123,0,-203,69,-249,147r0,569v-2,87,63,105,143,112r0,66r-471,0r0,-66v78,-3,139,-18,139,-102r0,-509v8,-159,-108,-255,-258,-201v-70,26,-121,75,-158,133r0,565v0,86,69,107,148,114r0,66r-479,0r0,-66v80,-3,145,-15,145,-102r0,-613v-3,-89,-72,-124,-160,-130r0,-65r330,-22r14,14r0,141r7,0v85,-84,162,-170,329,-170v130,0,226,84,264,176v84,-83,169,-178,340,-176v184,2,271,128,271,334r0,501","w":1804},"n":{"d":"1018,-176v-1,86,63,103,143,110r0,66r-483,0r0,-66v81,-3,151,-13,151,-102r0,-507v4,-123,-63,-219,-170,-219v-126,0,-211,69,-256,149r0,567v-1,87,73,104,152,112r0,66r-483,0r0,-66v80,-3,145,-15,145,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,139r5,0v86,-83,163,-168,331,-168v192,0,279,133,279,324r0,513","w":1210},"o":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755","w":1104},"p":{"d":"391,-873v59,-69,166,-140,282,-140v214,0,331,143,391,307v45,123,45,304,-6,424v-72,170,-203,301,-426,308v-107,3,-182,-27,-239,-67r-8,0r0,296v-7,108,108,111,199,122r0,67r-551,0r0,-67v63,-5,133,-4,154,-50v8,-17,12,-36,12,-59r0,-1049v-3,-90,-73,-128,-166,-130r0,-65r336,-22r14,12r0,111xm385,-209v38,88,105,162,230,162v254,0,307,-326,257,-591v-27,-145,-104,-260,-271,-264v-103,-3,-167,54,-216,110r0,583","w":1170},"q":{"d":"978,251v-6,102,91,116,176,126r0,67r-533,0r0,-67v63,-6,137,-4,158,-50v8,-17,12,-36,12,-59r0,-364r-6,-2v-66,63,-147,124,-277,124v-218,0,-340,-139,-402,-312v-45,-128,-47,-302,6,-424v72,-165,214,-295,433,-303v137,-5,229,52,308,103r85,-130r57,8v-3,49,-7,110,-11,182v-4,72,-6,135,-6,189r0,912xm580,-81v99,0,162,-51,211,-102r0,-589v-35,-92,-105,-165,-234,-165v-78,0,-142,42,-197,121v-93,135,-112,465,-10,612v49,70,113,123,230,123","w":1146},"r":{"d":"685,-1010v85,-4,143,63,142,151v-1,66,-33,130,-102,130v-65,0,-113,-39,-115,-93v0,-29,6,-51,10,-76v-88,6,-176,74,-217,146r0,574v-6,102,101,103,189,112r0,66r-520,0r0,-66v80,-3,145,-15,145,-102r0,-609v-3,-88,-63,-133,-156,-134r0,-65r328,-22r14,14r0,139r5,0v63,-85,160,-160,277,-165","w":839},"s":{"d":"428,-937v-126,-4,-219,103,-160,215v59,111,242,115,358,177v102,55,180,112,182,260v2,190,-167,311,-368,311v-99,0,-214,-50,-262,-88r-20,65r-75,0r-10,-343r69,0v43,144,133,278,313,289v148,9,249,-115,183,-241v-73,-138,-321,-124,-439,-227v-53,-47,-100,-109,-100,-206v0,-170,146,-289,331,-289v76,0,169,24,217,51r23,-52r72,0r15,317r-69,0v-24,-128,-117,-235,-260,-239","w":885},"t":{"d":"539,-100v30,0,121,-7,142,-16r0,73v-87,34,-146,64,-265,64v-163,0,-225,-83,-225,-239r0,-668r-178,0r0,-96r182,0r0,-307r182,0r0,307r283,0r0,96r-281,0r0,551v-3,143,18,239,160,235","w":707},"u":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783","w":1178},"v":{"d":"797,-798v39,-87,-61,-114,-128,-124r0,-64r377,0r0,61v-75,16,-124,47,-155,119r-253,585v-29,65,-59,156,-84,230r-78,0r-175,-429r-166,-396v-22,-57,-90,-93,-154,-104r0,-66r456,0r0,70v-33,3,-136,9,-115,60r248,608","w":1017},"w":{"d":"1292,-808v31,-84,-56,-110,-126,-114r0,-64r375,0r0,64v-69,9,-138,59,-161,128r-230,686v-12,40,-24,78,-34,115r-86,0r-265,-726r-267,726r-82,0r-273,-821v-16,-57,-88,-98,-148,-106r0,-66r440,0r0,70v-40,3,-124,7,-107,61r186,599r252,-710r96,0r257,700r85,-260v28,-84,54,-162,75,-235v5,-17,8,-33,13,-47","w":1510},"x":{"d":"728,-850v24,-52,-59,-63,-96,-72r0,-64r364,0r0,62v-145,30,-199,117,-272,212r-127,168r148,210v59,78,104,179,179,238v23,18,57,27,98,30r0,66r-452,0r0,-66v53,-8,134,-2,98,-64v-61,-104,-130,-197,-195,-296v-35,43,-67,85,-96,126r-92,131v-7,10,-22,34,-22,49v0,42,58,50,114,56r0,64r-365,0r0,-62v140,-34,195,-134,272,-229r144,-190r-246,-354v-36,-49,-70,-86,-154,-85r0,-66r429,0r0,66v-38,2,-116,-3,-88,42r184,279r167,-234v3,-5,5,-10,8,-17","w":1034},"y":{"d":"242,430v-104,42,-244,-8,-245,-108v-1,-61,39,-113,96,-113v89,1,119,73,155,127v72,-38,190,-252,220,-341r-172,-424r-161,-387v-21,-58,-90,-93,-154,-104r0,-66r450,0r0,70v-33,5,-130,6,-109,59r247,613r93,-222r129,-322v9,-22,13,-42,13,-58v-1,-40,-91,-72,-132,-76r0,-64r366,0r0,62v-54,12,-128,61,-152,118r-352,837v-69,151,-118,251,-209,342v-29,29,-58,47,-83,57","w":1008},"z":{"d":"280,-81r256,1v47,-5,145,6,172,-32v42,-59,61,-155,85,-236r60,0r0,348r-798,0r0,-53r558,-852v-123,7,-272,-19,-364,23v-55,25,-76,115,-95,199r-61,0r0,-303r754,0r0,41","w":909},"{":{"d":"556,-1004v7,256,-132,351,-344,387r0,31v149,29,270,79,318,212v37,100,26,270,26,408v0,167,103,217,258,219r0,80v-279,4,-447,-75,-447,-360v0,-76,15,-180,15,-254v0,-195,-130,-245,-310,-256r0,-129v177,-14,315,-62,310,-256v-4,-138,-34,-317,14,-430v61,-143,215,-186,418,-185r0,82v-53,3,-141,14,-177,36v-53,31,-81,90,-81,181r0,234","w":881},"|":{"d":"448,424r-127,0r0,-1947r127,0r0,1947","w":768},"}":{"d":"499,-922v-6,194,133,242,310,256r0,129v-179,11,-315,61,-310,256v4,136,32,327,-15,435v-61,140,-215,180,-417,179r0,-80v104,-4,205,-24,237,-104v51,-130,-6,-384,47,-523v50,-132,169,-183,318,-212r0,-31v-212,-36,-344,-131,-344,-387v0,-157,31,-355,-81,-415v-37,-20,-124,-33,-177,-36r0,-82v203,-1,357,41,417,185v47,113,19,292,15,430","w":881},"~":{"d":"913,-569v112,0,151,-91,196,-176r78,31v-41,103,-125,219,-223,266v-37,18,-75,28,-118,28v-188,2,-272,-136,-442,-136v-114,0,-146,87,-196,176r-78,-31v63,-167,231,-358,474,-273v77,27,141,61,210,94v30,14,62,21,99,21","w":1317},"\u00c4":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0xm920,-1841v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm470,-1841v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1374},"\u00c5":{"d":"955,-1646v0,121,-95,208,-211,220r468,1211v30,88,100,135,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-13,43,-23,73,-23,114v0,66,127,83,205,88r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r461,-1179v-124,-13,-213,-92,-215,-221v-2,-133,122,-222,258,-222v141,0,258,84,258,222xm849,-580r-215,-550r-211,550r426,0xm697,-1485v87,0,133,-72,132,-161v0,-87,-44,-158,-132,-158v-87,0,-132,68,-132,158v0,88,45,161,132,161","w":1374},"\u00c7":{"d":"834,282v0,-72,-92,-73,-165,-75r0,-177v-275,-30,-448,-194,-538,-420v-70,-176,-70,-436,-1,-614v97,-252,294,-446,624,-446v150,0,254,41,352,99r41,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-388,-452v-335,0,-449,300,-449,655v0,278,106,481,285,582v58,33,123,48,195,48v233,0,349,-143,417,-315r75,36v-95,242,-252,374,-541,391r0,67v123,1,230,31,230,149v0,182,-202,192,-399,196r0,-72v108,-4,255,13,255,-90","w":1315},"\u00c9":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm814,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1338},"\u00d1":{"d":"1554,-1348v-38,1,-146,29,-169,47v-58,47,-61,157,-61,276r0,1039r-87,0r-860,-1161r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r798,1082r0,-675v-1,-130,-6,-228,-62,-279v-26,-24,-144,-55,-188,-57r0,-71r577,0r0,71xm978,-1724v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1571},"\u00d6":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm987,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm537,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1524},"\u00dc":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm1040,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm590,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1549},"\u00e1":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm656,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1032},"\u00e0":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm299,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52","w":1032},"\u00e2":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm817,-1156r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":1032},"\u00e4":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm708,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm278,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1032},"\u00e3":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm672,-1356v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1032},"\u00e5":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm493,-1559v141,0,258,84,258,222v0,136,-114,223,-258,223v-147,0,-258,-83,-258,-223v0,-133,122,-222,258,-222xm493,-1178v88,0,133,-69,132,-159v0,-87,-44,-158,-132,-158v-87,0,-132,68,-132,158v0,88,45,159,132,159","w":1032},"\u00e7":{"d":"624,282v0,-72,-92,-73,-165,-75r0,-185v-246,-29,-391,-238,-387,-519v4,-234,111,-390,275,-473v203,-103,529,-24,521,215v-2,67,-31,127,-103,127v-68,0,-121,-40,-124,-97v-2,-48,23,-125,26,-162v-34,-61,-153,-66,-221,-31v-117,61,-168,220,-168,413v0,219,102,421,299,421v154,0,216,-80,284,-188r64,42v-70,132,-213,247,-387,256r0,73v123,1,230,31,230,149v0,182,-202,192,-399,196r0,-72v108,-4,255,13,255,-90","w":930},"\u00e9":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm681,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":990},"\u00e8":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm300,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52","w":990},"\u00ea":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm847,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":990},"\u00eb":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm744,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm314,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":990},"\u00ed":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm429,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":600},"\u00ec":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm57,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52","w":600},"\u00ee":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm560,-1150r-48,29r-244,-270r-240,270r-48,-29r202,-343v17,-29,39,-49,90,-49v50,0,69,21,84,45","w":600},"\u00ef":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm451,-1487v65,0,115,58,115,123v0,65,-50,123,-115,123v-65,0,-115,-58,-115,-123v0,-65,50,-123,115,-123xm101,-1487v65,0,115,58,115,123v0,65,-50,123,-115,123v-65,0,-115,-58,-115,-123v0,-65,50,-123,115,-123","w":600},"\u00f1":{"d":"1018,-176v-1,86,63,103,143,110r0,66r-483,0r0,-66v81,-3,151,-13,151,-102r0,-507v4,-123,-63,-219,-170,-219v-126,0,-211,69,-256,149r0,567v-1,87,73,104,152,112r0,66r-483,0r0,-66v80,-3,145,-15,145,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,139r5,0v86,-83,163,-168,331,-168v192,0,279,133,279,324r0,513xm770,-1356v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1210},"\u00f3":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm661,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1104},"\u00f2":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm391,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52","w":1104},"\u00f4":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm884,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":1104},"\u00f6":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm774,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm344,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1104},"\u00f5":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm725,-1356v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1104},"\u00fa":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm726,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1178},"\u00f9":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm374,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52","w":1178},"\u00fb":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm898,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":1178},"\u00fc":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm788,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm358,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1178},"\u2020":{"d":"558,-1380v0,70,-45,203,-50,294v104,-7,204,-53,281,-53v46,0,75,22,75,71v0,45,-31,73,-75,71v-63,-3,-200,-44,-281,-49r48,752v-1,46,-22,75,-71,75v-45,0,-74,-31,-71,-75r44,-752v-93,5,-211,45,-281,49v-44,2,-75,-25,-75,-71v0,-48,30,-71,75,-71v69,0,191,50,281,53v-8,-101,-41,-217,-46,-294v-3,-44,27,-75,73,-75v48,0,73,30,73,75","w":967},"\u00b0":{"d":"429,-1453v185,0,326,144,326,325v0,181,-142,325,-326,325v-185,0,-325,-146,-325,-325v0,-183,143,-325,325,-325xm432,-878v107,0,175,-109,175,-242v0,-145,-54,-258,-179,-258v-121,0,-176,114,-176,247v0,139,53,253,180,253","w":859},"\u00a2":{"d":"651,-88v175,6,254,-78,331,-192r58,46v-72,122,-213,243,-389,253r0,280r-82,0r0,-281v-268,-18,-428,-232,-428,-517v0,-260,188,-487,428,-511r0,-265r82,0r0,260v177,-2,343,93,342,260v0,77,-32,125,-106,127v-75,2,-118,-37,-122,-97v-3,-49,28,-125,31,-162v-23,-37,-86,-53,-145,-57r0,856xm569,-939v-162,49,-223,216,-225,432v-1,203,77,359,225,407r0,-839","w":1137},"\u00a3":{"d":"536,-621v-3,206,-99,347,-237,435r0,9r866,0r0,177r-1048,0r0,-148v172,-58,217,-247,219,-473r-167,0r0,-96r167,0r-9,-120v-4,-53,-6,-97,-6,-132v0,-325,279,-577,609,-460v114,41,202,127,202,269v0,67,-31,125,-104,125v-68,0,-125,-39,-127,-97v-2,-48,23,-126,30,-160v-21,-42,-87,-87,-159,-84v-165,6,-251,114,-246,293r10,366r396,0r0,96r-396,0","w":1274},"\u00a7":{"d":"606,-1367v-144,-40,-295,36,-294,169v2,65,37,97,81,128v54,38,154,77,225,107v99,42,172,89,217,143v45,54,68,117,68,186v0,156,-119,271,-250,316v123,53,208,120,208,267v0,158,-110,244,-234,286v-121,40,-334,27,-408,-39v-34,-30,-57,-61,-61,-110v-7,-83,92,-130,156,-82v48,36,69,111,96,167v141,43,299,-44,299,-171v0,-41,-17,-80,-51,-118v-34,-38,-111,-80,-228,-125v-113,-44,-192,-94,-239,-151v-47,-57,-70,-125,-70,-202v0,-159,106,-246,241,-304v-119,-60,-204,-114,-204,-261v0,-210,183,-293,402,-293v159,0,283,40,298,174v9,83,-91,127,-154,81v-52,-38,-69,-106,-98,-168xm582,-347v101,-58,166,-113,166,-240v0,-59,-26,-111,-78,-156v-52,-45,-126,-85,-224,-119v-104,42,-172,104,-172,226v0,65,26,119,76,162v50,43,127,85,232,127"},"\u2022":{"d":"402,-863v141,0,264,123,264,264v0,141,-123,264,-264,264v-141,0,-264,-123,-264,-264v0,-141,123,-264,264,-264","w":804},"\u00b6":{"d":"99,-1059v0,-216,165,-360,384,-360r517,0r0,74r-111,0r0,1561r-103,0r0,-1561r-160,0r0,1561r-103,0r0,-922v-242,2,-424,-120,-424,-353"},"\u00df":{"d":"703,-931v194,51,338,185,341,433v4,316,-220,570,-555,498r0,-81v73,16,156,14,209,-24v106,-75,137,-218,137,-399v0,-217,-91,-396,-306,-387r0,-85v176,5,263,-94,267,-264v3,-136,-61,-234,-183,-234v-78,0,-136,36,-173,108v-37,72,-55,173,-55,306r0,1060r-326,0r0,-66v53,-5,109,-6,127,-46v7,-16,12,-36,12,-61r0,-833v3,-202,25,-298,124,-416v112,-133,392,-173,541,-56v64,49,109,119,107,232v-3,179,-116,277,-267,306r0,9","w":1123},"\u00ae":{"d":"964,-1485v475,0,885,408,885,883v0,475,-411,883,-885,883v-475,0,-884,-408,-884,-883v0,-475,409,-883,884,-883xm964,193v425,0,786,-373,786,-795v0,-422,-361,-795,-786,-795v-425,0,-785,373,-785,795v0,422,360,795,785,795xm1341,-854v0,163,-96,225,-235,265r236,290v47,62,107,86,200,96r0,58r-287,0v-63,-89,-118,-163,-165,-223r-143,-181r-105,0r0,262v-8,75,78,77,141,84r0,58r-439,0r0,-58v62,-7,136,-9,136,-84r0,-642v8,-78,-76,-77,-136,-88r0,-58r492,0v164,5,305,57,305,221xm929,-625v135,1,227,-76,226,-209v-1,-116,-75,-170,-197,-169r-116,0r0,378r87,0","w":1929},"\u00a9":{"d":"964,-1485v475,0,885,408,885,883v0,475,-411,883,-885,883v-475,0,-884,-408,-884,-883v0,-475,409,-883,884,-883xm964,193v425,0,786,-373,786,-795v0,-422,-361,-795,-786,-795v-425,0,-785,373,-785,795v0,422,360,795,785,795xm1023,-206v163,0,235,-92,294,-223r58,25v-46,116,-132,221,-247,268v-95,39,-247,29,-344,-8v-175,-66,-292,-212,-292,-448v0,-239,130,-387,310,-461v65,-26,135,-39,209,-39v73,0,179,33,219,64r45,-66r59,0r5,363r-54,0v-50,-152,-113,-288,-313,-288v-186,0,-273,198,-273,417v0,221,124,396,324,396","w":1929},"\u2122":{"d":"1752,-835v-4,51,60,45,104,50r0,52r-346,0r0,-52v18,0,75,-2,85,-10v18,-13,28,-14,28,-40r0,-451r-15,0r-244,531r-32,0r-237,-541r-15,0r0,364v2,83,4,124,73,138v21,4,39,9,54,9r0,52r-315,0r0,-50v44,-8,114,-10,118,-59v13,-122,6,-297,6,-433v0,-70,-50,-89,-118,-93r0,-51r278,0r211,472r176,-387v12,-27,19,-57,25,-85r268,0r0,51v-39,7,-104,-1,-104,49r0,484xm260,-785v45,-4,112,3,112,-48r0,-530r-127,4v-42,2,-89,104,-100,138r-48,0r0,-198r679,0r0,198r-48,0v-10,-36,-61,-137,-100,-138r-127,-4r0,524v-3,53,66,48,112,54r0,52r-353,0r0,-52","w":1930},"\u00b4":{"d":"614,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18"},"\u00a8":{"d":"727,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm297,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123"},"\u2260":{"d":"1163,-311r-517,0r-90,311r-117,0r90,-311r-375,0r0,-125r412,0r71,-247r-483,0r0,-125r517,0r90,-311r117,0r-90,311r375,0r0,125r-412,0r-70,247r482,0r0,125","w":1317},"\u00c6":{"d":"766,-1326v-34,-13,-124,-20,-170,-22r0,-71r1238,0r0,342r-75,0v-17,-83,-128,-246,-213,-255v-112,-13,-258,-6,-385,-8r0,564v84,-2,206,7,263,-14v75,-28,107,-127,120,-218r75,0r0,555r-75,0v-11,-97,-47,-207,-128,-230v-62,-18,-172,-10,-255,-12r0,426v-2,112,19,174,115,181v129,9,354,27,432,-41v51,-44,140,-222,161,-289r72,0r-27,418r-1168,0r0,-71v29,-3,124,-11,145,-22v39,-20,56,-46,57,-100r0,-409r-480,0v-29,47,-55,94,-80,140v-25,46,-58,109,-99,192v-14,28,-31,63,-31,100v0,76,79,93,168,99r0,71r-523,0r0,-71v83,-10,152,-39,195,-93v19,-24,39,-51,56,-80r303,-529xm948,-690r0,-641r-77,0r-354,641r431,0","w":1988},"\u00d8":{"d":"1253,-1236v111,125,193,298,191,528v-3,352,-171,582,-420,691v-82,36,-169,52,-262,52v-184,0,-329,-70,-433,-160r-174,210r-64,-50r181,-215v-111,-121,-192,-306,-192,-528v0,-356,172,-584,422,-694v83,-36,170,-52,260,-52v183,2,327,68,433,161r151,-183r65,52xm1098,-1176v-70,-111,-171,-189,-336,-189v-174,0,-273,87,-343,203v-119,197,-133,617,-34,847xm426,-243v66,107,172,189,336,189v253,0,368,-184,417,-397v47,-201,31,-493,-39,-651","w":1524},"\u221e":{"d":"1054,-979v211,-4,338,189,338,415v0,212,-145,422,-340,417v-167,-4,-255,-111,-329,-241v-61,135,-149,236,-309,240v-210,5,-338,-189,-338,-415v0,-217,143,-417,340,-417v169,0,253,108,329,241v58,-132,151,-237,309,-240xm1094,-325v132,0,212,-104,212,-236v0,-146,-97,-244,-241,-244v-135,0,-235,45,-285,131v52,123,100,212,144,267v44,55,101,82,170,82xm162,-568v0,146,98,246,241,246v129,0,239,-48,285,-131v-53,-126,-101,-216,-146,-269v-45,-53,-101,-80,-168,-80v-131,0,-212,104,-212,234","w":1468},"\u00b1":{"d":"1168,0r-1019,0r0,-125r446,0r0,-402r-446,0r0,-125r446,0r0,-451r127,0r0,451r446,0r0,125r-446,0r0,402r446,0r0,125","w":1317},"\u2264":{"d":"1136,-201r-955,-391r0,-115r955,-391r0,138r-774,310r774,311r0,138xm1136,-125r0,125r-955,0r0,-125r955,0","w":1317},"\u2265":{"d":"1136,-592r-955,391r0,-138r774,-311r-774,-310r0,-138r955,391r0,115xm1136,0r-955,0r0,-125r955,0r0,125","w":1317},"\u00a5":{"d":"726,-207v-9,112,108,125,203,136r0,71r-610,0r0,-71v29,-3,124,-11,145,-21v38,-19,57,-50,57,-105r0,-267r-393,0r0,-96r393,0r0,-64v-58,-117,-106,-213,-148,-286v-66,-114,-132,-255,-209,-354v-37,-47,-97,-79,-176,-84r0,-71r579,0r0,71v-65,3,-109,6,-132,14v-46,16,-42,35,-18,80r147,272r124,224r202,-340v59,-100,89,-158,89,-175v0,-72,-99,-66,-169,-75r0,-71r472,0r0,71v-55,4,-137,46,-160,74v-166,205,-267,416,-396,631r0,83r393,0r0,96r-393,0r0,257","w":1259},"\u00b5":{"d":"528,-92v125,0,199,-63,245,-139r0,-755r189,0r0,784v-5,103,66,125,171,119r0,64v-58,19,-95,37,-165,38v-107,0,-178,-58,-193,-154r-6,0v-82,82,-146,156,-315,156v-76,0,-158,-39,-190,-81r-6,0v-14,120,50,304,53,402v2,60,-46,101,-99,102v-55,0,-92,-42,-91,-100v6,-150,54,-321,54,-480r0,-850r189,0r0,677v-3,122,57,217,164,217","w":1160},"\u2202":{"d":"283,-324v4,154,42,276,192,276v124,0,200,-101,253,-190v48,-81,98,-230,116,-331v-11,-137,-83,-227,-230,-227v-190,0,-337,257,-331,472xm875,-732v22,-281,25,-641,-263,-645v-67,-1,-117,22,-153,48v12,109,22,227,-106,227v-100,0,-131,-111,-81,-190v62,-99,179,-164,342,-164v255,0,396,145,444,348v100,421,-80,880,-330,1058v-78,55,-163,82,-254,82v-246,0,-387,-172,-387,-417v0,-253,225,-528,461,-528v169,0,268,67,327,181","w":1180},"\u2211":{"d":"1031,235v168,-10,230,-159,287,-281r67,21r-118,439r-1246,0r0,-49r696,-839r-684,-900r0,-45r1190,0r43,401r-70,0v-43,-114,-162,-293,-273,-312v-180,-31,-410,-5,-610,-10r580,761r0,27r-659,787r797,0","w":1444},"\u220f":{"d":"511,214v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1554r-200,0r0,-90r1518,0r0,90r-205,0r0,1543v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1554r-687,0r0,1543","w":1709},"\u222b":{"d":"234,367v136,25,166,-112,180,-237v4,-44,6,-95,6,-153r0,-932v-1,-274,52,-470,230,-559v141,-71,353,-29,353,128v0,54,-35,92,-93,92v-99,0,-119,-82,-121,-178v-179,-26,-186,204,-186,385r0,937v-2,197,-20,361,-111,466v-60,69,-141,128,-253,128v-126,0,-219,-51,-219,-163v0,-50,36,-93,93,-92v96,2,120,76,121,178","w":1023},"\u00aa":{"d":"791,-798v-1,77,59,95,142,90r0,60v-48,15,-84,31,-142,31v-88,0,-139,-46,-153,-120r-5,0v-68,69,-143,121,-269,124v-147,3,-249,-140,-194,-290v47,-131,185,-147,320,-195v61,-21,110,-37,145,-56v6,-130,-33,-225,-158,-227v-41,-1,-89,20,-109,40v2,20,16,73,15,98v-1,44,-56,72,-108,72v-56,0,-80,-47,-81,-96v-3,-107,179,-186,293,-186v194,0,312,64,309,263xm331,-850v-1,82,41,127,117,128v90,2,142,-42,184,-87r4,-266v-121,38,-218,56,-282,143v-17,22,-23,51,-23,82"},"\u00ba":{"d":"517,-1453v232,0,391,180,391,415v0,242,-159,432,-404,432v-219,0,-388,-190,-388,-421v0,-241,163,-426,401,-426xm514,-680v170,0,209,-177,209,-356v0,-173,-40,-343,-208,-343v-212,0,-238,271,-203,478v19,115,72,221,202,221"},"\u2126":{"d":"1449,-893v-6,338,-186,490,-348,681r0,33r223,0v106,-1,170,-128,207,-209r62,22r-117,366r-563,0r0,-68v135,-208,300,-377,295,-713v-5,-306,-97,-587,-409,-583v-310,4,-405,271,-408,583v-3,330,161,512,295,713r0,68r-563,0r-117,-366r62,-22v31,73,75,148,137,190v20,13,43,19,70,19r223,0r0,-33v-156,-191,-344,-345,-348,-681v-4,-319,316,-560,649,-560v334,0,656,241,650,560","w":1595},"\u00e6":{"d":"1131,-84v153,0,211,-85,267,-192r70,43v-66,144,-196,259,-384,259v-189,0,-286,-70,-372,-188r-6,0v-92,117,-182,185,-367,188v-148,3,-259,-97,-258,-246v2,-159,89,-236,202,-282v155,-63,221,-79,359,-120v8,-166,-16,-313,-174,-319v-58,-2,-119,23,-145,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-121,-135,-65,-203v63,-76,181,-142,314,-142v142,0,252,30,311,121v60,-63,164,-121,280,-121v276,0,390,177,380,465r-618,0v1,268,67,465,306,465xm1246,-631v0,-57,-13,-161,-33,-202v-29,-59,-75,-106,-162,-106v-142,0,-228,157,-226,308r421,0xm425,-86v102,2,173,-53,219,-108r0,-343v-146,29,-269,72,-335,178v-20,31,-28,69,-28,111v-2,103,50,160,144,162","w":1509},"\u00f8":{"d":"897,-869v120,117,176,363,103,571v-68,194,-208,328,-458,328v-120,0,-214,-45,-287,-105r-126,156r-58,-43r133,-163v-77,-87,-134,-204,-134,-364v0,-297,195,-528,487,-525v126,1,215,39,289,97r111,-141r58,44xm763,-815v-43,-73,-97,-123,-208,-123v-262,0,-300,300,-273,568v5,45,14,85,25,122xm340,-179v43,76,101,133,215,133v163,0,229,-139,259,-278v28,-127,20,-314,-18,-424","w":1104},"\u00bf":{"d":"586,-1446v73,0,137,62,137,135v0,73,-65,137,-137,137v-73,0,-137,-65,-137,-137v0,-73,65,-135,137,-135xm774,-328v100,0,120,125,78,202v-72,131,-330,194,-508,119v-146,-61,-243,-181,-243,-378v0,-264,190,-417,442,-443r0,-221r92,0r0,379v-196,19,-344,86,-344,307v0,215,124,355,329,297v24,-7,40,-18,51,-26v-5,-26,-23,-107,-22,-138v2,-57,55,-98,125,-98","w":980},"\u00a1":{"d":"344,-1446v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137xm344,32v-74,0,-130,-60,-128,-135v0,-43,11,-155,32,-333v21,-178,40,-363,55,-556r78,0v15,161,34,340,57,537v23,197,34,314,34,352v1,74,-54,135,-128,135","w":678},"\u00ac":{"d":"1163,-76r-132,0r0,-451r-887,0r0,-125r1019,0r0,576","w":1317},"\u221a":{"d":"1430,-1704r-753,1830r-67,0r-383,-936r-184,0r0,-93r360,0r288,723r622,-1524r117,0","w":1370},"\u0192":{"d":"691,-1276v131,-56,361,-38,363,112v0,63,-33,110,-97,105v-96,-7,-128,-83,-173,-175v-55,9,-98,44,-134,104v-45,75,-74,267,-88,412r257,0r0,96r-266,0r-21,206v-37,341,-98,644,-350,754v-131,57,-355,38,-358,-109v0,-60,36,-110,97,-105v97,8,127,78,173,173v54,-7,99,-43,130,-109v89,-189,109,-557,138,-810r-204,0r0,-96r213,0v25,-216,76,-349,189,-469v39,-40,83,-68,131,-89","w":1063},"\u2248":{"d":"903,-387v108,0,142,-90,188,-171r75,31v-39,109,-115,200,-210,252v-33,18,-73,27,-118,27v-176,2,-265,-121,-424,-121v-114,0,-136,83,-188,166r-75,-31v57,-164,224,-329,456,-255v73,24,134,55,201,84v28,12,60,18,95,18xm903,-769v108,0,142,-90,188,-171r75,31v-39,109,-115,200,-210,252v-33,18,-73,27,-118,27v-176,2,-265,-121,-424,-121v-114,0,-136,83,-188,166r-75,-31v57,-164,224,-329,456,-255v73,24,134,55,201,84v28,12,60,18,95,18","w":1317},"\u2206":{"d":"1350,0r-1331,0r0,-50r646,-1389r78,0r607,1389r0,50xm1068,-172r-434,-995r-455,995r889,0","w":1369},"\u00ab":{"d":"997,-160r-49,40r-355,-332v-14,-14,-42,-41,-42,-76v0,-38,28,-64,45,-80r352,-329r49,41r-259,367xm616,-160r-49,40r-355,-332v-14,-14,-42,-41,-42,-76v0,-40,26,-62,45,-80r352,-329r49,41r-259,367","w":1190},"\u00bb":{"d":"1003,-576v23,28,24,75,0,98r-380,358r-49,-40r259,-369r-259,-367r49,-41r352,329v7,7,16,17,28,32xm622,-578v23,26,24,77,0,100r-380,358r-49,-40r259,-369r-259,-367r49,-41r352,329v7,6,16,16,28,30","w":1190},"\u2026":{"d":"1381,-240v70,0,131,62,131,131v0,69,-63,129,-131,129v-69,0,-131,-60,-131,-129v0,-69,61,-131,131,-131xm830,-240v69,0,131,63,131,131v0,69,-63,129,-131,129v-69,0,-131,-60,-131,-129v0,-69,61,-131,131,-131xm279,-240v69,0,131,63,131,131v0,69,-63,129,-131,129v-69,0,-131,-60,-131,-129v0,-69,61,-131,131,-131","w":1653},"\u00c0":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0xm470,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113","w":1374},"\u00c3":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0xm871,-1714v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1374},"\u00d5":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm928,-1724v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1524},"\u0152":{"d":"864,-82r139,-5r0,-1244v-131,-6,-263,-11,-364,29v-207,82,-317,287,-317,585v0,354,205,637,542,635xm1216,-269v-2,110,20,175,116,181v129,8,353,27,431,-41v51,-44,140,-222,161,-289r72,0r-27,418r-1154,0v-366,-9,-647,-208,-715,-524v-36,-167,-20,-375,46,-506v120,-238,364,-389,704,-389r1039,0r0,342r-75,0v-17,-82,-128,-246,-213,-255v-112,-13,-258,-6,-385,-8r0,564v82,-2,200,7,258,-12v76,-24,114,-128,125,-220r75,0r0,555r-75,0v-12,-97,-46,-205,-127,-229v-62,-19,-172,-11,-256,-13r0,426","w":2044},"\u0153":{"d":"1294,-84v153,0,211,-85,267,-192r70,43v-66,144,-196,259,-384,259v-166,0,-293,-84,-361,-195v-74,109,-187,199,-356,199v-220,0,-355,-133,-422,-302v-48,-120,-50,-294,-7,-421v63,-183,205,-318,448,-321v156,-2,284,96,345,192v63,-100,178,-192,330,-192v286,0,394,191,382,490r-624,0v4,260,79,440,312,440xm1410,-608v-1,-171,-29,-331,-198,-331v-148,0,-234,170,-230,331r428,0xm788,-490v0,-222,-32,-449,-249,-449v-214,0,-263,216,-263,434v0,186,34,348,142,424v102,71,246,36,305,-73v40,-75,65,-185,65,-336","w":1672},"\u2013":{"d":"1215,-497r-1113,0r0,-125r1113,0r0,125","w":1317},"\u2014":{"d":"1653,-497r-1551,0r0,-125r1551,0r0,125","w":1755},"\u201c":{"d":"239,-985v-161,0,-192,-199,-132,-323v49,-101,139,-163,232,-218r36,60v-100,59,-183,106,-199,246v105,-8,182,22,181,120v0,59,-51,115,-118,115xm609,-985v-161,0,-192,-199,-132,-323v49,-101,139,-163,232,-218r36,60v-100,59,-183,105,-199,246v105,-8,182,22,181,120v0,59,-51,115,-118,115","w":840},"\u201d":{"d":"232,-1529v161,0,191,202,130,325v-47,97,-145,166,-233,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114xm602,-1529v161,0,191,202,130,325v-47,97,-145,166,-233,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":840},"\u2018":{"d":"236,-985v-161,0,-192,-199,-132,-323v49,-101,139,-163,232,-218r36,60v-100,59,-183,105,-199,246v105,-8,182,22,181,120v0,59,-51,115,-118,115","w":464},"\u2019":{"d":"229,-1529v161,0,191,202,131,325v-47,96,-147,166,-234,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":464},"\u00f7":{"d":"659,-1093v69,0,129,58,129,127v0,69,-60,129,-129,129v-69,0,-129,-60,-129,-129v0,-69,60,-127,129,-127xm1173,-497r-1029,0r0,-125r1029,0r0,125xm659,-282v69,0,129,60,129,129v0,69,-60,127,-129,127v-69,0,-129,-58,-129,-127v0,-69,60,-129,129,-129","w":1317},"\u25ca":{"d":"1085,-574r-510,574r-510,-574r510,-575xm928,-574r-353,-405r-353,405r353,404","w":1150},"\u00ff":{"d":"242,430v-104,42,-244,-8,-245,-108v-1,-61,39,-113,96,-113v89,1,119,73,155,127v72,-38,190,-252,220,-341r-172,-424r-161,-387v-21,-58,-90,-93,-154,-104r0,-66r450,0r0,70v-33,5,-130,6,-109,59r247,613r93,-222r129,-322v9,-22,13,-42,13,-58v-1,-40,-91,-72,-132,-76r0,-64r366,0r0,62v-54,12,-128,61,-152,118r-352,837v-69,151,-118,251,-209,342v-29,29,-58,47,-83,57xm758,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm328,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1008},"\u0178":{"d":"1009,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169xm894,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm444,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1260},"\u2044":{"d":"519,-1419r-739,1419r-135,0r737,-1419r137,0","w":166},"\u2215":{"d":"519,-1419r-739,1419r-135,0r737,-1419r137,0","w":166},"\u20ac":{"d":"354,-710r2,84r301,0r-36,96r-255,0v30,187,118,325,254,402v95,53,227,63,331,22v129,-51,213,-157,263,-289r75,36v-101,249,-248,392,-556,392v-195,0,-330,-82,-435,-193v-78,-82,-153,-230,-171,-370r-127,0r36,-96r81,0v-6,-63,1,-113,3,-174r-120,0r36,-96r97,0v46,-231,182,-413,373,-500v78,-36,164,-54,258,-54v151,0,243,41,342,99r41,-68r80,0r9,506r-82,0v-37,-163,-109,-337,-232,-413v-88,-54,-230,-47,-320,4v-133,76,-216,235,-237,426r394,0r-36,96r-367,0","w":1315},"\u2039":{"d":"641,-160r-49,40r-375,-332v-15,-15,-42,-40,-42,-76v0,-39,26,-63,45,-80r372,-329r49,41r-269,367","w":850},"\u203a":{"d":"658,-576v22,28,22,74,0,98v-11,12,-19,21,-25,26r-375,332r-49,-40r269,-369r-269,-367r49,-41r372,329v7,6,16,17,28,32","w":850},"\ufb01":{"d":"998,-181v-2,87,70,105,146,115r0,66r-473,0r0,-66v78,-4,141,-18,141,-103r0,-631v0,-45,-10,-62,-29,-91r-378,0r0,712v-2,91,78,103,157,113r0,66r-488,0r0,-66v79,-3,145,-16,145,-103r0,-717r-195,0r0,-96r195,0v-3,-206,48,-324,152,-436v61,-65,189,-132,314,-132v158,0,289,40,296,168v3,56,-38,109,-92,109v-118,0,-134,-111,-162,-198v-278,-20,-329,204,-322,489r331,0r248,-16r14,14r0,803","w":1193},"\ufb02":{"d":"676,-66v80,-3,147,-14,147,-102r0,-1192v0,-106,-158,-136,-253,-92v-137,63,-174,252,-165,470r244,0r0,96r-244,0r0,707v-2,91,78,103,157,113r0,66r-488,0r0,-66v79,-3,145,-16,145,-103r0,-717r-195,0r0,-96r195,0v-2,-207,45,-325,152,-437v58,-62,186,-131,314,-131v89,0,168,14,229,40r81,-38r14,15r0,1353v-1,87,68,106,147,114r0,66r-480,0r0,-66","w":1208},"\u2021":{"d":"558,-1380v0,70,-45,203,-50,294v104,-7,204,-53,281,-53v46,0,75,22,75,71v0,45,-31,73,-75,71v-63,-3,-200,-44,-281,-49v3,82,33,142,28,230v-4,71,-24,126,-28,198v104,-7,204,-44,281,-49v44,-3,75,25,75,71v0,48,-30,71,-75,71v-63,0,-199,-49,-281,-53v5,93,50,223,50,294v0,46,-24,75,-73,75v-44,0,-75,-31,-73,-75v5,-84,39,-181,46,-294v-107,9,-202,53,-281,53v-46,0,-75,-22,-75,-71v0,-45,31,-74,75,-71v80,5,172,42,281,49v-10,-108,-45,-217,-14,-328v9,-31,12,-65,14,-100v-93,5,-211,45,-281,49v-44,2,-75,-25,-75,-71v0,-48,30,-71,75,-71v77,0,173,45,281,53v-8,-101,-41,-217,-46,-294v-3,-44,27,-75,73,-75v48,0,73,30,73,75","w":967},"\u2219":{"d":"288,-696v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":572},"\u201a":{"d":"229,-237v161,0,191,202,131,325v-47,96,-147,166,-234,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":464},"\u201e":{"d":"232,-237v161,0,191,202,130,325v-47,97,-145,166,-233,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114xm602,-237v161,0,191,202,130,325v-47,97,-145,166,-233,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":840},"\u2030":{"d":"449,-1453v207,0,339,158,339,370v0,221,-132,370,-340,370v-208,0,-339,-149,-339,-370v0,-213,131,-370,340,-370xm448,-787v130,0,171,-147,171,-296v0,-147,-41,-296,-170,-296v-131,0,-171,149,-171,296v0,150,40,296,170,296xm1226,-708v207,0,339,158,339,370v0,221,-132,370,-340,370v-208,0,-339,-149,-339,-370v0,-213,131,-370,340,-370xm1225,-42v130,0,171,-147,171,-296v0,-147,-41,-296,-170,-296v-131,0,-171,149,-171,296v0,150,40,296,170,296xm1499,-1424r-1179,1424r-138,0r1176,-1424r141,0xm2021,-708v207,0,339,158,339,370v0,221,-132,370,-340,370v-208,0,-339,-149,-339,-370v0,-213,131,-370,340,-370xm2020,-42v130,0,171,-147,171,-296v0,-147,-41,-296,-170,-296v-131,0,-171,149,-171,296v0,150,40,296,170,296","w":2469},"\u00c2":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0xm1026,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1374},"\u00ca":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm1004,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1338},"\u00c1":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0xm836,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1374},"\u00cb":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm913,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm463,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1338},"\u00c8":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm377,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113","w":1338},"\u00cd":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm487,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":798},"\u00ce":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm724,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":798},"\u00cf":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm614,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm184,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":798},"\u00cc":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm205,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113","w":798},"\u00d3":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm856,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1524},"\u00d4":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm1087,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1524},"\u00d2":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm562,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113","w":1524},"\u00da":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm903,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1549},"\u00db":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm1135,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1549},"\u00d9":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm552,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113","w":1549},"\u0131":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804","w":600},"\u02c6":{"d":"837,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41"},"\u02dc":{"d":"678,-1356v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15"},"\u02c9":{"d":"855,-1291r-686,0r0,-128r686,0r0,128"},"\u02d8":{"d":"512,-1277v165,0,220,-104,258,-230r55,12v-33,215,-103,368,-313,368v-205,0,-284,-163,-313,-368r55,-12v41,124,90,230,258,230"},"\u02d9":{"d":"510,-1513v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135"},"\u02da":{"d":"512,-1559v141,0,258,84,258,222v0,136,-114,223,-258,223v-147,0,-258,-83,-258,-223v0,-133,122,-222,258,-222xm512,-1178v88,0,133,-69,132,-159v0,-87,-44,-158,-132,-158v-87,0,-132,68,-132,158v0,88,45,159,132,159"},"\u00b8":{"d":"476,99v123,1,230,31,230,149v0,182,-202,192,-399,196r0,-72v108,-4,249,13,255,-90v4,-69,-100,-73,-165,-75r0,-224r79,0r0,116"},"\u02dd":{"d":"784,-1518v49,-47,144,-8,142,58v-2,61,-25,81,-63,113r-279,237r-35,-28r112,-184v37,-60,77,-153,123,-196xm473,-1538v65,0,104,80,69,137v-30,50,-98,100,-144,141r-168,150r-37,-28v51,-85,87,-151,111,-195v32,-57,66,-146,108,-185v15,-14,36,-20,61,-20"},"\u02db":{"d":"464,217v-1,126,94,156,224,155r0,72r-115,0v-151,2,-267,-60,-267,-194v0,-48,20,-97,58,-146v38,-49,97,-96,178,-143r61,0v-73,60,-139,130,-139,256"},"\u02c7":{"d":"837,-1510r-239,351v-26,31,-25,41,-84,41v-60,0,-67,-11,-90,-45r-237,-347r48,-32r275,273r279,-273"},"\u0141":{"d":"288,-1209v7,-108,-103,-123,-190,-139r0,-71r599,0r0,71v-65,9,-163,14,-183,67v-7,20,-13,40,-13,62r0,413r271,-113r35,87r-306,125r0,441v-1,111,6,174,105,182v120,10,322,20,389,-47v50,-50,146,-218,171,-291r71,0r-30,422r-1109,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-432r-163,68r-35,-87r198,-81r0,-484","w":1236},"\u0142":{"d":"53,-66v80,-3,148,-14,148,-102r0,-449r-138,59r-34,-81r172,-71r0,-600v-8,-81,-38,-126,-122,-139v-32,-5,-58,-11,-77,-12r0,-64r371,-23r14,15r0,753r138,-59r34,81r-172,71r0,507v-1,87,68,106,147,114r0,66r-481,0r0,-66","w":586},"\u0160":{"d":"550,-1364v-120,-3,-230,93,-229,210v3,261,268,282,448,367v155,73,300,158,300,384v0,253,-224,432,-484,432v-132,0,-270,-50,-354,-101r-43,73r-80,0r-14,-486r81,0v48,174,123,317,269,392v46,23,100,35,161,35v171,-1,267,-80,267,-249v0,-132,-82,-228,-191,-270r-149,-57v-209,-78,-398,-157,-398,-430v0,-189,120,-301,264,-358v168,-67,371,-7,482,71r41,-68r80,0r8,471r-81,0v-59,-204,-121,-410,-378,-416xm908,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1149},"\u0161":{"d":"428,-937v-126,-4,-219,103,-160,215v59,111,242,115,358,177v102,55,180,112,182,260v2,190,-167,311,-368,311v-99,0,-214,-50,-262,-88r-20,65r-75,0r-10,-343r69,0v43,144,133,278,313,289v148,9,249,-115,183,-241v-73,-138,-321,-124,-439,-227v-53,-47,-100,-109,-100,-206v0,-170,146,-289,331,-289v76,0,169,24,217,51r23,-52r72,0r15,317r-69,0v-24,-128,-117,-235,-260,-239xm775,-1510r-239,351v-26,31,-25,41,-84,41v-60,0,-67,-11,-90,-45r-237,-347r48,-32r275,273r279,-273","w":885},"\u017d":{"d":"1214,-443r-47,443r-1140,0r0,-35r893,-1305r-422,2v-114,5,-139,29,-220,117v-57,62,-96,132,-124,203r-70,0r43,-401r1063,0r0,35r-893,1305r337,0v93,-1,262,-11,306,-53v76,-72,164,-212,204,-311r70,0xm953,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1232},"\u017e":{"d":"280,-81r256,1v47,-5,145,6,172,-32v42,-59,61,-155,85,-236r60,0r0,348r-798,0r0,-53r558,-852v-123,7,-272,-19,-364,23v-55,25,-76,115,-95,199r-61,0r0,-303r754,0r0,41xm782,-1510r-239,351v-26,31,-25,41,-84,41v-60,0,-67,-11,-90,-45r-237,-347r48,-32r275,273r279,-273","w":909},"\u00a6":{"d":"448,-723r-127,0r0,-800r127,0r0,800xm448,424r-127,0r0,-810r127,0r0,810","w":768},"\u00d0":{"d":"288,-1213v7,-106,-96,-125,-186,-135r0,-71r620,0v323,10,551,153,664,379v89,177,95,476,3,653v-124,239,-363,387,-707,387r-588,0r0,-71v31,0,118,-9,137,-18v38,-17,56,-49,57,-100r0,-512r-186,0r0,-98r186,0r0,-414xm717,-82v359,0,495,-252,495,-620v0,-294,-118,-490,-318,-589v-108,-54,-245,-48,-393,-43r0,535r301,0r0,98r-301,0r0,458v2,131,79,161,216,161","w":1534},"\u00f0":{"d":"737,-1343v170,184,274,396,277,732v3,355,-155,642,-482,642v-220,0,-356,-129,-424,-297v-26,-65,-38,-138,-38,-220v0,-280,183,-499,454,-499v121,0,226,68,271,139r8,-2v-18,-172,-97,-321,-174,-435r-231,138r-50,-78r228,-131v-42,-55,-108,-106,-166,-146r50,-56v60,30,167,103,213,148r203,-123r51,78xm746,-190v107,-234,88,-720,-201,-716v-212,3,-268,192,-268,407v0,152,26,264,70,341v64,111,212,151,318,73v35,-25,61,-62,81,-105","w":1089},"\u00dd":{"d":"1009,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169xm814,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1260},"\u00fd":{"d":"242,430v-104,42,-244,-8,-245,-108v-1,-61,39,-113,96,-113v89,1,119,73,155,127v72,-38,190,-252,220,-341r-172,-424r-161,-387v-21,-58,-90,-93,-154,-104r0,-66r450,0r0,70v-33,5,-130,6,-109,59r247,613r93,-222r129,-322v9,-22,13,-42,13,-58v-1,-40,-91,-72,-132,-76r0,-64r366,0r0,62v-54,12,-128,61,-152,118r-352,837v-69,151,-118,251,-209,342v-29,29,-58,47,-83,57xm677,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1008},"\u00de":{"d":"753,-1132v238,-4,439,144,436,375v-3,234,-139,354,-323,409v-106,31,-233,24,-365,25v6,93,-24,206,58,232v28,9,105,19,145,20r0,71r-606,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1022v7,-107,-105,-118,-192,-133r0,-71r597,0r0,71v-64,7,-159,13,-180,62v-17,40,-10,100,-12,154r252,0xm610,-411v216,1,331,-113,331,-314v0,-199,-93,-325,-299,-324r-141,0r0,638r109,0","w":1258},"\u00fe":{"d":"366,-873v59,-69,166,-140,282,-140v213,0,332,143,392,307v45,123,43,304,-6,425v-50,123,-141,216,-253,270v-126,61,-327,41,-413,-30r-8,0r0,296v-7,108,108,111,199,122r0,67r-551,0r0,-67v89,-3,166,-12,166,-109r0,-1584v-12,-72,-33,-133,-120,-137v-31,-2,-54,-7,-73,-8r0,-64r365,-23r14,15r0,656xm360,-209v38,88,105,162,230,162v254,0,307,-326,257,-591v-27,-145,-104,-260,-271,-264v-103,-3,-167,54,-216,110r0,583","w":1145},"\u2212":{"d":"1168,-497r-1019,0r0,-125r1019,0r0,125","w":1317},"\u00d7":{"d":"1108,-199r-89,89r-361,-363r-362,364r-88,-89r364,-362r-364,-361r89,-88r361,362r362,-363r88,88r-364,362","w":1317},"\u00b9":{"d":"596,-649v-4,88,113,82,193,88r0,71r-565,0r0,-71v77,-8,203,12,203,-80r0,-631r-207,0r0,-78v133,10,252,-32,310,-95r73,0r-7,237r0,559"},"\u00b2":{"d":"500,-1453v192,0,358,98,355,278v-6,288,-237,318,-425,434v-60,37,-112,70,-151,107r621,0r0,144r-753,0r0,-111v95,-162,333,-235,455,-388v41,-52,60,-101,61,-193v1,-120,-66,-195,-178,-196v-70,-1,-129,28,-156,65v8,37,22,74,21,118v-1,49,-48,77,-108,77v-61,0,-89,-48,-89,-102v0,-135,192,-233,347,-233"},"\u00b3":{"d":"623,-990v138,20,257,81,257,239v0,190,-202,296,-422,296v-150,0,-327,-72,-331,-200v-1,-55,32,-100,84,-100v57,0,104,27,106,72v1,30,-14,79,-21,102v34,29,102,54,168,53v138,-1,224,-83,224,-227v0,-127,-72,-180,-204,-178r-107,0r0,-94r76,0v138,0,183,-64,192,-199v11,-163,-219,-201,-304,-96v6,21,20,79,19,107v-3,42,-53,71,-107,71v-87,0,-107,-101,-65,-166v55,-85,183,-143,328,-143v179,0,321,68,321,225v0,137,-95,194,-214,229r0,9"},"\u00bd":{"d":"507,-649v-4,88,113,82,193,88r0,71r-565,0r0,-71v77,-8,203,12,203,-80r0,-631r-207,0r0,-78v133,10,252,-32,310,-95r73,0r-7,237r0,559xm1437,-1419r-739,1419r-135,0r737,-1419r137,0xm1644,-963v192,0,358,98,355,278v-6,288,-237,318,-425,434v-60,37,-112,70,-151,107r621,0r0,144r-753,0r0,-111v95,-162,333,-235,455,-388v41,-52,60,-101,61,-193v1,-120,-66,-195,-178,-196v-70,-1,-129,28,-156,65v8,37,22,74,21,118v-1,49,-48,77,-108,77v-61,0,-89,-48,-89,-102v0,-135,192,-233,347,-233","w":2150},"\u00bc":{"d":"507,-649v-4,88,113,82,193,88r0,71r-565,0r0,-71v77,-8,203,12,203,-80r0,-631r-207,0r0,-78v133,10,252,-32,310,-95r73,0r-7,237r0,559xm1447,-1419r-739,1419r-135,0r737,-1419r137,0xm1988,-212r-159,0r0,232r-166,0r0,-232r-495,0r0,-126r543,-623r118,0r0,640r159,0r0,109xm1663,-321r0,-453r-393,453r393,0","w":2150},"\u00be":{"d":"613,-990v138,20,257,81,257,239v0,190,-202,296,-422,296v-150,0,-327,-72,-331,-200v-1,-55,32,-100,84,-100v57,0,104,27,106,72v1,30,-14,79,-21,102v34,29,102,54,168,53v138,-1,224,-83,224,-227v0,-127,-72,-180,-204,-178r-107,0r0,-94r76,0v138,0,183,-64,192,-199v11,-163,-219,-201,-304,-96v6,21,20,79,19,107v-3,42,-53,71,-107,71v-87,0,-107,-101,-65,-166v55,-85,183,-143,328,-143v179,0,321,68,321,225v0,137,-95,194,-214,229r0,9xm1599,-1419r-739,1419r-135,0r737,-1419r137,0xm2078,-212r-159,0r0,232r-166,0r0,-232r-495,0r0,-126r543,-623r118,0r0,640r159,0r0,109xm1753,-321r0,-453r-393,453r393,0","w":2150},"\u20a3":{"d":"307,-1213v9,-111,-112,-121,-202,-135r0,-71r1091,0r0,355r-75,0v-19,-89,-128,-257,-215,-268v-114,-15,-262,-6,-391,-8r0,539r156,0v155,6,214,-71,233,-201r76,0r0,487r-76,0v-15,-80,-55,-180,-132,-195v-70,-14,-172,-8,-257,-10r0,259r262,0r0,96r-262,0v7,103,-27,231,59,266v18,7,114,28,141,28r0,71r-610,0r0,-71v30,-2,124,-10,145,-18v84,-31,50,-171,57,-276r-193,0r0,-96r193,0r0,-752","w":1274},"\u011e":{"d":"1205,-923v-61,-221,-144,-442,-420,-442v-254,0,-372,168,-431,380v-44,156,-45,371,0,531v63,219,193,390,460,398v102,3,216,-40,263,-84v13,-85,9,-180,9,-273v0,-60,-14,-102,-59,-122v-36,-16,-132,-29,-178,-32r0,-73r622,0r0,73v-63,9,-152,18,-173,71v-18,45,-12,113,-12,174v0,80,1,134,2,162v1,28,2,51,3,69v-217,99,-528,181,-786,73v-252,-105,-427,-330,-427,-680v0,-353,177,-586,432,-696v87,-38,181,-56,281,-56v156,0,271,44,366,99r41,-68r80,0r9,496r-82,0xm782,-1678v157,0,223,-69,263,-189r55,16v-33,192,-114,321,-318,321v-197,0,-289,-133,-318,-321r55,-16v40,120,106,189,263,189","w":1485},"\u011f":{"d":"365,-373v-30,11,-75,40,-73,86v4,101,119,88,219,96v112,9,233,-6,321,34v96,43,171,119,171,260v0,184,-131,272,-285,315v-155,44,-462,28,-565,-40v-72,-47,-111,-107,-111,-191v0,-146,135,-221,284,-225r0,-14v-86,-28,-175,-62,-175,-174v0,-93,70,-139,151,-174r0,-15v-111,-52,-200,-134,-202,-279v-3,-193,170,-324,372,-320v67,1,124,16,180,32r344,0r0,96r-232,0r0,6v43,48,71,117,73,197v5,173,-175,315,-351,310r-121,0xm468,-442v122,2,179,-117,179,-245v0,-139,-54,-256,-181,-256v-134,0,-170,114,-172,250v-2,129,59,249,174,251xm523,368v179,0,316,-61,316,-228v0,-125,-71,-147,-220,-150v-58,-1,-125,-5,-202,-5v-127,0,-199,72,-199,198v0,146,143,185,305,185xm493,-1277v165,0,220,-104,258,-230r55,12v-33,215,-103,368,-313,368v-205,0,-284,-163,-313,-368r55,-12v41,124,90,230,258,230","w":1043},"\u0130":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm398,-1864v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":798},"\u015e":{"d":"420,372v107,-5,250,13,255,-90v4,-69,-100,-73,-165,-75r0,-183v-110,-13,-199,-49,-279,-96r-43,73r-80,0r-14,-486r81,0v48,174,123,317,269,392v46,23,100,35,161,35v171,-1,267,-80,267,-249v0,-132,-82,-228,-191,-270r-149,-57v-209,-78,-398,-157,-398,-430v0,-189,120,-301,264,-358v168,-67,371,-7,482,71r41,-68r80,0r8,471r-81,0v-59,-204,-121,-410,-378,-416v-120,-3,-230,93,-229,210v3,261,268,282,448,367v155,73,300,158,300,384v0,252,-217,438,-480,431r0,71v123,0,230,32,230,149v0,182,-201,193,-399,196r0,-72","w":1149},"\u015f":{"d":"270,372v107,-5,250,13,255,-90v4,-69,-100,-73,-165,-75r0,-189v-77,-15,-136,-43,-182,-80r-20,65r-75,0r-10,-343r69,0v43,144,133,278,313,289v148,9,249,-115,183,-241v-73,-138,-321,-124,-439,-227v-53,-47,-100,-109,-100,-206v0,-170,146,-289,331,-289v76,0,169,24,217,51r23,-52r72,0r15,317r-69,0v-24,-128,-117,-235,-260,-239v-126,-4,-219,103,-160,215v59,111,242,115,358,177v102,55,180,112,182,260v1,190,-168,315,-369,310r0,74v123,0,230,32,230,149v0,182,-201,193,-399,196r0,-72","w":885},"\u0106":{"d":"1289,-359v-100,249,-259,392,-566,392v-309,0,-497,-186,-592,-423v-70,-176,-70,-436,-1,-614v97,-252,294,-446,624,-446v150,0,254,41,352,99r41,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-388,-452v-335,0,-449,300,-449,655v0,278,106,481,285,582v58,33,123,48,195,48v233,0,349,-143,417,-315xm822,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1315},"\u0107":{"d":"925,-230v-72,134,-216,253,-397,256v-294,4,-461,-220,-456,-523v4,-234,111,-390,275,-473v203,-103,529,-24,521,215v-2,67,-31,127,-103,127v-68,0,-121,-40,-124,-97v-2,-48,23,-125,26,-162v-34,-61,-153,-66,-221,-31v-117,61,-168,220,-168,413v0,219,102,421,299,421v154,0,216,-80,284,-188xm639,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":930},"\u010c":{"d":"1289,-359v-100,249,-259,392,-566,392v-309,0,-497,-186,-592,-423v-70,-176,-70,-436,-1,-614v97,-252,294,-446,624,-446v150,0,254,41,352,99r41,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-388,-452v-335,0,-449,300,-449,655v0,278,106,481,285,582v58,33,123,48,195,48v233,0,349,-143,417,-315xm1075,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1315},"\u010d":{"d":"925,-230v-72,134,-216,253,-397,256v-294,4,-461,-220,-456,-523v4,-234,111,-390,275,-473v203,-103,529,-24,521,215v-2,67,-31,127,-103,127v-68,0,-121,-40,-124,-97v-2,-48,23,-125,26,-162v-34,-61,-153,-66,-221,-31v-117,61,-168,220,-168,413v0,219,102,421,299,421v154,0,216,-80,284,-188xm847,-1510r-239,351v-26,31,-25,41,-84,41v-60,0,-67,-11,-90,-45r-237,-347r48,-32r275,273r279,-273","w":930},"\u0111":{"d":"792,-1294v6,-145,-103,-158,-232,-169r0,-62r403,-23r15,15r0,278r217,0r0,85r-217,0r0,967v-2,96,76,122,174,120r0,65r-344,22r-15,-14r0,-92r-8,-2v-86,105,-288,177,-449,94v-160,-82,-264,-247,-264,-485v0,-236,119,-396,288,-478v134,-65,322,-40,431,22r0,-219r-361,0r0,-85r362,0r0,-39xm570,-79v107,0,172,-58,221,-112r0,-577v-34,-93,-103,-169,-230,-169v-215,0,-276,220,-280,454v-3,175,52,300,159,370v36,23,80,34,130,34","w":1176},"\u00af":{"d":"1322,-1603r-1327,0r0,-101r1327,0r0,101","w":1317},"\u00b7":{"d":"288,-696v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":572},"\u0102":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0xm698,-1678v157,0,223,-69,263,-189r55,16v-33,192,-114,321,-318,321v-197,0,-289,-133,-318,-321r55,-16v40,120,106,189,263,189","w":1374},"\u0103":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm494,-1277v165,0,220,-104,258,-230r55,12v-33,215,-103,368,-313,368v-205,0,-284,-163,-313,-368r55,-12v41,124,90,230,258,230","w":1032},"\u0104":{"d":"940,250v0,-117,84,-186,174,-250r-284,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-13,44,-23,73,-23,114v0,66,127,83,205,88r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-230,0v-56,55,-92,114,-93,217v-1,126,94,156,224,155r0,72r-115,0v-151,2,-267,-60,-267,-194xm849,-580r-215,-550r-211,550r426,0","w":1374},"\u0105":{"d":"815,444v-151,2,-267,-60,-267,-194v0,-123,88,-190,184,-257v-41,-27,-62,-59,-73,-116r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325r-6,495v-2,96,67,118,169,112r0,64v-67,25,-134,49,-219,32v-48,54,-81,106,-81,203v-1,126,94,156,224,155r0,72r-115,0xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110","w":1032},"\u010e":{"d":"288,-1213v7,-106,-96,-125,-186,-135r0,-71r620,0v323,10,551,153,664,379v89,177,95,476,3,653v-124,239,-363,387,-707,387r-588,0r0,-71v31,0,118,-9,137,-18v38,-17,56,-49,57,-100r0,-1024xm717,-82v359,0,495,-252,495,-620v0,-294,-118,-490,-318,-589v-108,-54,-245,-48,-393,-43r0,1091v2,131,79,161,216,161xm1036,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1534},"\u010f":{"d":"360,-973v134,-65,322,-40,431,22r0,-343v-2,-93,-43,-144,-129,-156v-32,-4,-65,-10,-102,-13r0,-62r403,-23r15,15r0,1330v-2,96,76,122,174,120r0,65r-344,22r-15,-14r0,-92r-8,-2v-86,105,-288,177,-449,94v-160,-82,-264,-247,-264,-485v0,-236,119,-396,288,-478xm570,-79v107,0,172,-58,221,-112r0,-577v-34,-93,-103,-169,-230,-169v-215,0,-276,220,-280,454v-3,175,52,300,159,370v36,23,80,34,130,34xm1225,-1544v161,0,191,202,131,325v-47,96,-147,166,-234,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":1362},"\u0110":{"d":"288,-1213v7,-106,-96,-125,-186,-135r0,-71r620,0v323,10,551,153,664,379v89,177,95,476,3,653v-124,239,-363,387,-707,387r-588,0r0,-71v31,0,118,-9,137,-18v38,-17,56,-49,57,-100r0,-512r-186,0r0,-98r186,0r0,-414xm717,-82v359,0,495,-252,495,-620v0,-294,-118,-490,-318,-589v-108,-54,-245,-48,-393,-43r0,535r301,0r0,98r-301,0r0,458v2,131,79,161,216,161","w":1534},"\u0118":{"d":"820,250v0,-117,84,-186,174,-250r-908,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-193,0v-56,55,-92,114,-93,217v-1,126,94,156,224,155r0,72r-115,0v-151,2,-267,-60,-267,-194","w":1338},"\u0119":{"d":"736,444v-151,2,-267,-60,-267,-194v0,-105,68,-168,146,-230v-350,34,-543,-175,-543,-521v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440v154,0,209,-71,278,-191r70,43v-45,86,-113,162,-198,207v-69,59,-122,123,-123,242v-1,126,94,156,224,155r0,72r-115,0xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0","w":990},"\u011a":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm1018,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1338},"\u011b":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm847,-1510r-239,351v-26,31,-25,41,-84,41v-60,0,-67,-11,-90,-45r-237,-347r48,-32r275,273r279,-273","w":990},"\u0139":{"d":"288,-1209v7,-108,-103,-123,-190,-139r0,-71r599,0r0,71v-65,9,-163,14,-183,67v-7,20,-13,40,-13,62r0,953v-1,111,6,174,105,182v120,10,322,20,389,-47v50,-50,146,-218,171,-291r71,0r-30,422r-1109,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1016xm734,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1236},"\u013a":{"d":"387,-180v-1,87,68,106,147,114r0,66r-481,0r0,-66v80,-3,148,-14,148,-102r0,-1013v-8,-81,-38,-126,-122,-139v-32,-5,-58,-11,-77,-12r0,-64r371,-23r14,15r0,1224xm418,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":586},"\u013d":{"d":"288,-1209v7,-108,-103,-123,-190,-139r0,-71r599,0r0,71v-65,9,-163,14,-183,67v-7,20,-13,40,-13,62r0,953v-1,111,6,174,105,182v120,10,322,20,389,-47v50,-50,146,-218,171,-291r71,0r-30,422r-1109,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1016xm982,-1433v161,0,191,202,131,325v-47,96,-147,166,-234,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":1236},"\u013e":{"d":"387,-180v-1,87,68,106,147,114r0,66r-481,0r0,-66v80,-3,148,-14,148,-102r0,-1142v-8,-81,-38,-126,-122,-139v-32,-5,-58,-11,-77,-12r0,-64r371,-23r14,15r0,1353xm634,-1544v161,0,191,202,131,325v-47,96,-147,166,-234,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":771},"\u013f":{"d":"288,-1209v7,-108,-103,-123,-190,-139r0,-71r599,0r0,71v-65,9,-163,14,-183,67v-7,20,-13,40,-13,62r0,953v-1,111,6,174,105,182v120,10,322,20,389,-47v50,-50,146,-218,171,-291r71,0r-30,422r-1109,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1016xm1014,-861v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":1236},"\u0140":{"d":"387,-180v-1,87,68,106,147,114r0,66r-481,0r0,-66v80,-3,148,-14,148,-102r0,-1142v-8,-81,-38,-126,-122,-139v-32,-5,-58,-11,-77,-12r0,-64r371,-23r14,15r0,1353xm724,-807v71,0,135,64,135,135v0,71,-64,133,-135,133v-71,0,-135,-62,-135,-133v0,-71,64,-135,135,-135","w":861},"\u0143":{"d":"1554,-1348v-38,1,-146,29,-169,47v-58,47,-61,157,-61,276r0,1039r-87,0r-860,-1161r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r798,1082r0,-675v-1,-130,-6,-228,-62,-279v-26,-24,-144,-55,-188,-57r0,-71r577,0r0,71xm944,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1571},"\u0144":{"d":"1018,-176v-1,86,63,103,143,110r0,66r-483,0r0,-66v81,-3,151,-13,151,-102r0,-507v4,-123,-63,-219,-170,-219v-126,0,-211,69,-256,149r0,567v-1,87,73,104,152,112r0,66r-483,0r0,-66v80,-3,145,-15,145,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,139r5,0v86,-83,163,-168,331,-168v192,0,279,133,279,324r0,513xm757,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1210},"\u0147":{"d":"1554,-1348v-38,1,-146,29,-169,47v-58,47,-61,157,-61,276r0,1039r-87,0r-860,-1161r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r798,1082r0,-675v-1,-130,-6,-228,-62,-279v-26,-24,-144,-55,-188,-57r0,-71r577,0r0,71xm1106,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1571},"\u0148":{"d":"1018,-176v-1,86,63,103,143,110r0,66r-483,0r0,-66v81,-3,151,-13,151,-102r0,-507v4,-123,-63,-219,-170,-219v-126,0,-211,69,-256,149r0,567v-1,87,73,104,152,112r0,66r-483,0r0,-66v80,-3,145,-15,145,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,139r5,0v86,-83,163,-168,331,-168v192,0,279,133,279,324r0,513xm934,-1510r-239,351v-26,31,-25,41,-84,41v-60,0,-67,-11,-90,-45r-237,-347r48,-32r275,273r279,-273","w":1210},"\u0150":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm776,-1846v58,-47,144,-5,142,63v-1,60,-39,83,-82,105r-109,56v-29,15,-93,54,-192,115r-29,-36r119,-136v48,-54,96,-122,151,-167xm1165,-1846v58,-48,144,-5,142,63v-1,60,-39,82,-82,105v-124,65,-144,70,-306,171r-29,-36r125,-139v49,-53,96,-119,150,-164","w":1524},"\u0151":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm886,-1518v49,-47,144,-8,142,58v-2,61,-25,81,-63,113r-279,237r-35,-28r112,-184v37,-60,77,-153,123,-196xm575,-1538v65,0,104,80,69,137v-30,50,-98,100,-144,141r-168,150r-37,-28v51,-85,87,-151,111,-195v32,-57,66,-146,108,-185v15,-14,36,-20,61,-20","w":1104},"\u0154":{"d":"1201,-1081v-1,239,-159,325,-346,382r345,465v72,97,133,152,280,163r0,71r-382,0r-230,-344v0,0,-142,-196,-222,-299r-145,0r0,450v0,81,38,107,121,115v30,3,55,6,76,7r0,71r-600,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1026v-1,-54,-12,-87,-57,-103v-30,-11,-96,-23,-133,-26r0,-71r655,0v192,1,339,58,411,183v25,43,37,94,37,155xm632,-729v186,1,322,-135,322,-329v0,-173,-107,-282,-283,-280r-170,0r0,609r131,0xm844,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1437},"\u0155":{"d":"685,-1010v85,-4,143,63,142,151v-1,66,-33,130,-102,130v-65,0,-113,-39,-115,-93v0,-29,6,-51,10,-76v-88,6,-176,74,-217,146r0,574v-6,102,101,103,189,112r0,66r-520,0r0,-66v80,-3,145,-15,145,-102r0,-609v-3,-88,-63,-133,-156,-134r0,-65r328,-22r14,14r0,139r5,0v63,-85,160,-160,277,-165xm614,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":839},"\u0158":{"d":"1201,-1081v-1,239,-159,325,-346,382r345,465v72,97,133,152,280,163r0,71r-382,0r-230,-344v0,0,-142,-196,-222,-299r-145,0r0,450v0,81,38,107,121,115v30,3,55,6,76,7r0,71r-600,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1026v-1,-54,-12,-87,-57,-103v-30,-11,-96,-23,-133,-26r0,-71r655,0v192,1,339,58,411,183v25,43,37,94,37,155xm632,-729v186,1,322,-135,322,-329v0,-173,-107,-282,-283,-280r-170,0r0,609r131,0xm984,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1437},"\u0159":{"d":"685,-1010v85,-4,143,63,142,151v-1,66,-33,130,-102,130v-65,0,-113,-39,-115,-93v0,-29,6,-51,10,-76v-88,6,-176,74,-217,146r0,574v-6,102,101,103,189,112r0,66r-520,0r0,-66v80,-3,145,-15,145,-102r0,-609v-3,-88,-63,-133,-156,-134r0,-65r328,-22r14,14r0,139r5,0v63,-85,160,-160,277,-165xm748,-1510r-239,351v-26,31,-25,41,-84,41v-60,0,-67,-11,-90,-45r-237,-347r48,-32r275,273r279,-273","w":839},"\u015a":{"d":"550,-1364v-120,-3,-230,93,-229,210v3,261,268,282,448,367v155,73,300,158,300,384v0,253,-224,432,-484,432v-132,0,-270,-50,-354,-101r-43,73r-80,0r-14,-486r81,0v48,174,123,317,269,392v46,23,100,35,161,35v171,-1,267,-80,267,-249v0,-132,-82,-228,-191,-270r-149,-57v-209,-78,-398,-157,-398,-430v0,-189,120,-301,264,-358v168,-67,371,-7,482,71r41,-68r80,0r8,471r-81,0v-59,-204,-121,-410,-378,-416xm700,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1149},"\u015b":{"d":"428,-937v-126,-4,-219,103,-160,215v59,111,242,115,358,177v102,55,180,112,182,260v2,190,-167,311,-368,311v-99,0,-214,-50,-262,-88r-20,65r-75,0r-10,-343r69,0v43,144,133,278,313,289v148,9,249,-115,183,-241v-73,-138,-321,-124,-439,-227v-53,-47,-100,-109,-100,-206v0,-170,146,-289,331,-289v76,0,169,24,217,51r23,-52r72,0r15,317r-69,0v-24,-128,-117,-235,-260,-239xm611,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":885},"\u021a":{"d":"1251,-1034r-69,0v-28,-95,-89,-195,-150,-260v-61,-65,-172,-39,-292,-47r0,1135v6,86,47,106,138,122v39,7,69,12,90,13r0,71r-670,0r0,-71v32,-3,141,-13,165,-23v42,-18,64,-46,64,-103r0,-1144r-135,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1236,0r0,385xm649,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1267},"\u021b":{"d":"539,-100v30,0,121,-7,142,-16r0,73v-87,34,-146,64,-265,64v-163,0,-225,-83,-225,-239r0,-668r-178,0r0,-96r182,0r0,-307r182,0r0,307r283,0r0,96r-281,0r0,551v-3,143,18,239,160,235xm429,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":707},"\u0164":{"d":"1251,-1034r-69,0v-28,-95,-89,-195,-150,-260v-61,-65,-172,-39,-292,-47r0,1135v6,86,47,106,138,122v39,7,69,12,90,13r0,71r-670,0r0,-71v32,-3,141,-13,165,-23v42,-18,64,-46,64,-103r0,-1144r-135,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1236,0r0,385xm959,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214","w":1267},"\u0165":{"d":"539,-100v30,0,121,-7,142,-16r0,73v-87,34,-146,64,-265,64v-163,0,-225,-83,-225,-239r0,-668r-178,0r0,-96r182,0r0,-307r182,0r0,307r283,0r0,96r-281,0r0,551v-3,143,18,239,160,235xm635,-1558v151,0,196,180,131,298v-50,89,-140,147,-234,189r-34,-59v88,-49,182,-85,196,-208v-99,7,-178,-20,-178,-110v1,-54,54,-110,119,-110","w":707},"\u016e":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm808,-1864v141,0,258,84,258,222v0,136,-114,223,-258,223v-147,0,-258,-83,-258,-223v0,-133,122,-222,258,-222xm808,-1483v88,0,133,-69,132,-159v0,-87,-44,-158,-132,-158v-87,0,-132,68,-132,158v0,88,45,159,132,159","w":1549},"\u016f":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm566,-1559v141,0,258,84,258,222v0,136,-114,223,-258,223v-147,0,-258,-83,-258,-223v0,-133,122,-222,258,-222xm566,-1178v88,0,133,-69,132,-159v0,-87,-44,-158,-132,-158v-87,0,-132,68,-132,158v0,88,45,159,132,159","w":1178},"\u0170":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm758,-1846v58,-47,144,-5,142,63v-1,60,-39,83,-82,105r-109,56v-29,15,-93,54,-192,115r-29,-36r119,-136v48,-54,96,-122,151,-167xm1147,-1846v58,-48,144,-5,142,63v-1,60,-39,82,-82,105v-124,65,-144,70,-306,171r-29,-36r125,-139v49,-53,96,-119,150,-164","w":1549},"\u0171":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm884,-1518v49,-47,144,-8,142,58v-2,61,-25,81,-63,113r-279,237r-35,-28r112,-184v37,-60,77,-153,123,-196xm573,-1538v65,0,104,80,69,137v-30,50,-98,100,-144,141r-168,150r-37,-28v51,-85,87,-151,111,-195v32,-57,66,-146,108,-185v15,-14,36,-20,61,-20","w":1178},"\u0179":{"d":"1214,-443r-47,443r-1140,0r0,-35r893,-1305r-422,2v-114,5,-139,29,-220,117v-57,62,-96,132,-124,203r-70,0r43,-401r1063,0r0,35r-893,1305r337,0v93,-1,262,-11,306,-53v76,-72,164,-212,204,-311r70,0xm790,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1232},"\u017a":{"d":"280,-81r256,1v47,-5,145,6,172,-32v42,-59,61,-155,85,-236r60,0r0,348r-798,0r0,-53r558,-852v-123,7,-272,-19,-364,23v-55,25,-76,115,-95,199r-61,0r0,-303r754,0r0,41xm648,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":909},"\u017b":{"d":"1214,-443r-47,443r-1140,0r0,-35r893,-1305r-422,2v-114,5,-139,29,-220,117v-57,62,-96,132,-124,203r-70,0r43,-401r1063,0r0,35r-893,1305r337,0v93,-1,262,-11,306,-53v76,-72,164,-212,204,-311r70,0xm635,-1864v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":1232},"\u017c":{"d":"280,-81r256,1v47,-5,145,6,172,-32v42,-59,61,-155,85,-236r60,0r0,348r-798,0r0,-53r558,-852v-123,7,-272,-19,-364,23v-55,25,-76,115,-95,199r-61,0r0,-303r754,0r0,41xm464,-1513v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":909},"\u0393":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1093,0r0,397r-75,0v-24,-99,-83,-202,-144,-269v-52,-57,-154,-49,-255,-49r-204,0r0,1138v-4,111,122,121,222,131r0,71r-637,0r0,-71v30,-2,124,-9,145,-18v38,-17,56,-49,57,-100r0,-1024","w":1195},"\u0398":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v251,0,368,-184,417,-395v56,-245,18,-582,-88,-734v-71,-102,-169,-180,-329,-180v-260,0,-373,187,-418,409v-70,342,-2,725,222,851v56,31,120,49,196,49xm1046,-481r-66,0v-9,-50,-20,-89,-41,-121v-33,-48,-249,-34,-312,-24v-67,11,-66,81,-83,145r-66,0r0,-455r66,0v9,50,16,88,41,119v32,40,81,31,177,31v91,0,142,4,177,-31v23,-35,32,-72,41,-119r66,0r0,455","w":1524},"\u03a6":{"d":"681,-1132v-309,-18,-408,233,-367,532v14,101,96,225,184,262v54,23,114,38,183,38r0,-832xm889,-300v299,2,424,-259,360,-558v-37,-172,-140,-284,-360,-274r0,832xm1081,-1363v-92,6,-200,11,-193,115r0,37v291,-3,495,93,580,291v54,125,42,291,-14,406v-94,192,-288,291,-566,295r0,45v-9,109,106,107,204,114r0,70r-601,0r0,-70v28,-3,112,-11,133,-19v50,-20,62,-68,58,-140v-278,-2,-476,-104,-568,-295v-54,-112,-66,-284,-14,-406v83,-194,292,-295,582,-291v17,-128,-95,-139,-193,-152r0,-70r592,0r0,70","w":1570},"\u03b1":{"d":"1069,-986v-16,145,-54,353,-85,520v2,98,14,180,34,246v20,66,46,107,78,126v21,13,96,10,133,11r0,64v-52,19,-136,40,-195,40v-137,0,-165,-80,-187,-222v-76,115,-165,230,-353,230v-209,0,-329,-143,-388,-309v-45,-126,-47,-291,2,-417v66,-172,202,-316,426,-316v168,0,277,90,324,218r25,-191r186,0xm281,-482v0,216,68,404,279,404v81,0,145,-37,190,-110v45,-73,78,-184,78,-335v0,-155,-50,-309,-152,-377v-111,-75,-248,-33,-318,85v-49,82,-77,192,-77,333","w":1224},"\u03b4":{"d":"587,-1475v-115,0,-227,78,-227,183v0,55,25,99,68,138v66,61,327,186,424,268v115,97,183,203,181,404v-2,236,-121,396,-285,473v-112,52,-276,51,-392,0v-171,-76,-286,-231,-286,-468v0,-225,108,-356,260,-433v52,-27,109,-43,168,-52r0,-6v-117,-43,-203,-87,-256,-134v-75,-65,-108,-171,-58,-270v60,-119,209,-179,400,-178v115,0,206,20,275,61v69,41,103,94,103,161v0,72,-29,126,-102,126v-69,0,-117,-35,-120,-92v-2,-48,17,-104,23,-140v-36,-25,-103,-41,-176,-41xm571,-903v-347,-9,-377,660,-139,822v67,46,171,46,238,1v107,-71,155,-217,155,-394v0,-230,-81,-374,-254,-429","w":1104},"\u03b5":{"d":"536,-74v180,-3,259,-87,334,-221r70,43v-89,205,-306,328,-588,264v-141,-32,-268,-108,-268,-275v0,-170,124,-240,283,-254r0,-10v-139,-27,-249,-81,-249,-232v0,-128,96,-190,209,-229v52,-17,114,-25,186,-25v196,-2,363,65,363,231v0,65,-28,123,-99,123v-68,0,-121,-37,-122,-93v-1,-53,13,-95,20,-142v-28,-24,-104,-43,-160,-43v-111,0,-195,75,-195,176v0,147,61,199,213,200r83,0r0,93r-108,0v-140,0,-218,59,-219,192v-2,137,109,204,247,202","w":959},"\u03c3":{"d":"555,-46v161,0,228,-140,255,-277v41,-208,9,-482,-125,-569v-67,-43,-199,-42,-265,4v-202,139,-182,679,8,806v35,23,76,36,127,36xm356,-975v116,-52,278,-48,401,-10r395,0r0,122r-286,0r0,5v99,82,167,200,167,368v0,234,-115,400,-280,478v-107,52,-273,58,-390,6v-173,-76,-293,-237,-293,-483v0,-250,108,-407,286,-486","w":1173},"\u03c4":{"d":"45,-661v-1,-66,-17,-132,6,-188v31,-76,103,-136,214,-136r638,0r0,122r-339,0r0,530v-2,140,2,235,146,235v32,0,110,-9,132,-18r0,73v-88,34,-136,64,-255,64v-157,0,-211,-85,-211,-239r0,-645r-90,0v-128,1,-167,84,-178,202r-63,0","w":923},"\u03c6":{"d":"618,-773v-3,-220,254,-288,448,-211v172,68,289,213,289,459v0,273,-150,434,-349,513v-66,26,-134,39,-202,41r0,415r-186,0r0,-415v-314,-8,-550,-207,-548,-518v2,-292,165,-459,423,-518r15,81v-161,60,-229,204,-229,437v0,241,119,435,339,441r0,-725xm804,-48v237,-15,343,-224,342,-485v0,-125,-21,-223,-64,-295v-43,-72,-98,-108,-163,-108v-65,0,-115,48,-115,117r0,771","w":1425},"\u2017":{"d":"1322,222r-1327,0r0,-101r1327,0r0,101xm1322,444r-1327,0r0,-101r1327,0r0,101","w":1317},"\u203c":{"d":"344,-1456v74,0,130,60,128,135v0,33,-11,145,-33,336v-22,191,-41,375,-58,553r-78,0v-15,-178,-33,-362,-55,-553v-22,-191,-32,-303,-32,-336v-1,-74,54,-135,128,-135xm344,-252v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137xm844,-1456v74,0,130,60,128,135v0,33,-11,145,-33,336v-22,191,-41,375,-58,553r-78,0v-15,-178,-33,-362,-55,-553v-22,-191,-32,-303,-32,-336v-1,-74,54,-135,128,-135xm844,-252v73,0,137,65,137,137v0,73,-65,135,-137,135v-73,0,-137,-62,-137,-135v0,-73,65,-137,137,-137","w":1178},"\u207f":{"d":"885,-783v-2,69,55,83,117,89r0,63r-404,0r0,-63v67,-2,124,-9,124,-83r0,-393v3,-100,-52,-176,-139,-176v-104,0,-173,55,-211,119r0,442v0,71,59,85,125,91r0,63r-404,0r0,-63v64,-3,119,-11,119,-83r0,-476v-3,-72,-53,-106,-128,-107r0,-62r276,-19r12,11r0,113v23,-10,35,-31,53,-47v47,-43,132,-88,226,-89v157,-1,234,108,234,263r0,407","w":1076},"\u20a7":{"d":"2020,-918v-123,-5,-211,101,-156,210v39,77,133,92,228,124v111,37,189,78,232,126v43,48,65,108,65,179v0,189,-167,304,-358,304v-95,0,-209,-47,-255,-86r-20,64r-73,0r-1,-31v-71,28,-108,49,-204,49v-161,0,-225,-80,-225,-239r0,-648r-180,0v-94,171,-302,249,-576,233r0,440v1,81,40,107,123,115v30,3,58,6,83,7r0,71r-605,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1024v-1,-54,-12,-89,-57,-105v-42,-15,-94,-22,-140,-26r0,-71r585,0v281,-6,506,166,434,457r147,0r0,-287r182,0r0,287r254,0r0,96r-252,0r0,531v-3,143,-3,245,140,241v23,0,78,-6,99,-10r-7,-229r68,0v26,106,96,207,183,255v33,19,74,28,121,28v120,1,193,-53,194,-165v0,-45,-17,-79,-46,-109v-66,-66,-311,-102,-397,-184v-49,-47,-96,-109,-96,-203v0,-173,150,-283,322,-283v75,0,163,24,210,50r22,-51r71,0r14,311r-67,0v-26,-133,-109,-228,-252,-234xm497,-720v244,14,385,-88,385,-304v0,-195,-91,-315,-294,-313r-91,0r0,617","w":2467},"\u0132":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm1351,-1213v7,-114,-118,-122,-213,-135r0,-71r626,0r0,71v-67,7,-165,10,-186,64v-8,19,-12,39,-12,61r0,841v-7,183,-110,317,-244,378v-54,25,-117,38,-187,38v-210,3,-366,-130,-366,-338v0,-87,47,-173,137,-173v102,0,160,90,120,186v-25,60,-70,107,-90,167v33,49,94,85,185,83v211,-5,230,-204,230,-421r0,-751","w":1818},"\u0133":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm295,-1515v72,0,130,60,130,128v0,73,-58,142,-130,142v-66,0,-126,-67,-126,-133v0,-69,58,-137,126,-137xm423,325v-1,-57,34,-110,94,-108v95,4,120,83,161,143v51,0,86,-31,108,-92v22,-61,33,-160,33,-295r0,-742v-12,-81,-39,-119,-133,-131v-41,-5,-70,-12,-91,-14r0,-62r396,-22r14,14r0,924v-2,224,-96,391,-245,468v-111,58,-334,52,-337,-83xm890,-1516v72,0,130,60,130,128v0,73,-58,142,-130,142v-66,0,-126,-67,-126,-133v0,-69,58,-137,126,-137","w":1172},"\u0149":{"d":"1129,-176v-1,86,63,103,143,110r0,66r-483,0r0,-66v81,-3,151,-13,151,-102r0,-507v4,-123,-63,-219,-170,-219v-126,0,-211,69,-256,149r0,567v-1,87,73,104,152,112r0,66r-483,0r0,-66v80,-3,145,-15,145,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,139r5,0v86,-83,163,-168,331,-168v192,0,279,133,279,324r0,513xm117,-1529v161,0,191,202,131,325v-47,96,-147,166,-234,215r-34,-59v94,-59,190,-105,199,-246v-106,9,-182,-25,-181,-121v0,-58,52,-114,119,-114","w":1320},"\u2032":{"d":"455,-1456v81,-4,131,81,93,160v-35,73,-77,131,-118,198r-162,261r-72,0r110,-462v23,-97,53,-153,149,-157","w":658},"\u2033":{"d":"455,-1456v81,-4,131,81,93,160v-35,73,-77,131,-118,198r-162,261r-72,0r110,-462v23,-97,53,-153,149,-157xm854,-1456v81,-4,132,81,93,160v-36,73,-78,131,-119,198r-161,261r-72,0r110,-462v23,-97,53,-153,149,-157","w":1059},"\u2105":{"d":"496,-805v106,-1,160,-68,207,-139r63,40v-65,101,-157,191,-307,193v-220,2,-351,-152,-351,-374v0,-201,160,-368,361,-368v141,0,253,64,253,187v0,54,-30,95,-89,95v-54,0,-96,-31,-98,-74v-2,-43,17,-78,24,-110v-13,-21,-58,-32,-93,-30v-144,9,-185,135,-188,295v-2,149,77,286,218,285xm1226,-708v207,0,339,158,339,370v0,221,-132,370,-340,370v-208,0,-339,-149,-339,-370v0,-213,131,-370,340,-370xm1225,-42v130,0,171,-147,171,-296v0,-147,-41,-296,-170,-296v-131,0,-171,149,-171,296v0,150,40,296,170,296xm1499,-1424r-1179,1424r-138,0r1176,-1424r141,0","w":1674},"\u2113":{"d":"398,-1548v151,0,216,128,211,293v-8,259,-118,395,-288,555r0,488v-2,90,22,134,85,134v76,0,105,-29,153,-76r36,55v-69,73,-138,123,-258,125v-124,2,-202,-94,-202,-226r0,-339r-64,57r-71,-77r135,-119r0,-558v-6,-182,102,-312,263,-312xm321,-841v104,-108,176,-215,176,-401v0,-71,-9,-122,-26,-154v-17,-32,-38,-48,-63,-48v-64,0,-87,78,-87,167r0,436","w":662},"\u25a1":{"d":"146,-944r944,0r0,944r-944,0r0,-944xm222,-868r0,792r792,0r0,-792r-792,0","w":1237},"\u25aa":{"d":"594,-908r0,463r-463,0r0,-463r463,0","w":726},"\u25ab":{"d":"594,-908r0,463r-463,0r0,-463r463,0xm518,-832r-311,0r0,311r311,0r0,-311","w":726},"\u25cf":{"d":"618,-136v-237,0,-441,-204,-441,-440v0,-238,204,-441,441,-441v237,0,440,204,440,441v0,236,-204,440,-440,440","w":1237},"\u25e6":{"d":"112,-677v0,-135,115,-251,251,-251v135,0,251,116,251,251v0,135,-116,251,-251,251v-135,0,-251,-116,-251,-251xm538,-677v0,-94,-81,-175,-175,-175v-94,0,-175,81,-175,175v0,94,81,175,175,175v94,0,175,-81,175,-175","w":726},"\u0100":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0xm1043,-1645r-686,0r0,-128r686,0r0,128","w":1374},"\u0101":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm846,-1291r-686,0r0,-128r686,0r0,128","w":1032},"\u0108":{"d":"1289,-359v-100,249,-259,392,-566,392v-309,0,-497,-186,-592,-423v-70,-176,-70,-436,-1,-614v97,-252,294,-446,624,-446v150,0,254,41,352,99r41,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-388,-452v-335,0,-449,300,-449,655v0,278,106,481,285,582v58,33,123,48,195,48v233,0,349,-143,417,-315xm1062,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1315},"\u0109":{"d":"925,-230v-72,134,-216,253,-397,256v-294,4,-461,-220,-456,-523v4,-234,111,-390,275,-473v203,-103,529,-24,521,215v-2,67,-31,127,-103,127v-68,0,-121,-40,-124,-97v-2,-48,23,-125,26,-162v-34,-61,-153,-66,-221,-31v-117,61,-168,220,-168,413v0,219,102,421,299,421v154,0,216,-80,284,-188xm847,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":930},"\u010a":{"d":"1289,-359v-100,249,-259,392,-566,392v-309,0,-497,-186,-592,-423v-70,-176,-70,-436,-1,-614v97,-252,294,-446,624,-446v150,0,254,41,352,99r41,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-388,-452v-335,0,-449,300,-449,655v0,278,106,481,285,582v58,33,123,48,195,48v233,0,349,-143,417,-315xm747,-1864v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":1315},"\u010b":{"d":"925,-230v-72,134,-216,253,-397,256v-294,4,-461,-220,-456,-523v4,-234,111,-390,275,-473v203,-103,529,-24,521,215v-2,67,-31,127,-103,127v-68,0,-121,-40,-124,-97v-2,-48,23,-125,26,-162v-34,-61,-153,-66,-221,-31v-117,61,-168,220,-168,413v0,219,102,421,299,421v154,0,216,-80,284,-188xm516,-1513v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":930},"\u0112":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm1062,-1657r-686,0r0,-128r686,0r0,128","w":1338},"\u0113":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm862,-1291r-686,0r0,-128r686,0r0,128","w":990},"\u0114":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm719,-1678v157,0,223,-69,263,-189r55,16v-33,192,-114,321,-318,321v-197,0,-289,-133,-318,-321r55,-16v40,120,106,189,263,189","w":1338},"\u0115":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm519,-1277v165,0,220,-104,258,-230r55,12v-33,215,-103,368,-313,368v-205,0,-284,-163,-313,-368r55,-12v41,124,90,230,258,230","w":990},"\u0116":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm673,-1864v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":1338},"\u0117":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm517,-1513v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":990},"\u011c":{"d":"1205,-923v-61,-221,-144,-442,-420,-442v-254,0,-372,168,-431,380v-44,156,-45,371,0,531v63,219,193,390,460,398v102,3,216,-40,263,-84v13,-85,9,-180,9,-273v0,-60,-14,-102,-59,-122v-36,-16,-132,-29,-178,-32r0,-73r622,0r0,73v-63,9,-152,18,-173,71v-18,45,-12,113,-12,174v0,80,1,134,2,162v1,28,2,51,3,69v-217,99,-528,181,-786,73v-252,-105,-427,-330,-427,-680v0,-353,177,-586,432,-696v87,-38,181,-56,281,-56v156,0,271,44,366,99r41,-68r80,0r9,496r-82,0xm1103,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1485},"\u011d":{"d":"365,-373v-30,11,-75,40,-73,86v4,101,119,88,219,96v112,9,233,-6,321,34v96,43,171,119,171,260v0,184,-131,272,-285,315v-155,44,-462,28,-565,-40v-72,-47,-111,-107,-111,-191v0,-146,135,-221,284,-225r0,-14v-86,-28,-175,-62,-175,-174v0,-93,70,-139,151,-174r0,-15v-111,-52,-200,-134,-202,-279v-3,-193,170,-324,372,-320v67,1,124,16,180,32r344,0r0,96r-232,0r0,6v43,48,71,117,73,197v5,173,-175,315,-351,310r-121,0xm468,-442v122,2,179,-117,179,-245v0,-139,-54,-256,-181,-256v-134,0,-170,114,-172,250v-2,129,59,249,174,251xm523,368v179,0,316,-61,316,-228v0,-125,-71,-147,-220,-150v-58,-1,-125,-5,-202,-5v-127,0,-199,72,-199,198v0,146,143,185,305,185xm810,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":1043},"\u0120":{"d":"1205,-923v-61,-221,-144,-442,-420,-442v-254,0,-372,168,-431,380v-44,156,-45,371,0,531v63,219,193,390,460,398v102,3,216,-40,263,-84v13,-85,9,-180,9,-273v0,-60,-14,-102,-59,-122v-36,-16,-132,-29,-178,-32r0,-73r622,0r0,73v-63,9,-152,18,-173,71v-18,45,-12,113,-12,174v0,80,1,134,2,162v1,28,2,51,3,69v-217,99,-528,181,-786,73v-252,-105,-427,-330,-427,-680v0,-353,177,-586,432,-696v87,-38,181,-56,281,-56v156,0,271,44,366,99r41,-68r80,0r9,496r-82,0xm777,-1864v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":1485},"\u0121":{"d":"365,-373v-30,11,-75,40,-73,86v4,101,119,88,219,96v112,9,233,-6,321,34v96,43,171,119,171,260v0,184,-131,272,-285,315v-155,44,-462,28,-565,-40v-72,-47,-111,-107,-111,-191v0,-146,135,-221,284,-225r0,-14v-86,-28,-175,-62,-175,-174v0,-93,70,-139,151,-174r0,-15v-111,-52,-200,-134,-202,-279v-3,-193,170,-324,372,-320v67,1,124,16,180,32r344,0r0,96r-232,0r0,6v43,48,71,117,73,197v5,173,-175,315,-351,310r-121,0xm468,-442v122,2,179,-117,179,-245v0,-139,-54,-256,-181,-256v-134,0,-170,114,-172,250v-2,129,59,249,174,251xm523,368v179,0,316,-61,316,-228v0,-125,-71,-147,-220,-150v-58,-1,-125,-5,-202,-5v-127,0,-199,72,-199,198v0,146,143,185,305,185xm488,-1513v72,0,130,57,130,126v0,73,-58,140,-130,140v-67,0,-126,-63,-126,-131v0,-69,58,-135,126,-135","w":1043},"\u0122":{"d":"1205,-923v-61,-221,-144,-442,-420,-442v-254,0,-372,168,-431,380v-44,156,-45,371,0,531v63,219,193,390,460,398v102,3,216,-40,263,-84v13,-85,9,-180,9,-273v0,-60,-14,-102,-59,-122v-36,-16,-132,-29,-178,-32r0,-73r622,0r0,73v-63,9,-152,18,-173,71v-18,45,-12,113,-12,174v0,80,1,134,2,162v1,28,2,51,3,69v-217,99,-528,181,-786,73v-252,-105,-427,-330,-427,-680v0,-353,177,-586,432,-696v87,-38,181,-56,281,-56v156,0,271,44,366,99r41,-68r80,0r9,496r-82,0xm778,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1485},"\u0123":{"d":"365,-373v-30,11,-75,40,-73,86v4,101,119,88,219,96v112,9,233,-6,321,34v96,43,171,119,171,260v0,184,-131,272,-285,315v-155,44,-462,28,-565,-40v-72,-47,-111,-107,-111,-191v0,-146,135,-221,284,-225r0,-14v-86,-28,-175,-62,-175,-174v0,-93,70,-139,151,-174r0,-15v-111,-52,-200,-134,-202,-279v-3,-193,170,-324,372,-320v67,1,124,16,180,32r344,0r0,96r-232,0r0,6v43,48,71,117,73,197v5,173,-175,315,-351,310r-121,0xm468,-442v122,2,179,-117,179,-245v0,-139,-54,-256,-181,-256v-134,0,-170,114,-172,250v-2,129,59,249,174,251xm523,368v179,0,316,-61,316,-228v0,-125,-71,-147,-220,-150v-58,-1,-125,-5,-202,-5v-127,0,-199,72,-199,198v0,146,143,185,305,185xm493,-1114v-110,-3,-163,-73,-159,-188v6,-165,144,-237,261,-295r34,59v-86,47,-182,87,-195,206v100,-8,178,21,178,110v0,54,-54,110,-119,108","w":1043},"\u0124":{"d":"1381,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-505r-667,0r0,494v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,440r667,0r0,-430v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023xm1160,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1669},"\u0125":{"d":"999,-176v-1,86,65,103,144,110r0,66r-484,0r0,-66v81,-3,152,-12,152,-102r0,-507v4,-123,-63,-219,-170,-219v-125,0,-212,69,-256,149r0,567v-1,87,72,104,152,112r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-1019v-8,-76,-34,-131,-119,-137v-31,-2,-55,-7,-74,-8r0,-64r365,-23r14,15r0,559r4,0v81,-82,169,-168,336,-168v186,1,274,128,274,324r0,513xm930,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1192},"\u0126":{"d":"1381,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-505r-667,0r0,494v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-822r-186,0r0,-89r186,0r0,-113v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-156,14,-175,64v-19,49,-8,120,-11,184r667,0r0,-113v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-156,14,-175,64v-19,49,-8,120,-11,184r186,0r0,89r-186,0r0,811xm1168,-783r0,-228r-667,0r0,228r667,0","w":1669},"\u0127":{"d":"999,-176v-1,86,65,103,144,110r0,66r-484,0r0,-66v81,-3,152,-12,152,-102r0,-507v4,-123,-63,-219,-170,-219v-125,0,-212,69,-256,149r0,567v-1,87,72,104,152,112r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-1002r-228,0r0,-85r228,0v4,-107,-13,-191,-119,-199v-30,-2,-55,-6,-74,-7r0,-64r365,-23r14,15r0,278r351,0r0,85r-351,0r0,325r4,0v81,-82,169,-168,336,-168v186,1,274,128,274,324r0,513","w":1192},"\u0128":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm558,-1724v105,5,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-135,0,-174,-96,-290,-103v-92,-5,-101,81,-141,136r-58,-25v43,-131,156,-292,341,-227v67,24,106,83,187,87","w":798},"\u0129":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm391,-1224v-124,0,-153,-103,-259,-103v-87,0,-88,77,-126,136r-53,-25v28,-86,73,-169,143,-218v72,-50,181,-16,225,27v43,42,150,78,197,15v22,-29,31,-63,46,-98r56,23v-23,94,-75,172,-144,219v-24,16,-52,24,-85,24","w":600},"\u012a":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm721,-1657r-644,0r0,-128r644,0r0,128","w":798},"\u012b":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm560,-1291r-586,0r0,-128r586,0r0,128","w":600},"\u012c":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm398,-1678v157,0,223,-69,263,-189r55,16v-33,192,-114,321,-318,321v-197,0,-289,-133,-318,-321r55,-16v40,120,106,189,263,189","w":798},"\u012d":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm279,-1277v154,0,191,-113,222,-230r50,12v-13,122,-44,212,-85,275v-80,122,-296,121,-376,0v-42,-63,-72,-153,-83,-275r50,-12v34,120,65,230,222,230","w":600},"\u012e":{"d":"224,250v0,-117,84,-186,174,-250r-319,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027v-5,108,116,117,213,127r0,71r-243,0v-56,55,-93,114,-93,217v0,125,93,156,224,155r0,72r-115,0v-151,2,-267,-60,-267,-194","w":798},"\u012f":{"d":"134,250v0,-117,84,-186,174,-250r-234,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804v-2,87,69,105,146,114r0,66r-166,0v-56,55,-93,114,-93,217v0,125,93,156,224,155r0,72r-115,0v-151,2,-267,-60,-267,-194xm295,-1515v72,0,130,60,130,128v0,73,-58,142,-130,142v-66,0,-126,-67,-126,-133v0,-69,58,-137,126,-137","w":600},"\u0134":{"d":"593,-1213v7,-114,-118,-122,-213,-135r0,-71r626,0r0,71v-67,7,-165,10,-186,64v-8,19,-12,39,-12,61r0,841v-7,183,-110,317,-244,378v-54,25,-117,38,-187,38v-210,3,-366,-130,-366,-338v0,-87,47,-173,137,-173v102,0,160,90,120,186v-25,60,-70,107,-90,167v33,49,94,85,185,83v211,-5,230,-204,230,-421r0,-751xm1006,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1060},"\u0135":{"d":"-151,325v-1,-57,34,-110,94,-108v95,4,120,83,161,143v51,0,86,-31,108,-92v22,-61,33,-160,33,-295r0,-742v-12,-81,-39,-119,-133,-131v-41,-5,-70,-12,-91,-14r0,-62r396,-22r14,14r0,924v-2,224,-96,391,-245,468v-111,58,-334,52,-337,-83xm573,-1150r-48,32r-259,-273r-255,273r-48,-32r217,-347v22,-34,34,-45,90,-45v52,0,65,11,84,41","w":598},"\u0136":{"d":"288,-1213v6,-105,-99,-121,-186,-135r0,-71r589,0r0,71v-64,8,-159,13,-178,64v-7,19,-12,39,-12,61r0,490r20,0v157,-131,339,-309,451,-469v24,-36,36,-68,36,-96v-14,-45,-92,-45,-147,-50r0,-71r532,0r0,71v-96,6,-185,28,-234,83r-215,242v-75,83,-149,159,-222,228v101,115,186,213,252,296r211,265v75,88,145,155,290,163r0,71r-398,0v-157,-244,-352,-482,-550,-694r-26,0r0,494v-7,104,98,119,190,129r0,71r-589,0r0,-71v71,-7,150,-6,172,-57v8,-18,14,-37,14,-61r0,-1024xm803,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1422},"\u0137":{"d":"733,-864v-1,-41,-87,-51,-127,-58r0,-64r434,0r0,62v-139,44,-228,103,-315,195v-29,31,-70,69,-123,118v55,67,116,148,184,242r150,204v57,72,74,90,181,99r0,66r-298,0r-167,-242v-59,-86,-121,-170,-185,-251r-82,77r0,234v-2,91,70,108,152,116r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-1146v-6,-80,-38,-133,-121,-140v-30,-3,-54,-6,-72,-7r0,-64r365,-23r14,15r0,1043r169,-168v60,-60,111,-112,152,-159v8,-9,27,-33,27,-47xm616,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1097},"\u0138":{"d":"751,-864v-1,-41,-87,-51,-127,-58r0,-64r434,0r0,62v-139,44,-228,103,-315,195v-29,31,-70,69,-123,118v55,67,116,148,184,242r150,204v57,72,74,90,181,99r0,66r-298,0r-167,-242v-59,-86,-121,-170,-185,-251r-82,77r0,234v-2,91,70,108,152,116r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,15r0,493r169,-168v60,-60,111,-112,152,-159v8,-9,27,-33,27,-47","w":1115},"\u013b":{"d":"288,-1209v7,-108,-103,-123,-190,-139r0,-71r599,0r0,71v-65,9,-163,14,-183,67v-7,20,-13,40,-13,62r0,953v-1,111,6,174,105,182v120,10,322,20,389,-47v50,-50,146,-218,171,-291r71,0r-30,422r-1109,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1016xm699,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1236},"\u013c":{"d":"387,-180v-1,87,68,106,147,114r0,66r-481,0r0,-66v80,-3,148,-14,148,-102r0,-1142v-8,-81,-38,-126,-122,-139v-32,-5,-58,-11,-77,-12r0,-64r371,-23r14,15r0,1353xm302,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":586},"\u0145":{"d":"1554,-1348v-38,1,-146,29,-169,47v-58,47,-61,157,-61,276r0,1039r-87,0r-860,-1161r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r798,1082r0,-675v-1,-130,-6,-228,-62,-279v-26,-24,-144,-55,-188,-57r0,-71r577,0r0,71xm783,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1571},"\u0146":{"d":"1018,-176v-1,86,63,103,143,110r0,66r-483,0r0,-66v81,-3,151,-13,151,-102r0,-507v4,-123,-63,-219,-170,-219v-126,0,-211,69,-256,149r0,567v-1,87,73,104,152,112r0,66r-483,0r0,-66v80,-3,145,-15,145,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,139r5,0v86,-83,163,-168,331,-168v192,0,279,133,279,324r0,513xm627,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1210},"\u014a":{"d":"827,192v103,2,117,96,170,149v159,-13,230,-150,227,-346r-847,-1142r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r798,1082r0,-675v-1,-130,-6,-228,-62,-279v-26,-24,-144,-55,-188,-57r0,-71r577,0r0,71v-38,1,-146,29,-169,47v-58,47,-61,157,-61,276r0,969v2,300,-126,496,-407,500v-106,1,-197,-46,-200,-133v-2,-63,44,-121,110,-119","w":1571},"\u014b":{"d":"433,325v-4,-80,76,-135,149,-95v50,27,75,82,106,130v50,0,90,-29,108,-92v64,-225,30,-642,34,-943v1,-124,-63,-219,-171,-219v-126,0,-211,69,-256,149r0,567v-1,87,73,104,152,112r0,66r-483,0r0,-66v80,-3,145,-15,145,-102r0,-609v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,139r5,0v86,-83,163,-168,331,-168v192,0,279,133,279,324r2,458v-2,129,1,282,-36,383v-43,119,-115,205,-214,257v-111,58,-331,51,-337,-84","w":1185},"\u014c":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm1106,-1657r-686,0r0,-128r686,0r0,128","w":1524},"\u014d":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm896,-1291r-686,0r0,-128r686,0r0,128","w":1104},"\u014e":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm762,-1678v157,0,223,-69,263,-189r55,16v-33,192,-114,321,-318,321v-197,0,-289,-133,-318,-321r55,-16v40,120,106,189,263,189","w":1524},"\u014f":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm552,-1277v165,0,220,-104,258,-230r55,12v-33,215,-103,368,-313,368v-205,0,-284,-163,-313,-368r55,-12v41,124,90,230,258,230","w":1104},"\u0156":{"d":"1201,-1081v-1,239,-159,325,-346,382r345,465v72,97,133,152,280,163r0,71r-382,0r-230,-344v0,0,-142,-196,-222,-299r-145,0r0,450v0,81,38,107,121,115v30,3,55,6,76,7r0,71r-600,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1026v-1,-54,-12,-87,-57,-103v-30,-11,-96,-23,-133,-26r0,-71r655,0v192,1,339,58,411,183v25,43,37,94,37,155xm632,-729v186,1,322,-135,322,-329v0,-173,-107,-282,-283,-280r-170,0r0,609r131,0xm788,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1437},"\u0157":{"d":"685,-1010v85,-4,143,63,142,151v-1,66,-33,130,-102,130v-65,0,-113,-39,-115,-93v0,-29,6,-51,10,-76v-88,6,-176,74,-217,146r0,574v-6,102,101,103,189,112r0,66r-520,0r0,-66v80,-3,145,-15,145,-102r0,-609v-3,-88,-63,-133,-156,-134r0,-65r328,-22r14,14r0,139r5,0v63,-85,160,-160,277,-165xm379,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":839},"\u015c":{"d":"550,-1364v-120,-3,-230,93,-229,210v3,261,268,282,448,367v155,73,300,158,300,384v0,253,-224,432,-484,432v-132,0,-270,-50,-354,-101r-43,73r-80,0r-14,-486r81,0v48,174,123,317,269,392v46,23,100,35,161,35v171,-1,267,-80,267,-249v0,-132,-82,-228,-191,-270r-149,-57v-209,-78,-398,-157,-398,-430v0,-189,120,-301,264,-358v168,-67,371,-7,482,71r41,-68r80,0r8,471r-81,0v-59,-204,-121,-410,-378,-416xm916,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1149},"\u015d":{"d":"428,-937v-126,-4,-219,103,-160,215v59,111,242,115,358,177v102,55,180,112,182,260v2,190,-167,311,-368,311v-99,0,-214,-50,-262,-88r-20,65r-75,0r-10,-343r69,0v43,144,133,278,313,289v148,9,249,-115,183,-241v-73,-138,-321,-124,-439,-227v-53,-47,-100,-109,-100,-206v0,-170,146,-289,331,-289v76,0,169,24,217,51r23,-52r72,0r15,317r-69,0v-24,-128,-117,-235,-260,-239xm779,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":885},"\u0166":{"d":"1251,-1034r-69,0v-28,-95,-89,-195,-150,-260v-61,-65,-172,-39,-292,-47r0,557r311,0r0,91r-311,0r0,487v6,86,47,106,138,122v39,7,69,12,90,13r0,71r-670,0r0,-71v32,-3,141,-13,165,-23v42,-18,64,-46,64,-103r0,-496r-311,0r0,-91r311,0r0,-557r-135,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1236,0r0,385","w":1267},"\u0167":{"d":"539,-100v30,0,121,-7,142,-16r0,73v-87,34,-146,64,-265,64v-163,0,-225,-83,-225,-239r0,-265r-170,0r0,-85r170,0r0,-318r-178,0r0,-96r182,0r0,-307r182,0r0,307r283,0r0,96r-281,0r0,318r233,0r0,85r-233,0v4,184,-38,383,160,383","w":707},"\u0168":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm982,-1724v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1549},"\u0169":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm741,-1356v105,2,123,-61,155,-134r61,23v-24,93,-86,174,-160,219v-26,16,-58,24,-95,24v-141,0,-188,-97,-310,-103v-92,-5,-101,81,-141,136r-58,-25v43,-133,160,-295,346,-226v52,19,92,46,138,71v17,10,39,15,64,15","w":1178},"\u016a":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm1154,-1657r-686,0r0,-128r686,0r0,128","w":1549},"\u016b":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm912,-1291r-686,0r0,-128r686,0r0,128","w":1178},"\u016c":{"d":"827,-78v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-2,241,-156,375,-345,425v-287,76,-574,-28,-664,-230v-23,-49,-34,-101,-34,-154r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361xm818,-1678v157,0,223,-69,263,-189r55,16v-33,192,-114,321,-318,321v-197,0,-289,-133,-318,-321r55,-16v40,120,106,189,263,189","w":1549},"\u016d":{"d":"978,-201v2,85,60,119,151,118r0,65r-321,22r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783xm549,-1277v165,0,220,-104,258,-230r55,12v-33,215,-103,368,-313,368v-205,0,-284,-163,-313,-368r55,-12v41,124,90,230,258,230","w":1178},"\u0172":{"d":"936,217v-1,126,94,156,224,155r0,72r-115,0v-151,2,-267,-60,-267,-194v0,-110,68,-166,149,-232v-280,53,-547,-46,-633,-240v-22,-48,-34,-99,-34,-152r0,-839v6,-105,-97,-123,-186,-135r0,-71r591,0r0,71v-64,8,-160,13,-179,64v-7,19,-11,39,-11,61r0,784v4,227,109,364,352,361v241,-3,377,-132,377,-359r0,-582v-1,-118,-10,-226,-63,-274v-33,-29,-137,-51,-188,-55r0,-71r580,0r0,71v-47,3,-139,20,-170,45v-55,43,-60,159,-60,271r0,617v-1,195,-104,314,-236,383v-72,62,-131,122,-131,249","w":1549},"\u0173":{"d":"696,250v0,-116,85,-188,175,-250r-63,4r-15,-14r0,-125r-6,0v-83,81,-158,163,-329,160v-188,-3,-268,-133,-268,-334r0,-472v-1,-91,-65,-124,-155,-128r0,-65r329,-24r15,14r0,685v-4,124,59,215,163,215v126,0,200,-69,249,-145r0,-559v-5,-68,-36,-111,-107,-116v-24,-2,-50,-4,-79,-5r0,-65r358,-24r15,14r0,783v2,85,60,119,151,118r0,65r-174,12v-55,53,-101,120,-101,223v-1,126,94,156,224,155r0,72r-115,0v-151,2,-267,-60,-267,-194","w":1178},"\u0174":{"d":"2028,-1348v-111,15,-182,68,-213,169r-368,1197r-92,0r-358,-1092r-373,1092r-88,0r-347,-1231v-23,-82,-95,-127,-193,-135r0,-71r579,0r0,71v-51,3,-93,9,-129,15v-63,11,-60,41,-46,90r255,897r354,-1053r98,0r357,1076r124,-433v35,-124,64,-230,86,-318v23,-93,36,-113,36,-186v0,-23,-15,-42,-46,-57v-31,-15,-82,-26,-151,-31r0,-71r515,0r0,71xm1384,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1998},"\u0175":{"d":"1292,-808v31,-84,-56,-110,-126,-114r0,-64r375,0r0,64v-69,9,-138,59,-161,128r-230,686v-12,40,-24,78,-34,115r-86,0r-265,-726r-267,726r-82,0r-273,-821v-16,-57,-88,-98,-148,-106r0,-66r440,0r0,70v-40,3,-124,7,-107,61r186,599r252,-710r96,0r257,700r85,-260v28,-84,54,-162,75,-235v5,-17,8,-33,13,-47xm1141,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":1510},"\u0176":{"d":"1009,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169xm1002,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41","w":1260},"\u0177":{"d":"242,430v-104,42,-244,-8,-245,-108v-1,-61,39,-113,96,-113v89,1,119,73,155,127v72,-38,190,-252,220,-341r-172,-424r-161,-387v-21,-58,-90,-93,-154,-104r0,-66r450,0r0,70v-33,5,-130,6,-109,59r247,613r93,-222r129,-322v9,-22,13,-42,13,-58v-1,-40,-91,-72,-132,-76r0,-64r366,0r0,62v-54,12,-128,61,-152,118r-352,837v-69,151,-118,251,-209,342v-29,29,-58,47,-83,57xm854,-1150r-48,32r-279,-273r-275,273r-48,-32r237,-347v25,-34,31,-45,90,-45v53,0,64,11,84,41","w":1008},"\u017f":{"d":"606,-1549v100,-1,179,39,179,120v0,60,-33,109,-97,107v-94,-2,-123,-88,-164,-143v-45,2,-80,35,-104,99v-24,64,-36,161,-36,293r0,895v-6,100,97,103,181,112r0,66r-512,0r0,-66v80,-3,145,-15,145,-102r0,-883v-8,-266,163,-496,408,-498","w":613},"\u01fa":{"d":"955,-1431v2,112,-80,183,-169,204r425,1012v32,88,99,135,210,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,61,-38,43,-82r-132,-318r-470,0r-53,124v-28,69,-60,128,-60,208v0,66,127,83,205,88r0,71r-534,0r0,-71v126,-12,195,-75,237,-175r414,-979v-89,-23,-173,-90,-171,-206v2,-85,59,-135,112,-178r126,-103v58,-46,115,-107,179,-143v62,-35,150,1,147,68v-5,114,-136,113,-220,155v92,22,170,96,172,201xm834,-580r-197,-467r-198,467r395,0xm697,-1280v85,0,132,-69,132,-151v0,-81,-47,-148,-132,-148v-84,0,-133,64,-132,148v0,81,48,151,132,151","w":1374},"\u01fb":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-123,-134,-65,-203v52,-63,134,-110,229,-132v-90,-27,-152,-97,-154,-208v-2,-133,122,-222,258,-222v141,0,259,84,258,222v-1,100,-69,182,-151,206v159,24,245,125,243,317xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110xm493,-1053v88,0,133,-69,132,-159v0,-87,-44,-158,-132,-158v-87,0,-132,68,-132,158v0,88,45,159,132,159xm618,-1828v59,-37,150,-3,149,65v-1,66,-44,90,-92,113r-346,168r-31,-39r148,-143v55,-52,110,-125,172,-164","w":1032},"\u01fc":{"d":"766,-1326v-34,-13,-124,-20,-170,-22r0,-71r1238,0r0,342r-75,0v-17,-83,-128,-246,-213,-255v-112,-13,-258,-6,-385,-8r0,564v84,-2,206,7,263,-14v75,-28,107,-127,120,-218r75,0r0,555r-75,0v-11,-97,-47,-207,-128,-230v-62,-18,-172,-10,-255,-12r0,426v-2,112,19,174,115,181v129,9,354,27,432,-41v51,-44,140,-222,161,-289r72,0r-27,418r-1168,0r0,-71v29,-3,124,-11,145,-22v39,-20,56,-46,57,-100r0,-409r-480,0v-29,47,-55,94,-80,140v-25,46,-58,109,-99,192v-14,28,-31,63,-31,100v0,76,79,93,168,99r0,71r-523,0r0,-71v83,-10,152,-39,195,-93v19,-24,39,-51,56,-80r303,-529xm948,-690r0,-641r-77,0r-354,641r431,0xm1366,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1988},"\u01fd":{"d":"1131,-84v153,0,211,-85,267,-192r70,43v-66,144,-196,259,-384,259v-189,0,-286,-70,-372,-188r-6,0v-92,117,-182,185,-367,188v-148,3,-259,-97,-258,-246v2,-159,89,-236,202,-282v155,-63,221,-79,359,-120v8,-166,-16,-313,-174,-319v-58,-2,-119,23,-145,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-121,-135,-65,-203v63,-76,181,-142,314,-142v142,0,252,30,311,121v60,-63,164,-121,280,-121v276,0,390,177,380,465r-618,0v1,268,67,465,306,465xm1246,-631v0,-57,-13,-161,-33,-202v-29,-59,-75,-106,-162,-106v-142,0,-228,157,-226,308r421,0xm425,-86v102,2,173,-53,219,-108r0,-343v-146,29,-269,72,-335,178v-20,31,-28,69,-28,111v-2,103,50,160,144,162xm998,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1509},"\u01fe":{"d":"1253,-1236v111,125,193,298,191,528v-3,352,-171,582,-420,691v-82,36,-169,52,-262,52v-184,0,-329,-70,-433,-160r-174,210r-64,-50r181,-215v-111,-121,-192,-306,-192,-528v0,-356,172,-584,422,-694v83,-36,170,-52,260,-52v183,2,327,68,433,161r151,-183r65,52xm1098,-1176v-70,-111,-171,-189,-336,-189v-174,0,-273,87,-343,203v-119,197,-133,617,-34,847xm426,-243v66,107,172,189,336,189v253,0,368,-184,417,-397v47,-201,31,-493,-39,-651xm856,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1524},"\u01ff":{"d":"897,-869v120,117,176,363,103,571v-68,194,-208,328,-458,328v-120,0,-214,-45,-287,-105r-126,156r-58,-43r133,-163v-77,-87,-134,-204,-134,-364v0,-297,195,-528,487,-525v126,1,215,39,289,97r111,-141r58,44xm763,-815v-43,-73,-97,-123,-208,-123v-262,0,-300,300,-273,568v5,45,14,85,25,122xm340,-179v43,76,101,133,215,133v163,0,229,-139,259,-278v28,-127,20,-314,-18,-424xm661,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1104},"\u0387":{"d":"320,-990v74,0,137,64,137,137v0,73,-65,136,-137,136v-73,0,-137,-63,-137,-136v0,-73,63,-137,137,-137","w":640},"\u1e80":{"d":"2028,-1348v-111,15,-182,68,-213,169r-368,1197r-92,0r-358,-1092r-373,1092r-88,0r-347,-1231v-23,-82,-95,-127,-193,-135r0,-71r579,0r0,71v-51,3,-93,9,-129,15v-63,11,-60,41,-46,90r255,897r354,-1053r98,0r357,1076r124,-433v35,-124,64,-230,86,-318v23,-93,36,-113,36,-186v0,-23,-15,-42,-46,-57v-31,-15,-82,-26,-151,-31r0,-71r515,0r0,71xm777,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113","w":1998},"\u1e81":{"d":"1292,-808v31,-84,-56,-110,-126,-114r0,-64r375,0r0,64v-69,9,-138,59,-161,128r-230,686v-12,40,-24,78,-34,115r-86,0r-265,-726r-267,726r-82,0r-273,-821v-16,-57,-88,-98,-148,-106r0,-66r440,0r0,70v-40,3,-124,7,-107,61r186,599r252,-710r96,0r257,700r85,-260v28,-84,54,-162,75,-235v5,-17,8,-33,13,-47xm564,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52","w":1510},"\u1e82":{"d":"2028,-1348v-111,15,-182,68,-213,169r-368,1197r-92,0r-358,-1092r-373,1092r-88,0r-347,-1231v-23,-82,-95,-127,-193,-135r0,-71r579,0r0,71v-51,3,-93,9,-129,15v-63,11,-60,41,-46,90r255,897r354,-1053r98,0r357,1076r124,-433v35,-124,64,-230,86,-318v23,-93,36,-113,36,-186v0,-23,-15,-42,-46,-57v-31,-15,-82,-26,-151,-31r0,-71r515,0r0,71xm1190,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1998},"\u1e83":{"d":"1292,-808v31,-84,-56,-110,-126,-114r0,-64r375,0r0,64v-69,9,-138,59,-161,128r-230,686v-12,40,-24,78,-34,115r-86,0r-265,-726r-267,726r-82,0r-273,-821v-16,-57,-88,-98,-148,-106r0,-66r440,0r0,70v-40,3,-124,7,-107,61r186,599r252,-710r96,0r257,700r85,-260v28,-84,54,-162,75,-235v5,-17,8,-33,13,-47xm998,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1510},"\u1e84":{"d":"2028,-1348v-111,15,-182,68,-213,169r-368,1197r-92,0r-358,-1092r-373,1092r-88,0r-347,-1231v-23,-82,-95,-127,-193,-135r0,-71r579,0r0,71v-51,3,-93,9,-129,15v-63,11,-60,41,-46,90r255,897r354,-1053r98,0r357,1076r124,-433v35,-124,64,-230,86,-318v23,-93,36,-113,36,-186v0,-23,-15,-42,-46,-57v-31,-15,-82,-26,-151,-31r0,-71r515,0r0,71xm1282,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm832,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1998},"\u1e85":{"d":"1292,-808v31,-84,-56,-110,-126,-114r0,-64r375,0r0,64v-69,9,-138,59,-161,128r-230,686v-12,40,-24,78,-34,115r-86,0r-265,-726r-267,726r-82,0r-273,-821v-16,-57,-88,-98,-148,-106r0,-66r440,0r0,70v-40,3,-124,7,-107,61r186,599r252,-710r96,0r257,700r85,-260v28,-84,54,-162,75,-235v5,-17,8,-33,13,-47xm1029,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm599,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1510},"\u1ef2":{"d":"1009,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169xm402,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113","w":1260},"\u1ef3":{"d":"242,430v-104,42,-244,-8,-245,-108v-1,-61,39,-113,96,-113v89,1,119,73,155,127v72,-38,190,-252,220,-341r-172,-424r-161,-387v-21,-58,-90,-93,-154,-104r0,-66r450,0r0,70v-33,5,-130,6,-109,59r247,613r93,-222r129,-322v9,-22,13,-42,13,-58v-1,-40,-91,-72,-132,-76r0,-64r366,0r0,62v-54,12,-128,61,-152,118r-352,837v-69,151,-118,251,-209,342v-29,29,-58,47,-83,57xm277,-1399v-37,-51,-4,-144,66,-139v72,5,91,32,127,88r80,126r122,182r-38,32r-304,-237v-25,-21,-43,-39,-53,-52","w":1008},"\u201b":{"d":"141,-1294v15,140,99,187,199,246r-36,60v-119,-75,-260,-153,-260,-336v0,-118,42,-205,160,-205v67,0,117,56,118,115v1,97,-75,129,-181,120","w":400},"\u203e":{"d":"1322,-1603r-1337,0r0,-101r1337,0r0,101","w":1317},"\u20a4":{"d":"526,-1083r7,287r399,0r0,96r-401,0r0,144r401,0r0,96r-411,0v-36,133,-111,209,-222,274r0,9r866,0r0,177r-1048,0r0,-148v131,-40,197,-163,214,-312r-162,0r0,-96r165,0r0,-144r-165,0r0,-96r161,0r-9,-173v-11,-325,279,-577,609,-460v114,41,202,127,202,269v0,67,-31,125,-104,125v-68,0,-125,-39,-127,-97v-2,-48,23,-126,30,-160v-21,-42,-87,-87,-159,-84v-165,6,-250,114,-246,293","w":1274},"\u212e":{"d":"743,-101v200,2,273,-100,351,-229r86,52v-92,171,-255,309,-495,309v-298,0,-470,-158,-541,-388v-46,-147,-48,-328,2,-473v73,-209,238,-387,513,-387v355,0,504,219,490,588r-816,0v3,304,107,525,410,528xm929,-726v-2,-217,-54,-404,-272,-404v-205,0,-319,177,-324,404r596,0","w":1261},"\u215b":{"d":"507,-649v-4,88,113,82,193,88r0,71r-565,0r0,-71v77,-8,203,12,203,-80r0,-631r-207,0r0,-78v133,10,252,-32,310,-95r73,0r-7,237r0,559xm1437,-1419r-739,1419r-135,0r737,-1419r137,0xm1817,-494v123,51,210,104,210,246v0,171,-192,280,-392,280v-199,0,-365,-96,-365,-271v0,-135,94,-191,209,-237v-100,-54,-169,-104,-169,-227v0,-151,180,-260,352,-260v175,0,325,91,325,249v0,110,-77,176,-170,220xm1745,-528v58,-36,80,-101,81,-193v0,-95,-74,-168,-175,-168v-95,0,-174,65,-173,155v0,47,21,86,64,115v43,29,110,60,203,91xm1653,-43v116,0,205,-67,205,-174v0,-43,-21,-81,-64,-114v-43,-33,-125,-70,-248,-113v-70,35,-108,102,-109,198v-1,123,88,203,216,203","w":2150},"\u215c":{"d":"613,-990v138,20,257,81,257,239v0,190,-202,296,-422,296v-150,0,-327,-72,-331,-200v-1,-55,32,-100,84,-100v57,0,104,27,106,72v1,30,-14,79,-21,102v34,29,102,54,168,53v138,-1,224,-83,224,-227v0,-127,-72,-180,-204,-178r-107,0r0,-94r76,0v138,0,183,-64,192,-199v11,-163,-219,-201,-304,-96v6,21,20,79,19,107v-3,42,-53,71,-107,71v-87,0,-107,-101,-65,-166v55,-85,183,-143,328,-143v179,0,321,68,321,225v0,137,-95,194,-214,229r0,9xm1546,-1419r-739,1419r-135,0r737,-1419r137,0xm1867,-494v123,51,210,104,210,246v0,171,-192,280,-392,280v-199,0,-365,-96,-365,-271v0,-135,94,-191,209,-237v-100,-54,-169,-104,-169,-227v0,-151,180,-260,352,-260v175,0,325,91,325,249v0,110,-77,176,-170,220xm1795,-528v58,-36,80,-101,81,-193v0,-95,-74,-168,-175,-168v-95,0,-174,65,-173,155v0,47,21,86,64,115v43,29,110,60,203,91xm1703,-43v116,0,205,-67,205,-174v0,-43,-21,-81,-64,-114v-43,-33,-125,-70,-248,-113v-70,35,-108,102,-109,198v-1,123,88,203,216,203","w":2150},"\u215d":{"d":"301,-1028v102,-74,327,-76,432,6v65,51,116,115,115,232v-1,200,-178,335,-397,335v-147,0,-321,-71,-321,-191v0,-52,33,-99,88,-99v56,0,100,34,102,78v1,31,-14,72,-21,95v37,25,74,46,152,44v137,-3,215,-107,215,-262v0,-117,-83,-203,-202,-203v-98,0,-159,35,-203,86r-66,-22r65,-490r555,0r0,136r-476,0xm1522,-1419r-739,1419r-135,0r737,-1419r137,0xm1847,-494v123,51,210,104,210,246v0,171,-192,280,-392,280v-199,0,-365,-96,-365,-271v0,-135,94,-191,209,-237v-100,-54,-169,-104,-169,-227v0,-151,180,-260,352,-260v175,0,325,91,325,249v0,110,-77,176,-170,220xm1775,-528v58,-36,80,-101,81,-193v0,-95,-74,-168,-175,-168v-95,0,-174,65,-173,155v0,47,21,86,64,115v43,29,110,60,203,91xm1683,-43v116,0,205,-67,205,-174v0,-43,-21,-81,-64,-114v-43,-33,-125,-70,-248,-113v-70,35,-108,102,-109,198v-1,123,88,203,216,203","w":2150},"\u215e":{"d":"891,-1419r0,58r-524,892r-124,0r489,-817r-366,2v-51,7,-83,9,-101,60v-10,26,-19,57,-25,94r-63,0r0,-289r714,0xm1390,-1419r-739,1419r-135,0r737,-1419r137,0xm1777,-494v123,51,210,104,210,246v0,171,-192,280,-392,280v-199,0,-365,-96,-365,-271v0,-135,94,-191,209,-237v-100,-54,-169,-104,-169,-227v0,-151,180,-260,352,-260v175,0,325,91,325,249v0,110,-77,176,-170,220xm1705,-528v58,-36,80,-101,81,-193v0,-95,-74,-168,-175,-168v-95,0,-174,65,-173,155v0,47,21,86,64,115v43,29,110,60,203,91xm1613,-43v116,0,205,-67,205,-174v0,-43,-21,-81,-64,-114v-43,-33,-125,-70,-248,-113v-70,35,-108,102,-109,198v-1,123,88,203,216,203","w":2150},"\u0326":{"d":"489,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98"},"\u0384":{"d":"482,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0"},"\u0385":{"d":"482,-1209v-29,-146,-64,-290,-102,-399r0,-20r263,0r0,20v-43,124,-69,235,-102,399r-59,0xm787,-1477v65,0,116,58,116,123v0,65,-51,123,-116,123v-65,0,-116,-58,-116,-123v0,-65,51,-123,116,-123xm237,-1477v65,0,116,58,116,123v0,65,-51,123,-116,123v-65,0,-116,-58,-116,-123v0,-65,51,-123,116,-123"},"\u0386":{"d":"303,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm859,-580r-215,-550r-211,550r426,0xm142,-1070v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1384},"\u0388":{"d":"585,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm112,-1070v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1635},"\u0389":{"d":"1678,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-505r-667,0r0,494v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,440r667,0r0,-430v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023xm112,-1070v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1966},"\u038a":{"d":"798,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm112,-1070v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1091},"\u038c":{"d":"982,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm982,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49xm112,-1070v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1744},"\u038e":{"d":"1389,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169xm112,-1070v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1640},"\u038f":{"d":"999,-1364v-307,4,-408,271,-408,583v0,334,165,508,301,713r0,68r-593,0r-69,-388r69,0v28,70,57,148,113,192v17,13,39,20,66,20r230,0r0,-33v-158,-196,-358,-347,-358,-684v0,-177,79,-298,182,-392v105,-95,273,-170,467,-168v300,3,504,144,603,349v90,186,33,438,-54,575v-70,111,-170,220,-257,320r0,33r227,0v116,-10,139,-127,179,-212r69,0r-69,388r-590,0r0,-68v135,-208,305,-377,301,-713v-4,-306,-99,-587,-409,-583xm112,-1070v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1795},"\u0390":{"d":"390,-209v-2,110,92,145,208,128r0,64v-67,22,-113,39,-206,38v-127,0,-190,-84,-189,-216r2,-584v1,-97,-80,-127,-173,-132r0,-65r344,-22r14,14r0,775xm241,-1209v-29,-146,-64,-290,-102,-399r0,-20r263,0r0,20v-43,124,-69,235,-102,399r-59,0xm536,-1477v65,0,116,58,116,123v0,65,-51,123,-116,123v-65,0,-116,-58,-116,-123v0,-65,51,-123,116,-123xm6,-1477v65,0,116,58,116,123v0,65,-51,123,-116,123v-65,0,-116,-58,-116,-123v0,-65,51,-123,116,-123","w":605},"\u0391":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0","w":1374},"\u0392":{"d":"1170,-1110v0,216,-158,299,-337,344r0,9v215,33,415,124,415,371v0,209,-140,312,-306,362v-56,17,-115,24,-175,24r-672,0r0,-71v61,-7,160,-13,180,-61v7,-16,13,-36,13,-61r0,-1020v6,-106,-98,-123,-186,-135r0,-71r655,0v173,1,305,53,375,163v25,40,38,89,38,146xm628,-791v201,0,303,-98,301,-299v-2,-164,-91,-252,-266,-250r-162,4r0,545r127,0xm694,-79v207,-1,309,-128,307,-343v-1,-178,-132,-293,-326,-288r-174,4r0,500v2,95,87,127,193,127","w":1339},"\u0394":{"d":"1334,0r-1315,0r0,-50r640,-1389r78,0r597,1389r0,50xm1052,-172r-424,-992r-451,992r875,0","w":1353},"\u0395":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020","w":1338},"\u0396":{"d":"1214,-443r-47,443r-1140,0r0,-35r893,-1305r-422,2v-114,5,-139,29,-220,117v-57,62,-96,132,-124,203r-70,0r43,-401r1063,0r0,35r-893,1305r337,0v93,-1,262,-11,306,-53v76,-72,164,-212,204,-311r70,0","w":1232},"\u0397":{"d":"1381,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-505r-667,0r0,494v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,440r667,0r0,-430v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023","w":1669},"\u0399":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027","w":798},"\u039a":{"d":"288,-1213v6,-105,-99,-121,-186,-135r0,-71r589,0r0,71v-64,8,-159,13,-178,64v-7,19,-12,39,-12,61r0,490r20,0v157,-131,339,-309,451,-469v24,-36,36,-68,36,-96v-14,-45,-92,-45,-147,-50r0,-71r532,0r0,71v-96,6,-185,28,-234,83r-215,242v-75,83,-149,159,-222,228v101,115,186,213,252,296r211,265v75,88,145,155,290,163r0,71r-398,0v-157,-244,-352,-482,-550,-694r-26,0r0,494v-7,104,98,119,190,129r0,71r-589,0r0,-71v71,-7,150,-6,172,-57v8,-18,14,-37,14,-61r0,-1024","w":1422},"\u039b":{"d":"1427,0r-591,0r0,-71v59,-5,103,-13,134,-22v53,-15,54,-38,38,-80r-372,-956r-192,499v-71,184,-117,303,-133,357v-21,71,-52,144,33,173v38,13,86,24,149,29r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r469,-1193r80,0r476,1224v30,87,101,135,209,144r0,71","w":1380},"\u039c":{"d":"1611,-200v-8,107,102,120,195,129r0,71r-627,0r0,-71v39,-1,137,-9,161,-24v37,-24,59,-49,60,-105r0,-1032r-15,0r-484,1209r-50,0r-461,-1234r-13,0r0,847v7,185,3,284,154,319v46,11,76,19,90,20r0,71r-573,0r0,-71v105,-11,202,-31,219,-134v6,-39,13,-103,13,-194r0,-726v5,-155,-85,-215,-223,-223r0,-71r484,0r406,1064r347,-890v18,-44,42,-129,47,-174r463,0r0,71v-64,8,-162,12,-181,64v-7,19,-12,39,-12,61r0,1023","w":1899},"\u039d":{"d":"1554,-1348v-38,1,-146,29,-169,47v-58,47,-61,157,-61,276r0,1039r-87,0r-860,-1161r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r798,1082r0,-675v-1,-130,-6,-228,-62,-279v-26,-24,-144,-55,-188,-57r0,-71r577,0r0,71","w":1571},"\u039e":{"d":"409,-1243v-132,2,-156,153,-193,254r-70,0r27,-430r1074,0r27,430r-70,0v-40,-102,-53,-252,-193,-254r-305,-5xm1027,-470r-70,0v-21,-69,-19,-146,-105,-154v-58,-6,-231,-7,-286,0v-87,11,-81,82,-103,154r-70,0r0,-479r70,0v11,55,14,86,42,124v32,44,110,36,205,36v90,0,171,4,205,-36v20,-36,32,-71,42,-124r70,0r0,479xm399,-179r307,5r315,-5v140,-10,172,-145,213,-254r70,0r-47,433r-1094,0r-47,-433r70,0v41,108,74,252,213,254","w":1420},"\u039f":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49","w":1524},"\u03a0":{"d":"1367,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1140r-653,0r0,1129v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r1455,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023","w":1655},"\u03a1":{"d":"739,-1419v241,-4,446,125,445,350v-1,236,-148,364,-331,420v-103,32,-223,26,-352,26r0,430v1,81,40,107,123,115v30,3,58,6,83,7r0,71r-609,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1024v-1,-54,-12,-89,-57,-105v-42,-15,-94,-22,-140,-26r0,-71r648,0xm603,-710v215,1,333,-110,333,-309v0,-196,-90,-320,-294,-318r-141,0r0,627r102,0","w":1249},"\u03a3":{"d":"918,-176v139,-12,169,-158,213,-267r70,0r-47,443r-1130,0r0,-35r571,-636r-555,-713r0,-35r1070,0r0,377r-71,0v-21,-110,-112,-273,-214,-288v-144,-21,-325,-7,-485,-10r445,572r0,16r-520,576r653,0","w":1236},"\u03a4":{"d":"1251,-1034r-69,0v-28,-95,-89,-195,-150,-260v-61,-65,-172,-39,-292,-47r0,1135v6,86,47,106,138,122v39,7,69,12,90,13r0,71r-670,0r0,-71v32,-3,141,-13,165,-23v42,-18,64,-46,64,-103r0,-1144r-135,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1236,0r0,385","w":1267},"\u03a5":{"d":"1009,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169","w":1260},"\u03a7":{"d":"684,-1348v-54,3,-177,10,-183,53v28,102,110,204,162,292v27,46,64,98,105,157v75,-102,140,-194,195,-276v55,-82,82,-135,82,-160v0,-21,-12,-37,-37,-47v-25,-10,-68,-16,-127,-19r0,-71r529,0r0,71v-83,1,-175,36,-210,80r-69,84r-147,194r-163,220r367,536v31,48,94,113,136,141v27,18,93,20,133,22r0,71r-664,0r0,-71v55,-1,100,-5,133,-15v67,-21,59,-42,27,-104v-74,-144,-176,-286,-263,-421v-59,77,-125,170,-200,279v-75,109,-112,174,-112,193v0,22,10,39,30,49v20,10,66,16,135,19r0,71r-530,0r0,-71v38,-3,105,-11,133,-26v69,-38,102,-77,147,-137r341,-459r-340,-495v-63,-89,-83,-130,-200,-152v-28,-4,-50,-7,-67,-8r0,-71r657,0r0,71","w":1455},"\u03a8":{"d":"1002,-532v240,-12,358,-135,358,-380r0,-507r399,0r0,71v-62,8,-161,12,-175,66v-26,99,-8,235,-10,352v-6,347,-235,469,-572,482r0,240v6,88,47,108,138,124v38,7,66,12,83,13r0,71r-654,0r0,-71v32,-3,133,-11,157,-22v44,-19,63,-48,63,-105r0,-250v-338,-13,-570,-134,-572,-482r0,-283v6,-104,-97,-123,-185,-135r0,-71r399,0r0,507v-2,245,120,368,358,380r0,-681v4,-103,-98,-122,-185,-135r0,-71r579,0r0,71v-63,7,-151,14,-170,63v-7,18,-11,39,-11,62r0,691","w":1791},"\u03a9":{"d":"799,-1364v-307,4,-408,271,-408,583v0,334,165,508,301,713r0,68r-593,0r-69,-388r69,0v28,70,57,148,113,192v17,13,39,20,66,20r230,0r0,-33v-158,-196,-358,-347,-358,-684v0,-177,79,-298,182,-392v105,-95,273,-170,467,-168v300,3,504,144,603,349v90,186,33,438,-54,575v-70,111,-170,220,-257,320r0,33r227,0v116,-10,139,-127,179,-212r69,0r-69,388r-590,0r0,-68v135,-208,305,-377,301,-713v-4,-306,-99,-587,-409,-583","w":1595},"\u03aa":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm614,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm184,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":798},"\u03ab":{"d":"1009,-1273v0,-75,-114,-65,-188,-75r0,-71r493,0r0,71v-54,5,-136,48,-160,75v-140,162,-252,385,-363,578v-47,82,-61,100,-61,216r0,271v-8,118,126,124,226,137r0,71r-664,0r0,-71v32,-3,138,-11,162,-22v44,-19,63,-48,63,-105r0,-345v-8,-45,-41,-106,-66,-153r-133,-251v-78,-124,-128,-287,-244,-368v-27,-18,-78,-30,-118,-33r0,-71r605,0r0,71v-68,1,-116,7,-144,14v-63,16,-41,52,-19,93r161,301r128,231r239,-395v55,-94,83,-150,83,-169xm894,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm444,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1260},"\u03ac":{"d":"1069,-986v-16,145,-54,353,-85,520v2,98,14,180,34,246v20,66,46,107,78,126v21,13,96,10,133,11r0,64v-52,19,-136,40,-195,40v-137,0,-165,-80,-187,-222v-76,115,-165,230,-353,230v-209,0,-329,-143,-388,-309v-45,-126,-47,-291,2,-417v66,-172,202,-316,426,-316v168,0,277,90,324,218r25,-191r186,0xm281,-482v0,216,68,404,279,404v81,0,145,-37,190,-110v45,-73,78,-184,78,-335v0,-155,-50,-309,-152,-377v-111,-75,-248,-33,-318,85v-49,82,-77,192,-77,333xm538,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1224},"\u03ad":{"d":"536,-74v180,-3,259,-87,334,-221r70,43v-89,205,-306,328,-588,264v-141,-32,-268,-108,-268,-275v0,-170,124,-240,283,-254r0,-10v-139,-27,-249,-81,-249,-232v0,-128,96,-190,209,-229v52,-17,114,-25,186,-25v196,-2,363,65,363,231v0,65,-28,123,-99,123v-68,0,-121,-37,-122,-93v-1,-53,13,-95,20,-142v-28,-24,-104,-43,-160,-43v-111,0,-195,75,-195,176v0,147,61,199,213,200r83,0r0,93r-108,0v-140,0,-218,59,-219,192v-2,137,109,204,247,202xm478,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":959},"\u03ae":{"d":"720,-1013v192,0,283,133,283,324r0,1133r-187,0r0,-1119v4,-126,-68,-219,-178,-219v-121,0,-204,72,-251,149r0,745r-186,0r0,-777v-1,-91,-63,-131,-156,-134r0,-65r328,-22r14,14r0,139r5,0v80,-79,167,-168,328,-168xm553,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1169},"\u03af":{"d":"390,-209v-2,110,92,145,208,128r0,64v-67,22,-113,39,-206,38v-127,0,-190,-84,-189,-216r2,-584v1,-97,-80,-127,-173,-132r0,-65r344,-22r14,14r0,775xm256,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":605},"\u03b0":{"d":"723,-907v0,-54,53,-101,111,-97v166,13,188,193,188,370v0,273,-95,503,-263,610v-124,79,-353,60,-450,-27v-69,-62,-109,-129,-109,-260r3,-467v-1,-71,-25,-109,-99,-109v-26,0,-76,7,-97,8r0,-64v41,-16,147,-58,203,-56v146,2,186,76,185,230r-3,417v-3,174,55,266,219,267v236,3,358,-318,282,-563v-31,-99,-169,-129,-170,-259xm524,-1209v-29,-146,-64,-290,-102,-399r0,-20r263,0r0,20v-43,124,-69,235,-102,399r-59,0xm829,-1477v65,0,116,58,116,123v0,65,-51,123,-116,123v-65,0,-116,-58,-116,-123v0,-65,51,-123,116,-123xm279,-1477v65,0,116,58,116,123v0,65,-51,123,-116,123v-65,0,-116,-58,-116,-123v0,-65,51,-123,116,-123","w":1108},"\u03b2":{"d":"1019,-1223v0,194,-131,290,-294,320r4,9v209,29,349,174,352,413v3,274,-201,505,-473,505v-104,0,-185,-29,-241,-67r-8,0r0,487r-187,0r0,-1448v3,-217,21,-294,129,-415v91,-103,293,-165,476,-112v138,40,242,129,242,308xm591,-49v196,-6,283,-201,281,-428v-2,-206,-53,-368,-265,-364r-94,0r0,-95v204,10,318,-73,324,-280v6,-191,-146,-311,-319,-239v-119,50,-160,211,-159,396r0,850v26,82,123,163,232,160","w":1158},"\u03b3":{"d":"878,-1013v72,0,116,43,115,117v-3,107,-60,200,-101,286v-79,164,-211,372,-275,557v7,59,13,113,20,161v17,114,18,235,-23,303v-16,27,-38,33,-76,33v-74,0,-104,-50,-104,-130v1,-114,22,-227,49,-329v-102,-312,-207,-526,-326,-801v-29,-68,-80,-90,-170,-95r0,-65r297,-22r14,14r168,395v39,95,114,297,126,406v49,-136,142,-290,186,-421v31,-94,-17,-207,-18,-294v-1,-60,53,-115,118,-115","w":1052},"\u03b6":{"d":"190,-1364v-77,-45,-53,-177,47,-177v95,0,134,66,192,99v61,35,196,15,276,10r190,-13r0,92v-234,168,-449,351,-565,629v-35,83,-50,168,-50,256v0,189,89,292,266,298v111,4,212,12,266,74v40,46,63,105,63,180v2,168,-174,332,-357,325v-113,-4,-193,-13,-193,-100v0,-56,37,-89,97,-88v82,3,113,68,171,96v69,-5,123,-45,150,-97v27,-53,18,-156,-27,-188v-47,-34,-146,-41,-235,-42v-226,-4,-398,-173,-394,-405v3,-198,77,-337,173,-468v122,-167,275,-299,445,-444r0,-11r-368,4v-67,1,-115,-11,-147,-30","w":827},"\u03b7":{"d":"720,-1013v192,0,283,133,283,324r0,1133r-187,0r0,-1119v4,-126,-68,-219,-178,-219v-121,0,-204,72,-251,149r0,745r-186,0r0,-777v-1,-91,-63,-131,-156,-134r0,-65r328,-22r14,14r0,139r5,0v80,-79,167,-168,328,-168","w":1169},"\u03b8":{"d":"570,-1550v292,0,407,251,456,504v74,387,-5,838,-234,1006v-122,89,-328,91,-448,-1v-118,-90,-198,-260,-232,-433v-33,-160,-34,-410,-1,-570v51,-248,167,-506,459,-506xm845,-832v-1,-205,-23,-373,-82,-499v-40,-83,-94,-143,-194,-143v-103,0,-152,56,-194,142v-60,124,-81,296,-81,500r551,0xm569,-46v177,0,221,-173,255,-346v17,-86,22,-217,21,-351r-551,0v-2,228,16,415,79,554v39,82,95,143,196,143","w":1139},"\u03b9":{"d":"390,-209v-2,110,92,145,208,128r0,64v-67,22,-113,39,-206,38v-127,0,-190,-84,-189,-216r2,-584v1,-97,-80,-127,-173,-132r0,-65r344,-22r14,14r0,775","w":605},"\u03ba":{"d":"930,-122v50,43,118,38,188,28r0,64v-81,32,-170,60,-277,46v-84,-11,-124,-74,-163,-146r-193,-359r-98,109r0,380r-186,0r0,-777v-2,-90,-63,-132,-156,-134r0,-65r328,-22r14,14r0,505r169,-210v89,-105,172,-221,268,-287v85,-59,211,-14,211,100v0,58,-51,109,-114,107v-44,-1,-109,-27,-144,-42v-67,47,-105,113,-168,178r127,230v60,105,116,214,194,281","w":1098},"\u03bb":{"d":"126,-1362v-62,-84,1,-195,108,-188v141,9,189,92,236,221r304,849v53,143,93,280,156,368v21,30,83,32,141,30r0,64v-68,20,-170,62,-243,22v-63,-34,-81,-126,-105,-203v-17,-55,-37,-131,-61,-229v-24,-98,-56,-212,-95,-341v-45,88,-95,193,-151,315r-137,288v-32,62,-43,103,-64,166r-228,0r489,-988v-41,-139,-78,-232,-141,-333v-76,-9,-171,10,-209,-41","w":999},"\u03bc":{"d":"545,-92v125,0,204,-65,250,-139r0,-755r190,0r0,784v2,78,31,114,109,118v24,1,46,1,69,1r0,64v-57,20,-103,38,-173,38v-110,0,-178,-52,-193,-154r-6,0v-80,83,-150,156,-316,156v-76,0,-154,-39,-187,-81r-6,0v-9,156,43,262,51,399v5,65,-57,105,-112,105v-57,0,-101,-39,-98,-100v7,-149,52,-319,52,-480r0,-850r190,0r0,677v-3,117,72,217,180,217","w":1186},"\u03bd":{"d":"863,-1013v137,4,119,156,65,260r-277,532v-40,74,-64,150,-95,230r-87,0r-318,-825v-25,-67,-83,-90,-166,-95r0,-65r307,-22r14,14v33,168,99,309,156,458r114,295r132,-277v27,-64,47,-99,50,-166v4,-100,-18,-138,-19,-223v-1,-59,61,-118,124,-116","w":1027},"\u03be":{"d":"47,-1455v0,-55,28,-98,90,-96v93,3,135,60,195,97v16,11,40,17,73,17v72,0,149,-2,233,-6v84,-4,158,-8,223,-12r0,113v-276,-13,-507,34,-512,291v-4,167,138,244,312,243r145,0r0,105r-196,0v-209,1,-334,80,-334,284v-1,161,102,254,265,253r132,0v160,-2,250,95,252,250v2,167,-179,332,-357,325v-113,-4,-193,-13,-193,-100v0,-56,37,-89,97,-88v82,3,113,68,171,96v69,-5,123,-45,150,-97v11,-20,16,-48,16,-83v0,-104,-72,-143,-180,-143r-156,0v-272,13,-478,-256,-359,-518v58,-128,189,-214,348,-237r0,-6v-172,-26,-310,-112,-310,-280v0,-182,146,-250,292,-296r0,-17v-147,-3,-397,51,-397,-95","w":903},"\u03bf":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755","w":1104},"\u03c1":{"d":"778,-12v-126,64,-330,38,-419,-29r-8,0r0,485r-187,0r0,-991v2,-167,36,-241,118,-338v98,-116,340,-170,518,-95v170,72,268,229,268,475v0,241,-126,410,-290,493xm604,-936v-338,0,-234,421,-253,727v25,81,126,162,238,162v78,0,143,-41,195,-122v119,-186,115,-693,-94,-753v-30,-9,-58,-14,-86,-14","w":1142},"\u03c2":{"d":"531,-938v-193,15,-272,177,-275,398v-3,229,133,331,338,353v98,11,198,40,242,105v29,43,46,93,46,153v0,188,-176,336,-370,336v-116,0,-205,-19,-205,-104v0,-57,34,-86,96,-85v86,2,122,69,182,99v119,1,242,-173,145,-275v-76,-80,-220,-54,-342,-95v-180,-60,-320,-216,-320,-438v0,-257,119,-416,302,-491v204,-84,510,-6,510,200v0,65,-28,123,-99,123v-68,0,-121,-37,-122,-93v-1,-53,13,-95,20,-142v-32,-25,-85,-49,-148,-44","w":913},"\u03c5":{"d":"723,-907v0,-54,53,-101,111,-97v166,13,188,193,188,370v0,273,-95,503,-263,610v-124,79,-353,60,-450,-27v-69,-62,-109,-129,-109,-260r3,-467v-1,-71,-25,-109,-99,-109v-26,0,-76,7,-97,8r0,-64v41,-16,147,-58,203,-56v146,2,186,76,185,230r-3,417v-3,174,55,266,219,267v236,3,358,-318,282,-563v-31,-99,-169,-129,-170,-259","w":1108},"\u03c7":{"d":"-5,-955v64,-18,185,-72,255,-28v69,44,91,117,124,202r143,362r250,-478v14,-28,27,-58,40,-89r225,0r-419,729r127,261v59,115,130,252,198,310v34,29,96,30,160,28r0,64v-74,22,-180,61,-258,22v-72,-36,-104,-123,-136,-203r-151,-377r-273,517v-13,27,-24,53,-35,79r-225,0r438,-760v-62,-127,-110,-224,-145,-288v-35,-64,-67,-120,-97,-169v-54,-88,-97,-115,-221,-118r0,-64","w":1037},"\u03c8":{"d":"1121,-892v-6,-110,133,-143,201,-82v115,102,103,370,60,548v-60,248,-216,421,-496,454r0,416r-186,0r0,-416v-270,-14,-503,-116,-501,-405r3,-401v-1,-74,-22,-109,-99,-109v-26,-1,-76,7,-97,8r0,-64v41,-16,147,-58,203,-56v144,3,186,72,185,230r-3,402v-1,197,128,295,309,312r0,-931r186,0r0,931v203,-17,324,-144,380,-307v30,-88,33,-211,6,-298v-29,-92,-145,-115,-151,-232","w":1496},"\u03c9":{"d":"1176,-298v34,-281,-3,-591,-258,-620r15,-80v283,33,458,204,458,522v0,221,-87,389,-229,468v-46,25,-99,38,-159,38v-133,-2,-215,-75,-271,-167v-60,94,-133,167,-271,167v-204,0,-307,-141,-360,-306v-40,-129,-36,-311,11,-425v69,-167,212,-276,419,-297r15,80v-254,31,-291,341,-256,621v15,121,56,245,184,245v130,0,164,-84,164,-235r0,-369r188,0r0,369v1,149,34,235,164,235v128,0,172,-130,186,-246","w":1464},"\u03ca":{"d":"390,-209v-2,110,92,145,208,128r0,64v-67,22,-113,39,-206,38v-127,0,-190,-84,-189,-216r2,-584v1,-97,-80,-127,-173,-132r0,-65r344,-22r14,14r0,775xm486,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm56,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":605},"\u03cb":{"d":"723,-907v0,-54,53,-101,111,-97v166,13,188,193,188,370v0,273,-95,503,-263,610v-124,79,-353,60,-450,-27v-69,-62,-109,-129,-109,-260r3,-467v-1,-71,-25,-109,-99,-109v-26,0,-76,7,-97,8r0,-64v41,-16,147,-58,203,-56v146,2,186,76,185,230r-3,417v-3,174,55,266,219,267v236,3,358,-318,282,-563v-31,-99,-169,-129,-170,-259xm775,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm345,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1108},"\u03cc":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755xm528,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1104},"\u03cd":{"d":"723,-907v0,-54,53,-101,111,-97v166,13,188,193,188,370v0,273,-95,503,-263,610v-124,79,-353,60,-450,-27v-69,-62,-109,-129,-109,-260r3,-467v-1,-71,-25,-109,-99,-109v-26,0,-76,7,-97,8r0,-64v41,-16,147,-58,203,-56v146,2,186,76,185,230r-3,417v-3,174,55,266,219,267v236,3,358,-318,282,-563v-31,-99,-169,-129,-170,-259xm530,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1108},"\u03ce":{"d":"1176,-298v34,-281,-3,-591,-258,-620r15,-80v283,33,458,204,458,522v0,221,-87,389,-229,468v-46,25,-99,38,-159,38v-133,-2,-215,-75,-271,-167v-60,94,-133,167,-271,167v-204,0,-307,-141,-360,-306v-40,-129,-36,-311,11,-425v69,-167,212,-276,419,-297r15,80v-254,31,-291,341,-256,621v15,121,56,245,184,245v130,0,164,-84,164,-235r0,-369r188,0r0,369v1,149,34,235,164,235v128,0,172,-130,186,-246xm702,-1139v-26,-140,-75,-295,-112,-399r0,-20r283,0r0,20v-39,108,-84,256,-112,399r-59,0","w":1464},"\u0401":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020xm913,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm463,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":1338},"\u0402":{"d":"1134,-43v142,-35,182,-188,185,-362v3,-215,-101,-353,-305,-353v-133,0,-183,30,-286,70r0,688r-427,0r0,-71v67,-7,175,-11,199,-61v8,-17,15,-38,15,-65r0,-1144r-123,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1224,0r0,375r-69,0v-27,-91,-90,-191,-151,-252v-62,-62,-173,-37,-291,-45r0,573v93,-51,240,-118,378,-118v324,0,515,281,408,600v-40,121,-118,211,-220,268v-128,72,-433,68,-433,-99v0,-55,35,-111,97,-108v112,6,138,101,176,182","w":1608},"\u0403":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1093,0r0,397r-75,0v-24,-99,-83,-202,-144,-269v-52,-57,-154,-49,-255,-49r-204,0r0,1138v-4,111,122,121,222,131r0,71r-637,0r0,-71v30,-2,124,-9,145,-18v38,-17,56,-49,57,-100r0,-1024xm805,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1195},"\u0404":{"d":"487,-692v-83,0,-121,27,-177,62v17,249,112,443,284,536v145,79,388,36,482,-53r-10,-151v1,-74,45,-133,126,-132v127,2,135,168,72,256v-96,134,-273,207,-507,207v-331,0,-535,-173,-629,-423v-66,-177,-66,-438,3,-614v99,-251,295,-438,624,-446v148,-3,259,44,352,99r40,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-387,-452v-242,0,-360,157,-421,361v-24,83,-38,182,-39,296v79,-50,151,-122,275,-126v141,-4,189,83,329,83v59,0,102,-33,136,-60r43,54v-74,70,-163,143,-283,146v-135,3,-191,-81,-320,-81","w":1345},"\u0405":{"d":"550,-1364v-120,-3,-230,93,-229,210v3,261,268,282,448,367v155,73,300,158,300,384v0,253,-224,432,-484,432v-132,0,-270,-50,-354,-101r-43,73r-80,0r-14,-486r81,0v48,174,123,317,269,392v46,23,100,35,161,35v171,-1,267,-80,267,-249v0,-132,-82,-228,-191,-270r-149,-57v-209,-78,-398,-157,-398,-430v0,-189,120,-301,264,-358v168,-67,371,-7,482,71r41,-68r80,0r8,471r-81,0v-59,-204,-121,-410,-378,-416","w":1149},"\u0406":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027","w":798},"\u0407":{"d":"505,-198v-5,108,116,117,213,127r0,71r-639,0r0,-71v105,-9,213,0,213,-116r0,-1028v8,-114,-121,-114,-213,-133r0,-71r639,0r0,71v-96,9,-213,10,-213,123r0,1027xm614,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm184,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":798},"\u0408":{"d":"593,-1213v7,-114,-118,-122,-213,-135r0,-71r626,0r0,71v-67,7,-165,10,-186,64v-8,19,-12,39,-12,61r0,841v-7,183,-110,317,-244,378v-54,25,-117,38,-187,38v-210,3,-366,-130,-366,-338v0,-87,47,-173,137,-173v102,0,160,90,120,186v-25,60,-70,107,-90,167v33,49,94,85,185,83v211,-5,230,-204,230,-421r0,-751","w":1060},"\u0409":{"d":"1454,-79v211,0,312,-136,312,-356v0,-186,-143,-300,-334,-297r-171,4r0,520v6,109,62,129,193,129xm1261,-816v390,-20,753,26,753,398v0,222,-136,341,-310,394v-57,16,-116,24,-177,24r-669,0r0,-71v100,-7,190,-8,190,-118r0,-1146r-382,0v2,413,-53,775,-169,1036v-48,108,-103,187,-163,240v-60,53,-119,79,-180,79v-99,0,-174,-57,-176,-142v-1,-63,47,-128,114,-128v94,0,130,71,167,126v133,-126,207,-373,253,-612v26,-136,48,-364,18,-508v-17,-83,-120,-87,-211,-104r0,-71r1140,0r0,71v-65,9,-165,14,-185,67v-7,20,-13,40,-13,62r0,403","w":2072},"\u040a":{"d":"1564,-79v211,0,312,-136,312,-356v0,-186,-143,-300,-334,-297r-171,4r0,520v6,109,62,129,193,129xm1371,-816v390,-20,753,26,753,398v0,222,-136,341,-310,394v-57,16,-116,24,-177,24r-672,0r0,-71v61,-7,160,-13,180,-61v7,-16,13,-36,13,-61r0,-517r-657,0r0,510v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,424r657,0r0,-410v7,-108,-103,-123,-190,-139r0,-71r601,0r0,71v-65,9,-165,14,-185,67v-7,20,-13,40,-13,62r0,403","w":2182},"\u040b":{"d":"1499,-206v-5,104,103,121,190,135r0,71r-589,0r0,-71v91,-9,184,-17,184,-125r0,-273v-1,-57,-6,-153,-30,-190v-43,-66,-102,-97,-223,-96v-146,1,-195,25,-303,75r0,480v-6,109,100,118,196,129r0,71r-628,0r0,-71v68,-8,180,-10,204,-61v8,-17,15,-38,15,-65r0,-1144r-123,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1224,0r0,375r-69,0v-27,-91,-90,-191,-151,-252v-62,-62,-173,-37,-291,-45r0,581v85,-51,251,-125,378,-126v267,-2,393,107,393,369r0,311","w":1720},"\u040c":{"d":"1275,-1188v-97,0,-126,-73,-160,-137v-119,88,-126,290,-200,422v-33,59,-71,118,-122,163r0,14v155,43,244,136,308,274r117,251v39,106,104,122,227,130r0,71r-391,0v-27,-77,-54,-148,-80,-212v-54,-128,-134,-326,-216,-389v-60,-46,-150,-57,-257,-53r0,454v-7,104,98,119,190,129r0,71r-589,0r0,-71v71,-7,150,-6,172,-57v8,-18,14,-37,14,-61r0,-1024v6,-105,-99,-121,-186,-135r0,-71r589,0r0,71v-64,8,-159,13,-178,64v-7,19,-12,39,-12,61r0,486v63,-2,119,7,165,-16v202,-104,175,-442,337,-593v50,-46,117,-86,207,-86v97,0,169,38,169,130v0,68,-32,114,-104,114xm917,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164","w":1423},"\u040e":{"d":"265,-251v99,2,127,93,167,153v114,-33,163,-128,223,-227r-275,-526r-192,-362v-38,-73,-117,-128,-223,-135r0,-71r598,0r0,71v-42,2,-81,9,-119,14v-72,10,-57,49,-36,90r362,695r124,-277r107,-251v37,-99,51,-119,60,-190v-17,-70,-119,-70,-197,-81r0,-71r530,0r0,71v-75,7,-157,36,-188,88v-172,289,-347,812,-529,1077v-61,88,-132,155,-223,188v-127,46,-296,-9,-298,-132v-1,-64,45,-126,109,-124xm489,-1650v91,89,334,83,425,0v-10,-25,-35,-84,-35,-120v0,-65,50,-98,106,-98v90,0,122,109,79,191v-35,67,-100,108,-178,135v-85,29,-276,30,-366,0v-108,-36,-193,-91,-201,-212v-4,-62,39,-115,98,-114v58,1,107,31,107,98v0,43,-23,88,-35,120","w":1345},"\u040f":{"d":"1371,-200v-8,105,100,119,190,129r0,71r-538,0v-94,19,-115,131,-137,227v-8,37,-13,77,-20,118r-77,0v-16,-112,-35,-231,-91,-306v-17,-23,-39,-39,-66,-39r-534,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r583,0r0,71v-62,8,-155,13,-171,64v-6,19,-9,39,-9,61r0,1027v2,67,53,109,131,111r208,4r235,-4v64,-2,83,-27,83,-90r0,-1038v6,-105,-97,-122,-184,-135r0,-71r583,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023","w":1659},"\u0410":{"d":"293,-203v-34,114,106,122,200,132r0,71r-534,0r0,-71v125,-12,194,-73,234,-175r466,-1193r80,0r473,1224v30,88,101,134,209,144r0,71r-591,0r0,-71v52,-3,95,-11,130,-20v57,-15,60,-37,43,-82r-118,-318r-497,0v-19,47,-34,87,-46,122r-31,96v-9,29,-13,52,-18,70xm849,-580r-215,-550r-211,550r426,0","w":1374},"\u0411":{"d":"694,-79v211,0,312,-136,312,-356v0,-186,-143,-300,-334,-297r-171,4r0,520v6,109,62,129,193,129xm501,-816v390,-20,753,26,753,398v0,222,-136,341,-310,394v-57,16,-116,24,-177,24r-672,0r0,-71v61,-7,160,-13,180,-61v7,-16,13,-36,13,-61r0,-1020v6,-106,-98,-123,-186,-135r0,-71r1066,0r0,347r-75,0v-19,-85,-127,-249,-213,-260v-110,-13,-254,-7,-379,-8r0,524","w":1334},"\u0412":{"d":"1170,-1110v0,216,-158,299,-337,344r0,9v215,33,415,124,415,371v0,209,-140,312,-306,362v-56,17,-115,24,-175,24r-672,0r0,-71v61,-7,160,-13,180,-61v7,-16,13,-36,13,-61r0,-1020v6,-106,-98,-123,-186,-135r0,-71r655,0v173,1,305,53,375,163v25,40,38,89,38,146xm628,-791v201,0,303,-98,301,-299v-2,-164,-91,-252,-266,-250r-162,4r0,545r127,0xm694,-79v207,-1,309,-128,307,-343v-1,-178,-132,-293,-326,-288r-174,4r0,500v2,95,87,127,193,127","w":1339},"\u0413":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1093,0r0,397r-75,0v-24,-99,-83,-202,-144,-269v-52,-57,-154,-49,-255,-49r-204,0r0,1138v-4,111,122,121,222,131r0,71r-637,0r0,-71v30,-2,124,-9,145,-18v38,-17,56,-49,57,-100r0,-1024","w":1195},"\u0414":{"d":"885,-87v63,0,93,-28,93,-90r0,-1158r-398,0v4,471,-138,957,-315,1248r620,0xm1191,-185v-8,111,97,99,202,99r0,417r-75,0v-25,-103,-77,-217,-139,-290v-22,-25,-47,-44,-77,-44r-802,0v-129,39,-182,208,-226,334r-75,0r0,-418r138,0v144,-206,320,-718,320,-1055v0,-131,-29,-178,-144,-194v-36,-5,-62,-10,-79,-12r0,-71r1143,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1038","w":1479},"\u0415":{"d":"288,-1213v9,-111,-112,-121,-202,-135r0,-71r1098,0r0,342r-75,0v-18,-83,-128,-245,-213,-255v-115,-13,-265,-6,-395,-8r0,564v87,-2,214,8,273,-14v75,-28,108,-127,120,-218r75,0r0,555r-75,0v-11,-98,-47,-208,-128,-230v-66,-18,-179,-10,-265,-12r0,426v-2,112,18,174,115,181v133,9,359,27,442,-41v52,-43,140,-222,161,-289r72,0r-27,418r-1178,0r0,-71v30,-2,125,-12,145,-22v40,-19,56,-46,57,-100r0,-1020","w":1338},"\u0416":{"d":"1868,-1188v-97,0,-126,-73,-160,-137v-119,83,-123,290,-194,422v-32,60,-70,118,-121,163r0,14v149,43,240,138,303,274r117,251v34,96,108,126,227,130r0,71r-391,0v-27,-77,-54,-148,-80,-212v-54,-128,-131,-323,-213,-388v-57,-45,-140,-58,-242,-54r0,454v-7,104,98,119,190,129r0,71r-588,0r0,-71v71,-7,150,-6,172,-57v8,-18,14,-37,14,-61r0,-465v-242,-6,-289,67,-377,257v-52,113,-116,275,-160,397r-389,0r0,-71v65,-10,139,-8,176,-47v45,-48,71,-127,108,-202v53,-108,105,-240,186,-310v49,-43,107,-77,177,-96r0,-14v-133,-106,-167,-305,-232,-479v-17,-44,-45,-82,-83,-106v-36,61,-60,137,-160,137v-67,0,-103,-56,-104,-114v-2,-132,174,-154,284,-108v177,74,217,319,284,499v31,83,99,169,210,174r80,0r0,-476v6,-105,-99,-121,-186,-135r0,-71r588,0r0,71v-64,8,-159,13,-178,64v-7,19,-12,39,-12,61r0,486v98,6,169,-9,218,-63v125,-139,128,-414,264,-546v49,-47,117,-86,207,-86v97,0,169,38,169,130v0,68,-32,114,-104,114","w":2016},"\u0417":{"d":"637,-1450v249,0,465,96,465,329v0,210,-158,299,-342,348r0,13v159,8,297,74,361,184v25,43,39,96,39,163v3,356,-458,525,-831,417v-154,-45,-278,-133,-287,-311v-4,-72,42,-142,117,-142v78,0,125,42,128,110v1,37,-27,139,-34,165v58,70,159,122,293,122v228,0,368,-118,368,-355v0,-191,-105,-290,-307,-288r-144,0r0,-107r106,0v208,0,291,-107,291,-313v0,-161,-80,-250,-244,-250v-272,0,-341,232,-397,452r-82,0r8,-506r80,0r42,68v83,-51,231,-99,370,-99","w":1248},"\u0418":{"d":"1388,-200v-9,105,97,119,186,129r0,71r-587,0r0,-71v101,-7,192,-7,192,-118r0,-885r-686,856v-18,125,94,136,192,147r0,71r-587,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r587,0r0,71v-64,8,-158,13,-177,64v-7,19,-11,39,-11,61r0,863r686,-855v7,-108,-110,-117,-196,-133r0,-71r587,0r0,71v-63,8,-156,13,-174,64v-8,19,-12,39,-12,61r0,1023","w":1676},"\u0419":{"d":"1388,-200v-9,105,97,119,186,129r0,71r-587,0r0,-71v101,-7,192,-7,192,-118r0,-885r-686,856v-18,125,94,136,192,147r0,71r-587,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r587,0r0,71v-64,8,-158,13,-177,64v-7,19,-11,39,-11,61r0,863r686,-855v7,-108,-110,-117,-196,-133r0,-71r587,0r0,71v-63,8,-156,13,-174,64v-8,19,-12,39,-12,61r0,1023xm637,-1650v91,89,334,83,425,0v-10,-25,-35,-84,-35,-120v0,-65,50,-98,106,-98v90,0,122,109,79,191v-35,67,-100,108,-178,135v-85,29,-276,30,-366,0v-108,-36,-193,-91,-201,-212v-4,-62,39,-115,98,-114v58,1,107,31,107,98v0,43,-23,88,-35,120","w":1676},"\u041a":{"d":"1275,-1188v-97,0,-126,-73,-160,-137v-119,88,-126,290,-200,422v-33,59,-71,118,-122,163r0,14v155,43,244,136,308,274r117,251v39,106,104,122,227,130r0,71r-391,0v-27,-77,-54,-148,-80,-212v-54,-128,-134,-326,-216,-389v-60,-46,-150,-57,-257,-53r0,454v-7,104,98,119,190,129r0,71r-589,0r0,-71v71,-7,150,-6,172,-57v8,-18,14,-37,14,-61r0,-1024v6,-105,-99,-121,-186,-135r0,-71r589,0r0,71v-64,8,-159,13,-178,64v-7,19,-12,39,-12,61r0,486v63,-2,119,7,165,-16v202,-104,175,-442,337,-593v50,-46,117,-86,207,-86v97,0,169,38,169,130v0,68,-32,114,-104,114","w":1423},"\u041b":{"d":"92,-250v94,0,130,71,167,126v133,-126,207,-373,253,-612v26,-136,48,-364,18,-508v-17,-83,-120,-87,-211,-104r0,-71r1128,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1146r-382,0v2,413,-53,775,-169,1036v-48,108,-103,187,-163,240v-60,53,-119,79,-180,79v-99,0,-176,-57,-176,-142v0,-60,45,-128,114,-128","w":1549},"\u041c":{"d":"1611,-200v-8,107,102,120,195,129r0,71r-627,0r0,-71v39,-1,137,-9,161,-24v37,-24,59,-49,60,-105r0,-1032r-15,0r-484,1209r-50,0r-461,-1234r-13,0r0,847v7,185,3,284,154,319v46,11,76,19,90,20r0,71r-573,0r0,-71v105,-11,202,-31,219,-134v6,-39,13,-103,13,-194r0,-726v5,-155,-85,-215,-223,-223r0,-71r484,0r406,1064r347,-890v18,-44,42,-129,47,-174r463,0r0,71v-64,8,-162,12,-181,64v-7,19,-12,39,-12,61r0,1023","w":1899},"\u041d":{"d":"1381,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-505r-667,0r0,494v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,440r667,0r0,-430v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023","w":1669},"\u041e":{"d":"762,-1453v329,0,532,190,629,439v71,180,71,435,-1,613v-100,247,-300,435,-628,435v-335,0,-533,-192,-630,-446v-70,-181,-68,-430,2,-604v100,-245,302,-437,628,-437xm762,-55v249,0,366,-185,414,-396v55,-246,19,-579,-86,-733v-69,-101,-171,-180,-328,-180v-259,0,-371,185,-416,408v-69,342,-3,725,220,852v55,32,120,49,196,49","w":1524},"\u041f":{"d":"1367,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1140r-653,0r0,1129v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r1455,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023","w":1655},"\u0420":{"d":"739,-1419v241,-4,446,125,445,350v-1,236,-148,364,-331,420v-103,32,-223,26,-352,26r0,430v1,81,40,107,123,115v30,3,58,6,83,7r0,71r-609,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-1024v-1,-54,-12,-89,-57,-105v-42,-15,-94,-22,-140,-26r0,-71r648,0xm603,-710v215,1,333,-110,333,-309v0,-196,-90,-320,-294,-318r-141,0r0,627r102,0","w":1249},"\u0421":{"d":"1289,-359v-100,249,-259,392,-566,392v-309,0,-497,-186,-592,-423v-70,-176,-70,-436,-1,-614v97,-252,294,-446,624,-446v150,0,254,41,352,99r41,-68r80,0r9,506r-82,0v-55,-212,-131,-452,-388,-452v-335,0,-449,300,-449,655v0,278,106,481,285,582v58,33,123,48,195,48v233,0,349,-143,417,-315","w":1315},"\u0422":{"d":"1251,-1034r-69,0v-28,-95,-89,-195,-150,-260v-61,-65,-172,-39,-292,-47r0,1135v6,86,47,106,138,122v39,7,69,12,90,13r0,71r-670,0r0,-71v32,-3,141,-13,165,-23v42,-18,64,-46,64,-103r0,-1144r-135,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1236,0r0,385","w":1267},"\u0423":{"d":"265,-251v99,2,127,93,167,153v114,-33,163,-128,223,-227r-275,-526r-192,-362v-38,-73,-117,-128,-223,-135r0,-71r598,0r0,71v-42,2,-81,9,-119,14v-72,10,-57,49,-36,90r362,695r124,-277r107,-251v37,-99,51,-119,60,-190v-17,-70,-119,-70,-197,-81r0,-71r530,0r0,71v-75,7,-157,36,-188,88v-172,289,-347,812,-529,1077v-61,88,-132,155,-223,188v-127,46,-296,-9,-298,-132v-1,-64,45,-126,109,-124","w":1345},"\u0424":{"d":"681,-1132v-309,-18,-408,233,-367,532v14,101,96,225,184,262v54,23,114,38,183,38r0,-832xm889,-300v299,2,424,-259,360,-558v-37,-172,-140,-284,-360,-274r0,832xm1081,-1363v-92,6,-200,11,-193,115r0,37v291,-3,495,93,580,291v54,125,42,291,-14,406v-94,192,-288,291,-566,295r0,45v-9,109,106,107,204,114r0,70r-601,0r0,-70v28,-3,112,-11,133,-19v50,-20,62,-68,58,-140v-278,-2,-476,-104,-568,-295v-54,-112,-66,-284,-14,-406v83,-194,292,-295,582,-291v17,-128,-95,-139,-193,-152r0,-70r592,0r0,70","w":1570},"\u0425":{"d":"684,-1348v-54,3,-177,10,-183,53v28,102,110,204,162,292v27,46,64,98,105,157v75,-102,140,-194,195,-276v55,-82,82,-135,82,-160v0,-21,-12,-37,-37,-47v-25,-10,-68,-16,-127,-19r0,-71r529,0r0,71v-83,1,-175,36,-210,80r-69,84r-147,194r-163,220r367,536v31,48,94,113,136,141v27,18,93,20,133,22r0,71r-664,0r0,-71v55,-1,100,-5,133,-15v67,-21,59,-42,27,-104v-74,-144,-176,-286,-263,-421v-59,77,-125,170,-200,279v-75,109,-112,174,-112,193v0,22,10,39,30,49v20,10,66,16,135,19r0,71r-530,0r0,-71v38,-3,105,-11,133,-26v69,-38,102,-77,147,-137r341,-459r-340,-495v-63,-89,-83,-130,-200,-152v-28,-4,-50,-7,-67,-8r0,-71r657,0r0,71","w":1455},"\u0426":{"d":"1367,-182v-8,111,97,99,202,99r0,417r-75,0v-25,-103,-77,-217,-139,-290v-22,-25,-47,-44,-77,-44r-1180,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r583,0r0,71v-62,8,-155,13,-171,64v-6,19,-9,39,-9,61r0,1027v3,65,40,111,121,111r328,2v54,-5,159,10,186,-25v12,-14,18,-36,18,-67r0,-1038v6,-105,-97,-122,-184,-135r0,-71r583,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1041","w":1655},"\u0427":{"d":"701,-671v109,-2,252,-33,331,-72r0,-470v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-469v-116,56,-241,115,-405,115v-273,0,-406,-107,-406,-377r0,-293v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-156,13,-172,64v-27,86,-7,212,-12,317v-9,192,69,299,265,296","w":1533},"\u0428":{"d":"1941,-200v-8,105,100,119,190,129r0,71r-2037,0r0,-71v101,-7,194,-7,194,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r579,0r0,71v-62,8,-153,13,-169,64v-6,19,-9,39,-9,61r0,1037v-4,131,159,96,279,104v92,-14,231,39,231,-83r0,-1048v6,-104,-96,-122,-182,-135r0,-71r571,0r0,71v-62,8,-152,13,-168,64v-6,19,-10,39,-10,61r0,1037v-5,127,151,104,268,104v72,0,179,11,224,-20v13,-9,18,-32,18,-63r0,-1048v6,-104,-96,-122,-182,-135r0,-71r579,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1023","w":2249},"\u0429":{"d":"1941,-182v-8,111,97,99,202,99r0,417r-75,0v-25,-103,-77,-217,-139,-290v-22,-25,-47,-44,-77,-44r-1758,0r0,-71v101,-7,194,-7,194,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r579,0r0,71v-62,8,-153,13,-169,64v-6,19,-9,39,-9,61r0,1037v-4,131,159,96,279,104v92,-14,231,39,231,-83r0,-1048v6,-104,-96,-122,-182,-135r0,-71r571,0r0,71v-62,8,-152,13,-168,64v-6,19,-10,39,-10,61r0,1037v-5,127,151,104,268,104v72,0,179,11,224,-20v13,-9,18,-32,18,-63r0,-1048v6,-104,-96,-122,-182,-135r0,-71r579,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,1041","w":2249},"\u042a":{"d":"943,-79v211,0,312,-136,312,-356v0,-186,-143,-300,-334,-297r-171,4r0,520v6,109,62,129,193,129xm750,-816v390,-20,753,26,753,398v0,222,-137,341,-311,394v-57,16,-115,24,-176,24r-692,0r0,-71v31,-2,132,-14,152,-24v39,-18,60,-45,61,-98r0,-1147r-151,2v-108,2,-135,11,-202,97v-43,57,-75,117,-94,182r-75,0r0,-360r939,0r0,71v-66,9,-172,12,-192,66v-7,19,-12,40,-12,63r0,403","w":1561},"\u042b":{"d":"694,-79v208,0,308,-138,308,-356v0,-184,-141,-300,-330,-297r-171,4r0,520v6,109,62,129,193,129xm501,-816v387,-20,749,27,749,398v0,222,-136,340,-310,393v-56,17,-114,25,-173,25r-672,0r0,-71v61,-7,160,-13,180,-61v7,-16,13,-36,13,-61r0,-1016v7,-108,-103,-123,-190,-139r0,-71r601,0r0,71v-65,9,-165,14,-185,67v-7,20,-13,40,-13,62r0,403xm1694,-200v-9,105,97,119,186,129r0,71r-589,0r0,-71v100,-7,190,-8,190,-118r0,-1024v4,-104,-102,-122,-190,-135r0,-71r589,0r0,71v-63,8,-156,13,-174,64v-8,19,-12,39,-12,61r0,1023","w":1982},"\u042c":{"d":"694,-79v211,0,312,-136,312,-356v0,-186,-143,-300,-334,-297r-171,4r0,520v6,109,62,129,193,129xm501,-816v390,-20,753,26,753,398v0,222,-136,341,-310,394v-57,16,-116,24,-177,24r-672,0r0,-71v61,-7,160,-13,180,-61v7,-16,13,-36,13,-61r0,-1016v7,-108,-103,-123,-190,-139r0,-71r601,0r0,71v-65,9,-165,14,-185,67v-7,20,-13,40,-13,62r0,403","w":1312},"\u042d":{"d":"243,-1351v148,-93,450,-136,644,-51v234,103,381,316,381,650v0,364,-165,612,-416,730v-203,95,-549,56,-686,-53v-68,-54,-117,-116,-120,-213v-2,-81,40,-142,120,-142v78,0,116,49,118,117v1,38,-15,134,-21,163v67,56,148,102,280,98v258,-8,391,-179,455,-394v26,-84,39,-183,41,-298v-83,53,-149,124,-275,126v-133,2,-199,-78,-329,-78v-65,0,-94,31,-136,60r-43,-54v66,-66,171,-144,283,-146v132,-3,193,74,320,76v81,1,130,-29,179,-64v-7,-175,-50,-307,-124,-402v-103,-132,-299,-181,-464,-101v-144,70,-214,236,-250,414r-82,0r7,-506r79,0","w":1347},"\u042e":{"d":"288,-1213v4,-104,-102,-122,-190,-135r0,-71r587,0r0,71v-63,8,-157,13,-175,64v-8,19,-11,39,-11,61r0,442r280,0v27,-312,180,-525,417,-625v158,-67,349,-63,502,6v245,110,405,343,405,692v0,348,-164,581,-409,690v-159,71,-366,69,-521,-2v-238,-110,-387,-335,-396,-672r-278,0r0,492v-9,105,97,119,186,129r0,71r-587,0r0,-71v100,-7,190,-8,190,-118r0,-1024xm1435,-55v247,0,358,-182,401,-395v67,-337,9,-741,-216,-867v-109,-61,-285,-60,-384,7v-160,108,-226,333,-226,602v0,278,66,496,234,604v53,34,117,49,191,49","w":2183},"\u042f":{"d":"576,-696v-189,-43,-347,-128,-347,-355v0,-252,196,-368,450,-368r657,0r0,71v-65,9,-166,13,-185,67v-7,20,-12,40,-12,62r0,1026v0,81,38,107,121,115v30,3,55,6,76,7r0,71r-600,0r0,-71v28,-3,113,-11,133,-20v38,-18,57,-48,57,-102r0,-450v-108,-2,-213,4,-272,47v-72,53,-166,277,-212,389v-23,57,-50,126,-79,207r-389,0r0,-71v62,-10,141,-6,174,-45v107,-124,152,-377,276,-483v40,-35,91,-62,152,-83r0,-14xm471,-1038v0,199,127,309,321,309r134,0r0,-609r-172,0v-173,-3,-283,127,-283,300","w":1427},"\u0430":{"d":"843,-689r-6,495v-2,96,67,118,169,112r0,64v-58,19,-93,37,-163,38v-106,0,-167,-52,-184,-143r-6,0v-82,87,-163,144,-319,148v-181,5,-299,-164,-238,-348v29,-86,108,-140,191,-172v30,-11,91,-32,183,-63v92,-31,153,-55,185,-72v8,-165,-21,-309,-189,-311v-54,0,-117,23,-141,48v0,30,21,95,19,131v-3,53,-55,93,-119,93v-100,0,-122,-134,-65,-203v65,-78,180,-138,319,-142v239,-6,366,87,364,325xm281,-246v0,159,169,197,279,126v36,-23,66,-50,91,-81r6,-345v-144,44,-275,80,-347,190v-20,30,-29,67,-29,110","w":1032},"\u0431":{"d":"555,-46v163,0,230,-141,258,-280v42,-210,9,-480,-123,-570v-67,-46,-195,-42,-262,3v-201,137,-197,693,0,815v34,21,76,32,127,32xm185,-729v57,-145,189,-282,381,-279v309,5,470,194,470,504v0,242,-115,414,-284,492v-109,50,-271,59,-388,5v-196,-90,-288,-300,-289,-593v-1,-200,30,-356,76,-502v55,-173,179,-312,384,-324r275,-16v74,-9,118,-39,161,-95r57,41r-60,78v-40,52,-66,77,-104,118v-49,53,-137,39,-234,49v-93,10,-164,2,-226,37v-152,86,-202,276,-227,483","w":1107},"\u0432":{"d":"537,-68v157,0,248,-69,248,-222v0,-130,-107,-192,-251,-190r-131,4r0,326v3,63,58,82,134,82xm708,-518v145,24,277,77,277,243v0,206,-180,275,-390,275r-521,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r495,-2v192,3,365,37,369,224v3,141,-101,209,-223,235r0,11xm500,-554v149,0,233,-56,233,-202v0,-167,-168,-169,-330,-158r0,360r97,0","w":1061},"\u0433":{"d":"405,-178v-2,92,83,105,166,112r0,66r-497,0r0,-66v80,-3,145,-15,145,-102r0,-640v2,-88,-80,-105,-158,-112r0,-66r822,0r0,327r-62,0v-24,-71,-72,-160,-117,-213v-40,-47,-116,-39,-193,-39r-106,0r0,733","w":901},"\u0434":{"d":"264,-4v-87,19,-168,189,-185,293r-72,0r0,-370r105,0v109,-131,243,-480,246,-693v1,-96,-35,-118,-116,-134v-29,-6,-52,-10,-70,-12r0,-66r898,0r0,66v-81,3,-145,15,-145,102r0,639v2,78,23,97,107,98r64,0r0,370r-72,0v-21,-107,-88,-270,-179,-293r-581,0xm464,-904v-6,333,-98,624,-238,823r431,0v53,0,82,-15,82,-63r0,-760r-275,0","w":1146},"\u0435":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0","w":990},"\u0436":{"d":"1455,-778v-82,-4,-88,-45,-142,-102v-57,64,-65,208,-117,282v-24,34,-48,63,-81,84r0,13v186,32,233,187,299,339v30,69,97,90,183,96r0,66r-332,0v-46,-156,-101,-324,-205,-412v-39,-33,-94,-44,-163,-42r0,278v-1,86,70,104,149,110r0,66r-473,0r0,-66v81,0,142,-14,142,-100r0,-288v-160,-2,-205,62,-266,178v-52,99,-67,159,-104,276r-330,0r0,-66v50,-9,116,-9,145,-38v50,-50,72,-141,110,-210v53,-97,104,-162,227,-187r0,-13v-96,-59,-125,-183,-162,-298v-11,-34,-23,-57,-36,-68v-58,60,-60,96,-142,102v-60,4,-105,-44,-104,-102v2,-79,55,-120,148,-118v98,2,124,21,179,82v103,114,63,380,276,387r59,0r0,-281v2,-85,-73,-105,-149,-110r0,-66r473,0r0,66v-83,1,-142,14,-142,100r0,291v125,10,192,-37,227,-128v34,-90,51,-193,108,-259v49,-58,88,-80,179,-82v91,-2,146,41,148,118v2,58,-45,105,-104,102","w":1612},"\u0437":{"d":"605,-529v157,11,278,77,282,244v7,304,-495,395,-729,235v-56,-38,-97,-92,-97,-175v0,-62,33,-103,99,-103v62,0,108,40,110,90v1,36,-16,104,-23,131v38,37,112,59,193,59v140,0,245,-91,242,-237v-3,-134,-81,-193,-224,-192r-105,0r0,-93r86,0v156,0,209,-59,216,-207v7,-142,-161,-197,-278,-135v-92,49,-153,158,-190,263r-67,0r6,-357r67,0r36,55v103,-56,324,-86,458,-37v113,42,202,134,159,276v-29,97,-125,146,-241,170r0,13","w":970},"\u0438":{"d":"1035,-178v-3,89,71,104,149,112r0,66r-479,0r0,-66v81,-3,148,-16,148,-102r0,-518r-454,491v-8,101,68,121,154,129r0,66r-479,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r479,0r0,66v-81,3,-145,15,-145,102r0,510r454,-492v5,-98,-74,-110,-154,-120r0,-66r479,0r0,66v-81,3,-145,15,-145,102r0,640","w":1254},"\u0439":{"d":"1035,-178v-3,89,71,104,149,112r0,66r-479,0r0,-66v81,-3,148,-16,148,-102r0,-518r-454,491v-8,101,68,121,154,129r0,66r-479,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r479,0r0,66v-81,3,-145,15,-145,102r0,510r454,-492v5,-98,-74,-110,-154,-120r0,-66r479,0r0,66v-81,3,-145,15,-145,102r0,640xm866,-1500v85,0,123,102,80,183v-56,105,-151,159,-318,158v-161,0,-265,-55,-316,-159v-40,-81,-4,-182,80,-182v53,0,101,32,101,94v0,34,-22,95,-31,116v61,86,271,85,335,0v-9,-23,-31,-83,-31,-116v0,-61,48,-94,100,-94","w":1254},"\u043a":{"d":"970,-777v-83,-4,-87,-45,-141,-100v-29,26,-53,125,-70,167v-38,94,-67,149,-135,196r0,13v187,32,240,185,305,339v32,76,101,85,189,96r0,66r-339,0v-46,-157,-100,-325,-207,-412v-41,-34,-98,-44,-169,-42r0,276v-1,87,73,104,152,112r0,66r-481,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r481,0r0,66v-81,3,-145,15,-145,102r0,289v128,11,195,-37,234,-128v63,-145,85,-339,288,-341v90,-1,147,39,149,116v1,57,-44,108,-104,105","w":1129},"\u043b":{"d":"971,-178v-3,89,71,104,149,112r0,66r-482,0r0,-66v80,-3,147,-16,147,-102r0,-736r-274,0v2,287,-38,530,-122,707v-54,115,-127,208,-257,217v-86,6,-146,-51,-146,-125v0,-50,36,-103,92,-100v70,3,105,45,142,91v84,-90,137,-271,165,-426v15,-82,35,-228,6,-311v-18,-52,-111,-59,-173,-69r0,-66r898,0r0,66v-81,3,-145,15,-145,102r0,640","w":1190},"\u043c":{"d":"1246,-178v-3,89,71,104,149,112r0,66r-483,0r0,-66v81,-2,150,-18,150,-102r0,-714r-24,0r-334,866r-62,0r-314,-883r-22,0r0,691v-5,107,58,136,152,142r0,66r-384,0r0,-66v58,-4,115,-6,132,-52v7,-20,13,-46,13,-80r0,-600v4,-93,-71,-115,-152,-122r0,-66r410,0r247,706r218,-585v9,-26,32,-95,35,-121r414,0r0,66v-81,3,-145,15,-145,102r0,640","w":1465},"\u043d":{"d":"1028,-178v-3,89,71,104,149,112r0,66r-482,0r0,-66v81,-3,148,-16,148,-102r0,-314r-439,0r0,304v-1,87,73,104,152,112r0,66r-482,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r482,0r0,66v-81,3,-145,15,-145,102r0,254r439,0r0,-244v1,-86,-76,-105,-152,-112r0,-66r482,0r0,66v-81,3,-145,15,-145,102r0,640","w":1247},"\u043e":{"d":"557,-1014v281,0,482,217,476,511v-5,240,-116,422,-287,494v-113,48,-267,54,-383,3v-173,-76,-289,-237,-293,-483v-4,-297,195,-525,487,-525xm766,-801v-37,-77,-102,-137,-211,-137v-272,0,-310,343,-263,610v26,148,92,277,263,282v284,7,331,-506,211,-755","w":1104},"\u043f":{"d":"1013,-178v-3,89,71,104,149,112r0,66r-482,0r0,-66v80,-3,147,-16,147,-102r0,-736r-422,0r0,726v0,86,72,104,151,112r0,66r-482,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r1091,0r0,66v-81,3,-145,15,-145,102r0,640","w":1232},"\u0440":{"d":"391,-873v59,-69,166,-140,282,-140v214,0,331,143,391,307v45,123,45,304,-6,424v-72,170,-203,301,-426,308v-107,3,-182,-27,-239,-67r-8,0r0,296v-7,108,108,111,199,122r0,67r-551,0r0,-67v63,-5,133,-4,154,-50v8,-17,12,-36,12,-59r0,-1049v-3,-90,-73,-128,-166,-130r0,-65r336,-22r14,12r0,111xm385,-209v38,88,105,162,230,162v254,0,307,-326,257,-591v-27,-145,-104,-260,-271,-264v-103,-3,-167,54,-216,110r0,583","w":1170},"\u0441":{"d":"925,-230v-72,134,-216,253,-397,256v-294,4,-461,-220,-456,-523v4,-234,111,-390,275,-473v203,-103,529,-24,521,215v-2,67,-31,127,-103,127v-68,0,-121,-40,-124,-97v-2,-48,23,-125,26,-162v-34,-61,-153,-66,-221,-31v-117,61,-168,220,-168,413v0,219,102,421,299,421v154,0,216,-80,284,-188","w":930},"\u0442":{"d":"234,-66v82,-3,155,-11,155,-102r0,-744v-75,10,-147,-10,-191,39v-48,54,-89,131,-115,203r-61,0r0,-316r920,0r0,316r-61,0v-25,-72,-69,-151,-115,-204v-40,-46,-116,-33,-191,-38r0,734v-1,90,79,105,161,112r0,66r-502,0r0,-66","w":964},"\u0443":{"d":"242,430v-104,42,-244,-8,-245,-108v-1,-61,39,-113,96,-113v89,1,119,73,155,127v72,-38,190,-252,220,-341r-172,-424r-161,-387v-21,-58,-90,-93,-154,-104r0,-66r450,0r0,70v-33,5,-130,6,-109,59r247,613r93,-222r129,-322v9,-22,13,-42,13,-58v-1,-40,-91,-72,-132,-76r0,-64r366,0r0,62v-54,12,-128,61,-152,118r-352,837v-69,151,-118,251,-209,342v-29,29,-58,47,-83,57","w":1008},"\u0444":{"d":"864,-962v39,-14,116,-43,172,-41v215,6,338,126,398,292v44,123,43,307,-2,430v-63,170,-180,290,-396,297v-68,2,-123,-24,-172,-41r0,280v-6,104,102,111,189,122r0,67r-551,0r0,-67v64,-6,144,-2,164,-50v8,-17,12,-36,12,-59r0,-293v-57,18,-93,44,-172,41v-212,-6,-337,-126,-397,-292v-45,-122,-44,-300,-1,-425v59,-169,185,-294,398,-302v69,-2,121,24,172,41r0,-293v0,-95,-74,-125,-166,-130r0,-65r338,-22r14,12r0,498xm864,-114v45,32,64,54,143,51v211,-9,256,-211,256,-435v0,-227,-44,-418,-256,-426v-70,-3,-102,21,-143,51r0,759xm430,-88v76,44,198,24,248,-26r0,-759v-52,-48,-170,-71,-246,-26v-113,67,-153,220,-153,409v1,190,36,335,151,402","w":1542},"\u0445":{"d":"728,-850v24,-52,-59,-63,-96,-72r0,-64r364,0r0,62v-145,30,-199,117,-272,212r-127,168r148,210v59,78,104,179,179,238v23,18,57,27,98,30r0,66r-452,0r0,-66v53,-8,134,-2,98,-64v-61,-104,-130,-197,-195,-296v-35,43,-67,85,-96,126r-92,131v-7,10,-22,34,-22,49v0,42,58,50,114,56r0,64r-365,0r0,-62v140,-34,195,-134,272,-229r144,-190r-246,-354v-36,-49,-70,-86,-154,-85r0,-66r429,0r0,66v-38,2,-116,-3,-88,42r184,279r167,-234v3,-5,5,-10,8,-17","w":1034},"\u0446":{"d":"1112,292v-20,-106,-88,-269,-179,-292r-859,0r0,-66v80,-3,145,-15,145,-102r0,-640v4,-87,-73,-105,-149,-112r0,-66r482,0r0,66v-82,3,-147,17,-147,102r0,644v-9,122,122,99,227,99v59,0,157,11,186,-21v6,-12,9,-32,9,-60r0,-652v1,-85,-74,-105,-151,-112r0,-66r482,0r0,66v-81,3,-145,15,-145,102r0,642v2,78,23,97,107,98r64,0r0,370r-72,0","w":1234},"\u0447":{"d":"953,-178v-3,89,71,104,149,112r0,66r-483,0r0,-66v81,-3,148,-16,148,-102r0,-262v-103,40,-160,77,-292,77v-200,0,-304,-68,-304,-259r0,-196v2,-87,-76,-105,-152,-112r0,-66r482,0r0,66v-81,3,-144,14,-144,102r0,156v1,141,49,201,189,201v77,0,155,-15,221,-39r0,-308v1,-86,-76,-105,-152,-112r0,-66r483,0r0,66v-81,3,-145,15,-145,102r0,640","w":1172},"\u0448":{"d":"1549,-178v-3,91,73,104,153,112r0,66r-1632,0r0,-66v81,-3,149,-13,149,-102r0,-640v4,-87,-73,-105,-149,-112r0,-66r472,0r0,66v-56,5,-109,6,-126,47v-7,17,-11,36,-11,55r0,644v-7,130,141,98,262,98v31,0,106,2,115,-21v5,-12,9,-31,9,-59r0,-652v5,-87,-67,-105,-141,-112r0,-66r465,0r0,66v-55,6,-111,4,-128,46v-7,17,-10,36,-10,56r0,646v-5,129,140,96,263,96v39,0,103,2,114,-21v6,-11,9,-31,9,-59r0,-652v5,-87,-67,-105,-141,-112r0,-66r472,0r0,66v-81,3,-145,15,-145,102r0,640","w":1768},"\u0449":{"d":"1648,292v-18,-94,-88,-292,-179,-292r-1399,0r0,-66v81,-3,149,-13,149,-102r0,-640v4,-87,-73,-105,-149,-112r0,-66r472,0r0,66v-56,5,-109,6,-126,47v-7,17,-11,36,-11,55r0,644v-7,130,141,98,262,98v31,0,106,2,115,-21v5,-12,9,-31,9,-59r0,-652v5,-87,-67,-105,-141,-112r0,-66r465,0r0,66v-55,6,-111,4,-128,46v-7,17,-10,36,-10,56r0,646v-5,129,140,96,263,96v39,0,103,2,114,-21v6,-11,9,-31,9,-59r0,-652v5,-87,-67,-105,-141,-112r0,-66r472,0r0,66v-81,3,-145,15,-145,102r0,642v2,78,23,97,107,98r64,0r0,370r-72,0","w":1770},"\u044a":{"d":"709,-68v155,0,228,-90,228,-240v0,-123,-99,-203,-239,-203v-50,0,-92,6,-130,7r0,352v5,71,52,84,141,84xm568,-583v284,-14,571,2,571,280v0,165,-111,246,-242,285v-44,12,-90,18,-138,18r-530,0r0,-66v82,-3,155,-11,155,-102r0,-744v-76,10,-152,-12,-196,38v-50,56,-89,130,-115,202r-61,0r0,-314r717,0r0,66v-60,5,-130,2,-149,46v-8,17,-12,35,-12,56r0,235","w":1183},"\u044b":{"d":"544,-68v155,0,228,-90,228,-240v0,-123,-99,-203,-239,-203v-50,0,-92,6,-130,7r0,352v5,71,52,84,141,84xm403,-583v284,-14,571,2,571,280v0,165,-111,246,-242,285v-44,12,-90,18,-138,18r-520,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r497,0r0,66v-60,5,-130,2,-149,46v-8,17,-12,35,-12,56r0,235xm1333,-178v-3,89,71,104,149,112r0,66r-481,0r0,-66v80,-3,146,-17,146,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r483,0r0,66v-81,3,-145,15,-145,102r0,640","w":1552},"\u044c":{"d":"544,-68v155,0,228,-90,228,-240v0,-123,-99,-203,-239,-203v-50,0,-92,6,-130,7r0,352v5,71,52,84,141,84xm403,-583v284,-14,571,2,571,280v0,165,-111,246,-242,285v-44,12,-90,18,-138,18r-520,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r497,0r0,66v-60,5,-130,2,-149,46v-8,17,-12,35,-12,56r0,235","w":1018},"\u044d":{"d":"223,-966v115,-57,330,-65,450,-8v154,73,251,220,251,438v0,252,-111,436,-284,520v-135,65,-386,49,-487,-30v-51,-40,-92,-92,-92,-170v0,-62,33,-103,99,-103v60,0,108,41,110,91v1,36,-16,94,-23,122v61,58,214,80,305,26v116,-69,174,-209,175,-394r-396,0r0,-93r398,0v-4,-212,-61,-371,-256,-371v-170,0,-241,141,-288,272r-67,0r6,-347r68,0","w":996},"\u044e":{"d":"1078,-46v215,0,261,-227,261,-455v0,-173,-35,-323,-135,-399v-66,-50,-194,-47,-259,2v-193,145,-176,686,7,816v33,24,75,36,126,36xm615,-564v21,-254,193,-453,465,-450v234,3,371,130,434,306v71,199,13,468,-91,580v-84,91,-188,160,-358,158v-220,-3,-352,-130,-416,-298v-23,-62,-36,-134,-37,-214r-209,0r0,304v-1,87,73,104,152,112r0,66r-481,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r481,0r0,66v-81,3,-145,15,-145,102r0,254r212,0","w":1617},"\u044f":{"d":"362,-721v2,171,162,213,355,203r0,-397r-112,0v-133,0,-244,62,-243,194xm903,-178v-3,89,71,104,149,112r0,66r-483,0r0,-66v81,-3,148,-16,148,-102r0,-277v-172,-5,-227,42,-288,169v-47,98,-70,166,-104,276r-337,0r0,-66v87,-11,157,-22,189,-96v55,-127,103,-267,238,-314r0,-6v-154,-31,-258,-92,-258,-248v0,-173,186,-256,376,-256r515,0r0,66v-81,3,-145,15,-145,102r0,640","w":1122},"\u0451":{"d":"600,-84v154,0,209,-71,278,-191r70,43v-74,141,-206,258,-405,258v-317,0,-471,-212,-471,-527v0,-224,105,-388,262,-469v56,-29,119,-44,189,-44v292,3,414,184,401,490r-653,0v3,251,83,440,329,440xm727,-608v-4,-168,-35,-331,-206,-331v-161,0,-247,152,-250,331r456,0xm744,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm314,-1487v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123","w":990},"\u0452":{"d":"511,217v92,5,115,70,161,143v50,0,88,-31,108,-94v57,-180,36,-535,36,-788v0,-122,6,-253,-54,-316v-35,-36,-73,-56,-121,-56v-125,2,-212,69,-256,149r0,567v-1,87,72,104,152,112r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-1002r-243,0r0,-85r243,0v4,-107,-13,-191,-119,-199v-30,-2,-55,-6,-74,-7r0,-64r365,-23r14,15r0,278r351,0r0,85r-351,0r0,325r4,0v81,-82,169,-168,336,-168v187,-1,276,132,277,324r2,457v0,51,-2,108,-2,172v0,277,-157,499,-406,504v-99,3,-176,-40,-179,-119v-2,-58,34,-111,94,-108","w":1169},"\u0453":{"d":"405,-178v-2,92,83,105,166,112r0,66r-497,0r0,-66v80,-3,145,-15,145,-102r0,-640v2,-88,-80,-105,-158,-112r0,-66r822,0r0,327r-62,0v-24,-71,-72,-160,-117,-213v-40,-47,-116,-39,-193,-39r-106,0r0,733xm682,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":901},"\u0454":{"d":"350,-971v121,-66,322,-51,435,5r32,-47r67,0r0,347r-66,0v-43,-133,-101,-273,-276,-273v-128,0,-189,88,-234,196v-20,50,-33,109,-39,176r400,0r0,93r-401,0v-2,193,51,323,172,394v64,38,180,41,246,8v30,-15,48,-25,54,-30v-8,-36,-20,-74,-20,-116v2,-50,51,-91,112,-91v63,0,97,42,97,102v0,150,-213,237,-390,233v-319,-7,-468,-204,-468,-520v0,-235,119,-391,279,-477","w":996},"\u0455":{"d":"428,-937v-126,-4,-219,103,-160,215v59,111,242,115,358,177v102,55,180,112,182,260v2,190,-167,311,-368,311v-99,0,-214,-50,-262,-88r-20,65r-75,0r-10,-343r69,0v43,144,133,278,313,289v148,9,249,-115,183,-241v-73,-138,-321,-124,-439,-227v-53,-47,-100,-109,-100,-206v0,-170,146,-289,331,-289v76,0,169,24,217,51r23,-52r72,0r15,317r-69,0v-24,-128,-117,-235,-260,-239","w":885},"\u0456":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm295,-1515v72,0,130,60,130,128v0,73,-58,142,-130,142v-66,0,-126,-67,-126,-133v0,-69,58,-137,126,-137","w":600},"\u0457":{"d":"405,-180v-2,87,69,105,146,114r0,66r-477,0r0,-66v80,-3,145,-15,145,-102r0,-609v-1,-96,-83,-127,-176,-134r0,-65r348,-22r14,14r0,804xm451,-1487v65,0,115,58,115,123v0,65,-50,123,-115,123v-65,0,-115,-58,-115,-123v0,-65,50,-123,115,-123xm101,-1487v65,0,115,58,115,123v0,65,-50,123,-115,123v-65,0,-115,-58,-115,-123v0,-65,50,-123,115,-123","w":600},"\u0458":{"d":"-151,325v-1,-57,34,-110,94,-108v95,4,120,83,161,143v51,0,86,-31,108,-92v22,-61,33,-160,33,-295r0,-742v-12,-81,-39,-119,-133,-131v-41,-5,-70,-12,-91,-14r0,-62r396,-22r14,14r0,924v-2,224,-96,391,-245,468v-111,58,-334,52,-337,-83xm316,-1516v72,0,130,60,130,128v0,73,-58,142,-130,142v-66,0,-126,-67,-126,-133v0,-69,58,-137,126,-137","w":598},"\u0459":{"d":"1110,-68v155,0,228,-90,228,-240v0,-123,-99,-203,-239,-203v-50,0,-92,6,-130,7r0,352v5,71,52,84,141,84xm969,-583v284,-14,571,2,571,280v0,165,-111,246,-242,285v-44,12,-90,18,-138,18r-522,0r0,-66v80,-2,147,-15,147,-102r0,-736r-274,0v2,287,-38,530,-122,707v-54,115,-127,208,-257,217v-86,6,-146,-51,-146,-125v0,-50,36,-102,92,-100v69,3,108,48,142,91v84,-90,137,-271,165,-426v15,-82,35,-228,6,-311v-18,-52,-111,-59,-173,-69r0,-66r912,0r0,66v-60,5,-130,2,-149,46v-8,17,-12,35,-12,56r0,235","w":1584},"\u045a":{"d":"1160,-68v155,0,228,-90,228,-240v0,-123,-99,-203,-239,-203v-50,0,-92,6,-130,7r0,352v5,71,52,84,141,84xm1019,-583v284,-14,571,2,571,280v0,165,-111,246,-242,285v-44,12,-90,18,-138,18r-520,0r0,-66v80,-3,145,-15,145,-102r0,-319r-432,0r0,309v-1,87,73,104,152,112r0,66r-481,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r481,0r0,66v-81,3,-145,15,-145,102r0,249r432,0r0,-239v1,-86,-76,-105,-152,-112r0,-66r497,0r0,66v-60,5,-130,2,-149,46v-8,17,-12,35,-12,56r0,235","w":1634},"\u045b":{"d":"999,-176v-1,86,65,103,144,110r0,66r-484,0r0,-66v81,-3,152,-12,152,-102r0,-507v4,-123,-63,-219,-170,-219v-125,0,-212,69,-256,149r0,567v-1,87,72,104,152,112r0,66r-484,0r0,-66v80,-3,146,-15,146,-102r0,-1002r-243,0r0,-85r243,0v4,-107,-13,-191,-119,-199v-30,-2,-55,-6,-74,-7r0,-64r365,-23r14,15r0,278r351,0r0,85r-351,0r0,325r4,0v81,-82,169,-168,336,-168v186,1,274,128,274,324r0,513","w":1192},"\u045c":{"d":"970,-777v-83,-4,-87,-45,-141,-100v-29,26,-53,125,-70,167v-38,94,-67,149,-135,196r0,13v187,32,240,185,305,339v32,76,101,85,189,96r0,66r-339,0v-46,-157,-100,-325,-207,-412v-41,-34,-98,-44,-169,-42r0,276v-1,87,73,104,152,112r0,66r-481,0r0,-66v80,-3,145,-15,145,-102r0,-640v1,-86,-76,-105,-152,-112r0,-66r481,0r0,66v-81,3,-145,15,-145,102r0,289v128,11,195,-37,234,-128v63,-145,85,-339,288,-341v90,-1,147,39,149,116v1,57,-44,108,-104,105xm776,-1538v70,0,106,88,64,140v-45,57,-122,107,-182,153r-173,135r-38,-32r125,-188v41,-59,84,-152,137,-190v19,-13,42,-18,67,-18","w":1129},"\u045e":{"d":"242,430v-104,42,-244,-8,-245,-108v-1,-61,39,-113,96,-113v89,1,119,73,155,127v72,-38,190,-252,220,-341r-172,-424r-161,-387v-21,-58,-90,-93,-154,-104r0,-66r450,0r0,70v-33,5,-144,11,-109,59r11,29r236,584r93,-222r129,-322v9,-22,13,-42,13,-58v-1,-40,-91,-72,-132,-76r0,-64r366,0r0,62v-54,12,-128,61,-152,118r-352,837v-69,151,-118,251,-209,342v-29,29,-58,47,-83,57xm754,-1500v85,0,123,102,80,183v-56,105,-151,159,-318,158v-161,0,-265,-55,-316,-159v-40,-81,-4,-182,80,-182v53,0,101,32,101,94v0,34,-22,95,-31,116v61,86,271,85,335,0v-9,-23,-31,-83,-31,-116v0,-61,48,-94,100,-94","w":1008},"\u045f":{"d":"1016,-178v-2,88,71,104,149,112r0,66r-379,0v-101,31,-99,198,-128,304r-72,0v-17,-90,-33,-202,-75,-266v-13,-20,-30,-33,-53,-38r-384,0r0,-66v80,-3,145,-15,145,-102r0,-640v4,-87,-73,-105,-149,-112r0,-66r482,0r0,66v-82,3,-147,17,-147,102r0,648v-9,122,123,99,229,99v60,0,156,11,186,-21v6,-12,10,-32,10,-60r0,-656v1,-85,-74,-105,-151,-112r0,-66r482,0r0,66v-81,3,-145,15,-145,102r0,640","w":1235},"\u0490":{"d":"501,-202v-4,111,122,121,222,131r0,71r-637,0r0,-71v30,-2,124,-9,145,-18v38,-17,56,-49,57,-100r0,-1024v9,-111,-112,-121,-202,-135r0,-71r694,-1v78,-4,127,-5,172,-48v65,-63,114,-172,140,-269r75,0r0,397r-666,0r0,1138","w":1180},"\u0491":{"d":"405,-178v-2,92,83,105,166,112r0,66r-497,0r0,-66v80,-3,145,-15,145,-102r0,-640v2,-88,-80,-105,-158,-112r0,-66r507,-2v102,0,113,-12,170,-98v38,-58,60,-110,71,-152r62,0r0,327r-466,0r0,733","w":882},"\u2015":{"d":"1523,-497r-1291,0r0,-125r1291,0r0,125","w":1755},"\u2116":{"d":"1524,-1348v-38,1,-147,28,-169,47v-57,48,-61,157,-61,276r0,1039r-87,0r-830,-1161r0,732v7,187,3,291,158,324v49,10,80,19,95,20r0,71r-582,0r0,-71v29,-1,156,-36,171,-51v61,-62,61,-132,61,-282r0,-699v-4,-120,-59,-186,-156,-219v-42,-14,-75,-25,-100,-26r0,-71r405,0r768,1082r0,-675v-1,-130,-7,-227,-62,-279v-25,-24,-144,-55,-188,-57r0,-71r577,0r0,71xm2297,-144r-695,0r0,-103r695,0r0,103xm1586,-708v-109,-292,73,-608,371,-598v193,7,311,104,363,249v104,294,-75,610,-376,598v-184,-7,-306,-109,-358,-249xm1954,-533v170,0,209,-177,209,-356v0,-173,-40,-343,-208,-343v-212,0,-238,271,-203,478v19,115,72,221,202,221","w":2500},"\u03c0":{"d":"71,-97v0,-52,43,-105,105,-105v42,0,86,17,122,27v82,-167,121,-431,103,-688r-62,0v-128,1,-167,85,-178,202r-63,0v-1,-65,-17,-131,6,-186v31,-75,105,-138,214,-138r857,0r0,122r-225,0r0,654v0,83,57,133,145,131r68,-3r0,64v-67,22,-119,38,-211,38v-129,0,-190,-87,-190,-216r0,-668r-263,0v15,321,-30,664,-184,829v-36,38,-79,56,-128,56v-73,0,-116,-57,-116,-119","w":1231},"\u2074":{"d":"906,-702r-159,0r0,232r-166,0r0,-232r-495,0r0,-126r543,-623r118,0r0,640r159,0r0,109xm581,-811r0,-453r-393,453r393,0"},"\u2075":{"d":"301,-1028v102,-74,327,-76,432,6v65,51,116,115,115,232v-1,200,-178,335,-397,335v-147,0,-321,-71,-321,-191v0,-52,33,-99,88,-99v56,0,100,34,102,78v1,31,-14,72,-21,95v37,25,74,46,152,44v137,-3,215,-107,215,-262v0,-117,-83,-203,-202,-203v-98,0,-159,35,-203,86r-66,-22r65,-490r555,0r0,136r-476,0"},"\u2077":{"d":"891,-1419r0,58r-524,892r-124,0r489,-817r-366,2v-51,7,-83,9,-101,60v-10,26,-19,57,-25,94r-63,0r0,-289r714,0"},"\u2078":{"d":"680,-982v123,51,210,104,210,246v0,171,-192,280,-392,280v-199,0,-365,-96,-365,-271v0,-135,94,-191,209,-237v-100,-54,-169,-104,-169,-227v0,-151,180,-260,352,-260v175,0,325,91,325,249v0,110,-77,176,-170,220xm608,-1016v58,-36,80,-101,81,-193v0,-95,-74,-168,-175,-168v-95,0,-174,65,-173,155v0,47,21,86,64,115v43,29,110,60,203,91xm516,-531v116,0,205,-67,205,-174v0,-43,-21,-81,-64,-114v-43,-33,-125,-70,-248,-113v-70,35,-108,102,-109,198v-1,123,88,203,216,203"},"\u0308":{"d":"737,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123xm287,-1853v64,0,118,58,118,123v0,65,-54,123,-118,123v-64,0,-118,-58,-118,-123v0,-65,54,-123,118,-123"},"\u0301":{"d":"576,-1854v59,-37,150,-1,149,66v-1,65,-45,90,-92,113r-346,168r-31,-39r148,-144v55,-52,110,-125,172,-164"},"\u0300":{"d":"299,-1788v-3,-70,88,-101,147,-66v57,33,115,106,164,154r158,154r-31,39r-346,-168v-54,-31,-89,-43,-92,-113"},"\u0302":{"d":"837,-1539r-48,32r-279,-212r-275,212r-48,-32r234,-284v26,-29,38,-45,93,-45v54,0,64,14,87,41"},"\u030c":{"d":"837,-1836r-234,284v-32,36,-24,44,-93,45v-54,0,-64,-14,-87,-41r-236,-288r48,-32r279,214r275,-214"},"\u0306":{"d":"512,-1678v157,0,223,-69,263,-189r55,16v-33,192,-114,321,-318,321v-197,0,-289,-133,-318,-321r55,-16v40,120,106,189,263,189"},"\u030b":{"d":"423,-1846v58,-47,144,-5,142,63v-1,60,-39,83,-82,105r-109,56v-29,15,-93,54,-192,115r-29,-36r119,-136v48,-54,96,-122,151,-167xm812,-1846v58,-48,144,-5,142,63v-1,60,-39,82,-82,105v-124,65,-144,70,-306,171r-29,-36r125,-139v49,-53,96,-119,150,-164"},"\u0218":{"d":"550,-1364v-120,-3,-230,93,-229,210v3,261,268,282,448,367v155,73,300,158,300,384v0,253,-224,432,-484,432v-132,0,-270,-50,-354,-101r-43,73r-80,0r-14,-486r81,0v48,174,123,317,269,392v46,23,100,35,161,35v171,-1,267,-80,267,-249v0,-132,-82,-228,-191,-270r-149,-57v-209,-78,-398,-157,-398,-430v0,-189,120,-301,264,-358v168,-67,371,-7,482,71r41,-68r80,0r8,471r-81,0v-59,-204,-121,-410,-378,-416xm590,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":1149},"\u0219":{"d":"428,-937v-126,-4,-219,103,-160,215v59,111,242,115,358,177v102,55,180,112,182,260v2,190,-167,311,-368,311v-99,0,-214,-50,-262,-88r-20,65r-75,0r-10,-343r69,0v43,144,133,278,313,289v148,9,249,-115,183,-241v-73,-138,-321,-124,-439,-227v-53,-47,-100,-109,-100,-206v0,-170,146,-289,331,-289v76,0,169,24,217,51r23,-52r72,0r15,317r-69,0v-24,-128,-117,-235,-260,-239xm439,66v91,0,148,72,148,165v0,148,-114,213,-265,213r0,-57v113,-8,166,-31,175,-128v-97,6,-177,-9,-175,-95v2,-53,52,-98,117,-98","w":885},"\u00a4":{"d":"862,-559v0,54,-21,111,-43,144r186,187r-86,87r-188,-184v-71,53,-218,54,-290,0r-189,186r-85,-90r184,-186v-53,-72,-56,-217,0,-288r-184,-189r88,-86r186,185v27,-20,100,-42,144,-42v55,0,110,20,145,41r185,-184r90,85r-186,190v24,36,43,90,43,144xm585,-394v88,0,162,-76,162,-165v0,-88,-75,-165,-162,-165v-88,0,-162,76,-162,165v0,87,75,165,162,165","w":1170},"\u2120":{"d":"1980,-611v-2,84,70,106,149,112r0,66r-483,0r0,-66v21,-1,51,-2,90,-12v41,-10,60,-43,60,-90r0,-714r-24,0r-334,866r-62,0r-314,-883r-22,0r0,691v-3,110,58,134,152,142r0,66r-384,0r0,-66v21,-1,51,-2,90,-12v37,-9,55,-52,55,-120r0,-600v1,-91,-64,-114,-152,-122r0,-66r410,0r247,706r218,-585v21,-57,33,-98,35,-121r414,0r0,66v-29,2,-65,9,-110,20v-23,15,-35,43,-35,82r0,640xm428,-1370v-93,-1,-177,52,-176,140v0,56,21,98,62,126v31,21,94,46,188,77v152,49,247,114,284,194v15,31,22,70,22,115v3,193,-167,311,-368,311v-105,0,-192,-29,-262,-88r-20,65r-75,0r-10,-343r69,0v24,132,160,289,313,289v133,0,200,-56,200,-168v0,-53,-22,-95,-65,-126v-35,-25,-96,-51,-186,-78v-169,-49,-300,-124,-305,-302v-5,-174,151,-289,331,-289v83,0,156,17,217,51r23,-52r72,0r15,317r-69,0v-24,-131,-116,-238,-260,-239","w":2199},"\u2500":{"d":"1473,-534r-1496,0r0,-175r1496,0r0,175","w":1451},"\u2502":{"d":"638,621r0,-2485r175,0r0,2485r-175,0","w":1451},"\u250c":{"d":"1474,-709r0,175r-661,0r0,1155r-175,0r0,-1330r836,0","w":1451},"\u2510":{"d":"637,-534r-660,0r0,-175r835,0r0,1330r-175,0r0,-1155","w":1451},"\u2514":{"d":"638,-534r0,-1330r175,0r0,1155r661,0r0,175r-836,0","w":1451},"\u2518":{"d":"812,-534r-835,0r0,-175r660,0r0,-1155r175,0r0,1330","w":1451},"\u266a":{"d":"37,-186v0,-144,122,-248,275,-248v52,0,110,15,174,46r0,-975v216,0,306,0,404,91v82,76,105,231,97,400r-99,0v17,-200,-115,-268,-303,-263r0,835v-1,162,-36,239,-142,296v-52,27,-109,41,-170,41v-140,0,-236,-88,-236,-223"},"\u0162":{"d":"1251,-1034r-69,0v-28,-95,-89,-195,-150,-260v-61,-65,-172,-39,-292,-47r0,1135v6,86,47,106,138,122v39,7,69,12,90,13r0,71r-670,0r0,-71v32,-3,141,-13,165,-23v42,-18,64,-46,64,-103r0,-1144r-135,1v-72,4,-113,1,-156,46v-63,65,-122,166,-151,260r-70,0r0,-385r1236,0r0,385xm600,99v123,1,230,31,230,149v0,182,-202,192,-399,196r0,-72v108,-4,249,13,255,-90v4,-69,-100,-73,-165,-75r0,-224r79,0r0,116","w":1267},"\u0163":{"d":"539,-100v30,0,121,-7,142,-16r0,73v-87,34,-146,64,-265,64v-163,0,-225,-83,-225,-239r0,-668r-178,0r0,-96r182,0r0,-307r182,0r0,307r283,0r0,96r-281,0r0,551v-3,143,18,239,160,235xm377,99v123,1,230,31,230,149v0,182,-202,192,-399,196r0,-72v108,-4,249,13,255,-90v4,-69,-100,-73,-165,-75r0,-224r79,0r0,116","w":707}}});
