/*
 * 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": "Onbekend probleem", "Select all rows in this table": "Selecteer alle regels van deze tabel", "Deselect all rows in this table": "De-selecteer alle regels van deze tabel", "Join summary": "Samenvatting samenvoegen", "Split summary at cursor": "Splits de samenvatting op de cursorpositie", "Drag to re-order": "Slepen om de volgorde te wijzigen", "Changes made in this table will not be saved until the form is submitted.": "Wijzigingen in deze tabel worden pas opgeslagen wanneer het formulier wordt ingediend.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Wijzigingen aan de blokken worden pas opgeslagen wanneer u de knop \x3cem\x3eBlokken opslaan\x3c/em\x3e aanklikt.", "Loading...": "Bezig met laden...", "Automatic alias": "Automatische alias", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Het bestand %filename kan niet geÃ¼pload worden. Alleen bestanden met de volgende extensies zijn toegestaan: %extensions", "Refresh": "Ververs" } };;
// ColorBox v1.3.16 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b,c){function ba(b){if(!T){O=b,Z(a.extend(J,a.data(O,e))),x=a(O),P=0,J.rel!=="nofollow"&&(x=a("."+V).filter(function(){var b=a.data(this,e).rel||this.rel;return b===J.rel}),P=x.index(O),P===-1&&(x=x.add(O),P=x.length-1));if(!R){R=S=!0,q.show();if(J.returnFocus)try{O.blur(),a(O).one(k,function(){try{this.focus()}catch(a){}})}catch(c){}p.css({opacity:+J.opacity,cursor:J.overlayClose?"pointer":"auto"}).show(),J.w=X(J.initialWidth,"x"),J.h=X(J.initialHeight,"y"),U.position(0),n&&y.bind("resize."+o+" scroll."+o,function(){p.css({width:y.width(),height:y.height(),top:y.scrollTop(),left:y.scrollLeft()})}).trigger("resize."+o),$(g,J.onOpen),I.add(C).hide(),H.html(J.close).show()}U.load(!0)}}function _(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;J.slideshow&&x[1]&&(d=function(){E.text(J.slideshowStop).unbind(c).bind(i,function(){if(P<x.length-1||J.loop)a=setTimeout(U.next,J.slideshowSpeed)}).bind(h,function(){clearTimeout(a)}).one(c+" "+j,e),q.removeClass(b+"off").addClass(b+"on"),a=setTimeout(U.next,J.slideshowSpeed)},e=function(){clearTimeout(a),E.text(J.slideshowStart).unbind([i,h,j,c].join(" ")).one(c,d),q.removeClass(b+"on").addClass(b+"off")},J.slideshowAuto?d():e())}function $(b,c){c&&c.call(O),a.event.trigger(b)}function Z(b){for(var c in b)a.isFunction(b[c])&&c.substring(0,2)!=="on"&&(b[c]=b[c].call(O));b.rel=b.rel||O.rel||"nofollow",b.href=a.trim(b.href||a(O).attr("href")),b.title=b.title||O.title}function Y(a){return J.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function X(a,b){b=b==="x"?y.width():y.height();return typeof a=="string"?Math.round(/%/.test(a)?b/100*parseInt(a,10):parseInt(a,10)):a}function W(c,d){var e=b.createElement("div");c&&(e.id=f+c),e.style.cssText=d||!1;return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0},e="colorbox",f="cbox",g=f+"_open",h=f+"_load",i=f+"_complete",j=f+"_cleanup",k=f+"_closed",l=f+"_purge",m=a.browser.msie&&!a.support.opacity,n=m&&a.browser.version<7,o=f+"_IE6",p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J={},K,L,M,N,O,P,Q,R,S,T=!1,U,V=f+"Element";U=a.fn[e]=a[e]=function(b,c){var f=this,g;if(!f[0]&&f.selector)return f;b=b||{},c&&(b.onComplete=c);if(!f[0]||f.selector===undefined)f=a("<a/>"),b.open=!0;f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(V)}),g=b.open,a.isFunction(g)&&(g=g.call(f)),g&&ba(f[0]);return f},U.init=function(){y=a(c),q=W().attr({id:e,"class":m?f+(n?"IE6":"IE"):""}),p=W("Overlay",n?"position:absolute":"").hide(),r=W("Wrapper"),s=W("Content").append(z=W("LoadedContent","width:0; height:0; overflow:hidden"),B=W("LoadingOverlay").add(W("LoadingGraphic")),C=W("Title"),D=W("Current"),F=W("Next"),G=W("Previous"),E=W("Slideshow").bind(g,_),H=W("Close")),r.append(W().append(W("TopLeft"),t=W("TopCenter"),W("TopRight")),W(!1,"clear:left").append(u=W("MiddleLeft"),s,v=W("MiddleRight")),W(!1,"clear:left").append(W("BottomLeft"),w=W("BottomCenter"),W("BottomRight"))).children().children().css({"float":"left"}),A=W(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(p,q.append(r,A)),s.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),K=t.height()+w.height()+s.outerHeight(!0)-s.height(),L=u.width()+v.width()+s.outerWidth(!0)-s.width(),M=z.outerHeight(!0),N=z.outerWidth(!0),q.css({"padding-bottom":K,"padding-right":L}).hide(),F.click(function(){U.next()}),G.click(function(){U.prev()}),H.click(function(){U.close()}),I=F.add(G).add(D).add(E),s.children().removeClass("hover"),a("."+V).live("click",function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),ba(this))}),p.click(function(){J.overlayClose&&U.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;R&&J.escKey&&b===27&&(a.preventDefault(),U.close()),R&&J.arrowKey&&x[1]&&(b===37?(a.preventDefault(),G.click()):b===39&&(a.preventDefault(),F.click()))})},U.remove=function(){q.add(p).remove(),a("."+V).die("click").removeData(e).removeClass(V)},U.position=function(a,c){function g(a){t[0].style.width=w[0].style.width=s[0].style.width=a.style.width,B[0].style.height=B[1].style.height=s[0].style.height=u[0].style.height=v[0].style.height=a.style.height}var d,e=Math.max(b.documentElement.clientHeight-J.h-M-K,0)/2+y.scrollTop(),f=Math.max(y.width()-J.w-N-L,0)/2+y.scrollLeft();d=q.width()===J.w+N&&q.height()===J.h+M?0:a,r[0].style.width=r[0].style.height="9999px",q.dequeue().animate({width:J.w+N,height:J.h+M,top:e,left:f},{duration:d,complete:function(){g(this),S=!1,r[0].style.width=J.w+N+L+"px",r[0].style.height=J.h+M+K+"px",c&&c()},step:function(){g(this)}})},U.resize=function(a){if(R){a=a||{},a.width&&(J.w=X(a.width,"x")-N-L),a.innerWidth&&(J.w=X(a.innerWidth,"x")),z.css({width:J.w}),a.height&&(J.h=X(a.height,"y")-M-K),a.innerHeight&&(J.h=X(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=z.wrapInner("<div style='overflow:auto'></div>").children();J.h=b.height(),b.replaceWith(b.children())}z.css({height:J.h}),U.position(J.transition==="none"?0:J.speed)}},U.prep=function(b){function h(b){U.position(b,function(){var b,d,g,h,j=x.length,k,n;!R||(n=function(){B.hide(),$(i,J.onComplete)},m&&Q&&z.fadeIn(100),C.html(J.title).add(z).show(),j>1?(typeof J.current=="string"&&D.html(J.current.replace(/\{current\}/,P+1).replace(/\{total\}/,j)).show(),F[J.loop||P<j-1?"show":"hide"]().html(J.next),G[J.loop||P?"show":"hide"]().html(J.previous),b=P?x[P-1]:x[j-1],g=P<j-1?x[P+1]:x[0],J.slideshow&&E.show(),J.preloading&&(h=a.data(g,e).href||g.href,d=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,d=a.isFunction(d)?d.call(b):d,Y(h)&&(a("<img/>")[0].src=h),Y(d)&&(a("<img/>")[0].src=d))):I.hide(),J.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],J.fastIframe?n():a(k).load(n),k.name=f+ +(new Date),k.src=J.href,J.scrolling||(k.scrolling="no"),m&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(z).one(l,function(){k.src="//about:blank"})):n(),J.transition==="fade"?q.fadeTo(c,1,function(){q[0].style.filter=""}):q[0].style.filter="",y.bind("resize."+f,function(){U.position(0)}))})}function g(){J.h=J.h||z.height(),J.h=J.mh&&J.mh<J.h?J.mh:J.h;return J.h}function d(){J.w=J.w||z.width(),J.w=J.mw&&J.mw<J.w?J.mw:J.w;return J.w}if(!!R){var c=J.transition==="none"?0:J.speed;y.unbind("resize."+f),z.remove(),z=W("LoadedContent").html(b),z.hide().appendTo(A.show()).css({width:d(),overflow:J.scrolling?"auto":"hidden"}).css({height:g()}).prependTo(s),A.hide(),a(Q).css({"float":"none"}),n&&a("select").not(q.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(j,function(){this.style.visibility="inherit"}),J.transition==="fade"?q.fadeTo(c,0,function(){h(0)}):h(c)}},U.load=function(b){var c,d,g=U.prep;S=!0,Q=!1,O=x[P],b||Z(a.extend(J,a.data(O,e))),$(l),$(h,J.onLoad),J.h=J.height?X(J.height,"y")-M-K:J.innerHeight&&X(J.innerHeight,"y"),J.w=J.width?X(J.width,"x")-N-L:J.innerWidth&&X(J.innerWidth,"x"),J.mw=J.w,J.mh=J.h,J.maxWidth&&(J.mw=X(J.maxWidth,"x")-N-L,J.mw=J.w&&J.w<J.mw?J.w:J.mw),J.maxHeight&&(J.mh=X(J.maxHeight,"y")-M-K,J.mh=J.h&&J.h<J.mh?J.h:J.mh),c=J.href,B.show(),J.inline?(W().hide().insertBefore(a(c)[0]).one(l,function(){a(this).replaceWith(z.children())}),g(a(c))):J.iframe?g(" "):J.html?g(J.html):Y(c)?(a(Q=new Image).addClass(f+"Photo").error(function(){J.title=!1,g(W("Error").text("This image could not be loaded"))}).load(function(){var a;Q.onload=null,J.scalePhotos&&(d=function(){Q.height-=Q.height*a,Q.width-=Q.width*a},J.mw&&Q.width>J.mw&&(a=(Q.width-J.mw)/Q.width,d()),J.mh&&Q.height>J.mh&&(a=(Q.height-J.mh)/Q.height,d())),J.h&&(Q.style.marginTop=Math.max(J.h-Q.height,0)/2+"px"),x[1]&&(P<x.length-1||J.loop)&&(Q.style.cursor="pointer",Q.onclick=function(){U.next()}),m&&(Q.style.msInterpolationMode="bicubic"),setTimeout(function(){g(Q)},1)}),setTimeout(function(){Q.src=c},1)):c&&A.load(c,function(b,c,d){g(c==="error"?W("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},U.next=function(){!S&&x[1]&&(P<x.length-1||J.loop)&&(P=P<x.length-1?P+1:0,U.load())},U.prev=function(){!S&&x[1]&&(P||J.loop)&&(P=P?P-1:x.length-1,U.load())},U.close=function(){R&&!T&&(T=!0,R=!1,$(j,J.onCleanup),y.unbind("."+f+" ."+o),p.fadeTo(200,0),q.stop().fadeTo(300,0,function(){q.add(p).css({opacity:1,cursor:"auto"}).hide(),$(l),z.remove(),setTimeout(function(){T=!1,$(k,J.onClosed)},1)}))},U.element=function(){return a(O)},U.settings=d,a(U.init)})(jQuery,document,this);;
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = function (context) {
  $(document).bind('cbox_complete', function () {
    // Only run if there is a title.
    if ($('#cboxTitle:empty', context).length == false) {
      setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
      $('#cboxLoadedContent img', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideDown();
      });
      $('#cboxOverlay', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideUp();
      });
    }
    else {
      $('#cboxTitle', context).hide();
    }
  });
};

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxLoad = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  var settings = Drupal.settings.colorbox;
  $.urlParam = function(name, url){
    var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
    if (!results) { return ''; }
    return results[1] || '';
  };
  $('a, area, input', context).filter('.colorbox-load:not(.initColorboxLoad-processed)').addClass('initColorboxLoad-processed').colorbox({
    transition:settings.transition,
    speed:settings.speed,
    opacity:settings.opacity,
    close:settings.close,
    overlayClose:settings.overlayClose,
    maxWidth:settings.maxWidth,
    maxHeight:settings.maxHeight,
    innerWidth:function(){
      return $.urlParam('width', $(this).attr('href'));
    },
    innerHeight:function(){
      return $.urlParam('height', $(this).attr('href'));
    },
    iframe:function(){
      return $.urlParam('iframe', $(this).attr('href'));
    },
    slideshow:function(){
      return $.urlParam('slideshow', $(this).attr('href'));
    }
  });
};

})(jQuery);
;

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
// $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}})());;
// $Id: base.js,v 1.11.2.1 2010/03/10 20:08:58 merlinofchaos Exp $
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

/**
 * jQuery UI tabs, Views integration component
 */
Drupal.behaviors.viewsTabs = function (context) {
  $('#views-tabset:not(.views-processed)').addClass('views-processed').each(function() {
    new Drupal.Views.Tabs($(this), {selectedClass: 'active'});
  });

  $('a.views-remove-link')
    .addClass('views-processed')
    .click(function() {
      var id = $(this).attr('id').replace('views-remove-link-', '');
      $('#views-row-' + id).hide();
      $('#views-removed-' + id).attr('checked', true);
      return false;
    });
}

/**
 * For IE, attach some javascript so that our hovers do what they're supposed
 * to do.
 */
Drupal.behaviors.viewsHoverlinks = function() {
  if ($.browser.msie) {
    // If IE, attach a hover event so we can see our admin links.
    $("div.view:not(.views-hover-processed)").addClass('views-hover-processed').hover(
      function() {
        $('div.views-hide', this).addClass("views-hide-hover"); return true;
      },
      function(){
        $('div.views-hide', this).removeClass("views-hide-hover"); return true;
      }
    );
    $("div.views-admin-links:not(.views-hover-processed)")
      .addClass('views-hover-processed')
      .hover(
        function() {
          $(this).addClass("views-admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("views-admin-links-hover"); return true;
        }
      );
  }
}

/**
 * Helper function to parse a querystring.
 */
Drupal.Views.parseQueryString = function (query) {
  var args = {};
  var pos = query.indexOf('?');
  if (pos != -1) {
    query = query.substring(pos + 1);
  }
  var pairs = query.split('&');
  for(var i in pairs) {
    var pair = pairs[i].split('=');
    // Ignore the 'q' path argument, if present.
    if (pair[0] != 'q' && pair[1]) {
      args[pair[0]] = decodeURIComponent(pair[1].replace(/\+/g, ' '));
    }
  }
  return args;
};

/**
 * Helper function to return a view's arguments based on a path.
 */
Drupal.Views.parseViewArgs = function (href, viewPath) {
  var returnObj = {};
  var path = Drupal.Views.getPath(href);
  // Ensure we have a correct path.
  if (viewPath && path.substring(0, viewPath.length + 1) == viewPath + '/') {
    var args = decodeURIComponent(path.substring(viewPath.length + 1, path.length));
    returnObj.view_args = args;
    returnObj.view_path = path;
  }
  return returnObj;
};

/**
 * Strip off the protocol plus domain from an href.
 */
Drupal.Views.pathPortion = function (href) {
  // Remove e.g. http://example.com if present.
  var protocol = window.location.protocol;
  if (href.substring(0, protocol.length) == protocol) {
    // 2 is the length of the '//' that normally follows the protocol
    href = href.substring(href.indexOf('/', protocol.length + 2));
  }
  return href;
};

/**
 * Return the Drupal path portion of an href.
 */
Drupal.Views.getPath = function (href) {
  href = Drupal.Views.pathPortion(href);
  href = href.substring(Drupal.settings.basePath.length, href.length);
  // 3 is the length of the '?q=' added to the url without clean urls.
  if (href.substring(0, 3) == '?q=') {
    href = href.substring(3, href.length);
  }
  var chars = ['#', '?', '&'];
  for (i in chars) {
    if (href.indexOf(chars[i]) > -1) {
      href = href.substr(0, href.indexOf(chars[i]));
    }
  }
  return href;
};
;
// $Id: ajax_view.js,v 1.19.2.5 2010/03/25 18:25:28 merlinofchaos Exp $

/**
 * @file ajaxView.js
 *
 * Handles AJAX fetching of views, including filter submission and response.
 */

Drupal.Views.Ajax = Drupal.Views.Ajax || {};

/**
 * An ajax responder that accepts a packet of JSON data and acts appropriately.
 *
 * The following fields control behavior.
 * - 'display': Display the associated data in the view area.
 */
Drupal.Views.Ajax.ajaxViewResponse = function(target, response) {

  if (response.debug) {
    alert(response.debug);
  }

  var $view = $(target);

  // Check the 'display' for data.
  if (response.status && response.display) {
    var $newView = $(response.display);
    $view.replaceWith($newView);
    $view = $newView;
    Drupal.attachBehaviors($view.parent());
  }

  if (response.messages) {
    // Show any messages (but first remove old ones, if there are any).
    $view.find('.views-messages').remove().end().prepend(response.messages);
  }
};

/**
 * Ajax behavior for views.
 */
Drupal.behaviors.ViewsAjaxView = function() {
  if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
    var ajax_path = Drupal.settings.views.ajax_path;
    // If there are multiple views this might've ended up showing up multiple times.
    if (ajax_path.constructor.toString().indexOf("Array") != -1) {
      ajax_path = ajax_path[0];
    }
    $.each(Drupal.settings.views.ajaxViews, function(i, settings) {
      var view = '.view-dom-id-' + settings.view_dom_id;
      if (!$(view).size()) {
        // Backward compatibility: if 'views-view.tpl.php' is old and doesn't
        // contain the 'view-dom-id-#' class, we fall back to the old way of
        // locating the view:
        view = '.view-id-' + settings.view_name + '.view-display-id-' + settings.view_display_id;
      }


      // Process exposed filter forms.
      $('form#views-exposed-form-' + settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'))
      .filter(':not(.views-processed)')
      .each(function () {
        // remove 'q' from the form; it's there for clean URLs
        // so that it submits to the right place with regular submit
        // but this method is submitting elsewhere.
        $('input[name=q]', this).remove();
        var form = this;
        // ajaxSubmit doesn't accept a data argument, so we have to
        // pass additional fields this way.
        $.each(settings, function(key, setting) {
          $(form).append('<input type="hidden" name="'+ key + '" value="'+ setting +'"/>');
        });
      })
      .addClass('views-processed')
      .submit(function () {
        $('input[type=submit], button', this).after('<span class="views-throbbing">&nbsp</span>');
        var object = this;
        $(this).ajaxSubmit({
          url: ajax_path,
          type: 'GET',
          success: function(response) {
            // Call all callbacks.
            if (response.__callbacks) {
              $.each(response.__callbacks, function(i, callback) {
                eval(callback)(view, response);
              });
              $('.views-throbbing', object).remove();
            }
          },
          error: function(xhr) { Drupal.Views.Ajax.handleErrors(xhr, ajax_path); $('.views-throbbing', object).remove(); },
          dataType: 'json'
        });

        return false;
      });

      $(view).filter(':not(.views-processed)')
        // Don't attach to nested views. Doing so would attach multiple behaviors
        // to a given element.
        .filter(function() {
          // If there is at least one parent with a view class, this view
          // is nested (e.g., an attachment). Bail.
          return !$(this).parents('.view').size();
        })
        .each(function() {
          // Set a reference that will work in subsequent calls.
          var target = this;
          $(this)
            .addClass('views-processed')
            // Process pager, tablesort, and attachment summary links.
            .find('ul.pager > li > a, th.views-field a, .attachment .views-summary a')
            .each(function () {
              var viewData = { 'js': 1 };
              // Construct an object using the settings defaults and then overriding
              // with data specific to the link.
              $.extend(
                viewData,
                Drupal.Views.parseQueryString($(this).attr('href')),
                // Extract argument data from the URL.
                Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path),
                // Settings must be used last to avoid sending url aliases to the server.
                settings
              );
              $(this).click(function () {
                $.extend(viewData, Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path));
                $(this).addClass('views-throbbing');
                $.ajax({
                  url: ajax_path,
                  type: 'GET',
                  data: viewData,
                  success: function(response) {
                    $(this).removeClass('views-throbbing');
                    // Scroll to the top of the view. This will allow users
                    // to browse newly loaded content after e.g. clicking a pager
                    // link.
                    var offset = $(target).offset();
                    // We can't guarantee that the scrollable object should be
                    // the body, as the view could be embedded in something
                    // more complex such as a modal popup. Recurse up the DOM
                    // and scroll the first element that has a non-zero top.
                    var scrollTarget = target;
                    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
                      scrollTarget = $(scrollTarget).parent()
                    }
                    // Only scroll upward
                    if (offset.top - 10 < $(scrollTarget).scrollTop()) {
                      $(scrollTarget).animate({scrollTop: (offset.top - 10)}, 500);
                    }
                    // Call all callbacks.
                    if (response.__callbacks) {
                      $.each(response.__callbacks, function(i, callback) {
                        eval(callback)(target, response);
                      });
                    }
                  },
                  error: function(xhr) { $(this).removeClass('views-throbbing'); Drupal.Views.Ajax.handleErrors(xhr, ajax_path); },
                  dataType: 'json'
                });

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * C 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Segoe is either a registered trademark or a trademark of Microsoft Corporation
 * in the United States and/or other countries.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography
 */
Cufon.registerFont({"w":262,"face":{"font-family":"Segoe Script","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 2 0 0 0 0 3","ascent":"288","descent":"-72","cap-height":"2","bbox":"-35 -382.85 417.114 177.8","underline-thickness":"25.1367","underline-position":"-10.8984","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":143},"!":{"d":"43,-142v17,-41,1,-106,37,-120v5,1,15,6,14,12v-8,50,-26,96,-29,151v3,15,-18,11,-26,7v0,-18,1,-35,4,-50xm25,-21v-1,-18,26,-36,37,-14v5,20,-35,50,-37,14","w":116},"\"":{"d":"104,-215v5,-15,1,-59,27,-44v6,33,-11,86,-20,119v-13,5,-20,-4,-20,-17v0,-7,13,-52,13,-58xm23,-160v9,-33,11,-72,23,-101v23,-6,17,25,13,44v-4,16,-9,34,-10,54v-2,8,-4,21,-14,21v-9,1,-12,-10,-12,-18","w":145},"#":{"d":"244,-83v-20,-12,-44,2,-72,0v-3,12,-12,28,-10,45v0,7,-4,18,-12,17v-17,-7,-7,-39,-3,-55v-12,-1,-40,6,-53,7v-13,41,-20,67,-34,45v0,-15,5,-29,13,-45v-23,-3,-60,8,-65,-9v6,-24,44,-13,70,-13v7,-12,9,-38,16,-51v-23,-1,-40,6,-61,7v-22,1,-27,-12,-13,-18r72,-12v22,-12,16,-55,43,-62v17,9,-14,49,-13,60r57,-7r20,-80v5,-8,22,-8,20,5v-4,25,-16,48,-21,72v22,-2,44,-8,67,-5v12,-3,13,18,5,20v-30,1,-55,1,-78,7r-13,47v16,19,73,-30,78,14v1,6,-7,11,-13,11xm99,-94v23,-2,43,0,58,-9v4,-17,11,-32,14,-50v-19,3,-42,3,-58,9v-6,14,-10,30,-14,50","w":286},"$":{"d":"123,-277v21,2,5,42,6,59v20,3,51,-16,53,10v1,23,-34,8,-55,14v0,19,-9,47,-3,61v17,13,43,13,41,44v-1,25,-31,35,-53,43v-2,28,-6,56,-1,82v-9,14,-29,5,-27,-17r4,-53v-22,3,-42,11,-64,13v-7,1,-19,-3,-19,-9v5,-36,59,-16,85,-33v2,-21,6,-39,6,-62v-17,-11,-68,-18,-64,-51v3,-23,49,-33,72,-37v5,-22,-10,-67,19,-64xm103,-190v-33,8,-59,15,-26,31v10,5,17,8,22,10xm115,-69v10,-8,42,-16,19,-35v-6,-6,-11,-9,-15,-11v-2,17,-4,31,-4,46","w":197},"%":{"d":"189,-105v28,2,55,11,55,40v0,38,-30,52,-66,55v-24,2,-32,-17,-32,-34v0,-27,20,-56,43,-61xm26,-170v8,-37,24,-76,68,-77v5,0,10,4,16,10r91,8v9,14,-14,20,-16,33r-75,123v-13,22,-17,52,-38,66v-24,-56,54,-123,76,-174r18,-29v-17,-4,-34,-8,-55,-5v12,44,-21,83,-61,83v-20,0,-23,-18,-24,-38xm65,-153v24,-6,38,-36,23,-67v-29,-1,-38,28,-40,54v-1,12,10,12,17,13xm175,-32v29,7,64,-27,36,-45v-22,-14,-41,3,-40,31v0,7,1,12,4,14"},"&":{"d":"242,-135v26,1,65,-15,79,1v-7,28,-57,6,-67,37v-7,20,-22,39,-32,56v10,16,51,19,74,11v8,1,16,1,15,10v-21,36,-92,19,-117,-1v-25,13,-44,34,-80,34v-43,0,-83,-20,-83,-63v0,-47,34,-68,64,-88v10,-12,-1,-39,0,-60v2,-38,13,-67,52,-67v25,0,39,22,39,50v0,42,-38,57,-55,80v12,38,36,63,65,84v20,-11,22,-41,34,-60v-18,-4,-46,4,-44,-22v10,-20,36,-3,56,-2xm124,-159v21,-12,58,-69,15,-81v-25,6,-20,54,-15,81xm63,-52v6,50,79,38,108,18v-25,-24,-49,-50,-65,-81v-21,11,-40,33,-43,63","w":332},"'":{"d":"58,-260v29,22,-21,62,-9,110v-2,8,-4,15,-12,16v-14,-3,-15,-25,-12,-42v5,-29,13,-76,33,-84","w":83},"(":{"d":"100,68v10,11,1,22,-13,21v-65,-26,-92,-139,-67,-224v16,-55,49,-120,111,-141v20,24,-29,45,-43,66v-22,34,-48,73,-52,124v8,55,13,115,49,140v8,5,12,10,15,14","w":144,"k":{"j":-86}},")":{"d":"7,-260v-8,-7,4,-19,13,-19v80,47,127,242,48,330v-14,16,-27,55,-46,27v30,-53,82,-113,57,-202v-15,-54,-37,-106,-72,-136","w":130},"*":{"d":"87,-179v-17,16,-32,87,-54,49v6,-13,28,-38,35,-51v-23,-3,-39,5,-58,8v-12,-18,14,-23,27,-24v19,0,30,-2,36,-4v-7,-14,-39,-38,-23,-50v7,0,19,13,37,38v16,-15,26,-37,46,-49v17,0,9,16,1,20v-11,19,-15,22,-27,34v21,8,64,-23,72,6v-5,17,-51,4,-71,14v9,16,33,34,38,51v-23,29,-40,-30,-59,-42","w":185,"k":{"\u00c1":47,"\u00c2":47,"\u00c3":47,"\u00c0":47,"\u00c6":47,"\u00c5":47,"\u00c4":47,"J":50,"A":47}},"+":{"d":"103,-187v20,12,1,53,7,78v28,5,82,-15,80,20v-16,12,-53,-3,-80,3v-6,13,-1,42,-5,61v-1,7,-1,11,-9,11v-28,-5,-4,-44,-7,-72v-27,-5,-91,13,-64,-22v21,3,42,2,65,1v9,-24,-12,-72,13,-80","w":205},",":{"d":"78,-55v4,0,23,5,22,9v23,53,-21,85,-69,92v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v39,-5,62,-38,44,-76v-1,-3,4,-12,7,-12","w":123,"k":{"9":94,"7":72,"2":-36,"0":-25}},"-":{"d":"100,-116v37,8,92,-15,117,11v7,29,-29,9,-52,14v-27,-4,-56,0,-84,0v-11,0,-19,-1,-19,-11v0,-15,29,-13,38,-14","w":230},".":{"d":"24,-41v2,-7,39,-15,41,4v2,19,-36,49,-42,20","w":90,"k":{"9":94,"7":72,"2":-36,"0":-25}},"\/":{"d":"182,-275v23,-2,27,19,4,42r-163,243v-9,21,-21,12,-26,-1v47,-101,113,-174,167,-263v6,-8,12,-15,18,-21","w":207},"0":{"d":"160,-236v71,0,125,78,81,145v-34,52,-95,95,-179,95v-38,0,-60,-30,-58,-67v5,-96,67,-173,156,-173xm55,-129v-26,38,-28,109,29,104v55,-6,104,-46,132,-82v28,-34,-5,-80,-30,-95v-14,13,-29,-12,-50,0v-38,11,-61,44,-81,73","k":{".":22,",":43}},"1":{"d":"144,-49v25,-1,63,-18,94,-17v4,8,6,17,2,22v-25,13,-66,10,-92,22v7,16,-9,22,-26,17v-17,-30,-86,39,-97,-7v11,-25,63,-17,88,-32v3,-53,11,-102,18,-151v-25,4,-51,34,-85,34v-7,0,-10,-4,-8,-11v7,-27,49,-24,65,-41v15,-8,38,-24,53,-29v7,-1,14,15,14,21v-16,46,-30,114,-26,172"},"2":{"d":"179,-43v33,8,63,-15,72,8v0,18,-21,26,-40,24v-61,-8,-152,-18,-181,26v-8,6,-28,4,-26,-9v9,-60,80,-59,112,-97v21,-24,51,-43,56,-81v-6,-29,-41,-52,-70,-27v-23,10,-28,33,-57,37v-8,-4,-18,-29,0,-32v31,-18,49,-45,99,-44v33,1,56,35,66,61v-14,60,-68,106,-115,132"},"3":{"d":"46,-233v36,23,98,4,148,3v33,-1,21,32,3,38v-21,16,-49,26,-65,48v52,-5,99,1,104,50v-14,76,-120,114,-205,86v-12,-9,-10,-38,10,-36v51,35,153,3,164,-45v-4,-44,-92,-36,-122,-19v-22,-1,-9,-21,0,-28r78,-64v-35,0,-63,8,-97,8v-19,1,-31,-10,-31,-28v1,-7,5,-13,13,-13","k":{".":36,",":36}},"4":{"d":"176,-119v15,12,84,-9,73,26v-8,26,-44,-6,-77,2v-8,27,-11,67,4,86v-2,8,-8,18,-17,18v-39,0,-18,-67,-16,-102v-50,-8,-88,20,-128,9v-23,-23,36,-52,50,-70r110,-90v14,-11,21,-14,31,-3v-12,40,-22,81,-30,124xm61,-107v19,-7,64,-4,88,-11v3,-27,17,-59,18,-84r-109,92v0,2,1,3,3,3"},"5":{"d":"25,-23v1,-43,49,0,75,-3v35,-3,75,-15,84,-46v-1,-50,-64,-39,-104,-48v-9,-2,-27,-10,-27,-19v15,-25,36,-84,82,-84v41,0,86,0,118,-11v10,1,22,5,25,13v-12,47,-107,9,-155,27v-13,13,-23,30,-33,44v50,20,132,5,126,74v-6,76,-137,106,-191,53"},"6":{"d":"162,-130v65,-13,106,55,52,91v-32,21,-49,39,-108,39v-84,0,-93,-101,-47,-152v29,-33,51,-71,100,-83v16,-4,22,24,9,28v-52,16,-82,62,-105,106v-15,29,-3,60,20,68v-2,-61,29,-87,79,-97xm199,-60v28,-21,6,-44,-28,-44v-46,0,-65,29,-67,73v38,11,72,-12,95,-29"},"7":{"d":"60,-229v67,14,163,-17,193,8v-43,68,-99,118,-116,208v-2,10,-6,17,-16,18v-36,-10,-3,-58,5,-75v24,-50,52,-91,85,-131v-39,-6,-105,6,-155,2v-16,-1,-10,-29,4,-30","k":{".":72,",":72}},"8":{"d":"210,-194v5,2,10,9,11,14v-11,32,-44,48,-68,68v25,13,55,31,54,68v-1,42,-51,42,-90,48v-57,8,-93,-49,-43,-84v13,-9,26,-17,37,-27v-35,-11,-83,-58,-38,-90v21,-15,43,-34,77,-34v29,0,52,17,51,50v2,-3,6,-11,9,-13xm135,-123v15,-13,37,-26,42,-50v-6,-56,-81,-24,-93,6v4,27,35,32,51,44xm108,-21v35,0,93,-9,64,-48v-9,-12,-27,-22,-39,-28v-17,12,-51,36,-53,60v-1,11,18,17,28,16","k":{".":29,",":29}},"9":{"d":"56,-165v26,-45,119,-98,169,-39v1,1,2,4,3,10v-16,55,-46,101,-46,167v0,18,-4,26,-12,26v-15,0,-17,-15,-19,-27v4,-26,16,-61,22,-86v-24,4,-53,30,-87,25v-29,-5,-48,-44,-30,-76xm76,-137v20,54,112,1,116,-40v14,-17,-5,-29,-25,-28v-48,1,-80,31,-91,68","k":{".":43,",":43}},":":{"d":"59,-178v10,6,22,6,20,22v-2,12,-12,23,-28,22v-21,-5,-17,-45,8,-44xm33,-24v-7,-27,35,-37,42,-13v4,25,-42,52,-42,13","w":107},";":{"d":"60,-178v10,6,25,5,24,22v1,11,-18,19,-28,19v-7,0,-12,-12,-12,-18v3,-6,5,-26,16,-23xm46,-46v-1,-15,24,-15,28,-4v23,56,-25,87,-69,94v-4,1,-5,-10,-3,-13v37,-3,64,-40,44,-77","w":118},"<":{"d":"54,-114v34,22,71,38,109,54v16,6,8,30,-6,30r-111,-56v-61,-26,4,-51,20,-75v25,-21,54,-40,76,-64v7,-6,22,-3,21,8v4,14,-84,75,-109,103","w":193},"=":{"d":"70,-181v52,9,109,-22,124,17v-1,28,-30,4,-51,12v-34,-4,-67,3,-101,3v-10,0,-17,-1,-16,-12v0,-20,27,-18,44,-20xm50,-87v52,0,124,-16,147,17v-1,21,-27,10,-44,10r-111,2v-3,0,-14,-15,-13,-19v-1,-6,14,-10,21,-10","w":225},">":{"d":"34,-196v-13,-28,7,-28,24,-13v35,31,92,54,128,81v1,26,-39,32,-52,50v-19,14,-40,54,-66,64v-22,-3,-13,-28,1,-33v22,-29,50,-49,77,-73v-29,-36,-85,-41,-112,-76","w":206},"?":{"d":"104,-267v83,-20,107,83,54,124v-18,14,-46,19,-69,27v-9,17,-2,51,-33,48v-17,-56,38,-83,85,-96v27,-15,22,-82,-20,-76v-26,-2,-39,7,-45,25v-3,6,-30,12,-28,-5v3,-23,34,-42,56,-47xm29,-10v0,-11,26,-29,37,-14v8,0,12,3,12,10v0,25,-49,32,-49,4","w":185},"@":{"d":"135,-250v70,-41,139,24,142,96v2,51,-60,105,-96,63v-14,10,-36,25,-59,25v-45,0,-39,-63,-10,-87v11,-15,26,-35,46,-35v18,0,36,1,35,22v2,7,23,-8,22,9v-5,15,-13,27,-14,46v0,8,4,8,12,8v23,0,43,-25,43,-49v0,-52,-55,-117,-110,-78v-50,36,-88,80,-104,148v14,91,171,74,220,26v21,7,5,35,-13,38v-77,39,-226,38,-231,-64v12,-74,62,-136,117,-168xm174,-116v-3,-25,18,-58,-17,-45v-21,8,-37,34,-42,58v-2,11,7,14,19,13v15,-1,36,-14,40,-26","w":296},"A":{"d":"191,-265v20,-2,14,24,13,42v31,59,42,139,78,189v24,20,1,52,-16,33v-21,-22,-31,-59,-42,-88v-36,13,-80,19,-121,27v-23,5,-37,67,-71,72v-14,1,-28,-6,-28,-16v4,-11,14,-3,23,-16r120,-169v15,-23,33,-77,44,-74xm215,-115v-10,-28,-18,-60,-31,-84r-68,104v37,0,69,-13,99,-20","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"B":{"d":"194,-153v45,8,84,49,56,99v-22,40,-61,73,-117,73v-18,0,-39,-6,-39,-25v1,-30,44,-8,59,-8v45,0,69,-35,78,-75v-5,-43,-68,-49,-102,-31v-7,-1,-17,-5,-17,-13v-1,-19,16,-22,34,-23v31,-8,57,-31,69,-57v-21,-39,-132,-18,-132,38v0,49,-10,90,-7,140v1,17,-3,29,-18,29v-42,-8,-6,-86,-9,-123v12,-42,-16,-107,40,-110v42,-18,146,-50,153,23v-4,29,-25,43,-48,63","w":271},"C":{"d":"72,-134v-21,38,-39,128,27,123v93,-8,141,-68,196,-114v26,28,-30,58,-51,76v-38,31,-82,60,-146,64v-110,6,-75,-152,-29,-198v35,-35,71,-72,131,-80v63,-8,48,77,8,84v-34,-7,3,-38,10,-51v-67,-14,-118,47,-146,96","w":265,"k":{"\u00dd":-22,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00ab":-54,"\u00c6":7,"\u00c7":29,"\u00c5":7,"\u00c4":7,"}":-36,"]":-36,"Y":-22,"V":-22,"Q":22,"G":27,"C":29,"A":7,"?":-36,")":-36}},"D":{"d":"72,-247v94,0,215,-19,226,88v-19,97,-131,115,-211,151v-49,22,-47,-33,-41,-76v6,-42,21,-86,20,-127v-18,-7,-13,-36,6,-36xm82,-46v78,-23,170,-37,185,-113v-4,-68,-99,-61,-165,-55r-24,147v0,9,1,16,4,21","w":312,"k":{"\u00ff":29,"\u00fd":29,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00c6":36,"\u00c5":36,"\u00c4":36,"y":29,"x":29,"w":22,"v":14,"t":-50,"s":14,"n":14,"m":14,"f":14,"d":14,"J":58,"A":36,".":58,",":58}},"E":{"d":"228,-145v-5,44,-96,17,-147,32v-5,26,-15,49,-17,77v57,9,132,-5,181,-20v20,4,13,32,-5,35r-192,28v-49,-23,9,-101,2,-155v6,-56,-8,-117,75,-99v54,12,98,-12,143,-15v24,31,-22,38,-51,39r-127,5v-6,19,-5,46,-7,69v39,16,98,-1,136,-10v7,1,9,6,9,14","w":270,"k":{"\u00ec":-11,"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22}},"F":{"d":"214,-263v20,2,14,34,-5,34v-44,0,-88,1,-119,15v-10,25,-16,62,-16,97r109,-26v12,0,17,5,19,15v-22,37,-94,19,-133,45v-6,21,-3,52,-4,80v0,11,-2,20,-15,18v-55,-47,23,-173,0,-248v3,-18,20,-18,39,-14v42,-2,81,-21,125,-16","w":209,"k":{"\u00ec":-16,"\u00ef":-16,"\u00ee":-16,"\u00ed":-16,"\u00dd":-29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"}":-43,"t":-29,"]":-43,"Y":-29,"W":-18,"V":-29,"T":-29,"S":-23,"J":14,"A":29,".":27,",":27,")":-43}},"G":{"d":"155,-243v32,-15,117,-54,129,1v2,9,-6,20,-16,19v-11,-2,-15,-15,-28,-15v-92,16,-175,71,-185,173v3,21,24,34,51,31v57,-6,105,-28,124,-74v-3,-11,-8,-20,13,-19v5,-1,27,14,25,19v-16,31,-37,69,-41,110v7,13,6,32,-14,31v-32,-3,-6,-52,-8,-71v-25,9,-69,36,-104,34v-39,-2,-83,-20,-83,-59v0,-74,73,-149,137,-180","w":289,"k":{"}":-22,"]":-22,"V":-29,"T":-22,")":-22}},"H":{"d":"35,-44v23,-70,6,-185,43,-221v42,17,-2,82,3,124v29,18,100,-1,139,-4v31,-15,20,-78,26,-127v2,-17,34,-19,36,-1v-10,84,-31,160,-28,258v0,21,-37,33,-37,8v0,-34,10,-64,10,-99v-24,-21,-88,3,-131,-1r-19,3v-10,19,-11,50,-11,79v0,36,-28,47,-37,14v1,-11,3,-24,6,-33","w":296},"I":{"d":"95,-237v-12,63,-31,129,-32,207v10,16,-3,31,-20,32v-45,-55,15,-172,18,-245v1,-7,6,-14,12,-16v12,1,21,9,22,22","w":111,"k":{"z":14,"w":22,"v":29}},"J":{"d":"193,-253v17,110,11,254,-98,254v-36,0,-74,-6,-86,-32v9,-40,54,3,81,3v96,-3,71,-131,73,-224v5,-9,28,-16,30,-1","w":220,"k":{"\u00c1":22,"\u00c2":22,"\u00c3":22,"\u00c0":22,"\u00f8":-7,"\u00c6":22,"\u00c5":22,"\u00c4":22,"}":-54,"w":14,"v":14,"t":-14,"s":7,"o":-7,"m":7,"]":-54,"V":-14,"A":22,".":18,",":18,")":-54}},"K":{"d":"118,-108v51,18,90,55,156,46v10,16,-4,33,-20,35v-64,-11,-100,-48,-169,-58v-19,16,-6,65,1,81v0,10,-12,13,-20,16v-34,-15,-22,-81,-21,-124r3,-134v-1,-18,30,-19,33,-4v-5,39,-4,80,-6,124v-1,12,9,6,15,3v60,-26,92,-101,144,-134v17,5,15,27,5,38v-3,8,-18,7,-22,14v-24,42,-61,72,-99,97","w":281,"k":{"\u00dd":14,"x":14,"v":22,"t":-14,"g":-14,"d":-14,"Y":14,"X":-29,"T":22,"J":-43}},"L":{"d":"230,-41v15,11,-1,32,-22,30v-61,-4,-98,19,-150,26v-52,-10,-5,-90,-5,-133v0,-36,13,-68,14,-107v-8,-35,45,-45,39,-10r-36,209v-1,4,4,9,9,8v51,-6,95,-29,151,-23","w":243,"k":{"\u00e7":-14,"\u00dd":22,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00c1":-7,"\u00c2":-7,"\u00c3":-7,"\u00c0":-7,"\u00c6":-7,"\u00dc":-14,"\u00c5":-7,"\u00c4":-7,"v":11,"s":-7,"l":14,"d":-14,"c":-14,"Y":22,"V":14,"U":-14,"T":29,"Q":-7,"J":-29,"A":-7}},"M":{"d":"303,-271v4,-18,28,-8,32,5v-23,65,-21,160,-21,248v4,5,15,8,15,17v0,8,-13,20,-21,19v-61,-34,-8,-156,-16,-229r-95,131v-60,44,-82,-72,-103,-133v-13,62,-45,119,-31,192v-1,8,-11,25,-24,17v-45,-27,7,-103,9,-146r24,-91v3,-6,6,-9,10,-9v45,-5,40,38,51,68v10,28,23,55,41,82","w":361,"k":{"t":-14}},"N":{"d":"66,-36v9,36,-21,69,-34,38v1,-81,37,-149,37,-231v0,-21,32,-21,36,-1v16,78,67,132,108,187r35,-222v2,-11,12,-17,25,-17v29,36,-7,91,-12,136v-5,45,-18,82,-18,133v-20,48,-47,-6,-60,-24v-32,-46,-64,-89,-91,-141v-12,42,-20,96,-26,142","w":301},"O":{"d":"203,-68v48,-40,65,-178,-33,-164v-69,10,-95,69,-115,130v-22,69,46,108,103,70v16,-10,34,-22,45,-36xm91,-223v57,-54,200,-41,187,60v-12,93,-71,150,-150,173v-96,28,-130,-81,-89,-160v14,-26,32,-54,52,-73","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"P":{"d":"42,-235v55,-31,213,-55,235,17v-21,82,-113,108,-187,139v-2,29,4,56,3,87v1,8,-7,15,-15,14v-14,3,-22,-37,-19,-89v3,-59,10,-119,34,-158v42,1,-3,56,2,88v-1,10,-3,18,-3,29v50,-22,104,-40,139,-78v15,-17,32,-40,4,-46v-66,-15,-132,-1,-189,20v-11,-1,-10,-17,-4,-23","w":281,"k":{"\u00f5":18,"\u00f2":18,"\u00f6":18,"\u00f4":18,"\u00f3":18,"\u00e8":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e7":22,"\u00e3":9,"\u00e5":9,"\u00e0":9,"\u00e4":9,"\u00e2":9,"\u00e1":9,"\u00dd":-36,"\u00c1":40,"\u00c2":40,"\u00c3":40,"\u00c0":40,"\u00f8":18,"\u00e6":9,"\u00c5":40,"\u00c4":40,"t":-18,"q":22,"o":18,"g":22,"e":-4,"d":5,"c":22,"a":9,"Y":-36,"W":-23,"V":-29,"J":54,"G":5,"A":40,".":65,",":65,"\u00c6":50}},"Q":{"d":"110,-234v27,-24,96,-51,106,1v42,29,91,105,43,161v-17,20,-37,36,-59,50v15,21,38,38,49,64v-1,12,-23,25,-31,12v-14,-22,-29,-44,-46,-62v-61,20,-158,12,-154,-63v4,-75,49,-124,92,-163xm253,-127v-8,-52,-42,-86,-82,-106v-68,13,-96,72,-117,131v-23,62,34,93,97,72v-9,-18,-42,-40,-7,-50v25,-7,18,33,40,34v36,-11,60,-43,69,-81","w":299,"k":{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c6":14,"\u00c5":14,"\u00c4":14,"A":14}},"R":{"d":"262,-183v0,44,-47,63,-80,82r139,95v-45,41,-97,-32,-134,-56v-36,-24,-25,-26,-74,-24v-13,-12,-4,-36,20,-30v39,-6,69,-23,90,-47v35,-41,-33,-73,-85,-65r-48,8v32,61,-28,153,5,216v-17,19,-50,4,-41,-30v2,-61,23,-113,13,-179v-13,4,-20,6,-22,6v-15,-3,-11,-21,4,-25v62,-31,213,-41,213,49","w":315,"k":{"z":-14,"w":14,"v":14,"J":-29,";":-86,":":-86,".":-86,",":-86}},"S":{"d":"15,-20v58,16,135,-2,154,-49v-36,-49,-149,-26,-153,-113v13,-55,71,-72,138,-74v34,0,70,23,48,56v-3,3,-8,6,-15,6v-1,-63,-117,-29,-136,1v-24,84,164,42,146,136v-28,46,-79,74,-148,74v-17,0,-45,-5,-42,-23v1,-5,3,-13,8,-14","w":220,"k":{"t":-29}},"T":{"d":"51,-224v82,0,168,-52,227,-15v5,44,-110,-11,-129,43v-3,60,-20,124,-7,181v-2,9,-5,20,-15,20v-26,-6,-21,-43,-21,-74v0,-42,11,-89,14,-128v1,-5,-3,-5,-8,-5v-35,-1,-82,17,-107,1v-5,-25,25,-23,46,-23","w":252,"k":{"\u00ec":-36,"\u00ef":-36,"\u00ee":-36,"\u00ed":-36,"\u00dd":-65,"\u00c1":65,"\u00c2":65,"\u00c3":65,"\u00c0":65,"\u00c6":65,"\u00c5":65,"\u00c4":65,"}":-36,"e":22,"]":-36,"Y":-65,"W":-43,"V":-36,"Q":11,"J":65,"A":65,".":43,",":43,")":-36}},"U":{"d":"263,-247v0,113,4,251,-132,251v-91,0,-115,-97,-89,-184v8,-28,4,-65,19,-86v25,-13,26,17,20,39v-19,69,-44,193,47,201v94,9,91,-77,96,-160v2,-30,0,-69,27,-73v8,-1,12,5,12,12","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"V":{"d":"248,-247v9,-1,16,18,16,26v-19,78,-98,149,-125,223v-48,-1,-49,-70,-71,-104v-20,-52,-46,-98,-61,-155v6,-15,26,-13,29,5r77,183v8,17,12,26,14,27v45,-55,86,-128,115,-200v1,-4,3,-5,6,-5","k":{"\u00ff":29,"\u00fd":29,"\u00e7":22,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":54,"\u00c2":54,"\u00d5":7,"\u00c3":54,"\u00c0":54,"\u00f8":14,"\u00e6":22,"\u00d8":7,"\u00c6":54,"\u00d6":7,"\u00c7":13,"\u00c5":54,"\u00c4":54,"}":-29,"y":29,"u":36,"s":14,"r":29,"q":29,"p":22,"o":14,"n":29,"m":29,"i":14,"e":22,"d":22,"c":22,"a":22,"]":-29,"W":-14,"V":-29,"Q":7,"O":7,"J":52,"G":9,"C":13,"A":54,")":-29}},"W":{"d":"335,-275v5,-15,29,-12,27,8v-8,104,-47,185,-80,259v-48,26,-55,-71,-80,-104v-7,-15,-6,-15,-11,-27v-28,41,-58,119,-91,156v-31,-5,-35,-51,-41,-78r-39,-174v1,-12,16,-20,23,-3v27,62,35,144,56,209v28,-50,57,-95,80,-151v10,-13,19,-12,29,11r30,70v14,33,24,52,28,58v36,-63,63,-143,69,-234","w":364,"k":{"\u00ff":29,"\u00fd":29,"\u00e7":22,"\u00c1":22,"\u00c2":22,"\u00c3":22,"\u00c0":22,"\u00e6":22,"\u00c6":22,"\u00c5":22,"\u00c4":22,"z":36,"y":29,"x":36,"w":43,"v":36,"u":22,"t":-14,"n":14,"m":29,"i":29,"g":29,"e":29,"c":22,"a":22,"A":22}},"X":{"d":"140,-135v31,43,75,83,118,114v0,9,-14,22,-23,21v-39,-14,-89,-78,-117,-114v-41,33,-74,76,-104,120v-10,5,-16,-12,-14,-23v9,-53,77,-82,100,-122v-6,-18,-45,-75,-50,-101v-4,-20,22,-39,28,-10v14,33,28,64,48,91r89,-97v10,-14,39,-11,35,11v-2,15,-29,10,-34,29v-21,32,-52,54,-76,81","w":264,"k":{"J":-18}},"Y":{"d":"222,-293v4,-17,38,-14,30,5v-19,44,-65,78,-87,120v-33,32,-23,107,-30,166v-6,15,-35,15,-35,-5v0,-44,15,-92,9,-134v-41,-24,-61,-68,-94,-97v-3,-3,-5,-7,-5,-9v7,-11,32,-20,41,-2v23,24,41,54,67,75v32,-2,42,-47,63,-63","w":245,"k":{"\u00ff":58,"\u00fd":58,"\u00e7":65,"\u00d2":20,"\u00d4":20,"\u00d3":20,"\u00c1":50,"\u00c2":50,"\u00d5":20,"\u00c3":50,"\u00c0":50,"\u00f8":43,"\u00e6":36,"\u00d8":20,"\u00c6":50,"\u00d6":20,"\u00c7":32,"\u00c5":50,"\u00c4":50,"}":-29,"z":58,"y":58,"x":43,"w":43,"v":72,"u":58,"s":43,"r":58,"q":29,"p":29,"o":43,"n":58,"m":36,"g":43,"f":43,"e":65,"d":65,"c":65,"a":36,"]":-29,"W":-14,"V":-22,"Q":20,"O":20,"J":50,"G":32,"C":32,"B":18,"A":50,")":-29}},"Z":{"d":"50,-245v64,35,181,-23,216,15r-163,178v71,-4,145,-27,215,-25v9,4,11,24,-5,22r-205,31v-14,1,-28,3,-42,3v-11,8,-42,31,-45,1v30,-44,82,-63,112,-106v20,-29,42,-56,70,-78v-43,-17,-131,22,-169,-14v1,-14,0,-28,16,-27","w":305},"[":{"d":"47,-187v2,-39,-37,-85,32,-85v25,0,71,-6,68,17v-3,22,-50,8,-73,15v-2,18,-1,68,-2,81r-10,200v-6,32,28,14,49,12v16,-2,17,20,10,27v-19,9,-55,8,-75,16v-26,-8,-13,-57,-11,-94","w":146,"k":{"j":-86}},"\\":{"d":"15,-248v-20,-19,-1,-49,19,-30r72,124v28,60,64,112,87,177v1,12,-18,16,-27,12r-97,-195","w":197},"]":{"d":"19,-253v6,-37,63,-18,101,-30v7,-1,19,10,17,17v-27,91,-34,220,-34,335v0,26,-34,9,-55,13v-18,0,-45,9,-51,-5v-3,-35,40,-23,75,-25v11,-88,2,-215,32,-298v0,-3,-1,-4,-4,-4v-27,-1,-40,5,-62,8v-5,0,-20,-5,-19,-11","w":150},"^":{"d":"44,-115v-6,17,-29,19,-30,-1v26,-44,55,-77,78,-114v7,-12,24,-11,27,4v22,39,62,68,78,113v-10,29,-26,0,-34,-11r-57,-76v-27,15,-49,65,-62,85","w":207},"_":{"d":"0,14v58,4,138,-19,161,13v-4,22,-41,-1,-67,7r-94,2v-8,0,-11,-5,-11,-12v0,-6,5,-10,11,-10","w":150},"`":{"d":"87,-184v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":113},"a":{"d":"181,-55v51,-6,75,-46,105,-72v12,38,-40,62,-64,85v-25,24,-85,21,-91,-18v-25,25,-47,54,-91,60v-68,-52,11,-183,96,-176v63,6,-20,111,45,121xm47,-29v52,-9,90,-53,86,-113v0,-7,-4,-11,-12,-10v-50,12,-77,58,-82,111v0,6,3,11,8,12","w":236,"k":{".":-36,",":-36}},"b":{"d":"195,-73v33,-13,78,-67,107,-55v-34,58,-115,69,-159,115v-12,13,-28,31,-53,34v-21,2,-21,-20,-5,-26v36,-30,93,-46,98,-106v2,-32,-31,-46,-52,-21v-27,32,-65,60,-66,119v0,6,-6,11,-13,11v-39,-43,4,-167,5,-235v5,-16,4,-47,28,-41v6,2,8,9,7,18v-11,55,-25,111,-26,176v20,-37,49,-79,96,-87v47,2,59,64,33,98","w":244,"k":{".":-22,",":-22}},"c":{"d":"44,-54v9,53,85,20,110,1v30,-23,58,-59,93,-73v-3,37,-53,55,-74,81v-33,41,-155,80,-155,-12v0,-50,30,-87,58,-115v28,-28,49,10,53,35v2,13,-12,33,-21,13r-13,-29v-35,13,-46,55,-51,99","w":188,"k":{".":-14,",":-14}},"d":{"d":"195,-52v46,-7,80,-52,109,-78v6,41,-50,74,-78,98v-42,35,-63,-28,-64,-72v-25,44,-70,102,-130,104v-38,-10,-15,-77,-2,-99v16,-29,38,-63,66,-81v8,-5,20,-7,36,-7v19,0,24,32,26,51v9,-29,12,-62,15,-98v2,-21,-1,-44,20,-43v7,0,16,2,16,8v0,59,-25,108,-23,176v1,12,1,38,9,41xm144,-110v-21,-8,4,-55,-26,-56v-36,19,-71,77,-81,124v3,25,22,16,39,5v32,-23,50,-42,68,-73","w":254,"k":{"\u00bb":-43,".":-43,",":-43}},"e":{"d":"55,-67v3,61,93,26,115,4v27,-18,46,-45,73,-62v1,0,2,2,2,4v-35,55,-79,116,-158,116v-100,0,-56,-176,9,-189v21,-9,41,8,41,29v0,54,-48,69,-82,98xm55,-93v21,-18,69,-41,50,-76v-30,0,-43,45,-50,76","w":189,"k":{".":-43,",":-43}},"f":{"d":"104,-130v38,0,73,-7,102,-5v-13,36,-75,25,-122,31v-16,72,-1,182,-73,196v-19,4,-24,-25,-7,-30v51,5,34,-78,49,-126r2,-31v1,-10,-11,-8,-11,-18v0,-5,20,-28,20,-34v7,-55,17,-115,68,-121v46,-5,38,69,5,79v4,-17,7,-51,-8,-56v-34,13,-38,64,-43,108v0,5,6,7,18,7","w":143,"k":{"\u00ec":-58,"\u00ef":-58,"\u00ee":-58,"\u00ed":-58,"\u00ab":-58,"}":-94,"]":-94,"?":-29,"*":-115,")":-94}},"g":{"d":"161,-165v-13,81,0,186,-46,236v-37,39,-115,0,-125,-44v1,-10,9,-2,12,1v21,23,48,32,73,32v56,0,42,-77,52,-128v-22,22,-52,46,-91,50v-55,-53,27,-158,94,-169v15,1,29,6,31,22xm46,-55v51,15,97,-36,88,-100v-1,-8,-8,-8,-19,-8v-32,24,-67,58,-69,108","w":175},"h":{"d":"87,-253v-13,60,-14,135,-24,200v16,2,27,-39,43,-48v19,-23,39,-52,75,-53v32,14,7,87,37,102v56,-1,90,-48,122,-71v-9,51,-65,96,-123,101v-51,5,-34,-66,-50,-101v-54,27,-82,93,-116,141v-44,0,-5,-72,-9,-112v9,-56,-4,-132,22,-171v9,-8,26,-2,23,12","w":286,"k":{"\u00bb":-58,";":-58,":":-58,".":-58,",":-58}},"i":{"d":"85,-271v13,0,21,1,20,14v5,27,-35,35,-47,18v1,-15,14,-29,27,-32xm213,-123v20,29,-36,65,-56,89v-14,16,-45,38,-67,37v-44,-1,-54,-47,-54,-91v0,-29,1,-77,34,-76v14,17,-6,53,-3,81v2,20,4,55,23,55v55,-13,93,-56,123,-95","w":167,"k":{"\u00bb":-58,".":-50,",":-50}},"j":{"d":"101,-228v-24,-1,-34,-39,-7,-43v11,2,22,6,23,18v-3,8,-9,21,-16,25xm74,-173v29,10,-8,35,2,67v-3,82,14,192,-61,192v-23,0,-43,-10,-50,-27v0,-3,1,-5,3,-5v12,3,27,7,42,8v54,-8,34,-98,36,-160v1,-38,2,-69,28,-75","w":109},"k":{"d":"286,-114v4,-5,16,-27,20,-9v-24,51,-60,101,-110,124v-58,26,-75,-41,-112,-65v-12,13,-27,22,-26,47v0,15,-3,25,-18,24v-25,-23,3,-95,7,-138r10,-118v-1,-20,28,-29,34,-10r-29,190r81,-98v7,-21,57,-30,41,3v-26,27,-60,53,-82,81v32,16,49,76,95,55v37,-17,65,-57,89,-86","w":246,"k":{";":-29,":":-29,".":-43,",":-43}},"l":{"d":"100,-34v52,0,69,-53,101,-78v1,44,-53,97,-106,104v-101,-12,-34,-161,-34,-244v0,-17,23,-30,32,-13r-29,177v0,29,8,54,36,54","w":159,"k":{"\u00bb":-58,";":-58,":":-58,".":-79,",":-79}},"m":{"d":"185,-19v-36,-2,-9,-89,-33,-106v-37,25,-55,78,-81,114v-14,19,-36,-2,-33,-28v4,-40,6,-76,11,-113v2,-13,27,-24,29,-3v2,38,-13,72,-15,110v31,-34,44,-82,81,-109v39,-18,44,32,44,72v0,19,9,30,18,7v22,-31,31,-77,74,-87v41,10,-3,139,65,99v28,-17,48,-43,72,-64v3,44,-54,77,-89,98v-46,16,-47,-38,-53,-77v0,-8,0,-18,-6,-20v-36,22,-47,90,-84,107","w":366},"n":{"d":"326,-130v6,45,-61,99,-114,110v-50,-1,-39,-66,-56,-101v-44,-6,-55,59,-86,82v-6,7,-14,15,-23,18v-27,-22,-19,-138,21,-148v7,0,8,15,6,22v-5,23,-17,49,-14,77v37,-21,52,-99,113,-82v26,17,10,74,32,98v4,3,8,4,15,4v52,0,71,-55,106,-80","w":272,"k":{".":-79,",":-79}},"o":{"d":"134,-174v21,33,97,46,140,22v2,47,-83,43,-112,22v19,68,-35,131,-112,126v-56,-4,-31,-92,-7,-118v21,-24,50,-72,91,-52xm99,-149v-27,24,-82,85,-37,118v56,0,100,-55,72,-106v-12,-4,-22,-13,-35,-12","w":208},"p":{"d":"172,-67v49,-18,87,-51,130,-75v6,44,-68,61,-100,85v-33,15,-60,37,-97,45v-19,4,-29,-24,-9,-29v45,-11,75,-38,83,-87v-3,-46,-53,-14,-64,3v-45,44,-62,114,-65,198v0,17,-28,19,-31,2r16,-201v-1,-37,26,-42,33,-17v-2,20,-11,40,-8,61v28,-45,49,-90,110,-99v47,2,42,77,15,99v-4,5,-8,11,-13,15","w":241},"q":{"d":"255,-95v9,-5,27,-44,34,-21v-35,75,-109,112,-157,174v-5,20,-21,40,-36,15v-3,-50,31,-102,40,-146v-26,20,-54,54,-94,54v-21,0,-24,-9,-24,-35v0,-69,59,-131,127,-143v28,3,22,34,31,56r-48,164r68,-59xm149,-144v-27,12,3,-30,-16,-27v-31,5,-87,63,-90,109v-2,26,9,18,25,10v37,-19,81,-36,81,-92","w":233},"r":{"d":"59,-50v20,-56,76,-138,139,-92v2,13,-8,12,-22,12v-73,0,-90,77,-113,135v-20,15,-34,-4,-30,-33v7,-44,7,-95,20,-134v8,-11,25,-2,22,15","w":184},"s":{"d":"163,-97v20,-8,33,-49,48,-34v-7,36,-43,53,-64,78v-39,26,-75,73,-124,86v-5,1,-17,-2,-16,-8v1,-43,102,-28,58,-87v-11,-15,-26,-32,-26,-56v0,-30,17,-58,42,-66v36,10,-2,50,-16,58v5,28,24,52,37,74v23,-9,43,-29,61,-45","w":150},"t":{"d":"100,-147v43,3,78,-11,113,-12v-7,45,-82,25,-125,41v-9,33,-18,67,-21,106v-2,17,13,14,14,27v-11,22,-46,10,-43,-20v4,-37,14,-72,19,-103v-7,-19,-65,15,-60,-23v9,-21,71,12,71,-31r20,-84v5,-14,28,-14,26,5v-3,30,-20,62,-21,88v0,4,3,6,7,6","w":134},"u":{"d":"202,-171v-8,40,-16,128,40,103v38,-17,65,-51,96,-76v-6,55,-68,93,-120,110v-35,-2,-39,-35,-44,-66v-29,39,-49,90,-110,96v-54,-12,-17,-87,-19,-143v2,-8,5,-16,16,-15v40,17,-8,81,0,118v51,37,98,-68,118,-115v6,-13,11,-20,15,-20v6,1,7,2,8,8","w":275},"v":{"d":"215,-124v29,0,47,-23,67,-15v-14,34,-73,48,-110,27r-65,128v-9,8,-23,2,-23,-12v0,-49,-39,-84,-45,-136v-3,-27,33,-41,36,-13v-13,46,15,89,30,121v24,-33,31,-85,56,-117v20,-9,31,17,54,17","w":209},"w":{"d":"297,-159v13,26,75,27,95,7v0,0,8,-1,7,5v-8,40,-77,43,-111,25v-25,35,-31,90,-55,126v-4,3,-8,6,-13,7v-41,-13,-47,-75,-60,-113v-25,33,-34,103,-66,122v-45,-24,-55,-96,-55,-158v0,-14,7,-21,21,-21v16,5,10,35,13,53v5,31,10,62,23,83v33,-33,29,-110,73,-133v5,0,8,4,9,12v4,33,12,60,18,83v17,60,40,18,45,-10v13,-31,17,-74,45,-91v5,1,8,1,11,3","w":322},"x":{"d":"244,-72v20,-13,43,-72,59,-56v-19,47,-53,86,-90,110v-41,27,-78,-1,-106,-28v-27,18,-38,53,-52,83v-15,0,-23,-8,-24,-23v8,-37,32,-52,56,-77v-17,-21,-39,-44,-42,-77v-2,-21,33,-27,34,-5v2,31,12,46,29,62v26,-20,37,-49,56,-75v43,4,10,45,-5,57v-11,14,-19,23,-31,35v18,18,54,44,85,22v9,-6,20,-16,31,-28","w":243},"y":{"d":"88,-154v-12,29,-42,76,-15,107v59,-7,110,-40,103,-115v3,-11,8,-17,15,-17v27,2,10,49,10,76v0,62,-17,123,-42,163v-31,50,-118,24,-135,-17v0,-5,5,-16,9,-16v17,22,41,38,76,37v48,-14,55,-77,60,-130v-27,15,-62,43,-100,48v-60,-10,-28,-114,-7,-147v7,-12,28,-5,26,11","w":226},"z":{"d":"91,-27v42,2,92,16,118,-9v6,0,6,6,7,10v-16,44,-81,31,-126,21v-27,-6,-38,31,-60,15v-8,-15,9,-22,17,-31v32,-35,70,-68,95,-110v-27,-6,-103,18,-105,-17v10,-28,51,4,88,-10v19,-1,56,-14,60,9v-23,49,-66,77,-94,122","w":217},"{":{"d":"76,5v-3,45,31,58,63,42v10,0,14,2,14,8v-3,21,-26,29,-51,26v-45,-5,-50,-53,-49,-103v0,-23,2,-41,-11,-46v-13,3,-38,18,-39,-5v7,-33,80,-26,63,-77v-19,-60,1,-114,57,-125v21,-4,26,26,11,32v-49,-12,-50,42,-42,83v7,40,-12,58,-31,72v24,12,17,59,15,93","w":152,"k":{"j":-86}},"|":{"d":"59,-361v10,0,11,14,11,24r-2,475v1,39,-17,52,-26,27r4,-504v-1,-12,3,-22,13,-22","w":116},"}":{"d":"78,-226v0,-34,-56,-27,-73,-11v-3,0,-5,-1,-5,-4v1,-28,26,-37,58,-37v29,0,46,21,46,55v0,43,-26,62,-24,107v11,23,55,-11,63,23v-2,16,-30,18,-43,11v-22,21,9,65,5,106v-4,40,-24,67,-68,61v-8,-1,-18,-7,-18,-16v4,-13,22,-15,37,-12v33,-14,13,-85,11,-124v-1,-14,5,-18,16,-21v-58,-21,-5,-88,-5,-138","w":145},"~":{"d":"48,-152v62,-59,94,46,161,28v22,-6,26,-63,55,-48v2,2,4,4,4,7v-9,35,-46,75,-92,71v-39,-3,-46,-52,-91,-50v-27,1,-34,45,-53,58v-34,-12,-1,-60,16,-66","w":280},"\u00c4":{"d":"191,-265v20,-2,14,24,13,42v31,59,42,139,78,189v24,20,1,52,-16,33v-21,-22,-31,-59,-42,-88v-36,13,-80,19,-121,27v-23,5,-37,67,-71,72v-14,1,-28,-6,-28,-16v4,-11,14,-3,23,-16r120,-169v15,-23,33,-77,44,-74xm215,-115v-10,-28,-18,-60,-31,-84r-68,104v37,0,69,-13,99,-20xm232,-322v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm153,-315v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00c5":{"d":"243,-90v18,42,31,50,51,76v0,8,-7,18,-16,18v-24,0,-55,-61,-71,-86v-45,6,-90,8,-131,19v-22,21,-30,55,-61,67v-31,-7,-3,-40,6,-52r82,-110v18,-35,47,-59,62,-94v-31,-7,-29,-54,-5,-69v30,1,57,3,57,32v0,23,-5,36,-17,45v10,42,16,91,32,127v15,-3,44,-13,47,5v0,16,-24,17,-36,22xm198,-110v-10,-40,-16,-55,-19,-97v-1,-4,-3,-8,-5,-8r-75,118v33,-5,69,-5,99,-13xm186,-267v11,-1,10,-8,11,-20v1,-14,-18,-4,-20,-18v-4,-1,-18,15,-17,19v-1,10,17,19,26,19","w":312,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00c7":{"d":"45,75v14,10,52,16,54,-12v2,-31,-58,7,-32,-37r5,-13v-90,-22,-32,-176,9,-210v34,-28,67,-60,121,-66v30,-4,39,15,46,36v-7,18,-17,44,-38,48v-34,-9,3,-36,10,-51v-92,-9,-166,75,-166,177v0,71,101,30,132,10v46,-29,93,-60,129,-98v25,25,-23,56,-42,71v-44,37,-120,85,-182,85r-3,13v17,9,35,11,32,45v-3,28,-48,38,-76,25v-11,-5,-11,-23,1,-23","w":265,"k":{"\u00dd":-22,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c7":29,"\u00c5":7,"\u00c4":7,"}":-36,"]":-36,"Y":-22,"V":-22,"Q":22,"G":27,"C":29,"A":7,"?":-36,")":-36,"\u00ab":40}},"\u00c9":{"d":"228,-145v-5,44,-96,17,-147,32v-5,26,-15,49,-17,77v57,9,132,-5,181,-20v20,4,13,32,-5,35r-192,28v-49,-23,9,-101,2,-155v6,-56,-8,-117,75,-99v54,12,98,-12,143,-15v24,31,-22,38,-51,39r-127,5v-6,19,-5,46,-7,69v39,16,98,-1,136,-10v7,1,9,6,9,14xm126,-287v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":270,"k":{"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-4}},"\u00d1":{"d":"179,-338v20,26,47,19,61,-6v6,-1,7,4,8,9v-5,18,-17,38,-36,40v-31,3,-32,-27,-57,-31v-24,2,-22,29,-44,33v-5,1,-7,-5,-7,-9v5,-27,50,-67,75,-36xm66,-36v9,36,-21,69,-34,38v1,-81,37,-149,37,-231v0,-21,32,-21,36,-1v16,78,67,132,108,187r35,-222v2,-11,12,-17,25,-17v29,36,-7,91,-12,136v-5,45,-18,82,-18,133v-20,48,-47,-6,-60,-24v-32,-46,-64,-89,-91,-141v-12,42,-20,96,-26,142","w":301},"\u00d6":{"d":"203,-68v48,-40,65,-178,-33,-164v-69,10,-95,69,-115,130v-22,69,46,108,103,70v16,-10,34,-22,45,-36xm91,-223v57,-54,200,-41,187,60v-12,93,-71,150,-150,173v-96,28,-130,-81,-89,-160v14,-26,32,-54,52,-73xm221,-330v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm142,-323v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00dc":{"d":"263,-247v0,113,4,251,-132,251v-91,0,-115,-97,-89,-184v8,-28,4,-65,19,-86v25,-13,26,17,20,39v-19,69,-44,193,47,201v94,9,91,-77,96,-160v2,-30,0,-69,27,-73v8,-1,12,5,12,12xm207,-329v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm128,-322v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00b0":{"d":"82,-249v45,-10,71,15,74,49v6,65,-125,83,-122,9v1,-24,26,-53,48,-58xm91,-165v43,9,56,-49,24,-64v-10,1,-15,9,-27,4v-17,3,-27,17,-28,35v-1,14,18,26,31,25","w":182},"\u00a2":{"d":"127,-191v13,7,38,11,38,28v0,26,-27,1,-38,-2v-9,13,-21,56,-13,76v17,1,29,-23,45,-8v3,33,-47,17,-53,43v-4,19,3,56,-15,56v-26,0,-9,-43,-6,-60v-64,9,-86,-77,-35,-106v13,-12,35,-14,51,-21v8,-7,-4,-67,21,-62v23,5,5,47,5,56xm101,-164v-43,6,-86,64,-32,84v35,0,20,-51,32,-84","w":183},"\u00a3":{"d":"204,-45v8,-13,27,-8,26,13v-2,28,-32,40,-58,40v-31,0,-78,-28,-111,-35v-22,15,-34,23,-36,23v-5,0,-18,-5,-16,-11v4,-16,17,-36,37,-36v8,-9,25,-35,30,-48v-21,0,-50,2,-55,-13v-2,-31,44,-2,59,-14v-2,-60,21,-111,73,-115v22,-2,47,25,28,41v-17,9,-21,-13,-35,-15v-30,8,-42,46,-41,82v28,-3,67,-28,90,-9v-4,39,-87,5,-93,48v-2,16,-20,34,-26,45v36,10,64,32,106,32v13,0,25,-9,22,-28","w":240},"\u00a7":{"d":"41,-242v3,-33,86,-38,93,-3v1,7,-11,21,-18,20v-7,-9,-12,-26,-28,-26v-23,0,-39,29,-16,44v27,18,61,30,61,70v0,23,-18,40,-38,45v17,13,31,18,33,47v3,60,-105,67,-111,12v0,-4,1,-18,5,-17v29,-2,12,33,49,33v38,0,44,-43,10,-54v-30,-10,-82,-41,-57,-85v9,-15,24,-24,42,-30v-15,-14,-39,-27,-25,-56xm81,-168v-34,-3,-49,44,-19,58v20,20,44,-5,47,-25v2,-16,-14,-32,-28,-33","w":150},"\u00b6":{"d":"95,35v-23,-19,-15,-90,-17,-129v-25,-16,-56,-28,-56,-66v0,-76,89,-88,164,-91v15,3,32,8,34,24v-26,56,-36,172,-13,239v-1,2,-9,6,-13,6v-22,-8,-25,-54,-25,-85v0,-56,13,-102,19,-152v0,-4,-4,-7,-12,-7v-53,3,-122,15,-129,64v2,14,16,38,31,40v20,-3,-4,-66,23,-68v17,5,3,47,5,65v8,5,33,-2,23,21v-41,2,-20,82,-20,126v-2,7,-6,13,-14,13","w":240},"\u00df":{"d":"185,-210v1,43,-47,49,-71,66v37,7,71,32,71,76v0,41,-42,65,-82,69v-27,3,-45,-39,-22,-53v3,9,11,30,21,30v31,-1,55,-21,58,-50v2,-19,-29,-49,-66,-51v-8,0,-15,-12,-15,-21v0,-22,33,-16,47,-27v12,-10,34,-21,31,-47v4,-31,-41,-39,-55,-18v-48,70,-39,199,-68,287v-7,18,-35,49,-54,29v3,-30,30,-19,35,-57r20,-136v11,-75,20,-158,106,-158v28,0,43,32,44,61","w":200},"\u00ae":{"d":"98,-210v12,-62,119,-68,165,-31v35,27,85,106,31,148v-51,39,-116,79,-206,75v-35,-9,-73,-36,-73,-78v0,-53,49,-90,83,-114xm41,-118v-20,97,121,82,180,47v36,-21,77,-31,77,-81v0,-72,-108,-121,-168,-73v40,-20,64,-18,78,14v0,2,-2,5,-4,9v-66,-35,-134,35,-163,84xm218,-153v-2,9,-20,15,-30,18v16,13,51,15,61,32v-19,26,-56,-17,-83,-16v-5,0,-6,-7,-7,-11v0,-15,31,-15,33,-26v0,-10,-32,-8,-39,-2v-4,23,16,60,-8,69v-29,-1,-3,-55,-19,-73v-13,-14,8,-18,23,-21v35,-7,62,5,69,30","w":336},"\u00a9":{"d":"178,-263v19,4,51,20,34,42v53,-5,159,34,116,101v-42,65,-133,91,-223,105v-39,-3,-77,-21,-81,-59v14,-98,57,-173,154,-189xm50,-77v22,70,138,25,185,1v33,-16,73,-39,81,-80v-15,-45,-86,-43,-135,-55v-3,-12,8,-10,19,-10v-7,-12,-6,-18,-22,-18v-75,17,-115,85,-128,162xm144,-99v45,2,70,-18,95,-34v4,0,5,7,3,11v-14,29,-52,48,-95,48v-53,0,-39,-80,-11,-98v18,-20,77,-36,74,13v-4,4,-23,15,-23,0v0,-21,-20,-10,-26,-1v-15,11,-29,26,-24,54v0,4,3,7,7,7","w":344},"\u00b4":{"d":"18,-189v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":133},"\u00a8":{"d":"102,-244v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm23,-237v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":126},"\u00c6":{"d":"346,-168v13,-2,17,6,17,20v-24,17,-95,23,-136,20v-13,49,2,111,64,91v30,-10,68,-11,90,-28v26,23,-11,39,-36,43v-35,6,-68,17,-105,15v-37,-2,-40,-41,-48,-71v-43,11,-100,-11,-120,29v-24,21,-32,59,-70,64v-19,3,-20,-29,-3,-32v81,-60,128,-151,182,-236v41,-20,111,12,162,-11v30,-14,48,21,17,29v-45,3,-89,13,-135,9v-6,19,1,51,0,74v36,9,90,-11,121,-16xm114,-100v25,4,63,-2,80,-12r-2,-99","w":396,"k":{"\u00ec":-11,"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22}},"\u00d8":{"d":"242,-309v20,-3,11,23,4,31v-10,15,-20,31,-28,48v78,4,104,105,48,155v-42,37,-89,68,-160,75v-29,15,-14,67,-56,69v-9,0,-13,-5,-13,-15v12,-18,25,-35,33,-56v-37,-30,-74,-89,-35,-146v34,-49,68,-112,144,-112v7,0,16,7,19,12v19,-17,14,-56,44,-61xm206,-205v-34,56,-59,118,-91,175v71,0,136,-49,157,-110v0,-39,-34,-61,-66,-65xm86,-40v39,-54,63,-132,100,-189v-71,-6,-115,63,-135,121v-11,31,5,65,35,68","w":306,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00b1":{"d":"115,-144v29,9,68,-13,74,11v-4,25,-45,5,-75,11v-10,23,14,70,-16,76v-20,-10,0,-45,-6,-76r-71,2v-8,-2,-7,-10,-8,-20v16,-8,53,-3,79,-6v6,-17,2,-42,3,-61v1,-8,1,-12,10,-11v12,0,16,3,15,15xm22,-1v-16,-17,8,-26,27,-26r124,4v9,0,13,4,13,13v-22,28,-83,10,-138,10v-13,0,-22,0,-26,-1","w":205},"\u00a5":{"d":"195,-72v9,27,-44,20,-63,25v-15,1,-7,29,-1,35v-4,8,-8,12,-20,12v-17,0,-9,-30,-16,-41v-21,0,-65,25,-69,-5v3,-31,76,10,71,-38v6,-40,-72,16,-72,-27v0,-25,51,1,69,-11v-19,-40,-55,-64,-79,-99v-10,-15,9,-35,20,-20v23,33,47,62,75,91r82,-82v12,-14,47,-7,28,12v-31,31,-78,53,-97,95v21,-1,51,-8,66,-15v5,-1,13,14,13,18v-12,15,-58,14,-77,20v-2,7,-4,25,0,34v21,1,53,-18,70,-4","w":232},"\u00aa":{"d":"136,-173v16,3,31,-18,43,-29v3,0,6,4,6,7v-3,24,-28,45,-53,45v-17,0,-24,-17,-29,-31v-12,17,-29,51,-55,53v-16,1,-26,-16,-25,-32v3,-47,28,-96,74,-103v8,-1,12,13,19,8v23,10,-11,75,20,82xm45,-160v12,19,29,-10,35,-20v8,-14,18,-34,20,-57v1,-6,-5,-6,-10,-6v-26,6,-41,55,-45,83","w":187},"\u00ba":{"d":"122,-242v27,14,20,78,-3,90v-23,22,-103,51,-98,-12v3,-46,32,-107,88,-95v5,4,6,12,13,17xm44,-160v8,31,59,-8,66,-13v8,-17,7,-47,-8,-52v-2,-5,-1,-14,-7,-14v-34,0,-47,44,-51,79","w":157},"\u00e6":{"d":"306,-114v6,47,-72,89,-122,105v-46,-1,-63,-27,-61,-74v-20,36,-37,87,-85,93v-16,-4,-24,-20,-23,-41v6,-66,32,-136,93,-145v29,-5,49,12,39,44v10,-35,80,-67,96,-12v-5,46,-49,54,-88,66v-5,-1,-7,5,-7,8v26,80,128,-3,148,-35v6,-6,9,-9,10,-9xm182,-108v19,-5,54,-36,17,-43v-18,3,-40,33,-44,49v8,0,17,-3,27,-6xm47,-17v35,-16,63,-81,75,-118v2,-28,-32,-17,-41,-4v-20,29,-38,57,-40,104v0,12,2,18,6,18","k":{".":-43,",":-43}},"\u00f8":{"d":"188,-208v-3,18,-22,29,-26,45v17,6,39,25,39,45v0,64,-57,100,-120,106v-26,9,-27,53,-51,63v-34,-12,9,-50,17,-64v-38,-18,-33,-88,-6,-114v18,-28,57,-59,101,-41v9,-16,20,-62,46,-40xm92,-38v43,-3,85,-43,81,-88v-3,-7,-12,-11,-19,-14xm61,-36v25,-30,50,-72,68,-110v-47,-9,-78,31,-84,74v1,13,3,35,16,36","w":209},"\u00bf":{"d":"120,-185v-25,-4,-19,-44,2,-45v21,1,17,44,-2,45xm37,28v0,59,96,16,116,-6v8,-4,17,1,17,9v-18,32,-61,62,-115,55v-25,-3,-43,-19,-43,-45v0,-58,29,-96,83,-101v-1,-23,-12,-74,20,-76v25,8,-4,30,2,53v5,20,25,52,-6,55v-3,0,-7,-2,-13,-7v-30,5,-61,30,-61,63","w":173,"k":{"j":-58}},"\u00a1":{"d":"46,-206v-1,-3,20,-25,35,-15v9,15,-1,44,-23,41v-11,1,-10,-17,-12,-26xm21,54v16,-66,0,-157,45,-187v22,38,-9,100,-9,159v0,29,-21,72,-36,28","w":103},"\u00ac":{"d":"43,-115v65,7,122,-11,179,-1v12,15,0,66,1,93v-4,14,-27,9,-24,-7v0,-21,9,-48,0,-64r-175,4v-13,-1,-6,-22,1,-23v6,-1,13,-2,18,-2","w":259},"\u00ab":{"d":"215,-159v7,-3,38,-27,41,-3v0,3,-5,12,-8,12v-20,9,-75,21,-85,34v24,21,45,37,61,62v-2,14,-18,8,-24,0v-19,-24,-53,-41,-70,-67v15,-26,55,-26,85,-38xm27,-136v32,3,90,-70,100,-39v-2,27,-36,27,-52,44v-7,4,-19,4,-23,11v17,11,56,41,65,61v-1,17,-16,6,-24,-1v-23,-19,-46,-39,-73,-54v-6,-7,-7,-23,7,-22","w":263},"\u00bb":{"d":"214,-103v-6,-16,-80,-48,-44,-70v23,17,47,53,80,63v3,25,-48,30,-64,48v-15,8,-25,22,-41,29v-25,-6,-3,-29,8,-35xm45,-163v23,-33,45,32,70,41v5,4,23,21,11,28v-27,17,-59,37,-85,56v-16,1,-18,-10,-11,-24v18,-15,57,-23,69,-42v-10,-18,-45,-40,-54,-59"},"\u00a0":{"w":143},"\u00c0":{"d":"191,-265v20,-2,14,24,13,42v31,59,42,139,78,189v24,20,1,52,-16,33v-21,-22,-31,-59,-42,-88v-36,13,-80,19,-121,27v-23,5,-37,67,-71,72v-14,1,-28,-6,-28,-16v4,-11,14,-3,23,-16r120,-169v15,-23,33,-77,44,-74xm215,-115v-10,-28,-18,-60,-31,-84r-68,104v37,0,69,-13,99,-20xm204,-289v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00c3":{"d":"184,-341v17,27,51,30,67,-1v6,-1,7,4,8,9v-5,17,-16,38,-36,40v-30,1,-34,-25,-57,-31v-23,2,-22,30,-44,33v-5,1,-8,-4,-8,-8v7,-24,39,-62,70,-42xm191,-265v20,-2,14,24,13,42v31,59,42,139,78,189v24,20,1,52,-16,33v-21,-22,-31,-59,-42,-88v-36,13,-80,19,-121,27v-23,5,-37,67,-71,72v-14,1,-28,-6,-28,-16v4,-11,14,-3,23,-16r120,-169v15,-23,33,-77,44,-74xm215,-115v-10,-28,-18,-60,-31,-84r-68,104v37,0,69,-13,99,-20","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00d5":{"d":"193,-336v21,26,46,19,60,-6v7,-1,9,3,9,9v-6,16,-18,38,-36,40v-36,3,-52,-56,-81,-15v-6,9,-23,27,-28,8v4,-29,51,-67,76,-36xm203,-68v48,-40,65,-178,-33,-164v-69,10,-95,69,-115,130v-22,69,46,108,103,70v16,-10,34,-22,45,-36xm91,-223v57,-54,200,-41,187,60v-12,93,-71,150,-150,173v-96,28,-130,-81,-89,-160v14,-26,32,-54,52,-73","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00f7":{"d":"87,-168v4,-13,35,-11,38,-1v0,9,-4,23,-12,23v-16,1,-25,-10,-26,-22xm37,-107v54,0,101,-7,146,0v11,2,13,16,5,23r-137,5v-29,4,-36,-28,-14,-28xm83,-19v-1,-12,33,-27,37,-9v4,26,-32,26,-37,9","w":208},"\u00c2":{"d":"204,-377v19,16,35,57,54,71v10,14,-9,27,-18,14v-14,-18,-25,-39,-40,-55v-25,16,-30,41,-58,55v-6,0,-9,-5,-9,-15v12,-29,39,-35,54,-58v6,-9,12,-12,17,-12xm191,-265v20,-2,14,24,13,42v31,59,42,139,78,189v24,20,1,52,-16,33v-21,-22,-31,-59,-42,-88v-36,13,-80,19,-121,27v-23,5,-37,67,-71,72v-14,1,-28,-6,-28,-16v4,-11,14,-3,23,-16r120,-169v15,-23,33,-77,44,-74xm215,-115v-10,-28,-18,-60,-31,-84r-68,104v37,0,69,-13,99,-20","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00ca":{"d":"232,-290v-24,-11,-33,-44,-50,-61v-23,16,-32,42,-58,55v-6,0,-9,-5,-9,-15v12,-28,39,-34,54,-57v19,-28,28,0,39,17v8,23,30,28,34,51v0,5,-5,10,-10,10xm228,-145v-5,44,-96,17,-147,32v-5,26,-15,49,-17,77v57,9,132,-5,181,-20v20,4,13,32,-5,35r-192,28v-49,-23,9,-101,2,-155v6,-56,-8,-117,75,-99v54,12,98,-12,143,-15v24,31,-22,38,-51,39r-127,5v-6,19,-5,46,-7,69v39,16,98,-1,136,-10v7,1,9,6,9,14","w":270,"k":{"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-5}},"\u00c1":{"d":"191,-265v20,-2,14,24,13,42v31,59,42,139,78,189v24,20,1,52,-16,33v-21,-22,-31,-59,-42,-88v-36,13,-80,19,-121,27v-23,5,-37,67,-71,72v-14,1,-28,-6,-28,-16v4,-11,14,-3,23,-16r120,-169v15,-23,33,-77,44,-74xm215,-115v-10,-28,-18,-60,-31,-84r-68,104v37,0,69,-13,99,-20xm150,-290v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00cb":{"d":"228,-145v-5,44,-96,17,-147,32v-5,26,-15,49,-17,77v57,9,132,-5,181,-20v20,4,13,32,-5,35r-192,28v-49,-23,9,-101,2,-155v6,-56,-8,-117,75,-99v54,12,98,-12,143,-15v24,31,-22,38,-51,39r-127,5v-6,19,-5,46,-7,69v39,16,98,-1,136,-10v7,1,9,6,9,14xm210,-337v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm131,-330v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":270,"k":{"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-5}},"\u00c8":{"d":"228,-145v-5,44,-96,17,-147,32v-5,26,-15,49,-17,77v57,9,132,-5,181,-20v20,4,13,32,-5,35r-192,28v-49,-23,9,-101,2,-155v6,-56,-8,-117,75,-99v54,12,98,-12,143,-15v24,31,-22,38,-51,39r-127,5v-6,19,-5,46,-7,69v39,16,98,-1,136,-10v7,1,9,6,9,14xm184,-294v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":270,"k":{"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-5,"\u00ef":-5,"\u00ee":-5}},"\u00cd":{"d":"95,-237v-12,63,-31,129,-32,207v10,16,-3,31,-20,32v-45,-55,15,-172,18,-245v1,-7,6,-14,12,-16v12,1,21,9,22,22xm57,-300v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":111,"k":{"z":14,"w":22,"v":29}},"\u00ce":{"d":"138,-267v-23,-12,-34,-43,-50,-61v-25,15,-32,40,-58,55v-6,0,-9,-5,-9,-15v10,-30,39,-36,54,-58v19,-26,28,1,38,17v8,23,29,29,35,51v0,6,-5,10,-10,11xm95,-237v-12,63,-31,129,-32,207v10,16,-3,31,-20,32v-45,-55,15,-172,18,-245v1,-7,6,-14,12,-16v12,1,21,9,22,22","w":111,"k":{"z":14,"w":22,"v":29}},"\u00cc":{"d":"95,-237v-12,63,-31,129,-32,207v10,16,-3,31,-20,32v-45,-55,15,-172,18,-245v1,-7,6,-14,12,-16v12,1,21,9,22,22xm116,-291v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":111,"k":{"z":14,"w":22,"v":29}},"\u00d3":{"d":"203,-68v48,-40,65,-178,-33,-164v-69,10,-95,69,-115,130v-22,69,46,108,103,70v16,-10,34,-22,45,-36xm91,-223v57,-54,200,-41,187,60v-12,93,-71,150,-150,173v-96,28,-130,-81,-89,-160v14,-26,32,-54,52,-73xm147,-284v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00d4":{"d":"188,-372v19,16,35,57,54,71v10,14,-9,27,-18,14v-14,-18,-23,-40,-40,-55v-25,16,-30,41,-58,55v-6,0,-9,-5,-9,-15v12,-29,39,-35,54,-58v6,-9,12,-12,17,-12xm203,-68v48,-40,65,-178,-33,-164v-69,10,-95,69,-115,130v-22,69,46,108,103,70v16,-10,34,-22,45,-36xm91,-223v57,-54,200,-41,187,60v-12,93,-71,150,-150,173v-96,28,-130,-81,-89,-160v14,-26,32,-54,52,-73","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00d2":{"d":"203,-68v48,-40,65,-178,-33,-164v-69,10,-95,69,-115,130v-22,69,46,108,103,70v16,-10,34,-22,45,-36xm91,-223v57,-54,200,-41,187,60v-12,93,-71,150,-150,173v-96,28,-130,-81,-89,-160v14,-26,32,-54,52,-73xm210,-289v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00da":{"d":"263,-247v0,113,4,251,-132,251v-91,0,-115,-97,-89,-184v8,-28,4,-65,19,-86v25,-13,26,17,20,39v-19,69,-44,193,47,201v94,9,91,-77,96,-160v2,-30,0,-69,27,-73v8,-1,12,5,12,12xm138,-280v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00db":{"d":"224,-292v-26,-10,-33,-46,-51,-61v-23,17,-32,41,-58,55v-6,0,-8,-5,-8,-15v5,-22,22,-23,33,-37v15,-8,33,-50,46,-25v14,26,35,48,48,72v0,6,-4,11,-10,11xm263,-247v0,113,4,251,-132,251v-91,0,-115,-97,-89,-184v8,-28,4,-65,19,-86v25,-13,26,17,20,39v-19,69,-44,193,47,201v94,9,91,-77,96,-160v2,-30,0,-69,27,-73v8,-1,12,5,12,12","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00d9":{"d":"263,-247v0,113,4,251,-132,251v-91,0,-115,-97,-89,-184v8,-28,4,-65,19,-86v25,-13,26,17,20,39v-19,69,-44,193,47,201v94,9,91,-77,96,-160v2,-30,0,-69,27,-73v8,-1,12,5,12,12xm172,-288v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00b8":{"d":"12,79v6,-30,62,21,64,-23v1,-29,-37,0,-40,-20v15,-25,4,-43,29,-49v13,8,0,20,0,34v18,8,35,12,31,45v-3,27,-48,40,-75,24v-6,-2,-9,-6,-9,-11","w":111},"\u00a6":{"d":"49,-354v8,-10,22,1,22,12r-1,198v2,17,-23,18,-23,3xm58,-55v29,31,0,134,10,208v4,27,-21,31,-26,15r2,-204v1,-9,3,-20,14,-19","w":116},"\u00d0":{"d":"3,-136v64,11,64,-30,64,-85v0,-14,7,-40,26,-29v91,19,208,16,218,116v-14,97,-121,94,-179,143v-13,11,-19,-12,-20,-19v42,-45,154,-48,170,-122v-4,-49,-56,-56,-89,-75v-35,-1,-63,-9,-97,-11v-3,23,-8,57,-5,82v27,2,70,-14,77,10v-3,33,-65,4,-85,21v-4,26,6,54,6,80v0,14,-6,19,-20,20v-19,-7,-14,-64,-15,-93v-1,-22,-58,5,-62,-28v0,-6,5,-10,11,-10","w":324,"k":{"\u00ff":29,"\u00fd":29,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00c6":36,"\u00c4":36,"y":29,"x":29,"w":22,"v":14,"t":-50,"s":14,"n":14,"m":14,"f":14,"d":14,"J":58,"A":36,",":58,"\u00c5":-29,".":-65}},"\u00f0":{"d":"150,-272v29,22,-26,32,-32,45v40,34,81,143,19,184v-20,13,-43,39,-75,39v-38,0,-48,-45,-50,-83v10,-51,49,-86,106,-93r-24,-34v-19,2,-35,24,-53,27v-28,-19,33,-28,27,-44v-10,-5,-22,-9,-28,-17v0,-7,14,-18,21,-18v13,0,31,19,40,23v21,-2,29,-26,49,-29xm40,-87v-7,69,63,58,82,19v24,-15,26,-69,5,-92v-39,6,-83,30,-87,73","w":181},"\u00dd":{"d":"222,-293v4,-17,38,-14,30,5v-19,44,-65,78,-87,120v-33,32,-23,107,-30,166v-6,15,-35,15,-35,-5v0,-44,15,-92,9,-134v-41,-24,-61,-68,-94,-97v-3,-3,-5,-7,-5,-9v7,-11,32,-20,41,-2v23,24,41,54,67,75v32,-2,42,-47,63,-63xm97,-290v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":245,"k":{"\u00ff":58,"\u00fd":58,"\u00e7":65,"\u00d2":20,"\u00d4":20,"\u00d3":20,"\u00c1":50,"\u00c2":50,"\u00d5":20,"\u00c3":50,"\u00c0":50,"\u00f8":43,"\u00e6":36,"\u00d8":20,"\u00c6":50,"\u00d6":20,"\u00c7":32,"\u00c5":50,"\u00c4":50,"}":-29,"z":58,"y":58,"x":43,"w":43,"v":72,"u":58,"s":43,"r":58,"q":29,"p":29,"o":43,"n":58,"m":36,"g":43,"f":43,"e":65,"d":65,"c":65,"a":36,"]":-29,"W":-14,"V":-22,"Q":20,"O":20,"J":50,"G":32,"C":32,"B":18,"A":50,")":-29}},"\u00de":{"d":"78,-282v29,-16,33,17,24,39v12,15,63,-4,88,13v54,5,131,40,84,96v-43,52,-138,54,-206,84v-13,21,13,62,-16,65v-52,-32,8,-128,5,-187xm70,-98v10,33,72,-7,97,-5v39,-12,76,-26,93,-59v-18,-42,-93,-42,-150,-49v-15,-2,-21,16,-21,24v1,32,-16,61,-19,89","w":284,"k":{"\u00e7":20,"\u00c1":83,"\u00c2":83,"\u00c3":83,"\u00c0":83,"\u00c6":83,"\u00c5":83,"\u00c4":83,"c":20,"A":83,".":43,",":43}},"\u00fe":{"d":"27,56v18,-99,14,-238,46,-323v14,-8,18,3,17,25v-2,63,-21,111,-24,170v27,-38,42,-100,94,-107v37,-5,64,33,44,67v-8,14,-29,34,-43,48v48,-17,90,-41,128,-67v4,51,-107,78,-155,102v-21,10,-38,11,-49,11v-10,0,-17,-9,-19,7v-3,20,-6,36,-7,57v-1,18,-4,48,-19,48v-17,0,-16,-22,-13,-38xm96,-89v-6,17,-31,39,-16,53v44,-10,98,-64,100,-102v-18,-31,-54,4,-64,20v-6,10,-14,19,-20,29","w":242,"k":{".":-22,",":-22}},"\u00d7":{"d":"177,-155v-4,26,-47,40,-56,62v18,24,43,40,57,68v-13,29,-35,-9,-45,-19r-28,-33v-21,20,-38,44,-62,61v-4,1,-12,-9,-12,-12v15,-22,44,-43,59,-64v-16,-18,-36,-35,-52,-52v-7,-8,-2,-21,9,-21v27,11,35,40,58,59v15,-5,38,-52,61,-57v6,-1,10,4,11,8","w":205},"\u00b9":{"d":"75,-270v15,31,-17,82,-11,133v3,24,-21,30,-29,13r5,-58v8,-31,7,-80,35,-88","w":107},"\u00b2":{"d":"95,-230v-12,-10,-44,10,-54,19v-14,-2,-13,-29,2,-30v22,-7,70,-32,75,5v-10,48,-52,67,-71,103v26,-2,67,-12,96,-17v9,1,14,7,14,17v0,13,-18,16,-29,10v-37,2,-68,18,-105,23v-28,-7,-14,-25,6,-48r65,-75v1,-3,1,-5,1,-7","w":158},"\u00b3":{"d":"94,-195v14,-6,44,-4,42,18v-4,46,-79,78,-121,75v-14,-12,-2,-37,21,-28v33,-4,66,-18,77,-42v-13,-21,-66,20,-72,-10v1,-9,8,-17,19,-14v14,-4,40,-20,42,-36v-22,-11,-42,14,-64,16v-21,-6,-7,-25,7,-27v21,-3,35,-14,58,-14v12,0,24,6,23,19v5,13,-28,38,-32,43","w":139},"\u00bd":{"d":"177,-25v39,-1,111,-30,124,10v-5,19,-33,3,-53,5v-37,3,-75,7,-110,11v-16,-2,-24,-17,-6,-28v35,-23,93,-37,109,-80v-29,-16,-79,32,-87,-2v18,-19,101,-41,112,-2v-6,44,-50,68,-86,81v-2,1,-3,3,-3,5xm30,-145v14,-36,9,-96,38,-117v16,1,6,26,5,39v-3,27,-16,49,-16,79v-1,3,0,20,-14,16v-9,1,-13,-8,-13,-17xm122,-152v30,-26,35,-77,78,-90v10,32,-35,61,-46,90v-36,44,-78,82,-103,137v-7,14,-26,17,-28,1v4,-18,22,-27,26,-46v20,-30,44,-67,73,-92","w":307},"\u00bc":{"d":"246,-152v19,16,-8,53,-4,81v4,9,55,-2,53,12v3,22,-57,4,-57,19v0,25,12,60,-11,64v-19,-4,-10,-42,-12,-64v-19,-13,-63,22,-70,-7v19,-37,70,-69,92,-103v1,-1,5,-2,9,-2xm57,-275v11,0,15,11,13,24v-7,38,-7,86,-22,117v-27,4,-18,-37,-13,-59v7,-26,3,-69,22,-82xm108,-129v40,-39,52,-163,108,-134v-46,60,-80,135,-120,198v-17,26,-26,59,-44,83v-11,7,-23,-6,-15,-20xm224,-103v-17,6,-31,28,-42,41v6,6,27,0,36,-2v2,-4,6,-34,6,-39","w":298},"\u00be":{"d":"272,-107v-3,25,32,-12,28,17v-11,17,-49,9,-40,58v4,24,-12,52,-25,24v-3,-19,9,-37,9,-58v0,-15,-32,-1,-39,0v-6,7,-29,19,-30,-2v10,-24,52,-76,73,-89v12,-3,18,-36,36,-17v-6,17,-9,41,-12,67xm96,-40v-8,19,-24,69,-38,33v25,-70,77,-121,109,-185v22,-24,59,-84,82,-96v4,0,7,3,7,10v-33,56,-95,130,-128,188v-13,23,-27,38,-32,50xm106,-247v-24,-20,-71,25,-91,4v0,-1,-1,-3,-1,-4v14,-18,50,-21,83,-22v13,0,35,2,34,15v-1,20,-27,30,-41,38v10,6,41,-1,38,16v-7,37,-49,46,-78,63v-5,0,-13,-9,-12,-14v16,-19,56,-25,70,-45v-16,-5,-82,6,-52,-21v13,-12,39,-19,50,-30xm216,-88v28,-3,42,-13,38,-47v-20,19,-33,35,-38,47","w":315},"\u00ad":{"d":"100,-116v37,8,92,-15,117,11v7,29,-29,9,-52,14v-27,-4,-56,0,-84,0v-11,0,-19,-1,-19,-11v0,-15,29,-13,38,-14","w":230},"\u00a4":{"d":"166,-46v-22,8,-58,11,-77,-2v-24,5,-42,34,-64,43v-9,-1,-20,-23,-6,-27v8,-13,43,-22,44,-42v-17,-28,-21,-82,2,-106v-6,-21,-22,-37,-37,-49v-2,-15,18,-26,30,-8r27,40v30,-28,69,-20,101,-6v17,-15,27,-37,49,-47v4,-1,15,7,14,12v-7,22,-32,33,-39,54v14,33,9,92,-12,116v7,30,58,42,27,71v-25,-6,-35,-39,-59,-49xm130,-68v48,5,56,-39,56,-86v0,-30,-32,-37,-58,-37v-29,0,-43,39,-47,68v-4,35,26,53,49,55"},"\u00e1":{"d":"181,-55v51,-6,75,-46,105,-72v12,38,-40,62,-64,85v-25,24,-85,21,-91,-18v-25,25,-47,54,-91,60v-68,-52,11,-183,96,-176v63,6,-20,111,45,121xm47,-29v52,-9,90,-53,86,-113v0,-7,-4,-11,-12,-10v-50,12,-77,58,-82,111v0,6,3,11,8,12xm97,-215v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":236,"k":{".":-36,",":-36}},"\u00e2":{"d":"152,-250v7,25,52,42,25,62v-23,-12,-33,-43,-50,-61v-23,15,-34,41,-58,55v-6,0,-9,-6,-9,-16v12,-28,38,-35,54,-57v19,-26,29,0,38,17xm181,-55v51,-6,75,-46,105,-72v12,38,-40,62,-64,85v-25,24,-85,21,-91,-18v-25,25,-47,54,-91,60v-68,-52,11,-183,96,-176v63,6,-20,111,45,121xm47,-29v52,-9,90,-53,86,-113v0,-7,-4,-11,-12,-10v-50,12,-77,58,-82,111v0,6,3,11,8,12","w":236,"k":{".":-36,",":-36}},"\u00e4":{"d":"181,-55v51,-6,75,-46,105,-72v12,38,-40,62,-64,85v-25,24,-85,21,-91,-18v-25,25,-47,54,-91,60v-68,-52,11,-183,96,-176v63,6,-20,111,45,121xm47,-29v52,-9,90,-53,86,-113v0,-7,-4,-11,-12,-10v-50,12,-77,58,-82,111v0,6,3,11,8,12xm164,-244v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm85,-237v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":236,"k":{".":-36,",":-36}},"\u00e0":{"d":"181,-55v51,-6,75,-46,105,-72v12,38,-40,62,-64,85v-25,24,-85,21,-91,-18v-25,25,-47,54,-91,60v-68,-52,11,-183,96,-176v63,6,-20,111,45,121xm47,-29v52,-9,90,-53,86,-113v0,-7,-4,-11,-12,-10v-50,12,-77,58,-82,111v0,6,3,11,8,12xm135,-200v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":236,"k":{".":-36,",":-36}},"\u00e5":{"d":"81,-232v-1,-49,87,-60,88,-6v2,51,-88,61,-88,6xm123,-210v11,-3,24,-9,24,-25v0,-15,-12,-24,-29,-19v-20,5,-15,45,5,44xm181,-55v51,-6,75,-46,105,-72v12,38,-40,62,-64,85v-25,24,-85,21,-91,-18v-25,25,-47,54,-91,60v-68,-52,11,-183,96,-176v63,6,-20,111,45,121xm47,-29v52,-9,90,-53,86,-113v0,-7,-4,-11,-12,-10v-50,12,-77,58,-82,111v0,6,3,11,8,12","w":236,"k":{".":-36,",":-36}},"\u00e3":{"d":"51,-200v4,-33,56,-67,82,-30v14,20,39,13,48,-8v4,-10,14,-3,15,4v-6,16,-17,38,-36,40v-36,3,-52,-56,-81,-14v-5,8,-24,26,-28,8xm181,-55v51,-6,75,-46,105,-72v12,38,-40,62,-64,85v-25,24,-85,21,-91,-18v-25,25,-47,54,-91,60v-68,-52,11,-183,96,-176v63,6,-20,111,45,121xm47,-29v52,-9,90,-53,86,-113v0,-7,-4,-11,-12,-10v-50,12,-77,58,-82,111v0,6,3,11,8,12","w":236,"k":{".":-36,",":-36}},"\u00e7":{"d":"17,79v8,-30,61,22,64,-23v1,-29,-37,1,-40,-20r14,-37v-78,-35,-14,-169,44,-182v19,8,44,52,19,68v-12,-2,-16,-30,-23,-38v-35,13,-46,55,-51,99v9,53,85,20,110,1v30,-23,58,-59,93,-73v-3,37,-50,58,-74,81v-26,26,-52,42,-97,45v-3,7,-6,10,-6,21v19,7,35,12,31,45v-3,27,-48,40,-75,24v-6,-2,-9,-6,-9,-11","w":188,"k":{".":-14,",":-14}},"\u00e9":{"d":"55,-67v3,61,93,26,115,4v27,-18,46,-45,73,-62v1,0,2,2,2,4v-35,55,-79,116,-158,116v-100,0,-56,-176,9,-189v21,-9,41,8,41,29v0,54,-48,69,-82,98xm55,-93v21,-18,69,-41,50,-76v-30,0,-43,45,-50,76xm57,-219v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":189,"k":{".":-43,",":-43}},"\u00ea":{"d":"118,-285v18,17,34,57,53,71v6,9,2,18,-7,20v-24,-11,-34,-43,-50,-61v-26,15,-31,40,-58,55v-6,0,-9,-5,-9,-15v5,-22,22,-23,33,-37v13,-9,24,-30,38,-33xm55,-67v3,61,93,26,115,4v27,-18,46,-45,73,-62v1,0,2,2,2,4v-35,55,-79,116,-158,116v-100,0,-56,-176,9,-189v21,-9,41,8,41,29v0,54,-48,69,-82,98xm55,-93v21,-18,69,-41,50,-76v-30,0,-43,45,-50,76","w":189,"k":{".":-43,",":-43}},"\u00eb":{"d":"55,-67v3,61,93,26,115,4v27,-18,46,-45,73,-62v1,0,2,2,2,4v-35,55,-79,116,-158,116v-100,0,-56,-176,9,-189v21,-9,41,8,41,29v0,54,-48,69,-82,98xm55,-93v21,-18,69,-41,50,-76v-30,0,-43,45,-50,76xm146,-246v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm67,-239v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":189,"k":{".":-43,",":-43}},"\u00e8":{"d":"55,-67v3,61,93,26,115,4v27,-18,46,-45,73,-62v1,0,2,2,2,4v-35,55,-79,116,-158,116v-100,0,-56,-176,9,-189v21,-9,41,8,41,29v0,54,-48,69,-82,98xm55,-93v21,-18,69,-41,50,-76v-30,0,-43,45,-50,76xm120,-214v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":189,"k":{".":-43,",":-43}},"\u00ed":{"d":"223,-142v14,40,-44,76,-62,106v-20,17,-37,42,-71,42v-52,0,-49,-67,-46,-117v2,-26,8,-47,31,-49v14,23,-11,65,-2,102v-2,52,52,26,71,5xm44,-204v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00ee":{"d":"102,-252v7,25,52,42,25,62v-23,-12,-32,-43,-50,-61v-25,15,-32,40,-58,55v-6,0,-9,-5,-9,-15v10,-30,39,-36,54,-58v19,-26,28,1,38,17xm223,-142v14,40,-44,76,-62,106v-20,17,-37,42,-71,42v-52,0,-49,-67,-46,-117v2,-26,8,-47,31,-49v14,23,-11,65,-2,102v-2,52,52,26,71,5","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00ef":{"d":"223,-142v14,40,-44,76,-62,106v-20,17,-37,42,-71,42v-52,0,-49,-67,-46,-117v2,-26,8,-47,31,-49v14,23,-11,65,-2,102v-2,52,52,26,71,5xm112,-245v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm33,-238v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00ec":{"d":"223,-142v14,40,-44,76,-62,106v-20,17,-37,42,-71,42v-52,0,-49,-67,-46,-117v2,-26,8,-47,31,-49v14,23,-11,65,-2,102v-2,52,52,26,71,5xm90,-192v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00f1":{"d":"144,-255v20,26,46,18,60,-7v7,-1,8,4,9,9v-6,16,-16,39,-36,40v-36,2,-52,-56,-81,-14v-5,8,-24,26,-28,8v4,-29,51,-68,76,-36xm326,-130v6,45,-61,99,-114,110v-50,-1,-39,-66,-56,-101v-44,-6,-55,59,-86,82v-6,7,-14,15,-23,18v-27,-22,-19,-138,21,-148v7,0,8,15,6,22v-5,23,-17,49,-14,77v37,-21,52,-99,113,-82v26,17,10,74,32,98v4,3,8,4,15,4v52,0,71,-55,106,-80","w":272,"k":{".":-79,",":-79}},"\u00f3":{"d":"134,-174v21,33,97,46,140,22v2,47,-83,43,-112,22v19,68,-35,131,-112,126v-56,-4,-31,-92,-7,-118v21,-24,50,-72,91,-52xm99,-149v-27,24,-82,85,-37,118v56,0,100,-55,72,-106v-12,-4,-22,-13,-35,-12xm97,-211v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":208},"\u00f4":{"d":"120,-282v19,17,35,57,54,71v8,25,-14,21,-23,8v-10,-14,-24,-35,-35,-49v-25,15,-32,42,-58,55v-6,0,-9,-5,-9,-15v12,-28,38,-36,54,-58v6,-9,12,-12,17,-12xm134,-174v21,33,97,46,140,22v2,47,-83,43,-112,22v19,68,-35,131,-112,126v-56,-4,-31,-92,-7,-118v21,-24,50,-72,91,-52xm99,-149v-27,24,-82,85,-37,118v56,0,100,-55,72,-106v-12,-4,-22,-13,-35,-12","w":208},"\u00f6":{"d":"134,-174v21,33,97,46,140,22v2,47,-83,43,-112,22v19,68,-35,131,-112,126v-56,-4,-31,-92,-7,-118v21,-24,50,-72,91,-52xm99,-149v-27,24,-82,85,-37,118v56,0,100,-55,72,-106v-12,-4,-22,-13,-35,-12xm150,-245v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm71,-238v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":208},"\u00f2":{"d":"134,-174v21,33,97,46,140,22v2,47,-83,43,-112,22v19,68,-35,131,-112,126v-56,-4,-31,-92,-7,-118v21,-24,50,-72,91,-52xm99,-149v-27,24,-82,85,-37,118v56,0,100,-55,72,-106v-12,-4,-22,-13,-35,-12xm141,-201v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":208},"\u00f5":{"d":"124,-246v20,26,47,18,60,-7v6,0,9,4,9,10v-6,16,-18,38,-36,40v-30,3,-34,-27,-58,-32v-22,4,-22,29,-43,34v-5,0,-8,-5,-8,-9v4,-28,51,-68,76,-36xm134,-174v21,33,97,46,140,22v2,47,-83,43,-112,22v19,68,-35,131,-112,126v-56,-4,-31,-92,-7,-118v21,-24,50,-72,91,-52xm99,-149v-27,24,-82,85,-37,118v56,0,100,-55,72,-106v-12,-4,-22,-13,-35,-12","w":208},"\u00fa":{"d":"202,-171v-8,40,-16,128,40,103v38,-17,65,-51,96,-76v-6,55,-68,93,-120,110v-35,-2,-39,-35,-44,-66v-29,39,-49,90,-110,96v-54,-12,-17,-87,-19,-143v2,-8,5,-16,16,-15v40,17,-8,81,0,118v51,37,98,-68,118,-115v6,-13,11,-20,15,-20v6,1,7,2,8,8xm99,-203v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":275},"\u00fb":{"d":"188,-207v-25,-11,-33,-46,-51,-62v-23,17,-32,41,-58,55v-6,0,-9,-5,-9,-15v12,-28,38,-35,54,-57v26,-36,35,24,52,37v8,10,35,33,12,42xm202,-171v-8,40,-16,128,40,103v38,-17,65,-51,96,-76v-6,55,-68,93,-120,110v-35,-2,-39,-35,-44,-66v-29,39,-49,90,-110,96v-54,-12,-17,-87,-19,-143v2,-8,5,-16,16,-15v40,17,-8,81,0,118v51,37,98,-68,118,-115v6,-13,11,-20,15,-20v6,1,7,2,8,8","w":275},"\u00fc":{"d":"202,-171v-8,40,-16,128,40,103v38,-17,65,-51,96,-76v-6,55,-68,93,-120,110v-35,-2,-39,-35,-44,-66v-29,39,-49,90,-110,96v-54,-12,-17,-87,-19,-143v2,-8,5,-16,16,-15v40,17,-8,81,0,118v51,37,98,-68,118,-115v6,-13,11,-20,15,-20v6,1,7,2,8,8xm168,-244v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm89,-237v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":275},"\u00f9":{"d":"202,-171v-8,40,-16,128,40,103v38,-17,65,-51,96,-76v-6,55,-68,93,-120,110v-35,-2,-39,-35,-44,-66v-29,39,-49,90,-110,96v-54,-12,-17,-87,-19,-143v2,-8,5,-16,16,-15v40,17,-8,81,0,118v51,37,98,-68,118,-115v6,-13,11,-20,15,-20v6,1,7,2,8,8xm145,-201v-20,-24,-96,-51,-64,-73v30,10,46,37,72,49v16,8,7,29,-8,24","w":275},"\u00fd":{"d":"88,-154v-12,29,-42,76,-15,107v59,-7,110,-40,103,-115v3,-11,8,-17,15,-17v27,2,10,49,10,76v0,62,-17,123,-42,163v-31,50,-118,24,-135,-17v0,-5,5,-16,9,-16v17,22,41,38,76,37v48,-14,55,-77,60,-130v-27,15,-62,43,-100,48v-60,-10,-28,-114,-7,-147v7,-12,28,-5,26,11xm106,-208v8,-27,62,-56,89,-65v3,3,7,8,8,13v-24,24,-58,40,-86,60v-7,0,-8,-5,-11,-8","w":226},"\u00ff":{"d":"88,-154v-12,29,-42,76,-15,107v59,-7,110,-40,103,-115v3,-11,8,-17,15,-17v27,2,10,49,10,76v0,62,-17,123,-42,163v-31,50,-118,24,-135,-17v0,-5,5,-16,9,-16v17,22,41,38,76,37v48,-14,55,-77,60,-130v-27,15,-62,43,-100,48v-60,-10,-28,-114,-7,-147v7,-12,28,-5,26,11xm176,-248v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm97,-241v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":226},"\u00cf":{"d":"95,-237v-12,63,-31,129,-32,207v10,16,-3,31,-20,32v-45,-55,15,-172,18,-245v1,-7,6,-14,12,-16v12,1,21,9,22,22xm123,-334v15,5,11,32,-8,30v-27,-8,-13,-29,8,-30xm44,-327v18,-2,36,30,7,29v-6,0,-22,-3,-18,-17v2,-6,4,-11,11,-12","w":111,"k":{"z":14,"w":22,"v":29}},"\u00af":{"d":"0,-254v58,4,137,-19,161,13v-4,21,-43,0,-67,7v-32,2,-62,5,-94,2v-7,0,-11,-5,-11,-11v0,-6,5,-11,11,-11","w":150},"\u0305":{"d":"0,-254v58,4,137,-19,161,13v-4,21,-43,0,-67,7v-32,2,-62,5,-94,2v-7,0,-11,-5,-11,-11v0,-6,5,-11,11,-11","w":150},"\u00b5":{"d":"224,-164v-2,23,-16,49,-16,73v0,18,1,57,16,58v10,1,29,-17,29,3v0,16,-20,24,-39,25v-22,-5,-29,-36,-33,-61v-17,20,-48,62,-80,57v-18,-3,-24,-7,-29,-28v-5,32,-12,76,-22,103v-16,10,-24,-11,-20,-31r34,-188v-1,-23,35,-43,35,-8v0,38,-37,100,-2,123v58,-4,86,-57,93,-113v-4,-23,26,-28,34,-13","w":266},"\u00b7":{"d":"55,-137v7,-1,15,21,14,28v-1,9,-6,14,-21,13v-5,1,-24,-11,-23,-16v6,-13,5,-28,30,-25","w":92}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * C 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Segoe is either a registered trademark or a trademark of Microsoft Corporation
 * in the United States and/or other countries.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography
 * 
 * License information:
 * http://www.microsoft.com/typography
 */
Cufon.registerFont({"w":262,"face":{"font-family":"Segoe Script","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 4 2 0 0 0 0 3","ascent":"288","descent":"-72","cap-height":"2","bbox":"-39 -383.829 414.866 177.61","underline-thickness":"25.1367","underline-position":"-10.8984","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":143},"!":{"d":"19,-25v0,-27,38,-39,49,-13v3,16,-13,35,-29,35v-13,0,-20,-8,-20,-22xm50,-221v-6,-30,37,-57,49,-24r-35,161v-16,-1,-28,1,-28,-20v0,-42,12,-78,14,-117","w":116},"\"":{"d":"36,-251v6,-19,35,-10,34,8v-2,33,-11,63,-16,95v-3,20,-40,13,-36,-10xm120,-262v28,0,17,37,11,57v-8,26,1,68,-28,72v-36,-4,-11,-56,-6,-79v4,-20,0,-50,23,-50","w":145},"#":{"d":"108,-101v16,0,31,-1,42,-6r12,-39r-42,6v-5,11,-9,25,-12,39xm207,-260v35,10,-3,55,-3,79v27,-4,90,-14,66,24v-22,5,-51,0,-74,7r-12,41v26,-4,75,-23,75,14v0,17,-23,17,-36,10v-17,0,-29,6,-47,6v-13,19,1,55,-27,59v-21,-3,-17,-35,-10,-52r-38,5v-10,34,-20,52,-30,52v-23,0,-13,-34,-5,-51v-23,-2,-57,8,-60,-14v6,-25,41,-20,69,-18r11,-38v-24,3,-91,16,-71,-17v20,-9,50,-12,76,-15v18,-15,13,-57,44,-60v27,5,1,40,-4,56r41,-5v12,-27,3,-77,35,-83","w":286},"$":{"d":"121,-82v14,-3,14,-17,2,-23xm95,-181v-16,4,-35,12,-14,19r11,6xm108,-272v35,-16,34,29,26,52v20,1,51,-13,51,15v0,25,-31,17,-53,18v-2,17,-5,32,-5,50v18,14,43,14,41,47v-2,28,-28,35,-50,44v-2,26,-7,53,-1,77v-6,18,-40,14,-39,-11r3,-51v-26,2,-67,24,-80,-3v2,-38,58,-19,83,-36r5,-52v-24,-13,-61,-17,-62,-52v8,-26,42,-34,71,-40v3,-21,-8,-50,10,-58","w":197},"%":{"d":"176,-42v20,3,41,-10,34,-29r-19,-10v-12,5,-16,20,-15,39xm68,-157v16,-7,26,-29,16,-54v-22,1,-31,23,-32,46v2,5,10,8,16,8xm139,-47v0,-33,18,-59,47,-64v53,-9,83,62,34,86v-12,10,-25,14,-45,15v-25,2,-36,-19,-36,-37xm163,-233v16,3,45,-4,44,14v0,6,-4,11,-11,15v-36,62,-77,116,-104,185v-5,11,-38,21,-33,-4v14,-78,63,-119,96,-181v-11,-2,-21,-4,-35,-3v6,45,-24,80,-67,80v-24,0,-33,-17,-34,-41v7,-43,28,-76,76,-79v6,0,12,4,19,10v16,0,32,5,49,4"},"&":{"d":"141,-230v-26,5,-22,48,-13,70v14,-11,29,-26,29,-47v0,-12,-5,-22,-16,-23xm74,-55v0,42,63,34,83,15v-19,-18,-37,-44,-50,-67v-17,11,-32,25,-33,52xm183,-130v13,-38,61,4,108,-14v9,0,14,4,14,11v3,29,-38,16,-48,32v-12,20,-25,41,-41,57v15,10,39,17,58,8v6,0,11,7,10,15v-8,44,-79,29,-101,6v-48,45,-182,34,-149,-63v10,-28,34,-44,56,-61v2,-17,-10,-31,-9,-54v2,-43,24,-69,64,-71v60,-3,59,86,22,112v-13,9,-33,22,-17,42v13,17,26,34,40,47v10,-12,22,-28,27,-44v-17,-2,-34,-4,-34,-23","w":332},"'":{"d":"57,-260v40,14,-8,56,-1,95v-1,18,0,37,-19,36v-29,-2,-19,-43,-14,-67v4,-25,11,-58,34,-64","w":83},"(":{"d":"101,55v17,12,11,37,-13,34v-84,-27,-98,-185,-55,-268v20,-38,47,-75,84,-95v23,-12,37,16,15,29v-83,49,-124,229,-31,300","w":144,"k":{"j":-86}},")":{"d":"13,-242v-17,-8,-20,-37,7,-37v84,44,127,220,62,313v-17,14,-20,48,-46,55v-53,-16,18,-58,22,-90v43,-80,1,-196,-45,-241","w":130},"*":{"d":"133,-120v-24,-2,-32,-42,-47,-46v-9,16,-20,49,-38,55v-39,-11,1,-49,11,-63v-25,3,-71,16,-49,-18v13,-7,35,-7,54,-8v-10,-14,-40,-43,-12,-51v8,0,20,11,36,32v15,-14,21,-37,43,-43v35,5,-1,35,-6,47r-6,5v23,-2,60,-17,63,11v-4,20,-42,11,-66,16v11,16,25,29,34,47v0,9,-7,17,-17,16","w":185,"k":{"\u00c1":47,"\u00c2":47,"\u00c3":47,"\u00c0":47,"\u00c6":47,"\u00c5":47,"\u00c4":47,"J":50,"A":47}},"+":{"d":"187,-109v13,14,4,32,-22,28v-16,-3,-33,-2,-51,-2v-10,20,12,70,-20,69v-32,0,-12,-42,-13,-69v-25,-2,-68,12,-68,-14v0,-28,45,-10,71,-16v4,-26,-14,-72,17,-77v28,4,10,52,14,76v23,2,55,-3,72,5","w":205},",":{"d":"64,-46v-1,-24,34,-18,40,-5v25,54,-21,89,-72,95v-11,1,-16,-14,-8,-21v33,-5,58,-34,40,-69","w":123,"k":{"9":94,"7":72,"2":-36,"0":-25}},"-":{"d":"64,-121v51,7,119,-20,134,20v-14,37,-89,0,-148,13v-8,-2,-15,-5,-15,-15v0,-13,16,-16,29,-18","w":230},".":{"d":"17,-44v8,-21,67,-17,51,16v-5,20,-57,39,-51,-2r0,-14","w":90,"k":{"9":94,"7":72,"2":-36,"0":-25}},"\/":{"d":"29,9v-9,23,-44,11,-34,-11v41,-86,97,-150,145,-228v13,-21,39,-69,65,-34v-9,53,-55,90,-82,131","w":207},"0":{"d":"63,-126v-27,40,-17,112,41,89v48,-19,93,-45,112,-94v-1,-30,-14,-48,-32,-61v-20,6,-48,-15,-68,8v-21,16,-38,35,-53,58xm179,-30v-48,36,-184,61,-177,-35v6,-90,60,-148,133,-169v96,-28,164,97,90,166v-14,13,-30,26,-46,38","k":{".":22,",":43}},"1":{"d":"237,-71v24,42,-45,36,-78,48v7,18,-24,25,-38,15v-22,-15,-83,38,-95,-7v10,-28,58,-20,85,-33r20,-142v-24,11,-43,30,-77,32v-28,-8,-9,-31,8,-34r97,-51v13,-2,20,16,20,26v-15,46,-25,102,-26,161v28,-5,51,-15,84,-15"},"2":{"d":"213,-42v19,-5,40,-7,43,12v-24,67,-157,-25,-212,44v-28,17,-47,-18,-26,-40v49,-52,134,-66,154,-144v-9,-58,-83,-16,-96,10v-20,15,-51,-11,-32,-31v33,-19,55,-48,106,-48v59,0,88,76,45,117v-25,34,-60,61,-100,80v36,-7,81,-5,118,0"},"3":{"d":"136,-146v57,-12,123,14,98,74v-24,57,-128,94,-202,64v-22,-9,-7,-53,20,-40v45,23,137,11,143,-42v3,-26,-31,-26,-55,-26v-20,0,-38,5,-53,13v-40,-4,-11,-36,3,-45v25,-16,47,-38,75,-52r-97,16v-33,7,-52,-45,-17,-48v35,17,94,3,140,1v38,-2,30,38,7,46v-20,13,-44,23,-62,39","k":{".":36,",":36}},"4":{"d":"69,-111r80,-11r16,-69xm142,-86v-52,-7,-99,33,-132,-3v46,-66,115,-110,177,-158v35,-15,28,21,19,44v-10,25,-13,53,-18,82v29,3,71,-8,70,27v-10,30,-45,1,-76,6v-4,24,-8,61,5,78v-1,14,-12,24,-28,22v-38,-6,-19,-63,-17,-98"},"5":{"d":"95,-208v30,-36,112,-6,154,-27v12,4,28,5,30,18v-13,50,-100,15,-154,30v-11,11,-19,22,-27,35v53,13,140,13,118,91v-21,40,-60,65,-119,65v-34,0,-64,-9,-75,-35v0,-14,9,-21,27,-21v19,0,29,20,53,17v34,-4,89,-19,69,-56v-19,-36,-109,-5,-122,-48v8,-23,32,-52,46,-69"},"6":{"d":"194,-69v18,-15,8,-31,-16,-31v-45,0,-64,21,-66,63v39,5,60,-15,82,-32xm186,-135v54,0,74,65,31,94v-31,21,-56,41,-110,41v-88,0,-99,-100,-51,-152v29,-31,51,-75,101,-84v23,-4,34,35,6,38v-54,21,-89,63,-97,127v-1,12,5,19,12,23v5,-62,40,-87,108,-87"},"7":{"d":"150,-73v-22,21,-7,71,-42,78v-15,-2,-22,-13,-23,-28v22,-65,60,-128,101,-174r-140,6v-27,-3,-17,-38,4,-39r126,1v28,-6,86,-8,57,28v-32,39,-61,79,-83,128","k":{".":72,",":72}},"8":{"d":"200,-190v6,-14,23,-7,24,7v-6,38,-40,50,-63,70v41,9,76,86,18,104v-46,27,-164,13,-126,-54v11,-19,32,-32,50,-44v-35,-10,-73,-57,-33,-90v31,-25,101,-54,128,-7v1,3,2,9,2,14xm88,-41v23,28,119,-1,67,-37v-7,-6,-13,-11,-21,-14v-17,13,-40,27,-46,51xm159,-150v28,-16,5,-59,-25,-44v-29,7,-58,36,-20,53r20,13","k":{".":29,",":29}},"9":{"d":"104,-117v44,-6,76,-28,84,-70v-5,-11,-22,-11,-36,-9v-33,7,-57,29,-67,59v-1,11,7,21,19,20xm107,-217v38,-26,114,-22,124,26v-16,54,-38,95,-45,162v5,40,-37,36,-41,9v-5,-33,15,-60,20,-88v-33,25,-122,41,-122,-23v0,-46,32,-64,64,-86","k":{".":43,",":43}},":":{"d":"30,-155v2,-29,46,-34,54,-7v2,23,-13,32,-33,34v-10,1,-21,-18,-21,-27xm27,-40v4,-25,53,-25,53,4v0,26,-45,49,-52,16","w":107},";":{"d":"83,-171v19,20,-13,50,-36,37v-22,-12,-2,-62,24,-43v7,3,11,5,12,6xm-1,20v36,-4,57,-34,40,-69v-1,-22,34,-21,40,-5v20,55,-22,90,-72,96v-13,1,-15,-15,-8,-22","w":118},"<":{"d":"65,-115v30,19,67,35,98,48v22,8,13,38,-8,39r-126,-66v-36,-33,33,-59,50,-84v27,-14,46,-57,83,-47v15,25,-18,41,-34,55","w":193},"=":{"d":"53,-97v56,0,129,-18,147,21v-7,39,-67,4,-115,16v-29,1,-60,5,-60,-22v0,-12,16,-15,28,-15xm73,-181v48,10,134,-26,120,35v-18,14,-50,-2,-83,1r-75,5v-9,-2,-13,-7,-13,-18v0,-21,29,-22,51,-23","w":225},">":{"d":"25,-209v22,-35,60,23,89,32r70,41v19,30,-30,43,-47,60r-56,59v-21,13,-48,-18,-21,-32v22,-22,42,-45,67,-64v18,-14,-10,-21,-22,-29v-29,-19,-72,-27,-80,-67","w":206},"?":{"d":"25,-15v2,-28,55,-33,61,-4v0,30,-60,39,-61,4xm144,-220v-39,-33,-56,19,-85,19v-11,0,-16,-5,-16,-15v10,-38,45,-54,97,-51v58,4,64,104,19,128v-19,11,-41,19,-64,26v-5,23,-10,58,-43,45v-21,-57,37,-86,84,-99v15,-8,15,-36,8,-53","w":185},"@":{"d":"167,-158v-25,6,-37,32,-45,54v0,7,5,8,12,7v17,-2,38,-11,31,-36v-2,-11,13,-20,2,-25xm278,-153v5,55,-55,101,-100,69v-16,8,-33,21,-55,21v-50,0,-45,-67,-16,-92v12,-28,74,-56,91,-14v40,0,3,36,8,60v61,-5,35,-93,3,-110v-7,-7,-18,-13,-31,-14v-77,13,-117,68,-126,149v7,42,45,60,91,60v49,0,82,-21,114,-40v29,5,12,37,-5,43v-82,51,-270,32,-230,-97v24,-76,63,-145,154,-145v64,0,97,50,102,110","w":296},"A":{"d":"123,-95v33,-2,56,-12,84,-18r-26,-70v-21,29,-39,56,-58,88xm210,-244v0,60,34,97,45,149v6,28,31,56,39,79v-1,12,-8,22,-22,21v-32,-11,-39,-52,-52,-81r-121,24v-18,21,-29,57,-63,62v-26,4,-49,-30,-14,-33r131,-190v14,-34,26,-51,36,-51v15,-1,22,5,21,20","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"B":{"d":"204,-154v63,8,74,94,26,130v-21,25,-53,37,-96,42v-45,5,-56,-54,-8,-49v46,21,88,-17,95,-60v-4,-38,-61,-39,-90,-24v-25,1,-24,-35,-6,-42v8,-3,16,-5,28,-4v18,-14,44,-25,53,-49v-24,-27,-122,-11,-114,42r-8,129v7,36,-45,46,-47,11v-4,-55,19,-116,12,-168v-2,-17,11,-36,21,-39v48,-8,69,-31,123,-27v30,2,52,19,52,50v0,27,-22,40,-41,58","w":271},"C":{"d":"257,-96v15,-8,36,-49,47,-18v-31,64,-99,99,-168,124v-107,40,-142,-88,-86,-168v35,-50,77,-94,148,-105v31,-5,45,16,51,40v-8,23,-17,48,-43,52v-36,-4,-14,-41,2,-53v-82,7,-144,75,-144,162v0,80,115,23,147,-1v15,-11,33,-22,46,-33","w":265,"k":{"\u00dd":-22,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00ab":-54,"\u00c6":7,"\u00c7":29,"\u00c5":7,"\u00c4":7,"}":-36,"]":-36,"Y":-22,"V":-22,"Q":22,"G":27,"C":29,"A":7,"?":-36,")":-36}},"D":{"d":"88,-56v72,-20,178,-37,164,-122v-21,-36,-92,-33,-143,-27v-6,49,-24,95,-21,149xm76,-248v98,0,217,-11,223,90v-16,94,-128,114,-205,149v-45,21,-61,-26,-50,-73v9,-40,18,-83,20,-124v-22,-8,-10,-42,12,-42","w":312,"k":{"\u00ff":29,"\u00fd":29,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00c6":36,"\u00c5":36,"\u00c4":36,"y":29,"x":29,"w":22,"v":14,"t":-50,"s":14,"n":14,"m":14,"f":14,"d":14,"J":58,"A":36,".":58,",":58}},"E":{"d":"96,-251v69,26,152,-36,182,6v-21,48,-110,30,-182,36v-2,20,-1,43,-5,61v45,2,91,-2,125,-12v19,-2,21,31,6,37v-36,14,-95,5,-136,15r-13,68v56,-7,119,-7,168,-21v20,1,25,32,6,37v-61,17,-137,14,-195,31v-61,-24,5,-119,-1,-186v-4,-39,2,-75,45,-72","w":270,"k":{"\u00ec":-11,"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22}},"F":{"d":"52,-209v-15,-29,12,-49,39,-38v38,-5,73,-15,114,-16v28,-1,32,35,6,40v-38,7,-84,3,-115,16v-7,25,-14,51,-13,83v37,-6,70,-19,109,-21v18,-1,13,25,4,31v-32,17,-88,14,-118,32v-7,21,0,57,-5,83v-5,25,-45,13,-45,-11v1,-73,16,-132,24,-199","w":209,"k":{"\u00ec":-16,"\u00ef":-16,"\u00ee":-16,"\u00ed":-16,"\u00dd":-29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"}":-43,"t":-29,"]":-43,"Y":-29,"W":-18,"V":-29,"T":-29,"S":-23,"J":14,"A":29,".":27,",":27,")":-43}},"G":{"d":"270,-109v-14,35,-35,65,-39,109v10,15,-1,35,-21,34v-39,-2,-12,-58,-5,-76v-28,19,-54,38,-102,38v-67,0,-107,-52,-74,-114v41,-79,108,-142,222,-151v33,-3,50,52,12,53v-85,-34,-162,45,-193,113v-4,9,-4,21,-4,33v1,21,21,26,42,27v52,-8,112,-23,110,-78v8,-22,49,-7,52,12","w":289,"k":{"}":-22,"]":-22,"V":-29,"T":-22,")":-22}},"H":{"d":"84,-101v-13,35,5,104,-35,112v-48,-23,2,-96,-2,-149r13,-110v8,-29,49,-16,44,11v2,34,-17,66,-11,97v42,-5,97,3,129,-12v6,-36,15,-71,15,-114v0,-22,46,-27,46,-1v0,81,-29,156,-26,250v1,29,-49,35,-49,4v0,-31,12,-60,10,-94v-31,-6,-98,4,-134,6","w":296},"I":{"d":"22,-24v0,-79,23,-150,32,-215v3,-8,9,-19,19,-20v39,4,25,56,14,80r-17,146v10,18,-7,34,-25,35v-16,1,-23,-13,-23,-26","w":111,"k":{"z":14,"w":22,"v":29}},"J":{"d":"176,-262v32,2,24,47,26,76v6,102,-16,187,-106,187v-38,0,-79,-4,-88,-35v8,-41,52,-3,83,-3v81,0,62,-122,62,-208v0,-11,14,-15,23,-17","w":220,"k":{"\u00c1":22,"\u00c2":22,"\u00c3":22,"\u00c0":22,"\u00f8":-7,"\u00c6":22,"\u00c5":22,"\u00c4":22,"}":-54,"w":14,"v":14,"t":-14,"s":7,"o":-7,"m":7,"]":-54,"V":-14,"A":22,".":18,",":18,")":-54}},"K":{"d":"214,-74v25,19,66,-11,66,23v0,17,-13,25,-30,25v-59,0,-100,-47,-162,-55v-8,28,2,52,8,73v-2,13,-14,16,-27,20v-57,-42,-14,-164,-23,-253v-3,-25,42,-25,45,-4v-5,38,-5,77,-6,120v62,-29,91,-93,141,-131v30,-5,29,42,8,50v-39,31,-62,74,-109,97","w":281,"k":{"\u00dd":14,"x":14,"v":22,"t":-14,"g":-14,"d":-14,"Y":14,"X":-29,"T":22,"J":-43}},"L":{"d":"78,-27v41,1,85,-26,135,-23v30,-5,33,29,11,37v-60,2,-111,20,-163,27v-39,5,-26,-43,-22,-72r24,-158v0,-23,4,-42,28,-41v51,20,-2,107,-2,156v0,25,-11,46,-11,74","w":243,"k":{"\u00e7":-14,"\u00dd":22,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00c1":-7,"\u00c2":-7,"\u00c3":-7,"\u00c0":-7,"\u00c6":-7,"\u00dc":-14,"\u00c5":-7,"\u00c4":-7,"v":11,"s":-7,"l":14,"d":-14,"c":-14,"Y":22,"V":14,"U":-14,"T":29,"Q":-7,"J":-29,"A":-7}},"M":{"d":"295,-268v8,-21,37,-10,40,8r1,-1v-12,20,-12,49,-14,80v-3,44,-13,92,-8,143v-4,23,30,26,8,47v-5,3,-11,9,-19,8v-66,-25,-19,-146,-16,-214r-86,118v-62,55,-86,-60,-106,-114v-10,54,-29,101,-26,168v1,25,-48,32,-48,4v0,-84,35,-149,50,-219v14,-23,60,-4,60,19v10,43,23,79,45,111r62,-83","w":361,"k":{"t":-14}},"N":{"d":"77,-37v-2,24,-4,48,-26,52v-52,-18,2,-101,2,-147v0,-30,12,-56,12,-88v0,-30,41,-34,48,-5v16,66,60,117,95,167v20,-66,20,-149,39,-215v25,-22,45,3,37,38r-27,120r-12,97v4,28,-38,31,-49,12v-17,-32,-39,-58,-59,-89v-13,-20,-27,-43,-41,-68v-9,37,-15,86,-19,126","w":301},"O":{"d":"195,-74v42,-36,65,-161,-26,-148v-69,10,-99,73,-107,145v-7,65,84,55,114,22v6,-7,12,-13,19,-19xm195,-21v-58,52,-183,40,-177,-54v6,-83,47,-147,110,-173v78,-33,172,14,148,111v-12,49,-49,87,-81,116","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"P":{"d":"116,-222v14,31,-18,61,-14,104v54,-24,117,-39,137,-98v-27,-19,-85,-11,-123,-6xm48,-239v60,-26,212,-49,231,25v-17,72,-87,94,-145,124v-12,6,-24,8,-35,12r3,80v1,13,-8,19,-20,19v-17,0,-26,-28,-26,-85v0,-51,9,-109,27,-149v-18,9,-57,17,-45,-17v2,-4,6,-6,10,-9","w":281,"k":{"\u00f5":18,"\u00f2":18,"\u00f6":18,"\u00f4":18,"\u00f3":18,"\u00e8":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e7":22,"\u00e3":9,"\u00e5":9,"\u00e0":9,"\u00e4":9,"\u00e2":9,"\u00e1":9,"\u00dd":-36,"\u00c1":40,"\u00c2":40,"\u00c3":40,"\u00c0":40,"\u00f8":18,"\u00e6":9,"\u00c5":40,"\u00c4":40,"t":-18,"q":22,"o":18,"g":22,"e":-4,"d":5,"c":22,"a":9,"Y":-36,"W":-23,"V":-29,"J":54,"G":5,"A":40,".":65,",":65,"\u00c6":50}},"Q":{"d":"171,-7v-63,19,-159,10,-154,-66v7,-96,65,-154,138,-187v30,-13,58,3,64,29v29,24,63,55,63,104v0,53,-41,79,-76,102v16,20,35,39,44,66v-2,16,-33,22,-41,8v-12,-20,-25,-39,-38,-56xm242,-127v-7,-46,-37,-80,-72,-97v-3,0,-7,1,-10,1v-54,26,-93,75,-99,147v-4,43,44,48,84,39v-7,-10,-20,-16,-24,-29v1,-15,15,-22,30,-22v20,0,19,28,35,34v30,-10,49,-39,56,-73","w":299,"k":{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c6":14,"\u00c5":14,"\u00c4":14,"A":14}},"R":{"d":"265,-181v0,42,-42,61,-72,79r129,91v-72,65,-111,-78,-197,-71v-21,-15,-6,-45,21,-40v32,-15,66,-25,78,-59v-10,-45,-78,-42,-121,-32v25,63,-28,142,2,204v-16,26,-64,12,-53,-29v2,-56,22,-103,13,-164v-14,4,-33,5,-30,-14v15,-31,72,-38,116,-38v58,0,114,18,114,73","w":315,"k":{"z":-14,"w":14,"v":14,"J":-29,";":-86,":":-86,".":-86,",":-86}},"S":{"d":"55,-179v17,68,161,29,145,121v-29,47,-79,74,-148,74v-18,0,-43,-5,-48,-22v2,-10,5,-22,14,-24v53,17,123,0,142,-42v-41,-37,-144,-28,-147,-109v14,-54,75,-74,140,-74v40,0,74,28,50,62v-4,4,-12,6,-26,6v3,-29,-16,-35,-44,-32v-34,4,-67,12,-78,40","w":220,"k":{"t":-29}},"T":{"d":"63,-226r187,-25v27,-5,44,38,12,38v-37,0,-77,-2,-103,11v-11,51,-19,127,-12,183v3,29,-37,29,-42,5v-12,-55,4,-125,9,-180v-29,1,-58,8,-91,7v-12,-1,-23,-8,-19,-22v5,-19,36,-14,59,-17","w":252,"k":{"\u00ec":-36,"\u00ef":-36,"\u00ee":-36,"\u00ed":-36,"\u00dd":-65,"\u00c1":65,"\u00c2":65,"\u00c3":65,"\u00c0":65,"\u00c6":65,"\u00c5":65,"\u00c4":65,"}":-36,"e":22,"]":-36,"Y":-65,"W":-43,"V":-36,"Q":11,"J":65,"A":65,".":43,",":43,")":-36}},"U":{"d":"95,-244v-13,65,-57,199,30,209v109,12,74,-123,100,-207v4,-10,10,-17,23,-17v42,13,5,80,6,121v2,87,-41,141,-128,141v-121,0,-100,-156,-75,-251v4,-11,11,-21,25,-21v10,2,18,14,19,25","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"V":{"d":"227,-223v3,-26,38,-34,38,-3v0,83,-99,151,-120,228v-61,3,-56,-67,-81,-103v-19,-51,-45,-96,-59,-152v22,-34,49,8,52,30r71,178v35,-58,72,-111,99,-178","k":{"\u00ff":29,"\u00fd":29,"\u00e7":22,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":54,"\u00c2":54,"\u00d5":7,"\u00c3":54,"\u00c0":54,"\u00f8":14,"\u00e6":22,"\u00d8":7,"\u00c6":54,"\u00d6":7,"\u00c7":13,"\u00c5":54,"\u00c4":54,"}":-29,"y":29,"u":36,"s":14,"r":29,"q":29,"p":22,"o":14,"n":29,"m":29,"i":14,"e":22,"d":22,"c":22,"a":22,"]":-29,"W":-14,"V":-29,"Q":7,"O":7,"J":52,"G":9,"C":13,"A":54,")":-29}},"W":{"d":"323,-269v2,-25,42,-15,39,8v-9,103,-45,181,-80,254v-22,17,-43,-5,-51,-25r-41,-100r-66,128v-24,48,-50,0,-57,-29r-47,-197v-1,-20,26,-25,34,-6v24,55,33,132,50,194v30,-45,47,-92,72,-142v42,-26,48,53,64,82v14,26,14,36,24,54v31,-61,51,-135,59,-221","w":364,"k":{"\u00ff":29,"\u00fd":29,"\u00e7":22,"\u00c1":22,"\u00c2":22,"\u00c3":22,"\u00c0":22,"\u00e6":22,"\u00c6":22,"\u00c5":22,"\u00c4":22,"z":36,"y":29,"x":36,"w":43,"v":36,"u":22,"t":-14,"n":14,"m":29,"i":29,"g":29,"e":29,"c":22,"a":22,"A":22}},"X":{"d":"252,-240v-3,20,-33,13,-41,35v-21,29,-46,44,-67,69v33,37,62,82,112,102v11,15,-6,34,-25,34v-40,-11,-89,-74,-113,-109r-97,114v-15,8,-22,-13,-23,-27v13,-51,70,-79,99,-117v-15,-29,-45,-67,-50,-97v-3,-19,19,-41,33,-23r46,93r67,-71v9,-9,20,-25,38,-27v16,-1,23,9,21,24","w":264,"k":{"J":-18}},"Y":{"d":"213,-289v2,-18,44,-21,42,4v-27,59,-78,97,-106,154r-7,125v-2,10,-13,17,-25,16v-36,-4,-15,-60,-15,-91v0,-19,6,-39,2,-56v-26,-17,-47,-44,-63,-66v-11,-14,-25,-23,-32,-39v5,-19,35,-23,49,-7v22,26,45,59,72,78v26,-42,57,-80,83,-118","w":245,"k":{"\u00ff":58,"\u00fd":58,"\u00e7":65,"\u00d2":20,"\u00d4":20,"\u00d3":20,"\u00c1":50,"\u00c2":50,"\u00d5":20,"\u00c3":50,"\u00c0":50,"\u00f8":43,"\u00e6":36,"\u00d8":20,"\u00c6":50,"\u00d6":20,"\u00c7":32,"\u00c5":50,"\u00c4":50,"}":-29,"z":58,"y":58,"x":43,"w":43,"v":72,"u":58,"s":43,"r":58,"q":29,"p":29,"o":43,"n":58,"m":36,"g":43,"f":43,"e":65,"d":65,"c":65,"a":36,"]":-29,"W":-14,"V":-22,"Q":20,"O":20,"J":50,"G":32,"C":32,"B":18,"A":50,")":-29}},"Z":{"d":"259,-81v25,-2,65,-14,67,14v-12,28,-71,15,-107,29r-106,15v-34,-3,-50,14,-76,20v-43,-31,30,-60,49,-83v49,-36,79,-87,123,-124r-103,15v-31,-3,-81,1,-72,-34v9,-37,56,8,96,-7v41,-1,76,-10,114,-10v26,0,30,29,10,39r-143,151v52,-5,97,-22,148,-25","w":305},"[":{"d":"31,-249v2,-34,50,-24,85,-24v23,0,35,7,35,22v0,27,-51,13,-72,19v5,89,-12,189,-10,281v20,6,60,-18,61,14v1,31,-37,19,-60,28v-15,6,-43,7,-42,-15r13,-272v0,-20,-7,-36,-10,-53","w":146,"k":{"j":-86}},"\\":{"d":"1,-266v5,-21,40,-23,46,-1r65,113v26,60,68,108,83,177v-2,14,-31,21,-38,7r-93,-187v-21,-38,-49,-67,-63,-109","w":197},"]":{"d":"38,-276v46,2,126,-25,94,43r-23,156r-1,142v-7,35,-59,9,-96,20v-10,0,-17,-5,-20,-13v-3,-39,42,-24,76,-31v1,-102,4,-202,27,-282v-31,-2,-67,22,-81,-8v2,-13,11,-25,24,-27","w":150},"^":{"d":"18,-132v32,-33,43,-85,88,-107v24,4,23,32,40,46v19,25,43,46,54,79v-2,20,-26,25,-36,7v-17,-31,-41,-57,-60,-83v-21,24,-38,50,-52,77v-6,21,-41,22,-42,-4v0,-4,2,-9,8,-15","w":207},"_":{"d":"0,14v55,4,139,-18,160,13v-10,22,-72,-3,-112,10v-20,-4,-57,8,-59,-13v0,-6,5,-10,11,-10","w":150},"`":{"d":"7,-247v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":113},"a":{"d":"54,-35v44,-14,74,-50,78,-105v-40,-21,-80,47,-85,97v0,4,2,8,7,8xm270,-122v9,-9,30,-9,21,9v-22,46,-60,78,-119,88v-21,-2,-34,-17,-39,-35v-21,28,-45,55,-89,60v-79,-50,9,-200,103,-177v51,12,-17,99,32,114v44,-4,67,-34,91,-59","w":236,"k":{".":-36,",":-36}},"b":{"d":"291,-141v25,6,3,35,-9,40v-42,37,-104,56,-144,97v-11,12,-23,24,-45,24v-11,0,-22,-2,-22,-13v23,-51,130,-63,97,-143v-44,-6,-69,53,-89,88v-3,20,-3,44,-24,46v-42,-14,-9,-113,-9,-165v0,-30,6,-59,14,-87v3,-9,7,-24,19,-24v16,1,25,8,23,24v-6,39,-20,81,-22,126r-3,24v20,-33,41,-70,86,-70v41,0,66,53,41,86v31,-17,56,-39,87,-53","w":244,"k":{".":-22,",":-22}},"c":{"d":"75,-34v82,-3,105,-72,167,-97v25,29,-38,54,-55,78v-31,26,-62,54,-116,54v-88,0,-51,-134,-9,-164v13,-18,48,-35,61,-5v5,11,14,24,11,37v-2,8,-4,17,-14,17v-16,-1,-20,-20,-25,-32v-25,17,-38,50,-41,89v-1,11,12,23,21,23","w":188,"k":{".":-14,",":-14}},"d":{"d":"139,-112v-14,-10,3,-60,-29,-41v-26,26,-55,65,-61,107v-3,22,18,5,26,1v28,-18,49,-43,64,-67xm295,-131v7,-6,14,0,13,10v-18,45,-57,73,-96,97v-41,13,-51,-32,-54,-69v-27,43,-57,90,-121,93v-46,-8,-22,-77,-7,-102v22,-39,41,-86,101,-87v18,0,25,15,28,31v11,-33,0,-92,21,-116v12,-7,32,-1,34,11v-9,62,-30,125,-20,196v32,16,59,-31,85,-48v6,-5,11,-11,16,-16","w":254,"k":{"\u00bb":-43,".":-43,",":-43}},"e":{"d":"63,-94v20,-16,58,-38,44,-72v-28,8,-37,41,-44,72xm216,-110v6,-13,46,-28,27,0v-35,50,-78,105,-154,105v-42,0,-65,-23,-63,-68v3,-65,24,-115,83,-126v24,1,35,18,35,43v0,46,-48,69,-78,94v13,42,81,10,101,-6v17,-14,33,-27,49,-42","w":189,"k":{".":-43,",":-43}},"f":{"d":"94,-137v29,10,73,-1,103,-3v6,0,9,2,9,7v-15,33,-70,28,-115,33v-17,71,0,180,-76,192v-28,5,-30,-35,-7,-39v38,5,25,-63,38,-100v0,-22,11,-51,-5,-62v-7,-18,26,-30,21,-59v7,-50,21,-96,69,-101v51,-5,44,78,5,87r-3,0v6,-17,9,-47,-4,-58v-25,19,-32,61,-35,103","w":143,"k":{"\u00ec":-58,"\u00ef":-58,"\u00ee":-58,"\u00ed":-58,"\u00ab":-58,"}":-94,"]":-94,"?":-29,"*":-115,")":-94}},"g":{"d":"58,-54v45,-8,80,-48,67,-104v-1,-1,-4,-1,-7,-1v-30,24,-58,54,-66,100v0,3,2,5,6,5xm165,-161v-16,98,8,233,-90,248v-43,-5,-77,-26,-88,-61v-1,-5,3,-10,8,-9v27,18,84,64,108,14v12,-25,13,-58,16,-91v-21,20,-44,40,-81,43v-68,-49,20,-173,90,-173v20,0,36,9,37,29","w":175},"h":{"d":"220,-57v58,2,80,-61,122,-65r1,6v-25,47,-63,89,-127,95v-51,5,-39,-59,-52,-95v-46,27,-73,85,-102,129v-13,12,-34,3,-32,-21r20,-220v-4,-31,40,-59,46,-20r-26,192v29,-37,52,-97,113,-102v34,12,11,76,37,101","w":286,"k":{"\u00bb":-58,";":-58,":":-58,".":-58,",":-58}},"i":{"d":"86,-275v15,0,24,3,26,18v3,31,-45,40,-56,17v2,-18,14,-31,30,-35xm209,-125v19,0,10,26,1,37v-33,36,-60,81,-119,91v-51,-2,-59,-54,-57,-104v1,-33,7,-65,38,-67v8,0,12,5,12,14v-1,23,-9,45,-8,69v1,23,1,57,28,47v44,-17,77,-53,105,-87","w":167,"k":{"\u00bb":-58,".":-50,",":-50}},"j":{"d":"71,-255v1,-24,50,-28,50,1v-4,22,-33,40,-45,11v-3,-5,-5,-6,-5,-12xm73,-176v37,9,-2,39,8,79v0,80,11,183,-65,183v-24,0,-47,-13,-55,-30v5,-21,34,5,50,0v46,-14,26,-95,28,-155v1,-41,2,-73,34,-77","w":109},"k":{"d":"271,-86v6,0,8,5,9,10v-25,44,-101,110,-154,54r-38,-37v-9,10,-22,18,-22,37v0,19,-2,30,-21,29v-30,-1,-13,-43,-10,-66r21,-185v-3,-25,37,-34,42,-11v-2,59,-19,114,-26,169v34,-34,51,-86,102,-102v12,-1,17,7,17,17v-17,36,-57,55,-78,86v24,17,36,50,74,50v39,0,55,-37,84,-51","w":249,"k":{";":-29,":":-29,".":-43,",":-43}},"l":{"d":"183,-101v1,-7,21,-23,24,-6v-17,51,-53,89,-111,100v-105,-10,-50,-171,-36,-251v3,-17,34,-21,41,-3v-9,57,-22,109,-28,171v-5,55,50,55,75,24v13,-10,25,-23,35,-35","w":159,"k":{"\u00bb":-58,";":-58,":":-58,".":-79,",":-79}},"m":{"d":"187,-19v-42,1,-20,-73,-31,-102v-35,28,-49,83,-81,115v-60,11,-27,-83,-27,-135v0,-27,35,-43,41,-15v-1,37,-11,68,-16,99r55,-87v18,-26,63,-23,65,20r2,55v28,-27,47,-120,101,-87v16,23,-2,86,25,96v41,-14,61,-48,93,-70v9,46,-54,92,-104,105v-41,-4,-39,-54,-44,-96v-30,28,-36,86,-79,102","w":366},"n":{"d":"300,-113v7,-7,24,-31,33,-13v-20,51,-56,90,-108,105v-68,20,-54,-65,-75,-98v-41,19,-51,80,-97,99v-42,-17,-18,-127,7,-151v31,-11,24,27,18,51r-11,44v29,-29,40,-84,91,-84v34,0,38,30,40,62v2,24,11,51,38,36v24,-12,45,-32,64,-51","w":272,"k":{".":-79,",":-79}},"o":{"d":"106,-147v-24,24,-74,75,-41,110v45,-5,72,-30,74,-79v1,-22,-23,-20,-33,-31xm144,-172v17,32,92,37,130,18v9,46,-69,50,-105,33v9,72,-42,117,-115,117v-61,0,-41,-94,-13,-121v19,-28,60,-78,103,-47","w":208},"p":{"d":"291,-141v9,-6,19,3,13,13v-38,60,-127,74,-184,113v-23,16,-52,-19,-24,-33v42,-11,73,-33,75,-80v2,-35,-33,-12,-41,-1v-44,37,-72,89,-68,175v1,23,-3,41,-24,42v-41,-11,-12,-74,-10,-114r5,-100v-5,-37,40,-50,45,-16r-6,40v24,-36,44,-82,99,-82v49,0,49,82,16,103v36,-17,72,-40,104,-60","w":241},"q":{"d":"53,-65v20,30,64,-26,83,-41v5,-7,9,-18,10,-29v-13,-2,-8,-20,-9,-30v-40,15,-73,54,-84,100xm278,-125v15,-2,13,16,4,29v-46,68,-122,105,-159,179v-38,12,-33,-33,-22,-64r29,-84v-22,19,-45,43,-83,47v-64,-14,-9,-106,13,-130v23,-25,75,-75,112,-35v5,13,4,30,9,43r-39,140","w":233},"r":{"d":"161,-161v27,-4,57,23,29,37v-73,-6,-102,55,-118,115v-3,11,-9,19,-22,19v-41,-19,-8,-113,-6,-160v1,-22,32,-27,38,-6v-2,30,-8,56,-14,81v20,-40,42,-78,93,-86","w":184},"s":{"d":"155,-96v19,-8,41,-58,57,-31v-31,67,-99,100,-150,146v-14,13,-51,25,-60,1v1,-42,70,-24,68,-67v-11,-22,-35,-42,-35,-71v0,-37,26,-77,64,-64v13,25,-14,41,-27,54v2,29,25,46,33,68v19,-10,34,-24,50,-36","w":150},"t":{"d":"198,-160v15,-6,21,9,11,18v-26,22,-75,21,-116,27v-5,36,-20,73,-18,108v4,5,12,9,13,17v-13,31,-55,14,-53,-19v2,-36,12,-68,17,-100v-25,2,-58,8,-56,-22v6,-19,37,-11,61,-15v8,-14,10,-38,15,-56v6,-20,3,-52,29,-53v44,9,-4,72,0,104v35,1,68,-4,97,-9","w":134},"u":{"d":"42,-102v4,-25,-4,-63,25,-64v43,9,5,78,5,113v0,26,29,4,39,-4v36,-28,45,-82,72,-119v9,-13,29,-4,24,15v-7,33,-11,108,34,87v38,-18,59,-52,93,-72v15,46,-57,88,-97,108v-39,20,-63,-16,-65,-52v-23,40,-46,86,-103,86v-47,0,-33,-62,-27,-98","w":275},"v":{"d":"213,-129v27,4,45,-18,68,-13v0,36,-68,55,-106,37v-22,39,-37,85,-63,120v-13,9,-34,1,-31,-17v-7,-44,-44,-80,-44,-130v0,-17,7,-33,25,-33v40,0,6,64,31,95v6,12,11,25,14,40r41,-106v17,-27,43,4,65,7","w":209},"w":{"d":"80,-126v3,37,8,72,20,98v27,-42,24,-112,71,-132v36,15,13,98,49,127v23,-37,23,-100,54,-129v32,-12,41,35,88,19v14,2,29,-16,37,-7v-2,44,-76,51,-112,35v-23,35,-26,91,-51,121v-5,3,-10,5,-16,5v-43,-11,-47,-65,-60,-106v-18,37,-26,84,-54,111v-52,9,-55,-73,-65,-120v-6,-26,-9,-60,21,-58v17,1,17,21,18,36","w":322},"x":{"d":"295,-134v22,27,-33,64,-47,89v-18,19,-38,39,-73,39v-30,0,-46,-22,-66,-38v-25,19,-31,56,-47,83v-19,-1,-35,-8,-33,-28v4,-39,31,-52,54,-77v-15,-19,-38,-41,-40,-73v-2,-27,42,-33,44,-7v2,26,11,41,23,55v22,-17,32,-45,48,-68v24,-14,45,16,26,37r-48,54v18,15,45,35,75,18v29,-17,57,-70,84,-84","w":243},"y":{"d":"95,-158v0,32,-26,48,-26,81v1,11,3,22,12,24v54,-10,90,-41,86,-109v4,-11,8,-20,21,-20v42,8,10,82,12,126v-14,61,-21,144,-90,144v-37,0,-85,-16,-87,-53v2,-5,4,-12,12,-11v24,21,82,51,103,3v11,-25,18,-54,21,-88v-24,19,-51,39,-89,44v-67,-7,-31,-114,-11,-150v10,-11,36,-8,36,9","w":226},"z":{"d":"90,-33v30,-6,59,4,86,8v13,-1,35,-25,41,-3v-18,51,-85,24,-135,24v-19,0,-36,32,-55,12r-3,-14v37,-49,85,-79,121,-128v0,0,-101,29,-109,-13v2,-29,38,-8,59,-12v32,2,87,-23,95,12v-25,46,-66,77,-100,114","w":217},"{":{"d":"85,-54v0,59,-2,125,51,92v22,-1,24,12,16,25v-9,15,-29,19,-51,18v-61,-3,-52,-77,-56,-137v-1,-20,-16,0,-27,-1v-11,-1,-19,-8,-19,-19v9,-35,79,-25,59,-85v-19,-57,13,-106,63,-113v27,-4,36,35,10,41v-77,-14,4,113,-62,143v11,6,16,20,16,36","w":152,"k":{"j":-86}},"|":{"d":"59,-361v14,1,18,11,18,26r-3,463v8,38,-29,58,-39,26r4,-489v-2,-17,8,-23,20,-26","w":116},"}":{"d":"110,-220v0,41,-25,59,-24,102v11,15,60,-13,60,23v0,19,-27,24,-45,17v-10,19,10,62,10,92v0,52,-40,88,-89,65v-17,-15,2,-37,27,-32v19,4,20,-29,19,-53v-1,-28,-19,-69,4,-83v-51,-24,-1,-88,-1,-134v0,-30,-49,-18,-63,-5v-7,0,-12,-3,-12,-9v2,-30,27,-41,63,-41v32,0,51,23,51,58","w":145},"~":{"d":"252,-178v11,-1,18,8,16,19v-11,52,-97,98,-136,45v-18,-24,-62,-33,-71,3v-5,9,-15,29,-25,29v-28,1,-26,-43,-8,-54v19,-31,79,-55,110,-19v22,12,33,38,67,26v15,-14,20,-50,47,-49","w":280},"\u00c4":{"d":"123,-95v33,-2,56,-12,84,-18r-26,-70v-21,29,-39,56,-58,88xm210,-244v0,60,34,97,45,149v6,28,31,56,39,79v-1,12,-8,22,-22,21v-32,-11,-39,-52,-52,-81r-121,24v-18,21,-29,57,-63,62v-26,4,-49,-30,-14,-33r131,-190v14,-34,26,-51,36,-51v15,-1,22,5,21,20xm204,-311v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm134,-310v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00c5":{"d":"173,-295v-17,12,-1,27,14,28v6,0,7,-20,2,-21v-7,-1,-14,-2,-16,-7xm194,-108v-7,-33,-17,-64,-18,-102r-69,113xm282,-114v5,22,-15,25,-33,31v12,27,33,43,47,65v-2,13,-8,25,-23,23v-34,-5,-51,-47,-69,-80r-123,16v-21,21,-27,56,-61,64v-56,-26,23,-76,36,-104v32,-40,58,-87,90,-128v5,-6,7,-14,10,-20v-34,-12,-24,-66,7,-74v31,1,57,5,58,36v1,20,-3,37,-16,44r30,123v14,-4,41,-9,47,4","w":312,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00c7":{"d":"85,50v-36,16,-32,-21,-20,-40v-81,-28,-25,-174,15,-207v34,-28,67,-60,121,-66v31,-3,44,16,50,40v-8,19,-18,47,-43,47v-40,0,-10,-35,2,-48v-86,6,-138,78,-145,168v61,95,196,-42,246,-88v38,39,-50,77,-77,103v-40,24,-78,54,-137,55v-6,7,-6,14,6,14v18,4,23,18,21,41v-2,29,-42,41,-69,33v-12,-4,-23,-7,-25,-21v3,-29,76,17,62,-28","w":265,"k":{"\u00dd":-22,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c6":7,"\u00c7":29,"\u00c5":7,"\u00c4":7,"}":-36,"]":-36,"Y":-22,"V":-22,"Q":22,"G":27,"C":29,"A":7,"?":-36,")":-36,"\u00ab":40}},"\u00c9":{"d":"96,-251v69,26,152,-36,182,6v-21,48,-110,30,-182,36v-2,20,-1,43,-5,61v45,2,91,-2,125,-12v19,-2,21,31,6,37v-36,14,-95,5,-136,15r-13,68v56,-7,119,-7,168,-21v20,1,25,32,6,37v-61,17,-137,14,-195,31v-61,-24,5,-119,-1,-186v-4,-39,2,-75,45,-72xm149,-318v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":270,"k":{"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-4}},"\u00d1":{"d":"239,-353v30,9,-2,49,-15,55v-32,15,-46,-17,-68,-28v-20,3,-22,30,-43,33v-8,1,-13,-6,-13,-14v5,-34,61,-71,89,-32v5,7,12,10,19,15v15,-3,16,-27,31,-29xm77,-37v-2,24,-4,48,-26,52v-52,-18,2,-101,2,-147v0,-30,12,-56,12,-88v0,-30,41,-34,48,-5v16,66,60,117,95,167v20,-66,20,-149,39,-215v25,-22,45,3,37,38r-27,120r-12,97v4,28,-38,31,-49,12v-17,-32,-39,-58,-59,-89v-13,-20,-27,-43,-41,-68v-9,37,-15,86,-19,126","w":301},"\u00d6":{"d":"195,-74v42,-36,65,-161,-26,-148v-69,10,-99,73,-107,145v-7,65,84,55,114,22v6,-7,12,-13,19,-19xm195,-21v-58,52,-183,40,-177,-54v6,-83,47,-147,110,-173v78,-33,172,14,148,111v-12,49,-49,87,-81,116xm191,-309v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm121,-308v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00dc":{"d":"95,-244v-13,65,-57,199,30,209v109,12,74,-123,100,-207v4,-10,10,-17,23,-17v42,13,5,80,6,121v2,87,-41,141,-128,141v-121,0,-100,-156,-75,-251v4,-11,11,-21,25,-21v10,2,18,14,19,25xm182,-317v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm112,-316v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00b0":{"d":"90,-165v33,7,50,-38,26,-57v-10,4,-16,8,-30,4v-28,5,-26,55,4,53xm29,-188v0,-47,58,-79,107,-55v10,8,23,30,24,46v3,70,-131,86,-131,9","w":182},"\u00a2":{"d":"116,-95v12,-6,40,-24,47,-2v2,29,-33,23,-50,36v-7,22,4,63,-22,63v-29,0,-20,-38,-14,-59v-66,9,-77,-86,-29,-110v14,-11,30,-14,48,-19v0,0,0,1,1,-4v5,-23,-7,-59,24,-57v26,3,16,36,11,56v14,7,36,12,37,29v1,28,-34,15,-42,4xm92,-154v-29,4,-60,51,-23,67v25,-2,13,-42,23,-67","w":183},"\u00a3":{"d":"213,-61v14,1,19,11,19,25v0,31,-34,40,-62,44v-35,-4,-73,-23,-105,-34v-14,9,-25,17,-36,22v-40,-5,-12,-44,5,-52v20,-3,23,-26,34,-39v-22,0,-45,-1,-51,-17v-1,-34,37,-9,58,-19v-1,-62,22,-106,76,-111v28,-3,56,30,30,50v-18,7,-27,-7,-36,-14v-23,9,-32,37,-33,67v26,-3,69,-30,86,-2v-5,37,-64,18,-87,37v-3,22,-15,36,-26,50v33,8,62,26,98,27v17,-3,6,-38,30,-34","w":240},"\u00a7":{"d":"55,-186v-35,-14,-26,-77,10,-79v27,-8,69,-3,73,25v-2,13,-10,24,-24,24v-13,0,-11,-28,-27,-25v-43,8,-5,38,10,47v21,12,36,28,40,59v3,28,-47,39,-20,51v35,33,3,94,-52,88v-31,-4,-53,-15,-53,-48v7,-28,39,-11,39,10v11,20,60,2,44,-20v-22,-30,-81,-28,-81,-81v0,-29,23,-39,41,-51xm76,-108v18,2,37,-45,6,-53v-25,-6,-42,34,-17,46v4,3,8,4,11,7","w":150},"\u00b6":{"d":"22,-141v-28,-99,154,-144,201,-81v-1,11,-15,10,-13,25v-9,62,-22,147,0,206v-2,5,-12,11,-19,11v-33,-12,-30,-69,-29,-113v1,-43,12,-83,16,-123v-48,-1,-115,11,-122,56v2,13,30,43,38,26v2,-24,-6,-59,21,-58v26,1,9,40,12,65v12,-3,25,2,24,15v0,10,-6,13,-15,15v-21,7,-8,80,-7,113v-1,10,-10,16,-19,18v-30,-16,-22,-76,-21,-120v-23,-13,-59,-26,-67,-55","w":240},"\u00df":{"d":"73,-246v38,-39,124,-24,120,39v-2,39,-35,53,-68,64v43,3,68,27,68,73v0,43,-43,67,-88,71v-35,3,-53,-53,-16,-63v2,32,43,38,57,10v23,-30,-8,-71,-49,-66v-17,2,-18,-31,-5,-37v25,-12,58,-19,60,-55v2,-28,-36,-39,-50,-19v-53,77,-26,231,-84,306v-13,17,-59,10,-40,-16v73,-57,21,-232,95,-307","w":208},"\u00ae":{"d":"130,-229v1,-61,105,-32,134,-11v38,27,81,103,29,152v-46,44,-115,78,-202,70v-61,-5,-102,-80,-55,-133v20,-39,63,-54,94,-78xm57,-126v-31,91,96,86,157,55v34,-17,72,-32,72,-79v0,-52,-49,-77,-98,-86v16,12,36,24,16,46v-56,-41,-118,25,-147,64xm200,-130v17,11,44,9,49,29v-19,34,-61,-13,-85,-8v8,32,-30,48,-37,19r0,-54v1,-11,-12,-11,-10,-21v5,-22,36,-19,61,-19v24,0,38,16,44,35v-1,11,-12,16,-22,19xm188,-149v-2,-11,-22,-8,-29,-3r0,17v10,-6,16,-8,29,-14","w":336},"\u00a9":{"d":"140,-113v18,31,75,-4,89,-21v8,-5,22,1,17,11v-15,33,-56,53,-98,53v-27,0,-41,-18,-43,-42v5,-45,33,-79,77,-79v20,0,36,16,33,36v-2,13,-33,21,-35,4v0,-3,-1,-9,-5,-8v-18,9,-34,20,-35,46xm94,-165v-24,32,-59,123,15,119v82,-5,171,-39,197,-108v-19,-39,-76,-39,-126,-47v-7,0,-7,-12,-5,-18v9,-1,19,-6,7,-10v-45,4,-66,35,-88,64xm220,-223v62,3,148,40,108,105v-40,65,-125,95,-220,103v-112,10,-85,-133,-38,-184v27,-30,57,-57,108,-63v21,3,48,16,42,39","w":344},"\u00b4":{"d":"41,-220v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":133},"\u00a8":{"d":"74,-233v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm4,-232v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":126},"\u00c6":{"d":"121,-99v26,1,48,-3,68,-8r2,-102xm228,-156v50,12,88,-21,130,-9v4,4,5,10,5,18v-28,24,-87,24,-135,25v-4,46,5,88,58,76r69,-16v8,-14,37,-14,35,8v-19,42,-87,41,-140,48v-43,6,-58,-27,-61,-66v-28,6,-64,5,-95,9v-22,24,-40,55,-67,74v-16,11,-39,0,-41,-17v10,-24,38,-28,53,-50v42,-59,97,-114,128,-181v19,-42,77,-13,127,-18v30,-3,73,-28,84,8v-19,37,-93,29,-149,30","w":396,"k":{"\u00ec":-11,"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22}},"\u00d8":{"d":"86,-48r90,-175v-66,14,-104,60,-116,129v2,21,10,39,26,46xm125,-36v68,-17,143,-54,130,-127v-9,-18,-24,-32,-48,-34xm222,-226v63,1,99,76,62,128v-38,53,-92,89,-173,98v-24,18,-16,68,-57,70v-50,-17,25,-60,8,-83v-52,-25,-55,-119,-14,-163v34,-37,63,-80,130,-83v8,0,13,2,18,6v13,-21,25,-74,62,-50v2,32,-26,51,-36,77","w":306,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00b1":{"d":"23,-30v51,-5,154,-19,166,17v-15,34,-77,4,-128,14v-29,5,-67,-9,-38,-31xm122,-152v32,4,80,-12,66,26v-13,13,-43,2,-69,5v-1,28,8,68,-21,68v-29,0,-7,-42,-13,-68v-23,-1,-53,6,-71,-2v-3,-6,-5,-12,-5,-22v15,-13,49,-7,78,-9v8,-20,-12,-64,18,-64v34,0,17,39,17,66","w":205},"\u00a5":{"d":"198,-76v9,35,-45,22,-68,33v0,13,2,19,7,26v-7,27,-50,20,-45,-12v0,-4,-1,-6,-1,-9v-24,3,-65,20,-69,-12v5,-24,44,-12,68,-21r1,-24v-25,0,-71,17,-70,-16v1,-30,40,-9,65,-14v-19,-42,-64,-58,-77,-105v7,-32,47,-7,48,11v18,20,34,43,54,62v33,-30,53,-71,100,-85v14,1,21,19,9,30v-30,26,-67,46,-88,81v32,0,65,-31,73,9v-10,21,-53,16,-75,24v0,7,-2,16,0,22v22,-2,53,-18,68,0","w":232},"\u00aa":{"d":"56,-155v22,-17,33,-46,40,-79v-29,2,-40,42,-43,74v0,2,1,5,3,5xm141,-177v20,0,24,-34,44,-23v7,29,-24,56,-54,56v-17,0,-24,-14,-28,-28v-10,22,-25,49,-53,49v-21,0,-31,-15,-31,-36v0,-47,26,-98,78,-103v8,-1,12,4,19,7v35,0,-8,68,25,78","w":187},"\u00ba":{"d":"105,-183v6,-24,-9,-32,-15,-47v-22,12,-42,38,-39,72v15,16,49,-6,54,-25xm16,-162v0,-49,35,-113,96,-95v13,17,32,29,31,60v-2,52,-42,77,-88,77v-26,0,-39,-14,-39,-42","w":157},"\u00e6":{"d":"155,-93v25,-5,68,-26,56,-53v-28,-8,-45,29,-56,53xm66,-100v-8,20,-30,56,-13,78v32,-27,52,-69,67,-114v-1,-6,0,-12,-7,-12v-30,2,-34,30,-47,48xm279,-95v5,-8,28,-36,32,-11v-17,48,-65,73,-110,94v-43,10,-81,-8,-80,-51v-12,30,-63,103,-102,56v-2,-9,-6,-17,-5,-28v8,-71,31,-133,96,-144v31,-5,49,14,37,45v9,-42,86,-65,99,-9v-4,50,-46,64,-90,75v24,57,107,-3,123,-27","k":{".":-43,",":-43}},"\u00f8":{"d":"155,-207v20,-23,48,4,27,22v-5,10,-22,23,-4,27v59,45,-5,130,-61,139v-28,4,-53,13,-58,41v-4,23,-37,43,-47,12v4,-23,19,-34,30,-51v-37,-18,-30,-89,-3,-113v16,-28,54,-56,98,-43xm123,-145v-49,-2,-84,50,-66,99v30,-21,45,-69,66,-99xm97,-41v37,-11,82,-45,67,-88r-9,-6v-21,30,-40,62,-58,94","w":209},"\u00bf":{"d":"97,-199v-6,-33,39,-44,43,-12v2,19,-8,35,-25,33v-11,-2,-16,-11,-18,-21xm45,22v12,49,83,8,102,-10v11,-5,26,0,26,13v-18,35,-54,59,-106,59v-32,0,-59,-18,-59,-49v0,-59,30,-92,80,-102v-6,-29,-7,-74,26,-74v30,0,9,35,8,56v11,19,21,57,-12,58v-7,0,-10,-3,-15,-6v-26,7,-46,26,-50,55","w":173,"k":{"j":-58}},"\u00a1":{"d":"69,-224v19,-3,21,10,19,28v-2,16,-16,22,-31,24v-28,-7,-21,-55,12,-52xm65,-138v25,0,10,42,9,62v-12,45,-5,110,-25,147v-27,15,-41,-22,-29,-51r11,-102v8,-22,6,-56,34,-56","w":103},"\u00ac":{"d":"15,-116v0,-47,85,-11,133,-26v39,-1,91,-19,80,45v-5,28,5,65,-21,64v-32,-2,-10,-51,-16,-77r-164,4v-8,1,-12,-3,-12,-10","w":259},"\u00ab":{"d":"27,-139v27,0,85,-48,93,-47v27,28,-30,52,-65,65v25,18,54,33,70,60v-11,32,-43,-2,-53,-12v-16,-15,-37,-28,-55,-41v-7,-10,-3,-25,10,-25xm209,-163v27,-26,74,6,23,23r-66,22v22,18,49,36,61,61v-1,16,-24,17,-32,6v-18,-23,-54,-43,-72,-70v7,-23,38,-21,56,-32v8,-5,19,-7,30,-10","w":263},"\u00bb":{"d":"44,-161v25,-42,55,27,79,40v11,6,17,28,0,35v-31,12,-49,36,-79,49v-25,2,-24,-28,-6,-34r59,-34v-17,-16,-42,-35,-53,-56xm208,-104v-18,-20,-80,-45,-40,-70v33,12,46,49,81,59v15,33,-58,40,-77,66v-9,5,-13,16,-27,16v-10,0,-18,-6,-17,-17v13,-26,55,-39,80,-54"},"\u00a0":{"w":143},"\u00c0":{"d":"123,-95v33,-2,56,-12,84,-18r-26,-70v-21,29,-39,56,-58,88xm210,-244v0,60,34,97,45,149v6,28,31,56,39,79v-1,12,-8,22,-22,21v-32,-11,-39,-52,-52,-81r-121,24v-18,21,-29,57,-63,62v-26,4,-49,-30,-14,-33r131,-190v14,-34,26,-51,36,-51v15,-1,22,5,21,20xm124,-352v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00c3":{"d":"242,-333v1,-14,31,-30,31,-5v0,44,-62,56,-84,20v-23,-23,-31,23,-55,26v-8,0,-12,-7,-13,-14v5,-35,61,-71,90,-32v7,10,22,23,31,5xm123,-95v33,-2,56,-12,84,-18r-26,-70v-21,29,-39,56,-58,88xm210,-244v0,60,34,97,45,149v6,28,31,56,39,79v-1,12,-8,22,-22,21v-32,-11,-39,-52,-52,-81r-121,24v-18,21,-29,57,-63,62v-26,4,-49,-30,-14,-33r131,-190v14,-34,26,-51,36,-51v15,-1,22,5,21,20","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00d5":{"d":"241,-337v10,-14,28,-5,23,14v-10,36,-64,48,-83,12v-23,-21,-31,24,-55,27v-8,1,-12,-7,-12,-14v4,-36,62,-72,89,-32v13,19,33,11,38,-7xm195,-74v42,-36,65,-161,-26,-148v-69,10,-99,73,-107,145v-7,65,84,55,114,22v6,-7,12,-13,19,-19xm195,-21v-58,52,-183,40,-177,-54v6,-83,47,-147,110,-173v78,-33,172,14,148,111v-12,49,-49,87,-81,116","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00f7":{"d":"77,-23v0,-21,46,-32,49,-9v4,32,-42,32,-49,9xm81,-167v0,-17,47,-18,50,-1v-1,11,-6,29,-19,28v-18,0,-31,-9,-31,-27xm187,-111v15,8,11,30,-11,31r-123,4v-38,5,-43,-37,-15,-37v50,0,105,-7,149,2","w":208},"\u00c2":{"d":"159,-303v-8,17,-38,10,-26,-11v13,-22,34,-37,50,-55v38,-41,51,31,76,53v18,15,-9,43,-24,23v-16,-10,-27,-60,-46,-39v-12,13,-17,17,-30,29xm123,-95v33,-2,56,-12,84,-18r-26,-70v-21,29,-39,56,-58,88xm210,-244v0,60,34,97,45,149v6,28,31,56,39,79v-1,12,-8,22,-22,21v-32,-11,-39,-52,-52,-81r-121,24v-18,21,-29,57,-63,62v-26,4,-49,-30,-14,-33r131,-190v14,-34,26,-51,36,-51v15,-1,22,5,21,20","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00ca":{"d":"135,-305v-4,11,-30,17,-28,-4v10,-28,34,-43,52,-63v37,-41,51,36,79,58v5,11,0,28,-13,26v-29,-5,-30,-44,-53,-55v-13,15,-22,24,-37,38xm96,-251v69,26,152,-36,182,6v-21,48,-110,30,-182,36v-2,20,-1,43,-5,61v45,2,91,-2,125,-12v19,-2,21,31,6,37v-36,14,-95,5,-136,15r-13,68v56,-7,119,-7,168,-21v20,1,25,32,6,37v-61,17,-137,14,-195,31v-61,-24,5,-119,-1,-186v-4,-39,2,-75,45,-72","w":270,"k":{"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-5}},"\u00c1":{"d":"123,-95v33,-2,56,-12,84,-18r-26,-70v-21,29,-39,56,-58,88xm210,-244v0,60,34,97,45,149v6,28,31,56,39,79v-1,12,-8,22,-22,21v-32,-11,-39,-52,-52,-81r-121,24v-18,21,-29,57,-63,62v-26,4,-49,-30,-14,-33r131,-190v14,-34,26,-51,36,-51v15,-1,22,5,21,20xm182,-324v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":301,"k":{"\u00ff":-4,"\u00fd":-4,"\u00dd":14,"\u00d9":-14,"\u00db":-14,"\u00da":-14,"\u00d2":-7,"\u00d4":-7,"\u00d3":-7,"\u00d5":-7,"\u00d8":-7,"\u00dc":-14,"\u00d6":-7,"\u00c7":-7,"y":-4,"w":7,"v":14,"t":-14,"Z":-5,"Y":14,"W":-9,"V":11,"U":-14,"T":14,"O":-7,"C":-7,";":-18,":":-18,".":-16,",":-16,"*":14}},"\u00cb":{"d":"96,-251v69,26,152,-36,182,6v-21,48,-110,30,-182,36v-2,20,-1,43,-5,61v45,2,91,-2,125,-12v19,-2,21,31,6,37v-36,14,-95,5,-136,15r-13,68v56,-7,119,-7,168,-21v20,1,25,32,6,37v-61,17,-137,14,-195,31v-61,-24,5,-119,-1,-186v-4,-39,2,-75,45,-72xm185,-320v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm115,-319v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":270,"k":{"\u00ef":-11,"\u00ee":-11,"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-5}},"\u00c8":{"d":"96,-251v69,26,152,-36,182,6v-21,48,-110,30,-182,36v-2,20,-1,43,-5,61v45,2,91,-2,125,-12v19,-2,21,31,6,37v-36,14,-95,5,-136,15r-13,68v56,-7,119,-7,168,-21v20,1,25,32,6,37v-61,17,-137,14,-195,31v-61,-24,5,-119,-1,-186v-4,-39,2,-75,45,-72xm104,-357v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":270,"k":{"\u00ed":-11,"\u00dd":-14,"}":-22,"z":-22,"t":-29,"]":-22,"Y":-14,"X":-14,"W":-7,"V":-29,"J":-7,")":-22,"\u00ec":-5,"\u00ef":-5,"\u00ee":-5}},"\u00cd":{"d":"22,-24v0,-79,23,-150,32,-215v3,-8,9,-19,19,-20v39,4,25,56,14,80r-17,146v10,18,-7,34,-25,35v-16,1,-23,-13,-23,-26xm80,-331v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":111,"k":{"z":14,"w":22,"v":29}},"\u00ce":{"d":"47,-295v-4,12,-31,17,-28,-4v10,-28,34,-42,52,-62v37,-42,50,34,77,54v8,11,4,29,-11,30v-27,-7,-31,-46,-52,-55xm22,-24v0,-79,23,-150,32,-215v3,-8,9,-19,19,-20v39,4,25,56,14,80r-17,146v10,18,-7,34,-25,35v-16,1,-23,-13,-23,-26","w":111,"k":{"z":14,"w":22,"v":29}},"\u00cc":{"d":"22,-24v0,-79,23,-150,32,-215v3,-8,9,-19,19,-20v39,4,25,56,14,80r-17,146v10,18,-7,34,-25,35v-16,1,-23,-13,-23,-26xm36,-354v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":111,"k":{"z":14,"w":22,"v":29}},"\u00d3":{"d":"195,-74v42,-36,65,-161,-26,-148v-69,10,-99,73,-107,145v-7,65,84,55,114,22v6,-7,12,-13,19,-19xm195,-21v-58,52,-183,40,-177,-54v6,-83,47,-147,110,-173v78,-33,172,14,148,111v-12,49,-49,87,-81,116xm173,-322v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00d4":{"d":"137,-297v-6,12,-29,8,-24,-8v9,-28,34,-42,52,-62v38,-42,55,38,81,63v3,26,-27,24,-35,7v-13,-11,-21,-52,-40,-33xm195,-74v42,-36,65,-161,-26,-148v-69,10,-99,73,-107,145v-7,65,84,55,114,22v6,-7,12,-13,19,-19xm195,-21v-58,52,-183,40,-177,-54v6,-83,47,-147,110,-173v78,-33,172,14,148,111v-12,49,-49,87,-81,116","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00d2":{"d":"195,-74v42,-36,65,-161,-26,-148v-69,10,-99,73,-107,145v-7,65,84,55,114,22v6,-7,12,-13,19,-19xm195,-21v-58,52,-183,40,-177,-54v6,-83,47,-147,110,-173v78,-33,172,14,148,111v-12,49,-49,87,-81,116xm119,-356v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":289,"k":{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00c6":29,"\u00c5":29,"\u00c4":29,"J":22,"A":29,".":43,",":43}},"\u00da":{"d":"95,-244v-13,65,-57,199,30,209v109,12,74,-123,100,-207v4,-10,10,-17,23,-17v42,13,5,80,6,121v2,87,-41,141,-128,141v-121,0,-100,-156,-75,-251v4,-11,11,-21,25,-21v10,2,18,14,19,25xm160,-314v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00db":{"d":"225,-288v-28,-7,-31,-43,-52,-55v-18,16,-32,36,-53,49v-36,-23,27,-56,39,-78v40,-38,49,34,77,54v7,12,6,29,-11,30xm95,-244v-13,65,-57,199,30,209v109,12,74,-123,100,-207v4,-10,10,-17,23,-17v42,13,5,80,6,121v2,87,-41,141,-128,141v-121,0,-100,-156,-75,-251v4,-11,11,-21,25,-21v10,2,18,14,19,25","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00d9":{"d":"95,-244v-13,65,-57,199,30,209v109,12,74,-123,100,-207v4,-10,10,-17,23,-17v42,13,5,80,6,121v2,87,-41,141,-128,141v-121,0,-100,-156,-75,-251v4,-11,11,-21,25,-21v10,2,18,14,19,25xm101,-351v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":278,"k":{"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c0":20,"\u00c6":20,"\u00c5":20,"\u00c4":20,"A":20}},"\u00b8":{"d":"68,21v32,0,47,50,16,68v-20,19,-75,13,-78,-12v5,-32,61,20,64,-25v-9,-13,-42,9,-41,-16v15,-25,5,-47,34,-51v21,3,12,24,5,36","w":111},"\u00a6":{"d":"41,-346v5,-20,36,-11,36,9r-1,194v2,23,-36,23,-36,3xm40,32v5,-39,-15,-91,17,-95v42,21,5,131,17,209v5,34,-40,43,-39,15","w":116},"\u00d0":{"d":"39,-141v51,0,-1,-97,46,-111r118,20v92,2,150,130,57,175v-43,21,-80,48,-127,64v-10,-2,-14,-17,-17,-26v39,-50,138,-41,154,-113v-12,-70,-98,-66,-166,-77v-4,20,-3,44,-6,68v29,1,75,-15,76,19v-6,24,-49,12,-78,17v-11,35,23,100,-23,100v-31,0,-18,-65,-20,-97v-23,-1,-61,2,-61,-24v0,-21,29,-15,47,-15","w":324,"k":{"\u00ff":29,"\u00fd":29,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c0":36,"\u00c6":36,"\u00c4":36,"y":29,"x":29,"w":22,"v":14,"t":-50,"s":14,"n":14,"m":14,"f":14,"d":14,"J":58,"A":36,",":58,"\u00c5":-29,".":-65}},"\u00f0":{"d":"72,-42v41,-14,78,-56,51,-111v-40,13,-74,24,-74,77v0,17,13,29,23,34xm162,-255v-3,18,-27,19,-38,31v41,34,75,144,16,183v-23,15,-40,37,-77,37v-40,0,-60,-40,-55,-85v6,-54,48,-83,102,-93v-4,-9,-10,-17,-18,-23v-17,7,-56,46,-64,8v3,-15,29,-16,37,-28v-10,-5,-25,-9,-30,-18v4,-11,12,-24,27,-24v16,0,28,15,38,24v16,-7,52,-49,62,-12","w":181},"\u00dd":{"d":"213,-289v2,-18,44,-21,42,4v-27,59,-78,97,-106,154r-7,125v-2,10,-13,17,-25,16v-36,-4,-15,-60,-15,-91v0,-19,6,-39,2,-56v-26,-17,-47,-44,-63,-66v-11,-14,-25,-23,-32,-39v5,-19,35,-23,49,-7v22,26,45,59,72,78v26,-42,57,-80,83,-118xm120,-321v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":245,"k":{"\u00ff":58,"\u00fd":58,"\u00e7":65,"\u00d2":20,"\u00d4":20,"\u00d3":20,"\u00c1":50,"\u00c2":50,"\u00d5":20,"\u00c3":50,"\u00c0":50,"\u00f8":43,"\u00e6":36,"\u00d8":20,"\u00c6":50,"\u00d6":20,"\u00c7":32,"\u00c5":50,"\u00c4":50,"}":-29,"z":58,"y":58,"x":43,"w":43,"v":72,"u":58,"s":43,"r":58,"q":29,"p":29,"o":43,"n":58,"m":36,"g":43,"f":43,"e":65,"d":65,"c":65,"a":36,"]":-29,"W":-14,"V":-22,"Q":20,"O":20,"J":50,"G":32,"C":32,"B":18,"A":50,")":-29}},"\u00de":{"d":"80,-95v64,-1,139,-23,169,-65v-19,-39,-86,-36,-138,-43v-11,-2,-10,13,-13,20v1,33,-17,58,-18,88xm150,-239v59,12,154,17,136,91v-34,66,-135,70,-209,97v-8,24,12,69,-22,66v-60,-28,-1,-124,-1,-185v0,-30,11,-58,15,-88v-6,-30,41,-36,48,-12v0,10,-10,23,-5,32","w":284,"k":{"\u00e7":20,"\u00c1":83,"\u00c2":83,"\u00c3":83,"\u00c0":83,"\u00c6":83,"\u00c5":83,"\u00c4":83,"c":20,"A":83,".":43,",":43}},"\u00fe":{"d":"89,-46v36,-19,79,-43,84,-92v-40,-22,-70,51,-89,88v-1,3,3,4,5,4xm176,-76v39,-11,76,-44,114,-55v-15,68,-134,95,-206,117r-10,-2v-7,35,-5,78,-19,106v-26,14,-32,-17,-28,-47r41,-302v12,-21,38,-10,33,19r-24,142v20,-34,37,-78,83,-84v52,-7,73,58,35,88","w":242,"k":{".":-22,",":-22}},"\u00d7":{"d":"104,-72v-23,18,-49,81,-77,40v13,-26,41,-39,57,-61r-53,-53v-8,-25,26,-25,38,-12v13,14,22,31,36,45v21,-15,41,-71,74,-46v5,31,-31,36,-44,56v-21,19,25,35,32,54v14,6,21,32,0,36v-35,-6,-42,-41,-63,-59","w":205},"\u00b9":{"d":"49,-248v2,-20,35,-31,38,-6v-9,36,-17,73,-17,118v0,27,-34,35,-41,12v1,-44,8,-90,20,-124","w":107},"\u00b2":{"d":"60,-139v33,-4,91,-33,101,6v0,14,-21,23,-35,15v-34,0,-66,18,-101,22v-35,-6,-21,-28,1,-54r62,-73v-24,-1,-48,38,-61,7v-4,-36,43,-31,68,-41v36,0,30,49,11,63","w":158},"\u00b3":{"d":"68,-249v42,-28,86,20,44,47v14,4,30,9,28,27v-5,47,-80,81,-126,77v-21,-14,-5,-48,23,-37v29,-4,54,-14,67,-35v-24,-5,-64,22,-69,-10v8,-27,48,-18,59,-45v-25,-4,-60,40,-72,0v1,-19,30,-18,46,-24","w":139},"\u00bd":{"d":"87,-246v-1,28,-18,69,-19,102v0,6,-4,25,-20,21v-20,2,-22,-21,-15,-35r-1,1v14,-36,4,-93,40,-105v10,0,15,7,15,16xm96,-131v43,-28,49,-93,102,-111v32,26,-30,66,-39,95v-34,42,-77,80,-99,132v-9,21,-53,12,-36,-13xm116,-18v21,-43,93,-41,113,-86v-27,-7,-73,32,-82,-6v12,-24,58,-23,89,-28v60,14,12,78,-16,90r-35,15v36,-4,107,-31,117,14v-1,21,-40,7,-58,9r-105,11v-13,0,-21,-8,-23,-19","w":307},"\u00bc":{"d":"216,-98r-30,31r25,-2xm26,-154v14,-40,2,-104,35,-120v12,0,19,9,20,20r-16,99v-1,14,-3,28,-17,28v-14,0,-21,-13,-22,-27xm95,-117v44,-44,60,-186,125,-141v-4,15,-22,29,-28,40v-27,44,-49,94,-78,134v-22,31,-31,72,-54,101v-21,14,-35,-10,-22,-33xm241,-43v-4,29,15,67,-17,67v-26,0,-17,-39,-19,-65v-24,0,-62,20,-67,-10v28,-42,63,-71,97,-105v11,-1,19,3,21,11r-11,70v18,1,54,-1,52,14v1,22,-44,12,-56,18","w":298},"\u00be":{"d":"219,-95r23,-6r7,-30v-11,9,-22,22,-30,36xm13,-242v15,-25,72,-32,110,-23v35,8,4,44,-14,50v51,9,14,50,-8,59v-17,7,-27,20,-47,24v-10,-1,-18,-7,-18,-18v11,-22,46,-22,62,-40v-35,11,-77,-13,-34,-33v11,-6,24,-10,33,-18v-28,-5,-73,34,-84,-1xm72,8v-47,-31,25,-92,41,-123v31,-60,76,-115,118,-164v17,-20,38,-4,25,15r-152,223v-8,17,-12,46,-32,49xm301,-91v-9,24,-49,7,-39,58v-1,16,-2,38,-17,36v-33,-3,-17,-49,-11,-72v-22,-2,-31,13,-48,16v-10,2,-19,-9,-19,-18v20,-33,46,-74,80,-93v0,-21,34,-26,39,-6v-9,18,-11,40,-13,65v12,-8,29,-3,28,14","w":315},"\u00ad":{"d":"64,-121v51,7,119,-20,134,20v-14,37,-89,0,-148,13v-8,-2,-15,-5,-15,-15v0,-13,16,-16,29,-18","w":230},"\u00a4":{"d":"88,-202v22,-21,67,-17,94,-5v16,-15,41,-62,66,-32v5,26,-27,38,-35,57v16,34,6,88,-11,112v9,25,60,47,21,73v-30,-4,-38,-33,-59,-47v-22,8,-56,10,-75,-2v-22,8,-36,35,-60,41v-23,-3,-23,-35,-3,-41r32,-25v-11,-32,-21,-81,2,-107v-4,-26,-28,-31,-36,-51v1,-11,11,-17,23,-18v25,3,27,30,41,45xm130,-75v37,0,47,-28,47,-66v0,-35,-22,-40,-49,-42v-28,5,-38,36,-38,67v0,26,25,36,40,41"},"\u00e1":{"d":"54,-35v44,-14,74,-50,78,-105v-40,-21,-80,47,-85,97v0,4,2,8,7,8xm270,-122v9,-9,30,-9,21,9v-22,46,-60,78,-119,88v-21,-2,-34,-17,-39,-35v-21,28,-45,55,-89,60v-79,-50,9,-200,103,-177v51,12,-17,99,32,114v44,-4,67,-34,91,-59xm120,-246v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":236,"k":{".":-36,",":-36}},"\u00e2":{"d":"85,-214v-3,9,-30,18,-28,-4v10,-29,35,-42,52,-63v33,-41,47,26,70,45v11,10,19,37,-4,39v-28,-6,-31,-45,-52,-55xm54,-35v44,-14,74,-50,78,-105v-40,-21,-80,47,-85,97v0,4,2,8,7,8xm270,-122v9,-9,30,-9,21,9v-22,46,-60,78,-119,88v-21,-2,-34,-17,-39,-35v-21,28,-45,55,-89,60v-79,-50,9,-200,103,-177v51,12,-17,99,32,114v44,-4,67,-34,91,-59","w":236,"k":{".":-36,",":-36}},"\u00e4":{"d":"54,-35v44,-14,74,-50,78,-105v-40,-21,-80,47,-85,97v0,4,2,8,7,8xm270,-122v9,-9,30,-9,21,9v-22,46,-60,78,-119,88v-21,-2,-34,-17,-39,-35v-21,28,-45,55,-89,60v-79,-50,9,-200,103,-177v51,12,-17,99,32,114v44,-4,67,-34,91,-59xm136,-233v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm66,-232v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":236,"k":{".":-36,",":-36}},"\u00e0":{"d":"54,-35v44,-14,74,-50,78,-105v-40,-21,-80,47,-85,97v0,4,2,8,7,8xm270,-122v9,-9,30,-9,21,9v-22,46,-60,78,-119,88v-21,-2,-34,-17,-39,-35v-21,28,-45,55,-89,60v-79,-50,9,-200,103,-177v51,12,-17,99,32,114v44,-4,67,-34,91,-59xm60,-269v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":236,"k":{".":-36,",":-36}},"\u00e5":{"d":"140,-257v-9,-14,-32,-3,-30,15v2,15,14,25,27,13v7,-6,6,-19,3,-28xm77,-243v-1,-45,79,-62,94,-19v12,34,-18,62,-50,62v-28,0,-43,-16,-44,-43xm54,-35v44,-14,74,-50,78,-105v-40,-21,-80,47,-85,97v0,4,2,8,7,8xm270,-122v9,-9,30,-9,21,9v-22,46,-60,78,-119,88v-21,-2,-34,-17,-39,-35v-21,28,-45,55,-89,60v-79,-50,9,-200,103,-177v51,12,-17,99,32,114v44,-4,67,-34,91,-59","w":236,"k":{".":-36,",":-36}},"\u00e3":{"d":"189,-260v30,9,-2,48,-15,54v-32,15,-47,-17,-68,-28v-19,3,-20,32,-43,33v-8,0,-13,-5,-13,-13v5,-35,62,-74,89,-32v7,4,11,12,20,14v14,-3,15,-27,30,-28xm54,-35v44,-14,74,-50,78,-105v-40,-21,-80,47,-85,97v0,4,2,8,7,8xm270,-122v9,-9,30,-9,21,9v-22,46,-60,78,-119,88v-21,-2,-34,-17,-39,-35v-21,28,-45,55,-89,60v-79,-50,9,-200,103,-177v51,12,-17,99,32,114v44,-4,67,-34,91,-59","w":236,"k":{".":-36,",":-36}},"\u00e7":{"d":"75,-34v82,-3,105,-72,167,-97v25,29,-38,54,-55,78v-29,24,-57,49,-104,53v-3,6,-18,24,1,22v18,4,23,19,22,42v-2,29,-52,46,-81,28v-17,-5,-18,-29,2,-29v18,18,71,-2,39,-18v-11,5,-32,6,-31,-10r15,-38v-71,-41,-14,-172,50,-183v22,4,35,33,34,55v-1,8,-4,17,-14,17v-16,-1,-20,-20,-25,-32v-25,17,-38,50,-41,89v-1,11,12,23,21,23","w":188,"k":{".":-14,",":-14}},"\u00e9":{"d":"63,-94v20,-16,58,-38,44,-72v-28,8,-37,41,-44,72xm216,-110v6,-13,46,-28,27,0v-35,50,-78,105,-154,105v-42,0,-65,-23,-63,-68v3,-65,24,-115,83,-126v24,1,35,18,35,43v0,46,-48,69,-78,94v13,42,81,10,101,-6v17,-14,33,-27,49,-42xm93,-253v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":189,"k":{".":-43,",":-43}},"\u00ea":{"d":"72,-221v-4,12,-31,17,-28,-4v10,-28,35,-42,52,-62v37,-42,51,36,79,58v10,29,-21,32,-33,12v-13,-11,-21,-52,-40,-33xm63,-94v20,-16,58,-38,44,-72v-28,8,-37,41,-44,72xm216,-110v6,-13,46,-28,27,0v-35,50,-78,105,-154,105v-42,0,-65,-23,-63,-68v3,-65,24,-115,83,-126v24,1,35,18,35,43v0,46,-48,69,-78,94v13,42,81,10,101,-6v17,-14,33,-27,49,-42","w":189,"k":{".":-43,",":-43}},"\u00eb":{"d":"63,-94v20,-16,58,-38,44,-72v-28,8,-37,41,-44,72xm216,-110v6,-13,46,-28,27,0v-35,50,-78,105,-154,105v-42,0,-65,-23,-63,-68v3,-65,24,-115,83,-126v24,1,35,18,35,43v0,46,-48,69,-78,94v13,42,81,10,101,-6v17,-14,33,-27,49,-42xm118,-235v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm48,-234v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":189,"k":{".":-43,",":-43}},"\u00e8":{"d":"63,-94v20,-16,58,-38,44,-72v-28,8,-37,41,-44,72xm216,-110v6,-13,46,-28,27,0v-35,50,-78,105,-154,105v-42,0,-65,-23,-63,-68v3,-65,24,-115,83,-126v24,1,35,18,35,43v0,46,-48,69,-78,94v13,42,81,10,101,-6v17,-14,33,-27,49,-42xm40,-277v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":189,"k":{".":-43,",":-43}},"\u00ed":{"d":"157,-73v26,-15,41,-69,70,-65v-10,64,-61,113,-111,138v-60,31,-85,-42,-75,-112v4,-28,9,-50,37,-51v8,0,11,4,11,13v-1,28,-11,53,-7,82v-7,48,40,31,58,11v5,-6,12,-11,17,-16xm67,-235v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00ee":{"d":"35,-207v-3,9,-30,18,-28,-4v10,-28,34,-43,52,-63v37,-41,51,37,79,58v5,11,0,28,-13,26v-29,-5,-31,-46,-53,-55v-13,15,-22,24,-37,38xm157,-73v26,-15,41,-69,70,-65v-10,64,-61,113,-111,138v-60,31,-85,-42,-75,-112v4,-28,9,-50,37,-51v8,0,11,4,11,13v-1,28,-11,53,-7,82v-7,48,40,31,58,11v5,-6,12,-11,17,-16","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00ef":{"d":"157,-73v26,-15,41,-69,70,-65v-10,64,-61,113,-111,138v-60,31,-85,-42,-75,-112v4,-28,9,-50,37,-51v8,0,11,4,11,13v-1,28,-11,53,-7,82v-7,48,40,31,58,11v5,-6,12,-11,17,-16xm94,-234v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm24,-233v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00ec":{"d":"157,-73v26,-15,41,-69,70,-65v-10,64,-61,113,-111,138v-60,31,-85,-42,-75,-112v4,-28,9,-50,37,-51v8,0,11,4,11,13v-1,28,-11,53,-7,82v-7,48,40,31,58,11v5,-6,12,-11,17,-16xm10,-255v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":162,"k":{"\u00bb":-58,".":-50,",":-50}},"\u00f1":{"d":"224,-265v30,9,-1,47,-15,54v-33,16,-45,-18,-68,-28v-19,3,-20,32,-43,33v-8,0,-12,-6,-13,-13v5,-40,67,-72,94,-28v5,3,9,8,15,10v14,-3,15,-27,30,-28xm300,-113v7,-7,24,-31,33,-13v-20,51,-56,90,-108,105v-68,20,-54,-65,-75,-98v-41,19,-51,80,-97,99v-42,-17,-18,-127,7,-151v31,-11,24,27,18,51r-11,44v29,-29,40,-84,91,-84v34,0,38,30,40,62v2,24,11,51,38,36v24,-12,45,-32,64,-51","w":272,"k":{".":-79,",":-79}},"\u00f3":{"d":"106,-147v-24,24,-74,75,-41,110v45,-5,72,-30,74,-79v1,-22,-23,-20,-33,-31xm144,-172v17,32,92,37,130,18v9,46,-69,50,-105,33v9,72,-42,117,-115,117v-61,0,-41,-94,-13,-121v19,-28,60,-78,103,-47xm120,-242v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":208},"\u00f4":{"d":"170,-197v-26,-9,-31,-39,-50,-56v-19,16,-32,37,-54,50v-37,-24,27,-57,39,-78v38,-40,49,34,76,54v8,10,5,30,-11,30xm106,-147v-24,24,-74,75,-41,110v45,-5,72,-30,74,-79v1,-22,-23,-20,-33,-31xm144,-172v17,32,92,37,130,18v9,46,-69,50,-105,33v9,72,-42,117,-115,117v-61,0,-41,-94,-13,-121v19,-28,60,-78,103,-47","w":208},"\u00f6":{"d":"106,-147v-24,24,-74,75,-41,110v45,-5,72,-30,74,-79v1,-22,-23,-20,-33,-31xm144,-172v17,32,92,37,130,18v9,46,-69,50,-105,33v9,72,-42,117,-115,117v-61,0,-41,-94,-13,-121v19,-28,60,-78,103,-47xm132,-235v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm62,-234v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":208},"\u00f2":{"d":"106,-147v-24,24,-74,75,-41,110v45,-5,72,-30,74,-79v1,-22,-23,-20,-33,-31xm144,-172v17,32,92,37,130,18v9,46,-69,50,-105,33v9,72,-42,117,-115,117v-61,0,-41,-94,-13,-121v19,-28,60,-78,103,-47xm60,-268v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":208},"\u00f5":{"d":"172,-254v10,-14,28,-5,23,14v-10,36,-64,48,-83,12v-23,-21,-31,24,-55,27v-8,1,-12,-7,-12,-14v3,-36,62,-72,89,-32v12,20,33,11,38,-7xm106,-147v-24,24,-74,75,-41,110v45,-5,72,-30,74,-79v1,-22,-23,-20,-33,-31xm144,-172v17,32,92,37,130,18v9,46,-69,50,-105,33v9,72,-42,117,-115,117v-61,0,-41,-94,-13,-121v19,-28,60,-78,103,-47","w":208},"\u00fa":{"d":"42,-102v4,-25,-4,-63,25,-64v43,9,5,78,5,113v0,26,29,4,39,-4v36,-28,45,-82,72,-119v9,-13,29,-4,24,15v-7,33,-11,108,34,87v38,-18,59,-52,93,-72v15,46,-57,88,-97,108v-39,20,-63,-16,-65,-52v-23,40,-46,86,-103,86v-47,0,-33,-62,-27,-98xm125,-239v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":275},"\u00fb":{"d":"102,-224v-4,10,-30,18,-28,-5v11,-28,35,-41,52,-62v34,-41,47,26,70,45v11,10,19,37,-4,39v-28,-6,-31,-45,-52,-55xm42,-102v4,-25,-4,-63,25,-64v43,9,5,78,5,113v0,26,29,4,39,-4v36,-28,45,-82,72,-119v9,-13,29,-4,24,15v-7,33,-11,108,34,87v38,-18,59,-52,93,-72v15,46,-57,88,-97,108v-39,20,-63,-16,-65,-52v-23,40,-46,86,-103,86v-47,0,-33,-62,-27,-98","w":275},"\u00fc":{"d":"42,-102v4,-25,-4,-63,25,-64v43,9,5,78,5,113v0,26,29,4,39,-4v36,-28,45,-82,72,-119v9,-13,29,-4,24,15v-7,33,-11,108,34,87v38,-18,59,-52,93,-72v15,46,-57,88,-97,108v-39,20,-63,-16,-65,-52v-23,40,-46,86,-103,86v-47,0,-33,-62,-27,-98xm152,-234v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm82,-233v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":275},"\u00f9":{"d":"42,-102v4,-25,-4,-63,25,-64v43,9,5,78,5,113v0,26,29,4,39,-4v36,-28,45,-82,72,-119v9,-13,29,-4,24,15v-7,33,-11,108,34,87v38,-18,59,-52,93,-72v15,46,-57,88,-97,108v-39,20,-63,-16,-65,-52v-23,40,-46,86,-103,86v-47,0,-33,-62,-27,-98xm65,-264v27,-41,63,21,88,34v18,8,15,32,-5,31v-29,-18,-66,-37,-83,-65","w":275},"\u00fd":{"d":"95,-158v0,32,-26,48,-26,81v1,11,3,22,12,24v54,-10,90,-41,86,-109v4,-11,8,-20,21,-20v42,8,10,82,12,126v-14,61,-21,144,-90,144v-37,0,-85,-16,-87,-53v2,-5,4,-12,12,-11v24,21,82,51,103,3v11,-25,18,-54,21,-88v-24,19,-51,39,-89,44v-67,-7,-31,-114,-11,-150v10,-11,36,-8,36,9xm129,-239v21,-12,59,-63,79,-21v-16,26,-55,37,-77,55v-9,7,-27,7,-27,-8v0,-6,8,-17,25,-26","w":226},"\u00ff":{"d":"95,-158v0,32,-26,48,-26,81v1,11,3,22,12,24v54,-10,90,-41,86,-109v4,-11,8,-20,21,-20v42,8,10,82,12,126v-14,61,-21,144,-90,144v-37,0,-85,-16,-87,-53v2,-5,4,-12,12,-11v24,21,82,51,103,3v11,-25,18,-54,21,-88v-24,19,-51,39,-89,44v-67,-7,-31,-114,-11,-150v10,-11,36,-8,36,9xm148,-237v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm78,-236v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":226},"\u00cf":{"d":"22,-24v0,-79,23,-150,32,-215v3,-8,9,-19,19,-20v39,4,25,56,14,80r-17,146v10,18,-7,34,-25,35v-16,1,-23,-13,-23,-26xm95,-323v-1,-24,44,-29,44,-3v0,15,-8,22,-24,22v-12,0,-20,-6,-20,-19xm25,-322v7,-27,48,-14,46,11v-4,18,-54,16,-46,-11","w":111,"k":{"z":14,"w":22,"v":29}},"\u00af":{"d":"10,-263v56,0,138,-21,154,18v-3,28,-46,4,-75,12r-86,1v-11,1,-17,-6,-17,-16v0,-12,12,-15,24,-15","w":150},"\u0305":{"d":"10,-263v56,0,138,-21,154,18v-3,28,-46,4,-75,12r-86,1v-11,1,-17,-6,-17,-16v0,-12,12,-15,24,-15","w":150},"\u00b5":{"d":"227,-163v-6,36,-26,82,-7,121v13,-4,34,-12,35,8v-4,19,-20,30,-44,29v-24,-2,-30,-27,-36,-48v-19,24,-66,65,-99,32v-9,29,2,82,-29,90v-49,-23,4,-110,2,-157v10,-34,0,-92,40,-96v14,-1,18,12,18,25v0,33,-33,83,-8,112v54,-7,75,-52,82,-104v2,-14,7,-30,24,-25v9,1,23,6,22,13","w":266},"\u00b7":{"d":"19,-112v-1,-22,38,-47,51,-16v8,18,6,36,-22,36v-8,0,-31,-13,-29,-20","w":92}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1987, 1991, 1992, 1993, 2002 Adobe Systems Incorporated.  All
 * Rights Reserved.
 * 
 * Trademark:
 * Futura is a registered trademark of Bauer Types, S.A.
 * 
 * Full name:
 * FuturaStd-Condensed
 * 
 * Designer:
 * Paul Renner
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":147,"face":{"font-family":"Futura Std","font-weight":500,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 5 6 2 2 4 3 2 4","ascent":"297","descent":"-63","x-height":"3","bbox":"-39 -349 284 78","underline-thickness":"18","underline-position":"-18","stemh":"27","stemv":"34","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":73},"!":{"d":"45,3v-12,0,-21,-10,-21,-22v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,22,-22,22xm28,-271r36,0r0,206r-36,0r0,-206","w":90},"\"":{"d":"10,-190r-4,-81r31,0r-4,81r-23,0xm58,-190r-5,-81r31,0r-4,81r-22,0","w":90},"#":{"d":"-4,0r28,-93r-38,0r6,-21r39,0r14,-45r-40,0r7,-21r39,0r28,-91r20,0r-28,91r32,0r27,-91r20,0r-28,91r40,0r-6,21r-40,0r-14,45r41,0r-6,21r-41,0r-29,93r-19,0r28,-93r-31,0r-30,93r-19,0xm51,-114r31,0r14,-45r-32,0"},"$":{"d":"45,-206v2,62,93,56,93,130v0,38,-12,71,-56,76r0,24r-16,0r0,-24v-28,-3,-44,-15,-53,-41r29,-14v4,16,14,25,31,25v23,0,30,-19,30,-41v0,-31,-15,-37,-37,-51v-36,-23,-55,-37,-55,-82v0,-35,18,-63,55,-67r0,-24r16,0r0,24v26,2,45,15,52,40r-27,16v-3,-15,-16,-26,-32,-26v-22,0,-30,16,-30,35"},"%":{"d":"54,-275v36,0,38,39,38,65v0,26,-2,64,-38,64v-36,0,-39,-38,-39,-64v0,-26,3,-65,39,-65xm54,-167v16,0,14,-34,14,-43v0,-9,2,-43,-14,-43v-16,0,-15,34,-15,43v0,9,-1,43,15,43xm145,-126v36,0,39,39,39,65v0,26,-3,64,-39,64v-36,0,-38,-38,-38,-64v0,-26,2,-65,38,-65xm145,-104v-16,0,-14,33,-14,42v0,9,-2,44,14,44v16,0,14,-35,14,-44v0,-9,2,-42,-14,-42xm156,-271r22,0r-135,271r-22,0","w":199},"&":{"d":"73,-159v12,-13,26,-25,26,-44v0,-12,-6,-22,-19,-22v-33,0,-21,47,-7,66xm102,-46r-38,-63v-27,20,-29,82,10,82v12,0,22,-8,28,-19xm130,0r-13,-21v-33,50,-108,16,-108,-43v0,-29,18,-53,38,-73v-30,-37,-33,-116,30,-115v30,0,52,18,52,49v0,30,-20,52,-40,71r35,59r23,-31r23,18r-29,41r29,45r-40,0","w":177},"(":{"d":"47,-275r33,8v-40,94,-40,203,0,299r-33,9v-42,-100,-43,-217,0,-316","w":99},")":{"d":"53,-275v43,99,42,216,0,316r-34,-9v40,-96,40,-205,0,-299","w":99},"*":{"d":"57,-271r14,0r0,47r40,-25r7,12r-42,24r42,23r-7,13r-40,-25r1,47r-15,0r1,-48r-39,26r-9,-13r41,-23r-41,-21r7,-13r41,23","w":128},"+":{"d":"77,-105r0,-78r26,0r0,78r62,0r0,25r-62,0r0,79r-26,0r0,-79r-61,0r0,-25r61,0","w":180},",":{"d":"27,-38r30,9r-35,95r-19,-5","w":73},"-":{"d":"12,-107r64,0r0,27r-64,0r0,-27","w":87},".":{"d":"37,3v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22","w":73},"\/":{"d":"129,-299r28,0r-138,336r-29,0","w":146},"0":{"d":"74,-275v65,0,62,96,62,139v0,43,3,139,-62,139v-65,0,-61,-96,-61,-139v0,-43,-4,-139,61,-139xm100,-136v0,-57,-1,-106,-26,-106v-25,0,-26,49,-26,106v0,57,1,107,26,107v25,0,26,-50,26,-107"},"1":{"d":"30,-271r62,0r0,271r-35,0r0,-240r-27,0r0,-31"},"2":{"d":"17,-183v0,-49,1,-91,58,-92v45,0,60,25,60,67v0,61,-45,128,-69,177r67,0r0,31r-120,0v28,-69,86,-127,86,-210v0,-15,-5,-32,-24,-32v-26,0,-20,42,-21,59r-37,0"},"3":{"d":"98,-80v1,-27,-8,-50,-43,-45r0,-32v33,1,42,-10,41,-42v0,-14,1,-43,-20,-43v-22,0,-22,24,-22,43v-10,-2,-27,3,-34,-2v0,-41,6,-74,55,-74v45,0,56,32,56,71v0,25,-2,55,-30,64v30,8,33,36,33,63v0,44,-13,80,-62,80v-44,0,-59,-27,-57,-71r34,0v-1,20,3,38,23,39v26,0,26,-33,26,-51"},"4":{"d":"119,-271r0,170r17,0r0,26r-17,0r0,75r-35,0r0,-75r-74,0r0,-30r74,-166r35,0xm84,-101r-1,-115r-44,115r45,0"},"5":{"d":"44,-271r86,0r0,31r-59,0r-8,68v49,-2,71,31,71,77v0,50,-19,98,-77,98v-16,0,-28,-5,-42,-11r9,-32v11,6,19,11,32,11v32,0,41,-37,41,-61v0,-40,-28,-62,-69,-50"},"6":{"d":"71,-271r38,0r-52,116v8,-7,16,-12,28,-12v45,0,47,52,47,85v0,42,-5,85,-58,85v-53,0,-59,-50,-59,-92v0,-74,25,-118,56,-182xm96,-81v0,-17,1,-54,-21,-54v-5,0,-23,-2,-23,53v0,15,1,53,23,53v21,0,21,-37,21,-52"},"7":{"d":"14,-271r121,0r-82,271r-39,0r75,-240r-75,0r0,-31"},"8":{"d":"74,-29v21,0,22,-31,22,-46v0,-16,1,-53,-22,-53v-23,0,-22,37,-22,53v0,15,1,46,22,46xm15,-76v0,-28,4,-62,33,-72v-26,-8,-30,-37,-30,-60v0,-37,12,-67,54,-67v45,0,58,23,58,67v0,23,-3,52,-29,61v29,7,32,41,32,66v0,41,-8,84,-59,84v-49,0,-59,-39,-59,-79xm74,-163v18,0,20,-28,20,-41v0,-13,-2,-38,-20,-38v-18,0,-20,25,-20,38v0,13,2,41,20,41"},"9":{"d":"76,0r-39,0r53,-114v-8,8,-15,11,-27,11v-42,0,-47,-47,-47,-79v0,-42,3,-93,58,-93v55,0,58,50,58,92v0,70,-28,128,-56,183xm74,-136v23,0,22,-39,22,-54v0,-15,0,-52,-22,-52v-22,0,-21,39,-21,54v0,16,-1,52,21,52"},":":{"d":"37,3v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22xm37,-141v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22","w":73},";":{"d":"28,-38r29,9r-35,95r-18,-5xm37,-141v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22","w":73},"<":{"d":"16,-80r0,-23r149,-83r0,26r-121,69r121,68r0,27","w":180},"=":{"d":"165,-138r0,25r-149,0r0,-25r149,0xm165,-70r0,25r-149,0r0,-25r149,0","w":180},">":{"d":"165,-103r0,23r-149,84r0,-27r120,-68r-120,-69r0,-26","w":180},"?":{"d":"76,-64r-32,0r0,-82v30,7,35,-18,35,-44v0,-13,3,-54,-17,-54v-19,0,-16,24,-16,40r-34,0v0,-39,2,-71,48,-71v50,0,54,39,54,81v0,27,-1,73,-38,72r0,58xm60,3v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,22,-21,22","w":122},"@":{"d":"120,-76v36,0,60,-67,60,-95v0,-14,-10,-24,-25,-24v-39,0,-62,53,-62,86v0,18,8,33,27,33xm196,-194r6,-18r24,0r-42,130v0,6,5,11,11,11v22,0,60,-32,60,-89v0,-59,-50,-93,-105,-93v-68,0,-117,53,-117,119v0,65,51,115,117,115v38,0,76,-15,97,-46r23,0v-23,42,-72,69,-120,69v-80,0,-140,-63,-140,-141v0,-76,64,-138,141,-138v67,0,127,48,127,116v0,44,-37,107,-88,107v-13,0,-28,-6,-32,-19v-32,36,-94,14,-94,-37v0,-65,83,-155,132,-86","w":288},"A":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0","w":149},"B":{"d":"56,-123r0,92v31,1,39,-14,39,-44v0,-30,-6,-49,-39,-48xm134,-74v0,68,-44,79,-112,74r0,-271r45,0v49,0,63,26,63,72v0,28,-8,51,-35,61v31,10,39,34,39,64xm94,-200v0,-23,-9,-44,-38,-41r0,89v33,1,38,-19,38,-48","w":150},"C":{"d":"127,-267r0,33v-7,-4,-15,-7,-23,-7v-50,0,-51,73,-51,107v0,43,15,128,74,98r0,32v-9,6,-19,8,-29,8v-73,0,-83,-78,-83,-135v0,-54,7,-144,81,-144v12,0,21,2,31,8","w":132},"D":{"d":"22,-271r40,0v42,0,91,2,91,140v0,138,-46,131,-131,131r0,-271xm115,-131v0,-42,4,-114,-57,-110r0,210v59,2,57,-54,57,-100","w":167},"E":{"d":"22,-271r97,0r0,31r-61,0r0,85r54,0r0,32r-54,0r0,92r61,0r0,31r-97,0r0,-271","w":124},"F":{"d":"22,-271r98,0r0,31r-62,0r0,85r55,0r0,32r-55,0r0,123r-36,0r0,-271","w":123,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40}},"G":{"d":"86,-143r66,0v0,55,8,147,-65,147v-64,0,-72,-62,-72,-139v0,-76,6,-140,69,-140v39,0,57,19,66,55r-34,14v-4,-18,-9,-35,-31,-35v-30,0,-32,40,-32,106v0,94,16,105,32,105v15,0,31,-2,31,-67r0,-15r-30,0r0,-31","w":165},"H":{"d":"22,-271r36,0r0,105r54,0r0,-105r36,0r0,271r-36,0r0,-134r-54,0r0,134r-36,0r0,-271","w":170},"I":{"d":"58,-271r0,271r-36,0r0,-271r36,0","w":79},"J":{"d":"87,-271r0,204v0,39,-6,71,-53,71v-10,0,-22,-3,-31,-8r0,-36v7,4,15,9,24,9v24,0,24,-20,24,-38r0,-202r36,0","w":109},"K":{"d":"22,-271r37,0r0,130r50,-130r38,0r-54,131r58,140r-42,0r-50,-138r0,138r-37,0r0,-271","w":152},"L":{"d":"22,-271r36,0r0,240r60,0r0,31r-96,0r0,-271","w":119,"k":{"T":21,"V":21,"W":18,"y":13,"\u00fd":13,"\u00ff":13,"Y":25,"\u00dd":25}},"M":{"d":"31,-271r31,0r39,195v9,-68,23,-130,35,-195r32,0r25,271r-35,0r-10,-187r-34,187r-25,0r-36,-187r-10,187r-34,0","w":201},"N":{"d":"51,-209r7,109r0,100r-36,0r0,-271r35,0r63,206v1,-34,-8,-74,-8,-110r0,-96r36,0r0,271r-34,0","w":169},"O":{"d":"86,-275v70,0,70,90,70,139v0,49,0,140,-70,140v-70,0,-71,-91,-71,-140v0,-49,1,-139,71,-139xm86,-241v-28,0,-33,47,-33,105v0,58,5,106,33,106v28,0,32,-48,32,-106v0,-58,-4,-105,-32,-105","w":171},"P":{"d":"58,0r-36,0r0,-271v63,3,114,-18,114,72v0,55,-22,81,-78,79r0,120xm98,-196v0,-26,-10,-47,-40,-45r0,90v31,2,40,-15,40,-45","w":139,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,",":46,".":46}},"Q":{"d":"165,4r-24,17r-19,-29v-10,8,-22,12,-36,12v-70,0,-71,-91,-71,-140v0,-49,1,-139,71,-139v70,0,70,90,70,139v0,31,-1,75,-16,106xm86,-241v-28,0,-33,47,-33,105v0,65,7,124,47,100r-22,-33r22,-17v5,6,8,14,14,19v5,-53,14,-175,-28,-174","w":172},"R":{"d":"22,0r0,-271v61,4,110,-20,110,69v0,26,-7,65,-37,70r50,132r-37,0r-50,-133r0,133r-36,0xm58,-151v27,2,36,-16,36,-43v0,-28,-5,-50,-36,-47r0,90","w":149,"k":{"T":6,"V":3,"W":3,"Y":6,"\u00dd":6}},"S":{"d":"106,-266r-1,36v-21,-21,-64,-10,-62,24v1,29,23,43,37,59v23,26,39,43,39,80v0,55,-59,92,-104,58r0,-37v23,23,68,17,68,-23v0,-54,-76,-66,-76,-137v0,-53,51,-86,99,-60","w":127},"T":{"d":"-1,-271r119,0r0,31r-41,0r0,240r-36,0r0,-240r-42,0r0,-31","w":116,"k":{"\u00fc":14,"\u00f2":17,"\u00f6":17,"\u00ec":3,"\u00ee":3,"\u00ed":3,"\u00e8":17,"\u00eb":17,"\u00ea":17,"\u00e3":17,"\u00e5":17,"\u00e0":17,"\u00e4":17,"\u00e2":17,"w":17,"y":17,"\u00fd":17,"\u00ff":17,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":17,".":24,"-":14,"a":17,"\u00e6":17,"\u00e1":17,"c":17,"\u00e7":17,"e":17,"\u00e9":17,"i":3,"\u00ef":3,"o":17,"\u00f8":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"r":14,"s":17,"u":14,"\u00fa":14,"\u00fb":14,"\u00f9":14,":":14,";":14}},"U":{"d":"22,-271r36,0r0,199v0,35,10,42,25,42v25,0,28,-16,28,-38r0,-203r36,0r0,192v0,36,0,83,-63,83v-57,0,-62,-39,-62,-88r0,-187","w":168},"V":{"d":"3,-271r36,0r31,204r33,-204r34,0r-53,271r-29,0","w":139,"k":{"\u00f6":6,"\u00f4":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":6,"a":6,"\u00e6":6,"\u00e1":6,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u00f3":6,"\u00f2":6,"\u00f5":6,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":6,";":6}},"W":{"d":"1,-271r35,0r28,204r29,-204r28,0r31,202r9,-87r17,-115r35,0r-48,271r-29,0r-29,-202v-6,71,-19,136,-30,202r-29,0","w":213,"k":{"\u00fc":3,"\u00f6":6,"\u00ea":6,"\u00e4":6,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":27,".":27,"-":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,"r":3,"u":3,"\u00fa":3,"\u00fb":3,"\u00f9":3,":":6,";":6}},"X":{"d":"12,-271r36,0r32,97r29,-97r36,0r-50,133r50,138r-36,0v-11,-33,-26,-66,-32,-102v-5,37,-20,68,-29,102r-39,0r51,-138","w":153},"Y":{"d":"1,-271r39,0r33,125v7,-45,19,-84,29,-125r39,0r-51,154r0,117r-36,0r0,-117","w":141,"k":{"\u00fc":13,"\u00f6":20,"v":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":26,".":26,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"o":20,"\u00f8":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":13,";":13,"p":13,"q":20}},"Z":{"d":"15,-271r120,0r-82,240r78,0r0,31r-126,0r83,-240r-73,0r0,-31","w":141},"[":{"d":"14,-271r79,0r0,24r-48,0r0,260r48,0r0,24r-79,0r0,-308","w":108},"\\":{"d":"-39,-299r29,0r139,336r-29,0","w":90},"]":{"d":"15,-271r79,0r0,308r-79,0r0,-24r48,0r0,-260r-48,0r0,-24","w":108},"^":{"d":"81,-271r18,0r66,150r-25,0r-50,-117r-50,117r-24,0","w":180},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v16,0,27,10,33,23r0,-20r34,0r0,182r-34,0","w":136},"b":{"d":"49,-162v9,-11,13,-24,33,-23v43,0,44,62,44,92v0,30,0,96,-42,96v-20,1,-26,-12,-35,-26r0,23r-34,0r0,-299r34,0r0,137xm69,-27v25,0,23,-49,23,-64v0,-15,2,-63,-23,-63v-23,0,-21,49,-21,63v0,14,-2,64,21,64","w":136},"c":{"d":"91,-179r0,35v-4,-5,-8,-9,-16,-9v-29,0,-30,41,-30,60v0,18,1,64,29,64v8,0,12,-3,17,-7r0,32v-9,5,-17,7,-27,7v-48,0,-54,-56,-54,-92v0,-37,4,-96,54,-96v10,0,18,2,27,6","w":100},"d":{"d":"87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v17,0,26,9,33,23r0,-137r34,0r0,299r-34,0xm67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64","w":136},"e":{"d":"45,-108r40,0v0,-14,1,-46,-20,-46v-21,0,-20,32,-20,46xm120,-84r-75,0v0,15,-1,57,21,57v18,0,21,-20,21,-34r32,0v0,33,-15,64,-53,64v-51,0,-56,-54,-56,-93v0,-37,5,-95,55,-95v51,0,55,60,55,101","w":129},"f":{"d":"8,-182r16,0v-1,-59,-10,-139,64,-115r0,36v-17,-14,-35,5,-30,24r0,55r28,0r0,27r-28,0r0,155r-34,0r0,-155r-16,0r0,-27","w":89},"g":{"d":"88,-90v0,-15,0,-64,-22,-64v-23,0,-21,49,-21,62v0,14,-2,65,22,65v24,0,21,-48,21,-63xm122,-182r0,183v0,65,-19,76,-55,76v-35,0,-56,-20,-54,-57r33,0v-1,13,4,27,21,27v32,-2,20,-42,20,-69v-5,15,-15,25,-32,25v-43,0,-45,-62,-45,-93v0,-29,0,-95,44,-95v18,0,26,11,33,25v3,-5,0,-15,1,-22r34,0","w":137},"h":{"d":"50,-161v8,-14,18,-24,37,-24v36,0,37,32,37,60r0,125r-34,0r0,-126v0,-13,-2,-28,-20,-28v-22,0,-20,26,-20,41r0,113r-34,0r0,-299r34,0r0,138","w":139},"i":{"d":"49,-182r0,182r-34,0r0,-182r34,0xm33,-214v-13,0,-23,-10,-23,-23v0,-12,10,-22,23,-22v12,0,22,10,22,22v0,13,-10,23,-22,23","w":64},"j":{"d":"49,-182r0,257r-34,0r0,-257r34,0xm33,-214v-13,0,-23,-10,-23,-23v0,-12,10,-22,23,-22v12,0,22,10,22,22v0,13,-10,23,-22,23","w":64},"k":{"d":"16,-299r34,0r0,198r43,-81r37,0r-46,81r52,101r-39,0r-47,-96r0,96r-34,0r0,-299","w":142},"l":{"d":"49,-299r0,299r-34,0r0,-299r34,0","w":64},"m":{"d":"50,-182r0,23v10,-32,61,-36,69,0v9,-14,19,-26,38,-26v32,0,40,20,40,44r0,141r-34,0r0,-127v0,-13,-1,-27,-18,-27v-24,0,-22,22,-22,38r0,116r-34,0r0,-123v0,-14,0,-31,-19,-31v-21,0,-21,23,-21,38r0,116r-34,0r0,-182r35,0","w":212},"n":{"d":"50,-161v8,-14,18,-24,37,-24v36,0,37,32,37,60r0,125r-34,0r0,-126v0,-13,-2,-28,-20,-28v-22,0,-20,26,-20,41r0,113r-34,0r0,-182r34,0r0,21","w":139},"o":{"d":"68,3v-52,0,-58,-55,-58,-93v0,-40,6,-95,58,-95v52,0,57,55,57,95v0,38,-5,93,-57,93xm68,-28v26,0,22,-49,22,-62v0,-14,4,-64,-22,-64v-26,0,-23,50,-23,64v0,13,-3,62,23,62","w":135},"p":{"d":"69,-27v21,0,23,-34,23,-64v0,-15,2,-63,-23,-63v-23,0,-21,48,-21,63v0,14,-2,64,21,64xm49,-182v1,7,-2,18,1,24v6,-15,15,-27,34,-27v42,0,42,66,42,96v0,31,-1,92,-44,92v-19,1,-24,-11,-33,-24r0,96r-34,0r0,-257r34,0","w":136},"q":{"d":"67,-27v23,0,22,-50,22,-64v0,-15,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,-21v-6,14,-13,24,-33,24v-43,0,-44,-61,-44,-92v0,-30,1,-96,43,-96v19,0,28,11,34,27r0,-24r34,0r0,257r-34,0r0,-96","w":136},"r":{"d":"50,-182r0,23v8,-16,20,-26,39,-26r0,34v-65,-8,-31,94,-39,151r-34,0r0,-182r34,0","w":96,"k":{"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,",":27,".":27,"x":-7,"z":-7,"-":13}},"s":{"d":"84,-177r0,32v-13,-14,-48,-13,-48,10v1,31,57,32,57,84v0,44,-46,68,-82,45r0,-33v14,16,51,18,51,-11v0,-32,-57,-35,-57,-85v0,-41,45,-63,79,-42","w":99},"t":{"d":"23,-233r34,0r0,51r18,0r0,27r-18,0r0,155r-34,0r0,-155r-19,0r0,-27r19,0r0,-51","w":79},"u":{"d":"16,-182r34,0r0,114v0,16,-2,40,21,40v23,0,20,-22,20,-38r0,-116r34,0v-8,73,30,185,-53,185v-89,1,-46,-111,-56,-185","w":140},"v":{"d":"5,-182r36,0r25,138v6,-48,16,-93,25,-138r33,0r-48,182r-22,0","w":128,"k":{",":24,".":20}},"w":{"d":"-1,-182r36,0r20,131r22,-131r24,0r21,131r21,-131r33,0r-42,182r-23,0v-8,-44,-20,-84,-22,-134r-22,134r-24,0","w":175,"k":{",":13,".":9}},"x":{"d":"5,-182r40,0r25,62v7,-22,15,-42,24,-62r35,0r-41,86r50,96r-40,0v-11,-23,-23,-49,-31,-74v-3,27,-18,51,-27,74r-35,0r45,-96","w":142},"y":{"d":"1,-182r38,0r28,127r30,-127r34,0r-74,257r-35,0r28,-90","w":134,"k":{",":24,".":20}},"z":{"d":"10,-182r106,0r-61,152r57,0r0,30r-107,0r63,-152r-58,0r0,-30","w":120},"{":{"d":"1,-108r0,-19v15,-2,32,-7,32,-29r0,-68v1,-41,24,-48,59,-47r0,20v-66,0,10,121,-62,134v48,8,33,55,33,101v0,22,8,29,29,31r0,21v-36,2,-58,-6,-59,-48r0,-67v-1,-22,-17,-27,-32,-29","w":92},"|":{"d":"32,-283r26,0r0,360r-26,0r0,-360","w":90},"}":{"d":"1,36r0,-21v66,0,-10,-121,62,-133v-48,-8,-33,-56,-33,-102v0,-22,-8,-29,-29,-31r0,-20v35,-1,58,5,59,47v1,40,-9,100,32,97r0,19v-15,2,-32,7,-32,29r0,67v-1,41,-23,50,-59,48","w":92},"~":{"d":"123,-67v-22,0,-43,-25,-65,-25v-15,0,-24,19,-30,33r-12,-18v9,-20,21,-42,42,-42v19,-1,49,25,65,25v13,0,23,-17,29,-30r13,17v-9,19,-22,40,-42,40","w":180},"\u00a1":{"d":"45,-201v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-21,-10,-21,-22v0,-12,9,-22,21,-22xm28,74r0,-206r36,0r0,206r-36,0","w":90},"\u00a2":{"d":"79,-41v-38,-10,-45,-47,-44,-93v0,-33,3,-87,44,-95r0,-25r17,0r0,26v5,1,12,2,17,4r0,32v-34,-23,-41,33,-41,57v0,23,7,80,41,59r0,30v-5,3,-10,4,-18,4r0,24r-16,0r0,-23"},"\u00a3":{"d":"8,-13v3,-17,17,-34,38,-32v12,-17,8,-40,0,-58r-31,0r0,-14r26,0v-34,-54,-43,-158,42,-158v33,0,55,21,56,54r-28,13v1,-19,-6,-37,-29,-37v-62,0,-19,91,-5,128r35,0r0,14r-33,0v8,22,4,45,-5,65v12,8,34,17,38,-2r29,10v-6,18,-17,33,-38,33v-29,1,-55,-34,-68,-5"},"\u00a5":{"d":"96,0r-36,0r0,-95r-42,0r0,-18r42,0v-1,-12,-6,-20,-9,-30r-33,0r0,-18r27,0r-41,-110r39,0r36,125v5,-45,17,-84,26,-125r39,0r-34,110r29,0r0,18r-35,0v-2,10,-7,18,-8,30r43,0r0,18r-43,0r0,95"},"\u00a7":{"d":"64,-152v-34,25,-6,67,26,76v37,-25,11,-70,-26,-76xm100,-10v0,-56,-86,-43,-86,-107v0,-22,9,-40,28,-51v-40,-30,-21,-107,34,-107v37,0,56,25,57,60r-37,0v-1,-12,-3,-29,-19,-29v-21,0,-21,21,-21,29v0,25,15,33,36,41v62,21,65,83,23,118v39,31,20,109,-37,106v-39,-2,-61,-24,-59,-65r36,0v0,15,3,34,22,34v17,0,23,-14,23,-29","w":149},"\u00a4":{"d":"-6,-40r14,-15v-20,-31,-21,-76,0,-107r-14,-16r17,-19r14,16v29,-24,70,-24,97,0r15,-16r17,19r-14,16v19,32,21,76,0,107r14,15r-17,19r-15,-15v-28,24,-70,24,-97,0r-14,15xm75,-173v-34,0,-56,28,-56,65v0,35,23,64,54,64v32,0,56,-28,56,-65v0,-34,-23,-64,-54,-64"},"'":{"d":"34,-190r-4,-81r30,0r-4,81r-22,0","w":90},"\u00ab":{"d":"52,-94r47,-80r16,10r-42,70r38,72r-16,9xm9,-94r47,-80r16,10r-41,70r37,72r-16,9","w":128},"\u00b7":{"d":"37,-70v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22","w":73},"\u00b6":{"d":"0,-202v0,-37,27,-69,66,-69r75,0r0,311r-29,0r0,-287r-27,0r0,287r-28,0r0,-173v-30,0,-57,-32,-57,-69","w":158},"\u00bb":{"d":"76,-94r-43,81r-15,-9r37,-72r-41,-70r16,-10xm119,-94r-43,81r-16,-9r38,-72r-41,-70r16,-10","w":128},"\u00bf":{"d":"50,-132r31,0r0,81v-32,-3,-36,18,-34,44v0,12,-4,53,18,53v18,0,15,-24,15,-39r34,0v-1,38,-2,70,-48,70v-51,0,-54,-39,-54,-80v0,-27,1,-73,38,-72r0,-57xm66,-201v12,0,21,10,21,22v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22","w":122},"`":{"d":"24,-253r24,-16r29,54r-18,11","w":100},"\u00b4":{"d":"77,-253r-35,49r-18,-11r29,-54","w":100},"\u00af":{"d":"107,-237r-113,0r0,-20r113,0r0,20","w":100},"\u00a8":{"d":"22,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm80,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":100},"\u00b8":{"d":"50,18r23,12r-30,48r-16,-9","w":100},"\u00c6":{"d":"58,-271r90,0r6,31r-59,0r19,86r54,0r7,31r-54,0r21,92r58,0r7,31r-94,0r-11,-53r-57,0r-10,53r-35,0xm96,-81r-24,-139r-21,139r45,0","w":203},"\u00aa":{"d":"45,-273r22,0r0,109r-22,0v-1,-4,2,-12,-1,-14v-4,9,-8,16,-21,16v-27,0,-28,-40,-28,-58v0,-18,0,-55,28,-55v10,0,18,6,22,14r0,-12xm32,-257v-16,0,-15,29,-15,38v0,9,-1,39,15,39v15,0,14,-30,14,-39v0,-9,1,-38,-14,-38","w":61},"\u00d8":{"d":"54,-94r58,-117v-5,-19,-12,-30,-26,-30v-37,0,-34,94,-32,147xm117,-175r-57,117v5,18,13,28,26,28v36,0,33,-92,31,-145xm8,1r19,-40v-12,-30,-12,-70,-12,-97v0,-49,1,-139,71,-139v22,0,37,9,47,23r13,-26r18,8r-19,39v11,30,11,68,11,95v0,49,0,140,-70,140v-22,0,-36,-9,-46,-22r-14,28","w":171},"\u00ba":{"d":"31,-162v-33,0,-37,-32,-37,-56v0,-24,3,-57,37,-57v34,0,37,33,37,57v0,24,-4,56,-37,56xm31,-256v-16,0,-14,29,-14,38v0,9,-2,37,14,37v15,0,14,-29,14,-37v0,-9,2,-38,-14,-38","w":61},"\u00e6":{"d":"158,-108v0,-18,0,-46,-20,-48v-22,2,-21,30,-21,48r41,0xm192,-84r-75,0v1,17,-3,58,23,58v18,0,19,-21,19,-36r33,0v-1,34,-13,65,-52,65v-21,0,-37,-9,-44,-29v-7,18,-19,29,-40,29v-34,0,-46,-26,-46,-57v0,-29,9,-63,45,-63v11,0,23,8,29,11v1,-27,-1,-47,-30,-46v-13,0,-24,3,-35,10r0,-33v27,-15,67,-15,80,14v8,-15,22,-24,39,-24v52,2,55,57,54,101xm64,-91v-30,3,-28,64,1,67v30,-3,29,-65,-1,-67","w":201},"\u00f8":{"d":"50,-43v3,9,9,16,19,16v30,-7,21,-56,20,-84xm30,-12r-9,15r-14,-9r14,-22v-18,-57,-26,-157,46,-157v15,0,28,4,38,15r12,-18r14,8r-16,26v17,58,25,157,-47,157v-15,0,-28,-5,-38,-15xm85,-139v-3,-10,-7,-16,-18,-16v-30,7,-23,57,-20,84","w":135},"\u00df":{"d":"23,-182v2,-58,-12,-121,53,-120v43,0,58,22,58,63v1,18,-4,45,-25,54v33,9,31,55,31,85v1,73,-5,104,-67,100r0,-30v34,2,33,-21,33,-68v0,-29,2,-73,-37,-72r0,-30v27,1,31,-15,31,-38v0,-11,-2,-33,-22,-33v-23,0,-21,29,-21,41r0,230r-34,0r0,-155r-15,0r0,-27r15,0","w":153},"\u00b9":{"d":"16,-273r43,0r0,163r-26,0r0,-143r-17,0r0,-20","w":88},"\u00ac":{"d":"139,-42r0,-71r-123,0r0,-25r149,0r0,96r-26,0","w":180},"\u00b5":{"d":"90,-182r34,0r0,125v0,28,-1,60,-37,60v-18,0,-29,-9,-37,-24r0,94r-34,0r0,-255r34,0r0,114v0,15,-2,41,20,41v18,0,20,-16,20,-29r0,-126","w":139},"\u00d0":{"d":"22,-155r0,-116v90,1,131,-16,131,140v0,140,-49,130,-131,131r0,-123r-25,0r0,-32r25,0xm58,-241r0,86r25,0r0,32r-25,0r0,92v57,2,57,-47,57,-100v0,-54,0,-114,-57,-110","w":167},"\u00bd":{"d":"12,-273r43,0r0,163r-26,0r0,-142r-17,0r0,-21xm208,0r-78,0v14,-45,54,-75,54,-126v0,-9,-3,-19,-14,-19v-16,0,-13,25,-13,35r-26,0v0,-30,1,-55,39,-55v83,0,16,111,-5,145r43,0r0,20xm156,-271r22,0r-134,271r-23,0","w":221},"\u00b1":{"d":"77,-126r0,-57r26,0r0,57r62,0r0,25r-62,0r0,57r-26,0r0,-57r-61,0r0,-25r61,0xm16,-1r0,-25r149,0r0,25r-149,0","w":180},"\u00de":{"d":"98,-142v0,-26,-10,-47,-40,-45r0,90v31,2,40,-15,40,-45xm58,-271r0,54v38,0,78,2,78,72v0,55,-22,81,-78,79r0,66r-36,0r0,-271r36,0","w":142},"\u00bc":{"d":"202,-163r0,102r11,0r0,17r-11,0r0,44r-25,0r0,-44r-51,0r0,-19r48,-100r28,0xm177,-61v-1,-22,2,-49,-1,-69r-28,69r29,0xm167,-271r23,0r-135,271r-22,0xm16,-273r43,0r0,163r-26,0r0,-143r-17,0r0,-20","w":221},"\u00f7":{"d":"16,-80r0,-25r149,0r0,25r-149,0xm104,-147r-28,0r0,-36r28,0r0,36xm104,-2r-28,0r0,-36r28,0r0,36","w":180},"\u00a6":{"d":"32,-238r26,0r0,90r-26,0r0,-90xm32,-58r26,0r0,90r-26,0r0,-90","w":90},"\u00b0":{"d":"72,-271v30,0,54,24,54,54v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54xm72,-249v-17,0,-32,15,-32,32v0,18,15,31,32,31v17,0,32,-13,32,-31v0,-17,-15,-32,-32,-32","w":144},"\u00fe":{"d":"69,-27v21,0,23,-34,23,-64v0,-15,2,-63,-23,-63v-23,0,-21,48,-21,63v0,14,-2,64,21,64xm49,-250r1,92v6,-15,15,-27,34,-27v42,0,42,66,42,96v0,31,-1,92,-44,92v-19,1,-24,-11,-33,-24r0,96r-34,0r0,-325r34,0","w":136},"\u00be":{"d":"175,-44r-50,0r0,-19r47,-100r29,0r0,102r11,0r0,17r-11,0r0,44r-26,0r0,-44xm175,-61r0,-69r-29,69r29,0xm175,-271r22,0r-135,271r-22,0xm48,-275v30,0,38,18,38,42v0,16,-4,33,-21,40v41,13,29,88,-19,85v-30,-2,-39,-15,-38,-42r25,0v0,12,1,22,13,22v26,-6,23,-65,-12,-57r0,-19v21,1,28,-6,27,-25v0,-9,0,-26,-12,-26v-13,1,-13,14,-13,26r-25,0v4,-21,0,-46,37,-46","w":221},"\u00b2":{"d":"45,-275v85,0,16,111,-5,145r44,0r0,20r-79,0v16,-43,54,-74,54,-126v0,-9,-3,-19,-14,-19v-16,0,-11,25,-12,35r-27,0v0,-30,1,-55,39,-55","w":88},"\u00ae":{"d":"144,4v-77,0,-139,-62,-139,-140v0,-77,62,-139,139,-139v77,0,140,62,140,139v0,78,-63,140,-140,140xm144,-19v66,0,117,-51,117,-117v0,-65,-51,-116,-117,-116v-66,0,-117,51,-117,116v0,66,51,117,117,117xm89,-215v0,0,124,-10,124,43v0,32,-23,42,-50,43r47,71r-25,0r-44,-71r-30,0r0,71r-22,0r0,-157xm111,-145v35,-3,79,12,79,-28v0,-36,-46,-22,-79,-25r0,53","w":288},"\u00f0":{"d":"45,-90v0,35,2,62,23,62v23,0,22,-32,22,-62v0,-28,1,-64,-22,-64v-22,0,-23,34,-23,64xm34,-212r-11,-18r27,-13v-13,-20,-25,-39,-33,-49r27,-10v13,16,23,31,33,46r26,-14r11,18r-27,14v27,44,38,96,38,144v0,47,-5,97,-57,97v-52,0,-58,-53,-58,-93v0,-42,19,-105,74,-84v-6,-19,-13,-33,-24,-51","w":135},"\u00d7":{"d":"72,-91r-56,-57r18,-18r56,57r57,-57r18,18r-57,57r57,56r-18,18r-57,-57r-57,57r-17,-18","w":180},"\u00b3":{"d":"45,-275v48,0,49,66,17,82v21,4,22,21,22,37v0,27,-8,48,-41,48v-30,0,-40,-15,-39,-42r25,0v-1,12,2,22,14,22v26,-7,22,-65,-13,-57r0,-19v21,1,28,-6,27,-25v0,-9,0,-26,-12,-26v-13,1,-13,14,-13,26r-24,0v1,-23,1,-46,37,-46","w":88},"\u00a9":{"d":"144,4v-77,0,-139,-62,-139,-140v0,-77,62,-139,139,-139v77,0,140,62,140,139v0,78,-63,140,-140,140xm27,-136v0,66,51,117,117,117v66,0,117,-51,117,-117v0,-65,-51,-116,-117,-116v-66,0,-117,51,-117,116xm192,-111r23,0v-17,92,-149,58,-142,-26v-11,-86,128,-111,142,-28r-23,0v-3,-22,-21,-33,-42,-33v-36,0,-54,25,-54,60v0,33,18,63,54,63v21,0,40,-13,42,-36","w":288},"\u00c1":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0xm107,-332r-36,49r-18,-11r30,-53","w":149},"\u00c2":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0xm75,-349r45,51r-17,13r-28,-30r-26,30r-19,-13","w":149},"\u00c4":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0xm46,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm104,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":149},"\u00c0":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0xm42,-332r25,-15r29,53r-18,11","w":149},"\u00c5":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0xm75,-282v-16,0,-30,-11,-30,-28v0,-17,13,-30,30,-30v17,0,29,13,29,30v0,15,-14,28,-29,28xm75,-298v6,0,12,-6,12,-12v0,-7,-4,-13,-12,-13v-8,0,-13,6,-13,13v0,7,6,12,13,12","w":149},"\u00c3":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0xm100,-337r20,0v0,18,-6,36,-27,36v-13,0,-24,-12,-34,-12v-6,0,-8,4,-8,10r-21,0v0,-17,7,-35,27,-35v17,0,25,11,36,11v6,0,7,-6,7,-10","w":149},"\u00c7":{"d":"127,-267r0,33v-7,-4,-15,-7,-23,-7v-50,0,-51,73,-51,107v0,43,15,128,74,98r0,32v-9,6,-19,8,-29,8v-73,0,-83,-78,-83,-135v0,-54,7,-144,81,-144v12,0,21,2,31,8xm77,18r23,12r-30,48r-16,-9","w":132},"\u00c9":{"d":"22,-271r97,0r0,31r-61,0r0,85r54,0r0,32r-54,0r0,92r61,0r0,31r-97,0r0,-271xm106,-332r-36,49r-18,-11r30,-53","w":124},"\u00ca":{"d":"22,-271r97,0r0,31r-61,0r0,85r54,0r0,32r-54,0r0,92r61,0r0,31r-97,0r0,-271xm68,-349r44,51r-17,13r-28,-30r-26,30r-19,-13","w":124},"\u00cb":{"d":"22,-271r97,0r0,31r-61,0r0,85r54,0r0,32r-54,0r0,92r61,0r0,31r-97,0r0,-271xm40,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,19,10,19,20v0,11,-8,21,-19,21xm98,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,19,10,19,20v0,11,-7,21,-19,21","w":124},"\u00c8":{"d":"22,-271r97,0r0,31r-61,0r0,85r54,0r0,32r-54,0r0,92r61,0r0,31r-97,0r0,-271xm36,-332r24,-15r30,53r-18,11","w":124},"\u00cd":{"d":"58,-271r0,271r-36,0r0,-271r36,0xm72,-332r-35,49r-18,-11r29,-53","w":79},"\u00ce":{"d":"58,-271r0,271r-36,0r0,-271r36,0xm41,-349r44,51r-17,13r-28,-30r-26,30r-19,-13","w":79},"\u00cf":{"d":"58,-271r0,271r-36,0r0,-271r36,0xm12,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,19,10,19,20v0,11,-8,21,-19,21xm69,-296v-11,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":79},"\u00cc":{"d":"58,-271r0,271r-36,0r0,-271r36,0xm8,-332r24,-15r30,53r-18,11","w":79},"\u00d1":{"d":"51,-209r7,109r0,100r-36,0r0,-271r35,0r63,206v1,-34,-8,-74,-8,-110r0,-96r36,0r0,271r-34,0xm110,-337r20,0v0,18,-5,36,-26,36v-13,0,-24,-12,-34,-12v-6,0,-8,4,-8,10r-22,0v0,-17,7,-35,27,-35v17,0,25,11,36,11v6,0,7,-6,7,-10","w":169},"\u00d3":{"d":"86,-275v70,0,70,90,70,139v0,49,0,140,-70,140v-70,0,-71,-91,-71,-140v0,-49,1,-139,71,-139xm86,-241v-28,0,-33,47,-33,105v0,58,5,106,33,106v28,0,32,-48,32,-106v0,-58,-4,-105,-32,-105xm122,-332r-36,49r-18,-11r30,-53","w":171},"\u00d4":{"d":"86,-275v70,0,70,90,70,139v0,49,0,140,-70,140v-70,0,-71,-91,-71,-140v0,-49,1,-139,71,-139xm86,-241v-28,0,-33,47,-33,105v0,58,5,106,33,106v28,0,32,-48,32,-106v0,-58,-4,-105,-32,-105xm86,-349r45,51r-17,13r-28,-30r-26,30r-19,-13","w":171},"\u00d6":{"d":"86,-275v70,0,70,90,70,139v0,49,0,140,-70,140v-70,0,-71,-91,-71,-140v0,-49,1,-139,71,-139xm86,-241v-28,0,-33,47,-33,105v0,58,5,106,33,106v28,0,32,-48,32,-106v0,-58,-4,-105,-32,-105xm57,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm115,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":171},"\u00d2":{"d":"86,-275v70,0,70,90,70,139v0,49,0,140,-70,140v-70,0,-71,-91,-71,-140v0,-49,1,-139,71,-139xm86,-241v-28,0,-33,47,-33,105v0,58,5,106,33,106v28,0,32,-48,32,-106v0,-58,-4,-105,-32,-105xm50,-332r24,-15r30,53r-18,11","w":171},"\u00d5":{"d":"86,-275v70,0,70,90,70,139v0,49,0,140,-70,140v-70,0,-71,-91,-71,-140v0,-49,1,-139,71,-139xm86,-241v-28,0,-33,47,-33,105v0,58,5,106,33,106v28,0,32,-48,32,-106v0,-58,-4,-105,-32,-105xm111,-337r20,0v0,18,-6,36,-27,36v-13,0,-23,-12,-33,-12v-6,0,-8,4,-8,10r-22,0v0,-17,7,-35,27,-35v17,0,25,11,36,11v6,0,7,-6,7,-10","w":171},"\u00da":{"d":"22,-271r36,0r0,199v0,35,10,42,25,42v25,0,28,-16,28,-38r0,-203r36,0r0,192v0,36,0,83,-63,83v-57,0,-62,-39,-62,-88r0,-187xm122,-332r-36,49r-18,-11r30,-53","w":168},"\u00db":{"d":"22,-271r36,0r0,199v0,35,10,42,25,42v25,0,28,-16,28,-38r0,-203r36,0r0,192v0,36,0,83,-63,83v-57,0,-62,-39,-62,-88r0,-187xm85,-349r44,51r-17,13r-28,-30r-26,30r-18,-13","w":168},"\u00dc":{"d":"22,-271r36,0r0,199v0,35,10,42,25,42v25,0,28,-16,28,-38r0,-203r36,0r0,192v0,36,0,83,-63,83v-57,0,-62,-39,-62,-88r0,-187xm56,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm114,-296v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":168},"\u00d9":{"d":"22,-271r36,0r0,199v0,35,10,42,25,42v25,0,28,-16,28,-38r0,-203r36,0r0,192v0,36,0,83,-63,83v-57,0,-62,-39,-62,-88r0,-187xm47,-332r24,-15r29,53r-18,11","w":168},"\u00dd":{"d":"1,-271r39,0r33,125v7,-45,19,-84,29,-125r39,0r-51,154r0,117r-36,0r0,-117xm112,-332r-36,49r-18,-11r30,-53","w":141,"k":{"v":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":26,".":26,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"o":20,"\u00f8":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":13,";":13,"p":13,"q":20}},"\u00e1":{"d":"67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v16,0,27,10,33,23r0,-20r34,0r0,182r-34,0xm106,-253r-35,49r-18,-11r29,-54","w":136},"\u00e2":{"d":"67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v16,0,27,10,33,23r0,-20r34,0r0,182r-34,0xm69,-270r44,50r-17,14r-28,-30r-26,30r-18,-14","w":136},"\u00e4":{"d":"67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v16,0,27,10,33,23r0,-20r34,0r0,182r-34,0xm40,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm98,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":136},"\u00e0":{"d":"67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v16,0,27,10,33,23r0,-20r34,0r0,182r-34,0xm35,-253r24,-16r29,54r-18,11","w":136},"\u00e5":{"d":"67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v16,0,27,10,33,23r0,-20r34,0r0,182r-34,0xm69,-210v-16,0,-30,-11,-30,-28v0,-17,12,-31,29,-31v17,0,30,14,30,31v0,15,-14,28,-29,28xm69,-227v6,0,12,-6,12,-12v0,-7,-5,-13,-13,-13v-8,0,-12,6,-12,13v0,7,6,12,13,12","w":136},"\u00e3":{"d":"67,-27v23,0,22,-50,22,-64v0,-14,1,-63,-22,-63v-25,0,-22,48,-22,63v0,15,-3,64,22,64xm87,0r0,-23v-7,16,-15,26,-34,26v-42,0,-43,-66,-43,-96v0,-30,1,-92,44,-92v16,0,27,10,33,23r0,-20r34,0r0,182r-34,0xm94,-258r20,0v0,18,-6,36,-27,36v-13,0,-24,-12,-34,-12v-6,0,-8,4,-8,10r-22,0v0,-17,7,-36,27,-36v17,0,26,12,37,12v6,0,7,-6,7,-10","w":136},"\u00e7":{"d":"91,-179r0,35v-4,-5,-8,-9,-16,-9v-29,0,-30,41,-30,60v0,18,1,64,29,64v8,0,12,-3,17,-7r0,32v-9,5,-17,7,-27,7v-48,0,-54,-56,-54,-92v0,-37,4,-96,54,-96v10,0,18,2,27,6xm55,18r23,12r-30,48r-16,-9","w":100},"\u00e9":{"d":"45,-108r40,0v0,-14,1,-46,-20,-46v-21,0,-20,32,-20,46xm120,-84r-75,0v0,15,-1,57,21,57v18,0,21,-20,21,-34r32,0v0,33,-15,64,-53,64v-51,0,-56,-54,-56,-93v0,-37,5,-95,55,-95v51,0,55,60,55,101xm103,-253r-36,49r-18,-11r30,-54","w":129},"\u00ea":{"d":"45,-108r40,0v0,-14,1,-46,-20,-46v-21,0,-20,32,-20,46xm120,-84r-75,0v0,15,-1,57,21,57v18,0,21,-20,21,-34r32,0v0,33,-15,64,-53,64v-51,0,-56,-54,-56,-93v0,-37,5,-95,55,-95v51,0,55,60,55,101xm66,-270r44,50r-17,14r-28,-30r-26,30r-18,-14","w":129},"\u00eb":{"d":"45,-108r40,0v0,-14,1,-46,-20,-46v-21,0,-20,32,-20,46xm120,-84r-75,0v0,15,-1,57,21,57v18,0,21,-20,21,-34r32,0v0,33,-15,64,-53,64v-51,0,-56,-54,-56,-93v0,-37,5,-95,55,-95v51,0,55,60,55,101xm37,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm95,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,19,10,19,20v0,11,-7,21,-19,21","w":129},"\u00e8":{"d":"45,-108r40,0v0,-14,1,-46,-20,-46v-21,0,-20,32,-20,46xm120,-84r-75,0v0,15,-1,57,21,57v18,0,21,-20,21,-34r32,0v0,33,-15,64,-53,64v-51,0,-56,-54,-56,-93v0,-37,5,-95,55,-95v51,0,55,60,55,101xm28,-253r24,-16r29,54r-18,11","w":129},"\u00ed":{"d":"15,-182r34,0r0,182r-34,0r0,-182xm65,-253r-36,49r-18,-11r30,-54","w":64},"\u00ee":{"d":"15,-182r34,0r0,182r-34,0r0,-182xm33,-270r44,50r-17,14r-28,-30r-26,30r-18,-14","w":64},"\u00ef":{"d":"15,-182r34,0r0,182r-34,0r0,-182xm4,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm62,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":64},"\u00ec":{"d":"15,-182r34,0r0,182r-34,0r0,-182xm0,-253r24,-16r30,54r-18,11","w":64},"\u00f1":{"d":"50,-161v8,-14,18,-24,37,-24v36,0,37,32,37,60r0,125r-34,0r0,-126v0,-13,-2,-28,-20,-28v-22,0,-20,26,-20,41r0,113r-34,0r0,-182r34,0r0,21xm93,-258r20,0v0,18,-6,36,-27,36v-13,0,-23,-12,-33,-12v-6,0,-8,4,-8,10r-22,0v0,-17,7,-36,27,-36v17,0,25,12,36,12v6,0,7,-6,7,-10","w":139},"\u00f3":{"d":"68,3v-52,0,-58,-55,-58,-93v0,-40,6,-95,58,-95v52,0,57,55,57,95v0,38,-5,93,-57,93xm68,-28v26,0,22,-49,22,-62v0,-14,4,-64,-22,-64v-26,0,-23,50,-23,64v0,13,-3,62,23,62xm100,-253r-36,49r-18,-11r30,-54","w":135},"\u00f4":{"d":"68,3v-52,0,-58,-55,-58,-93v0,-40,6,-95,58,-95v52,0,57,55,57,95v0,38,-5,93,-57,93xm68,-28v26,0,22,-49,22,-62v0,-14,4,-64,-22,-64v-26,0,-23,50,-23,64v0,13,-3,62,23,62xm68,-270r45,50r-17,14r-28,-30r-26,30r-19,-14","w":135},"\u00f6":{"d":"68,3v-52,0,-58,-55,-58,-93v0,-40,6,-95,58,-95v52,0,57,55,57,95v0,38,-5,93,-57,93xm68,-28v26,0,22,-49,22,-62v0,-14,4,-64,-22,-64v-26,0,-23,50,-23,64v0,13,-3,62,23,62xm39,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm97,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":135},"\u00f2":{"d":"68,3v-52,0,-58,-55,-58,-93v0,-40,6,-95,58,-95v52,0,57,55,57,95v0,38,-5,93,-57,93xm68,-28v26,0,22,-49,22,-62v0,-14,4,-64,-22,-64v-26,0,-23,50,-23,64v0,13,-3,62,23,62xm36,-253r24,-16r29,54r-18,11","w":135},"\u00f5":{"d":"68,3v-52,0,-58,-55,-58,-93v0,-40,6,-95,58,-95v52,0,57,55,57,95v0,38,-5,93,-57,93xm68,-28v26,0,22,-49,22,-62v0,-14,4,-64,-22,-64v-26,0,-23,50,-23,64v0,13,-3,62,23,62xm93,-258r20,0v0,18,-6,36,-27,36v-13,0,-23,-12,-33,-12v-6,0,-8,4,-8,10r-22,0v0,-17,7,-36,27,-36v17,0,25,12,36,12v6,0,7,-6,7,-10","w":135},"\u00fa":{"d":"16,-182r34,0r0,114v0,16,-2,40,21,40v23,0,20,-22,20,-38r0,-116r34,0v-8,73,30,185,-53,185v-89,1,-46,-111,-56,-185xm108,-253r-36,49r-18,-11r30,-54","w":140},"\u00fb":{"d":"16,-182r34,0r0,114v0,16,-2,40,21,40v23,0,20,-22,20,-38r0,-116r34,0v-8,73,30,185,-53,185v-89,1,-46,-111,-56,-185xm71,-270r44,50r-17,14r-28,-30r-26,30r-18,-14","w":140},"\u00fc":{"d":"16,-182r34,0r0,114v0,16,-2,40,21,40v23,0,20,-22,20,-38r0,-116r34,0v-8,73,30,185,-53,185v-89,1,-46,-111,-56,-185xm42,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm100,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":140},"\u00f9":{"d":"16,-182r34,0r0,114v0,16,-2,40,21,40v23,0,20,-22,20,-38r0,-116r34,0v-8,73,30,185,-53,185v-89,1,-46,-111,-56,-185xm33,-253r24,-16r29,54r-18,11","w":140},"\u00fd":{"d":"1,-182r38,0r28,127r30,-127r34,0r-74,257r-35,0r28,-90xm109,-253r-36,49r-18,-11r30,-54","w":134,"k":{",":24,".":20}},"\u00ff":{"d":"1,-182r38,0r28,127r30,-127r34,0r-74,257r-35,0r28,-90xm39,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-9,21,-20,21xm97,-217v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v11,0,20,10,20,20v0,11,-8,21,-20,21","w":134,"k":{",":24,".":20}},"\u00a0":{"w":73},"\u00ad":{"d":"12,-107r64,0r0,27r-64,0r0,-27","w":87}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1987, 1991, 1992, 1993, 2002 Adobe Systems Incorporated.  All
 * Rights Reserved.
 * 
 * Trademark:
 * Futura is a registered trademark of Bauer Types, S.A.
 * 
 * Full name:
 * FuturaStd-CondensedBold
 * 
 * Designer:
 * Paul Renner
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":176,"face":{"font-family":"Futura Std","font-weight":700,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 7 6 2 2 4 3 2 4","ascent":"297","descent":"-63","x-height":"4","bbox":"-46 -356 295 94","underline-thickness":"18","underline-position":"-18","stemh":"42","stemv":"51","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":88},"!":{"d":"71,-271r0,190r-53,0r0,-190r53,0xm44,-64v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,15,-34,34,-34","w":88},"\"":{"d":"117,-167r-39,0r-5,-104r50,0xm51,-167r-39,0r-5,-104r50,0","w":129},"#":{"d":"158,-122r0,36r-31,0r-10,86r-30,0r10,-86r-26,0r-11,86r-30,0r10,-86r-31,0r0,-36r36,0r4,-34r-31,0r0,-36r35,0r9,-79r30,0r-9,79r27,0r9,-79r30,0r-9,79r27,0r0,36r-32,0r-4,34r27,0xm105,-156r-26,0r-4,34r26,0"},"$":{"d":"75,-274r0,-25r27,0r0,25v23,4,42,13,57,32r-29,32v-16,-25,-71,-31,-72,8v0,18,13,26,28,32v42,17,84,35,84,89v0,42,-26,77,-68,85r0,31r-27,0r0,-31v-26,-4,-49,-12,-67,-31r25,-40v20,30,86,44,86,-7v0,-22,-16,-30,-33,-38v-40,-18,-79,-35,-79,-85v0,-44,26,-70,68,-77"},"%":{"d":"70,-274v45,0,57,41,57,78v0,37,-12,78,-57,78v-45,0,-56,-41,-56,-78v0,-37,11,-78,56,-78xm70,-233v-13,0,-13,29,-13,37v0,8,0,37,13,37v13,0,14,-29,14,-37v0,-8,-1,-37,-14,-37xm238,-154v45,0,57,41,57,78v0,37,-12,79,-57,79v-45,0,-56,-42,-56,-79v0,-37,11,-78,56,-78xm238,-113v-13,0,-13,29,-13,37v0,8,0,37,13,37v13,0,14,-29,14,-37v0,-8,-1,-37,-14,-37xm199,-271r39,0r-129,271r-38,0","w":308},"&":{"d":"87,-179v16,-6,31,-38,6,-43v-24,1,-17,30,-6,43xm110,-53r-35,-54v-33,22,3,85,35,54xm203,-72v-8,11,-20,20,-30,29r29,43r-57,0r-11,-16v-46,47,-125,3,-125,-61v0,-31,16,-53,40,-71v-34,-42,-19,-116,44,-116v32,0,62,19,62,54v0,31,-21,55,-43,74r36,55v9,-10,19,-18,27,-29","w":212},"(":{"d":"55,-276r47,10v-47,97,-48,209,0,305r-47,10v-53,-101,-54,-224,0,-325","w":108},")":{"d":"53,49r-47,-10v46,-97,49,-208,0,-304r47,-11v53,101,54,224,0,325","w":108},"*":{"d":"57,-271r23,0r0,42r36,-22r11,20r-38,21r38,21r-11,21r-36,-24r0,44r-23,0r0,-44r-37,24r-12,-21r38,-21r-38,-21r12,-20r37,22r0,-42","w":135},"+":{"d":"68,-112r0,-68r40,0r0,68r61,0r0,40r-61,0r0,69r-40,0r0,-69r-60,0r0,-40r60,0"},",":{"d":"24,-58r54,0r-54,110r-36,0","w":88},"-":{"d":"12,-143r90,0r0,48r-90,0r0,-48","w":114},".":{"d":"44,-64v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,15,-34,34,-34","w":88},"\/":{"d":"153,-291r41,0r-142,351r-41,0","w":196},"0":{"d":"88,-276v65,0,77,92,77,140v0,48,-12,140,-77,140v-65,0,-76,-92,-76,-140v0,-48,11,-140,76,-140xm88,-227v-27,0,-24,73,-24,91v0,18,-3,91,24,91v27,0,24,-73,24,-91v0,-18,3,-91,-24,-91"},"1":{"d":"40,-271r78,0r0,271r-52,0r0,-225r-26,0r0,-46"},"2":{"d":"68,-177r-49,0v-4,-56,7,-99,70,-99v81,0,81,87,51,143r-46,86r63,0r0,47r-142,0v30,-65,96,-125,96,-205v0,-14,-5,-33,-22,-33v-27,0,-20,37,-21,61"},"3":{"d":"63,-71v-1,15,3,29,20,29v22,0,23,-23,23,-39v0,-30,-10,-39,-40,-38r0,-47v29,0,41,-5,41,-35v0,-12,-3,-28,-19,-28v-17,1,-18,18,-18,34r-46,0v-2,-44,13,-81,63,-81v76,0,92,106,35,136v74,24,46,144,-38,144v-46,0,-73,-30,-71,-75r50,0"},"4":{"d":"82,-271r59,0r0,164r22,0r0,41r-22,0r0,66r-52,0r0,-66r-79,0r0,-40xm89,-107r-1,-103r-40,103r41,0"},"5":{"d":"27,-138r21,-133r104,0r0,46r-67,0r-7,44v55,3,81,37,81,90v0,79,-73,116,-141,83r9,-47v29,28,75,6,75,-37v0,-41,-36,-53,-75,-46"},"6":{"d":"74,-271r52,0r-51,106v10,-9,20,-15,34,-15v41,0,54,52,54,85v0,49,-19,99,-76,99v-54,0,-74,-47,-74,-95v-1,-67,37,-127,61,-180xm90,-132v-20,0,-24,33,-24,47v0,13,4,44,22,44v21,0,23,-35,23,-49v0,-13,-3,-42,-21,-42"},"7":{"d":"26,-271r147,0r-102,271r-56,0r84,-225r-73,0r0,-46"},"8":{"d":"89,4v-85,0,-109,-128,-31,-151v-63,-21,-40,-129,31,-129v70,0,93,107,30,129v32,13,47,38,47,73v0,45,-32,78,-77,78xm87,-234v-21,5,-20,54,0,60v17,0,17,-21,17,-31v0,-10,-2,-29,-17,-29xm88,-120v-18,0,-22,25,-22,39v0,14,3,39,22,39v18,0,23,-26,23,-39v0,-13,-5,-39,-23,-39"},"9":{"d":"103,0r-52,0r51,-107v-10,9,-20,15,-34,15v-41,0,-55,-52,-55,-84v0,-49,19,-100,76,-100v54,0,74,48,74,96v1,67,-36,127,-60,180xm89,-229v-21,0,-23,33,-23,47v0,13,3,43,21,43v21,0,24,-33,24,-47v0,-13,-4,-43,-22,-43"},":":{"d":"44,-64v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,15,-34,34,-34xm44,-185v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,15,-34,34,-34","w":88},";":{"d":"24,-58r54,0r-54,110r-36,0xm44,-185v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,15,-34,34,-34","w":88},"<":{"d":"50,-92r119,58r0,40r-162,-81r0,-36r162,-81r0,40"},"=":{"d":"169,-147r0,40r-161,0r0,-40r161,0xm169,-77r0,40r-161,0r0,-40r161,0"},">":{"d":"8,-34r118,-58r-118,-60r0,-40r161,81r0,36r-161,81r0,-40"},"?":{"d":"78,-229v-15,1,-19,17,-18,32r-51,0v-2,-46,21,-79,69,-79v85,0,104,130,32,156r0,35r-53,0r0,-67v29,7,41,-20,40,-42v0,-12,-2,-35,-19,-35xm50,-30v0,-19,16,-34,34,-34v19,0,34,15,34,34v0,19,-15,34,-34,34v-18,0,-34,-15,-34,-34","w":163},"@":{"d":"181,-134v2,-22,-6,-41,-29,-41v-42,0,-57,78,-15,84v27,4,42,-23,44,-43xm194,-186r4,-20r35,0r-19,111v-5,23,43,-7,44,-58v2,-59,-41,-96,-102,-96v-67,0,-114,47,-114,112v0,104,128,151,193,82r35,0v-27,37,-65,59,-111,59v-89,0,-145,-57,-145,-141v0,-52,34,-139,143,-139v74,0,129,47,129,113v0,86,-75,107,-93,107v-9,0,-19,-8,-16,-23v-38,43,-105,14,-105,-44v0,-64,79,-116,122,-63","w":299},"A":{"d":"66,-271r56,0r66,271r-58,0r-10,-46r-54,0r-10,46r-53,0xm112,-88r-20,-114r-17,114r37,0","w":190},"B":{"d":"107,-82v0,-21,-13,-37,-34,-36r0,73v22,1,34,-14,34,-37xm72,-271v75,-13,116,92,54,132v22,11,34,40,34,63v-1,74,-66,80,-141,76r0,-271r53,0xm105,-194v0,-20,-11,-33,-32,-32r0,66v20,0,32,-13,32,-34","w":172},"C":{"d":"154,-270r0,50v-55,-16,-87,32,-87,81v0,46,31,106,87,86r0,51v-86,24,-145,-59,-145,-136v0,-75,59,-157,145,-132","w":162},"D":{"d":"67,0r-48,0r0,-271r41,0v9,0,121,-15,121,137v0,77,-29,134,-114,134xm73,-48v43,2,55,-52,55,-86v0,-35,-11,-89,-55,-89r0,175","w":190},"E":{"d":"19,-271r108,0r0,50r-54,0r0,59r48,0r0,50r-48,0r0,62r55,0r0,50r-109,0r0,-271","w":141},"F":{"d":"19,-271r108,0r0,50r-54,0r0,58r49,0r0,50r-49,0r0,113r-54,0r0,-271","w":141,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":29,".":29}},"G":{"d":"105,-151r88,0v2,72,-7,155,-87,155v-73,0,-97,-78,-97,-138v0,-63,20,-142,97,-142v41,0,68,26,80,65r-52,20v-3,-14,-6,-35,-27,-35v-36,0,-40,64,-40,90v0,28,1,91,41,91v27,0,32,-37,32,-56r-35,0r0,-50","w":202},"H":{"d":"19,-271r54,0r0,106r54,0r0,-106r54,0r0,271r-54,0r0,-115r-54,0r0,115r-54,0r0,-271","w":199},"I":{"d":"19,-271r54,0r0,271r-54,0r0,-271","w":91},"J":{"d":"109,-271r0,183v0,22,3,92,-64,92v-13,0,-29,-2,-41,-8r0,-54v6,9,17,16,28,16v25,0,24,-28,24,-46r0,-183r53,0","w":126},"K":{"d":"19,-271r54,0r0,121r45,-121r55,0r-50,125r56,146r-56,0r-50,-138r0,138r-54,0r0,-271","w":184},"L":{"d":"19,-271r54,0r0,221r56,0r0,50r-110,0r0,-271","w":134,"k":{"T":20,"V":27,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":27,"\u00dd":27}},"M":{"d":"32,-271r71,0r27,160r21,-160r72,0r29,271r-55,0r-14,-195r-32,195r-41,0r-26,-130v-4,-21,-4,-46,-10,-65r-8,195r-58,0","w":259},"N":{"d":"19,-271r52,0r67,163v-8,-48,-2,-108,-4,-163r54,0r0,271r-51,0r-66,-164r2,164r-54,0r0,-271","w":206},"O":{"d":"105,-276v48,0,95,38,95,140v0,102,-47,140,-95,140v-48,0,-96,-38,-96,-140v0,-102,48,-140,96,-140xm67,-136v0,22,2,91,38,91v36,0,38,-69,38,-91v0,-24,-2,-90,-38,-90v-36,0,-38,66,-38,90","w":209},"P":{"d":"73,0r-54,0r0,-271r56,0v12,0,92,-7,92,80v0,55,-38,85,-94,79r0,112xm73,-227r0,71v26,1,40,-8,40,-36v0,-23,-12,-38,-40,-35","w":175,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":46,".":46}},"Q":{"d":"113,-111r25,27v4,-15,5,-31,5,-52v0,-24,-2,-90,-38,-90v-36,0,-38,66,-38,90v0,25,8,112,51,86r-32,-34xm180,-40r23,24r-28,26r-21,-22v-74,42,-145,2,-145,-124v0,-102,48,-140,96,-140v48,0,95,38,95,140v0,32,-4,69,-20,96","w":209},"R":{"d":"73,0r-54,0r0,-271r54,0v34,0,95,3,95,77v0,30,-11,56,-38,71r47,123r-56,0r-48,-125r0,125xm73,-227r0,72v28,5,43,-13,43,-38v0,-21,-13,-37,-43,-34","w":190,"k":{"T":9,"V":13,"W":13,"y":6,"\u00fd":6,"\u00ff":6,"Y":13,"\u00dd":13}},"S":{"d":"131,-262r0,52v-17,-20,-66,-30,-66,9v0,45,82,48,82,121v0,66,-68,106,-125,71r0,-51v22,20,71,21,72,-16v0,-21,-17,-28,-32,-39v-31,-21,-50,-41,-50,-81v0,-64,66,-102,119,-66","w":158},"T":{"d":"5,-271r139,0r0,50r-43,0r0,221r-53,0r0,-221r-43,0r0,-50","w":149,"k":{"\u00fc":27,"\u00f2":27,"\u00f6":27,"\u00ec":6,"\u00ee":6,"\u00ed":6,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"w":27,"y":27,"\u00fd":27,"\u00ff":27,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":22,".":22,"a":27,"\u00e6":27,"\u00e1":27,"c":27,"\u00e7":27,"e":27,"\u00e9":27,"i":6,"\u00ef":6,"o":27,"\u00f8":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"r":27,"s":27,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,":":15,"-":20,";":15}},"U":{"d":"18,-271r53,0r0,175v0,21,-2,52,27,52v26,0,27,-20,27,-40r0,-187r53,0r0,198v0,29,-3,77,-80,77v-50,0,-80,-23,-80,-74r0,-201","w":195},"V":{"d":"3,-271r57,0r43,176v10,-62,27,-118,41,-176r57,0r-76,271r-44,0","w":203,"k":{"\u00f6":11,"\u00f4":11,"\u00e8":11,"\u00eb":11,"\u00ea":11,"\u00e3":11,"\u00e5":11,"\u00e0":11,"\u00e4":11,"\u00e2":11,"y":6,"\u00fd":6,"\u00ff":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"a":11,"\u00e6":11,"\u00e1":11,"e":11,"\u00e9":11,"o":11,"\u00f8":11,"\u00f3":11,"\u00f2":11,"\u00f5":11,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":6,"-":6,";":6}},"W":{"d":"3,-271r55,0v10,61,25,119,28,187v6,-16,5,-40,9,-58r27,-129r43,0r35,187v4,-67,17,-125,26,-187r57,0r-57,271r-46,0r-28,-143v-3,-16,-2,-35,-8,-50r-40,193r-46,0","w":285,"k":{"\u00fc":28,"\u00f6":11,"\u00ea":11,"\u00e4":11,"y":6,"\u00fd":6,"\u00ff":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":27,".":27,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e0":11,"\u00e5":11,"\u00e3":11,"e":11,"\u00e9":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u00f3":11,"\u00f4":11,"\u00f2":11,"\u00f5":11,"r":6,"u":28,"\u00fa":28,"\u00fb":28,"\u00f9":28,"-":6}},"X":{"d":"8,-271r60,0v12,24,21,52,30,79v5,-28,17,-55,28,-79r58,0r-58,131r62,140r-62,0v-12,-26,-20,-56,-30,-84v-7,29,-18,57,-28,84r-60,0r58,-140","w":196},"Y":{"d":"1,-271r59,0r33,87v9,-30,20,-58,30,-87r61,0r-64,141r0,130r-53,0r0,-130","w":185,"k":{"\u00fc":20,"\u00f6":27,"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":27,"\u00f8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,":":13,"-":27,";":13,"p":20,"q":27}},"Z":{"d":"18,-271r159,0r-92,221r85,0r0,50r-164,0r91,-221r-79,0r0,-50","w":182},"[":{"d":"19,-271r90,0r0,35r-43,0r0,245r44,0r0,36r-91,0r0,-316","w":115},"\\":{"d":"-46,-291r41,0r141,351r-41,0","w":90},"]":{"d":"6,-271r90,0r0,316r-91,0r0,-36r44,0r0,-245r-43,0r0,-35","w":115},"^":{"d":"44,-119r-36,-17r59,-135r43,0r59,135r-36,17r-45,-105"},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0r0,182r-51,0","w":155},"b":{"d":"13,0r0,-291r50,0r1,132v6,-15,17,-26,34,-26v43,0,49,63,49,94v0,29,-8,95,-49,95v-18,1,-27,-13,-35,-25r0,21r-50,0xm77,-43v17,0,19,-37,19,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,10,0,49,17,49","w":155},"c":{"d":"105,-49r0,46v-58,29,-96,-35,-96,-87v0,-54,34,-113,96,-90r0,45v-26,-21,-49,17,-45,42v-4,25,17,63,45,44","w":113},"d":{"d":"93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-132r51,0r0,291r-51,0xm79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49","w":155},"e":{"d":"96,-109v0,-15,-2,-38,-19,-38v-17,0,-18,23,-18,38r37,0xm137,-56v-5,33,-21,59,-58,60v-51,0,-70,-46,-70,-91v0,-44,16,-98,69,-98v40,0,71,47,61,108r-81,0v0,13,0,42,19,42v13,0,17,-10,17,-21r43,0","w":149},"f":{"d":"7,-182r19,0v2,-56,-13,-112,52,-112v8,0,15,1,22,4r0,49v-30,-11,-23,27,-24,59r24,0r0,42r-24,0r0,140r-50,0r0,-140r-19,0r0,-42","w":107},"g":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm60,4v-38,0,-51,-53,-51,-92v0,-32,6,-97,49,-97v18,-1,28,13,36,25r0,-22r51,0r0,198v0,53,-24,74,-68,74v-43,0,-63,-25,-66,-66r45,0v1,12,5,26,19,26v29,0,18,-47,18,-73v-6,12,-15,27,-33,27","w":157},"h":{"d":"13,-291r50,0r1,137v7,-17,22,-31,42,-31v37,0,34,42,34,68r0,117r-50,0r0,-100v0,-9,3,-34,-13,-34v-12,0,-14,12,-14,21r0,113r-50,0r0,-291","w":152},"i":{"d":"12,-182r51,0r0,182r-51,0r0,-182xm37,-203v-18,0,-32,-15,-32,-33v0,-18,16,-32,34,-32v18,0,31,16,31,33v0,17,-15,32,-33,32","w":75},"j":{"d":"12,-182r51,0r0,272r-51,0r0,-272xm37,-203v-18,0,-32,-15,-32,-33v0,-18,16,-32,34,-32v18,0,31,16,31,33v0,17,-15,32,-33,32","w":75},"k":{"d":"13,-291r50,0r1,173r28,-64r55,0r-41,74r50,108r-56,0r-37,-84r0,84r-50,0r0,-291","w":158},"l":{"d":"13,-291r50,0r0,291r-50,0r0,-291","w":75},"m":{"d":"63,-182r1,29v10,-35,72,-47,76,-1v10,-14,25,-32,45,-31v33,0,32,36,32,59r0,126r-50,0r0,-99v0,-9,2,-36,-13,-36v-12,0,-14,13,-14,21r0,114r-50,0r0,-102v0,-9,2,-32,-12,-32v-13,0,-15,12,-15,21r0,113r-50,0r0,-182r50,0","w":230},"n":{"d":"63,-182v1,9,-2,21,1,28v7,-17,22,-31,42,-31v37,0,34,42,34,68r0,117r-50,0r0,-100v0,-9,3,-34,-13,-34v-12,0,-14,12,-14,21r0,113r-50,0r0,-182r50,0","w":152},"o":{"d":"78,-185v54,0,70,48,70,94v0,46,-16,95,-70,95v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94xm78,-140v-18,0,-18,39,-18,49v0,10,0,49,18,49v18,0,19,-39,19,-49v0,-10,-1,-49,-19,-49","w":156},"p":{"d":"77,-43v18,0,19,-37,19,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,10,0,49,17,49xm63,-182v1,7,-2,18,1,23v6,-15,17,-26,34,-26v43,0,49,63,49,94v0,29,-8,95,-49,95v-18,1,-27,-13,-35,-25r0,111r-50,0r0,-272r50,0","w":155},"q":{"d":"144,-182r0,272r-51,0r-1,-111v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0xm79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49","w":155},"r":{"d":"13,-182r50,0v1,7,-2,17,1,22v9,-16,21,-27,41,-29r0,50v-67,-9,-35,81,-42,139r-50,0r0,-182","w":113,"k":{"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,",":20,".":20,"x":-7,"z":-7}},"s":{"d":"125,-170r-21,37v-9,-12,-38,-20,-38,2v0,21,58,17,58,71v0,63,-73,82,-113,43r22,-36v11,12,38,20,40,-4v2,-24,-58,-17,-58,-75v0,-55,72,-67,110,-38","w":135},"t":{"d":"28,-232r51,0r0,50r21,0r0,42r-21,0r0,140r-51,0r0,-140r-17,0r0,-42r17,0r0,-50","w":110},"u":{"d":"13,-182r50,0r0,100v0,10,-4,38,13,38v14,0,13,-18,13,-27r0,-111r51,0v-4,80,23,191,-65,186v-97,-5,-51,-105,-62,-186","w":152},"v":{"d":"5,-182r51,0r25,103r24,-103r52,0r-52,182r-47,0","w":162,"k":{",":20,".":20}},"w":{"d":"5,-182r50,0r25,107r24,-107r43,0r24,107r25,-107r48,0r-50,182r-42,0r-28,-114v-6,40,-14,78,-25,114r-42,0","w":249,"k":{",":13,".":13}},"x":{"d":"15,-182r53,0r19,39r21,-39r53,0r-47,84r54,98r-54,0r-27,-50r-27,50r-52,0r52,-98"},"y":{"d":"5,-182r52,0r25,104r24,-104r51,0r-78,272r-50,0r29,-94","w":162,"k":{",":20,".":20}},"z":{"d":"14,-182r122,0r-56,140r50,0r0,42r-122,0r58,-140r-52,0r0,-42","w":144},"{":{"d":"109,45v-51,4,-76,-9,-76,-56v0,-36,11,-88,-27,-88r0,-27v64,-6,-16,-151,72,-145r31,0r0,27v-64,0,6,119,-58,131v39,7,29,54,29,94v0,19,5,36,29,36r0,28","w":108},"|":{"d":"25,-283r40,0r0,360r-40,0r0,-360","w":90},"}":{"d":"75,-11v0,46,-24,60,-76,56r0,-28v64,-1,-6,-117,58,-130v-39,-7,-27,-54,-29,-95v0,-21,-5,-36,-29,-36r0,-27v45,-3,76,2,76,48v0,39,-12,94,27,97r0,27v-38,0,-27,52,-27,88","w":108},"~":{"d":"149,-129r20,26v-11,19,-22,42,-46,42v-22,0,-55,-24,-67,-24v-15,0,-22,18,-28,30r-20,-27v10,-21,24,-44,47,-44v23,0,53,23,68,23v13,0,19,-15,26,-26"},"\u00a1":{"d":"71,90r-53,0r0,-190r53,0r0,190xm44,-186v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,15,-34,34,-34","w":88},"\u00a2":{"d":"77,-18r0,-24v-38,-12,-50,-51,-50,-87v0,-37,9,-87,50,-100r0,-24r23,0r0,22v7,1,15,2,22,5r0,46v-27,-20,-45,24,-42,47v-3,23,16,59,42,40r0,46v-7,3,-15,5,-22,6r0,23r-23,0"},"\u00a3":{"d":"16,0r0,-41v16,-16,22,-38,21,-60r-33,0r0,-28r31,0v-19,-67,-8,-145,68,-145v52,0,71,33,70,81r-46,0v0,-17,-2,-36,-21,-36v-47,0,-20,64,-19,100r45,0r0,28r-46,0v-1,20,-7,40,-17,57v36,0,71,16,102,-2r0,42v-45,24,-105,-17,-155,4"},"\u00a5":{"d":"179,-271r-45,103r27,0r0,23r-38,0v-4,8,-9,17,-7,31r45,0r0,23r-45,0r0,91r-54,0r0,-91r-45,0r0,-23r45,0v1,-14,-2,-23,-7,-31r-38,0r0,-23r27,0r-47,-103r59,0r33,101r30,-101r60,0"},"\u00a7":{"d":"73,-144v-36,22,-3,62,25,71v13,-4,21,-14,21,-27v-1,-25,-29,-33,-46,-44xm109,3v0,-57,-98,-50,-98,-115v0,-20,9,-39,28,-52v-13,-10,-21,-28,-21,-47v1,-46,32,-65,68,-65v46,0,73,26,71,75r-48,0v1,-20,-2,-36,-23,-36v-15,0,-21,9,-21,22v14,54,101,42,101,109v0,24,-12,44,-34,57v18,12,27,33,27,55v0,39,-32,60,-68,60v-41,0,-76,-23,-73,-70r50,0v-1,18,3,31,24,31v12,0,17,-11,17,-24"},"\u00a4":{"d":"1,-49r16,-16v-17,-28,-18,-65,0,-93r-16,-15r28,-29r15,16v27,-18,63,-19,90,0r15,-16r26,29r-14,15v18,27,17,66,0,93r14,16r-26,28r-15,-15v-27,17,-62,18,-90,0r-15,15xm89,-157v-24,0,-43,22,-43,45v0,23,19,47,43,47v53,0,55,-92,0,-92"},"'":{"d":"65,-167r-39,0r-6,-104r50,0","w":90},"\u00ab":{"d":"146,-189r-37,70r37,68r-28,16r-46,-84r46,-84xm84,-189r-37,70r37,68r-27,16r-48,-84r48,-84","w":155},"\u00b7":{"d":"44,-126v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,15,-34,34,-34","w":88},"\u00b6":{"d":"134,40r0,-269r-25,0r0,269r-42,0r0,-186v-37,0,-57,-25,-57,-61v0,-90,103,-58,181,-64r0,42r-15,0r0,269r-42,0","w":216},"\u00bb":{"d":"37,-203r47,84r-47,84r-27,-16r36,-68r-36,-70xm99,-203r48,84r-48,84r-27,-16r37,-68r-37,-70","w":155},"\u00bf":{"d":"53,-97r54,0r0,67v-29,-7,-41,20,-40,42v0,12,2,35,19,35v15,-1,18,-17,17,-32r51,0v2,46,-21,79,-69,79v-85,0,-104,-130,-32,-156r0,-35xm80,-186v19,0,34,15,34,34v0,19,-15,34,-34,34v-18,0,-34,-15,-34,-34v0,-19,16,-34,34,-34","w":163},"`":{"d":"55,-271r35,51r-25,15r-47,-50","w":108},"\u00b4":{"d":"53,-271r37,16r-47,50r-25,-15","w":108},"\u00af":{"d":"116,-240r-124,0r0,-26r124,0r0,26","w":108},"\u00a8":{"d":"44,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,12,-28,27,-28v15,0,27,13,27,28xm118,-237v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-28,27,-28v15,0,26,13,26,28","w":108},"\u00b8":{"d":"52,17r32,13r-38,48r-22,-11","w":108},"\u00c6":{"d":"112,-88v-10,-35,-13,-76,-21,-113r-18,113r39,0xm131,0r-10,-45r-57,0r-8,45r-53,0r61,-271r111,0r11,50r-53,0r14,56r54,0r12,51r-53,0r15,64r52,0r13,50r-109,0","w":242},"\u00aa":{"d":"64,-274r34,0r0,109r-34,0v-1,-4,2,-10,-1,-12v-4,8,-10,15,-21,15v-26,0,-32,-38,-32,-57v0,-19,4,-57,32,-57v11,0,18,7,22,16r0,-14xm55,-248v-11,0,-12,22,-12,28v0,7,0,30,12,30v10,0,12,-24,12,-30v0,-6,0,-28,-12,-28","w":108},"\u00d8":{"d":"67,-138r2,39r64,-104v-5,-12,-14,-23,-28,-23v-37,0,-39,65,-38,88xm106,-45v43,-10,39,-81,35,-123r-63,102v5,11,15,21,28,21xm179,-274r20,13r-19,30v16,27,20,65,20,96v0,113,-58,139,-95,139v-22,0,-42,-9,-58,-22r-14,21r-20,-14r18,-28v-43,-84,-33,-237,76,-237v22,0,43,10,58,25","w":209},"\u00ba":{"d":"54,-276v63,1,62,113,0,114v-63,-1,-62,-113,0,-114xm54,-248v-12,0,-12,23,-12,29v0,5,1,29,12,29v11,0,12,-24,12,-29v0,-6,0,-29,-12,-29","w":108},"\u00e6":{"d":"140,-109r37,0v0,-15,-1,-38,-18,-38v-17,0,-20,23,-19,38xm218,-56v2,56,-72,81,-103,37v-29,42,-106,23,-106,-35v0,-42,43,-68,82,-49v0,-23,-2,-41,-30,-41v-13,0,-24,5,-36,10r0,-44v34,-11,77,-14,92,19v34,-55,111,-18,104,61r-1,21r-80,0v0,13,0,42,19,42v13,0,16,-10,16,-21r43,0xm75,-34v11,0,19,-8,19,-19v0,-10,-9,-19,-19,-19v-10,0,-19,8,-19,18v0,10,8,20,19,20","w":230},"\u00f8":{"d":"60,-92v0,11,1,50,19,50v16,0,18,-39,18,-48v0,-11,-1,-50,-19,-50v-17,0,-18,38,-18,48xm117,-174r9,-15r19,11r-13,21v30,58,23,156,-52,161v-15,0,-28,-4,-40,-13r-10,15r-19,-12r13,-21v-27,-57,-23,-154,54,-158v13,0,29,2,39,11","w":156},"\u00df":{"d":"26,-182v2,-47,-15,-112,66,-112v50,0,65,36,65,74v0,23,-4,48,-28,57v27,15,34,46,34,74v0,46,-16,106,-75,89r0,-45v21,1,20,-33,20,-47v0,-14,-1,-46,-20,-47r0,-46v17,-2,16,-16,16,-29v0,-9,-1,-34,-15,-34v-16,0,-13,26,-13,36r0,212r-50,0r0,-140r-19,0r0,-42r19,0","w":172},"\u00b9":{"d":"21,-271r53,0r0,161r-37,0r0,-133r-16,0r0,-28","w":105},"\u00ac":{"d":"130,-40r0,-67r-122,0r0,-40r161,0r0,107r-39,0"},"\u00b5":{"d":"89,-182r51,0r0,118v0,26,3,68,-34,68v-21,1,-34,-17,-43,-32r0,118r-51,0r0,-272r51,0r0,114v0,9,2,20,14,20v16,0,12,-25,12,-34r0,-100","w":152},"\u00d0":{"d":"67,0r-48,0r0,-112r-19,0r0,-50r19,0r0,-109r41,0v9,0,121,-15,121,137v0,77,-29,134,-114,134xm128,-134v0,-35,-11,-89,-55,-89r0,61r19,0r0,50r-19,0r0,64v43,2,55,-52,55,-86","w":190},"\u00bd":{"d":"166,-271r31,0r-129,271r-31,0xm20,-271r54,0r0,161r-37,0r0,-133r-17,0r0,-28xm243,0r-94,0v19,-39,62,-73,62,-121v0,-9,-3,-19,-13,-19v-16,0,-13,21,-13,36r-34,0v-4,-33,6,-60,47,-60v53,0,56,52,34,86r-31,48r42,0r0,30","w":264},"\u00b1":{"d":"68,-142r0,-48r40,0r0,48r61,0r0,40r-61,0r0,48r-40,0r0,-48r-60,0r0,-40r60,0xm8,0r0,-40r161,0r0,40r-161,0"},"\u00de":{"d":"73,0r-54,0r0,-271r54,0r0,50v14,0,94,-7,94,80v0,55,-38,85,-94,79r0,62xm73,-177r0,72v26,1,40,-8,40,-36v1,-23,-11,-39,-40,-36","w":175},"\u00bc":{"d":"198,0r0,-38r-53,0r0,-25r47,-98r42,0r0,94r14,0r0,29r-14,0r0,38r-36,0xm176,-271r31,0r-129,271r-32,0xm19,-271r54,0r0,161r-37,0r0,-133r-17,0r0,-28xm198,-67v-1,-19,2,-42,-1,-59r-25,59r26,0","w":264},"\u00f7":{"d":"8,-72r0,-40r161,0r0,40r-161,0xm111,-138r-46,0r0,-42r46,0r0,42xm111,-5r-46,0r0,-41r46,0r0,41"},"\u00a6":{"d":"25,-238r40,0r0,90r-40,0r0,-90xm25,-58r40,0r0,90r-40,0r0,-90","w":90},"\u00b0":{"d":"72,-276v30,0,54,24,54,54v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54xm72,-247v-14,0,-26,11,-26,25v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-25,-26,-25","w":144},"\u00fe":{"d":"63,-255r1,96v6,-15,17,-26,34,-26v43,0,49,63,49,94v0,29,-8,95,-49,95v-18,1,-27,-13,-35,-25r0,111r-50,0r0,-345r50,0xm77,-43v18,0,19,-37,19,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,10,0,49,17,49","w":155},"\u00be":{"d":"241,0r-37,0r0,-38r-52,0r0,-25r47,-98r42,0r0,94r14,0r0,29r-14,0r0,38xm204,-66v-1,-19,2,-42,-1,-59r-25,59r26,0xm192,-271r30,0r-129,271r-31,0xm18,-226v0,-29,11,-48,42,-48v50,0,61,62,24,81v48,17,28,85,-26,85v-31,0,-49,-18,-48,-45r35,0v-1,11,2,20,12,20v13,0,14,-16,14,-26v0,-17,-7,-23,-25,-22r0,-27v28,7,35,-31,15,-39v-10,1,-11,12,-11,21r-32,0","w":264},"\u00b2":{"d":"43,-215r-34,0v-4,-33,5,-59,46,-59v54,0,56,51,34,86r-30,48r42,0r0,30r-95,0v20,-38,62,-72,62,-121v0,-9,-3,-19,-13,-19v-15,0,-14,22,-12,35","w":105},"\u00ae":{"d":"150,4v-78,0,-142,-62,-142,-140v0,-77,64,-140,142,-140v78,0,141,63,141,140v0,78,-63,140,-141,140xm150,-22v63,0,113,-51,113,-114v0,-62,-50,-113,-113,-113v-64,0,-114,51,-114,113v0,63,50,114,114,114xm91,-213v62,1,134,-13,134,47v0,28,-15,39,-42,41r37,65r-35,0r-34,-65r-30,0r0,65r-30,0r0,-153xm121,-148v30,-3,76,11,74,-23v-2,-31,-45,-15,-74,-19r0,42","w":298},"\u00f0":{"d":"60,-91v0,10,0,49,18,49v18,0,19,-39,19,-49v0,-10,-1,-49,-19,-49v-18,0,-18,39,-18,49xm30,-207r-12,-23r29,-15v-7,-12,-15,-22,-23,-31r38,-19v8,9,15,19,23,30r31,-17r14,22r-31,16v28,45,49,100,49,153v0,43,-16,95,-70,95v-54,0,-69,-49,-69,-95v0,-47,20,-101,76,-90v-8,-15,-16,-30,-24,-43","w":156},"\u00d7":{"d":"141,-10r-54,-54r-51,52r-28,-28r51,-52r-51,-52r28,-28r51,52r54,-54r28,28r-53,54r53,53"},"\u00b3":{"d":"9,-226v0,-30,12,-48,43,-48v50,0,61,62,24,81v48,17,28,85,-26,85v-31,0,-49,-18,-48,-45r35,0v-1,11,2,20,12,20v13,0,14,-16,14,-26v0,-17,-7,-23,-25,-22r0,-27v18,0,25,-3,25,-21v0,-7,-1,-18,-10,-18v-10,1,-11,12,-11,21r-33,0","w":105},"\u00a9":{"d":"150,4v-78,0,-142,-62,-142,-140v0,-77,64,-140,142,-140v78,0,141,63,141,140v0,78,-63,140,-141,140xm150,-22v63,0,113,-51,113,-114v0,-62,-50,-113,-113,-113v-64,0,-114,51,-114,113v0,63,50,114,114,114xm190,-111r32,0v-18,92,-152,55,-145,-27v-10,-86,132,-111,145,-27r-32,0v-19,-53,-81,-21,-81,27v0,27,17,56,47,56v17,0,33,-12,34,-29","w":298},"\u00c1":{"d":"66,-271r56,0r66,271r-58,0r-10,-46r-54,0r-10,46r-53,0xm112,-88r-20,-114r-17,114r37,0xm99,-352r37,16r-46,50r-25,-14","w":190},"\u00c2":{"d":"66,-271r56,0r66,271r-58,0r-10,-46r-54,0r-10,46r-53,0xm112,-88r-20,-114r-17,114r37,0xm95,-350r52,44r-22,22r-30,-25r-32,25r-20,-25","w":190},"\u00c4":{"d":"66,-271r56,0r66,271r-58,0r-10,-46r-54,0r-10,46r-53,0xm112,-88r-20,-114r-17,114r37,0xm85,-318v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,12,-27,27,-27v15,0,27,12,27,27xm159,-318v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-27,27,-27v15,0,26,12,26,27","w":190},"\u00c0":{"d":"66,-271r56,0r66,271r-58,0r-10,-46r-54,0r-10,46r-53,0xm112,-88r-20,-114r-17,114r37,0xm91,-352r34,52r-25,14r-46,-50","w":190},"\u00c5":{"d":"66,-271r56,0r66,271r-58,0r-10,-46r-54,0r-10,46r-53,0xm112,-88r-20,-114r-17,114r37,0xm93,-278v-22,0,-39,-18,-39,-40v0,-22,18,-38,40,-38v22,0,38,18,38,39v0,21,-18,39,-39,39xm93,-302v8,0,15,-7,15,-15v0,-9,-7,-16,-15,-16v-9,0,-15,7,-15,16v0,9,6,15,15,15","w":190},"\u00c3":{"d":"66,-271r56,0r66,271r-58,0r-10,-46r-54,0r-10,46r-53,0xm112,-88r-20,-114r-17,114r37,0xm118,-297v-19,0,-47,-28,-55,-1r-26,0v2,-22,7,-48,34,-48v24,0,49,29,56,-1r27,2v-4,22,-9,48,-36,48","w":190},"\u00c7":{"d":"154,-270r0,50v-55,-16,-87,32,-87,81v0,46,31,106,87,86r0,51v-86,24,-145,-59,-145,-136v0,-75,59,-157,145,-132xm90,17r32,13r-37,48r-23,-11","w":162},"\u00c9":{"d":"19,-271r108,0r0,50r-54,0r0,59r48,0r0,50r-48,0r0,62r55,0r0,50r-109,0r0,-271xm82,-352r37,16r-47,50r-24,-14","w":141},"\u00ca":{"d":"19,-271r108,0r0,50r-54,0r0,59r48,0r0,50r-48,0r0,62r55,0r0,50r-109,0r0,-271xm70,-350r53,44r-22,22r-31,-25r-31,25r-20,-25","w":141},"\u00cb":{"d":"19,-271r108,0r0,50r-54,0r0,59r48,0r0,50r-48,0r0,62r55,0r0,50r-109,0r0,-271xm60,-318v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-27,28,-27v15,0,26,12,26,27xm135,-318v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-27,28,-27v15,0,26,12,26,27","w":141},"\u00c8":{"d":"19,-271r108,0r0,50r-54,0r0,59r48,0r0,50r-48,0r0,62r55,0r0,50r-109,0r0,-271xm66,-352r35,52r-25,14r-46,-50","w":141},"\u00cd":{"d":"19,-271r54,0r0,271r-54,0r0,-271xm52,-352r37,16r-47,50r-25,-14","w":91},"\u00ce":{"d":"19,-271r54,0r0,271r-54,0r0,-271xm46,-350r52,44r-22,22r-30,-25r-32,25r-20,-25","w":91},"\u00cf":{"d":"19,-271r54,0r0,271r-54,0r0,-271xm36,-318v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,12,-27,27,-27v15,0,27,12,27,27xm111,-318v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,12,-27,27,-27v15,0,27,12,27,27","w":91},"\u00cc":{"d":"19,-271r54,0r0,271r-54,0r0,-271xm40,-352r34,52r-25,14r-46,-50","w":91},"\u00d1":{"d":"19,-271r52,0r67,163v-8,-48,-2,-108,-4,-163r54,0r0,271r-51,0r-66,-164r2,164r-54,0r0,-271xm126,-297v-19,0,-47,-28,-55,-1r-26,0v2,-22,7,-48,34,-48v24,0,49,29,56,-1r27,2v-4,22,-9,48,-36,48","w":206},"\u00d3":{"d":"105,-276v48,0,95,38,95,140v0,102,-47,140,-95,140v-48,0,-96,-38,-96,-140v0,-102,48,-140,96,-140xm67,-136v0,22,2,91,38,91v36,0,38,-69,38,-91v0,-24,-2,-90,-38,-90v-36,0,-38,66,-38,90xm116,-352r37,16r-46,50r-25,-14","w":209},"\u00d4":{"d":"105,-276v48,0,95,38,95,140v0,102,-47,140,-95,140v-48,0,-96,-38,-96,-140v0,-102,48,-140,96,-140xm67,-136v0,22,2,91,38,91v36,0,38,-69,38,-91v0,-24,-2,-90,-38,-90v-36,0,-38,66,-38,90xm104,-350r53,44r-22,22r-31,-25r-31,25r-20,-25","w":209},"\u00d6":{"d":"105,-276v48,0,95,38,95,140v0,102,-47,140,-95,140v-48,0,-96,-38,-96,-140v0,-102,48,-140,96,-140xm67,-136v0,22,2,91,38,91v36,0,38,-69,38,-91v0,-24,-2,-90,-38,-90v-36,0,-38,66,-38,90xm94,-318v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-27,27,-27v15,0,26,12,26,27xm169,-318v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-27,27,-27v15,0,26,12,26,27","w":209},"\u00d2":{"d":"105,-276v48,0,95,38,95,140v0,102,-47,140,-95,140v-48,0,-96,-38,-96,-140v0,-102,48,-140,96,-140xm67,-136v0,22,2,91,38,91v36,0,38,-69,38,-91v0,-24,-2,-90,-38,-90v-36,0,-38,66,-38,90xm97,-352r34,52r-24,14r-47,-50","w":209},"\u00d5":{"d":"105,-276v48,0,95,38,95,140v0,102,-47,140,-95,140v-48,0,-96,-38,-96,-140v0,-102,48,-140,96,-140xm67,-136v0,22,2,91,38,91v36,0,38,-69,38,-91v0,-24,-2,-90,-38,-90v-36,0,-38,66,-38,90xm127,-297v-19,0,-47,-28,-54,-1r-27,0v2,-22,7,-48,34,-48v24,0,49,29,56,-1r27,2v-4,22,-9,48,-36,48","w":209},"\u00da":{"d":"18,-271r53,0r0,175v0,21,-2,52,27,52v26,0,27,-20,27,-40r0,-187r53,0r0,198v0,29,-3,77,-80,77v-50,0,-80,-23,-80,-74r0,-201xm109,-352r37,16r-46,50r-25,-14","w":195},"\u00db":{"d":"18,-271r53,0r0,175v0,21,-2,52,27,52v26,0,27,-20,27,-40r0,-187r53,0r0,198v0,29,-3,77,-80,77v-50,0,-80,-23,-80,-74r0,-201xm98,-350r52,44r-22,22r-30,-25r-32,25r-20,-25","w":195},"\u00dc":{"d":"18,-271r53,0r0,175v0,21,-2,52,27,52v26,0,27,-20,27,-40r0,-187r53,0r0,198v0,29,-3,77,-80,77v-50,0,-80,-23,-80,-74r0,-201xm87,-318v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-27,27,-27v15,0,26,12,26,27xm162,-318v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-27,27,-27v15,0,26,12,26,27","w":195},"\u00d9":{"d":"18,-271r53,0r0,175v0,21,-2,52,27,52v26,0,27,-20,27,-40r0,-187r53,0r0,198v0,29,-3,77,-80,77v-50,0,-80,-23,-80,-74r0,-201xm86,-352r35,52r-25,14r-46,-50","w":195},"\u00dd":{"d":"1,-271r59,0r33,87v9,-30,20,-58,30,-87r61,0r-64,141r0,130r-53,0r0,-130xm109,-352r37,16r-46,50r-25,-14","w":185,"k":{"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":27,"\u00f8":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"u":20,"\u00fa":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,":":13,"-":27,";":13,"p":20,"q":27}},"\u00e1":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0r0,182r-51,0xm91,-271r37,16r-46,50r-25,-15","w":155},"\u00e2":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0r0,182r-51,0xm81,-269r53,43r-22,23r-31,-26r-31,26r-20,-26","w":155},"\u00e4":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0r0,182r-51,0xm71,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,12,-28,27,-28v15,0,27,13,27,28xm145,-237v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-28,27,-28v15,0,26,13,26,28","w":155},"\u00e0":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0r0,182r-51,0xm70,-271r35,51r-25,15r-47,-50","w":155},"\u00e5":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0r0,182r-51,0xm81,-198v-22,0,-39,-17,-39,-39v0,-22,18,-39,40,-39v22,0,38,19,38,40v0,21,-18,38,-39,38xm81,-221v8,0,15,-7,15,-15v0,-9,-7,-16,-15,-16v-9,0,-15,6,-15,15v0,9,6,16,15,16","w":155},"\u00e3":{"d":"79,-43v16,0,17,-39,17,-49v0,-10,-1,-48,-18,-48v-17,0,-18,38,-18,48v0,12,1,49,19,49xm93,0v-1,-6,2,-16,-1,-21v-7,14,-17,25,-33,25v-41,0,-50,-66,-50,-95v0,-31,7,-94,49,-94v18,-1,27,13,35,26r0,-23r51,0r0,182r-51,0xm104,-217v-18,0,-47,-26,-55,-1r-26,0v2,-22,7,-48,34,-48v24,0,48,30,56,0r27,1v-4,22,-9,48,-36,48","w":155},"\u00e7":{"d":"105,-49r0,46v-58,29,-96,-35,-96,-87v0,-54,34,-113,96,-90r0,45v-26,-21,-49,17,-45,42v-4,25,17,63,45,44xm58,17r33,13r-38,48r-23,-11","w":113},"\u00e9":{"d":"96,-109v0,-15,-2,-38,-19,-38v-17,0,-18,23,-18,38r37,0xm137,-56v-5,33,-21,59,-58,60v-51,0,-70,-46,-70,-91v0,-44,16,-98,69,-98v40,0,71,47,61,108r-81,0v0,13,0,42,19,42v13,0,17,-10,17,-21r43,0xm88,-271r37,16r-47,50r-25,-15","w":149},"\u00ea":{"d":"96,-109v0,-15,-2,-38,-19,-38v-17,0,-18,23,-18,38r37,0xm137,-56v-5,33,-21,59,-58,60v-51,0,-70,-46,-70,-91v0,-44,16,-98,69,-98v40,0,71,47,61,108r-81,0v0,13,0,42,19,42v13,0,17,-10,17,-21r43,0xm77,-269r53,43r-22,23r-31,-26r-32,26r-19,-26","w":149},"\u00eb":{"d":"96,-109v0,-15,-2,-38,-19,-38v-17,0,-18,23,-18,38r37,0xm137,-56v-5,33,-21,59,-58,60v-51,0,-70,-46,-70,-91v0,-44,16,-98,69,-98v40,0,71,47,61,108r-81,0v0,13,0,42,19,42v13,0,17,-10,17,-21r43,0xm64,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-28,28,-28v15,0,26,13,26,28xm139,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-28,28,-28v15,0,26,13,26,28","w":149},"\u00e8":{"d":"96,-109v0,-15,-2,-38,-19,-38v-17,0,-18,23,-18,38r37,0xm137,-56v-5,33,-21,59,-58,60v-51,0,-70,-46,-70,-91v0,-44,16,-98,69,-98v40,0,71,47,61,108r-81,0v0,13,0,42,19,42v13,0,17,-10,17,-21r43,0xm67,-271r34,51r-25,15r-46,-50","w":149},"\u00ed":{"d":"12,-182r51,0r0,182r-51,0r0,-182xm42,-271r36,16r-46,50r-25,-15","w":75},"\u00ee":{"d":"12,-182r51,0r0,182r-51,0r0,-182xm37,-269r53,43r-22,23r-31,-26r-31,26r-20,-26","w":75},"\u00ef":{"d":"12,-182r51,0r0,182r-51,0r0,-182xm27,-237v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-28,27,-28v15,0,26,13,26,28xm102,-237v0,14,-12,26,-27,26v-14,0,-26,-12,-26,-26v0,-15,12,-28,27,-28v15,0,26,13,26,28","w":75},"\u00ec":{"d":"12,-182r51,0r0,182r-51,0r0,-182xm33,-271r35,51r-25,15r-47,-50","w":75},"\u00f1":{"d":"63,-182v1,9,-2,21,1,28v7,-17,22,-31,42,-31v37,0,34,42,34,68r0,117r-50,0r0,-100v0,-9,3,-34,-13,-34v-12,0,-14,12,-14,21r0,113r-50,0r0,-182r50,0xm99,-217v-18,0,-47,-26,-55,-1r-26,0v2,-22,7,-48,34,-48v24,0,48,30,56,0r27,1v-4,22,-9,48,-36,48","w":152},"\u00f3":{"d":"78,-185v54,0,70,48,70,94v0,46,-16,95,-70,95v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94xm78,-140v-18,0,-18,39,-18,49v0,10,0,49,18,49v18,0,19,-39,19,-49v0,-10,-1,-49,-19,-49xm92,-271r37,16r-47,50r-25,-15","w":156},"\u00f4":{"d":"78,-185v54,0,70,48,70,94v0,46,-16,95,-70,95v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94xm78,-140v-18,0,-18,39,-18,49v0,10,0,49,18,49v18,0,19,-39,19,-49v0,-10,-1,-49,-19,-49xm78,-269r53,43r-22,23r-31,-26r-32,26r-19,-26","w":156},"\u00f6":{"d":"78,-185v54,0,70,48,70,94v0,46,-16,95,-70,95v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94xm78,-140v-18,0,-18,39,-18,49v0,10,0,49,18,49v18,0,19,-39,19,-49v0,-10,-1,-49,-19,-49xm68,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-28,28,-28v15,0,26,13,26,28xm143,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-28,28,-28v15,0,26,13,26,28","w":156},"\u00f2":{"d":"78,-185v54,0,70,48,70,94v0,46,-16,95,-70,95v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94xm78,-140v-18,0,-18,39,-18,49v0,10,0,49,18,49v18,0,19,-39,19,-49v0,-10,-1,-49,-19,-49xm71,-271r34,51r-25,15r-46,-50","w":156},"\u00f5":{"d":"78,-185v54,0,70,48,70,94v0,46,-16,95,-70,95v-54,0,-69,-49,-69,-95v0,-46,15,-94,69,-94xm78,-140v-18,0,-18,39,-18,49v0,10,0,49,18,49v18,0,19,-39,19,-49v0,-10,-1,-49,-19,-49xm101,-217v-18,0,-47,-26,-55,-1r-26,0v2,-22,7,-48,34,-48v24,0,48,30,56,0r27,1v-4,22,-9,48,-36,48","w":156},"\u00fa":{"d":"13,-182r50,0r0,100v0,10,-4,38,13,38v14,0,13,-18,13,-27r0,-111r51,0v-4,80,23,191,-65,186v-97,-5,-51,-105,-62,-186xm90,-271r36,16r-46,50r-25,-15","w":152},"\u00fb":{"d":"13,-182r50,0r0,100v0,10,-4,38,13,38v14,0,13,-18,13,-27r0,-111r51,0v-4,80,23,191,-65,186v-97,-5,-51,-105,-62,-186xm76,-269r53,43r-22,23r-31,-26r-32,26r-20,-26","w":152},"\u00fc":{"d":"13,-182r50,0r0,100v0,10,-4,38,13,38v14,0,13,-18,13,-27r0,-111r51,0v-4,80,23,191,-65,186v-97,-5,-51,-105,-62,-186xm66,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-28,28,-28v15,0,26,13,26,28xm141,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,12,-28,27,-28v15,0,27,13,27,28","w":152},"\u00f9":{"d":"13,-182r50,0r0,100v0,10,-4,38,13,38v14,0,13,-18,13,-27r0,-111r51,0v-4,80,23,191,-65,186v-97,-5,-51,-105,-62,-186xm63,-271r35,51r-25,15r-47,-50","w":152},"\u00fd":{"d":"5,-182r52,0r25,104r24,-104r51,0r-78,272r-50,0r29,-94xm98,-271r37,16r-46,50r-25,-15","w":162,"k":{",":20,".":20}},"\u00ff":{"d":"5,-182r52,0r25,104r24,-104r51,0r-78,272r-50,0r29,-94xm71,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-28,28,-28v15,0,26,13,26,28xm146,-237v0,14,-12,26,-27,26v-14,0,-27,-12,-27,-26v0,-15,13,-28,28,-28v15,0,26,13,26,28","w":162,"k":{",":20,".":20}},"\u00a0":{"w":88},"\u00ad":{"d":"12,-143r90,0r0,48r-90,0r0,-48","w":114}}});
;

