/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},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 toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},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(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Unspecified error": "Erreur non spÃ©cifiÃ©e", "Your server has been successfully tested to support this feature.": "Le test a rÃ©ussi. Votre serveur supporte cette fonctionnalitÃ©.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "La configuration de votre systÃ¨me ne supporte pas cette fonctionnalitÃ©. La \x3ca href=\"http://drupal.org/node/15365\"\x3epage du manuel sur les URLs simplifiÃ©es\x3c/a\x3e apporte une aide supplÃ©mentaire.", "Testing clean URLs...": "Test des URLs simplifiÃ©es...", "An error occurred. \n@uri\n@text": "Une erreur s\'est produite. \n@uri\n@text", "An error occurred. \n@uri\n(no information available).": "Une erreur s\'est produite. \n@uri\n(aucune information supplÃ©mentaire)", "An HTTP error @status occurred. \n@uri": "Une erreur HTTP @status s\'est produite. \n@uri", "Drag to re-order": "Cliquer-dÃ©poser pour rÃ©-organiser", "Changes made in this table will not be saved until the form is submitted.": "Les modifications rÃ©alisÃ©es sur cette table ne seront enregistrÃ©s que lorsque le formulaire sera soumis.", "Select all rows in this table": "SÃ©lectionner toutes les lignes du tableau", "Deselect all rows in this table": "DÃ©sÃ©lectionner toutes les lignes du tableau", "Split summary at cursor": "CrÃ©er un rÃ©sumÃ© Ã  partir du curseur", "Join summary": "Fusionner le rÃ©sumÃ© et le corps du message", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "N\'oubliez pas de cliquer sur \x3cem\x3eEnregistrer les blocs\x3c/em\x3e pour confirmer les modifications apportÃ©es ici.", "Automatic alias": "Alias automatique" } };;
/* $Id: img_assist.js,v 1.6.4.2 2008/07/22 23:08:13 sun Exp $ */

Drupal.behaviors.img_assist = function(context) {
  $('textarea.img_assist:not(.img_assist-processed)', context).each(function() {
    // Drupal's teaser behavior is a destructive one and needs to be run first.
    if ($(this).is('textarea.teaser:not(.teaser-processed)')) {
      Drupal.behaviors.teaser(context);  
    }
    $(this).addClass('img_assist-processed').parent().append(Drupal.theme('img_assist_link', this));
  });
}

Drupal.theme.prototype.img_assist_link = function(el) {
  var html = '<div class="img_assist-button">', link = Drupal.t('Add image');
  if (Drupal.settings.img_assist.link == 'icon') {
    link = '<img src="'+ Drupal.settings.basePath + Drupal.settings.img_assist.icon +'" alt="'+ link +'" title="'+ link +'" />';
  }
  html += '<a href="'+ Drupal.settings.basePath +'index.php?q=img_assist/load/textarea&textarea='+ el.name +'" class="img_assist-link" id="img_assist-link-'+ el.id +'" title="'+ Drupal.t('Click here to add images') +'" onclick="window.open(this.href, \'img_assist_link\', \'width=600,height=350,scrollbars=yes,status=yes,resizable=yes,toolbar=no,menubar=no\'); return false;">'+ link +'</a>';
  html += '</div>';
  return html;
}

function launch_popup(nid, mw, mh) {
  var ox = mw;
  var oy = mh;
  if((ox>=screen.width) || (oy>=screen.height)) {
    var ox = screen.width-150;
    var oy = screen.height-150;
    var winx = (screen.width / 2)-(ox / 2);
    var winy = (screen.height / 2)-(oy / 2);
    var use_scrollbars = 1;
  }
  else {
    var winx = (screen.width / 2)-(ox / 2);
    var winy = (screen.height / 2)-(oy / 2);
    var use_scrollbars = 0;
  }
  var win = window.open(Drupal.settings.basePath + 'index.php?q=img_assist/popup/' + nid, 'imagev', 'height='+oy+'-10,width='+ox+',top='+winy+',left='+winx+',scrollbars='+use_scrollbars+',resizable');
}

;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());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{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1987, 1992, 1999, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a trademark of Linotype GmbH registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions.
 * 
 * Full name:
 * EurostileLTStd-Demi
 * 
 * Designer:
 * Aldo Novarese, A. Butti
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Eurostile LT Std","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 5 2 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-22 -357 457.416 90","underline-thickness":"18","underline-position":"-18","stemh":"32","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":126},"!":{"d":"78,-49r0,49r-45,0r0,-49r45,0xm81,-270r-3,180r-45,0r-3,-180r51,0","w":111},"\"":{"d":"18,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93xm103,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":170},"#":{"d":"102,-270r34,0r-14,76r39,0r14,-76r33,0r-14,76r32,0r0,41r-38,0r-9,48r37,0r0,41r-46,0r-12,64r-33,0r12,-64r-39,0r-12,64r-34,0r12,-64r-36,0r0,-41r44,0r9,-48r-38,0r0,-41r45,0xm114,-153r-9,48r40,0r9,-48r-40,0"},"$":{"d":"141,-116r0,76v45,0,55,-8,55,-41v0,-33,-21,-34,-55,-35xm141,-230r0,72v64,3,104,6,104,77v0,66,-32,83,-104,83r0,28r-29,0r0,-28v-94,-2,-104,-32,-103,-90r46,0v-2,42,9,50,57,48r0,-76v-65,-6,-101,-10,-101,-76v0,-71,35,-80,101,-80r0,-26r29,0r0,26v59,0,99,7,95,79r-46,0v1,-33,-9,-37,-49,-37xm112,-158r0,-72v-39,1,-52,1,-52,38v0,32,19,32,52,34"},"%":{"d":"258,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm258,-25v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-37,0,-27,29,-27,57v0,25,5,26,27,26xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-162v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm267,-270r-172,270r-33,0r171,-270r34,0","w":325},"&":{"d":"188,-57r-88,-74v-30,5,-30,18,-30,49v0,43,18,42,63,42v26,0,43,-1,55,-17xm254,0r-32,-28v-17,29,-53,30,-89,30v-69,0,-112,-6,-112,-84v0,-40,7,-70,52,-74v-18,-15,-23,-23,-23,-47v0,-60,31,-69,87,-69v68,0,83,12,83,84r-44,0v0,-37,-1,-42,-39,-42v-44,-10,-45,39,-22,59r86,75r0,-37r44,0v0,25,2,47,-5,69r38,34","w":281},"\u2019":{"d":"17,-176r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,15,100,-49,94","w":83,"k":{"\u2019":7,"t":-7,"s":7,"\u0161":7}},"(":{"d":"105,12r0,42v-80,0,-84,-30,-84,-114v0,-98,-35,-221,84,-212r0,42v-33,0,-35,16,-35,46r0,150v0,23,0,46,35,46","w":125},")":{"d":"20,-230r0,-42v80,0,84,30,84,114v0,98,35,221,-84,212r0,-42v33,0,35,-16,35,-46r0,-150v0,-23,0,-46,-35,-46","w":125},"*":{"d":"199,-208r-49,16r29,42r-21,16r-30,-43r-33,43r-21,-16r30,-42r-49,-18r9,-26r49,18r0,-52r27,0r0,52r50,-18"},"+":{"d":"88,-189r34,0r0,70r70,0r0,34r-70,0r0,70r-34,0r0,-70r-70,0r0,-34r70,0r0,-70","w":210},",":{"d":"32,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94","w":126},"-":{"d":"0,-117r96,0r0,35r-96,0r0,-35","w":95},".":{"d":"77,-49r0,49r-45,0r0,-49r45,0","w":126},"\/":{"d":"247,-270r-208,311r-41,0r209,-311r40,0","w":245},"0":{"d":"127,-272v81,0,112,17,112,113r0,49v0,96,-31,112,-112,112v-81,0,-112,-16,-112,-112r0,-50v0,-90,20,-112,112,-112xm127,-40v50,0,63,-3,63,-58r0,-74v0,-55,-13,-58,-63,-58v-51,0,-63,3,-63,58r0,74v0,55,12,58,63,58"},"1":{"d":"177,-270r0,270r-49,0r0,-227r-70,70r-30,-32r87,-81r62,0"},"2":{"d":"226,-42r0,42r-204,0r0,-51v0,-69,29,-73,89,-84v54,-9,66,-5,66,-54v0,-36,-12,-41,-50,-41v-47,0,-56,1,-56,56r-49,0v0,-66,6,-98,105,-98v64,0,99,12,99,83v0,71,-24,81,-91,91v-53,8,-66,9,-64,56r155,0"},"3":{"d":"21,-91r49,0v0,50,8,51,53,51v44,0,59,-1,59,-38v0,-46,-35,-40,-75,-40r0,-39v42,0,70,7,70,-45v0,-26,-12,-28,-54,-28v-45,0,-50,5,-50,47r-49,0v0,-78,27,-89,99,-89v51,0,103,0,103,70v0,32,-6,59,-42,63r0,2v37,3,47,24,47,59v0,75,-39,80,-108,80v-68,0,-102,-4,-102,-93"},"4":{"d":"207,-270r0,173r31,0r0,39r-31,0r0,58r-49,0r0,-58r-147,0r0,-56r119,-156r77,0xm158,-97v-2,-44,4,-96,-2,-136r-104,136r106,0"},"5":{"d":"76,-231v1,22,-2,47,1,67v12,-21,43,-22,64,-22v70,0,88,25,88,93v0,84,-27,95,-107,95v-66,0,-96,-10,-98,-80r49,0v0,37,20,38,53,38v47,0,54,-5,54,-52v0,-46,-7,-52,-54,-52v-26,0,-46,0,-50,18r-45,0r0,-144r188,0r0,39r-143,0"},"6":{"d":"125,-122v-39,0,-54,0,-54,33v0,43,6,49,54,49v45,0,54,-1,54,-43v0,-39,-10,-39,-54,-39xm22,-103r0,-79v1,-76,31,-90,103,-90v62,0,102,2,101,77r-49,0v0,-34,-14,-35,-52,-35v-65,0,-55,41,-53,91v8,-23,34,-26,60,-26v72,0,96,10,96,79v0,73,-26,88,-103,88v-80,0,-103,-13,-103,-105"},"7":{"d":"224,-270r0,50r-111,220r-55,0r116,-226r-151,0r0,-44r201,0"},"8":{"d":"127,-118v-51,0,-56,6,-56,38v0,34,6,40,56,40v50,0,57,-8,57,-40v0,-34,-7,-38,-57,-38xm127,2v-58,0,-105,-3,-105,-82v0,-31,10,-53,47,-60v-36,-8,-43,-25,-43,-60v0,-64,38,-72,101,-72v51,0,101,-4,101,72v0,34,-8,52,-42,61v35,5,47,26,47,59v0,76,-37,82,-106,82xm127,-158v38,0,52,2,52,-42v0,-30,-14,-30,-52,-30v-44,0,-52,3,-52,30v0,42,14,42,52,42"},"9":{"d":"126,-230v-47,0,-53,4,-53,43v0,35,6,39,53,39v47,0,57,-3,57,-39v0,-40,-16,-43,-57,-43xm22,-76r49,0v0,35,12,36,55,36v42,0,57,-1,57,-47v0,-14,2,-33,-1,-45v-12,22,-33,27,-68,27v-58,0,-90,-9,-90,-82v0,-67,20,-85,102,-85v89,0,105,22,105,115r0,79v0,68,-40,80,-105,80v-59,0,-104,-2,-104,-78"},":":{"d":"77,-49r0,49r-45,0r0,-49r45,0xm77,-189r0,49r-45,0r0,-49r45,0","w":126},";":{"d":"32,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94xm81,-189r0,49r-45,0r0,-49r45,0","w":126},"<":{"d":"18,-89r0,-25r174,-75r0,36r-125,51r125,51r0,36","w":210},"=":{"d":"18,-120r0,-34r174,0r0,34r-174,0xm18,-50r0,-34r174,0r0,34r-174,0","w":210},">":{"d":"192,-114r0,25r-174,74r0,-36r125,-51r-125,-51r0,-36","w":210},"?":{"d":"118,-86r-45,0v0,-42,3,-52,39,-67v25,-11,38,-12,38,-43v0,-35,-8,-38,-41,-38v-42,0,-47,9,-45,46r-45,0v-2,-68,19,-84,92,-84v53,0,85,10,85,76v0,40,-7,54,-48,71v-21,8,-32,12,-30,39xm118,-49r0,49r-45,0r0,-49r45,0","w":214},"@":{"d":"224,-198r28,0r-26,94v-2,11,2,18,15,18v27,0,46,-45,46,-66v0,-45,-44,-90,-101,-90v-72,0,-119,66,-119,116v0,80,92,119,170,87r11,27v-93,39,-216,-2,-216,-108v0,-79,69,-152,154,-152v68,0,133,49,133,119v0,59,-74,132,-118,74v-40,42,-95,16,-98,-33v-4,-54,79,-128,117,-68xm179,-176v-14,0,-41,20,-41,58v0,18,5,32,25,32v40,0,69,-89,16,-90","w":351},"A":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0","w":255},"B":{"d":"75,-118r0,74v47,-6,117,21,117,-36v0,-60,-71,-32,-117,-38xm243,-75v0,112,-128,65,-220,75r0,-270v88,10,214,-37,214,70v0,32,-8,51,-39,61v38,4,45,30,45,64xm75,-226r0,69v45,-5,110,20,110,-38v0,-54,-68,-23,-110,-31","w":257},"C":{"d":"236,-180r-52,0v2,-41,-5,-48,-58,-48v-78,0,-61,57,-61,121v0,54,7,65,61,65v49,0,64,-8,61,-55r52,0v7,89,-39,99,-113,99v-123,0,-114,-63,-113,-168v0,-86,33,-106,113,-106v72,0,112,8,110,92","w":250},"D":{"d":"22,0r0,-270r129,0v75,0,106,27,106,100v0,92,12,170,-97,170r-138,0xm74,-44r86,0v57,-3,42,-70,46,-126v5,-77,-70,-52,-132,-56r0,182","w":271},"E":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0","w":222},"F":{"d":"73,-226r0,72r120,0r0,42r-120,0r0,112r-52,0r0,-270r178,0r0,44r-126,0","w":209,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":58,".":58}},"G":{"d":"127,-143r120,0v2,99,4,145,-116,145v-86,0,-119,-15,-119,-106r0,-62v0,-90,35,-106,119,-106v66,0,118,-4,116,83r-52,0v0,-40,-19,-39,-64,-39v-88,0,-67,56,-67,124v0,57,9,62,67,62v54,0,66,-8,64,-62r-68,0r0,-39","w":261},"H":{"d":"253,-270r0,270r-52,0r0,-115r-125,0r0,115r-52,0r0,-270r52,0r0,111r125,0r0,-111r52,0","w":276},"I":{"d":"76,-270r0,270r-52,0r0,-270r52,0","w":99},"J":{"d":"137,-270r52,0r0,187v0,71,-26,85,-88,85v-55,0,-90,-7,-90,-69r0,-39r49,0v1,39,-9,64,41,64v31,0,36,-8,36,-41r0,-187","w":209},"K":{"d":"76,-270r0,110r24,0r90,-110r63,0r-109,132r121,138r-66,0r-99,-116r-24,0r0,116r-52,0r0,-270r52,0","w":257},"L":{"d":"76,-270r0,226r126,0r0,44r-178,0r0,-270r52,0","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"M":{"d":"289,-228r-85,228r-46,0r-87,-226r5,226r-52,0r0,-270r83,0r73,201r2,0r72,-201r85,0r0,270r-52,0r4,-228r-2,0","w":362},"N":{"d":"225,-44r-3,-226r52,0r0,270r-86,0r-115,-226r-2,0r5,226r-52,0r0,-270r85,0","w":297},"O":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54","w":257},"P":{"d":"20,0r0,-270r120,0v72,0,96,17,96,93v0,105,-73,89,-164,90r0,87r-52,0xm72,-132v50,-5,123,20,112,-45v11,-67,-59,-45,-112,-49r0,94","w":246,"k":{"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,",":65,".":65}},"Q":{"d":"279,-36r-21,30r-24,-17v-26,26,-65,25,-96,25v-84,0,-116,-14,-119,-103r0,-73v0,-84,39,-98,119,-98v64,0,119,3,119,98v0,45,4,76,-5,120xm147,-127r57,40r2,-87v0,-49,-17,-54,-68,-54v-46,0,-67,3,-67,54r0,73v0,56,14,59,67,59v19,0,40,1,54,-11r-67,-43","w":275},"R":{"d":"188,-50v5,-54,-67,-36,-114,-39r0,89r-52,0r0,-270v95,7,220,-33,220,81v0,41,-5,68,-48,77v55,1,44,59,45,112r-51,0r0,-50xm74,-134v52,-5,125,20,116,-47v10,-67,-65,-39,-116,-45r0,92","w":259,"k":{"T":-2,"V":-3,"W":-4,"y":-7,"\u00fd":-7,"\u00ff":-7}},"S":{"d":"12,-86r52,0v-2,41,6,47,61,46v47,0,54,-9,54,-40v0,-39,-21,-34,-61,-36v-58,-4,-105,-2,-105,-80v0,-74,47,-76,112,-76v58,0,104,6,100,81r-52,0v2,-34,-8,-39,-48,-39v-51,0,-60,5,-60,34v0,33,7,35,60,38v83,5,105,9,105,78v0,76,-36,82,-105,82v-65,0,-119,-4,-113,-88","w":242},"T":{"d":"132,-226r0,226r-52,0r0,-226r-79,0r0,-44r210,0r0,44r-79,0","w":211,"k":{"\u00fc":22,"\u0161":22,"\u00f2":31,"\u00f6":31,"\u00e8":31,"\u00eb":31,"\u00ea":31,"\u00e3":31,"\u00e5":31,"\u00e0":31,"\u00e4":31,"\u00e2":31,"w":18,"y":18,"\u00fd":18,"\u00ff":18,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":43,".":43,"c":31,"\u00e7":31,"e":31,"\u00e9":31,"o":31,"\u00f8":31,"\u0153":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"r":21,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22,"-":25,"a":31,"\u00e6":31,"\u00e1":31,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,"s":22,":":16,";":16}},"U":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192","w":271},"V":{"d":"194,-270r54,0r-87,270r-79,0r-86,-270r53,0r73,227","w":243,"k":{"\u00f6":14,"\u00f4":14,"\u00e8":14,"\u00eb":14,"\u00ea":14,"\u00e3":14,"\u00e5":14,"\u00e0":14,"\u00e4":14,"\u00e2":14,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":36,".":36,"e":14,"\u00e9":14,"o":14,"\u00f8":14,"\u0153":14,"\u00f3":14,"\u00f2":14,"\u00f5":14,"r":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"a":14,"\u00e6":14,"\u00e1":14,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,":":4,";":4}},"W":{"d":"291,-42r59,-228r52,0r-73,270r-74,0r-54,-206r-2,0r-56,206r-74,0r-70,-270r52,0r57,228r62,-228r60,0","w":400,"k":{"\u00fc":6,"\u00f6":11,"\u00ea":11,"\u00e4":8,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":30,".":30,"e":11,"\u00e9":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u0153":11,"\u00f3":11,"\u00f4":11,"\u00f2":11,"\u00f5":11,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"i":-12,"\u0131":-12,"\u00ed":-12,"\u00ee":-12,"\u00ef":-12,"\u00ec":-12}},"X":{"d":"247,-270r-80,131r86,139r-59,0r-68,-114r-69,114r-61,0r89,-139r-82,-131r60,0r63,107r62,-107r59,0","w":249},"Y":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0","w":241,"k":{"\u00fc":26,"\u00f6":36,"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"Z":{"d":"222,-270r0,44r-149,182r151,0r0,44r-215,0r0,-44r148,-182r-142,0r0,-44r207,0","w":233},"[":{"d":"21,-272r84,0r0,39r-35,0r0,248r35,0r0,39r-84,0r0,-326","w":125},"\\":{"d":"78,41r-96,-311r41,0r95,311r-40,0","w":100},"]":{"d":"104,54r-83,0r0,-39r34,0r0,-248r-34,0r0,-39r83,0r0,326","w":125},"^":{"d":"93,-270r25,0r74,175r-36,0r-51,-126r-51,126r-36,0","w":210},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"\u2018":{"d":"66,-272r0,21v-13,0,-21,4,-21,24r18,0r0,49r-46,0v3,-48,-16,-100,49,-94","w":83,"k":{"\u2018":7}},"a":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0","w":212},"b":{"d":"112,-157v-39,0,-46,17,-46,57v0,45,0,68,46,68v41,0,40,-25,40,-68v0,-48,-9,-57,-40,-57xm21,0r0,-270r45,0v2,34,-4,76,2,106v10,-23,34,-27,57,-27v65,0,72,36,72,91v0,58,-2,102,-72,102v-29,0,-45,-9,-61,-30r2,28r-45,0","w":213},"c":{"d":"142,-72r45,0v0,62,-22,74,-86,74v-69,0,-84,-20,-84,-96v0,-66,10,-97,84,-97v56,0,86,8,86,68r-45,0v0,-29,-9,-34,-41,-34v-39,0,-39,14,-39,63v0,47,-1,62,39,62v37,0,41,-7,41,-40","w":198},"d":{"d":"100,-157v-31,0,-40,9,-40,57v0,43,-1,68,40,68v46,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm146,0v-1,-9,5,-23,0,-28v-12,25,-32,30,-59,30v-70,0,-72,-44,-72,-102v0,-55,7,-91,72,-91v25,0,46,8,59,27r0,-106r45,0r0,270r-45,0","w":213},"e":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42","w":205},"f":{"d":"123,-189r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0r0,35v-39,-3,-51,9,-45,46r46,0","w":125,"k":{"\u2019":-7,"f":-4,"\ufb01":-4,"\ufb02":-4,"\u00df":-4}},"g":{"d":"101,-157v-31,0,-41,9,-41,57v0,43,1,68,41,68v45,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm101,49v55,0,48,-34,46,-76v-12,25,-37,29,-60,29v-65,0,-72,-36,-72,-91v0,-58,2,-102,72,-102v28,-1,47,7,61,30r-2,-28r46,0r0,189v0,68,-22,84,-91,84v-46,0,-81,-8,-78,-65r43,0v0,26,9,30,35,30","w":213},"h":{"d":"68,-270r1,109v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-270r46,0","w":215},"i":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm65,-270r0,39r-45,0r0,-39r45,0","w":84},"j":{"d":"63,-189r0,193v4,43,-21,70,-67,60r0,-32v20,0,22,-10,22,-23r0,-198r45,0xm63,-270r0,39r-45,0r0,-39r45,0","w":81},"k":{"d":"67,-270r0,154r11,0r53,-73r52,0r-67,89r80,100r-55,0r-63,-85r-11,0r0,85r-45,0r0,-270r45,0","w":194},"l":{"d":"68,-270r0,270r-45,0r0,-270r45,0","w":90},"m":{"d":"23,-189r44,0v1,8,-2,21,1,27v10,-24,35,-29,59,-29v25,-1,51,8,58,33v9,-26,35,-33,60,-33v99,0,56,112,65,191r-45,0r0,-123v-1,-24,-7,-34,-32,-34v-73,-2,-34,97,-44,157r-45,0r0,-123v-1,-24,-7,-34,-32,-34v-73,-2,-34,97,-44,157r-45,0r0,-189","w":332},"n":{"d":"22,-189r46,0v1,9,-2,21,1,28v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-189","w":215},"o":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63","w":209},"p":{"d":"112,-32v31,0,41,-9,41,-57v0,-43,0,-68,-41,-68v-46,0,-45,23,-45,68v0,40,6,57,45,57xm67,-189v1,9,-5,23,0,28v12,-25,32,-30,59,-30v70,0,72,44,72,102v0,55,-7,91,-72,91v-25,0,-46,-8,-59,-27r0,107r-45,0r0,-271r45,0","w":214},"q":{"d":"102,-157v-31,0,-40,9,-40,57v0,43,-1,68,40,68v46,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm193,-189r0,271r-46,0v-2,-34,4,-77,-2,-107v-10,23,-33,27,-56,27v-65,0,-73,-36,-73,-91v0,-58,3,-102,73,-102v28,-1,46,7,60,30r-2,-28r46,0","w":214},"r":{"d":"19,-189r44,0v1,8,-4,21,1,25v9,-21,28,-27,50,-27v46,0,52,30,50,74r-42,0v0,-22,2,-41,-23,-40v-27,0,-35,16,-35,40r0,117r-45,0r0,-189","w":169,"k":{"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"f":-3,"\ufb01":-3,"\ufb02":-3,"\u00df":-3,",":40,".":40,"c":-3,"\u00e7":-3,"d":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"g":-3,"h":-3,"m":-3,"n":-3,"\u00f1":-3,"o":-3,"\u00f8":-3,"\u0153":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"q":-3,"r":-3,"t":-3,"u":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u00f9":-3,"x":-3,"z":-3,"\u017e":-3,"-":-18}},"s":{"d":"183,-138r-46,0v0,-23,-12,-22,-36,-22v-24,0,-41,0,-41,25v0,19,5,19,45,21v45,2,84,-1,84,60v0,51,-40,56,-88,56v-51,0,-86,1,-86,-61r45,0v1,27,8,30,41,30v27,0,43,1,43,-25v0,-17,-1,-25,-47,-26v-69,-1,-82,-10,-82,-58v0,-52,37,-53,86,-53v37,0,82,0,82,53","w":200},"t":{"d":"-1,-154r0,-35r24,0r0,-43r45,0r0,43r73,0r0,35r-73,0r0,96v0,17,1,26,20,26v26,0,23,-20,23,-40r39,0v1,57,-13,74,-62,74v-91,0,-60,-85,-65,-156r-24,0","w":153},"u":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189","w":213},"v":{"d":"179,-189r-55,189r-69,0r-57,-189r47,0r45,158r41,-158r48,0","w":176,"k":{",":18,".":18}},"w":{"d":"286,-189r-43,189r-65,0r-35,-152r-34,152r-65,0r-43,-189r44,0r33,158r37,-158r57,0r36,158r2,0r32,-158r44,0","w":286,"k":{",":22,".":22}},"x":{"d":"175,-189r-55,90r61,99r-53,0r-38,-69r-38,69r-54,0r62,-99r-55,-90r52,0r33,60r33,-60r52,0","w":180},"y":{"d":"176,-189r-49,197v-8,49,-29,85,-91,74r0,-34v34,7,43,-23,46,-48r-22,0r-62,-189r47,0r49,161r36,-161r46,0","w":174,"k":{",":22,".":22}},"z":{"d":"163,-151r-102,116r102,0r0,35r-155,0r0,-39r101,-115r-93,0r0,-35r147,0r0,38","w":171},"{":{"d":"13,-94r0,-34v7,0,30,0,30,-16r0,-80v7,-48,32,-50,75,-48r0,34v-67,-15,5,124,-64,128v11,1,34,4,34,37r0,74v-4,14,12,21,30,18r0,35v-43,2,-75,1,-75,-48r0,-80v0,-20,-23,-20,-30,-20","w":140},"|":{"d":"68,-270r0,360r-35,0r0,-360r35,0","w":100},"}":{"d":"127,-125r0,35v-7,0,-30,0,-30,16r0,80v-7,49,-32,50,-75,48r0,-35v67,16,-5,-123,64,-127v-11,-1,-34,-4,-34,-37r0,-74v4,-14,-11,-22,-30,-19r0,-34v44,-2,75,-1,75,48r0,80v0,20,23,19,30,19","w":140},"~":{"d":"162,-124r30,0v0,37,-32,73,-70,48v-19,-8,-38,-26,-60,-26v-10,0,-13,15,-14,23r-30,0v-2,-34,33,-71,69,-51v17,10,38,28,60,28v13,0,15,-13,15,-22","w":210},"\u00a1":{"d":"78,-189r0,49r-45,0r0,-49r45,0xm30,81r3,-180r45,0r3,180r-51,0","w":111},"\u00a2":{"d":"115,-63r0,-124v-28,5,-29,31,-29,63v0,35,1,57,29,61xm140,-28r0,30r-25,0r0,-30v-67,0,-74,-39,-74,-96v0,-59,6,-97,74,-98r0,-24r25,0r0,24v48,0,72,19,73,69r-45,0v-1,-24,-6,-30,-28,-34r0,124v25,-3,29,-11,28,-39r45,0v2,52,-14,73,-73,74"},"\u00a3":{"d":"174,-141r0,39r-72,0v1,29,2,47,-20,61r162,-3r0,44r-219,0r0,-42v30,-4,28,-30,28,-60r-35,0r0,-39r35,0v-3,-84,3,-131,91,-131v69,0,102,11,98,87r-49,0v1,-33,-1,-45,-45,-45v-57,0,-45,42,-46,89r72,0"},"\u2044":{"d":"204,-270r-171,270r-34,0r171,-270r34,0","w":203},"\u00a5":{"d":"201,-193r34,0r0,39r-56,0r-19,31r75,0r0,39r-85,0r0,84r-49,0r0,-84r-82,0r0,-39r72,0r-18,-31r-54,0r0,-39r32,0r-43,-77r56,0r63,115r62,-115r57,0"},"\u0192":{"d":"226,-272r-6,34v-46,-9,-49,26,-54,63r42,0r-5,35r-43,0r-29,166v-10,58,-39,58,-103,58r6,-35v43,0,45,0,51,-32r28,-157r-33,0r6,-35r32,0r6,-30v12,-69,36,-67,102,-67"},"\u00a7":{"d":"189,-91v0,-38,-68,-35,-102,-47v-20,0,-22,17,-22,33v2,44,66,32,104,46v18,0,20,-16,20,-32xm24,0r47,0v1,34,1,41,56,41v48,0,58,-6,58,-32v0,-23,-10,-24,-29,-30v-53,-17,-137,-3,-137,-79v0,-23,3,-46,29,-52v-18,-11,-20,-30,-20,-52v0,-63,34,-68,99,-68v64,0,101,7,97,79r-47,0v-1,-33,-6,-37,-50,-37v-45,0,-50,6,-50,26v-2,44,65,31,96,46v39,9,62,13,62,58v1,23,-6,48,-26,57v23,8,25,29,25,52v0,74,-44,75,-107,75v-71,0,-105,-9,-103,-84"},"\u00a4":{"d":"89,-189v16,-14,59,-13,76,0r28,-28r25,24r-29,28v13,12,11,66,-1,76r28,27r-25,24r-28,-28v-15,12,-55,16,-73,-1r-28,29r-25,-24r29,-28v-17,-19,-16,-57,-1,-74r-29,-28r25,-25xm89,-125v1,21,19,36,38,36v57,0,46,-74,0,-76v-23,0,-39,20,-38,40"},"'":{"d":"18,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":85},"\u201c":{"d":"136,-272r0,21v-13,0,-22,4,-22,24r18,0r0,49r-45,0v3,-48,-16,-100,49,-94xm66,-272r0,21v-13,0,-21,4,-21,24r18,0r0,49r-46,0v3,-48,-16,-100,49,-94","w":152},"\u00ab":{"d":"66,-194r30,17r-38,78r41,76r-30,18r-51,-94xm139,-194r31,17r-39,78r41,76r-29,18r-51,-94","w":190},"\u2039":{"d":"66,-194r30,17r-38,78r41,76r-30,18r-51,-94","w":117},"\u203a":{"d":"51,-194r48,95r-52,94r-29,-18r41,-76r-38,-78","w":117},"\ufb01":{"d":"190,-270r0,39r-45,0r0,-39r45,0xm190,-189r0,189r-45,0r0,-189r45,0xm122,-270r0,35v-39,-3,-51,9,-45,46r46,0r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0","w":210},"\ufb02":{"d":"192,-270r0,270r-46,0r0,-270r46,0xm123,-189r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0r0,35v-39,-3,-51,9,-45,46r46,0","w":214},"\u2013":{"d":"0,-117r180,0r0,35r-180,0r0,-35","w":180},"\u2020":{"d":"151,-270r0,80r70,0r0,39r-70,0r0,233r-49,0r0,-233r-69,0r0,-39r69,0r0,-80r49,0"},"\u2021":{"d":"151,-270r0,85r70,0r0,39r-70,0r0,100r70,0r0,39r-70,0r0,89r-49,0r0,-89r-69,0r0,-39r69,0r0,-100r-69,0r0,-39r69,0r0,-85r49,0"},"\u00b7":{"d":"86,-127r0,50r-45,0r0,-50r45,0","w":126},"\u00b6":{"d":"249,82r-39,0r0,-310r-31,0r0,310r-39,0r0,-168v-84,0,-141,7,-141,-90v0,-79,25,-94,100,-94r150,0r0,352xm140,-129r0,-99v-51,3,-103,-14,-92,52v-7,62,43,44,92,47"},"\u2022":{"d":"161,-135v0,37,-30,67,-67,67v-37,0,-68,-29,-68,-67v0,-37,30,-68,68,-68v37,0,67,31,67,68","w":187},"\u201a":{"d":"17,45r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,16,100,-49,94","w":90},"\u201e":{"d":"17,45r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,16,100,-49,94xm85,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94","w":152},"\u201d":{"d":"17,-176r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,15,100,-49,94xm87,-176r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,15,100,-49,94","w":152},"\u00bb":{"d":"125,-194r47,95r-51,94r-29,-18r40,-76r-38,-78xm51,-194r48,95r-52,94r-29,-18r41,-76r-38,-78","w":190},"\u2026":{"d":"83,-49r0,49r-46,0r0,-49r46,0xm203,-49r0,49r-46,0r0,-49r46,0xm323,-49r0,49r-46,0r0,-49r46,0","w":360},"\u2030":{"d":"397,-135v59,0,62,32,60,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm397,-25v36,8,30,-28,30,-59v0,-23,-6,-24,-30,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm258,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm258,-25v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-37,0,-27,29,-27,57v0,25,5,26,27,26xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-162v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm267,-270r-172,270r-33,0r171,-270r34,0","w":465},"\u00bf":{"d":"96,-102r46,0v0,42,-4,52,-40,67v-25,11,-38,12,-38,43v0,35,8,38,41,38v42,0,47,-9,45,-46r46,0v2,68,-20,84,-92,84v-53,0,-85,-10,-85,-76v0,-40,7,-54,48,-71v21,-8,30,-12,29,-39xm142,-189r0,49r-46,0r0,-49r46,0","w":214},"`":{"d":"43,-267r64,41r-10,19r-70,-31","w":133},"\u00b4":{"d":"90,-267r17,29r-70,31r-10,-19","w":133},"\u02c6":{"d":"91,-267r64,39r-9,18r-55,-23r-55,23r-9,-18","w":182},"\u02dc":{"d":"144,-253r22,12v-9,17,-20,31,-41,31v-29,-1,-60,-40,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":193},"\u00af":{"d":"27,-248r99,0r0,27r-99,0r0,-27","w":153},"\u02d8":{"d":"27,-262r24,0v5,40,69,40,74,0r24,0v-2,32,-29,58,-61,58v-32,0,-59,-26,-61,-58","w":176},"\u02d9":{"d":"63,-250r0,31r-36,0r0,-31r36,0","w":89},"\u00a8":{"d":"27,-250r36,0r0,31r-36,0r0,-31xm100,-250r36,0r0,31r-36,0r0,-31","w":163},"\u02da":{"d":"27,-236v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm43,-236v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":120},"\u00b8":{"d":"68,4r16,23r-47,19r-10,-17","w":110},"\u02dd":{"d":"72,-274r26,23r-56,52r-15,-14xm141,-274r26,23r-55,52r-16,-14","w":193},"\u02db":{"d":"54,-1v10,2,26,-3,32,2v-13,6,-35,20,-35,32v1,17,22,17,34,10r0,23v-24,10,-58,0,-58,-28v0,-18,12,-30,27,-39","w":112},"\u02c7":{"d":"91,-210r-64,-39r9,-18r55,23r55,-23r9,18","w":182},"\u2014":{"d":"0,-117r360,0r0,35r-360,0r0,-35","w":360},"\u00c6":{"d":"184,-90r0,-136r-27,0r-65,136r92,0xm184,0r0,-51r-108,0r-25,51r-57,0r127,-270r246,0r0,44r-132,0r0,69r124,0r0,40r-124,0r0,73r132,0r0,44r-183,0","w":381},"\u00aa":{"d":"100,-157v0,-3,2,-9,0,-11v-21,24,-84,20,-79,-23v-4,-42,54,-45,78,-26v-1,-20,7,-35,-22,-35v-13,0,-22,0,-21,15r-31,0v0,-36,26,-35,52,-35v32,0,53,4,53,39r0,76r-30,0xm75,-175v15,0,25,-2,25,-17v0,-13,-9,-15,-25,-15v-12,0,-23,0,-23,14v0,17,8,18,23,18","w":158},"\u0141":{"d":"76,-146r0,102r126,0r0,44r-178,0r0,-103r-29,27r0,-41r29,-27r0,-126r52,0r0,84r58,-54r0,41","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"\u00d8":{"d":"271,-279r0,41r-21,19v7,23,6,48,6,80v0,112,-10,141,-119,141v-49,0,-76,1,-100,-25r-37,32r0,-39r22,-20v-6,-15,-6,-59,-6,-89v0,-94,3,-133,121,-133v34,0,73,0,98,26xm204,-177r-128,119v5,16,39,16,61,16v70,0,67,-17,67,-94r0,-41xm68,-91r128,-120v-12,-16,-32,-17,-59,-17v-94,0,-64,66,-69,137","w":271},"\u0152":{"d":"131,-42v89,0,69,-55,69,-124v0,-55,-9,-62,-69,-62v-94,0,-65,58,-65,124v0,58,8,62,65,62xm252,-226r0,69r125,0r0,40r-125,0r0,73r132,0r0,44r-181,0v-1,-9,3,-22,0,-29v-17,28,-46,31,-80,31v-118,0,-109,-73,-109,-179v0,-72,33,-95,109,-95v27,-1,65,3,81,33r-1,-31r180,0r0,44r-131,0","w":397},"\u00ba":{"d":"79,-272v45,0,56,10,56,57v0,42,-6,60,-56,60v-45,0,-55,-10,-55,-60v0,-42,6,-57,55,-57xm79,-249v-23,0,-24,8,-24,34v0,33,1,36,24,36v24,0,25,-12,25,-36v0,-29,-2,-34,-25,-34","w":158},"\u00e6":{"d":"188,-115r84,0v0,-39,-6,-42,-43,-42v-39,0,-41,9,-41,42xm100,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm141,-94v1,-31,12,-66,-39,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v15,-1,56,0,65,24v8,-23,43,-24,62,-24v78,0,89,23,89,105r-130,0v0,41,0,54,41,54v25,0,43,0,43,-28r46,0v0,59,-35,62,-89,62v-26,1,-58,-4,-69,-30v-10,29,-45,30,-76,30v-43,0,-70,-9,-70,-60v0,-45,23,-58,70,-58v23,0,46,0,57,22","w":331},"\u0131":{"d":"65,-189r0,189r-45,0r0,-189r45,0","w":84},"\u0142":{"d":"72,-152r0,152r-46,0r0,-115r-26,25r0,-32r26,-24r0,-124r46,0r0,86r26,-24r0,32","w":97},"\u00f8":{"d":"209,-194r0,29r-19,15v7,79,20,152,-83,152v-24,0,-59,0,-75,-21r-31,27r0,-29r20,-18v-5,-18,-5,-37,-5,-56v0,-75,10,-96,89,-96v24,0,58,0,74,21xm107,-32v45,0,42,-43,41,-85r-81,71v4,15,27,14,40,14xm103,-157v-46,0,-45,43,-41,86r82,-71v-4,-15,-28,-15,-41,-15","w":209},"\u0153":{"d":"103,-157v-39,0,-43,6,-43,63v0,54,6,62,43,62v39,0,42,-8,42,-62v0,-59,-3,-63,-42,-63xm14,-94v0,-64,5,-97,90,-97v19,-1,55,2,65,26v10,-24,42,-26,64,-26v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,42,0,42,-28r46,0v0,59,-34,62,-88,62v-27,1,-53,-3,-65,-27v-12,27,-38,27,-64,27v-77,0,-90,-23,-90,-96xm191,-115r84,0v0,-39,-5,-42,-42,-42v-39,0,-42,9,-42,42","w":335},"\u00df":{"d":"24,0r0,-185v0,-64,7,-87,86,-87v40,0,79,8,79,56v1,30,-18,42,-43,49v48,3,56,37,56,78v0,53,-11,91,-71,91v-14,0,-27,-3,-40,-7r0,-37v33,24,66,2,66,-47v0,-48,-12,-64,-58,-61r0,-31v28,1,47,-1,48,-35v0,-21,-20,-25,-41,-25v-28,0,-37,7,-37,35r0,206r-45,0","w":218},"\u00b9":{"d":"111,-272r0,162r-34,0r0,-134r-42,42r-18,-21r52,-49r42,0","w":152},"\u00ac":{"d":"158,-44r0,-76r-140,0r0,-34r174,0r0,110r-34,0","w":210},"\u00b5":{"d":"191,0r-44,0v-1,-9,2,-22,-1,-29v-13,30,-43,33,-78,30r0,81r-45,0r0,-271r45,0r0,119v0,27,3,38,32,38v74,0,38,-96,46,-157r45,0r0,189","w":213},"\u2122":{"d":"334,-270r0,145r-31,0r-1,-117r-42,117r-19,0r-43,-117r0,117r-31,0r0,-145r51,0r33,86r32,-86r51,0xm149,-270r0,28r-44,0r0,117r-35,0r0,-117r-44,0r0,-28r123,0","w":360},"\u00d0":{"d":"74,-226r0,68r63,0r0,39r-63,0r0,75r86,0v57,-3,42,-70,46,-126v5,-77,-70,-52,-132,-56xm22,-158r0,-112r129,0v75,0,106,27,106,100v0,92,12,170,-97,170r-138,0r0,-119r-32,0r0,-39r32,0","w":271},"\u00bd":{"d":"288,-270r-171,270r-33,0r170,-270r34,0xm108,-270r0,162r-34,0r0,-134r-42,42r-18,-21r52,-49r42,0xm363,-28r0,28r-122,0v-3,-51,4,-80,53,-80v28,-6,35,-2,35,-32v0,-21,-7,-24,-26,-24v-23,0,-28,1,-28,33r-34,0v0,-40,3,-59,62,-59v38,0,60,7,60,50v0,43,-14,49,-54,55v-28,4,-35,4,-34,29r88,0","w":380},"\u00b1":{"d":"88,-189r34,0r0,49r70,0r0,34r-70,0r0,49r-34,0r0,-49r-70,0r0,-34r70,0r0,-49xm18,0r0,-35r174,0r0,35r-174,0","w":210},"\u00de":{"d":"20,0r0,-270r52,0r0,44r68,0v72,0,96,17,96,93v0,105,-73,88,-164,89r0,44r-52,0xm72,-88v50,-5,123,20,112,-45v11,-67,-59,-45,-112,-49r0,94","w":246},"\u00bc":{"d":"344,-162r0,102r14,0r0,27r-14,0r0,33r-34,0r0,-33r-89,0r0,-35r72,-94r51,0xm310,-60v-1,-25,2,-53,-1,-76r-60,76r61,0xm294,-270r-172,270r-33,0r171,-270r34,0xm114,-270r0,162r-34,0r0,-134r-43,42r-18,-21r52,-49r43,0","w":380},"\u00f7":{"d":"18,-85r0,-34r174,0r0,34r-174,0xm84,-15r0,-42r42,0r0,42r-42,0xm84,-147r0,-42r42,0r0,42r-42,0","w":210},"\u00a6":{"d":"68,-243r0,126r-35,0r0,-126r35,0xm68,63r-35,0r0,-126r35,0r0,126","w":100},"\u00b0":{"d":"126,-218v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm101,-218v0,-16,-13,-29,-29,-29v-16,0,-29,13,-29,29v0,16,13,29,29,29v16,0,29,-13,29,-29","w":144},"\u00fe":{"d":"112,-32v31,0,41,-9,41,-57v0,-43,0,-68,-41,-68v-46,0,-45,23,-45,68v0,40,6,57,45,57xm22,82r0,-352r45,0r1,109v10,-25,31,-30,58,-30v70,0,72,44,72,102v0,55,-7,91,-72,91v-25,0,-46,-8,-59,-27r0,107r-45,0","w":214},"\u00be":{"d":"348,-162r0,102r14,0r0,27r-14,0r0,33r-34,0r0,-33r-88,0r0,-35r71,-94r51,0xm314,-60v-1,-25,2,-53,-1,-76r-59,76r60,0xm302,-270r-172,270r-33,0r170,-270r35,0xm63,-178r0,-28v23,-1,41,6,41,-24v0,-13,-6,-14,-31,-14v-22,0,-25,2,-25,25r-35,0v0,-47,17,-53,60,-53v31,0,65,0,65,42v0,20,-9,35,-29,39v22,2,32,14,32,35v0,45,-27,48,-68,48v-41,0,-61,-1,-61,-55r34,0v0,27,1,27,27,27v27,0,34,-1,34,-20v0,-26,-21,-22,-44,-22","w":380},"\u00b2":{"d":"134,-138r0,28r-122,0v-3,-51,4,-80,53,-80v28,-6,35,-2,35,-32v0,-21,-6,-24,-25,-24v-23,0,-29,1,-29,33r-34,0v0,-40,4,-59,63,-59v38,0,59,7,59,50v0,43,-14,49,-54,55v-28,4,-35,4,-34,29r88,0","w":152},"\u00ae":{"d":"142,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v75,0,137,61,137,137v0,76,-62,137,-137,137xm142,-24v62,0,111,-49,111,-111v0,-62,-49,-111,-111,-111v-62,0,-111,49,-111,111v0,62,49,111,111,111xm175,-123r35,63r-33,0r-33,-63r-30,0r0,63r-28,0r0,-148v54,5,129,-19,129,41v0,32,-14,42,-40,44xm114,-145v29,-3,75,12,72,-22v-2,-31,-43,-17,-72,-20r0,42","w":284},"\u2212":{"d":"18,-85r0,-34r174,0r0,34r-174,0","w":210},"\u00f0":{"d":"105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm65,-261r36,-11v12,7,22,15,31,23r46,-14r19,20r-46,14v32,39,42,79,42,127v0,77,-9,104,-88,104v-79,0,-89,-23,-89,-96v0,-60,7,-98,70,-98v14,0,35,2,52,16v-6,-16,-15,-30,-24,-42r-45,14r-20,-20r47,-14v-9,-8,-18,-15,-31,-23","w":209},"\u00d7":{"d":"105,-126r63,-63r24,24r-63,63r63,63r-24,24r-63,-62r-62,62r-25,-25r62,-62r-62,-62r24,-25","w":210},"\u00b3":{"d":"63,-178r0,-28v23,-1,41,6,41,-24v0,-13,-6,-14,-31,-14v-22,0,-25,2,-25,25r-35,0v0,-47,17,-53,60,-53v31,0,65,0,65,42v0,20,-9,35,-29,39v22,2,32,14,32,35v0,45,-27,48,-68,48v-41,0,-61,-1,-61,-55r34,0v0,27,1,27,27,27v27,0,34,-1,34,-20v0,-26,-21,-22,-44,-22","w":152},"\u00a9":{"d":"142,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v76,0,137,61,137,137v0,76,-61,137,-137,137xm142,-24v61,0,111,-49,111,-111v0,-62,-50,-111,-111,-111v-62,0,-111,49,-111,111v0,62,49,111,111,111xm181,-111r31,0v-16,91,-140,56,-140,-25v0,-46,28,-80,75,-80v33,0,60,20,65,53r-31,0v-18,-53,-78,-20,-78,26v0,26,16,55,45,55v17,0,32,-12,33,-29","w":284},"\u00c1":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm158,-348r17,29r-70,31r-10,-19","w":255},"\u00c2":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm128,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":255},"\u00c4":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm73,-331r36,0r0,31r-36,0r0,-31xm147,-331r35,0r0,31r-35,0r0,-31","w":255},"\u00c0":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm111,-348r64,41r-10,19r-70,-31","w":255},"\u00c5":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm95,-324v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm111,-324v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":255},"\u00c3":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm175,-334r22,12v-9,17,-20,31,-41,31v-29,-1,-60,-40,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":255},"\u00c7":{"d":"138,4r16,23r-47,19r-10,-17xm236,-180r-52,0v2,-41,-5,-48,-58,-48v-78,0,-61,57,-61,121v0,54,7,65,61,65v49,0,64,-8,61,-55r52,0v7,89,-39,99,-113,99v-123,0,-114,-63,-113,-168v0,-86,33,-106,113,-106v72,0,112,8,110,92","w":250},"\u00c9":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm142,-348r16,29r-69,31r-10,-19","w":222},"\u00ca":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm112,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":222},"\u00cb":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm57,-331r36,0r0,31r-36,0r0,-31xm130,-331r36,0r0,31r-36,0r0,-31","w":222},"\u00c8":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm88,-348r63,41r-10,19r-69,-31","w":222},"\u00cd":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm73,-348r17,29r-70,31r-10,-19","w":99},"\u00ce":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm50,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":99},"\u00cf":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm-12,-331r35,0r0,31r-35,0r0,-31xm61,-331r36,0r0,31r-36,0r0,-31","w":99},"\u00cc":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm26,-348r64,41r-10,19r-70,-31","w":99},"\u00d1":{"d":"225,-44r-3,-226r52,0r0,270r-86,0r-115,-226r-2,0r5,226r-52,0r0,-270r85,0xm196,-334r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":297},"\u00d3":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm152,-348r16,29r-69,31r-10,-19","w":257},"\u00d4":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm129,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":257},"\u00d6":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm74,-331r36,0r0,31r-36,0r0,-31xm148,-331r35,0r0,31r-35,0r0,-31","w":257},"\u00d2":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm105,-348r63,41r-9,19r-70,-31","w":257},"\u00d5":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm176,-334r22,12v-9,17,-20,31,-41,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":257},"\u0160":{"d":"12,-86r52,0v-2,41,6,47,61,46v47,0,54,-9,54,-40v0,-39,-21,-34,-61,-36v-58,-4,-105,-2,-105,-80v0,-74,47,-76,112,-76v58,0,104,6,100,81r-52,0v2,-34,-8,-39,-48,-39v-51,0,-60,5,-60,34v0,33,7,35,60,38v83,5,105,9,105,78v0,76,-36,82,-105,82v-65,0,-119,-4,-113,-88xm121,-291r-64,-39r9,-18r55,23r55,-23r9,18","w":242},"\u00da":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm159,-348r17,29r-70,31r-10,-19","w":271},"\u00db":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm136,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":271},"\u00dc":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm81,-331r36,0r0,31r-36,0r0,-31xm155,-331r35,0r0,31r-35,0r0,-31","w":271},"\u00d9":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm112,-348r64,41r-10,19r-70,-31","w":271},"\u00dd":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0xm151,-348r16,29r-70,31r-10,-19","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u0178":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0xm66,-331r36,0r0,31r-36,0r0,-31xm140,-331r35,0r0,31r-35,0r0,-31","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u017d":{"d":"222,-270r0,44r-149,182r151,0r0,44r-215,0r0,-44r148,-182r-142,0r0,-44r207,0xm117,-291r-64,-39r8,-18r56,23r55,-23r9,18","w":233},"\u00e1":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm137,-267r16,29r-70,31r-10,-19","w":212},"\u00e2":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm106,-267r64,39r-9,18r-55,-23r-55,23r-9,-18","w":212},"\u00e4":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm51,-250r36,0r0,31r-36,0r0,-31xm125,-250r36,0r0,31r-36,0r0,-31","w":212},"\u00e0":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm82,-267r64,41r-10,19r-70,-31","w":212},"\u00e5":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm73,-236v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm89,-236v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":212},"\u00e3":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm153,-253r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":212},"\u00e7":{"d":"112,4r16,23r-47,19r-10,-17xm142,-72r45,0v0,62,-22,74,-86,74v-69,0,-84,-20,-84,-96v0,-66,10,-97,84,-97v56,0,86,8,86,68r-45,0v0,-29,-9,-34,-41,-34v-39,0,-39,14,-39,63v0,47,-1,62,39,62v37,0,41,-7,41,-40","w":198},"\u00e9":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm134,-267r16,29r-70,31r-10,-19","w":205},"\u00ea":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm103,-267r64,39r-9,18r-55,-23r-56,23r-8,-18","w":205},"\u00eb":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm48,-250r36,0r0,31r-36,0r0,-31xm122,-250r35,0r0,31r-35,0r0,-31","w":205},"\u00e8":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm79,-267r64,41r-10,19r-70,-31","w":205},"\u00ed":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm66,-267r16,29r-69,31r-10,-19","w":84},"\u00ee":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm42,-267r65,39r-9,18r-56,-23r-55,23r-9,-18","w":84},"\u00ef":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm-12,-250r36,0r0,31r-36,0r0,-31xm62,-250r35,0r0,31r-35,0r0,-31","w":84},"\u00ec":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm19,-267r63,41r-9,19r-70,-31","w":84},"\u00f1":{"d":"22,-189r46,0v1,9,-2,21,1,28v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-189xm155,-253r22,12v-9,17,-20,31,-41,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":215},"\u00f3":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm129,-267r16,29r-70,31r-10,-19","w":209},"\u00f4":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm105,-267r64,39r-9,18r-55,-23r-56,23r-8,-18","w":209},"\u00f6":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm50,-250r36,0r0,31r-36,0r0,-31xm124,-250r35,0r0,31r-35,0r0,-31","w":209},"\u00f2":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm81,-267r64,41r-10,19r-70,-31","w":209},"\u00f5":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm152,-253r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":209},"\u0161":{"d":"183,-138r-46,0v0,-23,-12,-22,-36,-22v-24,0,-41,0,-41,25v0,19,5,19,45,21v45,2,84,-1,84,60v0,51,-40,56,-88,56v-51,0,-86,1,-86,-61r45,0v1,27,8,30,41,30v27,0,43,1,43,-25v0,-17,-1,-25,-47,-26v-69,-1,-82,-10,-82,-58v0,-52,37,-53,86,-53v37,0,82,0,82,53xm100,-210r-64,-39r9,-18r55,23r56,-23r9,18","w":200},"\u00fa":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm135,-267r16,29r-70,31r-10,-19","w":213},"\u00fb":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm100,-267r64,39r-9,18r-55,-23r-56,23r-8,-18","w":213},"\u00fc":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm52,-250r36,0r0,31r-36,0r0,-31xm126,-250r35,0r0,31r-35,0r0,-31","w":213},"\u00f9":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm69,-267r63,41r-10,19r-69,-31","w":213},"\u00fd":{"d":"176,-189r-49,197v-8,49,-29,85,-91,74r0,-34v34,7,43,-23,46,-48r-22,0r-62,-189r47,0r49,161r36,-161r46,0xm115,-267r16,29r-69,31r-10,-19","w":174,"k":{",":22,".":22}},"\u00ff":{"d":"176,-189r-49,197v-8,49,-29,85,-91,74r0,-34v34,7,43,-23,46,-48r-22,0r-62,-189r47,0r49,161r36,-161r46,0xm33,-250r35,0r0,31r-35,0r0,-31xm106,-250r36,0r0,31r-36,0r0,-31","w":174,"k":{",":22,".":22}},"\u017e":{"d":"163,-151r-102,116r102,0r0,35r-155,0r0,-39r101,-115r-93,0r0,-35r147,0r0,38xm86,-210r-64,-39r8,-18r56,23r55,-23r9,18","w":171},"\u2126":{"d":"20,-33v21,-1,47,2,66,-1v-30,-20,-60,-58,-60,-110v0,-70,58,-125,139,-125v85,0,137,61,137,124v1,54,-31,90,-60,112r67,0r0,33r-117,0r0,-25v34,-18,66,-54,66,-113v0,-48,-33,-97,-92,-97v-56,0,-95,43,-95,99v0,54,31,94,66,111r0,25r-117,0r0,-33","w":329},"\u03bc":{"d":"191,0r-44,0v-1,-9,2,-22,-1,-29v-13,30,-43,33,-78,30r0,81r-45,0r0,-271r45,0r0,119v0,27,3,38,32,38v74,0,38,-96,46,-157r45,0r0,189","w":213},"\u03c0":{"d":"251,-163r-34,0v1,49,-3,129,6,163r-44,0v-13,-28,-5,-117,-7,-163r-72,0v-2,48,-15,131,-30,163r-44,0v15,-39,29,-116,30,-163v-24,0,-38,2,-48,5r-6,-27v53,-23,176,-8,253,-12","w":262},"\u20ac":{"d":"236,-84r0,60v-17,29,-63,26,-111,26v-71,0,-89,-25,-91,-95r-30,0r9,-32r21,0r0,-19r-30,0r9,-32r21,0v1,-88,44,-96,125,-96v46,0,66,6,84,30r-15,50v-27,-43,-48,-36,-93,-36v-44,0,-53,8,-54,52r142,0r-10,32r-133,0r0,19r127,0r-10,32r-116,0v-4,53,29,52,79,51v36,0,52,-10,76,-42"},"\u2113":{"d":"195,-72r20,18v-35,79,-162,69,-167,-13v-8,5,-15,12,-23,17r-13,-23v12,-9,25,-17,36,-26r0,-96v0,-73,34,-98,73,-98v42,0,61,30,61,65v0,49,-35,92,-92,139v-5,77,85,63,105,17xm90,-203r0,76v35,-33,60,-67,60,-99v0,-22,-8,-38,-28,-38v-15,0,-32,15,-32,61","w":225},"\u212e":{"d":"69,-55v37,67,152,61,195,4r21,0v-27,32,-71,53,-120,53v-84,0,-152,-61,-152,-137v0,-76,68,-137,152,-137v86,1,155,61,153,141r-249,1r0,75xm262,-216v-37,-61,-144,-62,-190,-8v-6,21,-5,62,-1,85r191,-2r0,-75","w":330},"\u2202":{"d":"44,-247r-14,-29v13,-9,39,-23,79,-23v64,0,119,54,119,146v0,84,-44,154,-121,154v-63,0,-91,-51,-91,-90v0,-57,42,-97,95,-97v42,0,65,30,74,40v4,-68,-31,-120,-81,-120v-29,0,-49,11,-60,19xm111,-32v38,0,63,-41,68,-80v-5,-15,-27,-41,-59,-41v-33,0,-60,28,-60,64v0,31,21,57,51,57","w":248},"\u220f":{"d":"305,-228r-49,0r0,264r-43,0r0,-264r-112,0r0,264r-43,0r0,-264r-49,0r0,-36r296,0r0,36","w":314},"\u2211":{"d":"240,36r-231,0r0,-24r113,-125r-108,-123r0,-28r219,0r0,36r-157,1r97,109r-105,117r172,0r0,37","w":248},"\u2219":{"d":"86,-127r0,50r-45,0r0,-50r45,0","w":126},"\u221a":{"d":"260,-314r-100,371r-37,0r-69,-171r-33,12r-8,-22r66,-27r54,139v4,9,5,20,9,27r86,-329r32,0","w":255},"\u221e":{"d":"303,-109v0,42,-32,68,-65,68v-24,0,-48,-13,-76,-48v-22,26,-44,48,-77,48v-34,0,-64,-27,-64,-66v0,-40,29,-68,67,-68v31,0,54,22,76,48v20,-22,41,-48,77,-48v36,0,62,27,62,66xm46,-107v0,23,16,42,42,42v25,0,45,-24,61,-42v-18,-22,-35,-45,-63,-45v-24,0,-40,20,-40,45xm238,-152v-27,0,-47,28,-61,43v27,31,41,44,62,44v25,0,39,-22,39,-42v0,-27,-17,-45,-40,-45","w":324},"\u222b":{"d":"58,-226v0,-72,34,-113,93,-93r-5,27v-42,-14,-52,20,-52,71v0,60,6,121,6,185v0,77,-35,112,-96,93r6,-29v38,13,54,-8,54,-65v0,-65,-6,-127,-6,-189","w":155},"\u2248":{"d":"80,-173v38,0,56,30,88,30v17,0,29,-10,42,-29r16,15v-14,24,-34,40,-58,40v-29,0,-57,-31,-90,-31v-20,0,-32,15,-44,30r-16,-16v13,-23,36,-39,62,-39xm80,-99v39,0,53,30,87,30v18,0,30,-10,43,-29r16,16v-14,23,-33,38,-59,38v-29,0,-58,-30,-89,-30v-21,0,-32,14,-44,30r-16,-16v13,-23,36,-39,62,-39","w":244},"\u2260":{"d":"176,-201r-18,39r65,0r0,26r-76,0r-27,58r103,0r0,25r-114,0r-23,49r-21,-9r19,-40r-63,0r0,-25r74,0r27,-58r-101,0r0,-26r112,0r23,-48","w":244},"\u2264":{"d":"222,-37r-199,-90r0,-27r199,-91r0,29r-171,75r171,75r0,29xm223,4r-202,0r0,-25r202,0r0,25","w":244},"\u2265":{"d":"24,-245r198,91r0,27r-198,90r0,-29r171,-75r-171,-75r0,-29xm222,4r-200,0r0,-25r200,0r0,25","w":244},"\u25ca":{"d":"233,-132r-89,152r-34,0r-88,-152r89,-151r34,0xm195,-131r-60,-103v-3,-6,-6,-13,-8,-18r-67,120v22,40,49,77,67,120","w":255},"\u00a0":{"w":126},"\u00ad":{"d":"0,-117r96,0r0,35r-96,0r0,-35","w":95},"\u02c9":{"d":"27,-248r99,0r0,27r-99,0r0,-27","w":153},"\u03a9":{"d":"20,-33v21,-1,47,2,66,-1v-30,-20,-60,-58,-60,-110v0,-70,58,-125,139,-125v85,0,137,61,137,124v1,54,-31,90,-60,112r67,0r0,33r-117,0r0,-25v34,-18,66,-54,66,-113v0,-48,-33,-97,-92,-97v-56,0,-95,43,-95,99v0,54,31,94,66,111r0,25r-117,0r0,-33","w":329},"\u2215":{"d":"204,-270r-171,270r-34,0r171,-270r34,0","w":203},"\u2206":{"d":"12,0r0,-25r109,-246r53,0r107,246r0,25r-269,0xm59,-33r172,0r-85,-201r-2,0","w":293},"\u2010":{"d":"0,-117r96,0r0,35r-96,0r0,-35","w":95}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1987, 1992, 1999, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a trademark of Linotype GmbH registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions.
 * 
 * Full name:
 * EurostileLTStd-DemiOblique
 * 
 * Designer:
 * Aldo Novarese, A. Butti
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Eurostile LT Std","font-weight":600,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 5 2 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-18 -355.611 478.342 104","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"32","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":126},"!":{"d":"89,-49r-11,49r-45,0r10,-49r46,0xm138,-270r-41,180r-45,0r35,-180r51,0","w":111},"\"":{"d":"75,-270r50,0v-5,38,-19,67,-35,93r-19,0v-6,-33,-4,-64,4,-93xm160,-270r50,0v-5,38,-19,67,-35,93r-19,0v-7,-33,-5,-64,4,-93","w":170},"#":{"d":"159,-270r34,0r-30,76r39,0r30,-76r33,0r-30,76r32,0r-9,41r-38,0r-19,48r37,0r-8,41r-46,0r-26,64r-33,0r25,-64r-39,0r-25,64r-34,0r26,-64r-36,0r8,-41r44,0r19,-48r-38,0r9,-41r46,0xm147,-153r-19,48r39,0r20,-48r-40,0"},"$":{"d":"165,-116r-16,76v45,0,57,-8,64,-41v7,-33,-14,-34,-48,-35xm190,-230r-16,72v63,3,103,6,88,77v-14,66,-50,83,-122,83r-6,28r-29,0r7,-28v-95,0,-96,-37,-84,-90r45,0v-10,38,-2,51,48,48r15,-76v-64,-6,-98,-10,-84,-76v15,-71,52,-80,118,-80r5,-26r29,0r-5,26v61,-2,97,12,78,79r-46,0v8,-29,1,-39,-41,-37xm145,-158r16,-72v-39,1,-52,1,-60,38v-7,32,12,32,44,34"},"%":{"d":"336,-86v-9,49,-19,98,-78,88v-66,11,-48,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,6,49,49xm264,-25v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-33,32,-39,57v-6,25,0,26,22,26xm172,-224v-9,49,-19,99,-78,89v-65,10,-49,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,5,49,48xm100,-162v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-32,33,-39,57v-7,24,0,26,22,26xm324,-270r-229,270r-33,0r228,-270r34,0","w":325},"&":{"d":"200,-57r-72,-74v-31,5,-34,18,-41,49v-9,43,9,42,54,42v26,0,44,-1,59,-17xm254,0r-26,-28v-23,29,-60,30,-96,30v-69,0,-110,-6,-93,-84v9,-40,22,-70,67,-74v-15,-15,-18,-23,-13,-47v13,-60,46,-69,102,-69v68,0,80,12,65,84r-44,0v8,-37,8,-42,-30,-42v-39,-10,-56,35,-34,59r69,75r8,-37r44,0v-4,26,-8,47,-20,69r32,34","w":281},"\u2019":{"d":"55,-176r4,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-13,43,-3,101,-68,94","w":83,"k":{"\u2019":7,"t":-7,"s":7,"\u0161":7}},"(":{"d":"103,12r-9,42v-127,15,-50,-138,-40,-210v11,-78,25,-116,109,-116r-9,42v-33,0,-39,16,-45,46r-32,150v-5,23,-9,46,26,46","w":125},")":{"d":"69,-230r9,-42v127,-15,50,139,39,209v-12,78,-25,117,-109,117r9,-42v33,0,39,-16,45,-46r32,-150v5,-23,10,-46,-25,-46","w":125},"*":{"d":"243,-208r-53,16r21,42r-25,16r-20,-43r-42,43r-18,-16r39,-42r-45,-18r14,-26r46,18r11,-52r27,0r-11,52r53,-18"},"+":{"d":"128,-189r35,0r-15,70r69,0r-7,34r-70,0r-14,70r-35,0r15,-70r-70,0r7,-34r70,0","w":210},",":{"d":"22,45r5,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-12,44,-4,101,-69,94","w":126},"-":{"d":"25,-117r96,0r-8,35r-96,0","w":95},".":{"d":"88,-49r-11,49r-45,0r10,-49r46,0","w":126},"\/":{"d":"305,-270r-275,311r-40,0r274,-311r41,0","w":245},"0":{"d":"185,-272v81,0,109,17,88,113r-11,49v-21,96,-54,112,-135,112v-81,0,-109,-16,-88,-112r10,-50v19,-90,44,-112,136,-112xm136,-40v50,0,63,-3,75,-58r15,-74v12,-55,0,-58,-50,-58v-51,0,-63,3,-75,58r-16,74v-12,55,0,58,51,58"},"1":{"d":"234,-270r-57,270r-49,0r48,-227r-85,70r-23,-32r104,-81r62,0"},"2":{"d":"235,-42r-9,42r-204,0r11,-51v15,-69,43,-73,106,-84v56,-9,68,-5,78,-54v8,-36,-3,-41,-41,-41v-47,0,-56,1,-68,56r-49,0v14,-66,27,-98,126,-98v64,0,96,12,81,83v-15,71,-41,81,-110,91v-55,8,-68,11,-76,56r155,0"},"3":{"d":"41,-91r49,0v-11,50,-3,51,42,51v44,0,56,-2,66,-38v14,-47,-27,-40,-66,-40r8,-39v47,1,73,4,80,-45v4,-26,-6,-28,-48,-28v-45,0,-51,5,-60,47r-49,0v17,-78,46,-89,118,-89v51,0,103,0,88,70v-7,32,-19,59,-56,63r0,2v36,3,42,24,34,59v-16,75,-55,80,-124,80v-68,0,-101,-4,-82,-93"},"4":{"d":"264,-270r-37,173r32,0r-8,39r-32,0r-12,58r-49,0r12,-58r-147,0r12,-56r153,-156r76,0xm178,-97r28,-136r-134,136r106,0"},"5":{"d":"125,-231v-3,22,-12,47,-13,67v16,-21,47,-22,68,-22v70,0,83,25,69,93v-18,84,-48,95,-128,95v-66,0,-93,-10,-80,-80r49,0v-8,37,11,38,44,38v47,0,55,-5,65,-52v10,-46,5,-52,-42,-52v-26,0,-46,0,-54,18r-46,0r31,-144r188,0r-8,39r-143,0"},"6":{"d":"151,-122v-39,0,-54,0,-61,33v-9,43,-4,49,44,49v45,0,54,-1,63,-43v8,-39,-2,-39,-46,-39xm44,-103r16,-79v17,-76,51,-90,123,-90v62,0,101,2,84,77r-49,0v7,-34,-6,-35,-44,-35v-65,0,-65,46,-73,91v13,-23,40,-26,66,-26v72,0,94,10,79,79v-15,73,-44,88,-121,88v-80,0,-100,-13,-81,-105"},"7":{"d":"281,-270r-11,50r-157,220r-55,0r164,-226r-151,0r10,-44r200,0"},"8":{"d":"152,-118v-51,0,-58,6,-65,38v-7,34,-1,40,49,40v50,0,58,-8,65,-40v7,-34,1,-38,-49,-38xm127,2v-58,0,-104,-3,-88,-82v6,-31,22,-52,60,-60v-35,-8,-38,-25,-31,-60v14,-64,54,-72,117,-72v51,0,101,-4,86,72v-7,34,-20,52,-55,61v34,5,40,26,33,59v-16,76,-53,82,-122,82xm161,-158v38,0,52,2,61,-42v6,-30,-8,-30,-46,-30v-44,0,-53,3,-59,30v-9,42,6,42,44,42"},"9":{"d":"175,-230v-47,0,-54,4,-62,43v-8,35,-2,39,45,39v47,0,56,-3,64,-39v8,-40,-6,-43,-47,-43xm38,-76r49,0v-8,35,5,36,48,36v42,0,56,-1,66,-47v2,-14,9,-32,9,-45v-17,22,-38,27,-73,27v-58,0,-89,-9,-73,-82v14,-67,38,-85,120,-85v89,0,101,22,81,115r-17,79v-14,68,-57,80,-122,80v-59,0,-104,-2,-88,-78"},":":{"d":"88,-49r-11,49r-45,0r10,-49r46,0xm118,-189r-11,49r-45,0r10,-49r46,0","w":126},";":{"d":"22,45r5,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-12,44,-4,101,-69,94xm121,-189r-10,49r-46,0r11,-49r45,0","w":126},"<":{"d":"37,-89r5,-25r191,-75r-8,36r-136,51r114,51r-8,36","w":210},"=":{"d":"44,-120r7,-34r174,0r-7,34r-174,0xm28,-50r8,-34r174,0r-7,34r-175,0","w":210},">":{"d":"217,-114r-6,25r-190,74r8,-36r136,-51r-115,-51r8,-36","w":210},"?":{"d":"136,-86r-45,0v7,-41,15,-53,54,-67v27,-11,41,-12,47,-43v7,-35,0,-38,-33,-38v-42,0,-50,11,-55,46r-45,0v11,-66,36,-84,109,-84v53,0,84,10,70,76v-9,40,-19,55,-63,71v-23,8,-34,14,-39,39xm129,-49r-11,49r-45,0r10,-49r46,0","w":214},"@":{"d":"266,-198r28,0r-46,94v-4,11,-1,18,12,18v27,0,54,-45,59,-66v9,-45,-24,-90,-81,-90v-72,0,-133,66,-144,116v-18,83,73,118,151,87r5,27v-93,38,-214,0,-192,-108v16,-79,101,-152,186,-152v68,0,122,49,107,119v-9,44,-51,95,-100,95v-18,0,-27,-6,-33,-21v-43,40,-100,20,-91,-33v7,-41,58,-91,101,-91v15,-1,26,12,30,23xm217,-176v-14,0,-46,20,-54,58v-4,18,-2,32,18,32v30,0,53,-41,58,-65v4,-17,-5,-25,-22,-25","w":351},"A":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0","w":255},"B":{"d":"100,-118r-16,74v52,-5,117,20,124,-36v21,-61,-65,-31,-108,-38xm259,-75v-16,108,-132,67,-236,75r57,-270r135,0v53,0,76,11,64,70v-6,32,-19,51,-51,61v37,4,36,29,31,64xm123,-226r-15,69v51,-4,116,18,118,-38v14,-54,-64,-23,-103,-31","w":257},"C":{"d":"274,-180r-52,0v9,-35,8,-48,-47,-48v-52,0,-64,9,-75,62r-12,59v-11,54,-7,65,47,65v49,0,67,-11,72,-55r52,0v-9,86,-60,99,-133,99v-96,0,-106,-27,-90,-106r13,-62v18,-86,55,-106,135,-106v67,0,106,1,93,78","w":250},"D":{"d":"22,0r58,-270r128,0v75,0,100,27,85,100v-18,85,-22,170,-133,170r-138,0xm84,-44r85,0v60,-3,58,-76,73,-126v23,-78,-60,-51,-120,-56","w":271},"E":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0","w":222},"F":{"d":"121,-226r-16,72r121,0r-9,42r-121,0r-23,112r-52,0r57,-270r179,0r-10,44r-126,0","w":209,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":58,".":58}},"G":{"d":"158,-143r120,0r-11,49v-17,80,-40,96,-136,96v-86,0,-115,-15,-96,-106r13,-62v19,-90,57,-106,141,-106v66,0,119,-4,98,83r-52,0v9,-40,-10,-39,-55,-39v-88,0,-79,63,-94,124v-14,56,-4,62,54,62v52,0,70,-8,77,-62r-68,0","w":261},"H":{"d":"310,-270r-57,270r-52,0r25,-115r-126,0r-24,115r-52,0r57,-270r52,0r-24,111r126,0r23,-111r52,0","w":276},"I":{"d":"133,-270r-57,270r-52,0r57,-270r52,0","w":99},"J":{"d":"194,-270r52,0r-40,187v-15,71,-43,85,-105,85v-55,0,-89,-7,-76,-69r8,-39r50,0v-4,33,-27,64,27,64v31,0,37,-8,44,-41","w":209},"K":{"d":"133,-270r-24,110r25,0r113,-110r64,0r-137,132r91,138r-66,0r-75,-116r-24,0r-24,116r-52,0r57,-270r52,0","w":257},"L":{"d":"133,-270r-48,226r126,0r-9,44r-178,0r57,-270r52,0","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"M":{"d":"339,-228r-135,228r-46,0r-38,-226r-44,226r-52,0r57,-270r83,0r31,201r2,0r114,-201r85,0r-57,270r-52,0","w":362},"N":{"d":"236,-44r43,-226r52,0r-57,270r-86,0r-67,-226r-2,0r-43,226r-52,0r57,-270r86,0r67,226r2,0","w":297},"O":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54","w":257},"P":{"d":"20,0r57,-270r120,0v72,0,90,16,77,93v-17,101,-83,90,-183,90r-19,87r-52,0xm100,-132v57,-4,119,17,122,-45v26,-67,-52,-45,-102,-49","w":246,"k":{"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,",":65,".":65}},"Q":{"d":"286,-36r-27,30r-20,-17v-31,26,-70,25,-101,25v-84,0,-115,-14,-98,-103r15,-73v18,-84,61,-98,141,-98v64,0,119,3,98,98v-10,45,-11,76,-30,120xm174,-127r49,40r19,-87v10,-49,-5,-54,-56,-54v-46,0,-68,3,-79,54r-15,73v-12,56,2,59,55,59v19,0,39,1,56,-11r-57,-43","w":275},"R":{"d":"198,-50v16,-55,-61,-36,-105,-39r-19,89r-52,0r57,-270v91,7,235,-35,203,81v-11,41,-19,68,-65,77v59,1,29,73,22,112r-51,0xm102,-134v60,-4,122,19,126,-47v24,-68,-58,-39,-106,-45","w":259,"k":{"T":-2,"V":-3,"W":-4,"y":-7,"\u00fd":-7,"\u00ff":-7}},"S":{"d":"30,-86r52,0v-10,36,-5,46,52,46v47,0,55,-9,61,-40v8,-39,-13,-34,-53,-36v-57,-4,-103,-2,-87,-80v16,-74,63,-76,128,-76v59,0,100,9,83,81r-52,0v9,-30,1,-39,-40,-39v-51,0,-61,5,-67,34v-7,33,-1,35,51,38v82,5,104,9,89,78v-16,76,-53,82,-122,82v-60,0,-114,2,-98,-75","w":242},"T":{"d":"180,-226r-48,226r-52,0r48,-226r-79,0r9,-44r210,0r-9,44r-79,0","w":211,"k":{"\u00fc":22,"\u0161":22,"\u00f2":31,"\u00f6":31,"\u00e8":31,"\u00eb":31,"\u00ea":31,"\u00e3":31,"\u00e5":31,"\u00e0":31,"\u00e4":31,"\u00e2":31,"w":18,"y":18,"\u00fd":18,"\u00ff":18,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":43,".":43,"c":31,"\u00e7":31,"e":31,"\u00e9":31,"o":31,"\u00f8":31,"\u0153":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"r":21,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22,"-":25,"a":31,"\u00e6":31,"\u00e1":31,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,"s":22,":":16,";":16}},"U":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36","w":271},"V":{"d":"251,-270r54,0r-144,270r-79,0r-29,-270r53,0r25,227","w":243,"k":{"\u00f6":14,"\u00f4":14,"\u00e8":14,"\u00eb":14,"\u00ea":14,"\u00e3":14,"\u00e5":14,"\u00e0":14,"\u00e4":14,"\u00e2":14,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":36,".":36,"e":14,"\u00e9":14,"o":14,"\u00f8":14,"\u0153":14,"\u00f3":14,"\u00f2":14,"\u00f5":14,"r":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"a":14,"\u00e6":14,"\u00e1":14,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,":":4,";":4}},"W":{"d":"300,-42r107,-228r52,0r-130,270r-74,0r-12,-206r-100,206r-74,0r-13,-270r52,0r9,228r111,-228r59,0","w":400,"k":{"\u00fc":6,"\u00f6":11,"\u00ea":11,"\u00e4":8,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":30,".":30,"e":11,"\u00e9":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u0153":11,"\u00f3":11,"\u00f4":11,"\u00f2":11,"\u00f5":11,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"i":-12,"\u0131":-12,"\u00ed":-12,"\u00ee":-12,"\u00ef":-12,"\u00ec":-12}},"X":{"d":"305,-270r-108,131r56,139r-59,0r-44,-114r-93,114r-61,0r118,-139r-54,-131r60,0r40,107r85,-107r60,0","w":249},"Y":{"d":"302,-270r-135,166r-22,104r-51,0r22,-104r-63,-166r59,0r41,115r90,-115r59,0","w":241,"k":{"\u00fc":26,"\u00f6":36,"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"Z":{"d":"280,-270r-10,44r-188,182r152,0r-10,44r-215,0r9,-44r187,-180r0,-2r-142,0r10,-44r207,0","w":233},"[":{"d":"79,-272r84,0r-9,39r-34,0r-53,248r35,0r-9,39r-83,0","w":125},"\\":{"d":"69,41r-30,-311r41,0r29,311r-40,0","w":100},"]":{"d":"93,54r-84,0r8,-39r35,0r53,-248r-35,0r8,-39r84,0","w":125},"^":{"d":"150,-270r25,0r37,175r-36,0r-24,-126r-78,126r-36,0","w":210},"_":{"d":"174,27r-4,18r-180,0r4,-18r180,0","w":180},"\u2018":{"d":"124,-272r-4,21v-13,0,-23,4,-27,24r18,0r-11,49r-45,0v12,-44,4,-101,69,-94","w":83,"k":{"\u2018":7}},"a":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0","w":212},"b":{"d":"145,-157v-39,0,-49,17,-58,57v-9,45,-15,68,31,68v41,0,46,-25,55,-68v10,-48,3,-57,-28,-57xm21,0r57,-270r45,0r-22,106r2,0v14,-23,40,-27,63,-27v65,0,65,36,53,91v-12,58,-24,102,-94,102v-28,0,-46,-7,-54,-30r-5,28r-45,0","w":213},"c":{"d":"157,-72r46,0v-13,62,-38,74,-102,74v-69,0,-80,-20,-64,-96v14,-66,31,-97,105,-97v56,0,84,8,71,68r-45,0v6,-29,-2,-34,-34,-34v-39,0,-42,14,-52,63v-10,47,-14,62,26,62v37,0,42,-7,49,-40","w":198},"d":{"d":"134,-157v-31,0,-43,9,-53,57v-9,43,-15,68,26,68v46,0,50,-23,59,-68v9,-40,7,-57,-32,-57xm146,0v1,-9,10,-22,6,-28v-17,25,-38,30,-65,30v-70,0,-63,-44,-51,-102v12,-55,27,-91,92,-91v25,0,44,8,53,27r22,-106r45,0r-57,270r-45,0","w":213},"e":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42","w":205},"f":{"d":"163,-189r-7,35r-46,0r-33,154r-45,0r32,-154r-26,0r7,-35r27,0v6,-62,33,-89,107,-81r-7,35v-43,-5,-51,14,-55,46r46,0","w":125,"k":{"\u2019":-7,"f":-4,"\ufb01":-4,"\ufb02":-4,"\u00df":-4}},"g":{"d":"134,-157v-31,0,-42,9,-52,57v-9,43,-14,68,26,68v45,0,50,-23,59,-68v9,-40,6,-57,-33,-57xm90,49v55,0,57,-37,62,-76v-17,25,-42,29,-65,29v-65,0,-65,-36,-53,-91v12,-58,24,-102,94,-102v28,0,46,7,54,30r4,-28r46,0r-40,189v-14,68,-40,84,-109,84v-46,0,-79,-8,-64,-65r43,0v-6,26,2,30,28,30","w":213},"h":{"d":"125,-270r-22,109v16,-28,39,-30,66,-30v50,0,61,20,51,66r-27,125r-45,0r26,-120v6,-27,1,-37,-28,-37v-40,0,-49,19,-56,53r-22,104r-46,0r58,-270r45,0","w":215},"i":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm122,-270r-8,39r-45,0r8,-39r45,0","w":84},"j":{"d":"104,-189r-42,193v-7,43,-31,70,-80,60r7,-32v20,0,24,-10,27,-23r42,-198r46,0xm121,-270r-8,39r-46,0r8,-39r46,0","w":81},"k":{"d":"125,-270r-33,154r11,0r69,-73r51,0r-86,89r59,100r-55,0r-45,-85r-11,0r-18,85r-45,0r57,-270r46,0","w":194},"l":{"d":"125,-270r-57,270r-45,0r57,-270r45,0","w":90},"m":{"d":"63,-189r44,0v-1,8,-6,20,-5,27v15,-24,42,-29,66,-29v27,0,47,10,51,33v14,-26,41,-33,66,-33v49,0,62,17,52,63r-27,128r-45,0r26,-123v4,-24,0,-34,-25,-34v-37,0,-47,17,-54,50r-23,107r-45,0r26,-123v4,-24,0,-34,-25,-34v-37,0,-47,17,-54,50r-23,107r-45,0","w":332},"n":{"d":"63,-189r45,0v-1,9,-6,21,-5,28v16,-28,39,-30,66,-30v50,0,61,20,51,66r-27,125r-45,0r26,-120v6,-27,1,-37,-28,-37v-40,0,-49,19,-56,53r-22,104r-46,0","w":215},"o":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63","w":209},"p":{"d":"119,-32v31,0,43,-9,53,-57v9,-43,14,-68,-27,-68v-46,0,-50,23,-59,68v-9,40,-6,57,33,57xm107,-189v-1,9,-10,22,-6,28v17,-25,38,-30,65,-30v70,0,63,44,51,102v-12,55,-27,91,-92,91v-25,0,-44,-8,-53,-27r-22,107r-46,0r58,-271r45,0","w":214},"q":{"d":"135,-157v-31,0,-42,9,-52,57v-9,43,-15,68,26,68v46,0,50,-23,59,-68v9,-40,6,-57,-33,-57xm233,-189r-58,271r-45,0r23,-107r-2,0v-15,23,-40,27,-63,27v-65,0,-65,-36,-53,-91v12,-58,24,-102,94,-102v28,0,46,7,54,30r5,-28r45,0","w":214},"r":{"d":"59,-189r45,0v-1,8,-9,20,-5,25v13,-21,34,-27,56,-27v48,0,43,37,34,74r-42,0v4,-18,11,-40,-15,-40v-27,0,-38,16,-43,40r-25,117r-45,0","w":169,"k":{"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"f":-3,"\ufb01":-3,"\ufb02":-3,"\u00df":-3,",":40,".":40,"c":-3,"\u00e7":-3,"d":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"g":-3,"h":-3,"m":-3,"n":-3,"\u00f1":-3,"o":-3,"\u00f8":-3,"\u0153":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"q":-3,"r":-3,"t":-3,"u":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u00f9":-3,"x":-3,"z":-3,"\u017e":-3,"-":-18}},"s":{"d":"212,-138r-46,0v5,-23,-7,-22,-31,-22v-24,0,-41,0,-46,25v-4,19,1,19,40,21v44,2,85,-1,72,60v-11,51,-52,56,-100,56v-51,0,-86,1,-73,-61r45,0v-5,27,1,30,34,30v27,0,44,1,49,-25v4,-17,4,-25,-42,-26v-69,-1,-79,-10,-69,-58v11,-52,48,-53,97,-53v37,0,81,0,70,53","w":200},"t":{"d":"32,-154r8,-35r23,0r9,-43r46,0r-9,43r72,0r-7,35r-73,0r-20,96v-3,17,-5,26,14,26v26,0,27,-20,31,-40r40,0v-12,57,-30,74,-79,74v-50,0,-62,-11,-52,-59r21,-97r-24,0","w":153},"u":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0","w":213},"v":{"d":"219,-189r-95,189r-69,0r-16,-189r46,0r11,158r76,-158r47,0","w":176,"k":{",":18,".":18}},"w":{"d":"326,-189r-83,189r-65,0r-3,-152r-66,152r-65,0r-3,-189r45,0r-1,158r71,-158r56,0r4,158r66,-158r44,0","w":286,"k":{",":22,".":22}},"x":{"d":"216,-189r-75,90r40,99r-53,0r-23,-69r-53,69r-54,0r84,-99r-36,-90r52,0r19,60r46,-60r53,0","w":180},"y":{"d":"217,-189r-91,197v-21,48,-44,85,-108,74r8,-34v34,7,46,-24,56,-48r-22,0r-21,-189r46,0r15,161r71,-161r46,0","w":174,"k":{",":22,".":22}},"z":{"d":"195,-151r-127,116r102,0r-7,35r-155,0r9,-39r125,-115r-93,0r8,-35r146,0","w":171},"{":{"d":"33,-94r8,-34v7,0,29,0,32,-16r17,-80v17,-47,39,-51,86,-48r-8,34v-20,-2,-34,5,-33,19r-16,74v-6,28,-32,31,-42,35v11,1,34,4,27,37r-16,74v-7,14,7,21,26,18r-7,35v-43,2,-77,0,-66,-48r18,-80v4,-20,-19,-20,-26,-20","w":140},"|":{"d":"102,-311r33,0r0,415r-33,0r0,-415","w":178},"}":{"d":"153,-125r-7,35v-7,0,-30,0,-33,16r-17,80v-17,47,-39,51,-86,48r8,-35v19,2,34,-4,33,-18r16,-74v6,-28,33,-31,42,-35v-11,-1,-34,-4,-27,-37r16,-74v8,-15,-7,-22,-26,-19r8,-34v42,-2,75,0,65,48r-17,80v-4,20,18,19,25,19","w":140},"~":{"d":"189,-124r30,0v-8,34,-41,72,-81,48v-16,-10,-34,-26,-54,-26v-10,0,-16,15,-19,23r-30,0v5,-33,44,-73,80,-51v20,12,66,48,74,6","w":210},"\u00a1":{"d":"118,-189r-10,49r-46,0r11,-49r45,0xm13,81r41,-180r45,0r-35,180r-51,0","w":111},"\u00a2":{"d":"129,-63r26,-124v-29,5,-36,31,-43,63v-8,35,-10,57,17,61xm147,-28r-7,30r-25,0r6,-30v-67,0,-66,-39,-54,-96v13,-59,27,-97,95,-98r5,-24r26,0r-5,24v48,0,68,19,58,69r-45,0v4,-24,0,-30,-21,-34r-26,124v25,-3,31,-11,36,-39r45,0v-9,52,-29,73,-88,74"},"\u00a3":{"d":"204,-141r-8,39r-73,0v-5,28,-7,48,-32,61r162,-3r-9,44r-219,0r9,-42v32,-3,34,-34,41,-60r-36,0r9,-39r35,0r9,-43v14,-71,41,-88,110,-88v71,0,97,15,79,87r-49,0v5,-29,11,-48,-35,-45v-56,-9,-55,47,-65,89r72,0"},"\u2044":{"d":"261,-270r-228,270r-34,0r228,-270r34,0","w":203},"\u00a5":{"d":"242,-193r34,0r-9,39r-55,0r-26,31r75,0r-9,39r-84,0r-18,84r-49,0r18,-84r-82,0r8,-39r72,0r-12,-31r-53,0r8,-39r33,0r-28,-77r56,0r38,115r87,-115r57,0"},"\u0192":{"d":"284,-272r-14,34v-46,-10,-54,31,-67,63r43,0r-13,35r-43,0r-65,166v-23,58,-51,58,-115,58r14,-35v43,0,44,0,57,-32r62,-157r-33,0r13,-35r33,0r11,-30v27,-69,51,-67,117,-67"},"\u00a7":{"d":"209,-91v11,-38,-60,-35,-92,-47v-20,0,-26,17,-30,33v-12,40,50,31,76,43v24,11,45,-5,46,-29xm24,0r47,0v-6,34,-7,41,48,41v48,0,59,-6,64,-32v5,-23,-4,-24,-22,-30v-49,-17,-144,-2,-121,-79v7,-23,12,-46,40,-52v-16,-11,-13,-30,-8,-52v13,-63,48,-68,113,-68v66,0,98,11,80,79r-46,0v6,-33,1,-37,-43,-37v-45,0,-50,6,-55,26v-11,44,58,31,86,46v37,9,59,13,49,58v-5,23,-15,49,-38,57v22,8,18,29,13,52v-15,74,-59,75,-122,75v-72,0,-102,-11,-85,-84"},"\u00a4":{"d":"224,-165v11,19,-6,69,-17,76r22,27r-30,24r-22,-28v-15,12,-57,16,-73,-1r-35,29r-18,-24r34,-28v-13,-25,0,-61,15,-74r-23,-28r30,-25r22,28v17,-12,60,-14,76,0r34,-28r20,24xm162,-165v-45,0,-68,76,-16,76v28,0,43,-23,46,-36v5,-20,-7,-40,-30,-40"},"'":{"d":"75,-270r50,0v-5,38,-19,67,-35,93r-19,0v-6,-33,-4,-64,4,-93","w":85},"\u201c":{"d":"194,-272r-5,21v-13,0,-23,4,-27,24r18,0r-10,49r-45,0v12,-44,4,-101,69,-94xm124,-272r-4,21v-13,0,-23,4,-27,24r18,0r-11,49r-45,0v12,-44,4,-101,69,-94","w":152},"\u00ab":{"d":"107,-194r27,17r-55,78r25,76r-33,18r-32,-94xm181,-194r26,17r-55,78r25,76r-33,18r-31,-94","w":190},"\u2039":{"d":"107,-194r27,17r-55,78r25,76r-33,18r-32,-94","w":117},"\u203a":{"d":"93,-194r27,95r-72,94r-25,-18r57,-76r-22,-78","w":117},"\ufb01":{"d":"247,-270r-8,39r-45,0r8,-39r45,0xm230,-189r-40,189r-45,0r40,-189r45,0xm179,-270r-7,35v-43,-5,-51,14,-55,46r46,0r-7,35r-46,0r-33,154r-45,0r32,-154r-26,0r7,-35r27,0v6,-62,33,-89,107,-81","w":210},"\ufb02":{"d":"249,-270r-57,270r-46,0r57,-270r46,0xm163,-189r-7,35r-46,0r-33,154r-45,0r32,-154r-26,0r7,-35r27,0v6,-62,33,-89,107,-81r-7,35v-43,-5,-51,14,-55,46r46,0","w":214},"\u2013":{"d":"25,-117r180,0r-8,35r-180,0","w":180},"\u2020":{"d":"208,-270r-16,80r69,0r-8,39r-70,0r-49,233r-49,0r49,-233r-69,0r8,-39r70,0r16,-80r49,0"},"\u2021":{"d":"208,-270r-18,85r70,0r-8,39r-70,0r-21,100r69,0r-8,39r-69,0r-19,89r-49,0r19,-89r-69,0r8,-39r69,0r21,-100r-69,0r8,-39r69,0r18,-85r49,0"},"\u00b7":{"d":"113,-127r-10,50r-46,0r11,-50r45,0","w":126},"\u00b6":{"d":"232,82r-39,0r65,-310r-31,0r-65,310r-40,0r36,-168v-83,0,-146,8,-121,-90v20,-78,44,-94,119,-94r151,0xm167,-129r21,-99v-58,2,-98,-13,-102,52v-21,63,34,44,81,47"},"\u2022":{"d":"190,-135v-8,37,-45,67,-82,67v-37,0,-61,-29,-53,-67v7,-37,44,-68,82,-68v37,0,61,31,53,68","w":187},"\u201a":{"d":"7,45r5,-21v13,0,22,-4,26,-24r-18,0r11,-49r45,0v-12,44,-4,101,-69,94","w":90},"\u201e":{"d":"7,45r5,-21v13,0,22,-4,26,-24r-18,0r11,-49r45,0v-12,44,-4,101,-69,94xm76,45r4,-21v13,0,23,-4,27,-24r-18,0r10,-49r46,0v-12,44,-4,101,-69,94","w":152},"\u201d":{"d":"55,-176r4,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-13,43,-3,101,-68,94xm124,-176r5,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-13,43,-4,101,-69,94","w":152},"\u00bb":{"d":"166,-194r27,95r-71,94r-25,-18r56,-76r-22,-78xm93,-194r27,95r-72,94r-25,-18r57,-76r-22,-78","w":190},"\u2026":{"d":"93,-49r-10,49r-46,0r11,-49r45,0xm213,-49r-10,49r-46,0r11,-49r45,0xm333,-49r-10,49r-46,0r11,-49r45,0","w":360},"\u2030":{"d":"476,-86v-9,48,-19,98,-79,88v-66,11,-48,-46,-38,-88v10,-43,25,-49,67,-49v42,0,59,6,50,49xm403,-25v36,8,35,-34,42,-59v6,-23,-1,-24,-25,-24v-36,-7,-32,33,-38,57v-7,25,-1,26,21,26xm336,-86v-9,49,-19,98,-78,88v-66,11,-48,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,6,49,49xm264,-25v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-33,32,-39,57v-6,25,0,26,22,26xm172,-224v-9,49,-19,99,-78,89v-65,10,-49,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,5,49,48xm100,-162v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-32,33,-39,57v-7,24,0,26,22,26xm324,-270r-229,270r-33,0r228,-270r34,0","w":465},"\u00bf":{"d":"118,-102r45,0v-7,41,-15,53,-54,67v-27,11,-41,12,-47,43v-7,35,1,38,34,38v42,0,49,-11,54,-46r46,0v-11,66,-38,84,-110,84v-53,0,-83,-10,-69,-76v9,-40,19,-54,63,-71v23,-8,35,-13,38,-39xm182,-189r-11,49r-45,0r11,-49r45,0","w":214},"`":{"d":"100,-267r54,41r-13,19r-64,-31","w":133},"\u00b4":{"d":"147,-267r10,29r-76,31r-6,-19","w":133},"\u02c6":{"d":"148,-267r56,39r-13,18r-50,-23r-61,23r-4,-18","w":182},"\u02dc":{"d":"198,-253r19,12v-13,17,-27,31,-48,31v-30,0,-54,-38,-73,-5r-21,-12v13,-16,28,-31,48,-31v29,0,55,39,75,5","w":193},"\u00af":{"d":"80,-248r99,0r-5,27r-100,0","w":153},"\u02d8":{"d":"83,-262r24,0v1,47,64,34,74,0r24,0v-9,32,-41,58,-73,58v-32,0,-54,-26,-49,-58","w":176},"\u02d9":{"d":"116,-250r-7,31r-36,0r7,-31r36,0","w":89},"\u00a8":{"d":"80,-250r36,0r-7,31r-36,0xm154,-250r35,0r-6,31r-36,0","w":163},"\u02da":{"d":"77,-236v4,-37,74,-47,66,0v-4,37,-74,47,-66,0xm114,-253v-19,-2,-31,33,-7,34v18,2,30,-33,7,-34","w":120},"\u00b8":{"d":"67,4r11,23r-51,19r-6,-17","w":110},"\u02dd":{"d":"131,-274r20,23r-66,52r-13,-14xm199,-274r21,23r-66,52r-13,-14","w":193},"\u02db":{"d":"19,38v6,-25,28,-44,67,-39v-12,10,-40,20,-42,34v-3,17,19,16,32,10r-5,23v-25,10,-59,1,-52,-28","w":112},"\u02c7":{"d":"136,-210r-56,-39r13,-18r50,23r60,-23r5,18","w":182},"\u2014":{"d":"25,-117r360,0r-8,35r-360,0","w":360},"\u00c6":{"d":"203,-90r28,-136r-27,0r-93,136r92,0xm184,0r10,-51r-108,0r-35,51r-57,0r185,-270r245,0r-9,44r-132,0r-14,69r123,0r-8,40r-124,0r-15,73r131,0r-9,44r-183,0","w":381},"\u00aa":{"d":"133,-157r3,-11v-23,23,-86,22,-74,-23v8,-29,24,-36,51,-36v11,0,29,0,32,10v2,-16,16,-35,-14,-35v-13,0,-21,0,-24,15r-31,0v8,-36,33,-35,59,-35v32,0,53,4,45,39r-17,76r-30,0xm112,-175v15,0,25,-2,29,-17v3,-13,-6,-15,-22,-15v-12,0,-23,0,-26,14v-4,17,4,18,19,18","w":158},"\u0141":{"d":"107,-146r-22,102r126,0r-9,44r-178,0r22,-103r-35,27r9,-41r34,-27r27,-126r52,0r-18,84r70,-54r-9,41","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"\u00d8":{"d":"331,-279r-9,41r-26,19v3,23,-4,48,-11,80v-24,112,-40,141,-149,141v-49,0,-76,1,-94,-25r-44,32r8,-39r26,-20v-3,-15,8,-59,14,-89v20,-94,31,-133,149,-133v34,0,73,0,92,26xm241,-177r-153,119v1,16,36,16,58,16v70,0,70,-17,87,-94xm87,-91r154,-120v-9,-16,-29,-17,-56,-17v-95,0,-78,74,-98,137","w":271},"\u0152":{"d":"140,-42v60,0,71,-9,82,-62r13,-62v12,-55,4,-62,-56,-62v-95,0,-74,64,-91,124v-17,57,-5,62,52,62xm300,-226r-15,69r125,0r-9,40r-125,0r-15,73r133,0r-10,44r-181,0v1,-9,7,-21,6,-29v-23,28,-52,31,-86,31v-86,0,-104,-25,-87,-106r16,-73v15,-72,53,-95,129,-95v27,0,65,3,74,33r5,-31r181,0r-10,44r-131,0","w":397},"\u00ba":{"d":"137,-272v45,0,53,10,43,57v-9,42,-18,60,-68,60v-45,0,-53,-10,-42,-60v9,-42,18,-57,67,-57xm132,-249v-23,0,-26,8,-31,34v-7,33,-7,36,16,36v24,0,27,-12,32,-36v6,-29,6,-34,-17,-34","w":158},"\u00e6":{"d":"212,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm118,-85v-23,0,-41,0,-47,27v-6,27,5,29,36,29v24,0,41,-2,47,-29v6,-26,-14,-27,-36,-27xm161,-94v6,-27,28,-66,-25,-66v-20,0,-36,2,-41,26r-46,0v12,-55,51,-57,94,-57v15,0,57,0,60,24v13,-23,48,-24,67,-24v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28r45,0v-13,59,-47,62,-101,62v-26,0,-57,-4,-63,-30v-16,29,-51,30,-82,30v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v23,0,46,0,52,22","w":331},"\u0131":{"d":"105,-189r-40,189r-45,0r40,-189r45,0","w":84},"\u0142":{"d":"104,-152r-32,152r-46,0r25,-115r-32,25r7,-32r31,-24r27,-124r45,0r-18,86r31,-24r-7,32","w":97},"\u00f8":{"d":"221,-150v-10,85,-15,152,-115,152v-24,0,-58,0,-70,-21r-37,27r6,-29r24,-18v-1,-18,3,-37,7,-56v16,-75,31,-96,110,-96v24,0,58,0,70,21r35,-24r-7,29xm114,-32v47,0,51,-48,59,-85r-96,71v1,15,24,14,37,14xm77,-71r97,-71v0,-15,-25,-15,-38,-15v-47,0,-52,46,-59,86","w":209},"\u0153":{"d":"136,-157v-39,0,-44,6,-56,63v-12,54,-8,62,29,62v39,0,45,-8,57,-62v13,-59,9,-63,-30,-63xm35,-94v14,-64,24,-97,109,-97v18,0,57,0,60,26v15,-24,47,-26,69,-26v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28r45,0v-13,59,-47,62,-101,62v-27,0,-51,-3,-58,-27v-18,27,-45,27,-71,27v-77,0,-83,-23,-68,-96xm215,-115r85,0v8,-39,3,-42,-34,-42v-39,0,-44,9,-51,42","w":335},"\u00df":{"d":"24,0r39,-185v14,-64,26,-87,105,-87v40,0,76,8,67,56v-6,30,-27,42,-53,49v47,3,46,37,39,78v-11,67,-57,108,-129,84r8,-37v36,25,68,-3,76,-47v9,-48,1,-64,-45,-61r7,-31v29,1,47,-2,55,-35v5,-21,-15,-25,-36,-25v-28,0,-38,7,-44,35r-44,206r-45,0","w":218},"\u00b9":{"d":"169,-272r-34,162r-35,0r29,-134r-51,42r-14,-21r63,-49r42,0","w":152},"\u00ac":{"d":"167,-44r16,-76r-139,0r7,-34r174,0r-23,110r-35,0","w":210},"\u00b5":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-20,30,-47,33,-84,30r-17,81r-46,0r58,-271r45,0r-25,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r23,-109r45,0","w":213},"\u2122":{"d":"392,-270r-31,145r-32,0r25,-117r-67,117r-19,0r-18,-117r-25,117r-32,0r31,-145r51,0r15,86r51,-86r51,0xm206,-270r-5,28r-45,0r-25,117r-35,0r25,-117r-44,0r6,-28r123,0","w":360},"\u00d0":{"d":"122,-226r-14,68r63,0r-9,39r-63,0r-15,75r85,0v60,-3,58,-76,73,-126v23,-78,-60,-51,-120,-56xm56,-158r24,-112r128,0v75,0,100,27,85,100v-18,85,-22,170,-133,170r-138,0r26,-119r-33,0r8,-39r33,0","w":271},"\u00bd":{"d":"346,-270r-229,270r-33,0r227,-270r35,0xm166,-270r-35,162r-34,0r29,-134r-51,42r-14,-21r62,-49r43,0xm369,-28r-6,28r-122,0v6,-48,21,-81,70,-80v30,-6,35,-2,41,-32v4,-21,-1,-24,-20,-24v-23,0,-28,1,-35,33r-34,0v8,-40,16,-59,75,-59v38,0,58,7,49,50v-9,43,-24,49,-66,55v-29,4,-36,5,-40,29r88,0","w":380},"\u00b1":{"d":"128,-189r35,0r-11,49r70,0r-7,34r-70,0r-10,49r-35,0r10,-49r-70,0r8,-34r70,0xm18,0r7,-35r174,0r-7,35r-174,0","w":210},"\u00de":{"d":"20,0r57,-270r52,0r-9,44r68,0v72,0,89,16,76,93v-17,102,-83,88,-183,89r-9,44r-52,0xm91,-88v57,-4,118,17,121,-45v25,-67,-51,-45,-101,-49","w":246},"\u00bc":{"d":"378,-162r-22,102r14,0r-5,27r-14,0r-7,33r-34,0r7,-33r-88,0r7,-35r92,-94r50,0xm322,-60v4,-25,13,-53,15,-76r-75,76r60,0xm351,-270r-229,270r-33,0r228,-270r34,0xm171,-270r-34,162r-34,0r28,-134r-51,42r-13,-21r62,-49r42,0","w":380},"\u00f7":{"d":"36,-85r7,-34r174,0r-7,34r-174,0xm87,-15r9,-42r43,0r-9,42r-43,0xm115,-147r9,-42r43,0r-9,42r-43,0","w":210},"\u00a6":{"d":"102,-280r33,0r0,145r-33,0r0,-145xm102,-72r33,0r0,144r-33,0r0,-144","w":178},"\u00b0":{"d":"172,-218v-5,62,-121,77,-108,0v6,-61,121,-77,108,0xm112,-189v33,4,54,-56,12,-58v-33,-4,-53,57,-12,58","w":144},"\u00fe":{"d":"119,-32v31,0,43,-9,53,-57v9,-43,14,-68,-27,-68v-46,0,-50,23,-59,68v-9,40,-6,57,33,57xm4,82r75,-352r45,0r-22,109v15,-25,37,-30,64,-30v70,0,63,44,51,102v-12,55,-27,91,-92,91v-25,0,-44,-8,-53,-27r-22,107r-46,0","w":214},"\u00be":{"d":"383,-162r-22,102r14,0r-6,27r-14,0r-7,33r-34,0r7,-33r-88,0r7,-35r92,-94r51,0xm327,-60v4,-25,13,-53,15,-76r-76,76r61,0xm359,-270r-229,270r-33,0r228,-270r34,0xm100,-178r7,-28v26,0,42,5,46,-24v2,-13,-3,-14,-28,-14v-22,0,-26,2,-31,25r-34,0v10,-47,28,-53,71,-53v31,0,64,0,56,42v-4,20,-16,34,-37,39v22,2,28,14,24,35v-10,45,-37,48,-78,48v-41,0,-61,-1,-50,-55r34,0v-5,27,-4,27,22,27v27,0,32,-1,38,-20v8,-27,-18,-22,-40,-22","w":380},"\u00b2":{"d":"164,-138r-6,28r-122,0v6,-47,20,-81,69,-80v30,-6,36,-2,42,-32v4,-21,-1,-24,-20,-24v-23,0,-28,1,-35,33r-34,0v8,-40,16,-59,75,-59v38,0,57,7,48,50v-9,43,-23,49,-65,55v-29,4,-36,5,-40,29r88,0","w":152},"\u00ae":{"d":"142,2v-76,0,-124,-61,-108,-137v16,-76,90,-137,166,-137v75,0,124,61,108,137v-16,76,-91,137,-166,137xm147,-24v62,0,122,-49,135,-111v13,-62,-26,-111,-88,-111v-62,0,-121,49,-134,111v-13,62,25,111,87,111xm201,-123r22,63r-33,0r-20,-63r-29,0r-14,63r-28,0r31,-148v52,5,131,-19,120,41v-7,32,-23,42,-49,44xm145,-145v32,-3,72,11,76,-22v4,-31,-39,-17,-67,-20","w":284},"\u2212":{"d":"36,-85r7,-34r174,0r-7,34r-174,0","w":210},"\u00f0":{"d":"138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm121,-261r38,-11v11,7,19,15,26,23r49,-14r15,20r-49,14v23,39,25,79,15,127v-17,77,-32,104,-111,104v-79,0,-83,-23,-68,-96v13,-60,28,-98,91,-98v14,0,35,2,48,16v-2,-16,-7,-30,-14,-42r-49,14r-16,-20r50,-14v-7,-8,-13,-15,-25,-23","w":209},"\u00d7":{"d":"132,-126r76,-63r19,24r-76,63r50,63r-30,24r-50,-62r-75,62r-19,-25r75,-62r-49,-62r30,-25","w":210},"\u00b3":{"d":"100,-178r7,-28v26,0,42,5,46,-24v2,-13,-3,-14,-28,-14v-22,0,-26,2,-31,25r-34,0v10,-47,28,-53,71,-53v31,0,64,0,56,42v-4,20,-16,34,-37,39v22,2,28,14,24,35v-10,45,-37,48,-78,48v-41,0,-61,-1,-50,-55r34,0v-5,27,-4,27,22,27v27,0,32,-1,38,-20v8,-27,-18,-22,-40,-22","w":152},"\u00a9":{"d":"142,2v-76,0,-124,-61,-108,-137v16,-76,90,-137,166,-137v76,0,124,61,108,137v-16,76,-90,137,-166,137xm147,-24v61,0,122,-49,135,-111v13,-62,-27,-111,-88,-111v-62,0,-122,49,-135,111v-13,62,26,111,88,111xm204,-111r31,0v-11,33,-43,54,-75,54v-46,0,-68,-35,-59,-79v10,-46,45,-80,92,-80v33,0,55,20,53,53r-30,0v1,-17,-12,-27,-29,-27v-30,0,-49,26,-55,53v-6,26,5,55,34,55v17,0,33,-12,38,-29","w":284},"\u00c1":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm233,-348r9,29r-76,31r-6,-19","w":255},"\u00c2":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm202,-348r56,39r-13,18r-51,-23r-60,23r-4,-18","w":255},"\u00c4":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm144,-331r35,0r-7,31r-35,0xm217,-331r36,0r-7,31r-36,0","w":255},"\u00c0":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm185,-348r55,41r-14,19r-63,-31","w":255},"\u00c5":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm164,-324v4,-37,74,-47,66,0v-4,37,-74,47,-66,0xm201,-341v-18,-2,-32,32,-8,34v18,2,32,-32,8,-34","w":255},"\u00c3":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm246,-334r20,12v-13,17,-28,31,-49,31v-30,0,-54,-38,-73,-5r-21,-12v13,-16,28,-31,48,-31v29,0,55,39,75,5","w":255},"\u00c7":{"d":"137,4r11,23r-51,19r-6,-17xm274,-180r-52,0v9,-35,8,-48,-47,-48v-52,0,-64,9,-75,62r-12,59v-11,54,-7,65,47,65v49,0,67,-11,72,-55r52,0v-9,86,-60,99,-133,99v-96,0,-106,-27,-90,-106r13,-62v18,-86,55,-106,135,-106v67,0,106,1,93,78","w":250},"\u00c9":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm216,-348r10,29r-76,31r-6,-19","w":222},"\u00ca":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm186,-348r56,39r-13,18r-51,-23r-60,23r-5,-18","w":222},"\u00cb":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm127,-331r36,0r-7,31r-35,0xm201,-331r36,0r-7,31r-36,0","w":222},"\u00c8":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm162,-348r54,41r-13,19r-64,-31","w":222},"\u00cd":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm148,-348r9,29r-76,31r-6,-19","w":99},"\u00ce":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm124,-348r56,39r-13,18r-51,-23r-60,23r-5,-18","w":99},"\u00cf":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm58,-331r36,0r-7,31r-36,0xm132,-331r35,0r-6,31r-36,0","w":99},"\u00cc":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm100,-348r55,41r-14,19r-63,-31","w":99},"\u00d1":{"d":"236,-44r43,-226r52,0r-57,270r-86,0r-67,-226r-2,0r-43,226r-52,0r57,-270r86,0r67,226r2,0xm267,-334r20,12v-13,17,-27,31,-48,31v-31,0,-54,-38,-74,-5r-20,-12v13,-16,28,-31,48,-31v29,0,55,39,74,5","w":297},"\u00d3":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm226,-348r10,29r-76,31r-6,-19","w":257},"\u00d4":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm203,-348r56,39r-13,18r-51,-23r-60,23r-4,-18","w":257},"\u00d6":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm145,-331r35,0r-6,31r-36,0xm218,-331r36,0r-7,31r-36,0","w":257},"\u00d2":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm179,-348r55,41r-14,19r-63,-31","w":257},"\u00d5":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm247,-334r20,12v-13,17,-27,31,-48,31v-30,0,-55,-38,-74,-5r-20,-12v13,-16,27,-31,47,-31v29,0,56,40,75,5","w":257},"\u0160":{"d":"30,-86r52,0v-10,36,-5,46,52,46v47,0,55,-9,61,-40v8,-39,-13,-34,-53,-36v-57,-4,-103,-2,-87,-80v16,-74,63,-76,128,-76v59,0,100,9,83,81r-52,0v9,-30,1,-39,-40,-39v-51,0,-61,5,-67,34v-7,33,-1,35,51,38v82,5,104,9,89,78v-16,76,-53,82,-122,82v-60,0,-114,2,-98,-75xm183,-291r-56,-39r13,-18r50,23r61,-23r5,18","w":242},"\u00da":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm234,-348r9,29r-76,31r-6,-19","w":271},"\u00db":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm210,-348r56,39r-13,18r-51,-23r-60,23r-4,-18","w":271},"\u00dc":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm152,-331r36,0r-7,31r-36,0xm225,-331r36,0r-7,31r-35,0","w":271},"\u00d9":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm186,-348r55,41r-14,19r-63,-31","w":271},"\u00dd":{"d":"302,-270r-135,166r-22,104r-51,0r22,-104r-63,-166r59,0r41,115r90,-115r59,0xm225,-348r10,29r-77,31r-5,-19","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u0178":{"d":"302,-270r-135,166r-22,104r-51,0r22,-104r-63,-166r59,0r41,115r90,-115r59,0xm137,-331r35,0r-6,31r-36,0xm210,-331r36,0r-7,31r-36,0","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u017d":{"d":"280,-270r-10,44r-188,182r152,0r-10,44r-215,0r9,-44r187,-180r0,-2r-142,0r10,-44r207,0xm179,-291r-56,-39r12,-18r51,23r60,-23r5,18","w":233},"\u00e1":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm194,-267r9,29r-76,31r-6,-19","w":212},"\u00e2":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm163,-267r56,39r-13,18r-50,-23r-61,23r-4,-18","w":212},"\u00e4":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm105,-250r35,0r-6,31r-36,0xm178,-250r36,0r-7,31r-36,0","w":212},"\u00e0":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm139,-267r55,41r-14,19r-63,-31","w":212},"\u00e5":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm123,-236v4,-37,74,-47,66,0v-4,37,-74,47,-66,0xm160,-253v-19,-2,-31,33,-7,34v18,2,30,-33,7,-34","w":212},"\u00e3":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm207,-253r20,12v-13,17,-27,31,-48,31v-31,0,-54,-38,-74,-5r-20,-12v13,-16,27,-31,47,-31v29,0,56,40,75,5","w":212},"\u00e7":{"d":"111,4r11,23r-51,19r-6,-17xm157,-72r46,0v-13,62,-38,74,-102,74v-69,0,-80,-20,-64,-96v14,-66,31,-97,105,-97v56,0,84,8,71,68r-45,0v6,-29,-2,-34,-34,-34v-39,0,-42,14,-52,63v-10,47,-14,62,26,62v37,0,42,-7,49,-40","w":198},"\u00e9":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm190,-267r10,29r-76,31r-6,-19","w":205},"\u00ea":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm159,-267r56,39r-13,18r-50,-23r-60,23r-5,-18","w":205},"\u00eb":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm102,-250r35,0r-7,31r-35,0xm175,-250r36,0r-7,31r-36,0","w":205},"\u00e8":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm136,-267r54,41r-13,19r-64,-31","w":205},"\u00ed":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm123,-267r10,29r-76,31r-6,-19","w":84},"\u00ee":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm99,-267r56,39r-13,18r-50,-23r-60,23r-5,-18","w":84},"\u00ef":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm41,-250r36,0r-7,31r-35,0xm115,-250r35,0r-6,31r-36,0","w":84},"\u00ec":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm76,-267r54,41r-13,19r-64,-31","w":84},"\u00f1":{"d":"63,-189r45,0v-1,9,-6,21,-5,28v16,-28,39,-30,66,-30v50,0,61,20,51,66r-27,125r-45,0r26,-120v6,-27,1,-37,-28,-37v-40,0,-49,19,-56,53r-22,104r-46,0xm209,-253r20,12v-13,17,-28,31,-49,31v-30,0,-53,-38,-73,-5r-21,-12v13,-16,28,-31,48,-31v29,0,55,39,75,5","w":215},"\u00f3":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm185,-267r10,29r-76,31r-6,-19","w":209},"\u00f4":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm162,-267r55,39r-13,18r-50,-23r-60,23r-5,-18","w":209},"\u00f6":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm104,-250r35,0r-7,31r-35,0xm177,-250r36,0r-7,31r-36,0","w":209},"\u00f2":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm138,-267r55,41r-14,19r-63,-31","w":209},"\u00f5":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm206,-253r20,12v-13,17,-28,31,-49,31v-30,0,-53,-38,-73,-5r-20,-12v13,-16,27,-31,47,-31v29,0,56,40,75,5","w":209},"\u0161":{"d":"212,-138r-46,0v5,-23,-7,-22,-31,-22v-24,0,-41,0,-46,25v-4,19,1,19,40,21v44,2,85,-1,72,60v-11,51,-52,56,-100,56v-51,0,-86,1,-73,-61r45,0v-5,27,1,30,34,30v27,0,44,1,49,-25v4,-17,4,-25,-42,-26v-69,-1,-79,-10,-69,-58v11,-52,48,-53,97,-53v37,0,81,0,70,53xm145,-210r-56,-39r13,-18r50,23r60,-23r5,18","w":200},"\u00fa":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm192,-267r9,29r-76,31r-6,-19","w":213},"\u00fb":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm157,-267r55,39r-13,18r-50,-23r-60,23r-5,-18","w":213},"\u00fc":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm105,-250r36,0r-7,31r-35,0xm179,-250r36,0r-7,31r-36,0","w":213},"\u00f9":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm126,-267r54,41r-14,19r-63,-31","w":213},"\u00fd":{"d":"217,-189r-91,197v-21,48,-44,85,-108,74r8,-34v34,7,46,-24,56,-48r-22,0r-21,-189r46,0r15,161r71,-161r46,0xm172,-267r10,29r-77,31r-5,-19","w":174,"k":{",":22,".":22}},"\u00ff":{"d":"217,-189r-91,197v-21,48,-44,85,-108,74r8,-34v34,7,46,-24,56,-48r-22,0r-21,-189r46,0r15,161r71,-161r46,0xm86,-250r36,0r-7,31r-36,0xm159,-250r36,0r-7,31r-35,0","w":174,"k":{",":22,".":22}},"\u017e":{"d":"195,-151r-127,116r102,0r-7,35r-155,0r9,-39r125,-115r-93,0r8,-35r146,0xm130,-210r-55,-39r12,-18r51,23r60,-23r5,18","w":171},"\u2126":{"d":"27,-33v21,-1,47,2,66,-1v-26,-20,-47,-58,-36,-110v15,-70,84,-125,165,-125v85,0,124,61,111,124v-11,54,-51,90,-84,112r67,0r-7,33r-117,0r5,-25v38,-18,77,-54,90,-113v10,-48,-12,-97,-71,-97v-56,0,-104,43,-116,99v-12,54,12,94,43,111r-6,25r-117,0","w":329},"\u03bc":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-20,30,-47,33,-84,30r-17,81r-46,0r58,-271r45,0r-25,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r23,-109r45,0","w":213},"\u03c0":{"d":"285,-163r-33,0v-9,46,-29,117,-29,163r-44,0v-5,-39,21,-120,28,-163r-72,0v-12,48,-43,131,-65,163r-44,0v23,-39,52,-116,64,-163v-24,0,-38,2,-49,5r0,-27v55,-23,177,-8,256,-12","w":262},"\u20ac":{"d":"254,-84r-13,60v-23,29,-66,26,-117,26v-71,0,-83,-25,-70,-95r-31,0r17,-32r20,0r4,-19r-30,0r17,-32r21,0v21,-87,60,-96,145,-96v46,0,64,6,77,30r-25,50v-18,-44,-43,-36,-85,-36v-44,0,-56,8,-66,52r142,0r-16,32r-133,0r-4,19r127,0r-17,32r-117,0v-16,53,20,52,69,51v36,0,54,-10,85,-42"},"\u2113":{"d":"211,-72r15,18v-31,39,-67,55,-102,55v-48,0,-67,-32,-61,-68v-9,5,-18,12,-27,17r-8,-23v14,-9,27,-17,40,-26r21,-96v15,-73,55,-98,94,-98v42,0,55,30,47,65v-10,49,-54,92,-121,139v-10,31,5,56,32,56v27,0,54,-20,70,-39xm133,-203r-16,76v42,-33,74,-67,81,-99v5,-22,1,-38,-19,-38v-15,0,-36,15,-46,61","w":225},"\u212e":{"d":"127,-55v37,67,152,61,194,4r22,0v-27,32,-71,53,-120,53v-84,0,-152,-61,-152,-137v0,-76,68,-137,152,-137v86,1,154,61,152,141r-248,1r0,75xm320,-216v-37,-61,-144,-62,-190,-8v-6,21,-5,62,-1,85r191,-2r0,-75","w":388},"\u2202":{"d":"96,-247r-7,-29v15,-9,44,-23,84,-23v64,0,107,54,88,146v-18,84,-78,154,-155,154v-63,0,-79,-51,-71,-90v12,-57,62,-97,115,-97v42,0,59,30,66,40v17,-60,-2,-120,-55,-120v-29,0,-52,11,-65,19xm79,-89v-7,31,8,57,39,57v38,0,71,-41,85,-80v-2,-15,-18,-41,-50,-41v-33,0,-66,28,-74,64","w":248},"\u220f":{"d":"361,-227r-49,0r0,263r-43,0r0,-263r-111,0r0,263r-44,0r0,-263r-48,0r0,-37r295,0r0,37","w":370},"\u2211":{"d":"296,36r-231,0r0,-25r113,-124r-107,-123r0,-28r218,0r0,36v-51,2,-110,-4,-157,2r97,108r-104,117r171,0r0,37","w":304},"\u2219":{"d":"113,-127r-10,50r-46,0r11,-50r45,0","w":126},"\u221a":{"d":"318,-314r-100,371r-37,0r-69,-171r-33,12r-8,-22r67,-27r62,165r86,-328r32,0","w":312},"\u221e":{"d":"341,-109v0,42,-33,68,-66,68v-24,0,-47,-14,-76,-48v-22,26,-44,48,-77,48v-34,0,-64,-27,-64,-66v0,-40,29,-68,67,-68v31,0,55,21,77,48v20,-22,40,-48,76,-48v36,0,63,27,63,66xm83,-107v0,23,17,42,43,42v25,0,44,-24,60,-42v-17,-22,-35,-45,-63,-45v-24,0,-40,20,-40,45xm275,-152v-26,0,-47,28,-61,43v26,31,42,44,63,44v25,0,38,-22,38,-42v0,-27,-17,-45,-40,-45","w":361},"\u222b":{"d":"116,-225v0,-72,33,-114,94,-94r-6,27v-41,-14,-52,19,-52,71v0,60,6,121,6,185v0,76,-34,113,-96,93r6,-29v38,13,54,-8,54,-65v0,-65,-6,-126,-6,-188","w":213},"\u2248":{"d":"117,-174v37,0,55,32,87,31v17,0,30,-10,43,-30r15,16v-14,24,-33,40,-57,40v-31,0,-57,-31,-90,-31v-20,0,-32,15,-44,30r-16,-16v13,-23,37,-40,62,-40xm117,-99v40,0,52,30,87,30v18,0,30,-10,43,-29r15,16v-14,23,-33,38,-58,38v-30,0,-59,-29,-89,-30v-20,0,-32,14,-44,30r-16,-16v13,-23,37,-39,62,-39","w":280},"\u2260":{"d":"221,-201r-18,39r65,0r0,26r-76,0r-27,58r103,0r0,25r-115,0r-23,49r-20,-9r19,-40r-63,0r0,-25r74,0r27,-58r-101,0r0,-26r112,0r22,-48","w":289},"\u2264":{"d":"274,-37r-198,-91r0,-27r198,-90r0,29r-171,75r171,75r0,29xm275,4r-202,0r0,-25r202,0r0,25","w":296},"\u2265":{"d":"76,-245r198,91r0,27r-198,90r0,-29r171,-75r-171,-75r0,-29xm274,4r-200,0r0,-25r200,0r0,25","w":295},"\u25ca":{"d":"291,-132r-89,152r-34,0r-88,-152r89,-151r34,0xm253,-131r-68,-120r-67,119r68,120v19,-42,45,-79,67,-119","w":313},"\u00a0":{"w":126},"\u00ad":{"d":"25,-117r96,0r-8,35r-96,0","w":95},"\u02c9":{"d":"80,-248r99,0r-5,27r-100,0","w":153},"\u03a9":{"d":"27,-33v21,-1,47,2,66,-1v-26,-20,-47,-58,-36,-110v15,-70,84,-125,165,-125v85,0,124,61,111,124v-11,54,-51,90,-84,112r67,0r-7,33r-117,0r5,-25v38,-18,77,-54,90,-113v10,-48,-12,-97,-71,-97v-56,0,-104,43,-116,99v-12,54,12,94,43,111r-6,25r-117,0","w":329},"\u2215":{"d":"261,-270r-228,270r-34,0r228,-270r34,0","w":203},"\u2206":{"d":"12,0r5,-25r161,-246r53,0r56,246r-6,25r-269,0xm66,-33r172,0r-44,-201","w":293},"\u2010":{"d":"25,-117r96,0r-8,35r-96,0","w":95}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1987, 1992, 1998, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a trademark of Linotype GmbH registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions.
 * 
 * Full name:
 * EurostileLTStd
 * 
 * Designer:
 * Aldo Novarese, A. Butti
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":248,"face":{"font-family":"Eurostile LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 2 2 2 5 2 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-24 -348 454.416 90","underline-thickness":"18","underline-position":"-18","stemh":"23","stemv":"28","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":124},"!":{"d":"66,-37r0,37r-33,0r0,-37r33,0xm66,-270r-3,195r-27,0r-3,-195r33,0","w":97},"\"":{"d":"18,-270r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89xm76,-270r33,0v2,34,-3,62,-9,89r-15,0v-5,-27,-11,-54,-9,-89","w":127},"#":{"d":"98,-270r28,0r-13,73r45,0r12,-73r29,0r-13,73r33,0r0,29r-38,0r-10,59r36,0r0,29r-42,0r-13,80r-28,0r14,-80r-45,0r-14,80r-27,0r13,-80r-36,0r0,-29r42,0r9,-59r-38,0r0,-29r43,0xm108,-168r-9,59r44,0r10,-59r-45,0"},"$":{"d":"113,-150r0,-95v-48,0,-69,1,-69,47v0,50,27,48,69,48xm136,-125r0,100v53,0,72,-3,72,-50v0,-51,-23,-48,-72,-50xm136,-245r0,95v57,1,102,1,102,72v0,69,-31,78,-102,78r0,31r-23,0r0,-31v-71,2,-105,-9,-102,-84r30,0v0,47,-2,60,72,59r0,-100v-58,0,-100,-2,-100,-69v0,-70,35,-76,100,-76r0,-25r23,0r0,25v69,-2,99,7,96,76r-31,0v1,-45,-6,-53,-65,-51"},"%":{"d":"251,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm251,-135v59,0,61,32,59,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm263,-270r-183,272r-24,0r182,-272r25,0xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-155v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-35,32,-35,67v0,30,5,30,35,30","w":318},"&":{"d":"203,-52r-106,-87v-40,9,-43,15,-43,58v0,53,8,56,72,56v29,0,71,3,77,-27xm266,0r-40,-33v-15,35,-57,35,-100,35v-60,0,-103,0,-103,-84v0,-66,20,-63,55,-73v-18,-15,-24,-23,-24,-53v0,-53,29,-64,82,-64v55,0,82,20,77,85r-31,0v0,-40,2,-58,-46,-58v-29,0,-52,1,-52,37v0,19,5,25,19,37r105,89v1,-12,1,-25,0,-37r29,0v0,21,1,41,-3,59r49,39","w":283},"\u2019":{"d":"36,-233r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24","w":72,"k":{"\u2019":19,"s":14,"\u0161":14}},"(":{"d":"90,-272r0,27v-38,-6,-40,31,-40,57r0,157v-1,25,2,64,40,58r0,27v-59,4,-70,-36,-70,-85r0,-157v-1,-49,11,-88,70,-84","w":112},")":{"d":"22,-245r0,-27v59,-4,71,35,71,84r0,157v1,49,-12,90,-71,85r0,-27v38,6,40,-32,40,-58r0,-157v1,-25,-2,-63,-40,-57","w":112},"*":{"d":"196,-212r-55,20r33,47r-16,12r-33,-48r-36,48r-16,-12r34,-47r-55,-21r7,-19r55,20r0,-58r20,0r0,58r55,-20"},"+":{"d":"92,-189r27,0r0,73r73,0r0,27r-73,0r0,74r-27,0r0,-74r-74,0r0,-27r74,0r0,-73","w":210},",":{"d":"57,0r-13,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,18,-8,17,-24","w":124},"-":{"d":"0,-112r94,0r0,27r-94,0r0,-27","w":93},".":{"d":"72,-37r0,37r-32,0r0,-37r32,0","w":124},"\/":{"d":"252,-270r-209,311r-33,0r208,-311r34,0","w":261},"0":{"d":"124,-245v-66,0,-84,0,-84,70r0,80v0,70,18,70,84,70v67,0,84,0,84,-70r0,-80v0,-70,-17,-70,-84,-70xm125,2v-84,0,-114,-11,-116,-97r0,-80v2,-86,31,-97,115,-97v84,0,113,11,115,97r0,80v-2,86,-30,97,-114,97"},"1":{"d":"161,-270r0,270r-30,0r0,-247r-69,76r-20,-18r75,-81r44,0"},"2":{"d":"220,-27r0,27r-194,0r0,-46v0,-70,30,-74,95,-81v57,-6,69,-4,69,-60v0,-56,-12,-58,-63,-58v-73,0,-71,11,-70,68r-31,0v0,-69,-1,-95,101,-95v72,0,94,17,94,85v0,72,-25,83,-93,87v-68,4,-73,17,-71,73r163,0"},"3":{"d":"99,-125r0,-27v47,-3,87,14,87,-45v0,-45,-6,-48,-70,-48v-58,0,-61,10,-61,58r-31,0v-4,-74,28,-85,96,-85v58,0,96,0,96,70v0,36,-7,58,-44,64v41,3,50,22,50,62v0,81,-40,78,-105,78v-70,0,-102,-16,-96,-89r30,0v-1,51,-2,62,66,62v66,0,74,-1,74,-55v0,-59,-44,-42,-92,-45"},"4":{"d":"193,-270r0,181r40,0r0,27r-40,0r0,62r-30,0r0,-62r-152,0r0,-36r136,-172r46,0xm163,-89r-1,-161r-126,161r127,0"},"5":{"d":"60,-243r0,81v13,-22,50,-23,73,-23v84,0,91,39,91,91v0,85,-17,96,-99,96v-77,0,-97,-12,-101,-79r31,0v-3,48,18,52,70,52v63,0,68,-10,68,-69v0,-58,-10,-64,-68,-64v-22,0,-60,-4,-65,25r-31,0r0,-137r184,0r0,27r-153,0"},"6":{"d":"131,-140v-59,0,-76,3,-76,47v0,59,5,68,69,68v67,0,70,-8,70,-57v0,-51,-5,-58,-63,-58xm24,-93r0,-107v1,-64,39,-72,102,-72v47,0,96,4,92,70r-30,0v2,-41,-19,-43,-62,-43v-49,0,-71,-1,-71,45r0,58v7,-17,28,-25,69,-25v75,0,100,9,100,85v0,73,-23,84,-100,84v-76,0,-100,-11,-100,-95"},"7":{"d":"220,-270r0,39r-131,231r-36,0r141,-245r-171,0r0,-25r197,0"},"8":{"d":"23,-75v0,-40,7,-57,47,-66v-37,-6,-43,-21,-43,-61v0,-67,30,-70,97,-70v64,0,98,2,98,70v0,35,-4,55,-43,62v37,6,46,21,46,65v0,69,-23,77,-101,77v-64,0,-101,0,-101,-77xm58,-202v0,41,4,49,66,49v62,0,67,-7,67,-49v0,-37,-5,-43,-67,-43v-62,0,-66,4,-66,43xm54,-75v0,44,3,49,70,50v60,1,70,-9,70,-50v0,-45,-8,-51,-70,-51v-60,0,-70,3,-70,51"},"9":{"d":"126,-132v62,0,69,-3,69,-54v0,-58,-15,-59,-69,-59v-62,0,-69,2,-69,59v0,51,10,54,69,54xm126,2v-67,0,-107,-5,-103,-71r30,0v-1,41,7,44,73,44v57,0,69,-2,69,-58v-1,-15,2,-33,-1,-46v-12,26,-57,24,-68,24v-75,0,-100,-9,-100,-81v0,-74,22,-86,100,-86v76,0,100,12,100,86r0,103v0,68,-14,85,-100,85"},":":{"d":"72,-37r0,37r-32,0r0,-37r32,0xm72,-189r0,37r-32,0r0,-37r32,0","w":124},";":{"d":"57,0r-13,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,18,-8,17,-24xm76,-189r0,37r-32,0r0,-37r32,0","w":124},"<":{"d":"192,-174r0,29r-142,58r142,58r0,29r-174,-75r0,-25","w":210},"=":{"d":"18,-144r174,0r0,27r-174,0r0,-27xm18,-88r174,0r0,27r-174,0r0,-27","w":210},">":{"d":"192,-100r0,25r-174,75r0,-29r141,-58r-141,-58r0,-29","w":210},"?":{"d":"108,-77r-31,0v-1,-43,6,-50,51,-67v30,-11,33,-15,33,-56v0,-40,-10,-45,-54,-45v-52,0,-60,11,-58,60r-28,0v-3,-71,22,-87,86,-87v59,0,83,13,83,72v0,44,-3,65,-47,80v-35,11,-36,13,-35,43xm108,-37r0,37r-32,0r0,-37r32,0","w":210},"@":{"d":"232,-198r25,0r-32,101v-3,10,4,16,20,16v34,0,50,-48,50,-81v0,-54,-60,-87,-111,-87v-64,0,-122,61,-121,125v2,83,97,124,175,92r9,21v-97,39,-213,-13,-211,-116v2,-78,70,-145,147,-145v63,0,137,38,137,107v0,48,-30,105,-83,105v-16,0,-33,-5,-36,-23v-12,12,-24,23,-43,23v-33,0,-53,-29,-51,-60v2,-41,33,-83,77,-85v17,-1,37,11,41,28xm166,-81v41,0,75,-103,20,-103v-32,0,-52,37,-52,65v0,18,12,38,32,38","w":356},"A":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0","w":246},"B":{"d":"53,-125r0,98r96,0v33,0,50,-4,50,-45v0,-36,-6,-53,-46,-53r-100,0xm166,0r-144,0r0,-270r137,0v51,0,62,24,62,71v0,29,-7,47,-33,58v36,6,41,33,41,66v0,49,-17,75,-63,75xm53,-243r0,91v60,-7,138,26,138,-51v0,-68,-85,-31,-138,-40","w":249},"C":{"d":"231,-67v1,79,-66,68,-136,69v-49,0,-79,-31,-79,-85r0,-104v0,-86,61,-85,138,-85v60,0,75,29,74,86r-31,0v4,-48,-14,-59,-65,-59v-63,0,-85,8,-85,57v0,68,-22,169,53,163v51,-4,110,8,101,-45r0,-22r30,0r0,25","w":239},"D":{"d":"23,0r0,-270r131,0v33,0,93,4,93,104r0,64v0,27,-4,102,-85,102r-139,0xm54,-27r100,0v80,3,58,-80,62,-151v0,-15,-6,-65,-57,-65r-105,0r0,216","w":264},"E":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0","w":201},"F":{"d":"54,-243r0,94r131,0r0,26r-131,0r0,123r-31,0r0,-270r166,0r0,27r-135,0","w":197,"k":{"A":15,"\u00c6":15,"\u00c1":15,"\u00c2":15,"\u00c4":15,"\u00c0":15,"\u00c5":15,"\u00c3":15,",":50,".":50}},"G":{"d":"122,-135r117,0r0,59v3,75,-47,78,-119,78v-72,0,-104,-13,-104,-97r0,-83v0,-106,62,-94,150,-94v49,0,78,24,72,81r-31,0v13,-58,-37,-54,-94,-54v-58,0,-67,11,-67,70r0,87v-4,63,37,63,97,63v70,0,66,-25,65,-83r-86,0r0,-27","w":250},"H":{"d":"245,-270r0,270r-31,0r0,-124r-158,0r0,124r-30,0r0,-270r30,0r0,119r158,0r0,-119r31,0","w":270},"I":{"d":"57,-270r0,270r-31,0r0,-270r31,0","w":82},"J":{"d":"147,-270r30,0r0,205v0,54,-34,67,-82,67v-47,0,-85,-8,-85,-61r0,-39r31,0v1,45,-8,73,49,73v28,0,57,0,57,-36r0,-209","w":203},"K":{"d":"57,-270r0,118r26,0r110,-118r40,0r-123,131r138,139r-41,0r-124,-125r-26,0r0,125r-31,0r0,-270r31,0","w":244},"L":{"d":"58,-270r0,243r137,0r0,27r-168,0r0,-270r31,0","w":200,"k":{"T":28,"V":17,"W":12,"y":13,"\u00fd":13,"\u00ff":13,"Y":29,"\u00dd":29,"\u0178":29,"\u2019":36}},"M":{"d":"292,-247r-103,247r-30,0r-103,-247r0,247r-31,0r0,-270r53,0r96,231r95,-231r53,0r0,270r-30,0r0,-247","w":347},"N":{"d":"257,-270r0,270r-50,0r-152,-245r0,245r-31,0r0,-270r51,0r152,247r0,-247r30,0","w":281},"O":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96","w":241},"P":{"d":"21,0r0,-270r138,0v52,0,64,36,64,82v0,24,0,83,-66,83r-105,0r0,105r-31,0xm193,-184v0,-93,-76,-49,-141,-59r0,111v62,-9,141,31,141,-52","w":237,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":90,".":90}},"Q":{"d":"264,-33r-12,21r-21,-14v-25,31,-69,28,-120,28v-109,0,-90,-84,-93,-179v-3,-83,49,-95,135,-95v69,0,94,25,94,95v0,43,4,95,-5,129xm137,-117r78,51v5,-37,2,-81,2,-122v0,-33,-9,-57,-58,-57v-60,-1,-110,-6,-110,61r0,88v-7,84,44,70,110,71v18,0,39,-4,48,-17r-84,-54","w":265},"R":{"d":"55,-108r0,108r-30,0r0,-270v91,7,208,-32,208,78v0,39,-6,65,-47,72v57,0,42,66,44,120r-31,0v-3,-51,14,-108,-45,-108r-99,0xm55,-135r95,0v47,-1,53,-15,53,-60v0,-71,-91,-43,-148,-48r0,108","w":252,"k":{"T":2,"y":-5,"\u00fd":-5,"\u00ff":-5,"Y":2,"\u00dd":2,"\u0178":2}},"S":{"d":"112,-125v-53,-4,-99,2,-99,-69v0,-72,33,-78,100,-78v58,0,100,3,97,76r-31,0v-1,-47,-10,-49,-67,-49v-60,0,-68,8,-68,45v0,51,24,46,74,48v64,3,97,2,97,75v0,76,-36,79,-104,79v-69,0,-105,-8,-99,-86r31,0v-1,59,11,59,68,59v58,0,73,0,73,-53v0,-51,-23,-43,-72,-47","w":226},"T":{"d":"120,-243r0,243r-31,0r0,-243r-88,0r0,-27r206,0r0,27r-87,0","w":208,"k":{"\u00fc":34,"\u0161":34,"\u00f2":34,"\u00f6":34,"\u00e8":34,"\u00eb":34,"\u00ea":34,"\u00e3":34,"\u00e5":34,"\u00e0":34,"\u00e4":34,"\u00e2":34,"w":21,"y":23,"\u00fd":23,"\u00ff":23,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":58,".":58,"-":22,"a":34,"\u00e6":34,"\u00e1":34,"c":34,"\u00e7":34,"e":34,"\u00e9":34,"i":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"o":34,"\u00f8":34,"\u0153":34,"\u00f3":34,"\u00f4":34,"\u00f5":34,"r":24,"s":34,"u":34,"\u00fa":34,"\u00fb":34,"\u00f9":34,":":29,";":29}},"U":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194","w":265},"V":{"d":"201,-270r33,0r-96,270r-44,0r-96,-270r33,0r86,247","w":231,"k":{"\u00f6":22,"\u00f4":22,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e3":22,"\u00e5":22,"\u00e0":22,"\u00e4":22,"\u00e2":22,"y":5,"\u00fd":5,"\u00ff":5,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":54,".":54,"-":11,"a":22,"\u00e6":22,"\u00e1":22,"e":22,"\u00e9":22,"o":22,"\u00f8":22,"\u0153":22,"\u00f3":22,"\u00f2":22,"\u00f5":22,"r":15,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,":":22,";":22}},"W":{"d":"404,-270r-85,270r-47,0r-71,-243r-72,243r-45,0r-83,-270r31,0r74,247r73,-247r45,0r73,247r75,-247r32,0","w":404,"k":{"\u00fc":16,"\u00f6":20,"\u00ea":21,"\u00e4":20,"y":5,"\u00fd":5,"\u00ff":5,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":47,".":47,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":21,"\u00e9":21,"\u00eb":21,"\u00e8":21,"i":-3,"\u00ed":-3,"\u00ee":-3,"\u00ef":-3,"\u00ec":-3,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"r":14,"u":16,"\u00fa":16,"\u00fb":16,"\u00f9":16,":":18,";":18}},"X":{"d":"231,-270r-87,130r93,140r-36,0r-82,-124r-84,124r-37,0r96,-140r-88,-130r36,0r77,116r76,-116r36,0","w":235},"Y":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0","w":227,"k":{"\u00fc":35,"\u00f6":40,"v":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,",":54,".":54,"-":25,"a":40,"\u00e6":40,"\u00e1":40,"\u00e2":40,"\u00e4":40,"\u00e0":40,"\u00e5":40,"\u00e3":40,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f2":40,"\u00f5":40,"u":35,"\u00fa":35,"\u00fb":35,"\u00f9":35,":":22,";":22,"p":33,"q":40}},"Z":{"d":"216,-270r0,28r-170,215r174,0r0,27r-211,0r0,-27r170,-216r-165,0r0,-27r202,0","w":229},"[":{"d":"20,-272r70,0r0,27r-40,0r0,272r40,0r0,27r-70,0r0,-326","w":111},"\\":{"d":"85,41r-103,-311r33,0r103,311r-33,0","w":100},"]":{"d":"92,54r-70,0r0,-27r40,0r0,-272r-40,0r0,-27r70,0r0,326","w":111},"^":{"d":"93,-270r25,0r74,176r-29,0r-58,-141r-58,141r-29,0","w":210},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"\u2018":{"d":"37,-232r13,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-18,8,-17,24","w":72,"k":{"\u2018":19}},"a":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129","w":205},"b":{"d":"159,-94v0,-62,-7,-74,-52,-74v-50,0,-53,20,-53,74v0,61,11,73,53,73v50,0,52,-21,52,-73xm24,0r0,-270r29,0r1,105v9,-24,38,-26,60,-26v65,0,74,38,74,97v0,62,-8,96,-74,96v-26,0,-50,-4,-60,-25v-3,5,0,16,-1,23r-29,0","w":206},"c":{"d":"153,-68r29,0v4,58,-31,70,-80,70v-78,0,-84,-30,-84,-100v0,-62,11,-93,79,-93v48,-1,84,7,82,64r-29,0v2,-37,-15,-41,-51,-41v-50,0,-52,18,-52,78v0,53,3,69,58,69v40,0,50,-9,48,-47","w":196},"d":{"d":"101,-21v44,0,52,-15,52,-73v0,-52,-6,-74,-52,-74v-44,0,-54,8,-54,74v0,66,13,73,54,73xm153,0r0,-24v-11,23,-35,26,-61,26v-67,0,-74,-38,-74,-96v0,-57,6,-97,74,-97v21,0,53,2,61,25r0,-104r29,0r0,270r-29,0","w":206},"e":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57","w":203},"f":{"d":"60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26","w":108,"k":{"\u2019":-11,"f":-5,"\ufb01":-5,"\ufb02":-5,"\u00df":-5}},"g":{"d":"100,-21v55,0,54,-31,54,-73v0,-53,-3,-74,-54,-74v-53,0,-52,24,-52,74v0,45,-3,73,52,73xm183,-189r0,211v0,50,-37,62,-83,62v-44,0,-79,-7,-76,-62r29,0v0,36,17,39,47,39v34,0,54,-4,54,-41r0,-43v-8,23,-39,25,-61,25v-61,0,-75,-31,-75,-96v0,-63,10,-97,75,-97v26,0,50,3,61,26r0,-24r29,0","w":206},"h":{"d":"53,-270r1,104v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-270r28,0","w":208},"i":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm53,-270r0,31r-29,0r0,-31r29,0","w":77},"j":{"d":"53,-189r0,212v2,34,-16,60,-55,50r0,-22v25,6,26,-18,26,-38r0,-202r29,0xm53,-270r0,31r-29,0r0,-31r29,0","w":75},"k":{"d":"53,-270r0,156r11,0r68,-75r35,0r-81,87r96,102r-37,0r-81,-91r-11,0r0,91r-29,0r0,-270r29,0","w":175},"l":{"d":"53,-270r0,270r-29,0r0,-270r29,0","w":77},"m":{"d":"52,-189v1,9,-2,22,1,29v10,-24,39,-31,63,-31v23,0,52,6,58,31v30,-50,133,-45,133,35r0,125r-28,0r0,-122v0,-32,-5,-46,-42,-46v-86,0,-50,100,-57,168r-29,0r0,-127v-1,-25,-1,-41,-42,-41v-81,0,-52,99,-57,168r-28,0r0,-189r28,0","w":330},"n":{"d":"53,-189v1,7,-2,18,1,23v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-189r28,0","w":208},"o":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74","w":205},"p":{"d":"106,-168v-54,0,-54,24,-54,74v0,45,3,73,54,73v44,0,52,-12,52,-73v0,-57,-4,-74,-52,-74xm52,-189v1,8,-1,18,1,24v12,-22,37,-26,61,-26v69,0,74,40,74,97v0,75,-19,96,-74,96v-23,1,-49,-4,-62,-24r0,104r-28,0r0,-271r28,0","w":206},"q":{"d":"102,-21v48,0,52,-24,52,-73v0,-53,-2,-74,-56,-74v-38,0,-50,8,-50,74v0,53,1,73,54,73xm183,-189r0,271r-29,0r0,-104v-9,22,-38,24,-56,24v-57,0,-79,-15,-79,-96v0,-62,7,-97,79,-97v22,0,46,5,56,25r0,-23r29,0","w":207},"r":{"d":"21,-189r28,0v0,8,-3,18,-1,24v28,-47,123,-31,106,41r-27,0v1,-28,-2,-44,-32,-44v-76,0,-37,104,-46,168r-28,0r0,-189","w":159,"k":{"v":-13,"w":-12,"y":-10,"\u00fd":-10,"\u00ff":-10,"f":-7,"\ufb01":-7,"\ufb02":-7,"\u00df":-7,",":54,".":43,"h":-7,"t":-13,"x":-5,"-":-7}},"s":{"d":"100,-191v35,-1,78,3,74,51r-29,0v2,-26,-11,-26,-45,-26v-36,0,-52,0,-52,23v0,34,8,32,38,33v49,3,93,-5,93,57v0,53,-37,55,-79,55v-48,0,-92,-5,-83,-62r29,0v-2,34,2,36,54,37v19,0,50,4,50,-29v0,-35,-15,-29,-50,-31v-41,-3,-82,2,-82,-52v0,-55,31,-56,82,-56","w":193},"t":{"d":"125,-189r0,23r-74,0r0,120v0,21,6,25,27,25v33,0,26,-21,27,-46r27,0v3,45,-10,69,-55,69v-85,0,-45,-101,-54,-168r-25,0r0,-23r25,0r0,-46r28,0r0,46r74,0","w":131},"u":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0","w":205},"v":{"d":"165,-189r-64,189r-40,0r-62,-189r28,0r55,167r52,-167r31,0","w":163,"k":{",":36,".":36}},"w":{"d":"270,-189r-53,189r-41,0r-41,-169r-41,169r-41,0r-52,-189r30,0r43,169r42,-169r40,0r42,169r43,-169r29,0","w":271,"k":{",":32,".":32}},"x":{"d":"158,-189r-60,90r67,99r-34,0r-49,-76r-49,76r-34,0r68,-99r-61,-90r32,0r44,69r43,-69r33,0","w":163},"y":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0","w":157,"k":{",":32,".":32}},"z":{"d":"155,-189r0,26r-113,140r113,0r0,23r-146,0r0,-26r113,-140r-104,0r0,-23r137,0","w":163},"{":{"d":"17,-96r0,-27v68,-3,-23,-170,88,-149r0,27v-44,-11,-29,46,-29,80v0,37,-23,54,-26,56v3,3,26,18,26,55v0,32,-18,90,29,81r0,27v-60,15,-60,-44,-60,-102v0,-28,-4,-45,-28,-48","w":120},"|":{"d":"60,-270r0,360r-27,0r0,-360r27,0","w":93},"}":{"d":"103,-122r0,27v-68,3,23,170,-88,149r0,-27v44,11,29,-47,29,-81v0,-37,23,-53,26,-55v-3,-3,-26,-19,-26,-56v0,-31,18,-89,-29,-80r0,-27v60,-15,60,44,60,102v0,28,4,45,28,48","w":120},"~":{"d":"43,-77r-25,0v-4,-35,29,-73,64,-54v23,11,41,30,69,36v14,0,17,-17,16,-31r25,0v4,38,-35,75,-74,48v-18,-12,-36,-27,-58,-33v-10,0,-18,17,-17,34","w":210},"\u00a1":{"d":"64,-189r0,37r-32,0r0,-37r32,0xm32,81r3,-195r26,0r3,195r-32,0","w":97},"\u00a2":{"d":"108,-51r0,-147v-42,2,-42,25,-42,73v0,53,3,72,42,74xm108,-247r23,0r0,26v39,1,67,14,66,64r-29,0v2,-31,-7,-40,-37,-41r0,147v32,2,43,-12,41,-47r29,0v2,52,-20,72,-70,70r0,30r-23,0r0,-30v-66,1,-72,-44,-72,-97v0,-55,6,-94,72,-96r0,-26"},"\u00a3":{"d":"159,-131r0,26r-77,0v-2,37,8,63,-22,81v55,3,118,-2,175,-2r0,26r-209,0r0,-23v35,-9,24,-47,26,-82r-33,0r0,-26r33,0r0,-60v0,-71,28,-81,87,-81v75,-1,92,17,91,83r-29,0v1,-45,-5,-56,-56,-56v-58,0,-63,4,-63,54r0,60r77,0"},"\u2044":{"d":"206,-270r-184,270r-24,0r182,-270r26,0","w":203},"\u00a5":{"d":"182,-184r37,0r0,25r-53,0r-24,40r77,0r0,25r-81,0r0,94r-30,0r0,-94r-78,0r0,-25r74,0r-24,-40r-50,0r0,-25r35,0r-51,-86r35,0r76,126r74,-126r36,0"},"\u0192":{"d":"149,-151r-31,173v-3,54,-35,69,-89,59r4,-23v32,6,50,-2,56,-34r31,-175r-37,0r4,-24r37,0v8,-60,17,-112,96,-96r-4,23v-34,-4,-52,2,-57,34r-6,39r50,0r-5,24r-49,0"},"\u00a7":{"d":"57,-109v0,46,57,33,87,49v36,10,46,2,46,-36v0,-39,-55,-34,-85,-46v-33,-14,-48,-5,-48,33xm150,-31v-47,-16,-120,-8,-120,-77v0,-25,6,-43,31,-50v-18,-9,-20,-28,-20,-46v0,-65,25,-68,85,-68v72,0,85,9,86,71r-27,0v0,-41,-5,-46,-59,-46v-40,0,-58,-2,-58,36v0,51,59,45,93,58v33,13,56,12,56,54v1,22,-5,46,-26,54v24,9,27,30,27,53v0,69,-34,70,-92,70v-67,0,-94,-4,-94,-75r27,0v1,39,0,50,67,50v40,0,65,3,65,-44v0,-31,-12,-30,-41,-40"},"\u00a4":{"d":"179,-156v12,10,12,59,-1,69r20,20r-21,20r-19,-20v-24,15,-42,16,-69,3r-20,19r-19,-22r17,-18v-14,-20,-14,-56,2,-72r-21,-22r20,-20r21,21v27,-12,43,-12,70,0r20,-20r21,22xm122,-78v18,0,43,-13,43,-44v0,-28,-25,-41,-43,-41v-18,0,-42,12,-42,42v0,30,24,43,42,43"},"'":{"d":"18,-270r33,0v2,34,-3,62,-9,89r-15,0v-5,-27,-11,-54,-9,-89","w":68},"\u201c":{"d":"93,-232r14,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-19,8,-18,24xm37,-232r13,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-18,8,-17,24","w":129},"\u00ab":{"d":"69,-207r21,13r-43,90r47,91r-19,13r-55,-104xm135,-207r21,13r-42,90r47,91r-20,13r-54,-104","w":181},"\u2039":{"d":"69,-207r21,13r-43,90r47,91r-19,13r-55,-104","w":114},"\u203a":{"d":"25,-194r21,-13r48,103r-54,104r-20,-13r47,-91","w":114},"\ufb01":{"d":"159,-189r0,189r-29,0r0,-189r29,0xm60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26xm159,-270r0,31r-29,0r0,-31r29,0","w":183},"\ufb02":{"d":"60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26xm160,-270r0,270r-28,0r0,-270r28,0","w":184},"\u2013":{"d":"0,-112r180,0r0,27r-180,0r0,-27","w":180},"\u2020":{"d":"139,-270r0,74r63,0r0,25r-63,0r0,246r-30,0r0,-246r-62,0r0,-25r62,0r0,-74r30,0"},"\u2021":{"d":"139,-270r0,85r63,0r0,25r-63,0r0,119r63,0r0,25r-63,0r0,91r-30,0r0,-91r-62,0r0,-25r62,0r0,-119r-62,0r0,-25r62,0r0,-85r30,0"},"\u00b7":{"d":"78,-121r0,37r-32,0r0,-37r32,0","w":124},"\u00b6":{"d":"236,75r-27,0r0,-320r-32,0r0,320r-27,0r0,-181v-77,-3,-139,19,-138,-81v0,-52,13,-83,75,-83r149,0r0,345xm150,-131r0,-114r-63,0v-42,0,-44,15,-44,58v0,80,49,50,107,56"},"\u2022":{"d":"161,-135v0,37,-30,67,-67,67v-37,0,-68,-29,-68,-67v0,-37,30,-68,68,-68v37,0,67,31,67,68","w":187},"\u201a":{"d":"41,0r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":82},"\u201e":{"d":"36,0r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24xm93,0r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":129},"\u201d":{"d":"36,-233r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24xm93,-233r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":129},"\u00bb":{"d":"91,-194r21,-13r49,103r-54,104r-20,-13r47,-91xm25,-194r21,-13r48,103r-54,104r-20,-13r47,-91","w":181},"\u2026":{"d":"76,-37r0,37r-32,0r0,-37r32,0xm196,-37r0,37r-32,0r0,-37r32,0xm316,-37r0,37r-32,0r0,-37r32,0","w":360},"\u2030":{"d":"251,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm251,-135v59,0,61,32,59,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm262,-270r-183,272r-24,0r182,-272r25,0xm394,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm394,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-155v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-35,32,-35,67v0,30,5,30,35,30","w":461},"\u00bf":{"d":"103,-111r31,0v1,42,-7,50,-51,67v-30,11,-34,15,-34,56v0,40,10,45,54,45v53,0,60,-12,58,-61r29,0v3,71,-23,88,-87,88v-59,0,-82,-13,-82,-72v0,-44,3,-65,47,-80v34,-11,36,-14,35,-43xm134,-189r0,37r-32,0r0,-37r32,0","w":210},"`":{"d":"41,-267r54,40r-10,15r-58,-36","w":121},"\u00b4":{"d":"81,-267r14,19r-58,36r-10,-15","w":121},"\u02c6":{"d":"90,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":179},"\u02dc":{"d":"62,-248v24,0,59,33,72,0r15,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,18,-27,35,-27","w":176},"\u00af":{"d":"28,-233r100,0r0,23r-100,0r0,-23","w":156},"\u02d8":{"d":"27,-265r19,0v7,44,76,44,83,0r19,0v-3,31,-30,54,-61,54v-31,0,-57,-23,-60,-54","w":175},"\u02d9":{"d":"59,-235r0,27r-32,0r0,-27r32,0","w":85},"\u00a8":{"d":"59,-235r0,27r-32,0r0,-27r32,0xm131,-235r0,27r-32,0r0,-27r32,0","w":157},"\u02da":{"d":"27,-234v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm41,-234v0,10,7,18,17,18v10,0,18,-8,18,-18v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17","w":116},"\u00b8":{"d":"47,14r19,11r-27,39r-16,-9","w":97},"\u02dd":{"d":"76,-270r16,18r-54,42r-11,-14xm133,-270r16,18r-54,42r-11,-14","w":176},"\u02db":{"d":"27,38v0,-22,17,-42,48,-38v-22,5,-46,50,-6,51v5,0,11,0,15,-2r0,17v-25,8,-57,0,-57,-28","w":110},"\u02c7":{"d":"89,-211r-62,-38r9,-16r53,27r56,-27r8,16","w":179},"\u2014":{"d":"0,-112r360,0r0,27r-360,0r0,-27","w":360},"\u00c6":{"d":"221,-243r0,92r135,0r0,25r-135,0r0,99r142,0r0,27r-173,0r0,-56r-126,0r-31,56r-36,0r149,-270r217,0r0,27r-142,0xm190,-83r0,-160r-25,0r-87,160r112,0","w":375},"\u00aa":{"d":"112,-157v0,-3,1,-8,-1,-9v-25,22,-87,19,-87,-24v0,-45,56,-44,85,-28v0,-27,0,-37,-29,-37v-22,0,-31,2,-30,18r-21,0v0,-34,23,-35,49,-35v30,0,53,2,53,38r0,77r-19,0xm75,-172v18,0,34,0,34,-18v0,-18,-12,-20,-31,-20v-23,0,-31,1,-31,18v0,19,9,20,28,20","w":158},"\u0141":{"d":"58,-144r0,117r137,0r0,27r-168,0r0,-118r-30,29r0,-31r30,-28r0,-122r31,0r0,96r56,-56r0,31","w":200,"k":{"T":28,"V":17,"W":12,"y":13,"\u00fd":13,"\u00ff":13,"Y":29,"\u00dd":29,"\u0178":29,"\u2019":36}},"\u00d8":{"d":"215,-201r-161,156v22,31,63,18,105,20v87,5,47,-104,56,-176xm46,-69r161,-157v-14,-28,-59,-15,-97,-19v-97,-10,-55,101,-64,176xm255,-270r0,31r-17,13v15,39,5,92,7,141v4,87,-55,87,-135,87v-29,0,-59,-2,-78,-27r-26,25r0,-30r16,-15v-11,-27,-6,-89,-7,-129v0,-104,58,-99,144,-98v29,0,54,7,69,26","w":260},"\u0152":{"d":"127,-245v-66,0,-81,3,-81,75r-1,72v0,71,20,73,82,73v67,0,86,-3,86,-73r0,-72v0,-72,-16,-75,-86,-75xm243,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0v-1,-9,2,-21,-1,-28v-15,30,-52,30,-85,30v-81,0,-112,-10,-112,-100r0,-72v0,-80,25,-102,112,-102v27,-1,78,4,86,31r0,-29r173,0r0,27r-143,0","w":399},"\u00ba":{"d":"81,-272v42,0,51,12,51,58v0,44,-4,60,-51,60v-49,0,-55,-11,-55,-60v0,-42,5,-58,55,-58xm81,-255v-31,0,-33,5,-33,41v0,42,1,42,33,42v28,0,30,-7,30,-42v0,-33,-1,-41,-30,-41","w":158},"\u00e6":{"d":"182,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm95,-91v-34,0,-48,1,-48,32v0,36,15,38,48,38v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35xm153,-95r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v17,0,62,-1,69,24v12,-22,47,-24,70,-24v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36r29,0v3,54,-35,59,-80,59v-30,0,-62,-3,-73,-31v-9,28,-43,31,-75,31v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19","w":335},"\u0131":{"d":"53,-189r0,189r-29,0r0,-189r29,0","w":77},"\u0142":{"d":"53,-154r0,154r-29,0r0,-131r-23,23r0,-26r23,-22r0,-114r29,0r0,91r23,-23r0,25","w":77},"\u00f8":{"d":"192,-194r0,24r-13,13v8,18,7,37,7,63v-1,69,-9,96,-82,96v-20,0,-55,-1,-70,-18r-23,22r0,-24r15,-14v-8,-16,-7,-44,-7,-62v0,-73,8,-97,85,-97v20,0,49,-1,66,17xm156,-133r-101,96v4,16,37,16,49,16v49,0,51,-5,53,-73v0,-13,0,-26,-1,-39xm49,-56r101,-97v-6,-15,-36,-15,-46,-15v-49,0,-58,6,-56,74v0,13,0,26,1,38","w":205},"\u0153":{"d":"156,-94v0,-69,-3,-74,-58,-74v-50,0,-50,12,-50,74v0,62,4,73,54,73v52,0,54,-12,54,-73xm18,-94v0,-65,5,-97,79,-97v24,-1,66,0,74,26v9,-25,41,-26,69,-26v69,0,84,27,81,103r-136,0v0,60,4,67,55,67v43,0,54,-3,52,-36r29,0v3,54,-36,60,-81,59v-31,0,-59,-2,-70,-26v-10,28,-46,26,-71,26v-72,0,-81,-29,-81,-96xm185,-111r107,0v-1,-54,-9,-57,-52,-57v-51,0,-53,13,-55,57","w":339},"\u00df":{"d":"30,0r0,-211v0,-52,24,-61,74,-61v37,0,76,7,76,53v0,25,-13,39,-36,45v48,8,50,43,50,84v0,47,-4,92,-64,92v-35,0,-59,-18,-54,-59r27,0v-1,22,5,36,27,36v25,0,34,-7,34,-69v0,-54,-16,-78,-77,-72r0,-23v37,3,73,-8,63,-30v0,-32,-15,-34,-46,-34v-31,0,-46,4,-46,38r0,211r-28,0","w":212},"\u00b9":{"d":"97,-272r0,163r-24,0r0,-146r-45,46r-12,-15r48,-48r33,0","w":149},"\u00ac":{"d":"165,-46r0,-71r-147,0r0,-27r174,0r0,98r-27,0","w":210},"\u00b5":{"d":"152,0v-1,-8,2,-19,-1,-25v-13,33,-68,31,-98,20r0,87r-29,0r0,-271r29,0r0,121v0,31,2,47,39,47v40,0,60,-6,60,-51r0,-117r29,0r0,189r-29,0","w":205},"\u2122":{"d":"339,-270r0,152r-25,0r-1,-130r-52,130r-14,0r-51,-130r0,130r-25,0r0,-152r40,0r44,107r45,-107r39,0xm145,-270r0,22r-47,0r0,130r-27,0r0,-130r-48,0r0,-22r122,0","w":360},"\u00d0":{"d":"25,-152r0,-118r132,0v33,0,92,4,92,104r0,64v0,27,-4,102,-85,102r-139,0r0,-126r-37,0r0,-26r37,0xm56,-243r0,91r74,0r0,26r-74,0r0,99r101,0v80,3,58,-80,62,-151v0,-15,-6,-65,-57,-65r-106,0","w":264},"\u00bd":{"d":"282,-270r-183,270r-24,0r182,-270r25,0xm65,-270r33,0r0,162r-24,0r0,-145r-45,46r-12,-14xm252,-22r103,0r0,22r-126,0v-4,-55,8,-78,62,-78v33,0,41,-2,41,-34v0,-28,-8,-30,-38,-30v-44,-1,-43,5,-42,35r-23,0v0,-42,0,-56,65,-56v47,0,62,10,62,51v0,44,-17,52,-61,55v-38,3,-44,7,-43,35","w":372},"\u00b1":{"d":"92,-189r27,0r0,55r73,0r0,27r-73,0r0,54r-27,0r0,-54r-74,0r0,-27r74,0r0,-55xm18,-4r0,-27r174,0r0,27r-174,0","w":210},"\u00de":{"d":"21,0r0,-270r31,0r0,53r107,0v52,0,64,35,64,81v0,24,0,83,-66,83r-105,0r0,53r-31,0xm193,-132v0,-93,-77,-47,-141,-58r0,110v62,-9,141,31,141,-52","w":237},"\u00bc":{"d":"329,-162r0,108r24,0r0,21r-24,0r0,33r-23,0r0,-33r-97,0r0,-26r87,-103r33,0xm289,-270r-183,270r-24,0r182,-270r25,0xm306,-54r-1,-93r-78,93r79,0xm100,-270r0,162r-23,0r0,-145r-45,46r-12,-14r48,-49r32,0","w":372},"\u00f7":{"d":"192,-116r0,27r-174,0r0,-27r174,0xm124,-15r-38,0r0,-38r38,0r0,38xm124,-152r-38,0r0,-37r38,0r0,37","w":210},"\u00a6":{"d":"60,63r-27,0r0,-126r27,0r0,126xm60,-243r0,126r-27,0r0,-126r27,0","w":93},"\u00b0":{"d":"126,-218v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm108,-218v0,-19,-16,-36,-36,-36v-19,0,-36,17,-36,36v0,20,16,36,36,36v19,0,36,-16,36,-36","w":144},"\u00fe":{"d":"106,-168v-54,0,-54,24,-54,74v0,45,3,73,54,73v44,0,52,-12,52,-73v0,-57,-4,-74,-52,-74xm53,-22v-4,31,0,70,-1,104r-28,0r0,-352r28,0r1,105v12,-22,37,-26,61,-26v69,0,74,40,74,97v0,75,-19,96,-74,96v-22,0,-50,-2,-61,-24","w":206},"\u00be":{"d":"333,-162r0,108r24,0r0,21r-24,0r0,33r-23,0r0,-33r-97,0r0,-26r87,-103r33,0xm310,-54r-1,-93r-78,93r79,0xm306,-270r-183,270r-24,0r182,-270r25,0xm67,-183r0,-20v27,-2,53,9,53,-24v0,-23,-4,-25,-42,-25v-33,-1,-36,5,-36,31r-24,0v-2,-45,18,-51,62,-51v37,0,63,0,63,42v0,21,-3,37,-29,38v27,2,33,14,33,38v0,49,-27,47,-69,47v-45,0,-66,-9,-62,-54r24,0v0,29,-1,34,38,34v39,0,45,-1,45,-30v0,-36,-27,-24,-56,-26","w":372},"\u00b2":{"d":"38,-130r103,0r0,21r-127,0v-4,-55,8,-78,62,-78v33,0,42,-2,42,-34v0,-28,-8,-30,-38,-30v-44,-1,-43,6,-42,36r-24,0v0,-43,0,-57,66,-57v47,0,61,10,61,51v0,44,-16,53,-60,56v-39,3,-44,6,-43,35","w":149},"\u00ae":{"d":"141,-272v76,0,137,61,137,137v0,76,-61,137,-137,137v-76,0,-138,-61,-138,-137v0,-76,62,-137,138,-137xm141,-251v-64,0,-116,52,-116,115v0,64,52,117,116,117v64,0,115,-53,115,-117v0,-63,-51,-115,-115,-115xm163,-127r46,69r-24,0r-44,-67r-30,0r0,67r-21,0r0,-154v52,3,119,-15,121,41v0,30,-21,43,-48,44xm111,-193r0,49v32,1,85,2,79,-27v-6,-32,-48,-19,-79,-22","w":280},"\u2212":{"d":"18,-89r0,-27r174,0r0,27r-174,0","w":210},"\u00f0":{"d":"48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm67,-264r26,-8v13,8,25,16,35,26r38,-12r17,15r-40,12v28,31,43,70,43,117v0,105,-11,116,-83,116v-70,0,-84,-16,-84,-96v0,-80,14,-97,84,-97v24,0,31,3,42,11v-6,-14,-16,-28,-29,-42r-40,12r-16,-13r42,-14v-11,-9,-23,-19,-35,-27","w":205},"\u00d7":{"d":"18,-157r18,-18r69,70r70,-70r17,18r-69,70r69,69r-17,18r-70,-70r-69,70r-18,-18r69,-69","w":210},"\u00b3":{"d":"64,-183r0,-20v27,-2,53,9,53,-24v0,-23,-4,-25,-42,-25v-33,-1,-36,5,-36,31r-23,0v-2,-45,18,-51,62,-51v37,0,62,0,62,42v0,21,-2,37,-28,38v27,2,32,14,32,38v0,47,-26,47,-68,47v-45,0,-66,-9,-62,-54r23,0v-1,29,0,34,39,34v39,0,45,-1,45,-30v0,-35,-28,-24,-57,-26","w":149},"\u00a9":{"d":"141,-272v76,0,137,61,137,137v0,76,-61,137,-137,137v-76,0,-138,-61,-138,-137v0,-76,62,-137,138,-137xm141,-251v-64,0,-116,52,-116,115v0,64,52,117,116,117v64,0,115,-53,115,-117v0,-63,-51,-115,-115,-115xm189,-110r22,0v-17,89,-140,56,-140,-26v0,-45,28,-79,75,-79v33,0,60,19,65,52r-22,0v-19,-62,-104,-31,-97,27v-10,58,86,88,97,26","w":280},"\u00c1":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm143,-348r14,19r-58,36r-9,-15","w":246},"\u00c2":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm124,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":246},"\u00c4":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm103,-316r0,27r-31,0r0,-27r31,0xm175,-316r0,27r-31,0r0,-27r31,0","w":246},"\u00c0":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm104,-348r53,40r-9,15r-58,-36","w":246},"\u00c5":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm92,-315v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm106,-315v0,10,7,18,17,18v10,0,18,-8,18,-18v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17","w":246},"\u00c3":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm97,-329v24,0,59,33,72,0r15,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,18,-27,35,-27","w":246},"\u00c7":{"d":"122,14r19,11r-27,39r-16,-9xm231,-67v1,79,-66,68,-136,69v-49,0,-79,-31,-79,-85r0,-104v0,-86,61,-85,138,-85v60,0,75,29,74,86r-31,0v4,-48,-14,-59,-65,-59v-63,0,-85,8,-85,57v0,68,-22,169,53,163v51,-4,110,8,101,-45r0,-22r30,0r0,25","w":239},"\u00c9":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm121,-348r14,19r-58,36r-10,-15","w":201},"\u00ca":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm102,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":201},"\u00cb":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm81,-316r0,27r-32,0r0,-27r32,0xm153,-316r0,27r-32,0r0,-27r32,0","w":201},"\u00c8":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm81,-348r54,40r-10,15r-58,-36","w":201},"\u00cd":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm61,-348r14,19r-58,36r-10,-15","w":82},"\u00ce":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm42,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":82},"\u00cf":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm21,-316r0,27r-32,0r0,-27r32,0xm93,-316r0,27r-32,0r0,-27r32,0","w":82},"\u00cc":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm22,-348r53,40r-9,15r-59,-36","w":82},"\u00d1":{"d":"257,-270r0,270r-50,0r-152,-245r0,245r-31,0r0,-270r51,0r152,247r0,-247r30,0xm114,-329v24,0,60,33,72,0r16,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":281},"\u00d3":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm141,-348r14,19r-58,36r-10,-15","w":241},"\u00d4":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm121,-346r63,39r-9,15r-54,-27r-55,27r-8,-15","w":241},"\u00d6":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm101,-316r0,27r-32,0r0,-27r32,0xm173,-316r0,27r-32,0r0,-27r32,0","w":241},"\u00d2":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm94,-348r54,40r-10,15r-58,-36","w":241},"\u00d5":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm94,-329v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":241},"\u0160":{"d":"112,-125v-53,-4,-99,2,-99,-69v0,-72,33,-78,100,-78v58,0,100,3,97,76r-31,0v-1,-47,-10,-49,-67,-49v-60,0,-68,8,-68,45v0,51,24,46,74,48v64,3,97,2,97,75v0,76,-36,79,-104,79v-69,0,-105,-8,-99,-86r31,0v-1,59,11,59,68,59v58,0,73,0,73,-53v0,-51,-23,-43,-72,-47xm112,-292r-62,-38r9,-16r53,27r56,-27r8,16","w":226},"\u00da":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm153,-348r14,19r-58,36r-10,-15","w":265},"\u00db":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm133,-346r62,39r-8,15r-54,-27r-56,27r-7,-15","w":265},"\u00dc":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm113,-316r0,27r-32,0r0,-27r32,0xm185,-316r0,27r-32,0r0,-27r32,0","w":265},"\u00d9":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm99,-348r53,40r-9,15r-58,-36","w":265},"\u00dd":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0xm140,-348r14,19r-58,36r-10,-15","w":227,"k":{"v":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,",":54,".":54,"-":25,"a":40,"\u00e6":40,"\u00e1":40,"\u00e2":40,"\u00e4":40,"\u00e0":40,"\u00e5":40,"\u00e3":40,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f6":40,"\u00f2":40,"\u00f5":40,"u":35,"\u00fa":35,"\u00fb":35,"\u00fc":35,"\u00f9":35,":":22,";":22,"p":33,"q":40}},"\u0178":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0xm94,-316r0,27r-32,0r0,-27r32,0xm166,-316r0,27r-32,0r0,-27r32,0","w":227,"k":{"v":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,",":54,".":54,"-":25,"a":40,"\u00e6":40,"\u00e1":40,"\u00e2":40,"\u00e4":40,"\u00e0":40,"\u00e5":40,"\u00e3":40,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f6":40,"\u00f2":40,"\u00f5":40,"u":35,"\u00fa":35,"\u00fb":35,"\u00fc":35,"\u00f9":35,":":22,";":22,"p":33,"q":40}},"\u017d":{"d":"216,-270r0,28r-170,215r174,0r0,27r-211,0r0,-27r170,-216r-165,0r0,-27r202,0xm114,-292r-62,-38r8,-16r54,27r56,-27r7,16","w":229},"\u00e1":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00e2":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00e4":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00e0":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm76,-267r53,40r-9,15r-58,-36","w":205},"\u00e5":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm72,-234v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm85,-234v0,10,8,18,18,18v10,0,17,-8,17,-18v0,-10,-7,-17,-17,-17v-10,0,-18,7,-18,17","w":205},"\u00e3":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm76,-248v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":205},"\u00e7":{"d":"100,14r20,11r-28,39r-15,-9xm153,-68r29,0v4,58,-31,70,-80,70v-78,0,-84,-30,-84,-100v0,-62,11,-93,79,-93v48,-1,84,7,82,64r-29,0v2,-37,-15,-41,-51,-41v-50,0,-52,18,-52,78v0,53,3,69,58,69v40,0,50,-9,48,-47","w":196},"\u00e9":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm122,-267r14,19r-58,36r-10,-15","w":203},"\u00ea":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm102,-265r63,39r-9,15r-54,-27r-56,27r-7,-15","w":203},"\u00eb":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm82,-235r0,27r-32,0r0,-27r32,0xm154,-235r0,27r-32,0r0,-27r32,0","w":203},"\u00e8":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm75,-267r54,40r-10,15r-58,-36","w":203},"\u00ed":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm59,-267r14,19r-58,36r-10,-15","w":77},"\u00ee":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm39,-265r63,39r-9,15r-54,-27r-56,27r-7,-15","w":77},"\u00ef":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm19,-235r0,27r-32,0r0,-27r32,0xm91,-235r0,27r-32,0r0,-27r32,0","w":77},"\u00ec":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm19,-267r54,40r-10,15r-58,-36","w":77},"\u00f1":{"d":"53,-189v1,7,-2,18,1,23v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-189r28,0xm78,-248v24,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":208},"\u00f3":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00f4":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00f6":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00f2":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm76,-267r53,40r-9,15r-58,-36","w":205},"\u00f5":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm76,-248v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":205},"\u0161":{"d":"100,-191v35,-1,78,3,74,51r-29,0v2,-26,-11,-26,-45,-26v-36,0,-52,0,-52,23v0,34,8,32,38,33v49,3,93,-5,93,57v0,53,-37,55,-79,55v-48,0,-92,-5,-83,-62r29,0v-2,34,2,36,54,37v19,0,50,4,50,-29v0,-35,-15,-29,-50,-31v-41,-3,-82,2,-82,-52v0,-55,31,-56,82,-56xm96,-211r-62,-38r8,-16r54,27r56,-27r7,16","w":193},"\u00fa":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00fb":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00fc":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00f9":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm69,-267r53,40r-9,15r-59,-36","w":205},"\u00fd":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0xm105,-267r14,19r-58,36r-10,-15","w":157,"k":{",":32,".":32}},"\u00ff":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0xm59,-235r0,27r-32,0r0,-27r32,0xm131,-235r0,27r-32,0r0,-27r32,0","w":157,"k":{",":32,".":32}},"\u017e":{"d":"155,-189r0,26r-113,140r113,0r0,23r-146,0r0,-26r113,-140r-104,0r0,-23r137,0xm81,-211r-62,-38r9,-16r53,27r56,-27r8,16","w":163},"\u2126":{"d":"23,-22v22,-1,48,2,68,-1v-32,-22,-62,-62,-62,-117v0,-74,59,-129,134,-129v80,0,133,62,133,128v1,58,-34,97,-63,119r69,0r0,22r-106,0r0,-16v36,-18,72,-59,72,-122v0,-51,-37,-109,-104,-109v-64,0,-107,51,-107,111v0,59,36,102,72,120r0,16r-106,0r0,-22","w":325},"\u03bc":{"d":"152,0v-1,-8,2,-19,-1,-25v-13,33,-68,31,-98,20r0,87r-29,0r0,-271r29,0r0,121v0,31,2,47,39,47v40,0,60,-6,60,-51r0,-117r29,0r0,189r-29,0","w":205},"\u03c0":{"d":"238,-174r-37,0v1,51,-4,139,6,174r-27,0v-12,-30,-5,-125,-7,-174r-85,0v-3,51,-17,141,-33,174r-28,0v17,-39,30,-122,33,-174v-29,0,-42,2,-52,6r-4,-18v52,-20,165,-6,237,-10","w":249},"\u20ac":{"d":"246,-242r-11,33v-18,-39,-60,-36,-112,-36v-36,0,-59,20,-55,71r156,0r-7,24r-149,0r0,22r142,0r-7,24r-135,0v0,55,6,79,54,79v53,0,93,7,115,-34r0,36v-39,37,-69,23,-121,25v-56,2,-83,-41,-78,-106r-34,0r8,-24r26,0r0,-22r-34,0r8,-24r26,0v1,-93,52,-98,125,-98v18,0,55,-2,83,30"},"\u2113":{"d":"186,-63r14,12v-20,34,-49,51,-82,51v-48,-1,-69,-33,-70,-73v-8,6,-17,13,-26,19r-9,-17v12,-9,24,-17,34,-26r0,-105v0,-71,34,-92,65,-92v37,0,54,30,54,63v0,49,-37,94,-93,142v-1,42,22,68,51,68v29,0,51,-23,62,-42xm73,-206r0,92v40,-39,72,-77,72,-116v0,-25,-9,-44,-33,-44v-17,0,-39,17,-39,68","w":210},"\u212e":{"d":"69,-55v37,67,152,61,195,4r21,0v-27,32,-71,53,-120,53v-84,0,-152,-61,-152,-137v0,-76,68,-137,152,-137v86,1,155,61,153,141r-249,1r0,75xm262,-216v-37,-61,-144,-62,-190,-8v-6,21,-5,62,-1,85r191,-2r0,-75","w":330},"\u2202":{"d":"44,-258r-11,-18v77,-51,182,-9,182,122v0,79,-37,155,-113,155v-58,0,-84,-49,-84,-88v0,-58,43,-95,92,-95v44,0,71,31,77,43v9,-77,-34,-137,-84,-137v-28,0,-47,10,-59,18xm46,-89v0,37,23,68,59,68v44,0,72,-44,78,-92v-6,-18,-32,-48,-69,-48v-37,0,-68,31,-68,72","w":237},"\u220f":{"d":"295,-240r-50,0r0,276r-27,0r0,-276r-130,0r0,276r-27,0r0,-276r-51,0r0,-24r285,0r0,24","w":306},"\u2211":{"d":"233,36r-224,0r0,-17r120,-132r-114,-133r0,-18r212,0r0,24r-172,1r107,123r-114,128r185,0r0,24","w":243},"\u2219":{"d":"78,-121r0,37r-32,0r0,-37r32,0","w":124},"\u221a":{"d":"247,-312r-98,369r-25,0r-71,-177r-32,13r-7,-16r56,-22r59,151v4,8,4,18,8,24r88,-342r22,0","w":245},"\u221e":{"d":"304,-109v0,40,-31,65,-63,65v-27,0,-48,-19,-78,-51v-22,25,-44,51,-79,51v-33,0,-62,-28,-62,-64v0,-37,28,-65,65,-65v32,0,56,25,78,51v23,-25,44,-51,79,-51v37,0,60,27,60,64xm41,-107v0,25,17,45,46,45v27,0,49,-27,66,-45v-19,-23,-38,-49,-69,-49v-27,0,-43,23,-43,49xm242,-156v-29,0,-53,32,-68,47v29,31,46,47,68,47v27,0,43,-24,43,-46v0,-30,-19,-48,-43,-48","w":325},"\u222b":{"d":"59,-228v0,-68,28,-107,83,-88r-5,18v-42,-15,-54,20,-54,73v0,59,6,130,6,190v0,75,-30,107,-86,88r5,-18v41,13,57,-10,57,-70v0,-61,-6,-134,-6,-193","w":146},"\u2248":{"d":"80,-168v38,0,55,32,91,32v18,0,29,-10,42,-31r12,11v-12,21,-29,38,-55,38v-29,0,-61,-31,-93,-32v-21,0,-33,14,-44,30r-12,-10v13,-24,35,-38,59,-38xm80,-98v52,0,99,66,133,2r12,10v-12,21,-28,38,-55,38v-30,0,-61,-31,-93,-32v-21,0,-33,15,-44,31r-12,-10v13,-24,35,-39,59,-39","w":246},"\u2260":{"d":"174,-199r-21,42r71,0r0,18r-79,0r-30,63r109,0r0,18r-117,0r-24,51r-15,-7r21,-44r-67,0r0,-18r76,0r29,-63r-105,0r0,-18r113,0r24,-50","w":246},"\u2264":{"d":"223,-32r-198,-93r0,-18r198,-93r0,21r-178,81r178,81r0,21xm224,3r-202,0r0,-18r202,0r0,18","w":246},"\u2265":{"d":"25,-236r198,93r0,19r-198,92r0,-21r177,-81r-177,-81r0,-21xm224,3r-202,0r0,-18r202,0r0,18","w":246},"\u25ca":{"d":"222,-132r-89,152r-22,0r-88,-152r89,-152r22,0xm196,-131r-74,-131v-22,45,-49,87,-73,130r74,131v22,-46,49,-86,73,-130","w":245},"\u00a0":{"w":124},"\u00ad":{"d":"0,-112r94,0r0,27r-94,0r0,-27","w":93},"\u02c9":{"d":"28,-233r100,0r0,23r-100,0r0,-23","w":156},"\u03a9":{"d":"23,-22v22,-1,48,2,68,-1v-32,-22,-62,-62,-62,-117v0,-74,59,-129,134,-129v80,0,133,62,133,128v1,58,-34,97,-63,119r69,0r0,22r-106,0r0,-16v36,-18,72,-59,72,-122v0,-51,-37,-109,-104,-109v-64,0,-107,51,-107,111v0,59,36,102,72,120r0,16r-106,0r0,-22","w":325},"\u2215":{"d":"206,-270r-184,270r-24,0r182,-270r26,0","w":203},"\u2206":{"d":"13,0r0,-19r114,-253r33,0r113,253r0,19r-260,0xm42,-22r200,0r-99,-224r-2,0","w":286},"\u2010":{"d":"0,-112r94,0r0,27r-94,0r0,-27","w":93}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1987, 1992, 1999, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a trademark of Linotype GmbH registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions.
 * 
 * Full name:
 * EurostileLTStd-Demi
 * 
 * Designer:
 * Aldo Novarese, A. Butti
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Eurostile LT Std","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 5 2 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-22 -357 457.416 90","underline-thickness":"18","underline-position":"-18","stemh":"32","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":126},"!":{"d":"78,-49r0,49r-45,0r0,-49r45,0xm81,-270r-3,180r-45,0r-3,-180r51,0","w":111},"\"":{"d":"18,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93xm103,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":170},"#":{"d":"102,-270r34,0r-14,76r39,0r14,-76r33,0r-14,76r32,0r0,41r-38,0r-9,48r37,0r0,41r-46,0r-12,64r-33,0r12,-64r-39,0r-12,64r-34,0r12,-64r-36,0r0,-41r44,0r9,-48r-38,0r0,-41r45,0xm114,-153r-9,48r40,0r9,-48r-40,0"},"$":{"d":"141,-116r0,76v45,0,55,-8,55,-41v0,-33,-21,-34,-55,-35xm141,-230r0,72v64,3,104,6,104,77v0,66,-32,83,-104,83r0,28r-29,0r0,-28v-94,-2,-104,-32,-103,-90r46,0v-2,42,9,50,57,48r0,-76v-65,-6,-101,-10,-101,-76v0,-71,35,-80,101,-80r0,-26r29,0r0,26v59,0,99,7,95,79r-46,0v1,-33,-9,-37,-49,-37xm112,-158r0,-72v-39,1,-52,1,-52,38v0,32,19,32,52,34"},"%":{"d":"258,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm258,-25v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-37,0,-27,29,-27,57v0,25,5,26,27,26xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-162v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm267,-270r-172,270r-33,0r171,-270r34,0","w":325},"&":{"d":"188,-57r-88,-74v-30,5,-30,18,-30,49v0,43,18,42,63,42v26,0,43,-1,55,-17xm254,0r-32,-28v-17,29,-53,30,-89,30v-69,0,-112,-6,-112,-84v0,-40,7,-70,52,-74v-18,-15,-23,-23,-23,-47v0,-60,31,-69,87,-69v68,0,83,12,83,84r-44,0v0,-37,-1,-42,-39,-42v-44,-10,-45,39,-22,59r86,75r0,-37r44,0v0,25,2,47,-5,69r38,34","w":281},"\u2019":{"d":"17,-176r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,15,100,-49,94","w":83,"k":{"\u2019":7,"t":-7,"s":7,"\u0161":7}},"(":{"d":"105,12r0,42v-80,0,-84,-30,-84,-114v0,-98,-35,-221,84,-212r0,42v-33,0,-35,16,-35,46r0,150v0,23,0,46,35,46","w":125},")":{"d":"20,-230r0,-42v80,0,84,30,84,114v0,98,35,221,-84,212r0,-42v33,0,35,-16,35,-46r0,-150v0,-23,0,-46,-35,-46","w":125},"*":{"d":"199,-208r-49,16r29,42r-21,16r-30,-43r-33,43r-21,-16r30,-42r-49,-18r9,-26r49,18r0,-52r27,0r0,52r50,-18"},"+":{"d":"88,-189r34,0r0,70r70,0r0,34r-70,0r0,70r-34,0r0,-70r-70,0r0,-34r70,0r0,-70","w":210},",":{"d":"32,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94","w":126},"-":{"d":"0,-117r96,0r0,35r-96,0r0,-35","w":95},".":{"d":"77,-49r0,49r-45,0r0,-49r45,0","w":126},"\/":{"d":"247,-270r-208,311r-41,0r209,-311r40,0","w":245},"0":{"d":"127,-272v81,0,112,17,112,113r0,49v0,96,-31,112,-112,112v-81,0,-112,-16,-112,-112r0,-50v0,-90,20,-112,112,-112xm127,-40v50,0,63,-3,63,-58r0,-74v0,-55,-13,-58,-63,-58v-51,0,-63,3,-63,58r0,74v0,55,12,58,63,58"},"1":{"d":"177,-270r0,270r-49,0r0,-227r-70,70r-30,-32r87,-81r62,0"},"2":{"d":"226,-42r0,42r-204,0r0,-51v0,-69,29,-73,89,-84v54,-9,66,-5,66,-54v0,-36,-12,-41,-50,-41v-47,0,-56,1,-56,56r-49,0v0,-66,6,-98,105,-98v64,0,99,12,99,83v0,71,-24,81,-91,91v-53,8,-66,9,-64,56r155,0"},"3":{"d":"21,-91r49,0v0,50,8,51,53,51v44,0,59,-1,59,-38v0,-46,-35,-40,-75,-40r0,-39v42,0,70,7,70,-45v0,-26,-12,-28,-54,-28v-45,0,-50,5,-50,47r-49,0v0,-78,27,-89,99,-89v51,0,103,0,103,70v0,32,-6,59,-42,63r0,2v37,3,47,24,47,59v0,75,-39,80,-108,80v-68,0,-102,-4,-102,-93"},"4":{"d":"207,-270r0,173r31,0r0,39r-31,0r0,58r-49,0r0,-58r-147,0r0,-56r119,-156r77,0xm158,-97v-2,-44,4,-96,-2,-136r-104,136r106,0"},"5":{"d":"76,-231v1,22,-2,47,1,67v12,-21,43,-22,64,-22v70,0,88,25,88,93v0,84,-27,95,-107,95v-66,0,-96,-10,-98,-80r49,0v0,37,20,38,53,38v47,0,54,-5,54,-52v0,-46,-7,-52,-54,-52v-26,0,-46,0,-50,18r-45,0r0,-144r188,0r0,39r-143,0"},"6":{"d":"125,-122v-39,0,-54,0,-54,33v0,43,6,49,54,49v45,0,54,-1,54,-43v0,-39,-10,-39,-54,-39xm22,-103r0,-79v1,-76,31,-90,103,-90v62,0,102,2,101,77r-49,0v0,-34,-14,-35,-52,-35v-65,0,-55,41,-53,91v8,-23,34,-26,60,-26v72,0,96,10,96,79v0,73,-26,88,-103,88v-80,0,-103,-13,-103,-105"},"7":{"d":"224,-270r0,50r-111,220r-55,0r116,-226r-151,0r0,-44r201,0"},"8":{"d":"127,-118v-51,0,-56,6,-56,38v0,34,6,40,56,40v50,0,57,-8,57,-40v0,-34,-7,-38,-57,-38xm127,2v-58,0,-105,-3,-105,-82v0,-31,10,-53,47,-60v-36,-8,-43,-25,-43,-60v0,-64,38,-72,101,-72v51,0,101,-4,101,72v0,34,-8,52,-42,61v35,5,47,26,47,59v0,76,-37,82,-106,82xm127,-158v38,0,52,2,52,-42v0,-30,-14,-30,-52,-30v-44,0,-52,3,-52,30v0,42,14,42,52,42"},"9":{"d":"126,-230v-47,0,-53,4,-53,43v0,35,6,39,53,39v47,0,57,-3,57,-39v0,-40,-16,-43,-57,-43xm22,-76r49,0v0,35,12,36,55,36v42,0,57,-1,57,-47v0,-14,2,-33,-1,-45v-12,22,-33,27,-68,27v-58,0,-90,-9,-90,-82v0,-67,20,-85,102,-85v89,0,105,22,105,115r0,79v0,68,-40,80,-105,80v-59,0,-104,-2,-104,-78"},":":{"d":"77,-49r0,49r-45,0r0,-49r45,0xm77,-189r0,49r-45,0r0,-49r45,0","w":126},";":{"d":"32,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94xm81,-189r0,49r-45,0r0,-49r45,0","w":126},"<":{"d":"18,-89r0,-25r174,-75r0,36r-125,51r125,51r0,36","w":210},"=":{"d":"18,-120r0,-34r174,0r0,34r-174,0xm18,-50r0,-34r174,0r0,34r-174,0","w":210},">":{"d":"192,-114r0,25r-174,74r0,-36r125,-51r-125,-51r0,-36","w":210},"?":{"d":"118,-86r-45,0v0,-42,3,-52,39,-67v25,-11,38,-12,38,-43v0,-35,-8,-38,-41,-38v-42,0,-47,9,-45,46r-45,0v-2,-68,19,-84,92,-84v53,0,85,10,85,76v0,40,-7,54,-48,71v-21,8,-32,12,-30,39xm118,-49r0,49r-45,0r0,-49r45,0","w":214},"@":{"d":"224,-198r28,0r-26,94v-2,11,2,18,15,18v27,0,46,-45,46,-66v0,-45,-44,-90,-101,-90v-72,0,-119,66,-119,116v0,80,92,119,170,87r11,27v-93,39,-216,-2,-216,-108v0,-79,69,-152,154,-152v68,0,133,49,133,119v0,59,-74,132,-118,74v-40,42,-95,16,-98,-33v-4,-54,79,-128,117,-68xm179,-176v-14,0,-41,20,-41,58v0,18,5,32,25,32v40,0,69,-89,16,-90","w":351},"A":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0","w":255},"B":{"d":"75,-118r0,74v47,-6,117,21,117,-36v0,-60,-71,-32,-117,-38xm243,-75v0,112,-128,65,-220,75r0,-270v88,10,214,-37,214,70v0,32,-8,51,-39,61v38,4,45,30,45,64xm75,-226r0,69v45,-5,110,20,110,-38v0,-54,-68,-23,-110,-31","w":257},"C":{"d":"236,-180r-52,0v2,-41,-5,-48,-58,-48v-78,0,-61,57,-61,121v0,54,7,65,61,65v49,0,64,-8,61,-55r52,0v7,89,-39,99,-113,99v-123,0,-114,-63,-113,-168v0,-86,33,-106,113,-106v72,0,112,8,110,92","w":250},"D":{"d":"22,0r0,-270r129,0v75,0,106,27,106,100v0,92,12,170,-97,170r-138,0xm74,-44r86,0v57,-3,42,-70,46,-126v5,-77,-70,-52,-132,-56r0,182","w":271},"E":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0","w":222},"F":{"d":"73,-226r0,72r120,0r0,42r-120,0r0,112r-52,0r0,-270r178,0r0,44r-126,0","w":209,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":58,".":58}},"G":{"d":"127,-143r120,0v2,99,4,145,-116,145v-86,0,-119,-15,-119,-106r0,-62v0,-90,35,-106,119,-106v66,0,118,-4,116,83r-52,0v0,-40,-19,-39,-64,-39v-88,0,-67,56,-67,124v0,57,9,62,67,62v54,0,66,-8,64,-62r-68,0r0,-39","w":261},"H":{"d":"253,-270r0,270r-52,0r0,-115r-125,0r0,115r-52,0r0,-270r52,0r0,111r125,0r0,-111r52,0","w":276},"I":{"d":"76,-270r0,270r-52,0r0,-270r52,0","w":99},"J":{"d":"137,-270r52,0r0,187v0,71,-26,85,-88,85v-55,0,-90,-7,-90,-69r0,-39r49,0v1,39,-9,64,41,64v31,0,36,-8,36,-41r0,-187","w":209},"K":{"d":"76,-270r0,110r24,0r90,-110r63,0r-109,132r121,138r-66,0r-99,-116r-24,0r0,116r-52,0r0,-270r52,0","w":257},"L":{"d":"76,-270r0,226r126,0r0,44r-178,0r0,-270r52,0","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"M":{"d":"289,-228r-85,228r-46,0r-87,-226r5,226r-52,0r0,-270r83,0r73,201r2,0r72,-201r85,0r0,270r-52,0r4,-228r-2,0","w":362},"N":{"d":"225,-44r-3,-226r52,0r0,270r-86,0r-115,-226r-2,0r5,226r-52,0r0,-270r85,0","w":297},"O":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54","w":257},"P":{"d":"20,0r0,-270r120,0v72,0,96,17,96,93v0,105,-73,89,-164,90r0,87r-52,0xm72,-132v50,-5,123,20,112,-45v11,-67,-59,-45,-112,-49r0,94","w":246,"k":{"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,",":65,".":65}},"Q":{"d":"279,-36r-21,30r-24,-17v-26,26,-65,25,-96,25v-84,0,-116,-14,-119,-103r0,-73v0,-84,39,-98,119,-98v64,0,119,3,119,98v0,45,4,76,-5,120xm147,-127r57,40r2,-87v0,-49,-17,-54,-68,-54v-46,0,-67,3,-67,54r0,73v0,56,14,59,67,59v19,0,40,1,54,-11r-67,-43","w":275},"R":{"d":"188,-50v5,-54,-67,-36,-114,-39r0,89r-52,0r0,-270v95,7,220,-33,220,81v0,41,-5,68,-48,77v55,1,44,59,45,112r-51,0r0,-50xm74,-134v52,-5,125,20,116,-47v10,-67,-65,-39,-116,-45r0,92","w":259,"k":{"T":-2,"V":-3,"W":-4,"y":-7,"\u00fd":-7,"\u00ff":-7}},"S":{"d":"12,-86r52,0v-2,41,6,47,61,46v47,0,54,-9,54,-40v0,-39,-21,-34,-61,-36v-58,-4,-105,-2,-105,-80v0,-74,47,-76,112,-76v58,0,104,6,100,81r-52,0v2,-34,-8,-39,-48,-39v-51,0,-60,5,-60,34v0,33,7,35,60,38v83,5,105,9,105,78v0,76,-36,82,-105,82v-65,0,-119,-4,-113,-88","w":242},"T":{"d":"132,-226r0,226r-52,0r0,-226r-79,0r0,-44r210,0r0,44r-79,0","w":211,"k":{"\u00fc":22,"\u0161":22,"\u00f2":31,"\u00f6":31,"\u00e8":31,"\u00eb":31,"\u00ea":31,"\u00e3":31,"\u00e5":31,"\u00e0":31,"\u00e4":31,"\u00e2":31,"w":18,"y":18,"\u00fd":18,"\u00ff":18,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":43,".":43,"c":31,"\u00e7":31,"e":31,"\u00e9":31,"o":31,"\u00f8":31,"\u0153":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"r":21,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22,"-":25,"a":31,"\u00e6":31,"\u00e1":31,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,"s":22,":":16,";":16}},"U":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192","w":271},"V":{"d":"194,-270r54,0r-87,270r-79,0r-86,-270r53,0r73,227","w":243,"k":{"\u00f6":14,"\u00f4":14,"\u00e8":14,"\u00eb":14,"\u00ea":14,"\u00e3":14,"\u00e5":14,"\u00e0":14,"\u00e4":14,"\u00e2":14,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":36,".":36,"e":14,"\u00e9":14,"o":14,"\u00f8":14,"\u0153":14,"\u00f3":14,"\u00f2":14,"\u00f5":14,"r":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"a":14,"\u00e6":14,"\u00e1":14,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,":":4,";":4}},"W":{"d":"291,-42r59,-228r52,0r-73,270r-74,0r-54,-206r-2,0r-56,206r-74,0r-70,-270r52,0r57,228r62,-228r60,0","w":400,"k":{"\u00fc":6,"\u00f6":11,"\u00ea":11,"\u00e4":8,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":30,".":30,"e":11,"\u00e9":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u0153":11,"\u00f3":11,"\u00f4":11,"\u00f2":11,"\u00f5":11,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"i":-12,"\u0131":-12,"\u00ed":-12,"\u00ee":-12,"\u00ef":-12,"\u00ec":-12}},"X":{"d":"247,-270r-80,131r86,139r-59,0r-68,-114r-69,114r-61,0r89,-139r-82,-131r60,0r63,107r62,-107r59,0","w":249},"Y":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0","w":241,"k":{"\u00fc":26,"\u00f6":36,"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"Z":{"d":"222,-270r0,44r-149,182r151,0r0,44r-215,0r0,-44r148,-182r-142,0r0,-44r207,0","w":233},"[":{"d":"21,-272r84,0r0,39r-35,0r0,248r35,0r0,39r-84,0r0,-326","w":125},"\\":{"d":"78,41r-96,-311r41,0r95,311r-40,0","w":100},"]":{"d":"104,54r-83,0r0,-39r34,0r0,-248r-34,0r0,-39r83,0r0,326","w":125},"^":{"d":"93,-270r25,0r74,175r-36,0r-51,-126r-51,126r-36,0","w":210},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"\u2018":{"d":"66,-272r0,21v-13,0,-21,4,-21,24r18,0r0,49r-46,0v3,-48,-16,-100,49,-94","w":83,"k":{"\u2018":7}},"a":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0","w":212},"b":{"d":"112,-157v-39,0,-46,17,-46,57v0,45,0,68,46,68v41,0,40,-25,40,-68v0,-48,-9,-57,-40,-57xm21,0r0,-270r45,0v2,34,-4,76,2,106v10,-23,34,-27,57,-27v65,0,72,36,72,91v0,58,-2,102,-72,102v-29,0,-45,-9,-61,-30r2,28r-45,0","w":213},"c":{"d":"142,-72r45,0v0,62,-22,74,-86,74v-69,0,-84,-20,-84,-96v0,-66,10,-97,84,-97v56,0,86,8,86,68r-45,0v0,-29,-9,-34,-41,-34v-39,0,-39,14,-39,63v0,47,-1,62,39,62v37,0,41,-7,41,-40","w":198},"d":{"d":"100,-157v-31,0,-40,9,-40,57v0,43,-1,68,40,68v46,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm146,0v-1,-9,5,-23,0,-28v-12,25,-32,30,-59,30v-70,0,-72,-44,-72,-102v0,-55,7,-91,72,-91v25,0,46,8,59,27r0,-106r45,0r0,270r-45,0","w":213},"e":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42","w":205},"f":{"d":"123,-189r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0r0,35v-39,-3,-51,9,-45,46r46,0","w":125,"k":{"\u2019":-7,"f":-4,"\ufb01":-4,"\ufb02":-4,"\u00df":-4}},"g":{"d":"101,-157v-31,0,-41,9,-41,57v0,43,1,68,41,68v45,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm101,49v55,0,48,-34,46,-76v-12,25,-37,29,-60,29v-65,0,-72,-36,-72,-91v0,-58,2,-102,72,-102v28,-1,47,7,61,30r-2,-28r46,0r0,189v0,68,-22,84,-91,84v-46,0,-81,-8,-78,-65r43,0v0,26,9,30,35,30","w":213},"h":{"d":"68,-270r1,109v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-270r46,0","w":215},"i":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm65,-270r0,39r-45,0r0,-39r45,0","w":84},"j":{"d":"63,-189r0,193v4,43,-21,70,-67,60r0,-32v20,0,22,-10,22,-23r0,-198r45,0xm63,-270r0,39r-45,0r0,-39r45,0","w":81},"k":{"d":"67,-270r0,154r11,0r53,-73r52,0r-67,89r80,100r-55,0r-63,-85r-11,0r0,85r-45,0r0,-270r45,0","w":194},"l":{"d":"68,-270r0,270r-45,0r0,-270r45,0","w":90},"m":{"d":"23,-189r44,0v1,8,-2,21,1,27v10,-24,35,-29,59,-29v25,-1,51,8,58,33v9,-26,35,-33,60,-33v99,0,56,112,65,191r-45,0r0,-123v-1,-24,-7,-34,-32,-34v-73,-2,-34,97,-44,157r-45,0r0,-123v-1,-24,-7,-34,-32,-34v-73,-2,-34,97,-44,157r-45,0r0,-189","w":332},"n":{"d":"22,-189r46,0v1,9,-2,21,1,28v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-189","w":215},"o":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63","w":209},"p":{"d":"112,-32v31,0,41,-9,41,-57v0,-43,0,-68,-41,-68v-46,0,-45,23,-45,68v0,40,6,57,45,57xm67,-189v1,9,-5,23,0,28v12,-25,32,-30,59,-30v70,0,72,44,72,102v0,55,-7,91,-72,91v-25,0,-46,-8,-59,-27r0,107r-45,0r0,-271r45,0","w":214},"q":{"d":"102,-157v-31,0,-40,9,-40,57v0,43,-1,68,40,68v46,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm193,-189r0,271r-46,0v-2,-34,4,-77,-2,-107v-10,23,-33,27,-56,27v-65,0,-73,-36,-73,-91v0,-58,3,-102,73,-102v28,-1,46,7,60,30r-2,-28r46,0","w":214},"r":{"d":"19,-189r44,0v1,8,-4,21,1,25v9,-21,28,-27,50,-27v46,0,52,30,50,74r-42,0v0,-22,2,-41,-23,-40v-27,0,-35,16,-35,40r0,117r-45,0r0,-189","w":169,"k":{"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"f":-3,"\ufb01":-3,"\ufb02":-3,"\u00df":-3,",":40,".":40,"c":-3,"\u00e7":-3,"d":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"g":-3,"h":-3,"m":-3,"n":-3,"\u00f1":-3,"o":-3,"\u00f8":-3,"\u0153":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"q":-3,"r":-3,"t":-3,"u":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u00f9":-3,"x":-3,"z":-3,"\u017e":-3,"-":-18}},"s":{"d":"183,-138r-46,0v0,-23,-12,-22,-36,-22v-24,0,-41,0,-41,25v0,19,5,19,45,21v45,2,84,-1,84,60v0,51,-40,56,-88,56v-51,0,-86,1,-86,-61r45,0v1,27,8,30,41,30v27,0,43,1,43,-25v0,-17,-1,-25,-47,-26v-69,-1,-82,-10,-82,-58v0,-52,37,-53,86,-53v37,0,82,0,82,53","w":200},"t":{"d":"-1,-154r0,-35r24,0r0,-43r45,0r0,43r73,0r0,35r-73,0r0,96v0,17,1,26,20,26v26,0,23,-20,23,-40r39,0v1,57,-13,74,-62,74v-91,0,-60,-85,-65,-156r-24,0","w":153},"u":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189","w":213},"v":{"d":"179,-189r-55,189r-69,0r-57,-189r47,0r45,158r41,-158r48,0","w":176,"k":{",":18,".":18}},"w":{"d":"286,-189r-43,189r-65,0r-35,-152r-34,152r-65,0r-43,-189r44,0r33,158r37,-158r57,0r36,158r2,0r32,-158r44,0","w":286,"k":{",":22,".":22}},"x":{"d":"175,-189r-55,90r61,99r-53,0r-38,-69r-38,69r-54,0r62,-99r-55,-90r52,0r33,60r33,-60r52,0","w":180},"y":{"d":"176,-189r-49,197v-8,49,-29,85,-91,74r0,-34v34,7,43,-23,46,-48r-22,0r-62,-189r47,0r49,161r36,-161r46,0","w":174,"k":{",":22,".":22}},"z":{"d":"163,-151r-102,116r102,0r0,35r-155,0r0,-39r101,-115r-93,0r0,-35r147,0r0,38","w":171},"{":{"d":"13,-94r0,-34v7,0,30,0,30,-16r0,-80v7,-48,32,-50,75,-48r0,34v-67,-15,5,124,-64,128v11,1,34,4,34,37r0,74v-4,14,12,21,30,18r0,35v-43,2,-75,1,-75,-48r0,-80v0,-20,-23,-20,-30,-20","w":140},"|":{"d":"68,-270r0,360r-35,0r0,-360r35,0","w":100},"}":{"d":"127,-125r0,35v-7,0,-30,0,-30,16r0,80v-7,49,-32,50,-75,48r0,-35v67,16,-5,-123,64,-127v-11,-1,-34,-4,-34,-37r0,-74v4,-14,-11,-22,-30,-19r0,-34v44,-2,75,-1,75,48r0,80v0,20,23,19,30,19","w":140},"~":{"d":"162,-124r30,0v0,37,-32,73,-70,48v-19,-8,-38,-26,-60,-26v-10,0,-13,15,-14,23r-30,0v-2,-34,33,-71,69,-51v17,10,38,28,60,28v13,0,15,-13,15,-22","w":210},"\u00a1":{"d":"78,-189r0,49r-45,0r0,-49r45,0xm30,81r3,-180r45,0r3,180r-51,0","w":111},"\u00a2":{"d":"115,-63r0,-124v-28,5,-29,31,-29,63v0,35,1,57,29,61xm140,-28r0,30r-25,0r0,-30v-67,0,-74,-39,-74,-96v0,-59,6,-97,74,-98r0,-24r25,0r0,24v48,0,72,19,73,69r-45,0v-1,-24,-6,-30,-28,-34r0,124v25,-3,29,-11,28,-39r45,0v2,52,-14,73,-73,74"},"\u00a3":{"d":"174,-141r0,39r-72,0v1,29,2,47,-20,61r162,-3r0,44r-219,0r0,-42v30,-4,28,-30,28,-60r-35,0r0,-39r35,0v-3,-84,3,-131,91,-131v69,0,102,11,98,87r-49,0v1,-33,-1,-45,-45,-45v-57,0,-45,42,-46,89r72,0"},"\u2044":{"d":"204,-270r-171,270r-34,0r171,-270r34,0","w":203},"\u00a5":{"d":"201,-193r34,0r0,39r-56,0r-19,31r75,0r0,39r-85,0r0,84r-49,0r0,-84r-82,0r0,-39r72,0r-18,-31r-54,0r0,-39r32,0r-43,-77r56,0r63,115r62,-115r57,0"},"\u0192":{"d":"226,-272r-6,34v-46,-9,-49,26,-54,63r42,0r-5,35r-43,0r-29,166v-10,58,-39,58,-103,58r6,-35v43,0,45,0,51,-32r28,-157r-33,0r6,-35r32,0r6,-30v12,-69,36,-67,102,-67"},"\u00a7":{"d":"189,-91v0,-38,-68,-35,-102,-47v-20,0,-22,17,-22,33v2,44,66,32,104,46v18,0,20,-16,20,-32xm24,0r47,0v1,34,1,41,56,41v48,0,58,-6,58,-32v0,-23,-10,-24,-29,-30v-53,-17,-137,-3,-137,-79v0,-23,3,-46,29,-52v-18,-11,-20,-30,-20,-52v0,-63,34,-68,99,-68v64,0,101,7,97,79r-47,0v-1,-33,-6,-37,-50,-37v-45,0,-50,6,-50,26v-2,44,65,31,96,46v39,9,62,13,62,58v1,23,-6,48,-26,57v23,8,25,29,25,52v0,74,-44,75,-107,75v-71,0,-105,-9,-103,-84"},"\u00a4":{"d":"89,-189v16,-14,59,-13,76,0r28,-28r25,24r-29,28v13,12,11,66,-1,76r28,27r-25,24r-28,-28v-15,12,-55,16,-73,-1r-28,29r-25,-24r29,-28v-17,-19,-16,-57,-1,-74r-29,-28r25,-25xm89,-125v1,21,19,36,38,36v57,0,46,-74,0,-76v-23,0,-39,20,-38,40"},"'":{"d":"18,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":85},"\u201c":{"d":"136,-272r0,21v-13,0,-22,4,-22,24r18,0r0,49r-45,0v3,-48,-16,-100,49,-94xm66,-272r0,21v-13,0,-21,4,-21,24r18,0r0,49r-46,0v3,-48,-16,-100,49,-94","w":152},"\u00ab":{"d":"66,-194r30,17r-38,78r41,76r-30,18r-51,-94xm139,-194r31,17r-39,78r41,76r-29,18r-51,-94","w":190},"\u2039":{"d":"66,-194r30,17r-38,78r41,76r-30,18r-51,-94","w":117},"\u203a":{"d":"51,-194r48,95r-52,94r-29,-18r41,-76r-38,-78","w":117},"\ufb01":{"d":"190,-270r0,39r-45,0r0,-39r45,0xm190,-189r0,189r-45,0r0,-189r45,0xm122,-270r0,35v-39,-3,-51,9,-45,46r46,0r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0","w":210},"\ufb02":{"d":"192,-270r0,270r-46,0r0,-270r46,0xm123,-189r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0r0,35v-39,-3,-51,9,-45,46r46,0","w":214},"\u2013":{"d":"0,-117r180,0r0,35r-180,0r0,-35","w":180},"\u2020":{"d":"151,-270r0,80r70,0r0,39r-70,0r0,233r-49,0r0,-233r-69,0r0,-39r69,0r0,-80r49,0"},"\u2021":{"d":"151,-270r0,85r70,0r0,39r-70,0r0,100r70,0r0,39r-70,0r0,89r-49,0r0,-89r-69,0r0,-39r69,0r0,-100r-69,0r0,-39r69,0r0,-85r49,0"},"\u00b7":{"d":"86,-127r0,50r-45,0r0,-50r45,0","w":126},"\u00b6":{"d":"249,82r-39,0r0,-310r-31,0r0,310r-39,0r0,-168v-84,0,-141,7,-141,-90v0,-79,25,-94,100,-94r150,0r0,352xm140,-129r0,-99v-51,3,-103,-14,-92,52v-7,62,43,44,92,47"},"\u2022":{"d":"161,-135v0,37,-30,67,-67,67v-37,0,-68,-29,-68,-67v0,-37,30,-68,68,-68v37,0,67,31,67,68","w":187},"\u201a":{"d":"17,45r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,16,100,-49,94","w":90},"\u201e":{"d":"17,45r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,16,100,-49,94xm85,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94","w":152},"\u201d":{"d":"17,-176r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,15,100,-49,94xm87,-176r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,15,100,-49,94","w":152},"\u00bb":{"d":"125,-194r47,95r-51,94r-29,-18r40,-76r-38,-78xm51,-194r48,95r-52,94r-29,-18r41,-76r-38,-78","w":190},"\u2026":{"d":"83,-49r0,49r-46,0r0,-49r46,0xm203,-49r0,49r-46,0r0,-49r46,0xm323,-49r0,49r-46,0r0,-49r46,0","w":360},"\u2030":{"d":"397,-135v59,0,62,32,60,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm397,-25v36,8,30,-28,30,-59v0,-23,-6,-24,-30,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm258,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm258,-25v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-37,0,-27,29,-27,57v0,25,5,26,27,26xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-162v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm267,-270r-172,270r-33,0r171,-270r34,0","w":465},"\u00bf":{"d":"96,-102r46,0v0,42,-4,52,-40,67v-25,11,-38,12,-38,43v0,35,8,38,41,38v42,0,47,-9,45,-46r46,0v2,68,-20,84,-92,84v-53,0,-85,-10,-85,-76v0,-40,7,-54,48,-71v21,-8,30,-12,29,-39xm142,-189r0,49r-46,0r0,-49r46,0","w":214},"`":{"d":"43,-267r64,41r-10,19r-70,-31","w":133},"\u00b4":{"d":"90,-267r17,29r-70,31r-10,-19","w":133},"\u02c6":{"d":"91,-267r64,39r-9,18r-55,-23r-55,23r-9,-18","w":182},"\u02dc":{"d":"144,-253r22,12v-9,17,-20,31,-41,31v-29,-1,-60,-40,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":193},"\u00af":{"d":"27,-248r99,0r0,27r-99,0r0,-27","w":153},"\u02d8":{"d":"27,-262r24,0v5,40,69,40,74,0r24,0v-2,32,-29,58,-61,58v-32,0,-59,-26,-61,-58","w":176},"\u02d9":{"d":"63,-250r0,31r-36,0r0,-31r36,0","w":89},"\u00a8":{"d":"27,-250r36,0r0,31r-36,0r0,-31xm100,-250r36,0r0,31r-36,0r0,-31","w":163},"\u02da":{"d":"27,-236v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm43,-236v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":120},"\u00b8":{"d":"68,4r16,23r-47,19r-10,-17","w":110},"\u02dd":{"d":"72,-274r26,23r-56,52r-15,-14xm141,-274r26,23r-55,52r-16,-14","w":193},"\u02db":{"d":"54,-1v10,2,26,-3,32,2v-13,6,-35,20,-35,32v1,17,22,17,34,10r0,23v-24,10,-58,0,-58,-28v0,-18,12,-30,27,-39","w":112},"\u02c7":{"d":"91,-210r-64,-39r9,-18r55,23r55,-23r9,18","w":182},"\u2014":{"d":"0,-117r360,0r0,35r-360,0r0,-35","w":360},"\u00c6":{"d":"184,-90r0,-136r-27,0r-65,136r92,0xm184,0r0,-51r-108,0r-25,51r-57,0r127,-270r246,0r0,44r-132,0r0,69r124,0r0,40r-124,0r0,73r132,0r0,44r-183,0","w":381},"\u00aa":{"d":"100,-157v0,-3,2,-9,0,-11v-21,24,-84,20,-79,-23v-4,-42,54,-45,78,-26v-1,-20,7,-35,-22,-35v-13,0,-22,0,-21,15r-31,0v0,-36,26,-35,52,-35v32,0,53,4,53,39r0,76r-30,0xm75,-175v15,0,25,-2,25,-17v0,-13,-9,-15,-25,-15v-12,0,-23,0,-23,14v0,17,8,18,23,18","w":158},"\u0141":{"d":"76,-146r0,102r126,0r0,44r-178,0r0,-103r-29,27r0,-41r29,-27r0,-126r52,0r0,84r58,-54r0,41","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"\u00d8":{"d":"271,-279r0,41r-21,19v7,23,6,48,6,80v0,112,-10,141,-119,141v-49,0,-76,1,-100,-25r-37,32r0,-39r22,-20v-6,-15,-6,-59,-6,-89v0,-94,3,-133,121,-133v34,0,73,0,98,26xm204,-177r-128,119v5,16,39,16,61,16v70,0,67,-17,67,-94r0,-41xm68,-91r128,-120v-12,-16,-32,-17,-59,-17v-94,0,-64,66,-69,137","w":271},"\u0152":{"d":"131,-42v89,0,69,-55,69,-124v0,-55,-9,-62,-69,-62v-94,0,-65,58,-65,124v0,58,8,62,65,62xm252,-226r0,69r125,0r0,40r-125,0r0,73r132,0r0,44r-181,0v-1,-9,3,-22,0,-29v-17,28,-46,31,-80,31v-118,0,-109,-73,-109,-179v0,-72,33,-95,109,-95v27,-1,65,3,81,33r-1,-31r180,0r0,44r-131,0","w":397},"\u00ba":{"d":"79,-272v45,0,56,10,56,57v0,42,-6,60,-56,60v-45,0,-55,-10,-55,-60v0,-42,6,-57,55,-57xm79,-249v-23,0,-24,8,-24,34v0,33,1,36,24,36v24,0,25,-12,25,-36v0,-29,-2,-34,-25,-34","w":158},"\u00e6":{"d":"188,-115r84,0v0,-39,-6,-42,-43,-42v-39,0,-41,9,-41,42xm100,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm141,-94v1,-31,12,-66,-39,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v15,-1,56,0,65,24v8,-23,43,-24,62,-24v78,0,89,23,89,105r-130,0v0,41,0,54,41,54v25,0,43,0,43,-28r46,0v0,59,-35,62,-89,62v-26,1,-58,-4,-69,-30v-10,29,-45,30,-76,30v-43,0,-70,-9,-70,-60v0,-45,23,-58,70,-58v23,0,46,0,57,22","w":331},"\u0131":{"d":"65,-189r0,189r-45,0r0,-189r45,0","w":84},"\u0142":{"d":"72,-152r0,152r-46,0r0,-115r-26,25r0,-32r26,-24r0,-124r46,0r0,86r26,-24r0,32","w":97},"\u00f8":{"d":"209,-194r0,29r-19,15v7,79,20,152,-83,152v-24,0,-59,0,-75,-21r-31,27r0,-29r20,-18v-5,-18,-5,-37,-5,-56v0,-75,10,-96,89,-96v24,0,58,0,74,21xm107,-32v45,0,42,-43,41,-85r-81,71v4,15,27,14,40,14xm103,-157v-46,0,-45,43,-41,86r82,-71v-4,-15,-28,-15,-41,-15","w":209},"\u0153":{"d":"103,-157v-39,0,-43,6,-43,63v0,54,6,62,43,62v39,0,42,-8,42,-62v0,-59,-3,-63,-42,-63xm14,-94v0,-64,5,-97,90,-97v19,-1,55,2,65,26v10,-24,42,-26,64,-26v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,42,0,42,-28r46,0v0,59,-34,62,-88,62v-27,1,-53,-3,-65,-27v-12,27,-38,27,-64,27v-77,0,-90,-23,-90,-96xm191,-115r84,0v0,-39,-5,-42,-42,-42v-39,0,-42,9,-42,42","w":335},"\u00df":{"d":"24,0r0,-185v0,-64,7,-87,86,-87v40,0,79,8,79,56v1,30,-18,42,-43,49v48,3,56,37,56,78v0,53,-11,91,-71,91v-14,0,-27,-3,-40,-7r0,-37v33,24,66,2,66,-47v0,-48,-12,-64,-58,-61r0,-31v28,1,47,-1,48,-35v0,-21,-20,-25,-41,-25v-28,0,-37,7,-37,35r0,206r-45,0","w":218},"\u00b9":{"d":"111,-272r0,162r-34,0r0,-134r-42,42r-18,-21r52,-49r42,0","w":152},"\u00ac":{"d":"158,-44r0,-76r-140,0r0,-34r174,0r0,110r-34,0","w":210},"\u00b5":{"d":"191,0r-44,0v-1,-9,2,-22,-1,-29v-13,30,-43,33,-78,30r0,81r-45,0r0,-271r45,0r0,119v0,27,3,38,32,38v74,0,38,-96,46,-157r45,0r0,189","w":213},"\u2122":{"d":"334,-270r0,145r-31,0r-1,-117r-42,117r-19,0r-43,-117r0,117r-31,0r0,-145r51,0r33,86r32,-86r51,0xm149,-270r0,28r-44,0r0,117r-35,0r0,-117r-44,0r0,-28r123,0","w":360},"\u00d0":{"d":"74,-226r0,68r63,0r0,39r-63,0r0,75r86,0v57,-3,42,-70,46,-126v5,-77,-70,-52,-132,-56xm22,-158r0,-112r129,0v75,0,106,27,106,100v0,92,12,170,-97,170r-138,0r0,-119r-32,0r0,-39r32,0","w":271},"\u00bd":{"d":"288,-270r-171,270r-33,0r170,-270r34,0xm108,-270r0,162r-34,0r0,-134r-42,42r-18,-21r52,-49r42,0xm363,-28r0,28r-122,0v-3,-51,4,-80,53,-80v28,-6,35,-2,35,-32v0,-21,-7,-24,-26,-24v-23,0,-28,1,-28,33r-34,0v0,-40,3,-59,62,-59v38,0,60,7,60,50v0,43,-14,49,-54,55v-28,4,-35,4,-34,29r88,0","w":380},"\u00b1":{"d":"88,-189r34,0r0,49r70,0r0,34r-70,0r0,49r-34,0r0,-49r-70,0r0,-34r70,0r0,-49xm18,0r0,-35r174,0r0,35r-174,0","w":210},"\u00de":{"d":"20,0r0,-270r52,0r0,44r68,0v72,0,96,17,96,93v0,105,-73,88,-164,89r0,44r-52,0xm72,-88v50,-5,123,20,112,-45v11,-67,-59,-45,-112,-49r0,94","w":246},"\u00bc":{"d":"344,-162r0,102r14,0r0,27r-14,0r0,33r-34,0r0,-33r-89,0r0,-35r72,-94r51,0xm310,-60v-1,-25,2,-53,-1,-76r-60,76r61,0xm294,-270r-172,270r-33,0r171,-270r34,0xm114,-270r0,162r-34,0r0,-134r-43,42r-18,-21r52,-49r43,0","w":380},"\u00f7":{"d":"18,-85r0,-34r174,0r0,34r-174,0xm84,-15r0,-42r42,0r0,42r-42,0xm84,-147r0,-42r42,0r0,42r-42,0","w":210},"\u00a6":{"d":"68,-243r0,126r-35,0r0,-126r35,0xm68,63r-35,0r0,-126r35,0r0,126","w":100},"\u00b0":{"d":"126,-218v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm101,-218v0,-16,-13,-29,-29,-29v-16,0,-29,13,-29,29v0,16,13,29,29,29v16,0,29,-13,29,-29","w":144},"\u00fe":{"d":"112,-32v31,0,41,-9,41,-57v0,-43,0,-68,-41,-68v-46,0,-45,23,-45,68v0,40,6,57,45,57xm22,82r0,-352r45,0r1,109v10,-25,31,-30,58,-30v70,0,72,44,72,102v0,55,-7,91,-72,91v-25,0,-46,-8,-59,-27r0,107r-45,0","w":214},"\u00be":{"d":"348,-162r0,102r14,0r0,27r-14,0r0,33r-34,0r0,-33r-88,0r0,-35r71,-94r51,0xm314,-60v-1,-25,2,-53,-1,-76r-59,76r60,0xm302,-270r-172,270r-33,0r170,-270r35,0xm63,-178r0,-28v23,-1,41,6,41,-24v0,-13,-6,-14,-31,-14v-22,0,-25,2,-25,25r-35,0v0,-47,17,-53,60,-53v31,0,65,0,65,42v0,20,-9,35,-29,39v22,2,32,14,32,35v0,45,-27,48,-68,48v-41,0,-61,-1,-61,-55r34,0v0,27,1,27,27,27v27,0,34,-1,34,-20v0,-26,-21,-22,-44,-22","w":380},"\u00b2":{"d":"134,-138r0,28r-122,0v-3,-51,4,-80,53,-80v28,-6,35,-2,35,-32v0,-21,-6,-24,-25,-24v-23,0,-29,1,-29,33r-34,0v0,-40,4,-59,63,-59v38,0,59,7,59,50v0,43,-14,49,-54,55v-28,4,-35,4,-34,29r88,0","w":152},"\u00ae":{"d":"142,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v75,0,137,61,137,137v0,76,-62,137,-137,137xm142,-24v62,0,111,-49,111,-111v0,-62,-49,-111,-111,-111v-62,0,-111,49,-111,111v0,62,49,111,111,111xm175,-123r35,63r-33,0r-33,-63r-30,0r0,63r-28,0r0,-148v54,5,129,-19,129,41v0,32,-14,42,-40,44xm114,-145v29,-3,75,12,72,-22v-2,-31,-43,-17,-72,-20r0,42","w":284},"\u2212":{"d":"18,-85r0,-34r174,0r0,34r-174,0","w":210},"\u00f0":{"d":"105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm65,-261r36,-11v12,7,22,15,31,23r46,-14r19,20r-46,14v32,39,42,79,42,127v0,77,-9,104,-88,104v-79,0,-89,-23,-89,-96v0,-60,7,-98,70,-98v14,0,35,2,52,16v-6,-16,-15,-30,-24,-42r-45,14r-20,-20r47,-14v-9,-8,-18,-15,-31,-23","w":209},"\u00d7":{"d":"105,-126r63,-63r24,24r-63,63r63,63r-24,24r-63,-62r-62,62r-25,-25r62,-62r-62,-62r24,-25","w":210},"\u00b3":{"d":"63,-178r0,-28v23,-1,41,6,41,-24v0,-13,-6,-14,-31,-14v-22,0,-25,2,-25,25r-35,0v0,-47,17,-53,60,-53v31,0,65,0,65,42v0,20,-9,35,-29,39v22,2,32,14,32,35v0,45,-27,48,-68,48v-41,0,-61,-1,-61,-55r34,0v0,27,1,27,27,27v27,0,34,-1,34,-20v0,-26,-21,-22,-44,-22","w":152},"\u00a9":{"d":"142,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v76,0,137,61,137,137v0,76,-61,137,-137,137xm142,-24v61,0,111,-49,111,-111v0,-62,-50,-111,-111,-111v-62,0,-111,49,-111,111v0,62,49,111,111,111xm181,-111r31,0v-16,91,-140,56,-140,-25v0,-46,28,-80,75,-80v33,0,60,20,65,53r-31,0v-18,-53,-78,-20,-78,26v0,26,16,55,45,55v17,0,32,-12,33,-29","w":284},"\u00c1":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm158,-348r17,29r-70,31r-10,-19","w":255},"\u00c2":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm128,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":255},"\u00c4":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm73,-331r36,0r0,31r-36,0r0,-31xm147,-331r35,0r0,31r-35,0r0,-31","w":255},"\u00c0":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm111,-348r64,41r-10,19r-70,-31","w":255},"\u00c5":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm95,-324v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm111,-324v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":255},"\u00c3":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm175,-334r22,12v-9,17,-20,31,-41,31v-29,-1,-60,-40,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":255},"\u00c7":{"d":"138,4r16,23r-47,19r-10,-17xm236,-180r-52,0v2,-41,-5,-48,-58,-48v-78,0,-61,57,-61,121v0,54,7,65,61,65v49,0,64,-8,61,-55r52,0v7,89,-39,99,-113,99v-123,0,-114,-63,-113,-168v0,-86,33,-106,113,-106v72,0,112,8,110,92","w":250},"\u00c9":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm142,-348r16,29r-69,31r-10,-19","w":222},"\u00ca":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm112,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":222},"\u00cb":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm57,-331r36,0r0,31r-36,0r0,-31xm130,-331r36,0r0,31r-36,0r0,-31","w":222},"\u00c8":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm88,-348r63,41r-10,19r-69,-31","w":222},"\u00cd":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm73,-348r17,29r-70,31r-10,-19","w":99},"\u00ce":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm50,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":99},"\u00cf":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm-12,-331r35,0r0,31r-35,0r0,-31xm61,-331r36,0r0,31r-36,0r0,-31","w":99},"\u00cc":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm26,-348r64,41r-10,19r-70,-31","w":99},"\u00d1":{"d":"225,-44r-3,-226r52,0r0,270r-86,0r-115,-226r-2,0r5,226r-52,0r0,-270r85,0xm196,-334r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":297},"\u00d3":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm152,-348r16,29r-69,31r-10,-19","w":257},"\u00d4":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm129,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":257},"\u00d6":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm74,-331r36,0r0,31r-36,0r0,-31xm148,-331r35,0r0,31r-35,0r0,-31","w":257},"\u00d2":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm105,-348r63,41r-9,19r-70,-31","w":257},"\u00d5":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm176,-334r22,12v-9,17,-20,31,-41,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":257},"\u0160":{"d":"12,-86r52,0v-2,41,6,47,61,46v47,0,54,-9,54,-40v0,-39,-21,-34,-61,-36v-58,-4,-105,-2,-105,-80v0,-74,47,-76,112,-76v58,0,104,6,100,81r-52,0v2,-34,-8,-39,-48,-39v-51,0,-60,5,-60,34v0,33,7,35,60,38v83,5,105,9,105,78v0,76,-36,82,-105,82v-65,0,-119,-4,-113,-88xm121,-291r-64,-39r9,-18r55,23r55,-23r9,18","w":242},"\u00da":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm159,-348r17,29r-70,31r-10,-19","w":271},"\u00db":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm136,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":271},"\u00dc":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm81,-331r36,0r0,31r-36,0r0,-31xm155,-331r35,0r0,31r-35,0r0,-31","w":271},"\u00d9":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm112,-348r64,41r-10,19r-70,-31","w":271},"\u00dd":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0xm151,-348r16,29r-70,31r-10,-19","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u0178":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0xm66,-331r36,0r0,31r-36,0r0,-31xm140,-331r35,0r0,31r-35,0r0,-31","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u017d":{"d":"222,-270r0,44r-149,182r151,0r0,44r-215,0r0,-44r148,-182r-142,0r0,-44r207,0xm117,-291r-64,-39r8,-18r56,23r55,-23r9,18","w":233},"\u00e1":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm137,-267r16,29r-70,31r-10,-19","w":212},"\u00e2":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm106,-267r64,39r-9,18r-55,-23r-55,23r-9,-18","w":212},"\u00e4":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm51,-250r36,0r0,31r-36,0r0,-31xm125,-250r36,0r0,31r-36,0r0,-31","w":212},"\u00e0":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm82,-267r64,41r-10,19r-70,-31","w":212},"\u00e5":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm73,-236v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm89,-236v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":212},"\u00e3":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm153,-253r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":212},"\u00e7":{"d":"112,4r16,23r-47,19r-10,-17xm142,-72r45,0v0,62,-22,74,-86,74v-69,0,-84,-20,-84,-96v0,-66,10,-97,84,-97v56,0,86,8,86,68r-45,0v0,-29,-9,-34,-41,-34v-39,0,-39,14,-39,63v0,47,-1,62,39,62v37,0,41,-7,41,-40","w":198},"\u00e9":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm134,-267r16,29r-70,31r-10,-19","w":205},"\u00ea":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm103,-267r64,39r-9,18r-55,-23r-56,23r-8,-18","w":205},"\u00eb":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm48,-250r36,0r0,31r-36,0r0,-31xm122,-250r35,0r0,31r-35,0r0,-31","w":205},"\u00e8":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42xm79,-267r64,41r-10,19r-70,-31","w":205},"\u00ed":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm66,-267r16,29r-69,31r-10,-19","w":84},"\u00ee":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm42,-267r65,39r-9,18r-56,-23r-55,23r-9,-18","w":84},"\u00ef":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm-12,-250r36,0r0,31r-36,0r0,-31xm62,-250r35,0r0,31r-35,0r0,-31","w":84},"\u00ec":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm19,-267r63,41r-9,19r-70,-31","w":84},"\u00f1":{"d":"22,-189r46,0v1,9,-2,21,1,28v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-189xm155,-253r22,12v-9,17,-20,31,-41,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":215},"\u00f3":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm129,-267r16,29r-70,31r-10,-19","w":209},"\u00f4":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm105,-267r64,39r-9,18r-55,-23r-56,23r-8,-18","w":209},"\u00f6":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm50,-250r36,0r0,31r-36,0r0,-31xm124,-250r35,0r0,31r-35,0r0,-31","w":209},"\u00f2":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm81,-267r64,41r-10,19r-70,-31","w":209},"\u00f5":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm152,-253r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":209},"\u0161":{"d":"183,-138r-46,0v0,-23,-12,-22,-36,-22v-24,0,-41,0,-41,25v0,19,5,19,45,21v45,2,84,-1,84,60v0,51,-40,56,-88,56v-51,0,-86,1,-86,-61r45,0v1,27,8,30,41,30v27,0,43,1,43,-25v0,-17,-1,-25,-47,-26v-69,-1,-82,-10,-82,-58v0,-52,37,-53,86,-53v37,0,82,0,82,53xm100,-210r-64,-39r9,-18r55,23r56,-23r9,18","w":200},"\u00fa":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm135,-267r16,29r-70,31r-10,-19","w":213},"\u00fb":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm100,-267r64,39r-9,18r-55,-23r-56,23r-8,-18","w":213},"\u00fc":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm52,-250r36,0r0,31r-36,0r0,-31xm126,-250r35,0r0,31r-35,0r0,-31","w":213},"\u00f9":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189xm69,-267r63,41r-10,19r-69,-31","w":213},"\u00fd":{"d":"176,-189r-49,197v-8,49,-29,85,-91,74r0,-34v34,7,43,-23,46,-48r-22,0r-62,-189r47,0r49,161r36,-161r46,0xm115,-267r16,29r-69,31r-10,-19","w":174,"k":{",":22,".":22}},"\u00ff":{"d":"176,-189r-49,197v-8,49,-29,85,-91,74r0,-34v34,7,43,-23,46,-48r-22,0r-62,-189r47,0r49,161r36,-161r46,0xm33,-250r35,0r0,31r-35,0r0,-31xm106,-250r36,0r0,31r-36,0r0,-31","w":174,"k":{",":22,".":22}},"\u017e":{"d":"163,-151r-102,116r102,0r0,35r-155,0r0,-39r101,-115r-93,0r0,-35r147,0r0,38xm86,-210r-64,-39r8,-18r56,23r55,-23r9,18","w":171},"\u2126":{"d":"20,-33v21,-1,47,2,66,-1v-30,-20,-60,-58,-60,-110v0,-70,58,-125,139,-125v85,0,137,61,137,124v1,54,-31,90,-60,112r67,0r0,33r-117,0r0,-25v34,-18,66,-54,66,-113v0,-48,-33,-97,-92,-97v-56,0,-95,43,-95,99v0,54,31,94,66,111r0,25r-117,0r0,-33","w":329},"\u03bc":{"d":"191,0r-44,0v-1,-9,2,-22,-1,-29v-13,30,-43,33,-78,30r0,81r-45,0r0,-271r45,0r0,119v0,27,3,38,32,38v74,0,38,-96,46,-157r45,0r0,189","w":213},"\u03c0":{"d":"251,-163r-34,0v1,49,-3,129,6,163r-44,0v-13,-28,-5,-117,-7,-163r-72,0v-2,48,-15,131,-30,163r-44,0v15,-39,29,-116,30,-163v-24,0,-38,2,-48,5r-6,-27v53,-23,176,-8,253,-12","w":262},"\u20ac":{"d":"236,-84r0,60v-17,29,-63,26,-111,26v-71,0,-89,-25,-91,-95r-30,0r9,-32r21,0r0,-19r-30,0r9,-32r21,0v1,-88,44,-96,125,-96v46,0,66,6,84,30r-15,50v-27,-43,-48,-36,-93,-36v-44,0,-53,8,-54,52r142,0r-10,32r-133,0r0,19r127,0r-10,32r-116,0v-4,53,29,52,79,51v36,0,52,-10,76,-42"},"\u2113":{"d":"195,-72r20,18v-35,79,-162,69,-167,-13v-8,5,-15,12,-23,17r-13,-23v12,-9,25,-17,36,-26r0,-96v0,-73,34,-98,73,-98v42,0,61,30,61,65v0,49,-35,92,-92,139v-5,77,85,63,105,17xm90,-203r0,76v35,-33,60,-67,60,-99v0,-22,-8,-38,-28,-38v-15,0,-32,15,-32,61","w":225},"\u212e":{"d":"69,-55v37,67,152,61,195,4r21,0v-27,32,-71,53,-120,53v-84,0,-152,-61,-152,-137v0,-76,68,-137,152,-137v86,1,155,61,153,141r-249,1r0,75xm262,-216v-37,-61,-144,-62,-190,-8v-6,21,-5,62,-1,85r191,-2r0,-75","w":330},"\u2202":{"d":"44,-247r-14,-29v13,-9,39,-23,79,-23v64,0,119,54,119,146v0,84,-44,154,-121,154v-63,0,-91,-51,-91,-90v0,-57,42,-97,95,-97v42,0,65,30,74,40v4,-68,-31,-120,-81,-120v-29,0,-49,11,-60,19xm111,-32v38,0,63,-41,68,-80v-5,-15,-27,-41,-59,-41v-33,0,-60,28,-60,64v0,31,21,57,51,57","w":248},"\u220f":{"d":"305,-228r-49,0r0,264r-43,0r0,-264r-112,0r0,264r-43,0r0,-264r-49,0r0,-36r296,0r0,36","w":314},"\u2211":{"d":"240,36r-231,0r0,-24r113,-125r-108,-123r0,-28r219,0r0,36r-157,1r97,109r-105,117r172,0r0,37","w":248},"\u2219":{"d":"86,-127r0,50r-45,0r0,-50r45,0","w":126},"\u221a":{"d":"260,-314r-100,371r-37,0r-69,-171r-33,12r-8,-22r66,-27r54,139v4,9,5,20,9,27r86,-329r32,0","w":255},"\u221e":{"d":"303,-109v0,42,-32,68,-65,68v-24,0,-48,-13,-76,-48v-22,26,-44,48,-77,48v-34,0,-64,-27,-64,-66v0,-40,29,-68,67,-68v31,0,54,22,76,48v20,-22,41,-48,77,-48v36,0,62,27,62,66xm46,-107v0,23,16,42,42,42v25,0,45,-24,61,-42v-18,-22,-35,-45,-63,-45v-24,0,-40,20,-40,45xm238,-152v-27,0,-47,28,-61,43v27,31,41,44,62,44v25,0,39,-22,39,-42v0,-27,-17,-45,-40,-45","w":324},"\u222b":{"d":"58,-226v0,-72,34,-113,93,-93r-5,27v-42,-14,-52,20,-52,71v0,60,6,121,6,185v0,77,-35,112,-96,93r6,-29v38,13,54,-8,54,-65v0,-65,-6,-127,-6,-189","w":155},"\u2248":{"d":"80,-173v38,0,56,30,88,30v17,0,29,-10,42,-29r16,15v-14,24,-34,40,-58,40v-29,0,-57,-31,-90,-31v-20,0,-32,15,-44,30r-16,-16v13,-23,36,-39,62,-39xm80,-99v39,0,53,30,87,30v18,0,30,-10,43,-29r16,16v-14,23,-33,38,-59,38v-29,0,-58,-30,-89,-30v-21,0,-32,14,-44,30r-16,-16v13,-23,36,-39,62,-39","w":244},"\u2260":{"d":"176,-201r-18,39r65,0r0,26r-76,0r-27,58r103,0r0,25r-114,0r-23,49r-21,-9r19,-40r-63,0r0,-25r74,0r27,-58r-101,0r0,-26r112,0r23,-48","w":244},"\u2264":{"d":"222,-37r-199,-90r0,-27r199,-91r0,29r-171,75r171,75r0,29xm223,4r-202,0r0,-25r202,0r0,25","w":244},"\u2265":{"d":"24,-245r198,91r0,27r-198,90r0,-29r171,-75r-171,-75r0,-29xm222,4r-200,0r0,-25r200,0r0,25","w":244},"\u25ca":{"d":"233,-132r-89,152r-34,0r-88,-152r89,-151r34,0xm195,-131r-60,-103v-3,-6,-6,-13,-8,-18r-67,120v22,40,49,77,67,120","w":255},"\u00a0":{"w":126},"\u00ad":{"d":"0,-117r96,0r0,35r-96,0r0,-35","w":95},"\u02c9":{"d":"27,-248r99,0r0,27r-99,0r0,-27","w":153},"\u03a9":{"d":"20,-33v21,-1,47,2,66,-1v-30,-20,-60,-58,-60,-110v0,-70,58,-125,139,-125v85,0,137,61,137,124v1,54,-31,90,-60,112r67,0r0,33r-117,0r0,-25v34,-18,66,-54,66,-113v0,-48,-33,-97,-92,-97v-56,0,-95,43,-95,99v0,54,31,94,66,111r0,25r-117,0r0,-33","w":329},"\u2215":{"d":"204,-270r-171,270r-34,0r171,-270r34,0","w":203},"\u2206":{"d":"12,0r0,-25r109,-246r53,0r107,246r0,25r-269,0xm59,-33r172,0r-85,-201r-2,0","w":293},"\u2010":{"d":"0,-117r96,0r0,35r-96,0r0,-35","w":95}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1987, 1992, 1999, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a trademark of Linotype GmbH registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions.
 * 
 * Full name:
 * EurostileLTStd-DemiOblique
 * 
 * Designer:
 * Aldo Novarese, A. Butti
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Eurostile LT Std","font-weight":600,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 5 2 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-18 -355.611 478.342 104","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"32","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":126},"!":{"d":"89,-49r-11,49r-45,0r10,-49r46,0xm138,-270r-41,180r-45,0r35,-180r51,0","w":111},"\"":{"d":"75,-270r50,0v-5,38,-19,67,-35,93r-19,0v-6,-33,-4,-64,4,-93xm160,-270r50,0v-5,38,-19,67,-35,93r-19,0v-7,-33,-5,-64,4,-93","w":170},"#":{"d":"159,-270r34,0r-30,76r39,0r30,-76r33,0r-30,76r32,0r-9,41r-38,0r-19,48r37,0r-8,41r-46,0r-26,64r-33,0r25,-64r-39,0r-25,64r-34,0r26,-64r-36,0r8,-41r44,0r19,-48r-38,0r9,-41r46,0xm147,-153r-19,48r39,0r20,-48r-40,0"},"$":{"d":"165,-116r-16,76v45,0,57,-8,64,-41v7,-33,-14,-34,-48,-35xm190,-230r-16,72v63,3,103,6,88,77v-14,66,-50,83,-122,83r-6,28r-29,0r7,-28v-95,0,-96,-37,-84,-90r45,0v-10,38,-2,51,48,48r15,-76v-64,-6,-98,-10,-84,-76v15,-71,52,-80,118,-80r5,-26r29,0r-5,26v61,-2,97,12,78,79r-46,0v8,-29,1,-39,-41,-37xm145,-158r16,-72v-39,1,-52,1,-60,38v-7,32,12,32,44,34"},"%":{"d":"336,-86v-9,49,-19,98,-78,88v-66,11,-48,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,6,49,49xm264,-25v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-33,32,-39,57v-6,25,0,26,22,26xm172,-224v-9,49,-19,99,-78,89v-65,10,-49,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,5,49,48xm100,-162v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-32,33,-39,57v-7,24,0,26,22,26xm324,-270r-229,270r-33,0r228,-270r34,0","w":325},"&":{"d":"200,-57r-72,-74v-31,5,-34,18,-41,49v-9,43,9,42,54,42v26,0,44,-1,59,-17xm254,0r-26,-28v-23,29,-60,30,-96,30v-69,0,-110,-6,-93,-84v9,-40,22,-70,67,-74v-15,-15,-18,-23,-13,-47v13,-60,46,-69,102,-69v68,0,80,12,65,84r-44,0v8,-37,8,-42,-30,-42v-39,-10,-56,35,-34,59r69,75r8,-37r44,0v-4,26,-8,47,-20,69r32,34","w":281},"\u2019":{"d":"55,-176r4,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-13,43,-3,101,-68,94","w":83,"k":{"\u2019":7,"t":-7,"s":7,"\u0161":7}},"(":{"d":"103,12r-9,42v-127,15,-50,-138,-40,-210v11,-78,25,-116,109,-116r-9,42v-33,0,-39,16,-45,46r-32,150v-5,23,-9,46,26,46","w":125},")":{"d":"69,-230r9,-42v127,-15,50,139,39,209v-12,78,-25,117,-109,117r9,-42v33,0,39,-16,45,-46r32,-150v5,-23,10,-46,-25,-46","w":125},"*":{"d":"243,-208r-53,16r21,42r-25,16r-20,-43r-42,43r-18,-16r39,-42r-45,-18r14,-26r46,18r11,-52r27,0r-11,52r53,-18"},"+":{"d":"128,-189r35,0r-15,70r69,0r-7,34r-70,0r-14,70r-35,0r15,-70r-70,0r7,-34r70,0","w":210},",":{"d":"22,45r5,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-12,44,-4,101,-69,94","w":126},"-":{"d":"25,-117r96,0r-8,35r-96,0","w":95},".":{"d":"88,-49r-11,49r-45,0r10,-49r46,0","w":126},"\/":{"d":"305,-270r-275,311r-40,0r274,-311r41,0","w":245},"0":{"d":"185,-272v81,0,109,17,88,113r-11,49v-21,96,-54,112,-135,112v-81,0,-109,-16,-88,-112r10,-50v19,-90,44,-112,136,-112xm136,-40v50,0,63,-3,75,-58r15,-74v12,-55,0,-58,-50,-58v-51,0,-63,3,-75,58r-16,74v-12,55,0,58,51,58"},"1":{"d":"234,-270r-57,270r-49,0r48,-227r-85,70r-23,-32r104,-81r62,0"},"2":{"d":"235,-42r-9,42r-204,0r11,-51v15,-69,43,-73,106,-84v56,-9,68,-5,78,-54v8,-36,-3,-41,-41,-41v-47,0,-56,1,-68,56r-49,0v14,-66,27,-98,126,-98v64,0,96,12,81,83v-15,71,-41,81,-110,91v-55,8,-68,11,-76,56r155,0"},"3":{"d":"41,-91r49,0v-11,50,-3,51,42,51v44,0,56,-2,66,-38v14,-47,-27,-40,-66,-40r8,-39v47,1,73,4,80,-45v4,-26,-6,-28,-48,-28v-45,0,-51,5,-60,47r-49,0v17,-78,46,-89,118,-89v51,0,103,0,88,70v-7,32,-19,59,-56,63r0,2v36,3,42,24,34,59v-16,75,-55,80,-124,80v-68,0,-101,-4,-82,-93"},"4":{"d":"264,-270r-37,173r32,0r-8,39r-32,0r-12,58r-49,0r12,-58r-147,0r12,-56r153,-156r76,0xm178,-97r28,-136r-134,136r106,0"},"5":{"d":"125,-231v-3,22,-12,47,-13,67v16,-21,47,-22,68,-22v70,0,83,25,69,93v-18,84,-48,95,-128,95v-66,0,-93,-10,-80,-80r49,0v-8,37,11,38,44,38v47,0,55,-5,65,-52v10,-46,5,-52,-42,-52v-26,0,-46,0,-54,18r-46,0r31,-144r188,0r-8,39r-143,0"},"6":{"d":"151,-122v-39,0,-54,0,-61,33v-9,43,-4,49,44,49v45,0,54,-1,63,-43v8,-39,-2,-39,-46,-39xm44,-103r16,-79v17,-76,51,-90,123,-90v62,0,101,2,84,77r-49,0v7,-34,-6,-35,-44,-35v-65,0,-65,46,-73,91v13,-23,40,-26,66,-26v72,0,94,10,79,79v-15,73,-44,88,-121,88v-80,0,-100,-13,-81,-105"},"7":{"d":"281,-270r-11,50r-157,220r-55,0r164,-226r-151,0r10,-44r200,0"},"8":{"d":"152,-118v-51,0,-58,6,-65,38v-7,34,-1,40,49,40v50,0,58,-8,65,-40v7,-34,1,-38,-49,-38xm127,2v-58,0,-104,-3,-88,-82v6,-31,22,-52,60,-60v-35,-8,-38,-25,-31,-60v14,-64,54,-72,117,-72v51,0,101,-4,86,72v-7,34,-20,52,-55,61v34,5,40,26,33,59v-16,76,-53,82,-122,82xm161,-158v38,0,52,2,61,-42v6,-30,-8,-30,-46,-30v-44,0,-53,3,-59,30v-9,42,6,42,44,42"},"9":{"d":"175,-230v-47,0,-54,4,-62,43v-8,35,-2,39,45,39v47,0,56,-3,64,-39v8,-40,-6,-43,-47,-43xm38,-76r49,0v-8,35,5,36,48,36v42,0,56,-1,66,-47v2,-14,9,-32,9,-45v-17,22,-38,27,-73,27v-58,0,-89,-9,-73,-82v14,-67,38,-85,120,-85v89,0,101,22,81,115r-17,79v-14,68,-57,80,-122,80v-59,0,-104,-2,-88,-78"},":":{"d":"88,-49r-11,49r-45,0r10,-49r46,0xm118,-189r-11,49r-45,0r10,-49r46,0","w":126},";":{"d":"22,45r5,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-12,44,-4,101,-69,94xm121,-189r-10,49r-46,0r11,-49r45,0","w":126},"<":{"d":"37,-89r5,-25r191,-75r-8,36r-136,51r114,51r-8,36","w":210},"=":{"d":"44,-120r7,-34r174,0r-7,34r-174,0xm28,-50r8,-34r174,0r-7,34r-175,0","w":210},">":{"d":"217,-114r-6,25r-190,74r8,-36r136,-51r-115,-51r8,-36","w":210},"?":{"d":"136,-86r-45,0v7,-41,15,-53,54,-67v27,-11,41,-12,47,-43v7,-35,0,-38,-33,-38v-42,0,-50,11,-55,46r-45,0v11,-66,36,-84,109,-84v53,0,84,10,70,76v-9,40,-19,55,-63,71v-23,8,-34,14,-39,39xm129,-49r-11,49r-45,0r10,-49r46,0","w":214},"@":{"d":"266,-198r28,0r-46,94v-4,11,-1,18,12,18v27,0,54,-45,59,-66v9,-45,-24,-90,-81,-90v-72,0,-133,66,-144,116v-18,83,73,118,151,87r5,27v-93,38,-214,0,-192,-108v16,-79,101,-152,186,-152v68,0,122,49,107,119v-9,44,-51,95,-100,95v-18,0,-27,-6,-33,-21v-43,40,-100,20,-91,-33v7,-41,58,-91,101,-91v15,-1,26,12,30,23xm217,-176v-14,0,-46,20,-54,58v-4,18,-2,32,18,32v30,0,53,-41,58,-65v4,-17,-5,-25,-22,-25","w":351},"A":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0","w":255},"B":{"d":"100,-118r-16,74v52,-5,117,20,124,-36v21,-61,-65,-31,-108,-38xm259,-75v-16,108,-132,67,-236,75r57,-270r135,0v53,0,76,11,64,70v-6,32,-19,51,-51,61v37,4,36,29,31,64xm123,-226r-15,69v51,-4,116,18,118,-38v14,-54,-64,-23,-103,-31","w":257},"C":{"d":"274,-180r-52,0v9,-35,8,-48,-47,-48v-52,0,-64,9,-75,62r-12,59v-11,54,-7,65,47,65v49,0,67,-11,72,-55r52,0v-9,86,-60,99,-133,99v-96,0,-106,-27,-90,-106r13,-62v18,-86,55,-106,135,-106v67,0,106,1,93,78","w":250},"D":{"d":"22,0r58,-270r128,0v75,0,100,27,85,100v-18,85,-22,170,-133,170r-138,0xm84,-44r85,0v60,-3,58,-76,73,-126v23,-78,-60,-51,-120,-56","w":271},"E":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0","w":222},"F":{"d":"121,-226r-16,72r121,0r-9,42r-121,0r-23,112r-52,0r57,-270r179,0r-10,44r-126,0","w":209,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":58,".":58}},"G":{"d":"158,-143r120,0r-11,49v-17,80,-40,96,-136,96v-86,0,-115,-15,-96,-106r13,-62v19,-90,57,-106,141,-106v66,0,119,-4,98,83r-52,0v9,-40,-10,-39,-55,-39v-88,0,-79,63,-94,124v-14,56,-4,62,54,62v52,0,70,-8,77,-62r-68,0","w":261},"H":{"d":"310,-270r-57,270r-52,0r25,-115r-126,0r-24,115r-52,0r57,-270r52,0r-24,111r126,0r23,-111r52,0","w":276},"I":{"d":"133,-270r-57,270r-52,0r57,-270r52,0","w":99},"J":{"d":"194,-270r52,0r-40,187v-15,71,-43,85,-105,85v-55,0,-89,-7,-76,-69r8,-39r50,0v-4,33,-27,64,27,64v31,0,37,-8,44,-41","w":209},"K":{"d":"133,-270r-24,110r25,0r113,-110r64,0r-137,132r91,138r-66,0r-75,-116r-24,0r-24,116r-52,0r57,-270r52,0","w":257},"L":{"d":"133,-270r-48,226r126,0r-9,44r-178,0r57,-270r52,0","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"M":{"d":"339,-228r-135,228r-46,0r-38,-226r-44,226r-52,0r57,-270r83,0r31,201r2,0r114,-201r85,0r-57,270r-52,0","w":362},"N":{"d":"236,-44r43,-226r52,0r-57,270r-86,0r-67,-226r-2,0r-43,226r-52,0r57,-270r86,0r67,226r2,0","w":297},"O":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54","w":257},"P":{"d":"20,0r57,-270r120,0v72,0,90,16,77,93v-17,101,-83,90,-183,90r-19,87r-52,0xm100,-132v57,-4,119,17,122,-45v26,-67,-52,-45,-102,-49","w":246,"k":{"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,",":65,".":65}},"Q":{"d":"286,-36r-27,30r-20,-17v-31,26,-70,25,-101,25v-84,0,-115,-14,-98,-103r15,-73v18,-84,61,-98,141,-98v64,0,119,3,98,98v-10,45,-11,76,-30,120xm174,-127r49,40r19,-87v10,-49,-5,-54,-56,-54v-46,0,-68,3,-79,54r-15,73v-12,56,2,59,55,59v19,0,39,1,56,-11r-57,-43","w":275},"R":{"d":"198,-50v16,-55,-61,-36,-105,-39r-19,89r-52,0r57,-270v91,7,235,-35,203,81v-11,41,-19,68,-65,77v59,1,29,73,22,112r-51,0xm102,-134v60,-4,122,19,126,-47v24,-68,-58,-39,-106,-45","w":259,"k":{"T":-2,"V":-3,"W":-4,"y":-7,"\u00fd":-7,"\u00ff":-7}},"S":{"d":"30,-86r52,0v-10,36,-5,46,52,46v47,0,55,-9,61,-40v8,-39,-13,-34,-53,-36v-57,-4,-103,-2,-87,-80v16,-74,63,-76,128,-76v59,0,100,9,83,81r-52,0v9,-30,1,-39,-40,-39v-51,0,-61,5,-67,34v-7,33,-1,35,51,38v82,5,104,9,89,78v-16,76,-53,82,-122,82v-60,0,-114,2,-98,-75","w":242},"T":{"d":"180,-226r-48,226r-52,0r48,-226r-79,0r9,-44r210,0r-9,44r-79,0","w":211,"k":{"\u00fc":22,"\u0161":22,"\u00f2":31,"\u00f6":31,"\u00e8":31,"\u00eb":31,"\u00ea":31,"\u00e3":31,"\u00e5":31,"\u00e0":31,"\u00e4":31,"\u00e2":31,"w":18,"y":18,"\u00fd":18,"\u00ff":18,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":43,".":43,"c":31,"\u00e7":31,"e":31,"\u00e9":31,"o":31,"\u00f8":31,"\u0153":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"r":21,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22,"-":25,"a":31,"\u00e6":31,"\u00e1":31,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,"s":22,":":16,";":16}},"U":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36","w":271},"V":{"d":"251,-270r54,0r-144,270r-79,0r-29,-270r53,0r25,227","w":243,"k":{"\u00f6":14,"\u00f4":14,"\u00e8":14,"\u00eb":14,"\u00ea":14,"\u00e3":14,"\u00e5":14,"\u00e0":14,"\u00e4":14,"\u00e2":14,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":36,".":36,"e":14,"\u00e9":14,"o":14,"\u00f8":14,"\u0153":14,"\u00f3":14,"\u00f2":14,"\u00f5":14,"r":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"a":14,"\u00e6":14,"\u00e1":14,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,":":4,";":4}},"W":{"d":"300,-42r107,-228r52,0r-130,270r-74,0r-12,-206r-100,206r-74,0r-13,-270r52,0r9,228r111,-228r59,0","w":400,"k":{"\u00fc":6,"\u00f6":11,"\u00ea":11,"\u00e4":8,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":30,".":30,"e":11,"\u00e9":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u0153":11,"\u00f3":11,"\u00f4":11,"\u00f2":11,"\u00f5":11,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"i":-12,"\u0131":-12,"\u00ed":-12,"\u00ee":-12,"\u00ef":-12,"\u00ec":-12}},"X":{"d":"305,-270r-108,131r56,139r-59,0r-44,-114r-93,114r-61,0r118,-139r-54,-131r60,0r40,107r85,-107r60,0","w":249},"Y":{"d":"302,-270r-135,166r-22,104r-51,0r22,-104r-63,-166r59,0r41,115r90,-115r59,0","w":241,"k":{"\u00fc":26,"\u00f6":36,"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"Z":{"d":"280,-270r-10,44r-188,182r152,0r-10,44r-215,0r9,-44r187,-180r0,-2r-142,0r10,-44r207,0","w":233},"[":{"d":"79,-272r84,0r-9,39r-34,0r-53,248r35,0r-9,39r-83,0","w":125},"\\":{"d":"69,41r-30,-311r41,0r29,311r-40,0","w":100},"]":{"d":"93,54r-84,0r8,-39r35,0r53,-248r-35,0r8,-39r84,0","w":125},"^":{"d":"150,-270r25,0r37,175r-36,0r-24,-126r-78,126r-36,0","w":210},"_":{"d":"174,27r-4,18r-180,0r4,-18r180,0","w":180},"\u2018":{"d":"124,-272r-4,21v-13,0,-23,4,-27,24r18,0r-11,49r-45,0v12,-44,4,-101,69,-94","w":83,"k":{"\u2018":7}},"a":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0","w":212},"b":{"d":"145,-157v-39,0,-49,17,-58,57v-9,45,-15,68,31,68v41,0,46,-25,55,-68v10,-48,3,-57,-28,-57xm21,0r57,-270r45,0r-22,106r2,0v14,-23,40,-27,63,-27v65,0,65,36,53,91v-12,58,-24,102,-94,102v-28,0,-46,-7,-54,-30r-5,28r-45,0","w":213},"c":{"d":"157,-72r46,0v-13,62,-38,74,-102,74v-69,0,-80,-20,-64,-96v14,-66,31,-97,105,-97v56,0,84,8,71,68r-45,0v6,-29,-2,-34,-34,-34v-39,0,-42,14,-52,63v-10,47,-14,62,26,62v37,0,42,-7,49,-40","w":198},"d":{"d":"134,-157v-31,0,-43,9,-53,57v-9,43,-15,68,26,68v46,0,50,-23,59,-68v9,-40,7,-57,-32,-57xm146,0v1,-9,10,-22,6,-28v-17,25,-38,30,-65,30v-70,0,-63,-44,-51,-102v12,-55,27,-91,92,-91v25,0,44,8,53,27r22,-106r45,0r-57,270r-45,0","w":213},"e":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42","w":205},"f":{"d":"163,-189r-7,35r-46,0r-33,154r-45,0r32,-154r-26,0r7,-35r27,0v6,-62,33,-89,107,-81r-7,35v-43,-5,-51,14,-55,46r46,0","w":125,"k":{"\u2019":-7,"f":-4,"\ufb01":-4,"\ufb02":-4,"\u00df":-4}},"g":{"d":"134,-157v-31,0,-42,9,-52,57v-9,43,-14,68,26,68v45,0,50,-23,59,-68v9,-40,6,-57,-33,-57xm90,49v55,0,57,-37,62,-76v-17,25,-42,29,-65,29v-65,0,-65,-36,-53,-91v12,-58,24,-102,94,-102v28,0,46,7,54,30r4,-28r46,0r-40,189v-14,68,-40,84,-109,84v-46,0,-79,-8,-64,-65r43,0v-6,26,2,30,28,30","w":213},"h":{"d":"125,-270r-22,109v16,-28,39,-30,66,-30v50,0,61,20,51,66r-27,125r-45,0r26,-120v6,-27,1,-37,-28,-37v-40,0,-49,19,-56,53r-22,104r-46,0r58,-270r45,0","w":215},"i":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm122,-270r-8,39r-45,0r8,-39r45,0","w":84},"j":{"d":"104,-189r-42,193v-7,43,-31,70,-80,60r7,-32v20,0,24,-10,27,-23r42,-198r46,0xm121,-270r-8,39r-46,0r8,-39r46,0","w":81},"k":{"d":"125,-270r-33,154r11,0r69,-73r51,0r-86,89r59,100r-55,0r-45,-85r-11,0r-18,85r-45,0r57,-270r46,0","w":194},"l":{"d":"125,-270r-57,270r-45,0r57,-270r45,0","w":90},"m":{"d":"63,-189r44,0v-1,8,-6,20,-5,27v15,-24,42,-29,66,-29v27,0,47,10,51,33v14,-26,41,-33,66,-33v49,0,62,17,52,63r-27,128r-45,0r26,-123v4,-24,0,-34,-25,-34v-37,0,-47,17,-54,50r-23,107r-45,0r26,-123v4,-24,0,-34,-25,-34v-37,0,-47,17,-54,50r-23,107r-45,0","w":332},"n":{"d":"63,-189r45,0v-1,9,-6,21,-5,28v16,-28,39,-30,66,-30v50,0,61,20,51,66r-27,125r-45,0r26,-120v6,-27,1,-37,-28,-37v-40,0,-49,19,-56,53r-22,104r-46,0","w":215},"o":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63","w":209},"p":{"d":"119,-32v31,0,43,-9,53,-57v9,-43,14,-68,-27,-68v-46,0,-50,23,-59,68v-9,40,-6,57,33,57xm107,-189v-1,9,-10,22,-6,28v17,-25,38,-30,65,-30v70,0,63,44,51,102v-12,55,-27,91,-92,91v-25,0,-44,-8,-53,-27r-22,107r-46,0r58,-271r45,0","w":214},"q":{"d":"135,-157v-31,0,-42,9,-52,57v-9,43,-15,68,26,68v46,0,50,-23,59,-68v9,-40,6,-57,-33,-57xm233,-189r-58,271r-45,0r23,-107r-2,0v-15,23,-40,27,-63,27v-65,0,-65,-36,-53,-91v12,-58,24,-102,94,-102v28,0,46,7,54,30r5,-28r45,0","w":214},"r":{"d":"59,-189r45,0v-1,8,-9,20,-5,25v13,-21,34,-27,56,-27v48,0,43,37,34,74r-42,0v4,-18,11,-40,-15,-40v-27,0,-38,16,-43,40r-25,117r-45,0","w":169,"k":{"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"f":-3,"\ufb01":-3,"\ufb02":-3,"\u00df":-3,",":40,".":40,"c":-3,"\u00e7":-3,"d":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"g":-3,"h":-3,"m":-3,"n":-3,"\u00f1":-3,"o":-3,"\u00f8":-3,"\u0153":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"q":-3,"r":-3,"t":-3,"u":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u00f9":-3,"x":-3,"z":-3,"\u017e":-3,"-":-18}},"s":{"d":"212,-138r-46,0v5,-23,-7,-22,-31,-22v-24,0,-41,0,-46,25v-4,19,1,19,40,21v44,2,85,-1,72,60v-11,51,-52,56,-100,56v-51,0,-86,1,-73,-61r45,0v-5,27,1,30,34,30v27,0,44,1,49,-25v4,-17,4,-25,-42,-26v-69,-1,-79,-10,-69,-58v11,-52,48,-53,97,-53v37,0,81,0,70,53","w":200},"t":{"d":"32,-154r8,-35r23,0r9,-43r46,0r-9,43r72,0r-7,35r-73,0r-20,96v-3,17,-5,26,14,26v26,0,27,-20,31,-40r40,0v-12,57,-30,74,-79,74v-50,0,-62,-11,-52,-59r21,-97r-24,0","w":153},"u":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0","w":213},"v":{"d":"219,-189r-95,189r-69,0r-16,-189r46,0r11,158r76,-158r47,0","w":176,"k":{",":18,".":18}},"w":{"d":"326,-189r-83,189r-65,0r-3,-152r-66,152r-65,0r-3,-189r45,0r-1,158r71,-158r56,0r4,158r66,-158r44,0","w":286,"k":{",":22,".":22}},"x":{"d":"216,-189r-75,90r40,99r-53,0r-23,-69r-53,69r-54,0r84,-99r-36,-90r52,0r19,60r46,-60r53,0","w":180},"y":{"d":"217,-189r-91,197v-21,48,-44,85,-108,74r8,-34v34,7,46,-24,56,-48r-22,0r-21,-189r46,0r15,161r71,-161r46,0","w":174,"k":{",":22,".":22}},"z":{"d":"195,-151r-127,116r102,0r-7,35r-155,0r9,-39r125,-115r-93,0r8,-35r146,0","w":171},"{":{"d":"33,-94r8,-34v7,0,29,0,32,-16r17,-80v17,-47,39,-51,86,-48r-8,34v-20,-2,-34,5,-33,19r-16,74v-6,28,-32,31,-42,35v11,1,34,4,27,37r-16,74v-7,14,7,21,26,18r-7,35v-43,2,-77,0,-66,-48r18,-80v4,-20,-19,-20,-26,-20","w":140},"|":{"d":"102,-311r33,0r0,415r-33,0r0,-415","w":178},"}":{"d":"153,-125r-7,35v-7,0,-30,0,-33,16r-17,80v-17,47,-39,51,-86,48r8,-35v19,2,34,-4,33,-18r16,-74v6,-28,33,-31,42,-35v-11,-1,-34,-4,-27,-37r16,-74v8,-15,-7,-22,-26,-19r8,-34v42,-2,75,0,65,48r-17,80v-4,20,18,19,25,19","w":140},"~":{"d":"189,-124r30,0v-8,34,-41,72,-81,48v-16,-10,-34,-26,-54,-26v-10,0,-16,15,-19,23r-30,0v5,-33,44,-73,80,-51v20,12,66,48,74,6","w":210},"\u00a1":{"d":"118,-189r-10,49r-46,0r11,-49r45,0xm13,81r41,-180r45,0r-35,180r-51,0","w":111},"\u00a2":{"d":"129,-63r26,-124v-29,5,-36,31,-43,63v-8,35,-10,57,17,61xm147,-28r-7,30r-25,0r6,-30v-67,0,-66,-39,-54,-96v13,-59,27,-97,95,-98r5,-24r26,0r-5,24v48,0,68,19,58,69r-45,0v4,-24,0,-30,-21,-34r-26,124v25,-3,31,-11,36,-39r45,0v-9,52,-29,73,-88,74"},"\u00a3":{"d":"204,-141r-8,39r-73,0v-5,28,-7,48,-32,61r162,-3r-9,44r-219,0r9,-42v32,-3,34,-34,41,-60r-36,0r9,-39r35,0r9,-43v14,-71,41,-88,110,-88v71,0,97,15,79,87r-49,0v5,-29,11,-48,-35,-45v-56,-9,-55,47,-65,89r72,0"},"\u2044":{"d":"261,-270r-228,270r-34,0r228,-270r34,0","w":203},"\u00a5":{"d":"242,-193r34,0r-9,39r-55,0r-26,31r75,0r-9,39r-84,0r-18,84r-49,0r18,-84r-82,0r8,-39r72,0r-12,-31r-53,0r8,-39r33,0r-28,-77r56,0r38,115r87,-115r57,0"},"\u0192":{"d":"284,-272r-14,34v-46,-10,-54,31,-67,63r43,0r-13,35r-43,0r-65,166v-23,58,-51,58,-115,58r14,-35v43,0,44,0,57,-32r62,-157r-33,0r13,-35r33,0r11,-30v27,-69,51,-67,117,-67"},"\u00a7":{"d":"209,-91v11,-38,-60,-35,-92,-47v-20,0,-26,17,-30,33v-12,40,50,31,76,43v24,11,45,-5,46,-29xm24,0r47,0v-6,34,-7,41,48,41v48,0,59,-6,64,-32v5,-23,-4,-24,-22,-30v-49,-17,-144,-2,-121,-79v7,-23,12,-46,40,-52v-16,-11,-13,-30,-8,-52v13,-63,48,-68,113,-68v66,0,98,11,80,79r-46,0v6,-33,1,-37,-43,-37v-45,0,-50,6,-55,26v-11,44,58,31,86,46v37,9,59,13,49,58v-5,23,-15,49,-38,57v22,8,18,29,13,52v-15,74,-59,75,-122,75v-72,0,-102,-11,-85,-84"},"\u00a4":{"d":"224,-165v11,19,-6,69,-17,76r22,27r-30,24r-22,-28v-15,12,-57,16,-73,-1r-35,29r-18,-24r34,-28v-13,-25,0,-61,15,-74r-23,-28r30,-25r22,28v17,-12,60,-14,76,0r34,-28r20,24xm162,-165v-45,0,-68,76,-16,76v28,0,43,-23,46,-36v5,-20,-7,-40,-30,-40"},"'":{"d":"75,-270r50,0v-5,38,-19,67,-35,93r-19,0v-6,-33,-4,-64,4,-93","w":85},"\u201c":{"d":"194,-272r-5,21v-13,0,-23,4,-27,24r18,0r-10,49r-45,0v12,-44,4,-101,69,-94xm124,-272r-4,21v-13,0,-23,4,-27,24r18,0r-11,49r-45,0v12,-44,4,-101,69,-94","w":152},"\u00ab":{"d":"107,-194r27,17r-55,78r25,76r-33,18r-32,-94xm181,-194r26,17r-55,78r25,76r-33,18r-31,-94","w":190},"\u2039":{"d":"107,-194r27,17r-55,78r25,76r-33,18r-32,-94","w":117},"\u203a":{"d":"93,-194r27,95r-72,94r-25,-18r57,-76r-22,-78","w":117},"\ufb01":{"d":"247,-270r-8,39r-45,0r8,-39r45,0xm230,-189r-40,189r-45,0r40,-189r45,0xm179,-270r-7,35v-43,-5,-51,14,-55,46r46,0r-7,35r-46,0r-33,154r-45,0r32,-154r-26,0r7,-35r27,0v6,-62,33,-89,107,-81","w":210},"\ufb02":{"d":"249,-270r-57,270r-46,0r57,-270r46,0xm163,-189r-7,35r-46,0r-33,154r-45,0r32,-154r-26,0r7,-35r27,0v6,-62,33,-89,107,-81r-7,35v-43,-5,-51,14,-55,46r46,0","w":214},"\u2013":{"d":"25,-117r180,0r-8,35r-180,0","w":180},"\u2020":{"d":"208,-270r-16,80r69,0r-8,39r-70,0r-49,233r-49,0r49,-233r-69,0r8,-39r70,0r16,-80r49,0"},"\u2021":{"d":"208,-270r-18,85r70,0r-8,39r-70,0r-21,100r69,0r-8,39r-69,0r-19,89r-49,0r19,-89r-69,0r8,-39r69,0r21,-100r-69,0r8,-39r69,0r18,-85r49,0"},"\u00b7":{"d":"113,-127r-10,50r-46,0r11,-50r45,0","w":126},"\u00b6":{"d":"232,82r-39,0r65,-310r-31,0r-65,310r-40,0r36,-168v-83,0,-146,8,-121,-90v20,-78,44,-94,119,-94r151,0xm167,-129r21,-99v-58,2,-98,-13,-102,52v-21,63,34,44,81,47"},"\u2022":{"d":"190,-135v-8,37,-45,67,-82,67v-37,0,-61,-29,-53,-67v7,-37,44,-68,82,-68v37,0,61,31,53,68","w":187},"\u201a":{"d":"7,45r5,-21v13,0,22,-4,26,-24r-18,0r11,-49r45,0v-12,44,-4,101,-69,94","w":90},"\u201e":{"d":"7,45r5,-21v13,0,22,-4,26,-24r-18,0r11,-49r45,0v-12,44,-4,101,-69,94xm76,45r4,-21v13,0,23,-4,27,-24r-18,0r10,-49r46,0v-12,44,-4,101,-69,94","w":152},"\u201d":{"d":"55,-176r4,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-13,43,-3,101,-68,94xm124,-176r5,-21v13,0,23,-4,27,-24r-18,0r10,-49r45,0v-13,43,-4,101,-69,94","w":152},"\u00bb":{"d":"166,-194r27,95r-71,94r-25,-18r56,-76r-22,-78xm93,-194r27,95r-72,94r-25,-18r57,-76r-22,-78","w":190},"\u2026":{"d":"93,-49r-10,49r-46,0r11,-49r45,0xm213,-49r-10,49r-46,0r11,-49r45,0xm333,-49r-10,49r-46,0r11,-49r45,0","w":360},"\u2030":{"d":"476,-86v-9,48,-19,98,-79,88v-66,11,-48,-46,-38,-88v10,-43,25,-49,67,-49v42,0,59,6,50,49xm403,-25v36,8,35,-34,42,-59v6,-23,-1,-24,-25,-24v-36,-7,-32,33,-38,57v-7,25,-1,26,21,26xm336,-86v-9,49,-19,98,-78,88v-66,11,-48,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,6,49,49xm264,-25v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-33,32,-39,57v-6,25,0,26,22,26xm172,-224v-9,49,-19,99,-78,89v-65,10,-49,-45,-39,-88v10,-43,26,-49,68,-49v42,0,57,5,49,48xm100,-162v36,8,35,-33,41,-59v6,-23,0,-24,-24,-24v-36,-7,-32,33,-39,57v-7,24,0,26,22,26xm324,-270r-229,270r-33,0r228,-270r34,0","w":465},"\u00bf":{"d":"118,-102r45,0v-7,41,-15,53,-54,67v-27,11,-41,12,-47,43v-7,35,1,38,34,38v42,0,49,-11,54,-46r46,0v-11,66,-38,84,-110,84v-53,0,-83,-10,-69,-76v9,-40,19,-54,63,-71v23,-8,35,-13,38,-39xm182,-189r-11,49r-45,0r11,-49r45,0","w":214},"`":{"d":"100,-267r54,41r-13,19r-64,-31","w":133},"\u00b4":{"d":"147,-267r10,29r-76,31r-6,-19","w":133},"\u02c6":{"d":"148,-267r56,39r-13,18r-50,-23r-61,23r-4,-18","w":182},"\u02dc":{"d":"198,-253r19,12v-13,17,-27,31,-48,31v-30,0,-54,-38,-73,-5r-21,-12v13,-16,28,-31,48,-31v29,0,55,39,75,5","w":193},"\u00af":{"d":"80,-248r99,0r-5,27r-100,0","w":153},"\u02d8":{"d":"83,-262r24,0v1,47,64,34,74,0r24,0v-9,32,-41,58,-73,58v-32,0,-54,-26,-49,-58","w":176},"\u02d9":{"d":"116,-250r-7,31r-36,0r7,-31r36,0","w":89},"\u00a8":{"d":"80,-250r36,0r-7,31r-36,0xm154,-250r35,0r-6,31r-36,0","w":163},"\u02da":{"d":"77,-236v4,-37,74,-47,66,0v-4,37,-74,47,-66,0xm114,-253v-19,-2,-31,33,-7,34v18,2,30,-33,7,-34","w":120},"\u00b8":{"d":"67,4r11,23r-51,19r-6,-17","w":110},"\u02dd":{"d":"131,-274r20,23r-66,52r-13,-14xm199,-274r21,23r-66,52r-13,-14","w":193},"\u02db":{"d":"19,38v6,-25,28,-44,67,-39v-12,10,-40,20,-42,34v-3,17,19,16,32,10r-5,23v-25,10,-59,1,-52,-28","w":112},"\u02c7":{"d":"136,-210r-56,-39r13,-18r50,23r60,-23r5,18","w":182},"\u2014":{"d":"25,-117r360,0r-8,35r-360,0","w":360},"\u00c6":{"d":"203,-90r28,-136r-27,0r-93,136r92,0xm184,0r10,-51r-108,0r-35,51r-57,0r185,-270r245,0r-9,44r-132,0r-14,69r123,0r-8,40r-124,0r-15,73r131,0r-9,44r-183,0","w":381},"\u00aa":{"d":"133,-157r3,-11v-23,23,-86,22,-74,-23v8,-29,24,-36,51,-36v11,0,29,0,32,10v2,-16,16,-35,-14,-35v-13,0,-21,0,-24,15r-31,0v8,-36,33,-35,59,-35v32,0,53,4,45,39r-17,76r-30,0xm112,-175v15,0,25,-2,29,-17v3,-13,-6,-15,-22,-15v-12,0,-23,0,-26,14v-4,17,4,18,19,18","w":158},"\u0141":{"d":"107,-146r-22,102r126,0r-9,44r-178,0r22,-103r-35,27r9,-41r34,-27r27,-126r52,0r-18,84r70,-54r-9,41","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"\u00d8":{"d":"331,-279r-9,41r-26,19v3,23,-4,48,-11,80v-24,112,-40,141,-149,141v-49,0,-76,1,-94,-25r-44,32r8,-39r26,-20v-3,-15,8,-59,14,-89v20,-94,31,-133,149,-133v34,0,73,0,92,26xm241,-177r-153,119v1,16,36,16,58,16v70,0,70,-17,87,-94xm87,-91r154,-120v-9,-16,-29,-17,-56,-17v-95,0,-78,74,-98,137","w":271},"\u0152":{"d":"140,-42v60,0,71,-9,82,-62r13,-62v12,-55,4,-62,-56,-62v-95,0,-74,64,-91,124v-17,57,-5,62,52,62xm300,-226r-15,69r125,0r-9,40r-125,0r-15,73r133,0r-10,44r-181,0v1,-9,7,-21,6,-29v-23,28,-52,31,-86,31v-86,0,-104,-25,-87,-106r16,-73v15,-72,53,-95,129,-95v27,0,65,3,74,33r5,-31r181,0r-10,44r-131,0","w":397},"\u00ba":{"d":"137,-272v45,0,53,10,43,57v-9,42,-18,60,-68,60v-45,0,-53,-10,-42,-60v9,-42,18,-57,67,-57xm132,-249v-23,0,-26,8,-31,34v-7,33,-7,36,16,36v24,0,27,-12,32,-36v6,-29,6,-34,-17,-34","w":158},"\u00e6":{"d":"212,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm118,-85v-23,0,-41,0,-47,27v-6,27,5,29,36,29v24,0,41,-2,47,-29v6,-26,-14,-27,-36,-27xm161,-94v6,-27,28,-66,-25,-66v-20,0,-36,2,-41,26r-46,0v12,-55,51,-57,94,-57v15,0,57,0,60,24v13,-23,48,-24,67,-24v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28r45,0v-13,59,-47,62,-101,62v-26,0,-57,-4,-63,-30v-16,29,-51,30,-82,30v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v23,0,46,0,52,22","w":331},"\u0131":{"d":"105,-189r-40,189r-45,0r40,-189r45,0","w":84},"\u0142":{"d":"104,-152r-32,152r-46,0r25,-115r-32,25r7,-32r31,-24r27,-124r45,0r-18,86r31,-24r-7,32","w":97},"\u00f8":{"d":"221,-150v-10,85,-15,152,-115,152v-24,0,-58,0,-70,-21r-37,27r6,-29r24,-18v-1,-18,3,-37,7,-56v16,-75,31,-96,110,-96v24,0,58,0,70,21r35,-24r-7,29xm114,-32v47,0,51,-48,59,-85r-96,71v1,15,24,14,37,14xm77,-71r97,-71v0,-15,-25,-15,-38,-15v-47,0,-52,46,-59,86","w":209},"\u0153":{"d":"136,-157v-39,0,-44,6,-56,63v-12,54,-8,62,29,62v39,0,45,-8,57,-62v13,-59,9,-63,-30,-63xm35,-94v14,-64,24,-97,109,-97v18,0,57,0,60,26v15,-24,47,-26,69,-26v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28r45,0v-13,59,-47,62,-101,62v-27,0,-51,-3,-58,-27v-18,27,-45,27,-71,27v-77,0,-83,-23,-68,-96xm215,-115r85,0v8,-39,3,-42,-34,-42v-39,0,-44,9,-51,42","w":335},"\u00df":{"d":"24,0r39,-185v14,-64,26,-87,105,-87v40,0,76,8,67,56v-6,30,-27,42,-53,49v47,3,46,37,39,78v-11,67,-57,108,-129,84r8,-37v36,25,68,-3,76,-47v9,-48,1,-64,-45,-61r7,-31v29,1,47,-2,55,-35v5,-21,-15,-25,-36,-25v-28,0,-38,7,-44,35r-44,206r-45,0","w":218},"\u00b9":{"d":"169,-272r-34,162r-35,0r29,-134r-51,42r-14,-21r63,-49r42,0","w":152},"\u00ac":{"d":"167,-44r16,-76r-139,0r7,-34r174,0r-23,110r-35,0","w":210},"\u00b5":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-20,30,-47,33,-84,30r-17,81r-46,0r58,-271r45,0r-25,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r23,-109r45,0","w":213},"\u2122":{"d":"392,-270r-31,145r-32,0r25,-117r-67,117r-19,0r-18,-117r-25,117r-32,0r31,-145r51,0r15,86r51,-86r51,0xm206,-270r-5,28r-45,0r-25,117r-35,0r25,-117r-44,0r6,-28r123,0","w":360},"\u00d0":{"d":"122,-226r-14,68r63,0r-9,39r-63,0r-15,75r85,0v60,-3,58,-76,73,-126v23,-78,-60,-51,-120,-56xm56,-158r24,-112r128,0v75,0,100,27,85,100v-18,85,-22,170,-133,170r-138,0r26,-119r-33,0r8,-39r33,0","w":271},"\u00bd":{"d":"346,-270r-229,270r-33,0r227,-270r35,0xm166,-270r-35,162r-34,0r29,-134r-51,42r-14,-21r62,-49r43,0xm369,-28r-6,28r-122,0v6,-48,21,-81,70,-80v30,-6,35,-2,41,-32v4,-21,-1,-24,-20,-24v-23,0,-28,1,-35,33r-34,0v8,-40,16,-59,75,-59v38,0,58,7,49,50v-9,43,-24,49,-66,55v-29,4,-36,5,-40,29r88,0","w":380},"\u00b1":{"d":"128,-189r35,0r-11,49r70,0r-7,34r-70,0r-10,49r-35,0r10,-49r-70,0r8,-34r70,0xm18,0r7,-35r174,0r-7,35r-174,0","w":210},"\u00de":{"d":"20,0r57,-270r52,0r-9,44r68,0v72,0,89,16,76,93v-17,102,-83,88,-183,89r-9,44r-52,0xm91,-88v57,-4,118,17,121,-45v25,-67,-51,-45,-101,-49","w":246},"\u00bc":{"d":"378,-162r-22,102r14,0r-5,27r-14,0r-7,33r-34,0r7,-33r-88,0r7,-35r92,-94r50,0xm322,-60v4,-25,13,-53,15,-76r-75,76r60,0xm351,-270r-229,270r-33,0r228,-270r34,0xm171,-270r-34,162r-34,0r28,-134r-51,42r-13,-21r62,-49r42,0","w":380},"\u00f7":{"d":"36,-85r7,-34r174,0r-7,34r-174,0xm87,-15r9,-42r43,0r-9,42r-43,0xm115,-147r9,-42r43,0r-9,42r-43,0","w":210},"\u00a6":{"d":"102,-280r33,0r0,145r-33,0r0,-145xm102,-72r33,0r0,144r-33,0r0,-144","w":178},"\u00b0":{"d":"172,-218v-5,62,-121,77,-108,0v6,-61,121,-77,108,0xm112,-189v33,4,54,-56,12,-58v-33,-4,-53,57,-12,58","w":144},"\u00fe":{"d":"119,-32v31,0,43,-9,53,-57v9,-43,14,-68,-27,-68v-46,0,-50,23,-59,68v-9,40,-6,57,33,57xm4,82r75,-352r45,0r-22,109v15,-25,37,-30,64,-30v70,0,63,44,51,102v-12,55,-27,91,-92,91v-25,0,-44,-8,-53,-27r-22,107r-46,0","w":214},"\u00be":{"d":"383,-162r-22,102r14,0r-6,27r-14,0r-7,33r-34,0r7,-33r-88,0r7,-35r92,-94r51,0xm327,-60v4,-25,13,-53,15,-76r-76,76r61,0xm359,-270r-229,270r-33,0r228,-270r34,0xm100,-178r7,-28v26,0,42,5,46,-24v2,-13,-3,-14,-28,-14v-22,0,-26,2,-31,25r-34,0v10,-47,28,-53,71,-53v31,0,64,0,56,42v-4,20,-16,34,-37,39v22,2,28,14,24,35v-10,45,-37,48,-78,48v-41,0,-61,-1,-50,-55r34,0v-5,27,-4,27,22,27v27,0,32,-1,38,-20v8,-27,-18,-22,-40,-22","w":380},"\u00b2":{"d":"164,-138r-6,28r-122,0v6,-47,20,-81,69,-80v30,-6,36,-2,42,-32v4,-21,-1,-24,-20,-24v-23,0,-28,1,-35,33r-34,0v8,-40,16,-59,75,-59v38,0,57,7,48,50v-9,43,-23,49,-65,55v-29,4,-36,5,-40,29r88,0","w":152},"\u00ae":{"d":"142,2v-76,0,-124,-61,-108,-137v16,-76,90,-137,166,-137v75,0,124,61,108,137v-16,76,-91,137,-166,137xm147,-24v62,0,122,-49,135,-111v13,-62,-26,-111,-88,-111v-62,0,-121,49,-134,111v-13,62,25,111,87,111xm201,-123r22,63r-33,0r-20,-63r-29,0r-14,63r-28,0r31,-148v52,5,131,-19,120,41v-7,32,-23,42,-49,44xm145,-145v32,-3,72,11,76,-22v4,-31,-39,-17,-67,-20","w":284},"\u2212":{"d":"36,-85r7,-34r174,0r-7,34r-174,0","w":210},"\u00f0":{"d":"138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm121,-261r38,-11v11,7,19,15,26,23r49,-14r15,20r-49,14v23,39,25,79,15,127v-17,77,-32,104,-111,104v-79,0,-83,-23,-68,-96v13,-60,28,-98,91,-98v14,0,35,2,48,16v-2,-16,-7,-30,-14,-42r-49,14r-16,-20r50,-14v-7,-8,-13,-15,-25,-23","w":209},"\u00d7":{"d":"132,-126r76,-63r19,24r-76,63r50,63r-30,24r-50,-62r-75,62r-19,-25r75,-62r-49,-62r30,-25","w":210},"\u00b3":{"d":"100,-178r7,-28v26,0,42,5,46,-24v2,-13,-3,-14,-28,-14v-22,0,-26,2,-31,25r-34,0v10,-47,28,-53,71,-53v31,0,64,0,56,42v-4,20,-16,34,-37,39v22,2,28,14,24,35v-10,45,-37,48,-78,48v-41,0,-61,-1,-50,-55r34,0v-5,27,-4,27,22,27v27,0,32,-1,38,-20v8,-27,-18,-22,-40,-22","w":152},"\u00a9":{"d":"142,2v-76,0,-124,-61,-108,-137v16,-76,90,-137,166,-137v76,0,124,61,108,137v-16,76,-90,137,-166,137xm147,-24v61,0,122,-49,135,-111v13,-62,-27,-111,-88,-111v-62,0,-122,49,-135,111v-13,62,26,111,88,111xm204,-111r31,0v-11,33,-43,54,-75,54v-46,0,-68,-35,-59,-79v10,-46,45,-80,92,-80v33,0,55,20,53,53r-30,0v1,-17,-12,-27,-29,-27v-30,0,-49,26,-55,53v-6,26,5,55,34,55v17,0,33,-12,38,-29","w":284},"\u00c1":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm233,-348r9,29r-76,31r-6,-19","w":255},"\u00c2":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm202,-348r56,39r-13,18r-51,-23r-60,23r-4,-18","w":255},"\u00c4":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm144,-331r35,0r-7,31r-35,0xm217,-331r36,0r-7,31r-36,0","w":255},"\u00c0":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm185,-348r55,41r-14,19r-63,-31","w":255},"\u00c5":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm164,-324v4,-37,74,-47,66,0v-4,37,-74,47,-66,0xm201,-341v-18,-2,-32,32,-8,34v18,2,32,-32,8,-34","w":255},"\u00c3":{"d":"197,-51r-117,0r-27,51r-54,0r147,-270r76,0r34,270r-52,0xm194,-90r-18,-140r-76,140r94,0xm246,-334r20,12v-13,17,-28,31,-49,31v-30,0,-54,-38,-73,-5r-21,-12v13,-16,28,-31,48,-31v29,0,55,39,75,5","w":255},"\u00c7":{"d":"137,4r11,23r-51,19r-6,-17xm274,-180r-52,0v9,-35,8,-48,-47,-48v-52,0,-64,9,-75,62r-12,59v-11,54,-7,65,47,65v49,0,67,-11,72,-55r52,0v-9,86,-60,99,-133,99v-96,0,-106,-27,-90,-106r13,-62v18,-86,55,-106,135,-106v67,0,106,1,93,78","w":250},"\u00c9":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm216,-348r10,29r-76,31r-6,-19","w":222},"\u00ca":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm186,-348r56,39r-13,18r-51,-23r-60,23r-5,-18","w":222},"\u00cb":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm127,-331r36,0r-7,31r-35,0xm201,-331r36,0r-7,31r-36,0","w":222},"\u00c8":{"d":"120,-226r-14,68r126,0r-9,42r-127,0r-15,72r135,0r-10,44r-186,0r57,-270r185,0r-9,44r-133,0xm162,-348r54,41r-13,19r-64,-31","w":222},"\u00cd":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm148,-348r9,29r-76,31r-6,-19","w":99},"\u00ce":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm124,-348r56,39r-13,18r-51,-23r-60,23r-5,-18","w":99},"\u00cf":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm58,-331r36,0r-7,31r-36,0xm132,-331r35,0r-6,31r-36,0","w":99},"\u00cc":{"d":"133,-270r-57,270r-52,0r57,-270r52,0xm100,-348r55,41r-14,19r-63,-31","w":99},"\u00d1":{"d":"236,-44r43,-226r52,0r-57,270r-86,0r-67,-226r-2,0r-43,226r-52,0r57,-270r86,0r67,226r2,0xm267,-334r20,12v-13,17,-27,31,-48,31v-31,0,-54,-38,-74,-5r-20,-12v13,-16,28,-31,48,-31v29,0,55,39,74,5","w":297},"\u00d3":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm226,-348r10,29r-76,31r-6,-19","w":257},"\u00d4":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm203,-348r56,39r-13,18r-51,-23r-60,23r-4,-18","w":257},"\u00d6":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm145,-331r35,0r-6,31r-36,0xm218,-331r36,0r-7,31r-36,0","w":257},"\u00d2":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm179,-348r55,41r-14,19r-63,-31","w":257},"\u00d5":{"d":"186,-272v78,0,113,11,94,98r-15,73v-18,86,-55,103,-137,103v-84,0,-111,-14,-92,-103r15,-73v18,-84,49,-98,135,-98xm177,-228v-90,0,-73,69,-90,127v-15,53,-2,59,50,59v47,0,65,-7,76,-59r15,-73v12,-51,-5,-54,-51,-54xm247,-334r20,12v-13,17,-27,31,-48,31v-30,0,-55,-38,-74,-5r-20,-12v13,-16,27,-31,47,-31v29,0,56,40,75,5","w":257},"\u0160":{"d":"30,-86r52,0v-10,36,-5,46,52,46v47,0,55,-9,61,-40v8,-39,-13,-34,-53,-36v-57,-4,-103,-2,-87,-80v16,-74,63,-76,128,-76v59,0,100,9,83,81r-52,0v9,-30,1,-39,-40,-39v-51,0,-61,5,-67,34v-7,33,-1,35,51,38v82,5,104,9,89,78v-16,76,-53,82,-122,82v-60,0,-114,2,-98,-75xm183,-291r-56,-39r13,-18r50,23r61,-23r5,18","w":242},"\u00da":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm234,-348r9,29r-76,31r-6,-19","w":271},"\u00db":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm210,-348r56,39r-13,18r-51,-23r-60,23r-4,-18","w":271},"\u00dc":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm152,-331r36,0r-7,31r-36,0xm225,-331r36,0r-7,31r-35,0","w":271},"\u00d9":{"d":"253,-270r52,0r-40,192v-16,75,-64,80,-130,80v-63,0,-111,-4,-95,-80r41,-192r51,0r-40,192v-6,28,2,36,52,36v48,0,63,-7,69,-36xm186,-348r55,41r-14,19r-63,-31","w":271},"\u00dd":{"d":"302,-270r-135,166r-22,104r-51,0r22,-104r-63,-166r59,0r41,115r90,-115r59,0xm225,-348r10,29r-77,31r-5,-19","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u0178":{"d":"302,-270r-135,166r-22,104r-51,0r22,-104r-63,-166r59,0r41,115r90,-115r59,0xm137,-331r35,0r-6,31r-36,0xm210,-331r36,0r-7,31r-36,0","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u017d":{"d":"280,-270r-10,44r-188,182r152,0r-10,44r-215,0r9,-44r187,-180r0,-2r-142,0r10,-44r207,0xm179,-291r-56,-39r12,-18r51,23r60,-23r5,18","w":233},"\u00e1":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm194,-267r9,29r-76,31r-6,-19","w":212},"\u00e2":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm163,-267r56,39r-13,18r-50,-23r-61,23r-4,-18","w":212},"\u00e4":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm105,-250r35,0r-6,31r-36,0xm178,-250r36,0r-7,31r-36,0","w":212},"\u00e0":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm139,-267r55,41r-14,19r-63,-31","w":212},"\u00e5":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm123,-236v4,-37,74,-47,66,0v-4,37,-74,47,-66,0xm160,-253v-19,-2,-31,33,-7,34v18,2,30,-33,7,-34","w":212},"\u00e3":{"d":"120,-85v-23,0,-41,0,-47,27v-6,27,4,29,35,29v24,0,42,-2,48,-29v6,-26,-14,-27,-36,-27xm144,0v1,-8,7,-18,6,-24v-14,25,-42,26,-64,26v-43,0,-69,-9,-58,-60v10,-45,36,-58,83,-58v24,-1,45,3,53,22v4,-30,27,-66,-26,-66v-20,0,-37,2,-42,26r-45,0v12,-55,50,-57,93,-57v60,0,84,10,71,73r-26,118r-45,0xm207,-253r20,12v-13,17,-27,31,-48,31v-31,0,-54,-38,-74,-5r-20,-12v13,-16,27,-31,47,-31v29,0,56,40,75,5","w":212},"\u00e7":{"d":"111,4r11,23r-51,19r-6,-17xm157,-72r46,0v-13,62,-38,74,-102,74v-69,0,-80,-20,-64,-96v14,-66,31,-97,105,-97v56,0,84,8,71,68r-45,0v6,-29,-2,-34,-34,-34v-39,0,-42,14,-52,63v-10,47,-14,62,26,62v37,0,42,-7,49,-40","w":198},"\u00e9":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm190,-267r10,29r-76,31r-6,-19","w":205},"\u00ea":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm159,-267r56,39r-13,18r-50,-23r-60,23r-5,-18","w":205},"\u00eb":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm102,-250r35,0r-7,31r-35,0xm175,-250r36,0r-7,31r-36,0","w":205},"\u00e8":{"d":"158,-60r45,0v-13,59,-47,62,-101,62v-72,0,-82,-23,-67,-96v14,-68,32,-97,108,-97v78,0,83,23,66,105r-130,0v-9,41,-11,54,30,54v25,0,43,0,49,-28xm85,-115r85,0v8,-39,2,-42,-35,-42v-39,0,-43,9,-50,42xm136,-267r54,41r-13,19r-64,-31","w":205},"\u00ed":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm123,-267r10,29r-76,31r-6,-19","w":84},"\u00ee":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm99,-267r56,39r-13,18r-50,-23r-60,23r-5,-18","w":84},"\u00ef":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm41,-250r36,0r-7,31r-35,0xm115,-250r35,0r-6,31r-36,0","w":84},"\u00ec":{"d":"105,-189r-40,189r-45,0r40,-189r45,0xm76,-267r54,41r-13,19r-64,-31","w":84},"\u00f1":{"d":"63,-189r45,0v-1,9,-6,21,-5,28v16,-28,39,-30,66,-30v50,0,61,20,51,66r-27,125r-45,0r26,-120v6,-27,1,-37,-28,-37v-40,0,-49,19,-56,53r-22,104r-46,0xm209,-253r20,12v-13,17,-28,31,-49,31v-30,0,-53,-38,-73,-5r-21,-12v13,-16,28,-31,48,-31v29,0,55,39,75,5","w":215},"\u00f3":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm185,-267r10,29r-76,31r-6,-19","w":209},"\u00f4":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm162,-267r55,39r-13,18r-50,-23r-60,23r-5,-18","w":209},"\u00f6":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm104,-250r35,0r-7,31r-35,0xm177,-250r36,0r-7,31r-36,0","w":209},"\u00f2":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm138,-267r55,41r-14,19r-63,-31","w":209},"\u00f5":{"d":"145,-191v79,0,84,24,69,97v-15,73,-31,96,-110,96v-79,0,-83,-23,-68,-96v15,-73,30,-97,109,-97xm138,-157v-40,0,-46,12,-57,63v-10,50,-9,62,31,62v40,0,46,-12,56,-62v11,-51,10,-63,-30,-63xm206,-253r20,12v-13,17,-28,31,-49,31v-30,0,-53,-38,-73,-5r-20,-12v13,-16,27,-31,47,-31v29,0,56,40,75,5","w":209},"\u0161":{"d":"212,-138r-46,0v5,-23,-7,-22,-31,-22v-24,0,-41,0,-46,25v-4,19,1,19,40,21v44,2,85,-1,72,60v-11,51,-52,56,-100,56v-51,0,-86,1,-73,-61r45,0v-5,27,1,30,34,30v27,0,44,1,49,-25v4,-17,4,-25,-42,-26v-69,-1,-79,-10,-69,-58v11,-52,48,-53,97,-53v37,0,81,0,70,53xm145,-210r-56,-39r13,-18r50,23r60,-23r5,18","w":200},"\u00fa":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm192,-267r9,29r-76,31r-6,-19","w":213},"\u00fb":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm157,-267r55,39r-13,18r-50,-23r-60,23r-5,-18","w":213},"\u00fc":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm105,-250r36,0r-7,31r-35,0xm179,-250r36,0r-7,31r-36,0","w":213},"\u00f9":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-27,46,-135,48,-119,-23r30,-137r45,0r-26,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r24,-109r45,0xm126,-267r54,41r-14,19r-63,-31","w":213},"\u00fd":{"d":"217,-189r-91,197v-21,48,-44,85,-108,74r8,-34v34,7,46,-24,56,-48r-22,0r-21,-189r46,0r15,161r71,-161r46,0xm172,-267r10,29r-77,31r-5,-19","w":174,"k":{",":22,".":22}},"\u00ff":{"d":"217,-189r-91,197v-21,48,-44,85,-108,74r8,-34v34,7,46,-24,56,-48r-22,0r-21,-189r46,0r15,161r71,-161r46,0xm86,-250r36,0r-7,31r-36,0xm159,-250r36,0r-7,31r-35,0","w":174,"k":{",":22,".":22}},"\u017e":{"d":"195,-151r-127,116r102,0r-7,35r-155,0r9,-39r125,-115r-93,0r8,-35r146,0xm130,-210r-55,-39r12,-18r51,23r60,-23r5,18","w":171},"\u2126":{"d":"27,-33v21,-1,47,2,66,-1v-26,-20,-47,-58,-36,-110v15,-70,84,-125,165,-125v85,0,124,61,111,124v-11,54,-51,90,-84,112r67,0r-7,33r-117,0r5,-25v38,-18,77,-54,90,-113v10,-48,-12,-97,-71,-97v-56,0,-104,43,-116,99v-12,54,12,94,43,111r-6,25r-117,0","w":329},"\u03bc":{"d":"191,0r-44,0v1,-9,6,-22,5,-29v-20,30,-47,33,-84,30r-17,81r-46,0r58,-271r45,0r-25,119v-6,27,-5,38,24,38v35,0,49,-15,56,-48r23,-109r45,0","w":213},"\u03c0":{"d":"285,-163r-33,0v-9,46,-29,117,-29,163r-44,0v-5,-39,21,-120,28,-163r-72,0v-12,48,-43,131,-65,163r-44,0v23,-39,52,-116,64,-163v-24,0,-38,2,-49,5r0,-27v55,-23,177,-8,256,-12","w":262},"\u20ac":{"d":"254,-84r-13,60v-23,29,-66,26,-117,26v-71,0,-83,-25,-70,-95r-31,0r17,-32r20,0r4,-19r-30,0r17,-32r21,0v21,-87,60,-96,145,-96v46,0,64,6,77,30r-25,50v-18,-44,-43,-36,-85,-36v-44,0,-56,8,-66,52r142,0r-16,32r-133,0r-4,19r127,0r-17,32r-117,0v-16,53,20,52,69,51v36,0,54,-10,85,-42"},"\u2113":{"d":"211,-72r15,18v-31,39,-67,55,-102,55v-48,0,-67,-32,-61,-68v-9,5,-18,12,-27,17r-8,-23v14,-9,27,-17,40,-26r21,-96v15,-73,55,-98,94,-98v42,0,55,30,47,65v-10,49,-54,92,-121,139v-10,31,5,56,32,56v27,0,54,-20,70,-39xm133,-203r-16,76v42,-33,74,-67,81,-99v5,-22,1,-38,-19,-38v-15,0,-36,15,-46,61","w":225},"\u212e":{"d":"127,-55v37,67,152,61,194,4r22,0v-27,32,-71,53,-120,53v-84,0,-152,-61,-152,-137v0,-76,68,-137,152,-137v86,1,154,61,152,141r-248,1r0,75xm320,-216v-37,-61,-144,-62,-190,-8v-6,21,-5,62,-1,85r191,-2r0,-75","w":388},"\u2202":{"d":"96,-247r-7,-29v15,-9,44,-23,84,-23v64,0,107,54,88,146v-18,84,-78,154,-155,154v-63,0,-79,-51,-71,-90v12,-57,62,-97,115,-97v42,0,59,30,66,40v17,-60,-2,-120,-55,-120v-29,0,-52,11,-65,19xm79,-89v-7,31,8,57,39,57v38,0,71,-41,85,-80v-2,-15,-18,-41,-50,-41v-33,0,-66,28,-74,64","w":248},"\u220f":{"d":"361,-227r-49,0r0,263r-43,0r0,-263r-111,0r0,263r-44,0r0,-263r-48,0r0,-37r295,0r0,37","w":370},"\u2211":{"d":"296,36r-231,0r0,-25r113,-124r-107,-123r0,-28r218,0r0,36v-51,2,-110,-4,-157,2r97,108r-104,117r171,0r0,37","w":304},"\u2219":{"d":"113,-127r-10,50r-46,0r11,-50r45,0","w":126},"\u221a":{"d":"318,-314r-100,371r-37,0r-69,-171r-33,12r-8,-22r67,-27r62,165r86,-328r32,0","w":312},"\u221e":{"d":"341,-109v0,42,-33,68,-66,68v-24,0,-47,-14,-76,-48v-22,26,-44,48,-77,48v-34,0,-64,-27,-64,-66v0,-40,29,-68,67,-68v31,0,55,21,77,48v20,-22,40,-48,76,-48v36,0,63,27,63,66xm83,-107v0,23,17,42,43,42v25,0,44,-24,60,-42v-17,-22,-35,-45,-63,-45v-24,0,-40,20,-40,45xm275,-152v-26,0,-47,28,-61,43v26,31,42,44,63,44v25,0,38,-22,38,-42v0,-27,-17,-45,-40,-45","w":361},"\u222b":{"d":"116,-225v0,-72,33,-114,94,-94r-6,27v-41,-14,-52,19,-52,71v0,60,6,121,6,185v0,76,-34,113,-96,93r6,-29v38,13,54,-8,54,-65v0,-65,-6,-126,-6,-188","w":213},"\u2248":{"d":"117,-174v37,0,55,32,87,31v17,0,30,-10,43,-30r15,16v-14,24,-33,40,-57,40v-31,0,-57,-31,-90,-31v-20,0,-32,15,-44,30r-16,-16v13,-23,37,-40,62,-40xm117,-99v40,0,52,30,87,30v18,0,30,-10,43,-29r15,16v-14,23,-33,38,-58,38v-30,0,-59,-29,-89,-30v-20,0,-32,14,-44,30r-16,-16v13,-23,37,-39,62,-39","w":280},"\u2260":{"d":"221,-201r-18,39r65,0r0,26r-76,0r-27,58r103,0r0,25r-115,0r-23,49r-20,-9r19,-40r-63,0r0,-25r74,0r27,-58r-101,0r0,-26r112,0r22,-48","w":289},"\u2264":{"d":"274,-37r-198,-91r0,-27r198,-90r0,29r-171,75r171,75r0,29xm275,4r-202,0r0,-25r202,0r0,25","w":296},"\u2265":{"d":"76,-245r198,91r0,27r-198,90r0,-29r171,-75r-171,-75r0,-29xm274,4r-200,0r0,-25r200,0r0,25","w":295},"\u25ca":{"d":"291,-132r-89,152r-34,0r-88,-152r89,-151r34,0xm253,-131r-68,-120r-67,119r68,120v19,-42,45,-79,67,-119","w":313},"\u00a0":{"w":126},"\u00ad":{"d":"25,-117r96,0r-8,35r-96,0","w":95},"\u02c9":{"d":"80,-248r99,0r-5,27r-100,0","w":153},"\u03a9":{"d":"27,-33v21,-1,47,2,66,-1v-26,-20,-47,-58,-36,-110v15,-70,84,-125,165,-125v85,0,124,61,111,124v-11,54,-51,90,-84,112r67,0r-7,33r-117,0r5,-25v38,-18,77,-54,90,-113v10,-48,-12,-97,-71,-97v-56,0,-104,43,-116,99v-12,54,12,94,43,111r-6,25r-117,0","w":329},"\u2215":{"d":"261,-270r-228,270r-34,0r228,-270r34,0","w":203},"\u2206":{"d":"12,0r5,-25r161,-246r53,0r56,246r-6,25r-269,0xm66,-33r172,0r-44,-201","w":293},"\u2010":{"d":"25,-117r96,0r-8,35r-96,0","w":95}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright Hans Reichel, 1996. Published by FontShop International FontFont
 * release 17
 * 
 * Manufacturer:
 * Hans Reichel, . Published by FontShop International FontFont release
 */
Cufon.registerFont({"w":190,"face":{"font-family":"Dax","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 6 0 0 2 0 4","ascent":"283","descent":"-77","x-height":"4","bbox":"-40 -324 406 82","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":99},"!":{"d":"56,-40v11,0,21,9,21,21v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21xm68,-81r-24,0r-7,-167r38,0","w":104},"\"":{"d":"48,-153r-16,0r-7,-90v7,-10,23,-11,30,0xm106,-153r-16,0r-8,-90v8,-10,24,-11,31,0","w":138},"#":{"d":"78,-155r-10,56r43,0r10,-56r-43,0xm140,-155r-11,56r38,0r0,17r-41,0r-14,82r-18,0r14,-82r-42,0r-15,82r-19,0r15,-82r-37,0r0,-17r40,0r10,-56r-37,0r0,-16r40,0r13,-77r19,0r-13,77r42,0r13,-77r19,0r-13,77r37,0r0,16r-40,0"},"$":{"d":"142,-219v-42,-33,-112,17,-68,64v33,23,86,30,85,85v-1,42,-26,65,-63,72r3,44r-21,0r3,-43v-24,-1,-38,-5,-53,-13r8,-22v31,22,94,12,90,-36v-6,-61,-101,-42,-96,-114v2,-40,24,-64,61,-68r-4,-42r21,0r-4,41v19,1,33,6,45,13"},"%":{"d":"73,-99v34,0,26,-55,26,-92v0,-22,-5,-46,-26,-47v-32,7,-28,57,-26,94v1,20,5,45,26,45xm234,-13v34,0,26,-56,26,-92v0,-21,-6,-45,-26,-46v-32,7,-28,57,-26,93v1,20,5,45,26,45xm73,-252v42,0,49,43,49,85v0,42,-7,85,-49,85v-41,0,-48,-43,-48,-85v0,-42,7,-85,48,-85xm120,3r-17,-5r84,-248r17,4xm234,-165v43,0,49,43,49,84v0,42,-7,85,-49,85v-42,0,-48,-43,-48,-85v0,-41,6,-84,48,-84","w":307},"&":{"d":"53,-69v-3,47,53,62,93,46r0,-118v-45,12,-90,20,-93,72xm67,-194v6,68,107,32,141,12r9,20v-9,4,-28,12,-40,14r0,138v-53,27,-158,17,-158,-57v0,-42,33,-61,65,-74v-26,-8,-49,-23,-49,-54v-2,-57,76,-68,118,-43r-9,18v-24,-17,-81,-13,-77,26","w":222},"'":{"d":"48,-153r-16,0r-7,-90v7,-11,24,-10,31,0","w":80},"(":{"d":"59,-103v0,73,27,129,59,175r-15,9v-73,-67,-109,-224,-35,-320v12,-15,21,-31,35,-48r15,9v-32,46,-59,102,-59,175","w":130},")":{"d":"28,-287v56,60,105,171,59,274v-15,34,-35,65,-59,94r-16,-9v32,-46,60,-101,60,-175v0,-74,-28,-129,-60,-175","w":130},"*":{"d":"48,-210v18,0,20,32,0,31v-8,1,-15,-7,-15,-15v0,-8,7,-16,15,-16xm34,-258v8,0,15,8,15,15v0,7,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15xm104,-209v8,0,15,8,15,15v0,7,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15xm76,-242v7,0,13,6,13,13v0,7,-6,13,-13,13v-7,0,-13,-6,-13,-13v0,-7,6,-13,13,-13xm76,-288v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15xm118,-258v7,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,8,-15,15,-15","w":151},"+":{"d":"106,-109r0,63r-22,0r0,-63r-58,0r0,-22r58,0r0,-63r22,0r0,63r58,0r0,22r-58,0"},",":{"d":"23,61r-19,0r31,-89v5,-10,32,-14,35,0","w":94},"-":{"d":"21,-109r0,-25r82,0r0,25r-82,0","w":123,"k":{"\u00f6":-5,"\u00e4":5,"\u00d6":-7,"\u00c4":13,"z":14,"y":4,"x":12,"w":3,"v":4,"t":4,"s":-4,"q":-5,"o":-5,"g":-5,"f":4,"e":-5,"d":-5,"c":-5,"a":5,"Z":15,"Y":22,"X":18,"W":6,"V":10,"T":22,"S":2,"Q":-7,"O":-7,"G":-7,"C":-7,"A":13,"9":-11,"8":1,"7":26,"6":-16,"3":23,"2":32,"1":28,"0":-18}},"\u00ad":{"d":"21,-109r0,-25r82,0r0,25r-82,0","w":123},".":{"d":"45,-40v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21","w":90},"\/":{"d":"26,82r-20,-10r170,-359r21,11","w":202},"0":{"d":"95,-18v43,-5,45,-61,45,-106v0,-46,-2,-103,-45,-108v-43,5,-45,62,-45,108v0,46,2,101,45,106xm95,-251v61,0,75,64,75,127v0,63,-13,128,-75,128v-62,0,-75,-65,-75,-128v0,-63,14,-127,75,-127","k":{"-":-18,",":4}},"1":{"d":"31,-210v37,-4,62,-17,77,-38r22,0r0,248r-32,0r0,-208v-16,9,-42,15,-64,18","k":{"-":21,",":4}},"2":{"d":"22,-238v47,-26,145,-15,137,52v-8,69,-67,108,-97,160r100,0r0,26r-148,0r100,-143v21,-33,14,-90,-40,-85v-19,2,-31,5,-44,11","k":{"-":7,",":4}},"3":{"d":"105,-139v28,12,57,25,57,67v0,74,-88,91,-146,63r9,-22v35,22,107,12,103,-41v-3,-39,-31,-53,-71,-52r0,-18v33,-1,62,-19,63,-50v2,-44,-60,-40,-89,-27r-9,-19v42,-23,133,-19,130,43v-1,31,-24,48,-47,56","k":{",":4}},"4":{"d":"122,-215r-80,140r79,0xm150,-57r0,57r-29,0r0,-57r-101,0r0,-20r100,-171r30,0r0,173r20,0r0,18r-20,0","k":{",":4}},"5":{"d":"131,-71v-1,-51,-45,-64,-99,-54r10,-123r116,0r0,27r-93,0r-6,76v63,-7,103,15,106,73v2,71,-86,92,-145,63r8,-22v36,21,105,13,103,-40","k":{",":4}},"6":{"d":"97,-18v31,0,41,-24,43,-56v3,-49,-42,-67,-86,-50v-9,44,-5,106,43,106xm58,-141v55,-20,116,8,113,69v-2,46,-28,75,-75,76v-107,2,-81,-173,-27,-213v21,-16,44,-34,72,-41r8,21v-43,15,-76,43,-91,88","k":{"-":-11,",":4}},"7":{"d":"176,-248r-86,216v-4,13,-7,23,-9,32r-40,0r97,-221r-115,0r0,-27r153,0","k":{"-":22,",":4}},"8":{"d":"95,-17v47,4,61,-63,23,-86v-7,-4,-14,-9,-24,-15v-24,15,-46,24,-46,59v0,26,20,40,47,42xm96,-141v20,-13,40,-21,40,-52v0,-24,-17,-38,-41,-39v-43,-3,-53,61,-19,78v5,4,12,8,20,13xm116,-130v27,17,54,31,54,71v0,43,-33,63,-75,63v-41,0,-75,-19,-75,-62v0,-39,22,-52,54,-71v-27,-17,-46,-28,-46,-63v0,-39,28,-59,67,-59v38,0,66,20,67,58v1,36,-24,47,-46,63","k":{"-":1,",":4}},"9":{"d":"49,-173v-3,48,43,67,87,50v8,-45,5,-106,-43,-106v-32,1,-42,25,-44,56xm94,-250v107,-2,82,173,27,212v-22,16,-44,35,-72,42r-8,-21v43,-15,76,-43,91,-88v-55,20,-115,-8,-113,-69v3,-46,27,-75,75,-76","k":{"-":-16,",":4}},":":{"d":"45,-40v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21xm45,-151v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21","w":90},";":{"d":"23,61r-19,0r31,-89v5,-10,32,-16,35,0xm49,-151v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-10,-21,-21v0,-11,9,-21,21,-21","w":94},"\u037e":{"d":"23,61r-19,0r31,-89v5,-10,32,-16,35,0xm49,-151v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-10,-21,-21v0,-11,9,-21,21,-21","w":94},"<":{"d":"26,-111r0,-21r138,-61r0,24r-112,48r112,47r0,24"},"=":{"d":"26,-77r0,-22r138,0r0,22r-138,0xm26,-141r0,-22r138,0r0,22r-138,0"},">":{"d":"26,-50r0,-24r112,-47r-112,-48r0,-24r138,61r0,21"},"?":{"d":"69,-40v12,0,21,9,21,21v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21xm15,-237v46,-34,151,-3,116,67v-9,17,-26,31,-46,36r-4,53r-24,0r-5,-63v26,-6,49,-17,52,-46v4,-41,-53,-45,-80,-29","w":141},"@":{"d":"138,-39v39,-2,55,-44,55,-82v0,-24,-11,-43,-33,-43v-38,0,-54,44,-54,83v0,23,7,44,32,42xm71,-200v62,-69,226,-71,218,51v-5,61,-23,116,-79,126v-19,-1,-25,-13,-26,-34v-12,21,-26,33,-55,33v-32,0,-43,-26,-43,-56v0,-48,23,-95,72,-98v24,-2,36,17,42,34r5,-28r18,0v-7,36,-21,70,-21,110v0,16,1,23,15,24v41,-12,57,-61,57,-111v0,-56,-33,-90,-90,-90v-91,0,-145,69,-145,159v0,75,42,115,118,116v59,1,90,-23,119,-53r8,9v-29,33,-66,53,-127,57v-138,10,-162,-164,-86,-249","w":313},"A":{"d":"141,-94r-37,-124v-9,43,-26,82,-37,124r74,0xm170,0r-24,-74r-85,0r-24,74r-30,0r84,-248r29,0r84,248r-34,0","w":210,"k":{"\u00c7":4,"y":9,"w":9,"v":9,"t":3,"s":-4,"j":-9,"f":1,"a":-7,"Y":18,"W":12,"V":12,"U":4,"T":17,"S":-3,"Q":4,"O":4,"J":-7,"G":4,"C":4,":":-17,".":-17,"-":13,",":-16}},"B":{"d":"59,-23v40,13,93,3,93,-44v0,-49,-39,-57,-93,-55r0,99xm59,-139v47,1,85,-4,85,-48v0,-43,-48,-53,-85,-40r0,88xm127,-132v29,10,57,27,58,65v4,76,-102,83,-157,57r0,-228v48,-25,151,-19,148,49v-1,33,-22,51,-49,57","w":202,"k":{"\u00c2":-1,"\u0152":2,"\u00e6":-4,"\u00c6":-5,"\u00e5":-4,"\u00e4":-4,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"\u00d6":2,"\u00c5":-1,"\u00c4":-1,"j":-4,"a":-4,"Y":5,"W":5,"V":5,"T":7,"Q":2,"O":2,"G":2,"C":2,"A":-1,":":-1,".":3,"-":4,",":6}},"C":{"d":"54,-124v-3,65,38,126,98,93r9,21v-12,8,-29,15,-49,14v-125,-2,-124,-253,0,-255v22,-1,37,5,49,13r-8,20v-9,-5,-20,-11,-35,-10v-51,3,-61,51,-64,104","w":172,"k":{"\u0153":6,"\u0152":10,"\u00f6":6,"\u00f4":6,"\u00f2":6,"\u00f3":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"y":4,"u":4,"o":6,"e":6,"Q":10,"O":10,"G":10,"C":10,":":-12,".":-12,"-":22,",":-9}},"D":{"d":"60,-24v70,18,101,-27,101,-103v0,-73,-33,-118,-101,-98r0,201xm92,-251v73,2,103,51,103,125v0,75,-28,128,-102,130v-25,1,-50,-6,-65,-14r0,-228v15,-8,38,-14,64,-13","w":214,"k":{"\u00c6":1,"\u00c5":4,"\u00c4":4,"Z":5,"Y":7,"W":4,"V":4,"T":11,"M":3,"A":4,":":-7,".":14,"-":-7,",":22}},"E":{"d":"28,0r0,-248r115,0r0,23r-82,0r0,86r73,0r0,22r-73,0r0,95r82,0r0,22r-115,0","w":159,"k":{"\u2019":-4,"y":3,"x":4,"w":3,"v":3,"q":4,"o":4,"j":-7,"g":4,"e":4,"d":4,"c":4,"T":4,"Q":4,"O":4,"J":-5,"G":4,"C":4,"A":7,":":-10,".":-10,",":-9}},"F":{"d":"61,-225r0,86r73,0r0,22r-73,0r0,117r-33,0r0,-248r114,0r0,23r-81,0","w":156,"k":{"\u0153":6,"\u0152":4,"\u00f8":6,"\u00e6":11,"\u00d8":4,"\u00c6":21,"\u00fc":4,"\u00f6":6,"\u00f4":6,"\u00f2":6,"\u00f3":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"\u00e5":11,"\u00e4":11,"\u00e0":11,"\u00e1":11,"\u00d6":4,"\u00c5":18,"\u00c4":18,"u":4,"r":4,"o":6,"l":-1,"e":6,"a":11,"Z":5,"O":4,"M":7,"G":4,"C":4,"A":18,".":41,",":48}},"G":{"d":"54,-123v0,67,36,121,100,98r0,-93r-42,0r0,-21r74,0r0,129v-18,10,-33,14,-63,14v-72,0,-101,-55,-104,-130v-4,-94,76,-152,162,-112r-9,20v-63,-30,-118,12,-118,95","w":211,"k":{"y":4,"Y":6,"W":5,"V":5,"T":7}},"H":{"d":"154,0r0,-117r-93,0r0,117r-33,0r0,-248r33,0r0,109r93,0r0,-109r33,0r0,248r-33,0","w":214},"I":{"d":"29,0r0,-248r33,0r0,248r-33,0","w":91},"J":{"d":"-16,56v27,-9,45,-29,45,-64r0,-240r33,0r0,238v0,54,-32,81,-78,89r0,-23","w":91,"k":{",":-9}},"K":{"d":"143,0r-81,-128r0,128r-33,0r0,-248r33,0r0,115r80,-115r34,0r-84,116r88,132r-37,0","w":186,"k":{"\u2019":-3,"\u0153":6,"\u0152":10,"\u00f8":6,"\u00e6":2,"\u00d8":10,"\u00fc":4,"\u00f6":6,"\u00e5":2,"\u00e4":2,"\u00dc":4,"\u00d6":10,"y":9,"w":11,"u":4,"o":6,"j":-7,"e":6,"a":2,"U":4,"Q":10,"O":10,"J":-6,"G":10,"C":10,":":-13,".":-13,"-":33,",":-14}},"L":{"d":"29,0r0,-248r33,0r0,226r74,0r0,22r-107,0","w":147,"k":{"\u00d3":10,"\u0153":4,"\u0152":10,"\u00d8":10,"\u00f6":4,"\u00e8":4,"\u00e9":4,"\u00dc":6,"\u00d6":10,"y":13,"t":5,"o":4,"e":4,"Y":22,"W":18,"V":20,"U":6,"T":23,"Q":10,"O":10,"G":10,"C":10,":":-16,".":-16,"-":28,",":-16}},"M":{"d":"69,-215r-21,215r-29,0r30,-248r35,0r56,207r58,-207r35,0r29,248v-12,-4,-30,10,-32,-9r-20,-206r-60,215v-11,-3,-24,8,-24,-9","w":281,"k":{"\u00d4":3,"\u0152":3,"\u00e6":-4,"\u00fc":2,"\u00e5":-4,"\u00e4":-4,"\u00dc":3,"\u00d6":3,"y":4,"u":2,"a":-4,"Y":10,"W":5,"V":4,"U":3,"T":9,"Q":3,"O":3,"G":3,"C":3,":":-9,".":-9,",":-9}},"N":{"d":"176,0r-122,-211r1,211r-27,0r0,-248r35,0r116,200v-5,-63,-1,-134,-2,-200r28,0r0,248r-29,0","w":232},"O":{"d":"109,-21v50,0,56,-54,56,-104v0,-51,-7,-104,-56,-104v-49,0,-56,53,-56,104v0,51,5,104,56,104xm109,-251v68,0,89,56,89,127v0,71,-21,128,-89,128v-69,0,-90,-58,-90,-128v0,-70,21,-127,90,-127","w":217,"k":{"z":2,"x":5,"Z":5,"Y":7,"X":8,"W":4,"V":4,"T":11,"M":3,"A":4,":":-7,".":14,"-":-7,",":22}},"P":{"d":"126,-134v44,-48,-5,-121,-66,-93r0,104v26,3,53,2,66,-11xm28,-238v53,-28,151,-14,146,62v-4,59,-48,83,-114,73r0,103r-32,0r0,-238","w":189,"k":{"\u00c2":26,"\u0153":4,"\u00f8":4,"\u00e6":6,"\u00c6":27,"\u00f6":4,"\u00f3":4,"\u00ea":5,"\u00e8":4,"\u00e9":4,"\u00e5":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c5":24,"\u00c4":24,"y":-4,"o":4,"f":-4,"e":4,"a":6,"Z":6,"T":2,"M":5,"A":24,":":-1,".":62,"-":-1,",":63}},"Q":{"d":"109,-22v51,0,56,-53,56,-104v0,-51,-6,-103,-56,-103v-49,0,-56,53,-56,103v0,51,5,104,56,104xm109,-251v113,-4,112,199,42,243r43,54r-25,22r-37,-68v-81,15,-114,-47,-113,-124v1,-70,21,-125,90,-127","w":217},"R":{"d":"61,-123v44,9,85,-8,81,-53v6,-49,-43,-66,-81,-50r0,103xm175,-178v0,47,-33,64,-75,69r81,109r-38,0r-82,-116r0,116r-33,0r0,-238v54,-27,147,-15,147,60","w":195,"k":{"\u00d4":2,"\u00d3":2,"\u0153":3,"\u0152":2,"\u00f8":3,"\u00f6":3,"\u00f4":3,"\u00f2":3,"\u00f3":3,"\u00ea":3,"\u00e8":3,"\u00e9":3,"\u00d6":2,"o":3,"e":3,"Y":2,"T":4,"Q":2,"O":2,"J":-4,"G":2,"C":2,":":-8,".":-8,"-":4,",":-9}},"S":{"d":"131,-217v-38,-35,-116,18,-68,61v30,27,85,30,85,86v0,68,-80,91,-133,60r9,-23v30,21,94,13,90,-35v-5,-62,-96,-39,-96,-114v0,-61,72,-87,121,-56","w":167,"k":{"\u00e6":-3,"\u00c6":-4,"\u00e5":-3,"\u00e4":-3,"\u00e1":-3,"\u00c5":-1,"\u00c4":-1,"y":9,"w":9,"v":9,"t":2,"j":-4,"a":-3,"Y":5,"W":4,"V":4,"T":9,"S":4,"A":-1,".":2,"-":3,",":4}},"T":{"d":"93,-225r0,225r-33,0r0,-225r-49,0r0,-23r132,0r0,23r-50,0","w":153,"k":{"\u00d4":11,"\u00d3":11,"\u00c2":17,"\u0153":16,"\u0152":11,"\u00f8":16,"\u00e6":18,"\u00d8":11,"\u00c6":16,"\u00fc":11,"\u00f6":14,"\u00f4":14,"\u00f2":14,"\u00f3":16,"\u00ea":14,"\u00e8":15,"\u00e9":16,"\u00e5":17,"\u00e4":15,"\u00e2":17,"\u00e0":17,"\u00e1":18,"\u00d6":11,"\u00c5":17,"\u00c4":17,"y":11,"w":13,"u":13,"s":13,"r":11,"o":16,"e":16,"c":16,"a":18,"Z":1,"T":1,"S":2,"Q":11,"O":11,"M":11,"G":11,"C":11,"A":17,":":1,".":28,"-":22,",":26}},"U":{"d":"107,-22v29,0,45,-20,45,-49r0,-177r30,0r0,177v-1,48,-30,75,-77,75v-47,0,-77,-27,-77,-75r0,-177r33,0r0,177v1,30,17,49,46,49","w":209,"k":{"A":4,".":9,",":14}},"V":{"d":"111,0r-29,0r-73,-248r35,0r54,207r54,-207r31,0","k":{"\u00d4":4,"\u00c2":12,"\u0153":12,"\u0152":4,"\u00f8":12,"\u00e6":14,"\u00d8":4,"\u00c6":15,"\u00f6":11,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00ea":13,"\u00e8":12,"\u00e9":12,"\u00e5":14,"\u00e4":14,"\u00e1":14,"\u00d6":4,"\u00c5":12,"\u00c4":12,"u":3,"s":5,"r":5,"o":12,"e":12,"a":14,"O":4,"M":4,"G":4,"C":4,"A":12,".":38,"-":10,",":40}},"W":{"d":"224,0r-29,0r-48,-201r-47,201r-29,0r-58,-248r34,0r41,208v13,-72,32,-138,48,-208r25,0r49,208v10,-73,28,-138,41,-208r31,0","w":294,"k":{"\u0153":10,"\u0152":4,"\u00f8":10,"\u00e6":12,"\u00d8":4,"\u00fc":4,"\u00f6":9,"\u00e9":9,"\u00e5":12,"\u00e4":12,"\u00d6":4,"\u00c5":12,"\u00c4":12,"u":4,"r":4,"o":10,"e":10,"a":12,"O":4,"M":7,"G":4,"C":4,"A":12,".":27,"-":6,",":29}},"X":{"d":"141,0r-49,-103r-50,103r-33,0r67,-127r-60,-121r36,0r42,94r47,-94r31,0r-61,117r68,131r-38,0","w":186,"k":{"\u00e9":3,"y":6,"t":4,"e":3,"T":4,"Q":8,"O":8,"G":8,"C":8,":":-15,".":-15,"-":18,",":-16}},"Y":{"d":"107,-110r0,110r-34,0r0,-110r-67,-138r36,0r50,112r51,-112r32,0","w":180,"k":{"\u2019":-12,"\u00f3":19,"\u00ea":19,"\u00e9":19,"v":8,"u":11,"q":19,"o":19,"g":19,"e":19,"d":19,"c":19,"a":18,"Q":7,"O":7,"M":10,"G":8,"C":7,"A":18,":":8,".":41,"-":22,",":41}},"Z":{"d":"9,0r91,-225r-86,0r0,-23r127,0r-90,226r93,0r0,22r-135,0","w":155,"k":{"\u0153":8,"\u0152":8,"\u00f8":8,"\u00d8":8,"\u00c6":1,"\u00fc":4,"\u00f6":8,"\u00f3":8,"\u00e8":8,"\u00e9":8,"\u00d6":8,"\u00c4":4,"y":6,"w":6,"u":4,"o":8,"e":8,"W":1,"V":1,"T":2,"Q":8,"O":8,"G":8,"C":8,"A":4,":":-14,".":-14,"-":19,",":-13}},"[":{"d":"28,77r0,-360r77,0r0,19r-48,0r0,322r49,0r0,19r-78,0","w":123},"\\":{"d":"177,82r-171,-358r21,-11r172,358","w":204},"]":{"d":"18,77r0,-19r49,0r0,-322r-49,0r0,-19r77,0r0,360r-77,0","w":123},"^":{"d":"162,-161r-58,-66r-58,66r-12,-11v24,-25,36,-63,70,-79v7,1,13,4,17,9r53,70","w":208},"_":{"d":"-4,71r0,-21r198,0r0,21r-198,0"},"`":{"d":"-3,-264v5,-11,26,-6,34,-1r25,50r-18,0","w":70},"a":{"d":"46,-54v0,41,48,46,78,33r0,-89v-39,6,-78,11,-78,56xm124,-126v11,-60,-57,-58,-89,-39r-8,-18v42,-26,127,-21,127,48r0,125v-43,24,-142,22,-138,-44v3,-57,54,-66,108,-72","w":179,"k":{"\u2019":3,"z":1,"y":4,"x":2,"w":4,"v":4,"t":2,"j":-3,"f":2}},"b":{"d":"57,-22v52,20,87,-21,83,-77v-3,-41,-11,-79,-51,-79v-14,0,-23,2,-32,8r0,148xm57,-188v62,-29,115,19,115,88v0,86,-77,128,-146,90r0,-273r31,0r0,95","w":189,"k":{"\u2019":6,"z":5,"y":4,"w":4,"v":4,"t":2,"j":-4,"f":2,":":-6,".":12,"-":-5,",":17}},"c":{"d":"50,-98v-4,53,34,97,77,69r8,20v-9,7,-24,14,-43,13v-53,-3,-71,-46,-74,-101v-4,-72,55,-125,117,-88r-7,19v-6,-5,-16,-11,-29,-10v-40,1,-46,37,-49,78","w":147,"k":{"\u2019":-6,"\u0153":7,"\u00f8":9,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"u":2,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,":":-7,".":-7,"-":12,",":-7}},"d":{"d":"49,-96v0,55,33,94,84,73r0,-151v-54,-16,-84,23,-84,78xm18,-94v-2,-70,43,-115,115,-98r0,-91r31,0r0,273v-14,8,-36,15,-61,14v-58,-1,-83,-40,-85,-98","w":189,"k":{"l":-3,"k":-3,"j":-4,"h":-3,"b":-3}},"e":{"d":"140,-116v12,-70,-80,-81,-90,-20v-2,9,-3,21,-3,34xm18,-98v1,-59,23,-100,78,-100v51,0,75,36,74,95r-122,18v-3,61,61,81,107,54r8,21v-13,8,-35,15,-59,14v-59,-3,-86,-39,-86,-102","w":187,"k":{"\u2019":6,"\u00e4":5,"z":7,"y":4,"x":6,"w":4,"v":4,"t":2,"s":1,"j":-4,"f":2,"a":5,".":4,"-":-5,",":5}},"f":{"d":"102,-262v-35,-2,-36,32,-34,68r34,0r0,20r-34,0r0,174r-32,0r0,-174r-22,0r0,-20r22,0v-4,-54,12,-90,66,-89r0,21","w":111,"k":{"\u2019":-11,"\u0153":4,"\u00f8":4,"\u00e6":7,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"t":1,"q":4,"o":4,"l":-5,"k":-5,"h":-5,"g":4,"f":1,"e":4,"d":4,"c":4,"b":-5,"a":7,":":2,".":20,"-":11,",":20}},"g":{"d":"49,-95v0,59,33,93,84,71r0,-149v-53,-22,-84,22,-84,78xm106,-198v25,-1,45,5,58,14r0,188v7,73,-79,94,-135,64r10,-21v40,23,108,11,94,-53v-63,27,-119,-18,-115,-88v4,-61,27,-102,88,-104","w":189,"k":{"j":-9,",":-8}},"h":{"d":"57,-184v41,-24,109,-12,109,45r0,139r-31,0r0,-138v4,-41,-52,-46,-78,-28r0,166r-31,0r0,-283r31,0r0,99","w":191,"k":{"\u2019":6,"y":2,"w":2,"v":2,"t":1,"f":1}},"i":{"d":"28,0r0,-194r31,0r0,194r-31,0xm44,-266v9,0,18,7,18,17v0,10,-9,18,-18,18v-9,0,-19,-7,-19,-18v0,-11,10,-17,19,-17","w":86},"j":{"d":"-7,59v24,-10,35,-32,35,-68r0,-185r32,0v-3,72,6,156,-5,220v-11,28,-29,49,-62,54r0,-21xm44,-266v9,0,19,6,19,17v0,11,-10,18,-19,18v-9,0,-18,-8,-18,-18v0,-10,9,-17,18,-17","w":87,"k":{",":-7}},"k":{"d":"133,0r-75,-100r0,100r-31,0r0,-283r31,0r1,179r69,-90r33,0r-73,91r81,103r-36,0","w":171,"k":{"\u2019":-6,"\u0153":2,"\u00f8":2,"\u00fc":1,"\u00f6":2,"\u00f3":2,"\u00e9":2,"u":1,"s":4,"q":2,"o":2,"j":-9,"g":2,"e":2,"d":2,"c":2,":":-13,".":-13,"-":17,",":-17}},"l":{"d":"28,0r0,-283r31,0r0,283r-31,0","w":87,"k":{"l":-3,"k":-3,"j":-4,"h":-3,"b":-3}},"m":{"d":"152,-174v30,-37,123,-32,123,34r0,140r-31,0r0,-140v2,-43,-57,-47,-78,-19r0,159r-31,0r0,-141v3,-37,-50,-43,-78,-30r0,171r-31,0r0,-184v32,-18,106,-22,126,10","w":300,"k":{"\u2019":6,"y":2,"w":2,"v":2,"t":1,"j":-5,"f":1}},"n":{"d":"26,-184v44,-22,140,-25,140,44r0,140r-31,0r0,-139v4,-41,-49,-44,-78,-31r0,170r-31,0r0,-184","w":191,"k":{"\u2019":6,"y":2,"w":2,"v":2,"t":1,"j":-5,"f":1}},"o":{"d":"94,-18v38,0,44,-40,44,-79v0,-39,-5,-80,-44,-80v-39,0,-44,40,-44,80v-1,41,6,79,44,79xm94,-198v56,0,76,45,76,101v0,56,-20,101,-76,101v-55,0,-76,-43,-76,-101v0,-58,21,-101,76,-101","w":187,"k":{"\u2019":6,"z":5,"y":4,"x":5,"w":4,"v":4,"t":2,"j":-4,"f":2,":":-6,".":10,"-":-5,",":17}},"p":{"d":"57,-21v52,17,83,-21,83,-78v0,-56,-31,-95,-83,-74r0,152xm86,-198v59,1,84,40,86,98v2,71,-44,118,-115,98r0,79r-31,0r0,-261v14,-9,35,-15,60,-14","w":189,"k":{"\u2019":6,"z":5,"y":4,"w":4,"v":4,"t":2,"j":-4,"f":2,":":-6,".":12,"-":-5,",":17}},"q":{"d":"102,-17v12,1,23,-3,31,-7r0,-149v-53,-22,-87,22,-84,78v2,44,12,78,53,78xm106,-198v25,-1,45,5,58,14r0,261r-31,0r0,-83v-62,27,-119,-16,-115,-87v3,-62,27,-103,88,-105","w":189},"r":{"d":"26,-184v21,-11,50,-14,83,-13r-7,24v-15,-5,-34,-4,-45,3r0,170r-31,0r0,-184","w":115,"k":{"\u2019":-11,"\u0153":5,"\u00f8":5,"\u00e6":6,"\u00f6":5,"\u00f4":5,"\u00f3":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u00e5":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"a":6,":":-2,".":28,"-":14,",":29}},"s":{"d":"49,-146v6,49,80,33,80,92v0,54,-73,71,-115,44r8,-21v20,19,77,14,74,-22v-3,-51,-77,-33,-77,-92v0,-51,65,-66,103,-40r-8,19v-17,-16,-69,-14,-65,20","w":145,"k":{"\u00e6":-4,"\u00e5":-4,"\u00e4":-4,"\u00e2":-4,"\u00e0":-4,"\u00e1":-4,"y":3,"w":3,"v":3,"t":2,"s":4,"j":-5,"f":2,"a":-4,":":-1,"-":12,",":4}},"t":{"d":"68,-48v-1,19,13,33,34,27r0,20v-35,11,-67,-11,-66,-46r0,-127r-22,0r0,-20r22,0r0,-45r32,-9r0,54r34,0r0,20r-34,0r0,126","w":115,"k":{"\u2019":-8,"\u0153":4,"\u00f8":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"t":1,"q":4,"o":4,"j":-5,"g":4,"f":1,"e":4,"d":4,"c":4,":":-8,".":-9,"-":13,",":-9}},"u":{"d":"57,-58v-3,38,46,49,74,32r0,-168r32,0r0,182v-43,26,-137,26,-137,-47r0,-135r31,0r0,136","w":188},"v":{"d":"103,0r-28,0r-65,-194r34,0r47,163v9,-59,32,-108,46,-163r29,0","w":175,"k":{"\u2019":-10,"\u0153":4,"\u00f8":4,"\u00e6":7,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,":":-2,".":33,"-":4,",":35}},"w":{"d":"211,0r-28,0r-43,-161r-45,161r-27,0r-55,-194r32,0r39,162v11,-58,29,-107,43,-162r28,0r43,162v10,-57,27,-107,39,-162r29,0","w":277,"k":{"\u2019":-10,"\u0153":4,"\u00f8":4,"\u00e6":7,"\u00f6":4,"\u00e9":4,"\u00e5":7,"\u00e4":7,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,":":-1,".":30,"-":3,",":31}},"x":{"d":"126,0r-42,-79r-43,79r-32,0r60,-100r-54,-94r33,0r39,71r38,-71r30,0r-54,91r60,103r-35,0","w":169,"k":{"\u2019":-8,"\u00e9":5,"u":1,"q":5,"o":5,"g":5,"e":5,"d":4,"c":5,":":-12,".":-12,"-":12,",":-11}},"y":{"d":"77,77r-34,0r32,-77r-65,-194r34,0r46,164v12,-58,32,-109,47,-164r29,0","w":175,"k":{"\u2019":-10,"\u00f3":4,"\u00e9":4,"\u00e4":7,"z":1,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,":":-2,".":36,"-":4,",":29}},"z":{"d":"11,0r82,-174r-76,0r0,-20r116,0r-80,174r83,0r0,20r-125,0","w":150,"k":{"\u2019":-6,"\u0153":7,"\u00f8":7,"\u00f6":7,"\u00f3":7,"\u00e8":7,"\u00e9":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,":":-11,".":-11,"-":13,",":-10}},"{":{"d":"45,-119v65,17,-8,156,68,148r0,17v-40,0,-65,-15,-67,-55v-2,-39,13,-100,-27,-101r0,-17v67,-8,-27,-163,94,-156r0,18v-77,-10,-1,130,-68,146","w":133},"|":{"d":"28,77r0,-360r26,0r0,360r-26,0","w":82},"}":{"d":"87,-228v2,39,-13,100,27,101r0,17v-68,8,27,164,-94,156r0,-17v77,8,3,-132,69,-148v-66,-3,12,-150,-69,-146r0,-18v40,0,65,15,67,55","w":133},"~":{"d":"178,-127v-10,39,-66,30,-89,9v-22,-11,-42,6,-48,22r-11,-19v10,-39,66,-31,89,-9v21,9,43,-5,47,-22","w":208},"\u00c4":{"d":"141,-94r-37,-123v-10,42,-25,82,-37,123r74,0xm170,0r-24,-74r-85,0r-24,74r-30,0r84,-248r29,0r84,248r-34,0xm76,-303v9,0,16,7,16,15v0,8,-7,15,-16,15v-10,0,-16,-6,-16,-15v0,-9,6,-15,16,-15xm135,-303v10,0,17,7,17,15v0,8,-7,15,-17,15v-8,0,-16,-7,-16,-15v0,-8,8,-15,16,-15","w":210,"k":{"t":3,"s":-4,"f":1,"W":12,"V":12,"U":4,"T":17,"S":-3,"Q":4,"O":4,"G":4,"C":4}},"\u00c5":{"d":"141,-94r-37,-123v-10,42,-25,82,-37,123r74,0xm105,-278v10,0,17,-6,17,-16v0,-11,-6,-17,-17,-17v-10,0,-16,7,-16,17v0,10,6,16,16,16xm170,0r-24,-74r-85,0r-24,74r-30,0r84,-248r29,0r84,248r-34,0xm105,-324v15,0,30,15,30,30v0,15,-14,28,-30,28v-15,0,-28,-13,-28,-28v0,-16,13,-30,28,-30","w":210,"k":{"t":3,"s":-4,"f":1,"W":12,"V":12,"T":17,"S":-3,"G":4,"C":4}},"\u00c7":{"d":"118,45v-3,-15,-21,-13,-45,-12r7,-11v30,-1,59,-3,62,23v-5,30,-49,28,-92,26r8,-13v23,1,54,4,60,-13xm54,-124v-3,65,38,126,98,93r9,21v-12,8,-29,15,-49,14v-125,-2,-124,-253,0,-255v22,-1,37,5,49,13r-8,20v-9,-5,-20,-11,-35,-10v-51,3,-61,51,-64,104","w":172,"k":{"O":10}},"\u00c9":{"d":"28,0r0,-248r115,0r0,23r-82,0r0,86r73,0r0,22r-73,0r0,95r82,0r0,22r-115,0xm87,-266r-18,0r25,-50v9,-5,29,-10,34,1","w":158,"k":{"c":4,"T":4,"Q":4,"G":4,"C":4}},"\u00d1":{"d":"176,0r-122,-211r1,211r-27,0r0,-248r35,0r116,200v-5,-63,-1,-134,-2,-200r28,0r0,248r-29,0xm91,-303v24,-1,52,31,66,-2r10,15v-14,47,-78,-21,-92,21r-9,-14v4,-11,10,-19,25,-20","w":232},"\u00d6":{"d":"109,-21v50,0,56,-54,56,-104v0,-51,-7,-104,-56,-104v-49,0,-56,53,-56,104v0,51,5,104,56,104xm109,-251v68,0,89,56,89,127v0,71,-21,128,-89,128v-69,0,-90,-58,-90,-128v0,-70,21,-127,90,-127xm79,-303v10,0,17,7,17,15v0,8,-7,15,-17,15v-9,0,-16,-7,-16,-15v0,-8,7,-15,16,-15xm139,-303v9,0,16,7,16,15v0,8,-7,15,-16,15v-10,0,-17,-7,-17,-15v0,-8,7,-15,17,-15","w":217,"k":{"Z":5,"W":4,"V":4,"T":11,"M":3}},"\u00dc":{"d":"107,-22v29,0,45,-20,45,-49r0,-177r30,0r0,177v-1,48,-30,75,-77,75v-47,0,-77,-27,-77,-75r0,-177r33,0r0,177v1,30,17,49,46,49xm77,-303v10,0,17,7,17,15v0,8,-7,15,-17,15v-8,0,-16,-7,-16,-15v0,-8,8,-15,16,-15xm136,-303v10,0,17,7,17,15v0,8,-7,15,-17,15v-9,0,-16,-7,-16,-15v0,-8,7,-15,16,-15","w":209},"\u00e1":{"d":"46,-54v0,41,48,46,78,33r0,-89v-39,6,-78,11,-78,56xm124,-126v11,-60,-57,-58,-89,-39r-8,-18v42,-26,127,-21,127,48r0,125v-43,24,-142,22,-138,-44v3,-57,54,-66,108,-72xm96,-215r-18,0r25,-50v9,-5,28,-10,34,1","w":179,"k":{"v":4,"t":2,"f":2}},"\u00e0":{"d":"46,-54v0,41,48,46,78,33r0,-89v-39,6,-78,11,-78,56xm124,-126v11,-60,-57,-58,-89,-39r-8,-18v42,-26,127,-21,127,48r0,125v-43,24,-142,22,-138,-44v3,-57,54,-66,108,-72xm50,-264v5,-11,26,-6,34,-1r25,50r-18,0","w":179,"k":{"v":4,"t":2,"f":2}},"\u00e2":{"d":"46,-54v0,41,48,46,78,33r0,-89v-39,6,-78,11,-78,56xm124,-126v11,-60,-57,-58,-89,-39r-8,-18v42,-26,127,-21,127,48r0,125v-43,24,-142,22,-138,-44v3,-57,54,-66,108,-72xm129,-215r-39,-28r-38,28r-10,-8v18,-12,33,-51,60,-36r36,36","w":179,"k":{"v":4,"t":2,"f":2}},"\u00e4":{"d":"46,-54v0,41,48,46,78,33r0,-89v-39,6,-78,11,-78,56xm124,-126v11,-60,-57,-58,-89,-39r-8,-18v42,-26,127,-21,127,48r0,125v-43,24,-142,22,-138,-44v3,-57,54,-66,108,-72xm62,-253v8,0,17,7,16,16v1,9,-7,16,-16,15v-9,0,-16,-7,-16,-15v0,-8,7,-16,16,-16xm121,-253v9,0,17,8,17,16v0,8,-7,16,-17,15v-9,0,-16,-7,-16,-15v0,-8,7,-16,16,-16","w":179,"k":{"z":1,"x":2,"w":4,"v":4,"t":2,"f":2}},"\u00e3":{"d":"46,-54v0,41,48,46,78,33r0,-89v-39,6,-78,11,-78,56xm124,-126v11,-60,-57,-58,-89,-39r-8,-18v42,-26,127,-21,127,48r0,125v-43,24,-142,22,-138,-44v3,-57,54,-66,108,-72xm39,-233v14,-47,74,20,91,-21r10,15v-14,47,-78,-20,-92,21","w":179},"\u00e5":{"d":"46,-54v0,41,48,46,78,33r0,-89v-39,6,-78,11,-78,56xm91,-227v10,0,17,-6,17,-17v0,-11,-7,-17,-17,-17v-10,0,-16,7,-16,17v0,10,6,17,16,17xm124,-126v11,-60,-57,-58,-89,-39r-8,-18v42,-26,127,-21,127,48r0,125v-43,24,-142,22,-138,-44v3,-57,54,-66,108,-72xm91,-273v15,0,30,14,30,29v0,15,-14,29,-30,29v-15,0,-28,-14,-28,-29v0,-15,14,-29,28,-29","w":179,"k":{"w":4,"v":4,"t":2,"f":2}},"\u00e7":{"d":"99,45v-4,-16,-22,-13,-46,-12r7,-11v30,-1,59,-3,62,23v-5,30,-49,28,-92,26r7,-13v23,1,55,4,62,-13xm50,-98v-4,53,34,97,77,69r8,20v-9,7,-24,14,-43,13v-53,-3,-71,-46,-74,-101v-4,-72,55,-125,117,-88r-7,19v-6,-5,-16,-11,-29,-10v-40,1,-46,37,-49,78","w":147,"k":{"o":7,"e":7,"a":4}},"\u00e9":{"d":"140,-116v12,-70,-80,-81,-90,-20v-2,9,-3,21,-3,34xm18,-98v1,-59,23,-100,78,-100v51,0,75,36,74,95r-122,18v-3,61,61,81,107,54r8,21v-13,8,-35,15,-59,14v-59,-3,-86,-39,-86,-102xm99,-215r-18,0r26,-50v8,-5,28,-11,33,1","w":187,"k":{"z":7,"x":6,"v":4,"t":2,"s":1,"f":2,"a":5}},"\u00e8":{"d":"140,-116v12,-70,-80,-81,-90,-20v-2,9,-3,21,-3,34xm18,-98v1,-59,23,-100,78,-100v51,0,75,36,74,95r-122,18v-3,61,61,81,107,54r8,21v-13,8,-35,15,-59,14v-59,-3,-86,-39,-86,-102xm53,-264v4,-12,25,-6,33,-1r26,50r-18,0","w":187,"k":{"v":4,"t":2,"s":1,"f":2}},"\u00ea":{"d":"140,-116v12,-70,-80,-81,-90,-20v-2,9,-3,21,-3,34xm18,-98v1,-59,23,-100,78,-100v51,0,75,36,74,95r-122,18v-3,61,61,81,107,54r8,21v-13,8,-35,15,-59,14v-59,-3,-86,-39,-86,-102xm134,-215r-38,-28r-39,28r-9,-8v19,-12,31,-51,60,-36r35,36","w":187,"k":{"v":4,"t":2,"s":1,"f":2}},"\u00eb":{"d":"140,-116v12,-70,-80,-81,-90,-20v-2,9,-3,21,-3,34xm18,-98v1,-59,23,-100,78,-100v51,0,75,36,74,95r-122,18v-3,61,61,81,107,54r8,21v-13,8,-35,15,-59,14v-59,-3,-86,-39,-86,-102xm50,-237v0,-23,33,-19,33,0v0,8,-7,16,-16,15v-9,0,-16,-7,-17,-15xm126,-253v9,0,16,7,16,16v0,9,-6,16,-16,15v-9,0,-16,-6,-16,-15v0,-9,7,-16,16,-16","w":187,"k":{"t":2,"s":1,"f":2}},"\u00ed":{"d":"28,0r0,-194r31,0r0,194r-31,0xm43,-215r-18,0r25,-50v9,-5,29,-10,34,1","w":86},"\u00ec":{"d":"28,0r0,-194r31,0r0,194r-31,0xm3,-264v5,-11,25,-6,34,-1r25,50r-18,0","w":86},"\u00ee":{"d":"28,0r0,-194r31,0r0,194r-31,0xm82,-215r-38,-28r-39,28r-9,-8v18,-12,31,-51,59,-36r36,36","w":86},"\u00ef":{"d":"28,0r0,-194r31,0r0,194r-31,0xm14,-253v8,0,16,8,16,16v0,8,-8,16,-16,15v-9,0,-16,-7,-17,-15v0,-8,8,-16,17,-16xm73,-253v9,0,15,8,16,16v0,8,-7,16,-16,15v-8,0,-16,-6,-16,-15v0,-9,8,-16,16,-16","w":86},"\u00f1":{"d":"26,-184v44,-21,140,-27,140,43r0,141r-31,0r0,-141v4,-41,-50,-41,-78,-29r0,170r-31,0r0,-184xm44,-233v14,-47,74,20,91,-21r10,15v-14,47,-78,-21,-92,21","w":191},"\u00f3":{"d":"94,-18v38,0,44,-40,44,-79v0,-39,-5,-80,-44,-80v-39,0,-44,40,-44,80v-1,41,6,79,44,79xm94,-198v56,0,76,45,76,101v0,56,-20,101,-76,101v-55,0,-76,-43,-76,-101v0,-58,21,-101,76,-101xm97,-215r-18,0r25,-50v9,-5,29,-11,34,1","w":187,"k":{"z":5,"x":5,"v":4,"t":2,"f":2}},"\u00f2":{"d":"94,-18v38,0,44,-40,44,-79v0,-39,-5,-80,-44,-80v-39,0,-44,40,-44,80v-1,41,6,79,44,79xm94,-198v56,0,76,45,76,101v0,56,-20,101,-76,101v-55,0,-76,-43,-76,-101v0,-58,21,-101,76,-101xm49,-264v5,-11,26,-6,34,-1r25,50r-17,0","w":187},"\u00f4":{"d":"94,-18v38,0,44,-40,44,-79v0,-39,-5,-80,-44,-80v-39,0,-44,40,-44,80v-1,41,6,79,44,79xm94,-198v56,0,76,45,76,101v0,56,-20,101,-76,101v-55,0,-76,-43,-76,-101v0,-58,21,-101,76,-101xm132,-215r-38,-28r-39,28r-9,-8v18,-12,32,-51,60,-36r35,36","w":187,"k":{"v":4,"t":2,"f":2}},"\u00f6":{"d":"94,-18v38,0,44,-40,44,-79v0,-39,-5,-80,-44,-80v-39,0,-44,40,-44,80v-1,41,6,79,44,79xm94,-198v56,0,76,45,76,101v0,56,-20,101,-76,101v-55,0,-76,-43,-76,-101v0,-58,21,-101,76,-101xm64,-253v8,0,16,8,16,16v0,8,-8,16,-16,15v-9,0,-16,-6,-16,-15v0,-9,7,-16,16,-16xm107,-237v0,-23,33,-18,33,0v0,8,-7,16,-17,15v-8,0,-16,-7,-16,-15","w":187,"k":{"z":5,"x":5,"w":4,"v":4,"t":2,"f":2}},"\u00f5":{"d":"94,-18v38,0,44,-40,44,-79v0,-39,-5,-80,-44,-80v-39,0,-44,40,-44,80v-1,41,6,79,44,79xm94,-198v56,0,76,45,76,101v0,56,-20,101,-76,101v-55,0,-76,-43,-76,-101v0,-58,21,-101,76,-101xm68,-252v23,0,56,29,66,-2r10,15v-15,47,-78,-20,-93,21r-9,-15v5,-10,12,-19,26,-19","w":187},"\u00fa":{"d":"57,-58v-3,38,46,49,74,32r0,-168r32,0r0,182v-43,26,-137,26,-137,-47r0,-135r31,0r0,136xm98,-215r-18,0r25,-50v9,-5,29,-10,34,1","w":188},"\u00f9":{"d":"57,-58v-3,38,46,49,74,32r0,-168r32,0r0,182v-43,26,-137,26,-137,-47r0,-135r31,0r0,136xm54,-264v5,-11,26,-6,34,-1r25,50r-18,0","w":188},"\u00fb":{"d":"57,-58v-3,38,46,49,74,32r0,-168r32,0r0,182v-43,26,-137,26,-137,-47r0,-135r31,0r0,136xm133,-215r-39,-28r-38,28r-9,-8v18,-12,31,-52,60,-36r35,36","w":188},"\u00fc":{"d":"57,-58v-3,38,46,49,74,32r0,-168r32,0r0,182v-43,26,-137,26,-137,-47r0,-135r31,0r0,136xm64,-253v9,0,17,8,17,16v0,8,-7,16,-17,15v-9,0,-16,-7,-16,-15v0,-8,7,-16,16,-16xm124,-253v8,0,16,8,16,16v0,8,-8,16,-16,15v-9,0,-16,-7,-17,-15v0,-8,8,-16,17,-16","w":188},"\u2020":{"d":"112,-167r4,244r-33,0r3,-244r-68,2r0,-30r68,2r-3,-90r33,0r-4,90r69,-2r0,30","w":199},"\u00b0":{"d":"76,-161v23,0,37,-15,37,-37v0,-22,-15,-37,-37,-37v-22,0,-37,14,-37,37v0,23,14,37,37,37xm76,-252v31,0,54,23,54,54v0,31,-21,54,-54,54v-33,0,-54,-21,-54,-54v0,-33,23,-54,54,-54","w":151},"\u00a2":{"d":"62,-125v-5,49,36,81,78,59r7,18v-9,7,-21,11,-38,11r3,37r-22,0r3,-39v-40,-6,-61,-37,-61,-85v0,-47,23,-79,62,-86r-4,-37r22,0r-3,37v17,0,29,4,38,11r-7,16v-41,-21,-84,9,-78,58"},"\u00a3":{"d":"83,-119v9,34,-2,72,-15,93r104,0r0,26r-147,0v23,-26,45,-74,30,-119r-34,0r0,-19r29,0v-34,-77,39,-143,118,-101r-9,20v-33,-19,-92,-8,-86,42v2,14,3,25,6,39r49,0r0,19r-45,0"},"\u00a7":{"d":"105,-31v34,-11,39,-64,9,-89r-31,-26v-35,11,-41,71,-7,91xm139,-220v-17,-14,-67,-16,-63,17v8,57,87,58,87,125v0,31,-22,47,-43,60v43,27,26,98,-33,98v-20,0,-36,-6,-48,-13r9,-19v28,27,94,-3,59,-43v-28,-32,-80,-45,-80,-102v0,-33,23,-48,42,-62v-36,-28,-21,-91,33,-91v20,0,34,6,45,12"},"\u2022":{"d":"58,-162v21,0,34,14,34,34v0,20,-13,34,-34,34v-20,0,-34,-14,-34,-34v0,-20,14,-34,34,-34","w":116},"\u00b6":{"d":"10,-181v-1,-78,87,-67,165,-67r0,17r-11,0r0,308r-23,0r0,-308r-48,0r0,308r-23,0r0,-194v-36,-5,-59,-24,-60,-64"},"\u00df":{"d":"124,-139v2,40,58,37,58,85v0,48,-55,70,-97,48r6,-21v21,14,61,4,59,-27v-3,-42,-57,-37,-55,-83v1,-26,17,-40,39,-46v7,-35,3,-83,-35,-82v-35,1,-41,36,-41,72r0,193r-31,0r0,-191v1,-53,19,-93,72,-95v59,-1,78,58,64,114v-21,4,-40,10,-39,33","w":198,"k":{"w":4,"v":4,"t":2,"f":2,":":-1,"-":12,",":4}},"\u00ae":{"d":"126,-131v28,1,51,-4,51,-31v1,-26,-29,-32,-51,-25r0,56xm194,-162v0,26,-19,40,-45,41r52,71r-21,0r-49,-70r-5,0r0,70r-17,0r0,-147v33,-15,87,-7,85,35xm148,-12v67,0,112,-45,112,-111v0,-66,-43,-112,-112,-112v-68,0,-111,46,-111,112v0,66,45,111,111,111xm148,-251v77,0,128,51,128,128v0,76,-51,127,-128,127v-76,0,-127,-51,-127,-127v0,-77,50,-128,127,-128","w":297},"\u00a9":{"d":"90,-124v0,56,73,77,104,38r13,10v-37,51,-133,23,-133,-48v0,-71,93,-100,133,-49r-12,11v-29,-40,-105,-18,-105,38xm148,-12v67,0,112,-45,112,-111v0,-66,-43,-112,-112,-112v-68,0,-111,46,-111,112v0,66,45,111,111,111xm148,-251v77,0,128,51,128,128v0,76,-51,127,-128,127v-76,0,-127,-51,-127,-127v0,-77,50,-128,127,-128","w":297},"\u2122":{"d":"69,-234r0,111r-18,0r0,-111r-34,0r0,-14r87,0r0,14r-35,0xm239,-123r-13,-109r-33,109r-17,0r-33,-109r-13,109r-17,0r16,-125r25,0r31,107r30,-107r25,0r16,125r-17,0","w":281},"\u00b4":{"d":"32,-215r-18,0r26,-50v8,-5,28,-11,33,1","w":70},"\u00a8":{"d":"5,-253v9,0,17,8,17,16v0,8,-7,16,-17,15v-9,0,-16,-7,-16,-15v0,-8,7,-16,16,-16xm65,-253v9,0,15,8,16,16v0,8,-7,16,-16,15v-9,0,-16,-6,-16,-15v0,-9,7,-16,16,-16","w":70},"\u2260":{"d":"80,-78r-25,41r-14,-9r20,-32r-35,0r0,-21r47,0r25,-42r-72,0r0,-20r85,0r23,-40r15,8r-19,32r34,0r0,20r-46,0r-26,42r72,0r0,21r-84,0"},"\u00c6":{"d":"145,-94r-28,-126v-12,45,-32,84,-47,126r75,0xm166,0r-18,-74r-86,0r-30,74r-30,0r103,-248r131,0r0,23r-95,0r22,86r73,0r0,22r-68,0r25,95r67,0r0,22r-94,0","w":268,"k":{"V":7,"T":10,"G":5,"C":5}},"\u00d8":{"d":"110,-19v69,-2,65,-112,48,-169r-91,142v9,15,20,28,43,27xm110,-231v-69,4,-66,113,-48,170r91,-143v-9,-14,-21,-27,-43,-27xm176,-217v41,66,35,226,-66,221v-27,-1,-46,-10,-59,-25r-19,30r-11,-7r21,-33v-39,-70,-33,-220,68,-220v26,0,44,9,57,23r19,-30r11,7","w":219,"k":{"V":4,"T":8,"M":3}},"\u221e":{"d":"46,-122v0,35,41,50,67,30v8,-6,16,-16,27,-30v-17,-18,-25,-37,-55,-38v-22,-1,-39,16,-39,38xm182,-106v17,32,79,27,79,-16v0,-44,-59,-49,-78,-19r-15,18xm223,-182v36,1,59,23,59,60v0,37,-23,59,-59,60v-39,1,-51,-23,-70,-44v-18,22,-30,44,-68,44v-38,-1,-59,-23,-59,-60v0,-37,21,-60,59,-60v37,0,50,22,69,43v21,-21,29,-44,69,-43","w":307},"\u00b1":{"d":"26,-26r0,-20r138,0r0,20r-138,0xm106,-131r0,62r-22,0r0,-62r-58,0r0,-21r58,0r0,-61r22,0r0,61r58,0r0,21r-58,0"},"\u2264":{"d":"26,-38r0,-20r138,0r0,20r-138,0xm26,-135r0,-19r138,-53r0,22r-112,41r112,41r0,21"},"\u2265":{"d":"26,-38r0,-20r138,0r0,20r-138,0xm26,-82r0,-21r112,-41r-112,-41r0,-22r138,53r0,19"},"\u00a5":{"d":"134,-158r39,-3r0,16r-44,-3r-18,36r62,-2r0,16r-62,-3r0,101r-31,0r0,-101r-63,3r0,-16r62,2r-18,-36r-44,3r0,-16r39,3r-44,-90r34,0r50,115r52,-115r30,0"},"\u00b5":{"d":"57,-28v19,11,58,14,78,2r0,-168r31,0r0,182v-26,18,-81,20,-109,2r0,87r-31,0r0,-271r31,0r0,166","w":191},"\u03bc":{"d":"57,-28v19,11,58,14,78,2r0,-168r31,0r0,182v-26,18,-81,20,-109,2r0,87r-31,0r0,-271r31,0r0,166","w":191},"\u2202":{"d":"72,-118v-28,18,-39,103,10,100v49,-3,57,-56,59,-108v-27,-10,-51,-3,-69,8xm75,-250v54,18,96,58,96,130v0,68,-25,123,-93,123v-38,0,-60,-23,-60,-61v0,-64,52,-105,121,-85v-6,-45,-36,-72,-73,-86"},"\u2211":{"d":"19,77r87,-175r-86,-150r150,0r0,23r-103,0r72,122r-76,154r110,0r0,26r-154,0"},"\u220f":{"d":"168,-132v39,-26,-2,-72,-37,-55r0,60v16,2,28,1,37,-5xm114,-197v33,-16,89,-6,86,39v-3,36,-29,49,-69,45r0,68r-17,0r0,-152xm148,-12v67,0,112,-45,112,-111v0,-66,-43,-112,-112,-112v-68,0,-111,46,-111,112v0,66,45,111,111,111xm148,-251v77,0,128,51,128,128v0,76,-51,127,-128,127v-76,0,-127,-51,-127,-127v0,-77,50,-128,127,-128","w":297},"\u03c0":{"d":"186,-54v0,20,5,34,26,33r0,21v-87,12,-50,-101,-58,-174r-77,0r0,174r-32,0r0,-174r-26,0r0,-20r193,0r0,20r-26,0r0,120","w":231},"\u222b":{"d":"45,57v24,-1,39,-13,39,-37r0,-241v0,-42,25,-62,69,-61r0,20v-24,0,-39,13,-39,37r0,241v0,42,-25,62,-69,61r0,-20"},"\u00aa":{"d":"36,-162v-2,25,33,27,51,19r0,-51v-26,3,-49,6,-51,32xm24,-242v27,-14,84,-14,84,31r0,76v-30,15,-95,13,-93,-27v1,-37,38,-39,72,-44v8,-36,-36,-32,-57,-22","w":127},"\u00ba":{"d":"64,-142v24,0,28,-22,28,-47v0,-25,-4,-48,-28,-48v-41,0,-40,95,0,95xm63,-251v36,0,51,24,51,62v0,38,-14,63,-50,63v-37,0,-51,-26,-51,-63v0,-36,14,-62,50,-62","w":127},"\u00e6":{"d":"85,-15v45,1,40,-49,39,-94v-41,5,-79,10,-79,55v0,27,15,39,40,39xm241,-116v12,-70,-79,-81,-89,-20v-2,9,-3,21,-3,34xm28,-184v32,-19,103,-22,113,21v14,-41,85,-45,111,-11v12,16,19,39,19,71r-121,18v-5,62,62,80,106,55r9,20v-35,23,-108,17,-124,-22v-16,53,-130,47,-125,-21v4,-57,55,-66,108,-73v11,-57,-56,-60,-89,-39","w":289,"k":{"z":7,"w":4,"v":4,"t":2,"s":1,"f":2}},"\u00f8":{"d":"94,-17v57,0,52,-90,38,-135r-69,120v6,9,16,15,31,15xm94,-180v-56,2,-51,92,-37,136r69,-120v-7,-9,-16,-16,-32,-16xm170,-97v7,77,-62,127,-120,86r-16,28r-10,-6r18,-30v-41,-50,-33,-184,52,-179v19,1,32,5,43,14r16,-27r9,6r-16,29v16,17,21,46,24,79","w":188,"k":{"z":5,"w":4,"v":4,"t":2,"f":2}},"\u00bf":{"d":"48,20v-4,41,53,44,80,28r9,19v-47,32,-151,2,-116,-67v9,-18,25,-31,46,-37r4,-52r24,0r5,62v-25,7,-49,18,-52,47xm83,-172v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21","w":141},"\u00a1":{"d":"37,77r7,-166r24,0r7,166r-38,0xm56,-172v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21","w":104},"\u00ac":{"d":"141,-53r0,-57r-115,0r0,-22r138,0r0,79r-23,0"},"\u221a":{"d":"116,0r-29,0r-49,-163r-29,0r0,-17r55,0r38,141r50,-244r28,0"},"\u0192":{"d":"90,-148v7,-55,25,-123,96,-98r-4,20v-48,-16,-53,38,-60,78r40,0r0,19r-44,0r-24,129v-8,44,-32,94,-90,76r4,-23v41,12,49,-26,56,-61r22,-121r-39,0r0,-19r43,0","w":202},"\u2248":{"d":"125,-85v17,1,31,-10,39,-18v4,30,-14,39,-39,39v-26,0,-36,-23,-63,-23v-18,-1,-28,6,-36,15v-4,-28,13,-37,36,-37v26,0,37,23,63,24xm125,-150v17,1,31,-9,39,-18v4,30,-14,39,-39,39v-26,0,-37,-23,-63,-24v-17,0,-28,7,-36,16v-4,-28,13,-37,36,-37v26,0,37,23,63,24"},"\u0394":{"d":"162,-21r-59,-194r-61,194r120,0xm202,0r-197,0r84,-248r30,0","w":207},"\u2206":{"d":"162,-21r-59,-194r-61,194r120,0xm202,0r-197,0r84,-248r30,0","w":207},"\u00ab":{"d":"76,-42r-54,-78r54,-79r17,11r-46,68r46,67xm142,-42r-54,-78r54,-79r17,11r-46,68r46,67","w":185},"\u00bb":{"d":"43,-42r-17,-11r46,-67r-46,-68r17,-11r55,79xm109,-42r-16,-11r45,-67r-45,-68r16,-11r54,79","w":185},"\u2026":{"d":"50,-40v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20v0,-11,9,-21,20,-21xm151,-40v11,0,20,10,20,21v0,11,-8,20,-20,20v-12,0,-21,-8,-21,-20v0,-12,9,-21,21,-21xm251,-40v12,0,21,9,21,21v0,12,-9,20,-21,20v-12,0,-21,-9,-21,-20v1,-11,9,-21,21,-21","w":301},"\u00a0":{"w":99},"\u00c0":{"d":"141,-94r-37,-123v-10,42,-25,82,-37,123r74,0xm170,0r-24,-74r-85,0r-24,74r-30,0r84,-248r29,0r84,248r-34,0xm57,-315v4,-12,25,-6,33,-1r26,50r-18,0","w":210},"\u00c3":{"d":"141,-94r-37,-123v-10,42,-25,82,-37,123r74,0xm170,0r-24,-74r-85,0r-24,74r-30,0r84,-248r29,0r84,248r-34,0xm80,-303v22,-1,55,30,66,-2r10,15v-14,47,-78,-21,-92,21r-10,-14v5,-10,11,-19,26,-20","w":210},"\u00d5":{"d":"109,-21v50,0,56,-54,56,-104v0,-51,-7,-104,-56,-104v-49,0,-56,53,-56,104v0,51,5,104,56,104xm109,-251v68,0,89,56,89,127v0,71,-21,128,-89,128v-69,0,-90,-58,-90,-128v0,-70,21,-127,90,-127xm82,-303v23,-1,56,30,67,-2r10,15v-14,47,-78,-21,-92,21r-10,-14v4,-10,12,-19,25,-20","w":217},"\u0152":{"d":"53,-124v0,62,22,121,92,103r0,-207v-67,-17,-92,41,-92,104xm19,-124v0,-83,40,-124,129,-124r110,0r0,23r-82,0r0,86r74,0r0,22r-74,0r0,94r82,0r0,23r-110,0v-83,19,-129,-41,-129,-124","w":273,"k":{"T":4,"G":4,"C":4}},"\u0153":{"d":"94,-18v38,0,44,-41,44,-79v0,-38,-3,-81,-44,-80v-40,1,-45,41,-45,80v0,38,6,79,45,79xm255,-115v7,-56,-49,-84,-79,-46v-9,12,-13,31,-13,57xm279,-10v-39,25,-114,16,-127,-31v-10,25,-27,45,-58,45v-55,0,-76,-43,-76,-101v0,-58,20,-101,76,-101v32,0,45,15,58,40v14,-43,85,-53,114,-17v12,16,19,40,19,74r-120,14v3,41,18,68,59,68v22,0,33,-4,46,-11","w":303,"k":{"z":7,"w":4,"v":4,"t":2,"s":1,"f":2}},"\u2013":{"d":"0,-110r0,-22r144,0r0,22r-144,0","w":144},"\u2014":{"d":"0,-111r0,-19r288,0r0,19r-288,0","w":288},"\u201c":{"d":"52,-194v-4,9,-29,15,-32,0r44,-89r17,0xm115,-194v-4,9,-29,15,-32,0r44,-89r17,0","w":158},"\u201d":{"d":"31,-186r-17,0r29,-89v4,-10,30,-14,32,0xm94,-186r-17,0r29,-89v4,-10,30,-14,32,0","w":158},"\u2018":{"d":"52,-194v-4,9,-29,15,-32,0r44,-89r17,0","w":95},"\u2019":{"d":"31,-186r-17,0r29,-89v4,-10,30,-14,32,0","w":95,"k":{"z":27,"y":25,"x":25,"w":25,"v":25,"u":30,"t":12,"s":38,"r":30,"q":42,"p":30,"o":42,"n":30,"m":30,"g":42,"f":9,"e":42,"d":42,"c":42,"a":41,"S":19,"R":11,"N":8,"M":24,"L":11,"D":14,"C":27}},"\u00f7":{"d":"77,-63v0,-24,36,-20,36,0v-1,10,-8,18,-18,18v-11,0,-18,-7,-18,-18xm26,-111r0,-18r138,0r0,18r-138,0xm95,-195v10,0,18,8,18,18v0,10,-8,18,-18,18v-11,0,-18,-7,-18,-18v0,-11,7,-18,18,-18"},"\u25ca":{"d":"113,-212r-67,85r72,91r67,-85xm115,-1r-97,-123r97,-122r98,122","w":230},"\u00ff":{"d":"77,77r-34,0r32,-77r-65,-194r34,0r46,157r47,-157r29,0xm60,-253v9,0,17,8,17,16v0,8,-7,16,-17,15v-9,0,-16,-7,-16,-15v0,-8,7,-16,16,-16xm103,-237v0,-23,33,-19,33,0v0,8,-7,16,-16,15v-9,0,-16,-7,-17,-15","w":175},"\u0178":{"d":"107,-110r0,110r-34,0r0,-110r-67,-138r36,0r50,112r51,-112r32,0xm62,-303v8,0,16,7,16,15v0,8,-8,15,-16,15v-10,0,-17,-7,-17,-15v0,-8,7,-15,17,-15xm121,-303v10,0,17,7,17,15v0,8,-7,15,-17,15v-10,0,-16,-6,-16,-15v0,-9,6,-15,16,-15","w":180},"\u2044":{"d":"-22,5r-18,-8r119,-250r19,8","w":57},"\u2215":{"d":"-22,5r-18,-8r119,-250r19,8","w":57},"\u2039":{"d":"76,-42r-54,-78r54,-79r17,11r-46,68r46,67","w":118},"\u203a":{"d":"43,-42r-17,-11r46,-67r-46,-68r17,-11r54,79","w":118},"\u2021":{"d":"112,-22r3,99r-31,0r3,-99r-69,3r0,-28r69,3r0,-127r-69,3r0,-27r69,2r-3,-90r31,0r-3,90r69,-2r0,27r-69,-3r0,127r69,-3r0,28","w":199},"\u00b7":{"d":"44,-145v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21","w":87},"\u2219":{"d":"44,-145v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21","w":87},"\u201a":{"d":"31,61r-17,0r29,-89v5,-8,29,-15,32,0","w":95},"\u201e":{"d":"31,61r-17,0r29,-89v5,-8,29,-15,32,0xm94,61r-17,0r29,-89v5,-8,29,-15,32,0","w":158},"\u2030":{"d":"73,-99v34,0,26,-55,26,-92v0,-22,-5,-46,-26,-47v-32,7,-28,57,-26,94v1,20,5,45,26,45xm234,-13v34,0,26,-55,26,-92v0,-21,-5,-45,-26,-46v-32,7,-28,57,-26,93v1,20,5,45,26,45xm357,-12v33,-5,26,-56,26,-93v0,-21,-5,-45,-26,-46v-33,5,-26,56,-26,93v1,21,6,45,26,46xm73,-252v42,0,49,43,49,85v0,42,-7,85,-49,85v-41,0,-48,-43,-48,-85v0,-42,7,-85,48,-85xm120,3r-17,-5r84,-248r17,4xm234,-165v43,0,49,43,49,84v0,43,-7,85,-49,85v-41,0,-48,-43,-48,-85v0,-41,6,-84,48,-84xm357,-165v43,0,49,42,49,84v0,43,-7,85,-49,85v-41,0,-48,-41,-48,-85v0,-43,6,-84,48,-84","w":430},"\u00c2":{"d":"141,-94r-37,-123v-10,42,-25,82,-37,123r74,0xm170,0r-24,-74r-85,0r-24,74r-30,0r84,-248r29,0r84,248r-34,0xm144,-266r-38,-28r-39,28r-9,-8v19,-12,31,-51,60,-36r35,36","w":210,"k":{"V":12,"T":17}},"\u00ca":{"d":"28,0r0,-248r115,0r0,23r-82,0r0,86r73,0r0,22r-73,0r0,95r82,0r0,22r-115,0xm122,-266r-39,-28r-38,28r-9,-8v18,-12,31,-51,59,-36r36,36","w":158,"k":{"T":4}},"\u00c1":{"d":"141,-94r-37,-123v-10,42,-25,82,-37,123r74,0xm170,0r-24,-74r-85,0r-24,74r-30,0r84,-248r29,0r84,248r-34,0xm110,-266r-18,0r25,-50v9,-5,29,-10,34,1","w":210},"\u00cb":{"d":"28,0r0,-248r115,0r0,23r-82,0r0,86r73,0r0,22r-73,0r0,95r82,0r0,22r-115,0xm54,-303v10,0,17,7,17,15v0,8,-7,15,-17,15v-10,0,-16,-6,-16,-15v0,-9,6,-15,16,-15xm113,-303v9,0,17,7,17,15v0,8,-8,15,-17,15v-9,0,-16,-7,-16,-15v0,-8,7,-15,16,-15","w":158},"\u00c8":{"d":"28,0r0,-248r115,0r0,23r-82,0r0,86r73,0r0,22r-73,0r0,95r82,0r0,22r-115,0xm42,-315v5,-11,26,-6,34,-1r25,50r-18,0","w":158,"k":{"T":4}},"\u00cd":{"d":"29,0r0,-248r33,0r0,248r-33,0xm44,-266r-17,0r25,-50v9,-5,29,-10,34,1","w":91},"\u00ce":{"d":"29,0r0,-248r33,0r0,248r-33,0xm84,-266r-38,-28r-39,28r-9,-8v18,-12,31,-52,60,-36r35,36","w":91},"\u00cf":{"d":"29,0r0,-248r33,0r0,248r-33,0xm16,-303v9,0,16,7,16,15v0,8,-7,15,-16,15v-10,0,-16,-6,-16,-15v0,-9,6,-15,16,-15xm75,-303v9,0,17,6,16,15v1,9,-7,15,-16,15v-9,0,-16,-7,-16,-15v0,-8,7,-15,16,-15","w":91},"\u00cc":{"d":"29,0r0,-248r33,0r0,248r-33,0xm5,-315v5,-11,26,-6,34,-1r25,50r-18,0","w":91},"\u00d3":{"d":"109,-21v50,0,56,-54,56,-104v0,-51,-7,-104,-56,-104v-49,0,-56,53,-56,104v0,51,5,104,56,104xm109,-251v68,0,89,56,89,127v0,71,-21,128,-89,128v-69,0,-90,-58,-90,-128v0,-70,21,-127,90,-127xm108,-266r-18,0r26,-50v8,-5,28,-11,33,1","w":217,"k":{"V":4,"T":11}},"\u00d4":{"d":"109,-21v50,0,56,-54,56,-104v0,-51,-7,-104,-56,-104v-49,0,-56,53,-56,104v0,51,5,104,56,104xm109,-251v68,0,89,56,89,127v0,71,-21,128,-89,128v-69,0,-90,-58,-90,-128v0,-70,21,-127,90,-127xm148,-266r-39,-28r-38,28r-9,-8v18,-12,31,-51,59,-36r36,36","w":217,"k":{"V":4,"T":11,"M":3}},"\u00d2":{"d":"109,-21v50,0,56,-54,56,-104v0,-51,-7,-104,-56,-104v-49,0,-56,53,-56,104v0,51,5,104,56,104xm109,-251v68,0,89,56,89,127v0,71,-21,128,-89,128v-69,0,-90,-58,-90,-128v0,-70,21,-127,90,-127xm67,-315v4,-12,25,-6,33,-1r26,50r-18,0","w":217},"\u00da":{"d":"107,-22v29,0,45,-20,45,-49r0,-177r30,0r0,177v-1,48,-30,75,-77,75v-47,0,-77,-27,-77,-75r0,-177r33,0r0,177v1,30,17,49,46,49xm105,-266r-17,0r25,-50v9,-5,29,-10,34,1","w":209},"\u00db":{"d":"107,-22v29,0,45,-20,45,-49r0,-177r30,0r0,177v-1,48,-30,75,-77,75v-47,0,-77,-27,-77,-75r0,-177r33,0r0,177v1,30,17,49,46,49xm144,-266r-38,-28r-39,28r-9,-8v18,-12,32,-51,60,-36r35,36","w":209},"\u00d9":{"d":"107,-22v29,0,45,-20,45,-49r0,-177r30,0r0,177v-1,48,-30,75,-77,75v-47,0,-77,-27,-77,-75r0,-177r33,0r0,177v1,30,17,49,46,49xm68,-315v5,-11,26,-6,34,-1r25,50r-18,0","w":209},"\u0131":{"d":"26,0r0,-194r31,0r0,194r-31,0","w":82},"\u02c6":{"d":"74,-215r-39,-28r-38,28r-9,-8v18,-12,31,-52,60,-36r35,36","w":70},"\u02dc":{"d":"-15,-233v11,-32,49,-12,72,-5v11,-1,16,-8,19,-16r10,15v-14,47,-79,-21,-92,21","w":70},"\u00af":{"d":"-16,-226r0,-19r102,0r0,19r-102,0","w":70},"\u02c9":{"d":"-16,-226r0,-19r102,0r0,19r-102,0","w":70},"\u02d8":{"d":"0,-262v3,37,67,36,71,0r11,4v2,49,-79,57,-91,14v-2,-5,-2,-10,-2,-14","w":70},"\u02d9":{"d":"35,-266v10,0,18,7,18,17v0,11,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,7,-17,17,-17","w":70},"\u02da":{"d":"35,-227v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-10,0,-17,7,-17,17v0,10,7,17,17,17xm35,-273v15,0,29,13,29,29v0,16,-13,29,-29,29v-16,0,-29,-14,-29,-29v0,-15,14,-29,29,-29","w":70},"\u00b8":{"d":"58,45v-4,-16,-22,-13,-46,-12r7,-11v30,-1,59,-3,62,23v-5,30,-49,28,-92,26r7,-13v23,1,55,4,62,-13","w":70},"\u02dd":{"d":"2,-215r-14,0v16,-18,21,-58,56,-50v1,1,2,2,2,4xm49,-215r-14,0v17,-17,22,-57,56,-50v1,1,2,2,2,4","w":70},"\u02db":{"d":"42,37v3,14,26,12,42,5r3,12v-19,11,-67,16,-69,-11v5,-29,24,-46,61,-45v-17,11,-33,17,-37,39","w":70},"\u02c7":{"d":"83,-257v-18,12,-33,53,-60,36r-36,-36r9,-8r39,29r39,-29","w":70},"\u0160":{"d":"131,-217v-38,-35,-116,18,-68,61v30,27,85,30,85,86v0,68,-80,91,-133,60r9,-23v30,21,94,13,90,-35v-5,-62,-96,-39,-96,-114v0,-61,72,-87,121,-56xm131,-308v-18,12,-33,53,-60,36r-35,-36r9,-7r39,28r38,-28","w":167},"\u0161":{"d":"49,-146v6,49,80,33,80,92v0,54,-73,71,-115,44r8,-21v20,19,77,14,74,-22v-3,-51,-77,-33,-77,-92v0,-51,65,-66,103,-40r-8,19v-17,-16,-69,-14,-65,20xm121,-257v-18,12,-34,53,-61,36r-35,-36r9,-8r39,29r39,-29","w":145},"\u00dd":{"d":"107,-110r0,110r-34,0r0,-110r-67,-138r36,0r50,112r51,-112r32,0xm94,-266r-18,0r25,-50v9,-5,29,-10,34,1","w":180},"\u00fd":{"d":"77,77r-34,0r32,-77r-65,-194r34,0r46,157r47,-157r29,0xm93,-215r-18,0r25,-50v9,-5,29,-10,34,1","w":175},"\u00de":{"d":"124,-91v44,-45,-4,-122,-64,-94r0,105v25,3,52,2,64,-11xm60,-204v61,-15,115,12,113,72v-2,59,-47,78,-113,73r0,59r-32,0r0,-248r32,0r0,44"},"\u00fe":{"d":"57,-20v55,15,84,-24,84,-78v0,-57,-35,-97,-84,-73r0,151xm57,-188v59,-28,115,16,115,87v0,71,-45,118,-115,99r0,79r-31,0r0,-360r31,0r0,95"},"\u017d":{"d":"9,0r91,-225r-86,0r0,-23r127,0r-90,226r93,0r0,22r-135,0xm125,-308v-18,12,-34,53,-60,36r-36,-36r9,-7r39,28r39,-28","w":155},"\u017e":{"d":"11,0r82,-174r-76,0r0,-20r116,0r-80,174r83,0r0,20r-125,0xm122,-257v-18,12,-34,53,-60,36r-36,-36r9,-8r39,29r39,-29","w":150},"\u00bd":{"d":"17,-224v21,-3,40,-11,48,-24r16,0r0,150r-23,0r0,-121v-12,4,-24,7,-39,7xm85,5r-19,-8r119,-250r19,8xm176,-144v36,-24,104,2,79,53v-13,25,-36,49,-52,72r57,0r0,19r-93,0v21,-37,60,-61,68,-109v4,-27,-36,-32,-53,-19","w":287},"\u00bc":{"d":"227,-126v-14,27,-30,52,-45,78r44,0xm17,-224v21,-3,40,-11,48,-24r16,0r0,150r-23,0r0,-121v-12,4,-24,7,-39,7xm91,5r-19,-8r119,-250r19,8xm248,-33r0,33r-22,0r0,-33r-60,0r0,-15r61,-102r21,0r0,102r12,0r0,15r-12,0","w":287},"\u00b9":{"d":"27,-224v22,-3,39,-10,47,-24r16,0r0,150r-23,0r0,-121v-12,4,-23,7,-38,7","w":132},"\u00be":{"d":"229,-126r-45,78r44,0xm80,-182v17,7,30,18,30,41v2,43,-57,57,-91,37r7,-16v20,12,60,10,60,-21v0,-23,-19,-30,-42,-30r0,-14v36,4,52,-47,13,-48v-9,0,-18,2,-26,6r-7,-15v27,-15,82,-10,80,27v-1,17,-11,28,-24,33xm102,5r-19,-8r119,-250r19,8xm250,-33r0,33r-22,0r0,-33r-61,0r0,-15r62,-102r21,0r0,102r12,0r0,15r-12,0","w":287},"\u00b3":{"d":"79,-182v17,6,30,18,31,41v2,44,-56,57,-91,37r7,-16v20,12,60,10,60,-21v0,-23,-19,-30,-42,-30r0,-14v36,4,53,-47,13,-48v-9,0,-18,2,-26,6r-7,-15v27,-15,81,-10,80,27v-1,17,-12,28,-25,33","w":132},"\u00b2":{"d":"24,-241v36,-24,106,1,81,51v-13,25,-36,50,-52,73r58,0r0,19r-94,0v22,-36,60,-62,69,-108v5,-24,-35,-31,-55,-20","w":132},"\u00a6":{"d":"28,77r0,-142r26,0r0,142r-26,0xm28,-140r0,-143r26,0r0,143r-26,0","w":82},"\u2212":{"d":"26,-109r0,-22r138,0r0,22r-138,0"},"\u00d7":{"d":"151,-42r-56,-62r-55,61r-16,-14r57,-63r-57,-63r15,-14r56,62r55,-62r16,14r-57,63r57,63"},"\u0142":{"d":"68,-161r0,161r-31,0r0,-149r-25,13r0,-19r25,-13r0,-115r31,0r0,104r27,-14r0,18","w":105},"\u03a9":{"d":"117,-251v120,0,109,171,53,229r47,0r0,22r-86,0v30,-32,48,-78,48,-138v0,-50,-13,-91,-62,-91v-49,0,-62,41,-62,91v0,57,19,107,48,138r-86,0r0,-22r47,0v-55,-57,-66,-229,53,-229","w":234},"\u2126":{"d":"117,-251v120,0,109,171,53,229r47,0r0,22r-86,0v30,-32,48,-78,48,-138v0,-50,-13,-91,-62,-91v-49,0,-62,41,-62,91v0,57,19,107,48,138r-86,0r0,-22r47,0v-55,-57,-66,-229,53,-229","w":234},"\u00a4":{"d":"95,-76v27,0,46,-18,46,-47v0,-29,-19,-46,-46,-46v-27,0,-46,19,-46,46v0,27,18,47,46,47xm148,-163v18,19,17,62,0,81r26,25r-13,13r-26,-26v-19,18,-61,18,-80,0r-26,26r-13,-13r26,-25v-17,-19,-18,-62,0,-81r-26,-26r13,-13r26,26v18,-17,62,-17,80,0r26,-26r13,13"},"\u00d0":{"d":"69,-24v70,20,101,-27,101,-103v0,-73,-32,-118,-101,-98r0,82r42,0r0,18r-42,0r0,101xm101,-251v73,2,103,50,103,125v0,76,-28,127,-101,130v-27,1,-51,-5,-66,-14r0,-115r-22,0r0,-18r22,0r0,-95v15,-8,38,-14,64,-13","w":223},"\u00f0":{"d":"95,-18v61,0,42,-109,29,-155v-52,-17,-77,24,-74,77v2,40,6,78,45,78xm119,-252v26,41,50,93,49,156v-1,56,-17,100,-74,100v-55,0,-75,-43,-76,-99v-1,-64,32,-112,101,-97v-9,-20,-16,-33,-26,-51r-32,10r-8,-13r32,-10v-8,-10,-9,-13,-17,-21v21,-11,36,-4,43,12v15,-5,31,-12,37,4","w":187},"\u0141":{"d":"33,0r0,-148r-23,11r0,-18r23,-11r0,-82r33,0r0,69r27,-13r0,18r-27,13r0,139r74,0r0,22r-107,0","w":150}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright Hans Reichel, 1996. Published by FontShop International FontFont
 * release 17
 * 
 * Manufacturer:
 * Hans Reichel, . Published by FontShop International FontFont release
 */
Cufon.registerFont({"w":196,"face":{"font-family":"Dax","font-weight":550,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 6 6 0 0 2 0 4","ascent":"283","descent":"-77","x-height":"4","bbox":"-39 -326.045 417 82","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":97},"!":{"d":"60,-50v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-27,-13,-27,-27v0,-14,12,-26,27,-26xm76,-85r-33,0r-10,-163r53,0","w":111},"\"":{"d":"54,-146r-23,0r-8,-96v9,-12,30,-12,39,0xm117,-146r-22,0r-9,-96v9,-12,31,-12,40,0","w":148},"#":{"d":"83,-152r-9,50r39,0r9,-50r-39,0xm147,-152r-9,50r34,0r0,22r-38,0r-14,80r-25,0r14,-80r-38,0r-15,80r-24,0r13,-80r-33,0r0,-22r37,0r9,-50r-34,0r0,-22r38,0r13,-74r25,0r-13,74r39,0r13,-74r24,0r-13,74r35,0r0,22r-38,0"},"$":{"d":"146,-211v-33,-32,-106,13,-63,52v30,27,82,33,82,87v0,40,-28,68,-64,73r4,46r-27,0r4,-44v-24,0,-41,-5,-55,-14r11,-30v26,19,86,15,82,-28v-6,-55,-95,-40,-90,-110v3,-41,25,-64,61,-70r-3,-43r25,0r-3,42v19,0,36,6,46,13"},"%":{"d":"74,-103v30,-5,22,-54,22,-87v0,-20,-3,-42,-22,-43v-29,7,-22,54,-22,88v0,20,4,40,22,42xm239,-18v29,-6,22,-53,22,-87v0,-20,-4,-40,-22,-42v-29,6,-22,53,-22,87v0,20,4,40,22,42xm74,-251v43,0,52,41,52,85v0,43,-10,84,-52,84v-43,0,-51,-41,-51,-84v0,-44,8,-85,51,-85xm125,3r-22,-6r85,-248r22,6xm239,-166v43,0,52,42,52,85v0,43,-9,85,-52,85v-43,0,-51,-42,-51,-85v0,-43,8,-85,51,-85","w":313},"&":{"d":"64,-71v-3,43,44,55,79,42r0,-105v-39,10,-76,18,-79,63xm77,-189v8,60,104,24,135,5r13,27v-9,4,-29,12,-40,14r0,132v-53,29,-173,19,-168,-57v2,-42,29,-60,60,-72v-25,-8,-44,-23,-44,-53v0,-61,82,-69,128,-45r-13,26v-23,-14,-75,-14,-71,23","w":228},"'":{"d":"54,-146r-23,0r-8,-96v9,-13,30,-11,40,0","w":85},"(":{"d":"68,-103v0,73,27,128,59,173r-21,12v-60,-59,-113,-170,-64,-276v16,-35,38,-63,64,-93r21,12v-32,45,-59,99,-59,172","w":137},")":{"d":"31,-287v60,59,113,169,64,275v-16,34,-38,64,-64,94r-21,-12v32,-45,59,-100,59,-173v0,-72,-27,-127,-59,-172","w":137},"*":{"d":"50,-207v10,1,18,8,18,18v0,11,-7,18,-18,18v-24,0,-20,-36,0,-36xm35,-258v11,0,18,7,18,18v0,21,-36,23,-35,0v0,-10,7,-18,17,-18xm108,-206v10,0,18,7,18,17v-1,10,-8,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,7,-17,17,-17xm80,-240v7,0,14,7,14,14v0,8,-6,16,-14,15v-7,0,-15,-7,-15,-15v0,-8,7,-14,15,-14xm80,-290v10,0,17,8,17,18v0,10,-7,17,-17,17v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18xm124,-258v24,0,20,36,0,36v-9,0,-17,-8,-17,-18v0,-10,7,-18,17,-18","w":159},"+":{"d":"113,-105r0,60r-29,0r0,-60r-57,0r0,-29r57,0r0,-60r29,0r0,60r56,0r0,29r-56,0"},",":{"d":"28,61r-26,0r32,-97v7,-13,42,-18,46,0","w":101},"-":{"d":"19,-104r0,-34r88,0r0,34r-88,0","w":126,"k":{"\u00f6":-5,"\u00e4":4,"\u00d6":-7,"\u00c4":12,"z":10,"y":3,"x":12,"w":2,"v":3,"t":2,"s":-4,"q":-5,"o":-5,"g":-5,"f":2,"e":-5,"d":-5,"c":-5,"a":4,"Z":15,"Y":21,"X":19,"W":6,"V":10,"T":22,"S":1,"Q":-7,"O":-7,"G":-7,"C":-7,"A":12,"9":-10,"7":24,"6":-16,"3":23,"2":32,"1":25,"0":-18}},"\u00ad":{"d":"19,-104r0,-34r88,0r0,34r-88,0","w":126},".":{"d":"48,-51v14,0,26,13,26,27v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27","w":95},"\/":{"d":"32,82r-28,-13r170,-356r28,13","w":205},"0":{"d":"98,-26v38,-5,38,-55,38,-98v0,-43,0,-95,-38,-100v-38,5,-38,58,-38,100v0,42,0,92,38,98xm98,-251v64,0,80,62,80,127v0,65,-15,128,-80,128v-65,0,-80,-64,-80,-128v0,-64,16,-127,80,-127","k":{"-":-18,",":6}},"1":{"d":"28,-210v35,-4,65,-15,80,-38r31,0r0,248r-44,0r0,-198v-18,6,-37,13,-61,14","k":{"-":20,",":6}},"2":{"d":"20,-237v49,-26,155,-18,147,53v-7,64,-61,101,-90,148r92,0r0,36r-156,0v34,-62,93,-101,108,-179v8,-45,-61,-47,-90,-30","k":{"-":7,",":6}},"3":{"d":"118,-139v29,10,52,27,52,66v0,76,-96,92,-156,63r12,-30v30,20,97,16,97,-33v0,-38,-31,-46,-66,-47r0,-23v30,-3,58,-17,59,-45v2,-41,-60,-35,-85,-22r-11,-28v44,-22,142,-21,140,45v-1,31,-22,44,-42,54","k":{",":6}},"4":{"d":"119,-194v0,-11,1,-15,-5,-1v-19,39,-46,80,-67,118r71,0xm159,-53r0,53r-41,0r0,-53r-100,0r0,-27r99,-168r42,0r0,171r20,0r0,24r-20,0","k":{",":6}},"5":{"d":"126,-73v-2,-47,-44,-55,-96,-47r12,-128r123,0r0,37r-92,0r-5,64v63,-5,103,16,105,74v2,75,-95,93,-156,63r12,-30v31,19,100,16,97,-33","k":{",":6}},"6":{"d":"100,-26v29,0,35,-23,37,-50v3,-43,-35,-60,-74,-46v-6,40,-5,95,37,96xm69,-145v56,-16,113,11,110,71v-2,48,-30,76,-79,78v-91,4,-96,-125,-56,-183v23,-34,56,-60,100,-71r12,29v-40,12,-72,37,-87,76","k":{"-":-11,",":6}},"7":{"d":"185,-248r-70,174r-23,74r-54,0r94,-211r-111,0r0,-37r164,0","k":{"-":22,",":6}},"8":{"d":"98,-24v44,4,51,-57,20,-76v-5,-4,-12,-9,-21,-14v-19,14,-41,21,-40,53v1,24,18,35,41,37xm99,-145v18,-11,35,-19,36,-46v0,-20,-16,-35,-36,-35v-39,0,-47,54,-17,69v5,3,10,8,17,12xm126,-130v30,18,52,32,52,70v0,44,-35,64,-80,64v-44,0,-80,-20,-80,-64v0,-38,23,-50,52,-69v-26,-17,-44,-27,-44,-62v0,-41,31,-60,72,-60v42,0,73,20,73,60v0,34,-19,45,-45,61","k":{",":6}},"9":{"d":"59,-171v-3,42,37,60,74,45v7,-39,5,-96,-37,-96v-28,0,-35,24,-37,51xm98,-250v91,-5,93,125,54,183v-23,34,-56,60,-100,71r-11,-30v40,-12,72,-36,86,-76v-53,17,-112,-10,-109,-70v2,-49,30,-76,80,-78","k":{"-":-16,",":6}},":":{"d":"48,-51v14,0,26,13,26,27v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27xm48,-163v14,0,26,13,26,27v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27","w":95},";":{"d":"28,61r-26,0r32,-97v7,-13,42,-21,46,0xm54,-163v14,0,26,12,26,27v0,14,-12,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27","w":101},"\u037e":{"d":"28,61r-26,0r32,-97v7,-13,42,-21,46,0xm54,-163v14,0,26,12,26,27v0,14,-12,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27","w":101},"<":{"d":"27,-107r0,-27r142,-61r0,31r-107,43r107,44r0,31"},"=":{"d":"27,-71r0,-28r142,0r0,28r-142,0xm27,-140r0,-29r142,0r0,29r-142,0"},">":{"d":"27,-46r0,-31r107,-44r-107,-43r0,-31r142,61r0,27"},"?":{"d":"75,-50v14,0,26,12,26,26v0,14,-12,26,-26,26v-15,0,-27,-12,-27,-26v0,-14,12,-26,27,-26xm14,-237v50,-33,161,-6,128,69v-9,19,-28,29,-47,37r-4,46r-33,0r-6,-60v24,-5,47,-14,49,-42v3,-37,-52,-39,-75,-24","w":151},"@":{"d":"138,-43v37,-3,49,-42,52,-79v1,-23,-13,-40,-31,-40v-37,0,-49,43,-51,81v-1,21,10,39,30,38xm185,-252v66,0,106,38,106,103v0,62,-23,118,-81,126v-19,-1,-26,-11,-28,-32v-21,44,-105,41,-98,-26v5,-50,24,-99,74,-99v23,0,32,15,41,31r5,-25r22,0v-7,37,-22,71,-22,111v0,14,2,20,13,21v39,-9,55,-62,55,-107v0,-56,-34,-88,-89,-88v-88,0,-143,68,-143,157v0,73,45,112,117,112v58,0,91,-24,119,-54r11,13v-30,33,-68,55,-130,56v-85,0,-136,-44,-136,-128v0,-100,64,-171,164,-171","w":312},"A":{"d":"139,-90r-33,-117v-8,42,-23,78,-34,117r67,0xm164,0r-19,-64r-80,0r-20,64r-41,0r82,-248r44,0r81,248r-47,0","w":215,"k":{"\u00c7":4,"y":10,"w":10,"v":10,"t":4,"s":-5,"j":-10,"f":1,"a":-7,"Y":19,"W":12,"V":14,"U":4,"T":17,"S":-4,"Q":4,"O":4,"J":-7,"G":4,"C":4,":":-17,".":-17,"-":12,",":-16}},"B":{"d":"69,-29v35,12,79,3,79,-39v0,-44,-30,-52,-79,-50r0,89xm69,-141v39,4,72,-4,72,-43v0,-37,-37,-48,-72,-37r0,80xm139,-131v27,10,53,27,55,63v4,79,-110,83,-168,58r0,-227v51,-24,162,-23,159,50v-1,32,-20,49,-46,56","w":209,"k":{"\u00c2":-1,"\u0152":2,"\u00e6":-3,"\u00c6":-4,"\u00e5":-3,"\u00e4":-3,"\u00e2":-3,"\u00e0":-3,"\u00e1":-3,"\u00d6":2,"\u00c5":-1,"\u00c4":-1,"j":-3,"a":-3,"Y":5,"W":5,"V":5,"T":6,"Q":2,"O":2,"G":2,"C":2,"A":-1,":":-1,".":1,"-":3,",":6}},"C":{"d":"65,-124v-4,60,34,114,88,84r11,30v-12,9,-29,14,-51,14v-68,0,-92,-58,-95,-128v-4,-88,65,-158,146,-113r-10,27v-8,-4,-18,-9,-32,-9v-46,4,-54,47,-57,95","w":174,"k":{"\u0153":7,"\u0152":10,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"y":4,"u":4,"o":7,"e":7,"Q":10,"O":10,"G":10,"C":10,":":-11,".":-11,"-":22,",":-8}},"D":{"d":"71,-32v59,17,83,-26,83,-94v0,-66,-21,-106,-83,-92r0,186xm93,-251v77,0,108,50,108,125v0,75,-29,129,-105,130v-28,1,-53,-6,-70,-14r0,-227v17,-8,40,-15,67,-14","w":218,"k":{"\u00c6":1,"\u00c5":4,"\u00c4":4,"Z":6,"Y":7,"W":4,"V":4,"T":11,"M":2,"A":4,":":-7,".":12,"-":-7,",":21}},"E":{"d":"26,0r0,-248r120,0r0,31r-75,0r0,75r67,0r0,30r-67,0r0,81r75,0r0,31r-120,0","w":162,"k":{"\u2019":-3,"y":2,"x":3,"w":2,"v":2,"q":4,"o":4,"j":-7,"g":4,"e":4,"d":4,"c":4,"T":4,"Q":4,"O":4,"J":-4,"G":4,"C":4,"A":6,":":-9,".":-9,"-":1,",":-8}},"F":{"d":"71,-217r0,75r67,0r0,30r-67,0r0,112r-45,0r0,-248r120,0r0,31r-75,0","w":159,"k":{"\u0153":6,"\u0152":4,"\u00f8":6,"\u00e6":11,"\u00d8":4,"\u00c6":21,"\u00fc":4,"\u00f6":6,"\u00f4":6,"\u00f2":6,"\u00f3":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"\u00e5":11,"\u00e4":11,"\u00e0":11,"\u00e1":11,"\u00d6":4,"\u00c5":18,"\u00c4":18,"u":4,"r":4,"o":6,"l":-1,"e":6,"a":11,"Z":5,"O":4,"M":7,"G":4,"C":4,"A":18,".":39,",":46}},"G":{"d":"64,-123v0,61,29,110,85,90r0,-81r-36,0r0,-28r79,0r0,132v-18,10,-36,14,-66,14v-75,0,-105,-51,-108,-129v-4,-98,81,-153,171,-113r-14,28v-59,-27,-111,9,-111,87","w":215,"k":{"y":4,"Y":6,"W":5,"V":5,"T":6}},"H":{"d":"149,0r0,-112r-78,0r0,112r-45,0r0,-248r45,0r0,106r78,0r0,-106r46,0r0,248r-46,0","w":220},"I":{"d":"26,0r0,-248r46,0r0,248r-46,0","w":98},"J":{"d":"-15,47v26,-6,40,-25,41,-56r0,-239r46,0r0,235v0,58,-35,86,-87,92r0,-32","w":98,"k":{",":-9}},"K":{"d":"144,0r-72,-125r0,125r-46,0r0,-248r46,0r1,113r71,-113r46,0r-77,115r82,133r-51,0","w":199,"k":{"\u0153":8,"\u0152":11,"\u00f8":8,"\u00e6":2,"\u00d8":10,"\u00fc":4,"\u00f6":8,"\u00e5":2,"\u00e4":2,"\u00dc":4,"\u00d6":11,"y":10,"w":11,"u":4,"o":8,"j":-7,"e":8,"a":2,"U":4,"Q":11,"O":11,"J":-6,"G":11,"C":11,":":-12,".":-12,"-":31,",":-14}},"L":{"d":"26,0r0,-248r46,0r0,217r69,0r0,31r-115,0","w":151,"k":{"\u00d3":10,"\u0153":4,"\u0152":10,"\u00d8":10,"\u00f6":4,"\u00e8":4,"\u00e9":4,"\u00dc":6,"\u00d6":10,"y":13,"t":6,"o":4,"e":4,"Y":22,"W":17,"V":20,"U":6,"T":23,"Q":10,"O":10,"G":10,"C":10,":":-15,".":-15,"-":27,",":-14}},"M":{"d":"73,-194v-9,62,-10,131,-18,194r-38,0r27,-248r46,0r52,187v14,-65,35,-124,52,-187r46,0r28,248r-43,0r-18,-194r-54,194v-12,-2,-28,7,-29,-9","w":284,"k":{"\u00d4":2,"\u0152":2,"\u00e6":-3,"\u00fc":2,"\u00e5":-3,"\u00e4":-3,"\u00dc":3,"\u00d6":2,"y":4,"u":2,"a":-3,"Y":9,"W":5,"V":4,"U":3,"T":10,"Q":2,"O":2,"G":2,"C":2,":":-9,".":-9,",":-9}},"N":{"d":"172,0r-109,-188r1,188r-38,0r0,-248r43,0r102,176r-1,-176r38,0r0,248r-36,0","w":234},"O":{"d":"111,-30v42,0,46,-49,46,-95v0,-46,-3,-96,-46,-96v-44,0,-47,51,-47,96v0,45,4,95,47,95xm111,-251v70,0,93,56,93,127v0,71,-23,128,-93,128v-71,0,-93,-57,-93,-128v0,-71,22,-127,93,-127","w":221,"k":{"z":3,"x":5,"Z":6,"Y":7,"X":9,"W":4,"V":4,"T":11,"M":2,"A":4,":":-7,".":12,"-":-7,",":21}},"P":{"d":"127,-135v37,-42,-2,-112,-57,-86r0,96v22,3,47,1,57,-10xm26,-237v57,-27,163,-18,158,63v-4,60,-49,83,-114,76r0,98r-44,0r0,-237","w":197,"k":{"\u00c2":25,"\u0153":4,"\u00f8":4,"\u00e6":8,"\u00c6":28,"\u00f6":4,"\u00f3":4,"\u00ea":5,"\u00e8":4,"\u00e9":4,"\u00e5":7,"\u00e4":8,"\u00e2":8,"\u00e1":8,"\u00c5":24,"\u00c4":24,"y":-3,"o":4,"f":-3,"e":4,"a":8,"Z":6,"T":2,"M":5,"A":24,":":-3,".":59,"-":-1,",":62}},"Q":{"d":"111,-31v44,0,47,-50,47,-95v0,-45,-3,-95,-47,-95v-44,0,-47,50,-47,95v0,45,3,95,47,95xm111,-251v116,-5,115,194,47,241r41,51r-33,30r-35,-71v-80,15,-114,-47,-113,-124v1,-71,23,-124,93,-127","w":221},"R":{"d":"71,-123v41,6,70,-10,70,-51v0,-44,-33,-59,-70,-47r0,98xm185,-176v0,44,-30,59,-66,66r74,110r-51,0r-71,-112r0,112r-45,0r0,-237v56,-27,159,-18,159,61","w":203,"k":{"\u00d4":2,"\u00d3":2,"\u0153":5,"\u0152":2,"\u00f8":4,"\u00fc":1,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00d6":2,"u":1,"o":5,"e":5,"Y":3,"T":4,"Q":2,"O":2,"J":-4,"G":2,"C":2,":":-8,".":-8,"-":3,",":-10}},"S":{"d":"134,-209v-22,-18,-80,-15,-74,25v9,57,94,37,94,112v0,70,-84,93,-141,62r11,-32v26,17,85,17,81,-27v-5,-57,-89,-36,-89,-110v0,-66,76,-90,128,-58","w":170,"k":{"\u00e6":-3,"\u00c6":-4,"\u00e5":-3,"\u00e4":-3,"\u00e1":-3,"\u00c5":-1,"\u00c4":-1,"y":9,"w":9,"v":9,"t":3,"j":-3,"a":-3,"Y":5,"W":4,"V":4,"T":9,"S":4,"A":-1,".":1,"-":1,",":4}},"T":{"d":"103,-217r0,217r-46,0r0,-217r-46,0r0,-31r138,0r0,31r-46,0","w":160,"k":{"\u00d4":11,"\u00d3":11,"\u00c2":17,"\u0153":17,"\u0152":11,"\u00f8":17,"\u00e6":19,"\u00d8":11,"\u00c6":18,"\u00fc":12,"\u00f6":15,"\u00f4":15,"\u00f2":15,"\u00f3":17,"\u00ea":15,"\u00e8":17,"\u00e9":17,"\u00e5":17,"\u00e4":15,"\u00e2":18,"\u00e0":17,"\u00e1":19,"\u00d6":11,"\u00c5":17,"\u00c4":17,"y":10,"w":12,"u":13,"s":14,"r":11,"o":17,"e":17,"c":17,"a":19,"Z":2,"T":3,"S":3,"Q":11,"O":11,"M":11,"G":11,"C":11,"A":17,":":1,".":28,"-":22,",":26}},"U":{"d":"109,-31v23,0,38,-17,38,-41r0,-176r42,0r0,176v-2,49,-33,76,-82,76v-49,0,-81,-27,-81,-76r0,-176r45,0r0,176v-1,24,16,40,38,41","w":214,"k":{"X":1,"A":4,".":9,",":14}},"V":{"d":"120,0r-40,0r-75,-248r49,0r48,191v11,-67,32,-127,47,-191r44,0","w":197,"k":{"\u00d4":4,"\u00c2":14,"\u0153":14,"\u0152":4,"\u00f8":14,"\u00e6":15,"\u00d8":4,"\u00c6":17,"\u00f6":11,"\u00f4":13,"\u00f2":12,"\u00f3":14,"\u00ea":13,"\u00e8":12,"\u00e9":14,"\u00e5":15,"\u00e4":15,"\u00e1":15,"\u00d6":4,"\u00c5":14,"\u00c4":14,"u":4,"s":5,"r":6,"o":14,"e":14,"a":15,"O":4,"M":4,"G":5,"C":4,"A":14,".":37,"-":10,",":40}},"W":{"d":"232,0r-40,0r-43,-179v-11,62,-28,119,-41,179r-41,0r-57,-248r46,0r36,190r42,-190r34,0r43,190r36,-190r42,0","w":298,"k":{"\u0153":11,"\u0152":4,"\u00f8":11,"\u00e6":13,"\u00d8":4,"\u00fc":4,"\u00f6":10,"\u00e9":9,"\u00e5":13,"\u00e4":12,"\u00d6":4,"\u00c5":12,"\u00c4":12,"u":4,"r":4,"o":11,"e":11,"a":13,"O":4,"M":7,"G":5,"C":4,"A":12,".":26,"-":6,",":29}},"X":{"d":"137,0r-42,-91r-43,91r-47,0r67,-127r-60,-121r50,0r36,84r41,-84r44,0r-62,116r67,132r-51,0","w":193,"k":{"\u00e9":4,"y":7,"t":5,"e":4,"U":1,"T":4,"Q":9,"O":9,"G":9,"C":9,":":-15,".":-15,"-":19,",":-16}},"Y":{"d":"116,-107r0,107r-46,0r0,-107r-67,-141r49,0r43,103r44,-103r44,0","w":185,"k":{"\u2019":-9,"\u00f3":21,"\u00ea":19,"\u00e9":21,"v":8,"u":11,"q":21,"o":21,"g":21,"e":21,"d":21,"c":21,"a":19,"Q":7,"O":7,"M":10,"G":8,"C":7,"A":19,":":8,".":40,"-":21,",":40}},"Z":{"d":"8,0r84,-217r-78,0r0,-31r135,0r-82,217r84,0r0,31r-143,0","w":162,"k":{"\u0153":8,"\u0152":9,"\u00f8":8,"\u00d8":9,"\u00c6":2,"\u00fc":4,"\u00f6":8,"\u00f3":8,"\u00e8":8,"\u00e9":8,"\u00d6":9,"\u00c4":4,"y":8,"w":8,"u":4,"o":8,"e":8,"W":1,"V":1,"T":4,"Q":9,"O":9,"G":9,"C":9,"A":4,":":-13,".":-13,"-":20,",":-12}},"[":{"d":"26,77r0,-360r86,0r0,26r-48,0r0,309r48,0r0,25r-86,0","w":127},"\\":{"d":"175,82r-171,-355r28,-14r171,356","w":207},"]":{"d":"15,77r0,-25r48,0r0,-309r-48,0r0,-26r87,0r0,360r-87,0","w":127},"^":{"d":"166,-151r-59,-66r-58,66r-17,-17v22,-26,40,-56,64,-80v12,-7,25,0,31,8r56,72","w":214},"_":{"d":"-4,75r0,-27r204,0r0,27r-204,0"},"`":{"d":"-3,-264v7,-13,34,-7,44,-1r25,50r-25,0","w":79},"a":{"d":"55,-57v-2,36,40,43,67,31r0,-80v-35,4,-65,11,-67,49xm25,-183v46,-25,138,-24,138,52r0,121v-46,23,-153,23,-149,-45v3,-56,54,-66,108,-72v11,-55,-57,-47,-87,-31","w":186,"k":{"\u2019":2,"z":1,"y":4,"x":3,"w":4,"v":4,"t":3,"j":-3,"f":3}},"b":{"d":"67,-27v47,17,71,-22,71,-72v0,-49,-28,-87,-71,-66r0,138xm67,-189v62,-25,117,17,114,87v-3,65,-30,104,-94,106v-26,1,-49,-5,-64,-14r0,-273r44,0r0,94","w":197,"k":{"\u2019":4,"z":6,"y":4,"w":4,"v":4,"t":3,"j":-3,"f":3,":":-5,".":10,"-":-5,",":16}},"c":{"d":"60,-98v-6,49,32,88,69,61r10,27v-10,9,-24,15,-46,14v-54,-3,-74,-45,-77,-102v-4,-74,60,-124,122,-86r-9,25v-37,-26,-75,12,-69,61","w":149,"k":{"\u2019":-6,"\u0153":7,"\u00f8":9,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"u":2,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,":":-7,".":-7,"-":10,",":-7}},"d":{"d":"60,-97v0,50,27,86,70,68r0,-139v-48,-13,-70,22,-70,71xm16,-95v0,-69,44,-113,114,-97r0,-91r44,0r0,273v-17,8,-39,15,-67,14v-59,0,-91,-39,-91,-99","w":197,"k":{"l":-2,"k":-2,"j":-4,"h":-2,"b":-2}},"e":{"d":"136,-116v7,-51,-44,-72,-70,-38v-8,11,-11,28,-11,51xm16,-98v1,-59,26,-100,83,-100v57,0,80,39,78,100r-119,17v-1,58,63,64,102,43r10,28v-16,9,-36,15,-64,14v-59,-1,-91,-39,-90,-102","w":193,"k":{"\u2019":4,"\u00e4":5,"z":7,"y":4,"x":6,"w":4,"v":4,"t":3,"s":1,"j":-3,"f":3,"a":5,".":4,"-":-5,",":5}},"f":{"d":"110,-255v-31,-1,-35,28,-32,61r32,0r0,28r-32,0r0,166r-43,0r0,-166r-22,0r0,-28r22,0v-5,-57,19,-94,75,-89r0,28","w":119,"k":{"\u2019":-10,"\u0153":4,"\u00f8":4,"\u00e6":6,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":6,"\u00e4":6,"\u00e2":6,"\u00e0":6,"\u00e1":6,"t":1,"q":4,"o":4,"l":-4,"k":-4,"h":-4,"g":4,"f":1,"e":4,"d":4,"c":4,"b":-4,"a":6,".":18,"-":6,",":19}},"g":{"d":"60,-95v0,53,28,85,71,65r0,-137v-46,-19,-71,19,-71,72xm110,-198v25,-1,49,5,63,14r0,187v8,78,-86,94,-146,65r13,-29v34,20,104,15,91,-44v-63,24,-118,-19,-115,-88v3,-64,30,-103,94,-105","k":{"j":-9,",":-8}},"h":{"d":"67,-186v45,-22,109,-8,109,48r0,138r-44,0r0,-136v5,-36,-42,-39,-65,-25r0,161r-44,0r0,-283r44,0r0,97","w":199,"k":{"\u2019":4,"y":3,"w":3,"v":3,"t":1,"f":1}},"i":{"d":"25,0r0,-194r44,0r0,194r-44,0xm47,-271v13,0,25,9,24,22v0,12,-12,21,-24,21v-13,0,-24,-9,-24,-21v-1,-12,11,-22,24,-22","w":93},"j":{"d":"-8,51v25,-8,34,-30,34,-63r0,-182r43,0v-9,107,38,259,-77,275r0,-30xm48,-271v13,0,25,9,24,22v0,12,-12,21,-24,21v-13,0,-25,-8,-25,-21v0,-13,12,-22,25,-22","w":94,"k":{",":-7}},"k":{"d":"134,0r-66,-99r0,99r-43,0r0,-283r43,0r1,177r62,-88r44,0r-67,89r75,105r-49,0","w":183,"k":{"\u2019":-5,"\u0153":4,"\u00f8":4,"\u00fc":1,"\u00f6":4,"\u00f3":4,"\u00e9":4,"u":1,"s":4,"q":4,"o":4,"j":-9,"g":4,"e":4,"d":4,"c":4,":":-13,".":-13,"-":17,",":-17}},"l":{"d":"25,0r0,-283r44,0r0,283r-44,0","w":94,"k":{"l":-2,"k":-2,"j":-4,"h":-2,"b":-2}},"m":{"d":"23,-184v35,-17,111,-22,134,8v32,-36,128,-29,128,38r0,138r-43,0r0,-138v2,-34,-47,-42,-66,-18r0,156r-44,0r0,-139v2,-31,-40,-37,-65,-26r0,165r-44,0r0,-184","w":308,"k":{"\u2019":4,"y":3,"w":3,"v":3,"t":1,"j":-4,"f":1}},"n":{"d":"23,-184v48,-21,153,-27,153,46r0,138r-44,0r0,-138v4,-35,-39,-36,-65,-27r0,165r-44,0r0,-184","w":199,"k":{"\u2019":4,"y":3,"w":3,"v":3,"t":1,"j":-4,"f":1}},"o":{"d":"97,-26v34,0,37,-38,37,-71v0,-34,-2,-73,-37,-73v-34,0,-37,38,-37,73v0,35,4,71,37,71xm97,-198v57,0,80,41,80,101v-1,58,-23,101,-80,101v-58,0,-81,-43,-81,-101v0,-58,23,-101,81,-101","w":193,"k":{"\u2019":4,"z":6,"y":4,"x":6,"w":4,"v":4,"t":3,"j":-3,"f":3,":":-5,".":9,"-":-5,",":16}},"p":{"d":"67,-27v46,13,71,-21,71,-71v0,-51,-24,-85,-71,-69r0,140xm91,-198v60,2,90,37,90,99v1,70,-43,115,-114,98r0,78r-44,0r0,-261v17,-8,39,-15,68,-14","w":197,"k":{"\u2019":4,"z":6,"y":4,"w":4,"v":4,"t":3,"j":-3,"f":3,":":-5,".":10,"-":-5,",":16}},"q":{"d":"60,-95v0,52,27,86,71,65r0,-138v-46,-17,-71,20,-71,73xm110,-198v26,-1,49,5,64,14r0,261r-43,0r0,-82v-62,26,-118,-19,-115,-87v3,-63,29,-105,94,-106","w":197},"r":{"d":"23,-184v24,-11,57,-15,94,-13r-9,32v-13,-5,-30,-6,-41,1r0,164r-44,0r0,-184","w":122,"k":{"\u2019":-10,"\u0153":6,"\u00f8":6,"\u00e6":7,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"\u00e7":6,"\u00e5":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"q":6,"o":6,"g":6,"e":6,"d":6,"c":6,"a":7,":":-4,".":27,"-":11,",":29}},"s":{"d":"59,-144v7,45,75,31,75,88v0,59,-79,73,-122,45r11,-28v17,16,69,18,66,-16v-2,-47,-72,-26,-72,-86v0,-57,72,-70,112,-43r-11,26v-14,-15,-64,-16,-59,14","w":149,"k":{"\u00e6":-3,"\u00e5":-3,"\u00e4":-3,"\u00e2":-3,"\u00e0":-3,"\u00e1":-3,"y":3,"w":3,"v":3,"t":2,"s":4,"j":-5,"f":2,"a":-3,":":-2,".":-1,"-":10,",":4}},"t":{"d":"78,-53v-2,20,14,31,32,24r0,27v-36,13,-75,-6,-75,-48r0,-116r-22,0r0,-28r22,0r0,-43r43,-12r0,55r32,0r0,28r-32,0r0,113","w":123,"k":{"\u2019":-8,"\u0153":4,"\u00f8":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"t":1,"q":4,"o":4,"j":-5,"g":4,"f":1,"e":4,"d":4,"c":4,":":-7,".":-8,"-":9,",":-8}},"u":{"d":"67,-59v-3,32,39,40,62,26r0,-161r44,0r0,182v-47,25,-150,29,-150,-50r0,-132r44,0r0,135"},"v":{"d":"113,0r-42,0r-63,-194r46,0r40,152v10,-54,27,-101,40,-152r41,0","w":181,"k":{"\u2019":-10,"\u0153":4,"\u00f8":4,"\u00e6":7,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,":":-4,".":31,"-":3,",":35}},"w":{"d":"220,0r-40,0r-38,-147v-8,53,-26,97,-38,147r-40,0r-54,-194r44,0r33,151v10,-53,26,-100,39,-151r37,0r38,151v8,-54,23,-100,34,-151r39,0","w":283,"k":{"\u2019":-10,"\u0153":4,"\u00f8":4,"\u00e6":7,"\u00f6":4,"\u00e9":4,"\u00e5":7,"\u00e4":7,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,":":-3,".":28,"-":2,",":30}},"x":{"d":"125,0r-38,-71r-37,71r-44,0r60,-100r-54,-94r46,0r33,63r35,-63r41,0r-55,91r61,103r-48,0","w":178,"k":{"\u2019":-7,"\u00e9":6,"u":1,"q":6,"o":6,"g":6,"e":6,"d":5,"c":6,"a":1,":":-11,".":-11,"-":12,",":-11}},"y":{"d":"86,77r-46,0r32,-77r-64,-194r46,0r39,153v9,-55,28,-101,41,-153r41,0","w":181,"k":{"\u2019":-10,"\u00f3":4,"\u00e9":4,"\u00e4":7,"z":1,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":7,":":-4,".":33,"-":3,",":29}},"z":{"d":"10,0r74,-166r-68,0r0,-28r123,0r-72,166r74,0r0,28r-131,0","w":154,"k":{"\u2019":-5,"\u0153":7,"\u00f8":7,"\u00f6":7,"\u00f3":7,"\u00e8":7,"\u00e9":7,"q":6,"o":7,"g":6,"e":7,"d":7,"c":7,":":-10,".":-10,"-":12,",":-9}},"{":{"d":"51,-120v69,13,-5,150,70,143r0,23v-44,0,-75,-16,-76,-60v-1,-38,10,-95,-29,-94r0,-23v60,-2,2,-111,52,-139v14,-8,32,-13,53,-13r0,23v-76,-8,1,130,-70,140","w":139},"|":{"d":"26,77r0,-360r34,0r0,360r-34,0","w":86},"}":{"d":"94,-223v1,38,-11,92,29,92r0,23v-59,2,-2,114,-52,141v-14,8,-32,13,-53,13r0,-23v77,8,2,-129,70,-143v-41,-4,-31,-60,-32,-105v0,-26,-12,-35,-38,-35r0,-23v44,0,74,16,76,60","w":139},"~":{"d":"186,-127v-12,40,-70,30,-95,9v-22,-11,-43,7,-49,23r-14,-27v11,-40,69,-33,94,-10v23,8,44,-5,50,-22","w":214},"\u00c4":{"d":"139,-90r-33,-117v-8,42,-23,78,-34,117r67,0xm164,0r-19,-64r-80,0r-20,64r-41,0r82,-248r44,0r81,248r-47,0xm76,-307v11,0,20,9,20,18v0,11,-9,19,-20,19v-11,0,-21,-8,-21,-19v0,-10,10,-18,21,-18xm140,-307v11,0,21,8,21,18v0,11,-10,19,-21,19v-11,0,-20,-8,-20,-19v0,-9,9,-18,20,-18","w":215,"k":{"t":4,"s":-5,"f":1,"W":12,"V":14,"U":4,"T":17,"S":-4,"Q":4,"O":4,"G":4,"C":4}},"\u00c5":{"d":"139,-90r-33,-117v-8,42,-23,78,-34,117r67,0xm108,-279v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16v-10,0,-16,7,-16,16v0,8,7,16,16,16xm164,0r-19,-64r-80,0r-20,64r-41,0r82,-248r44,0r81,248r-47,0xm108,-326v17,2,30,12,30,31v1,15,-15,31,-30,30v-18,0,-29,-13,-30,-30v-1,-16,14,-32,30,-31","w":215,"k":{"t":4,"s":-5,"f":1,"W":12,"V":14,"T":17,"S":-4,"G":4,"C":4}},"\u00c7":{"d":"116,45v-4,-14,-22,-11,-45,-10r9,-14v31,-1,62,-4,65,24v-5,31,-52,31,-96,27r9,-15v22,1,51,4,58,-12xm65,-124v-4,60,34,114,88,84r11,30v-12,9,-29,14,-51,14v-68,0,-92,-58,-95,-128v-4,-88,65,-158,146,-113r-10,27v-8,-4,-18,-9,-32,-9v-46,4,-54,47,-57,95","w":174,"k":{"O":10}},"\u00c9":{"d":"26,0r0,-248r120,0r0,31r-75,0r0,75r67,0r0,30r-67,0r0,81r75,0r0,31r-120,0xm90,-266r-24,0r24,-51v11,-6,36,-12,44,1","w":161,"k":{"c":4,"T":5,"Q":4,"G":4,"C":4}},"\u00d1":{"d":"172,0r-109,-188r1,188r-38,0r0,-248r43,0r102,176r-1,-176r38,0r0,248r-36,0xm90,-307v25,0,55,32,69,-2r12,20v-16,48,-83,-22,-98,22r-10,-20v5,-12,12,-20,27,-20","w":234},"\u00d6":{"d":"111,-30v42,0,46,-49,46,-95v0,-46,-3,-96,-46,-96v-44,0,-47,51,-47,96v0,45,4,95,47,95xm111,-251v70,0,93,56,93,127v0,71,-23,128,-93,128v-71,0,-93,-57,-93,-128v0,-71,22,-127,93,-127xm78,-307v11,0,21,8,21,18v0,11,-10,19,-21,19v-11,0,-20,-8,-20,-19v0,-9,9,-18,20,-18xm143,-307v11,0,21,8,21,18v0,11,-10,19,-21,19v-11,0,-20,-8,-20,-19v0,-9,9,-18,20,-18","w":221,"k":{"Z":6,"W":4,"V":4,"T":11,"M":2}},"\u00dc":{"d":"109,-31v23,0,38,-17,38,-41r0,-176r42,0r0,176v-2,49,-33,76,-82,76v-49,0,-81,-27,-81,-76r0,-176r45,0r0,176v-1,24,16,40,38,41xm77,-307v11,0,20,9,21,18v-1,23,-41,25,-41,0v0,-9,9,-18,20,-18xm142,-307v11,0,20,9,20,18v0,11,-9,19,-20,19v-11,0,-21,-8,-21,-19v0,-10,10,-18,21,-18","w":214},"\u00e1":{"d":"55,-57v-2,36,40,43,67,31r0,-80v-35,4,-65,11,-67,49xm25,-183v46,-25,138,-24,138,52r0,121v-46,23,-153,23,-149,-45v3,-56,54,-66,108,-72v11,-55,-57,-47,-87,-31xm104,-215r-25,0r25,-50v11,-6,36,-13,43,1","w":186,"k":{"v":4,"t":3,"f":3}},"\u00e0":{"d":"55,-57v-2,36,40,43,67,31r0,-80v-35,4,-65,11,-67,49xm25,-183v46,-25,138,-24,138,52r0,121v-46,23,-153,23,-149,-45v3,-56,54,-66,108,-72v11,-55,-57,-47,-87,-31xm49,-264v7,-13,33,-8,43,-1r25,50r-24,0","w":186,"k":{"v":4,"t":3,"f":3}},"\u00e2":{"d":"55,-57v-2,36,40,43,67,31r0,-80v-35,4,-65,11,-67,49xm25,-183v46,-25,138,-24,138,52r0,121v-46,23,-153,23,-149,-45v3,-56,54,-66,108,-72v11,-55,-57,-47,-87,-31xm133,-213r-38,-28r-39,28r-12,-11v19,-13,36,-56,65,-37r36,37","w":186,"k":{"v":4,"t":3,"f":3}},"\u00e4":{"d":"55,-57v-2,36,40,43,67,31r0,-80v-35,4,-65,11,-67,49xm25,-183v46,-25,138,-24,138,52r0,121v-46,23,-153,23,-149,-45v3,-56,54,-66,108,-72v11,-55,-57,-47,-87,-31xm63,-256v11,0,21,7,21,18v0,10,-10,19,-21,19v-11,0,-20,-9,-20,-19v0,-11,9,-18,20,-18xm128,-256v11,0,21,7,21,18v0,10,-10,19,-21,19v-11,0,-20,-9,-20,-19v0,-11,9,-18,20,-18","w":186,"k":{"z":1,"x":3,"w":4,"v":4,"t":3,"f":3}},"\u00e3":{"d":"55,-57v-2,36,40,43,67,31r0,-80v-35,4,-65,11,-67,49xm25,-183v46,-25,138,-24,138,52r0,121v-46,23,-153,23,-149,-45v3,-56,54,-66,108,-72v11,-55,-57,-47,-87,-31xm40,-235v14,-50,81,20,97,-23r11,20v-7,26,-48,21,-65,7v-16,-5,-30,4,-33,16","w":186},"\u00e5":{"d":"55,-57v-2,36,40,43,67,31r0,-80v-35,4,-65,11,-67,49xm96,-228v9,0,16,-7,16,-16v0,-8,-8,-16,-16,-16v-9,0,-16,7,-16,16v-1,10,6,17,16,16xm25,-183v46,-25,138,-24,138,52r0,121v-46,23,-153,23,-149,-45v3,-56,54,-66,108,-72v11,-55,-57,-47,-87,-31xm96,-274v15,-1,31,15,30,30v0,18,-12,30,-30,31v-16,1,-32,-15,-31,-31v1,-17,12,-30,31,-30","w":186,"k":{"w":4,"v":4,"t":3,"f":3}},"\u00e7":{"d":"95,45v-3,-15,-21,-11,-44,-10r8,-14v31,-1,63,-4,66,24v-5,31,-52,31,-96,27r8,-15v22,1,52,4,58,-12xm60,-98v-6,49,32,88,69,61r10,27v-10,9,-24,15,-46,14v-54,-3,-74,-45,-77,-102v-4,-74,60,-124,122,-86r-9,25v-37,-26,-75,12,-69,61","w":149,"k":{"o":7,"e":7,"a":4}},"\u00e9":{"d":"136,-116v7,-51,-44,-72,-70,-38v-8,11,-11,28,-11,51xm16,-98v1,-59,26,-100,83,-100v57,0,80,39,78,100r-119,17v-1,58,63,64,102,43r10,28v-16,9,-36,15,-64,14v-59,-1,-91,-39,-90,-102xm106,-215r-25,0r26,-50v10,-6,36,-12,42,1","w":193,"k":{"z":7,"x":6,"v":4,"t":3,"s":1,"f":3,"a":5}},"\u00e8":{"d":"136,-116v7,-51,-44,-72,-70,-38v-8,11,-11,28,-11,51xm16,-98v1,-59,26,-100,83,-100v57,0,80,39,78,100r-119,17v-1,58,63,64,102,43r10,28v-16,9,-36,15,-64,14v-59,-1,-91,-39,-90,-102xm50,-264v6,-13,33,-7,43,-1r25,50r-24,0","w":193,"k":{"v":4,"t":3,"s":1,"f":3}},"\u00ea":{"d":"136,-116v7,-51,-44,-72,-70,-38v-8,11,-11,28,-11,51xm16,-98v1,-59,26,-100,83,-100v57,0,80,39,78,100r-119,17v-1,58,63,64,102,43r10,28v-16,9,-36,15,-64,14v-59,-1,-91,-39,-90,-102xm137,-213r-39,-28r-38,28r-12,-11v18,-13,35,-56,64,-37r37,37","w":193,"k":{"v":4,"t":3,"s":1,"f":3}},"\u00eb":{"d":"136,-116v7,-51,-44,-72,-70,-38v-8,11,-11,28,-11,51xm16,-98v1,-59,26,-100,83,-100v57,0,80,39,78,100r-119,17v-1,58,63,64,102,43r10,28v-16,9,-36,15,-64,14v-59,-1,-91,-39,-90,-102xm67,-256v11,0,20,7,20,18v0,10,-10,19,-20,19v-11,0,-21,-9,-21,-19v0,-11,10,-18,21,-18xm131,-256v11,0,21,7,21,18v0,10,-10,19,-21,19v-11,0,-20,-9,-20,-19v0,-11,9,-18,20,-18","w":193,"k":{"t":3,"s":1,"f":3}},"\u00ed":{"d":"25,0r0,-194r44,0r0,194r-44,0xm49,-215r-24,0r25,-50v11,-7,36,-12,43,1","w":93},"\u00ec":{"d":"25,0r0,-194r44,0r0,194r-44,0xm1,-264v6,-13,33,-7,43,-1r25,50r-24,0","w":93},"\u00ee":{"d":"25,0r0,-194r44,0r0,194r-44,0xm85,-213r-38,-28r-39,28r-12,-11v19,-13,36,-56,65,-37r37,37","w":93},"\u00ef":{"d":"25,0r0,-194r44,0r0,194r-44,0xm14,-256v11,0,21,7,21,18v0,10,-10,19,-21,19v-11,0,-20,-9,-20,-19v0,-11,9,-18,20,-18xm79,-256v11,0,21,7,21,18v0,10,-10,19,-21,19v-11,0,-20,-9,-20,-19v0,-11,9,-18,20,-18","w":93},"\u00f1":{"d":"23,-184v47,-20,153,-30,153,45r0,139r-44,0r0,-139v3,-35,-40,-35,-65,-26r0,165r-44,0r0,-184xm45,-235v14,-50,81,20,97,-23r11,20v-7,26,-48,21,-65,7v-15,-5,-29,4,-33,16","w":199},"\u00f3":{"d":"97,-26v34,0,37,-38,37,-71v0,-34,-2,-73,-37,-73v-34,0,-37,38,-37,73v0,35,4,71,37,71xm97,-198v57,0,80,41,80,101v-1,58,-23,101,-80,101v-58,0,-81,-43,-81,-101v0,-58,23,-101,81,-101xm104,-215r-25,0r25,-50v11,-6,36,-13,43,1","w":193,"k":{"z":6,"x":6,"v":4,"t":3,"f":3}},"\u00f2":{"d":"97,-26v34,0,37,-38,37,-71v0,-34,-2,-73,-37,-73v-34,0,-37,38,-37,73v0,35,4,71,37,71xm97,-198v57,0,80,41,80,101v-1,58,-23,101,-80,101v-58,0,-81,-43,-81,-101v0,-58,23,-101,81,-101xm48,-264v6,-14,33,-7,43,-1r25,50r-25,0","w":193},"\u00f4":{"d":"97,-26v34,0,37,-38,37,-71v0,-34,-2,-73,-37,-73v-34,0,-37,38,-37,73v0,35,4,71,37,71xm97,-198v57,0,80,41,80,101v-1,58,-23,101,-80,101v-58,0,-81,-43,-81,-101v0,-58,23,-101,81,-101xm135,-213r-38,-28r-39,28r-12,-11v19,-13,36,-56,65,-37r37,37","w":193,"k":{"v":4,"t":3,"f":3}},"\u00f6":{"d":"97,-26v34,0,37,-38,37,-71v0,-34,-2,-73,-37,-73v-34,0,-37,38,-37,73v0,35,4,71,37,71xm97,-198v57,0,80,41,80,101v-1,58,-23,101,-80,101v-58,0,-81,-43,-81,-101v0,-58,23,-101,81,-101xm64,-256v11,0,21,7,21,18v0,10,-10,19,-21,19v-11,0,-20,-9,-20,-19v0,-11,9,-18,20,-18xm129,-256v11,0,20,8,21,18v-1,23,-41,25,-41,0v0,-11,9,-18,20,-18","w":193,"k":{"z":6,"x":6,"w":4,"v":4,"t":3,"f":3}},"\u00f5":{"d":"97,-26v34,0,37,-38,37,-71v0,-34,-2,-73,-37,-73v-34,0,-37,38,-37,73v0,35,4,71,37,71xm97,-198v57,0,80,41,80,101v-1,58,-23,101,-80,101v-58,0,-81,-43,-81,-101v0,-58,23,-101,81,-101xm69,-255v26,-1,57,31,70,-3r11,20v-6,26,-48,21,-64,7v-16,-5,-29,4,-33,16r-11,-20v5,-10,11,-20,27,-20","w":193},"\u00fa":{"d":"67,-59v-3,32,39,40,62,26r0,-161r44,0r0,182v-47,25,-150,29,-150,-50r0,-132r44,0r0,135xm105,-215r-24,0r25,-50v10,-6,36,-12,43,1"},"\u00f9":{"d":"67,-59v-3,32,39,40,62,26r0,-161r44,0r0,182v-47,25,-150,29,-150,-50r0,-132r44,0r0,135xm53,-264v6,-14,33,-7,43,-1r25,50r-25,0"},"\u00fb":{"d":"67,-59v-3,32,39,40,62,26r0,-161r44,0r0,182v-47,25,-150,29,-150,-50r0,-132r44,0r0,135xm137,-213r-38,-28r-39,28r-12,-11v18,-13,35,-56,64,-37r37,37"},"\u00fc":{"d":"67,-59v-3,32,39,40,62,26r0,-161r44,0r0,182v-47,25,-150,29,-150,-50r0,-132r44,0r0,135xm66,-256v11,0,20,7,20,18v0,10,-10,19,-20,19v-11,0,-21,-9,-21,-19v0,-11,10,-18,21,-18xm131,-256v11,0,20,7,20,18v0,10,-10,19,-20,19v-11,0,-21,-9,-21,-19v0,-11,10,-18,21,-18"},"\u2020":{"d":"122,-156r4,233r-45,0r4,-233r-69,4r0,-44r69,4r-4,-91r45,0r-4,91r70,-4r0,44","w":208},"\u00b0":{"d":"75,-163v22,0,32,-14,34,-34v1,-18,-17,-33,-34,-33v-17,0,-35,15,-34,33v2,20,13,34,34,34xm75,-252v34,0,56,23,56,55v0,33,-21,56,-56,56v-34,0,-55,-22,-55,-56v0,-33,22,-55,55,-55","w":150},"\u00a2":{"d":"73,-125v-5,45,33,72,68,52r10,24v-10,6,-22,10,-39,11r4,38r-28,0r4,-39v-40,-7,-61,-37,-61,-86v0,-45,24,-79,61,-85r-3,-37r27,0r-3,36v16,0,28,5,37,12r-9,22v-33,-23,-74,9,-68,52"},"\u00a3":{"d":"93,-116v7,29,0,62,-13,80r98,0r0,36r-155,0v24,-27,47,-69,33,-116r-35,0r0,-25r28,0v-34,-80,47,-140,126,-97r-10,27v-31,-18,-81,-9,-81,37v0,13,2,22,5,33r49,0r0,25r-45,0"},"\u00a7":{"d":"110,-36v28,-12,33,-53,6,-77r-32,-28v-29,10,-36,61,-5,78xm144,-214v-25,-24,-82,3,-48,38v28,29,75,45,75,98v0,31,-21,47,-41,59v43,30,21,99,-39,99v-24,0,-39,-5,-52,-14r10,-26v18,21,82,10,61,-27v-22,-39,-84,-48,-84,-110v0,-32,21,-48,40,-61v-37,-28,-17,-92,38,-92v22,0,38,6,50,13"},"\u2022":{"d":"64,-172v25,3,43,16,43,43v0,26,-17,42,-43,42v-25,0,-42,-17,-42,-42v0,-26,18,-40,42,-43","w":128},"\u00b6":{"d":"9,-178v-1,-81,92,-71,173,-70r0,21r-12,0r0,304r-28,0r0,-304r-43,0r0,304r-29,0r0,-189v-34,-5,-61,-29,-61,-66"},"\u00df":{"d":"149,-160v-35,49,44,53,44,104v0,51,-61,72,-103,49r8,-29v17,13,54,5,52,-21v-3,-39,-54,-34,-51,-79v2,-25,16,-37,35,-44v5,-32,3,-78,-31,-76v-30,1,-35,32,-35,66r0,190r-44,0v9,-113,-37,-282,79,-286v60,-2,87,57,71,116v-11,2,-19,5,-25,10","w":207,"k":{"w":4,"v":4,"t":3,"f":3,":":-2,".":-1,"-":10,",":4}},"\u00ae":{"d":"125,-131v26,1,47,-5,47,-30v0,-23,-25,-28,-47,-23r0,53xm193,-161v0,25,-18,40,-41,42r48,68r-25,0r-45,-67r-5,0r0,67r-20,0r0,-144v32,-17,88,-7,88,34xm147,-15v64,0,108,-44,108,-108v0,-65,-43,-110,-108,-110v-65,0,-109,43,-109,110v0,66,45,108,109,108xm147,-251v77,0,127,51,127,128v0,76,-51,127,-127,127v-77,0,-128,-51,-128,-127v0,-77,51,-128,128,-128","w":293},"\u00a9":{"d":"92,-124v0,52,70,72,97,35r16,13v-37,50,-133,23,-133,-48v0,-71,93,-100,133,-49r-16,13v-27,-37,-97,-17,-97,36xm147,-15v64,0,108,-44,108,-108v0,-65,-43,-110,-108,-110v-65,0,-109,43,-109,110v0,66,45,108,109,108xm147,-251v77,0,127,51,127,128v0,76,-51,127,-127,127v-77,0,-128,-51,-128,-127v0,-77,51,-128,128,-128","w":293},"\u2122":{"d":"71,-231r0,108r-22,0r0,-108r-34,0r0,-17r90,0r0,17r-34,0xm238,-123r-12,-102r-31,102r-20,0r-31,-102r-12,102r-21,0r17,-125r29,0r28,100r28,-100r30,0r17,125r-22,0","w":281},"\u00b4":{"d":"39,-215r-25,0r25,-50v10,-6,36,-12,43,1","w":79},"\u00a8":{"d":"8,-256v11,0,20,7,20,18v0,10,-10,19,-20,19v-11,0,-21,-9,-21,-19v0,-11,10,-18,21,-18xm51,-238v0,-23,42,-23,42,0v-1,24,-41,24,-42,0","w":79},"\u2260":{"d":"84,-73r-25,41r-18,-10r19,-31r-33,0r0,-27r48,0r23,-39r-71,0r0,-27r86,0r23,-40r19,11r-18,29r32,0r0,27r-47,0r-23,39r70,0r0,27r-85,0"},"\u00c6":{"d":"143,-91r-23,-117v-12,41,-30,78,-44,117r67,0xm160,0r-14,-63r-80,0r-25,63r-42,0r104,-248r134,0r0,31r-85,0r19,75r66,0r0,30r-59,0r20,81r64,0r0,31r-102,0","w":270,"k":{"V":10,"T":12,"G":6,"C":6}},"\u00d8":{"d":"112,-27v59,-3,54,-99,41,-150r-79,124v7,14,18,27,38,26xm112,-224v-58,3,-56,98,-43,150r79,-124v-7,-14,-16,-27,-36,-26xm180,-218v44,66,35,222,-68,222v-27,0,-46,-9,-59,-23r-20,31r-13,-9r22,-34v-43,-68,-34,-220,70,-220v26,0,43,8,56,21r20,-30r13,8","w":222,"k":{"V":4,"T":8,"M":2}},"\u221e":{"d":"51,-121v0,39,53,40,70,15v4,-4,8,-9,13,-15v-14,-16,-23,-33,-49,-34v-20,-1,-34,15,-34,34xm221,-89v19,0,33,-14,34,-33v3,-37,-52,-44,-70,-17v-4,4,-8,10,-13,16v15,16,22,34,49,34xm221,-185v40,0,62,26,62,63v0,38,-23,63,-62,63v-36,0,-50,-20,-68,-40v-18,20,-32,40,-68,40v-38,0,-62,-25,-62,-63v0,-37,22,-63,62,-63v37,0,50,21,68,41v19,-20,30,-42,68,-41","w":306},"\u00b1":{"d":"27,-25r0,-27r142,0r0,27r-142,0xm113,-131r0,58r-29,0r0,-58r-57,0r0,-27r57,0r0,-57r29,0r0,57r56,0r0,27r-56,0"},"\u2264":{"d":"27,-33r0,-26r142,0r0,26r-142,0xm27,-133r0,-24r142,-52r0,28r-107,36r107,37r0,28"},"\u2265":{"d":"27,-33r0,-26r142,0r0,26r-142,0xm27,-80r0,-28r107,-37r-107,-36r0,-28r142,52r0,24"},"\u00a5":{"d":"143,-158r37,-3r0,20r-44,-3r-16,33r60,-2r0,20r-61,-3r1,96r-43,0r0,-96r-61,3r0,-20r60,2r-16,-33r-44,3r0,-20r38,3r-44,-90r46,0r44,106r46,-106r40,0"},"\u00b5":{"d":"67,-33v16,10,48,12,65,2r0,-163r44,0r0,182v-26,17,-80,21,-109,4r0,85r-44,0r0,-271r44,0r0,161","w":199},"\u03bc":{"d":"67,-33v16,10,48,12,65,2r0,-163r44,0r0,182v-26,17,-80,21,-109,4r0,85r-44,0r0,-271r44,0r0,161","w":199},"\u2202":{"d":"63,-93v-10,25,-10,70,23,67v44,-4,50,-52,52,-98v-37,-12,-65,4,-75,31xm76,-250v58,16,103,55,103,129v0,70,-28,122,-98,124v-41,0,-65,-23,-65,-62v0,-64,49,-103,119,-88v-8,-40,-36,-63,-72,-74"},"\u2211":{"d":"16,77r87,-173r-86,-152r160,0r0,31r-95,0r67,114r-72,145r103,0r0,35r-164,0"},"\u220f":{"d":"166,-133v30,-20,5,-67,-35,-52r0,57v14,2,26,0,35,-5xm110,-196v35,-17,93,-8,90,39v-2,37,-30,49,-69,46r0,65r-21,0r0,-150xm147,-15v64,0,108,-44,108,-108v0,-65,-43,-110,-108,-110v-65,0,-109,43,-109,110v0,66,45,108,109,108xm147,-251v77,0,127,51,127,128v0,76,-51,127,-127,127v-77,0,-128,-51,-128,-127v0,-77,51,-128,128,-128","w":293},"\u03c0":{"d":"195,-58v0,18,5,31,25,30r0,28v-46,5,-68,-12,-68,-56r0,-110r-66,0r0,166r-44,0r0,-166r-24,0r0,-28r202,0r0,28r-25,0r0,108","w":238},"\u222b":{"d":"48,49v23,1,35,-10,36,-32r0,-233v2,-45,30,-70,79,-66r0,28v-23,-1,-35,10,-36,32r0,233v-1,46,-30,69,-79,66r0,-28"},"\u00aa":{"d":"42,-162v-1,22,28,24,44,18r0,-47v-22,4,-43,5,-44,29xm23,-241v30,-15,91,-16,91,33r0,75v-30,16,-102,15,-100,-28v1,-37,37,-41,72,-45v6,-33,-38,-27,-56,-18","w":131},"\u00ba":{"d":"66,-145v35,-1,33,-86,0,-87v-34,1,-34,86,0,87xm66,-251v37,0,54,25,54,63v0,38,-17,64,-54,64v-37,0,-54,-26,-54,-64v0,-38,17,-63,54,-63","w":131},"\u00e6":{"d":"88,-21v39,2,34,-45,33,-84v-34,5,-68,9,-67,48v0,23,12,36,34,36xm237,-116v6,-50,-43,-72,-69,-39v-8,11,-11,28,-11,51xm271,-10v-34,21,-110,20,-126,-18v-21,50,-136,42,-131,-27v4,-56,55,-65,107,-72v10,-53,-56,-48,-86,-31r-9,-25v30,-18,106,-26,118,16v17,-38,91,-41,115,-5v12,18,20,41,19,74r-119,17v-3,54,62,65,101,44","w":294,"k":{"z":7,"w":4,"v":4,"t":3,"s":1,"f":3}},"\u00f8":{"d":"98,-23v48,-2,45,-81,33,-121r-61,106v6,8,14,15,28,15xm98,-174v-49,2,-47,81,-34,121r61,-106v-6,-9,-13,-15,-27,-15xm150,-177v50,46,38,181,-52,181v-18,0,-32,-5,-44,-14r-17,29r-11,-6r18,-31v-48,-47,-36,-186,53,-180v18,1,31,5,43,13r16,-28r11,7","w":195,"k":{"z":6,"w":4,"v":4,"t":3,"f":3}},"\u00bf":{"d":"60,17v-3,37,52,38,75,23r12,26v-50,33,-162,7,-128,-68v9,-19,27,-31,48,-37r4,-46r33,0r5,59v-24,5,-47,16,-49,43xm87,-173v13,0,26,13,26,26v0,14,-12,27,-26,27v-14,0,-27,-13,-27,-27v0,-14,13,-26,27,-26","w":151},"\u00a1":{"d":"33,77r10,-162r33,0r10,162r-53,0xm60,-172v14,0,26,12,26,26v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,12,-26,27,-26","w":111},"\u00ac":{"d":"139,-50r0,-56r-112,0r0,-29r142,0r0,85r-30,0"},"\u221a":{"d":"125,0r-40,0r-48,-155r-29,0r0,-25r62,0r34,127r46,-230r39,0"},"\u0192":{"d":"190,-217v-42,-18,-53,31,-57,68r39,0r0,28r-45,0r-23,122v-6,49,-45,96,-101,72r5,-30v36,15,48,-17,54,-51r22,-113r-39,0r0,-28r44,0v8,-59,29,-123,107,-97","w":210},"\u2248":{"d":"129,-86v18,1,31,-9,40,-18r0,28v-9,9,-20,18,-40,18v-27,0,-36,-22,-63,-22v-18,0,-31,7,-39,16r0,-29v8,-9,21,-16,39,-16v26,1,38,22,63,23xm129,-157v19,1,32,-9,40,-18r0,29v-9,9,-19,18,-40,17v-27,-1,-37,-20,-63,-22v-18,0,-31,7,-39,16r0,-28v8,-9,21,-16,39,-16v27,0,36,22,63,22"},"\u0394":{"d":"157,-28r-52,-176r-53,176r105,0xm210,0r-207,0r82,-248r44,0","w":213},"\u2206":{"d":"157,-28r-52,-176r-53,176r105,0xm210,0r-207,0r82,-248r44,0","w":213},"\u00ab":{"d":"72,-39r-54,-81r54,-82r24,14r-45,68r45,67xm144,-39r-54,-81r54,-82r24,14r-44,68r44,67","w":191},"\u00bb":{"d":"47,-39r-24,-14r44,-67r-44,-68r24,-14r54,82xm119,-39r-24,-14r45,-67r-45,-68r24,-14r54,82","w":191},"\u2026":{"d":"53,-50v14,0,26,11,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,11,-26,26,-26xm159,-50v14,0,26,11,26,26v0,14,-12,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,12,-26,27,-26xm265,-50v14,0,26,11,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,11,-26,26,-26","w":317},"\u00a0":{"w":97},"\u00c0":{"d":"139,-90r-33,-117v-8,42,-23,78,-34,117r67,0xm164,0r-19,-64r-80,0r-20,64r-41,0r82,-248r44,0r81,248r-47,0xm54,-316v6,-14,33,-7,43,-1r25,51r-25,0","w":215},"\u00c3":{"d":"139,-90r-33,-117v-8,42,-23,78,-34,117r67,0xm164,0r-19,-64r-80,0r-20,64r-41,0r82,-248r44,0r81,248r-47,0xm80,-307v24,0,58,30,70,-2r11,20v-15,48,-82,-22,-97,22r-11,-20v5,-11,12,-20,27,-20","w":215},"\u00d5":{"d":"111,-30v42,0,46,-49,46,-95v0,-46,-3,-96,-46,-96v-44,0,-47,51,-47,96v0,45,4,95,47,95xm111,-251v70,0,93,56,93,127v0,71,-23,128,-93,128v-71,0,-93,-57,-93,-128v0,-71,22,-127,93,-127xm84,-307v26,0,54,31,69,-2r11,20v-15,48,-83,-22,-97,22r-11,-20v5,-11,13,-20,28,-20","w":221},"\u0152":{"d":"64,-125v0,56,15,110,79,96r0,-191v-61,-17,-80,39,-79,95xm18,-124v0,-85,42,-124,131,-124r111,0r0,31r-75,0r0,75r67,0r0,30r-67,0r0,81r75,0r0,31r-111,0v-83,19,-131,-39,-131,-124","w":275,"k":{"T":4,"G":4,"C":4}},"\u0153":{"d":"96,-26v33,0,37,-37,37,-72v0,-35,-4,-72,-37,-72v-33,0,-37,37,-37,72v0,35,4,72,37,72xm248,-115v8,-50,-41,-75,-68,-41v-8,11,-12,28,-11,51xm283,-10v-37,23,-115,19,-129,-25v-11,22,-28,39,-58,39v-56,0,-80,-43,-80,-101v0,-58,24,-101,80,-101v30,0,45,15,57,36v15,-42,91,-48,117,-11v12,18,19,42,19,76r-117,14v-4,56,60,67,100,46","w":305,"k":{"z":7,"w":4,"v":4,"t":3,"s":1,"f":3}},"\u2013":{"d":"0,-107r0,-28r148,0r0,28r-148,0","w":147},"\u2014":{"d":"0,-109r0,-23r295,0r0,23r-295,0","w":295},"\u201c":{"d":"60,-186v-4,12,-39,20,-42,0r50,-97r23,0xm131,-186v-4,12,-39,20,-42,0r49,-97r23,0","w":173},"\u201d":{"d":"35,-175r-22,0r30,-97v5,-12,39,-20,42,0xm105,-175r-22,0r30,-97v5,-12,39,-19,43,0","w":173},"\u2018":{"d":"60,-186v-4,12,-39,20,-42,0r50,-97r23,0","w":103},"\u2019":{"d":"35,-175r-22,0r30,-97v5,-12,39,-20,42,0","w":103,"k":{"z":28,"y":25,"x":25,"w":25,"v":25,"u":32,"t":14,"s":40,"r":32,"q":45,"p":32,"o":45,"n":32,"m":32,"g":45,"f":12,"e":45,"d":45,"c":45,"a":42,"S":19,"R":11,"N":9,"M":24,"L":11,"D":14,"C":30}},"\u00f7":{"d":"98,-82v11,0,21,9,21,20v0,12,-9,21,-21,21v-12,0,-21,-10,-21,-21v0,-11,10,-20,21,-20xm27,-108r0,-23r142,0r0,23r-142,0xm98,-198v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-21,-9,-21,-20v0,-11,9,-21,21,-21"},"\u25ca":{"d":"112,-203r-60,76r65,82r60,-76xm114,-1r-98,-123r98,-123r99,123","w":229},"\u00ff":{"d":"86,77r-46,0r32,-77r-64,-194r46,0r40,145r40,-145r41,0xm61,-256v11,0,21,7,21,18v0,10,-10,19,-21,19v-11,0,-20,-9,-20,-19v0,-11,9,-18,20,-18xm126,-256v11,0,20,8,21,18v-1,23,-42,25,-42,0v0,-11,10,-18,21,-18","w":181},"\u0178":{"d":"116,-107r0,107r-46,0r0,-107r-67,-141r50,0r43,103r44,-103r43,0xm62,-307v11,0,21,8,21,18v0,11,-10,19,-21,19v-11,0,-20,-8,-20,-19v0,-9,9,-18,20,-18xm127,-307v11,0,20,9,21,18v-1,23,-41,25,-41,0v0,-9,9,-18,20,-18","w":185},"\u2044":{"d":"-15,8r-24,-11r115,-252r25,10","w":61},"\u2215":{"d":"-15,8r-24,-11r115,-252r25,10","w":61},"\u2039":{"d":"72,-39r-54,-81r54,-82r24,14r-45,68r45,67","w":118},"\u203a":{"d":"47,-39r-24,-14r44,-67r-44,-68r24,-14r54,82","w":118},"\u2021":{"d":"122,-21r4,98r-44,0r4,-98r-70,3r0,-36r70,2r0,-110r-70,3r0,-36r70,2r-4,-90r44,0r-4,90r70,-2r0,36r-70,-3r0,110r70,-2r0,36","w":208},"\u00b7":{"d":"47,-150v15,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-12,-26,-27v0,-14,11,-26,26,-26","w":94},"\u2219":{"d":"47,-150v15,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-12,-26,-27v0,-14,11,-26,26,-26","w":94},"\u201a":{"d":"35,61r-22,0r30,-97v6,-11,39,-20,42,0","w":103},"\u201e":{"d":"35,61r-22,0r30,-97v6,-11,39,-20,42,0xm105,61r-22,0r30,-97v6,-11,39,-19,43,0","w":173},"\u2030":{"d":"74,-103v30,-5,22,-54,22,-87v0,-20,-3,-42,-22,-43v-29,7,-22,54,-22,88v0,20,4,40,22,42xm239,-18v29,-6,22,-53,22,-87v0,-20,-4,-40,-22,-42v-29,6,-22,53,-22,87v0,20,4,40,22,42xm365,-18v29,-6,22,-54,22,-87v0,-20,-4,-40,-22,-42v-29,7,-22,54,-22,88v0,19,5,39,22,41xm74,-251v43,0,52,41,52,85v0,43,-10,84,-52,84v-43,0,-51,-41,-51,-84v0,-44,8,-85,51,-85xm125,3r-22,-6r85,-248r22,6xm239,-166v43,0,52,42,52,85v0,43,-9,85,-52,85v-43,0,-51,-42,-51,-85v0,-43,8,-85,51,-85xm365,-166v43,0,52,42,52,85v0,44,-9,85,-52,85v-43,0,-52,-41,-52,-85v0,-43,9,-85,52,-85","w":439},"\u00c2":{"d":"139,-90r-33,-117v-8,42,-23,78,-34,117r67,0xm164,0r-19,-64r-80,0r-20,64r-41,0r82,-248r44,0r81,248r-47,0xm147,-265r-39,-27r-39,27r-12,-10v19,-13,41,-62,65,-37r36,37","w":215,"k":{"V":14,"T":17}},"\u00ca":{"d":"26,0r0,-248r120,0r0,31r-75,0r0,75r67,0r0,30r-67,0r0,81r75,0r0,31r-120,0xm122,-265r-38,-27r-39,27r-12,-10v19,-13,40,-62,65,-37r36,37","w":161,"k":{"T":5}},"\u00c1":{"d":"139,-90r-33,-117v-8,42,-23,78,-34,117r67,0xm164,0r-19,-64r-80,0r-20,64r-41,0r82,-248r44,0r81,248r-47,0xm115,-266r-24,0r25,-51v10,-6,36,-12,43,1","w":215},"\u00cb":{"d":"26,0r0,-248r121,0r0,31r-75,0r0,75r66,0r0,30r-66,0r0,81r75,0r0,31r-121,0xm53,-307v11,0,20,9,20,18v0,11,-9,19,-20,19v-11,0,-21,-8,-21,-19v0,-10,10,-18,21,-18xm96,-289v0,-23,42,-23,42,0v-1,24,-41,24,-42,0","w":161},"\u00c8":{"d":"26,0r0,-248r120,0r0,31r-75,0r0,75r67,0r0,30r-67,0r0,81r75,0r0,31r-120,0xm38,-316v6,-13,33,-7,43,-1r25,51r-25,0","w":161,"k":{"T":5}},"\u00cd":{"d":"26,0r0,-248r46,0r0,248r-46,0xm51,-266r-24,0r25,-51v10,-6,36,-12,43,1","w":98},"\u00ce":{"d":"26,0r0,-248r46,0r0,248r-46,0xm88,-265r-39,-27r-38,27r-12,-10v19,-13,39,-62,64,-37r37,37","w":98},"\u00cf":{"d":"26,0r0,-248r46,0r0,248r-46,0xm17,-307v11,0,20,9,20,18v0,26,-40,22,-41,0v1,-9,10,-18,21,-18xm82,-307v11,0,20,9,20,18v0,11,-9,19,-20,19v-11,0,-21,-8,-21,-19v0,-10,10,-18,21,-18","w":98},"\u00cc":{"d":"27,0r0,-248r45,0r0,248r-45,0xm4,-316v6,-14,33,-7,43,-1r25,51r-25,0","w":98},"\u00d3":{"d":"111,-30v42,0,46,-49,46,-95v0,-46,-3,-96,-46,-96v-44,0,-47,51,-47,96v0,45,4,95,47,95xm111,-251v70,0,93,56,93,127v0,71,-23,128,-93,128v-71,0,-93,-57,-93,-128v0,-71,22,-127,93,-127xm113,-266r-24,0r25,-51v11,-7,36,-12,43,1","w":221,"k":{"V":4,"T":11}},"\u00d4":{"d":"111,-30v42,0,46,-49,46,-95v0,-46,-3,-96,-46,-96v-44,0,-47,51,-47,96v0,45,4,95,47,95xm111,-251v70,0,93,56,93,127v0,71,-23,128,-93,128v-71,0,-93,-57,-93,-128v0,-71,22,-127,93,-127xm149,-265r-38,-27r-39,27r-12,-10v19,-13,40,-62,65,-37r37,37","w":221,"k":{"V":4,"T":11,"M":2}},"\u00d2":{"d":"111,-30v42,0,46,-49,46,-95v0,-46,-3,-96,-46,-96v-44,0,-47,51,-47,96v0,45,4,95,47,95xm111,-251v70,0,93,56,93,127v0,71,-23,128,-93,128v-71,0,-93,-57,-93,-128v0,-71,22,-127,93,-127xm63,-316v7,-13,34,-7,44,-1r24,51r-24,0","w":221},"\u00da":{"d":"109,-31v23,0,38,-17,38,-41r0,-176r42,0r0,176v-2,49,-33,76,-82,76v-49,0,-81,-27,-81,-76r0,-176r45,0r0,176v-1,24,16,40,38,41xm111,-266r-24,0r25,-51v11,-7,36,-12,43,1","w":214},"\u00db":{"d":"109,-31v23,0,38,-17,38,-41r0,-176r42,0r0,176v-2,49,-33,76,-82,76v-49,0,-81,-27,-81,-76r0,-176r45,0r0,176v-1,24,16,40,38,41xm147,-265r-38,-27r-39,27r-12,-10v19,-13,41,-62,65,-37r36,37","w":214},"\u00d9":{"d":"109,-31v23,0,38,-17,38,-41r0,-176r42,0r0,176v-2,49,-33,76,-82,76v-49,0,-81,-27,-81,-76r0,-176r45,0r0,176v-1,24,16,40,38,41xm65,-316v6,-13,33,-7,43,-1r25,51r-24,0","w":214},"\u0131":{"d":"23,0r0,-194r44,0r0,194r-44,0","w":90},"\u02c6":{"d":"78,-213r-38,-28r-39,28r-12,-11v19,-13,36,-56,65,-37r37,37","w":79},"\u02dc":{"d":"13,-255v0,0,58,31,70,-3r11,20v-7,26,-48,21,-65,7v-16,-5,-30,4,-33,16r-10,-20v5,-10,11,-20,27,-20","w":79},"\u00af":{"d":"-15,-226r0,-23r110,0r0,23r-110,0","w":79},"\u02c9":{"d":"-15,-226r0,-23r110,0r0,23r-110,0","w":79},"\u02d8":{"d":"89,-261v3,53,-83,63,-95,15v-2,-6,-3,-10,-3,-15r15,-5v7,38,61,37,69,0","w":79},"\u02d9":{"d":"40,-271v12,0,22,10,22,22v0,12,-9,22,-22,22v-12,0,-23,-9,-22,-22v0,-12,10,-22,22,-22","w":79},"\u02da":{"d":"40,-228v9,0,16,-7,16,-16v0,-22,-32,-19,-32,0v0,9,6,16,16,16xm40,-274v15,-1,31,15,30,30v-1,18,-12,31,-30,31v-16,1,-32,-15,-31,-31v1,-17,12,-30,31,-30","w":79},"\u00b8":{"d":"58,45v-3,-15,-21,-11,-44,-10r8,-14v31,-1,63,-4,66,24v-6,30,-52,31,-96,27r8,-15v22,1,52,4,58,-12","w":79},"\u02dd":{"d":"7,-215r-17,0v16,-19,19,-57,57,-51v2,1,3,3,3,5xm57,-215r-17,0v17,-19,19,-57,57,-51v2,1,3,3,3,5","w":79},"\u02db":{"d":"51,37v5,13,22,12,40,4r5,14v-20,11,-74,21,-74,-11v0,-27,16,-33,39,-46r27,0v-17,11,-33,17,-37,39","w":79},"\u02c7":{"d":"91,-257v-20,12,-41,61,-65,37r-37,-37r12,-10r39,28r39,-28","w":79},"\u0160":{"d":"134,-209v-22,-18,-80,-15,-74,25v9,57,94,37,94,112v0,70,-84,93,-141,62r11,-32v26,17,85,17,81,-27v-5,-57,-89,-36,-89,-110v0,-66,76,-90,128,-58xm137,-308v-19,13,-36,56,-66,37r-36,-37r11,-11r40,28r39,-28","w":170},"\u0161":{"d":"59,-144v7,45,75,31,75,88v0,59,-79,73,-122,45r11,-28v17,16,69,18,66,-16v-2,-47,-72,-26,-72,-86v0,-57,72,-70,112,-43r-11,26v-14,-15,-64,-16,-59,14xm126,-257v-19,13,-37,57,-66,37r-36,-37r12,-10r39,28r39,-28","w":149},"\u00dd":{"d":"116,-107r0,107r-46,0r0,-107r-67,-141r50,0r43,103r44,-103r43,0xm100,-266r-24,0r25,-51v10,-6,36,-12,43,1","w":185},"\u00fd":{"d":"86,77r-46,0r32,-77r-64,-194r46,0r40,145r40,-145r41,0xm99,-215r-24,0r25,-50v10,-6,36,-12,43,1","w":181},"\u00de":{"d":"107,-85v50,-10,40,-98,-15,-98v-7,0,-14,1,-21,3r0,96v12,2,26,2,36,-1xm71,-206v103,-37,160,115,56,148v-15,5,-37,4,-56,2r0,56r-45,0r0,-248r45,0r0,42","w":198},"\u00fe":{"d":"67,-27v47,13,71,-22,71,-71v0,-51,-24,-87,-71,-68r0,139xm67,-189v61,-26,115,18,115,87v0,70,-42,115,-115,101r0,78r-44,0r0,-360r44,0r0,94","w":198},"\u017d":{"d":"8,0r84,-217r-78,0r0,-31r135,0r-82,217r84,0r0,31r-143,0xm132,-308v-19,13,-35,56,-65,37r-37,-37r12,-11r39,28r39,-28","w":162},"\u017e":{"d":"10,0r74,-166r-68,0r0,-28r123,0r-72,166r74,0r0,28r-131,0xm128,-257v-19,13,-41,62,-66,37r-37,-37r12,-10r40,28r39,-28","w":154},"\u00bd":{"d":"15,-225v22,-3,40,-10,49,-23r22,0r0,152r-31,0r0,-117v-11,4,-23,5,-37,6xm95,8r-25,-11r116,-252r24,10xm181,-145v38,-22,111,-1,86,54v-11,23,-33,45,-48,65r54,0r0,26r-101,0v21,-36,59,-61,67,-108v4,-25,-33,-27,-50,-17","w":296},"\u00bc":{"d":"232,-121r-41,71r40,0xm15,-225v22,-3,40,-10,49,-23r22,0r0,152r-31,0r0,-117v-11,4,-23,5,-37,6xm100,8r-24,-11r116,-252r24,10xm261,-31r0,31r-30,0r0,-31r-60,0r0,-19r61,-102r29,0r0,102r12,0r0,19r-12,0","w":296},"\u00b9":{"d":"24,-225v23,-3,40,-9,49,-23r22,0r0,152r-31,0r0,-117v-10,4,-22,6,-36,6","w":135},"\u00be":{"d":"234,-121r-41,71r40,0xm86,-181v50,15,29,87,-26,87v-19,0,-31,-3,-43,-9r8,-21v18,11,57,11,57,-17v0,-23,-18,-26,-39,-26r0,-18v33,3,50,-41,13,-43v-9,0,-18,2,-26,6r-8,-19v27,-16,87,-13,87,28v0,16,-13,27,-23,32xm111,8r-24,-11r116,-252r24,10xm263,-31r0,31r-30,0r0,-31r-60,0r0,-19r61,-102r29,0r0,102r11,0r0,19r-11,0","w":296},"\u00b3":{"d":"86,-181v50,15,29,87,-26,87v-19,0,-31,-3,-43,-9r8,-21v18,11,57,11,57,-17v0,-23,-18,-26,-39,-26r0,-18v33,3,50,-41,13,-43v-9,0,-18,2,-26,6r-8,-19v27,-16,87,-13,87,28v0,16,-13,27,-23,32","w":135},"\u00b2":{"d":"22,-241v40,-23,113,0,87,54v-11,22,-33,45,-48,66r55,0r0,25r-101,0v21,-37,57,-61,67,-107v5,-25,-35,-27,-52,-17","w":135},"\u00a6":{"d":"26,77r0,-143r34,0r0,143r-34,0xm26,-140r0,-143r34,0r0,143r-34,0","w":86},"\u2212":{"d":"27,-105r0,-29r142,0r0,29r-142,0"},"\u00d7":{"d":"152,-42r-54,-58r-53,58r-19,-19r53,-59r-53,-58r19,-19r53,57r53,-57r20,19r-54,58r54,59"},"\u0142":{"d":"78,-156r0,156r-44,0r0,-140r-23,12r0,-26r23,-12r0,-117r44,0r0,102r26,-13r0,26","w":112},"\u03a9":{"d":"219,-140v0,44,-17,82,-38,109r45,0r0,31r-93,0v25,-33,41,-80,41,-138v0,-44,-10,-83,-53,-83v-44,0,-54,39,-54,83v0,58,15,105,41,138r-93,0r0,-31r45,0v-54,-60,-56,-226,61,-220v67,3,98,46,98,111","w":241},"\u2126":{"d":"219,-140v0,44,-17,82,-38,109r45,0r0,31r-93,0v25,-33,41,-80,41,-138v0,-44,-10,-83,-53,-83v-44,0,-54,39,-54,83v0,58,15,105,41,138r-93,0r0,-31r45,0v-54,-60,-56,-226,61,-220v67,3,98,46,98,111","w":241},"\u00a4":{"d":"98,-80v25,-2,43,-16,43,-43v0,-26,-17,-43,-43,-43v-26,0,-43,18,-43,43v0,26,18,40,43,43xm155,-165v17,19,17,64,0,83r25,25r-15,16r-25,-25v-21,16,-63,17,-83,-1r-25,26r-16,-16r25,-25v-16,-21,-16,-62,0,-83r-25,-25r16,-15r25,25v19,-17,64,-17,83,0r25,-25r15,15"},"\u00d0":{"d":"78,-31v63,14,85,-27,85,-95v0,-65,-24,-110,-85,-92r0,72r35,0r0,26r-35,0r0,89xm102,-251v76,1,108,50,108,125v0,76,-30,129,-106,130v-27,1,-54,-6,-71,-14r0,-110r-19,0r0,-26r19,0r0,-91v17,-8,43,-15,69,-14","w":227},"\u00f0":{"d":"98,-26v53,0,37,-100,24,-141v-46,-15,-64,24,-62,70v2,35,4,71,38,71xm130,-249v46,59,90,253,-32,253v-58,0,-82,-43,-82,-100v0,-62,33,-112,100,-97v-9,-17,-13,-29,-23,-44v-13,1,-32,19,-37,1v-2,-4,-5,-6,-7,-8r32,-10v-6,-9,-9,-13,-17,-20r37,-12r17,20v17,-7,36,-13,40,8","w":195},"\u0141":{"d":"31,0r0,-139r-21,10r0,-25r21,-10r0,-84r46,0r0,68r26,-13r0,25r-26,12r0,125r68,0r0,31r-114,0","w":155}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1987, 1992, 1998, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a trademark of Linotype GmbH registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions.
 * 
 * Full name:
 * EurostileLTStd
 * 
 * Designer:
 * Aldo Novarese, A. Butti
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":248,"face":{"font-family":"Eurostile LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 2 2 2 5 2 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-24 -348 454.416 90","underline-thickness":"18","underline-position":"-18","stemh":"23","stemv":"28","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":124},"!":{"d":"66,-37r0,37r-33,0r0,-37r33,0xm66,-270r-3,195r-27,0r-3,-195r33,0","w":97},"\"":{"d":"18,-270r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89xm76,-270r33,0v2,34,-3,62,-9,89r-15,0v-5,-27,-11,-54,-9,-89","w":127},"#":{"d":"98,-270r28,0r-13,73r45,0r12,-73r29,0r-13,73r33,0r0,29r-38,0r-10,59r36,0r0,29r-42,0r-13,80r-28,0r14,-80r-45,0r-14,80r-27,0r13,-80r-36,0r0,-29r42,0r9,-59r-38,0r0,-29r43,0xm108,-168r-9,59r44,0r10,-59r-45,0"},"$":{"d":"113,-150r0,-95v-48,0,-69,1,-69,47v0,50,27,48,69,48xm136,-125r0,100v53,0,72,-3,72,-50v0,-51,-23,-48,-72,-50xm136,-245r0,95v57,1,102,1,102,72v0,69,-31,78,-102,78r0,31r-23,0r0,-31v-71,2,-105,-9,-102,-84r30,0v0,47,-2,60,72,59r0,-100v-58,0,-100,-2,-100,-69v0,-70,35,-76,100,-76r0,-25r23,0r0,25v69,-2,99,7,96,76r-31,0v1,-45,-6,-53,-65,-51"},"%":{"d":"251,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm251,-135v59,0,61,32,59,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm263,-270r-183,272r-24,0r182,-272r25,0xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-155v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-35,32,-35,67v0,30,5,30,35,30","w":318},"&":{"d":"203,-52r-106,-87v-40,9,-43,15,-43,58v0,53,8,56,72,56v29,0,71,3,77,-27xm266,0r-40,-33v-15,35,-57,35,-100,35v-60,0,-103,0,-103,-84v0,-66,20,-63,55,-73v-18,-15,-24,-23,-24,-53v0,-53,29,-64,82,-64v55,0,82,20,77,85r-31,0v0,-40,2,-58,-46,-58v-29,0,-52,1,-52,37v0,19,5,25,19,37r105,89v1,-12,1,-25,0,-37r29,0v0,21,1,41,-3,59r49,39","w":283},"\u2019":{"d":"36,-233r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24","w":72,"k":{"\u2019":19,"s":14,"\u0161":14}},"(":{"d":"90,-272r0,27v-38,-6,-40,31,-40,57r0,157v-1,25,2,64,40,58r0,27v-59,4,-70,-36,-70,-85r0,-157v-1,-49,11,-88,70,-84","w":112},")":{"d":"22,-245r0,-27v59,-4,71,35,71,84r0,157v1,49,-12,90,-71,85r0,-27v38,6,40,-32,40,-58r0,-157v1,-25,-2,-63,-40,-57","w":112},"*":{"d":"196,-212r-55,20r33,47r-16,12r-33,-48r-36,48r-16,-12r34,-47r-55,-21r7,-19r55,20r0,-58r20,0r0,58r55,-20"},"+":{"d":"92,-189r27,0r0,73r73,0r0,27r-73,0r0,74r-27,0r0,-74r-74,0r0,-27r74,0r0,-73","w":210},",":{"d":"57,0r-13,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,18,-8,17,-24","w":124},"-":{"d":"0,-112r94,0r0,27r-94,0r0,-27","w":93},".":{"d":"72,-37r0,37r-32,0r0,-37r32,0","w":124},"\/":{"d":"252,-270r-209,311r-33,0r208,-311r34,0","w":261},"0":{"d":"124,-245v-66,0,-84,0,-84,70r0,80v0,70,18,70,84,70v67,0,84,0,84,-70r0,-80v0,-70,-17,-70,-84,-70xm125,2v-84,0,-114,-11,-116,-97r0,-80v2,-86,31,-97,115,-97v84,0,113,11,115,97r0,80v-2,86,-30,97,-114,97"},"1":{"d":"161,-270r0,270r-30,0r0,-247r-69,76r-20,-18r75,-81r44,0"},"2":{"d":"220,-27r0,27r-194,0r0,-46v0,-70,30,-74,95,-81v57,-6,69,-4,69,-60v0,-56,-12,-58,-63,-58v-73,0,-71,11,-70,68r-31,0v0,-69,-1,-95,101,-95v72,0,94,17,94,85v0,72,-25,83,-93,87v-68,4,-73,17,-71,73r163,0"},"3":{"d":"99,-125r0,-27v47,-3,87,14,87,-45v0,-45,-6,-48,-70,-48v-58,0,-61,10,-61,58r-31,0v-4,-74,28,-85,96,-85v58,0,96,0,96,70v0,36,-7,58,-44,64v41,3,50,22,50,62v0,81,-40,78,-105,78v-70,0,-102,-16,-96,-89r30,0v-1,51,-2,62,66,62v66,0,74,-1,74,-55v0,-59,-44,-42,-92,-45"},"4":{"d":"193,-270r0,181r40,0r0,27r-40,0r0,62r-30,0r0,-62r-152,0r0,-36r136,-172r46,0xm163,-89r-1,-161r-126,161r127,0"},"5":{"d":"60,-243r0,81v13,-22,50,-23,73,-23v84,0,91,39,91,91v0,85,-17,96,-99,96v-77,0,-97,-12,-101,-79r31,0v-3,48,18,52,70,52v63,0,68,-10,68,-69v0,-58,-10,-64,-68,-64v-22,0,-60,-4,-65,25r-31,0r0,-137r184,0r0,27r-153,0"},"6":{"d":"131,-140v-59,0,-76,3,-76,47v0,59,5,68,69,68v67,0,70,-8,70,-57v0,-51,-5,-58,-63,-58xm24,-93r0,-107v1,-64,39,-72,102,-72v47,0,96,4,92,70r-30,0v2,-41,-19,-43,-62,-43v-49,0,-71,-1,-71,45r0,58v7,-17,28,-25,69,-25v75,0,100,9,100,85v0,73,-23,84,-100,84v-76,0,-100,-11,-100,-95"},"7":{"d":"220,-270r0,39r-131,231r-36,0r141,-245r-171,0r0,-25r197,0"},"8":{"d":"23,-75v0,-40,7,-57,47,-66v-37,-6,-43,-21,-43,-61v0,-67,30,-70,97,-70v64,0,98,2,98,70v0,35,-4,55,-43,62v37,6,46,21,46,65v0,69,-23,77,-101,77v-64,0,-101,0,-101,-77xm58,-202v0,41,4,49,66,49v62,0,67,-7,67,-49v0,-37,-5,-43,-67,-43v-62,0,-66,4,-66,43xm54,-75v0,44,3,49,70,50v60,1,70,-9,70,-50v0,-45,-8,-51,-70,-51v-60,0,-70,3,-70,51"},"9":{"d":"126,-132v62,0,69,-3,69,-54v0,-58,-15,-59,-69,-59v-62,0,-69,2,-69,59v0,51,10,54,69,54xm126,2v-67,0,-107,-5,-103,-71r30,0v-1,41,7,44,73,44v57,0,69,-2,69,-58v-1,-15,2,-33,-1,-46v-12,26,-57,24,-68,24v-75,0,-100,-9,-100,-81v0,-74,22,-86,100,-86v76,0,100,12,100,86r0,103v0,68,-14,85,-100,85"},":":{"d":"72,-37r0,37r-32,0r0,-37r32,0xm72,-189r0,37r-32,0r0,-37r32,0","w":124},";":{"d":"57,0r-13,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,18,-8,17,-24xm76,-189r0,37r-32,0r0,-37r32,0","w":124},"<":{"d":"192,-174r0,29r-142,58r142,58r0,29r-174,-75r0,-25","w":210},"=":{"d":"18,-144r174,0r0,27r-174,0r0,-27xm18,-88r174,0r0,27r-174,0r0,-27","w":210},">":{"d":"192,-100r0,25r-174,75r0,-29r141,-58r-141,-58r0,-29","w":210},"?":{"d":"108,-77r-31,0v-1,-43,6,-50,51,-67v30,-11,33,-15,33,-56v0,-40,-10,-45,-54,-45v-52,0,-60,11,-58,60r-28,0v-3,-71,22,-87,86,-87v59,0,83,13,83,72v0,44,-3,65,-47,80v-35,11,-36,13,-35,43xm108,-37r0,37r-32,0r0,-37r32,0","w":210},"@":{"d":"232,-198r25,0r-32,101v-3,10,4,16,20,16v34,0,50,-48,50,-81v0,-54,-60,-87,-111,-87v-64,0,-122,61,-121,125v2,83,97,124,175,92r9,21v-97,39,-213,-13,-211,-116v2,-78,70,-145,147,-145v63,0,137,38,137,107v0,48,-30,105,-83,105v-16,0,-33,-5,-36,-23v-12,12,-24,23,-43,23v-33,0,-53,-29,-51,-60v2,-41,33,-83,77,-85v17,-1,37,11,41,28xm166,-81v41,0,75,-103,20,-103v-32,0,-52,37,-52,65v0,18,12,38,32,38","w":356},"A":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0","w":246},"B":{"d":"53,-125r0,98r96,0v33,0,50,-4,50,-45v0,-36,-6,-53,-46,-53r-100,0xm166,0r-144,0r0,-270r137,0v51,0,62,24,62,71v0,29,-7,47,-33,58v36,6,41,33,41,66v0,49,-17,75,-63,75xm53,-243r0,91v60,-7,138,26,138,-51v0,-68,-85,-31,-138,-40","w":249},"C":{"d":"231,-67v1,79,-66,68,-136,69v-49,0,-79,-31,-79,-85r0,-104v0,-86,61,-85,138,-85v60,0,75,29,74,86r-31,0v4,-48,-14,-59,-65,-59v-63,0,-85,8,-85,57v0,68,-22,169,53,163v51,-4,110,8,101,-45r0,-22r30,0r0,25","w":239},"D":{"d":"23,0r0,-270r131,0v33,0,93,4,93,104r0,64v0,27,-4,102,-85,102r-139,0xm54,-27r100,0v80,3,58,-80,62,-151v0,-15,-6,-65,-57,-65r-105,0r0,216","w":264},"E":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0","w":201},"F":{"d":"54,-243r0,94r131,0r0,26r-131,0r0,123r-31,0r0,-270r166,0r0,27r-135,0","w":197,"k":{"A":15,"\u00c6":15,"\u00c1":15,"\u00c2":15,"\u00c4":15,"\u00c0":15,"\u00c5":15,"\u00c3":15,",":50,".":50}},"G":{"d":"122,-135r117,0r0,59v3,75,-47,78,-119,78v-72,0,-104,-13,-104,-97r0,-83v0,-106,62,-94,150,-94v49,0,78,24,72,81r-31,0v13,-58,-37,-54,-94,-54v-58,0,-67,11,-67,70r0,87v-4,63,37,63,97,63v70,0,66,-25,65,-83r-86,0r0,-27","w":250},"H":{"d":"245,-270r0,270r-31,0r0,-124r-158,0r0,124r-30,0r0,-270r30,0r0,119r158,0r0,-119r31,0","w":270},"I":{"d":"57,-270r0,270r-31,0r0,-270r31,0","w":82},"J":{"d":"147,-270r30,0r0,205v0,54,-34,67,-82,67v-47,0,-85,-8,-85,-61r0,-39r31,0v1,45,-8,73,49,73v28,0,57,0,57,-36r0,-209","w":203},"K":{"d":"57,-270r0,118r26,0r110,-118r40,0r-123,131r138,139r-41,0r-124,-125r-26,0r0,125r-31,0r0,-270r31,0","w":244},"L":{"d":"58,-270r0,243r137,0r0,27r-168,0r0,-270r31,0","w":200,"k":{"T":28,"V":17,"W":12,"y":13,"\u00fd":13,"\u00ff":13,"Y":29,"\u00dd":29,"\u0178":29,"\u2019":36}},"M":{"d":"292,-247r-103,247r-30,0r-103,-247r0,247r-31,0r0,-270r53,0r96,231r95,-231r53,0r0,270r-30,0r0,-247","w":347},"N":{"d":"257,-270r0,270r-50,0r-152,-245r0,245r-31,0r0,-270r51,0r152,247r0,-247r30,0","w":281},"O":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96","w":241},"P":{"d":"21,0r0,-270r138,0v52,0,64,36,64,82v0,24,0,83,-66,83r-105,0r0,105r-31,0xm193,-184v0,-93,-76,-49,-141,-59r0,111v62,-9,141,31,141,-52","w":237,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":90,".":90}},"Q":{"d":"264,-33r-12,21r-21,-14v-25,31,-69,28,-120,28v-109,0,-90,-84,-93,-179v-3,-83,49,-95,135,-95v69,0,94,25,94,95v0,43,4,95,-5,129xm137,-117r78,51v5,-37,2,-81,2,-122v0,-33,-9,-57,-58,-57v-60,-1,-110,-6,-110,61r0,88v-7,84,44,70,110,71v18,0,39,-4,48,-17r-84,-54","w":265},"R":{"d":"55,-108r0,108r-30,0r0,-270v91,7,208,-32,208,78v0,39,-6,65,-47,72v57,0,42,66,44,120r-31,0v-3,-51,14,-108,-45,-108r-99,0xm55,-135r95,0v47,-1,53,-15,53,-60v0,-71,-91,-43,-148,-48r0,108","w":252,"k":{"T":2,"y":-5,"\u00fd":-5,"\u00ff":-5,"Y":2,"\u00dd":2,"\u0178":2}},"S":{"d":"112,-125v-53,-4,-99,2,-99,-69v0,-72,33,-78,100,-78v58,0,100,3,97,76r-31,0v-1,-47,-10,-49,-67,-49v-60,0,-68,8,-68,45v0,51,24,46,74,48v64,3,97,2,97,75v0,76,-36,79,-104,79v-69,0,-105,-8,-99,-86r31,0v-1,59,11,59,68,59v58,0,73,0,73,-53v0,-51,-23,-43,-72,-47","w":226},"T":{"d":"120,-243r0,243r-31,0r0,-243r-88,0r0,-27r206,0r0,27r-87,0","w":208,"k":{"\u00fc":34,"\u0161":34,"\u00f2":34,"\u00f6":34,"\u00e8":34,"\u00eb":34,"\u00ea":34,"\u00e3":34,"\u00e5":34,"\u00e0":34,"\u00e4":34,"\u00e2":34,"w":21,"y":23,"\u00fd":23,"\u00ff":23,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":58,".":58,"-":22,"a":34,"\u00e6":34,"\u00e1":34,"c":34,"\u00e7":34,"e":34,"\u00e9":34,"i":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"o":34,"\u00f8":34,"\u0153":34,"\u00f3":34,"\u00f4":34,"\u00f5":34,"r":24,"s":34,"u":34,"\u00fa":34,"\u00fb":34,"\u00f9":34,":":29,";":29}},"U":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194","w":265},"V":{"d":"201,-270r33,0r-96,270r-44,0r-96,-270r33,0r86,247","w":231,"k":{"\u00f6":22,"\u00f4":22,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e3":22,"\u00e5":22,"\u00e0":22,"\u00e4":22,"\u00e2":22,"y":5,"\u00fd":5,"\u00ff":5,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":54,".":54,"-":11,"a":22,"\u00e6":22,"\u00e1":22,"e":22,"\u00e9":22,"o":22,"\u00f8":22,"\u0153":22,"\u00f3":22,"\u00f2":22,"\u00f5":22,"r":15,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,":":22,";":22}},"W":{"d":"404,-270r-85,270r-47,0r-71,-243r-72,243r-45,0r-83,-270r31,0r74,247r73,-247r45,0r73,247r75,-247r32,0","w":404,"k":{"\u00fc":16,"\u00f6":20,"\u00ea":21,"\u00e4":20,"y":5,"\u00fd":5,"\u00ff":5,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":47,".":47,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":21,"\u00e9":21,"\u00eb":21,"\u00e8":21,"i":-3,"\u00ed":-3,"\u00ee":-3,"\u00ef":-3,"\u00ec":-3,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"r":14,"u":16,"\u00fa":16,"\u00fb":16,"\u00f9":16,":":18,";":18}},"X":{"d":"231,-270r-87,130r93,140r-36,0r-82,-124r-84,124r-37,0r96,-140r-88,-130r36,0r77,116r76,-116r36,0","w":235},"Y":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0","w":227,"k":{"\u00fc":35,"\u00f6":40,"v":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,",":54,".":54,"-":25,"a":40,"\u00e6":40,"\u00e1":40,"\u00e2":40,"\u00e4":40,"\u00e0":40,"\u00e5":40,"\u00e3":40,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f2":40,"\u00f5":40,"u":35,"\u00fa":35,"\u00fb":35,"\u00f9":35,":":22,";":22,"p":33,"q":40}},"Z":{"d":"216,-270r0,28r-170,215r174,0r0,27r-211,0r0,-27r170,-216r-165,0r0,-27r202,0","w":229},"[":{"d":"20,-272r70,0r0,27r-40,0r0,272r40,0r0,27r-70,0r0,-326","w":111},"\\":{"d":"85,41r-103,-311r33,0r103,311r-33,0","w":100},"]":{"d":"92,54r-70,0r0,-27r40,0r0,-272r-40,0r0,-27r70,0r0,326","w":111},"^":{"d":"93,-270r25,0r74,176r-29,0r-58,-141r-58,141r-29,0","w":210},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"\u2018":{"d":"37,-232r13,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-18,8,-17,24","w":72,"k":{"\u2018":19}},"a":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129","w":205},"b":{"d":"159,-94v0,-62,-7,-74,-52,-74v-50,0,-53,20,-53,74v0,61,11,73,53,73v50,0,52,-21,52,-73xm24,0r0,-270r29,0r1,105v9,-24,38,-26,60,-26v65,0,74,38,74,97v0,62,-8,96,-74,96v-26,0,-50,-4,-60,-25v-3,5,0,16,-1,23r-29,0","w":206},"c":{"d":"153,-68r29,0v4,58,-31,70,-80,70v-78,0,-84,-30,-84,-100v0,-62,11,-93,79,-93v48,-1,84,7,82,64r-29,0v2,-37,-15,-41,-51,-41v-50,0,-52,18,-52,78v0,53,3,69,58,69v40,0,50,-9,48,-47","w":196},"d":{"d":"101,-21v44,0,52,-15,52,-73v0,-52,-6,-74,-52,-74v-44,0,-54,8,-54,74v0,66,13,73,54,73xm153,0r0,-24v-11,23,-35,26,-61,26v-67,0,-74,-38,-74,-96v0,-57,6,-97,74,-97v21,0,53,2,61,25r0,-104r29,0r0,270r-29,0","w":206},"e":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57","w":203},"f":{"d":"60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26","w":108,"k":{"\u2019":-11,"f":-5,"\ufb01":-5,"\ufb02":-5,"\u00df":-5}},"g":{"d":"100,-21v55,0,54,-31,54,-73v0,-53,-3,-74,-54,-74v-53,0,-52,24,-52,74v0,45,-3,73,52,73xm183,-189r0,211v0,50,-37,62,-83,62v-44,0,-79,-7,-76,-62r29,0v0,36,17,39,47,39v34,0,54,-4,54,-41r0,-43v-8,23,-39,25,-61,25v-61,0,-75,-31,-75,-96v0,-63,10,-97,75,-97v26,0,50,3,61,26r0,-24r29,0","w":206},"h":{"d":"53,-270r1,104v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-270r28,0","w":208},"i":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm53,-270r0,31r-29,0r0,-31r29,0","w":77},"j":{"d":"53,-189r0,212v2,34,-16,60,-55,50r0,-22v25,6,26,-18,26,-38r0,-202r29,0xm53,-270r0,31r-29,0r0,-31r29,0","w":75},"k":{"d":"53,-270r0,156r11,0r68,-75r35,0r-81,87r96,102r-37,0r-81,-91r-11,0r0,91r-29,0r0,-270r29,0","w":175},"l":{"d":"53,-270r0,270r-29,0r0,-270r29,0","w":77},"m":{"d":"52,-189v1,9,-2,22,1,29v10,-24,39,-31,63,-31v23,0,52,6,58,31v30,-50,133,-45,133,35r0,125r-28,0r0,-122v0,-32,-5,-46,-42,-46v-86,0,-50,100,-57,168r-29,0r0,-127v-1,-25,-1,-41,-42,-41v-81,0,-52,99,-57,168r-28,0r0,-189r28,0","w":330},"n":{"d":"53,-189v1,7,-2,18,1,23v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-189r28,0","w":208},"o":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74","w":205},"p":{"d":"106,-168v-54,0,-54,24,-54,74v0,45,3,73,54,73v44,0,52,-12,52,-73v0,-57,-4,-74,-52,-74xm52,-189v1,8,-1,18,1,24v12,-22,37,-26,61,-26v69,0,74,40,74,97v0,75,-19,96,-74,96v-23,1,-49,-4,-62,-24r0,104r-28,0r0,-271r28,0","w":206},"q":{"d":"102,-21v48,0,52,-24,52,-73v0,-53,-2,-74,-56,-74v-38,0,-50,8,-50,74v0,53,1,73,54,73xm183,-189r0,271r-29,0r0,-104v-9,22,-38,24,-56,24v-57,0,-79,-15,-79,-96v0,-62,7,-97,79,-97v22,0,46,5,56,25r0,-23r29,0","w":207},"r":{"d":"21,-189r28,0v0,8,-3,18,-1,24v28,-47,123,-31,106,41r-27,0v1,-28,-2,-44,-32,-44v-76,0,-37,104,-46,168r-28,0r0,-189","w":159,"k":{"v":-13,"w":-12,"y":-10,"\u00fd":-10,"\u00ff":-10,"f":-7,"\ufb01":-7,"\ufb02":-7,"\u00df":-7,",":54,".":43,"h":-7,"t":-13,"x":-5,"-":-7}},"s":{"d":"100,-191v35,-1,78,3,74,51r-29,0v2,-26,-11,-26,-45,-26v-36,0,-52,0,-52,23v0,34,8,32,38,33v49,3,93,-5,93,57v0,53,-37,55,-79,55v-48,0,-92,-5,-83,-62r29,0v-2,34,2,36,54,37v19,0,50,4,50,-29v0,-35,-15,-29,-50,-31v-41,-3,-82,2,-82,-52v0,-55,31,-56,82,-56","w":193},"t":{"d":"125,-189r0,23r-74,0r0,120v0,21,6,25,27,25v33,0,26,-21,27,-46r27,0v3,45,-10,69,-55,69v-85,0,-45,-101,-54,-168r-25,0r0,-23r25,0r0,-46r28,0r0,46r74,0","w":131},"u":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0","w":205},"v":{"d":"165,-189r-64,189r-40,0r-62,-189r28,0r55,167r52,-167r31,0","w":163,"k":{",":36,".":36}},"w":{"d":"270,-189r-53,189r-41,0r-41,-169r-41,169r-41,0r-52,-189r30,0r43,169r42,-169r40,0r42,169r43,-169r29,0","w":271,"k":{",":32,".":32}},"x":{"d":"158,-189r-60,90r67,99r-34,0r-49,-76r-49,76r-34,0r68,-99r-61,-90r32,0r44,69r43,-69r33,0","w":163},"y":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0","w":157,"k":{",":32,".":32}},"z":{"d":"155,-189r0,26r-113,140r113,0r0,23r-146,0r0,-26r113,-140r-104,0r0,-23r137,0","w":163},"{":{"d":"17,-96r0,-27v68,-3,-23,-170,88,-149r0,27v-44,-11,-29,46,-29,80v0,37,-23,54,-26,56v3,3,26,18,26,55v0,32,-18,90,29,81r0,27v-60,15,-60,-44,-60,-102v0,-28,-4,-45,-28,-48","w":120},"|":{"d":"60,-270r0,360r-27,0r0,-360r27,0","w":93},"}":{"d":"103,-122r0,27v-68,3,23,170,-88,149r0,-27v44,11,29,-47,29,-81v0,-37,23,-53,26,-55v-3,-3,-26,-19,-26,-56v0,-31,18,-89,-29,-80r0,-27v60,-15,60,44,60,102v0,28,4,45,28,48","w":120},"~":{"d":"43,-77r-25,0v-4,-35,29,-73,64,-54v23,11,41,30,69,36v14,0,17,-17,16,-31r25,0v4,38,-35,75,-74,48v-18,-12,-36,-27,-58,-33v-10,0,-18,17,-17,34","w":210},"\u00a1":{"d":"64,-189r0,37r-32,0r0,-37r32,0xm32,81r3,-195r26,0r3,195r-32,0","w":97},"\u00a2":{"d":"108,-51r0,-147v-42,2,-42,25,-42,73v0,53,3,72,42,74xm108,-247r23,0r0,26v39,1,67,14,66,64r-29,0v2,-31,-7,-40,-37,-41r0,147v32,2,43,-12,41,-47r29,0v2,52,-20,72,-70,70r0,30r-23,0r0,-30v-66,1,-72,-44,-72,-97v0,-55,6,-94,72,-96r0,-26"},"\u00a3":{"d":"159,-131r0,26r-77,0v-2,37,8,63,-22,81v55,3,118,-2,175,-2r0,26r-209,0r0,-23v35,-9,24,-47,26,-82r-33,0r0,-26r33,0r0,-60v0,-71,28,-81,87,-81v75,-1,92,17,91,83r-29,0v1,-45,-5,-56,-56,-56v-58,0,-63,4,-63,54r0,60r77,0"},"\u2044":{"d":"206,-270r-184,270r-24,0r182,-270r26,0","w":203},"\u00a5":{"d":"182,-184r37,0r0,25r-53,0r-24,40r77,0r0,25r-81,0r0,94r-30,0r0,-94r-78,0r0,-25r74,0r-24,-40r-50,0r0,-25r35,0r-51,-86r35,0r76,126r74,-126r36,0"},"\u0192":{"d":"149,-151r-31,173v-3,54,-35,69,-89,59r4,-23v32,6,50,-2,56,-34r31,-175r-37,0r4,-24r37,0v8,-60,17,-112,96,-96r-4,23v-34,-4,-52,2,-57,34r-6,39r50,0r-5,24r-49,0"},"\u00a7":{"d":"57,-109v0,46,57,33,87,49v36,10,46,2,46,-36v0,-39,-55,-34,-85,-46v-33,-14,-48,-5,-48,33xm150,-31v-47,-16,-120,-8,-120,-77v0,-25,6,-43,31,-50v-18,-9,-20,-28,-20,-46v0,-65,25,-68,85,-68v72,0,85,9,86,71r-27,0v0,-41,-5,-46,-59,-46v-40,0,-58,-2,-58,36v0,51,59,45,93,58v33,13,56,12,56,54v1,22,-5,46,-26,54v24,9,27,30,27,53v0,69,-34,70,-92,70v-67,0,-94,-4,-94,-75r27,0v1,39,0,50,67,50v40,0,65,3,65,-44v0,-31,-12,-30,-41,-40"},"\u00a4":{"d":"179,-156v12,10,12,59,-1,69r20,20r-21,20r-19,-20v-24,15,-42,16,-69,3r-20,19r-19,-22r17,-18v-14,-20,-14,-56,2,-72r-21,-22r20,-20r21,21v27,-12,43,-12,70,0r20,-20r21,22xm122,-78v18,0,43,-13,43,-44v0,-28,-25,-41,-43,-41v-18,0,-42,12,-42,42v0,30,24,43,42,43"},"'":{"d":"18,-270r33,0v2,34,-3,62,-9,89r-15,0v-5,-27,-11,-54,-9,-89","w":68},"\u201c":{"d":"93,-232r14,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-19,8,-18,24xm37,-232r13,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-18,8,-17,24","w":129},"\u00ab":{"d":"69,-207r21,13r-43,90r47,91r-19,13r-55,-104xm135,-207r21,13r-42,90r47,91r-20,13r-54,-104","w":181},"\u2039":{"d":"69,-207r21,13r-43,90r47,91r-19,13r-55,-104","w":114},"\u203a":{"d":"25,-194r21,-13r48,103r-54,104r-20,-13r47,-91","w":114},"\ufb01":{"d":"159,-189r0,189r-29,0r0,-189r29,0xm60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26xm159,-270r0,31r-29,0r0,-31r29,0","w":183},"\ufb02":{"d":"60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26xm160,-270r0,270r-28,0r0,-270r28,0","w":184},"\u2013":{"d":"0,-112r180,0r0,27r-180,0r0,-27","w":180},"\u2020":{"d":"139,-270r0,74r63,0r0,25r-63,0r0,246r-30,0r0,-246r-62,0r0,-25r62,0r0,-74r30,0"},"\u2021":{"d":"139,-270r0,85r63,0r0,25r-63,0r0,119r63,0r0,25r-63,0r0,91r-30,0r0,-91r-62,0r0,-25r62,0r0,-119r-62,0r0,-25r62,0r0,-85r30,0"},"\u00b7":{"d":"78,-121r0,37r-32,0r0,-37r32,0","w":124},"\u00b6":{"d":"236,75r-27,0r0,-320r-32,0r0,320r-27,0r0,-181v-77,-3,-139,19,-138,-81v0,-52,13,-83,75,-83r149,0r0,345xm150,-131r0,-114r-63,0v-42,0,-44,15,-44,58v0,80,49,50,107,56"},"\u2022":{"d":"161,-135v0,37,-30,67,-67,67v-37,0,-68,-29,-68,-67v0,-37,30,-68,68,-68v37,0,67,31,67,68","w":187},"\u201a":{"d":"41,0r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":82},"\u201e":{"d":"36,0r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24xm93,0r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":129},"\u201d":{"d":"36,-233r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24xm93,-233r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":129},"\u00bb":{"d":"91,-194r21,-13r49,103r-54,104r-20,-13r47,-91xm25,-194r21,-13r48,103r-54,104r-20,-13r47,-91","w":181},"\u2026":{"d":"76,-37r0,37r-32,0r0,-37r32,0xm196,-37r0,37r-32,0r0,-37r32,0xm316,-37r0,37r-32,0r0,-37r32,0","w":360},"\u2030":{"d":"251,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm251,-135v59,0,61,32,59,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm262,-270r-183,272r-24,0r182,-272r25,0xm394,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm394,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-155v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-35,32,-35,67v0,30,5,30,35,30","w":461},"\u00bf":{"d":"103,-111r31,0v1,42,-7,50,-51,67v-30,11,-34,15,-34,56v0,40,10,45,54,45v53,0,60,-12,58,-61r29,0v3,71,-23,88,-87,88v-59,0,-82,-13,-82,-72v0,-44,3,-65,47,-80v34,-11,36,-14,35,-43xm134,-189r0,37r-32,0r0,-37r32,0","w":210},"`":{"d":"41,-267r54,40r-10,15r-58,-36","w":121},"\u00b4":{"d":"81,-267r14,19r-58,36r-10,-15","w":121},"\u02c6":{"d":"90,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":179},"\u02dc":{"d":"62,-248v24,0,59,33,72,0r15,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,18,-27,35,-27","w":176},"\u00af":{"d":"28,-233r100,0r0,23r-100,0r0,-23","w":156},"\u02d8":{"d":"27,-265r19,0v7,44,76,44,83,0r19,0v-3,31,-30,54,-61,54v-31,0,-57,-23,-60,-54","w":175},"\u02d9":{"d":"59,-235r0,27r-32,0r0,-27r32,0","w":85},"\u00a8":{"d":"59,-235r0,27r-32,0r0,-27r32,0xm131,-235r0,27r-32,0r0,-27r32,0","w":157},"\u02da":{"d":"27,-234v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm41,-234v0,10,7,18,17,18v10,0,18,-8,18,-18v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17","w":116},"\u00b8":{"d":"47,14r19,11r-27,39r-16,-9","w":97},"\u02dd":{"d":"76,-270r16,18r-54,42r-11,-14xm133,-270r16,18r-54,42r-11,-14","w":176},"\u02db":{"d":"27,38v0,-22,17,-42,48,-38v-22,5,-46,50,-6,51v5,0,11,0,15,-2r0,17v-25,8,-57,0,-57,-28","w":110},"\u02c7":{"d":"89,-211r-62,-38r9,-16r53,27r56,-27r8,16","w":179},"\u2014":{"d":"0,-112r360,0r0,27r-360,0r0,-27","w":360},"\u00c6":{"d":"221,-243r0,92r135,0r0,25r-135,0r0,99r142,0r0,27r-173,0r0,-56r-126,0r-31,56r-36,0r149,-270r217,0r0,27r-142,0xm190,-83r0,-160r-25,0r-87,160r112,0","w":375},"\u00aa":{"d":"112,-157v0,-3,1,-8,-1,-9v-25,22,-87,19,-87,-24v0,-45,56,-44,85,-28v0,-27,0,-37,-29,-37v-22,0,-31,2,-30,18r-21,0v0,-34,23,-35,49,-35v30,0,53,2,53,38r0,77r-19,0xm75,-172v18,0,34,0,34,-18v0,-18,-12,-20,-31,-20v-23,0,-31,1,-31,18v0,19,9,20,28,20","w":158},"\u0141":{"d":"58,-144r0,117r137,0r0,27r-168,0r0,-118r-30,29r0,-31r30,-28r0,-122r31,0r0,96r56,-56r0,31","w":200,"k":{"T":28,"V":17,"W":12,"y":13,"\u00fd":13,"\u00ff":13,"Y":29,"\u00dd":29,"\u0178":29,"\u2019":36}},"\u00d8":{"d":"215,-201r-161,156v22,31,63,18,105,20v87,5,47,-104,56,-176xm46,-69r161,-157v-14,-28,-59,-15,-97,-19v-97,-10,-55,101,-64,176xm255,-270r0,31r-17,13v15,39,5,92,7,141v4,87,-55,87,-135,87v-29,0,-59,-2,-78,-27r-26,25r0,-30r16,-15v-11,-27,-6,-89,-7,-129v0,-104,58,-99,144,-98v29,0,54,7,69,26","w":260},"\u0152":{"d":"127,-245v-66,0,-81,3,-81,75r-1,72v0,71,20,73,82,73v67,0,86,-3,86,-73r0,-72v0,-72,-16,-75,-86,-75xm243,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0v-1,-9,2,-21,-1,-28v-15,30,-52,30,-85,30v-81,0,-112,-10,-112,-100r0,-72v0,-80,25,-102,112,-102v27,-1,78,4,86,31r0,-29r173,0r0,27r-143,0","w":399},"\u00ba":{"d":"81,-272v42,0,51,12,51,58v0,44,-4,60,-51,60v-49,0,-55,-11,-55,-60v0,-42,5,-58,55,-58xm81,-255v-31,0,-33,5,-33,41v0,42,1,42,33,42v28,0,30,-7,30,-42v0,-33,-1,-41,-30,-41","w":158},"\u00e6":{"d":"182,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm95,-91v-34,0,-48,1,-48,32v0,36,15,38,48,38v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35xm153,-95r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v17,0,62,-1,69,24v12,-22,47,-24,70,-24v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36r29,0v3,54,-35,59,-80,59v-30,0,-62,-3,-73,-31v-9,28,-43,31,-75,31v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19","w":335},"\u0131":{"d":"53,-189r0,189r-29,0r0,-189r29,0","w":77},"\u0142":{"d":"53,-154r0,154r-29,0r0,-131r-23,23r0,-26r23,-22r0,-114r29,0r0,91r23,-23r0,25","w":77},"\u00f8":{"d":"192,-194r0,24r-13,13v8,18,7,37,7,63v-1,69,-9,96,-82,96v-20,0,-55,-1,-70,-18r-23,22r0,-24r15,-14v-8,-16,-7,-44,-7,-62v0,-73,8,-97,85,-97v20,0,49,-1,66,17xm156,-133r-101,96v4,16,37,16,49,16v49,0,51,-5,53,-73v0,-13,0,-26,-1,-39xm49,-56r101,-97v-6,-15,-36,-15,-46,-15v-49,0,-58,6,-56,74v0,13,0,26,1,38","w":205},"\u0153":{"d":"156,-94v0,-69,-3,-74,-58,-74v-50,0,-50,12,-50,74v0,62,4,73,54,73v52,0,54,-12,54,-73xm18,-94v0,-65,5,-97,79,-97v24,-1,66,0,74,26v9,-25,41,-26,69,-26v69,0,84,27,81,103r-136,0v0,60,4,67,55,67v43,0,54,-3,52,-36r29,0v3,54,-36,60,-81,59v-31,0,-59,-2,-70,-26v-10,28,-46,26,-71,26v-72,0,-81,-29,-81,-96xm185,-111r107,0v-1,-54,-9,-57,-52,-57v-51,0,-53,13,-55,57","w":339},"\u00df":{"d":"30,0r0,-211v0,-52,24,-61,74,-61v37,0,76,7,76,53v0,25,-13,39,-36,45v48,8,50,43,50,84v0,47,-4,92,-64,92v-35,0,-59,-18,-54,-59r27,0v-1,22,5,36,27,36v25,0,34,-7,34,-69v0,-54,-16,-78,-77,-72r0,-23v37,3,73,-8,63,-30v0,-32,-15,-34,-46,-34v-31,0,-46,4,-46,38r0,211r-28,0","w":212},"\u00b9":{"d":"97,-272r0,163r-24,0r0,-146r-45,46r-12,-15r48,-48r33,0","w":149},"\u00ac":{"d":"165,-46r0,-71r-147,0r0,-27r174,0r0,98r-27,0","w":210},"\u00b5":{"d":"152,0v-1,-8,2,-19,-1,-25v-13,33,-68,31,-98,20r0,87r-29,0r0,-271r29,0r0,121v0,31,2,47,39,47v40,0,60,-6,60,-51r0,-117r29,0r0,189r-29,0","w":205},"\u2122":{"d":"339,-270r0,152r-25,0r-1,-130r-52,130r-14,0r-51,-130r0,130r-25,0r0,-152r40,0r44,107r45,-107r39,0xm145,-270r0,22r-47,0r0,130r-27,0r0,-130r-48,0r0,-22r122,0","w":360},"\u00d0":{"d":"25,-152r0,-118r132,0v33,0,92,4,92,104r0,64v0,27,-4,102,-85,102r-139,0r0,-126r-37,0r0,-26r37,0xm56,-243r0,91r74,0r0,26r-74,0r0,99r101,0v80,3,58,-80,62,-151v0,-15,-6,-65,-57,-65r-106,0","w":264},"\u00bd":{"d":"282,-270r-183,270r-24,0r182,-270r25,0xm65,-270r33,0r0,162r-24,0r0,-145r-45,46r-12,-14xm252,-22r103,0r0,22r-126,0v-4,-55,8,-78,62,-78v33,0,41,-2,41,-34v0,-28,-8,-30,-38,-30v-44,-1,-43,5,-42,35r-23,0v0,-42,0,-56,65,-56v47,0,62,10,62,51v0,44,-17,52,-61,55v-38,3,-44,7,-43,35","w":372},"\u00b1":{"d":"92,-189r27,0r0,55r73,0r0,27r-73,0r0,54r-27,0r0,-54r-74,0r0,-27r74,0r0,-55xm18,-4r0,-27r174,0r0,27r-174,0","w":210},"\u00de":{"d":"21,0r0,-270r31,0r0,53r107,0v52,0,64,35,64,81v0,24,0,83,-66,83r-105,0r0,53r-31,0xm193,-132v0,-93,-77,-47,-141,-58r0,110v62,-9,141,31,141,-52","w":237},"\u00bc":{"d":"329,-162r0,108r24,0r0,21r-24,0r0,33r-23,0r0,-33r-97,0r0,-26r87,-103r33,0xm289,-270r-183,270r-24,0r182,-270r25,0xm306,-54r-1,-93r-78,93r79,0xm100,-270r0,162r-23,0r0,-145r-45,46r-12,-14r48,-49r32,0","w":372},"\u00f7":{"d":"192,-116r0,27r-174,0r0,-27r174,0xm124,-15r-38,0r0,-38r38,0r0,38xm124,-152r-38,0r0,-37r38,0r0,37","w":210},"\u00a6":{"d":"60,63r-27,0r0,-126r27,0r0,126xm60,-243r0,126r-27,0r0,-126r27,0","w":93},"\u00b0":{"d":"126,-218v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm108,-218v0,-19,-16,-36,-36,-36v-19,0,-36,17,-36,36v0,20,16,36,36,36v19,0,36,-16,36,-36","w":144},"\u00fe":{"d":"106,-168v-54,0,-54,24,-54,74v0,45,3,73,54,73v44,0,52,-12,52,-73v0,-57,-4,-74,-52,-74xm53,-22v-4,31,0,70,-1,104r-28,0r0,-352r28,0r1,105v12,-22,37,-26,61,-26v69,0,74,40,74,97v0,75,-19,96,-74,96v-22,0,-50,-2,-61,-24","w":206},"\u00be":{"d":"333,-162r0,108r24,0r0,21r-24,0r0,33r-23,0r0,-33r-97,0r0,-26r87,-103r33,0xm310,-54r-1,-93r-78,93r79,0xm306,-270r-183,270r-24,0r182,-270r25,0xm67,-183r0,-20v27,-2,53,9,53,-24v0,-23,-4,-25,-42,-25v-33,-1,-36,5,-36,31r-24,0v-2,-45,18,-51,62,-51v37,0,63,0,63,42v0,21,-3,37,-29,38v27,2,33,14,33,38v0,49,-27,47,-69,47v-45,0,-66,-9,-62,-54r24,0v0,29,-1,34,38,34v39,0,45,-1,45,-30v0,-36,-27,-24,-56,-26","w":372},"\u00b2":{"d":"38,-130r103,0r0,21r-127,0v-4,-55,8,-78,62,-78v33,0,42,-2,42,-34v0,-28,-8,-30,-38,-30v-44,-1,-43,6,-42,36r-24,0v0,-43,0,-57,66,-57v47,0,61,10,61,51v0,44,-16,53,-60,56v-39,3,-44,6,-43,35","w":149},"\u00ae":{"d":"141,-272v76,0,137,61,137,137v0,76,-61,137,-137,137v-76,0,-138,-61,-138,-137v0,-76,62,-137,138,-137xm141,-251v-64,0,-116,52,-116,115v0,64,52,117,116,117v64,0,115,-53,115,-117v0,-63,-51,-115,-115,-115xm163,-127r46,69r-24,0r-44,-67r-30,0r0,67r-21,0r0,-154v52,3,119,-15,121,41v0,30,-21,43,-48,44xm111,-193r0,49v32,1,85,2,79,-27v-6,-32,-48,-19,-79,-22","w":280},"\u2212":{"d":"18,-89r0,-27r174,0r0,27r-174,0","w":210},"\u00f0":{"d":"48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm67,-264r26,-8v13,8,25,16,35,26r38,-12r17,15r-40,12v28,31,43,70,43,117v0,105,-11,116,-83,116v-70,0,-84,-16,-84,-96v0,-80,14,-97,84,-97v24,0,31,3,42,11v-6,-14,-16,-28,-29,-42r-40,12r-16,-13r42,-14v-11,-9,-23,-19,-35,-27","w":205},"\u00d7":{"d":"18,-157r18,-18r69,70r70,-70r17,18r-69,70r69,69r-17,18r-70,-70r-69,70r-18,-18r69,-69","w":210},"\u00b3":{"d":"64,-183r0,-20v27,-2,53,9,53,-24v0,-23,-4,-25,-42,-25v-33,-1,-36,5,-36,31r-23,0v-2,-45,18,-51,62,-51v37,0,62,0,62,42v0,21,-2,37,-28,38v27,2,32,14,32,38v0,47,-26,47,-68,47v-45,0,-66,-9,-62,-54r23,0v-1,29,0,34,39,34v39,0,45,-1,45,-30v0,-35,-28,-24,-57,-26","w":149},"\u00a9":{"d":"141,-272v76,0,137,61,137,137v0,76,-61,137,-137,137v-76,0,-138,-61,-138,-137v0,-76,62,-137,138,-137xm141,-251v-64,0,-116,52,-116,115v0,64,52,117,116,117v64,0,115,-53,115,-117v0,-63,-51,-115,-115,-115xm189,-110r22,0v-17,89,-140,56,-140,-26v0,-45,28,-79,75,-79v33,0,60,19,65,52r-22,0v-19,-62,-104,-31,-97,27v-10,58,86,88,97,26","w":280},"\u00c1":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm143,-348r14,19r-58,36r-9,-15","w":246},"\u00c2":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm124,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":246},"\u00c4":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm103,-316r0,27r-31,0r0,-27r31,0xm175,-316r0,27r-31,0r0,-27r31,0","w":246},"\u00c0":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm104,-348r53,40r-9,15r-58,-36","w":246},"\u00c5":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm92,-315v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm106,-315v0,10,7,18,17,18v10,0,18,-8,18,-18v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17","w":246},"\u00c3":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm97,-329v24,0,59,33,72,0r15,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,18,-27,35,-27","w":246},"\u00c7":{"d":"122,14r19,11r-27,39r-16,-9xm231,-67v1,79,-66,68,-136,69v-49,0,-79,-31,-79,-85r0,-104v0,-86,61,-85,138,-85v60,0,75,29,74,86r-31,0v4,-48,-14,-59,-65,-59v-63,0,-85,8,-85,57v0,68,-22,169,53,163v51,-4,110,8,101,-45r0,-22r30,0r0,25","w":239},"\u00c9":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm121,-348r14,19r-58,36r-10,-15","w":201},"\u00ca":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm102,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":201},"\u00cb":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm81,-316r0,27r-32,0r0,-27r32,0xm153,-316r0,27r-32,0r0,-27r32,0","w":201},"\u00c8":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm81,-348r54,40r-10,15r-58,-36","w":201},"\u00cd":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm61,-348r14,19r-58,36r-10,-15","w":82},"\u00ce":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm42,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":82},"\u00cf":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm21,-316r0,27r-32,0r0,-27r32,0xm93,-316r0,27r-32,0r0,-27r32,0","w":82},"\u00cc":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm22,-348r53,40r-9,15r-59,-36","w":82},"\u00d1":{"d":"257,-270r0,270r-50,0r-152,-245r0,245r-31,0r0,-270r51,0r152,247r0,-247r30,0xm114,-329v24,0,60,33,72,0r16,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":281},"\u00d3":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm141,-348r14,19r-58,36r-10,-15","w":241},"\u00d4":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm121,-346r63,39r-9,15r-54,-27r-55,27r-8,-15","w":241},"\u00d6":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm101,-316r0,27r-32,0r0,-27r32,0xm173,-316r0,27r-32,0r0,-27r32,0","w":241},"\u00d2":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm94,-348r54,40r-10,15r-58,-36","w":241},"\u00d5":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm94,-329v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":241},"\u0160":{"d":"112,-125v-53,-4,-99,2,-99,-69v0,-72,33,-78,100,-78v58,0,100,3,97,76r-31,0v-1,-47,-10,-49,-67,-49v-60,0,-68,8,-68,45v0,51,24,46,74,48v64,3,97,2,97,75v0,76,-36,79,-104,79v-69,0,-105,-8,-99,-86r31,0v-1,59,11,59,68,59v58,0,73,0,73,-53v0,-51,-23,-43,-72,-47xm112,-292r-62,-38r9,-16r53,27r56,-27r8,16","w":226},"\u00da":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm153,-348r14,19r-58,36r-10,-15","w":265},"\u00db":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm133,-346r62,39r-8,15r-54,-27r-56,27r-7,-15","w":265},"\u00dc":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm113,-316r0,27r-32,0r0,-27r32,0xm185,-316r0,27r-32,0r0,-27r32,0","w":265},"\u00d9":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm99,-348r53,40r-9,15r-58,-36","w":265},"\u00dd":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0xm140,-348r14,19r-58,36r-10,-15","w":227,"k":{"v":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,",":54,".":54,"-":25,"a":40,"\u00e6":40,"\u00e1":40,"\u00e2":40,"\u00e4":40,"\u00e0":40,"\u00e5":40,"\u00e3":40,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f6":40,"\u00f2":40,"\u00f5":40,"u":35,"\u00fa":35,"\u00fb":35,"\u00fc":35,"\u00f9":35,":":22,";":22,"p":33,"q":40}},"\u0178":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0xm94,-316r0,27r-32,0r0,-27r32,0xm166,-316r0,27r-32,0r0,-27r32,0","w":227,"k":{"v":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,",":54,".":54,"-":25,"a":40,"\u00e6":40,"\u00e1":40,"\u00e2":40,"\u00e4":40,"\u00e0":40,"\u00e5":40,"\u00e3":40,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f6":40,"\u00f2":40,"\u00f5":40,"u":35,"\u00fa":35,"\u00fb":35,"\u00fc":35,"\u00f9":35,":":22,";":22,"p":33,"q":40}},"\u017d":{"d":"216,-270r0,28r-170,215r174,0r0,27r-211,0r0,-27r170,-216r-165,0r0,-27r202,0xm114,-292r-62,-38r8,-16r54,27r56,-27r7,16","w":229},"\u00e1":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00e2":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00e4":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00e0":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm76,-267r53,40r-9,15r-58,-36","w":205},"\u00e5":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm72,-234v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm85,-234v0,10,8,18,18,18v10,0,17,-8,17,-18v0,-10,-7,-17,-17,-17v-10,0,-18,7,-18,17","w":205},"\u00e3":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm76,-248v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":205},"\u00e7":{"d":"100,14r20,11r-28,39r-15,-9xm153,-68r29,0v4,58,-31,70,-80,70v-78,0,-84,-30,-84,-100v0,-62,11,-93,79,-93v48,-1,84,7,82,64r-29,0v2,-37,-15,-41,-51,-41v-50,0,-52,18,-52,78v0,53,3,69,58,69v40,0,50,-9,48,-47","w":196},"\u00e9":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm122,-267r14,19r-58,36r-10,-15","w":203},"\u00ea":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm102,-265r63,39r-9,15r-54,-27r-56,27r-7,-15","w":203},"\u00eb":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm82,-235r0,27r-32,0r0,-27r32,0xm154,-235r0,27r-32,0r0,-27r32,0","w":203},"\u00e8":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm75,-267r54,40r-10,15r-58,-36","w":203},"\u00ed":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm59,-267r14,19r-58,36r-10,-15","w":77},"\u00ee":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm39,-265r63,39r-9,15r-54,-27r-56,27r-7,-15","w":77},"\u00ef":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm19,-235r0,27r-32,0r0,-27r32,0xm91,-235r0,27r-32,0r0,-27r32,0","w":77},"\u00ec":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm19,-267r54,40r-10,15r-58,-36","w":77},"\u00f1":{"d":"53,-189v1,7,-2,18,1,23v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-189r28,0xm78,-248v24,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":208},"\u00f3":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00f4":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00f6":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00f2":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm76,-267r53,40r-9,15r-58,-36","w":205},"\u00f5":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm76,-248v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":205},"\u0161":{"d":"100,-191v35,-1,78,3,74,51r-29,0v2,-26,-11,-26,-45,-26v-36,0,-52,0,-52,23v0,34,8,32,38,33v49,3,93,-5,93,57v0,53,-37,55,-79,55v-48,0,-92,-5,-83,-62r29,0v-2,34,2,36,54,37v19,0,50,4,50,-29v0,-35,-15,-29,-50,-31v-41,-3,-82,2,-82,-52v0,-55,31,-56,82,-56xm96,-211r-62,-38r8,-16r54,27r56,-27r7,16","w":193},"\u00fa":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00fb":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00fc":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00f9":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm69,-267r53,40r-9,15r-59,-36","w":205},"\u00fd":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0xm105,-267r14,19r-58,36r-10,-15","w":157,"k":{",":32,".":32}},"\u00ff":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0xm59,-235r0,27r-32,0r0,-27r32,0xm131,-235r0,27r-32,0r0,-27r32,0","w":157,"k":{",":32,".":32}},"\u017e":{"d":"155,-189r0,26r-113,140r113,0r0,23r-146,0r0,-26r113,-140r-104,0r0,-23r137,0xm81,-211r-62,-38r9,-16r53,27r56,-27r8,16","w":163},"\u2126":{"d":"23,-22v22,-1,48,2,68,-1v-32,-22,-62,-62,-62,-117v0,-74,59,-129,134,-129v80,0,133,62,133,128v1,58,-34,97,-63,119r69,0r0,22r-106,0r0,-16v36,-18,72,-59,72,-122v0,-51,-37,-109,-104,-109v-64,0,-107,51,-107,111v0,59,36,102,72,120r0,16r-106,0r0,-22","w":325},"\u03bc":{"d":"152,0v-1,-8,2,-19,-1,-25v-13,33,-68,31,-98,20r0,87r-29,0r0,-271r29,0r0,121v0,31,2,47,39,47v40,0,60,-6,60,-51r0,-117r29,0r0,189r-29,0","w":205},"\u03c0":{"d":"238,-174r-37,0v1,51,-4,139,6,174r-27,0v-12,-30,-5,-125,-7,-174r-85,0v-3,51,-17,141,-33,174r-28,0v17,-39,30,-122,33,-174v-29,0,-42,2,-52,6r-4,-18v52,-20,165,-6,237,-10","w":249},"\u20ac":{"d":"246,-242r-11,33v-18,-39,-60,-36,-112,-36v-36,0,-59,20,-55,71r156,0r-7,24r-149,0r0,22r142,0r-7,24r-135,0v0,55,6,79,54,79v53,0,93,7,115,-34r0,36v-39,37,-69,23,-121,25v-56,2,-83,-41,-78,-106r-34,0r8,-24r26,0r0,-22r-34,0r8,-24r26,0v1,-93,52,-98,125,-98v18,0,55,-2,83,30"},"\u2113":{"d":"186,-63r14,12v-20,34,-49,51,-82,51v-48,-1,-69,-33,-70,-73v-8,6,-17,13,-26,19r-9,-17v12,-9,24,-17,34,-26r0,-105v0,-71,34,-92,65,-92v37,0,54,30,54,63v0,49,-37,94,-93,142v-1,42,22,68,51,68v29,0,51,-23,62,-42xm73,-206r0,92v40,-39,72,-77,72,-116v0,-25,-9,-44,-33,-44v-17,0,-39,17,-39,68","w":210},"\u212e":{"d":"69,-55v37,67,152,61,195,4r21,0v-27,32,-71,53,-120,53v-84,0,-152,-61,-152,-137v0,-76,68,-137,152,-137v86,1,155,61,153,141r-249,1r0,75xm262,-216v-37,-61,-144,-62,-190,-8v-6,21,-5,62,-1,85r191,-2r0,-75","w":330},"\u2202":{"d":"44,-258r-11,-18v77,-51,182,-9,182,122v0,79,-37,155,-113,155v-58,0,-84,-49,-84,-88v0,-58,43,-95,92,-95v44,0,71,31,77,43v9,-77,-34,-137,-84,-137v-28,0,-47,10,-59,18xm46,-89v0,37,23,68,59,68v44,0,72,-44,78,-92v-6,-18,-32,-48,-69,-48v-37,0,-68,31,-68,72","w":237},"\u220f":{"d":"295,-240r-50,0r0,276r-27,0r0,-276r-130,0r0,276r-27,0r0,-276r-51,0r0,-24r285,0r0,24","w":306},"\u2211":{"d":"233,36r-224,0r0,-17r120,-132r-114,-133r0,-18r212,0r0,24r-172,1r107,123r-114,128r185,0r0,24","w":243},"\u2219":{"d":"78,-121r0,37r-32,0r0,-37r32,0","w":124},"\u221a":{"d":"247,-312r-98,369r-25,0r-71,-177r-32,13r-7,-16r56,-22r59,151v4,8,4,18,8,24r88,-342r22,0","w":245},"\u221e":{"d":"304,-109v0,40,-31,65,-63,65v-27,0,-48,-19,-78,-51v-22,25,-44,51,-79,51v-33,0,-62,-28,-62,-64v0,-37,28,-65,65,-65v32,0,56,25,78,51v23,-25,44,-51,79,-51v37,0,60,27,60,64xm41,-107v0,25,17,45,46,45v27,0,49,-27,66,-45v-19,-23,-38,-49,-69,-49v-27,0,-43,23,-43,49xm242,-156v-29,0,-53,32,-68,47v29,31,46,47,68,47v27,0,43,-24,43,-46v0,-30,-19,-48,-43,-48","w":325},"\u222b":{"d":"59,-228v0,-68,28,-107,83,-88r-5,18v-42,-15,-54,20,-54,73v0,59,6,130,6,190v0,75,-30,107,-86,88r5,-18v41,13,57,-10,57,-70v0,-61,-6,-134,-6,-193","w":146},"\u2248":{"d":"80,-168v38,0,55,32,91,32v18,0,29,-10,42,-31r12,11v-12,21,-29,38,-55,38v-29,0,-61,-31,-93,-32v-21,0,-33,14,-44,30r-12,-10v13,-24,35,-38,59,-38xm80,-98v52,0,99,66,133,2r12,10v-12,21,-28,38,-55,38v-30,0,-61,-31,-93,-32v-21,0,-33,15,-44,31r-12,-10v13,-24,35,-39,59,-39","w":246},"\u2260":{"d":"174,-199r-21,42r71,0r0,18r-79,0r-30,63r109,0r0,18r-117,0r-24,51r-15,-7r21,-44r-67,0r0,-18r76,0r29,-63r-105,0r0,-18r113,0r24,-50","w":246},"\u2264":{"d":"223,-32r-198,-93r0,-18r198,-93r0,21r-178,81r178,81r0,21xm224,3r-202,0r0,-18r202,0r0,18","w":246},"\u2265":{"d":"25,-236r198,93r0,19r-198,92r0,-21r177,-81r-177,-81r0,-21xm224,3r-202,0r0,-18r202,0r0,18","w":246},"\u25ca":{"d":"222,-132r-89,152r-22,0r-88,-152r89,-152r22,0xm196,-131r-74,-131v-22,45,-49,87,-73,130r74,131v22,-46,49,-86,73,-130","w":245},"\u00a0":{"w":124},"\u00ad":{"d":"0,-112r94,0r0,27r-94,0r0,-27","w":93},"\u02c9":{"d":"28,-233r100,0r0,23r-100,0r0,-23","w":156},"\u03a9":{"d":"23,-22v22,-1,48,2,68,-1v-32,-22,-62,-62,-62,-117v0,-74,59,-129,134,-129v80,0,133,62,133,128v1,58,-34,97,-63,119r69,0r0,22r-106,0r0,-16v36,-18,72,-59,72,-122v0,-51,-37,-109,-104,-109v-64,0,-107,51,-107,111v0,59,36,102,72,120r0,16r-106,0r0,-22","w":325},"\u2215":{"d":"206,-270r-184,270r-24,0r182,-270r26,0","w":203},"\u2206":{"d":"13,0r0,-19r114,-253r33,0r113,253r0,19r-260,0xm42,-22r200,0r-99,-224r-2,0","w":286},"\u2010":{"d":"0,-112r94,0r0,27r-94,0r0,-27","w":93}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1987, 1992, 1999, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a trademark of Linotype GmbH registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions.
 * 
 * Full name:
 * EurostileLTStd-Demi
 * 
 * Designer:
 * Aldo Novarese, A. Butti
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Eurostile LT Std","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 5 2 4","ascent":"270","descent":"-90","x-height":"2","bbox":"-22 -357 457.416 90","underline-thickness":"18","underline-position":"-18","stemh":"32","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":126},"!":{"d":"78,-49r0,49r-45,0r0,-49r45,0xm81,-270r-3,180r-45,0r-3,-180r51,0","w":111},"\"":{"d":"18,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93xm103,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":170},"#":{"d":"102,-270r34,0r-14,76r39,0r14,-76r33,0r-14,76r32,0r0,41r-38,0r-9,48r37,0r0,41r-46,0r-12,64r-33,0r12,-64r-39,0r-12,64r-34,0r12,-64r-36,0r0,-41r44,0r9,-48r-38,0r0,-41r45,0xm114,-153r-9,48r40,0r9,-48r-40,0"},"$":{"d":"141,-116r0,76v45,0,55,-8,55,-41v0,-33,-21,-34,-55,-35xm141,-230r0,72v64,3,104,6,104,77v0,66,-32,83,-104,83r0,28r-29,0r0,-28v-94,-2,-104,-32,-103,-90r46,0v-2,42,9,50,57,48r0,-76v-65,-6,-101,-10,-101,-76v0,-71,35,-80,101,-80r0,-26r29,0r0,26v59,0,99,7,95,79r-46,0v1,-33,-9,-37,-49,-37xm112,-158r0,-72v-39,1,-52,1,-52,38v0,32,19,32,52,34"},"%":{"d":"258,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm258,-25v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-37,0,-27,29,-27,57v0,25,5,26,27,26xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-162v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm267,-270r-172,270r-33,0r171,-270r34,0","w":325},"&":{"d":"188,-57r-88,-74v-30,5,-30,18,-30,49v0,43,18,42,63,42v26,0,43,-1,55,-17xm254,0r-32,-28v-17,29,-53,30,-89,30v-69,0,-112,-6,-112,-84v0,-40,7,-70,52,-74v-18,-15,-23,-23,-23,-47v0,-60,31,-69,87,-69v68,0,83,12,83,84r-44,0v0,-37,-1,-42,-39,-42v-44,-10,-45,39,-22,59r86,75r0,-37r44,0v0,25,2,47,-5,69r38,34","w":281},"\u2019":{"d":"17,-176r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,15,100,-49,94","w":83,"k":{"\u2019":7,"t":-7,"s":7,"\u0161":7}},"(":{"d":"105,12r0,42v-80,0,-84,-30,-84,-114v0,-98,-35,-221,84,-212r0,42v-33,0,-35,16,-35,46r0,150v0,23,0,46,35,46","w":125},")":{"d":"20,-230r0,-42v80,0,84,30,84,114v0,98,35,221,-84,212r0,-42v33,0,35,-16,35,-46r0,-150v0,-23,0,-46,-35,-46","w":125},"*":{"d":"199,-208r-49,16r29,42r-21,16r-30,-43r-33,43r-21,-16r30,-42r-49,-18r9,-26r49,18r0,-52r27,0r0,52r50,-18"},"+":{"d":"88,-189r34,0r0,70r70,0r0,34r-70,0r0,70r-34,0r0,-70r-70,0r0,-34r70,0r0,-70","w":210},",":{"d":"32,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94","w":126},"-":{"d":"0,-117r96,0r0,35r-96,0r0,-35","w":95},".":{"d":"77,-49r0,49r-45,0r0,-49r45,0","w":126},"\/":{"d":"247,-270r-208,311r-41,0r209,-311r40,0","w":245},"0":{"d":"127,-272v81,0,112,17,112,113r0,49v0,96,-31,112,-112,112v-81,0,-112,-16,-112,-112r0,-50v0,-90,20,-112,112,-112xm127,-40v50,0,63,-3,63,-58r0,-74v0,-55,-13,-58,-63,-58v-51,0,-63,3,-63,58r0,74v0,55,12,58,63,58"},"1":{"d":"177,-270r0,270r-49,0r0,-227r-70,70r-30,-32r87,-81r62,0"},"2":{"d":"226,-42r0,42r-204,0r0,-51v0,-69,29,-73,89,-84v54,-9,66,-5,66,-54v0,-36,-12,-41,-50,-41v-47,0,-56,1,-56,56r-49,0v0,-66,6,-98,105,-98v64,0,99,12,99,83v0,71,-24,81,-91,91v-53,8,-66,9,-64,56r155,0"},"3":{"d":"21,-91r49,0v0,50,8,51,53,51v44,0,59,-1,59,-38v0,-46,-35,-40,-75,-40r0,-39v42,0,70,7,70,-45v0,-26,-12,-28,-54,-28v-45,0,-50,5,-50,47r-49,0v0,-78,27,-89,99,-89v51,0,103,0,103,70v0,32,-6,59,-42,63r0,2v37,3,47,24,47,59v0,75,-39,80,-108,80v-68,0,-102,-4,-102,-93"},"4":{"d":"207,-270r0,173r31,0r0,39r-31,0r0,58r-49,0r0,-58r-147,0r0,-56r119,-156r77,0xm158,-97v-2,-44,4,-96,-2,-136r-104,136r106,0"},"5":{"d":"76,-231v1,22,-2,47,1,67v12,-21,43,-22,64,-22v70,0,88,25,88,93v0,84,-27,95,-107,95v-66,0,-96,-10,-98,-80r49,0v0,37,20,38,53,38v47,0,54,-5,54,-52v0,-46,-7,-52,-54,-52v-26,0,-46,0,-50,18r-45,0r0,-144r188,0r0,39r-143,0"},"6":{"d":"125,-122v-39,0,-54,0,-54,33v0,43,6,49,54,49v45,0,54,-1,54,-43v0,-39,-10,-39,-54,-39xm22,-103r0,-79v1,-76,31,-90,103,-90v62,0,102,2,101,77r-49,0v0,-34,-14,-35,-52,-35v-65,0,-55,41,-53,91v8,-23,34,-26,60,-26v72,0,96,10,96,79v0,73,-26,88,-103,88v-80,0,-103,-13,-103,-105"},"7":{"d":"224,-270r0,50r-111,220r-55,0r116,-226r-151,0r0,-44r201,0"},"8":{"d":"127,-118v-51,0,-56,6,-56,38v0,34,6,40,56,40v50,0,57,-8,57,-40v0,-34,-7,-38,-57,-38xm127,2v-58,0,-105,-3,-105,-82v0,-31,10,-53,47,-60v-36,-8,-43,-25,-43,-60v0,-64,38,-72,101,-72v51,0,101,-4,101,72v0,34,-8,52,-42,61v35,5,47,26,47,59v0,76,-37,82,-106,82xm127,-158v38,0,52,2,52,-42v0,-30,-14,-30,-52,-30v-44,0,-52,3,-52,30v0,42,14,42,52,42"},"9":{"d":"126,-230v-47,0,-53,4,-53,43v0,35,6,39,53,39v47,0,57,-3,57,-39v0,-40,-16,-43,-57,-43xm22,-76r49,0v0,35,12,36,55,36v42,0,57,-1,57,-47v0,-14,2,-33,-1,-45v-12,22,-33,27,-68,27v-58,0,-90,-9,-90,-82v0,-67,20,-85,102,-85v89,0,105,22,105,115r0,79v0,68,-40,80,-105,80v-59,0,-104,-2,-104,-78"},":":{"d":"77,-49r0,49r-45,0r0,-49r45,0xm77,-189r0,49r-45,0r0,-49r45,0","w":126},";":{"d":"32,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94xm81,-189r0,49r-45,0r0,-49r45,0","w":126},"<":{"d":"18,-89r0,-25r174,-75r0,36r-125,51r125,51r0,36","w":210},"=":{"d":"18,-120r0,-34r174,0r0,34r-174,0xm18,-50r0,-34r174,0r0,34r-174,0","w":210},">":{"d":"192,-114r0,25r-174,74r0,-36r125,-51r-125,-51r0,-36","w":210},"?":{"d":"118,-86r-45,0v0,-42,3,-52,39,-67v25,-11,38,-12,38,-43v0,-35,-8,-38,-41,-38v-42,0,-47,9,-45,46r-45,0v-2,-68,19,-84,92,-84v53,0,85,10,85,76v0,40,-7,54,-48,71v-21,8,-32,12,-30,39xm118,-49r0,49r-45,0r0,-49r45,0","w":214},"@":{"d":"224,-198r28,0r-26,94v-2,11,2,18,15,18v27,0,46,-45,46,-66v0,-45,-44,-90,-101,-90v-72,0,-119,66,-119,116v0,80,92,119,170,87r11,27v-93,39,-216,-2,-216,-108v0,-79,69,-152,154,-152v68,0,133,49,133,119v0,59,-74,132,-118,74v-40,42,-95,16,-98,-33v-4,-54,79,-128,117,-68xm179,-176v-14,0,-41,20,-41,58v0,18,5,32,25,32v40,0,69,-89,16,-90","w":351},"A":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0","w":255},"B":{"d":"75,-118r0,74v47,-6,117,21,117,-36v0,-60,-71,-32,-117,-38xm243,-75v0,112,-128,65,-220,75r0,-270v88,10,214,-37,214,70v0,32,-8,51,-39,61v38,4,45,30,45,64xm75,-226r0,69v45,-5,110,20,110,-38v0,-54,-68,-23,-110,-31","w":257},"C":{"d":"236,-180r-52,0v2,-41,-5,-48,-58,-48v-78,0,-61,57,-61,121v0,54,7,65,61,65v49,0,64,-8,61,-55r52,0v7,89,-39,99,-113,99v-123,0,-114,-63,-113,-168v0,-86,33,-106,113,-106v72,0,112,8,110,92","w":250},"D":{"d":"22,0r0,-270r129,0v75,0,106,27,106,100v0,92,12,170,-97,170r-138,0xm74,-44r86,0v57,-3,42,-70,46,-126v5,-77,-70,-52,-132,-56r0,182","w":271},"E":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0","w":222},"F":{"d":"73,-226r0,72r120,0r0,42r-120,0r0,112r-52,0r0,-270r178,0r0,44r-126,0","w":209,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":58,".":58}},"G":{"d":"127,-143r120,0v2,99,4,145,-116,145v-86,0,-119,-15,-119,-106r0,-62v0,-90,35,-106,119,-106v66,0,118,-4,116,83r-52,0v0,-40,-19,-39,-64,-39v-88,0,-67,56,-67,124v0,57,9,62,67,62v54,0,66,-8,64,-62r-68,0r0,-39","w":261},"H":{"d":"253,-270r0,270r-52,0r0,-115r-125,0r0,115r-52,0r0,-270r52,0r0,111r125,0r0,-111r52,0","w":276},"I":{"d":"76,-270r0,270r-52,0r0,-270r52,0","w":99},"J":{"d":"137,-270r52,0r0,187v0,71,-26,85,-88,85v-55,0,-90,-7,-90,-69r0,-39r49,0v1,39,-9,64,41,64v31,0,36,-8,36,-41r0,-187","w":209},"K":{"d":"76,-270r0,110r24,0r90,-110r63,0r-109,132r121,138r-66,0r-99,-116r-24,0r0,116r-52,0r0,-270r52,0","w":257},"L":{"d":"76,-270r0,226r126,0r0,44r-178,0r0,-270r52,0","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"M":{"d":"289,-228r-85,228r-46,0r-87,-226r5,226r-52,0r0,-270r83,0r73,201r2,0r72,-201r85,0r0,270r-52,0r4,-228r-2,0","w":362},"N":{"d":"225,-44r-3,-226r52,0r0,270r-86,0r-115,-226r-2,0r5,226r-52,0r0,-270r85,0","w":297},"O":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54","w":257},"P":{"d":"20,0r0,-270r120,0v72,0,96,17,96,93v0,105,-73,89,-164,90r0,87r-52,0xm72,-132v50,-5,123,20,112,-45v11,-67,-59,-45,-112,-49r0,94","w":246,"k":{"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,",":65,".":65}},"Q":{"d":"279,-36r-21,30r-24,-17v-26,26,-65,25,-96,25v-84,0,-116,-14,-119,-103r0,-73v0,-84,39,-98,119,-98v64,0,119,3,119,98v0,45,4,76,-5,120xm147,-127r57,40r2,-87v0,-49,-17,-54,-68,-54v-46,0,-67,3,-67,54r0,73v0,56,14,59,67,59v19,0,40,1,54,-11r-67,-43","w":275},"R":{"d":"188,-50v5,-54,-67,-36,-114,-39r0,89r-52,0r0,-270v95,7,220,-33,220,81v0,41,-5,68,-48,77v55,1,44,59,45,112r-51,0r0,-50xm74,-134v52,-5,125,20,116,-47v10,-67,-65,-39,-116,-45r0,92","w":259,"k":{"T":-2,"V":-3,"W":-4,"y":-7,"\u00fd":-7,"\u00ff":-7}},"S":{"d":"12,-86r52,0v-2,41,6,47,61,46v47,0,54,-9,54,-40v0,-39,-21,-34,-61,-36v-58,-4,-105,-2,-105,-80v0,-74,47,-76,112,-76v58,0,104,6,100,81r-52,0v2,-34,-8,-39,-48,-39v-51,0,-60,5,-60,34v0,33,7,35,60,38v83,5,105,9,105,78v0,76,-36,82,-105,82v-65,0,-119,-4,-113,-88","w":242},"T":{"d":"132,-226r0,226r-52,0r0,-226r-79,0r0,-44r210,0r0,44r-79,0","w":211,"k":{"\u00fc":22,"\u0161":22,"\u00f2":31,"\u00f6":31,"\u00e8":31,"\u00eb":31,"\u00ea":31,"\u00e3":31,"\u00e5":31,"\u00e0":31,"\u00e4":31,"\u00e2":31,"w":18,"y":18,"\u00fd":18,"\u00ff":18,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":43,".":43,"c":31,"\u00e7":31,"e":31,"\u00e9":31,"o":31,"\u00f8":31,"\u0153":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"r":21,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22,"-":25,"a":31,"\u00e6":31,"\u00e1":31,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,"s":22,":":16,";":16}},"U":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192","w":271},"V":{"d":"194,-270r54,0r-87,270r-79,0r-86,-270r53,0r73,227","w":243,"k":{"\u00f6":14,"\u00f4":14,"\u00e8":14,"\u00eb":14,"\u00ea":14,"\u00e3":14,"\u00e5":14,"\u00e0":14,"\u00e4":14,"\u00e2":14,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":36,".":36,"e":14,"\u00e9":14,"o":14,"\u00f8":14,"\u0153":14,"\u00f3":14,"\u00f2":14,"\u00f5":14,"r":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"a":14,"\u00e6":14,"\u00e1":14,"i":-8,"\u0131":-8,"\u00ed":-8,"\u00ee":-8,"\u00ef":-8,"\u00ec":-8,":":4,";":4}},"W":{"d":"291,-42r59,-228r52,0r-73,270r-74,0r-54,-206r-2,0r-56,206r-74,0r-70,-270r52,0r57,228r62,-228r60,0","w":400,"k":{"\u00fc":6,"\u00f6":11,"\u00ea":11,"\u00e4":8,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":30,".":30,"e":11,"\u00e9":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u0153":11,"\u00f3":11,"\u00f4":11,"\u00f2":11,"\u00f5":11,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"i":-12,"\u0131":-12,"\u00ed":-12,"\u00ee":-12,"\u00ef":-12,"\u00ec":-12}},"X":{"d":"247,-270r-80,131r86,139r-59,0r-68,-114r-69,114r-61,0r89,-139r-82,-131r60,0r63,107r62,-107r59,0","w":249},"Y":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0","w":241,"k":{"\u00fc":26,"\u00f6":36,"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"Z":{"d":"222,-270r0,44r-149,182r151,0r0,44r-215,0r0,-44r148,-182r-142,0r0,-44r207,0","w":233},"[":{"d":"21,-272r84,0r0,39r-35,0r0,248r35,0r0,39r-84,0r0,-326","w":125},"\\":{"d":"78,41r-96,-311r41,0r95,311r-40,0","w":100},"]":{"d":"104,54r-83,0r0,-39r34,0r0,-248r-34,0r0,-39r83,0r0,326","w":125},"^":{"d":"93,-270r25,0r74,175r-36,0r-51,-126r-51,126r-36,0","w":210},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"\u2018":{"d":"66,-272r0,21v-13,0,-21,4,-21,24r18,0r0,49r-46,0v3,-48,-16,-100,49,-94","w":83,"k":{"\u2018":7}},"a":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0","w":212},"b":{"d":"112,-157v-39,0,-46,17,-46,57v0,45,0,68,46,68v41,0,40,-25,40,-68v0,-48,-9,-57,-40,-57xm21,0r0,-270r45,0v2,34,-4,76,2,106v10,-23,34,-27,57,-27v65,0,72,36,72,91v0,58,-2,102,-72,102v-29,0,-45,-9,-61,-30r2,28r-45,0","w":213},"c":{"d":"142,-72r45,0v0,62,-22,74,-86,74v-69,0,-84,-20,-84,-96v0,-66,10,-97,84,-97v56,0,86,8,86,68r-45,0v0,-29,-9,-34,-41,-34v-39,0,-39,14,-39,63v0,47,-1,62,39,62v37,0,41,-7,41,-40","w":198},"d":{"d":"100,-157v-31,0,-40,9,-40,57v0,43,-1,68,40,68v46,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm146,0v-1,-9,5,-23,0,-28v-12,25,-32,30,-59,30v-70,0,-72,-44,-72,-102v0,-55,7,-91,72,-91v25,0,46,8,59,27r0,-106r45,0r0,270r-45,0","w":213},"e":{"d":"145,-60r45,0v0,59,-34,62,-88,62v-72,0,-87,-23,-87,-96v0,-68,11,-97,87,-97v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,43,0,43,-28xm60,-115r85,0v0,-39,-6,-42,-43,-42v-39,0,-42,9,-42,42","w":205},"f":{"d":"123,-189r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0r0,35v-39,-3,-51,9,-45,46r46,0","w":125,"k":{"\u2019":-7,"f":-4,"\ufb01":-4,"\ufb02":-4,"\u00df":-4}},"g":{"d":"101,-157v-31,0,-41,9,-41,57v0,43,1,68,41,68v45,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm101,49v55,0,48,-34,46,-76v-12,25,-37,29,-60,29v-65,0,-72,-36,-72,-91v0,-58,2,-102,72,-102v28,-1,47,7,61,30r-2,-28r46,0r0,189v0,68,-22,84,-91,84v-46,0,-81,-8,-78,-65r43,0v0,26,9,30,35,30","w":213},"h":{"d":"68,-270r1,109v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-270r46,0","w":215},"i":{"d":"65,-189r0,189r-45,0r0,-189r45,0xm65,-270r0,39r-45,0r0,-39r45,0","w":84},"j":{"d":"63,-189r0,193v4,43,-21,70,-67,60r0,-32v20,0,22,-10,22,-23r0,-198r45,0xm63,-270r0,39r-45,0r0,-39r45,0","w":81},"k":{"d":"67,-270r0,154r11,0r53,-73r52,0r-67,89r80,100r-55,0r-63,-85r-11,0r0,85r-45,0r0,-270r45,0","w":194},"l":{"d":"68,-270r0,270r-45,0r0,-270r45,0","w":90},"m":{"d":"23,-189r44,0v1,8,-2,21,1,27v10,-24,35,-29,59,-29v25,-1,51,8,58,33v9,-26,35,-33,60,-33v99,0,56,112,65,191r-45,0r0,-123v-1,-24,-7,-34,-32,-34v-73,-2,-34,97,-44,157r-45,0r0,-123v-1,-24,-7,-34,-32,-34v-73,-2,-34,97,-44,157r-45,0r0,-189","w":332},"n":{"d":"22,-189r46,0v1,9,-2,21,1,28v10,-28,33,-30,60,-30v97,0,55,112,64,191r-45,0r0,-120v0,-27,-6,-37,-35,-37v-40,0,-45,19,-45,53r0,104r-46,0r0,-189","w":215},"o":{"d":"105,-191v79,0,89,24,89,97v0,73,-10,96,-89,96v-79,0,-89,-23,-89,-96v0,-73,10,-97,89,-97xm105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63","w":209},"p":{"d":"112,-32v31,0,41,-9,41,-57v0,-43,0,-68,-41,-68v-46,0,-45,23,-45,68v0,40,6,57,45,57xm67,-189v1,9,-5,23,0,28v12,-25,32,-30,59,-30v70,0,72,44,72,102v0,55,-7,91,-72,91v-25,0,-46,-8,-59,-27r0,107r-45,0r0,-271r45,0","w":214},"q":{"d":"102,-157v-31,0,-40,9,-40,57v0,43,-1,68,40,68v46,0,45,-23,45,-68v0,-40,-6,-57,-45,-57xm193,-189r0,271r-46,0v-2,-34,4,-77,-2,-107v-10,23,-33,27,-56,27v-65,0,-73,-36,-73,-91v0,-58,3,-102,73,-102v28,-1,46,7,60,30r-2,-28r46,0","w":214},"r":{"d":"19,-189r44,0v1,8,-4,21,1,25v9,-21,28,-27,50,-27v46,0,52,30,50,74r-42,0v0,-22,2,-41,-23,-40v-27,0,-35,16,-35,40r0,117r-45,0r0,-189","w":169,"k":{"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"f":-3,"\ufb01":-3,"\ufb02":-3,"\u00df":-3,",":40,".":40,"c":-3,"\u00e7":-3,"d":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"g":-3,"h":-3,"m":-3,"n":-3,"\u00f1":-3,"o":-3,"\u00f8":-3,"\u0153":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"q":-3,"r":-3,"t":-3,"u":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u00f9":-3,"x":-3,"z":-3,"\u017e":-3,"-":-18}},"s":{"d":"183,-138r-46,0v0,-23,-12,-22,-36,-22v-24,0,-41,0,-41,25v0,19,5,19,45,21v45,2,84,-1,84,60v0,51,-40,56,-88,56v-51,0,-86,1,-86,-61r45,0v1,27,8,30,41,30v27,0,43,1,43,-25v0,-17,-1,-25,-47,-26v-69,-1,-82,-10,-82,-58v0,-52,37,-53,86,-53v37,0,82,0,82,53","w":200},"t":{"d":"-1,-154r0,-35r24,0r0,-43r45,0r0,43r73,0r0,35r-73,0r0,96v0,17,1,26,20,26v26,0,23,-20,23,-40r39,0v1,57,-13,74,-62,74v-91,0,-60,-85,-65,-156r-24,0","w":153},"u":{"d":"191,0r-44,0v-1,-9,3,-24,-2,-29v-21,50,-123,43,-123,-23r0,-137r46,0r0,119v0,27,2,38,31,38v74,0,38,-96,46,-157r46,0r0,189","w":213},"v":{"d":"179,-189r-55,189r-69,0r-57,-189r47,0r45,158r41,-158r48,0","w":176,"k":{",":18,".":18}},"w":{"d":"286,-189r-43,189r-65,0r-35,-152r-34,152r-65,0r-43,-189r44,0r33,158r37,-158r57,0r36,158r2,0r32,-158r44,0","w":286,"k":{",":22,".":22}},"x":{"d":"175,-189r-55,90r61,99r-53,0r-38,-69r-38,69r-54,0r62,-99r-55,-90r52,0r33,60r33,-60r52,0","w":180},"y":{"d":"176,-189r-49,197v-8,49,-29,85,-91,74r0,-34v34,7,43,-23,46,-48r-22,0r-62,-189r47,0r49,161r36,-161r46,0","w":174,"k":{",":22,".":22}},"z":{"d":"163,-151r-102,116r102,0r0,35r-155,0r0,-39r101,-115r-93,0r0,-35r147,0r0,38","w":171},"{":{"d":"13,-94r0,-34v7,0,30,0,30,-16r0,-80v7,-48,32,-50,75,-48r0,34v-67,-15,5,124,-64,128v11,1,34,4,34,37r0,74v-4,14,12,21,30,18r0,35v-43,2,-75,1,-75,-48r0,-80v0,-20,-23,-20,-30,-20","w":140},"|":{"d":"68,-270r0,360r-35,0r0,-360r35,0","w":100},"}":{"d":"127,-125r0,35v-7,0,-30,0,-30,16r0,80v-7,49,-32,50,-75,48r0,-35v67,16,-5,-123,64,-127v-11,-1,-34,-4,-34,-37r0,-74v4,-14,-11,-22,-30,-19r0,-34v44,-2,75,-1,75,48r0,80v0,20,23,19,30,19","w":140},"~":{"d":"162,-124r30,0v0,37,-32,73,-70,48v-19,-8,-38,-26,-60,-26v-10,0,-13,15,-14,23r-30,0v-2,-34,33,-71,69,-51v17,10,38,28,60,28v13,0,15,-13,15,-22","w":210},"\u00a1":{"d":"78,-189r0,49r-45,0r0,-49r45,0xm30,81r3,-180r45,0r3,180r-51,0","w":111},"\u00a2":{"d":"115,-63r0,-124v-28,5,-29,31,-29,63v0,35,1,57,29,61xm140,-28r0,30r-25,0r0,-30v-67,0,-74,-39,-74,-96v0,-59,6,-97,74,-98r0,-24r25,0r0,24v48,0,72,19,73,69r-45,0v-1,-24,-6,-30,-28,-34r0,124v25,-3,29,-11,28,-39r45,0v2,52,-14,73,-73,74"},"\u00a3":{"d":"174,-141r0,39r-72,0v1,29,2,47,-20,61r162,-3r0,44r-219,0r0,-42v30,-4,28,-30,28,-60r-35,0r0,-39r35,0v-3,-84,3,-131,91,-131v69,0,102,11,98,87r-49,0v1,-33,-1,-45,-45,-45v-57,0,-45,42,-46,89r72,0"},"\u2044":{"d":"204,-270r-171,270r-34,0r171,-270r34,0","w":203},"\u00a5":{"d":"201,-193r34,0r0,39r-56,0r-19,31r75,0r0,39r-85,0r0,84r-49,0r0,-84r-82,0r0,-39r72,0r-18,-31r-54,0r0,-39r32,0r-43,-77r56,0r63,115r62,-115r57,0"},"\u0192":{"d":"226,-272r-6,34v-46,-9,-49,26,-54,63r42,0r-5,35r-43,0r-29,166v-10,58,-39,58,-103,58r6,-35v43,0,45,0,51,-32r28,-157r-33,0r6,-35r32,0r6,-30v12,-69,36,-67,102,-67"},"\u00a7":{"d":"189,-91v0,-38,-68,-35,-102,-47v-20,0,-22,17,-22,33v2,44,66,32,104,46v18,0,20,-16,20,-32xm24,0r47,0v1,34,1,41,56,41v48,0,58,-6,58,-32v0,-23,-10,-24,-29,-30v-53,-17,-137,-3,-137,-79v0,-23,3,-46,29,-52v-18,-11,-20,-30,-20,-52v0,-63,34,-68,99,-68v64,0,101,7,97,79r-47,0v-1,-33,-6,-37,-50,-37v-45,0,-50,6,-50,26v-2,44,65,31,96,46v39,9,62,13,62,58v1,23,-6,48,-26,57v23,8,25,29,25,52v0,74,-44,75,-107,75v-71,0,-105,-9,-103,-84"},"\u00a4":{"d":"89,-189v16,-14,59,-13,76,0r28,-28r25,24r-29,28v13,12,11,66,-1,76r28,27r-25,24r-28,-28v-15,12,-55,16,-73,-1r-28,29r-25,-24r29,-28v-17,-19,-16,-57,-1,-74r-29,-28r25,-25xm89,-125v1,21,19,36,38,36v57,0,46,-74,0,-76v-23,0,-39,20,-38,40"},"'":{"d":"18,-270r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":85},"\u201c":{"d":"136,-272r0,21v-13,0,-22,4,-22,24r18,0r0,49r-45,0v3,-48,-16,-100,49,-94xm66,-272r0,21v-13,0,-21,4,-21,24r18,0r0,49r-46,0v3,-48,-16,-100,49,-94","w":152},"\u00ab":{"d":"66,-194r30,17r-38,78r41,76r-30,18r-51,-94xm139,-194r31,17r-39,78r41,76r-29,18r-51,-94","w":190},"\u2039":{"d":"66,-194r30,17r-38,78r41,76r-30,18r-51,-94","w":117},"\u203a":{"d":"51,-194r48,95r-52,94r-29,-18r41,-76r-38,-78","w":117},"\ufb01":{"d":"190,-270r0,39r-45,0r0,-39r45,0xm190,-189r0,189r-45,0r0,-189r45,0xm122,-270r0,35v-39,-3,-51,9,-45,46r46,0r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0","w":210},"\ufb02":{"d":"192,-270r0,270r-46,0r0,-270r46,0xm123,-189r0,35r-46,0r0,154r-45,0r0,-154r-27,0r0,-35r27,0v-1,-52,3,-83,60,-81r30,0r0,35v-39,-3,-51,9,-45,46r46,0","w":214},"\u2013":{"d":"0,-117r180,0r0,35r-180,0r0,-35","w":180},"\u2020":{"d":"151,-270r0,80r70,0r0,39r-70,0r0,233r-49,0r0,-233r-69,0r0,-39r69,0r0,-80r49,0"},"\u2021":{"d":"151,-270r0,85r70,0r0,39r-70,0r0,100r70,0r0,39r-70,0r0,89r-49,0r0,-89r-69,0r0,-39r69,0r0,-100r-69,0r0,-39r69,0r0,-85r49,0"},"\u00b7":{"d":"86,-127r0,50r-45,0r0,-50r45,0","w":126},"\u00b6":{"d":"249,82r-39,0r0,-310r-31,0r0,310r-39,0r0,-168v-84,0,-141,7,-141,-90v0,-79,25,-94,100,-94r150,0r0,352xm140,-129r0,-99v-51,3,-103,-14,-92,52v-7,62,43,44,92,47"},"\u2022":{"d":"161,-135v0,37,-30,67,-67,67v-37,0,-68,-29,-68,-67v0,-37,30,-68,68,-68v37,0,67,31,67,68","w":187},"\u201a":{"d":"17,45r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,16,100,-49,94","w":90},"\u201e":{"d":"17,45r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,16,100,-49,94xm85,45r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,16,100,-49,94","w":152},"\u201d":{"d":"17,-176r0,-21v13,0,22,-4,22,-24r-18,0r0,-49r45,0v-3,48,15,100,-49,94xm87,-176r0,-21v13,0,21,-4,21,-24r-18,0r0,-49r46,0v-3,48,15,100,-49,94","w":152},"\u00bb":{"d":"125,-194r47,95r-51,94r-29,-18r40,-76r-38,-78xm51,-194r48,95r-52,94r-29,-18r41,-76r-38,-78","w":190},"\u2026":{"d":"83,-49r0,49r-46,0r0,-49r46,0xm203,-49r0,49r-46,0r0,-49r46,0xm323,-49r0,49r-46,0r0,-49r46,0","w":360},"\u2030":{"d":"397,-135v59,0,62,32,60,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm397,-25v36,8,30,-28,30,-59v0,-23,-6,-24,-30,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm258,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm258,-25v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-37,0,-27,29,-27,57v0,25,5,26,27,26xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-162v36,8,28,-29,29,-59v0,-23,-5,-24,-29,-24v-36,-7,-26,30,-26,57v0,25,4,26,26,26xm267,-270r-172,270r-33,0r171,-270r34,0","w":465},"\u00bf":{"d":"96,-102r46,0v0,42,-4,52,-40,67v-25,11,-38,12,-38,43v0,35,8,38,41,38v42,0,47,-9,45,-46r46,0v2,68,-20,84,-92,84v-53,0,-85,-10,-85,-76v0,-40,7,-54,48,-71v21,-8,30,-12,29,-39xm142,-189r0,49r-46,0r0,-49r46,0","w":214},"`":{"d":"43,-267r64,41r-10,19r-70,-31","w":133},"\u00b4":{"d":"90,-267r17,29r-70,31r-10,-19","w":133},"\u02c6":{"d":"91,-267r64,39r-9,18r-55,-23r-55,23r-9,-18","w":182},"\u02dc":{"d":"144,-253r22,12v-9,17,-20,31,-41,31v-29,-1,-60,-40,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":193},"\u00af":{"d":"27,-248r99,0r0,27r-99,0r0,-27","w":153},"\u02d8":{"d":"27,-262r24,0v5,40,69,40,74,0r24,0v-2,32,-29,58,-61,58v-32,0,-59,-26,-61,-58","w":176},"\u02d9":{"d":"63,-250r0,31r-36,0r0,-31r36,0","w":89},"\u00a8":{"d":"27,-250r36,0r0,31r-36,0r0,-31xm100,-250r36,0r0,31r-36,0r0,-31","w":163},"\u02da":{"d":"27,-236v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm43,-236v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":120},"\u00b8":{"d":"68,4r16,23r-47,19r-10,-17","w":110},"\u02dd":{"d":"72,-274r26,23r-56,52r-15,-14xm141,-274r26,23r-55,52r-16,-14","w":193},"\u02db":{"d":"54,-1v10,2,26,-3,32,2v-13,6,-35,20,-35,32v1,17,22,17,34,10r0,23v-24,10,-58,0,-58,-28v0,-18,12,-30,27,-39","w":112},"\u02c7":{"d":"91,-210r-64,-39r9,-18r55,23r55,-23r9,18","w":182},"\u2014":{"d":"0,-117r360,0r0,35r-360,0r0,-35","w":360},"\u00c6":{"d":"184,-90r0,-136r-27,0r-65,136r92,0xm184,0r0,-51r-108,0r-25,51r-57,0r127,-270r246,0r0,44r-132,0r0,69r124,0r0,40r-124,0r0,73r132,0r0,44r-183,0","w":381},"\u00aa":{"d":"100,-157v0,-3,2,-9,0,-11v-21,24,-84,20,-79,-23v-4,-42,54,-45,78,-26v-1,-20,7,-35,-22,-35v-13,0,-22,0,-21,15r-31,0v0,-36,26,-35,52,-35v32,0,53,4,53,39r0,76r-30,0xm75,-175v15,0,25,-2,25,-17v0,-13,-9,-15,-25,-15v-12,0,-23,0,-23,14v0,17,8,18,23,18","w":158},"\u0141":{"d":"76,-146r0,102r126,0r0,44r-178,0r0,-103r-29,27r0,-41r29,-27r0,-126r52,0r0,84r58,-54r0,41","w":203,"k":{"T":32,"V":20,"W":14,"y":7,"\u00fd":7,"\u00ff":7,"Y":36,"\u00dd":36,"\u0178":36,"\u2019":22}},"\u00d8":{"d":"271,-279r0,41r-21,19v7,23,6,48,6,80v0,112,-10,141,-119,141v-49,0,-76,1,-100,-25r-37,32r0,-39r22,-20v-6,-15,-6,-59,-6,-89v0,-94,3,-133,121,-133v34,0,73,0,98,26xm204,-177r-128,119v5,16,39,16,61,16v70,0,67,-17,67,-94r0,-41xm68,-91r128,-120v-12,-16,-32,-17,-59,-17v-94,0,-64,66,-69,137","w":271},"\u0152":{"d":"131,-42v89,0,69,-55,69,-124v0,-55,-9,-62,-69,-62v-94,0,-65,58,-65,124v0,58,8,62,65,62xm252,-226r0,69r125,0r0,40r-125,0r0,73r132,0r0,44r-181,0v-1,-9,3,-22,0,-29v-17,28,-46,31,-80,31v-118,0,-109,-73,-109,-179v0,-72,33,-95,109,-95v27,-1,65,3,81,33r-1,-31r180,0r0,44r-131,0","w":397},"\u00ba":{"d":"79,-272v45,0,56,10,56,57v0,42,-6,60,-56,60v-45,0,-55,-10,-55,-60v0,-42,6,-57,55,-57xm79,-249v-23,0,-24,8,-24,34v0,33,1,36,24,36v24,0,25,-12,25,-36v0,-29,-2,-34,-25,-34","w":158},"\u00e6":{"d":"188,-115r84,0v0,-39,-6,-42,-43,-42v-39,0,-41,9,-41,42xm100,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm141,-94v1,-31,12,-66,-39,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v15,-1,56,0,65,24v8,-23,43,-24,62,-24v78,0,89,23,89,105r-130,0v0,41,0,54,41,54v25,0,43,0,43,-28r46,0v0,59,-35,62,-89,62v-26,1,-58,-4,-69,-30v-10,29,-45,30,-76,30v-43,0,-70,-9,-70,-60v0,-45,23,-58,70,-58v23,0,46,0,57,22","w":331},"\u0131":{"d":"65,-189r0,189r-45,0r0,-189r45,0","w":84},"\u0142":{"d":"72,-152r0,152r-46,0r0,-115r-26,25r0,-32r26,-24r0,-124r46,0r0,86r26,-24r0,32","w":97},"\u00f8":{"d":"209,-194r0,29r-19,15v7,79,20,152,-83,152v-24,0,-59,0,-75,-21r-31,27r0,-29r20,-18v-5,-18,-5,-37,-5,-56v0,-75,10,-96,89,-96v24,0,58,0,74,21xm107,-32v45,0,42,-43,41,-85r-81,71v4,15,27,14,40,14xm103,-157v-46,0,-45,43,-41,86r82,-71v-4,-15,-28,-15,-41,-15","w":209},"\u0153":{"d":"103,-157v-39,0,-43,6,-43,63v0,54,6,62,43,62v39,0,42,-8,42,-62v0,-59,-3,-63,-42,-63xm14,-94v0,-64,5,-97,90,-97v19,-1,55,2,65,26v10,-24,42,-26,64,-26v78,0,88,23,88,105r-130,0v0,41,1,54,42,54v25,0,42,0,42,-28r46,0v0,59,-34,62,-88,62v-27,1,-53,-3,-65,-27v-12,27,-38,27,-64,27v-77,0,-90,-23,-90,-96xm191,-115r84,0v0,-39,-5,-42,-42,-42v-39,0,-42,9,-42,42","w":335},"\u00df":{"d":"24,0r0,-185v0,-64,7,-87,86,-87v40,0,79,8,79,56v1,30,-18,42,-43,49v48,3,56,37,56,78v0,53,-11,91,-71,91v-14,0,-27,-3,-40,-7r0,-37v33,24,66,2,66,-47v0,-48,-12,-64,-58,-61r0,-31v28,1,47,-1,48,-35v0,-21,-20,-25,-41,-25v-28,0,-37,7,-37,35r0,206r-45,0","w":218},"\u00b9":{"d":"111,-272r0,162r-34,0r0,-134r-42,42r-18,-21r52,-49r42,0","w":152},"\u00ac":{"d":"158,-44r0,-76r-140,0r0,-34r174,0r0,110r-34,0","w":210},"\u00b5":{"d":"191,0r-44,0v-1,-9,2,-22,-1,-29v-13,30,-43,33,-78,30r0,81r-45,0r0,-271r45,0r0,119v0,27,3,38,32,38v74,0,38,-96,46,-157r45,0r0,189","w":213},"\u2122":{"d":"334,-270r0,145r-31,0r-1,-117r-42,117r-19,0r-43,-117r0,117r-31,0r0,-145r51,0r33,86r32,-86r51,0xm149,-270r0,28r-44,0r0,117r-35,0r0,-117r-44,0r0,-28r123,0","w":360},"\u00d0":{"d":"74,-226r0,68r63,0r0,39r-63,0r0,75r86,0v57,-3,42,-70,46,-126v5,-77,-70,-52,-132,-56xm22,-158r0,-112r129,0v75,0,106,27,106,100v0,92,12,170,-97,170r-138,0r0,-119r-32,0r0,-39r32,0","w":271},"\u00bd":{"d":"288,-270r-171,270r-33,0r170,-270r34,0xm108,-270r0,162r-34,0r0,-134r-42,42r-18,-21r52,-49r42,0xm363,-28r0,28r-122,0v-3,-51,4,-80,53,-80v28,-6,35,-2,35,-32v0,-21,-7,-24,-26,-24v-23,0,-28,1,-28,33r-34,0v0,-40,3,-59,62,-59v38,0,60,7,60,50v0,43,-14,49,-54,55v-28,4,-35,4,-34,29r88,0","w":380},"\u00b1":{"d":"88,-189r34,0r0,49r70,0r0,34r-70,0r0,49r-34,0r0,-49r-70,0r0,-34r70,0r0,-49xm18,0r0,-35r174,0r0,35r-174,0","w":210},"\u00de":{"d":"20,0r0,-270r52,0r0,44r68,0v72,0,96,17,96,93v0,105,-73,88,-164,89r0,44r-52,0xm72,-88v50,-5,123,20,112,-45v11,-67,-59,-45,-112,-49r0,94","w":246},"\u00bc":{"d":"344,-162r0,102r14,0r0,27r-14,0r0,33r-34,0r0,-33r-89,0r0,-35r72,-94r51,0xm310,-60v-1,-25,2,-53,-1,-76r-60,76r61,0xm294,-270r-172,270r-33,0r171,-270r34,0xm114,-270r0,162r-34,0r0,-134r-43,42r-18,-21r52,-49r43,0","w":380},"\u00f7":{"d":"18,-85r0,-34r174,0r0,34r-174,0xm84,-15r0,-42r42,0r0,42r-42,0xm84,-147r0,-42r42,0r0,42r-42,0","w":210},"\u00a6":{"d":"68,-243r0,126r-35,0r0,-126r35,0xm68,63r-35,0r0,-126r35,0r0,126","w":100},"\u00b0":{"d":"126,-218v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm101,-218v0,-16,-13,-29,-29,-29v-16,0,-29,13,-29,29v0,16,13,29,29,29v16,0,29,-13,29,-29","w":144},"\u00fe":{"d":"112,-32v31,0,41,-9,41,-57v0,-43,0,-68,-41,-68v-46,0,-45,23,-45,68v0,40,6,57,45,57xm22,82r0,-352r45,0r1,109v10,-25,31,-30,58,-30v70,0,72,44,72,102v0,55,-7,91,-72,91v-25,0,-46,-8,-59,-27r0,107r-45,0","w":214},"\u00be":{"d":"348,-162r0,102r14,0r0,27r-14,0r0,33r-34,0r0,-33r-88,0r0,-35r71,-94r51,0xm314,-60v-1,-25,2,-53,-1,-76r-59,76r60,0xm302,-270r-172,270r-33,0r170,-270r35,0xm63,-178r0,-28v23,-1,41,6,41,-24v0,-13,-6,-14,-31,-14v-22,0,-25,2,-25,25r-35,0v0,-47,17,-53,60,-53v31,0,65,0,65,42v0,20,-9,35,-29,39v22,2,32,14,32,35v0,45,-27,48,-68,48v-41,0,-61,-1,-61,-55r34,0v0,27,1,27,27,27v27,0,34,-1,34,-20v0,-26,-21,-22,-44,-22","w":380},"\u00b2":{"d":"134,-138r0,28r-122,0v-3,-51,4,-80,53,-80v28,-6,35,-2,35,-32v0,-21,-6,-24,-25,-24v-23,0,-29,1,-29,33r-34,0v0,-40,4,-59,63,-59v38,0,59,7,59,50v0,43,-14,49,-54,55v-28,4,-35,4,-34,29r88,0","w":152},"\u00ae":{"d":"142,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v75,0,137,61,137,137v0,76,-62,137,-137,137xm142,-24v62,0,111,-49,111,-111v0,-62,-49,-111,-111,-111v-62,0,-111,49,-111,111v0,62,49,111,111,111xm175,-123r35,63r-33,0r-33,-63r-30,0r0,63r-28,0r0,-148v54,5,129,-19,129,41v0,32,-14,42,-40,44xm114,-145v29,-3,75,12,72,-22v-2,-31,-43,-17,-72,-20r0,42","w":284},"\u2212":{"d":"18,-85r0,-34r174,0r0,34r-174,0","w":210},"\u00f0":{"d":"105,-157v-40,0,-44,12,-44,63v0,50,4,62,44,62v40,0,43,-12,43,-62v0,-51,-3,-63,-43,-63xm65,-261r36,-11v12,7,22,15,31,23r46,-14r19,20r-46,14v32,39,42,79,42,127v0,77,-9,104,-88,104v-79,0,-89,-23,-89,-96v0,-60,7,-98,70,-98v14,0,35,2,52,16v-6,-16,-15,-30,-24,-42r-45,14r-20,-20r47,-14v-9,-8,-18,-15,-31,-23","w":209},"\u00d7":{"d":"105,-126r63,-63r24,24r-63,63r63,63r-24,24r-63,-62r-62,62r-25,-25r62,-62r-62,-62r24,-25","w":210},"\u00b3":{"d":"63,-178r0,-28v23,-1,41,6,41,-24v0,-13,-6,-14,-31,-14v-22,0,-25,2,-25,25r-35,0v0,-47,17,-53,60,-53v31,0,65,0,65,42v0,20,-9,35,-29,39v22,2,32,14,32,35v0,45,-27,48,-68,48v-41,0,-61,-1,-61,-55r34,0v0,27,1,27,27,27v27,0,34,-1,34,-20v0,-26,-21,-22,-44,-22","w":152},"\u00a9":{"d":"142,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v76,0,137,61,137,137v0,76,-61,137,-137,137xm142,-24v61,0,111,-49,111,-111v0,-62,-50,-111,-111,-111v-62,0,-111,49,-111,111v0,62,49,111,111,111xm181,-111r31,0v-16,91,-140,56,-140,-25v0,-46,28,-80,75,-80v33,0,60,20,65,53r-31,0v-18,-53,-78,-20,-78,26v0,26,16,55,45,55v17,0,32,-12,33,-29","w":284},"\u00c1":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm158,-348r17,29r-70,31r-10,-19","w":255},"\u00c2":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm128,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":255},"\u00c4":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm73,-331r36,0r0,31r-36,0r0,-31xm147,-331r35,0r0,31r-35,0r0,-31","w":255},"\u00c0":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm111,-348r64,41r-10,19r-70,-31","w":255},"\u00c5":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm95,-324v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm111,-324v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":255},"\u00c3":{"d":"186,-51r-117,0r-16,51r-54,0r90,-270r76,0r91,270r-52,0xm175,-90r-48,-140r-46,140r94,0xm175,-334r22,12v-9,17,-20,31,-41,31v-29,-1,-60,-40,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":255},"\u00c7":{"d":"138,4r16,23r-47,19r-10,-17xm236,-180r-52,0v2,-41,-5,-48,-58,-48v-78,0,-61,57,-61,121v0,54,7,65,61,65v49,0,64,-8,61,-55r52,0v7,89,-39,99,-113,99v-123,0,-114,-63,-113,-168v0,-86,33,-106,113,-106v72,0,112,8,110,92","w":250},"\u00c9":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm142,-348r16,29r-69,31r-10,-19","w":222},"\u00ca":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm112,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":222},"\u00cb":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm57,-331r36,0r0,31r-36,0r0,-31xm130,-331r36,0r0,31r-36,0r0,-31","w":222},"\u00c8":{"d":"72,-226r0,68r126,0r0,42r-126,0r0,72r134,0r0,44r-186,0r0,-270r185,0r0,44r-133,0xm88,-348r63,41r-10,19r-69,-31","w":222},"\u00cd":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm73,-348r17,29r-70,31r-10,-19","w":99},"\u00ce":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm50,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":99},"\u00cf":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm-12,-331r35,0r0,31r-35,0r0,-31xm61,-331r36,0r0,31r-36,0r0,-31","w":99},"\u00cc":{"d":"76,-270r0,270r-52,0r0,-270r52,0xm26,-348r64,41r-10,19r-70,-31","w":99},"\u00d1":{"d":"225,-44r-3,-226r52,0r0,270r-86,0r-115,-226r-2,0r5,226r-52,0r0,-270r85,0xm196,-334r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":297},"\u00d3":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm152,-348r16,29r-69,31r-10,-19","w":257},"\u00d4":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm129,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":257},"\u00d6":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm74,-331r36,0r0,31r-36,0r0,-31xm148,-331r35,0r0,31r-35,0r0,-31","w":257},"\u00d2":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm105,-348r63,41r-9,19r-70,-31","w":257},"\u00d5":{"d":"128,-272v78,0,115,11,115,98r0,73v0,86,-33,103,-115,103v-84,0,-114,-14,-114,-103r0,-73v0,-84,28,-98,114,-98xm128,-228v-89,0,-62,62,-62,127v0,54,10,59,62,59v47,0,64,-7,64,-59r0,-73v1,-51,-18,-54,-64,-54xm176,-334r22,12v-9,17,-20,31,-41,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,21,-31,41,-31v28,0,61,41,76,5","w":257},"\u0160":{"d":"12,-86r52,0v-2,41,6,47,61,46v47,0,54,-9,54,-40v0,-39,-21,-34,-61,-36v-58,-4,-105,-2,-105,-80v0,-74,47,-76,112,-76v58,0,104,6,100,81r-52,0v2,-34,-8,-39,-48,-39v-51,0,-60,5,-60,34v0,33,7,35,60,38v83,5,105,9,105,78v0,76,-36,82,-105,82v-65,0,-119,-4,-113,-88xm121,-291r-64,-39r9,-18r55,23r55,-23r9,18","w":242},"\u00da":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm159,-348r17,29r-70,31r-10,-19","w":271},"\u00db":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm136,-348r64,39r-9,18r-55,-23r-56,23r-8,-18","w":271},"\u00dc":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm81,-331r36,0r0,31r-36,0r0,-31xm155,-331r35,0r0,31r-35,0r0,-31","w":271},"\u00d9":{"d":"196,-270r52,0r0,192v0,75,-47,80,-113,80v-63,0,-112,-4,-112,-80r0,-192r52,0r0,192v0,28,10,36,60,36v48,0,61,-7,61,-36r0,-192xm112,-348r64,41r-10,19r-70,-31","w":271},"\u00dd":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0xm151,-348r16,29r-70,31r-10,-19","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u0178":{"d":"245,-270r-100,166r0,104r-51,0r0,-104r-98,-166r59,0r65,115r65,-115r60,0xm66,-331r36,0r0,31r-36,0r0,-31xm140,-331r35,0r0,31r-35,0r0,-31","w":241,"k":{"v":20,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":55,".":53,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,"q":36,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"-":36,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"i":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,":":25,";":25,"p":26}},"\u017d":{"d":"222,-270r0,44r-149,182r151,0r0,44r-215,0r0,-44r148,-182r-142,0r0,-44r207,0xm117,-291r-64,-39r8,-18r56,23r55,-23r9,18","w":233},"\u00e1":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm137,-267r16,29r-70,31r-10,-19","w":212},"\u00e2":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm106,-267r64,39r-9,18r-55,-23r-55,23r-9,-18","w":212},"\u00e4":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm51,-250r36,0r0,31r-36,0r0,-31xm125,-250r36,0r0,31r-36,0r0,-31","w":212},"\u00e0":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm82,-267r64,41r-10,19r-70,-31","w":212},"\u00e5":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm73,-236v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33xm89,-236v0,9,8,17,17,17v9,0,17,-8,17,-17v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":212},"\u00e3":{"d":"102,-85v-23,0,-41,0,-41,27v0,27,10,29,41,29v24,0,42,-2,42,-29v0,-26,-20,-27,-42,-27xm144,0v0,-7,3,-18,1,-24v-9,25,-37,26,-59,26v-43,0,-71,-9,-71,-60v0,-45,24,-58,71,-58v24,-1,45,3,58,22v-1,-38,10,-66,-40,-66v-20,0,-36,2,-36,26r-45,0v0,-55,38,-57,81,-57v60,0,85,10,85,73r0,118r-45,0xm153,-253r23,12v-9,17,-21,31,-42,31v-30,0,-59,-39,-75,-5r-23,-12v9,-16,22,-31,42,-31v28,0,60,41,75,5","w":212},"\u00e7":{"d":"112,4r16,23r-47,19r-10,-17xm142,-72r45,0v0,62,-22,74,-86,74v-69,0,-84,-20,-84,-96v0,-66,10,-97,8
