

 //base.js

/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */
(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}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);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",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;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);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 this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},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;}if(value.constructor==Number)value+='';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=jQuery.makeArray(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[0]?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===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&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.fn.init.prototype=jQuery.fn;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);}function now(){return+new Date;}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==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};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&&/^[\s[]?function/.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.insertBefore(script,head.firstChild);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){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else
for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var 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,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;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":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(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 left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}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+='';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 notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}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){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;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))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)ret[ret.length]=value;}return ret.concat.apply([],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,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});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");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}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,re=quickChild,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=[],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&&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)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});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({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&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,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.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;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},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;event.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;event.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){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,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){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;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.call(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:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._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=now();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:{url:location.href,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){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="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&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){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 xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);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(jQuery.isFunction(a[j])?a[j]():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.apply(this,arguments):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),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(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.call(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){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",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].call(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:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(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.call(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=now();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=now();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)this.options.complete.call(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.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},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),css=jQuery.curCSS,fixed=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&&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(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&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,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();

(function(H){H.fn.drag=function(K,J,I){if(J){this.bind("dragstart",K)}if(I){this.bind("dragend",I)}return !K?this.trigger("drag"):this.bind("drag",J?J:K)};var D=H.event,B=D.special,F=B.drag={not:":input",distance:0,setup:function(I){I=H.extend({distance:F.distance,not:F.not},I||{});I.distance=G(I.distance);D.add(this,"mousedown",E,I)},teardown:function(){D.remove(this,"mousedown",E);if(this===F.dragging){F.dragging=F.proxy=null}C(this,true)}};function E(K){var J=this,I,L=K.data||{};if(J===document){K.dragTarget=J=L.elem;K.dragProxy=F.proxy||J;K.cursorOffsetX=L.pageX-L.left;K.cursorOffsetY=L.pageY-L.top;K.offsetX=K.pageX-K.cursorOffsetX;K.offsetY=K.pageY-K.cursorOffsetY}else{if(F.dragging||K.which!=1||H(K.target).is(L.not)){return }}switch(K.type){case"mousedown":H.extend(L,H(J).offset(),{elem:J,target:K.target,pageX:K.pageX,pageY:K.pageY});D.add(document,"mousemove mouseup",E,L);C(J,false);return false;case !F.dragging&&"mousemove":if(G(K.pageX-L.pageX)+G(K.pageY-L.pageY)<L.distance){break}K.target=L.target;I=A(K,"dragstart",J);if(I!==false){F.dragging=J;F.proxy=K.dragProxy=H(I)[0]||J}case"mousemove":if(F.dragging){I=A(K,"drag",J);if(B.drop){B.drop.allowed=(I!==false);B.drop.handler(K)}if(I!==false){break}K.type="mouseup"}case"mouseup":D.remove(document,"mousemove mouseup",E);if(F.dragging){if(B.drop){B.drop.handler(K)}A(K,"dragend",J)}C(J,true);F.dragging=F.proxy=null;break}}function A(K,I,J){K.type=I;return D.handle.call(J,K)}function G(I){return Math.pow(I,2)}function C(J,I){if(!J){return }J.unselectable=I?"off":"on";J.onselectstart=function(){return I};if(J.style){J.style.MozUserSelect=I?"":"none"}}})(jQuery);

function createCookie(name,value,days){if(days){var date=new Date();date.setTime(date.getTime()+(days*24*60*60*1000));var expires="; expires="+date.toGMTString();}else expires="";document.cookie=name+"="+value+expires+"; path=/";}function readCookie(name){var nameEQ=name+"=";var ca=document.cookie.split(';');for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==' ')c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return c.substring(nameEQ.length,c.length);}return null;}

$.fn.extend({ hrefId: function() { return $(this).attr("href").substr($(this).attr("href").indexOf("#")); } });

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()}};M.ready=(function(){var a=!M.recognizesMedia("all");var Z=[],c=function(){a=true;for(var f;f=Z.shift();f()){}};var d=F("link"),e={stylesheet:1};function b(){var g,f,h;for(f=0;h=d[f];++f){if(h.disabled||!e[h.rel.toLowerCase()]||!M.recognizesMedia(h.media||"screen")){continue}g=h.sheet||h.styleSheet;if(!g||g.disabled){return false}}return true}V.ready(function(){if(a||b()){c()}else{setTimeout(arguments.callee,10)}});return function(f){if(a){f()}else{Z.push(f)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=c.data;if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode(".cufon-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=U.length;p--;){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G*e+j-R));K.height=Math.ceil(J.convert(V.height-W+f));W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=H/V.height;s.scale(Y,Y*e);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){s.scale(e,1);for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}s.restore()}if(U){for(var p=U.length;p--;){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o()}}o();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(D,E){return A(D,/(?:em|ex|%)$/i.test(E)?"1em":E)}function A(G,H){if(/px$/i.test(H)){return parseFloat(H)}var F=G.style.left,E=G.runtimeStyle.left;G.runtimeStyle.left=G.currentStyle.left;G.style.left=H;var D=G.style.pixelLeft;G.style.left=F;G.runtimeStyle.left=E;return D}return function(s,V,n,S,Z,t,j){var G=(V===null);if(G){V=Z.alt}var X=s.viewBox;var H=n.computedFontSize||(n.computedFontSize=new Cufon.CSS.Size(C(t,n.get("fontSize"))+"px",s.baseSize));var h=n.computedLSpacing;if(h==undefined){h=n.get("letterSpacing");n.computedLSpacing=h=(h=="normal")?0:~~H.convertFrom(A(t,h))}var P,I;if(G){P=Z;I=Z.firstChild}else{P=document.createElement("span");P.className="cufon cufon-vml";P.alt=V;I=document.createElement("span");I.className="cufon-vml-canvas";P.appendChild(I);if(S.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(V));P.appendChild(q)}if(!j){P.appendChild(document.createElement("cvml:shape"))}}var y=P.style;var c=I.style;var E=H.convert(X.height),v=Math.ceil(E);var g=v/E;var f=X.minX,e=X.minY;c.height=v;c.top=Math.round(H.convert(e-s.ascent));c.left=Math.round(H.convert(f));y.height=H.convert(s.height)+"px";var L=S.enableTextDecoration?Cufon.CSS.textDecoration(t,n):{};var U=n.get("color");var w=Cufon.CSS.textTransform(V,n).split("");var D=0,d=0,M=null;var T,N,W=S.textShadow;for(var r=0,p=0,o=w.length;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(T){D+=M=~~(T.w||s.w)+h}}if(M===null){return null}var O=-f+D+(X.width-M);var x=H.convert(O*g),m=Math.round(x);var b=O+","+X.height,F;var Y="r"+b+"nsnf";for(r=0;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(!T){continue}if(G){N=I.childNodes[p];if(N.firstChild){N.removeChild(N.firstChild)}}else{N=document.createElement("cvml:shape");I.appendChild(N)}N.stroked="f";N.coordsize=b;N.coordorigin=F=(f-d)+","+e;N.path=(T.d?"m"+T.d+"xe":"")+"m"+F+Y;N.fillcolor=U;var u=N.style;u.width=m;u.height=v;if(W){var K=W[0],J=W[1];var R=Cufon.CSS.color(K.color),Q;var a=document.createElement("cvml:shadow");a.on="t";a.color=R.color;a.offset=K.offX+","+K.offY;if(J){Q=Cufon.CSS.color(J.color);a.type="double";a.color2=Q.color;a.offset2=J.offX+","+J.offY}a.opacity=R.opacity||(Q&&Q.opacity)||1;N.appendChild(a)}d+=~~(T.w||s.w)+h;++p}y.width=Math.max(Math.ceil(H.convert(D*g)),0);return P}})());

Cufon.registerFont({"w":45,"face":{"font-family":"Haptic","font-weight":300,"font-stretch":"normal","units-per-em":"96","panose-1":"2 11 3 3 4 5 2 2 2 3","ascent":"70","descent":"-26","bbox":"-3 -87 96 24","underline-thickness":"4.8","underline-position":"-4.8","stemh":"4","stemv":"5","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":19},"\u00a0":{"w":19},"!":{"d":"14,-68v1,0,2,0,2,2v-3,17,6,59,-6,54r0,-53v0,-2,1,-3,4,-3xm9,-4v0,-2,2,-3,5,-3v3,1,3,9,-2,7v-2,0,-3,0,-3,-4","w":25},"\"":{"d":"11,-52r-6,0v0,-7,-4,-25,6,-18r0,18xm24,-52r-6,0v1,-8,-3,-25,6,-18r0,18","w":28},"#":{"d":"51,-27v1,6,-7,5,-12,5r-2,20v0,3,-3,2,-6,2v0,-1,0,-3,2,-22r-13,0r-2,20v0,3,-3,2,-6,2v0,-1,0,-3,2,-22r-11,0v0,-7,6,-5,12,-5r1,-13r-11,0v-1,-7,7,-5,12,-5v2,-7,-2,-21,8,-20v0,2,0,3,-3,20r14,0r2,-18v0,-3,3,-2,6,-2v0,2,0,3,-3,20r12,0v1,8,-5,4,-12,5r-2,13r12,0xm34,-27r1,-13r-13,0r-2,13r14,0","w":56},"$":{"d":"38,-53v-6,-3,-25,-6,-25,7v0,15,30,7,30,29v0,10,-6,17,-16,17r0,11r-6,0r0,-11v-9,-1,-16,0,-14,-8v9,4,30,5,29,-7v0,-19,-29,-10,-29,-31v0,-7,4,-14,14,-15v-1,-6,1,-15,6,-9r0,9v8,3,15,2,11,8","w":48},"%":{"d":"34,-47v0,14,-6,20,-14,20v-9,0,-15,-6,-15,-20v0,-13,6,-19,15,-19v8,0,14,6,14,19xm28,-47v0,-8,-2,-14,-8,-14v-6,0,-9,6,-9,14v0,9,3,15,9,15v6,0,8,-6,8,-15xm76,-19v0,14,-7,19,-15,19v-8,0,-15,-5,-15,-19v0,-13,7,-19,15,-19v8,0,15,6,15,19xm70,-19v0,-8,-3,-14,-9,-14v-6,0,-9,6,-9,14v0,9,3,15,9,15v6,0,9,-6,9,-15xm19,6r36,-74v0,-3,5,-4,6,-2r-35,74v-1,3,-4,3,-7,2","w":80},"&":{"d":"48,-13v6,7,7,9,18,8v-1,9,-17,6,-21,-3v-9,13,-41,11,-39,-11v0,-11,7,-16,13,-19v-11,-11,-13,-30,7,-30v8,0,14,2,10,6v-6,-2,-21,-2,-19,7v0,11,21,28,27,37v2,-6,3,-15,2,-29v5,0,6,0,6,2v0,13,-1,21,-4,32xm12,-19v-1,16,23,19,29,7r-19,-23v-7,4,-10,9,-10,16","w":64},"'":{"d":"11,-52r-6,0v0,-7,-4,-25,6,-18r0,18","w":15},"(":{"d":"19,-78r5,0v0,0,-12,20,-12,48v0,28,12,47,12,47v-3,1,-4,1,-5,0v-2,-2,-13,-19,-13,-47v0,-28,11,-46,13,-48","w":26},")":{"d":"7,-78v2,2,13,20,13,48v0,30,-7,48,-17,47v0,0,11,-19,11,-47v0,-28,-11,-48,-11,-48r4,0","w":26},"*":{"d":"2,-62v3,-8,8,0,12,2r0,-12v8,-1,4,7,4,12v4,-2,11,-9,12,-2r-10,5r11,6v-3,7,-8,-1,-13,-2r1,11v-8,3,-4,-5,-5,-11r-9,6v-6,-7,6,-6,8,-10","w":33},"+":{"d":"25,-5v-10,2,-5,-10,-6,-18r-17,0v-1,-10,10,-5,17,-6r0,-18v10,-2,4,10,6,18r17,0v3,10,-10,5,-17,6r0,18","w":44},",":{"d":"5,13v5,-6,-4,-20,6,-21v4,6,2,26,-6,21","w":19},"-":{"d":"5,-26v-1,-9,16,-3,24,-5v1,10,-16,3,-24,5","w":33},".":{"d":"6,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4","w":19},"\/":{"d":"35,-67v-1,2,-1,3,-24,72v-1,3,-3,3,-7,3v2,-3,2,-5,25,-73v0,-2,3,-2,6,-2","w":36},"0":{"d":"2,-31v0,-22,8,-32,22,-32v14,0,22,10,22,32v0,22,-8,32,-22,32v-14,0,-22,-10,-22,-32xm9,-31v0,17,5,26,15,26v11,0,15,-9,15,-26v0,-18,-4,-27,-15,-27v-10,0,-15,9,-15,27","w":48},"1":{"d":"8,0v1,-9,-2,-5,14,-5r0,-52v-4,0,-13,4,-13,-1v2,-1,19,-9,19,-2r-1,55r13,0v2,6,-1,4,-4,5r-28,0","w":48},"2":{"d":"24,-63v24,1,18,24,6,38r-18,20v17,0,27,0,31,-1v0,6,-1,6,-5,6r-30,0v-5,-10,-2,-6,15,-27v7,-10,11,-14,11,-20v3,-16,-19,-8,-24,-9v-2,-4,6,-6,14,-7","w":48},"3":{"d":"16,-31r-1,-5v10,-2,17,-7,17,-14v1,-15,-21,-1,-23,-8v6,-7,33,-7,30,8v0,7,-6,13,-15,15v10,0,17,5,17,16v0,19,-23,22,-35,16v-1,0,-1,-1,0,-4v9,4,29,3,29,-12v0,-9,-5,-13,-19,-12","w":48},"4":{"d":"10,-18r18,0v0,-7,-3,-24,6,-18r0,18v3,-1,7,-1,10,-1v0,8,0,5,-10,6v0,5,-1,10,0,13v-9,2,-7,-7,-6,-13r-22,0v-3,-13,0,-3,18,-50v2,-2,8,2,7,3","w":48},"5":{"d":"10,-33v2,-10,-4,-28,4,-30r25,0v1,10,-15,3,-23,5r0,20v15,-3,26,2,26,17v0,20,-20,24,-34,19v-1,-1,-1,-2,0,-5v10,4,28,2,28,-13v0,-13,-9,-17,-26,-13","w":48},"6":{"d":"11,-30v8,-15,33,-12,32,9v0,14,-7,21,-19,21v-12,0,-18,-8,-18,-23v0,-20,10,-48,35,-38v1,0,1,0,1,2v-1,5,-3,0,-10,1v-15,-1,-19,14,-21,28xm37,-19v0,-10,-5,-15,-12,-15v-7,0,-13,5,-13,14v0,21,25,21,25,1","w":48},"7":{"d":"41,-60r-25,60v-4,0,-5,-1,-5,-3v0,-2,0,-3,24,-55r-26,0v-2,0,-2,0,-2,-3v0,-1,0,-2,2,-2r30,0v1,0,2,2,2,3","w":48},"8":{"d":"24,-4v18,-1,14,-22,0,-27v-8,5,-12,10,-12,16v0,6,4,11,12,11xm24,-63v21,0,19,25,5,29v16,6,20,35,-5,35v-26,0,-22,-28,-5,-34v-15,-5,-18,-30,5,-30xm24,-58v-7,0,-11,4,-11,10v0,6,5,9,11,12v14,-4,14,-21,0,-22","w":48},"9":{"d":"37,-33v-8,16,-32,12,-32,-9v0,-14,7,-21,19,-21v12,0,19,8,19,23v1,20,-11,48,-37,38r0,-4v20,6,30,-8,31,-27xm11,-43v0,10,5,15,12,15v7,0,13,-6,13,-15v-1,-22,-25,-20,-25,0","w":48},":":{"d":"6,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4xm6,-32v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4","w":19},";":{"d":"5,13v5,-6,-4,-20,6,-21v4,6,2,26,-6,21xm6,-32v0,-2,2,-4,5,-4v3,1,2,10,-2,8v-2,0,-3,0,-3,-4","w":19},"<":{"d":"32,1r-27,-23v0,-3,0,-4,2,-5r25,-22v1,-1,2,-1,4,1v1,1,1,3,0,3r-26,21r27,21v1,1,0,2,-1,3v-2,2,-3,2,-4,1","w":44},"=":{"d":"39,-35v0,5,1,5,-4,6r-29,0v-2,-4,0,-6,3,-6r30,0xm6,-19v9,-3,22,0,33,-1v0,5,0,4,-4,5r-29,0v-1,-2,-1,-4,0,-4","w":44},">":{"d":"8,-3r26,-21r-26,-21v-1,0,-1,-2,1,-3v1,-2,2,-2,3,-1r27,23v1,3,1,4,-1,5r-26,22v-1,1,-2,1,-3,-1v-1,-1,-2,-2,-1,-3","w":44},"?":{"d":"14,-12v-6,-17,13,-30,13,-41v1,-14,-16,-8,-21,-9v-1,-4,4,-6,11,-6v10,0,16,5,16,15v1,15,-20,21,-14,40xm14,-4v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4","w":38},"@":{"d":"63,-45v2,11,-4,26,-5,38v12,-1,20,-10,20,-29v0,-15,-11,-23,-26,-23v-21,0,-38,14,-38,42v0,30,25,30,43,26v4,9,-5,7,-15,7v-16,0,-34,-6,-34,-33v0,-32,20,-47,44,-47v19,0,32,9,32,28v0,22,-11,33,-29,33v-3,0,-4,0,-4,-2v0,-3,4,-12,4,-12v-5,11,-10,15,-16,15v-7,0,-12,-5,-12,-15v-2,-19,14,-34,31,-26v1,-2,2,-2,5,-2xm58,-39v-15,-6,-24,9,-24,22v0,7,2,9,7,9v8,1,14,-16,17,-31","w":91},"A":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0","w":55},"\u00c0":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm31,-73v-4,7,-1,3,-16,-3v6,-8,4,-4,16,3","w":55},"\u00c1":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm24,-73v10,-6,11,-7,12,-7v2,0,4,1,5,4v-16,6,-11,9,-17,3","w":55},"\u00c2":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm18,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":55},"\u00c3":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm39,-77v-1,13,-20,-4,-19,7v-4,1,-4,-1,-4,-3v0,-10,11,-4,17,-4v2,0,2,-1,2,-4v4,0,4,2,4,4","w":55},"\u00c4":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm16,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm32,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":55},"\u00c5":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm35,-77v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm31,-77v0,-2,-1,-4,-3,-4v-2,0,-4,2,-4,4v0,6,7,7,7,0","w":55},"\u0100":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm18,-71v-1,-9,13,-4,19,-5v2,9,-12,4,-19,5","w":55},"\u0102":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm20,-80v3,5,13,6,15,0v3,0,3,1,3,2v0,4,-4,8,-10,8v-7,0,-11,-4,-11,-8v0,-1,0,-2,3,-2","w":55},"\u0104":{"d":"41,-18r-27,0r-7,18v-4,2,-5,1,-5,-3r22,-59v-1,-3,6,-4,8,-2v6,21,16,43,21,64v-7,7,-7,7,-7,10v0,5,5,4,8,3v1,4,-2,5,-5,5v-11,0,-9,-14,-1,-18xm40,-23r-12,-36r-13,36r25,0","w":55},"\u00c6":{"d":"45,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-33,0r1,-18r-25,0r-12,19v-4,-1,-5,-1,-4,-5r36,-58v1,-3,3,-3,6,-3r34,0v0,3,1,6,-3,5r-26,0r0,24r26,0r0,5r-26,0xm39,-23r0,-37r-22,37r22,0","w":81},"B":{"d":"9,-64v16,-2,38,-2,36,15v0,8,-5,13,-10,14v5,1,12,5,12,16v1,22,-24,20,-38,18r0,-63xm15,-5v13,0,26,1,26,-13v0,-16,-13,-14,-26,-14r0,27xm15,-37v12,1,25,0,24,-11v0,-12,-12,-13,-24,-12r0,23","w":52},"C":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27","w":52},"\u0106":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm29,-73v13,-7,10,-11,16,-3v-15,6,-10,9,-16,3","w":52},"\u0108":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm21,-72v7,-10,13,-10,21,0v-2,4,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":52},"\u010a":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm28,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":52},"\u010c":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm43,-78v-16,12,-6,11,-22,0v4,-3,7,1,11,2v4,-1,8,-5,11,-2","w":52},"\u00c7":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm30,4v4,0,5,0,5,4v0,6,-5,7,-10,7v0,-7,7,-2,5,-11","w":52},"D":{"d":"9,-1r0,-63v24,-4,46,1,46,31v0,29,-19,36,-46,32xm15,-5v21,1,33,-4,33,-28v0,-24,-12,-28,-33,-27r0,55","w":60},"\u010e":{"d":"9,-1r0,-63v24,-4,46,1,46,31v0,29,-19,36,-46,32xm15,-5v21,1,33,-4,33,-28v0,-24,-12,-28,-33,-27r0,55xm40,-78v-18,12,-5,11,-23,0v7,-4,12,5,18,-1v1,-1,3,0,5,1","w":60},"\u0110":{"d":"10,-64v24,-4,46,1,46,31v0,30,-19,36,-46,32r0,-30r-9,0v-2,-7,4,-5,9,-5r0,-28xm17,-5v21,1,33,-4,33,-28v0,-24,-12,-28,-33,-27r0,24r10,0v3,6,-4,5,-10,5r0,26","w":61},"\u00d0":{"d":"9,-64v23,-4,46,1,46,31v0,29,-19,36,-46,32r0,-30r-10,0v-1,-7,5,-5,10,-5r0,-28xm15,-5v21,1,33,-4,33,-28v-1,-24,-12,-28,-33,-27r0,24r11,0v1,6,-5,5,-11,5r0,26","w":60},"E":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0","w":51},"\u00c8":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm33,-73v-6,6,-1,3,-17,-3v7,-8,3,-4,17,3","w":51},"\u00c9":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm22,-73v13,-8,10,-10,17,-3v-16,6,-11,9,-17,3","w":51},"\u00ca":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm18,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":51},"\u00cb":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm16,-75v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4xm31,-75v0,-2,2,-3,5,-3v2,0,2,0,2,2v0,5,0,5,-4,5v-2,0,-3,0,-3,-4","w":51},"\u0112":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm18,-71v0,-9,13,-3,20,-5v1,8,-13,4,-20,5","w":51},"\u0114":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm20,-80v2,6,12,5,15,0v2,0,3,1,3,2v0,4,-4,8,-11,8v-6,0,-10,-4,-10,-8v0,-1,0,-2,3,-2","w":51},"\u0116":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm24,-75v0,-2,2,-3,5,-3v2,0,2,0,2,2v0,5,0,5,-4,5v-2,0,-3,0,-3,-4","w":51},"\u0118":{"d":"15,-31r0,26v22,0,26,0,30,-1v0,11,-17,15,-5,20v3,-1,6,-1,4,2v-4,4,-13,1,-13,-6v0,-4,4,-7,8,-10r-30,0r0,-65r35,0v2,4,1,5,-3,5r-26,0r0,24r27,0r0,5r-27,0","w":51},"\u011a":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm39,-78v-16,12,-5,11,-22,0v4,-3,7,1,11,2v4,-1,8,-5,11,-2","w":51},"F":{"d":"15,-31r0,31r-6,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r26,0r0,5r-26,0","w":48},"G":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4","w":58},"\u011c":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm24,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":58},"\u011e":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm25,-80v4,6,12,5,16,0v2,0,3,1,3,2v0,4,-5,8,-11,8v-7,1,-16,-8,-8,-10","w":58},"\u0120":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm29,-75v0,-2,2,-3,5,-3v2,0,2,0,2,2v0,5,0,5,-4,5v-2,0,-3,0,-3,-4","w":58},"\u0122":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm26,19v5,-4,-2,-15,6,-15v4,5,1,23,-6,15","w":58},"H":{"d":"47,-31r-32,0r0,31r-6,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,27r32,0r0,-26v0,-2,2,-3,5,-3v1,0,2,0,2,2r-1,63r-6,0r0,-31","w":62},"\u0124":{"d":"47,-31r-32,0r0,31r-6,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,27r32,0r0,-26v0,-2,2,-3,5,-3v1,0,2,0,2,2r-1,63r-6,0r0,-31xm21,-72v7,-9,14,-11,21,0v-2,5,-7,-1,-10,-2v-3,1,-9,6,-11,2","w":62},"\u0126":{"d":"47,-30r-32,0r0,30r-6,0r0,-46r-7,0v-1,-5,2,-5,7,-5v1,-5,-3,-14,4,-14v5,1,1,10,2,14r32,0v1,-6,-3,-15,5,-14v4,1,1,4,1,14r7,0v2,5,-2,5,-7,5r0,46r-6,0r0,-30xm15,-35r32,0r0,-11r-32,0r0,11","w":62},"I":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0","w":24},"\u00cc":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm17,-73v-6,6,-1,3,-17,-3v7,-8,3,-4,17,3","w":24},"\u00cd":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm9,-73v13,-7,10,-11,16,-3v-12,6,-13,6,-14,6v-1,0,-2,-1,-2,-3","w":24},"\u00ce":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm2,-72v7,-10,13,-10,21,0v-2,4,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":24},"\u00cf":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm1,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm17,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":24},"\u0128":{"d":"13,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm11,-74v-2,0,-3,2,-2,4v-4,1,-5,-1,-5,-3v1,-10,11,-4,18,-4v1,0,2,-1,1,-4v4,0,5,2,5,4v0,9,-15,3,-17,3","w":32},"\u012a":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm3,-71v-1,-9,13,-4,19,-5v2,9,-12,4,-19,5","w":24},"\u012c":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm5,-80v2,6,12,5,15,0v2,0,3,1,3,2v0,4,-4,8,-11,8v-6,0,-10,-4,-10,-8v0,-1,0,-2,3,-2","w":24},"\u012e":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63v-7,6,-7,7,-7,10v-1,6,11,1,8,6v-4,4,-13,1,-13,-6v-1,-4,6,-8,6,-10","w":24},"\u0130":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm9,-75v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4","w":24},"\u0132":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm25,-5v5,2,12,2,12,-7r0,-50v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,51v2,10,-10,14,-18,11v0,-1,-1,-2,0,-4","w":52},"J":{"d":"1,-5v5,2,12,2,12,-7r0,-50v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,51v2,10,-10,14,-18,11v0,-1,-1,-2,0,-4","w":28},"\u0134":{"d":"1,-5v5,2,12,2,12,-7r0,-50v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,51v2,10,-10,14,-18,11v0,-1,-1,-2,0,-4xm6,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":28},"K":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2v-1,11,1,25,-1,34r29,-36v1,-2,9,2,6,3r-21,25v21,31,22,33,25,35v-3,4,-6,4,-9,0r-20,-30r-9,10r0,22r-6,0","w":54},"\u0136":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2v-1,11,1,25,-1,34r29,-36v1,-2,9,2,6,3r-21,25v21,31,22,33,25,35v-3,4,-6,4,-9,0r-20,-30r-9,10r0,22r-6,0xm24,19v5,-4,-2,-15,6,-15v4,5,2,22,-6,15","w":54},"L":{"d":"15,-5v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58"},"\u0139":{"d":"15,-5v18,0,25,0,28,-1v2,1,1,7,-3,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58xm9,-73v14,-8,9,-10,17,-3v-16,6,-11,9,-17,3"},"\u013b":{"d":"15,-5v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58xm21,19v5,-4,-2,-15,6,-15v4,5,2,22,-6,15"},"\u013d":{"d":"33,-67v-8,13,-3,14,-11,13v4,-7,4,-16,11,-13xm15,-5v19,0,26,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,2,-3,5,-3v1,0,2,0,2,2"},"\u013f":{"d":"15,-5v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58xm29,-29v-3,-1,-3,-8,2,-7v2,0,3,0,3,2v0,4,-1,5,-5,5"},"\u0141":{"d":"15,-35r12,-10v5,8,-9,12,-12,17r0,23v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-22v-3,3,-12,11,-9,1r9,-8r0,-33v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,28","w":44},"M":{"d":"59,-58r-16,58r-7,1r-15,-59r-11,58v-3,0,-7,0,-5,-3r11,-60v0,-2,8,-3,9,-1r15,57r15,-56v0,-2,1,-2,6,-2v2,0,3,0,3,1r11,60v3,4,-2,4,-5,4","w":80},"N":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0","w":62},"\u00d1":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm26,-74v-1,0,-2,2,-1,4v-4,1,-5,-1,-5,-3v1,-10,11,-4,18,-4v1,0,2,-1,1,-4v4,0,5,2,5,4v-1,10,-13,3,-18,3","w":62},"\u0143":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm26,-73v13,-7,10,-11,16,-3v-15,6,-10,9,-16,3","w":62},"\u0145":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm28,19v3,-5,-2,-15,5,-15v4,4,1,22,-5,15","w":62},"\u0147":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm43,-78v-15,12,-7,11,-22,0v5,-4,12,5,17,-1v2,-1,3,0,5,1","w":62},"\u014a":{"d":"53,0v1,14,-7,17,-16,18v-1,0,-1,0,-2,-3v6,-3,13,-2,12,-15r-33,-53v2,14,1,37,1,53r-6,0r0,-62v0,-3,5,-4,6,-2r33,54v-2,-15,0,-35,-1,-52v0,-2,1,-3,5,-3v1,0,2,0,2,2","w":62},"O":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28","w":62},"\u00d2":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm36,-73v-6,6,-1,3,-17,-3v8,-8,3,-4,17,3","w":62},"\u00d3":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm28,-73v13,-7,10,-11,16,-3v-15,6,-10,9,-16,3","w":62},"\u00d4":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm21,-72v7,-10,13,-10,21,0v-2,5,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":62},"\u00d5":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm43,-77v-1,13,-20,-4,-19,7v-4,1,-4,-1,-4,-3v0,-11,11,-4,17,-4v2,0,2,-1,1,-4v5,0,5,2,5,4","w":62},"\u00d6":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm20,-75v0,-3,7,-5,7,-1v0,5,-1,5,-4,5v-2,0,-3,0,-3,-4xm36,-75v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4","w":62},"\u00d8":{"d":"48,-59v18,13,10,65,-17,60v-7,1,-13,-6,-15,1v0,1,-1,1,-3,0v-5,-1,1,-5,1,-7v-21,-20,-3,-80,30,-57v1,-2,1,-8,6,-5v3,3,-1,5,-2,8xm31,-60v-19,-3,-26,35,-14,49r24,-46v-3,-2,-6,-3,-10,-3xm45,-53r-24,46v17,6,30,-2,30,-25v0,-10,-2,-17,-6,-21","w":62},"\u014c":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm21,-70v0,-8,13,-2,19,-4v2,4,-1,4,-5,4r-14,0","w":62},"\u014e":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm24,-80v3,6,12,5,15,0v2,0,3,1,3,2v0,4,-5,8,-11,8v-7,1,-17,-9,-7,-10","w":62},"\u0150":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm33,-79v-11,9,-8,9,-15,7v11,-11,9,-13,15,-7xm49,-79v-12,9,-10,9,-15,7v11,-11,7,-13,15,-7","w":62},"\u0152":{"d":"81,-65v-2,11,2,4,-29,5r0,24r26,0r0,5r-26,0r0,26v21,0,26,0,29,-1v2,2,1,7,-4,6r-32,0r0,-5v-17,15,-40,0,-40,-27v0,-29,24,-43,40,-27r0,-6r36,0xm45,-14v1,-19,6,-46,-14,-46v-12,0,-20,10,-20,28v0,26,24,36,34,18","w":87},"P":{"d":"9,0r0,-64v16,-3,37,-2,36,18v-1,19,-14,22,-30,19r0,27r-6,0xm15,-32v12,2,23,2,23,-14v0,-15,-10,-14,-23,-14r0,28","w":47},"Q":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,18,-9,29,-20,32v5,7,6,9,9,11v-9,8,-6,1,-16,-10v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28","w":62},"R":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27","w":52},"\u0154":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27xm22,-73v13,-8,10,-10,17,-3v-16,6,-11,9,-17,3","w":53},"\u0156":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27xm22,19v5,-4,-3,-14,5,-15v4,4,1,22,-5,15","w":53},"\u0158":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27xm37,-78v-15,12,-7,11,-22,0v6,-4,11,5,17,-1v2,-1,4,0,5,1","w":53},"S":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4","w":50},"\u015a":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm21,-73v13,-7,10,-11,16,-3v-12,6,-13,6,-13,6v-2,0,-3,-1,-3,-3","w":50},"\u015c":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm16,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":50},"\u015e":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm24,4v4,0,5,0,5,4v0,6,-5,7,-10,7v0,-7,7,-2,5,-11","w":50},"\u0160":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm37,-78v-18,12,-5,11,-23,0v7,-4,12,5,18,-1v2,-1,3,0,5,1","w":50},"T":{"d":"22,-60r-21,0v0,-6,0,-4,5,-5r43,0v1,10,-14,3,-21,5r0,60r-6,0r0,-60","w":49},"\u0162":{"d":"22,-60r-21,0v0,-6,0,-4,5,-5r43,0v1,10,-14,3,-21,5r0,60r-6,0r0,-60xm20,19v5,-4,-2,-15,6,-15v4,5,2,22,-6,15","w":49},"\u0164":{"d":"22,-60r-21,0v0,-6,0,-4,5,-5r43,0v1,10,-14,3,-21,5r0,60r-6,0r0,-60xm36,-78v-15,12,-7,11,-22,0v6,-4,11,5,17,-1v2,-1,4,0,5,1","w":49},"\u0166":{"d":"42,-36v1,7,-8,5,-14,5r0,31r-6,0r0,-31r-14,0v-3,-8,8,-4,14,-5r0,-24r-21,1v0,-4,0,-7,4,-6r44,0v2,10,-13,4,-21,5r0,24r14,0","w":49},"U":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58","w":61},"\u00d9":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm35,-73v-5,6,0,3,-16,-3v6,-8,4,-4,16,3","w":61},"\u00da":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm27,-73v10,-6,11,-7,12,-7v2,0,4,1,5,4v-16,6,-11,9,-17,3","w":61},"\u00db":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm21,-72v7,-10,13,-11,21,0v-2,5,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":61},"\u00dc":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm20,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm36,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":61},"\u0168":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm27,-74v-2,0,-3,2,-2,4v-4,1,-5,-1,-5,-3v1,-10,11,-4,18,-4v1,0,2,-1,1,-4v4,0,5,2,5,4v0,9,-15,3,-17,3","w":61},"\u016a":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm22,-71v-1,-9,13,-4,19,-5v2,9,-12,4,-19,5","w":61},"\u016c":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm24,-80v2,6,13,5,15,0v3,0,3,1,3,2v0,4,-4,8,-11,8v-6,0,-10,-4,-10,-8v0,-1,0,-2,3,-2","w":61},"\u016e":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm38,-77v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm34,-77v0,-2,-1,-4,-3,-4v-2,0,-4,2,-4,4v0,6,7,7,7,0","w":61},"\u0170":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm34,-79v-11,9,-8,9,-15,7v10,-11,8,-13,15,-7xm50,-79v-12,9,-10,9,-15,7v9,-11,8,-13,15,-7","w":61},"\u0172":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,25,8,60,-17,63v-7,8,-8,10,-3,14v3,0,6,-3,5,2v-5,4,-14,2,-13,-6v0,-4,3,-7,6,-10v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58","w":61},"V":{"d":"25,-8r17,-55v1,-2,8,-4,7,1r-21,62v0,0,-3,1,-6,0r-20,-62v-1,-2,1,-3,5,-3v9,16,11,39,18,57","w":50},"W":{"d":"70,-63v0,-1,2,-2,5,-2v2,0,2,1,1,3r-19,62v0,0,-3,1,-6,0v0,0,-13,-49,-13,-53v0,4,-13,53,-13,53v0,0,-4,1,-7,0r-16,-62v-1,-2,1,-3,5,-3v1,0,1,0,2,2r13,55r12,-54v1,-3,7,-5,8,-1r13,55","w":78},"\u0174":{"d":"70,-63v0,-1,2,-2,5,-2v2,0,2,1,1,3r-19,62v0,0,-3,1,-6,0v0,0,-13,-49,-13,-53v0,4,-13,53,-13,53v0,0,-4,1,-7,0r-16,-62v-1,-2,1,-3,5,-3v1,0,1,0,2,2r13,55r12,-54v1,-3,7,-5,8,-1r13,55xm28,-72v6,-10,14,-10,20,0v-1,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":78},"X":{"d":"26,-38r15,-26v1,-1,2,-2,4,-1v3,1,3,2,2,4r-18,28v15,27,16,29,19,31v-4,3,-5,4,-8,1r-14,-27r-16,27v-1,2,-2,2,-4,1v-3,-1,-3,-1,-2,-3r18,-30v-16,-26,-17,-28,-19,-30v3,-3,5,-3,8,-1","w":51},"Y":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23","w":49},"\u00dd":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23xm21,-73v13,-7,10,-11,16,-3v-12,6,-13,6,-13,6v-2,0,-3,-1,-3,-3","w":49},"\u0176":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23xm15,-72v7,-10,13,-10,21,0v-2,5,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":49},"\u0178":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23xm14,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm30,-75v0,-3,7,-5,7,-1v0,5,-1,5,-4,5v-2,0,-3,0,-3,-4","w":49},"Z":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55","w":50},"\u0179":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55xm20,-73v10,-6,11,-7,12,-7v2,0,4,1,5,4v-16,6,-11,9,-17,3","w":50},"\u017b":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55xm22,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":50},"\u017d":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55xm37,-78v-15,12,-7,11,-22,0v4,-3,7,1,11,2v4,-1,8,-5,11,-2","w":50},"a":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7"},"\u00e0":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm27,-55v-5,2,-3,1,-14,-8v6,-6,5,-4,14,8"},"\u00e1":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm33,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8"},"\u00e2":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm14,-54v-5,-3,8,-12,8,-12v2,0,4,1,9,7v2,1,3,5,0,5r-9,-7"},"\u00e3":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm16,-58v-2,0,-2,1,-2,4v-4,1,-4,-1,-4,-4v0,-10,12,-2,17,-3v2,0,2,-1,2,-4v4,-1,4,1,4,4v0,10,-13,2,-17,3"},"\u00e4":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm11,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm27,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4"},"\u00e5":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm30,-60v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm26,-60v0,-2,-1,-4,-3,-4v-2,0,-3,2,-3,4v0,3,1,5,3,5v2,0,3,-2,3,-5"},"\u0101":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm13,-56v-1,-8,12,-4,19,-5v2,9,-12,4,-19,5"},"\u0103":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm16,-66v2,10,12,9,14,0v3,0,3,1,3,2v0,6,-4,10,-10,10v-6,0,-10,-4,-10,-10v0,-1,0,-2,3,-2"},"\u0105":{"d":"38,0v-7,6,-7,7,-7,10v-1,6,11,1,8,6v-4,4,-13,1,-13,-6v0,-4,3,-7,7,-10v-1,0,-2,-2,-2,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7"},"\u00e6":{"d":"64,-7v2,7,-5,7,-15,7v-8,0,-14,-2,-16,-10v-4,6,-9,10,-16,10v-6,0,-13,-3,-13,-12v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-5,15,-7v4,0,11,2,12,8v8,-14,32,-11,30,12v-3,8,-20,2,-29,4v-3,21,16,19,27,16xm37,-27r23,0v1,-11,-4,-15,-10,-15v-7,0,-12,6,-13,15xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7","w":70},"b":{"d":"8,-2v3,-17,0,-46,0,-65v0,-2,3,-3,6,-3v2,8,1,23,0,32v9,-14,30,-11,30,14v0,26,-18,26,-36,22xm14,-6v15,2,23,3,24,-18v1,-22,-14,-21,-23,-11v0,27,-1,29,-1,29","w":49},"c":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18","w":40},"\u0107":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm34,-63v-11,9,-8,10,-15,8v11,-12,8,-14,15,-8","w":40},"\u0109":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm15,-54v-5,-3,8,-12,8,-12v2,0,3,1,8,7v2,1,3,5,0,5r-8,-7","w":40},"\u010b":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm20,-59v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":40},"\u010d":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm35,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":40},"\u00e7":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm22,4v4,0,5,0,5,4v0,6,-5,7,-10,7v0,-7,7,-2,5,-11","w":40},"d":{"d":"36,-9v-8,13,-31,12,-31,-13v0,-23,14,-29,30,-23v2,-9,-7,-25,5,-25v3,20,0,46,1,70v-6,2,-8,-4,-5,-9xm35,-40v-12,-4,-23,-3,-23,17v0,24,17,20,23,10r0,-27","w":49},"\u010f":{"d":"56,-69v-6,14,-3,15,-11,13v5,-6,4,-15,11,-13xm36,-9v-8,13,-31,12,-31,-13v0,-23,14,-29,30,-23v2,-17,-7,-24,5,-25v3,20,0,46,1,70v-6,2,-8,-4,-5,-9xm35,-40v-12,-4,-23,-3,-23,17v0,24,17,20,23,10r0,-27","w":49},"\u0111":{"d":"36,-9v-8,13,-31,12,-31,-13v0,-23,14,-29,30,-23r0,-10r-14,0v-3,-8,8,-4,14,-5v-1,-5,-3,-11,5,-10v2,1,0,7,1,10r7,0v2,5,-2,5,-7,5r0,55v-6,2,-8,-4,-5,-9xm35,-40v-12,-4,-23,-3,-23,17v0,24,17,20,23,10r0,-27","w":49},"\u00f0":{"d":"35,-45v-1,-6,-3,-11,-6,-14r-10,7v-6,-6,3,-8,6,-10v-4,-3,-16,-4,-10,-9v2,0,11,1,16,5r9,-6v6,6,-3,6,-6,10v11,10,16,62,-10,62v-12,0,-19,-8,-19,-22v0,-23,14,-29,30,-23xm36,-40v-13,-4,-25,-4,-24,17v0,13,5,18,12,18v12,4,15,-22,12,-35","w":49},"e":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15"},"\u00e8":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm28,-55v-5,2,-3,1,-15,-8v7,-6,6,-4,15,8"},"\u00e9":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm36,-63v-11,9,-8,10,-15,8v10,-12,8,-14,15,-8"},"\u00ea":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm14,-56v7,-12,13,-13,20,0v0,2,0,2,-2,2r-8,-7v-3,1,-7,10,-10,5"},"\u00eb":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm13,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm29,-61v0,-3,7,-5,7,-1v0,4,-1,5,-5,5v-2,0,-2,-1,-2,-4"},"\u0113":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm15,-56v-1,-8,12,-4,19,-5v2,9,-12,4,-19,5"},"\u0115":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm18,-66v2,10,11,9,14,0v2,0,3,1,3,2v0,6,-5,10,-10,10v-6,0,-11,-4,-11,-10v0,-1,1,-2,4,-2"},"\u0117":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm21,-59v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4"},"\u0119":{"d":"38,-7v2,6,-3,6,-11,7v-8,8,-10,10,-3,14v3,-1,6,-1,4,2v-4,4,-13,1,-13,-6v0,-4,3,-7,7,-10v-10,-1,-17,-8,-17,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15"},"\u011b":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm35,-64v-15,15,-7,14,-22,0v4,-5,8,3,11,5v3,-2,6,-9,11,-5"},"f":{"d":"9,-42r-7,0v0,-5,0,-5,7,-5v-1,-12,0,-24,11,-23v5,1,11,2,9,6v-4,0,-14,-4,-14,6r0,11r12,0v2,8,-7,4,-12,5r0,42r-6,0r0,-42","w":27},"g":{"d":"41,-47v1,6,-1,5,-9,5v14,9,2,35,-17,27v-5,4,-5,8,2,8v12,1,25,2,25,14v0,10,-7,16,-22,16v-21,0,-22,-19,-9,-25r2,0v-10,-3,-9,-10,-1,-15v-12,-6,-9,-30,10,-30v8,0,9,1,19,0xm26,-1v-18,-6,-27,19,-6,19v17,2,24,-17,6,-19xm22,-42v-8,0,-11,4,-11,11v0,7,3,12,11,12v7,0,10,-5,10,-11v0,-7,-3,-12,-10,-12","w":44},"\u011d":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm15,-54v-5,-3,8,-12,8,-12v2,0,3,1,8,7v3,1,2,5,0,5r-8,-7","w":44},"\u011f":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm16,-66v2,10,12,9,14,0v3,0,3,1,3,2v0,6,-4,10,-10,10v-6,0,-10,-4,-10,-10v0,-1,0,-2,3,-2","w":44},"\u0121":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm19,-59v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":44},"\u0123":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm26,-70v-5,5,3,14,-5,15v-4,-5,-1,-22,5,-15","w":44},"h":{"d":"37,-4v-2,-13,5,-37,-8,-38v-5,0,-10,3,-15,8r0,34r-6,0v0,-4,2,-55,0,-67v0,-2,2,-3,5,-3v5,4,0,23,1,31v8,-10,31,-12,30,7v0,27,-1,29,0,32v-4,0,-7,0,-7,-4","w":51},"\u0125":{"d":"37,-4v-2,-13,5,-37,-8,-38v-5,0,-10,3,-15,8r0,34r-6,0v0,-4,2,-55,0,-67v0,-2,2,-3,5,-3v5,4,0,23,1,31v8,-10,31,-12,30,7v0,27,-1,29,0,32v-4,0,-7,0,-7,-4xm1,-79v6,-8,14,-11,21,0v-2,5,-7,-1,-10,-2v-3,1,-9,7,-11,2","w":51},"\u0127":{"d":"14,-34r0,34r-6,0r1,-54r-7,0v0,-4,2,-4,6,-4v0,-5,-2,-12,5,-11v4,0,1,8,2,11r16,0v1,7,-10,3,-16,4v0,5,1,12,-1,15v8,-10,31,-12,30,7v0,28,-1,29,0,32v-4,0,-7,0,-7,-4v-2,-13,5,-37,-8,-38v-5,0,-10,3,-15,8","w":51},"i":{"d":"14,0r-6,0r0,-44v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,15,0,30,-1,45xm8,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5","w":23},"\u00ec":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm14,-55v-5,2,-3,1,-14,-8v6,-6,5,-4,14,8","w":22},"\u00ed":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm23,-63v-11,9,-8,10,-15,8v10,-12,8,-14,15,-8","w":22},"\u00ee":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm3,-54v-5,-3,8,-12,8,-12v2,0,4,1,9,7v2,1,3,5,0,5r-9,-7","w":22},"\u00ef":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm0,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm16,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":22},"\u0129":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm23,-61v-1,13,-20,-5,-19,7v-4,1,-4,-1,-4,-4v0,-10,12,-2,17,-3v2,0,2,-1,1,-4v4,-1,5,1,5,4","w":22},"\u012b":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm2,-56v-1,-8,12,-4,19,-5v2,9,-11,3,-19,5","w":22},"\u012d":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm4,-66v3,10,12,9,14,0v3,0,4,1,4,2v0,6,-5,10,-11,10v-5,1,-15,-9,-7,-12","w":22},"\u012f":{"d":"14,0v-7,8,-8,10,-3,14v3,0,6,-3,5,2v-5,4,-14,2,-13,-6v-1,-4,6,-8,5,-10r0,-44v0,-2,2,-3,5,-3v1,0,2,1,2,2xm8,-59v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":23},"\u0131":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45","w":22},"\u0133":{"d":"14,0r-6,0r0,-44v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,15,0,30,-1,45xm8,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5xm32,3v1,14,-5,13,-12,17v0,2,1,3,2,3v6,-1,16,-4,16,-18r0,-50v-1,-4,-8,-2,-7,1xm31,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5","w":46},"j":{"d":"9,3v1,14,-5,13,-12,17v0,2,1,3,2,3v6,-1,16,-4,16,-18r0,-50v-1,-4,-8,-2,-7,1xm8,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5","w":23},"\u0135":{"d":"9,3v1,14,-5,13,-12,17v0,2,1,3,2,3v6,-1,16,-4,16,-18r0,-50v-1,-4,-8,-2,-7,1xm2,-56v6,-12,13,-13,20,0v-3,4,-7,-3,-10,-5r-8,7v-2,0,-2,0,-2,-2","w":23},"k":{"d":"14,-70v3,12,-1,30,0,44r20,-21v1,-1,2,-1,4,1v1,1,1,2,1,3r-15,14v14,24,15,25,18,27v-2,4,-7,4,-10,-1r-12,-22r-6,5r0,20r-6,0v1,-7,1,-64,0,-67v0,-2,3,-3,6,-3","w":44},"\u0137":{"d":"14,-70v3,12,-1,30,0,44r20,-21v1,-1,2,-1,4,1v1,1,1,2,1,3r-15,14v14,24,15,25,18,27v-2,4,-7,4,-10,-1r-12,-22r-6,5r0,20r-6,0v1,-7,1,-64,0,-67v0,-2,3,-3,6,-3xm19,19v5,-4,-3,-14,5,-15v4,4,1,22,-5,15","w":44},"\u0138":{"d":"34,-47v1,-1,2,-1,4,1v1,1,1,2,1,3r-15,14v14,24,15,25,18,27v-2,4,-7,4,-10,-1r-12,-22r-6,5r0,20r-6,0r0,-44v0,-2,2,-3,5,-3v5,3,1,10,1,21","w":44},"l":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60","w":24},"\u013a":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60xm7,-81v10,-6,11,-6,12,-6v2,0,4,0,5,3v-16,6,-11,9,-17,3","w":24},"\u013c":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60xm9,19v4,-3,-1,-14,5,-15v6,3,1,22,-5,15","w":24},"\u013e":{"d":"31,-69v-8,14,-3,15,-11,13v4,-4,3,-14,11,-13xm14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60","w":24},"\u0140":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60xm23,-30v-3,-1,-3,-8,2,-7v2,0,3,0,3,2v0,4,-1,5,-5,5","w":24},"\u0142":{"d":"14,-34v2,11,-6,34,9,30v0,4,-2,4,-5,4v-16,2,-8,-16,-10,-28v-2,5,-13,6,-7,0r7,-7r0,-32v0,-2,2,-3,5,-3v5,6,0,21,1,30v4,-2,9,-12,11,-4v-2,5,-7,7,-11,10","w":25},"m":{"d":"36,0v-2,-14,6,-41,-8,-42v-4,0,-9,3,-13,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v8,-8,22,-13,27,1v8,-12,28,-14,27,6v0,27,0,29,1,32v-4,0,-8,1,-7,-4v-1,-13,5,-37,-7,-38v-3,0,-12,3,-14,10r0,32r-5,0","w":76},"n":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32","w":52},"\u00f1":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm22,-58v-2,0,-3,1,-2,4v-4,1,-5,-1,-5,-4v1,-10,12,-3,18,-3v1,0,2,-1,1,-4v4,-1,5,1,5,4v0,9,-15,3,-17,3","w":52},"\u0144":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm37,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8","w":52},"\u0146":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm22,19v5,-4,-3,-14,5,-15v6,3,1,22,-5,15","w":52},"\u0148":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm38,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":52},"\u014b":{"d":"26,13v6,-3,13,-4,12,-16v-1,-14,5,-39,-9,-39v-5,0,-10,3,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,2,6,1,8v8,-10,30,-12,30,7r0,30v1,14,-9,17,-16,18v-1,0,-2,-1,-2,-3","w":51},"\u0149":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-5,0,-10,3,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,2,6,1,8v8,-10,30,-12,30,7r0,32xm2,-53v4,-4,-2,-19,6,-19v3,6,3,25,-6,19","w":52},"o":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18","w":48},"\u00f2":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm29,-55v-7,2,-3,1,-15,-8v7,-6,6,-4,15,8","w":48},"\u00f3":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm38,-63v-11,9,-9,10,-14,8v9,-12,8,-14,14,-8","w":48},"\u00f4":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm16,-54v-5,-3,8,-12,8,-12v2,0,4,1,9,7v2,1,3,5,0,5r-9,-7","w":48},"\u00f5":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm18,-58v-2,0,-2,1,-1,4v-5,1,-5,-1,-5,-4v1,-9,15,-3,17,-3v2,0,2,-1,2,-4v4,-1,4,1,4,4v0,10,-13,2,-17,3","w":48},"\u00f6":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm13,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm29,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":48},"\u00f8":{"d":"37,-42v12,10,7,46,-13,42v0,0,-9,-2,-10,3v-6,2,-6,-3,-3,-7v-14,-14,-2,-55,22,-41v0,-3,4,-7,7,-2xm18,-6v17,8,23,-18,16,-30xm30,-41v-16,-8,-22,18,-16,31","w":48},"\u014d":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm34,-61v2,9,-11,3,-19,5v-1,-9,12,-4,19,-5","w":48},"\u014f":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm17,-66v2,10,13,9,14,0v3,0,3,1,3,2v0,6,-4,10,-10,10v-5,0,-10,-4,-10,-10v0,-1,0,-2,3,-2","w":48},"\u0151":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm28,-63v-11,9,-8,10,-15,8v9,-12,8,-14,15,-8xm43,-63v-12,8,-10,12,-15,7v11,-11,9,-13,15,-7","w":48},"\u0153":{"d":"39,-36v7,-17,33,-16,32,9v-3,8,-20,2,-29,4v-4,20,16,19,26,16v1,2,1,3,1,4v-7,3,-29,6,-31,-6v-8,17,-33,10,-33,-14v0,-26,27,-32,34,-13xm36,-23v0,-12,-4,-19,-12,-19v-7,0,-12,6,-12,19v0,12,4,19,12,19v7,0,12,-7,12,-19xm42,-27r23,0v1,-11,-4,-15,-10,-15v-7,0,-12,6,-13,15","w":75},"p":{"d":"9,-28v0,-10,-5,-19,4,-19v2,1,1,5,1,8v10,-13,32,-10,30,15v-2,23,-12,26,-30,23v0,17,0,20,1,24v-4,1,-7,-1,-7,-4v1,-28,1,-37,1,-47xm14,-6v14,2,24,3,24,-18v1,-22,-15,-21,-24,-11r0,29","w":49},"q":{"d":"35,-8v-9,12,-30,11,-30,-14v0,-23,16,-29,30,-22v1,-3,6,-4,6,-1r1,68v-14,3,-4,-25,-7,-31xm35,-40v-12,-4,-23,-3,-23,17v0,24,16,20,23,10r0,-27","w":49},"r":{"d":"32,-41v-8,-1,-13,2,-17,7r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,0,6,1,9v5,-6,11,-11,18,-8v0,1,1,1,0,5","w":33},"\u0155":{"d":"32,-41v-8,-1,-13,2,-17,7r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,0,6,1,9v5,-6,11,-11,18,-8v0,1,1,1,0,5xm30,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8","w":33},"\u0157":{"d":"31,-41v-8,-1,-12,2,-17,7r0,34r-6,0r-1,-44v0,-2,2,-3,5,-3v3,1,2,5,1,9v5,-6,11,-11,18,-8v1,1,1,1,0,5xm6,19v5,-4,-3,-14,5,-15v6,3,1,22,-5,15","w":33},"\u0159":{"d":"31,-41v-8,-1,-12,2,-17,7r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,0,6,1,9v5,-6,11,-11,18,-8v0,1,1,1,0,5xm29,-64v-16,15,-6,14,-22,0v5,-5,8,3,11,5v3,-2,6,-9,11,-5","w":33},"s":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3","w":38},"\u015b":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm30,-63v-11,9,-8,10,-15,8v11,-12,8,-14,15,-8","w":38},"\u015d":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm8,-56v7,-12,13,-13,20,0v-3,4,-7,-3,-10,-5v-3,1,-7,10,-10,5","w":38},"\u015f":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm13,15v-2,-5,8,-2,4,-11r5,0v1,7,-2,12,-9,11","w":38},"\u0161":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm30,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":38},"t":{"d":"28,-5v2,5,-3,4,-8,5v-18,1,-7,-28,-10,-42r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,8r12,0v2,8,-7,4,-12,5r0,31v0,8,6,7,12,6","w":31},"\u0163":{"d":"28,-5v2,5,-3,4,-8,5v-18,1,-7,-28,-10,-42r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,8r12,0v2,8,-7,4,-12,5r0,31v0,8,6,7,12,6xm11,19v5,-4,-3,-14,5,-15v4,4,1,22,-5,15","w":31},"\u0165":{"d":"32,-69v-7,15,-4,15,-11,13v4,-4,3,-15,11,-13xm28,-5v2,5,-3,4,-8,5v-18,1,-7,-28,-10,-42r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,8r12,0v2,8,-7,4,-12,5r0,31v0,8,6,7,12,6","w":31},"\u0167":{"d":"4,-24v-2,-5,0,-5,6,-5r0,-13r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,9r12,-1v2,8,-7,4,-12,5r0,13r10,0v1,6,-5,5,-10,5v0,11,-2,25,12,19v2,5,-3,4,-8,5v-13,2,-10,-13,-10,-24r-6,0","w":31},"u":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3","w":51},"\u00f9":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm31,-55v-7,2,-4,1,-15,-8v7,-6,6,-4,15,8","w":51},"\u00fa":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm38,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8","w":51},"\u00fb":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm16,-56v7,-12,13,-13,20,0v0,2,0,2,-2,2r-8,-7v-3,1,-7,10,-10,5","w":51},"\u00fc":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm15,-61v0,-3,7,-5,7,-1v0,4,-1,5,-4,5v-2,0,-3,-1,-3,-4xm33,-57v-3,-1,-3,-8,2,-7v2,0,3,0,3,2v0,4,-1,5,-5,5","w":51},"\u0169":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm21,-58v-2,0,-2,1,-2,4v-4,1,-4,-1,-4,-4v0,-10,12,-2,17,-3v2,0,2,-1,2,-4v4,-1,4,1,4,4v0,10,-13,2,-17,3","w":51},"\u016b":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm36,-61v1,10,-12,3,-19,5v-2,-8,12,-4,19,-5","w":51},"\u016d":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm19,-66v1,10,12,9,14,0v3,0,3,1,3,2v0,6,-5,10,-10,10v-6,0,-10,-4,-10,-10v0,-1,0,-2,3,-2","w":51},"\u016f":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm33,-60v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm29,-60v0,-2,-1,-4,-3,-4v-2,0,-4,2,-4,4v0,6,7,7,7,0","w":51},"\u0171":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm30,-63v-11,9,-9,10,-14,8v9,-12,8,-14,14,-8xm46,-63v-12,8,-10,12,-15,7v9,-11,8,-13,15,-7","w":51},"\u0173":{"d":"44,0v-8,7,-10,10,-3,14v1,-1,7,-1,4,2v-4,4,-13,1,-13,-6v0,-4,3,-7,7,-10v-2,0,-3,-2,-2,-7r1,-2v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47","w":53},"v":{"d":"21,-7r13,-38v0,-1,1,-2,4,-2v2,0,3,1,2,3r-17,44v0,0,-2,1,-5,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2","w":42},"w":{"d":"20,-6r8,-38v1,-3,6,-5,7,-1r9,39r10,-39v0,-1,1,-2,5,-2v1,0,2,1,1,3r-13,44v0,0,-4,1,-6,0r-10,-34r-8,34v0,0,-4,1,-6,0r-14,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2","w":61},"\u0175":{"d":"20,-6r8,-38v1,-3,6,-5,7,-1r9,39r10,-39v0,-1,1,-2,5,-2v1,0,2,1,1,3r-13,44v0,0,-4,1,-6,0r-10,-34r-8,34v0,0,-4,1,-6,0r-14,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2xm23,-54v-5,-3,8,-12,8,-12v2,0,3,1,8,7v2,1,3,5,0,5r-8,-7","w":61},"x":{"d":"4,-44v0,-2,7,-5,8,0r10,16r11,-18v1,-3,7,1,5,2r-14,19v13,19,14,20,17,23v-2,1,-7,4,-9,0r-10,-18r-13,20v-2,2,-8,-2,-6,-3r16,-21v-12,-17,-13,-18,-15,-20","w":43},"y":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18","w":42},"\u00fd":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18xm33,-63v-11,9,-8,10,-15,8v9,-12,8,-14,15,-8","w":42},"\u00ff":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18xm10,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm26,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":42},"\u0177":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18xm11,-56v8,-12,13,-14,21,0v-3,4,-7,-3,-10,-5v-3,2,-8,10,-11,5","w":42},"z":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37","w":41},"\u017a":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37xm32,-63v-11,9,-8,10,-15,8v9,-12,8,-14,15,-8","w":41},"\u017c":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37xm18,-59v0,-3,7,-5,7,-1v0,4,-1,5,-4,5v-2,0,-3,-1,-3,-4","w":41},"\u017e":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37xm32,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":41},"\u00df":{"d":"14,0r-6,0v3,-27,-10,-69,19,-70v14,0,18,12,12,25v-7,3,-9,6,-9,11v0,8,17,6,17,21v3,12,-16,16,-25,11r0,-3v9,1,20,3,19,-8v0,-11,-17,-7,-17,-21v0,-7,4,-11,11,-14v4,-9,0,-17,-8,-17v-21,1,-10,43,-13,65","w":51},"\u00de":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v5,-1,1,8,2,12v15,-3,31,0,30,18v0,19,-14,22,-30,19r0,16r-6,0xm15,-21v12,2,23,2,23,-14v0,-15,-10,-13,-23,-13r0,27","w":49},"\u00fe":{"d":"9,-28v2,-10,-7,-44,4,-42v3,8,0,21,1,32v9,-14,32,-11,30,14v-2,23,-12,26,-30,23v1,17,1,20,1,23v-4,0,-7,0,-7,-4v1,-28,1,-36,1,-46xm14,-6v14,2,24,3,24,-18v1,-22,-15,-21,-24,-11v1,25,0,29,0,29","w":49},"{":{"d":"5,-29r0,-3v6,0,8,-2,8,-7r-1,-32v-2,-7,9,-9,13,-5v1,0,1,1,0,3v0,0,-8,-1,-7,3v-2,15,6,36,-7,40v14,4,4,27,7,41v-2,5,10,1,7,6v-4,2,-15,1,-13,-5v-2,-14,8,-38,-7,-41","w":27},"|":{"d":"11,24r0,-93v0,-2,1,-3,4,-3v5,0,1,28,1,41r0,55r-5,0","w":27},"}":{"d":"23,-32r0,3v-16,2,-5,27,-8,41v2,6,-8,7,-13,5v-2,-6,8,0,8,-6v2,-14,-6,-36,6,-41v-12,-5,-4,-26,-6,-40v0,-4,-4,-3,-8,-3v-1,-4,3,-5,6,-5v14,1,4,26,7,39v0,5,2,7,8,7","w":27},"[":{"d":"19,13r0,5r-14,0r0,-96r14,0r0,5r-8,0r0,86r8,0","w":20},"\\":{"d":"4,-67v3,0,4,0,6,2r24,73v-3,0,-6,0,-6,-3v-23,-69,-23,-70,-24,-72","w":38},"]":{"d":"2,18r0,-5r8,0r0,-86r-8,0r0,-5r14,0r0,96r-14,0","w":20},"\u2026":{"d":"6,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4xm25,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4xm44,-4v0,-3,7,-6,8,-1v0,5,-1,5,-5,5v-2,0,-3,0,-3,-4","w":57},"\u00b7":{"d":"6,-27v-1,-4,7,-6,8,-2v2,7,-8,9,-8,2","w":19},"\u00bf":{"d":"21,-34v6,18,-12,29,-13,41v-1,14,17,6,21,8v2,5,-4,7,-11,7v-10,0,-16,-5,-16,-15v-1,-15,20,-21,14,-41r5,0xm22,-43v0,2,-2,4,-5,4v-2,0,-3,-1,-3,-2v-2,-7,8,-9,8,-2","w":33},"\u00a1":{"d":"12,22v-2,0,-2,-1,-2,-2v0,-15,1,-54,1,-54r4,0v0,0,1,39,1,53v0,2,-1,3,-4,3xm14,-47v2,1,4,8,-2,8v-2,0,-3,-1,-3,-2v0,-5,1,-6,5,-6","w":25},"\u00b6":{"d":"15,8v10,0,13,-1,13,-8r0,-60r-6,0r0,28v-11,1,-18,-4,-18,-16v0,-21,25,-16,39,-17v1,7,-5,6,-9,5r0,57v1,14,-7,18,-18,15v-1,0,-1,-1,-1,-4","w":47},"~":{"d":"42,-30v-4,17,-35,-7,-35,10v-4,1,-5,-1,-5,-4v2,-13,20,-4,32,-5v3,0,4,-2,3,-6v4,-1,5,1,5,5","w":44},"\u00a2":{"d":"34,-47v-10,-4,-23,-2,-23,16v0,20,12,20,23,16v4,6,-2,6,-9,7r0,11r-5,1r0,-12v-8,-1,-15,-7,-15,-22v0,-16,6,-22,15,-24v1,-5,-2,-11,4,-11v4,0,1,8,2,11v5,1,10,2,8,7","w":39},"\u00a3":{"d":"3,-28v-2,-5,3,-5,8,-5v-5,-15,-2,-31,16,-30v8,1,15,0,13,5v-6,3,-26,-5,-24,12v0,5,0,8,1,13r17,0v2,9,-9,4,-16,5v2,9,2,17,-2,23v23,0,26,0,29,-1v2,2,1,6,-4,6r-38,0v-1,-5,2,-5,7,-5v3,-4,4,-14,2,-23r-9,0","w":46},"\u00a4":{"d":"9,-17v-6,-8,-5,-19,0,-27v-5,-5,-6,-6,-8,-7v5,-8,9,1,12,4v6,-5,17,-5,23,0v6,-5,7,-6,8,-8v7,5,-2,8,-4,12v5,6,5,20,0,26v6,8,9,7,4,11v-3,-1,-5,-5,-8,-7v-6,4,-19,5,-24,-1v-7,8,-7,10,-10,5v0,-4,5,-6,7,-8xm10,-30v0,8,5,15,14,15v10,0,14,-7,14,-15v0,-9,-4,-16,-14,-16v-9,0,-14,7,-14,16","w":48},"\u00a5":{"d":"22,-16r0,-5r-16,0v-1,-8,8,-4,14,-5r-17,-33v-1,-3,0,-4,4,-4v1,0,2,0,2,2r17,34r16,-34v0,-1,1,-2,5,-2v2,0,2,1,1,3r-17,34r14,0v2,7,-9,5,-16,5r0,5r16,0v2,4,-1,4,-5,4r-11,0r0,12r-7,0r0,-12r-16,0v-1,-7,10,-3,16,-4","w":50},"\u00a7":{"d":"34,-58v-5,-4,-22,-3,-20,8v0,13,25,12,25,29v0,5,-4,9,-6,11v9,9,1,27,-12,25v-8,-1,-14,0,-12,-7v7,3,22,5,22,-8v0,-13,-25,-13,-25,-30v0,-4,2,-9,5,-11v-11,-14,9,-31,23,-21v1,1,1,2,0,4xm14,-38v-6,14,3,17,16,25v9,-12,-5,-19,-16,-25","w":44},"\u00ab":{"d":"20,-9v-4,-6,-18,-10,-14,-20v5,-4,10,-11,16,-12v1,7,-8,10,-11,16v3,5,12,9,11,15v0,1,-1,1,-2,1xm36,-9v-4,-6,-20,-10,-14,-20v5,-4,10,-11,16,-12v0,7,-9,10,-12,16v4,5,11,9,12,15v-1,1,-2,1,-2,1"},"\u00bb":{"d":"25,-41v4,6,18,10,14,19r-14,13v-6,-4,6,-11,9,-16v-3,-5,-13,-9,-11,-16v0,0,1,-1,2,0xm9,-41v4,6,20,10,14,19r-14,13v0,0,-1,0,-2,-1v1,-6,9,-10,12,-15v-4,-5,-12,-9,-12,-16v1,0,2,-1,2,0"},"\u2018":{"d":"13,-71v-4,6,2,20,-6,21v-2,0,-3,-1,-3,-3v2,-13,0,-20,9,-18","w":15},"\u2019":{"d":"3,-52v5,-7,-4,-20,6,-20v1,0,2,0,2,2v-1,15,-1,20,-8,18","w":15},"\u201c":{"d":"13,-71v-4,6,2,20,-6,21v-2,0,-3,-1,-3,-3v2,-13,0,-20,9,-18xm24,-71v-4,6,2,20,-6,21v-6,-5,-2,-27,6,-21","w":26},"\u201d":{"d":"3,-52v5,-7,-4,-20,6,-20v1,0,2,0,2,2v-1,15,-1,20,-8,18xm14,-52v4,-7,-2,-19,6,-20v2,0,3,0,3,2v-2,15,-1,21,-9,18","w":26},"_":{"d":"48,12v0,5,-1,4,-4,5r-44,0v0,-5,1,-4,4,-5r44,0","w":48},"\u00ad":{"d":"5,-26v-1,-9,16,-3,24,-5v1,10,-16,3,-24,5","w":33},"\u2013":{"d":"48,-35v0,5,1,5,-4,6r-44,0v0,-4,0,-6,4,-6r44,0","w":48},"\u2014":{"d":"0,-29v0,-4,0,-6,4,-6r92,0v0,5,0,5,-5,6r-91,0","w":96},"\u00ae":{"d":"22,-36r0,-27v9,0,18,-1,17,8v0,4,-3,6,-6,7v5,9,6,10,7,11v-8,5,-6,-11,-14,-10r0,11r-4,0xm26,-60r0,9v9,3,11,-9,3,-9r-3,0xm10,-49v0,11,9,19,20,19v10,0,19,-8,19,-19v0,-11,-9,-19,-19,-19v-11,0,-20,8,-20,19xm6,-49v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24","w":59},"\u2122":{"d":"18,-36r-5,0r0,-24r-9,0v-1,-10,15,-3,23,-5v1,7,-3,4,-9,5r0,24xm49,-59v0,9,-3,15,-4,23r-6,0r-5,-23r-2,23v-3,0,-6,0,-5,-3r5,-24v0,-2,1,-2,4,-2v1,0,2,0,2,2r4,20r5,-21v0,-1,1,-1,4,-1v1,0,2,0,2,1r4,27v-1,1,-2,1,-5,1","w":64},"\u00a9":{"d":"5,-34v0,-19,12,-33,31,-33v20,0,32,14,32,33v0,18,-12,33,-32,33v-19,0,-31,-15,-31,-33xm10,-34v0,16,9,28,26,28v17,0,27,-12,27,-28v0,-16,-10,-29,-27,-29v-17,0,-26,13,-26,29xm26,-34v-1,-16,10,-18,20,-14v3,-6,-4,-6,-8,-7v-10,0,-17,6,-17,21v0,18,14,23,26,18v0,-1,1,-2,0,-4v-12,2,-21,3,-21,-14","w":72},"\u00b0":{"d":"4,-55v0,-6,5,-10,10,-10v6,0,11,4,11,10v0,6,-5,10,-11,10v-5,0,-10,-4,-10,-10xm9,-55v0,3,2,5,5,5v4,0,6,-2,6,-5v0,-3,-2,-6,-6,-6v-3,0,-5,3,-5,6","w":28},"\u00b9":{"d":"3,-59v-1,-5,8,-5,11,-7v2,0,3,1,3,3r0,35r-6,1r0,-33","w":25},"\u00b2":{"d":"6,-28v-6,-9,17,-20,15,-27v2,-10,-15,-1,-14,-8v5,-5,23,-3,20,7v0,8,-12,18,-18,24v16,0,17,0,20,-1v1,3,1,4,0,5r-23,0","w":34},"\u00b3":{"d":"12,-46r-1,-3v11,-1,12,-10,4,-12v-5,0,-10,3,-8,-2v4,-5,20,-4,18,6v0,5,-4,8,-7,9v6,0,9,3,9,8v1,13,-14,14,-22,10v0,0,-1,-1,0,-4v5,2,18,2,17,-6v0,-3,-2,-7,-10,-6","w":32},"\u00aa":{"d":"27,-34v-6,1,-4,-3,-5,-6v-2,7,-17,9,-18,-2v0,-8,8,-10,18,-9v3,-10,-7,-11,-14,-9v-1,-1,-1,-2,-1,-3v5,-3,20,-4,20,7r0,22xm13,-38v5,-1,10,-3,9,-10v-11,-2,-17,7,-9,10","w":34},"\u00ba":{"d":"30,-50v0,11,-4,16,-12,16v-8,0,-13,-5,-13,-16v0,-10,5,-15,13,-15v8,0,12,5,12,15xm26,-50v0,-7,-3,-11,-8,-11v-5,0,-8,4,-8,11v0,8,3,12,8,12v5,0,8,-4,8,-12","w":35},"\u00bc":{"d":"14,-60v-6,2,-14,-1,-3,-4v5,-2,8,-4,9,1r0,35r-6,1r0,-33xm58,-12r-9,0r11,-23v0,-1,0,-2,-2,-3v-2,-1,-3,-1,-3,1v-10,23,-11,19,-9,29r12,0v0,5,-1,10,6,8v-1,-3,-1,-5,-1,-8v7,0,7,0,7,-5r-7,0v1,-5,-1,-13,-4,-6xm57,-70r-36,74v-1,3,-4,3,-7,2r36,-74v1,-3,4,-4,7,-2","w":74},"\u00bd":{"d":"15,6r35,-74v2,-3,4,-4,7,-2r-35,74v-2,3,-5,3,-7,2xm20,-63r0,35r-6,1r0,-33v-6,2,-14,-1,-3,-4v5,-2,8,-4,9,1xm49,0v-6,-10,18,-20,16,-28v1,-9,-15,0,-15,-7v6,-5,22,-3,20,7v1,7,-11,18,-17,23r20,0v2,10,-15,3,-24,5","w":77},"\u00be":{"d":"13,-46r0,-3v9,-1,12,-11,3,-12v-5,0,-9,3,-8,-2v3,-4,20,-5,18,6v0,5,-3,8,-7,9v6,0,10,3,10,8v0,12,-14,14,-22,10v-1,0,-2,-1,-1,-4v5,2,19,2,18,-6v0,-3,-3,-7,-11,-6xm63,-12v-1,-5,2,-14,5,-8r0,7r6,0v2,6,0,4,-6,5v0,3,0,5,1,8v-5,1,-7,-1,-6,-8v-5,-1,-14,3,-13,-4v0,-3,1,-6,10,-25v0,-2,1,-2,3,-1v4,6,-4,10,-10,26r10,0xm19,6r36,-74v1,-3,4,-4,7,-2r-36,74v-1,3,-4,3,-7,2","w":78},"`":{"d":"19,-55v-5,2,-3,1,-15,-8v7,-6,6,-4,15,8","w":23},"\u00b4":{"d":"19,-63v-11,9,-8,10,-15,8v10,-12,8,-14,15,-8","w":23},"\u00a8":{"d":"4,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm20,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":31},"\u00af":{"d":"24,-61v1,10,-12,3,-20,5v0,-9,13,-4,20,-5","w":28},"\u00b8":{"d":"9,4r5,0v1,7,-2,12,-9,11v0,-1,-1,-1,-1,-3v6,-2,6,-1,5,-8","w":18},"\u00a6":{"d":"14,17r-5,1r0,-32r5,0r0,31xm9,-33r0,-29v0,-2,1,-3,4,-3v3,8,0,22,1,32r-5,0","w":22},"^":{"d":"21,-56r-13,22v-5,0,-4,-2,-3,-5v12,-24,13,-26,16,-26v3,0,4,2,16,26v1,3,2,5,-3,5","w":42},"\u00ac":{"d":"2,-23v0,-5,-1,-5,4,-6r35,0r0,14v-6,1,-5,-3,-5,-8r-34,0","w":44},"\u00b1":{"d":"19,-31r0,-17v10,-2,4,10,6,17r17,0v2,8,-10,4,-17,5r0,16v-9,2,-5,-9,-6,-16r-17,0v-2,-9,11,-3,17,-5xm42,-5v-13,1,-28,-1,-39,1v-1,1,-1,2,-1,4v13,-1,29,1,40,-1v0,-1,1,-2,0,-4","w":44},"\u00d7":{"d":"22,-31r14,-13v6,8,-7,12,-10,17r13,14v-8,6,-12,-7,-17,-10r-13,13v-8,-6,7,-11,9,-17r-12,-13v7,-9,11,6,16,9","w":44},"\u00f7":{"d":"3,-29r39,0v1,4,0,4,-3,5r-37,0v0,-3,0,-4,1,-5xm19,-13v0,-2,2,-4,5,-4v3,1,2,9,-2,8v-2,0,-3,-1,-3,-4xm19,-42v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":44},"\u00b5":{"d":"13,-47v5,11,-6,43,11,42v5,0,8,-3,13,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-6,1,-8,-3,-6,-9v-8,8,-15,14,-24,7r0,25r-6,0r0,-67v0,-2,2,-3,5,-3","w":52}}});Cufon.registerFont({"w":50,"face":{"font-family":"Haptic","font-weight":500,"font-stretch":"normal","units-per-em":"96","panose-1":"2 11 5 3 4 5 2 2 2 3","ascent":"70","descent":"-26","bbox":"-3 -89.5745 96 24","underline-thickness":"4.8","underline-position":"-4.8","stemh":"5","stemv":"6","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":19},"\u00a0":{"w":19},"!":{"d":"15,-68v2,0,2,1,2,2r0,51r-7,1v0,0,-1,-38,-1,-51v0,-2,1,-3,6,-3xm9,-5v0,-3,2,-4,6,-4v2,0,3,0,3,2v2,9,-9,10,-9,2","w":26},"\"":{"d":"13,-51r-8,1v1,-8,-6,-22,5,-22v6,2,2,14,3,21xm28,-51r-8,1v1,-8,-6,-22,5,-22v6,2,2,14,3,21","w":32},"#":{"d":"5,-39v-2,-10,5,-6,12,-7v2,-7,-1,-23,10,-18v-1,1,-1,2,-3,18r13,0v2,-7,-1,-23,10,-18v0,1,-1,2,-3,18r11,0v1,9,-4,6,-12,7r-1,12r11,0v2,9,-6,5,-12,6r-2,19v0,4,-5,1,-8,2v1,-1,1,-3,3,-21r-13,0r-2,19v0,3,-4,2,-7,2v0,-1,0,-3,2,-21r-11,0v-1,-8,5,-6,11,-6r2,-12r-11,0xm35,-27r1,-12r-12,0r-2,12r13,0","w":58},"$":{"d":"39,-52v-6,-2,-24,-5,-24,6v0,14,29,7,29,29v0,10,-6,16,-16,17r0,11r-7,0r0,-11v-9,-1,-19,0,-14,-10v8,4,28,6,27,-6v0,-16,-28,-8,-28,-29v0,-9,6,-15,15,-16v0,-6,-2,-11,5,-11v4,0,1,7,2,11v8,2,16,2,11,9","w":49},"%":{"d":"35,-47v0,13,-6,19,-15,19v-9,0,-15,-6,-15,-19v0,-13,6,-19,15,-19v9,0,15,6,15,19xm28,-47v0,-8,-3,-13,-8,-13v-5,0,-8,5,-8,13v0,8,3,13,8,13v5,0,8,-5,8,-13xm79,-18v0,13,-6,19,-15,19v-9,0,-16,-6,-16,-19v0,-14,7,-19,16,-19v9,0,15,5,15,19xm71,-18v0,-8,-2,-13,-7,-13v-6,0,-8,5,-8,13v0,7,2,12,8,12v5,0,7,-5,7,-12xm19,6r36,-74v1,-4,6,-4,9,-2r-35,74v-2,4,-6,3,-10,2","w":83},"&":{"d":"49,-14v5,6,6,8,16,7v2,7,0,7,-6,7v-7,0,-9,-2,-14,-7v-10,12,-40,9,-40,-12v0,-11,7,-16,13,-19v-11,-10,-13,-31,8,-31v8,0,16,4,10,8v-5,-2,-20,-1,-17,7v0,9,19,27,24,34v2,-6,3,-15,3,-27v6,-1,7,0,7,3v0,12,0,20,-4,30xm14,-19v0,15,19,16,26,6r-17,-20v-7,3,-9,8,-9,14","w":64},"'":{"d":"13,-51r-8,1v1,-8,-6,-22,5,-22v6,2,2,14,3,21","w":17},"(":{"d":"18,-77v1,-1,3,-1,7,0v0,0,-11,20,-11,47v0,27,11,47,11,47v-4,1,-6,1,-7,0v-2,-2,-13,-19,-13,-47v0,-28,11,-45,13,-47","w":27},")":{"d":"9,-77v2,2,13,19,13,47v0,28,-11,45,-13,47v-1,1,-2,1,-7,0v0,0,11,-20,11,-47v0,-27,-11,-47,-11,-47v5,-1,6,-1,7,0","w":27},"*":{"d":"2,-62v3,-9,9,0,12,2r0,-12v9,-1,5,6,5,12r10,-7v6,8,-3,7,-7,10r10,6v-2,9,-9,0,-13,-1r1,11v-10,1,-5,-5,-5,-11r-10,6v-6,-8,3,-7,7,-10","w":33},"+":{"d":"27,-5v-13,2,-6,-10,-8,-18r-16,1v-4,-13,8,-6,16,-7r0,-18v12,-3,7,9,7,18r17,-1v3,12,-8,7,-17,7","w":45},",":{"d":"4,12v5,-8,-3,-23,8,-22v2,0,3,0,3,3v-2,16,0,23,-11,19","w":21},"-":{"d":"30,-32v2,13,-16,5,-25,7v-3,-14,16,-4,25,-7","w":34},".":{"d":"6,-6v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6","w":21},"\/":{"d":"36,-67r-24,72v0,5,-6,2,-9,2v2,-2,2,-4,24,-71v1,-4,5,-3,9,-3","w":37},"0":{"d":"2,-31v0,-22,8,-32,23,-32v14,0,22,10,22,32v0,22,-8,32,-22,32v-15,0,-23,-10,-23,-32xm11,-31v0,17,5,25,14,25v9,0,13,-8,13,-25v0,-17,-4,-25,-13,-25v-9,0,-14,8,-14,25","w":49},"1":{"d":"9,-53v-5,-9,12,-8,17,-10v3,0,4,1,4,4r0,52r13,0v-1,8,1,6,-5,7r-30,0v-1,-12,-1,-5,13,-7r0,-48","w":49},"2":{"d":"24,-63v24,1,20,24,7,38r-17,18v18,0,27,0,30,-1v0,5,1,8,-5,8r-32,0v-2,-12,-2,-6,15,-27v8,-9,11,-14,11,-20v3,-12,-18,-9,-22,-6v-1,0,-4,-3,-2,-5v1,-1,7,-5,15,-5","w":49},"3":{"d":"16,-30r-1,-6v10,-2,16,-6,16,-13v1,-12,-18,-3,-22,-6v-2,-6,6,-8,16,-8v23,-1,19,25,1,28v10,0,17,5,17,16v0,19,-25,22,-37,16v-1,-1,-1,-2,0,-5v8,1,31,3,28,-11v0,-8,-5,-12,-18,-11","w":49},"4":{"d":"12,-20r15,0v2,-7,-2,-17,6,-18v6,1,2,12,3,18v3,0,6,0,10,-1v0,11,-1,7,-10,8v0,4,0,9,1,13v-9,2,-11,-4,-10,-13v-8,-1,-23,4,-23,-5v0,-4,1,-5,19,-45v2,-3,11,3,9,4","w":49},"5":{"d":"10,-32v2,-9,-6,-31,4,-31r26,0v2,3,1,8,-4,7r-18,0r0,17v15,-2,26,3,26,18v0,20,-24,25,-37,18v-1,-1,-1,-2,0,-5v9,3,28,3,28,-12v0,-12,-9,-15,-25,-12","w":49},"6":{"d":"13,-32v8,-13,32,-10,32,11v0,14,-8,21,-20,21v-13,0,-20,-7,-20,-24v0,-22,13,-47,38,-37v1,0,1,1,1,3v-3,5,-3,1,-12,1v-13,0,-20,15,-19,25xm36,-20v0,-9,-4,-13,-10,-13v-7,0,-12,5,-12,13v0,19,22,20,22,0","w":49},"7":{"d":"43,-59v2,2,-27,63,-25,59v-6,0,-8,-1,-8,-3v0,-3,1,-4,24,-54r-25,1v-2,0,-3,-1,-3,-4v0,-2,1,-3,3,-3r32,0v1,0,2,2,2,4","w":49},"8":{"d":"25,-6v6,0,11,-4,11,-10v0,-6,-5,-10,-12,-13v-12,4,-15,22,1,23xm25,-63v22,0,22,25,6,29v19,6,19,35,-6,35v-26,0,-24,-28,-7,-33v-16,-5,-17,-31,7,-31xm25,-57v-13,1,-13,18,0,21v10,-4,13,-20,0,-21","w":49},"9":{"d":"37,-31v-8,14,-33,10,-33,-11v0,-14,8,-21,20,-21v13,0,20,7,20,24v0,22,-13,47,-38,37v-1,-1,-1,-3,0,-6v17,7,31,-6,31,-23xm13,-43v0,9,4,13,11,13v6,0,11,-5,11,-13v-1,-19,-21,-20,-22,0","w":49},":":{"d":"6,-6v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6xm6,-34v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6","w":21},";":{"d":"4,12v5,-8,-3,-23,8,-22v2,0,3,0,3,3v-2,16,0,23,-11,19xm6,-34v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,7,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":21},"<":{"d":"32,1r-27,-22v0,-4,0,-6,2,-8r25,-20v1,-1,3,-1,5,1v1,3,2,4,0,5r-24,19r24,18v3,3,-2,10,-5,7","w":45},"=":{"d":"6,-36v9,-2,23,0,34,-1v2,15,-23,4,-35,7v0,-4,0,-5,1,-6xm40,-20v0,6,1,6,-4,7r-31,0v0,-7,0,-7,5,-7r30,0","w":45},">":{"d":"33,-24r-25,-19v-1,-1,-1,-2,1,-5v2,-2,3,-2,4,-1r27,22v1,4,1,5,-1,7r-25,21v-2,1,-3,1,-5,-2v-2,-2,-2,-4,-1,-5","w":45},"?":{"d":"13,-14v-6,-17,11,-28,12,-39v1,-15,-22,0,-20,-11v6,-7,33,-5,29,11v0,14,-19,20,-14,38xm12,-5v0,-3,2,-4,7,-4v1,0,3,0,3,2v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":38},"@":{"d":"66,-44r-6,35v10,-1,18,-9,18,-26v0,-15,-9,-23,-25,-23v-21,0,-38,13,-38,40v-1,30,24,28,43,26v3,10,-4,8,-16,8v-17,0,-35,-6,-35,-34v0,-32,20,-47,46,-47v20,0,33,10,33,29v0,21,-10,33,-31,33v-3,0,-3,-1,-3,-2v0,-3,3,-12,3,-12v-5,10,-10,14,-16,14v-7,0,-12,-4,-12,-15v-1,-20,15,-32,32,-25v0,-2,2,-2,5,-2v2,0,2,0,2,1xm58,-38v-14,-5,-23,8,-22,20v0,6,2,9,6,9v8,1,12,-18,16,-29","w":92},"A":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0","w":57},"\u00c0":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm34,-73v-8,6,-2,4,-19,-3v9,-9,4,-6,19,3","w":57},"\u00c1":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm24,-73v13,-9,11,-12,18,-3v-16,7,-11,9,-18,3","w":57},"\u00c2":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm18,-73v8,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":57},"\u00c3":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm24,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v1,0,2,-2,1,-4v5,-1,6,1,6,4v1,11,-16,4,-17,4","w":57},"\u00c4":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm16,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm36,-70v-3,-1,-6,-11,3,-10v5,2,4,12,-3,10","w":57},"\u00c5":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm37,-77v0,7,-3,9,-8,9v-5,0,-9,-2,-9,-9v0,-6,4,-9,9,-9v5,0,8,3,8,9xm32,-77v0,-3,-1,-4,-3,-4v-2,0,-4,1,-4,4v0,3,2,4,4,4v2,0,3,-1,3,-4","w":57},"\u0100":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm19,-71v-2,-12,12,-4,19,-6v1,7,0,5,-5,6r-14,0","w":57},"\u0102":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm22,-81v2,7,11,7,13,0v4,0,5,1,5,3v0,5,-5,8,-11,8v-7,0,-12,-3,-12,-8v0,-2,1,-3,5,-3","w":57},"\u0104":{"d":"41,-17r-25,0r-6,17v-9,1,-7,1,-8,-4r20,-58v0,-2,11,-5,13,-1v6,21,16,41,20,63v-7,7,-10,9,-3,13v3,-1,6,0,4,3v-4,4,-15,2,-14,-6v-1,-4,6,-8,5,-10xm39,-24r-11,-34r-10,34r21,0","w":57},"\u00c6":{"d":"47,-30r0,23v20,0,25,0,28,-1v2,4,1,9,-4,8r-33,0r1,-17r-24,0r-10,18v-7,-2,-8,0,-7,-6r35,-57v1,-3,3,-3,6,-3r36,0v3,13,-17,5,-27,7r-1,21r25,0r0,7r-25,0xm39,-24r0,-34r-20,34r20,0","w":81},"B":{"d":"8,-64v16,-3,42,-2,40,15v0,8,-6,13,-11,14v5,1,12,6,12,16v1,22,-26,20,-41,18v1,-4,1,-51,0,-63xm17,-7v0,0,24,2,24,-12v0,-13,-12,-12,-24,-12r0,24xm17,-37v11,1,22,-1,22,-11v0,-10,-10,-10,-21,-10v0,0,0,2,-1,21","w":54},"C":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26","w":52},"\u0106":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm27,-73v13,-9,10,-12,18,-3v-15,7,-11,9,-18,3","w":52},"\u0108":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm20,-73v9,-10,14,-10,22,0v-1,6,-8,0,-11,-1v-4,1,-9,7,-11,1","w":52},"\u010a":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm30,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":52},"\u010c":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm44,-78v-15,12,-10,11,-24,0v7,-5,12,6,18,-1v2,-1,3,-1,6,1","w":52},"\u00c7":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm24,15v0,-7,7,-2,5,-11v5,-1,6,1,6,5v0,6,-7,9,-11,6","w":52},"D":{"d":"8,-1v1,-7,1,-50,0,-63v25,-4,48,0,48,31v0,31,-21,36,-48,32xm17,-7v20,1,30,-3,30,-26v0,-23,-11,-26,-29,-25v-1,6,-1,42,-1,51","w":61},"\u010e":{"d":"8,-1v1,-7,1,-50,0,-63v25,-4,48,0,48,31v0,31,-21,36,-48,32xm17,-7v20,1,30,-3,30,-26v0,-23,-11,-26,-29,-25v-1,6,-1,42,-1,51xm41,-78v-14,12,-9,11,-24,0v7,-5,12,6,18,-1v2,-1,4,-1,6,1","w":61},"\u0110":{"d":"10,-64v24,-4,48,1,48,31v0,30,-20,36,-48,32r0,-29r-9,0v-2,-9,3,-7,9,-7r0,-27xm19,-7v19,1,29,-3,29,-26v0,-23,-11,-26,-29,-25r0,21r10,0v1,9,-3,7,-10,7r0,23","w":62},"\u00d0":{"d":"9,-64v24,-4,47,1,47,31v0,31,-20,36,-48,32v0,0,1,-15,1,-29r-9,0v-2,-9,3,-7,9,-7v0,-8,-1,-21,0,-27xm28,-37v1,9,-4,7,-11,7r0,23v20,1,30,-3,30,-26v0,-23,-11,-26,-29,-25v0,3,-1,12,-1,21r11,0","w":61},"E":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0","w":51},"\u00c8":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm34,-73v-7,6,-3,4,-18,-3v8,-9,5,-6,18,3","w":51},"\u00c9":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm21,-73v15,-9,11,-12,19,-3v-17,7,-11,8,-19,3","w":51},"\u00ca":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm17,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":51},"\u00cb":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm14,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm31,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":51},"\u0112":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm19,-77r19,0v2,11,-11,4,-19,6v-1,-4,0,-5,0,-6","w":51},"\u0114":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm21,-81v2,7,11,7,14,0v3,0,4,1,4,3v0,5,-5,8,-11,8v-7,0,-12,-3,-12,-8v0,-2,1,-3,5,-3","w":51},"\u0116":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm27,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":51},"\u0118":{"d":"46,-8v2,11,-15,15,-5,21v3,-1,6,0,4,3v-4,4,-15,1,-14,-6v0,-4,3,-7,7,-10r-30,0v1,-8,1,-57,0,-65r37,0v1,8,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0r0,23v21,0,25,0,29,-1","w":51},"\u011a":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm40,-78v-14,11,-9,12,-23,0v7,-5,11,6,18,-1v1,-1,3,-1,5,1","w":51},"F":{"d":"17,-29r0,29r-9,0v1,-7,1,-59,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,22r25,0r0,7r-25,0","w":49},"G":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5","w":59},"\u011c":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm23,-73v8,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":59},"\u011e":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm26,-81v2,7,11,7,14,0v3,0,4,1,4,3v0,5,-5,8,-11,8v-7,0,-11,-3,-11,-8v0,-2,0,-3,4,-3","w":59},"\u0120":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm28,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":59},"\u0122":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm26,19v5,-5,-2,-15,7,-15v6,4,2,23,-7,15","w":59},"H":{"d":"47,-30r-30,0r0,30r-9,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,26r30,0v3,-15,-9,-28,6,-28v2,0,3,0,3,2r-1,63r-9,0v0,0,1,-15,1,-30","w":64},"\u0124":{"d":"47,-30r-30,0r0,30r-9,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,26r30,0v3,-15,-9,-28,6,-28v2,0,3,0,3,2r-1,63r-9,0v0,0,1,-15,1,-30xm22,-73v8,-10,13,-10,21,0v-1,7,-7,-1,-11,-1v-3,1,-9,8,-10,1","w":64},"\u0126":{"d":"1,-46v-1,-6,2,-6,7,-6v1,-7,-3,-14,7,-13v5,1,1,9,2,13r29,0v1,-7,-3,-14,7,-13v6,1,1,4,2,13r7,0v2,6,-2,6,-7,6r0,46r-9,0r0,-29r-29,0r0,29r-9,0r0,-46r-7,0xm17,-36r29,0r0,-10r-29,0r0,10","w":63},"I":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0","w":25},"\u00cc":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm19,-73v-8,6,-2,4,-19,-3v8,-9,5,-6,19,3","w":25},"\u00cd":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm8,-73v15,-9,11,-12,19,-3v-16,7,-11,9,-19,3","w":25},"\u00ce":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm2,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":25},"\u00cf":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm1,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm17,-76v0,-2,2,-4,7,-4v4,1,2,13,-3,10v-3,0,-4,-1,-4,-6","w":25},"\u0128":{"d":"12,0r0,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2r0,63r-9,0xm12,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v1,0,2,-2,1,-4v5,-1,6,1,6,4v1,11,-16,4,-17,4","w":33},"\u012a":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm4,-71v-2,-12,12,-4,19,-6v3,10,-10,4,-19,6","w":25},"\u012c":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm6,-81v3,7,11,7,14,0v4,0,4,1,4,3v0,5,-4,8,-11,8v-6,0,-11,-3,-11,-8v0,-2,1,-3,4,-3","w":25},"\u012e":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63v-6,6,-9,10,-2,13v1,0,2,0,4,-1v1,5,-1,6,-6,6v-11,0,-10,-14,-2,-18r-3,0","w":25},"\u0130":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm12,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":25},"\u0132":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm27,-7v5,2,12,2,11,-7r0,-48v0,-2,1,-3,6,-3v2,0,3,0,3,2r0,50v2,11,-11,15,-20,12v-1,-1,-1,-2,0,-6","w":55},"J":{"d":"1,-7v5,2,12,2,11,-7r0,-48v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,50v2,11,-11,15,-20,12v-1,-1,-1,-2,0,-6","w":29},"\u0134":{"d":"1,-7v5,2,12,2,11,-7r0,-48v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,50v2,11,-11,15,-20,12v-1,-1,-1,-2,0,-6xm6,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":29},"K":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2v1,15,-2,31,-1,32r27,-33v1,-2,2,-2,6,-1v3,2,3,3,2,5r-20,23v19,30,21,32,23,34v-3,5,-8,5,-11,1r-18,-29r-9,10r0,21r-9,0","w":57},"\u0136":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2v1,15,-2,31,-1,32r27,-33v1,-2,2,-2,6,-1v3,2,3,3,2,5r-20,23v19,30,21,32,23,34v-3,5,-8,5,-11,1r-18,-29r-9,10r0,21r-9,0xm25,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":57},"L":{"d":"17,-7v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2","w":45},"\u0139":{"d":"17,-7v18,0,24,0,27,-1v0,0,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2xm9,-73v13,-9,10,-12,18,-3v-16,7,-11,9,-18,3","w":45},"\u013b":{"d":"17,-7v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2xm21,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":45},"\u013d":{"d":"36,-67v-6,14,-3,16,-13,14v6,-7,3,-16,13,-14xm18,-7v17,0,23,0,26,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2r0,56","w":45},"\u013f":{"d":"17,-7v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2xm27,-34v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":46},"\u0141":{"d":"18,-36r11,-10v7,10,-8,11,-12,17r0,22v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,0,1,-10,1,-22r-8,6v-6,-7,5,-10,8,-14r0,-32v0,-2,1,-3,6,-3v2,0,3,0,3,2r0,27","w":45},"M":{"d":"61,-57r-15,57r-10,1v-4,-20,-12,-36,-14,-58r-10,57v-9,1,-7,1,-8,-5r11,-57v1,-3,2,-3,8,-3v3,0,4,0,5,2v4,18,11,34,13,55r13,-54v1,-3,2,-3,9,-3v3,0,4,0,4,2r11,62v-1,1,-3,2,-9,1","w":82},"N":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0","w":63},"\u00d1":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm46,-77v-1,15,-20,-4,-20,8v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v2,0,2,-2,1,-4v5,-1,7,1,7,4","w":63},"\u0143":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm26,-73v13,-9,10,-12,18,-3v-16,7,-11,9,-18,3","w":63},"\u0145":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm27,19v6,-5,-3,-15,7,-15v6,4,2,24,-7,15","w":63},"\u0147":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm44,-78v-14,12,-9,11,-23,0v7,-5,12,6,18,-1v1,-1,3,-1,5,1","w":63},"\u014a":{"d":"55,0v2,14,-9,18,-17,19v-2,0,-2,-1,-3,-4v6,-3,13,-4,12,-15r-31,-49v2,12,1,34,1,49r-9,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,50v-2,-14,-1,-32,-1,-48v0,-2,1,-3,6,-3v2,0,3,0,3,2","w":63},"O":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26","w":62},"\u00d2":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm37,-73v-6,6,-2,4,-18,-3v8,-9,5,-6,18,3","w":62},"\u00d3":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm27,-73v14,-9,10,-12,19,-3v-16,7,-11,9,-19,3","w":62},"\u00d4":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm21,-73v8,-10,13,-10,21,0v-1,7,-7,0,-10,-1v-3,1,-10,7,-11,1","w":62},"\u00d5":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm27,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,13,-3,17,-3v2,0,3,-2,2,-4v5,-1,6,1,6,4v1,11,-16,4,-17,4","w":62},"\u00d6":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm22,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10xm35,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":62},"\u00d8":{"d":"50,-59v18,21,4,76,-31,57v-2,2,-3,9,-7,5v-5,-2,0,-6,1,-9v-5,-5,-8,-14,-8,-26v-1,-29,18,-40,39,-31v2,-2,3,-9,7,-5v5,2,0,6,-1,9xm31,-58v-16,-4,-22,31,-13,44r22,-42v-2,-2,-5,-2,-9,-2xm45,-50r-22,41v13,9,27,-2,26,-23v0,-8,-1,-14,-4,-18","w":62},"\u014c":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm21,-69v-1,-12,12,-5,20,-7v2,12,-11,5,-20,7","w":62},"\u014e":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm25,-81v2,7,11,7,13,0v4,0,5,1,5,3v0,5,-5,8,-11,8v-7,0,-12,-3,-12,-8v0,-2,1,-3,5,-3","w":62},"\u0150":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm34,-80v-11,11,-9,12,-16,8v10,-13,6,-13,16,-8xm51,-80v-12,12,-9,12,-17,8v12,-13,7,-13,17,-8","w":62},"\u0152":{"d":"5,-32v0,-29,22,-43,39,-28r0,-5r37,0v0,5,0,6,-1,6v-1,1,-2,1,-27,1r0,21r25,0r0,7r-25,0r0,23v20,0,24,0,28,-1v0,5,0,8,-5,8r-32,0r0,-4v-16,13,-39,0,-39,-28xm14,-32v0,25,20,34,30,18r0,-36v-10,-15,-30,-8,-30,18","w":87},"P":{"d":"8,0v1,-5,1,-54,0,-64v17,-2,40,-3,39,19v-1,19,-14,22,-30,19r0,26r-9,0xm17,-32v12,0,21,0,21,-13v0,-13,-9,-13,-20,-13v-1,6,-1,17,-1,26"},"Q":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,19,-8,29,-18,32v5,7,7,8,9,10v-9,9,-8,2,-18,-9v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26","w":62},"R":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24","w":55},"\u0154":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24xm22,-73v13,-9,10,-12,18,-3v-16,7,-11,9,-18,3","w":55},"\u0156":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24xm22,19v6,-5,-3,-15,7,-15v6,4,2,24,-7,15","w":55},"\u0158":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24xm39,-78v-15,12,-10,11,-24,0v7,-5,12,6,18,-1v2,-1,4,-1,6,1","w":55},"S":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5"},"\u015a":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm19,-73v15,-9,11,-12,19,-3v-17,7,-11,8,-19,3"},"\u015c":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm15,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1"},"\u015e":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm23,4r6,0v2,8,-3,15,-10,11v-4,-5,7,-3,4,-11"},"\u0160":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm38,-78v-15,12,-10,11,-24,0v7,-5,12,6,18,-1v2,-1,3,-1,6,1"},"T":{"d":"21,-58r-20,0v1,-7,-1,-6,5,-7r44,0v2,13,-10,5,-20,7r0,58r-9,0r0,-58"},"\u0162":{"d":"21,-58r-20,0v1,-7,-1,-6,5,-7r44,0v2,13,-10,5,-20,7r0,58r-9,0r0,-58xm20,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15"},"\u0164":{"d":"21,-58r-20,0v1,-7,-1,-6,5,-7r44,0v2,13,-10,5,-20,7r0,58r-9,0r0,-58xm37,-78v-14,12,-9,11,-23,0v7,-5,12,6,18,-1v1,-1,3,-1,5,1"},"\u0166":{"d":"21,-36r0,-22r-20,0v0,-6,-1,-7,4,-7r45,0v2,13,-10,5,-20,7r0,22r13,0v2,8,-6,6,-13,6r0,30r-9,0r0,-30r-13,0v-4,-9,7,-5,13,-6"},"U":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56","w":63},"\u00d9":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm37,-73v-6,6,-2,4,-18,-3v8,-9,5,-6,18,3","w":63},"\u00da":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm27,-73v14,-9,10,-12,19,-3v-16,7,-11,9,-19,3","w":63},"\u00db":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm22,-73v8,-10,13,-10,21,0v-1,6,-8,0,-11,-1v-3,1,-9,8,-10,1","w":63},"\u00dc":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm19,-76v0,-2,2,-4,7,-4v5,2,3,12,-3,10v-3,0,-4,-1,-4,-6xm36,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":63},"\u0168":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm28,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v1,0,2,-2,1,-4v5,-1,7,1,7,4v0,11,-12,4,-18,4","w":63},"\u016a":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm23,-71v-3,-11,12,-4,19,-6v2,11,-11,4,-19,6","w":63},"\u016c":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm25,-81v2,7,12,7,14,0v3,0,4,1,4,3v0,5,-4,8,-11,8v-7,0,-11,-3,-11,-8v0,-2,1,-3,4,-3","w":63},"\u016e":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm40,-77v0,7,-3,9,-9,9v-4,0,-8,-2,-8,-9v0,-6,4,-9,8,-9v5,0,9,3,9,9xm35,-77v0,-3,-1,-4,-4,-4v-1,0,-3,1,-3,4v0,6,8,5,7,0","w":63},"\u0170":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm35,-80v-11,11,-9,12,-16,8v10,-13,6,-13,16,-8xm52,-80v-12,12,-9,12,-17,8v12,-13,7,-13,17,-8","w":63},"\u0172":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-2,26,8,61,-18,63v-6,6,-9,10,-2,13v3,-1,6,0,4,3v-4,4,-15,2,-14,-6v0,-4,3,-7,6,-10v-31,2,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56","w":63},"V":{"d":"26,-9r16,-53v1,-2,2,-3,7,-3v2,0,3,1,2,4r-20,61v0,0,-7,1,-10,0r-19,-61v-1,-3,0,-4,6,-4v2,0,3,0,4,3","w":53},"W":{"d":"70,-62v1,-2,2,-3,7,-3v3,0,3,1,2,3r-17,62v0,0,-7,1,-11,0v0,0,-12,-48,-12,-52v0,4,-11,52,-11,52v0,0,-7,1,-11,0r-15,-61v-1,-3,0,-4,6,-4v2,0,3,0,4,3r11,53r11,-52v1,-3,2,-4,7,-4v3,0,4,0,4,2r12,54","w":81},"\u0174":{"d":"70,-62v1,-2,2,-3,7,-3v3,0,3,1,2,3r-17,62v0,0,-7,1,-11,0v0,0,-12,-48,-12,-52v0,4,-11,52,-11,52v0,0,-7,1,-11,0r-15,-61v-1,-3,0,-4,6,-4v2,0,3,0,4,3r11,53r11,-52v1,-3,2,-4,7,-4v3,0,4,0,4,2r12,54xm29,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":81},"X":{"d":"27,-40r14,-24v1,-2,3,-2,7,-1v3,1,3,2,1,5r-17,27v15,26,16,28,19,30v-5,4,-7,6,-11,1r-13,-24r-15,25v-2,3,-11,1,-8,-4r18,-28v-16,-25,-17,-27,-19,-29v14,-10,17,16,24,22","w":53},"Y":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22","w":51},"\u00dd":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22xm20,-73v13,-9,11,-12,18,-3v-15,7,-11,9,-18,3","w":51},"\u0176":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22xm16,-73v8,-10,13,-10,21,0v-1,6,-8,0,-11,-1v-3,1,-9,8,-10,1","w":51},"\u0178":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22xm13,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm30,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":51},"Z":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53","w":51},"\u0179":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53xm20,-73v13,-9,10,-12,18,-3v-15,7,-11,9,-18,3","w":51},"\u017b":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53xm25,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":51},"\u017d":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53xm38,-78v-14,12,-9,11,-23,0v7,-5,12,6,18,-1v1,-1,3,-1,5,1","w":51},"a":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6","w":47},"\u00e0":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm30,-55v-8,4,-3,2,-17,-9v10,-6,7,-4,17,9","w":47},"\u00e1":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm35,-64v-13,12,-9,13,-17,9v10,-13,7,-15,17,-9","w":47},"\u00e2":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm13,-56v6,-12,15,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":47},"\u00e3":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm18,-57v-2,0,-2,1,-2,4v-5,1,-6,-1,-6,-5v1,-11,12,-4,18,-4v2,0,2,-1,2,-4v5,-1,6,1,6,5v0,11,-13,4,-18,4","w":47},"\u00e4":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm11,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6xm27,-61v0,-3,2,-4,7,-4v4,2,2,12,-3,10v-3,0,-4,-1,-4,-6","w":47},"\u00e5":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm33,-60v0,6,-4,9,-9,9v-5,0,-9,-3,-9,-9v0,-6,4,-9,9,-9v5,0,9,3,9,9xm27,-60v0,-3,-1,-4,-3,-4v-2,0,-4,1,-4,4v0,3,2,4,4,4v2,0,3,-1,3,-4","w":47},"\u0101":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm34,-62v2,12,-11,5,-20,7v-2,-12,12,-5,20,-7","w":47},"\u0103":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm18,-66v2,8,11,8,13,0v3,0,4,1,4,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,5,-3","w":47},"\u0105":{"d":"41,0v-8,7,-8,9,-3,13v3,-2,6,0,4,3v-14,6,-18,-11,-7,-16v-3,0,-4,-1,-3,-6v1,-1,1,-2,0,-3v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6","w":47},"\u00e6":{"d":"38,-40v10,-12,33,-10,31,14v0,3,-1,4,-4,4r-25,0v-4,19,17,17,27,14v3,9,-6,8,-16,8v-9,0,-15,-2,-18,-10v-4,13,-28,17,-29,-2v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-4,-8,5,-6,15,-8v6,0,12,1,14,7xm40,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-11,6,-12,14xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6","w":73},"b":{"d":"7,-2v2,-19,0,-43,1,-64v0,-3,2,-4,6,-4v8,1,0,25,2,31v9,-14,30,-9,30,15v0,28,-21,27,-39,22xm16,-7v13,2,21,3,21,-17v1,-21,-13,-18,-21,-10v1,23,0,27,0,27"},"c":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17","w":40},"\u0107":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm35,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":40},"\u0109":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm12,-56v7,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":40},"\u010b":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm19,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":40},"\u010d":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm36,-65v-14,17,-10,17,-24,0v5,-4,9,3,12,5v4,-2,6,-9,12,-5","w":40},"\u00e7":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm21,4r6,0v1,8,-3,15,-10,11v-2,-5,8,-3,4,-11","w":40},"d":{"d":"36,-9v-8,16,-31,13,-31,-13v0,-23,14,-29,30,-23v2,-9,-7,-26,6,-25v2,0,3,1,3,3v0,4,-2,68,0,67v-8,1,-11,-2,-8,-9xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":51},"\u010f":{"d":"59,-69v-6,16,-2,16,-12,14v5,-8,4,-15,12,-14xm44,0v-8,2,-11,-3,-8,-9v-8,16,-31,13,-31,-13v0,-23,14,-29,30,-23v1,-17,-7,-24,6,-25v2,0,3,1,3,3v0,4,-2,68,0,67xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":53},"\u0111":{"d":"51,-60v1,6,-3,6,-8,6r1,54v-8,1,-11,-2,-8,-9v-8,16,-31,13,-31,-13v0,-23,14,-29,30,-23r0,-9r-14,0v-1,-10,6,-5,13,-6v0,-6,-1,-11,7,-10v5,0,3,6,3,10r7,0xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":51},"\u00f0":{"d":"35,-44v-1,-6,-3,-11,-7,-14r-8,7v-9,-4,-1,-8,3,-10v-2,-2,-10,-1,-11,-5v1,-10,9,-3,17,-1r8,-6v7,4,0,7,-3,10v15,11,17,64,-9,64v-13,0,-20,-9,-20,-23v0,-23,14,-27,30,-22xm36,-38v-12,-4,-23,-3,-23,16v0,11,5,16,12,16v11,2,12,-18,11,-32"},"e":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14","w":47},"\u00e8":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm31,-55v-8,4,-5,2,-17,-9v10,-6,7,-4,17,9","w":47},"\u00e9":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm38,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":47},"\u00ea":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm15,-56v6,-14,15,-12,21,0v-2,6,-7,-2,-11,-4v-3,1,-8,11,-10,4","w":47},"\u00eb":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm13,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6xm29,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":47},"\u0113":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm35,-62v4,12,-11,5,-19,7v-2,-12,11,-5,19,-7","w":47},"\u0115":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm19,-66v2,8,12,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":47},"\u0117":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm21,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":47},"\u0119":{"d":"40,-8v4,8,-4,6,-12,8v-5,6,-8,10,-2,13v3,-2,6,0,4,3v-14,6,-18,-11,-7,-16v-11,-1,-18,-7,-18,-21v0,-31,38,-38,38,-5v-3,8,-20,2,-29,4v-3,18,15,17,26,14xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14","w":47},"\u011b":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm37,-65v-14,17,-9,17,-24,0v6,-4,8,3,12,5v3,-2,7,-9,12,-5","w":47},"f":{"d":"29,-47v-1,9,1,7,-12,6r0,41r-8,0r0,-41r-7,1v-1,-8,-1,-7,7,-7v-1,-12,0,-24,12,-23v6,1,12,1,9,8v-3,-1,-13,-3,-13,5r0,10r12,0","w":29},"g":{"d":"43,-47v1,8,0,7,-8,6v12,10,1,31,-19,26v-4,3,-4,7,2,7v12,1,26,2,26,14v0,10,-7,16,-23,16v-20,0,-23,-17,-10,-23v0,0,2,0,2,-1v-10,-1,-9,-12,-1,-15v-12,-7,-8,-30,11,-30v9,0,10,1,20,0xm18,-1v-11,5,-11,17,3,17v16,0,22,-16,5,-16xm22,-41v-6,0,-9,4,-9,10v0,6,3,10,9,10v7,0,10,-4,10,-9v0,-7,-3,-11,-10,-11","w":46},"\u011d":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm13,-56v6,-12,15,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":46},"\u011f":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm17,-66v2,8,12,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":46},"\u0121":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm19,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":46},"\u0123":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm28,-70v-5,5,4,15,-6,15v-6,-3,-3,-24,6,-15","w":46},"h":{"d":"46,0v-17,2,-6,-19,-9,-29v1,-16,-14,-12,-21,-4r0,33r-9,0r1,-66v0,-3,2,-4,6,-4v7,2,1,24,1,31v10,-11,32,-12,31,8v0,25,-1,27,0,31","w":53},"\u0125":{"d":"46,0v-17,2,-6,-19,-9,-29v1,-16,-14,-12,-21,-4r0,33r-9,0r1,-66v0,-3,2,-4,6,-4v7,2,1,24,1,31v10,-11,32,-12,31,8v0,25,-1,27,0,31xm1,-79v7,-10,15,-11,22,0v-2,4,-8,-1,-11,-2v-3,1,-9,6,-11,2","w":53},"\u0127":{"d":"16,-33r0,33r-8,0r0,-53r-7,0v0,-6,1,-6,7,-6v0,-6,-2,-11,6,-10v5,-1,2,6,3,10r14,0v3,9,-8,5,-14,6v-1,6,-2,12,-1,14v8,-10,30,-12,30,8v0,26,-1,27,0,31v-15,3,-7,-18,-9,-29v1,-16,-14,-12,-21,-4","w":53},"i":{"d":"16,0r-8,0r0,-43v0,-3,1,-4,6,-4v1,0,2,1,2,2r0,45xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":24},"\u00ec":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm17,-55v-8,4,-5,2,-17,-9v10,-6,7,-4,17,9","w":23},"\u00ed":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm24,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":23},"\u00ee":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm1,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":23},"\u00ef":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm-1,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6xm16,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":23},"\u0129":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm7,-57v-2,0,-2,1,-2,4v-5,1,-6,-1,-6,-5v1,-11,12,-4,18,-4v2,0,2,-1,2,-4v5,-1,6,1,6,5v0,11,-13,4,-18,4","w":23},"\u012b":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm22,-62v2,12,-12,5,-20,7v-2,-12,12,-5,20,-7","w":23},"\u012d":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm5,-66v3,8,11,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":23},"\u012f":{"d":"16,0v-7,7,-8,10,-2,13v1,0,2,-1,4,-1v1,5,-1,5,-6,5v-11,0,-9,-13,-2,-17r-2,0r0,-43v0,-3,1,-4,6,-4v1,0,2,1,2,2r0,45xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":24},"\u0131":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45","w":23},"\u0133":{"d":"16,0r-8,0r0,-43v0,-3,1,-4,6,-4v1,0,2,1,2,2r0,45xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5xm32,1v2,14,-5,15,-11,17v1,4,1,5,3,5v7,-1,17,-6,17,-19r0,-49v-1,-3,-10,-2,-9,2r0,44xm32,-59v0,-3,2,-4,6,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-3,-1,-3,-5","w":48},"j":{"d":"8,-43v-2,21,7,58,-11,61v1,4,1,5,3,5v7,-1,18,-6,17,-19r0,-49v-1,-3,-10,-2,-9,2xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":24},"\u0135":{"d":"8,-43v-2,21,7,58,-11,61v1,4,1,5,3,5v7,-1,18,-6,17,-19r0,-49v-1,-3,-10,-2,-9,2xm2,-56v6,-14,15,-12,21,0v-3,7,-8,-2,-11,-4r-8,7v-2,0,-2,-1,-2,-3","w":24},"k":{"d":"17,-67v-1,1,1,18,-2,40r19,-20v2,-3,10,4,7,5r-14,13v14,23,15,24,17,27v-13,10,-17,-16,-23,-22v-7,3,-5,14,-5,24r-9,0r1,-66v0,-3,2,-4,6,-4v2,0,3,1,3,3","w":46},"\u0137":{"d":"17,-67v-1,1,1,18,-2,40r19,-20v2,-3,10,4,7,5r-14,13v14,23,15,24,17,27v-13,10,-17,-16,-23,-22v-7,3,-5,14,-5,24r-9,0r1,-66v0,-3,2,-4,6,-4v2,0,3,1,3,3xm19,19v5,-5,-4,-15,7,-15v6,4,2,23,-7,15","w":46},"\u0138":{"d":"34,-47v2,-3,10,4,7,5r-14,13v14,23,15,24,17,27v-13,10,-17,-16,-23,-22v-7,3,-5,14,-5,24r-9,0r1,-44v0,-2,2,-3,6,-3v7,1,2,11,1,20","w":47},"l":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57","w":25},"\u013a":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57xm7,-81v13,-10,10,-12,18,-2v-12,5,-13,5,-14,5v-2,0,-3,0,-4,-3","w":25},"\u013c":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57xm9,19v3,-6,-3,-15,6,-15v6,4,3,23,-6,15","w":25},"\u013e":{"d":"34,-70v-8,16,-3,16,-13,14v6,-7,4,-15,13,-14xm16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57","w":26},"\u0140":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57xm22,-35v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":29},"\u0142":{"d":"16,-34v2,10,-7,31,8,29v0,5,-1,5,-6,5v-16,2,-8,-16,-10,-28v-3,6,-13,4,-7,-2r7,-6r0,-30v0,-2,2,-4,6,-4v2,0,3,1,3,3r-1,25r8,-6v7,7,-5,10,-8,14","w":26},"m":{"d":"36,0v-2,-13,5,-39,-7,-40v-4,0,-8,3,-13,7r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-8,22,-13,27,1v9,-11,29,-14,28,7v0,25,0,27,1,31v-16,3,-8,-17,-10,-29v1,-17,-12,-11,-18,-4r0,33r-8,0","w":78},"n":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31","w":53},"\u00f1":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm23,-57v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,15,-4,17,-4v2,0,3,-1,2,-4v5,-1,6,1,6,5v1,11,-16,4,-17,4","w":53},"\u0144":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm39,-64v-13,12,-9,13,-17,9v10,-13,7,-15,17,-9","w":53},"\u0146":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm22,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":53},"\u0148":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm39,-65v-14,18,-9,16,-23,0v5,-4,9,3,12,5v4,-1,6,-9,11,-5","w":53},"\u014b":{"d":"26,13v5,-3,13,-3,11,-15v-2,-13,6,-38,-8,-38v-4,0,-8,3,-13,7r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v9,-10,31,-12,30,8r0,29v1,13,-9,17,-17,19v-1,0,-2,-1,-3,-4","w":52},"\u0149":{"d":"49,0v-15,3,-7,-18,-9,-29v1,-16,-15,-12,-21,-4r0,33r-9,0r0,-43v0,-3,2,-4,7,-4v4,0,0,7,2,8v8,-11,30,-12,30,8v0,25,-1,27,0,31xm2,-51v3,-6,-3,-22,7,-21v6,6,2,28,-7,21","w":56},"o":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17"},"\u00f2":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm31,-55v-8,4,-5,2,-17,-9v10,-6,7,-4,17,9"},"\u00f3":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm39,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9"},"\u00f4":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm14,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4"},"\u00f5":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm20,-57v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,12,-4,18,-4v1,0,2,-1,1,-4v5,-1,7,1,7,5v0,11,-12,4,-18,4"},"\u00f6":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm16,-55v-3,-1,-6,-11,3,-10v1,0,3,0,3,3v0,6,-1,7,-6,7xm29,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6"},"\u00f8":{"d":"39,-42v12,11,6,46,-14,42v-5,0,-10,-2,-11,3v0,1,-1,1,-4,0v-4,-1,1,-5,1,-7v-12,-11,-6,-48,14,-43v6,0,9,2,11,-3v5,-2,7,4,3,8xm25,-6v11,2,15,-20,9,-29r-14,28v1,1,3,1,5,1xm25,-41v-11,-2,-15,18,-10,29r15,-27v-1,-1,-3,-2,-5,-2"},"\u014d":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm35,-62v2,12,-12,5,-20,7v-2,-12,12,-5,20,-7"},"\u014f":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm18,-66v3,8,11,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3"},"\u0151":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm29,-64v-11,11,-9,13,-16,9v9,-13,7,-15,16,-9xm46,-63v-13,10,-10,13,-17,7v12,-12,7,-12,17,-7"},"\u0153":{"d":"40,-37v8,-16,36,-14,33,11v0,3,-1,4,-4,4r-25,0v-4,18,17,17,27,14v3,9,-6,6,-15,8v-8,0,-14,-2,-17,-8v-8,17,-34,10,-34,-15v0,-26,27,-32,35,-14xm36,-23v0,-12,-4,-18,-11,-18v-7,0,-12,6,-12,18v0,11,4,17,11,17v7,0,12,-6,12,-17xm44,-27r21,0v1,-10,-4,-14,-9,-14v-7,0,-11,6,-12,14","w":77},"p":{"d":"7,18r1,-61v0,-3,2,-4,6,-4v4,0,1,5,2,8v9,-13,30,-10,30,15v0,23,-14,28,-30,23v0,16,0,19,1,23v-3,1,-10,2,-10,-4xm16,-7v13,3,21,2,21,-17v1,-21,-13,-17,-21,-10r0,27"},"q":{"d":"39,23v-11,1,-1,-29,-4,-31v-8,14,-30,11,-30,-14v0,-23,16,-29,30,-22v1,-3,9,-5,9,0v-1,13,-1,76,0,66v-1,0,-3,1,-5,1xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":51},"r":{"d":"33,-39v-7,-1,-12,1,-17,6r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,6,2,9v5,-7,10,-11,17,-8v0,1,1,2,0,7","w":34},"\u0155":{"d":"33,-39v-7,-1,-12,1,-17,6r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,6,2,9v5,-7,10,-11,17,-8v0,1,1,2,0,7xm30,-64v-11,11,-9,13,-16,9v10,-13,6,-15,16,-9","w":34},"\u0157":{"d":"33,-39v-8,-1,-12,1,-17,6r0,33r-9,0r0,-43v0,-3,2,-4,7,-4v3,1,1,4,1,9v5,-7,10,-11,17,-8v1,1,1,2,1,7xm6,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":34},"\u0159":{"d":"32,-39v-7,-1,-11,1,-16,6r0,33r-9,0r0,-43v0,-3,2,-4,6,-4v4,0,1,6,2,9v5,-7,10,-11,17,-8v1,1,1,2,0,7xm31,-65v-15,17,-10,17,-24,0v5,-4,9,3,12,5v4,-2,6,-9,12,-5","w":34},"s":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5","w":39},"\u015b":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm31,-64v-12,12,-9,13,-16,9v10,-12,7,-15,16,-9","w":39},"\u015d":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm8,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":39},"\u015f":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm17,4r6,0v1,8,-3,15,-10,11v-2,-5,8,-3,4,-11","w":39},"\u0161":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm31,-65v-14,17,-9,17,-23,0v5,-4,7,4,11,5v4,-1,6,-9,12,-5","w":39},"t":{"d":"29,-47v1,9,2,7,-11,6r0,29v-1,8,6,6,11,5v2,7,-2,6,-9,7v-18,1,-8,-27,-10,-41r-7,1v-1,-8,-2,-7,7,-7v-2,-7,5,-15,8,-8r0,8r11,0","w":32},"\u0163":{"d":"29,-47v1,9,2,7,-11,6r0,29v-1,8,6,6,11,5v2,7,-2,6,-9,7v-18,1,-8,-27,-10,-41r-7,1v-1,-8,-2,-7,7,-7v-2,-7,5,-15,8,-8r0,8r11,0xm10,19v6,-5,-3,-15,7,-15v6,4,2,24,-7,15","w":32},"\u0165":{"d":"35,-70v-6,17,-4,16,-13,14v4,-5,3,-16,13,-14xm29,-47v1,9,2,7,-11,6r0,29v-1,8,6,6,11,5v2,7,-2,6,-9,7v-18,1,-8,-27,-10,-41r-7,1v-1,-8,-2,-7,7,-7v-2,-7,5,-15,8,-8r0,8r11,0","w":32},"\u0167":{"d":"30,-47v-1,9,1,6,-12,7r0,11r9,0v3,7,-3,6,-9,6v-1,10,0,22,11,16v2,7,-2,6,-9,7v-12,2,-10,-12,-10,-23r-7,0v1,-7,-1,-6,7,-6r0,-11r-7,0v-1,-8,-1,-7,7,-7v-2,-7,5,-16,8,-8r0,8r12,0","w":33},"u":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4","w":53},"\u00f9":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm32,-55v-7,4,-5,2,-16,-9v10,-6,6,-4,16,9","w":53},"\u00fa":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm39,-64v-11,11,-9,13,-16,9v10,-13,6,-15,16,-9","w":53},"\u00fb":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm16,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":53},"\u00fc":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm14,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6xm31,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":53},"\u0169":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm22,-57v-2,0,-2,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,13,-4,18,-4v2,0,2,-1,2,-4v5,-1,6,1,6,5v0,11,-13,4,-18,4","w":53},"\u016b":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm37,-62v2,12,-12,5,-20,7v-2,-12,12,-5,20,-7","w":53},"\u016d":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm20,-66v2,8,12,8,13,0v4,0,4,1,4,3v0,6,-4,10,-10,10v-7,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":53},"\u016f":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm35,-60v0,6,-3,9,-8,9v-5,0,-9,-3,-9,-9v0,-6,4,-9,9,-9v5,0,8,3,8,9xm30,-60v0,-3,-1,-4,-3,-4v-2,0,-4,1,-4,4v0,3,2,4,4,4v2,0,3,-1,3,-4","w":53},"\u0171":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm31,-64v-12,12,-9,13,-16,9v10,-12,7,-15,16,-9xm48,-63v-14,10,-9,13,-17,7v11,-12,8,-12,17,-7","w":53},"\u0173":{"d":"46,0v-6,7,-8,9,-3,13v2,0,3,-1,5,-1v1,5,-2,5,-6,5v-11,0,-10,-13,-2,-17v-4,0,-3,-4,-3,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2","w":54},"v":{"d":"22,-8r12,-36v0,-2,1,-3,6,-3v2,0,3,1,2,4r-16,43v0,0,-7,1,-9,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2","w":44},"w":{"d":"21,-8r8,-35v1,-4,6,-5,9,-2r9,37r8,-36v1,-2,2,-3,7,-3v2,0,3,1,2,4r-13,43v0,0,-7,1,-9,0r-9,-33r-8,33v0,0,-7,1,-9,0r-14,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2","w":65},"\u0175":{"d":"21,-8r8,-35v1,-4,6,-5,9,-2r9,37r8,-36v1,-2,2,-3,7,-3v2,0,3,1,2,4r-13,43v0,0,-7,1,-9,0r-9,-33r-8,33v0,0,-7,1,-9,0r-14,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2xm22,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":65},"x":{"d":"3,-43v9,-11,16,8,20,14r10,-17v1,-2,2,-2,5,0v3,1,3,2,2,3r-13,19v12,17,14,19,16,21v-11,9,-16,-10,-21,-16r-12,19v-2,2,-10,-1,-7,-4r15,-20v-11,-16,-13,-17,-15,-19","w":45},"y":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16","w":44},"\u00fd":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16xm35,-64v-11,11,-9,13,-16,9v10,-13,6,-15,16,-9","w":44},"\u00ff":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16xm10,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6xm27,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6","w":44},"\u0177":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16xm12,-56v6,-12,15,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":44},"z":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40","w":42},"\u017a":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40xm34,-64v-13,12,-9,13,-17,9v10,-13,7,-15,17,-9","w":42},"\u017c":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40xm17,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":42},"\u017e":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40xm33,-65v-14,18,-9,16,-23,0v6,-4,8,4,12,5v4,-1,6,-9,11,-5","w":42},"\u00df":{"d":"16,0r-8,0v1,-28,-11,-69,20,-70v15,0,20,13,13,26v-6,3,-8,6,-8,10v0,8,16,7,16,21v0,13,-18,17,-26,11v-4,-11,19,3,18,-11v0,-10,-16,-8,-16,-21v0,-7,3,-10,10,-14v3,-8,0,-15,-7,-15v-20,2,-9,42,-12,63","w":52},"\u00de":{"d":"8,0v1,-4,1,-52,0,-62v0,-2,2,-3,7,-3v6,0,1,8,2,12v16,-3,31,1,30,19v0,19,-14,22,-30,19r0,15r-9,0xm17,-22v11,3,21,1,21,-12v0,-14,-11,-14,-20,-12v-1,5,-1,16,-1,24","w":51},"\u00fe":{"d":"8,17r0,-83v0,-2,2,-3,6,-3v2,0,2,0,2,2v-1,9,1,21,-1,28v10,-13,31,-11,31,15v0,23,-14,28,-30,23v0,16,0,19,1,23v-5,0,-10,0,-9,-5xm16,-7v13,3,21,2,21,-17v1,-21,-13,-17,-21,-10r0,27"},"{":{"d":"4,-28r0,-5v16,-1,4,-25,7,-37v-2,-9,12,-9,16,-6v1,1,1,2,0,4v0,0,-8,-1,-7,3v-2,14,5,35,-7,39v12,3,5,25,7,39v-2,5,11,1,7,7v-4,3,-18,3,-16,-6v-2,-13,8,-36,-7,-38","w":29},"|":{"d":"10,24r0,-92v0,-3,1,-4,6,-4v2,0,2,1,2,3r0,92","w":28},"}":{"d":"25,-33r0,5v-16,2,-5,25,-7,38v2,9,-12,9,-16,6v0,-1,-1,-2,0,-4v3,0,8,1,7,-3v2,-14,-6,-36,8,-39v-14,-3,-6,-24,-8,-39v2,-6,-10,0,-7,-7v4,-3,18,-3,16,6v2,13,-9,36,7,37","w":29},"[":{"d":"21,11r0,7r-17,0v1,-11,1,-83,0,-95r17,0r0,6r-8,0r0,82r8,0","w":22},"\\":{"d":"3,-67v4,0,8,-1,9,3v22,67,22,69,24,71v-2,0,-9,3,-9,-2","w":38},"]":{"d":"2,18r0,-7r8,0r0,-82r-8,0r0,-6r16,0r1,95r-17,0","w":22},"\u2026":{"d":"6,-6v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6xm26,-6v0,-3,2,-4,7,-4v2,0,3,0,3,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6xm46,-6v0,-3,2,-4,7,-4v2,0,3,0,3,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6","w":62},"\u00b7":{"d":"6,-29v0,-3,2,-5,6,-5v2,0,4,1,4,3v0,7,-1,8,-6,8v-3,0,-4,-1,-4,-6","w":21},"\u00bf":{"d":"2,7v-1,-16,19,-20,13,-39r7,0v2,4,2,12,0,18v-5,8,-11,12,-11,20v-1,16,21,1,20,12v-7,6,-32,5,-29,-11xm23,-41v0,2,-2,4,-6,4v-5,-1,-4,-11,2,-10v3,0,4,1,4,6","w":33},"\u00a1":{"d":"12,22v-2,0,-3,-1,-3,-3v0,-13,1,-51,1,-51r7,0v0,0,1,38,1,50v0,2,-2,4,-6,4xm18,-41v0,3,-2,4,-6,4v-5,-1,-4,-11,2,-10v3,0,4,1,4,6","w":26},"\u00b6":{"d":"16,7v9,0,13,-1,12,-9r0,-56r-6,0r0,28v-11,1,-19,-4,-19,-17v0,-21,26,-18,42,-18v1,8,-1,7,-8,7r0,54v1,15,-9,20,-20,17v-1,-1,-2,-2,-1,-6","w":48},"~":{"d":"43,-30v-2,18,-35,-5,-34,11v-5,1,-7,-1,-7,-6v1,-12,19,-5,31,-5v3,0,4,-2,3,-6v5,-1,7,1,7,6","w":45},"\u00a2":{"d":"35,-16v3,7,-1,7,-9,9r0,10r-7,1r0,-11v-8,-2,-15,-7,-15,-23v0,-17,7,-23,16,-24v1,-5,-3,-12,5,-11v4,0,1,8,2,11v5,1,12,2,7,8v-9,-5,-21,-1,-21,15v0,18,11,19,22,15","w":39},"\u00a3":{"d":"3,-27v-1,-8,2,-7,8,-7v-5,-14,-1,-30,15,-29v10,1,17,0,15,6v-2,6,-24,-5,-23,11v0,4,1,8,1,12r17,0v2,10,-7,4,-15,6v1,9,1,15,-2,21v22,0,24,0,28,-1v0,5,0,8,-5,8r-39,0v-1,-6,1,-8,7,-7v3,-4,5,-12,2,-21v-5,0,-7,0,-9,1","w":48},"\u00a4":{"d":"8,-18v-4,-6,-4,-20,1,-25r-8,-8v5,-9,9,-1,12,3v6,-4,18,-4,23,1v6,-12,13,-7,9,0r-5,4v6,6,5,19,0,26v5,5,6,6,8,7v-6,9,-9,0,-13,-3v-4,4,-18,4,-22,0v-8,10,-14,6,-9,-1xm12,-30v0,7,4,14,12,14v9,0,13,-7,13,-14v0,-8,-4,-15,-13,-15v-8,0,-12,7,-12,15","w":48},"\u00a5":{"d":"6,-21v-1,-8,7,-5,13,-6r-16,-32v-2,-4,0,-5,6,-5v2,0,2,1,3,3r15,32r14,-32v1,-2,2,-3,7,-3v2,0,3,2,2,4r-17,33r13,0v3,9,-8,5,-15,6r0,5r15,0v3,9,-8,5,-15,6r0,10r-10,0v1,-3,1,-6,1,-10r-16,0v-2,-11,9,-4,16,-6r0,-5r-16,0","w":52},"\u00a7":{"d":"36,-56v-5,-3,-20,-4,-20,6v0,12,24,11,24,28v0,5,-3,9,-5,11v9,10,2,28,-13,26v-9,-1,-18,-1,-13,-9v5,3,21,4,21,-6v0,-13,-25,-13,-25,-29v0,-5,3,-9,5,-12v-8,-10,0,-26,14,-24v9,1,15,0,12,9xm15,-36v-6,11,4,15,15,21v9,-9,-6,-17,-15,-21","w":45},"\u00ab":{"d":"19,-9v-4,-6,-19,-10,-13,-20r13,-13v1,-1,2,0,3,1v4,6,-7,10,-9,16v2,5,13,10,9,15v-1,1,-2,2,-3,1xm36,-9v-4,-6,-18,-11,-13,-20v6,-3,9,-15,17,-12v2,7,-8,10,-10,16v3,5,12,8,10,15v-2,1,-3,2,-4,1","w":46},"\u00bb":{"d":"27,-42v4,6,18,11,14,20v-6,3,-9,15,-17,12v-3,-7,7,-10,10,-15v-3,-6,-12,-9,-10,-16v2,-1,3,-2,3,-1xm10,-42v4,6,18,11,14,20r-14,13v-1,1,-6,-2,-4,-4r11,-12v-3,-5,-13,-10,-10,-16v1,-1,2,-2,3,-1","w":46},"\u2018":{"d":"15,-71v-5,8,3,23,-8,22v-2,0,-3,0,-3,-3v2,-16,0,-21,11,-19","w":17},"\u2019":{"d":"2,-50v7,-7,-4,-22,8,-22v2,0,4,0,4,3v-2,16,0,21,-12,19","w":17},"\u201c":{"d":"15,-71v-5,8,3,23,-8,22v-2,0,-3,0,-3,-3v2,-16,0,-21,11,-19xm29,-71v-5,8,3,23,-8,22v-2,0,-3,0,-3,-3v2,-16,0,-21,11,-19","w":31},"\u201d":{"d":"2,-50v7,-7,-4,-22,8,-22v2,0,4,0,4,3v-2,16,0,21,-12,19xm16,-50v7,-7,-4,-22,8,-22v2,0,3,0,3,3v-2,16,1,21,-11,19","w":31},"_":{"d":"48,10v0,7,0,7,-5,7r-43,0v0,-7,0,-6,5,-7r43,0","w":48},"\u00ad":{"d":"30,-32v2,13,-16,5,-25,7v-3,-14,16,-4,25,-7","w":34},"\u2013":{"d":"0,-28v0,-8,0,-6,5,-7r43,0v0,6,0,6,-4,7r-44,0","w":48},"\u2014":{"d":"96,-35v0,7,0,7,-6,7r-90,0v0,-8,0,-6,5,-7r91,0","w":96},"\u00ae":{"d":"22,-36r0,-26v6,-2,19,-1,17,7v0,5,-2,7,-5,7v5,9,5,10,6,11v-8,7,-6,-9,-13,-10r0,11r-5,0xm29,-59v-4,0,-1,6,-2,9v5,0,7,-1,7,-5v0,-3,-2,-4,-5,-4xm11,-49v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19v-11,0,-19,9,-19,19xm5,-49v0,-13,11,-25,25,-25v13,0,25,12,25,25v0,14,-12,25,-25,25v-14,0,-25,-11,-25,-25","w":59},"\u2122":{"d":"18,-36r-6,0r0,-23r-9,0v-2,-11,14,-4,23,-6v2,8,-2,6,-8,6r0,23xm50,-58v0,9,-3,15,-4,22r-7,0r-5,-22r-2,22v-3,0,-7,0,-6,-3r5,-24v0,-2,1,-2,5,-2v2,0,3,0,3,2r4,20r4,-20v0,-2,1,-2,5,-2v2,0,3,0,3,2r4,26v-1,1,-2,1,-6,1","w":64},"\u00a9":{"d":"4,-34v0,-18,13,-33,32,-33v20,0,32,15,32,33v0,19,-12,33,-32,33v-19,0,-32,-14,-32,-33xm11,-34v0,16,9,28,25,28v17,0,26,-12,26,-28v0,-15,-9,-27,-26,-27v-16,0,-25,12,-25,27xm28,-33v-1,-15,9,-18,18,-13v2,-7,-2,-7,-9,-8v-9,0,-17,5,-17,21v0,17,15,22,27,17v1,-1,1,-2,0,-5v-10,2,-19,3,-19,-12","w":72},"\u00b0":{"d":"4,-55v0,-6,5,-11,11,-11v6,0,11,5,11,11v0,6,-5,11,-11,11v-6,0,-11,-5,-11,-11xm10,-55v0,3,2,5,5,5v3,0,5,-2,5,-5v0,-3,-2,-6,-5,-6v-3,0,-5,3,-5,6","w":30},"\u00b9":{"d":"3,-61v2,-1,16,-10,16,-1r0,35r-7,0r0,-32r-8,2v-2,-3,-2,-4,-1,-4","w":27},"\u00b2":{"d":"6,-27v-7,-10,17,-20,15,-27v0,-11,-12,-1,-15,-6v2,-9,26,-7,23,5v1,7,-12,16,-17,22v15,0,16,0,19,-1v2,6,1,7,-4,7r-21,0","w":36},"\u00b3":{"d":"12,-45r-1,-4v10,0,12,-9,4,-11v-6,1,-10,3,-9,-3v4,-4,23,-5,21,6v0,5,-4,8,-8,9v7,0,10,4,10,9v1,12,-18,14,-24,9v-1,0,-1,-1,0,-5v4,3,18,4,17,-5v0,-3,-3,-6,-10,-5","w":34},"\u00aa":{"d":"22,-39v-3,6,-18,8,-18,-4v0,-7,8,-10,18,-9v2,-10,-8,-8,-15,-7v-2,-6,3,-5,10,-6v15,-2,10,18,11,31v-4,0,-7,0,-6,-5xm14,-39v4,0,9,-2,8,-8v-12,-3,-16,6,-8,8","w":35},"\u00ba":{"d":"31,-50v0,11,-5,16,-13,16v-8,0,-13,-5,-13,-16v0,-10,5,-15,13,-15v8,0,13,5,13,15xm25,-50v0,-7,-3,-10,-7,-10v-4,0,-7,3,-7,10v0,8,3,11,7,11v4,0,7,-3,7,-11","w":35},"\u00bc":{"d":"6,-57v-5,-8,9,-7,12,-9v3,0,4,1,4,4r0,35r-8,0r0,-32xm60,-12r-8,0r11,-23v1,-1,1,-2,-2,-3v-3,-1,-4,-1,-4,0v-11,26,-12,20,-10,32r13,0v-1,6,1,9,8,8v-1,-4,-1,-6,-1,-8v7,-1,7,0,6,-7r-6,1v0,-3,1,-8,-1,-9v-6,0,-5,5,-6,9xm60,-70r-36,74v-1,4,-6,3,-9,2r35,-74v2,-3,6,-4,10,-2","w":77},"\u00bd":{"d":"15,6r36,-74v1,-4,6,-4,9,-2r-36,74v-1,4,-6,3,-9,2xm6,-57v-5,-8,9,-7,12,-9v3,0,4,1,4,4r0,35r-8,0r0,-32xm51,0v-6,-10,17,-21,16,-27v2,-10,-17,1,-15,-8v4,-5,25,-6,22,7v1,7,-11,17,-16,22v14,0,16,0,19,-1v3,13,-16,5,-26,7","w":81},"\u00be":{"d":"13,-45r-1,-4v11,0,12,-9,4,-11v-6,1,-10,3,-9,-3v4,-4,23,-5,21,6v0,5,-4,8,-8,9v7,0,10,4,10,9v1,12,-18,14,-24,9v-1,0,-1,-1,0,-5v4,3,18,4,17,-5v0,-3,-2,-6,-10,-5xm65,-12v-2,-6,4,-12,7,-7r0,7v1,-1,3,-1,6,-1v0,8,1,6,-6,7v0,2,-1,4,0,8v-6,1,-9,-1,-8,-8v-6,-1,-16,3,-14,-5v0,-3,1,-6,11,-27v1,-2,9,2,7,3v-1,1,-6,11,-12,23r9,0xm19,6r36,-74v1,-3,7,-4,10,-2r-36,74v-1,4,-7,3,-10,2","w":81},"`":{"d":"20,-55v-7,4,-4,3,-16,-9v10,-6,6,-4,16,9","w":24},"\u00b4":{"d":"20,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":24},"\u00a8":{"d":"4,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6xm20,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":33},"\u00af":{"d":"4,-55v-3,-11,10,-6,19,-7v3,11,-10,6,-19,7","w":27},"\u00b8":{"d":"4,15v0,-7,8,-2,4,-11v5,0,7,0,7,5v0,6,-7,9,-11,6","w":18},"\u00a6":{"d":"16,18r-8,1r0,-33r8,0r0,32xm8,-33r0,-30v0,-2,1,-4,6,-4v2,0,2,1,2,3r0,31r-8,0","w":24},"^":{"d":"4,-36v8,-19,15,-32,17,-29v4,0,4,2,16,26v2,3,2,6,-4,5r-12,-21r-12,21v-4,1,-5,-1,-5,-2","w":42},"\u00ac":{"d":"42,-30r0,16v-8,1,-9,-2,-7,-8r-33,0v0,-8,0,-7,5,-8r35,0","w":45},"\u00b1":{"d":"27,-11v-12,2,-7,-8,-8,-16r-16,1v-4,-13,8,-6,16,-7r0,-16v11,-2,7,8,7,16r17,-1v2,13,-9,6,-17,7xm43,-7v-13,1,-29,-1,-40,1v0,1,-1,2,0,6v13,0,28,1,39,-1v1,-1,1,-2,1,-6","w":45},"\u00d7":{"d":"23,-32r12,-12v10,6,-4,12,-7,17r12,13v-8,11,-11,-5,-17,-8r-13,13v-11,-8,4,-12,8,-18r-12,-13v7,-11,12,5,17,8","w":45},"\u00f7":{"d":"3,-29v11,-3,27,0,40,-1v0,6,1,7,-4,7r-36,0v-1,-4,-1,-5,0,-6xm18,-12v0,-3,2,-5,7,-5v5,2,4,12,-3,10v-3,0,-4,-1,-4,-5xm18,-43v0,-2,2,-4,7,-4v5,2,4,12,-3,10v-3,0,-4,-1,-4,-6","w":45},"\u00b5":{"d":"14,-47v2,0,2,1,2,3v2,13,-5,38,9,38v4,0,8,-3,12,-8r0,-29v0,-3,2,-4,6,-4v2,0,3,1,3,2r0,45v-7,1,-12,-2,-8,-8v-6,5,-12,11,-23,7v3,5,0,16,1,23r-9,1r0,-66v0,-3,3,-4,7,-4","w":53}}});


 //base.js

/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */
(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}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);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",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;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);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 this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},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;}if(value.constructor==Number)value+='';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=jQuery.makeArray(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[0]?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===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&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.fn.init.prototype=jQuery.fn;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);}function now(){return+new Date;}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==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};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&&/^[\s[]?function/.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.insertBefore(script,head.firstChild);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){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else
for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var 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,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;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":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(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 left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}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+='';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 notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}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){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;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))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)ret[ret.length]=value;}return ret.concat.apply([],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,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});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");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}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,re=quickChild,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=[],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&&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)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});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({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&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,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.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;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},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;event.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;event.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){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,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){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;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.call(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:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._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=now();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:{url:location.href,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){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="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&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){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 xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);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(jQuery.isFunction(a[j])?a[j]():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.apply(this,arguments):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),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(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.call(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){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",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].call(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:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(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.call(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=now();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=now();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)this.options.complete.call(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.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},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),css=jQuery.curCSS,fixed=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&&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(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&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,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();

(function(H){H.fn.drag=function(K,J,I){if(J){this.bind("dragstart",K)}if(I){this.bind("dragend",I)}return !K?this.trigger("drag"):this.bind("drag",J?J:K)};var D=H.event,B=D.special,F=B.drag={not:":input",distance:0,setup:function(I){I=H.extend({distance:F.distance,not:F.not},I||{});I.distance=G(I.distance);D.add(this,"mousedown",E,I)},teardown:function(){D.remove(this,"mousedown",E);if(this===F.dragging){F.dragging=F.proxy=null}C(this,true)}};function E(K){var J=this,I,L=K.data||{};if(J===document){K.dragTarget=J=L.elem;K.dragProxy=F.proxy||J;K.cursorOffsetX=L.pageX-L.left;K.cursorOffsetY=L.pageY-L.top;K.offsetX=K.pageX-K.cursorOffsetX;K.offsetY=K.pageY-K.cursorOffsetY}else{if(F.dragging||K.which!=1||H(K.target).is(L.not)){return }}switch(K.type){case"mousedown":H.extend(L,H(J).offset(),{elem:J,target:K.target,pageX:K.pageX,pageY:K.pageY});D.add(document,"mousemove mouseup",E,L);C(J,false);return false;case !F.dragging&&"mousemove":if(G(K.pageX-L.pageX)+G(K.pageY-L.pageY)<L.distance){break}K.target=L.target;I=A(K,"dragstart",J);if(I!==false){F.dragging=J;F.proxy=K.dragProxy=H(I)[0]||J}case"mousemove":if(F.dragging){I=A(K,"drag",J);if(B.drop){B.drop.allowed=(I!==false);B.drop.handler(K)}if(I!==false){break}K.type="mouseup"}case"mouseup":D.remove(document,"mousemove mouseup",E);if(F.dragging){if(B.drop){B.drop.handler(K)}A(K,"dragend",J)}C(J,true);F.dragging=F.proxy=null;break}}function A(K,I,J){K.type=I;return D.handle.call(J,K)}function G(I){return Math.pow(I,2)}function C(J,I){if(!J){return }J.unselectable=I?"off":"on";J.onselectstart=function(){return I};if(J.style){J.style.MozUserSelect=I?"":"none"}}})(jQuery);

function createCookie(name,value,days){if(days){var date=new Date();date.setTime(date.getTime()+(days*24*60*60*1000));var expires="; expires="+date.toGMTString();}else expires="";document.cookie=name+"="+value+expires+"; path=/";}function readCookie(name){var nameEQ=name+"=";var ca=document.cookie.split(';');for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==' ')c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return c.substring(nameEQ.length,c.length);}return null;}

$.fn.extend({ hrefId: function() { return $(this).attr("href").substr($(this).attr("href").indexOf("#")); } });

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()}};M.ready=(function(){var a=!M.recognizesMedia("all");var Z=[],c=function(){a=true;for(var f;f=Z.shift();f()){}};var d=F("link"),e={stylesheet:1};function b(){var g,f,h;for(f=0;h=d[f];++f){if(h.disabled||!e[h.rel.toLowerCase()]||!M.recognizesMedia(h.media||"screen")){continue}g=h.sheet||h.styleSheet;if(!g||g.disabled){return false}}return true}V.ready(function(){if(a||b()){c()}else{setTimeout(arguments.callee,10)}});return function(f){if(a){f()}else{Z.push(f)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=c.data;if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode(".cufon-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=U.length;p--;){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G*e+j-R));K.height=Math.ceil(J.convert(V.height-W+f));W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=H/V.height;s.scale(Y,Y*e);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){s.scale(e,1);for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}s.restore()}if(U){for(var p=U.length;p--;){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o()}}o();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(D,E){return A(D,/(?:em|ex|%)$/i.test(E)?"1em":E)}function A(G,H){if(/px$/i.test(H)){return parseFloat(H)}var F=G.style.left,E=G.runtimeStyle.left;G.runtimeStyle.left=G.currentStyle.left;G.style.left=H;var D=G.style.pixelLeft;G.style.left=F;G.runtimeStyle.left=E;return D}return function(s,V,n,S,Z,t,j){var G=(V===null);if(G){V=Z.alt}var X=s.viewBox;var H=n.computedFontSize||(n.computedFontSize=new Cufon.CSS.Size(C(t,n.get("fontSize"))+"px",s.baseSize));var h=n.computedLSpacing;if(h==undefined){h=n.get("letterSpacing");n.computedLSpacing=h=(h=="normal")?0:~~H.convertFrom(A(t,h))}var P,I;if(G){P=Z;I=Z.firstChild}else{P=document.createElement("span");P.className="cufon cufon-vml";P.alt=V;I=document.createElement("span");I.className="cufon-vml-canvas";P.appendChild(I);if(S.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(V));P.appendChild(q)}if(!j){P.appendChild(document.createElement("cvml:shape"))}}var y=P.style;var c=I.style;var E=H.convert(X.height),v=Math.ceil(E);var g=v/E;var f=X.minX,e=X.minY;c.height=v;c.top=Math.round(H.convert(e-s.ascent));c.left=Math.round(H.convert(f));y.height=H.convert(s.height)+"px";var L=S.enableTextDecoration?Cufon.CSS.textDecoration(t,n):{};var U=n.get("color");var w=Cufon.CSS.textTransform(V,n).split("");var D=0,d=0,M=null;var T,N,W=S.textShadow;for(var r=0,p=0,o=w.length;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(T){D+=M=~~(T.w||s.w)+h}}if(M===null){return null}var O=-f+D+(X.width-M);var x=H.convert(O*g),m=Math.round(x);var b=O+","+X.height,F;var Y="r"+b+"nsnf";for(r=0;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(!T){continue}if(G){N=I.childNodes[p];if(N.firstChild){N.removeChild(N.firstChild)}}else{N=document.createElement("cvml:shape");I.appendChild(N)}N.stroked="f";N.coordsize=b;N.coordorigin=F=(f-d)+","+e;N.path=(T.d?"m"+T.d+"xe":"")+"m"+F+Y;N.fillcolor=U;var u=N.style;u.width=m;u.height=v;if(W){var K=W[0],J=W[1];var R=Cufon.CSS.color(K.color),Q;var a=document.createElement("cvml:shadow");a.on="t";a.color=R.color;a.offset=K.offX+","+K.offY;if(J){Q=Cufon.CSS.color(J.color);a.type="double";a.color2=Q.color;a.offset2=J.offX+","+J.offY}a.opacity=R.opacity||(Q&&Q.opacity)||1;N.appendChild(a)}d+=~~(T.w||s.w)+h;++p}y.width=Math.max(Math.ceil(H.convert(D*g)),0);return P}})());

Cufon.registerFont({"w":45,"face":{"font-family":"Haptic","font-weight":300,"font-stretch":"normal","units-per-em":"96","panose-1":"2 11 3 3 4 5 2 2 2 3","ascent":"70","descent":"-26","bbox":"-3 -87 96 24","underline-thickness":"4.8","underline-position":"-4.8","stemh":"4","stemv":"5","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":19},"\u00a0":{"w":19},"!":{"d":"14,-68v1,0,2,0,2,2v-3,17,6,59,-6,54r0,-53v0,-2,1,-3,4,-3xm9,-4v0,-2,2,-3,5,-3v3,1,3,9,-2,7v-2,0,-3,0,-3,-4","w":25},"\"":{"d":"11,-52r-6,0v0,-7,-4,-25,6,-18r0,18xm24,-52r-6,0v1,-8,-3,-25,6,-18r0,18","w":28},"#":{"d":"51,-27v1,6,-7,5,-12,5r-2,20v0,3,-3,2,-6,2v0,-1,0,-3,2,-22r-13,0r-2,20v0,3,-3,2,-6,2v0,-1,0,-3,2,-22r-11,0v0,-7,6,-5,12,-5r1,-13r-11,0v-1,-7,7,-5,12,-5v2,-7,-2,-21,8,-20v0,2,0,3,-3,20r14,0r2,-18v0,-3,3,-2,6,-2v0,2,0,3,-3,20r12,0v1,8,-5,4,-12,5r-2,13r12,0xm34,-27r1,-13r-13,0r-2,13r14,0","w":56},"$":{"d":"38,-53v-6,-3,-25,-6,-25,7v0,15,30,7,30,29v0,10,-6,17,-16,17r0,11r-6,0r0,-11v-9,-1,-16,0,-14,-8v9,4,30,5,29,-7v0,-19,-29,-10,-29,-31v0,-7,4,-14,14,-15v-1,-6,1,-15,6,-9r0,9v8,3,15,2,11,8","w":48},"%":{"d":"34,-47v0,14,-6,20,-14,20v-9,0,-15,-6,-15,-20v0,-13,6,-19,15,-19v8,0,14,6,14,19xm28,-47v0,-8,-2,-14,-8,-14v-6,0,-9,6,-9,14v0,9,3,15,9,15v6,0,8,-6,8,-15xm76,-19v0,14,-7,19,-15,19v-8,0,-15,-5,-15,-19v0,-13,7,-19,15,-19v8,0,15,6,15,19xm70,-19v0,-8,-3,-14,-9,-14v-6,0,-9,6,-9,14v0,9,3,15,9,15v6,0,9,-6,9,-15xm19,6r36,-74v0,-3,5,-4,6,-2r-35,74v-1,3,-4,3,-7,2","w":80},"&":{"d":"48,-13v6,7,7,9,18,8v-1,9,-17,6,-21,-3v-9,13,-41,11,-39,-11v0,-11,7,-16,13,-19v-11,-11,-13,-30,7,-30v8,0,14,2,10,6v-6,-2,-21,-2,-19,7v0,11,21,28,27,37v2,-6,3,-15,2,-29v5,0,6,0,6,2v0,13,-1,21,-4,32xm12,-19v-1,16,23,19,29,7r-19,-23v-7,4,-10,9,-10,16","w":64},"'":{"d":"11,-52r-6,0v0,-7,-4,-25,6,-18r0,18","w":15},"(":{"d":"19,-78r5,0v0,0,-12,20,-12,48v0,28,12,47,12,47v-3,1,-4,1,-5,0v-2,-2,-13,-19,-13,-47v0,-28,11,-46,13,-48","w":26},")":{"d":"7,-78v2,2,13,20,13,48v0,30,-7,48,-17,47v0,0,11,-19,11,-47v0,-28,-11,-48,-11,-48r4,0","w":26},"*":{"d":"2,-62v3,-8,8,0,12,2r0,-12v8,-1,4,7,4,12v4,-2,11,-9,12,-2r-10,5r11,6v-3,7,-8,-1,-13,-2r1,11v-8,3,-4,-5,-5,-11r-9,6v-6,-7,6,-6,8,-10","w":33},"+":{"d":"25,-5v-10,2,-5,-10,-6,-18r-17,0v-1,-10,10,-5,17,-6r0,-18v10,-2,4,10,6,18r17,0v3,10,-10,5,-17,6r0,18","w":44},",":{"d":"5,13v5,-6,-4,-20,6,-21v4,6,2,26,-6,21","w":19},"-":{"d":"5,-26v-1,-9,16,-3,24,-5v1,10,-16,3,-24,5","w":33},".":{"d":"6,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4","w":19},"\/":{"d":"35,-67v-1,2,-1,3,-24,72v-1,3,-3,3,-7,3v2,-3,2,-5,25,-73v0,-2,3,-2,6,-2","w":36},"0":{"d":"2,-31v0,-22,8,-32,22,-32v14,0,22,10,22,32v0,22,-8,32,-22,32v-14,0,-22,-10,-22,-32xm9,-31v0,17,5,26,15,26v11,0,15,-9,15,-26v0,-18,-4,-27,-15,-27v-10,0,-15,9,-15,27","w":48},"1":{"d":"8,0v1,-9,-2,-5,14,-5r0,-52v-4,0,-13,4,-13,-1v2,-1,19,-9,19,-2r-1,55r13,0v2,6,-1,4,-4,5r-28,0","w":48},"2":{"d":"24,-63v24,1,18,24,6,38r-18,20v17,0,27,0,31,-1v0,6,-1,6,-5,6r-30,0v-5,-10,-2,-6,15,-27v7,-10,11,-14,11,-20v3,-16,-19,-8,-24,-9v-2,-4,6,-6,14,-7","w":48},"3":{"d":"16,-31r-1,-5v10,-2,17,-7,17,-14v1,-15,-21,-1,-23,-8v6,-7,33,-7,30,8v0,7,-6,13,-15,15v10,0,17,5,17,16v0,19,-23,22,-35,16v-1,0,-1,-1,0,-4v9,4,29,3,29,-12v0,-9,-5,-13,-19,-12","w":48},"4":{"d":"10,-18r18,0v0,-7,-3,-24,6,-18r0,18v3,-1,7,-1,10,-1v0,8,0,5,-10,6v0,5,-1,10,0,13v-9,2,-7,-7,-6,-13r-22,0v-3,-13,0,-3,18,-50v2,-2,8,2,7,3","w":48},"5":{"d":"10,-33v2,-10,-4,-28,4,-30r25,0v1,10,-15,3,-23,5r0,20v15,-3,26,2,26,17v0,20,-20,24,-34,19v-1,-1,-1,-2,0,-5v10,4,28,2,28,-13v0,-13,-9,-17,-26,-13","w":48},"6":{"d":"11,-30v8,-15,33,-12,32,9v0,14,-7,21,-19,21v-12,0,-18,-8,-18,-23v0,-20,10,-48,35,-38v1,0,1,0,1,2v-1,5,-3,0,-10,1v-15,-1,-19,14,-21,28xm37,-19v0,-10,-5,-15,-12,-15v-7,0,-13,5,-13,14v0,21,25,21,25,1","w":48},"7":{"d":"41,-60r-25,60v-4,0,-5,-1,-5,-3v0,-2,0,-3,24,-55r-26,0v-2,0,-2,0,-2,-3v0,-1,0,-2,2,-2r30,0v1,0,2,2,2,3","w":48},"8":{"d":"24,-4v18,-1,14,-22,0,-27v-8,5,-12,10,-12,16v0,6,4,11,12,11xm24,-63v21,0,19,25,5,29v16,6,20,35,-5,35v-26,0,-22,-28,-5,-34v-15,-5,-18,-30,5,-30xm24,-58v-7,0,-11,4,-11,10v0,6,5,9,11,12v14,-4,14,-21,0,-22","w":48},"9":{"d":"37,-33v-8,16,-32,12,-32,-9v0,-14,7,-21,19,-21v12,0,19,8,19,23v1,20,-11,48,-37,38r0,-4v20,6,30,-8,31,-27xm11,-43v0,10,5,15,12,15v7,0,13,-6,13,-15v-1,-22,-25,-20,-25,0","w":48},":":{"d":"6,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4xm6,-32v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4","w":19},";":{"d":"5,13v5,-6,-4,-20,6,-21v4,6,2,26,-6,21xm6,-32v0,-2,2,-4,5,-4v3,1,2,10,-2,8v-2,0,-3,0,-3,-4","w":19},"<":{"d":"32,1r-27,-23v0,-3,0,-4,2,-5r25,-22v1,-1,2,-1,4,1v1,1,1,3,0,3r-26,21r27,21v1,1,0,2,-1,3v-2,2,-3,2,-4,1","w":44},"=":{"d":"39,-35v0,5,1,5,-4,6r-29,0v-2,-4,0,-6,3,-6r30,0xm6,-19v9,-3,22,0,33,-1v0,5,0,4,-4,5r-29,0v-1,-2,-1,-4,0,-4","w":44},">":{"d":"8,-3r26,-21r-26,-21v-1,0,-1,-2,1,-3v1,-2,2,-2,3,-1r27,23v1,3,1,4,-1,5r-26,22v-1,1,-2,1,-3,-1v-1,-1,-2,-2,-1,-3","w":44},"?":{"d":"14,-12v-6,-17,13,-30,13,-41v1,-14,-16,-8,-21,-9v-1,-4,4,-6,11,-6v10,0,16,5,16,15v1,15,-20,21,-14,40xm14,-4v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4","w":38},"@":{"d":"63,-45v2,11,-4,26,-5,38v12,-1,20,-10,20,-29v0,-15,-11,-23,-26,-23v-21,0,-38,14,-38,42v0,30,25,30,43,26v4,9,-5,7,-15,7v-16,0,-34,-6,-34,-33v0,-32,20,-47,44,-47v19,0,32,9,32,28v0,22,-11,33,-29,33v-3,0,-4,0,-4,-2v0,-3,4,-12,4,-12v-5,11,-10,15,-16,15v-7,0,-12,-5,-12,-15v-2,-19,14,-34,31,-26v1,-2,2,-2,5,-2xm58,-39v-15,-6,-24,9,-24,22v0,7,2,9,7,9v8,1,14,-16,17,-31","w":91},"A":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0","w":55},"\u00c0":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm31,-73v-4,7,-1,3,-16,-3v6,-8,4,-4,16,3","w":55},"\u00c1":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm24,-73v10,-6,11,-7,12,-7v2,0,4,1,5,4v-16,6,-11,9,-17,3","w":55},"\u00c2":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm18,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":55},"\u00c3":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm39,-77v-1,13,-20,-4,-19,7v-4,1,-4,-1,-4,-3v0,-10,11,-4,17,-4v2,0,2,-1,2,-4v4,0,4,2,4,4","w":55},"\u00c4":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm16,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm32,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":55},"\u00c5":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm35,-77v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm31,-77v0,-2,-1,-4,-3,-4v-2,0,-4,2,-4,4v0,6,7,7,7,0","w":55},"\u0100":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm18,-71v-1,-9,13,-4,19,-5v2,9,-12,4,-19,5","w":55},"\u0102":{"d":"24,-62v-1,-3,6,-4,8,-2v7,22,16,41,21,64r-5,0r-7,-18r-27,0r-6,18v-3,0,-7,0,-6,-3xm40,-23r-12,-36r-13,36r25,0xm20,-80v3,5,13,6,15,0v3,0,3,1,3,2v0,4,-4,8,-10,8v-7,0,-11,-4,-11,-8v0,-1,0,-2,3,-2","w":55},"\u0104":{"d":"41,-18r-27,0r-7,18v-4,2,-5,1,-5,-3r22,-59v-1,-3,6,-4,8,-2v6,21,16,43,21,64v-7,7,-7,7,-7,10v0,5,5,4,8,3v1,4,-2,5,-5,5v-11,0,-9,-14,-1,-18xm40,-23r-12,-36r-13,36r25,0","w":55},"\u00c6":{"d":"45,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-33,0r1,-18r-25,0r-12,19v-4,-1,-5,-1,-4,-5r36,-58v1,-3,3,-3,6,-3r34,0v0,3,1,6,-3,5r-26,0r0,24r26,0r0,5r-26,0xm39,-23r0,-37r-22,37r22,0","w":81},"B":{"d":"9,-64v16,-2,38,-2,36,15v0,8,-5,13,-10,14v5,1,12,5,12,16v1,22,-24,20,-38,18r0,-63xm15,-5v13,0,26,1,26,-13v0,-16,-13,-14,-26,-14r0,27xm15,-37v12,1,25,0,24,-11v0,-12,-12,-13,-24,-12r0,23","w":52},"C":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27","w":52},"\u0106":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm29,-73v13,-7,10,-11,16,-3v-15,6,-10,9,-16,3","w":52},"\u0108":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm21,-72v7,-10,13,-10,21,0v-2,4,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":52},"\u010a":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm28,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":52},"\u010c":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm43,-78v-16,12,-6,11,-22,0v4,-3,7,1,11,2v4,-1,8,-5,11,-2","w":52},"\u00c7":{"d":"12,-31v0,23,16,29,35,25v3,7,-5,7,-13,7v-18,0,-29,-10,-29,-32v0,-30,20,-41,42,-32v0,1,1,2,-1,5v-17,-6,-34,1,-34,27xm30,4v4,0,5,0,5,4v0,6,-5,7,-10,7v0,-7,7,-2,5,-11","w":52},"D":{"d":"9,-1r0,-63v24,-4,46,1,46,31v0,29,-19,36,-46,32xm15,-5v21,1,33,-4,33,-28v0,-24,-12,-28,-33,-27r0,55","w":60},"\u010e":{"d":"9,-1r0,-63v24,-4,46,1,46,31v0,29,-19,36,-46,32xm15,-5v21,1,33,-4,33,-28v0,-24,-12,-28,-33,-27r0,55xm40,-78v-18,12,-5,11,-23,0v7,-4,12,5,18,-1v1,-1,3,0,5,1","w":60},"\u0110":{"d":"10,-64v24,-4,46,1,46,31v0,30,-19,36,-46,32r0,-30r-9,0v-2,-7,4,-5,9,-5r0,-28xm17,-5v21,1,33,-4,33,-28v0,-24,-12,-28,-33,-27r0,24r10,0v3,6,-4,5,-10,5r0,26","w":61},"\u00d0":{"d":"9,-64v23,-4,46,1,46,31v0,29,-19,36,-46,32r0,-30r-10,0v-1,-7,5,-5,10,-5r0,-28xm15,-5v21,1,33,-4,33,-28v-1,-24,-12,-28,-33,-27r0,24r11,0v1,6,-5,5,-11,5r0,26","w":60},"E":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0","w":51},"\u00c8":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm33,-73v-6,6,-1,3,-17,-3v7,-8,3,-4,17,3","w":51},"\u00c9":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm22,-73v13,-8,10,-10,17,-3v-16,6,-11,9,-17,3","w":51},"\u00ca":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm18,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":51},"\u00cb":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm16,-75v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4xm31,-75v0,-2,2,-3,5,-3v2,0,2,0,2,2v0,5,0,5,-4,5v-2,0,-3,0,-3,-4","w":51},"\u0112":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm18,-71v0,-9,13,-3,20,-5v1,8,-13,4,-20,5","w":51},"\u0114":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm20,-80v2,6,12,5,15,0v2,0,3,1,3,2v0,4,-4,8,-11,8v-6,0,-10,-4,-10,-8v0,-1,0,-2,3,-2","w":51},"\u0116":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm24,-75v0,-2,2,-3,5,-3v2,0,2,0,2,2v0,5,0,5,-4,5v-2,0,-3,0,-3,-4","w":51},"\u0118":{"d":"15,-31r0,26v22,0,26,0,30,-1v0,11,-17,15,-5,20v3,-1,6,-1,4,2v-4,4,-13,1,-13,-6v0,-4,4,-7,8,-10r-30,0r0,-65r35,0v2,4,1,5,-3,5r-26,0r0,24r27,0r0,5r-27,0","w":51},"\u011a":{"d":"15,-31r0,26v19,0,26,0,30,-1v0,4,0,6,-4,6r-32,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r27,0r0,5r-27,0xm39,-78v-16,12,-5,11,-22,0v4,-3,7,1,11,2v4,-1,8,-5,11,-2","w":51},"F":{"d":"15,-31r0,31r-6,0r0,-65r35,0v2,5,0,4,-3,5r-26,0r0,24r26,0r0,5r-26,0","w":48},"G":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4","w":58},"\u011c":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm24,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":58},"\u011e":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm25,-80v4,6,12,5,16,0v2,0,3,1,3,2v0,4,-5,8,-11,8v-7,1,-16,-8,-8,-10","w":58},"\u0120":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm29,-75v0,-2,2,-3,5,-3v2,0,2,0,2,2v0,5,0,5,-4,5v-2,0,-3,0,-3,-4","w":58},"\u0122":{"d":"49,-59v-19,-4,-37,2,-37,28v0,22,13,29,32,25r0,-21r-10,0v1,-11,0,-4,17,-5r0,31v-23,6,-46,-1,-46,-30v0,-30,22,-41,44,-32v1,1,1,1,0,4xm26,19v5,-4,-2,-15,6,-15v4,5,1,23,-6,15","w":58},"H":{"d":"47,-31r-32,0r0,31r-6,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,27r32,0r0,-26v0,-2,2,-3,5,-3v1,0,2,0,2,2r-1,63r-6,0r0,-31","w":62},"\u0124":{"d":"47,-31r-32,0r0,31r-6,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,27r32,0r0,-26v0,-2,2,-3,5,-3v1,0,2,0,2,2r-1,63r-6,0r0,-31xm21,-72v7,-9,14,-11,21,0v-2,5,-7,-1,-10,-2v-3,1,-9,6,-11,2","w":62},"\u0126":{"d":"47,-30r-32,0r0,30r-6,0r0,-46r-7,0v-1,-5,2,-5,7,-5v1,-5,-3,-14,4,-14v5,1,1,10,2,14r32,0v1,-6,-3,-15,5,-14v4,1,1,4,1,14r7,0v2,5,-2,5,-7,5r0,46r-6,0r0,-30xm15,-35r32,0r0,-11r-32,0r0,11","w":62},"I":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0","w":24},"\u00cc":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm17,-73v-6,6,-1,3,-17,-3v7,-8,3,-4,17,3","w":24},"\u00cd":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm9,-73v13,-7,10,-11,16,-3v-12,6,-13,6,-14,6v-1,0,-2,-1,-2,-3","w":24},"\u00ce":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm2,-72v7,-10,13,-10,21,0v-2,4,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":24},"\u00cf":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm1,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm17,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":24},"\u0128":{"d":"13,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm11,-74v-2,0,-3,2,-2,4v-4,1,-5,-1,-5,-3v1,-10,11,-4,18,-4v1,0,2,-1,1,-4v4,0,5,2,5,4v0,9,-15,3,-17,3","w":32},"\u012a":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm3,-71v-1,-9,13,-4,19,-5v2,9,-12,4,-19,5","w":24},"\u012c":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm5,-80v2,6,12,5,15,0v2,0,3,1,3,2v0,4,-4,8,-11,8v-6,0,-10,-4,-10,-8v0,-1,0,-2,3,-2","w":24},"\u012e":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63v-7,6,-7,7,-7,10v-1,6,11,1,8,6v-4,4,-13,1,-13,-6v-1,-4,6,-8,6,-10","w":24},"\u0130":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm9,-75v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4","w":24},"\u0132":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,63r-6,0xm25,-5v5,2,12,2,12,-7r0,-50v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,51v2,10,-10,14,-18,11v0,-1,-1,-2,0,-4","w":52},"J":{"d":"1,-5v5,2,12,2,12,-7r0,-50v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,51v2,10,-10,14,-18,11v0,-1,-1,-2,0,-4","w":28},"\u0134":{"d":"1,-5v5,2,12,2,12,-7r0,-50v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,51v2,10,-10,14,-18,11v0,-1,-1,-2,0,-4xm6,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":28},"K":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2v-1,11,1,25,-1,34r29,-36v1,-2,9,2,6,3r-21,25v21,31,22,33,25,35v-3,4,-6,4,-9,0r-20,-30r-9,10r0,22r-6,0","w":54},"\u0136":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2v-1,11,1,25,-1,34r29,-36v1,-2,9,2,6,3r-21,25v21,31,22,33,25,35v-3,4,-6,4,-9,0r-20,-30r-9,10r0,22r-6,0xm24,19v5,-4,-2,-15,6,-15v4,5,2,22,-6,15","w":54},"L":{"d":"15,-5v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58"},"\u0139":{"d":"15,-5v18,0,25,0,28,-1v2,1,1,7,-3,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58xm9,-73v14,-8,9,-10,17,-3v-16,6,-11,9,-17,3"},"\u013b":{"d":"15,-5v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58xm21,19v5,-4,-2,-15,6,-15v4,5,2,22,-6,15"},"\u013d":{"d":"33,-67v-8,13,-3,14,-11,13v4,-7,4,-16,11,-13xm15,-5v19,0,26,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,2,-3,5,-3v1,0,2,0,2,2"},"\u013f":{"d":"15,-5v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-62v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,58xm29,-29v-3,-1,-3,-8,2,-7v2,0,3,0,3,2v0,4,-1,5,-5,5"},"\u0141":{"d":"15,-35r12,-10v5,8,-9,12,-12,17r0,23v18,0,25,0,29,-1v0,4,0,6,-4,6r-31,0r0,-22v-3,3,-12,11,-9,1r9,-8r0,-33v0,-2,1,-3,4,-3v2,0,2,0,2,2r0,28","w":44},"M":{"d":"59,-58r-16,58r-7,1r-15,-59r-11,58v-3,0,-7,0,-5,-3r11,-60v0,-2,8,-3,9,-1r15,57r15,-56v0,-2,1,-2,6,-2v2,0,3,0,3,1r11,60v3,4,-2,4,-5,4","w":80},"N":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0","w":62},"\u00d1":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm26,-74v-1,0,-2,2,-1,4v-4,1,-5,-1,-5,-3v1,-10,11,-4,18,-4v1,0,2,-1,1,-4v4,0,5,2,5,4v-1,10,-13,3,-18,3","w":62},"\u0143":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm26,-73v13,-7,10,-11,16,-3v-15,6,-10,9,-16,3","w":62},"\u0145":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm28,19v3,-5,-2,-15,5,-15v4,4,1,22,-5,15","w":62},"\u0147":{"d":"9,0r0,-62v0,-3,5,-4,6,-2r33,55v-2,-15,0,-36,-1,-53v0,-2,1,-3,5,-3v5,7,-1,46,1,65r-6,0r-33,-53v2,14,1,37,1,53r-6,0xm43,-78v-15,12,-7,11,-22,0v5,-4,12,5,17,-1v2,-1,3,0,5,1","w":62},"\u014a":{"d":"53,0v1,14,-7,17,-16,18v-1,0,-1,0,-2,-3v6,-3,13,-2,12,-15r-33,-53v2,14,1,37,1,53r-6,0r0,-62v0,-3,5,-4,6,-2r33,54v-2,-15,0,-35,-1,-52v0,-2,1,-3,5,-3v1,0,2,0,2,2","w":62},"O":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28","w":62},"\u00d2":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm36,-73v-6,6,-1,3,-17,-3v8,-8,3,-4,17,3","w":62},"\u00d3":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm28,-73v13,-7,10,-11,16,-3v-15,6,-10,9,-16,3","w":62},"\u00d4":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm21,-72v7,-10,13,-10,21,0v-2,5,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":62},"\u00d5":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm43,-77v-1,13,-20,-4,-19,7v-4,1,-4,-1,-4,-3v0,-11,11,-4,17,-4v2,0,2,-1,1,-4v5,0,5,2,5,4","w":62},"\u00d6":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm20,-75v0,-3,7,-5,7,-1v0,5,-1,5,-4,5v-2,0,-3,0,-3,-4xm36,-75v0,-2,1,-3,4,-3v2,0,3,0,3,2v0,5,-1,5,-5,5v-2,0,-2,0,-2,-4","w":62},"\u00d8":{"d":"48,-59v18,13,10,65,-17,60v-7,1,-13,-6,-15,1v0,1,-1,1,-3,0v-5,-1,1,-5,1,-7v-21,-20,-3,-80,30,-57v1,-2,1,-8,6,-5v3,3,-1,5,-2,8xm31,-60v-19,-3,-26,35,-14,49r24,-46v-3,-2,-6,-3,-10,-3xm45,-53r-24,46v17,6,30,-2,30,-25v0,-10,-2,-17,-6,-21","w":62},"\u014c":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm21,-70v0,-8,13,-2,19,-4v2,4,-1,4,-5,4r-14,0","w":62},"\u014e":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm24,-80v3,6,12,5,15,0v2,0,3,1,3,2v0,4,-5,8,-11,8v-7,1,-17,-9,-7,-10","w":62},"\u0150":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,21,-11,33,-27,33v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28xm33,-79v-11,9,-8,9,-15,7v11,-11,9,-13,15,-7xm49,-79v-12,9,-10,9,-15,7v11,-11,7,-13,15,-7","w":62},"\u0152":{"d":"81,-65v-2,11,2,4,-29,5r0,24r26,0r0,5r-26,0r0,26v21,0,26,0,29,-1v2,2,1,7,-4,6r-32,0r0,-5v-17,15,-40,0,-40,-27v0,-29,24,-43,40,-27r0,-6r36,0xm45,-14v1,-19,6,-46,-14,-46v-12,0,-20,10,-20,28v0,26,24,36,34,18","w":87},"P":{"d":"9,0r0,-64v16,-3,37,-2,36,18v-1,19,-14,22,-30,19r0,27r-6,0xm15,-32v12,2,23,2,23,-14v0,-15,-10,-14,-23,-14r0,28","w":47},"Q":{"d":"5,-32v0,-22,10,-34,26,-34v16,0,27,12,27,34v0,18,-9,29,-20,32v5,7,6,9,9,11v-9,8,-6,1,-16,-10v-16,0,-26,-12,-26,-33xm11,-32v0,18,8,27,20,27v12,0,20,-9,20,-27v0,-18,-8,-28,-20,-28v-12,0,-20,10,-20,28","w":62},"R":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27","w":52},"\u0154":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27xm22,-73v13,-8,10,-10,17,-3v-16,6,-11,9,-17,3","w":53},"\u0156":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27xm22,19v5,-4,-3,-14,5,-15v4,4,1,22,-5,15","w":53},"\u0158":{"d":"9,0r0,-64v16,-2,38,-3,37,17v0,12,-7,17,-16,18v13,22,15,25,17,27v-2,3,-7,4,-9,-1r-14,-25v0,0,-5,0,-9,-1r0,29r-6,0xm15,-33v13,0,25,1,24,-14v-1,-14,-12,-13,-24,-13r0,27xm37,-78v-15,12,-7,11,-22,0v6,-4,11,5,17,-1v2,-1,4,0,5,1","w":53},"S":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4","w":50},"\u015a":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm21,-73v13,-7,10,-11,16,-3v-12,6,-13,6,-13,6v-2,0,-3,-1,-3,-3","w":50},"\u015c":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm16,-72v6,-10,14,-10,20,0v-2,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":50},"\u015e":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm24,4v4,0,5,0,5,4v0,6,-5,7,-10,7v0,-7,7,-2,5,-11","w":50},"\u0160":{"d":"41,-57v-6,-4,-31,-6,-28,8v0,17,31,8,31,31v5,19,-28,21,-37,14v-1,0,-1,-2,0,-4v10,4,32,7,31,-9v0,-18,-31,-9,-31,-32v-4,-17,27,-20,34,-12v1,1,1,2,0,4xm37,-78v-18,12,-5,11,-23,0v7,-4,12,5,18,-1v2,-1,3,0,5,1","w":50},"T":{"d":"22,-60r-21,0v0,-6,0,-4,5,-5r43,0v1,10,-14,3,-21,5r0,60r-6,0r0,-60","w":49},"\u0162":{"d":"22,-60r-21,0v0,-6,0,-4,5,-5r43,0v1,10,-14,3,-21,5r0,60r-6,0r0,-60xm20,19v5,-4,-2,-15,6,-15v4,5,2,22,-6,15","w":49},"\u0164":{"d":"22,-60r-21,0v0,-6,0,-4,5,-5r43,0v1,10,-14,3,-21,5r0,60r-6,0r0,-60xm36,-78v-15,12,-7,11,-22,0v6,-4,11,5,17,-1v2,-1,4,0,5,1","w":49},"\u0166":{"d":"42,-36v1,7,-8,5,-14,5r0,31r-6,0r0,-31r-14,0v-3,-8,8,-4,14,-5r0,-24r-21,1v0,-4,0,-7,4,-6r44,0v2,10,-13,4,-21,5r0,24r14,0","w":49},"U":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58","w":61},"\u00d9":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm35,-73v-5,6,0,3,-16,-3v6,-8,4,-4,16,3","w":61},"\u00da":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm27,-73v10,-6,11,-7,12,-7v2,0,4,1,5,4v-16,6,-11,9,-17,3","w":61},"\u00db":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm21,-72v7,-10,13,-11,21,0v-2,5,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":61},"\u00dc":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm20,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm36,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":61},"\u0168":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm27,-74v-2,0,-3,2,-2,4v-4,1,-5,-1,-5,-3v1,-10,11,-4,18,-4v1,0,2,-1,1,-4v4,0,5,2,5,4v0,9,-15,3,-17,3","w":61},"\u016a":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm22,-71v-1,-9,13,-4,19,-5v2,9,-12,4,-19,5","w":61},"\u016c":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm24,-80v2,6,13,5,15,0v3,0,3,1,3,2v0,4,-4,8,-11,8v-6,0,-10,-4,-10,-8v0,-1,0,-2,3,-2","w":61},"\u016e":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm38,-77v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm34,-77v0,-2,-1,-4,-3,-4v-2,0,-4,2,-4,4v0,6,7,7,7,0","w":61},"\u0170":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,27,9,63,-22,63v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58xm34,-79v-11,9,-8,9,-15,7v10,-11,8,-13,15,-7xm50,-79v-12,9,-10,9,-15,7v9,-11,8,-13,15,-7","w":61},"\u0172":{"d":"31,-5v25,0,13,-35,16,-57v0,-2,1,-3,4,-3v2,0,2,0,2,2v-2,25,8,60,-17,63v-7,8,-8,10,-3,14v3,0,6,-3,5,2v-5,4,-14,2,-13,-6v0,-4,3,-7,6,-10v-15,0,-22,-7,-22,-22v0,-25,-1,-36,-1,-40v0,-2,2,-3,5,-3v1,0,2,0,2,2v3,23,-10,57,16,58","w":61},"V":{"d":"25,-8r17,-55v1,-2,8,-4,7,1r-21,62v0,0,-3,1,-6,0r-20,-62v-1,-2,1,-3,5,-3v9,16,11,39,18,57","w":50},"W":{"d":"70,-63v0,-1,2,-2,5,-2v2,0,2,1,1,3r-19,62v0,0,-3,1,-6,0v0,0,-13,-49,-13,-53v0,4,-13,53,-13,53v0,0,-4,1,-7,0r-16,-62v-1,-2,1,-3,5,-3v1,0,1,0,2,2r13,55r12,-54v1,-3,7,-5,8,-1r13,55","w":78},"\u0174":{"d":"70,-63v0,-1,2,-2,5,-2v2,0,2,1,1,3r-19,62v0,0,-3,1,-6,0v0,0,-13,-49,-13,-53v0,4,-13,53,-13,53v0,0,-4,1,-7,0r-16,-62v-1,-2,1,-3,5,-3v1,0,1,0,2,2r13,55r12,-54v1,-3,7,-5,8,-1r13,55xm28,-72v6,-10,14,-10,20,0v-1,5,-7,-1,-10,-2v-3,1,-8,7,-10,2","w":78},"X":{"d":"26,-38r15,-26v1,-1,2,-2,4,-1v3,1,3,2,2,4r-18,28v15,27,16,29,19,31v-4,3,-5,4,-8,1r-14,-27r-16,27v-1,2,-2,2,-4,1v-3,-1,-3,-1,-2,-3r18,-30v-16,-26,-17,-28,-19,-30v3,-3,5,-3,8,-1","w":51},"Y":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23","w":49},"\u00dd":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23xm21,-73v13,-7,10,-11,16,-3v-12,6,-13,6,-13,6v-2,0,-3,-1,-3,-3","w":49},"\u0176":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23xm15,-72v7,-10,13,-10,21,0v-2,5,-8,-1,-11,-2v-3,1,-8,7,-10,2","w":49},"\u0178":{"d":"22,-23r-20,-38v-1,-3,1,-4,5,-4v8,10,12,25,18,36r16,-34v1,-1,2,-2,5,-2v2,0,2,1,1,3r-19,39r0,23r-6,0r0,-23xm14,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4xm30,-75v0,-3,7,-5,7,-1v0,5,-1,5,-4,5v-2,0,-3,0,-3,-4","w":49},"Z":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55","w":50},"\u0179":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55xm20,-73v10,-6,11,-7,12,-7v2,0,4,1,5,4v-16,6,-11,9,-17,3","w":50},"\u017b":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55xm22,-75v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":50},"\u017d":{"d":"39,-60r-32,0v-1,0,-2,0,-2,-3v0,-2,1,-2,2,-2r36,0v1,0,2,2,2,4v0,5,-3,8,-34,56v24,0,31,0,34,-1v0,4,0,6,-4,6r-34,0v-2,-1,-2,-3,-2,-5v0,-4,2,-6,34,-55xm37,-78v-15,12,-7,11,-22,0v4,-3,7,1,11,2v4,-1,8,-5,11,-2","w":50},"a":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7"},"\u00e0":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm27,-55v-5,2,-3,1,-14,-8v6,-6,5,-4,14,8"},"\u00e1":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm33,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8"},"\u00e2":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm14,-54v-5,-3,8,-12,8,-12v2,0,4,1,9,7v2,1,3,5,0,5r-9,-7"},"\u00e3":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm16,-58v-2,0,-2,1,-2,4v-4,1,-4,-1,-4,-4v0,-10,12,-2,17,-3v2,0,2,-1,2,-4v4,-1,4,1,4,4v0,10,-13,2,-17,3"},"\u00e4":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm11,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm27,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4"},"\u00e5":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm30,-60v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm26,-60v0,-2,-1,-4,-3,-4v-2,0,-3,2,-3,4v0,3,1,5,3,5v2,0,3,-2,3,-5"},"\u0101":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm13,-56v-1,-8,12,-4,19,-5v2,9,-12,4,-19,5"},"\u0103":{"d":"31,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33v-5,0,-7,1,-7,-7xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7xm16,-66v2,10,12,9,14,0v3,0,3,1,3,2v0,6,-4,10,-10,10v-6,0,-10,-4,-10,-10v0,-1,0,-2,3,-2"},"\u0105":{"d":"38,0v-7,6,-7,7,-7,10v-1,6,11,1,8,6v-4,4,-13,1,-13,-6v0,-4,3,-7,7,-10v-1,0,-2,-2,-2,-7v-6,9,-26,11,-27,-5v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-7,15,-7v9,0,14,5,14,14v0,27,-1,30,0,33xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7"},"\u00e6":{"d":"64,-7v2,7,-5,7,-15,7v-8,0,-14,-2,-16,-10v-4,6,-9,10,-16,10v-6,0,-13,-3,-13,-12v0,-12,12,-15,27,-13v1,-9,0,-19,-8,-17v-6,0,-11,1,-14,2v-3,-7,4,-5,15,-7v4,0,11,2,12,8v8,-14,32,-11,30,12v-3,8,-20,2,-29,4v-3,21,16,19,27,16xm37,-27r23,0v1,-11,-4,-15,-10,-15v-7,0,-12,6,-13,15xm18,-5v7,-1,15,-5,13,-16v-11,-1,-20,0,-20,9v0,5,3,7,7,7","w":70},"b":{"d":"8,-2v3,-17,0,-46,0,-65v0,-2,3,-3,6,-3v2,8,1,23,0,32v9,-14,30,-11,30,14v0,26,-18,26,-36,22xm14,-6v15,2,23,3,24,-18v1,-22,-14,-21,-23,-11v0,27,-1,29,-1,29","w":49},"c":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18","w":40},"\u0107":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm34,-63v-11,9,-8,10,-15,8v11,-12,8,-14,15,-8","w":40},"\u0109":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm15,-54v-5,-3,8,-12,8,-12v2,0,3,1,8,7v2,1,3,5,0,5r-8,-7","w":40},"\u010b":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm20,-59v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":40},"\u010d":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm35,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":40},"\u00e7":{"d":"12,-22v0,19,12,19,23,15v4,6,-2,7,-10,7v-12,0,-20,-6,-20,-22v-1,-23,16,-29,30,-22v1,1,1,2,0,4v-12,-4,-23,-3,-23,18xm22,4v4,0,5,0,5,4v0,6,-5,7,-10,7v0,-7,7,-2,5,-11","w":40},"d":{"d":"36,-9v-8,13,-31,12,-31,-13v0,-23,14,-29,30,-23v2,-9,-7,-25,5,-25v3,20,0,46,1,70v-6,2,-8,-4,-5,-9xm35,-40v-12,-4,-23,-3,-23,17v0,24,17,20,23,10r0,-27","w":49},"\u010f":{"d":"56,-69v-6,14,-3,15,-11,13v5,-6,4,-15,11,-13xm36,-9v-8,13,-31,12,-31,-13v0,-23,14,-29,30,-23v2,-17,-7,-24,5,-25v3,20,0,46,1,70v-6,2,-8,-4,-5,-9xm35,-40v-12,-4,-23,-3,-23,17v0,24,17,20,23,10r0,-27","w":49},"\u0111":{"d":"36,-9v-8,13,-31,12,-31,-13v0,-23,14,-29,30,-23r0,-10r-14,0v-3,-8,8,-4,14,-5v-1,-5,-3,-11,5,-10v2,1,0,7,1,10r7,0v2,5,-2,5,-7,5r0,55v-6,2,-8,-4,-5,-9xm35,-40v-12,-4,-23,-3,-23,17v0,24,17,20,23,10r0,-27","w":49},"\u00f0":{"d":"35,-45v-1,-6,-3,-11,-6,-14r-10,7v-6,-6,3,-8,6,-10v-4,-3,-16,-4,-10,-9v2,0,11,1,16,5r9,-6v6,6,-3,6,-6,10v11,10,16,62,-10,62v-12,0,-19,-8,-19,-22v0,-23,14,-29,30,-23xm36,-40v-13,-4,-25,-4,-24,17v0,13,5,18,12,18v12,4,15,-22,12,-35","w":49},"e":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15"},"\u00e8":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm28,-55v-5,2,-3,1,-15,-8v7,-6,6,-4,15,8"},"\u00e9":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm36,-63v-11,9,-8,10,-15,8v10,-12,8,-14,15,-8"},"\u00ea":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm14,-56v7,-12,13,-13,20,0v0,2,0,2,-2,2r-8,-7v-3,1,-7,10,-10,5"},"\u00eb":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm13,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm29,-61v0,-3,7,-5,7,-1v0,4,-1,5,-5,5v-2,0,-2,-1,-2,-4"},"\u0113":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm15,-56v-1,-8,12,-4,19,-5v2,9,-12,4,-19,5"},"\u0115":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm18,-66v2,10,11,9,14,0v2,0,3,1,3,2v0,6,-5,10,-10,10v-6,0,-11,-4,-11,-10v0,-1,1,-2,4,-2"},"\u0117":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm21,-59v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4"},"\u0119":{"d":"38,-7v2,6,-3,6,-11,7v-8,8,-10,10,-3,14v3,-1,6,-1,4,2v-4,4,-13,1,-13,-6v0,-4,3,-7,7,-10v-10,-1,-17,-8,-17,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15"},"\u011b":{"d":"5,-21v-2,-30,35,-38,36,-6v-3,8,-20,2,-29,4v-2,20,14,20,26,16v2,7,-3,7,-13,7v-12,0,-20,-7,-20,-21xm12,-27r23,0v0,-11,-4,-15,-10,-15v-7,0,-13,6,-13,15xm35,-64v-15,15,-7,14,-22,0v4,-5,8,3,11,5v3,-2,6,-9,11,-5"},"f":{"d":"9,-42r-7,0v0,-5,0,-5,7,-5v-1,-12,0,-24,11,-23v5,1,11,2,9,6v-4,0,-14,-4,-14,6r0,11r12,0v2,8,-7,4,-12,5r0,42r-6,0r0,-42","w":27},"g":{"d":"41,-47v1,6,-1,5,-9,5v14,9,2,35,-17,27v-5,4,-5,8,2,8v12,1,25,2,25,14v0,10,-7,16,-22,16v-21,0,-22,-19,-9,-25r2,0v-10,-3,-9,-10,-1,-15v-12,-6,-9,-30,10,-30v8,0,9,1,19,0xm26,-1v-18,-6,-27,19,-6,19v17,2,24,-17,6,-19xm22,-42v-8,0,-11,4,-11,11v0,7,3,12,11,12v7,0,10,-5,10,-11v0,-7,-3,-12,-10,-12","w":44},"\u011d":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm15,-54v-5,-3,8,-12,8,-12v2,0,3,1,8,7v3,1,2,5,0,5r-8,-7","w":44},"\u011f":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm16,-66v2,10,12,9,14,0v3,0,3,1,3,2v0,6,-4,10,-10,10v-6,0,-10,-4,-10,-10v0,-1,0,-2,3,-2","w":44},"\u0121":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm19,-59v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":44},"\u0123":{"d":"32,-42v8,0,10,1,9,-5v-18,0,-36,-2,-36,16v0,7,3,12,7,14v-8,5,-9,12,1,15v-17,5,-14,25,7,25v15,0,22,-6,22,-16v0,-12,-13,-13,-25,-14v-7,0,-6,-4,-2,-8v17,7,31,-17,17,-27xm20,18v-15,0,-16,-14,-3,-20v8,1,21,1,19,9v0,7,-5,11,-16,11xm22,-42v7,0,10,5,10,12v0,6,-3,11,-10,11v-8,0,-11,-5,-11,-12v0,-7,3,-11,11,-11xm26,-70v-5,5,3,14,-5,15v-4,-5,-1,-22,5,-15","w":44},"h":{"d":"37,-4v-2,-13,5,-37,-8,-38v-5,0,-10,3,-15,8r0,34r-6,0v0,-4,2,-55,0,-67v0,-2,2,-3,5,-3v5,4,0,23,1,31v8,-10,31,-12,30,7v0,27,-1,29,0,32v-4,0,-7,0,-7,-4","w":51},"\u0125":{"d":"37,-4v-2,-13,5,-37,-8,-38v-5,0,-10,3,-15,8r0,34r-6,0v0,-4,2,-55,0,-67v0,-2,2,-3,5,-3v5,4,0,23,1,31v8,-10,31,-12,30,7v0,27,-1,29,0,32v-4,0,-7,0,-7,-4xm1,-79v6,-8,14,-11,21,0v-2,5,-7,-1,-10,-2v-3,1,-9,7,-11,2","w":51},"\u0127":{"d":"14,-34r0,34r-6,0r1,-54r-7,0v0,-4,2,-4,6,-4v0,-5,-2,-12,5,-11v4,0,1,8,2,11r16,0v1,7,-10,3,-16,4v0,5,1,12,-1,15v8,-10,31,-12,30,7v0,28,-1,29,0,32v-4,0,-7,0,-7,-4v-2,-13,5,-37,-8,-38v-5,0,-10,3,-15,8","w":51},"i":{"d":"14,0r-6,0r0,-44v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,15,0,30,-1,45xm8,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5","w":23},"\u00ec":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm14,-55v-5,2,-3,1,-14,-8v6,-6,5,-4,14,8","w":22},"\u00ed":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm23,-63v-11,9,-8,10,-15,8v10,-12,8,-14,15,-8","w":22},"\u00ee":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm3,-54v-5,-3,8,-12,8,-12v2,0,4,1,9,7v2,1,3,5,0,5r-9,-7","w":22},"\u00ef":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm0,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm16,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":22},"\u0129":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm23,-61v-1,13,-20,-5,-19,7v-4,1,-4,-1,-4,-4v0,-10,12,-2,17,-3v2,0,2,-1,1,-4v4,-1,5,1,5,4","w":22},"\u012b":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm2,-56v-1,-8,12,-4,19,-5v2,9,-11,3,-19,5","w":22},"\u012d":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45xm4,-66v3,10,12,9,14,0v3,0,4,1,4,2v0,6,-5,10,-11,10v-5,1,-15,-9,-7,-12","w":22},"\u012f":{"d":"14,0v-7,8,-8,10,-3,14v3,0,6,-3,5,2v-5,4,-14,2,-13,-6v-1,-4,6,-8,5,-10r0,-44v0,-2,2,-3,5,-3v1,0,2,1,2,2xm8,-59v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":23},"\u0131":{"d":"14,0r-6,0r0,-44v0,-3,7,-4,7,-1v-1,15,-1,30,-1,45","w":22},"\u0133":{"d":"14,0r-6,0r0,-44v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,15,0,30,-1,45xm8,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5xm32,3v1,14,-5,13,-12,17v0,2,1,3,2,3v6,-1,16,-4,16,-18r0,-50v-1,-4,-8,-2,-7,1xm31,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5","w":46},"j":{"d":"9,3v1,14,-5,13,-12,17v0,2,1,3,2,3v6,-1,16,-4,16,-18r0,-50v-1,-4,-8,-2,-7,1xm8,-59v0,-2,2,-3,5,-3v4,1,2,10,-2,8v-2,0,-3,-1,-3,-5","w":23},"\u0135":{"d":"9,3v1,14,-5,13,-12,17v0,2,1,3,2,3v6,-1,16,-4,16,-18r0,-50v-1,-4,-8,-2,-7,1xm2,-56v6,-12,13,-13,20,0v-3,4,-7,-3,-10,-5r-8,7v-2,0,-2,0,-2,-2","w":23},"k":{"d":"14,-70v3,12,-1,30,0,44r20,-21v1,-1,2,-1,4,1v1,1,1,2,1,3r-15,14v14,24,15,25,18,27v-2,4,-7,4,-10,-1r-12,-22r-6,5r0,20r-6,0v1,-7,1,-64,0,-67v0,-2,3,-3,6,-3","w":44},"\u0137":{"d":"14,-70v3,12,-1,30,0,44r20,-21v1,-1,2,-1,4,1v1,1,1,2,1,3r-15,14v14,24,15,25,18,27v-2,4,-7,4,-10,-1r-12,-22r-6,5r0,20r-6,0v1,-7,1,-64,0,-67v0,-2,3,-3,6,-3xm19,19v5,-4,-3,-14,5,-15v4,4,1,22,-5,15","w":44},"\u0138":{"d":"34,-47v1,-1,2,-1,4,1v1,1,1,2,1,3r-15,14v14,24,15,25,18,27v-2,4,-7,4,-10,-1r-12,-22r-6,5r0,20r-6,0r0,-44v0,-2,2,-3,5,-3v5,3,1,10,1,21","w":44},"l":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60","w":24},"\u013a":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60xm7,-81v10,-6,11,-6,12,-6v2,0,4,0,5,3v-16,6,-11,9,-17,3","w":24},"\u013c":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60xm9,19v4,-3,-1,-14,5,-15v6,3,1,22,-5,15","w":24},"\u013e":{"d":"31,-69v-8,14,-3,15,-11,13v4,-4,3,-14,11,-13xm14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60","w":24},"\u0140":{"d":"14,-8v1,5,4,4,9,4v0,4,-2,4,-5,4v-18,1,-7,-21,-10,-34r0,-33v0,-2,2,-3,5,-3v1,0,2,1,2,2v0,10,-1,32,-1,60xm23,-30v-3,-1,-3,-8,2,-7v2,0,3,0,3,2v0,4,-1,5,-5,5","w":24},"\u0142":{"d":"14,-34v2,11,-6,34,9,30v0,4,-2,4,-5,4v-16,2,-8,-16,-10,-28v-2,5,-13,6,-7,0r7,-7r0,-32v0,-2,2,-3,5,-3v5,6,0,21,1,30v4,-2,9,-12,11,-4v-2,5,-7,7,-11,10","w":25},"m":{"d":"36,0v-2,-14,6,-41,-8,-42v-4,0,-9,3,-13,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v8,-8,22,-13,27,1v8,-12,28,-14,27,6v0,27,0,29,1,32v-4,0,-8,1,-7,-4v-1,-13,5,-37,-7,-38v-3,0,-12,3,-14,10r0,32r-5,0","w":76},"n":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32","w":52},"\u00f1":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm22,-58v-2,0,-3,1,-2,4v-4,1,-5,-1,-5,-4v1,-10,12,-3,18,-3v1,0,2,-1,1,-4v4,-1,5,1,5,4v0,9,-15,3,-17,3","w":52},"\u0144":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm37,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8","w":52},"\u0146":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm22,19v5,-4,-3,-14,5,-15v6,3,1,22,-5,15","w":52},"\u0148":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-4,0,-10,4,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,1,5,1,8v7,-9,30,-13,30,7r0,32xm38,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":52},"\u014b":{"d":"26,13v6,-3,13,-4,12,-16v-1,-14,5,-39,-9,-39v-5,0,-10,3,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,2,6,1,8v8,-10,30,-12,30,7r0,30v1,14,-9,17,-16,18v-1,0,-2,-1,-2,-3","w":51},"\u0149":{"d":"44,0v-4,0,-7,0,-6,-4v-1,-14,5,-38,-9,-38v-5,0,-10,3,-14,8r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,2,6,1,8v8,-10,30,-12,30,7r0,32xm2,-53v4,-4,-2,-19,6,-19v3,6,3,25,-6,19","w":52},"o":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18","w":48},"\u00f2":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm29,-55v-7,2,-3,1,-15,-8v7,-6,6,-4,15,8","w":48},"\u00f3":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm38,-63v-11,9,-9,10,-14,8v9,-12,8,-14,14,-8","w":48},"\u00f4":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm16,-54v-5,-3,8,-12,8,-12v2,0,4,1,9,7v2,1,3,5,0,5r-9,-7","w":48},"\u00f5":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm18,-58v-2,0,-2,1,-1,4v-5,1,-5,-1,-5,-4v1,-9,15,-3,17,-3v2,0,2,-1,2,-4v4,-1,4,1,4,4v0,10,-13,2,-17,3","w":48},"\u00f6":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm13,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm29,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":48},"\u00f8":{"d":"37,-42v12,10,7,46,-13,42v0,0,-9,-2,-10,3v-6,2,-6,-3,-3,-7v-14,-14,-2,-55,22,-41v0,-3,4,-7,7,-2xm18,-6v17,8,23,-18,16,-30xm30,-41v-16,-8,-22,18,-16,31","w":48},"\u014d":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm34,-61v2,9,-11,3,-19,5v-1,-9,12,-4,19,-5","w":48},"\u014f":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm17,-66v2,10,13,9,14,0v3,0,3,1,3,2v0,6,-4,10,-10,10v-5,0,-10,-4,-10,-10v0,-1,0,-2,3,-2","w":48},"\u0151":{"d":"44,-23v0,16,-8,23,-20,23v-11,0,-19,-7,-19,-23v0,-17,8,-24,19,-24v12,0,20,7,20,24xm37,-23v0,-13,-5,-19,-13,-19v-7,0,-12,6,-12,19v0,12,5,18,12,18v8,0,13,-6,13,-18xm28,-63v-11,9,-8,10,-15,8v9,-12,8,-14,15,-8xm43,-63v-12,8,-10,12,-15,7v11,-11,9,-13,15,-7","w":48},"\u0153":{"d":"39,-36v7,-17,33,-16,32,9v-3,8,-20,2,-29,4v-4,20,16,19,26,16v1,2,1,3,1,4v-7,3,-29,6,-31,-6v-8,17,-33,10,-33,-14v0,-26,27,-32,34,-13xm36,-23v0,-12,-4,-19,-12,-19v-7,0,-12,6,-12,19v0,12,4,19,12,19v7,0,12,-7,12,-19xm42,-27r23,0v1,-11,-4,-15,-10,-15v-7,0,-12,6,-13,15","w":75},"p":{"d":"9,-28v0,-10,-5,-19,4,-19v2,1,1,5,1,8v10,-13,32,-10,30,15v-2,23,-12,26,-30,23v0,17,0,20,1,24v-4,1,-7,-1,-7,-4v1,-28,1,-37,1,-47xm14,-6v14,2,24,3,24,-18v1,-22,-15,-21,-24,-11r0,29","w":49},"q":{"d":"35,-8v-9,12,-30,11,-30,-14v0,-23,16,-29,30,-22v1,-3,6,-4,6,-1r1,68v-14,3,-4,-25,-7,-31xm35,-40v-12,-4,-23,-3,-23,17v0,24,16,20,23,10r0,-27","w":49},"r":{"d":"32,-41v-8,-1,-13,2,-17,7r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,0,6,1,9v5,-6,11,-11,18,-8v0,1,1,1,0,5","w":33},"\u0155":{"d":"32,-41v-8,-1,-13,2,-17,7r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,0,6,1,9v5,-6,11,-11,18,-8v0,1,1,1,0,5xm30,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8","w":33},"\u0157":{"d":"31,-41v-8,-1,-12,2,-17,7r0,34r-6,0r-1,-44v0,-2,2,-3,5,-3v3,1,2,5,1,9v5,-6,11,-11,18,-8v1,1,1,1,0,5xm6,19v5,-4,-3,-14,5,-15v6,3,1,22,-5,15","w":33},"\u0159":{"d":"31,-41v-8,-1,-12,2,-17,7r0,34r-7,0r0,-44v0,-2,2,-3,5,-3v2,1,0,6,1,9v5,-6,11,-11,18,-8v0,1,1,1,0,5xm29,-64v-16,15,-6,14,-22,0v5,-5,8,3,11,5v3,-2,6,-9,11,-5","w":33},"s":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3","w":38},"\u015b":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm30,-63v-11,9,-8,10,-15,8v11,-12,8,-14,15,-8","w":38},"\u015d":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm8,-56v7,-12,13,-13,20,0v-3,4,-7,-3,-10,-5v-3,1,-7,10,-10,5","w":38},"\u015f":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm13,15v-2,-5,8,-2,4,-11r5,0v1,7,-2,12,-9,11","w":38},"\u0161":{"d":"30,-40v-3,-3,-21,-4,-19,5v0,11,23,6,23,22v4,14,-22,16,-29,10r0,-3v8,2,22,5,22,-7v0,-11,-22,-5,-22,-21v0,-14,19,-16,26,-9v1,0,0,1,-1,3xm30,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":38},"t":{"d":"28,-5v2,5,-3,4,-8,5v-18,1,-7,-28,-10,-42r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,8r12,0v2,8,-7,4,-12,5r0,31v0,8,6,7,12,6","w":31},"\u0163":{"d":"28,-5v2,5,-3,4,-8,5v-18,1,-7,-28,-10,-42r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,8r12,0v2,8,-7,4,-12,5r0,31v0,8,6,7,12,6xm11,19v5,-4,-3,-14,5,-15v4,4,1,22,-5,15","w":31},"\u0165":{"d":"32,-69v-7,15,-4,15,-11,13v4,-4,3,-15,11,-13xm28,-5v2,5,-3,4,-8,5v-18,1,-7,-28,-10,-42r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,8r12,0v2,8,-7,4,-12,5r0,31v0,8,6,7,12,6","w":31},"\u0167":{"d":"4,-24v-2,-5,0,-5,6,-5r0,-13r-7,0v0,-5,0,-5,7,-5v0,-4,3,-14,6,-8r0,9r12,-1v2,8,-7,4,-12,5r0,13r10,0v1,6,-5,5,-10,5v0,11,-2,25,12,19v2,5,-3,4,-8,5v-13,2,-10,-13,-10,-24r-6,0","w":31},"u":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3","w":51},"\u00f9":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm31,-55v-7,2,-4,1,-15,-8v7,-6,6,-4,15,8","w":51},"\u00fa":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm38,-63v-12,9,-10,10,-15,8v9,-12,8,-14,15,-8","w":51},"\u00fb":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm16,-56v7,-12,13,-13,20,0v0,2,0,2,-2,2r-8,-7v-3,1,-7,10,-10,5","w":51},"\u00fc":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm15,-61v0,-3,7,-5,7,-1v0,4,-1,5,-4,5v-2,0,-3,-1,-3,-4xm33,-57v-3,-1,-3,-8,2,-7v2,0,3,0,3,2v0,4,-1,5,-5,5","w":51},"\u0169":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm21,-58v-2,0,-2,1,-2,4v-4,1,-4,-1,-4,-4v0,-10,12,-2,17,-3v2,0,2,-1,2,-4v4,-1,4,1,4,4v0,10,-13,2,-17,3","w":51},"\u016b":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm36,-61v1,10,-12,3,-19,5v-2,-8,12,-4,19,-5","w":51},"\u016d":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm19,-66v1,10,12,9,14,0v3,0,3,1,3,2v0,6,-5,10,-10,10v-6,0,-10,-4,-10,-10v0,-1,0,-2,3,-2","w":51},"\u016f":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm33,-60v0,6,-3,8,-7,8v-4,0,-7,-2,-7,-8v0,-5,3,-7,7,-7v4,0,7,2,7,7xm29,-60v0,-2,-1,-4,-3,-4v-2,0,-4,2,-4,4v0,6,7,7,7,0","w":51},"\u0171":{"d":"13,-47v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-7,1,-9,-2,-6,-9v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3xm30,-63v-11,9,-9,10,-14,8v9,-12,8,-14,14,-8xm46,-63v-12,8,-10,12,-15,7v9,-11,8,-13,15,-7","w":51},"\u0173":{"d":"44,0v-8,7,-10,10,-3,14v1,-1,7,-1,4,2v-4,4,-13,1,-13,-6v0,-4,3,-7,7,-10v-2,0,-3,-2,-2,-7r1,-2v-9,12,-30,16,-30,-6r0,-29v0,-2,2,-3,5,-3v5,10,-6,43,10,42v5,0,9,-3,14,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47","w":53},"v":{"d":"21,-7r13,-38v0,-1,1,-2,4,-2v2,0,3,1,2,3r-17,44v0,0,-2,1,-5,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2","w":42},"w":{"d":"20,-6r8,-38v1,-3,6,-5,7,-1r9,39r10,-39v0,-1,1,-2,5,-2v1,0,2,1,1,3r-13,44v0,0,-4,1,-6,0r-10,-34r-8,34v0,0,-4,1,-6,0r-14,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2","w":61},"\u0175":{"d":"20,-6r8,-38v1,-3,6,-5,7,-1r9,39r10,-39v0,-1,1,-2,5,-2v1,0,2,1,1,3r-13,44v0,0,-4,1,-6,0r-10,-34r-8,34v0,0,-4,1,-6,0r-14,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2xm23,-54v-5,-3,8,-12,8,-12v2,0,3,1,8,7v2,1,3,5,0,5r-8,-7","w":61},"x":{"d":"4,-44v0,-2,7,-5,8,0r10,16r11,-18v1,-3,7,1,5,2r-14,19v13,19,14,20,17,23v-2,1,-7,4,-9,0r-10,-18r-13,20v-2,2,-8,-2,-6,-3r16,-21v-12,-17,-13,-18,-15,-20","w":43},"y":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18","w":42},"\u00fd":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18xm33,-63v-11,9,-8,10,-15,8v9,-12,8,-14,15,-8","w":42},"\u00ff":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18xm10,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm26,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":42},"\u0177":{"d":"20,0r-2,0r-15,-44v-1,-2,1,-3,4,-3v1,0,2,0,2,2r13,41r11,-41v1,-2,8,-4,7,1r-14,43v-9,25,-9,27,-23,22v-1,-4,3,-3,6,-3v5,0,6,-4,11,-18xm11,-56v8,-12,13,-14,21,0v-3,4,-7,-3,-10,-5v-3,2,-8,10,-11,5","w":42},"z":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37","w":41},"\u017a":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37xm32,-63v-11,9,-8,10,-15,8v9,-12,8,-14,15,-8","w":41},"\u017c":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37xm18,-59v0,-3,7,-5,7,-1v0,4,-1,5,-4,5v-2,0,-3,-1,-3,-4","w":41},"\u017e":{"d":"31,-42v-9,1,-19,1,-23,1v-2,0,-2,-1,-2,-3v0,-2,0,-3,2,-3r27,0v1,1,2,3,2,5v0,3,-2,5,-28,37v22,0,26,0,28,-1v2,2,1,7,-4,6r-27,0v-1,-2,-2,-3,-2,-5v0,-2,2,-5,27,-37xm32,-64v-15,15,-7,14,-22,0v4,-5,8,4,11,5v3,-2,7,-10,11,-5","w":41},"\u00df":{"d":"14,0r-6,0v3,-27,-10,-69,19,-70v14,0,18,12,12,25v-7,3,-9,6,-9,11v0,8,17,6,17,21v3,12,-16,16,-25,11r0,-3v9,1,20,3,19,-8v0,-11,-17,-7,-17,-21v0,-7,4,-11,11,-14v4,-9,0,-17,-8,-17v-21,1,-10,43,-13,65","w":51},"\u00de":{"d":"9,0r0,-62v0,-2,1,-3,4,-3v5,-1,1,8,2,12v15,-3,31,0,30,18v0,19,-14,22,-30,19r0,16r-6,0xm15,-21v12,2,23,2,23,-14v0,-15,-10,-13,-23,-13r0,27","w":49},"\u00fe":{"d":"9,-28v2,-10,-7,-44,4,-42v3,8,0,21,1,32v9,-14,32,-11,30,14v-2,23,-12,26,-30,23v1,17,1,20,1,23v-4,0,-7,0,-7,-4v1,-28,1,-36,1,-46xm14,-6v14,2,24,3,24,-18v1,-22,-15,-21,-24,-11v1,25,0,29,0,29","w":49},"{":{"d":"5,-29r0,-3v6,0,8,-2,8,-7r-1,-32v-2,-7,9,-9,13,-5v1,0,1,1,0,3v0,0,-8,-1,-7,3v-2,15,6,36,-7,40v14,4,4,27,7,41v-2,5,10,1,7,6v-4,2,-15,1,-13,-5v-2,-14,8,-38,-7,-41","w":27},"|":{"d":"11,24r0,-93v0,-2,1,-3,4,-3v5,0,1,28,1,41r0,55r-5,0","w":27},"}":{"d":"23,-32r0,3v-16,2,-5,27,-8,41v2,6,-8,7,-13,5v-2,-6,8,0,8,-6v2,-14,-6,-36,6,-41v-12,-5,-4,-26,-6,-40v0,-4,-4,-3,-8,-3v-1,-4,3,-5,6,-5v14,1,4,26,7,39v0,5,2,7,8,7","w":27},"[":{"d":"19,13r0,5r-14,0r0,-96r14,0r0,5r-8,0r0,86r8,0","w":20},"\\":{"d":"4,-67v3,0,4,0,6,2r24,73v-3,0,-6,0,-6,-3v-23,-69,-23,-70,-24,-72","w":38},"]":{"d":"2,18r0,-5r8,0r0,-86r-8,0r0,-5r14,0r0,96r-14,0","w":20},"\u2026":{"d":"6,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4xm25,-4v0,-2,2,-4,5,-4v5,1,4,10,-2,8v-2,0,-3,0,-3,-4xm44,-4v0,-3,7,-6,8,-1v0,5,-1,5,-5,5v-2,0,-3,0,-3,-4","w":57},"\u00b7":{"d":"6,-27v-1,-4,7,-6,8,-2v2,7,-8,9,-8,2","w":19},"\u00bf":{"d":"21,-34v6,18,-12,29,-13,41v-1,14,17,6,21,8v2,5,-4,7,-11,7v-10,0,-16,-5,-16,-15v-1,-15,20,-21,14,-41r5,0xm22,-43v0,2,-2,4,-5,4v-2,0,-3,-1,-3,-2v-2,-7,8,-9,8,-2","w":33},"\u00a1":{"d":"12,22v-2,0,-2,-1,-2,-2v0,-15,1,-54,1,-54r4,0v0,0,1,39,1,53v0,2,-1,3,-4,3xm14,-47v2,1,4,8,-2,8v-2,0,-3,-1,-3,-2v0,-5,1,-6,5,-6","w":25},"\u00b6":{"d":"15,8v10,0,13,-1,13,-8r0,-60r-6,0r0,28v-11,1,-18,-4,-18,-16v0,-21,25,-16,39,-17v1,7,-5,6,-9,5r0,57v1,14,-7,18,-18,15v-1,0,-1,-1,-1,-4","w":47},"~":{"d":"42,-30v-4,17,-35,-7,-35,10v-4,1,-5,-1,-5,-4v2,-13,20,-4,32,-5v3,0,4,-2,3,-6v4,-1,5,1,5,5","w":44},"\u00a2":{"d":"34,-47v-10,-4,-23,-2,-23,16v0,20,12,20,23,16v4,6,-2,6,-9,7r0,11r-5,1r0,-12v-8,-1,-15,-7,-15,-22v0,-16,6,-22,15,-24v1,-5,-2,-11,4,-11v4,0,1,8,2,11v5,1,10,2,8,7","w":39},"\u00a3":{"d":"3,-28v-2,-5,3,-5,8,-5v-5,-15,-2,-31,16,-30v8,1,15,0,13,5v-6,3,-26,-5,-24,12v0,5,0,8,1,13r17,0v2,9,-9,4,-16,5v2,9,2,17,-2,23v23,0,26,0,29,-1v2,2,1,6,-4,6r-38,0v-1,-5,2,-5,7,-5v3,-4,4,-14,2,-23r-9,0","w":46},"\u00a4":{"d":"9,-17v-6,-8,-5,-19,0,-27v-5,-5,-6,-6,-8,-7v5,-8,9,1,12,4v6,-5,17,-5,23,0v6,-5,7,-6,8,-8v7,5,-2,8,-4,12v5,6,5,20,0,26v6,8,9,7,4,11v-3,-1,-5,-5,-8,-7v-6,4,-19,5,-24,-1v-7,8,-7,10,-10,5v0,-4,5,-6,7,-8xm10,-30v0,8,5,15,14,15v10,0,14,-7,14,-15v0,-9,-4,-16,-14,-16v-9,0,-14,7,-14,16","w":48},"\u00a5":{"d":"22,-16r0,-5r-16,0v-1,-8,8,-4,14,-5r-17,-33v-1,-3,0,-4,4,-4v1,0,2,0,2,2r17,34r16,-34v0,-1,1,-2,5,-2v2,0,2,1,1,3r-17,34r14,0v2,7,-9,5,-16,5r0,5r16,0v2,4,-1,4,-5,4r-11,0r0,12r-7,0r0,-12r-16,0v-1,-7,10,-3,16,-4","w":50},"\u00a7":{"d":"34,-58v-5,-4,-22,-3,-20,8v0,13,25,12,25,29v0,5,-4,9,-6,11v9,9,1,27,-12,25v-8,-1,-14,0,-12,-7v7,3,22,5,22,-8v0,-13,-25,-13,-25,-30v0,-4,2,-9,5,-11v-11,-14,9,-31,23,-21v1,1,1,2,0,4xm14,-38v-6,14,3,17,16,25v9,-12,-5,-19,-16,-25","w":44},"\u00ab":{"d":"20,-9v-4,-6,-18,-10,-14,-20v5,-4,10,-11,16,-12v1,7,-8,10,-11,16v3,5,12,9,11,15v0,1,-1,1,-2,1xm36,-9v-4,-6,-20,-10,-14,-20v5,-4,10,-11,16,-12v0,7,-9,10,-12,16v4,5,11,9,12,15v-1,1,-2,1,-2,1"},"\u00bb":{"d":"25,-41v4,6,18,10,14,19r-14,13v-6,-4,6,-11,9,-16v-3,-5,-13,-9,-11,-16v0,0,1,-1,2,0xm9,-41v4,6,20,10,14,19r-14,13v0,0,-1,0,-2,-1v1,-6,9,-10,12,-15v-4,-5,-12,-9,-12,-16v1,0,2,-1,2,0"},"\u2018":{"d":"13,-71v-4,6,2,20,-6,21v-2,0,-3,-1,-3,-3v2,-13,0,-20,9,-18","w":15},"\u2019":{"d":"3,-52v5,-7,-4,-20,6,-20v1,0,2,0,2,2v-1,15,-1,20,-8,18","w":15},"\u201c":{"d":"13,-71v-4,6,2,20,-6,21v-2,0,-3,-1,-3,-3v2,-13,0,-20,9,-18xm24,-71v-4,6,2,20,-6,21v-6,-5,-2,-27,6,-21","w":26},"\u201d":{"d":"3,-52v5,-7,-4,-20,6,-20v1,0,2,0,2,2v-1,15,-1,20,-8,18xm14,-52v4,-7,-2,-19,6,-20v2,0,3,0,3,2v-2,15,-1,21,-9,18","w":26},"_":{"d":"48,12v0,5,-1,4,-4,5r-44,0v0,-5,1,-4,4,-5r44,0","w":48},"\u00ad":{"d":"5,-26v-1,-9,16,-3,24,-5v1,10,-16,3,-24,5","w":33},"\u2013":{"d":"48,-35v0,5,1,5,-4,6r-44,0v0,-4,0,-6,4,-6r44,0","w":48},"\u2014":{"d":"0,-29v0,-4,0,-6,4,-6r92,0v0,5,0,5,-5,6r-91,0","w":96},"\u00ae":{"d":"22,-36r0,-27v9,0,18,-1,17,8v0,4,-3,6,-6,7v5,9,6,10,7,11v-8,5,-6,-11,-14,-10r0,11r-4,0xm26,-60r0,9v9,3,11,-9,3,-9r-3,0xm10,-49v0,11,9,19,20,19v10,0,19,-8,19,-19v0,-11,-9,-19,-19,-19v-11,0,-20,8,-20,19xm6,-49v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24","w":59},"\u2122":{"d":"18,-36r-5,0r0,-24r-9,0v-1,-10,15,-3,23,-5v1,7,-3,4,-9,5r0,24xm49,-59v0,9,-3,15,-4,23r-6,0r-5,-23r-2,23v-3,0,-6,0,-5,-3r5,-24v0,-2,1,-2,4,-2v1,0,2,0,2,2r4,20r5,-21v0,-1,1,-1,4,-1v1,0,2,0,2,1r4,27v-1,1,-2,1,-5,1","w":64},"\u00a9":{"d":"5,-34v0,-19,12,-33,31,-33v20,0,32,14,32,33v0,18,-12,33,-32,33v-19,0,-31,-15,-31,-33xm10,-34v0,16,9,28,26,28v17,0,27,-12,27,-28v0,-16,-10,-29,-27,-29v-17,0,-26,13,-26,29xm26,-34v-1,-16,10,-18,20,-14v3,-6,-4,-6,-8,-7v-10,0,-17,6,-17,21v0,18,14,23,26,18v0,-1,1,-2,0,-4v-12,2,-21,3,-21,-14","w":72},"\u00b0":{"d":"4,-55v0,-6,5,-10,10,-10v6,0,11,4,11,10v0,6,-5,10,-11,10v-5,0,-10,-4,-10,-10xm9,-55v0,3,2,5,5,5v4,0,6,-2,6,-5v0,-3,-2,-6,-6,-6v-3,0,-5,3,-5,6","w":28},"\u00b9":{"d":"3,-59v-1,-5,8,-5,11,-7v2,0,3,1,3,3r0,35r-6,1r0,-33","w":25},"\u00b2":{"d":"6,-28v-6,-9,17,-20,15,-27v2,-10,-15,-1,-14,-8v5,-5,23,-3,20,7v0,8,-12,18,-18,24v16,0,17,0,20,-1v1,3,1,4,0,5r-23,0","w":34},"\u00b3":{"d":"12,-46r-1,-3v11,-1,12,-10,4,-12v-5,0,-10,3,-8,-2v4,-5,20,-4,18,6v0,5,-4,8,-7,9v6,0,9,3,9,8v1,13,-14,14,-22,10v0,0,-1,-1,0,-4v5,2,18,2,17,-6v0,-3,-2,-7,-10,-6","w":32},"\u00aa":{"d":"27,-34v-6,1,-4,-3,-5,-6v-2,7,-17,9,-18,-2v0,-8,8,-10,18,-9v3,-10,-7,-11,-14,-9v-1,-1,-1,-2,-1,-3v5,-3,20,-4,20,7r0,22xm13,-38v5,-1,10,-3,9,-10v-11,-2,-17,7,-9,10","w":34},"\u00ba":{"d":"30,-50v0,11,-4,16,-12,16v-8,0,-13,-5,-13,-16v0,-10,5,-15,13,-15v8,0,12,5,12,15xm26,-50v0,-7,-3,-11,-8,-11v-5,0,-8,4,-8,11v0,8,3,12,8,12v5,0,8,-4,8,-12","w":35},"\u00bc":{"d":"14,-60v-6,2,-14,-1,-3,-4v5,-2,8,-4,9,1r0,35r-6,1r0,-33xm58,-12r-9,0r11,-23v0,-1,0,-2,-2,-3v-2,-1,-3,-1,-3,1v-10,23,-11,19,-9,29r12,0v0,5,-1,10,6,8v-1,-3,-1,-5,-1,-8v7,0,7,0,7,-5r-7,0v1,-5,-1,-13,-4,-6xm57,-70r-36,74v-1,3,-4,3,-7,2r36,-74v1,-3,4,-4,7,-2","w":74},"\u00bd":{"d":"15,6r35,-74v2,-3,4,-4,7,-2r-35,74v-2,3,-5,3,-7,2xm20,-63r0,35r-6,1r0,-33v-6,2,-14,-1,-3,-4v5,-2,8,-4,9,1xm49,0v-6,-10,18,-20,16,-28v1,-9,-15,0,-15,-7v6,-5,22,-3,20,7v1,7,-11,18,-17,23r20,0v2,10,-15,3,-24,5","w":77},"\u00be":{"d":"13,-46r0,-3v9,-1,12,-11,3,-12v-5,0,-9,3,-8,-2v3,-4,20,-5,18,6v0,5,-3,8,-7,9v6,0,10,3,10,8v0,12,-14,14,-22,10v-1,0,-2,-1,-1,-4v5,2,19,2,18,-6v0,-3,-3,-7,-11,-6xm63,-12v-1,-5,2,-14,5,-8r0,7r6,0v2,6,0,4,-6,5v0,3,0,5,1,8v-5,1,-7,-1,-6,-8v-5,-1,-14,3,-13,-4v0,-3,1,-6,10,-25v0,-2,1,-2,3,-1v4,6,-4,10,-10,26r10,0xm19,6r36,-74v1,-3,4,-4,7,-2r-36,74v-1,3,-4,3,-7,2","w":78},"`":{"d":"19,-55v-5,2,-3,1,-15,-8v7,-6,6,-4,15,8","w":23},"\u00b4":{"d":"19,-63v-11,9,-8,10,-15,8v10,-12,8,-14,15,-8","w":23},"\u00a8":{"d":"4,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4xm20,-61v0,-2,2,-3,5,-3v3,1,2,8,-2,7v-2,0,-3,-1,-3,-4","w":31},"\u00af":{"d":"24,-61v1,10,-12,3,-20,5v0,-9,13,-4,20,-5","w":28},"\u00b8":{"d":"9,4r5,0v1,7,-2,12,-9,11v0,-1,-1,-1,-1,-3v6,-2,6,-1,5,-8","w":18},"\u00a6":{"d":"14,17r-5,1r0,-32r5,0r0,31xm9,-33r0,-29v0,-2,1,-3,4,-3v3,8,0,22,1,32r-5,0","w":22},"^":{"d":"21,-56r-13,22v-5,0,-4,-2,-3,-5v12,-24,13,-26,16,-26v3,0,4,2,16,26v1,3,2,5,-3,5","w":42},"\u00ac":{"d":"2,-23v0,-5,-1,-5,4,-6r35,0r0,14v-6,1,-5,-3,-5,-8r-34,0","w":44},"\u00b1":{"d":"19,-31r0,-17v10,-2,4,10,6,17r17,0v2,8,-10,4,-17,5r0,16v-9,2,-5,-9,-6,-16r-17,0v-2,-9,11,-3,17,-5xm42,-5v-13,1,-28,-1,-39,1v-1,1,-1,2,-1,4v13,-1,29,1,40,-1v0,-1,1,-2,0,-4","w":44},"\u00d7":{"d":"22,-31r14,-13v6,8,-7,12,-10,17r13,14v-8,6,-12,-7,-17,-10r-13,13v-8,-6,7,-11,9,-17r-12,-13v7,-9,11,6,16,9","w":44},"\u00f7":{"d":"3,-29r39,0v1,4,0,4,-3,5r-37,0v0,-3,0,-4,1,-5xm19,-13v0,-2,2,-4,5,-4v3,1,2,9,-2,8v-2,0,-3,-1,-3,-4xm19,-42v0,-2,2,-3,5,-3v4,1,2,9,-2,7v-2,0,-3,0,-3,-4","w":44},"\u00b5":{"d":"13,-47v5,11,-6,43,11,42v5,0,8,-3,13,-8r0,-31v0,-2,2,-3,5,-3v3,9,-1,40,2,47v-6,1,-8,-3,-6,-9v-8,8,-15,14,-24,7r0,25r-6,0r0,-67v0,-2,2,-3,5,-3","w":52}}});Cufon.registerFont({"w":50,"face":{"font-family":"Haptic","font-weight":500,"font-stretch":"normal","units-per-em":"96","panose-1":"2 11 5 3 4 5 2 2 2 3","ascent":"70","descent":"-26","bbox":"-3 -89.5745 96 24","underline-thickness":"4.8","underline-position":"-4.8","stemh":"5","stemv":"6","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":19},"\u00a0":{"w":19},"!":{"d":"15,-68v2,0,2,1,2,2r0,51r-7,1v0,0,-1,-38,-1,-51v0,-2,1,-3,6,-3xm9,-5v0,-3,2,-4,6,-4v2,0,3,0,3,2v2,9,-9,10,-9,2","w":26},"\"":{"d":"13,-51r-8,1v1,-8,-6,-22,5,-22v6,2,2,14,3,21xm28,-51r-8,1v1,-8,-6,-22,5,-22v6,2,2,14,3,21","w":32},"#":{"d":"5,-39v-2,-10,5,-6,12,-7v2,-7,-1,-23,10,-18v-1,1,-1,2,-3,18r13,0v2,-7,-1,-23,10,-18v0,1,-1,2,-3,18r11,0v1,9,-4,6,-12,7r-1,12r11,0v2,9,-6,5,-12,6r-2,19v0,4,-5,1,-8,2v1,-1,1,-3,3,-21r-13,0r-2,19v0,3,-4,2,-7,2v0,-1,0,-3,2,-21r-11,0v-1,-8,5,-6,11,-6r2,-12r-11,0xm35,-27r1,-12r-12,0r-2,12r13,0","w":58},"$":{"d":"39,-52v-6,-2,-24,-5,-24,6v0,14,29,7,29,29v0,10,-6,16,-16,17r0,11r-7,0r0,-11v-9,-1,-19,0,-14,-10v8,4,28,6,27,-6v0,-16,-28,-8,-28,-29v0,-9,6,-15,15,-16v0,-6,-2,-11,5,-11v4,0,1,7,2,11v8,2,16,2,11,9","w":49},"%":{"d":"35,-47v0,13,-6,19,-15,19v-9,0,-15,-6,-15,-19v0,-13,6,-19,15,-19v9,0,15,6,15,19xm28,-47v0,-8,-3,-13,-8,-13v-5,0,-8,5,-8,13v0,8,3,13,8,13v5,0,8,-5,8,-13xm79,-18v0,13,-6,19,-15,19v-9,0,-16,-6,-16,-19v0,-14,7,-19,16,-19v9,0,15,5,15,19xm71,-18v0,-8,-2,-13,-7,-13v-6,0,-8,5,-8,13v0,7,2,12,8,12v5,0,7,-5,7,-12xm19,6r36,-74v1,-4,6,-4,9,-2r-35,74v-2,4,-6,3,-10,2","w":83},"&":{"d":"49,-14v5,6,6,8,16,7v2,7,0,7,-6,7v-7,0,-9,-2,-14,-7v-10,12,-40,9,-40,-12v0,-11,7,-16,13,-19v-11,-10,-13,-31,8,-31v8,0,16,4,10,8v-5,-2,-20,-1,-17,7v0,9,19,27,24,34v2,-6,3,-15,3,-27v6,-1,7,0,7,3v0,12,0,20,-4,30xm14,-19v0,15,19,16,26,6r-17,-20v-7,3,-9,8,-9,14","w":64},"'":{"d":"13,-51r-8,1v1,-8,-6,-22,5,-22v6,2,2,14,3,21","w":17},"(":{"d":"18,-77v1,-1,3,-1,7,0v0,0,-11,20,-11,47v0,27,11,47,11,47v-4,1,-6,1,-7,0v-2,-2,-13,-19,-13,-47v0,-28,11,-45,13,-47","w":27},")":{"d":"9,-77v2,2,13,19,13,47v0,28,-11,45,-13,47v-1,1,-2,1,-7,0v0,0,11,-20,11,-47v0,-27,-11,-47,-11,-47v5,-1,6,-1,7,0","w":27},"*":{"d":"2,-62v3,-9,9,0,12,2r0,-12v9,-1,5,6,5,12r10,-7v6,8,-3,7,-7,10r10,6v-2,9,-9,0,-13,-1r1,11v-10,1,-5,-5,-5,-11r-10,6v-6,-8,3,-7,7,-10","w":33},"+":{"d":"27,-5v-13,2,-6,-10,-8,-18r-16,1v-4,-13,8,-6,16,-7r0,-18v12,-3,7,9,7,18r17,-1v3,12,-8,7,-17,7","w":45},",":{"d":"4,12v5,-8,-3,-23,8,-22v2,0,3,0,3,3v-2,16,0,23,-11,19","w":21},"-":{"d":"30,-32v2,13,-16,5,-25,7v-3,-14,16,-4,25,-7","w":34},".":{"d":"6,-6v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6","w":21},"\/":{"d":"36,-67r-24,72v0,5,-6,2,-9,2v2,-2,2,-4,24,-71v1,-4,5,-3,9,-3","w":37},"0":{"d":"2,-31v0,-22,8,-32,23,-32v14,0,22,10,22,32v0,22,-8,32,-22,32v-15,0,-23,-10,-23,-32xm11,-31v0,17,5,25,14,25v9,0,13,-8,13,-25v0,-17,-4,-25,-13,-25v-9,0,-14,8,-14,25","w":49},"1":{"d":"9,-53v-5,-9,12,-8,17,-10v3,0,4,1,4,4r0,52r13,0v-1,8,1,6,-5,7r-30,0v-1,-12,-1,-5,13,-7r0,-48","w":49},"2":{"d":"24,-63v24,1,20,24,7,38r-17,18v18,0,27,0,30,-1v0,5,1,8,-5,8r-32,0v-2,-12,-2,-6,15,-27v8,-9,11,-14,11,-20v3,-12,-18,-9,-22,-6v-1,0,-4,-3,-2,-5v1,-1,7,-5,15,-5","w":49},"3":{"d":"16,-30r-1,-6v10,-2,16,-6,16,-13v1,-12,-18,-3,-22,-6v-2,-6,6,-8,16,-8v23,-1,19,25,1,28v10,0,17,5,17,16v0,19,-25,22,-37,16v-1,-1,-1,-2,0,-5v8,1,31,3,28,-11v0,-8,-5,-12,-18,-11","w":49},"4":{"d":"12,-20r15,0v2,-7,-2,-17,6,-18v6,1,2,12,3,18v3,0,6,0,10,-1v0,11,-1,7,-10,8v0,4,0,9,1,13v-9,2,-11,-4,-10,-13v-8,-1,-23,4,-23,-5v0,-4,1,-5,19,-45v2,-3,11,3,9,4","w":49},"5":{"d":"10,-32v2,-9,-6,-31,4,-31r26,0v2,3,1,8,-4,7r-18,0r0,17v15,-2,26,3,26,18v0,20,-24,25,-37,18v-1,-1,-1,-2,0,-5v9,3,28,3,28,-12v0,-12,-9,-15,-25,-12","w":49},"6":{"d":"13,-32v8,-13,32,-10,32,11v0,14,-8,21,-20,21v-13,0,-20,-7,-20,-24v0,-22,13,-47,38,-37v1,0,1,1,1,3v-3,5,-3,1,-12,1v-13,0,-20,15,-19,25xm36,-20v0,-9,-4,-13,-10,-13v-7,0,-12,5,-12,13v0,19,22,20,22,0","w":49},"7":{"d":"43,-59v2,2,-27,63,-25,59v-6,0,-8,-1,-8,-3v0,-3,1,-4,24,-54r-25,1v-2,0,-3,-1,-3,-4v0,-2,1,-3,3,-3r32,0v1,0,2,2,2,4","w":49},"8":{"d":"25,-6v6,0,11,-4,11,-10v0,-6,-5,-10,-12,-13v-12,4,-15,22,1,23xm25,-63v22,0,22,25,6,29v19,6,19,35,-6,35v-26,0,-24,-28,-7,-33v-16,-5,-17,-31,7,-31xm25,-57v-13,1,-13,18,0,21v10,-4,13,-20,0,-21","w":49},"9":{"d":"37,-31v-8,14,-33,10,-33,-11v0,-14,8,-21,20,-21v13,0,20,7,20,24v0,22,-13,47,-38,37v-1,-1,-1,-3,0,-6v17,7,31,-6,31,-23xm13,-43v0,9,4,13,11,13v6,0,11,-5,11,-13v-1,-19,-21,-20,-22,0","w":49},":":{"d":"6,-6v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6xm6,-34v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6","w":21},";":{"d":"4,12v5,-8,-3,-23,8,-22v2,0,3,0,3,3v-2,16,0,23,-11,19xm6,-34v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,7,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":21},"<":{"d":"32,1r-27,-22v0,-4,0,-6,2,-8r25,-20v1,-1,3,-1,5,1v1,3,2,4,0,5r-24,19r24,18v3,3,-2,10,-5,7","w":45},"=":{"d":"6,-36v9,-2,23,0,34,-1v2,15,-23,4,-35,7v0,-4,0,-5,1,-6xm40,-20v0,6,1,6,-4,7r-31,0v0,-7,0,-7,5,-7r30,0","w":45},">":{"d":"33,-24r-25,-19v-1,-1,-1,-2,1,-5v2,-2,3,-2,4,-1r27,22v1,4,1,5,-1,7r-25,21v-2,1,-3,1,-5,-2v-2,-2,-2,-4,-1,-5","w":45},"?":{"d":"13,-14v-6,-17,11,-28,12,-39v1,-15,-22,0,-20,-11v6,-7,33,-5,29,11v0,14,-19,20,-14,38xm12,-5v0,-3,2,-4,7,-4v1,0,3,0,3,2v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":38},"@":{"d":"66,-44r-6,35v10,-1,18,-9,18,-26v0,-15,-9,-23,-25,-23v-21,0,-38,13,-38,40v-1,30,24,28,43,26v3,10,-4,8,-16,8v-17,0,-35,-6,-35,-34v0,-32,20,-47,46,-47v20,0,33,10,33,29v0,21,-10,33,-31,33v-3,0,-3,-1,-3,-2v0,-3,3,-12,3,-12v-5,10,-10,14,-16,14v-7,0,-12,-4,-12,-15v-1,-20,15,-32,32,-25v0,-2,2,-2,5,-2v2,0,2,0,2,1xm58,-38v-14,-5,-23,8,-22,20v0,6,2,9,6,9v8,1,12,-18,16,-29","w":92},"A":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0","w":57},"\u00c0":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm34,-73v-8,6,-2,4,-19,-3v9,-9,4,-6,19,3","w":57},"\u00c1":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm24,-73v13,-9,11,-12,18,-3v-16,7,-11,9,-18,3","w":57},"\u00c2":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm18,-73v8,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":57},"\u00c3":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm24,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v1,0,2,-2,1,-4v5,-1,6,1,6,4v1,11,-16,4,-17,4","w":57},"\u00c4":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm16,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm36,-70v-3,-1,-6,-11,3,-10v5,2,4,12,-3,10","w":57},"\u00c5":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm37,-77v0,7,-3,9,-8,9v-5,0,-9,-2,-9,-9v0,-6,4,-9,9,-9v5,0,8,3,8,9xm32,-77v0,-3,-1,-4,-3,-4v-2,0,-4,1,-4,4v0,3,2,4,4,4v2,0,3,-1,3,-4","w":57},"\u0100":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm19,-71v-2,-12,12,-4,19,-6v1,7,0,5,-5,6r-14,0","w":57},"\u0102":{"d":"22,-62v0,-2,11,-5,13,-1v6,21,16,41,20,63r-8,0r-6,-17r-25,0r-6,17v-4,0,-9,1,-8,-4xm39,-24r-11,-34r-10,34r21,0xm22,-81v2,7,11,7,13,0v4,0,5,1,5,3v0,5,-5,8,-11,8v-7,0,-12,-3,-12,-8v0,-2,1,-3,5,-3","w":57},"\u0104":{"d":"41,-17r-25,0r-6,17v-9,1,-7,1,-8,-4r20,-58v0,-2,11,-5,13,-1v6,21,16,41,20,63v-7,7,-10,9,-3,13v3,-1,6,0,4,3v-4,4,-15,2,-14,-6v-1,-4,6,-8,5,-10xm39,-24r-11,-34r-10,34r21,0","w":57},"\u00c6":{"d":"47,-30r0,23v20,0,25,0,28,-1v2,4,1,9,-4,8r-33,0r1,-17r-24,0r-10,18v-7,-2,-8,0,-7,-6r35,-57v1,-3,3,-3,6,-3r36,0v3,13,-17,5,-27,7r-1,21r25,0r0,7r-25,0xm39,-24r0,-34r-20,34r20,0","w":81},"B":{"d":"8,-64v16,-3,42,-2,40,15v0,8,-6,13,-11,14v5,1,12,6,12,16v1,22,-26,20,-41,18v1,-4,1,-51,0,-63xm17,-7v0,0,24,2,24,-12v0,-13,-12,-12,-24,-12r0,24xm17,-37v11,1,22,-1,22,-11v0,-10,-10,-10,-21,-10v0,0,0,2,-1,21","w":54},"C":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26","w":52},"\u0106":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm27,-73v13,-9,10,-12,18,-3v-15,7,-11,9,-18,3","w":52},"\u0108":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm20,-73v9,-10,14,-10,22,0v-1,6,-8,0,-11,-1v-4,1,-9,7,-11,1","w":52},"\u010a":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm30,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":52},"\u010c":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm44,-78v-15,12,-10,11,-24,0v7,-5,12,6,18,-1v2,-1,3,-1,6,1","w":52},"\u00c7":{"d":"14,-31v0,22,15,26,33,23v3,9,-5,9,-14,9v-17,0,-28,-10,-28,-32v0,-30,20,-41,42,-32v1,1,1,2,-1,6v-17,-3,-32,2,-32,26xm24,15v0,-7,7,-2,5,-11v5,-1,6,1,6,5v0,6,-7,9,-11,6","w":52},"D":{"d":"8,-1v1,-7,1,-50,0,-63v25,-4,48,0,48,31v0,31,-21,36,-48,32xm17,-7v20,1,30,-3,30,-26v0,-23,-11,-26,-29,-25v-1,6,-1,42,-1,51","w":61},"\u010e":{"d":"8,-1v1,-7,1,-50,0,-63v25,-4,48,0,48,31v0,31,-21,36,-48,32xm17,-7v20,1,30,-3,30,-26v0,-23,-11,-26,-29,-25v-1,6,-1,42,-1,51xm41,-78v-14,12,-9,11,-24,0v7,-5,12,6,18,-1v2,-1,4,-1,6,1","w":61},"\u0110":{"d":"10,-64v24,-4,48,1,48,31v0,30,-20,36,-48,32r0,-29r-9,0v-2,-9,3,-7,9,-7r0,-27xm19,-7v19,1,29,-3,29,-26v0,-23,-11,-26,-29,-25r0,21r10,0v1,9,-3,7,-10,7r0,23","w":62},"\u00d0":{"d":"9,-64v24,-4,47,1,47,31v0,31,-20,36,-48,32v0,0,1,-15,1,-29r-9,0v-2,-9,3,-7,9,-7v0,-8,-1,-21,0,-27xm28,-37v1,9,-4,7,-11,7r0,23v20,1,30,-3,30,-26v0,-23,-11,-26,-29,-25v0,3,-1,12,-1,21r11,0","w":61},"E":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0","w":51},"\u00c8":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm34,-73v-7,6,-3,4,-18,-3v8,-9,5,-6,18,3","w":51},"\u00c9":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm21,-73v15,-9,11,-12,19,-3v-17,7,-11,8,-19,3","w":51},"\u00ca":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm17,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":51},"\u00cb":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm14,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm31,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":51},"\u0112":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm19,-77r19,0v2,11,-11,4,-19,6v-1,-4,0,-5,0,-6","w":51},"\u0114":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm21,-81v2,7,11,7,14,0v3,0,4,1,4,3v0,5,-5,8,-11,8v-7,0,-12,-3,-12,-8v0,-2,1,-3,5,-3","w":51},"\u0116":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm27,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":51},"\u0118":{"d":"46,-8v2,11,-15,15,-5,21v3,-1,6,0,4,3v-4,4,-15,1,-14,-6v0,-4,3,-7,7,-10r-30,0v1,-8,1,-57,0,-65r37,0v1,8,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0r0,23v21,0,25,0,29,-1","w":51},"\u011a":{"d":"17,-30r0,23v19,0,25,0,29,-1v0,5,1,8,-5,8r-33,0v1,-7,1,-58,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,21r25,0r0,7r-25,0xm40,-78v-14,11,-9,12,-23,0v7,-5,11,6,18,-1v1,-1,3,-1,5,1","w":51},"F":{"d":"17,-29r0,29r-9,0v1,-7,1,-59,0,-65r37,0v1,7,1,6,-4,7r-23,0r-1,22r25,0r0,7r-25,0","w":49},"G":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5","w":59},"\u011c":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm23,-73v8,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":59},"\u011e":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm26,-81v2,7,11,7,14,0v3,0,4,1,4,3v0,5,-5,8,-11,8v-7,0,-11,-3,-11,-8v0,-2,0,-3,4,-3","w":59},"\u0120":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm28,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":59},"\u0122":{"d":"50,-57v-20,-3,-37,1,-36,26v0,20,10,25,29,24r0,-19r-9,0v0,-12,-2,-6,18,-8r0,33v-23,5,-47,0,-47,-30v0,-30,23,-42,45,-31v1,0,1,1,0,5xm26,19v5,-5,-2,-15,7,-15v6,4,2,23,-7,15","w":59},"H":{"d":"47,-30r-30,0r0,30r-9,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,26r30,0v3,-15,-9,-28,6,-28v2,0,3,0,3,2r-1,63r-9,0v0,0,1,-15,1,-30","w":64},"\u0124":{"d":"47,-30r-30,0r0,30r-9,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,26r30,0v3,-15,-9,-28,6,-28v2,0,3,0,3,2r-1,63r-9,0v0,0,1,-15,1,-30xm22,-73v8,-10,13,-10,21,0v-1,7,-7,-1,-11,-1v-3,1,-9,8,-10,1","w":64},"\u0126":{"d":"1,-46v-1,-6,2,-6,7,-6v1,-7,-3,-14,7,-13v5,1,1,9,2,13r29,0v1,-7,-3,-14,7,-13v6,1,1,4,2,13r7,0v2,6,-2,6,-7,6r0,46r-9,0r0,-29r-29,0r0,29r-9,0r0,-46r-7,0xm17,-36r29,0r0,-10r-29,0r0,10","w":63},"I":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0","w":25},"\u00cc":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm19,-73v-8,6,-2,4,-19,-3v8,-9,5,-6,19,3","w":25},"\u00cd":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm8,-73v15,-9,11,-12,19,-3v-16,7,-11,9,-19,3","w":25},"\u00ce":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm2,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":25},"\u00cf":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm1,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm17,-76v0,-2,2,-4,7,-4v4,1,2,13,-3,10v-3,0,-4,-1,-4,-6","w":25},"\u0128":{"d":"12,0r0,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2r0,63r-9,0xm12,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v1,0,2,-2,1,-4v5,-1,6,1,6,4v1,11,-16,4,-17,4","w":33},"\u012a":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm4,-71v-2,-12,12,-4,19,-6v3,10,-10,4,-19,6","w":25},"\u012c":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm6,-81v3,7,11,7,14,0v4,0,4,1,4,3v0,5,-4,8,-11,8v-6,0,-11,-3,-11,-8v0,-2,1,-3,4,-3","w":25},"\u012e":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63v-6,6,-9,10,-2,13v1,0,2,0,4,-1v1,5,-1,6,-6,6v-11,0,-10,-14,-2,-18r-3,0","w":25},"\u0130":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm12,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":25},"\u0132":{"d":"8,0v1,-4,1,-51,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,63r-9,0xm27,-7v5,2,12,2,11,-7r0,-48v0,-2,1,-3,6,-3v2,0,3,0,3,2r0,50v2,11,-11,15,-20,12v-1,-1,-1,-2,0,-6","w":55},"J":{"d":"1,-7v5,2,12,2,11,-7r0,-48v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,50v2,11,-11,15,-20,12v-1,-1,-1,-2,0,-6","w":29},"\u0134":{"d":"1,-7v5,2,12,2,11,-7r0,-48v0,-2,2,-3,7,-3v2,0,3,0,3,2r-1,50v2,11,-11,15,-20,12v-1,-1,-1,-2,0,-6xm6,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":29},"K":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2v1,15,-2,31,-1,32r27,-33v1,-2,2,-2,6,-1v3,2,3,3,2,5r-20,23v19,30,21,32,23,34v-3,5,-8,5,-11,1r-18,-29r-9,10r0,21r-9,0","w":57},"\u0136":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,2,-3,7,-3v2,0,3,0,3,2v1,15,-2,31,-1,32r27,-33v1,-2,2,-2,6,-1v3,2,3,3,2,5r-20,23v19,30,21,32,23,34v-3,5,-8,5,-11,1r-18,-29r-9,10r0,21r-9,0xm25,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":57},"L":{"d":"17,-7v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2","w":45},"\u0139":{"d":"17,-7v18,0,24,0,27,-1v0,0,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2xm9,-73v13,-9,10,-12,18,-3v-16,7,-11,9,-18,3","w":45},"\u013b":{"d":"17,-7v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2xm21,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":45},"\u013d":{"d":"36,-67v-6,14,-3,16,-13,14v6,-7,3,-16,13,-14xm18,-7v17,0,23,0,26,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2r0,56","w":45},"\u013f":{"d":"17,-7v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,-5,1,-24,1,-40v0,-13,-8,-25,6,-25v2,0,3,0,3,2xm27,-34v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":46},"\u0141":{"d":"18,-36r11,-10v7,10,-8,11,-12,17r0,22v18,0,24,0,27,-1v2,4,1,9,-4,8r-32,0v0,0,1,-10,1,-22r-8,6v-6,-7,5,-10,8,-14r0,-32v0,-2,1,-3,6,-3v2,0,3,0,3,2r0,27","w":45},"M":{"d":"61,-57r-15,57r-10,1v-4,-20,-12,-36,-14,-58r-10,57v-9,1,-7,1,-8,-5r11,-57v1,-3,2,-3,8,-3v3,0,4,0,5,2v4,18,11,34,13,55r13,-54v1,-3,2,-3,9,-3v3,0,4,0,4,2r11,62v-1,1,-3,2,-9,1","w":82},"N":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0","w":63},"\u00d1":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm46,-77v-1,15,-20,-4,-20,8v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v2,0,2,-2,1,-4v5,-1,7,1,7,4","w":63},"\u0143":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm26,-73v13,-9,10,-12,18,-3v-16,7,-11,9,-18,3","w":63},"\u0145":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm27,19v6,-5,-3,-15,7,-15v6,4,2,24,-7,15","w":63},"\u0147":{"d":"8,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,51v-2,-14,0,-33,-1,-49v0,-2,1,-3,6,-3v8,1,2,21,2,34r0,31r-9,0r-30,-49v2,12,1,34,1,49r-9,0xm44,-78v-14,12,-9,11,-23,0v7,-5,12,6,18,-1v1,-1,3,-1,5,1","w":63},"\u014a":{"d":"55,0v2,14,-9,18,-17,19v-2,0,-2,-1,-3,-4v6,-3,13,-4,12,-15r-31,-49v2,12,1,34,1,49r-9,0v1,-3,1,-52,0,-62v0,-2,3,-3,7,-3v1,0,2,0,2,1r31,50v-2,-14,-1,-32,-1,-48v0,-2,1,-3,6,-3v2,0,3,0,3,2","w":63},"O":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26","w":62},"\u00d2":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm37,-73v-6,6,-2,4,-18,-3v8,-9,5,-6,18,3","w":62},"\u00d3":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm27,-73v14,-9,10,-12,19,-3v-16,7,-11,9,-19,3","w":62},"\u00d4":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm21,-73v8,-10,13,-10,21,0v-1,7,-7,0,-10,-1v-3,1,-10,7,-11,1","w":62},"\u00d5":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm27,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,13,-3,17,-3v2,0,3,-2,2,-4v5,-1,6,1,6,4v1,11,-16,4,-17,4","w":62},"\u00d6":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm22,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10xm35,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":62},"\u00d8":{"d":"50,-59v18,21,4,76,-31,57v-2,2,-3,9,-7,5v-5,-2,0,-6,1,-9v-5,-5,-8,-14,-8,-26v-1,-29,18,-40,39,-31v2,-2,3,-9,7,-5v5,2,0,6,-1,9xm31,-58v-16,-4,-22,31,-13,44r22,-42v-2,-2,-5,-2,-9,-2xm45,-50r-22,41v13,9,27,-2,26,-23v0,-8,-1,-14,-4,-18","w":62},"\u014c":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm21,-69v-1,-12,12,-5,20,-7v2,12,-11,5,-20,7","w":62},"\u014e":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm25,-81v2,7,11,7,13,0v4,0,5,1,5,3v0,5,-5,8,-11,8v-7,0,-12,-3,-12,-8v0,-2,1,-3,5,-3","w":62},"\u0150":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,22,-10,33,-27,33v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26xm34,-80v-11,11,-9,12,-16,8v10,-13,6,-13,16,-8xm51,-80v-12,12,-9,12,-17,8v12,-13,7,-13,17,-8","w":62},"\u0152":{"d":"5,-32v0,-29,22,-43,39,-28r0,-5r37,0v0,5,0,6,-1,6v-1,1,-2,1,-27,1r0,21r25,0r0,7r-25,0r0,23v20,0,24,0,28,-1v0,5,0,8,-5,8r-32,0r0,-4v-16,13,-39,0,-39,-28xm14,-32v0,25,20,34,30,18r0,-36v-10,-15,-30,-8,-30,18","w":87},"P":{"d":"8,0v1,-5,1,-54,0,-64v17,-2,40,-3,39,19v-1,19,-14,22,-30,19r0,26r-9,0xm17,-32v12,0,21,0,21,-13v0,-13,-9,-13,-20,-13v-1,6,-1,17,-1,26"},"Q":{"d":"5,-32v0,-23,10,-34,26,-34v17,0,27,11,27,34v0,19,-8,29,-18,32v5,7,7,8,9,10v-9,9,-8,2,-18,-9v-16,0,-26,-11,-26,-33xm14,-32v0,17,7,26,17,26v11,0,18,-9,18,-26v0,-18,-7,-26,-18,-26v-10,0,-17,8,-17,26","w":62},"R":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24","w":55},"\u0154":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24xm22,-73v13,-9,10,-12,18,-3v-16,7,-11,9,-18,3","w":55},"\u0156":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24xm22,19v6,-5,-3,-15,7,-15v6,4,2,24,-7,15","w":55},"\u0158":{"d":"8,0v1,-5,1,-53,0,-64v17,-2,41,-3,40,18v0,11,-7,17,-14,17v12,22,14,24,16,27v-15,9,-18,-17,-25,-25r-8,0r0,27r-9,0xm17,-34v12,0,22,0,22,-12v0,-12,-10,-12,-21,-12v-1,5,-1,16,-1,24xm39,-78v-15,12,-10,11,-24,0v7,-5,12,6,18,-1v2,-1,4,-1,6,1","w":55},"S":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5"},"\u015a":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm19,-73v15,-9,11,-12,19,-3v-17,7,-11,8,-19,3"},"\u015c":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm15,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1"},"\u015e":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm23,4r6,0v2,8,-3,15,-10,11v-4,-5,7,-3,4,-11"},"\u0160":{"d":"41,-56v-6,-3,-26,-6,-26,7v0,15,30,9,30,31v5,19,-30,21,-39,14v-1,-1,-1,-2,1,-6v9,4,29,6,29,-7v0,-16,-30,-9,-30,-31v0,-20,27,-21,36,-13v1,1,1,2,-1,5xm38,-78v-15,12,-10,11,-24,0v7,-5,12,6,18,-1v2,-1,3,-1,6,1"},"T":{"d":"21,-58r-20,0v1,-7,-1,-6,5,-7r44,0v2,13,-10,5,-20,7r0,58r-9,0r0,-58"},"\u0162":{"d":"21,-58r-20,0v1,-7,-1,-6,5,-7r44,0v2,13,-10,5,-20,7r0,58r-9,0r0,-58xm20,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15"},"\u0164":{"d":"21,-58r-20,0v1,-7,-1,-6,5,-7r44,0v2,13,-10,5,-20,7r0,58r-9,0r0,-58xm37,-78v-14,12,-9,11,-23,0v7,-5,12,6,18,-1v1,-1,3,-1,5,1"},"\u0166":{"d":"21,-36r0,-22r-20,0v0,-6,-1,-7,4,-7r45,0v2,13,-10,5,-20,7r0,22r13,0v2,8,-6,6,-13,6r0,30r-9,0r0,-30r-13,0v-4,-9,7,-5,13,-6"},"U":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56","w":63},"\u00d9":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm37,-73v-6,6,-2,4,-18,-3v8,-9,5,-6,18,3","w":63},"\u00da":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm27,-73v14,-9,10,-12,19,-3v-16,7,-11,9,-19,3","w":63},"\u00db":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm22,-73v8,-10,13,-10,21,0v-1,6,-8,0,-11,-1v-3,1,-9,8,-10,1","w":63},"\u00dc":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm19,-76v0,-2,2,-4,7,-4v5,2,3,12,-3,10v-3,0,-4,-1,-4,-6xm36,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":63},"\u0168":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm28,-73v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-12,15,-3,18,-3v1,0,2,-2,1,-4v5,-1,7,1,7,4v0,11,-12,4,-18,4","w":63},"\u016a":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm23,-71v-3,-11,12,-4,19,-6v2,11,-11,4,-19,6","w":63},"\u016c":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm25,-81v2,7,12,7,14,0v3,0,4,1,4,3v0,5,-4,8,-11,8v-7,0,-11,-3,-11,-8v0,-2,1,-3,4,-3","w":63},"\u016e":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm40,-77v0,7,-3,9,-9,9v-4,0,-8,-2,-8,-9v0,-6,4,-9,8,-9v5,0,9,3,9,9xm35,-77v0,-3,-1,-4,-4,-4v-1,0,-3,1,-3,4v0,6,8,5,7,0","w":63},"\u0170":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-1,28,9,63,-24,63v-31,0,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56xm35,-80v-11,11,-9,12,-16,8v10,-13,6,-13,16,-8xm52,-80v-12,12,-9,12,-17,8v12,-13,7,-13,17,-8","w":63},"\u0172":{"d":"31,-7v25,0,12,-34,15,-55v0,-2,1,-3,6,-3v2,0,3,0,3,2v-2,26,8,61,-18,63v-6,6,-9,10,-2,13v3,-1,6,0,4,3v-4,4,-15,2,-14,-6v0,-4,3,-7,6,-10v-31,2,-22,-35,-23,-62v0,-2,1,-3,6,-3v2,0,3,0,3,2v3,21,-9,56,14,56","w":63},"V":{"d":"26,-9r16,-53v1,-2,2,-3,7,-3v2,0,3,1,2,4r-20,61v0,0,-7,1,-10,0r-19,-61v-1,-3,0,-4,6,-4v2,0,3,0,4,3","w":53},"W":{"d":"70,-62v1,-2,2,-3,7,-3v3,0,3,1,2,3r-17,62v0,0,-7,1,-11,0v0,0,-12,-48,-12,-52v0,4,-11,52,-11,52v0,0,-7,1,-11,0r-15,-61v-1,-3,0,-4,6,-4v2,0,3,0,4,3r11,53r11,-52v1,-3,2,-4,7,-4v3,0,4,0,4,2r12,54","w":81},"\u0174":{"d":"70,-62v1,-2,2,-3,7,-3v3,0,3,1,2,3r-17,62v0,0,-7,1,-11,0v0,0,-12,-48,-12,-52v0,4,-11,52,-11,52v0,0,-7,1,-11,0r-15,-61v-1,-3,0,-4,6,-4v2,0,3,0,4,3r11,53r11,-52v1,-3,2,-4,7,-4v3,0,4,0,4,2r12,54xm29,-73v9,-10,13,-10,22,0v-1,6,-8,0,-11,-1v-3,1,-10,7,-11,1","w":81},"X":{"d":"27,-40r14,-24v1,-2,3,-2,7,-1v3,1,3,2,1,5r-17,27v15,26,16,28,19,30v-5,4,-7,6,-11,1r-13,-24r-15,25v-2,3,-11,1,-8,-4r18,-28v-16,-25,-17,-27,-19,-29v14,-10,17,16,24,22","w":53},"Y":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22","w":51},"\u00dd":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22xm20,-73v13,-9,11,-12,18,-3v-15,7,-11,9,-18,3","w":51},"\u0176":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22xm16,-73v8,-10,13,-10,21,0v-1,6,-8,0,-11,-1v-3,1,-9,8,-10,1","w":51},"\u0178":{"d":"21,-22r-19,-38v-1,-4,0,-5,6,-5v2,0,3,0,4,3r14,32r14,-32v1,-3,2,-3,7,-3v2,0,3,1,2,3r-19,40r0,22r-9,0r0,-22xm13,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6xm30,-76v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":51},"Z":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53","w":51},"\u0179":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53xm20,-73v13,-9,10,-12,18,-3v-15,7,-11,9,-18,3","w":51},"\u017b":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53xm25,-70v-4,-1,-5,-11,3,-10v5,2,4,12,-3,10","w":51},"\u017d":{"d":"37,-58r-30,0v-1,0,-2,-1,-2,-4v0,-3,1,-3,3,-3r37,0v3,16,0,7,-31,58v23,0,28,0,32,-1v0,5,1,8,-5,8r-34,0v-2,-1,-2,-3,-2,-5v0,-5,1,-7,32,-53xm38,-78v-14,12,-9,11,-23,0v7,-5,12,6,18,-1v1,-1,3,-1,5,1","w":51},"a":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6","w":47},"\u00e0":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm30,-55v-8,4,-3,2,-17,-9v10,-6,7,-4,17,9","w":47},"\u00e1":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm35,-64v-13,12,-9,13,-17,9v10,-13,7,-15,17,-9","w":47},"\u00e2":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm13,-56v6,-12,15,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":47},"\u00e3":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm18,-57v-2,0,-2,1,-2,4v-5,1,-6,-1,-6,-5v1,-11,12,-4,18,-4v2,0,2,-1,2,-4v5,-1,6,1,6,5v0,11,-13,4,-18,4","w":47},"\u00e4":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm11,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6xm27,-61v0,-3,2,-4,7,-4v4,2,2,12,-3,10v-3,0,-4,-1,-4,-6","w":47},"\u00e5":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm33,-60v0,6,-4,9,-9,9v-5,0,-9,-3,-9,-9v0,-6,4,-9,9,-9v5,0,9,3,9,9xm27,-60v0,-3,-1,-4,-3,-4v-2,0,-4,1,-4,4v0,3,2,4,4,4v2,0,3,-1,3,-4","w":47},"\u0101":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm34,-62v2,12,-11,5,-20,7v-2,-12,12,-5,20,-7","w":47},"\u0103":{"d":"32,-9v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32v-8,2,-10,-2,-9,-9xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6xm18,-66v2,8,11,8,13,0v3,0,4,1,4,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,5,-3","w":47},"\u0105":{"d":"41,0v-8,7,-8,9,-3,13v3,-2,6,0,4,3v-14,6,-18,-11,-7,-16v-3,0,-4,-1,-3,-6v1,-1,1,-2,0,-3v-4,12,-27,15,-28,-3v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-1,-2,-2,-3,-1,-4v6,-5,37,-7,32,11v0,26,0,29,1,32xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6","w":47},"\u00e6":{"d":"38,-40v10,-12,33,-10,31,14v0,3,-1,4,-4,4r-25,0v-4,19,17,17,27,14v3,9,-6,8,-16,8v-9,0,-15,-2,-18,-10v-4,13,-28,17,-29,-2v0,-12,11,-16,28,-14v4,-16,-12,-15,-23,-13v-4,-8,5,-6,15,-8v6,0,12,1,14,7xm40,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-11,6,-12,14xm19,-6v6,-1,15,-4,13,-14v-11,-1,-19,0,-19,8v0,4,3,6,6,6","w":73},"b":{"d":"7,-2v2,-19,0,-43,1,-64v0,-3,2,-4,6,-4v8,1,0,25,2,31v9,-14,30,-9,30,15v0,28,-21,27,-39,22xm16,-7v13,2,21,3,21,-17v1,-21,-13,-18,-21,-10v1,23,0,27,0,27"},"c":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17","w":40},"\u0107":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm35,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":40},"\u0109":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm12,-56v7,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":40},"\u010b":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm19,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":40},"\u010d":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm36,-65v-14,17,-10,17,-24,0v5,-4,9,3,12,5v4,-2,6,-9,12,-5","w":40},"\u00e7":{"d":"14,-23v-1,18,11,19,22,15v2,8,-3,7,-12,9v-11,0,-19,-7,-19,-24v-1,-22,17,-28,31,-21v2,6,-3,5,-10,4v-7,0,-12,4,-12,17xm21,4r6,0v1,8,-3,15,-10,11v-2,-5,8,-3,4,-11","w":40},"d":{"d":"36,-9v-8,16,-31,13,-31,-13v0,-23,14,-29,30,-23v2,-9,-7,-26,6,-25v2,0,3,1,3,3v0,4,-2,68,0,67v-8,1,-11,-2,-8,-9xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":51},"\u010f":{"d":"59,-69v-6,16,-2,16,-12,14v5,-8,4,-15,12,-14xm44,0v-8,2,-11,-3,-8,-9v-8,16,-31,13,-31,-13v0,-23,14,-29,30,-23v1,-17,-7,-24,6,-25v2,0,3,1,3,3v0,4,-2,68,0,67xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":53},"\u0111":{"d":"51,-60v1,6,-3,6,-8,6r1,54v-8,1,-11,-2,-8,-9v-8,16,-31,13,-31,-13v0,-23,14,-29,30,-23r0,-9r-14,0v-1,-10,6,-5,13,-6v0,-6,-1,-11,7,-10v5,0,3,6,3,10r7,0xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":51},"\u00f0":{"d":"35,-44v-1,-6,-3,-11,-7,-14r-8,7v-9,-4,-1,-8,3,-10v-2,-2,-10,-1,-11,-5v1,-10,9,-3,17,-1r8,-6v7,4,0,7,-3,10v15,11,17,64,-9,64v-13,0,-20,-9,-20,-23v0,-23,14,-27,30,-22xm36,-38v-12,-4,-23,-3,-23,16v0,11,5,16,12,16v11,2,12,-18,11,-32"},"e":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14","w":47},"\u00e8":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm31,-55v-8,4,-5,2,-17,-9v10,-6,7,-4,17,9","w":47},"\u00e9":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm38,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":47},"\u00ea":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm15,-56v6,-14,15,-12,21,0v-2,6,-7,-2,-11,-4v-3,1,-8,11,-10,4","w":47},"\u00eb":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm13,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6xm29,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":47},"\u0113":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm35,-62v4,12,-11,5,-19,7v-2,-12,11,-5,19,-7","w":47},"\u0115":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm19,-66v2,8,12,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":47},"\u0117":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm21,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":47},"\u0119":{"d":"40,-8v4,8,-4,6,-12,8v-5,6,-8,10,-2,13v3,-2,6,0,4,3v-14,6,-18,-11,-7,-16v-11,-1,-18,-7,-18,-21v0,-31,38,-38,38,-5v-3,8,-20,2,-29,4v-3,18,15,17,26,14xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14","w":47},"\u011b":{"d":"5,-21v0,-30,38,-38,38,-6v0,11,-19,3,-29,5v-3,18,15,17,26,14v4,8,-4,8,-14,8v-13,0,-21,-6,-21,-21xm14,-27r21,0v0,-10,-4,-14,-9,-14v-7,0,-12,6,-12,14xm37,-65v-14,17,-9,17,-24,0v6,-4,8,3,12,5v3,-2,7,-9,12,-5","w":47},"f":{"d":"29,-47v-1,9,1,7,-12,6r0,41r-8,0r0,-41r-7,1v-1,-8,-1,-7,7,-7v-1,-12,0,-24,12,-23v6,1,12,1,9,8v-3,-1,-13,-3,-13,5r0,10r12,0","w":29},"g":{"d":"43,-47v1,8,0,7,-8,6v12,10,1,31,-19,26v-4,3,-4,7,2,7v12,1,26,2,26,14v0,10,-7,16,-23,16v-20,0,-23,-17,-10,-23v0,0,2,0,2,-1v-10,-1,-9,-12,-1,-15v-12,-7,-8,-30,11,-30v9,0,10,1,20,0xm18,-1v-11,5,-11,17,3,17v16,0,22,-16,5,-16xm22,-41v-6,0,-9,4,-9,10v0,6,3,10,9,10v7,0,10,-4,10,-9v0,-7,-3,-11,-10,-11","w":46},"\u011d":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm13,-56v6,-12,15,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":46},"\u011f":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm17,-66v2,8,12,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":46},"\u0121":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm19,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":46},"\u0123":{"d":"16,-15v20,4,31,-15,19,-26v8,1,9,2,8,-6v-18,0,-38,-3,-38,16v0,7,3,12,7,14v-9,4,-7,13,1,16v-16,6,-13,23,8,23v27,0,32,-29,6,-29v-6,-1,-20,-1,-11,-8xm21,16v-14,0,-14,-12,-3,-17v6,1,19,0,18,7v0,6,-5,10,-15,10xm22,-41v7,0,10,4,10,11v0,5,-3,9,-10,9v-6,0,-9,-4,-9,-10v0,-6,3,-10,9,-10xm28,-70v-5,5,4,15,-6,15v-6,-3,-3,-24,6,-15","w":46},"h":{"d":"46,0v-17,2,-6,-19,-9,-29v1,-16,-14,-12,-21,-4r0,33r-9,0r1,-66v0,-3,2,-4,6,-4v7,2,1,24,1,31v10,-11,32,-12,31,8v0,25,-1,27,0,31","w":53},"\u0125":{"d":"46,0v-17,2,-6,-19,-9,-29v1,-16,-14,-12,-21,-4r0,33r-9,0r1,-66v0,-3,2,-4,6,-4v7,2,1,24,1,31v10,-11,32,-12,31,8v0,25,-1,27,0,31xm1,-79v7,-10,15,-11,22,0v-2,4,-8,-1,-11,-2v-3,1,-9,6,-11,2","w":53},"\u0127":{"d":"16,-33r0,33r-8,0r0,-53r-7,0v0,-6,1,-6,7,-6v0,-6,-2,-11,6,-10v5,-1,2,6,3,10r14,0v3,9,-8,5,-14,6v-1,6,-2,12,-1,14v8,-10,30,-12,30,8v0,26,-1,27,0,31v-15,3,-7,-18,-9,-29v1,-16,-14,-12,-21,-4","w":53},"i":{"d":"16,0r-8,0r0,-43v0,-3,1,-4,6,-4v1,0,2,1,2,2r0,45xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":24},"\u00ec":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm17,-55v-8,4,-5,2,-17,-9v10,-6,7,-4,17,9","w":23},"\u00ed":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm24,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":23},"\u00ee":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm1,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":23},"\u00ef":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm-1,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6xm16,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":23},"\u0129":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm7,-57v-2,0,-2,1,-2,4v-5,1,-6,-1,-6,-5v1,-11,12,-4,18,-4v2,0,2,-1,2,-4v5,-1,6,1,6,5v0,11,-13,4,-18,4","w":23},"\u012b":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm22,-62v2,12,-12,5,-20,7v-2,-12,12,-5,20,-7","w":23},"\u012d":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45xm5,-66v3,8,11,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":23},"\u012f":{"d":"16,0v-7,7,-8,10,-2,13v1,0,2,-1,4,-1v1,5,-1,5,-6,5v-11,0,-9,-13,-2,-17r-2,0r0,-43v0,-3,1,-4,6,-4v1,0,2,1,2,2r0,45xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":24},"\u0131":{"d":"16,0r-8,0r-1,-43v0,-3,2,-4,7,-4v1,0,2,1,2,2r0,45","w":23},"\u0133":{"d":"16,0r-8,0r0,-43v0,-3,1,-4,6,-4v1,0,2,1,2,2r0,45xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5xm32,1v2,14,-5,15,-11,17v1,4,1,5,3,5v7,-1,17,-6,17,-19r0,-49v-1,-3,-10,-2,-9,2r0,44xm32,-59v0,-3,2,-4,6,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-3,-1,-3,-5","w":48},"j":{"d":"8,-43v-2,21,7,58,-11,61v1,4,1,5,3,5v7,-1,18,-6,17,-19r0,-49v-1,-3,-10,-2,-9,2xm7,-59v0,-3,3,-4,7,-4v2,0,3,0,3,2v0,6,-1,7,-6,7v-3,0,-4,-1,-4,-5","w":24},"\u0135":{"d":"8,-43v-2,21,7,58,-11,61v1,4,1,5,3,5v7,-1,18,-6,17,-19r0,-49v-1,-3,-10,-2,-9,2xm2,-56v6,-14,15,-12,21,0v-3,7,-8,-2,-11,-4r-8,7v-2,0,-2,-1,-2,-3","w":24},"k":{"d":"17,-67v-1,1,1,18,-2,40r19,-20v2,-3,10,4,7,5r-14,13v14,23,15,24,17,27v-13,10,-17,-16,-23,-22v-7,3,-5,14,-5,24r-9,0r1,-66v0,-3,2,-4,6,-4v2,0,3,1,3,3","w":46},"\u0137":{"d":"17,-67v-1,1,1,18,-2,40r19,-20v2,-3,10,4,7,5r-14,13v14,23,15,24,17,27v-13,10,-17,-16,-23,-22v-7,3,-5,14,-5,24r-9,0r1,-66v0,-3,2,-4,6,-4v2,0,3,1,3,3xm19,19v5,-5,-4,-15,7,-15v6,4,2,23,-7,15","w":46},"\u0138":{"d":"34,-47v2,-3,10,4,7,5r-14,13v14,23,15,24,17,27v-13,10,-17,-16,-23,-22v-7,3,-5,14,-5,24r-9,0r1,-44v0,-2,2,-3,6,-3v7,1,2,11,1,20","w":47},"l":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57","w":25},"\u013a":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57xm7,-81v13,-10,10,-12,18,-2v-12,5,-13,5,-14,5v-2,0,-3,0,-4,-3","w":25},"\u013c":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57xm9,19v3,-6,-3,-15,6,-15v6,4,3,23,-6,15","w":25},"\u013e":{"d":"34,-70v-8,16,-3,16,-13,14v6,-7,4,-15,13,-14xm16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57","w":26},"\u0140":{"d":"16,-10v0,5,2,5,8,5v0,5,-2,5,-6,5v-19,-1,-10,-15,-10,-35v0,-12,-1,-25,-1,-31v0,-3,2,-4,7,-4v2,0,2,1,2,3r0,57xm22,-35v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":29},"\u0142":{"d":"16,-34v2,10,-7,31,8,29v0,5,-1,5,-6,5v-16,2,-8,-16,-10,-28v-3,6,-13,4,-7,-2r7,-6r0,-30v0,-2,2,-4,6,-4v2,0,3,1,3,3r-1,25r8,-6v7,7,-5,10,-8,14","w":26},"m":{"d":"36,0v-2,-13,5,-39,-7,-40v-4,0,-8,3,-13,7r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-8,22,-13,27,1v9,-11,29,-14,28,7v0,25,0,27,1,31v-16,3,-8,-17,-10,-29v1,-17,-12,-11,-18,-4r0,33r-8,0","w":78},"n":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31","w":53},"\u00f1":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm23,-57v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,15,-4,17,-4v2,0,3,-1,2,-4v5,-1,6,1,6,5v1,11,-16,4,-17,4","w":53},"\u0144":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm39,-64v-13,12,-9,13,-17,9v10,-13,7,-15,17,-9","w":53},"\u0146":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm22,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":53},"\u0148":{"d":"46,0v-15,3,-8,-18,-9,-29v-1,-17,-13,-11,-21,-4r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v8,-9,30,-13,30,8r0,31xm39,-65v-14,18,-9,16,-23,0v5,-4,9,3,12,5v4,-1,6,-9,11,-5","w":53},"\u014b":{"d":"26,13v5,-3,13,-3,11,-15v-2,-13,6,-38,-8,-38v-4,0,-8,3,-13,7r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,5,2,8v9,-10,31,-12,30,8r0,29v1,13,-9,17,-17,19v-1,0,-2,-1,-3,-4","w":52},"\u0149":{"d":"49,0v-15,3,-7,-18,-9,-29v1,-16,-15,-12,-21,-4r0,33r-9,0r0,-43v0,-3,2,-4,7,-4v4,0,0,7,2,8v8,-11,30,-12,30,8v0,25,-1,27,0,31xm2,-51v3,-6,-3,-22,7,-21v6,6,2,28,-7,21","w":56},"o":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17"},"\u00f2":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm31,-55v-8,4,-5,2,-17,-9v10,-6,7,-4,17,9"},"\u00f3":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm39,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9"},"\u00f4":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm14,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4"},"\u00f5":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm20,-57v-2,0,-3,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,12,-4,18,-4v1,0,2,-1,1,-4v5,-1,7,1,7,5v0,11,-12,4,-18,4"},"\u00f6":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm16,-55v-3,-1,-6,-11,3,-10v1,0,3,0,3,3v0,6,-1,7,-6,7xm29,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6"},"\u00f8":{"d":"39,-42v12,11,6,46,-14,42v-5,0,-10,-2,-11,3v0,1,-1,1,-4,0v-4,-1,1,-5,1,-7v-12,-11,-6,-48,14,-43v6,0,9,2,11,-3v5,-2,7,4,3,8xm25,-6v11,2,15,-20,9,-29r-14,28v1,1,3,1,5,1xm25,-41v-11,-2,-15,18,-10,29r15,-27v-1,-1,-3,-2,-5,-2"},"\u014d":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm35,-62v2,12,-12,5,-20,7v-2,-12,12,-5,20,-7"},"\u014f":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm18,-66v3,8,11,8,13,0v4,0,5,1,5,3v0,6,-5,10,-11,10v-6,0,-11,-4,-11,-10v0,-2,1,-3,4,-3"},"\u0151":{"d":"45,-23v0,16,-8,23,-20,23v-12,0,-20,-7,-20,-23v0,-17,8,-24,20,-24v12,0,20,7,20,24xm37,-23v0,-12,-5,-18,-12,-18v-7,0,-12,6,-12,18v0,11,5,17,12,17v7,0,12,-6,12,-17xm29,-64v-11,11,-9,13,-16,9v9,-13,7,-15,16,-9xm46,-63v-13,10,-10,13,-17,7v12,-12,7,-12,17,-7"},"\u0153":{"d":"40,-37v8,-16,36,-14,33,11v0,3,-1,4,-4,4r-25,0v-4,18,17,17,27,14v3,9,-6,6,-15,8v-8,0,-14,-2,-17,-8v-8,17,-34,10,-34,-15v0,-26,27,-32,35,-14xm36,-23v0,-12,-4,-18,-11,-18v-7,0,-12,6,-12,18v0,11,4,17,11,17v7,0,12,-6,12,-17xm44,-27r21,0v1,-10,-4,-14,-9,-14v-7,0,-11,6,-12,14","w":77},"p":{"d":"7,18r1,-61v0,-3,2,-4,6,-4v4,0,1,5,2,8v9,-13,30,-10,30,15v0,23,-14,28,-30,23v0,16,0,19,1,23v-3,1,-10,2,-10,-4xm16,-7v13,3,21,2,21,-17v1,-21,-13,-17,-21,-10r0,27"},"q":{"d":"39,23v-11,1,-1,-29,-4,-31v-8,14,-30,11,-30,-14v0,-23,16,-29,30,-22v1,-3,9,-5,9,0v-1,13,-1,76,0,66v-1,0,-3,1,-5,1xm35,-39v-12,-2,-21,-3,-21,16v0,22,15,19,21,9r0,-25","w":51},"r":{"d":"33,-39v-7,-1,-12,1,-17,6r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,6,2,9v5,-7,10,-11,17,-8v0,1,1,2,0,7","w":34},"\u0155":{"d":"33,-39v-7,-1,-12,1,-17,6r0,33r-8,0r-1,-43v0,-3,3,-4,7,-4v4,0,1,6,2,9v5,-7,10,-11,17,-8v0,1,1,2,0,7xm30,-64v-11,11,-9,13,-16,9v10,-13,6,-15,16,-9","w":34},"\u0157":{"d":"33,-39v-8,-1,-12,1,-17,6r0,33r-9,0r0,-43v0,-3,2,-4,7,-4v3,1,1,4,1,9v5,-7,10,-11,17,-8v1,1,1,2,1,7xm6,19v5,-5,-4,-14,6,-15v6,4,3,23,-6,15","w":34},"\u0159":{"d":"32,-39v-7,-1,-11,1,-16,6r0,33r-9,0r0,-43v0,-3,2,-4,6,-4v4,0,1,6,2,9v5,-7,10,-11,17,-8v1,1,1,2,0,7xm31,-65v-15,17,-10,17,-24,0v5,-4,9,3,12,5v4,-2,6,-9,12,-5","w":34},"s":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5","w":39},"\u015b":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm31,-64v-12,12,-9,13,-16,9v10,-12,7,-15,16,-9","w":39},"\u015d":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm8,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":39},"\u015f":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm17,4r6,0v1,8,-3,15,-10,11v-2,-5,8,-3,4,-11","w":39},"\u0161":{"d":"32,-38v-4,-3,-20,-6,-19,4v0,9,22,5,22,21v4,14,-24,17,-30,10v-1,-1,-1,-2,0,-5v6,2,22,5,21,-5v0,-10,-22,-5,-22,-21v-3,-14,23,-16,28,-9v1,1,1,2,0,5xm31,-65v-14,17,-9,17,-23,0v5,-4,7,4,11,5v4,-1,6,-9,12,-5","w":39},"t":{"d":"29,-47v1,9,2,7,-11,6r0,29v-1,8,6,6,11,5v2,7,-2,6,-9,7v-18,1,-8,-27,-10,-41r-7,1v-1,-8,-2,-7,7,-7v-2,-7,5,-15,8,-8r0,8r11,0","w":32},"\u0163":{"d":"29,-47v1,9,2,7,-11,6r0,29v-1,8,6,6,11,5v2,7,-2,6,-9,7v-18,1,-8,-27,-10,-41r-7,1v-1,-8,-2,-7,7,-7v-2,-7,5,-15,8,-8r0,8r11,0xm10,19v6,-5,-3,-15,7,-15v6,4,2,24,-7,15","w":32},"\u0165":{"d":"35,-70v-6,17,-4,16,-13,14v4,-5,3,-16,13,-14xm29,-47v1,9,2,7,-11,6r0,29v-1,8,6,6,11,5v2,7,-2,6,-9,7v-18,1,-8,-27,-10,-41r-7,1v-1,-8,-2,-7,7,-7v-2,-7,5,-15,8,-8r0,8r11,0","w":32},"\u0167":{"d":"30,-47v-1,9,1,6,-12,7r0,11r9,0v3,7,-3,6,-9,6v-1,10,0,22,11,16v2,7,-2,6,-9,7v-12,2,-10,-12,-10,-23r-7,0v1,-7,-1,-6,7,-6r0,-11r-7,0v-1,-8,-1,-7,7,-7v-2,-7,5,-16,8,-8r0,8r12,0","w":33},"u":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4","w":53},"\u00f9":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm32,-55v-7,4,-5,2,-16,-9v10,-6,6,-4,16,9","w":53},"\u00fa":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm39,-64v-11,11,-9,13,-16,9v10,-13,6,-15,16,-9","w":53},"\u00fb":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm16,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":53},"\u00fc":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm14,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6xm31,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":53},"\u0169":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm22,-57v-2,0,-2,1,-2,4v-5,1,-6,-1,-6,-5v0,-11,13,-4,18,-4v2,0,2,-1,2,-4v5,-1,6,1,6,5v0,11,-13,4,-18,4","w":53},"\u016b":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm37,-62v2,12,-12,5,-20,7v-2,-12,12,-5,20,-7","w":53},"\u016d":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm20,-66v2,8,12,8,13,0v4,0,4,1,4,3v0,6,-4,10,-10,10v-7,0,-11,-4,-11,-10v0,-2,1,-3,4,-3","w":53},"\u016f":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm35,-60v0,6,-3,9,-8,9v-5,0,-9,-3,-9,-9v0,-6,4,-9,9,-9v5,0,8,3,8,9xm30,-60v0,-3,-1,-4,-3,-4v-2,0,-4,1,-4,4v0,3,2,4,4,4v2,0,3,-1,3,-4","w":53},"\u0171":{"d":"14,-47v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2r1,45v-7,1,-11,0,-9,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4xm31,-64v-12,12,-9,13,-16,9v10,-12,7,-15,16,-9xm48,-63v-14,10,-9,13,-17,7v11,-12,8,-12,17,-7","w":53},"\u0173":{"d":"46,0v-6,7,-8,9,-3,13v2,0,3,-1,5,-1v1,5,-2,5,-6,5v-11,0,-10,-13,-2,-17v-4,0,-3,-4,-3,-8v-8,12,-31,14,-30,-7r0,-28v0,-3,2,-4,7,-4v8,8,-6,40,10,41v4,0,8,-3,12,-8r0,-29v0,-3,3,-4,7,-4v2,0,2,1,2,2","w":54},"v":{"d":"22,-8r12,-36v0,-2,1,-3,6,-3v2,0,3,1,2,4r-16,43v0,0,-7,1,-9,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2","w":44},"w":{"d":"21,-8r8,-35v1,-4,6,-5,9,-2r9,37r8,-36v1,-2,2,-3,7,-3v2,0,3,1,2,4r-13,43v0,0,-7,1,-9,0r-9,-33r-8,33v0,0,-7,1,-9,0r-14,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2","w":65},"\u0175":{"d":"21,-8r8,-35v1,-4,6,-5,9,-2r9,37r8,-36v1,-2,2,-3,7,-3v2,0,3,1,2,4r-13,43v0,0,-7,1,-9,0r-9,-33r-8,33v0,0,-7,1,-9,0r-14,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2xm22,-56v6,-12,16,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":65},"x":{"d":"3,-43v9,-11,16,8,20,14r10,-17v1,-2,2,-2,5,0v3,1,3,2,2,3r-13,19v12,17,14,19,16,21v-11,9,-16,-10,-21,-16r-12,19v-2,2,-10,-1,-7,-4r15,-20v-11,-16,-13,-17,-15,-19","w":45},"y":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16","w":44},"\u00fd":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16xm35,-64v-11,11,-9,13,-16,9v10,-13,6,-15,16,-9","w":44},"\u00ff":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16xm10,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6xm27,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6","w":44},"\u0177":{"d":"21,0r-4,0r-15,-43v-1,-3,1,-4,7,-4v1,0,2,0,2,2r12,39r11,-38v0,-2,1,-3,6,-3v2,0,3,1,2,4r-13,42v-9,23,-10,24,-25,22v-3,-4,2,-6,6,-5v5,0,7,-3,11,-16xm12,-56v6,-12,15,-13,22,0v-3,7,-8,-2,-11,-4v-3,2,-9,11,-11,4","w":44},"z":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40","w":42},"\u017a":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40xm34,-64v-13,12,-9,13,-17,9v10,-13,7,-15,17,-9","w":42},"\u017c":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40xm17,-60v0,-2,2,-4,6,-4v5,1,4,11,-2,10v-3,0,-4,-1,-4,-6","w":42},"\u017e":{"d":"29,-40r-22,0v-1,0,-2,-1,-2,-4v0,-2,1,-3,3,-3r28,0v5,14,1,5,-24,40v20,0,24,0,26,-1v2,3,1,9,-4,8r-28,0v-5,-13,-2,-4,23,-40xm33,-65v-14,18,-9,16,-23,0v6,-4,8,4,12,5v4,-1,6,-9,11,-5","w":42},"\u00df":{"d":"16,0r-8,0v1,-28,-11,-69,20,-70v15,0,20,13,13,26v-6,3,-8,6,-8,10v0,8,16,7,16,21v0,13,-18,17,-26,11v-4,-11,19,3,18,-11v0,-10,-16,-8,-16,-21v0,-7,3,-10,10,-14v3,-8,0,-15,-7,-15v-20,2,-9,42,-12,63","w":52},"\u00de":{"d":"8,0v1,-4,1,-52,0,-62v0,-2,2,-3,7,-3v6,0,1,8,2,12v16,-3,31,1,30,19v0,19,-14,22,-30,19r0,15r-9,0xm17,-22v11,3,21,1,21,-12v0,-14,-11,-14,-20,-12v-1,5,-1,16,-1,24","w":51},"\u00fe":{"d":"8,17r0,-83v0,-2,2,-3,6,-3v2,0,2,0,2,2v-1,9,1,21,-1,28v10,-13,31,-11,31,15v0,23,-14,28,-30,23v0,16,0,19,1,23v-5,0,-10,0,-9,-5xm16,-7v13,3,21,2,21,-17v1,-21,-13,-17,-21,-10r0,27"},"{":{"d":"4,-28r0,-5v16,-1,4,-25,7,-37v-2,-9,12,-9,16,-6v1,1,1,2,0,4v0,0,-8,-1,-7,3v-2,14,5,35,-7,39v12,3,5,25,7,39v-2,5,11,1,7,7v-4,3,-18,3,-16,-6v-2,-13,8,-36,-7,-38","w":29},"|":{"d":"10,24r0,-92v0,-3,1,-4,6,-4v2,0,2,1,2,3r0,92","w":28},"}":{"d":"25,-33r0,5v-16,2,-5,25,-7,38v2,9,-12,9,-16,6v0,-1,-1,-2,0,-4v3,0,8,1,7,-3v2,-14,-6,-36,8,-39v-14,-3,-6,-24,-8,-39v2,-6,-10,0,-7,-7v4,-3,18,-3,16,6v2,13,-9,36,7,37","w":29},"[":{"d":"21,11r0,7r-17,0v1,-11,1,-83,0,-95r17,0r0,6r-8,0r0,82r8,0","w":22},"\\":{"d":"3,-67v4,0,8,-1,9,3v22,67,22,69,24,71v-2,0,-9,3,-9,-2","w":38},"]":{"d":"2,18r0,-7r8,0r0,-82r-8,0r0,-6r16,0r1,95r-17,0","w":22},"\u2026":{"d":"6,-6v0,-3,2,-4,6,-4v2,0,4,0,4,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6xm26,-6v0,-3,2,-4,7,-4v2,0,3,0,3,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6xm46,-6v0,-3,2,-4,7,-4v2,0,3,0,3,3v0,7,-1,7,-6,7v-3,0,-4,-1,-4,-6","w":62},"\u00b7":{"d":"6,-29v0,-3,2,-5,6,-5v2,0,4,1,4,3v0,7,-1,8,-6,8v-3,0,-4,-1,-4,-6","w":21},"\u00bf":{"d":"2,7v-1,-16,19,-20,13,-39r7,0v2,4,2,12,0,18v-5,8,-11,12,-11,20v-1,16,21,1,20,12v-7,6,-32,5,-29,-11xm23,-41v0,2,-2,4,-6,4v-5,-1,-4,-11,2,-10v3,0,4,1,4,6","w":33},"\u00a1":{"d":"12,22v-2,0,-3,-1,-3,-3v0,-13,1,-51,1,-51r7,0v0,0,1,38,1,50v0,2,-2,4,-6,4xm18,-41v0,3,-2,4,-6,4v-5,-1,-4,-11,2,-10v3,0,4,1,4,6","w":26},"\u00b6":{"d":"16,7v9,0,13,-1,12,-9r0,-56r-6,0r0,28v-11,1,-19,-4,-19,-17v0,-21,26,-18,42,-18v1,8,-1,7,-8,7r0,54v1,15,-9,20,-20,17v-1,-1,-2,-2,-1,-6","w":48},"~":{"d":"43,-30v-2,18,-35,-5,-34,11v-5,1,-7,-1,-7,-6v1,-12,19,-5,31,-5v3,0,4,-2,3,-6v5,-1,7,1,7,6","w":45},"\u00a2":{"d":"35,-16v3,7,-1,7,-9,9r0,10r-7,1r0,-11v-8,-2,-15,-7,-15,-23v0,-17,7,-23,16,-24v1,-5,-3,-12,5,-11v4,0,1,8,2,11v5,1,12,2,7,8v-9,-5,-21,-1,-21,15v0,18,11,19,22,15","w":39},"\u00a3":{"d":"3,-27v-1,-8,2,-7,8,-7v-5,-14,-1,-30,15,-29v10,1,17,0,15,6v-2,6,-24,-5,-23,11v0,4,1,8,1,12r17,0v2,10,-7,4,-15,6v1,9,1,15,-2,21v22,0,24,0,28,-1v0,5,0,8,-5,8r-39,0v-1,-6,1,-8,7,-7v3,-4,5,-12,2,-21v-5,0,-7,0,-9,1","w":48},"\u00a4":{"d":"8,-18v-4,-6,-4,-20,1,-25r-8,-8v5,-9,9,-1,12,3v6,-4,18,-4,23,1v6,-12,13,-7,9,0r-5,4v6,6,5,19,0,26v5,5,6,6,8,7v-6,9,-9,0,-13,-3v-4,4,-18,4,-22,0v-8,10,-14,6,-9,-1xm12,-30v0,7,4,14,12,14v9,0,13,-7,13,-14v0,-8,-4,-15,-13,-15v-8,0,-12,7,-12,15","w":48},"\u00a5":{"d":"6,-21v-1,-8,7,-5,13,-6r-16,-32v-2,-4,0,-5,6,-5v2,0,2,1,3,3r15,32r14,-32v1,-2,2,-3,7,-3v2,0,3,2,2,4r-17,33r13,0v3,9,-8,5,-15,6r0,5r15,0v3,9,-8,5,-15,6r0,10r-10,0v1,-3,1,-6,1,-10r-16,0v-2,-11,9,-4,16,-6r0,-5r-16,0","w":52},"\u00a7":{"d":"36,-56v-5,-3,-20,-4,-20,6v0,12,24,11,24,28v0,5,-3,9,-5,11v9,10,2,28,-13,26v-9,-1,-18,-1,-13,-9v5,3,21,4,21,-6v0,-13,-25,-13,-25,-29v0,-5,3,-9,5,-12v-8,-10,0,-26,14,-24v9,1,15,0,12,9xm15,-36v-6,11,4,15,15,21v9,-9,-6,-17,-15,-21","w":45},"\u00ab":{"d":"19,-9v-4,-6,-19,-10,-13,-20r13,-13v1,-1,2,0,3,1v4,6,-7,10,-9,16v2,5,13,10,9,15v-1,1,-2,2,-3,1xm36,-9v-4,-6,-18,-11,-13,-20v6,-3,9,-15,17,-12v2,7,-8,10,-10,16v3,5,12,8,10,15v-2,1,-3,2,-4,1","w":46},"\u00bb":{"d":"27,-42v4,6,18,11,14,20v-6,3,-9,15,-17,12v-3,-7,7,-10,10,-15v-3,-6,-12,-9,-10,-16v2,-1,3,-2,3,-1xm10,-42v4,6,18,11,14,20r-14,13v-1,1,-6,-2,-4,-4r11,-12v-3,-5,-13,-10,-10,-16v1,-1,2,-2,3,-1","w":46},"\u2018":{"d":"15,-71v-5,8,3,23,-8,22v-2,0,-3,0,-3,-3v2,-16,0,-21,11,-19","w":17},"\u2019":{"d":"2,-50v7,-7,-4,-22,8,-22v2,0,4,0,4,3v-2,16,0,21,-12,19","w":17},"\u201c":{"d":"15,-71v-5,8,3,23,-8,22v-2,0,-3,0,-3,-3v2,-16,0,-21,11,-19xm29,-71v-5,8,3,23,-8,22v-2,0,-3,0,-3,-3v2,-16,0,-21,11,-19","w":31},"\u201d":{"d":"2,-50v7,-7,-4,-22,8,-22v2,0,4,0,4,3v-2,16,0,21,-12,19xm16,-50v7,-7,-4,-22,8,-22v2,0,3,0,3,3v-2,16,1,21,-11,19","w":31},"_":{"d":"48,10v0,7,0,7,-5,7r-43,0v0,-7,0,-6,5,-7r43,0","w":48},"\u00ad":{"d":"30,-32v2,13,-16,5,-25,7v-3,-14,16,-4,25,-7","w":34},"\u2013":{"d":"0,-28v0,-8,0,-6,5,-7r43,0v0,6,0,6,-4,7r-44,0","w":48},"\u2014":{"d":"96,-35v0,7,0,7,-6,7r-90,0v0,-8,0,-6,5,-7r91,0","w":96},"\u00ae":{"d":"22,-36r0,-26v6,-2,19,-1,17,7v0,5,-2,7,-5,7v5,9,5,10,6,11v-8,7,-6,-9,-13,-10r0,11r-5,0xm29,-59v-4,0,-1,6,-2,9v5,0,7,-1,7,-5v0,-3,-2,-4,-5,-4xm11,-49v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19v-11,0,-19,9,-19,19xm5,-49v0,-13,11,-25,25,-25v13,0,25,12,25,25v0,14,-12,25,-25,25v-14,0,-25,-11,-25,-25","w":59},"\u2122":{"d":"18,-36r-6,0r0,-23r-9,0v-2,-11,14,-4,23,-6v2,8,-2,6,-8,6r0,23xm50,-58v0,9,-3,15,-4,22r-7,0r-5,-22r-2,22v-3,0,-7,0,-6,-3r5,-24v0,-2,1,-2,5,-2v2,0,3,0,3,2r4,20r4,-20v0,-2,1,-2,5,-2v2,0,3,0,3,2r4,26v-1,1,-2,1,-6,1","w":64},"\u00a9":{"d":"4,-34v0,-18,13,-33,32,-33v20,0,32,15,32,33v0,19,-12,33,-32,33v-19,0,-32,-14,-32,-33xm11,-34v0,16,9,28,25,28v17,0,26,-12,26,-28v0,-15,-9,-27,-26,-27v-16,0,-25,12,-25,27xm28,-33v-1,-15,9,-18,18,-13v2,-7,-2,-7,-9,-8v-9,0,-17,5,-17,21v0,17,15,22,27,17v1,-1,1,-2,0,-5v-10,2,-19,3,-19,-12","w":72},"\u00b0":{"d":"4,-55v0,-6,5,-11,11,-11v6,0,11,5,11,11v0,6,-5,11,-11,11v-6,0,-11,-5,-11,-11xm10,-55v0,3,2,5,5,5v3,0,5,-2,5,-5v0,-3,-2,-6,-5,-6v-3,0,-5,3,-5,6","w":30},"\u00b9":{"d":"3,-61v2,-1,16,-10,16,-1r0,35r-7,0r0,-32r-8,2v-2,-3,-2,-4,-1,-4","w":27},"\u00b2":{"d":"6,-27v-7,-10,17,-20,15,-27v0,-11,-12,-1,-15,-6v2,-9,26,-7,23,5v1,7,-12,16,-17,22v15,0,16,0,19,-1v2,6,1,7,-4,7r-21,0","w":36},"\u00b3":{"d":"12,-45r-1,-4v10,0,12,-9,4,-11v-6,1,-10,3,-9,-3v4,-4,23,-5,21,6v0,5,-4,8,-8,9v7,0,10,4,10,9v1,12,-18,14,-24,9v-1,0,-1,-1,0,-5v4,3,18,4,17,-5v0,-3,-3,-6,-10,-5","w":34},"\u00aa":{"d":"22,-39v-3,6,-18,8,-18,-4v0,-7,8,-10,18,-9v2,-10,-8,-8,-15,-7v-2,-6,3,-5,10,-6v15,-2,10,18,11,31v-4,0,-7,0,-6,-5xm14,-39v4,0,9,-2,8,-8v-12,-3,-16,6,-8,8","w":35},"\u00ba":{"d":"31,-50v0,11,-5,16,-13,16v-8,0,-13,-5,-13,-16v0,-10,5,-15,13,-15v8,0,13,5,13,15xm25,-50v0,-7,-3,-10,-7,-10v-4,0,-7,3,-7,10v0,8,3,11,7,11v4,0,7,-3,7,-11","w":35},"\u00bc":{"d":"6,-57v-5,-8,9,-7,12,-9v3,0,4,1,4,4r0,35r-8,0r0,-32xm60,-12r-8,0r11,-23v1,-1,1,-2,-2,-3v-3,-1,-4,-1,-4,0v-11,26,-12,20,-10,32r13,0v-1,6,1,9,8,8v-1,-4,-1,-6,-1,-8v7,-1,7,0,6,-7r-6,1v0,-3,1,-8,-1,-9v-6,0,-5,5,-6,9xm60,-70r-36,74v-1,4,-6,3,-9,2r35,-74v2,-3,6,-4,10,-2","w":77},"\u00bd":{"d":"15,6r36,-74v1,-4,6,-4,9,-2r-36,74v-1,4,-6,3,-9,2xm6,-57v-5,-8,9,-7,12,-9v3,0,4,1,4,4r0,35r-8,0r0,-32xm51,0v-6,-10,17,-21,16,-27v2,-10,-17,1,-15,-8v4,-5,25,-6,22,7v1,7,-11,17,-16,22v14,0,16,0,19,-1v3,13,-16,5,-26,7","w":81},"\u00be":{"d":"13,-45r-1,-4v11,0,12,-9,4,-11v-6,1,-10,3,-9,-3v4,-4,23,-5,21,6v0,5,-4,8,-8,9v7,0,10,4,10,9v1,12,-18,14,-24,9v-1,0,-1,-1,0,-5v4,3,18,4,17,-5v0,-3,-2,-6,-10,-5xm65,-12v-2,-6,4,-12,7,-7r0,7v1,-1,3,-1,6,-1v0,8,1,6,-6,7v0,2,-1,4,0,8v-6,1,-9,-1,-8,-8v-6,-1,-16,3,-14,-5v0,-3,1,-6,11,-27v1,-2,9,2,7,3v-1,1,-6,11,-12,23r9,0xm19,6r36,-74v1,-3,7,-4,10,-2r-36,74v-1,4,-7,3,-10,2","w":81},"`":{"d":"20,-55v-7,4,-4,3,-16,-9v10,-6,6,-4,16,9","w":24},"\u00b4":{"d":"20,-64v-12,12,-9,13,-16,9v10,-13,7,-15,16,-9","w":24},"\u00a8":{"d":"4,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-6,7v-2,0,-3,-1,-3,-6xm20,-61v0,-3,2,-4,6,-4v2,0,3,0,3,3v0,6,-1,7,-5,7v-3,0,-4,-1,-4,-6","w":33},"\u00af":{"d":"4,-55v-3,-11,10,-6,19,-7v3,11,-10,6,-19,7","w":27},"\u00b8":{"d":"4,15v0,-7,8,-2,4,-11v5,0,7,0,7,5v0,6,-7,9,-11,6","w":18},"\u00a6":{"d":"16,18r-8,1r0,-33r8,0r0,32xm8,-33r0,-30v0,-2,1,-4,6,-4v2,0,2,1,2,3r0,31r-8,0","w":24},"^":{"d":"4,-36v8,-19,15,-32,17,-29v4,0,4,2,16,26v2,3,2,6,-4,5r-12,-21r-12,21v-4,1,-5,-1,-5,-2","w":42},"\u00ac":{"d":"42,-30r0,16v-8,1,-9,-2,-7,-8r-33,0v0,-8,0,-7,5,-8r35,0","w":45},"\u00b1":{"d":"27,-11v-12,2,-7,-8,-8,-16r-16,1v-4,-13,8,-6,16,-7r0,-16v11,-2,7,8,7,16r17,-1v2,13,-9,6,-17,7xm43,-7v-13,1,-29,-1,-40,1v0,1,-1,2,0,6v13,0,28,1,39,-1v1,-1,1,-2,1,-6","w":45},"\u00d7":{"d":"23,-32r12,-12v10,6,-4,12,-7,17r12,13v-8,11,-11,-5,-17,-8r-13,13v-11,-8,4,-12,8,-18r-12,-13v7,-11,12,5,17,8","w":45},"\u00f7":{"d":"3,-29v11,-3,27,0,40,-1v0,6,1,7,-4,7r-36,0v-1,-4,-1,-5,0,-6xm18,-12v0,-3,2,-5,7,-5v5,2,4,12,-3,10v-3,0,-4,-1,-4,-5xm18,-43v0,-2,2,-4,7,-4v5,2,4,12,-3,10v-3,0,-4,-1,-4,-6","w":45},"\u00b5":{"d":"14,-47v2,0,2,1,2,3v2,13,-5,38,9,38v4,0,8,-3,12,-8r0,-29v0,-3,2,-4,6,-4v2,0,3,1,3,2r0,45v-7,1,-12,-2,-8,-8v-6,5,-12,11,-23,7v3,5,0,16,1,23r-9,1r0,-66v0,-3,3,-4,7,-4","w":53}}});


 //ajax.js

function RemoveError(){
jQuery.post(BASEURL+"ajax.php?action=removeerror",'','', "json");	
}

function hotopsy(id,id1){

document.getElementById('c1').className="";

document.getElementById('c2').className="";

document.getElementById('c3').className="";

document.getElementById(id1).className="current";

document.getElementById('blog').style.display ='none';

document.getElementById('facebook').style.display ='none';

document.getElementById('twitter').style.display ='none';

document.getElementById(id).style.display ='block';

}

function redirect(id,url){
jQuery.post(BASEURL+"ajax.php?action=makecat",{id:id,url:url},function(data){
if(data.url)
{
window.location.href=data.url
}

}
, "json");	
}

function redirectnew(id,url,name){
jQuery.post(BASEURL+"ajax.php?action=makecat",{id:id,url:url},function(data){
if(data.url)
{
window.open(url,name,"");
}

}
, "json");	
}




 //validation.js

function emailcheck(str)
       {
               var at="@"
               var dot="."
               var lat=str.indexOf(at)
               var lstr=str.length
               var ldot=str.indexOf(dot)
 
               if (str.indexOf(at)==-1){
               
                  return false
               }
               if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
               
                  return false
               }
			  
               if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
               
                   return false
               }
                if (str.indexOf(at,(lat+1))!=-1){
               
                   return false
                }
                if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
               
                   return false
                }
                if (str.indexOf(dot,(lat+2))==-1){
               
                   return false
                }
                if (str.indexOf(" ")!=-1){
					
                   return false
                }
				
       }
// Declaring required variables
var digits = "0123456789";
// non-digit characters which are allowed in phone numbers
var phoneNumberDelimiters = "()- ";
// characters which are allowed in international phone numbers
// (a leading + is OK)
var validWorldPhoneChars = phoneNumberDelimiters + "+";
// Minimum no of digits in an international phone no.
var minDigitsInIPhoneNumber = 8;

function isInteger(s)
{   var i;
    for (i = 0; i < s.length; i++)
    {   
        // Check that current character is number.
        var c = s.charAt(i);
        if (((c < "0") || (c > "9"))) return false;
    }
    // All characters are numbers.
    return true;
}
function trim(s)
{   var i;
    var returnString = "";
    // Search through string's characters one by one.
    // If character is not a whitespace, append to returnString.
    for (i = 0; i < s.length; i++)
    {   
        // Check that current character isn't whitespace.
        var c = s.charAt(i);
        if (c != " ") returnString += c;
    }
    return returnString;
}
function stripCharsInBag(s, bag)
{   var i;
    var returnString = "";
    // Search through string's characters one by one.
    // If character is not in bag, append to returnString.
    for (i = 0; i < s.length; i++)
    {   
        // Check that current character isn't whitespace.
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }
    return returnString;
}

function checkInternationalPhone(strPhone){
var bracket=3
strPhone=trim(strPhone)
if(strPhone.indexOf("+")>1) return false
if(strPhone.indexOf("-")!=-1)bracket=bracket+1
if(strPhone.indexOf("(")!=-1 && strPhone.indexOf("(")>bracket)return false
var brchr=strPhone.indexOf("(")
if(strPhone.indexOf("(")!=-1 && strPhone.charAt(brchr+2)!=")")return true
if(strPhone.indexOf("(")==-1 && strPhone.indexOf(")")!=-1)return true
s=stripCharsInBag(strPhone,validWorldPhoneChars);
return (isInteger(s) && s.length >= minDigitsInIPhoneNumber);
}
function isEmpty(s)
{
return((s==null)||(s.length==0));	
}

function validate_jobapply()
{
var error = 0 ;
var messages = '' ;
var name = jQuery("#name").val();
var phone = jQuery("#phone").val();
var email = jQuery("#email").val();
var resume = jQuery("#resume").val();
 
if(isEmpty(name)) {		
		jQuery("#name").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your name');
		jQuery('#name').focus();
		return false;
	} else {
	 	jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
		jQuery("#name").removeClass('error');
		 
		 
	}
	
if(isEmpty(email)) {		
		jQuery("#email").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your email address');
		jQuery('#email').focus();
		return false;
	} else {
	 	
		if (emailcheck(email)==false)
               {
				    jQuery("#email").addClass('error');
					jQuery('#error-messagebox').css("display", "block");
					jQuery('#error-content').html('Please enter your a valid email address');
					jQuery('#email').focus();
					return false;
			   }
			   else
			   {
		
		jQuery("#email").removeClass('error');
		jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
			   }
		 
	}
	
if(isEmpty(phone)) {		
	 
		 jQuery("#phone").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your phone number.');
		jQuery('#phone').focus();
		return false;
		 
	} else {
	 	
		if (checkInternationalPhone(phone)==false)
               {
		jQuery("#phone").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your a valid phone number');
		jQuery('#phone').focus();
		return false;
			   }
			   else
			   {
		jQuery("#phone").removeClass('error');
		jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
			   }
		 
	}
	

if(isEmpty(resume)) {		
		jQuery("#resume").addClass('error');

		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please attach your resume.');
		jQuery('#resume').focus();	
		return false;
	} else {
	 
			var ext = resume.split('.').pop().toLowerCase();
			var allow = new Array('doc','docx','txt','rtf','pdf');
			if(jQuery.inArray(ext, allow) == -1) {
				 jQuery("#resume").addClass('error');
				 
				
				jQuery('#error-messagebox').css("display", "block");
				jQuery('#error-content').html('Please select a doc, docx, txt, rtf or pdf file to upload.');
				jQuery('#resume').focus();
				return false;
			}
			else
			{		
			jQuery("#resume").removeClass('error');
			jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
			}
	 
		
		 
		 
	}
	
	
if(error) 
{

return false;
}
else 
{

return true;
}
}

function validate_enquiry()
{
	
var error = 0 ;
var messages = '' ;
var name = trim(jQuery("#query_name").val());
var phone = trim(jQuery("#query_phone").val());
var email = trim(jQuery("#query_email").val());
var query = trim(jQuery("#query_query").val());

if(isEmpty(name)) {	
alert('Please enter your name')
jQuery('#query_name').focus();
return false
}

if(isEmpty(phone)) {	
alert('Please enter your phone number')
jQuery('#query_phone').focus();
return false
}
else
{
if (checkInternationalPhone(phone)==false)
               {
alert('Please enter a valid phone number')
jQuery('#query_phone').focus();
return false
			   }
}

if(isEmpty(email)) {	
alert('Please enter your email address')
jQuery('#query_email').focus();
return false
}
else
{
if (emailcheck(email)==false)
               {
alert('Please enter a valid email addresss')
jQuery('#query_email').focus();
return false
			   }
}
 
if(isEmpty(query)) {	
alert('Please enter your query')
 jQuery('#query').focus();
return false
}
else
{
document.quickquery.submit(); 
}
return true;
}
function isValidURL(url) 
{
	var urlRegxp = /^(http:\/\/|https:\/\/){1}/;
//		var urlRegxp = /^(http:\/\/www.|https:\/\/www.){1}([\w]+)(.[\w]+){1,2}$/;
	if (urlRegxp.test(url) != true)
		 {
		return false;
		} else {
			return true;
			}
	} 
 
function validate_requestquote()
{
var error = 0 ;
var messages = '' ;
var name = jQuery("#name").val();
var phone = jQuery("#phone").val();
var email = jQuery("#email").val();
var url = jQuery("#url").val();
var file = jQuery("#file").val();
 
if(isEmpty(name)) {		
		jQuery("#name").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your name');
		jQuery('#name').focus();
		return false;
	} else {
	 	jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
		jQuery("#name").removeClass('error');
		 
		 
	}
	
if(isEmpty(email)) {		
		jQuery("#email").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your email address');
		jQuery('#email').focus();
		return false;
	} else {
	 	
		if (emailcheck(email)==false)
               {
				    jQuery("#email").addClass('error');
					jQuery('#error-messagebox').css("display", "block");
					jQuery('#error-content').html('Please enter your a valid email address');
					jQuery('#email').focus();
					return false;
			   }
			   else
			   {
		
		jQuery("#email").removeClass('error');
		jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
			   }
		 
	}
	
if(!isEmpty(phone)) {		
	 
		 
		if (checkInternationalPhone(phone)==false)
               {
		jQuery("#phone").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your a valid phone number');
		jQuery('#phone').focus();
		return false;
			   }
			   else
			   {
		jQuery("#phone").removeClass('error');
		jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
			   }
		 
	}  
if(!isEmpty(url)) {	
 
		if(isValidURL(url)==false)
		{
		jQuery("#url").addClass('error');
		jQuery('#error-messagebox').css("display", "block");
		jQuery('#error-content').html('Please enter your a valid Website  url');
		jQuery('#url').focus();
		return false;
		}
		else
		{
		jQuery("#url").removeClass('error');
		jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
		}
		
		
	}  
if(!isEmpty(file)) {		
		var ext = file.split('.').pop().toLowerCase();
			var allow = new Array('doc','docx','txt','rtf','pdf');
			if(jQuery.inArray(ext, allow) == -1) {
				 jQuery("#file").addClass('error');
				 
				
				jQuery('#error-messagebox').css("display", "block");
				jQuery('#error-content').html('Please select a doc, docx, txt, rtf or pdf file to upload.');
				jQuery('#file').focus();
				return false;
			}
			else
			{		
			jQuery("#file").removeClass('error');
			jQuery('#error-content').html('');
		jQuery('#error-messagebox').css("display", "none");
			}
	}  
	
	
if(error) 
{

return false;
}
else 
{

return true;
}
}

 //social-icon.js

jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	jQuery("<img>").attr("src", arguments[i]);
}
//jQuery.preloadImages("facebook.png", "facebook.png", "twitter.png", "twitter.png", "linkedin.png", "linkedin.png");

jQuery(document).ready(function(){
	
	jQuery("#iconbar li a").hover(
		function(){
			var iconName = jQuery(this).children("img").attr("src");
			var origen = iconName.split(".png")[0];
			jQuery(this).children("img").attr({src: "" + origen + ".png"});
			jQuery(this).css("cursor", "pointer");
			jQuery(this).animate({ width: "120px" }, {queue:false, duration:"normal"} );
			jQuery(this).children("span").animate({opacity: "show"}, "fast");
		}, 
		function(){
			var iconName = jQuery(this).children("img").attr("src");
			var origen = iconName.split(".png")[0];//iconName.split("o.")[0];
			jQuery(this).children("img").attr({src: "" + origen + ".png"});			
			jQuery(this).animate({ width: "22px" }, {queue:false, duration:"normal"} );
			jQuery(this).children("span").animate({opacity: "hide"}, "fast");
		});
});

 //fade-images.js

var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["images/logos/innerpage/religare.gif", "", ""] //plain image syntax
fadeimages[1]=["images/logos/innerpage/who.jpg", "", "_new"] //plain image syntax
fadeimages[2]=["images/logos/innerpage/aviva.gif", "", "_new"] //image with link syntax
fadeimages[3]=["images/logos/innerpage/klm-logo.jpg", "", "_new"] //image with link and target syntax
fadeimages[4]=["images/logos/innerpage/ea-sports.gif", "", "_new"] //plain image syntax
fadeimages[5]=["images/logos/innerpage/imt.jpg", "", "_new"] //plain image syntax
fadeimages[6]=["images/logos/innerpage/maruti.jpg", "", "_new"] //plain image syntax
fadeimages[7]=["images/logos/innerpage/amadeus.jpg", "", "_new"] //plain image syntax
fadeimages[8]=["images/logos/innerpage/satyam.jpg", "", "_new"] //plain image syntax
fadeimages[9]=["images/logos/innerpage/artdinox.jpg", "", "_new"] //plain image syntax
fadeimages[10]=["images/logos/innerpage/air-sahara.jpg", "", "_new"] //plain image syntax
fadeimages[11]=["images/logos/innerpage/icri.jpg", "", "_new"] //plain image syntax
fadeimages[12]=["images/logos/innerpage/energetic.jpg", "", "_new"] //plain image syntax
fadeimages[13]=["images/logos/innerpage/eros-group.jpg", "", "_new"] //plain image syntax 


var fadeimages5=new Array() //2nd array set example. Remove or add more sets as needed.
fadeimages5[0]=["images/logos/homepage/religare.jpg", "", "_new"] //image with link syntax
fadeimages5[1]=["images/logos/homepage/who.jpg", "", "_new"] //plain image syntax
fadeimages5[2]=["images/logos/homepage/aviva.jpg", "", "_new"] //image with link and target syntax
fadeimages5[3]=["images/logos/homepage/klm-logo.jpg", "", "_new"] //plain image syntax
fadeimages5[4]=["images/logos/homepage/ea-sports.jpg", "", "_new"] //plain image syntax
fadeimages5[5]=["images/logos/homepage/imt-ghaziabad.jpg", "", "_new"] //plain image syntax
fadeimages5[6]=["images/logos/homepage/maruti.jpg", "", "_new"] //plain image syntax
fadeimages5[7]=["images/logos/homepage/amadeus.jpg", "", "_new"] //plain image syntax
fadeimages5[8]=["images/logos/homepage/satyam.jpg", "", "_new"] //plain image syntax
fadeimages5[9]=["images/logos/homepage/artdinox.jpg", "", "_new"] //plain image syntax
fadeimages5[10]=["images/logos/homepage/air-sahara.jpg", "", "_new"] //plain image syntax
fadeimages5[11]=["images/logos/homepage/icri.jpg", "", "_new"] //plain image syntax
fadeimages5[12]=["images/logos/homepage/energetic.jpg", "", "_new"] //plain image syntax
fadeimages5[13]=["images/logos/homepage/eros-group.jpg", "", "_new"] //plain image syntax


var fadebgcolor="white"

////NO need to edit beyond here/////////////
 
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers
 
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
 
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
}
 
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
}
}

function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
}
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
}
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
}
}
 
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
}
 
 
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}
 
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
}
 
 
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
}
this.rotateimage()
}


 //stepcarousel.js

//Step Carousel Viewer: By Dynamic Drive, at http://www.dynamicdrive.com
//** Created: March 19th, 08'
//** Aug 16th, 08'- Updated to v 1.4:
	//1) Adds ability to set speed/duration of panel animation (in milliseconds)
	//2) Adds persistence support, so the last viewed panel is recalled when viewer returns within same browser session
	//3) Adds ability to specify whether panels should stop at the very last and first panel, or wrap around and start all over again
	//4) Adds option to specify two navigational image links positioned to the left and right of the Carousel Viewer to move the panels back and forth

//** Aug 27th, 08'- Nav buttons (if enabled) also repositions themselves now if window is resized

//** Sept 23rd, 08'- Updated to v 1.6:
	//1) Carousel now stops at the very last visible panel, instead of the last panel itself. In other words, no more white space at the end.
	//2) Adds ability for Carousel to auto rotate dictated by the new parameter: autostep: {enable:true, moveby:1, pause:3000}
	//2i) During Auto Rotate, Carousel pauses onMouseover, resumes onMouseout. Clicking Carousel halts auto rotate.

//** Oct 22nd, 08'- Updated to v 1.6.1, which fixes functions stepBy() and stepTo() not stopping auto stepping of Carousel when called.

var stepcarousel={
	ajaxloadingmsg: '<div style="margin: 1em; font-weight: bold"><img src="ajaxloadr.gif" style="vertical-align: middle" /> Fetching Content. Please wait...</div>', //customize HTML to show while fetching Ajax content
	defaultbuttonsfade: 0.4, //Fade degree for disabled nav buttons (0=completely transparent, 1=completely opaque)
	configholder: {},

	getCSSValue:function(val){ //Returns either 0 (if val contains 'auto') or val as an integer
		return (val=="auto")? 0 : parseInt(val)
	},

	getremotepanels:function($, config){ //function to fetch external page containing the panel DIVs
		config.$belt.html(this.ajaxloadingmsg)
		$.ajax({
			url: config.contenttype[1], //path to external content
			async: true,
			error:function(ajaxrequest){
				config.$belt.html('Error fetching content.<br />Server Response: '+ajaxrequest.responseText)
			},
			success:function(content){
				config.$belt.html(content)
				config.$panels=config.$gallery.find('.'+config.panelclass)
				stepcarousel.alignpanels($, config)
			}
		})
	},

	getoffset:function(what, offsettype){
		return (what.offsetParent)? what[offsettype]+this.getoffset(what.offsetParent, offsettype) : what[offsettype]
	},

	getCookie:function(Name){ 
		var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
		if (document.cookie.match(re)) //if cookie found
			return document.cookie.match(re)[0].split("=")[1] //return its value
		return null
	},

	setCookie:function(name, value){
		document.cookie = name+"="+value
	},

	fadebuttons:function(config, currentpanel){
		config.$leftnavbutton.fadeTo('fast', currentpanel==0? this.defaultbuttonsfade : 1)
		config.$rightnavbutton.fadeTo('fast', currentpanel==config.lastvisiblepanel? this.defaultbuttonsfade : 1)
	},

	addnavbuttons:function(config, currentpanel){
		config.$leftnavbutton=$('<img src="'+config.defaultbuttons.leftnav[0]+'">').css({zIndex:50, position:'absolute', left:config.offsets.left+config.defaultbuttons.leftnav[1]+'px', top:config.offsets.top+config.defaultbuttons.leftnav[2]+'px', cursor:'hand', cursor:'pointer'}).attr({title:'Back '+config.defaultbuttons.moveby+' panels'}).appendTo('body')
		config.$rightnavbutton=$('<img src="'+config.defaultbuttons.rightnav[0]+'">').css({zIndex:50, position:'absolute', left:config.offsets.left+config.$gallery.get(0).offsetWidth+config.defaultbuttons.rightnav[1]+'px', top:config.offsets.top+config.defaultbuttons.rightnav[2]+'px', cursor:'hand', cursor:'pointer'}).attr({title:'Forward '+config.defaultbuttons.moveby+' panels'}).appendTo('body')
		config.$leftnavbutton.bind('click', function(){ //assign nav button event handlers
			stepcarousel.stepBy(config.galleryid, -config.defaultbuttons.moveby)
		})
		config.$rightnavbutton.bind('click', function(){ //assign nav button event handlers
			stepcarousel.stepBy(config.galleryid, config.defaultbuttons.moveby)
		})
		if (config.panelbehavior.wraparound==false){ //if carousel viewer should stop at first or last panel (instead of wrap back or forth)
			this.fadebuttons(config, currentpanel)
		}
		return config.$leftnavbutton.add(config.$rightnavbutton)
	},

	stopautostep:function(config){
		clearTimeout(config.steptimer)
		clearTimeout(config.resumeautostep)
	},

	alignpanels:function($, config){
		var paneloffset=0
		config.paneloffsets=[paneloffset] //array to store upper left offset of each panel (1st element=0)
		config.panelwidths=[] //array to store widths of each panel
		config.$panels.each(function(index){ //loop through panels
			var $currentpanel=$(this)
			$currentpanel.css({float: 'none', position: 'absolute', left: paneloffset+'px'}) //position panel
			$currentpanel.bind('click', function(e){return config.onpanelclick(e.target)}) //bind onpanelclick() to onclick event
			paneloffset+=stepcarousel.getCSSValue($currentpanel.css('marginRight')) + parseInt($currentpanel.get(0).offsetWidth || $currentpanel.css('width')) //calculate next panel offset
			config.paneloffsets.push(paneloffset) //remember this offset
			config.panelwidths.push(paneloffset-config.paneloffsets[config.paneloffsets.length-2]) //remember panel width
		})
		config.paneloffsets.pop() //delete last offset (redundant)
		var addpanelwidths=0
		var lastpanelindex=config.$panels.length-1
		config.lastvisiblepanel=lastpanelindex
		for (var i=config.$panels.length-1; i>=0; i--){
			addpanelwidths+=(i==lastpanelindex? config.panelwidths[lastpanelindex] : config.paneloffsets[i+1]-config.paneloffsets[i])
			if (config.gallerywidth>addpanelwidths){
				config.lastvisiblepanel=i //calculate index of panel that when in 1st position reveals the very last panel all at once based on gallery width
			}
		}
		config.$belt.css({width: paneloffset+'px'}) //Set Belt DIV to total panels' widths
		config.currentpanel=(config.panelbehavior.persist)? parseInt(this.getCookie(window[config.galleryid+"persist"])) : 0 //determine 1st panel to show by default
		config.currentpanel=(typeof config.currentpanel=="number" && config.currentpanel<config.$panels.length)? config.currentpanel : 0
		if (config.currentpanel!=0){
			var endpoint=config.paneloffsets[config.currentpanel]+(config.currentpanel==0? 0 : config.beltoffset)
			config.$belt.css({left: -endpoint+'px'})
		}
		if (config.defaultbuttons.enable==true){ //if enable default back/forth nav buttons
			var $navbuttons=this.addnavbuttons(config, config.currentpanel)
			$(window).bind("load resize", function(){ //refresh position of nav buttons when page loads/resizes, in case offsets weren't available document.oncontentload
				config.offsets={left:stepcarousel.getoffset(config.$gallery.get(0), "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0), "offsetTop")}
				config.$leftnavbutton.css({left:config.offsets.left+config.defaultbuttons.leftnav[1]+'px', top:config.offsets.top+config.defaultbuttons.leftnav[2]+'px'})
				config.$rightnavbutton.css({left:config.offsets.left+config.$gallery.get(0).offsetWidth+config.defaultbuttons.rightnav[1]+'px', top:config.offsets.top+config.defaultbuttons.rightnav[2]+'px'})
			})
		}
		if (config.autostep && config.autostep.enable){ //enable auto stepping of Carousel?		
			var $carouselparts=config.$gallery.add(typeof $navbuttons!="undefined"? $navbuttons : null)
			$carouselparts.bind('click', function(){
				stepcarousel.stopautostep(config)
				config.autostep.status="stopped"
			})
			$carouselparts.hover(function(){ //onMouseover
				stepcarousel.stopautostep(config)
				config.autostep.hoverstate="over"
			}, function(){ //onMouseout
				if (config.steptimer && config.autostep.hoverstate=="over" && config.autostep.status!="stopped"){
					config.resumeautostep=setTimeout(function(){
						stepcarousel.autorotate(config.galleryid)
						config.autostep.hoverstate="out"
					}, 500)
				}
			})
			config.steptimer=setTimeout(function(){stepcarousel.autorotate(config.galleryid)}, config.autostep.pause) //automatically rotate Carousel Viewer
		} //end enable auto stepping check
		this.statusreport(config.galleryid)
		config.oninit()
		config.onslideaction(this)
	},

	stepTo:function(galleryid, pindex){ /*User entered pindex starts at 1 for intuitiveness. Internally pindex still starts at 0 */
		var config=stepcarousel.configholder[galleryid]
		if (typeof config=="undefined"){
			alert("There's an error with your set up of Carousel Viewer \""+galleryid+ "\"!")
			return
		}
		stepcarousel.stopautostep(config)
		var pindex=Math.min(pindex-1, config.paneloffsets.length-1)
		var endpoint=config.paneloffsets[pindex]+(pindex==0? 0 : config.beltoffset)
		if (config.panelbehavior.wraparound==false && config.defaultbuttons.enable==true){ //if carousel viewer should stop at first or last panel (instead of wrap back or forth)
			this.fadebuttons(config, pindex)
		}
		config.$belt.animate({left: -endpoint+'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)})
		config.currentpanel=pindex
		this.statusreport(galleryid)
	},

	stepBy:function(galleryid, steps){ //isauto if defined indicates stepBy() is being called automatically
		var config=stepcarousel.configholder[galleryid]
		if (typeof config=="undefined"){
			alert("There's an error with your set up of Carousel Viewer \""+galleryid+ "\"!")
			return
		}
		stepcarousel.stopautostep(config)
		var direction=(steps>0)? 'forward' : 'back' //If "steps" is negative, that means backwards
		var pindex=config.currentpanel+steps //index of panel to stop at
		if (config.panelbehavior.wraparound==false){ //if carousel viewer should stop at first or last panel (instead of wrap back or forth)
			pindex=(direction=="back" && pindex<=0)? 0 : (direction=="forward")? Math.min(pindex, config.lastvisiblepanel) : pindex
			if (config.defaultbuttons.enable==true){ //if default nav buttons are enabled, fade them in and out depending on if at start or end of carousel
				stepcarousel.fadebuttons(config, pindex)
			}	
		}
		else{ //else, for normal stepBy behavior
			if (pindex>config.lastvisiblepanel && direction=="forward"){
				//if destination pindex is greater than last visible panel, yet we're currently not at the end of the carousel yet
				pindex=(config.currentpanel<config.lastvisiblepanel)? config.lastvisiblepanel : 0
			}
			else if (pindex<0 && direction=="back"){
				//if destination pindex is less than 0, yet we're currently not at the beginning of the carousel yet
				pindex=(config.currentpanel>0)? 0 : config.lastvisiblepanel /*wrap around left*/
			}
		}
		var endpoint=config.paneloffsets[pindex]+(pindex==0? 0 : config.beltoffset) //left distance for Belt DIV to travel to
		if (pindex==0 && direction=='forward' || config.currentpanel==0 && direction=='back' && config.panelbehavior.wraparound==true){ //decide whether to apply "push pull" effect
			config.$belt.animate({left: -config.paneloffsets[config.currentpanel]-(direction=='forward'? 100 : -30)+'px'}, 'normal', function(){
				config.$belt.animate({left: -endpoint+'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)})
			})
		}
		else
			config.$belt.animate({left: -endpoint+'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)})
		config.currentpanel=pindex
		this.statusreport(galleryid)
	},

	autorotate:function(galleryid){
		var config=stepcarousel.configholder[galleryid]
		if (config.$gallery.attr('_ismouseover')!="yes"){
			this.stepBy(galleryid, config.autostep.moveby)
		}
		config.steptimer=setTimeout(function(){stepcarousel.autorotate(galleryid)}, config.autostep.pause)
	},

	statusreport:function(galleryid){
		var config=stepcarousel.configholder[galleryid]
		var startpoint=config.currentpanel //index of first visible panel 
		var visiblewidth=0
		for (var endpoint=startpoint; endpoint<config.paneloffsets.length; endpoint++){ //index (endpoint) of last visible panel
			visiblewidth+=config.panelwidths[endpoint]
			if (visiblewidth>config.gallerywidth){
				break
			}
		}
		startpoint+=1 //format startpoint for user friendiness
		endpoint=(endpoint+1==startpoint)? startpoint : endpoint //If only one image visible on the screen and partially hidden, set endpoint to startpoint
		var valuearray=[startpoint, endpoint, config.panelwidths.length]
		for (var i=0; i<config.statusvars.length; i++){
			window[config.statusvars[i]]=valuearray[i] //Define variable (with user specified name) and set to one of the status values
			config.$statusobjs[i].text(valuearray[i]+" ") //Populate element on page with ID="user specified name" with one of the status values
		}
	},

	setup:function(config){
		//Disable Step Gallery scrollbars ASAP dynamically (enabled for sake of users with JS disabled)
		document.write('<style type="text/css">\n#'+config.galleryid+'{overflow: hidden;}\n</style>')
		jQuery(document).ready(function($){
			config.$gallery=$('#'+config.galleryid)
			config.gallerywidth=config.$gallery.width()
			config.offsets={left:stepcarousel.getoffset(config.$gallery.get(0), "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0), "offsetTop")}
			config.$belt=config.$gallery.find('.'+config.beltclass) //Find Belt DIV that contains all the panels
			config.$panels=config.$gallery.find('.'+config.panelclass) //Find Panel DIVs that each contain a slide
			config.panelbehavior.wraparound=(config.autostep && config.autostep.enable)? true : config.panelbehavior.wraparound //if auto step enabled, set "wraparound" to true
			config.onpanelclick=(typeof config.onpanelclick=="undefined")? function(target){} : config.onpanelclick //attach custom "onpanelclick" event handler
			config.onslideaction=(typeof config.onslide=="undefined")? function(){} : function(beltobj){$(beltobj).stop(); config.onslide()} //attach custom "onslide" event handler
			config.oninit=(typeof config.oninit=="undefined")? function(){} : config.oninit //attach custom "oninit" event handler
			config.beltoffset=stepcarousel.getCSSValue(config.$belt.css('marginLeft')) //Find length of Belt DIV's left margin
			config.statusvars=config.statusvars || []  //get variable names that will hold "start", "end", and "total" slides info
			config.$statusobjs=[$('#'+config.statusvars[0]), $('#'+config.statusvars[1]), $('#'+config.statusvars[2])]
			config.currentpanel=0
			stepcarousel.configholder[config.galleryid]=config //store config parameter as a variable
			if (config.contenttype[0]=="ajax" && typeof config.contenttype[1]!="undefined") //fetch ajax content?
				stepcarousel.getremotepanels($, config)
			else
				stepcarousel.alignpanels($, config) //align panels and initialize gallery
		}) //end document.ready
		jQuery(window).bind('unload', function(){ //clean up
			if (config.panelbehavior.persist){
				stepcarousel.setCookie(window[config.galleryid+"persist"], config.currentpanel)
			}
			jQuery.each(config, function(ai, oi){
				oi=null
			})
			config=null
		})
	}
}




 //blogslider.js

stepcarousel.setup({
	galleryid: 'blogslider', //id of carousel DIV
	beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel', //class of panel DIVs each holding content
	autostep: {enable:false, moveby:1, pause:3000},
	panelbehavior: {speed:300, wraparound:false, persist:true},
	defaultbuttons: {enable: false, moveby: 1, leftnav: ['images/left-arrow.gif', 900, -30], rightnav: ['images/right-arrow.gif', -45, -30]},
	//statusvars: ['statusAlong', 'statusBlong', 'statusClong'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})

stepcarousel.setup({
	galleryid: 'facebookslider', //id of carousel DIV
	beltclass: 'facebelt', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'facepanel', //class of panel DIVs each holding content
	autostep: {enable:false, moveby:1, pause:3000},
	panelbehavior: {speed:300, wraparound:false, persist:true},
	defaultbuttons: {enable: false, moveby: 1, leftnav: ['images/left-arrow.gif', 900, -30], rightnav: ['images/right-arrow.gif', -45, -30]},
	//statusvars: ['statusAlong', 'statusBlong', 'statusClong'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})
stepcarousel.setup({
	galleryid: 'twitter_update_list', //id of carousel DIV
	beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel', //class of panel DIVs each holding content
	autostep: {enable:false, moveby:1, pause:3000},
	panelbehavior: {speed:300, wraparound:false, persist:true},
	defaultbuttons: {enable: false, moveby: 1, leftnav: ['images/left-arrow.gif', 900, -30], rightnav: ['images/right-arrow.gif', -45, -30]},
	//statusvars: ['statusAlong', 'statusBlong', 'statusClong'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})





 //contentslider.js

//** Featured Content Slider script- (c) Dynamic Drive DHTML code library: http://www.dynamicdrive.com.
//** May 2nd, 08'- Script rewritten and updated to 2.0.
//** June 12th, 08'- Script updated to v 2.3, which adds the following features:
			//1) Changed behavior of script to actually collapse the previous content when the active one is shown, instead of just tucking it underneath the later.
			//2) Added setting to reveal a content either via "click" or "mouseover" of pagination links (default is former).
			//3) Added public function for jumping to a particular slide within a Featured Content instance using an arbitrary link, for example.

//** July 11th, 08'- Script updated to v 2.4:
			//1) Added ability to select a particular slide when the page first loads using a URL parameter (ie: mypage.htm?myslider=4 to select 4th slide in "myslider")
			//2) Fixed bug where the first slide disappears when the mouse clicks or mouses over it when page first loads.

var featuredcontentslider={

//3 variables below you can customize if desired:
ajaxloadingmsg: '<div style="margin: 20px 0 0 20px"><img src="loading.gif" /> Fetching slider Contents. Please wait...</div>',
bustajaxcache: true, //bust caching of external ajax page after 1st request?
enablepersist: false, //persist to last content viewed when returning to page?

settingcaches: {}, //object to cache "setting" object of each script instance

jumpTo:function(fcsid, pagenumber){ //public function to go to a slide manually.
	this.turnpage(this.settingcaches[fcsid], pagenumber)
},

ajaxconnect:function(setting){
	var page_request = false
	if (window.ActiveXObject){ //Test for support for ActiveXObject in IE first (as XMLHttpRequest in IE7 is broken)
		try {
		page_request = new ActiveXObject("Msxml2.XMLHTTP")
		} 
		catch (e){
			try{
			page_request = new ActiveXObject("Microsoft.XMLHTTP")
			}
			catch (e){}
		}
	}
	else if (window.XMLHttpRequest) // if Mozilla, Safari etc
		page_request = new XMLHttpRequest()
	else
		return false
	var pageurl=setting.contentsource[1]
	page_request.onreadystatechange=function(){
		featuredcontentslider.ajaxpopulate(page_request, setting)
	}
	
	document.getElementById(setting.id).innerHTML=this.ajaxloadingmsg
	var bustcache=(!this.bustajaxcache)? "" : (pageurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
	page_request.open('GET', pageurl+bustcache, true)
	page_request.send(null)
},

ajaxpopulate:function(page_request, setting){
	if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
		
		document.getElementById(setting.id).innerHTML=page_request.responseText
		this.buildpaginate(setting)
	}
},

buildcontentdivs:function(setting){
	var alldivs=document.getElementById(setting.id).getElementsByTagName("div")
	for (var i=0; i<alldivs.length; i++){
		if (this.css(alldivs[i], "contentdiv", "check")){ //check for DIVs with class "contentdiv"
			setting.contentdivs.push(alldivs[i])
				alldivs[i].style.display="none" //collapse all content DIVs to begin with
		}
	}
},

buildpaginate:function(setting){
	this.buildcontentdivs(setting)
	var sliderdiv=document.getElementById(setting.id)
	var pdiv=document.getElementById("paginate-"+setting.id)
	var phtml=""
	var toc=setting.toc
	var nextprev=setting.nextprev
	if (typeof toc=="string" && toc!="markup" || typeof toc=="object"){
		for (var i=1; i<=setting.contentdivs.length; i++){
			phtml+='<a href="#'+i+'" class="toc">'+(typeof toc=="string"? toc.replace(/#increment/, i) : toc[i-1])+'</a> '
		}
		phtml=(nextprev[0]!=''? '<a href="#prev" class="prev">'+nextprev[0]+'</a> ' : '') + phtml + (nextprev[1]!=''? '<a href="#next" class="next">'+nextprev[1]+'</a>' : '')
		pdiv.innerHTML=phtml
	}
	var pdivlinks=pdiv.getElementsByTagName("a")
	var toclinkscount=0 //var to keep track of actual # of toc links
	for (var i=0; i<pdivlinks.length; i++){
		if (this.css(pdivlinks[i], "toc", "check")){
			if (toclinkscount>setting.contentdivs.length-1){ //if this toc link is out of range (user defined more toc links then there are contents)
				pdivlinks[i].style.display="none" //hide this toc link
				continue
			}
			pdivlinks[i].setAttribute("rel", ++toclinkscount) //store page number inside toc link
			pdivlinks[i][setting.revealtype]=function(){
				featuredcontentslider.turnpage(setting, this.getAttribute("rel"))
				return false
			}
			setting.toclinks.push(pdivlinks[i])
		}
		else if (this.css(pdivlinks[i], "prev", "check") || this.css(pdivlinks[i], "next", "check")){ //check for links with class "prev" or "next"
			pdivlinks[i].onclick=function(){
				featuredcontentslider.turnpage(setting, this.className)
				return false
			}
		}
	}
	this.turnpage(setting, setting.currentpage, true)
	if (setting.autorotate[0]){ //if auto rotate enabled
		pdiv[setting.revealtype]=function(){
			featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
		}
		sliderdiv["onclick"]=function(){ //stop content slider when slides themselves are clicked on
			featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
		}
		setting.autorotate[1]=setting.autorotate[1]+(1/setting.enablefade[1]*50) //add time to run fade animation (roughly) to delay between rotation
	 this.autorotate(setting)
	}
},

urlparamselect:function(fcsid){
	var result=window.location.search.match(new RegExp(fcsid+"=(\\d+)", "i")) //check for "?featuredcontentsliderid=2" in URL
	return (result==null)? null : parseInt(RegExp.$1) //returns null or index, where index (int) is the selected tab's index
},

turnpage:function(setting, thepage, autocall){
	var currentpage=setting.currentpage //current page # before change
	var totalpages=setting.contentdivs.length
	var turntopage=(/prev/i.test(thepage))? currentpage-1 : (/next/i.test(thepage))? currentpage+1 : parseInt(thepage)
	turntopage=(turntopage<1)? totalpages : (turntopage>totalpages)? 1 : turntopage //test for out of bound and adjust
	if (turntopage==setting.currentpage && typeof autocall=="undefined") //if a pagination link is clicked on repeatedly
		return
	setting.currentpage=turntopage
	var imageurl = setting.contentdivs[turntopage-1].style.backgroundImage;

	imageurl = imageurl.replace(/url\("/g, "");
	imageurl = imageurl.replace(/"\)/g, "");
	imageurl = imageurl.replace(/\/medium-/g, "/large-");
 
	//document.getElementById("fullview").href=imageurl;
	setting.contentdivs[turntopage-1].style.zIndex=++setting.topzindex
	this.cleartimer(setting, window["fcsfade"+setting.id])
	setting.cacheprevpage=setting.prevpage
	if (setting.enablefade[0]==true){
		setting.curopacity=0
		this.fadeup(setting)
	}
	if (setting.enablefade[0]==false){ //if fade is disabled, fire onChange event immediately (verus after fade is complete)
		setting.contentdivs[setting.prevpage-1].style.display="none" //collapse last content div shown (it was set to "block")
		setting.onChange(setting.prevpage, setting.currentpage)
	}
	setting.contentdivs[turntopage-1].style.visibility="visible"
	setting.contentdivs[turntopage-1].style.display="block"
	if (setting.prevpage<=setting.toclinks.length) //make sure pagination link exists (may not if manually defined via "markup", and user omitted)
		this.css(setting.toclinks[setting.prevpage-1], "selected", "remove")
	if (turntopage<=setting.toclinks.length) //make sure pagination link exists (may not if manually defined via "markup", and user omitted)
		this.css(setting.toclinks[turntopage-1], "selected", "add")
	setting.prevpage=turntopage
	if (this.enablepersist)
		this.setCookie("fcspersist"+setting.id, turntopage)
},

setopacity:function(setting, value){ //Sets the opacity of targetobject based on the passed in value setting (0 to 1 and in between)
	var targetobject=setting.contentdivs[setting.currentpage-1]
	if (targetobject.filters && targetobject.filters[0]){ //IE syntax
		if (typeof targetobject.filters[0].opacity=="number") //IE6
			targetobject.filters[0].opacity=value*100
		else //IE 5.5
			targetobject.style.filter="alpha(opacity="+value*100+")"
	}
	else if (typeof targetobject.style.MozOpacity!="undefined") //Old Mozilla syntax
		targetobject.style.MozOpacity=value
	else if (typeof targetobject.style.opacity!="undefined") //Standard opacity syntax
		targetobject.style.opacity=value
	setting.curopacity=value
},

fadeup:function(setting){
	if (setting.curopacity<1){
		this.setopacity(setting, setting.curopacity+setting.enablefade[1])
		window["fcsfade"+setting.id]=setTimeout(function(){featuredcontentslider.fadeup(setting)}, 50)
	}
	else{ //when fade is complete
		if (setting.cacheprevpage!=setting.currentpage) //if previous content isn't the same as the current shown div (happens the first time the page loads/ script is run)
			setting.contentdivs[setting.cacheprevpage-1].style.display="none" //collapse last content div shown (it was set to "block")
		setting.onChange(setting.cacheprevpage, setting.currentpage)
	}
},

cleartimer:function(setting, timervar){
	if (typeof timervar!="undefined"){
		clearTimeout(timervar)
		clearInterval(timervar)
		if (setting.cacheprevpage!=setting.currentpage){ //if previous content isn't the same as the current shown div
			setting.contentdivs[setting.cacheprevpage-1].style.display="none"
		}
	}
},

css:function(el, targetclass, action){
	var needle=new RegExp("(^|\\s+)"+targetclass+"($|\\s+)", "ig")
	if (action=="check")
		return needle.test(el.className)
	else if (action=="remove")
		el.className=el.className.replace(needle, "")
	else if (action=="add")
		el.className+=" "+targetclass
},

autorotate:function(setting){
 window["fcsautorun"+setting.id]=setInterval(function(){featuredcontentslider.turnpage(setting, "next")}, setting.autorotate[1])
},

getCookie:function(Name){ 
	var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
	if (document.cookie.match(re)) //if cookie found
		return document.cookie.match(re)[0].split("=")[1] //return its value
	return null
},

setCookie:function(name, value){
	document.cookie = name+"="+value

},


init:function(setting){
	var persistedpage=this.getCookie("fcspersist"+setting.id) || 1
	var urlselectedpage=this.urlparamselect(setting.id) //returns null or index from: mypage.htm?featuredcontentsliderid=index
	this.settingcaches[setting.id]=setting //cache "setting" object
	setting.contentdivs=[]
	setting.toclinks=[]
	setting.topzindex=0
	setting.currentpage=urlselectedpage || ((this.enablepersist)? persistedpage : 1)
	setting.prevpage=setting.currentpage
	setting.revealtype="on"+(setting.revealtype || "click")
	setting.curopacity=0
	setting.onChange=setting.onChange || function(){}
	if (setting.contentsource[0]=="inline")
		this.buildpaginate(setting)
	if (setting.contentsource[0]=="ajax")
		this.ajaxconnect(setting)
}

}
