/*
 * 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>';
  }
};
;

/**
 * A progressbar object. Initialized with the given id. Must be inserted into
 * the DOM afterwards through progressBar.element.
 *
 * method is the function which will perform the HTTP request to get the
 * progress bar state. Either "GET" or "POST".
 *
 * e.g. pb = new progressBar('myProgressBar');
 *      some_element.appendChild(pb.element);
 */
Drupal.progressBar = function (id, updateCallback, method, errorCallback) {
  var pb = this;
  this.id = id;
  this.method = method || "GET";
  this.updateCallback = updateCallback;
  this.errorCallback = errorCallback;

  this.element = document.createElement('div');
  this.element.id = id;
  this.element.className = 'progress';
  $(this.element).html('<div class="bar"><div class="filled"></div></div>'+
                       '<div class="percentage"></div>'+
                       '<div class="message">&nbsp;</div>');
};

/**
 * Set the percentage and status message for the progressbar.
 */
Drupal.progressBar.prototype.setProgress = function (percentage, message) {
  if (percentage >= 0 && percentage <= 100) {
    $('div.filled', this.element).css('width', percentage +'%');
    $('div.percentage', this.element).html(percentage +'%');
  }
  $('div.message', this.element).html(message);
  if (this.updateCallback) {
    this.updateCallback(percentage, message, this);
  }
};

/**
 * Start monitoring progress via Ajax.
 */
Drupal.progressBar.prototype.startMonitoring = function (uri, delay) {
  this.delay = delay;
  this.uri = uri;
  this.sendPing();
};

/**
 * Stop monitoring progress via Ajax.
 */
Drupal.progressBar.prototype.stopMonitoring = function () {
  clearTimeout(this.timer);
  // This allows monitoring to be stopped from within the callback
  this.uri = null;
};

/**
 * Request progress data from server.
 */
Drupal.progressBar.prototype.sendPing = function () {
  if (this.timer) {
    clearTimeout(this.timer);
  }
  if (this.uri) {
    var pb = this;
    // When doing a post request, you need non-null data. Otherwise a
    // HTTP 411 or HTTP 406 (with Apache mod_security) error may result.
    $.ajax({
      type: this.method,
      url: this.uri,
      data: '',
      dataType: 'json',
      success: function (progress) {
        // Display errors
        if (progress.status == 0) {
          pb.displayError(progress.data);
          return;
        }
        // Update display
        pb.setProgress(progress.percentage, progress.message);
        // Schedule next timer
        pb.timer = setTimeout(function() { pb.sendPing(); }, pb.delay);
      },
      error: function (xmlhttp) {
        pb.displayError(Drupal.ahahError(xmlhttp, pb.uri));
      }
    });
  }
};

/**
 * Display errors on the page.
 */
Drupal.progressBar.prototype.displayError = function (string) {
  var error = document.createElement('div');
  error.className = 'error';
  error.innerHTML = string;

  $(this.element).before(error).hide();

  if (this.errorCallback) {
    this.errorCallback(this);
  }
};
;

$(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: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    var xScroll, yScroll;

    if (window.innerHeight && window.scrollMaxY) {
      xScroll = window.innerWidth + window.scrollMaxX;
      yScroll = window.innerHeight + window.scrollMaxY;
    }
    else if (document.body.scrollHeight > document.body.offsetHeight) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);
;
/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
﻿/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;
// $Id: nice_menus.js,v 1.21 2010/06/18 06:14:12 vordude Exp $

// This uses Superfish 1.4.8
// (http://users.tpg.com.au/j_birch/plugins/superfish)

// Add Superfish to all Nice menus with some basic options.
(function ($) {
  $(document).ready(function() {
    $('ul.nice-menu').superfish({
      // Apply a generic hover class.
      hoverClass: 'over',
      // Disable generation of arrow mark-up.
      autoArrows: false,
      // Disable drop shadows.
      dropShadows: false,
      // Mouse delay.
      delay: Drupal.settings.nice_menus_options.delay,
      // Animation speed.
      speed: Drupal.settings.nice_menus_options.speed
    // Add in Brandon Aaron’s bgIframe plugin for IE select issues.
    // http://plugins.jquery.com/node/46/release
    }).find('ul').bgIframe({opacity:false});
    $('ul.nice-menu ul').css('display', 'none');
  });
})(jQuery);
;
/**
 * --------------------------------------------------------------------
 * jQuery-Plugin "pngFix"
 * Version: 1.1, 11.09.2007
 * by Andreas Eberhard, andreas.eberhard@gmail.com
 *                      http://jquery.andreaseberhard.de/
 *
 * Copyright (c) 2007 Andreas Eberhard
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Changelog:
 *    11.09.2007 Version 1.1
 *    - removed noConflict
 *    - added png-support for input type=image
 *    - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
 *    31.05.2007 initial Version 1.0
 * --------------------------------------------------------------------
 * @example $(function(){$(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready
 *
 * jQuery(function(){jQuery(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready when using noConflict
 *
 * @example $(function(){$('div.examples').pngFix();});
 * @desc Fixes all PNG's within div with class examples
 *
 * @example $(function(){$('div.examples').pngFix( { blankgif:'ext.gif' } );});
 * @desc Fixes all PNG's within div with class examples, provides blank gif for input with png
 * --------------------------------------------------------------------
 */

(function($) {

jQuery.fn.pngFix = function(settings) {

	// Settings
	settings = jQuery.extend({
		blankgif: 'blank.gif'
	}, settings);

	var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
	var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

	if (jQuery.browser.msie && (ie55 || ie6)) {

		//fix images with png-source
		jQuery(this).find("img[@src$=.png]").each(function() {

			jQuery(this).attr('width',jQuery(this).width());
			jQuery(this).attr('height',jQuery(this).height());

			var prevStyle = '';
			var strNewHTML = '';
			var imgId = (jQuery(this).attr('id')) ? 'id="' + jQuery(this).attr('id') + '" ' : '';
			var imgClass = (jQuery(this).attr('class')) ? 'class="' + jQuery(this).attr('class') + '" ' : '';
			var imgTitle = (jQuery(this).attr('title')) ? 'title="' + jQuery(this).attr('title') + '" ' : '';
			var imgAlt = (jQuery(this).attr('alt')) ? 'alt="' + jQuery(this).attr('alt') + '" ' : '';
			var imgAlign = (jQuery(this).attr('align')) ? 'float:' + jQuery(this).attr('align') + ';' : '';
			var imgHand = (jQuery(this).parent().attr('href')) ? 'cursor:hand;' : '';
			if (this.style.border) {
				prevStyle += 'border:'+this.style.border+';';
				this.style.border = '';
			}
			if (this.style.padding) {
				prevStyle += 'padding:'+this.style.padding+';';
				this.style.padding = '';
			}
			if (this.style.margin) {
				prevStyle += 'margin:'+this.style.margin+';';
				this.style.margin = '';
			}
			var imgStyle = (this.style.cssText);

			strNewHTML += '<span '+imgId+imgClass+imgTitle+imgAlt;
			strNewHTML += 'style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;
			strNewHTML += 'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;';
			strNewHTML += 'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + jQuery(this).attr('src') + '\', sizingMethod=\'scale\');';
			strNewHTML += imgStyle+'"></span>';
			if (prevStyle != ''){
				strNewHTML = '<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;'+'">' + strNewHTML + '</span>';
			}

			jQuery(this).hide();
			jQuery(this).after(strNewHTML);

		});

		// fix css background pngs
		jQuery(this).find("*").each(function(){
			var bgIMG = jQuery(this).css('background-image');
			if(bgIMG.indexOf(".png")!=-1){
				var iebg = bgIMG.split('url("')[1].split('")')[0];
				jQuery(this).css('background-image', 'none');
				jQuery(this).get(0).runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + iebg + "',sizingMethod='scale')";
			}
		});
		
		//fix input with png-source
		jQuery(this).find("input[@src$=.png]").each(function() {
			var bgIMG = jQuery(this).attr('src');
			jQuery(this).get(0).runtimeStyle.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + bgIMG + '\', sizingMethod=\'scale\');';
   		jQuery(this).attr('src', settings.blankgif)
		});
	
	}
	
	return jQuery;

};

})(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}})());;

Drupal.settings.views = Drupal.settings.views || {'ajax_path': 'views/ajax'};

Drupal.behaviors.quicktabs = function (context) {
  $('.quicktabs_wrapper:not(.quicktabs-processed)', context).addClass('quicktabs-processed').each(function(){
    Drupal.quicktabs.prepare(this);
  });
};

Drupal.quicktabs = Drupal.quicktabs || {};
Drupal.quicktabs.ajax = {};
Drupal.quicktabs.scripts = {};
Drupal.quicktabs.css = {};

// setting up the inital behaviours
Drupal.quicktabs.prepare = function(el) {
  var i = 0;
  // el.id format: "quicktabs-$qtid"
  var qtid = el.id.substring(el.id.indexOf('-') +1);

  $(el).find('ul.quicktabs_tabs li a').each(function(){
    this.myTabIndex = i++;
    this.qtid = qtid;
    $(this).unbind('click').bind('click', quicktabsClick);
  });

  // Search for the active tab.
  var $active_tab = $(el).children('.quicktabs_tabs').find('li.active a');

  if ($active_tab.hasClass('qt_tab') || $active_tab.hasClass('qt_ajax_tab')) {
    $active_tab.trigger('click');
  }
  else {
    // Click on the first tab.
    $(el).children('.quicktabs_tabs').find('li.first a').trigger('click');
  }
  return false;
}

// constructor for an individual tab
Drupal.quicktabs.tab = function (el) {
  this.element = el;
  this.tabIndex = el.myTabIndex;
  this.qtid = el.qtid;
  var qtKey = 'qt_' + this.qtid;
  var i = 0;
  for (var key in Drupal.settings.quicktabs[qtKey].tabs) {
    if (i == this.tabIndex) {
      this.tabObj = Drupal.settings.quicktabs[qtKey].tabs[key];
      this.tabKey = key;
    }
    i++;
  }
  this.tabpage_id = 'quicktabs_tabpage_' + this.qtid + '_' + this.tabKey;
  this.container = $('#quicktabs_container_' + this.qtid);
  this.tabpage = this.container.find('#' + this.tabpage_id);
  // The 'this' variable will not persist inside of the options object.
  var tab = this;
  this.options = {
    success: function(response) {
      return tab.success(response);
    },
    complete: function(response) {
      return tab.complete();
    }
  }
}

// ajax callback for non-views tabs
Drupal.quicktabs.tab.prototype.success = function(response) {
  this.container.append(Drupal.theme('quicktabsResponse', this, response.data.content));
  $.extend(true, Drupal.settings, response.data.js_css.js_settings);
  Drupal.quicktabs.ajax.scripts(response.data.js_css.js_files);
  Drupal.quicktabs.ajax.css_files(response.data.js_css.css_files);
  Drupal.attachBehaviors(this.container);
}

// function to call on completed ajax call
// for non-views tabs
Drupal.quicktabs.tab.prototype.complete = function() {
  // stop the progress bar
  this.stopProgress();
}


Drupal.quicktabs.tab.prototype.stopProgress = function () {
  if (this.progress.element) {
    $(this.progress.element).remove();
  }
  $(this.element).removeClass('progress-disabled').attr('disabled', false);
}

Drupal.quicktabs.tab.prototype.startProgress = function () {
  var progressBar = new Drupal.progressBar('qt-progress-' + this.element.id, null, null, null);
  progressBar.setProgress(-1, Drupal.t('Loading'));
  this.progress = {};
  this.progress.element = $(progressBar.element).addClass('qt-progress qt-progress-bar');
  this.container.prepend(this.progress.element);
}

Drupal.quicktabs.tab.prototype.quicktabsAjaxView = function() {
  // Create an empty div for the tabpage. The generated view will be inserted into this.
  var tab = this;
  tab.container.append(Drupal.theme('quicktabsResponse', this, null));

  var target;
  target = $('#' + tab.tabpage_id + ' > div');
  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];
  }
  var args;
  if (tab.tabObj.args != '') {
    args = tab.tabObj.args.join('/');
  } else {
    args = '';
  }
  var viewData = {
    'view_name': tab.tabObj.vid,
    'view_display_id': tab.tabObj.display,
    'view_args': args
  }
  $.ajax({
    url: ajax_path,
    type: 'GET',
    data: viewData,
    success: function(response) {
      // Call all callbacks.
      if (response.__callbacks) {
        $.each(response.__callbacks, function(i, callback) {
          eval(callback)(target, response);
        });
      }
    },
    complete: function() {
      tab.stopProgress();
    },
    error: function() { alert(Drupal.t("An error occurred at @path.", {'@path': ajax_path})); },
    dataType: 'json'
  });
}

var quicktabsClick = function() {

  var tab = new Drupal.quicktabs.tab(this);

  // Set clicked tab to active.
  $(this).parents('li').siblings().removeClass('active');
  $(this).parents('li').addClass('active');

  // Hide all tabpages.
  tab.container.children().addClass('quicktabs-hide');

  // Show the active tabpage.
  if (tab.tabpage.hasClass('quicktabs_tabpage')) {
    tab.tabpage.removeClass('quicktabs-hide');
  }
  else {
    if ($(this).hasClass('qt_ajax_tab')) {
      tab.startProgress();
      // Construct the ajax tabpage.
      if (tab.tabObj.type != 'view') {
        // construct the ajax path to retrieve the content, depending on type
        var qtAjaxPath = Drupal.settings.basePath + 'quicktabs/ajax/' + tab.tabObj.type + '/';
        switch (tab.tabObj.type) {
          case 'node':
            qtAjaxPath +=  tab.tabObj.nid + '/' + tab.tabObj.teaser + '/' + tab.tabObj.hide_title;
            break;
          case 'block':
            qtAjaxPath +=  tab.qtid + '/' + tab.tabObj.bid + '/' + tab.tabObj.hide_title;
            break;
          case 'qtabs':
            qtAjaxPath +=  tab.tabObj.qtid;
            break;
        }
        
        $.ajax({
          url: qtAjaxPath,
          type: 'GET',
          data: null,
          success: tab.options.success,
          complete: tab.options.complete,
          dataType: 'json'
        });
      }
      else {
        // special treatment for views
        tab.quicktabsAjaxView();
      }
    }
  }
  return false;
}

// theme function for ajax response
Drupal.theme.prototype.quicktabsResponse = function(tab, content) {
  var newDiv = tab.tabObj.type == 'view' ? '<div id="' + tab.tabpage_id + '" class="quicktabs_tabpage"><div></div></div>' : '<div id="' + tab.tabpage_id + '" class="quicktabs_tabpage">' + content + '</div>';
  return newDiv;
};


/**
 * Quicktabs' implementation of merlinofchaos's CTools js magic for loading
 * required js files for ajax-loaded content
 */
Drupal.quicktabs.ajax.scripts = function(files) {
  // Build a list of scripts already loaded:
  $('script').each(function () {
    Drupal.quicktabs.scripts[$(this).attr('src')] = $(this).attr('src');
  });

  var html = '';
  for (i in files) {
    // Load all files that aren't already present on the page, but make sure not
    // to add misc/jquery.js because this could override a newer version of
    // jQuery loaded by jQuery Update module.
    if (!Drupal.quicktabs.scripts[files[i]] && !files[i].match(/^\/misc\/jquery\.js.*$/)) {
      Drupal.quicktabs.scripts[files[i]] = files[i];
      html += '<script type="text/javascript" src="' + files[i] + '"></script>';
    }
  }

  if (html) {
    $('body').append($(html));
  }
};

/**
 * Quicktabs' implementation of merlinofchaos's CTools js magic for loading
 * required css files for ajax-loaded content
 */
Drupal.quicktabs.ajax.css_files = function(files) {
  // Build a list of css files already loaded:

  $('link:not(.qt-temporary-css)').each(function () {
    if ($(this).attr('type') == 'text/css') {
      Drupal.quicktabs.css[$(this).attr('href')] = $(this).attr('href');
    }
  });

  var html = '';
  for (i in files) {
    if (!Drupal.quicktabs.css[files[i].file]) {
      html += '<link class="qt-temporary-css" type="text/css" rel="stylesheet" media="' + files[i].media +
        '" href="' + files[i].file + '" />';
    }
  }

  if (html) {
    $('link.ctools-temporary-css').remove();
    $('body').append($(html));
  }
};
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.55 (25-FEB-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.3 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes (http://portfolio.gizone.co.uk/applications/slideshow/)
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($){var ver="2.55";if($.support==undefined){$.support={opacity:!($.browser.msie&&/MSIE 6.0/.test(navigator.userAgent))};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments,""));}}$.fn.cycle=function(options,arg2){if(this.length==0&&options!="stop"){if(!$.isReady&&this.selector){log("DOM not ready, queuing slideshow");var o={s:this.selector,c:this.context};$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(this.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function buildOptions($cont,$slides,els,options){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){this.style.removeAttribute("filter");});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();if(!$.support.opacity&&opts.cleartype){els[first].style.removeAttribute("filter");}if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}supportMultiTransitions(opts);if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();});opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknowtn transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){var fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||curr.offsetHeight;curr.cycleW=curr.cycleW||curr.offsetWidth;next.cycleH=next.cycleH||next.offsetHeight;next.cycleW=next.cycleW||next.offsetWidth;if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){$a.appendTo($p);}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){var s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
/*
 * jQuery Easing v1.1.1 - http://gsgd.co.uk/sandbox/jquery.easing.php
 *
 * Uses the built in easing capabilities added in jQuery 1.1
 * to offer multiple easing options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

jQuery.extend({
	easing: {
		easein: function(x, t, b, c, d) {
			return c*(t/=d)*t + b; // in
		},
		easeinout: function(x, t, b, c, d) {
			if (t < d/2) return 2*c*t*t/(d*d) + b;
			var ts = t - d/2;
			return -2*c*ts*ts/(d*d) + 2*c*ts/d + c/2 + b;		
		},
		easeout: function(x, t, b, c, d) {
			return -c*t*t/(d*d) + 2*c*t/d + b;
		},
		expoin: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			return flip * (Math.exp(Math.log(c)/d * t)) + b;		
		},
		expoout: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			return flip * (-Math.exp(-Math.log(c)/d * (t-d)) + c + 1) + b;
		},
		expoinout: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			if (t < d/2) return flip * (Math.exp(Math.log(c/2)/(d/2) * t)) + b;
			return flip * (-Math.exp(-2*Math.log(c/2)/d * (t-d)) + c + 1) + b;
		},
		bouncein: function(x, t, b, c, d) {
			return c - jQuery.easing['bounceout'](x, d-t, 0, c, d) + b;
		},
		bounceout: function(x, t, b, c, d) {
			if ((t/=d) < (1/2.75)) {
				return c*(7.5625*t*t) + b;
			} else if (t < (2/2.75)) {
				return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
			} else if (t < (2.5/2.75)) {
				return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
			} else {
				return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
			}
		},
		bounceinout: function(x, t, b, c, d) {
			if (t < d/2) return jQuery.easing['bouncein'] (x, t*2, 0, c, d) * .5 + b;
			return jQuery.easing['bounceout'] (x, t*2-d,0, c, d) * .5 + c*.5 + b;
		},
		elasin: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		},
		elasout: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
		},
		elasinout: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
			return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
		},
		backin: function(x, t, b, c, d) {
			var s=1.70158;
			return c*(t/=d)*t*((s+1)*t - s) + b;
		},
		backout: function(x, t, b, c, d) {
			var s=1.70158;
			return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
		},
		backinout: function(x, t, b, c, d) {
			var s=1.70158;
			if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
			return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
		},
		linear: function(x, t, b, c, d) {
			return c*t/d + b; //linear
		}
	}
});;

if(!this.JSON){JSON={};}
(function(){function f(n){return n<10?'0'+n:n;}
if(typeof Date.prototype.toJSON!=='function'){Date.prototype.toJSON=function(key){return this.getUTCFullYear()+'-'+
f(this.getUTCMonth()+1)+'-'+
f(this.getUTCDate())+'T'+
f(this.getUTCHours())+':'+
f(this.getUTCMinutes())+':'+
f(this.getUTCSeconds())+'Z';};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf();};}
var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapeable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'},rep;function quote(string){escapeable.lastIndex=0;return escapeable.test(string)?'"'+string.replace(escapeable,function(a){var c=meta[a];if(typeof c==='string'){return c;}
return'\\u'+('0000'+a.charCodeAt(0).toString(16)).slice(-4);})+'"':'"'+string+'"';}
function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==='object'&&typeof value.toJSON==='function'){value=value.toJSON(key);}
if(typeof rep==='function'){value=rep.call(holder,key,value);}
switch(typeof value){case'string':return quote(value);case'number':return isFinite(value)?String(value):'null';case'boolean':case'null':return String(value);case'object':if(!value){return'null';}
gap+=indent;partial=[];if(typeof value.length==='number'&&!value.propertyIsEnumerable('length')){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||'null';}
v=partial.length===0?'[]':gap?'[\n'+gap+
partial.join(',\n'+gap)+'\n'+
mind+']':'['+partial.join(',')+']';gap=mind;return v;}
if(rep&&typeof rep==='object'){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==='string'){v=str(k,value);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}else{for(k in value){if(Object.hasOwnProperty.call(value,k)){v=str(k,value);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}
v=partial.length===0?'{}':gap?'{\n'+gap+partial.join(',\n'+gap)+'\n'+
mind+'}':'{'+partial.join(',')+'}';gap=mind;return v;}}
if(typeof JSON.stringify!=='function'){JSON.stringify=function(value,replacer,space){var i;gap='';indent='';if(typeof space==='number'){for(i=0;i<space;i+=1){indent+=' ';}}else if(typeof space==='string'){indent=space;}
rep=replacer;if(replacer&&typeof replacer!=='function'&&(typeof replacer!=='object'||typeof replacer.length!=='number')){throw new Error('JSON.stringify');}
return str('',{'':value});};}
if(typeof JSON.parse!=='function'){JSON.parse=function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==='object'){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v;}else{delete value[k];}}}}
return reviver.call(holder,key,value);}
cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return'\\u'+
('0000'+a.charCodeAt(0).toString(16)).slice(-4);});}
if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,'@').replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']').replace(/(?:^|:|,)(?:\s*\[)+/g,''))){j=eval('('+text+')');return typeof reviver==='function'?walk({'':j},''):j;}
throw new SyntaxError('JSON.parse');};}})();;
// $Id: ddblock.js,v 1.3 2009/02/20 16:09:18 ppblaauw Exp $

/**
  * Set image settings
  * only used if no template is choosen for the dynamic display block
  */
Drupal.behaviors.ddblockImg = function (context) {
  for (var base in Drupal.settings.ddblockImages) {
    // get variables
    var ddblockSettings = Drupal.settings.ddblockImages[base];

    // if no template and CCS is used set the image dimensions here
    if (ddblockSettings.setDimensions == 'none') {
      if ((ddblockSettings.imageHeight > 0) && (ddblockSettings.imageWidth > 0 )) {
        $('#ddblock-'+ ddblockSettings.block +' .ddblock-container img:not(.ddblock-processed)', context)
        .css('height',ddblockSettings.imageHeight + 'px')
        .css('width',ddblockSettings.imageWidth + 'px')
        .css('padding', '2px')
        .css('border', '1px solid #ddd')
        .css('background-color', '#eee')
        .addClass('ddblock-processed');
      }
    }
  }
};

/**
  * Set content dimensions.
  * only used if no template is choosen for the dynamic display block
  */
Drupal.behaviors.ddblockImgContainer = function (context) {
  for (var base in Drupal.settings.ddblockImageContainer) {
    // get variables
    var ddblockSettings = Drupal.settings.ddblockImageContainer[base];

    // if no template and CCS is used set the content dimensions here
    if (ddblockSettings.setDimensions == 'none') {
      if ((ddblockSettings.imageContainerHeight > 12) && (ddblockSettings.imageContainerWidth > 12 )) {
        $('#ddblock-' + ddblockSettings.block  +' .ddblock-container:not(.ddblock-processed)', context)
        .css('height',ddblockSettings.imageContainerHeight + 'px')
        .css('width',ddblockSettings.imageContainerWidth + 'px')
        .css('overflow','hidden')
        .addClass('ddblock-processed');
      }
    }
  }
};

/**
  * Set the cycle plugin settings.
  *
  * Examples how and what to override for your own blocks
  *   Replace ddblockCycle with the ddblockCycle[BLOCKNUMBER]
  *   Change the onBefore and onAfter functions
  *
  */
Drupal.behaviors.ddblockCycle = function (context) {

  //helper function to clone the options object
  function CloneObject(inObj) {
    for (i in inObj)
    {
        this[i] = inObj[i];
    }
  }

  // cycle Plugin onBefore function to add functionality before the next slide shows up
  // can be used to add the following effects to slide-text
  // fadeOut - Fade out all matched elements by adjusting their opacity and firing an optional callback after completion.
  // slideUp - Hide all matched elements by adjusting their height and firing an optional callback after completion.
  // hide - Hide all matched elements using a graceful animation and firing an optional callback after completion.
  function onBefore(curr, next, opts, fwd) {
    if (opts.slideTextEffectBeforeSpeed == 0) {
      opts.slideTextEffectBeforeSpeed = 1;
    };
    switch (opts.slideTextEffectBefore) {
    case "fadeOut":
      $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).fadeOut(opts.slideTextEffectBeforeSpeed);
    break;
    case "slideUp":
      $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).slideUp(opts.slideTextEffectBeforeSpeed);
    break;
    default:
      $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).hide(opts.slideTextEffectBeforeSpeed);
    }
  }

  // cycle Plugin onAfter function to add functionality after the next slide shows up
  // can be used to add the following effects to slide-text
  // fadein - Fade in all matched elements by adjusting their opacity and firing an optional callback after completion.
  // slideDown - Reveal all matched elements by adjusting their height and firing an optional callback after completion.
  // show - Show all matched elements using a graceful animation and firing an optional callback after completion.
  function onAfter(curr, next, opts, fwd) {
    if (opts.slideTextEffectAfterSpeed == 0) {
      opts.slideTextEffectAfterSpeed = 1;
    };
    switch (opts.slideTextEffectAfter) {
    case "fadeIn":
     $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-'  + opts.slideTextPosition).fadeIn(opts.slideTextEffectAfterSpeed);
    break;
    case 'slideDown':
     $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).slideDown(opts.slideTextEffectAfterSpeed);
    break;
    default:
     $("#ddblock-"+ opts.ddblocknr + ' ' + opts.slideTextContainer + '-' + opts.slideTextPosition).show(opts.slideTextEffectAfterSpeed);
    }

    // show pager count (0 of x)
    $("#ddblock-"+ opts.ddblocknr + ' ' + '#count2').html((opts.currSlide + 1) + " of " + opts.slideCount);

    // Only show prev if previous slide exist - Only show next if next slide exist
    var index = $(this).parent().children().index(this);
    $("#ddblock-"+ opts.ddblocknr + ' ' + '#prev2')[index == 0 ? 'hide' : 'show']();
    $("#ddblock-"+ opts.ddblocknr + ' ' + '#next2')[index == opts.slideCount - 1 ? 'hide' : 'show']();
  }

  i=0;
  for (var base in Drupal.settings.ddblockContent) {
    // new options var for every block
    var options = new CloneObject($.fn.cycle.defaults);

    // simplify variable name
    var ddblockSettings = Drupal.settings.ddblockContent[base];
    var block = ddblockSettings.block;
    var custom = ddblockSettings.custom;
    var pager = ddblockSettings.pager;
    var pagerEvent = ddblockSettings.pagerEvent;
    var contentContainer = ddblockSettings.contentContainer;
    var pagerContainer = ddblockSettings.pagerContainer;

    // if not processed
    if (!$('#ddblock-' + block + '.ddblock-processed', context).size()) {

      // set transition option
      options.fx = ddblockSettings.fx;

      //set delay option for the blocks at different values so they less interfere with eachother
      options.delay = i * -1000;

      // set pager. You can have only one pager per block this way
      if (pager == 'image-pager' || pager == 'number-pager' || pager == 'custom-pager') {
        // number pager, image pager and custom pager
        options.pager = "#ddblock-" + pager + "-" + block;
        if (pager == 'image-pager') {
          options.pagerAnchorBuilder = function(idx, slide) {
            // return selector string for existing anchor
            return "#ddblock-" + pager + "-" + block + " li:eq(" + idx + ") a";
          }
        }
        if (pager == 'custom-pager') {
          options.pagerAnchorBuilder = function(idx, slide) {
            // return selector string for existing anchor
            return "#ddblock-" + pager + "-" + block + " " + pagerContainer + ":eq(" + idx + ") a.pager-link";
          }
        }
      }
      if (pager == 'prev-next-pager') {
        options.prev = "#ddblock-"+ block + " #prev2";
        options.next = "#ddblock-"+ block + " #next2";
      } else {
         //set next
        if (ddblockSettings.next) {
          options.next = "#ddblock-"+ block + ' ' + contentContainer;
        }
      }

      //set event which drives the pager navigation
      options.pagerEvent = pagerEvent;
      if (pagerEvent == 'mouseover' || pagerEvent == 'click') {
        options.fastOnEvent = true;
        options.pauseOnPagerHover = true;
      }

      //set expression for selecting slides (if something other than all children is required)
      options.slideExpr = contentContainer;

      //set speed of the transition (any valid fx speed value)
      options.speed = ddblockSettings.speed;
      if (options.speed == 0) {
        options.speed = 1;
      };

      //set timeout in milliseconds between slide transitions (0 to disable auto advance)
      options.timeout = ddblockSettings.timeOut;

      //set pause, true to enable "pause on hover"
      if (ddblockSettings.pause) {
        options.pause = ddblockSettings.pause;
      }

      //set custom options
      if (custom) {
        // get the \r\n from the string
        var custom1 = custom.replace(/\r\n/gi,"");

        // parse into JSON object
        var custom2 = JSON.parse(custom1);

        // merge custom2 with options object
        jQuery.extend(true, options, custom2);
      }

      // simple block
      if (ddblockSettings.setDimensions == 'none') {
        if ((ddblockSettings.height > 0) && (ddblockSettings.width > 0 )) {
          $('#ddblock-'+ block)
          .cycle(options)
          .css('height',ddblockSettings.height + 'px')
          .css('width',ddblockSettings.width + 'px')
          .css('overflow', ddblockSettings.overflow)
          .css('visibility', 'visible')
          .addClass('ddblock-processed');
        }
        else {
          $('#ddblock-'+ block)
          .cycle(options)
          .css('overflow', ddblockSettings.overflow)
          .css('visibility', 'visible')
          .addClass('ddblock-processed');
        }
      }
      // advanced block
      else {
        if (ddblockSettings.slideTextPosition) {
          //set slidetext options
          options.slideTextContainer = ddblockSettings.slideTextContainer;
          options.slideTextPosition = ddblockSettings.slideTextPosition;
          options.slideTextEffectBefore = ddblockSettings.slideTextEffectBefore;
          options.slideTextEffectBeforeSpeed = ddblockSettings.slideTextEffectBeforeSpeed;
          options.slideTextEffectAfter = ddblockSettings.slideTextEffectAfter;
          options.slideTextEffectAfterSpeed = ddblockSettings.slideTextEffectAfterSpeed;
          options.ddblocknr = block;
          options.before = onBefore;
          options.after = onAfter;
        }

        options.pagerContainer = ddblockSettings.pagerContainer;

        // redefine Cycle's updateActivePagerLink function
        $.fn.cycle.updateActivePagerLink = function(pager, currSlide) {
          if (pager.match("custom-pager") == "custom-pager") {
            $(pager)
            .find('a.pager-link')
            .removeClass('activeSlide')
            .filter('a.pager-link:eq('+currSlide+')')
            .addClass('activeSlide');
          }
          else {
            $(pager)
            .find('a')
            .removeClass('activeSlide')
            .filter('a:eq('+currSlide+')')
            .addClass('activeSlide');
          }
          $(pager)
          .find('.custom-pager-item')
          .removeClass('active-pager-item')
          .filter('.custom-pager-item:eq('+currSlide+')')
          .addClass('active-pager-item');
        };

        //Use the parent of the slides as the parent container so the children function can be used for the second pager
        var $container = $('#ddblock-' + block + ' ' + contentContainer).parent()
        .cycle(options)
        .css('visibility', 'visible')
        .addClass('ddblock-processed');
      }
    }
    i++;
  }
};

;
/*
 * jQuery Easing v1.1.1 - http://gsgd.co.uk/sandbox/jquery.easing.php
 *
 * Uses the built in easing capabilities added in jQuery 1.1
 * to offer multiple easing options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

jQuery.extend({
	easing: {
		easein: function(x, t, b, c, d) {
			return c*(t/=d)*t + b; // in
		},
		easeinout: function(x, t, b, c, d) {
			if (t < d/2) return 2*c*t*t/(d*d) + b;
			var ts = t - d/2;
			return -2*c*ts*ts/(d*d) + 2*c*ts/d + c/2 + b;		
		},
		easeout: function(x, t, b, c, d) {
			return -c*t*t/(d*d) + 2*c*t/d + b;
		},
		expoin: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			return flip * (Math.exp(Math.log(c)/d * t)) + b;		
		},
		expoout: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			return flip * (-Math.exp(-Math.log(c)/d * (t-d)) + c + 1) + b;
		},
		expoinout: function(x, t, b, c, d) {
			var flip = 1;
			if (c < 0) {
				flip *= -1;
				c *= -1;
			}
			if (t < d/2) return flip * (Math.exp(Math.log(c/2)/(d/2) * t)) + b;
			return flip * (-Math.exp(-2*Math.log(c/2)/d * (t-d)) + c + 1) + b;
		},
		bouncein: function(x, t, b, c, d) {
			return c - jQuery.easing['bounceout'](x, d-t, 0, c, d) + b;
		},
		bounceout: function(x, t, b, c, d) {
			if ((t/=d) < (1/2.75)) {
				return c*(7.5625*t*t) + b;
			} else if (t < (2/2.75)) {
				return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
			} else if (t < (2.5/2.75)) {
				return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
			} else {
				return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
			}
		},
		bounceinout: function(x, t, b, c, d) {
			if (t < d/2) return jQuery.easing['bouncein'] (x, t*2, 0, c, d) * .5 + b;
			return jQuery.easing['bounceout'] (x, t*2-d,0, c, d) * .5 + c*.5 + b;
		},
		elasin: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		},
		elasout: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
		},
		elasinout: function(x, t, b, c, d) {
			var s=1.70158;var p=0;var a=c;
			if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
			if (a < Math.abs(c)) { a=c; var s=p/4; }
			else var s = p/(2*Math.PI) * Math.asin (c/a);
			if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
			return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
		},
		backin: function(x, t, b, c, d) {
			var s=1.70158;
			return c*(t/=d)*t*((s+1)*t - s) + b;
		},
		backout: function(x, t, b, c, d) {
			var s=1.70158;
			return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
		},
		backinout: function(x, t, b, c, d) {
			var s=1.70158;
			if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
			return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
		},
		linear: function(x, t, b, c, d) {
			return c*t/d + b; //linear
		}
	}
});;
(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);;
/*! Copyright (c) 2008 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 *
 * Version: 3.0.1-pre
 * 
 * Requires: 1.2.2+
 */

(function($) {

$.event.special.mousewheel = {
	setup: function() {
		var handler = $.event.special.mousewheel.handler;
		
		// Fix pageX, pageY, clientX and clientY for mozilla
		if ( $.browser.mozilla )
			$(this).bind('mousemove.mousewheel', function(event) {
				$.data(this, 'mwcursorposdata', {
					pageX: event.pageX,
					pageY: event.pageY,
					clientX: event.clientX,
					clientY: event.clientY
				});
			});
	
		if ( this.addEventListener )
			this.addEventListener( ($.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
		else
			this.onmousewheel = handler;
	},
	
	teardown: function() {
		var handler = $.event.special.mousewheel.handler;
		
		$(this).unbind('mousemove.mousewheel');
		
		if ( this.removeEventListener )
			this.removeEventListener( ($.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
		else
			this.onmousewheel = function(){};
		
		$.removeData(this, 'mwcursorposdata');
	},
	
	handler: function(event) {
		var args = Array.prototype.slice.call( arguments, 1 );
		
		event = $.event.fix(event || window.event);
		// Get correct pageX, pageY, clientX and clientY for mozilla
		$.extend( event, $.data(this, 'mwcursorposdata') || {} );
		var delta = 0, returnValue = true;
		
		if ( event.wheelDelta ) delta = event.wheelDelta/120;
		if ( event.detail     ) delta = -event.detail/3;
		if ( $.browser.opera  ) delta = -event.wheelDelta;
		
		event.data  = event.data || {};
		event.type  = "mousewheel";
		
		// Add delta to the front of the arguments
		args.unshift(delta);
		// Add event to the front of the arguments
		args.unshift(event);

		return $.event.handle.apply(this, args);
	}
};

$.fn.extend({
	mousewheel: function(fn) {
		return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
	},
	
	unmousewheel: function(fn) {
		return this.unbind("mousewheel", fn);
	}
});

})(jQuery);;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Trademark:
 * Museo is a trademark of Jos Buivenga/exljbris.
 * 
 * Full name:
 * Museo-300
 * 
 * Description:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Manufacturer:
 * Jos Buivenga
 * 
 * Designer:
 * Jos Buivenga
 * 
 * Vendor URL:
 * http://www.josbuivenga.demon.nl
 */
Cufon.registerFont({"w":190,"face":{"font-family":"Museo 300","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-19 -318 366 76","underline-thickness":"18","underline-position":"-18","stemh":"22","stemv":"25","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":97,"k":{"\u2026":18,"\u201e":18,"\u201d":25,"\u201c":25,"\u201a":18,"\u2019":25,"\u2018":25,"\u021a":7,"\u0178":13,"\u0176":13,"\u0174":8,"\u0166":7,"\u0164":7,"\u0162":7,"\u00dd":13,"Y":13,"W":8,"V":8,"T":7,".":18,",":18}},"\ufb00":{"d":"32,0r0,-161r-23,0r0,-20r23,0v0,-65,39,-80,73,-73r0,22v-24,-5,-50,5,-49,51r82,0v0,-65,39,-80,73,-73r0,22v-23,-5,-50,5,-49,51r46,0r0,20r-46,0r0,161r-24,0r0,-161r-82,0r0,161r-24,0","w":216,"k":{"\u0129":-4,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-16,"\u2019":-16,"\u201c":-16,"\u201d":-16,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"\u201a":18,"\u201e":18,"\u2026":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"\u0107":8,"\u0109":8,"\u010b":8,"\u010d":8,"\u010f":8,"\u0111":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"\u011b":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":3,"\u015b":3,"\u015d":3,"\u015f":3,"\u0161":3,"\u0219":3}},"\ufb01":{"d":"32,0r0,-161r-23,0r0,-20r23,0v0,-65,39,-80,73,-73r0,22v-24,-6,-50,6,-49,51r86,0v15,0,22,7,22,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22r0,-131v0,-5,-3,-8,-8,-8r-75,0r0,161r-24,0xm139,-222r0,-31r23,0r0,31r-23,0","w":196,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\ufb02":{"d":"32,-181v5,-85,48,-72,108,-72v15,0,22,7,22,22r0,202v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22r0,-202v-1,-15,-27,-5,-41,-8v-16,-3,-44,10,-40,51r46,0r0,20r-46,0r0,161r-24,0r0,-161r-23,0r0,-20r23,0","w":194},"\ufb03":{"d":"32,0r0,-161r-23,0r0,-20r23,0v0,-65,39,-80,73,-73r0,22v-24,-5,-50,5,-49,51r82,0v0,-65,39,-80,73,-73r0,22v-23,-5,-50,5,-49,51r86,0v15,0,22,7,22,22r0,130v0,11,13,8,23,8r0,21v-23,0,-47,4,-47,-22r0,-131v0,-5,-3,-8,-8,-8r-76,0r0,161r-24,0r0,-161r-82,0r0,161r-24,0xm245,-222r0,-31r24,0r0,31r-24,0","w":302,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\ufb04":{"d":"138,-181v5,-85,48,-72,108,-72v15,0,22,7,22,22r0,202v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22r0,-202v-1,-15,-26,-6,-40,-8v-16,-2,-45,10,-41,51r46,0r0,20r-46,0r0,161r-24,0r0,-161r-82,0r0,161r-24,0r0,-161r-23,0r0,-20r23,0v0,-65,37,-80,73,-73r0,22v-24,-5,-50,6,-49,51r82,0","w":300},"\u00a0":{"w":97},"!":{"d":"42,-66r-1,-187r25,0r-1,187r-23,0xm40,0r0,-28r28,0r0,28r-28,0","w":106},"\"":{"d":"67,-196r0,-61r22,0r0,61r-22,0xm24,-196r0,-61r21,0r0,61r-21,0","w":112,"k":{"X":-7,"4":18,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"Y":-7,"\u00dd":-7,"\u0176":-7,"\u0178":-7,"V":-7,"W":-7,"\u0174":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"J":25,"\u0134":25,"M":8,"N":8,"\u014a":8,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"Z":-5,"\u0179":-5,"\u017b":-5,"\u017d":-5}},"#":{"d":"54,0r12,-70r-51,0r3,-20r51,0r13,-71r-51,0r3,-20r51,0r13,-72r22,0r-13,72r63,0r12,-72r22,0r-12,72r50,0r-4,20r-50,0r-12,71r50,0r-4,20r-50,0r-12,70r-22,0r12,-70r-62,0r-12,70r-22,0xm91,-90r62,0r13,-71r-62,0","w":256},"$":{"d":"17,-43r18,-15v0,0,21,39,64,39v31,0,50,-20,50,-45v0,-63,-125,-49,-125,-130v0,-31,26,-57,65,-62r0,-35r20,0r0,34v30,2,67,17,59,61r-23,0v4,-27,-15,-38,-43,-38v-33,0,-52,18,-52,39v0,60,125,45,125,130v0,34,-25,65,-66,69r0,33r-20,0r0,-33v-50,-5,-72,-47,-72,-47","w":191,"k":{"7":7}},"%":{"d":"73,-157v-28,0,-51,-22,-51,-50v0,-27,23,-50,51,-50v28,0,50,23,50,50v0,28,-22,50,-50,50xm24,0r193,-253r26,0r-193,253r-26,0xm73,-177v17,0,29,-13,29,-30v0,-16,-12,-30,-29,-30v-17,0,-29,14,-29,30v0,17,12,30,29,30xm144,-45v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,27,-23,49,-51,49v-28,0,-50,-22,-50,-49xm166,-46v0,17,11,30,28,30v17,0,30,-13,30,-30v0,-16,-13,-30,-30,-30v-17,0,-28,14,-28,30","w":267},"&":{"d":"102,4v-88,0,-117,-113,-40,-140v1,-3,-32,-10,-35,-57v-3,-47,56,-75,105,-60r-7,20v-32,-8,-72,7,-72,41v0,17,8,46,55,46r52,0r0,-35r25,0r0,35r34,0r0,22r-34,0v7,75,-19,128,-83,128xm42,-71v0,28,22,52,60,52v49,0,63,-46,58,-105v-58,-4,-118,2,-118,53","w":224},"'":{"d":"24,-196r0,-61r21,0r0,61r-21,0","w":68,"k":{"X":-7,"4":18,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"Y":-7,"\u00dd":-7,"\u0176":-7,"\u0178":-7,"V":-7,"W":-7,"\u0174":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"J":25,"\u0134":25,"M":8,"N":8,"\u014a":8,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"Z":-5,"\u0179":-5,"\u017b":-5,"\u017d":-5}},"(":{"d":"72,34v-51,-82,-57,-213,-3,-297r24,0v-56,90,-51,206,2,297r-23,0","w":111,"k":{"\u0135":-6,"j":-6,"4":14}},")":{"d":"17,34v52,-91,57,-207,2,-297r23,0v55,84,49,215,-3,297r-22,0","w":111},"*":{"d":"55,-121r-19,-14r33,-44r-52,-15r7,-23r52,19r-3,-55r25,0r-3,55r53,-18r7,22v-17,6,-38,8,-53,16r34,43r-19,14v-11,-15,-20,-32,-32,-46","w":171},"+":{"d":"15,-92r0,-21r83,0r0,-91r22,0r0,91r83,0r0,21r-83,0r0,92r-22,0r0,-92r-83,0","w":218,"k":{"7":7}},",":{"d":"29,-30r26,0r-26,65r-21,0","w":77,"k":{"9":2,"7":7,"6":4,"4":6,"0":7,"T":25,"\u0162":25,"\u0164":25,"\u0166":25,"\u021a":25,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":25,"W":25,"\u0174":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"v":14,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":30,"\u2013":30,"\u2014":30,"\u2212":30,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u0109":5,"\u010b":5,"\u010d":5,"\u010f":5,"\u0111":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"J":-9,"\u0134":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u010e":7,"\u0112":7,"\u0114":7,"\u0116":7,"\u0118":7,"\u011a":7,"\u0124":7,"\u0126":7,"\u0136":7,"\u0139":7,"\u013b":7,"\u013d":7,"\u013f":7,"\u0141":7,"\u0154":7,"\u0156":7,"\u0158":7,"\u00ab":18,"\u00bb":18,"\u2039":18,"\u203a":18}},"-":{"d":"27,-91r0,-22r102,0r0,22r-102,0","w":155,"k":{"x":9,"X":4,"9":13,"7":25,"5":10,"3":14,"1":11}},"\u00ad":{"d":"27,-91r0,-22r102,0r0,22r-102,0","w":155,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"\u021a":22,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"V":11,"W":11,"\u0174":11,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00c7":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"\u00d6":-5,"\u00d8":-5,"\u0106":-5,"\u0108":-5,"\u010a":-5,"\u010c":-5,"\u011c":-5,"\u011e":-5,"\u0120":-5,"\u0122":-5,"\u014c":-5,"\u014e":-5,"\u0150":-5,"\u0152":-5,"v":6,"w":6,"\u0175":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0177":6,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u00c4":6,"\u00c5":6,"\u00c6":6,"\u0100":6,"\u0102":6,"\u0104":6,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"S":9,"\u015a":9,"\u015c":9,"\u015e":9,"\u0160":9,"\u0218":9,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4}},".":{"d":"25,0r0,-29r28,0r0,29r-28,0","w":77,"k":{"9":2,"7":7,"6":4,"4":6,"0":7,"T":25,"\u0162":25,"\u0164":25,"\u0166":25,"\u021a":25,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":25,"W":25,"\u0174":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"v":14,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":30,"\u2013":30,"\u2014":30,"\u2212":30,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u0109":5,"\u010b":5,"\u010d":5,"\u010f":5,"\u0111":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"J":-9,"\u0134":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u010e":7,"\u0112":7,"\u0114":7,"\u0116":7,"\u0118":7,"\u011a":7,"\u0124":7,"\u0126":7,"\u0136":7,"\u0139":7,"\u013b":7,"\u013d":7,"\u013f":7,"\u0141":7,"\u0154":7,"\u0156":7,"\u0158":7,"\u00ab":18,"\u00bb":18,"\u2039":18,"\u203a":18}},"\/":{"d":"1,15r92,-282r22,0r-91,282r-23,0","w":117,"k":{"7":-4}},"0":{"d":"108,4v-66,0,-87,-58,-87,-131v0,-73,21,-130,87,-130v66,0,88,57,88,130v0,73,-22,131,-88,131xm108,-19v48,0,62,-48,62,-108v0,-60,-14,-107,-62,-107v-48,0,-61,47,-61,107v0,60,13,108,61,108","w":216,"k":{"\u2026":14,"\u201e":14,"\u201a":14,".":14,",":14,"\u00b0":4,"8":4,"7":10,"3":3,"2":4,"1":5}},"1":{"d":"23,0r0,-22r57,0r-1,-200v-4,8,-30,33,-39,42r-16,-16r57,-57r24,0r0,231r55,0r0,22r-137,0","w":171,"k":{"\u2212":18,"\u201d":18,"\u201c":18,"\u2019":18,"\u2018":18,"\u2014":18,"\u2013":18,"-":18,"'":22,"\"":22,"\u2030":8,"\u00b0":25,"9":4,"8":3,"7":4,"6":4,"5":3,"4":6,"3":1,"0":5,"\/":-10,"%":8}},"2":{"d":"15,-25v0,-94,134,-86,134,-161v0,-52,-90,-63,-97,-20r0,12r-24,0v-9,-48,37,-63,70,-63v48,0,77,32,77,71v0,89,-134,86,-134,156v0,5,3,8,8,8r106,0v11,0,7,-15,8,-25r23,0v0,23,4,47,-21,47r-127,0v-17,0,-23,-7,-23,-25","w":203,"k":{"\u2212":10,"\u2014":10,"\u2013":10,"-":10,"9":6,"7":1,"4":7,"0":2}},"3":{"d":"9,-31r15,-19v0,0,27,31,67,31v30,0,57,-23,57,-55v0,-40,-36,-57,-79,-53r-6,-15r75,-90v-20,2,-62,1,-86,1v-11,0,-7,15,-8,25r-23,0v0,-23,-4,-47,21,-47r128,0r0,16r-74,88v32,2,78,20,78,74v0,43,-36,79,-84,79v-50,0,-81,-35,-81,-35","k":{"9":2,"7":2}},"4":{"d":"5,-70r0,-16r124,-167r27,0r0,161r40,0r0,22r-40,0r0,70r-26,0r0,-70r-125,0xm131,-92r0,-128r-96,129v25,-2,67,-1,96,-1","w":202,"k":{"\u2026":4,"\u201e":4,"\u201d":7,"\u201c":7,"\u201a":4,"\u2019":7,"\u2018":7,".":4,",":4,"\u00b0":7,"9":4,"4":-11,"2":-7,"1":3}},"5":{"d":"19,-32r16,-17v0,0,19,30,59,30v36,0,63,-26,63,-59v0,-35,-30,-60,-66,-60v-42,0,-42,23,-61,9r11,-102v3,-40,69,-17,105,-22v25,-4,21,24,21,47r-23,0v-1,-10,3,-25,-8,-25r-64,0v-5,0,-7,3,-8,8v-2,23,-8,51,-8,72v0,0,16,-10,38,-10v51,0,89,37,89,83v0,45,-38,82,-89,82v-50,0,-75,-36,-75,-36","w":204,"k":{"\u2026":5,"\u201e":5,"\u201a":5,".":5,",":5,"\u00b0":7,"9":1,"7":6,"5":3,"3":3,"2":2,"1":7,"0":3}},"6":{"d":"107,4v-55,0,-92,-49,-92,-115v0,-64,34,-146,112,-146v28,0,46,10,46,10r-9,22v0,0,-16,-9,-37,-9v-52,-1,-83,55,-84,104v38,-57,143,-30,143,50v0,53,-35,84,-79,84xm42,-95v0,33,27,76,65,76v34,0,54,-26,54,-61v0,-35,-22,-58,-57,-58v-34,0,-62,22,-62,43","w":201,"k":{"\u2212":5,"\u2014":5,"\u2013":5,"-":5,"9":4,"7":3,"5":2,"3":2,"0":3}},"7":{"d":"28,0r125,-231r-111,0v-11,0,-6,15,-7,25r-24,0v0,-23,-4,-47,21,-47r150,0r0,17r-125,236r-29,0","w":184,"k":{"\u2212":19,"\u203a":9,"\u2039":9,"\u2026":43,"\u201e":43,"\u201d":-13,"\u201c":-13,"\u201a":43,"\u2019":-13,"\u2018":-13,"\u2014":19,"\u2013":19,"\u00bb":9,"\u00ab":9,">":14,"=":14,"<":14,";":5,":":5,".":43,"-":19,",":43,"+":14,"\u00b0":-11,"?":-6,"9":3,"8":3,"7":-2,"5":1,"4":21,"2":3,"0":7,"\/":22}},"8":{"d":"17,-71v0,-46,46,-65,45,-68v-57,-24,-39,-118,42,-118v48,0,77,28,77,67v0,39,-34,63,-34,63v72,27,39,131,-44,131v-45,0,-86,-27,-86,-75xm53,-191v-1,34,41,44,71,53v9,0,32,-25,32,-51v0,-27,-21,-45,-52,-45v-32,0,-51,19,-51,43xm162,-69v0,-35,-49,-49,-78,-58v-10,0,-41,24,-41,55v0,33,29,53,60,53v30,0,59,-20,59,-50","w":205,"k":{"9":3,"7":4,"4":-1,"0":4}},"9":{"d":"28,-6r10,-22v0,0,16,9,37,9v52,1,83,-55,83,-104v-38,57,-143,28,-143,-50v0,-53,36,-84,80,-84v55,0,91,49,91,115v0,64,-33,146,-111,146v-28,0,-47,-10,-47,-10xm98,-115v34,0,61,-22,61,-43v0,-33,-26,-76,-64,-76v-34,0,-54,26,-54,61v0,35,22,58,57,58","w":201,"k":{"\u2026":14,"\u201e":14,"\u201a":14,".":14,",":14,"8":2,"7":5,"3":2,"2":2,"0":2}},":":{"d":"37,-152r0,-29r28,0r0,29r-28,0xm37,0r0,-29r28,0r0,29r-28,0","w":101},";":{"d":"37,-152r0,-29r28,0r0,29r-28,0xm19,35r18,-65r26,0r-23,65r-21,0","w":101},"<":{"d":"25,-93r0,-18r163,-73r0,24r-133,58r133,57r0,24","w":218,"k":{"7":7}},"=":{"d":"25,-123r0,-21r168,0r0,21r-168,0xm25,-60r0,-21r168,0r0,21r-168,0","w":218,"k":{"7":7}},">":{"d":"28,-21r0,-24r132,-58r-132,-57r0,-24r162,73r0,18","w":218,"k":{"7":7}},"?":{"d":"55,-66v-9,-70,62,-79,63,-127v0,-23,-19,-41,-47,-41v-24,0,-44,15,-44,15r-13,-18v0,0,22,-21,58,-21v41,0,72,27,72,64v-1,67,-74,62,-64,128r-25,0xm54,0r0,-28r27,0r0,28r-27,0","w":155},"@":{"d":"15,-87v0,-73,57,-132,128,-132v116,0,83,86,88,181r26,0r0,20r-97,0v-41,0,-72,-32,-72,-69v0,-54,53,-77,119,-69v-1,-22,-20,-42,-62,-42v-59,0,-105,51,-105,111v0,61,45,110,107,110r0,22v-75,0,-132,-59,-132,-132xm113,-87v0,44,44,54,94,49r0,-99v-50,-5,-94,5,-94,50","w":266},"A":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123","w":236,"k":{"X":3}},"B":{"d":"38,-22r0,-209r-24,0r0,-22v78,1,178,-17,176,64v0,28,-14,46,-32,55v26,7,43,32,43,63v0,70,-68,76,-141,71v-15,0,-22,-7,-22,-22xm63,-143v50,2,102,5,102,-45v0,-49,-54,-44,-102,-43r0,88xm63,-30v6,18,43,4,62,8v31,0,49,-20,49,-50v0,-55,-56,-52,-111,-50r0,92","w":218,"k":{"\u201d":6,"\u201c":6,"\u2019":6,"\u2018":6,"\u021a":7,"\u0178":9,"\u0176":9,"\u0175":2,"\u0174":4,"\u0166":7,"\u0164":7,"\u0162":7,"\u00dd":9,"w":2,"v":2,"Y":9,"W":4,"V":4,"T":7,"'":2,"\"":2}},"C":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,42,110,100,110v52,0,83,-36,83,-36r15,18v0,0,-35,41,-98,41v-74,0,-126,-59,-126,-133","w":249,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-9,"]":-9,"|":-9,"}":-9}},"D":{"d":"39,-22r0,-209r-24,0r0,-22r102,0v76,0,127,46,127,126v0,103,-74,127,-184,127v-15,0,-21,-7,-21,-22xm64,-30v3,16,34,5,50,8v62,0,103,-37,103,-105v0,-86,-62,-112,-153,-104r0,201","w":257,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"E":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"F":{"d":"39,0r0,-231r-24,0r0,-22r135,0v25,-2,21,24,21,47r-23,0v-1,-10,3,-25,-8,-25r-76,0r0,95r92,0r0,23r-92,0r0,113r-25,0","w":179,"k":{"\u2026":36,"\u201e":36,"\u201d":-9,"\u201c":-9,"\u201a":36,"\u2019":-9,"\u2018":-9,"\u0153":2,"\u0152":4,"\u0151":2,"\u0150":4,"\u014f":2,"\u014e":4,"\u014d":2,"\u014c":4,"\u014a":3,"\u0134":6,"\u0123":2,"\u0122":4,"\u0121":2,"\u0120":4,"\u011f":2,"\u011e":4,"\u011d":2,"\u011c":4,"\u011b":2,"\u0119":2,"\u0117":2,"\u0115":2,"\u0113":2,"\u0111":2,"\u010f":2,"\u010d":2,"\u010c":4,"\u010b":2,"\u010a":4,"\u0109":2,"\u0108":4,"\u0107":2,"\u0106":4,"\u0105":5,"\u0104":17,"\u0103":5,"\u0102":17,"\u0101":5,"\u0100":17,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":17,"\u00c5":17,"\u00c4":17,"\u00c3":17,"\u00c2":17,"\u00c1":17,"\u00c0":17,"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"a":5,"Q":4,"O":4,"N":3,"M":3,"J":6,"G":4,"C":4,"A":17,"@":2,".":36,",":36,"'":-7,"\"":-7}},"G":{"d":"14,-127v0,-73,54,-130,126,-130v59,0,89,31,89,31r-15,18v0,0,-28,-26,-73,-26v-57,0,-101,46,-101,107v0,62,43,108,100,108v50,0,80,-38,80,-38v-1,-19,8,-46,-23,-39r0,-22v23,0,47,-3,47,22r0,96r-23,0r0,-30v0,0,-30,34,-83,34v-69,0,-124,-55,-124,-131","w":262,"k":{"T":6,"\u0162":6,"\u0164":6,"\u0166":6,"\u021a":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"\u0168":3,"\u016a":3,"\u016c":3,"\u016e":3,"\u0170":3,"\u0172":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u0101":-3,"\u0103":-3,"\u0105":-3,"\u00ad":-7,"\u2013":-7,"\u2014":-7,"\u2212":-7,"\"":2,"'":2,"\u2018":7,"\u2019":7,"\u201c":7,"\u201d":7,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"\u0107":-3,"\u0109":-3,"\u010b":-3,"\u010d":-3,"\u010f":-3,"\u0111":-3,"\u0113":-3,"\u0115":-3,"\u0117":-3,"\u0119":-3,"\u011b":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3,"\u014d":-3,"\u014f":-3,"\u0151":-3,"\u0153":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u010e":2,"\u0112":2,"\u0114":2,"\u0116":2,"\u0118":2,"\u011a":2,"\u0124":2,"\u0126":2,"\u0136":2,"\u0139":2,"\u013b":2,"\u013d":2,"\u013f":2,"\u0141":2,"\u0154":2,"\u0156":2,"\u0158":2}},"H":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,93r145,0r0,-93v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-25,0r0,-116r-145,0r0,116r-25,0","w":272,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"I":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0","w":105},"J":{"d":"80,4v-38,0,-75,-26,-71,-85r25,0v-3,42,20,62,46,62v22,0,46,-14,46,-53r0,-151v0,-5,-3,-8,-8,-8r-63,0r0,-22v34,5,96,-16,96,22r0,160v0,55,-36,75,-71,75","w":181,"k":{"\u2018":5,"\u2019":5,"\u201c":5,"\u201d":5,",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0100":4,"\u0102":4,"\u0104":4,":":6,";":6}},"K":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,88v19,-1,43,5,51,-9r61,-101r29,0v-26,39,-49,86,-78,121v22,23,38,71,56,101v5,10,14,9,26,9r0,22v-26,0,-38,1,-48,-19r-47,-93v-7,-14,-31,-8,-50,-9r0,121r-25,0","w":212,"k":{"x":2,"C":8,"G":8,"O":8,"Q":8,"\u00c7":8,"\u00d2":8,"\u00d3":8,"\u00d4":8,"\u00d5":8,"\u00d6":8,"\u00d8":8,"\u0106":8,"\u0108":8,"\u010a":8,"\u010c":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"\u014c":8,"\u014e":8,"\u0150":8,"\u0152":8,"v":11,"w":11,"\u0175":11,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"\u00ad":15,"\u2013":15,"\u2014":15,"\u2212":15,"\u2018":1,"\u2019":1,"\u201c":1,"\u201d":1,")":-9,"]":-9,"|":-9,"}":-9,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,":":-11,";":-11,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":3,"\u00bb":3,"\u2039":3,"\u203a":3}},"L":{"d":"39,-22r0,-201v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,201v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-105,0v-15,0,-21,-7,-21,-22","k":{"*":28,"T":36,"\u0162":36,"\u0164":36,"\u0166":36,"\u021a":36,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":14,"W":14,"\u0174":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u0168":13,"\u016a":13,"\u016c":13,"\u016e":13,"\u0170":13,"\u0172":13,"v":17,"w":17,"\u0175":17,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":29,"'":29,"\u2018":22,"\u2019":22,"\u201c":22,"\u201d":22,",":-4,".":-4,"\u201a":-4,"\u201e":-4,"\u2026":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u0138":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"\u0155":2,"\u0157":2,"\u0159":2,"\u0169":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"\u010e":11,"\u0112":11,"\u0114":11,"\u0116":11,"\u0118":11,"\u011a":11,"\u0124":11,"\u0126":11,"\u0136":11,"\u0139":11,"\u013b":11,"\u013d":11,"\u013f":11,"\u0141":11,"\u0154":11,"\u0156":11,"\u0158":11,"b":5,"h":5,"k":5,"l":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013c":5,"\u013e":5,"\u0140":5}},"M":{"d":"8,0r0,-22v9,0,20,2,21,-8r18,-223r25,0r81,177r79,-177r25,0r18,223v0,10,12,8,22,8r0,22v-24,0,-45,3,-47,-22r-13,-189v-18,52,-51,113,-74,164r-22,0r-60,-129v-7,-13,-11,-37,-14,-36v-1,59,-13,131,-13,190v0,25,-22,23,-46,22","w":304,"k":{"\u201d":10,"\u201c":10,"\u2019":10,"\u2018":10,"\u021a":6,"\u0173":-1,"\u0171":-1,"\u016f":-1,"\u016d":-1,"\u016b":-1,"\u0169":-1,"\u0166":6,"\u0164":6,"\u0162":6,"\u0159":-1,"\u0157":-1,"\u0155":-1,"\u014b":-1,"\u0148":-1,"\u0146":-1,"\u0144":-1,"\u0138":-1,"\u00fc":-1,"\u00fb":-1,"\u00fa":-1,"\u00f9":-1,"\u00f1":-1,"u":-1,"r":-1,"p":-1,"n":-1,"m":-1,"T":6,"'":11,"\"":11}},"N":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"O":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"P":{"d":"39,0r0,-231r-24,0r0,-22r107,0v45,0,78,29,78,76v0,70,-61,85,-136,78r0,99r-25,0xm64,-122v57,2,110,3,110,-55v0,-56,-53,-57,-110,-54r0,109","w":208,"k":{"\u2026":38,"\u201e":38,"\u201a":38,"\u0219":4,"\u017e":2,"\u017c":2,"\u017a":2,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u014a":3,"\u0134":7,"\u0123":7,"\u0121":7,"\u011f":7,"\u011d":7,"\u011b":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u0111":7,"\u010f":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0105":7,"\u0104":21,"\u0103":7,"\u0102":21,"\u0101":7,"\u0100":21,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00c6":21,"\u00c5":21,"\u00c4":21,"\u00c3":21,"\u00c2":21,"\u00c1":21,"\u00c0":21,"z":2,"s":4,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,"N":3,"M":3,"J":7,"A":21,"@":7,".":38,",":38,"'":-2,"\"":-2}},"Q":{"d":"14,-128v0,-73,56,-129,128,-129v110,0,168,137,98,216r31,31r-16,16r-31,-31v-79,69,-210,6,-210,-103xm40,-128v0,61,45,109,102,109v40,0,65,-23,65,-23r-31,-31r16,-16r30,31v53,-65,8,-175,-80,-175v-57,0,-102,45,-102,105","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"R":{"d":"39,0r0,-231r-24,0r0,-22r107,0v42,0,73,28,73,72v0,39,-24,63,-49,68v19,20,30,57,45,82v5,10,11,9,23,9r0,22v-25,0,-36,1,-46,-19r-36,-72v-9,-25,-39,-13,-68,-16r0,107r-25,0xm64,-129v54,2,105,4,105,-51v0,-54,-51,-54,-105,-51r0,102","w":217,"k":{"T":8,"\u0162":8,"\u0164":8,"\u0166":8,"\u021a":8,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"V":2,"W":2,"\u0174":2,"C":1,"G":1,"O":1,"Q":1,"\u00c7":1,"\u00d2":1,"\u00d3":1,"\u00d4":1,"\u00d5":1,"\u00d6":1,"\u00d8":1,"\u0106":1,"\u0108":1,"\u010a":1,"\u010c":1,"\u011c":1,"\u011e":1,"\u0120":1,"\u0122":1,"\u014c":1,"\u014e":1,"\u0150":1,"\u0152":1,"\u2018":6,"\u2019":6,"\u201c":6,"\u201d":6,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"S":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-51,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-16,-38,-44,-38v-33,0,-52,19,-52,41v0,59,125,43,125,127v0,38,-28,70,-76,70v-52,0,-81,-36,-81,-36","w":186,"k":{"\u00ad":-3,"\u2013":-3,"\u2014":-3,"\u2212":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u0138":-2,"\u0144":-2,"\u0146":-2,"\u0148":-2,"\u014b":-2,"\u0155":-2,"\u0157":-2,"\u0159":-2,"\u0169":-2,"\u016b":-2,"\u016d":-2,"\u016f":-2,"\u0171":-2,"\u0173":-2,"z":2,"\u017a":2,"\u017c":2,"\u017e":2}},"T":{"d":"99,0r0,-231r-63,0v-11,-1,-7,15,-8,25r-23,0v1,-23,-5,-47,21,-47r171,0v26,-3,21,24,21,47r-24,0v-1,-10,3,-25,-8,-25r-62,0r0,231r-25,0","w":223,"k":{"\u0133":13,"\u012b":-14,"\u0129":-18,"\u00ef":-11,"j":14,"i":13," ":7,"Y":-4,"\u00dd":-4,"\u0176":-4,"\u0178":-4,"V":-3,"W":-3,"\u0174":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"\u0101":22,"\u0103":22,"\u0105":22,"v":22,"w":22,"\u0175":22,"y":23,"\u00fd":23,"\u00ff":23,"\u0177":23,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0100":31,"\u0102":31,"\u0104":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"\u0107":27,"\u0109":27,"\u010b":27,"\u010d":27,"\u010f":27,"\u0111":27,"\u0113":27,"\u0115":27,"\u0117":27,"\u0119":27,"\u011b":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u0138":16,"\u0144":16,"\u0146":16,"\u0148":16,"\u014b":16,"\u0155":16,"\u0157":16,"\u0159":16,"\u0169":16,"\u016b":16,"\u016d":16,"\u016f":16,"\u0171":16,"\u0173":16,"J":18,"\u0134":18,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"\u00ab":11,"\u00bb":11,"\u2039":11,"\u203a":11,"M":4,"N":4,"\u014a":4,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"U":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"V":{"d":"104,0r-83,-223v-3,-8,-8,-8,-17,-8r0,-22v23,0,34,1,41,21r73,203v18,-67,50,-138,72,-203v7,-21,17,-21,40,-21r0,22v-9,0,-13,0,-16,8r-83,223r-27,0","w":235,"k":{" ":8,"T":-3,"\u0162":-3,"\u0164":-3,"\u0166":-3,"\u021a":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":-7,"'":-7,"\u2018":-2,"\u2019":-2,"\u201c":-2,"\u201d":-2,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0100":12,"\u0102":12,"\u0104":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u0107":19,"\u0109":19,"\u010b":19,"\u010d":19,"\u010f":19,"\u0111":19,"\u0113":19,"\u0115":19,"\u0117":19,"\u0119":19,"\u011b":19,"\u011d":19,"\u011f":19,"\u0121":19,"\u0123":19,"\u014d":19,"\u014f":19,"\u0151":19,"\u0153":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u0138":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"\u0159":7,"\u0169":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"J":12,"\u0134":12,"M":2,"N":2,"\u014a":2,"S":2,"\u015a":2,"\u015c":2,"\u015e":2,"\u0160":2,"\u0218":2}},"W":{"d":"82,0r-58,-223v-2,-8,-9,-8,-18,-8r0,-22v23,0,37,-1,42,21r50,201r63,-221r24,0r58,221v12,-65,35,-137,49,-201v5,-22,19,-21,42,-21r0,22v-9,0,-15,0,-17,8r-59,223r-29,0r-57,-213r-60,213r-30,0","w":340,"k":{" ":8,"T":-3,"\u0162":-3,"\u0164":-3,"\u0166":-3,"\u021a":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":-7,"'":-7,"\u2018":-2,"\u2019":-2,"\u201c":-2,"\u201d":-2,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0100":12,"\u0102":12,"\u0104":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u0107":19,"\u0109":19,"\u010b":19,"\u010d":19,"\u010f":19,"\u0111":19,"\u0113":19,"\u0115":19,"\u0117":19,"\u0119":19,"\u011b":19,"\u011d":19,"\u011f":19,"\u0121":19,"\u0123":19,"\u014d":19,"\u014f":19,"\u0151":19,"\u0153":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u0138":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"\u0159":7,"\u0169":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"J":12,"\u0134":12,"M":2,"N":2,"\u014a":2,"S":2,"\u015a":2,"\u015c":2,"\u015e":2,"\u0160":2,"\u0218":2}},"X":{"d":"5,0r81,-132r-55,-89v-7,-10,-13,-10,-25,-10r0,-22v54,-8,57,47,80,74r17,29v9,-18,35,-61,48,-83v11,-21,22,-20,48,-20r0,22v-12,0,-18,0,-25,10r-55,89r81,132r-29,0r-69,-115r-68,115r-29,0","w":205,"k":{"\u2212":4,"\u201d":-5,"\u201c":-5,"\u2019":-5,"\u2018":-5,"\u2014":4,"\u2013":4,"\u0153":3,"\u0152":4,"\u0151":3,"\u0150":4,"\u014f":3,"\u014e":4,"\u014d":3,"\u014c":4,"\u0123":3,"\u0122":4,"\u0121":3,"\u0120":4,"\u011f":3,"\u011e":4,"\u011d":3,"\u011c":4,"\u011b":3,"\u0119":3,"\u0117":3,"\u0115":3,"\u0113":3,"\u0111":3,"\u010f":3,"\u010d":3,"\u010c":4,"\u010b":3,"\u010a":4,"\u0109":3,"\u0108":4,"\u0107":3,"\u0106":4,"\u0104":3,"\u0102":3,"\u0100":3,"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":3,"\u00c5":3,"\u00c4":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u00c0":3,"}":-7,"|":-7,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3,"]":-7,"Q":4,"O":4,"G":4,"C":4,"A":3,"@":3,"-":4,")":-7,"'":-7,"\"":-7}},"Y":{"d":"94,0r0,-110r-68,-111v-6,-10,-10,-10,-22,-10r0,-22v23,0,31,-1,44,20r59,100v13,-27,41,-72,58,-100v13,-21,21,-20,45,-20r0,22v-11,0,-18,0,-23,10r-68,111r0,110r-25,0","w":213,"k":{" ":13,"T":-4,"\u0162":-4,"\u0164":-4,"\u0166":-4,"\u021a":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,"\u2018":-1,"\u2019":-1,"\u201c":-1,"\u201d":-1,",":29,".":29,"\u201a":29,"\u201e":29,"\u2026":29,"A":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00c6":29,"\u0100":29,"\u0102":29,"\u0104":29,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"\u0107":25,"\u0109":25,"\u010b":25,"\u010d":25,"\u010f":25,"\u0111":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"\u011b":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u0138":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u014b":13,"\u0155":13,"\u0157":13,"\u0159":13,"\u0169":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13,"J":13,"\u0134":13,"z":11,"\u017a":11,"\u017c":11,"\u017e":11,"\u00ab":7,"\u00bb":7,"\u2039":7,"\u203a":7,"M":6,"N":6,"\u014a":6,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"Z":{"d":"7,0r0,-18r154,-213r-119,0v-11,0,-7,15,-8,25r-24,0v0,-23,-3,-47,22,-47r160,0r0,18r-135,190v-9,13,-19,23,-19,23r128,0v11,0,7,-15,8,-25r23,0v0,23,3,47,-22,47r-168,0","w":207,"k":{"\u00ad":9,"\u2013":9,"\u2014":9,"\u2212":9,"\u00ab":4,"\u00bb":4,"\u2039":4,"\u203a":4}},"[":{"d":"36,12r0,-253v-2,-26,25,-22,49,-22r0,20v-10,1,-26,-4,-26,8r0,241v0,12,16,7,26,8r0,20v0,0,-49,4,-49,-22","w":109,"k":{"\u0135":-6,"j":-6,"4":14}},"\\":{"d":"93,15r-91,-282r23,0r91,282r-23,0","w":114},"]":{"d":"24,14v10,-1,26,4,26,-8r0,-241v0,-12,-16,-7,-26,-8r0,-20v0,0,49,-4,49,22r0,253v2,26,-25,22,-49,22r0,-20","w":109},"^":{"d":"26,-90r72,-163r16,0r72,163r-24,0r-56,-133r-56,133r-24,0","w":218},"_":{"d":"2,0r186,0r0,21r-186,0r0,-21","w":189},"`":{"d":"65,-271r-32,-43r28,0r25,43r-21,0","w":129},"a":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"b":{"d":"30,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22v0,26,-3,56,0,80v0,0,15,-34,61,-34v49,0,79,39,79,95v0,57,-34,94,-82,94v-45,0,-57,-36,-60,-35r1,31r-24,0xm54,-90v0,36,19,73,58,73v32,0,58,-27,58,-73v0,-44,-24,-73,-57,-73v-30,0,-59,22,-59,73","w":210,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"c":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-25,29,-71,29v-54,0,-95,-38,-95,-94","k":{"\u021a":11,"\u0177":2,"\u0166":11,"\u0164":11,"\u0162":11,"\u0140":1,"\u013e":1,"\u013c":1,"\u013a":1,"\u0137":1,"\u0125":1,"\u00ff":2,"\u00fd":2,"y":2,"l":1,"k":1,"h":1,"b":1,"T":11}},"d":{"d":"15,-91v0,-57,33,-94,81,-94v44,0,60,33,60,33r0,-72v0,-11,-14,-7,-24,-8r0,-21v24,0,48,-4,48,22r0,202v0,11,13,8,23,8r0,21v-30,4,-53,-4,-47,-32v0,0,-14,36,-62,36v-49,0,-79,-39,-79,-95xm98,-18v30,0,58,-22,58,-73v0,-37,-18,-72,-57,-72v-32,0,-59,26,-59,72v0,45,24,73,58,73","w":211},"e":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"f":{"d":"32,0r0,-161r-23,0r0,-20r23,0v0,-65,39,-80,73,-73r0,22v-24,-6,-50,6,-49,51r46,0r0,20r-46,0r0,161r-24,0","w":109,"k":{"\u0129":-4,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-16,"\u2019":-16,"\u201c":-16,"\u201d":-16,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"\u201a":18,"\u201e":18,"\u2026":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"\u0107":8,"\u0109":8,"\u010b":8,"\u010d":8,"\u010f":8,"\u0111":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"\u011b":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":3,"\u015b":3,"\u015d":3,"\u015f":3,"\u0161":3,"\u0219":3}},"g":{"d":"15,-94v0,-54,30,-91,79,-91v49,0,60,31,60,31v-5,-28,20,-28,46,-27r0,21v-10,0,-23,-3,-23,8r0,148v0,83,-88,95,-146,65r10,-20v0,0,22,12,49,12v45,1,70,-29,63,-85v-11,20,-29,31,-57,31v-49,0,-81,-39,-81,-93xm99,-23v29,0,54,-18,54,-71v0,-53,-25,-69,-57,-69v-35,0,-56,26,-56,69v0,43,23,71,59,71","w":208,"k":{"\u2018":-7,"\u2019":-7,"\u201c":-7,"\u201d":-7}},"h":{"d":"123,-162v-38,0,-68,30,-68,75r0,87r-25,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,0,48,-5,48,21r0,92v7,-17,30,-45,71,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-56,23,-140,-40,-140","w":217,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"i":{"d":"32,-222r0,-31r24,0r0,31r-24,0xm33,-22r0,-130v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"j":{"d":"41,-222r0,-31r23,0r0,31r-23,0xm-8,52v24,0,49,-1,49,-46r0,-158v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22r0,166v-4,65,-42,69,-74,66r0,-21","w":96},"k":{"d":"30,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,0,48,-5,48,21r0,120v17,0,30,1,39,-9r46,-60r30,0v-20,24,-43,60,-66,79v14,13,32,52,44,73v3,9,15,8,27,8r0,21v-25,0,-38,1,-49,-18r-36,-65v-8,-11,-20,-7,-35,-8r0,91r-25,0","w":179,"k":{"\u201d":-4,"\u201c":-4,"\u2019":-4,"\u2018":-4,"\u021a":7,"\u0177":4,"\u0175":4,"\u0166":7,"\u0164":7,"\u0162":7,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0140":3,"\u013e":3,"\u013c":3,"\u013a":3,"\u0137":3,"\u0125":3,"\u0123":4,"\u0121":4,"\u011f":4,"\u011d":4,"\u011b":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u0111":4,"\u010f":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":3,"\u0103":3,"\u0101":3,"\u00ff":4,"\u00fd":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":3,"\u00e5":3,"\u00e4":3,"\u00e3":3,"\u00e2":3,"\u00e1":3,"\u00e0":3,"y":4,"w":4,"v":4,"q":4,"o":4,"l":3,"k":3,"h":3,"g":4,"e":4,"d":4,"c":4,"b":3,"a":3,"T":7,"@":4}},"l":{"d":"31,-22r0,-202v0,-11,-13,-8,-23,-8r0,-21v23,0,47,-3,47,22r0,202v0,11,13,8,23,8r0,21v-23,0,-47,3,-47,-22","w":88},"m":{"d":"118,-163v-67,2,-65,89,-62,163r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v14,-50,116,-67,122,0v12,-22,35,-45,67,-45v77,0,61,85,61,156v0,11,13,7,23,8r0,21v-24,0,-48,4,-48,-22v0,-56,22,-141,-39,-141v-35,0,-61,36,-61,77r0,86r-24,0r0,-109v0,-27,-4,-54,-38,-54","w":335,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"n":{"d":"125,-162v-38,0,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-55,24,-140,-39,-140","w":218,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"o":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"p":{"d":"31,72r0,-224v0,-11,-13,-8,-23,-8r0,-21v29,-4,53,2,47,31v0,0,14,-35,62,-35v49,0,79,39,79,95v0,57,-34,94,-81,94v-46,0,-57,-35,-60,-34v2,29,1,70,1,102r-25,0xm55,-90v0,36,20,73,58,73v32,0,58,-27,58,-73v0,-44,-23,-73,-57,-73v-30,0,-59,22,-59,73","w":211,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"q":{"d":"15,-91v0,-57,34,-94,82,-94v44,0,60,35,60,35v-6,-30,17,-33,46,-31r0,21v-10,0,-23,-3,-23,8r0,224r-24,0r0,-103v0,0,-16,35,-62,35v-49,0,-79,-39,-79,-95xm98,-18v30,0,59,-22,59,-73v0,-37,-19,-72,-58,-72v-32,0,-59,26,-59,72v0,45,24,73,58,73","w":211},"r":{"d":"122,-158v-73,-5,-68,83,-66,158r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v35,-4,54,4,47,46v10,-29,33,-53,67,-47r0,24","w":130,"k":{"a":12,"\u00e0":12,"\u00e1":12,"\u00e2":12,"\u00e3":12,"\u00e4":12,"\u00e5":12,"\u00e6":12,"\u0101":12,"\u0103":12,"\u0105":12,"v":-5,"w":-5,"\u0175":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0177":-5,"\u00ad":7,"\u2013":7,"\u2014":7,"\u2212":7,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13,",":20,".":20,"\u201a":20,"\u201e":20,"\u2026":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"\u010f":7,"\u0111":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,"b":4,"h":4,"k":4,"l":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4}},"s":{"d":"10,-27r14,-17v0,0,20,27,56,27v20,0,38,-10,38,-29v0,-40,-101,-32,-101,-90v0,-33,28,-49,64,-49v23,0,64,9,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,32,101,92v0,30,-27,50,-63,50v-47,0,-70,-31,-70,-31","w":158,"k":{"\u2018":4,"\u2019":4,"\u201c":4,"\u201d":4}},"t":{"d":"33,-66r0,-95r-23,0r0,-20r24,0r0,-50r24,0r0,50r45,0r0,20r-45,0r0,93v3,46,25,47,49,47r0,22v-35,1,-74,-2,-74,-67","w":120,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\u00ad":5,"\u2013":5,"\u2014":5,"\u2212":5,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"u":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"v":{"d":"80,0r-59,-152v-4,-7,-8,-8,-16,-8r0,-21v22,-1,32,1,39,20r50,134v13,-44,34,-91,50,-134v6,-19,15,-21,37,-20r0,21v-8,0,-13,1,-15,8r-59,152r-27,0","w":186,"k":{"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-8,"\u2019":-8,"\u201c":-8,"\u201d":-8,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"w":{"d":"73,0r-52,-152v-3,-7,-8,-8,-17,-8r0,-21v22,0,34,-1,41,20r43,134r50,-153r24,0r51,153v11,-43,31,-91,43,-134v6,-21,18,-20,41,-20r0,21v-9,0,-15,0,-18,8r-52,152r-27,0r-50,-148r-50,148r-27,0","w":300,"k":{"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-8,"\u2019":-8,"\u201c":-8,"\u201d":-8,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"x":{"d":"7,0r63,-94r-39,-58v-5,-8,-13,-8,-25,-8r0,-21v52,-8,57,43,80,71v21,-25,28,-79,79,-71r0,21v0,0,-19,-1,-24,7r-39,59r63,94r-29,0r-50,-77r-51,77r-28,0","w":171,"k":{"\u2212":9,"\u201d":-7,"\u201c":-7,"\u2019":-7,"\u2018":-7,"\u2014":9,"\u2013":9,"-":9}},"y":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-4,-7,-8,-8,-16,-8r0,-21v22,0,31,1,39,20r53,132v13,-43,36,-90,51,-132v7,-20,17,-21,39,-20r0,21v-8,0,-12,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36","w":194,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-10,"\u2019":-10,"\u201c":-10,"\u201d":-10,",":16,".":16,"\u201a":16,"\u201e":16,"\u2026":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"z":{"d":"14,0r0,-16r116,-144v-21,2,-60,1,-84,1v-11,0,-8,12,-8,21r-23,0v-1,-23,-2,-43,22,-43r126,0r0,16r-117,144v24,-2,66,-1,93,-1v10,0,8,-12,8,-22r23,0v1,23,2,44,-22,44r-134,0","w":179,"k":{"v":6,"w":6,"\u0175":6,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-14,"\u2019":-14,"\u201c":-14,"\u201d":-14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"{":{"d":"42,-30r0,-34v0,-37,-30,-41,-30,-41r0,-22v0,0,30,-4,30,-42r0,-29v3,-62,37,-65,60,-65r0,20v-16,0,-34,1,-37,45r0,36v0,37,-30,43,-29,46v0,0,29,9,29,46r0,39v2,43,22,45,37,45r0,21v-24,0,-56,-2,-60,-65","w":117,"k":{"\u0135":-6,"j":-6,"4":14}},"|":{"d":"40,57r0,-341r23,0r0,341r-23,0","w":102,"k":{"\u0135":-6,"j":-6,"4":14}},"}":{"d":"16,14v14,0,34,-2,36,-45r0,-39v0,-39,30,-44,29,-47v0,0,-29,-10,-29,-45r0,-36v-2,-44,-22,-45,-36,-45r0,-20v24,0,55,3,59,65r0,29v0,38,30,42,30,42r0,22v0,0,-30,4,-30,41r0,34v-3,63,-36,65,-59,65r0,-21","w":117},"~":{"d":"24,-75v0,-40,19,-56,46,-56v40,0,40,37,71,37v22,0,26,-23,26,-36r21,0v0,40,-18,56,-45,56v-40,0,-41,-37,-72,-37v-22,0,-26,23,-26,36r-21,0","w":218},"\u00a1":{"d":"39,-153r0,-28r28,0r0,28r-28,0xm41,72r1,-187r23,0r1,187r-25,0","w":106},"\u00a2":{"d":"92,14r0,-40v-47,-5,-72,-48,-72,-101v0,-52,25,-95,72,-100r0,-40r21,0r0,40v31,4,51,24,64,53r-23,9v-28,-72,-109,-36,-109,38v0,44,19,78,59,78v25,0,40,-16,50,-39r23,9v-12,28,-33,50,-64,53r0,40r-21,0","w":196},"\u00a3":{"d":"19,0r0,-22r23,0r0,-95r-16,0r0,-20r16,0v-6,-69,8,-120,74,-120v34,0,57,20,57,20r-16,18v0,0,-17,-15,-41,-15v-53,1,-51,46,-49,97r69,0r0,20r-69,0r0,95r95,0v11,0,7,-15,8,-25r23,0v0,23,3,47,-22,47r-152,0","w":209,"k":{"7":6}},"\u00a5":{"d":"39,-77r0,-18r58,0v2,-16,-5,-23,-11,-32r-49,0r0,-18v12,-1,28,2,38,-1r-47,-77v-5,-7,-12,-8,-22,-8r0,-22v23,0,33,0,44,20r59,100r59,-100v11,-20,21,-20,44,-20r0,22v-10,0,-17,1,-22,8r-46,78r36,0r0,18r-48,0v-5,9,-12,16,-10,32r58,0r0,18r-58,0r0,77r-25,0r0,-77r-58,0","w":218,"k":{"7":-4,"4":10}},"\u00a7":{"d":"52,-31r-26,-168v0,-33,25,-58,62,-58v25,0,42,15,42,15r-13,17v0,0,-12,-11,-29,-11v-26,0,-43,21,-38,50r24,155r-22,0xm63,22v-42,0,-48,-14,-29,-32v0,0,13,11,30,11v25,1,43,-21,38,-51r-24,-154r22,0r26,168v0,33,-26,58,-63,58","w":149},"\u00a8":{"d":"111,-283r0,-31r21,0r0,31r-21,0xm57,-283r0,-31r21,0r0,31r-21,0","w":177},"\u00a9":{"d":"15,-127v0,-73,57,-130,127,-130v72,0,129,57,129,130v0,73,-57,131,-129,131v-70,0,-127,-58,-127,-131xm36,-127v0,63,46,112,106,112v61,0,108,-49,108,-112v0,-62,-47,-111,-108,-111v-60,0,-106,49,-106,111xm71,-126v0,-38,26,-74,74,-74v40,0,59,33,59,33r-16,11v0,0,-15,-24,-42,-24v-35,0,-53,26,-53,54v0,28,18,54,53,54v27,0,42,-25,42,-25r16,11v0,0,-20,33,-59,33v-48,0,-74,-35,-74,-73","w":285},"\u00aa":{"d":"96,-158v-8,26,-77,27,-74,-14v2,-40,48,-40,73,-40v5,-30,-31,-34,-45,-20r0,8r-19,0v-7,-27,22,-34,38,-33v57,0,43,48,45,96v1,5,9,2,14,3r0,18v-17,0,-35,3,-32,-18xm64,-155v20,0,30,-20,31,-41v-19,0,-52,0,-53,23v0,9,8,18,22,18xm21,-95r0,-17r109,0r0,17r-109,0","w":149},"\u00ab":{"d":"78,-102r59,-74r27,0r-59,74r59,74r-27,0xm73,-28r-59,-74r59,-74r26,0r-59,74r59,74r-26,0","w":187,"k":{"7":12,"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7}},"\u00ac":{"d":"25,-123r0,-21r168,0r0,87r-22,0r0,-66r-146,0","w":218},"\u00ae":{"d":"15,-127v0,-73,57,-130,127,-130v72,0,129,57,129,130v0,73,-57,131,-129,131v-70,0,-127,-58,-127,-131xm36,-127v0,63,46,112,106,112v61,0,108,-49,108,-112v0,-62,-47,-111,-108,-111v-60,0,-106,49,-106,111xm99,-57r0,-123r-13,0r0,-17v49,0,106,-8,106,42v0,22,-16,33,-27,38v16,7,13,44,37,44r0,16v-35,7,-38,-27,-50,-48v-7,-12,-18,-7,-32,-8r0,56r-21,0xm120,-129v27,1,51,1,51,-26v0,-26,-25,-26,-51,-25r0,51","w":285},"\u00af":{"d":"40,-283r0,-19r89,0r0,19r-89,0","w":165},"\u02c9":{"d":"40,-283r0,-19r89,0r0,19r-89,0","w":165},"\u00b0":{"d":"69,-157v-28,0,-51,-22,-51,-50v0,-27,23,-50,51,-50v28,0,51,23,51,50v0,28,-23,50,-51,50xm69,-177v17,0,29,-13,29,-30v0,-16,-12,-30,-29,-30v-17,0,-29,14,-29,30v0,17,12,30,29,30","w":137},"\u00b1":{"d":"15,-92r0,-21r83,0r0,-91r22,0r0,91r83,0r0,21r-83,0r0,92r-22,0r0,-92r-83,0xm22,37r175,0r0,21r-175,0r0,-21","w":218},"\u00b2":{"d":"120,-211v0,53,-76,51,-81,95v17,6,45,0,66,2v4,-1,1,-10,2,-15r20,0v0,17,2,34,-16,34r-76,0v-12,0,-17,-4,-17,-18v-2,-55,81,-51,81,-98v0,-15,-10,-26,-28,-26v-18,0,-28,7,-25,24r-19,0v-7,-32,24,-43,44,-43v31,0,49,19,49,45","w":147},"\u00b3":{"d":"71,-93v-32,0,-53,-25,-53,-25r14,-14v0,0,17,20,40,20v16,0,31,-13,31,-31v-1,-22,-21,-31,-46,-29r-4,-12r43,-52v-12,7,-56,-13,-51,15r-19,0v0,-17,-3,-32,17,-32r79,0r0,14r-42,50v20,2,44,16,44,46v0,29,-25,50,-53,50","w":147},"\u00b4":{"d":"41,-271r26,-43r27,0r-31,43r-22,0","w":133},"\u00b5":{"d":"8,-160r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v0,0,-18,45,-71,45v-30,0,-40,-15,-40,-15v3,18,2,59,2,83r-22,0r0,-224v0,-11,-13,-8,-23,-8","w":217},"\u03bc":{"d":"8,-160r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v0,0,-18,45,-71,45v-30,0,-40,-15,-40,-15v3,18,2,59,2,83r-22,0r0,-224v0,-11,-13,-8,-23,-8","w":217},"\u00b6":{"d":"102,18r0,-105v-46,0,-87,-36,-87,-83v0,-47,40,-83,86,-83r86,0r0,22r-65,0r0,249r-20,0xm144,18r0,-227r21,0r0,227r-21,0","w":206},"\u00b7":{"d":"25,-89r0,-29r28,0r0,29r-28,0","w":77},"\u2219":{"d":"25,-89r0,-29r28,0r0,29r-28,0","w":77},"\u00b8":{"d":"57,-7v4,2,15,-1,14,5r-4,22v15,2,26,11,26,25v0,28,-33,32,-53,27r0,-17v6,2,36,6,33,-10v2,-9,-13,-15,-25,-12","w":148},"\u00b9":{"d":"29,-95r0,-19r34,0r-1,-111v-4,7,-15,16,-21,22r-13,-13r37,-37r19,0r0,139r33,0r0,19r-88,0","w":147},"\u00ba":{"d":"82,-138v-33,0,-60,-26,-60,-60v0,-33,27,-59,60,-59v33,0,60,26,60,59v0,34,-27,60,-60,60xm82,-156v22,0,40,-18,40,-42v0,-24,-18,-41,-40,-41v-22,0,-40,17,-40,41v0,24,18,42,40,42xm28,-95r0,-17r109,0r0,17r-109,0","w":164},"\u00bb":{"d":"89,-28r59,-74r-59,-74r26,0r59,74r-59,74r-26,0xm24,-28r59,-74r-59,-74r26,0r59,74r-59,74r-26,0","w":187,"k":{"7":12,"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7}},"\u00bc":{"d":"97,0r107,-253r22,0r-106,253r-23,0xm28,-95r0,-19r34,0r0,-111v-5,6,-15,16,-21,22r-13,-13r36,-37r18,0r0,139r34,0r0,19r-88,0xm179,-42r0,-13r74,-103r22,0r0,97r24,0r0,19r-24,0r0,42r-20,0r0,-42r-76,0xm208,-67v-5,6,-6,6,3,6r44,0r0,-69v-14,23,-32,42,-47,63","w":320},"\u00bd":{"d":"93,0r107,-253r22,0r-106,253r-23,0xm28,-95r0,-19r34,0r0,-111v-5,6,-15,16,-21,22r-13,-13r36,-37r18,0r0,139r34,0r0,19r-88,0xm288,-115v0,52,-76,50,-80,94v17,4,51,3,68,0r0,-13r19,0v0,17,2,34,-16,34r-76,0v-12,0,-16,-4,-16,-18v-3,-55,80,-50,80,-97v0,-15,-10,-26,-28,-26v-18,0,-26,6,-24,23r-20,0v-6,-31,24,-43,44,-43v31,0,49,20,49,46","w":320},"\u00be":{"d":"96,0r107,-253r23,0r-107,253r-23,0xm76,-93v-32,0,-54,-25,-54,-25r15,-14v0,0,16,20,39,20v16,0,32,-13,32,-31v-1,-22,-21,-32,-47,-29r-3,-12r42,-52v-10,2,-34,1,-47,1v-6,0,-2,9,-3,14r-20,0v0,-17,-3,-32,17,-32r80,0r0,14r-43,50v20,2,45,16,45,46v0,29,-25,50,-53,50xm179,-42r0,-13r74,-103r22,0r0,97r24,0r0,19r-24,0r0,42r-20,0r0,-42r-76,0xm208,-67v-5,6,-6,6,3,6r44,0r0,-69v-14,23,-32,42,-47,63","w":320},"\u00bf":{"d":"74,-153r0,-28r28,0r0,28r-28,0xm11,12v1,-65,74,-62,65,-127r24,0v9,70,-61,78,-63,126v0,23,19,41,47,41v24,0,44,-15,44,-15r13,18v0,0,-22,21,-58,21v-41,0,-72,-27,-72,-64","w":155},"\u00c0":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm108,-271r-32,-43r28,0r25,43r-21,0","w":236,"k":{"X":3}},"\u00c1":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm108,-271r25,-43r27,0r-31,43r-21,0","w":236,"k":{"X":3}},"\u00c2":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm76,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":236,"k":{"X":3}},"\u00c3":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm62,-272v0,-28,11,-42,33,-42v24,0,29,26,45,26v12,0,15,-16,15,-25r19,0v0,28,-12,42,-34,42v-24,0,-28,-25,-45,-25v-12,0,-15,15,-15,24r-18,0","w":236,"k":{"X":3}},"\u00c4":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm135,-283r0,-31r21,0r0,31r-21,0xm81,-283r0,-31r21,0r0,31r-21,0","w":236,"k":{"X":3}},"\u00c5":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm118,-267v-14,0,-26,-10,-26,-25v0,-15,12,-26,26,-26v14,0,27,11,27,26v0,15,-13,25,-27,25xm118,-280v7,0,12,-5,12,-12v0,-7,-5,-13,-12,-13v-7,0,-11,6,-11,13v0,7,4,12,11,12","w":236,"k":{"X":3}},"\u00c6":{"d":"4,0r0,-22v9,0,13,0,17,-8r85,-223r149,0v25,-2,22,23,22,47r-24,0v-1,-10,4,-25,-7,-25r-84,0r0,92r92,0r0,23r-92,0r0,86v0,7,3,8,10,8r84,0v11,0,7,-15,8,-25r24,0v0,23,3,47,-22,47r-104,0v-18,0,-25,-4,-25,-22r0,-94r-57,0r-36,95v-6,21,-17,22,-40,21xm88,-139r49,0r0,-92r-15,0","w":296},"\u00c7":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,41,110,99,110v52,0,84,-36,84,-36r15,18v0,0,-34,40,-96,41r-3,16v15,2,25,11,25,25v0,28,-32,32,-52,27r0,-17v6,2,36,6,33,-10v1,-9,-14,-15,-26,-12r7,-29v-67,-6,-112,-63,-112,-133","w":249,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-9,"]":-9,"|":-9,"}":-9}},"\u00c8":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm95,-271r-31,-43r27,0r25,43r-21,0","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00c9":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm95,-271r25,-43r28,0r-32,43r-21,0","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00ca":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm63,-271r30,-43r25,0r30,43r-22,0v-7,-9,-12,-21,-21,-29r-19,29r-23,0","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00cb":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm122,-283r0,-31r22,0r0,31r-22,0xm68,-283r0,-31r22,0r0,31r-22,0","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00cc":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm42,-271r-32,-43r28,0r25,43r-21,0","w":105},"\u00cd":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm42,-271r25,-43r27,0r-31,43r-21,0","w":105},"\u00ce":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm10,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":105},"\u00cf":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm69,-283r0,-31r21,0r0,31r-21,0xm15,-283r0,-31r21,0r0,31r-21,0","w":105},"\u00d0":{"d":"39,-22r0,-94r-18,0r0,-22r18,0r0,-93r-24,0r0,-22r102,0v76,0,127,46,127,126v0,103,-74,127,-184,127v-15,0,-21,-7,-21,-22xm64,-30v3,16,34,5,50,8v62,0,103,-37,103,-105v0,-86,-62,-112,-153,-104r0,93r59,0r0,22r-59,0r0,86","w":257,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d1":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22xm84,-272v0,-28,11,-42,33,-42v24,0,30,26,46,26v12,0,14,-16,14,-25r19,0v0,28,-11,42,-33,42v-24,0,-29,-25,-46,-25v-12,0,-14,15,-14,24r-19,0","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u00d2":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm131,-271r-32,-43r28,0r25,43r-21,0","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d3":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm131,-271r25,-43r27,0r-31,43r-21,0","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d4":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm99,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d5":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm85,-272v0,-28,11,-42,33,-42v24,0,29,26,45,26v12,0,15,-16,15,-25r19,0v0,28,-12,42,-34,42v-24,0,-28,-25,-45,-25v-12,0,-15,15,-15,24r-18,0","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d6":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm158,-283r0,-31r21,0r0,31r-21,0xm104,-283r0,-31r21,0r0,31r-21,0","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d7":{"d":"17,-15r78,-87r-78,-88r15,-14r77,86r77,-86r15,14r-78,88r78,87r-15,15r-77,-87r-77,87","w":218},"\u00d8":{"d":"42,-2r17,-25v-28,-24,-45,-60,-45,-101v0,-99,111,-163,197,-110r17,-24r15,11r-17,23v28,24,46,59,46,100v0,100,-112,167,-198,112r-17,25xm75,-47r122,-171v-68,-44,-157,9,-157,90v0,33,14,62,35,81xm89,-36v68,46,157,-10,157,-92v0,-32,-14,-60,-35,-79","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d9":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm119,-271r-32,-43r28,0r25,43r-21,0","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00da":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm119,-271r25,-43r27,0r-31,43r-21,0","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00db":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm87,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00dc":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm146,-283r0,-31r21,0r0,31r-21,0xm92,-283r0,-31r21,0r0,31r-21,0","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00dd":{"d":"94,0r0,-110r-68,-111v-6,-10,-10,-10,-22,-10r0,-22v23,0,31,-1,44,20r59,100v13,-27,41,-72,58,-100v13,-21,21,-20,45,-20r0,22v-11,0,-18,0,-23,10r-68,111r0,110r-25,0xm96,-271r25,-43r28,0r-32,43r-21,0","w":213,"k":{" ":13,"T":-4,"\u0162":-4,"\u0164":-4,"\u0166":-4,"\u021a":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,"\u2018":-1,"\u2019":-1,"\u201c":-1,"\u201d":-1,",":29,".":29,"\u201a":29,"\u201e":29,"\u2026":29,"A":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00c6":29,"\u0100":29,"\u0102":29,"\u0104":29,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"\u0107":25,"\u0109":25,"\u010b":25,"\u010d":25,"\u010f":25,"\u0111":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"\u011b":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u0138":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u014b":13,"\u0155":13,"\u0157":13,"\u0159":13,"\u0169":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13,"J":13,"\u0134":13,"z":11,"\u017a":11,"\u017c":11,"\u017e":11,"\u00ab":7,"\u00bb":7,"\u2039":7,"\u203a":7,"M":6,"N":6,"\u014a":6,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u00de":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,51,-4,49,22r0,23v75,-6,136,7,136,77v0,69,-61,84,-136,77r0,54r-25,0xm64,-77v56,3,110,2,110,-54v0,-57,-53,-58,-110,-55r0,109","w":210},"\u00df":{"d":"7,0r0,-21v10,0,23,3,23,-8r0,-162v-6,-82,136,-85,135,-13v0,36,-40,46,-40,68v0,26,70,40,70,89v0,35,-28,51,-58,51v-50,0,-67,-16,-47,-40v0,0,20,18,45,18v18,0,36,-9,36,-30v0,-36,-71,-47,-71,-87v0,-30,40,-40,40,-68v0,-15,-13,-32,-39,-32v-23,0,-47,16,-47,46r0,167v2,25,-23,22,-47,22","w":200},"\u00e0":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm83,-210r-32,-43r28,0r25,43r-21,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e1":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm83,-210r25,-43r27,0r-31,43r-21,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e2":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm51,-210r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e3":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm37,-211v0,-28,11,-42,33,-42v24,0,30,25,46,25v12,0,14,-15,14,-24r19,0v0,28,-11,42,-33,42v-24,0,-29,-26,-46,-26v-12,0,-15,16,-15,25r-18,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e4":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm110,-222r0,-31r21,0r0,31r-21,0xm56,-222r0,-31r21,0r0,31r-21,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e5":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm94,-206v-14,0,-27,-11,-27,-26v0,-15,13,-25,27,-25v14,0,26,10,26,25v0,15,-12,26,-26,26xm94,-220v7,0,11,-5,11,-12v0,-7,-4,-12,-11,-12v-7,0,-12,5,-12,12v0,7,5,12,12,12","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e6":{"d":"14,-49v0,-63,73,-61,121,-61v1,-39,-13,-56,-46,-55v-13,0,-43,3,-36,27r-23,0v-8,-39,27,-47,59,-47v39,0,56,14,63,37v15,-25,39,-37,69,-37v55,2,80,44,73,95r-135,0v1,47,29,72,67,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-38,1,-65,-21,-80,-50v-3,9,-20,50,-68,50v-33,0,-63,-18,-63,-53xm161,-110r109,0v-2,-78,-104,-69,-109,0xm40,-51v0,18,13,34,40,34v37,-1,57,-36,55,-73v-41,0,-95,-5,-95,39","w":313,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00e7":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-24,29,-71,29r-3,16v15,2,25,11,25,25v0,28,-33,32,-53,27r0,-17v6,2,37,6,34,-10v1,-9,-14,-15,-26,-12r7,-30v-45,-6,-79,-43,-79,-93"},"\u00e8":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm92,-210r-31,-43r27,0r25,43r-21,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00e9":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm92,-210r25,-43r28,0r-32,43r-21,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00ea":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm60,-210r30,-43r26,0r29,43r-22,0r-20,-29r-20,29r-23,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00eb":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm120,-222r0,-31r21,0r0,31r-21,0xm66,-222r0,-31r21,0r0,31r-21,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00ec":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm32,-210r-31,-43r27,0r25,43r-21,0","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00ed":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm32,-210r25,-43r28,0r-32,43r-21,0","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00ee":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm0,-210r31,-43r24,0r31,43r-23,0v-7,-9,-12,-21,-20,-29r-20,29r-23,0","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00ef":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm54,-222r0,-31r22,0r0,31r-22,0xm9,-222r0,-31r22,0r0,31r-22,0","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00f0":{"d":"96,4v-109,0,-112,-173,3,-172v37,0,50,20,53,19v-9,-25,-24,-43,-45,-57r-63,29r-5,-17r49,-23v-15,-8,-33,-14,-51,-18r7,-21v23,6,48,14,70,27r48,-21r4,17r-35,17v69,42,87,220,-35,220xm102,-147v-84,-2,-82,128,-5,129v45,0,64,-41,64,-76v0,-31,-24,-53,-59,-53","w":203},"\u00f1":{"d":"125,-162v-38,0,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-55,24,-140,-39,-140xm57,-211v0,-28,12,-42,34,-42v24,0,29,25,45,25v12,0,14,-15,14,-24r20,0v0,28,-12,42,-34,42v-24,0,-29,-26,-46,-26v-12,0,-14,16,-14,25r-19,0","w":218,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00f2":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm99,-210r-31,-43r27,0r26,43r-22,0","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f3":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm99,-210r26,-43r27,0r-31,43r-22,0","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f4":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm68,-210r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-20,29r-22,0","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f5":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm53,-211v0,-28,12,-42,34,-42v24,0,29,25,45,25v12,0,15,-15,15,-24r19,0v0,28,-12,42,-34,42v-24,0,-29,-26,-46,-26v-12,0,-14,16,-14,25r-19,0","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f6":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm127,-222r0,-31r21,0r0,31r-21,0xm73,-222r0,-31r21,0r0,31r-21,0","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f7":{"d":"93,-156r0,-27r27,0r0,27r-27,0xm18,-92r0,-21r176,0r0,21r-176,0xm93,-22r0,-27r27,0r0,27r-27,0","w":218},"\u00f8":{"d":"35,1r14,-18v-21,-17,-35,-43,-35,-74v0,-72,82,-118,145,-81r14,-20r15,11r-14,19v63,51,23,166,-64,166v-17,0,-32,-3,-46,-11r-14,19xm62,-37r84,-116v-47,-28,-108,7,-106,62v0,22,8,41,22,54xm77,-26v49,24,104,-11,103,-65v0,-20,-8,-38,-21,-51","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f9":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm95,-210r-31,-43r27,0r26,43r-22,0","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fa":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm95,-210r26,-43r27,0r-31,43r-22,0","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fb":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm64,-210r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-20,29r-22,0","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fc":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm123,-222r0,-31r21,0r0,31r-21,0xm69,-222r0,-31r21,0r0,31r-21,0","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fd":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-4,-7,-8,-8,-16,-8r0,-21v22,0,31,1,39,20r53,132v13,-43,36,-90,51,-132v7,-20,17,-21,39,-20r0,21v-8,0,-12,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36xm86,-210r25,-43r27,0r-31,43r-21,0","w":194,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-10,"\u2019":-10,"\u201c":-10,"\u201d":-10,",":16,".":16,"\u201a":16,"\u201e":16,"\u2026":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u00fe":{"d":"30,72r0,-296v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22v0,26,-3,56,0,80v11,-21,30,-34,61,-34v49,0,79,38,79,94v0,56,-30,95,-79,95v-48,0,-59,-35,-62,-34v2,29,1,70,1,102r-25,0xm54,-90v0,53,29,72,59,72v34,0,57,-29,57,-73v0,-44,-23,-72,-57,-72v-32,0,-59,20,-59,73","w":210,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00ff":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-4,-7,-8,-8,-16,-8r0,-21v22,0,31,1,39,20r53,132v13,-43,36,-90,51,-132v7,-20,17,-21,39,-20r0,21v-8,0,-12,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36xm113,-222r0,-31r21,0r0,31r-21,0xm59,-222r0,-31r21,0r0,31r-21,0","w":194,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-10,"\u2019":-10,"\u201c":-10,"\u201d":-10,",":16,".":16,"\u201a":16,"\u201e":16,"\u2026":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u0100":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm74,-283r0,-19r89,0r0,19r-89,0","w":236,"k":{"X":3}},"\u0101":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm49,-222r0,-20r89,0r0,20r-89,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0102":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm159,-308v0,51,-82,51,-82,0r0,-6r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,6","w":236,"k":{"X":3}},"\u0103":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm94,-209v-22,0,-43,-15,-41,-44r18,0v-2,18,9,28,23,27v13,0,24,-9,22,-27r18,0v2,29,-18,44,-40,44","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0104":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-8,6,-26,22,-26,36v0,16,22,18,22,18r-6,20v0,0,-39,-2,-39,-33v0,-19,15,-34,25,-42v-25,-11,-27,-55,-40,-80r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123","w":236,"k":{"X":3}},"\u0105":{"d":"14,-49v0,-66,85,-59,121,-65v0,-37,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-8,6,-26,22,-26,36v0,16,22,18,22,18r-5,20v0,0,-40,-2,-40,-33v-1,-19,15,-31,24,-41v-24,4,-22,-21,-22,-35v0,0,-13,39,-63,39v-32,0,-59,-20,-59,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0106":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,42,110,100,110v52,0,83,-36,83,-36r15,18v0,0,-35,41,-98,41v-74,0,-126,-59,-126,-133xm127,-271r25,-43r28,0r-32,43r-21,0","w":249,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-9,"]":-9,"|":-9,"}":-9}},"\u0107":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-25,29,-71,29v-54,0,-95,-38,-95,-94xm94,-210r25,-43r28,0r-32,43r-21,0"},"\u0108":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,42,110,100,110v52,0,83,-36,83,-36r15,18v0,0,-35,41,-98,41v-74,0,-126,-59,-126,-133xm95,-271r30,-43r25,0r30,43r-22,0r-20,-29r-20,29r-23,0","w":249,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-9,"]":-9,"|":-9,"}":-9}},"\u0109":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-25,29,-71,29v-54,0,-95,-38,-95,-94xm62,-210r30,-43r25,0r30,43r-22,0v-7,-9,-12,-21,-21,-29r-19,29r-23,0"},"\u010a":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,42,110,100,110v52,0,83,-36,83,-36r15,18v0,0,-35,41,-98,41v-74,0,-126,-59,-126,-133xm126,-283r0,-31r24,0r0,31r-24,0","w":249,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-9,"]":-9,"|":-9,"}":-9}},"\u010b":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-25,29,-71,29v-54,0,-95,-38,-95,-94xm93,-222r0,-31r24,0r0,31r-24,0"},"\u010c":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,42,110,100,110v52,0,83,-36,83,-36r15,18v0,0,-35,41,-98,41v-74,0,-126,-59,-126,-133xm125,-271r-30,-43r23,0r20,29r20,-29r22,0r-30,43r-25,0","w":249,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-9,"]":-9,"|":-9,"}":-9}},"\u010d":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-25,29,-71,29v-54,0,-95,-38,-95,-94xm92,-210r-30,-43r23,0v7,9,12,21,20,29r20,-29r22,0r-30,43r-25,0"},"\u010e":{"d":"39,-22r0,-209r-24,0r0,-22r102,0v76,0,127,46,127,126v0,103,-74,127,-184,127v-15,0,-21,-7,-21,-22xm64,-30v3,16,34,5,50,8v62,0,103,-37,103,-105v0,-86,-62,-112,-153,-104r0,201xm113,-271r-30,-43r23,0r20,29r20,-29r22,0r-30,43r-25,0","w":257,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u010f":{"d":"15,-91v0,-57,33,-94,81,-94v44,0,60,33,60,33r0,-72v0,-11,-14,-7,-24,-8r0,-21v24,0,48,-4,48,22r0,202v0,11,13,8,23,8r0,21v-30,4,-53,-4,-47,-32v0,0,-14,36,-62,36v-49,0,-79,-39,-79,-95xm98,-18v30,0,58,-22,58,-73v0,-37,-18,-72,-57,-72v-32,0,-59,26,-59,72v0,45,24,73,58,73xm202,-253r23,0v5,19,1,32,-6,49r-20,0v7,-19,10,-30,3,-49","w":239},"\u0110":{"d":"39,-22r0,-94r-18,0r0,-22r18,0r0,-93r-24,0r0,-22r102,0v76,0,127,46,127,126v0,103,-74,127,-184,127v-15,0,-21,-7,-21,-22xm64,-30v3,16,34,5,50,8v62,0,103,-37,103,-105v0,-86,-62,-112,-153,-104r0,93r59,0r0,22r-59,0r0,86","w":257,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u0111":{"d":"94,4v-49,0,-79,-39,-79,-95v0,-57,33,-94,81,-94v44,0,60,33,60,33r0,-52r-48,0r0,-18r48,0r0,-31r24,0r0,31r29,0r0,18r-29,0r0,175v0,11,13,8,23,8r0,21v-30,4,-53,-4,-47,-32v0,0,-14,36,-62,36xm98,-18v30,0,58,-22,58,-73v0,-37,-18,-72,-57,-72v-32,0,-59,26,-59,72v0,45,24,73,58,73","w":211},"\u0112":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm62,-283r0,-19r88,0r0,19r-88,0","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u0113":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm59,-222r0,-20r88,0r0,20r-88,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u0114":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm147,-308v0,51,-82,51,-82,0r0,-6r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,6","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u0115":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm144,-248v0,52,-82,52,-82,0r0,-5r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,5","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u0116":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm94,-283r0,-31r24,0r0,31r-24,0","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u0117":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm91,-222r0,-31r24,0r0,31r-24,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u0118":{"d":"192,-22v0,30,-39,30,-38,58v0,16,22,18,22,18r-5,20v0,0,-40,-2,-40,-33v-1,-19,14,-31,24,-41r-95,0v-15,0,-21,-7,-21,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0r0,25","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u0119":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,45,33,72,70,72v33,0,55,-22,55,-22r11,18v-15,14,-52,33,-52,58v0,16,23,18,23,18r-6,20v0,0,-39,-2,-39,-33v-1,-17,11,-27,19,-38v-61,7,-107,-34,-107,-93xm41,-109r113,0v-3,-80,-105,-69,-113,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u011a":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm93,-271r-30,-43r23,0v7,9,12,21,20,29r20,-29r22,0r-30,43r-25,0","w":200,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u011b":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm90,-210r-30,-43r23,0r20,29r20,-29r22,0r-30,43r-25,0","w":197,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u011c":{"d":"14,-127v0,-73,54,-130,126,-130v59,0,89,31,89,31r-15,18v0,0,-28,-26,-73,-26v-57,0,-101,46,-101,107v0,62,43,108,100,108v50,0,80,-38,80,-38v-1,-19,8,-46,-23,-39r0,-22v23,0,47,-3,47,22r0,96r-23,0r0,-30v0,0,-30,34,-83,34v-69,0,-124,-55,-124,-131xm97,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":262,"k":{"T":6,"\u0162":6,"\u0164":6,"\u0166":6,"\u021a":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"\u0168":3,"\u016a":3,"\u016c":3,"\u016e":3,"\u0170":3,"\u0172":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u0101":-3,"\u0103":-3,"\u0105":-3,"\u00ad":-7,"\u2013":-7,"\u2014":-7,"\u2212":-7,"\"":2,"'":2,"\u2018":7,"\u2019":7,"\u201c":7,"\u201d":7,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"\u0107":-3,"\u0109":-3,"\u010b":-3,"\u010d":-3,"\u010f":-3,"\u0111":-3,"\u0113":-3,"\u0115":-3,"\u0117":-3,"\u0119":-3,"\u011b":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3,"\u014d":-3,"\u014f":-3,"\u0151":-3,"\u0153":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u010e":2,"\u0112":2,"\u0114":2,"\u0116":2,"\u0118":2,"\u011a":2,"\u0124":2,"\u0126":2,"\u0136":2,"\u0139":2,"\u013b":2,"\u013d":2,"\u013f":2,"\u0141":2,"\u0154":2,"\u0156":2,"\u0158":2}},"\u011d":{"d":"15,-94v0,-54,30,-91,79,-91v49,0,60,31,60,31v-5,-28,20,-28,46,-27r0,21v-10,0,-23,-3,-23,8r0,148v0,83,-88,95,-146,65r10,-20v0,0,22,12,49,12v45,1,70,-29,63,-85v-11,20,-29,31,-57,31v-49,0,-81,-39,-81,-93xm99,-23v29,0,54,-18,54,-71v0,-53,-25,-69,-57,-69v-35,0,-56,26,-56,69v0,43,23,71,59,71xm62,-210r29,-43r26,0r30,43r-23,0r-20,-29r-20,29r-22,0","w":208,"k":{"\u2018":-7,"\u2019":-7,"\u201c":-7,"\u201d":-7}},"\u011e":{"d":"14,-127v0,-73,54,-130,126,-130v59,0,89,31,89,31r-15,18v0,0,-28,-26,-73,-26v-57,0,-101,46,-101,107v0,62,43,108,100,108v50,0,80,-38,80,-38v-1,-19,8,-46,-23,-39r0,-22v23,0,47,-3,47,22r0,96r-23,0r0,-30v0,0,-30,34,-83,34v-69,0,-124,-55,-124,-131xm140,-270v-23,0,-43,-14,-41,-44r18,0v-2,18,9,28,23,27v13,0,24,-9,22,-27r18,0v2,30,-18,44,-40,44","w":262,"k":{"T":6,"\u0162":6,"\u0164":6,"\u0166":6,"\u021a":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"\u0168":3,"\u016a":3,"\u016c":3,"\u016e":3,"\u0170":3,"\u0172":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u0101":-3,"\u0103":-3,"\u0105":-3,"\u00ad":-7,"\u2013":-7,"\u2014":-7,"\u2212":-7,"\"":2,"'":2,"\u2018":7,"\u2019":7,"\u201c":7,"\u201d":7,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"\u0107":-3,"\u0109":-3,"\u010b":-3,"\u010d":-3,"\u010f":-3,"\u0111":-3,"\u0113":-3,"\u0115":-3,"\u0117":-3,"\u0119":-3,"\u011b":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3,"\u014d":-3,"\u014f":-3,"\u0151":-3,"\u0153":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u010e":2,"\u0112":2,"\u0114":2,"\u0116":2,"\u0118":2,"\u011a":2,"\u0124":2,"\u0126":2,"\u0136":2,"\u0139":2,"\u013b":2,"\u013d":2,"\u013f":2,"\u0141":2,"\u0154":2,"\u0156":2,"\u0158":2}},"\u011f":{"d":"15,-94v0,-54,30,-91,79,-91v49,0,60,31,60,31v-5,-28,20,-28,46,-27r0,21v-10,0,-23,-3,-23,8r0,148v0,83,-88,95,-146,65r10,-20v0,0,22,12,49,12v45,1,70,-29,63,-85v-11,20,-29,31,-57,31v-49,0,-81,-39,-81,-93xm99,-23v29,0,54,-18,54,-71v0,-53,-25,-69,-57,-69v-35,0,-56,26,-56,69v0,43,23,71,59,71xm145,-248v0,52,-82,52,-82,0r0,-5r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,5","w":208,"k":{"\u2018":-7,"\u2019":-7,"\u201c":-7,"\u201d":-7}},"\u0120":{"d":"14,-127v0,-73,54,-130,126,-130v59,0,89,31,89,31r-15,18v0,0,-28,-26,-73,-26v-57,0,-101,46,-101,107v0,62,43,108,100,108v50,0,80,-38,80,-38v-1,-19,8,-46,-23,-39r0,-22v23,0,47,-3,47,22r0,96r-23,0r0,-30v0,0,-30,34,-83,34v-69,0,-124,-55,-124,-131xm128,-283r0,-31r24,0r0,31r-24,0","w":262,"k":{"T":6,"\u0162":6,"\u0164":6,"\u0166":6,"\u021a":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"\u0168":3,"\u016a":3,"\u016c":3,"\u016e":3,"\u0170":3,"\u0172":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u0101":-3,"\u0103":-3,"\u0105":-3,"\u00ad":-7,"\u2013":-7,"\u2014":-7,"\u2212":-7,"\"":2,"'":2,"\u2018":7,"\u2019":7,"\u201c":7,"\u201d":7,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"\u0107":-3,"\u0109":-3,"\u010b":-3,"\u010d":-3,"\u010f":-3,"\u0111":-3,"\u0113":-3,"\u0115":-3,"\u0117":-3,"\u0119":-3,"\u011b":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3,"\u014d":-3,"\u014f":-3,"\u0151":-3,"\u0153":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u010e":2,"\u0112":2,"\u0114":2,"\u0116":2,"\u0118":2,"\u011a":2,"\u0124":2,"\u0126":2,"\u0136":2,"\u0139":2,"\u013b":2,"\u013d":2,"\u013f":2,"\u0141":2,"\u0154":2,"\u0156":2,"\u0158":2}},"\u0121":{"d":"15,-94v0,-54,30,-91,79,-91v49,0,60,31,60,31v-5,-28,20,-28,46,-27r0,21v-10,0,-23,-3,-23,8r0,148v0,83,-88,95,-146,65r10,-20v0,0,22,12,49,12v45,1,70,-29,63,-85v-11,20,-29,31,-57,31v-49,0,-81,-39,-81,-93xm99,-23v29,0,54,-18,54,-71v0,-53,-25,-69,-57,-69v-35,0,-56,26,-56,69v0,43,23,71,59,71xm92,-222r0,-31r24,0r0,31r-24,0","w":208,"k":{"\u2018":-7,"\u2019":-7,"\u201c":-7,"\u201d":-7}},"\u0122":{"d":"14,-127v0,-73,54,-130,126,-130v59,0,89,31,89,31r-15,18v0,0,-28,-26,-73,-26v-57,0,-101,46,-101,107v0,62,43,108,100,108v50,0,80,-38,80,-38v-1,-19,8,-46,-23,-39r0,-22v23,0,47,-3,47,22r0,96r-23,0r0,-30v0,0,-30,34,-83,34v-69,0,-124,-55,-124,-131xm125,23r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":262,"k":{"T":6,"\u0162":6,"\u0164":6,"\u0166":6,"\u021a":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"\u0168":3,"\u016a":3,"\u016c":3,"\u016e":3,"\u0170":3,"\u0172":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u0101":-3,"\u0103":-3,"\u0105":-3,"\u00ad":-7,"\u2013":-7,"\u2014":-7,"\u2212":-7,"\"":2,"'":2,"\u2018":7,"\u2019":7,"\u201c":7,"\u201d":7,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"\u0107":-3,"\u0109":-3,"\u010b":-3,"\u010d":-3,"\u010f":-3,"\u0111":-3,"\u0113":-3,"\u0115":-3,"\u0117":-3,"\u0119":-3,"\u011b":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3,"\u014d":-3,"\u014f":-3,"\u0151":-3,"\u0153":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u010e":2,"\u0112":2,"\u0114":2,"\u0116":2,"\u0118":2,"\u011a":2,"\u0124":2,"\u0126":2,"\u0136":2,"\u0139":2,"\u013b":2,"\u013d":2,"\u013f":2,"\u0141":2,"\u0154":2,"\u0156":2,"\u0158":2}},"\u0123":{"d":"15,-94v0,-54,30,-91,79,-91v49,0,60,31,60,31v-5,-28,20,-28,46,-27r0,21v-10,0,-23,-3,-23,8r0,148v0,83,-88,95,-146,65r10,-20v0,0,22,12,49,12v45,1,70,-29,63,-85v-11,20,-29,31,-57,31v-49,0,-81,-39,-81,-93xm99,-23v29,0,54,-18,54,-71v0,-53,-25,-69,-57,-69v-35,0,-56,26,-56,69v0,43,23,71,59,71xm112,-204r-22,0v-6,-18,-2,-32,6,-49r19,0v-7,19,-10,30,-3,49","w":208,"k":{"\u2018":-7,"\u2019":-7,"\u201c":-7,"\u201d":-7}},"\u0124":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,93r145,0r0,-93v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-25,0r0,-116r-145,0r0,116r-25,0xm94,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":272,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u0125":{"d":"123,-162v-38,0,-68,30,-68,75r0,87r-25,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,0,48,-5,48,21r0,92v7,-17,30,-45,71,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-56,23,-140,-40,-140xm72,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":217,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0126":{"d":"39,0r0,-184r-24,0r0,-20r24,0r0,-49r25,0r0,49r145,0r0,-49r25,0r0,49r24,0r0,20r-24,0r0,184r-25,0r0,-116r-145,0r0,116r-25,0xm64,-138r145,0r0,-46r-145,0r0,46","w":272,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u0127":{"d":"30,0r0,-204r-28,0r0,-18r28,0r0,-31r25,0r0,31r47,0r0,18r-47,0v1,21,-3,45,0,64v5,-13,27,-45,71,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-56,23,-140,-40,-140v-40,0,-68,33,-68,75r0,87r-25,0","w":217,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0128":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm-4,-272v0,-28,11,-42,33,-42v24,0,30,26,46,26v12,0,14,-16,14,-25r19,0v0,28,-11,42,-33,42v-24,0,-29,-25,-46,-25v-12,0,-15,15,-15,24r-18,0","w":105},"\u0129":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm-6,-211v0,-28,9,-42,30,-42v20,0,25,25,36,25v11,0,12,-15,12,-24r18,0v0,28,-9,42,-30,42v-20,0,-25,-25,-35,-25v-11,0,-12,15,-12,24r-19,0","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u012a":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm8,-283r0,-19r89,0r0,19r-89,0","w":105},"\u012b":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm5,-222r0,-20r77,0r0,20r-77,0","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u012c":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm53,-270v-23,0,-43,-14,-41,-44r18,0v-2,18,9,28,23,27v13,0,24,-9,22,-27r18,0v2,30,-18,44,-40,44","w":105},"\u012d":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm84,-248v0,52,-82,52,-82,0r0,-5r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,5","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u012e":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22v-8,6,-26,22,-26,36v0,16,22,18,22,18r-5,20v0,0,-40,-2,-40,-33v-1,-19,13,-31,23,-41r-46,0","w":105},"\u012f":{"d":"32,-222r0,-31r24,0r0,31r-24,0xm58,-159r0,130v0,11,13,8,23,8r0,21v-8,6,-26,22,-26,36v0,16,22,18,22,18r-6,20v0,0,-39,-2,-39,-33v-1,-19,14,-31,23,-41v-18,1,-22,-10,-22,-30r0,-122v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22","w":90,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u0130":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm41,-283r0,-31r23,0r0,31r-23,0","w":105},"\u0131":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22","w":90},"\u0132":{"d":"123,2r0,-24v23,0,53,-8,53,-60r0,-141v-4,-16,-35,-5,-51,-8r0,-22v29,3,76,-12,76,22r0,149v0,70,-42,84,-78,84xm17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0","w":231},"\u0133":{"d":"32,-222r0,-31r24,0r0,31r-24,0xm33,-22r0,-130v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm128,-222r0,-31r24,0r0,31r-24,0xm79,52v24,0,50,-1,50,-46r0,-158v0,-11,-14,-7,-24,-8r0,-21v24,0,48,-4,48,22r0,166v-4,65,-42,69,-74,66r0,-21","w":183},"\u0134":{"d":"80,4v-38,0,-75,-26,-71,-85r25,0v-3,42,20,62,46,62v22,0,46,-14,46,-53r0,-151v0,-5,-3,-8,-8,-8r-63,0r0,-22v34,5,96,-16,96,22r0,160v0,55,-36,75,-71,75xm58,-271r30,-43r25,0r30,43r-22,0v-7,-9,-12,-21,-21,-29r-19,29r-23,0","w":181,"k":{"\u2018":5,"\u2019":5,"\u201c":5,"\u201d":5,",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0100":4,"\u0102":4,"\u0104":4,":":6,";":6}},"\u0135":{"d":"2,-210r30,-43r25,0r30,43r-22,0r-20,-30r-20,30r-23,0xm-8,52v22,3,49,-1,49,-46r0,-158v0,-12,-13,-7,-23,-8r0,-21v23,0,48,-5,48,21r0,167v-4,65,-42,69,-74,66r0,-21","w":96},"\u0136":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,88v19,-1,43,5,51,-9r61,-101r29,0v-26,39,-49,86,-78,121v22,23,38,71,56,101v5,10,14,9,26,9r0,22v-26,0,-38,1,-48,-19r-47,-93v-7,-14,-31,-8,-50,-9r0,121r-25,0xm101,23r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":212,"k":{"x":2,"C":8,"G":8,"O":8,"Q":8,"\u00c7":8,"\u00d2":8,"\u00d3":8,"\u00d4":8,"\u00d5":8,"\u00d6":8,"\u00d8":8,"\u0106":8,"\u0108":8,"\u010a":8,"\u010c":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"\u014c":8,"\u014e":8,"\u0150":8,"\u0152":8,"v":11,"w":11,"\u0175":11,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"\u00ad":15,"\u2013":15,"\u2014":15,"\u2212":15,"\u2018":1,"\u2019":1,"\u201c":1,"\u201d":1,")":-9,"]":-9,"|":-9,"}":-9,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,":":-11,";":-11,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":3,"\u00bb":3,"\u2039":3,"\u203a":3}},"\u0137":{"d":"30,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,0,48,-5,48,21r0,120v17,0,30,1,39,-9r46,-60r30,0v-20,24,-43,60,-66,79v14,13,32,52,44,73v3,9,15,8,27,8r0,21v-25,0,-38,1,-49,-18r-36,-65v-8,-11,-20,-7,-35,-8r0,91r-25,0xm83,23r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":179},"\u0138":{"d":"30,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v23,0,48,-5,48,21r0,56v17,-1,30,5,39,-8r49,-69r30,0v-22,27,-44,64,-68,87v11,12,29,46,39,65v3,9,15,8,28,8r0,21v-25,0,-39,2,-50,-18r-32,-57v-8,-12,-20,-5,-35,-7r0,82r-25,0","w":179},"\u0139":{"d":"39,-22r0,-201v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,201v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-105,0v-15,0,-21,-7,-21,-22xm41,-271r26,-43r27,0r-31,43r-22,0","k":{"*":28,"T":36,"\u0162":36,"\u0164":36,"\u0166":36,"\u021a":36,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":14,"W":14,"\u0174":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u0168":13,"\u016a":13,"\u016c":13,"\u016e":13,"\u0170":13,"\u0172":13,"v":17,"w":17,"\u0175":17,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":29,"'":29,"\u2018":22,"\u2019":22,"\u201c":22,"\u201d":22,",":-4,".":-4,"\u201a":-4,"\u201e":-4,"\u2026":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u0138":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"\u0155":2,"\u0157":2,"\u0159":2,"\u0169":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"\u010e":11,"\u0112":11,"\u0114":11,"\u0116":11,"\u0118":11,"\u011a":11,"\u0124":11,"\u0126":11,"\u0136":11,"\u0139":11,"\u013b":11,"\u013d":11,"\u013f":11,"\u0141":11,"\u0154":11,"\u0156":11,"\u0158":11,"b":5,"h":5,"k":5,"l":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013c":5,"\u013e":5,"\u0140":5}},"\u013a":{"d":"31,-22r0,-202v0,-11,-13,-8,-23,-8r0,-21v23,0,47,-3,47,22r0,202v0,11,13,8,23,8r0,21v-23,0,-47,3,-47,-22xm27,-271r25,-43r28,0r-32,43r-21,0","w":88},"\u013b":{"d":"39,-22r0,-201v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,201v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-105,0v-15,0,-21,-7,-21,-22xm100,23r23,0v5,19,1,32,-6,49r-19,0v6,-19,9,-30,2,-49","k":{"*":28,"T":36,"\u0162":36,"\u0164":36,"\u0166":36,"\u021a":36,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":14,"W":14,"\u0174":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u0168":13,"\u016a":13,"\u016c":13,"\u016e":13,"\u0170":13,"\u0172":13,"v":17,"w":17,"\u0175":17,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":29,"'":29,"\u2018":22,"\u2019":22,"\u201c":22,"\u201d":22,",":-4,".":-4,"\u201a":-4,"\u201e":-4,"\u2026":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u0138":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"\u0155":2,"\u0157":2,"\u0159":2,"\u0169":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"\u010e":11,"\u0112":11,"\u0114":11,"\u0116":11,"\u0118":11,"\u011a":11,"\u0124":11,"\u0126":11,"\u0136":11,"\u0139":11,"\u013b":11,"\u013d":11,"\u013f":11,"\u0141":11,"\u0154":11,"\u0156":11,"\u0158":11,"b":5,"h":5,"k":5,"l":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013c":5,"\u013e":5,"\u0140":5}},"\u013c":{"d":"31,-22r0,-202v0,-11,-13,-8,-23,-8r0,-21v23,0,47,-3,47,22r0,202v0,11,13,8,23,8r0,21v-23,0,-47,3,-47,-22xm37,23r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":88},"\u013d":{"d":"39,-22r0,-201v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,201v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-105,0v-15,0,-21,-7,-21,-22xm96,-253r23,0v5,19,1,32,-6,49r-19,0v6,-19,9,-30,2,-49","k":{"*":28,"T":36,"\u0162":36,"\u0164":36,"\u0166":36,"\u021a":36,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":14,"W":14,"\u0174":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u0168":13,"\u016a":13,"\u016c":13,"\u016e":13,"\u0170":13,"\u0172":13,"v":17,"w":17,"\u0175":17,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":29,"'":29,"\u2018":22,"\u2019":22,"\u201c":22,"\u201d":22,",":-4,".":-4,"\u201a":-4,"\u201e":-4,"\u2026":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u0138":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"\u0155":2,"\u0157":2,"\u0159":2,"\u0169":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"\u010e":11,"\u0112":11,"\u0114":11,"\u0116":11,"\u0118":11,"\u011a":11,"\u0124":11,"\u0126":11,"\u0136":11,"\u0139":11,"\u013b":11,"\u013d":11,"\u013f":11,"\u0141":11,"\u0154":11,"\u0156":11,"\u0158":11,"b":5,"h":5,"k":5,"l":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013c":5,"\u013e":5,"\u0140":5}},"\u013e":{"d":"31,-22r0,-202v0,-11,-13,-8,-23,-8r0,-21v23,0,47,-3,47,22r0,202v0,11,13,8,23,8r0,21v-23,0,-47,3,-47,-22xm78,-253r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":114},"\u013f":{"d":"39,-22r0,-201v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,201v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-105,0v-15,0,-21,-7,-21,-22xm108,-120r0,-28r28,0r0,28r-28,0","k":{"*":28,"T":36,"\u0162":36,"\u0164":36,"\u0166":36,"\u021a":36,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":14,"W":14,"\u0174":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u0168":13,"\u016a":13,"\u016c":13,"\u016e":13,"\u0170":13,"\u0172":13,"v":17,"w":17,"\u0175":17,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":29,"'":29,"\u2018":22,"\u2019":22,"\u201c":22,"\u201d":22,",":-4,".":-4,"\u201a":-4,"\u201e":-4,"\u2026":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u0138":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"\u0155":2,"\u0157":2,"\u0159":2,"\u0169":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"\u010e":11,"\u0112":11,"\u0114":11,"\u0116":11,"\u0118":11,"\u011a":11,"\u0124":11,"\u0126":11,"\u0136":11,"\u0139":11,"\u013b":11,"\u013d":11,"\u013f":11,"\u0141":11,"\u0154":11,"\u0156":11,"\u0158":11,"b":5,"h":5,"k":5,"l":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013c":5,"\u013e":5,"\u0140":5}},"\u0140":{"d":"31,-22r0,-202v0,-11,-13,-8,-23,-8r0,-21v23,0,47,-3,47,22r0,202v0,11,13,8,23,8r0,21v-23,0,-47,3,-47,-22xm80,-120r0,-28r28,0r0,28r-28,0","w":109},"\u0141":{"d":"39,-22r0,-100r-24,13r0,-25r24,-13r0,-76v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,69r39,-23r0,26r-39,23r0,106v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-105,0v-15,0,-21,-7,-21,-22","k":{"*":28,"T":36,"\u0162":36,"\u0164":36,"\u0166":36,"\u021a":36,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":14,"W":14,"\u0174":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u0168":13,"\u016a":13,"\u016c":13,"\u016e":13,"\u0170":13,"\u0172":13,"v":17,"w":17,"\u0175":17,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":29,"'":29,"\u2018":22,"\u2019":22,"\u201c":22,"\u201d":22,",":-4,".":-4,"\u201a":-4,"\u201e":-4,"\u2026":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u0138":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"\u0155":2,"\u0157":2,"\u0159":2,"\u0169":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"\u010e":11,"\u0112":11,"\u0114":11,"\u0116":11,"\u0118":11,"\u011a":11,"\u0124":11,"\u0126":11,"\u0136":11,"\u0139":11,"\u013b":11,"\u013d":11,"\u013f":11,"\u0141":11,"\u0154":11,"\u0156":11,"\u0158":11,"b":5,"h":5,"k":5,"l":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013c":5,"\u013e":5,"\u0140":5}},"\u0142":{"d":"36,-22r0,-106r-30,17r0,-25r30,-18r0,-70v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22r0,63r30,-17r0,26r-30,17r0,113v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22","w":96},"\u0143":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22xm130,-271r25,-43r28,0r-32,43r-21,0","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u0144":{"d":"125,-162v-38,0,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-55,24,-140,-39,-140xm103,-210r26,-43r27,0r-31,43r-22,0","w":218,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0145":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22xm124,23r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u0146":{"d":"125,-162v-38,0,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-55,24,-140,-39,-140xm103,23r23,0v5,19,1,32,-6,49r-20,0v7,-19,10,-30,3,-49","w":218,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0147":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22xm128,-271r-30,-43r23,0v7,9,12,21,20,29r20,-29r22,0r-30,43r-25,0","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u0148":{"d":"125,-162v-38,0,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-55,24,-140,-39,-140xm102,-210r-31,-43r23,0r20,29r20,-29r23,0r-31,43r-24,0","w":218,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u0149":{"d":"133,-162v-38,0,-69,30,-69,75r0,87r-24,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v26,0,53,-3,47,28v1,8,-3,14,0,13v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-24,0,-50,4,-48,-22v-7,-55,24,-140,-39,-140xm0,-253r22,0v5,19,1,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":227,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u014a":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,219v0,60,-39,78,-75,78r0,-24v23,0,52,-15,50,-54r-127,-176v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u014b":{"d":"125,-162v-38,1,-69,29,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v89,0,61,114,61,193v0,65,-42,70,-73,67r0,-22v22,3,49,-1,49,-46r0,-116v0,-28,-4,-53,-39,-53","w":217,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u014c":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm97,-283r0,-19r89,0r0,19r-89,0","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u014d":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm66,-222r0,-20r88,0r0,20r-88,0","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u014e":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm182,-308v0,51,-82,51,-82,0r0,-6r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,6","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u014f":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm151,-248v0,52,-82,52,-82,0r0,-5r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,5","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u0150":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm154,-271r25,-43r28,0r-32,43r-21,0xm106,-271r24,-43r23,0r-24,43r-23,0","w":284,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u0151":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm123,-210r25,-43r27,0r-31,43r-21,0xm75,-210r24,-43r23,0r-24,43r-23,0","w":219,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":17,"\u2019":17,"\u201c":17,"\u201d":17,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u0152":{"d":"14,-127v0,-92,75,-147,173,-126r99,0v25,-2,22,23,22,47r-23,0v-1,-10,3,-25,-8,-25r-84,0r0,92r92,0r0,23r-92,0r0,94r94,0v11,0,7,-15,8,-25r24,0v0,23,3,47,-21,47r-111,0v-97,21,-173,-34,-173,-127xm40,-127v0,71,51,118,128,104r0,-207v-75,-17,-129,32,-128,103","w":327},"\u0153":{"d":"14,-90v0,-102,140,-126,179,-47v14,-31,42,-48,77,-48v54,1,81,43,75,95r-139,0v2,47,34,72,70,72v33,0,55,-22,55,-22r12,18v0,0,-27,26,-68,26v-39,1,-66,-21,-83,-49v-35,81,-178,55,-178,-45xm207,-109r114,0v-3,-80,-106,-68,-114,0xm40,-90v0,44,31,72,70,72v38,0,70,-28,70,-73v0,-44,-33,-72,-70,-72v-39,0,-70,29,-70,73","w":363,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u0154":{"d":"39,0r0,-231r-24,0r0,-22r107,0v42,0,73,28,73,72v0,39,-24,63,-49,68v19,20,30,57,45,82v5,10,11,9,23,9r0,22v-25,0,-36,1,-46,-19r-36,-72v-9,-25,-39,-13,-68,-16r0,107r-25,0xm64,-129v54,2,105,4,105,-51v0,-54,-51,-54,-105,-51r0,102xm91,-271r25,-43r28,0r-32,43r-21,0","w":217,"k":{"T":8,"\u0162":8,"\u0164":8,"\u0166":8,"\u021a":8,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"V":2,"W":2,"\u0174":2,"C":1,"G":1,"O":1,"Q":1,"\u00c7":1,"\u00d2":1,"\u00d3":1,"\u00d4":1,"\u00d5":1,"\u00d6":1,"\u00d8":1,"\u0106":1,"\u0108":1,"\u010a":1,"\u010c":1,"\u011c":1,"\u011e":1,"\u0120":1,"\u0122":1,"\u014c":1,"\u014e":1,"\u0150":1,"\u0152":1,"\u2018":6,"\u2019":6,"\u201c":6,"\u201d":6,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u0155":{"d":"122,-158v-73,-5,-68,83,-66,158r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v35,-4,54,4,47,46v10,-29,33,-53,67,-47r0,24xm56,-210r25,-43r27,0r-31,43r-21,0","w":129,"k":{"a":12,"\u00e0":12,"\u00e1":12,"\u00e2":12,"\u00e3":12,"\u00e4":12,"\u00e5":12,"\u00e6":12,"\u0101":12,"\u0103":12,"\u0105":12,"v":-5,"w":-5,"\u0175":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0177":-5,"\u00ad":7,"\u2013":7,"\u2014":7,"\u2212":7,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13,",":20,".":20,"\u201a":20,"\u201e":20,"\u2026":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"\u010f":7,"\u0111":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,"b":4,"h":4,"k":4,"l":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4}},"\u0156":{"d":"39,0r0,-231r-24,0r0,-22r107,0v42,0,73,28,73,72v0,39,-24,63,-49,68v19,20,30,57,45,82v5,10,11,9,23,9r0,22v-25,0,-36,1,-46,-19r-36,-72v-9,-25,-39,-13,-68,-16r0,107r-25,0xm64,-129v54,2,105,4,105,-51v0,-54,-51,-54,-105,-51r0,102xm107,23r23,0v5,19,0,32,-7,49r-19,0v7,-19,10,-30,3,-49","w":217,"k":{"T":8,"\u0162":8,"\u0164":8,"\u0166":8,"\u021a":8,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"V":2,"W":2,"\u0174":2,"C":1,"G":1,"O":1,"Q":1,"\u00c7":1,"\u00d2":1,"\u00d3":1,"\u00d4":1,"\u00d5":1,"\u00d6":1,"\u00d8":1,"\u0106":1,"\u0108":1,"\u010a":1,"\u010c":1,"\u011c":1,"\u011e":1,"\u0120":1,"\u0122":1,"\u014c":1,"\u014e":1,"\u0150":1,"\u0152":1,"\u2018":6,"\u2019":6,"\u201c":6,"\u201d":6,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u0157":{"d":"122,-158v-73,-5,-68,83,-66,158r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v35,-4,54,4,47,46v10,-29,33,-53,67,-47r0,24xm33,23r23,0v5,19,1,32,-6,49r-19,0v6,-19,9,-30,2,-49","w":129,"k":{"a":12,"\u00e0":12,"\u00e1":12,"\u00e2":12,"\u00e3":12,"\u00e4":12,"\u00e5":12,"\u00e6":12,"\u0101":12,"\u0103":12,"\u0105":12,"v":-5,"w":-5,"\u0175":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0177":-5,"\u00ad":7,"\u2013":7,"\u2014":7,"\u2212":7,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13,",":20,".":20,"\u201a":20,"\u201e":20,"\u2026":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"\u010f":7,"\u0111":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,"b":4,"h":4,"k":4,"l":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4}},"\u0158":{"d":"39,0r0,-231r-24,0r0,-22r107,0v42,0,73,28,73,72v0,39,-24,63,-49,68v19,20,30,57,45,82v5,10,11,9,23,9r0,22v-25,0,-36,1,-46,-19r-36,-72v-9,-25,-39,-13,-68,-16r0,107r-25,0xm64,-129v54,2,105,4,105,-51v0,-54,-51,-54,-105,-51r0,102xm89,-271r-30,-43r23,0r20,29r20,-29r22,0r-30,43r-25,0","w":217,"k":{"T":8,"\u0162":8,"\u0164":8,"\u0166":8,"\u021a":8,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"V":2,"W":2,"\u0174":2,"C":1,"G":1,"O":1,"Q":1,"\u00c7":1,"\u00d2":1,"\u00d3":1,"\u00d4":1,"\u00d5":1,"\u00d6":1,"\u00d8":1,"\u0106":1,"\u0108":1,"\u010a":1,"\u010c":1,"\u011c":1,"\u011e":1,"\u0120":1,"\u0122":1,"\u014c":1,"\u014e":1,"\u0150":1,"\u0152":1,"\u2018":6,"\u2019":6,"\u201c":6,"\u201d":6,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u0159":{"d":"122,-158v-73,-5,-68,83,-66,158r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v35,-4,54,4,47,46v10,-29,33,-53,67,-47r0,24xm54,-210r-30,-43r23,0r20,29r20,-29r22,0r-30,43r-25,0","w":129,"k":{"a":12,"\u00e0":12,"\u00e1":12,"\u00e2":12,"\u00e3":12,"\u00e4":12,"\u00e5":12,"\u00e6":12,"\u0101":12,"\u0103":12,"\u0105":12,"v":-5,"w":-5,"\u0175":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0177":-5,"\u00ad":7,"\u2013":7,"\u2014":7,"\u2212":7,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13,",":20,".":20,"\u201a":20,"\u201e":20,"\u2026":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"\u010f":7,"\u0111":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,"b":4,"h":4,"k":4,"l":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4}},"\u015a":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-51,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-16,-38,-44,-38v-33,0,-52,19,-52,41v0,59,125,43,125,127v0,38,-28,70,-76,70v-52,0,-81,-36,-81,-36xm85,-271r25,-43r27,0r-31,43r-21,0","w":186,"k":{"\u00ad":-3,"\u2013":-3,"\u2014":-3,"\u2212":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u0138":-2,"\u0144":-2,"\u0146":-2,"\u0148":-2,"\u014b":-2,"\u0155":-2,"\u0157":-2,"\u0159":-2,"\u0169":-2,"\u016b":-2,"\u016d":-2,"\u016f":-2,"\u0171":-2,"\u0173":-2,"z":2,"\u017a":2,"\u017c":2,"\u017e":2}},"\u015b":{"d":"10,-27r14,-17v0,0,20,27,56,27v20,0,38,-10,38,-29v0,-40,-101,-32,-101,-90v0,-33,28,-49,64,-49v23,0,64,9,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,32,101,92v0,30,-27,50,-63,50v-47,0,-70,-31,-70,-31xm68,-210r25,-43r28,0r-32,43r-21,0","w":158,"k":{"\u2018":4,"\u2019":4,"\u201c":4,"\u201d":4}},"\u015c":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-51,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-16,-38,-44,-38v-33,0,-52,19,-52,41v0,59,125,43,125,127v0,38,-28,70,-76,70v-52,0,-81,-36,-81,-36xm53,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":186,"k":{"\u00ad":-3,"\u2013":-3,"\u2014":-3,"\u2212":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u0138":-2,"\u0144":-2,"\u0146":-2,"\u0148":-2,"\u014b":-2,"\u0155":-2,"\u0157":-2,"\u0159":-2,"\u0169":-2,"\u016b":-2,"\u016d":-2,"\u016f":-2,"\u0171":-2,"\u0173":-2,"z":2,"\u017a":2,"\u017c":2,"\u017e":2}},"\u015d":{"d":"10,-27r14,-17v0,0,20,27,56,27v20,0,38,-10,38,-29v0,-40,-101,-32,-101,-90v0,-33,28,-49,64,-49v23,0,64,9,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,32,101,92v0,30,-27,50,-63,50v-47,0,-70,-31,-70,-31xm36,-210r30,-43r25,0r30,43r-22,0v-7,-9,-12,-21,-21,-29r-19,29r-23,0","w":158,"k":{"\u2018":4,"\u2019":4,"\u201c":4,"\u201d":4}},"\u015e":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-51,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-16,-38,-44,-38v-33,0,-52,19,-52,41v0,59,125,43,125,127v0,36,-27,67,-71,70r-3,16v15,2,26,11,26,25v0,28,-33,32,-53,27r0,-17v7,2,36,6,34,-10v1,-9,-14,-15,-26,-12r7,-29v-45,-4,-71,-36,-71,-36","w":186,"k":{"\u00ad":-3,"\u2013":-3,"\u2014":-3,"\u2212":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u0138":-2,"\u0144":-2,"\u0146":-2,"\u0148":-2,"\u014b":-2,"\u0155":-2,"\u0157":-2,"\u0159":-2,"\u0169":-2,"\u016b":-2,"\u016d":-2,"\u016f":-2,"\u0171":-2,"\u0173":-2,"z":2,"\u017a":2,"\u017c":2,"\u017e":2}},"\u015f":{"d":"10,-27r14,-17v0,0,20,27,56,27v20,0,38,-10,38,-29v0,-40,-101,-32,-101,-90v0,-33,28,-49,64,-49v23,0,64,9,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,32,101,92v0,30,-25,49,-60,50r-3,16v15,2,25,11,25,25v0,28,-32,32,-52,27r0,-17v6,2,36,6,33,-10v2,-10,-15,-15,-26,-12r7,-30v-38,-4,-57,-30,-57,-30","w":158,"k":{"\u2018":4,"\u2019":4,"\u201c":4,"\u201d":4}},"\u0160":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-51,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-16,-38,-44,-38v-33,0,-52,19,-52,41v0,59,125,43,125,127v0,38,-28,70,-76,70v-52,0,-81,-36,-81,-36xm83,-271r-30,-43r23,0v7,9,12,21,20,29r20,-29r22,0r-30,43r-25,0","w":186,"k":{"\u00ad":-3,"\u2013":-3,"\u2014":-3,"\u2212":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u0138":-2,"\u0144":-2,"\u0146":-2,"\u0148":-2,"\u014b":-2,"\u0155":-2,"\u0157":-2,"\u0159":-2,"\u0169":-2,"\u016b":-2,"\u016d":-2,"\u016f":-2,"\u0171":-2,"\u0173":-2,"z":2,"\u017a":2,"\u017c":2,"\u017e":2}},"\u0161":{"d":"10,-27r14,-17v0,0,20,27,56,27v20,0,38,-10,38,-29v0,-40,-101,-32,-101,-90v0,-33,28,-49,64,-49v23,0,64,9,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,32,101,92v0,30,-27,50,-63,50v-47,0,-70,-31,-70,-31xm67,-210r-31,-43r23,0v7,9,12,21,21,29r19,-29r23,0r-31,43r-24,0","w":158,"k":{"\u2018":4,"\u2019":4,"\u201c":4,"\u201d":4}},"\u0162":{"d":"186,-231r-62,0r0,231v-10,-1,-5,14,-8,20v15,2,25,11,25,25v0,28,-33,32,-53,27r0,-17v7,2,36,6,34,-10v1,-9,-14,-15,-26,-12r7,-33r-4,0r0,-231r-63,0v-11,-1,-7,15,-8,25r-23,0v1,-23,-5,-47,21,-47r171,0v26,-3,21,24,21,47r-24,0v-1,-10,3,-25,-8,-25","w":223,"k":{"\u0133":13,"\u012b":-14,"\u0129":-18,"\u00ef":-11,"j":14,"i":13," ":7,"Y":-4,"\u00dd":-4,"\u0176":-4,"\u0178":-4,"V":-3,"W":-3,"\u0174":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"\u0101":22,"\u0103":22,"\u0105":22,"v":22,"w":22,"\u0175":22,"y":23,"\u00fd":23,"\u00ff":23,"\u0177":23,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0100":31,"\u0102":31,"\u0104":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"\u0107":27,"\u0109":27,"\u010b":27,"\u010d":27,"\u010f":27,"\u0111":27,"\u0113":27,"\u0115":27,"\u0117":27,"\u0119":27,"\u011b":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u0138":16,"\u0144":16,"\u0146":16,"\u0148":16,"\u014b":16,"\u0155":16,"\u0157":16,"\u0159":16,"\u0169":16,"\u016b":16,"\u016d":16,"\u016f":16,"\u0171":16,"\u0173":16,"J":18,"\u0134":18,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"\u00ab":11,"\u00bb":11,"\u2039":11,"\u203a":11,"M":4,"N":4,"\u014a":4,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u0163":{"d":"64,-5v-41,-12,-30,-99,-31,-156r-23,0r0,-20r24,0r0,-50r24,0r0,50r45,0r0,20r-45,0r0,93v3,46,25,47,49,47r0,22r-28,-1r-4,20v15,2,25,11,25,25v0,28,-32,32,-52,27r0,-17v6,2,36,6,33,-10v2,-10,-15,-15,-26,-12","w":120,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\u00ad":5,"\u2013":5,"\u2014":5,"\u2212":5,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u0164":{"d":"99,0r0,-231r-63,0v-11,-1,-7,15,-8,25r-23,0v1,-23,-5,-47,21,-47r171,0v26,-3,21,24,21,47r-24,0v-1,-10,3,-25,-8,-25r-62,0r0,231r-25,0xm99,-271r-30,-43r23,0r20,29r20,-29r22,0r-30,43r-25,0","w":223,"k":{"\u0133":13,"\u012b":-14,"\u0129":-18,"\u00ef":-11,"j":14,"i":13," ":7,"Y":-4,"\u00dd":-4,"\u0176":-4,"\u0178":-4,"V":-3,"W":-3,"\u0174":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"\u0101":22,"\u0103":22,"\u0105":22,"v":22,"w":22,"\u0175":22,"y":23,"\u00fd":23,"\u00ff":23,"\u0177":23,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0100":31,"\u0102":31,"\u0104":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"\u0107":27,"\u0109":27,"\u010b":27,"\u010d":27,"\u010f":27,"\u0111":27,"\u0113":27,"\u0115":27,"\u0117":27,"\u0119":27,"\u011b":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u0138":16,"\u0144":16,"\u0146":16,"\u0148":16,"\u014b":16,"\u0155":16,"\u0157":16,"\u0159":16,"\u0169":16,"\u016b":16,"\u016d":16,"\u016f":16,"\u0171":16,"\u0173":16,"J":18,"\u0134":18,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"\u00ab":11,"\u00bb":11,"\u2039":11,"\u203a":11,"M":4,"N":4,"\u014a":4,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u0165":{"d":"34,-66r0,-95r-24,0r0,-20r24,0r0,-50r24,0r0,50r46,0r0,20r-46,0r0,93v3,46,25,47,49,47r0,22v-34,1,-73,-2,-73,-67xm83,-253r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":125},"\u0166":{"d":"99,0r0,-117r-58,0r0,-20r58,0r0,-94r-63,0v-11,-1,-7,15,-8,25r-23,0v1,-23,-5,-47,21,-47r171,0v26,-3,21,24,21,47r-24,0v-1,-10,3,-25,-8,-25r-62,0r0,94r60,0r0,20r-60,0r0,117r-25,0","w":223,"k":{"\u0133":13,"\u012b":-14,"\u0129":-18,"\u00ef":-11,"j":14,"i":13," ":7,"Y":-4,"\u00dd":-4,"\u0176":-4,"\u0178":-4,"V":-3,"W":-3,"\u0174":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"\u0101":22,"\u0103":22,"\u0105":22,"v":22,"w":22,"\u0175":22,"y":23,"\u00fd":23,"\u00ff":23,"\u0177":23,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0100":31,"\u0102":31,"\u0104":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"\u0107":27,"\u0109":27,"\u010b":27,"\u010d":27,"\u010f":27,"\u0111":27,"\u0113":27,"\u0115":27,"\u0117":27,"\u0119":27,"\u011b":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u0138":16,"\u0144":16,"\u0146":16,"\u0148":16,"\u014b":16,"\u0155":16,"\u0157":16,"\u0159":16,"\u0169":16,"\u016b":16,"\u016d":16,"\u016f":16,"\u0171":16,"\u0173":16,"J":18,"\u0134":18,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"\u00ab":11,"\u00bb":11,"\u2039":11,"\u203a":11,"M":4,"N":4,"\u014a":4,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u0167":{"d":"33,-66r0,-34r-23,0r0,-19r23,0r0,-42r-23,0r0,-20r24,0r0,-50r24,0r0,50r45,0r0,20r-45,0r0,42r45,0r0,19r-45,0r0,32v3,45,25,48,49,47r0,22v-35,1,-69,-2,-74,-67","w":120,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\u00ad":5,"\u2013":5,"\u2014":5,"\u2212":5,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u0168":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm73,-272v0,-28,11,-42,33,-42v24,0,30,26,46,26v12,0,14,-16,14,-25r19,0v0,28,-11,42,-33,42v-24,0,-29,-25,-46,-25v-12,0,-15,15,-15,24r-18,0","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u0169":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm49,-211v0,-28,12,-42,34,-42v24,0,29,25,45,25v12,0,15,-15,15,-24r19,0v0,28,-12,42,-34,42v-24,0,-29,-26,-46,-26v-12,0,-14,16,-14,25r-19,0","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u016a":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm85,-283r0,-19r89,0r0,19r-89,0","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u016b":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm62,-222r0,-20r88,0r0,20r-88,0","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u016c":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm130,-270v-23,0,-43,-14,-41,-44r18,0v-2,18,9,28,23,27v13,0,24,-9,22,-27r18,0v2,30,-18,44,-40,44","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u016d":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm147,-248v0,52,-82,52,-82,0r0,-5r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,5","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u016e":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm130,-267v-14,0,-27,-10,-27,-25v0,-15,13,-26,27,-26v14,0,26,11,26,26v0,15,-12,25,-26,25xm130,-280v7,0,11,-5,11,-12v0,-7,-4,-13,-11,-13v-7,0,-12,6,-12,13v0,7,5,12,12,12","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u016f":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm106,-206v-14,0,-26,-11,-26,-26v0,-15,12,-25,26,-25v14,0,27,10,27,25v0,15,-13,26,-27,26xm106,-220v7,0,12,-5,12,-12v0,-7,-5,-12,-12,-12v-7,0,-12,5,-12,12v0,7,5,12,12,12","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u0170":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm142,-271r25,-43r28,0r-32,43r-21,0xm94,-271r24,-43r23,0r-24,43r-23,0","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u0171":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm119,-210r25,-43r27,0r-31,43r-21,0xm71,-210r24,-43r23,0r-24,43r-23,0","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u0172":{"d":"222,-85v2,76,-68,70,-83,121v0,16,23,18,23,18r-6,20v0,0,-40,-2,-40,-33v0,-15,10,-28,19,-37v-60,2,-98,-35,-99,-91r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,138","w":258,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u0173":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v29,-1,52,-3,47,31v6,54,-21,131,40,131v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-8,6,-26,22,-26,36v0,16,22,18,22,18r-5,20v0,0,-40,-2,-40,-33v0,-18,14,-34,24,-41v-25,6,-22,-24,-22,-41v0,0,-18,45,-71,45","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u0174":{"d":"82,0r-58,-223v-2,-8,-9,-8,-18,-8r0,-22v23,0,37,-1,42,21r50,201r63,-221r24,0r58,221v12,-65,35,-137,49,-201v5,-22,19,-21,42,-21r0,22v-9,0,-15,0,-17,8r-59,223r-29,0r-57,-213r-60,213r-30,0xm130,-271r30,-43r25,0r30,43r-22,0v-7,-9,-12,-21,-21,-29r-19,29r-23,0","w":340,"k":{" ":8,"T":-3,"\u0162":-3,"\u0164":-3,"\u0166":-3,"\u021a":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":-7,"'":-7,"\u2018":-2,"\u2019":-2,"\u201c":-2,"\u201d":-2,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0100":12,"\u0102":12,"\u0104":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u0107":19,"\u0109":19,"\u010b":19,"\u010d":19,"\u010f":19,"\u0111":19,"\u0113":19,"\u0115":19,"\u0117":19,"\u0119":19,"\u011b":19,"\u011d":19,"\u011f":19,"\u0121":19,"\u0123":19,"\u014d":19,"\u014f":19,"\u0151":19,"\u0153":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u0138":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"\u0159":7,"\u0169":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"J":12,"\u0134":12,"M":2,"N":2,"\u014a":2,"S":2,"\u015a":2,"\u015c":2,"\u015e":2,"\u0160":2,"\u0218":2}},"\u0175":{"d":"73,0r-52,-152v-3,-7,-8,-8,-17,-8r0,-21v22,0,34,-1,41,20r43,134r50,-153r24,0r51,153v11,-43,31,-91,43,-134v6,-21,18,-20,41,-20r0,21v-9,0,-15,0,-18,8r-52,152r-27,0r-50,-148r-50,148r-27,0xm108,-210r30,-43r25,0r30,43r-23,0r-20,-29r-20,29r-22,0","w":300,"k":{"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-8,"\u2019":-8,"\u201c":-8,"\u201d":-8,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u0176":{"d":"94,0r0,-110r-68,-111v-6,-10,-10,-10,-22,-10r0,-22v23,0,31,-1,44,20r59,100v13,-27,41,-72,58,-100v13,-21,21,-20,45,-20r0,22v-11,0,-18,0,-23,10r-68,111r0,110r-25,0xm64,-271r30,-43r26,0r29,43r-22,0r-20,-29r-20,29r-23,0","w":213,"k":{" ":13,"T":-4,"\u0162":-4,"\u0164":-4,"\u0166":-4,"\u021a":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,"\u2018":-1,"\u2019":-1,"\u201c":-1,"\u201d":-1,",":29,".":29,"\u201a":29,"\u201e":29,"\u2026":29,"A":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00c6":29,"\u0100":29,"\u0102":29,"\u0104":29,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"\u0107":25,"\u0109":25,"\u010b":25,"\u010d":25,"\u010f":25,"\u0111":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"\u011b":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u0138":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u014b":13,"\u0155":13,"\u0157":13,"\u0159":13,"\u0169":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13,"J":13,"\u0134":13,"z":11,"\u017a":11,"\u017c":11,"\u017e":11,"\u00ab":7,"\u00bb":7,"\u2039":7,"\u203a":7,"M":6,"N":6,"\u014a":6,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u0177":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-4,-7,-8,-8,-16,-8r0,-21v22,0,31,1,39,20r53,132v13,-43,36,-90,51,-132v7,-20,17,-21,39,-20r0,21v-8,0,-12,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36xm54,-210r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":194,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-10,"\u2019":-10,"\u201c":-10,"\u201d":-10,",":16,".":16,"\u201a":16,"\u201e":16,"\u2026":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u0178":{"d":"94,0r0,-110r-68,-111v-6,-10,-10,-10,-22,-10r0,-22v23,0,31,-1,44,20r59,100v13,-27,41,-72,58,-100v13,-21,21,-20,45,-20r0,22v-11,0,-18,0,-23,10r-68,111r0,110r-25,0xm123,-283r0,-31r22,0r0,31r-22,0xm69,-283r0,-31r22,0r0,31r-22,0","w":213,"k":{" ":13,"T":-4,"\u0162":-4,"\u0164":-4,"\u0166":-4,"\u021a":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,"\u2018":-1,"\u2019":-1,"\u201c":-1,"\u201d":-1,",":29,".":29,"\u201a":29,"\u201e":29,"\u2026":29,"A":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00c6":29,"\u0100":29,"\u0102":29,"\u0104":29,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"\u0107":25,"\u0109":25,"\u010b":25,"\u010d":25,"\u010f":25,"\u0111":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"\u011b":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u0138":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u014b":13,"\u0155":13,"\u0157":13,"\u0159":13,"\u0169":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13,"J":13,"\u0134":13,"z":11,"\u017a":11,"\u017c":11,"\u017e":11,"\u00ab":7,"\u00bb":7,"\u2039":7,"\u203a":7,"M":6,"N":6,"\u014a":6,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u0179":{"d":"7,0r0,-18r154,-213r-119,0v-11,0,-7,15,-8,25r-24,0v0,-23,-3,-47,22,-47r160,0r0,18r-135,190v-9,13,-19,23,-19,23r128,0v11,0,7,-15,8,-25r23,0v0,23,3,47,-22,47r-168,0xm94,-271r26,-43r27,0r-31,43r-22,0","w":207,"k":{"\u00ad":9,"\u2013":9,"\u2014":9,"\u2212":9,"\u00ab":4,"\u00bb":4,"\u2039":4,"\u203a":4}},"\u017a":{"d":"14,0r0,-16r116,-144v-21,2,-60,1,-84,1v-11,0,-8,12,-8,21r-23,0v-1,-23,-2,-43,22,-43r126,0r0,16r-117,144v24,-2,66,-1,93,-1v10,0,8,-12,8,-22r23,0v1,23,2,44,-22,44r-134,0xm82,-210r25,-43r28,0r-32,43r-21,0","w":179,"k":{"v":6,"w":6,"\u0175":6,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-14,"\u2019":-14,"\u201c":-14,"\u201d":-14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u017b":{"d":"7,0r0,-18r154,-213r-119,0v-11,0,-7,15,-8,25r-24,0v0,-23,-3,-47,22,-47r160,0r0,18r-135,190v-9,13,-19,23,-19,23r128,0v11,0,7,-15,8,-25r23,0v0,23,3,47,-22,47r-168,0xm93,-283r0,-31r24,0r0,31r-24,0","w":207,"k":{"\u00ad":9,"\u2013":9,"\u2014":9,"\u2212":9,"\u00ab":4,"\u00bb":4,"\u2039":4,"\u203a":4}},"\u017c":{"d":"14,0r0,-16r116,-144v-21,2,-60,1,-84,1v-11,0,-8,12,-8,21r-23,0v-1,-23,-2,-43,22,-43r126,0r0,16r-117,144v24,-2,66,-1,93,-1v10,0,8,-12,8,-22r23,0v1,23,2,44,-22,44r-134,0xm81,-222r0,-31r24,0r0,31r-24,0","w":179,"k":{"v":6,"w":6,"\u0175":6,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-14,"\u2019":-14,"\u201c":-14,"\u201d":-14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u017d":{"d":"7,0r0,-18r154,-213r-119,0v-11,0,-7,15,-8,25r-24,0v0,-23,-3,-47,22,-47r160,0r0,18r-135,190v-9,13,-19,23,-19,23r128,0v11,0,7,-15,8,-25r23,0v0,23,3,47,-22,47r-168,0xm93,-271r-30,-43r23,0v7,9,12,21,20,29r19,-29r23,0r-30,43r-25,0","w":207,"k":{"\u00ad":9,"\u2013":9,"\u2014":9,"\u2212":9,"\u00ab":4,"\u00bb":4,"\u2039":4,"\u203a":4}},"\u017e":{"d":"14,0r0,-16r116,-144v-21,2,-60,1,-84,1v-11,0,-8,12,-8,21r-23,0v-1,-23,-2,-43,22,-43r126,0r0,16r-117,144v24,-2,66,-1,93,-1v10,0,8,-12,8,-22r23,0v1,23,2,44,-22,44r-134,0xm80,-210r-30,-43r23,0r20,29r20,-29r22,0r-30,43r-25,0","w":179,"k":{"v":6,"w":6,"\u0175":6,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-14,"\u2019":-14,"\u201c":-14,"\u201d":-14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u017f":{"d":"32,0r0,-161r-23,0r0,-20r23,0v0,-65,39,-80,73,-73r0,22v-22,-3,-49,0,-49,44r0,188r-24,0","w":109,"k":{"\u0129":-4,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-16,"\u2019":-16,"\u201c":-16,"\u201d":-16,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"\u201a":18,"\u201e":18,"\u2026":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"\u0107":8,"\u0109":8,"\u010b":8,"\u010d":8,"\u010f":8,"\u0111":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"\u011b":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":3,"\u015b":3,"\u015d":3,"\u015f":3,"\u0161":3,"\u0219":3}},"\u0192":{"d":"60,-47v-9,65,-46,69,-79,66v4,-8,-5,-25,10,-20v14,0,41,-6,45,-47r7,-83r-29,0r0,-21r31,0r3,-36v9,-65,46,-69,79,-66v-4,8,5,26,-10,21v-14,0,-41,6,-45,47r-3,34r39,0r0,21r-41,0","w":124,"k":{"7":-11}},"\u0218":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-51,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-16,-38,-44,-38v-33,0,-52,19,-52,41v0,59,125,43,125,127v0,38,-28,70,-76,70v-52,0,-81,-36,-81,-36xm82,23r23,0v5,19,1,32,-6,49r-19,0v6,-19,9,-30,2,-49","w":186,"k":{"\u00ad":-3,"\u2013":-3,"\u2014":-3,"\u2212":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u0138":-2,"\u0144":-2,"\u0146":-2,"\u0148":-2,"\u014b":-2,"\u0155":-2,"\u0157":-2,"\u0159":-2,"\u0169":-2,"\u016b":-2,"\u016d":-2,"\u016f":-2,"\u0171":-2,"\u0173":-2,"z":2,"\u017a":2,"\u017c":2,"\u017e":2}},"\u0219":{"d":"10,-27r14,-17v0,0,20,27,56,27v20,0,38,-10,38,-29v0,-40,-101,-32,-101,-90v0,-33,28,-49,64,-49v23,0,64,9,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,32,101,92v0,30,-27,50,-63,50v-47,0,-70,-31,-70,-31xm67,23r23,0v5,19,1,32,-6,49r-20,0v7,-19,10,-30,3,-49","w":158,"k":{"\u2018":4,"\u2019":4,"\u201c":4,"\u201d":4}},"\u021a":{"d":"99,0r0,-231r-63,0v-11,-1,-7,15,-8,25r-23,0v1,-23,-5,-47,21,-47r171,0v26,-3,21,24,21,47r-24,0v-1,-10,3,-25,-8,-25r-62,0r0,231r-25,0xm100,23r22,0v6,18,2,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":223,"k":{"\u0133":13,"\u012b":-14,"\u0129":-18,"\u00ef":-11,"j":14,"i":13," ":7,"Y":-4,"\u00dd":-4,"\u0176":-4,"\u0178":-4,"V":-3,"W":-3,"\u0174":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"\u0101":22,"\u0103":22,"\u0105":22,"v":22,"w":22,"\u0175":22,"y":23,"\u00fd":23,"\u00ff":23,"\u0177":23,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0100":31,"\u0102":31,"\u0104":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"\u0107":27,"\u0109":27,"\u010b":27,"\u010d":27,"\u010f":27,"\u0111":27,"\u0113":27,"\u0115":27,"\u0117":27,"\u0119":27,"\u011b":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u0138":16,"\u0144":16,"\u0146":16,"\u0148":16,"\u014b":16,"\u0155":16,"\u0157":16,"\u0159":16,"\u0169":16,"\u016b":16,"\u016d":16,"\u016f":16,"\u0171":16,"\u0173":16,"J":18,"\u0134":18,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"\u00ab":11,"\u00bb":11,"\u2039":11,"\u203a":11,"M":4,"N":4,"\u014a":4,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u021b":{"d":"33,-66r0,-95r-23,0r0,-20r24,0r0,-50r24,0r0,50r45,0r0,20r-45,0r0,93v3,46,25,47,49,47r0,22v-35,1,-74,-2,-74,-67xm58,23r22,0v5,19,1,32,-6,49r-19,0v7,-19,10,-30,3,-49","w":120,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\u00ad":5,"\u2013":5,"\u2014":5,"\u2212":5,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u02c6":{"d":"42,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":169},"\u02c7":{"d":"72,-271r-30,-43r23,0v7,9,12,21,20,29r19,-29r23,0r-30,43r-25,0","w":170},"\u02d8":{"d":"125,-308v0,51,-82,51,-82,0r0,-6r19,0v-2,18,8,27,22,27v13,0,24,-9,22,-27r19,0r0,6","w":174},"\u02d9":{"d":"28,-283r0,-31r24,0r0,31r-24,0","w":80},"\u02da":{"d":"68,-267v-14,0,-27,-10,-27,-25v0,-15,13,-26,27,-26v14,0,26,11,26,26v0,15,-12,25,-26,25xm68,-280v7,0,12,-5,12,-12v0,-7,-5,-13,-12,-13v-7,0,-12,6,-12,13v0,7,5,12,12,12","w":135},"\u02db":{"d":"38,41v0,-28,33,-48,33,-48r19,4v0,0,-30,21,-30,39v0,16,23,18,23,18r-6,20v0,0,-39,-2,-39,-33","w":123},"\u02dc":{"d":"32,-272v0,-28,12,-42,34,-42v24,0,29,26,45,26v12,0,14,-16,14,-25r19,0v0,28,-11,42,-33,42v-24,0,-29,-25,-46,-25v-12,0,-14,15,-14,24r-19,0","w":177},"\u02dd":{"d":"86,-271r25,-43r27,0r-31,43r-21,0xm38,-271r24,-43r23,0r-24,43r-23,0","w":185},"\u1e9e":{"d":"12,0r0,-22v10,-1,24,3,24,-8r0,-156v0,-38,28,-67,67,-67r95,0r0,17r-66,94v47,-4,77,29,77,70v0,52,-45,80,-107,72r0,-22v46,5,81,-10,81,-50v0,-40,-34,-55,-80,-49r0,-18r65,-92v-51,-2,-107,-5,-107,45r0,164v2,26,-25,22,-49,22","w":223},"\u2013":{"d":"26,-92r0,-21r180,0r0,21r-180,0","w":231,"k":{"x":9,"X":4,"9":13,"7":25,"5":10,"3":14,"1":11,"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"\u021a":22,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"V":11,"W":11,"\u0174":11,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00c7":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"\u00d6":-5,"\u00d8":-5,"\u0106":-5,"\u0108":-5,"\u010a":-5,"\u010c":-5,"\u011c":-5,"\u011e":-5,"\u0120":-5,"\u0122":-5,"\u014c":-5,"\u014e":-5,"\u0150":-5,"\u0152":-5,"v":6,"w":6,"\u0175":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0177":6,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u00c4":6,"\u00c5":6,"\u00c6":6,"\u0100":6,"\u0102":6,"\u0104":6,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"S":9,"\u015a":9,"\u015c":9,"\u015e":9,"\u0160":9,"\u0218":9,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4}},"\u2014":{"d":"26,-92r0,-21r252,0r0,21r-252,0","w":303,"k":{"x":9,"X":4,"9":13,"7":25,"5":10,"3":14,"1":11,"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"\u021a":22,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"V":11,"W":11,"\u0174":11,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00c7":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"\u00d6":-5,"\u00d8":-5,"\u0106":-5,"\u0108":-5,"\u010a":-5,"\u010c":-5,"\u011c":-5,"\u011e":-5,"\u0120":-5,"\u0122":-5,"\u014c":-5,"\u014e":-5,"\u0150":-5,"\u0152":-5,"v":6,"w":6,"\u0175":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0177":6,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u00c4":6,"\u00c5":6,"\u00c6":6,"\u0100":6,"\u0102":6,"\u0104":6,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"S":9,"\u015a":9,"\u015c":9,"\u015e":9,"\u0160":9,"\u0218":9,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4}},"\u2018":{"d":"18,-194r21,-62r19,0r-14,62r-26,0","w":76,"k":{"X":-5,"8":10,"7":-8,"6":14,"4":32,"0":10,"T":-6,"\u0162":-6,"\u0164":-6,"\u0166":-6,"\u021a":-6,"Y":-6,"\u00dd":-6,"\u0176":-6,"\u0178":-6,"V":-6,"W":-6,"\u0174":-6,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"\u011c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"v":-3,"w":-3,"\u0175":-3,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":26,"c":26,"d":26,"e":26,"g":26,"o":26,"q":26,"\u00e7":26,"\u00e8":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f2":26,"\u00f3":26,"\u00f4":26,"\u00f5":26,"\u00f6":26,"\u00f8":26,"\u0107":26,"\u0109":26,"\u010b":26,"\u010d":26,"\u010f":26,"\u0111":26,"\u0113":26,"\u0115":26,"\u0117":26,"\u0119":26,"\u011b":26,"\u011d":26,"\u011f":26,"\u0121":26,"\u0123":26,"\u014d":26,"\u014f":26,"\u0151":26,"\u0153":26,"m":-4,"n":-4,"p":-4,"r":-4,"u":-4,"\u00f1":-4,"\u00f9":-4,"\u00fa":-4,"\u00fb":-4,"\u00fc":-4,"\u0138":-4,"\u0144":-4,"\u0146":-4,"\u0148":-4,"\u014b":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"\u0169":-4,"\u016b":-4,"\u016d":-4,"\u016f":-4,"\u0171":-4,"\u0173":-4,"J":22,"\u0134":22,"z":1,"\u017a":1,"\u017c":1,"\u017e":1,"b":-10,"h":-10,"k":-10,"l":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013c":-10,"\u013e":-10,"\u0140":-10,"M":11,"N":11,"\u014a":11,"s":16,"\u015b":16,"\u015d":16,"\u015f":16,"\u0161":16,"\u0219":16,"S":5,"\u015a":5,"\u015c":5,"\u015e":5,"\u0160":5,"\u0218":5,"Z":-4,"\u0179":-4,"\u017b":-4,"\u017d":-4}},"\u2019":{"d":"18,-195r14,-62r26,0r-20,62r-20,0","w":76,"k":{"X":-5,"8":10,"7":-8,"6":14,"4":32,"0":10,"T":-6,"\u0162":-6,"\u0164":-6,"\u0166":-6,"\u021a":-6,"Y":-6,"\u00dd":-6,"\u0176":-6,"\u0178":-6,"V":-6,"W":-6,"\u0174":-6,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"\u011c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"v":-3,"w":-3,"\u0175":-3,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":26,"c":26,"d":26,"e":26,"g":26,"o":26,"q":26,"\u00e7":26,"\u00e8":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f2":26,"\u00f3":26,"\u00f4":26,"\u00f5":26,"\u00f6":26,"\u00f8":26,"\u0107":26,"\u0109":26,"\u010b":26,"\u010d":26,"\u010f":26,"\u0111":26,"\u0113":26,"\u0115":26,"\u0117":26,"\u0119":26,"\u011b":26,"\u011d":26,"\u011f":26,"\u0121":26,"\u0123":26,"\u014d":26,"\u014f":26,"\u0151":26,"\u0153":26,"m":-4,"n":-4,"p":-4,"r":-4,"u":-4,"\u00f1":-4,"\u00f9":-4,"\u00fa":-4,"\u00fb":-4,"\u00fc":-4,"\u0138":-4,"\u0144":-4,"\u0146":-4,"\u0148":-4,"\u014b":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"\u0169":-4,"\u016b":-4,"\u016d":-4,"\u016f":-4,"\u0171":-4,"\u0173":-4,"J":22,"\u0134":22,"z":1,"\u017a":1,"\u017c":1,"\u017e":1,"b":-10,"h":-10,"k":-10,"l":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013c":-10,"\u013e":-10,"\u0140":-10,"M":11,"N":11,"\u014a":11,"s":16,"\u015b":16,"\u015d":16,"\u015f":16,"\u0161":16,"\u0219":16,"S":5,"\u015a":5,"\u015c":5,"\u015e":5,"\u0160":5,"\u0218":5,"Z":-4,"\u0179":-4,"\u017b":-4,"\u017d":-4}},"\u201a":{"d":"32,-30r26,0r-20,62r-20,0","w":76,"k":{"9":2,"7":7,"6":4,"4":6,"0":7,"T":25,"\u0162":25,"\u0164":25,"\u0166":25,"\u021a":25,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":25,"W":25,"\u0174":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"v":14,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":30,"\u2013":30,"\u2014":30,"\u2212":30,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u0109":5,"\u010b":5,"\u010d":5,"\u010f":5,"\u0111":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"J":-9,"\u0134":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u010e":7,"\u0112":7,"\u0114":7,"\u0116":7,"\u0118":7,"\u011a":7,"\u0124":7,"\u0126":7,"\u0136":7,"\u0139":7,"\u013b":7,"\u013d":7,"\u013f":7,"\u0141":7,"\u0154":7,"\u0156":7,"\u0158":7,"\u00ab":18,"\u00bb":18,"\u2039":18,"\u203a":18}},"\u201c":{"d":"61,-194r20,-62r19,0r-14,62r-25,0xm18,-194r21,-62r19,0r-14,62r-26,0","w":118,"k":{"X":-5,"8":10,"7":-8,"6":14,"4":32,"0":10,"T":-6,"\u0162":-6,"\u0164":-6,"\u0166":-6,"\u021a":-6,"Y":-6,"\u00dd":-6,"\u0176":-6,"\u0178":-6,"V":-6,"W":-6,"\u0174":-6,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"\u011c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"v":-3,"w":-3,"\u0175":-3,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":26,"c":26,"d":26,"e":26,"g":26,"o":26,"q":26,"\u00e7":26,"\u00e8":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f2":26,"\u00f3":26,"\u00f4":26,"\u00f5":26,"\u00f6":26,"\u00f8":26,"\u0107":26,"\u0109":26,"\u010b":26,"\u010d":26,"\u010f":26,"\u0111":26,"\u0113":26,"\u0115":26,"\u0117":26,"\u0119":26,"\u011b":26,"\u011d":26,"\u011f":26,"\u0121":26,"\u0123":26,"\u014d":26,"\u014f":26,"\u0151":26,"\u0153":26,"m":-4,"n":-4,"p":-4,"r":-4,"u":-4,"\u00f1":-4,"\u00f9":-4,"\u00fa":-4,"\u00fb":-4,"\u00fc":-4,"\u0138":-4,"\u0144":-4,"\u0146":-4,"\u0148":-4,"\u014b":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"\u0169":-4,"\u016b":-4,"\u016d":-4,"\u016f":-4,"\u0171":-4,"\u0173":-4,"J":22,"\u0134":22,"z":1,"\u017a":1,"\u017c":1,"\u017e":1,"b":-10,"h":-10,"k":-10,"l":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013c":-10,"\u013e":-10,"\u0140":-10,"M":11,"N":11,"\u014a":11,"s":16,"\u015b":16,"\u015d":16,"\u015f":16,"\u0161":16,"\u0219":16,"S":5,"\u015a":5,"\u015c":5,"\u015e":5,"\u0160":5,"\u0218":5,"Z":-4,"\u0179":-4,"\u017b":-4,"\u017d":-4}},"\u201d":{"d":"61,-195r14,-62r25,0r-20,62r-19,0xm18,-195r14,-62r26,0r-20,62r-20,0","w":118,"k":{"X":-5,"8":10,"7":-8,"6":14,"4":32,"0":10,"T":-6,"\u0162":-6,"\u0164":-6,"\u0166":-6,"\u021a":-6,"Y":-6,"\u00dd":-6,"\u0176":-6,"\u0178":-6,"V":-6,"W":-6,"\u0174":-6,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"\u011c":13,"\u011e":13,"\u0120":13,"\u0122":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"v":-3,"w":-3,"\u0175":-3,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":26,"c":26,"d":26,"e":26,"g":26,"o":26,"q":26,"\u00e7":26,"\u00e8":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f2":26,"\u00f3":26,"\u00f4":26,"\u00f5":26,"\u00f6":26,"\u00f8":26,"\u0107":26,"\u0109":26,"\u010b":26,"\u010d":26,"\u010f":26,"\u0111":26,"\u0113":26,"\u0115":26,"\u0117":26,"\u0119":26,"\u011b":26,"\u011d":26,"\u011f":26,"\u0121":26,"\u0123":26,"\u014d":26,"\u014f":26,"\u0151":26,"\u0153":26,"m":-4,"n":-4,"p":-4,"r":-4,"u":-4,"\u00f1":-4,"\u00f9":-4,"\u00fa":-4,"\u00fb":-4,"\u00fc":-4,"\u0138":-4,"\u0144":-4,"\u0146":-4,"\u0148":-4,"\u014b":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"\u0169":-4,"\u016b":-4,"\u016d":-4,"\u016f":-4,"\u0171":-4,"\u0173":-4,"J":22,"\u0134":22,"z":1,"\u017a":1,"\u017c":1,"\u017e":1,"b":-10,"h":-10,"k":-10,"l":-10,"\u0125":-10,"\u0137":-10,"\u013a":-10,"\u013c":-10,"\u013e":-10,"\u0140":-10,"M":11,"N":11,"\u014a":11,"s":16,"\u015b":16,"\u015d":16,"\u015f":16,"\u0161":16,"\u0219":16,"S":5,"\u015a":5,"\u015c":5,"\u015e":5,"\u0160":5,"\u0218":5,"Z":-4,"\u0179":-4,"\u017b":-4,"\u017d":-4}},"\u201e":{"d":"61,32r14,-62r25,0r-20,62r-19,0xm32,-30r26,0r-20,62r-20,0","w":118,"k":{"9":2,"7":7,"6":4,"4":6,"0":7,"T":25,"\u0162":25,"\u0164":25,"\u0166":25,"\u021a":25,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":25,"W":25,"\u0174":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"v":14,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":30,"\u2013":30,"\u2014":30,"\u2212":30,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u0109":5,"\u010b":5,"\u010d":5,"\u010f":5,"\u0111":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"J":-9,"\u0134":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u010e":7,"\u0112":7,"\u0114":7,"\u0116":7,"\u0118":7,"\u011a":7,"\u0124":7,"\u0126":7,"\u0136":7,"\u0139":7,"\u013b":7,"\u013d":7,"\u013f":7,"\u0141":7,"\u0154":7,"\u0156":7,"\u0158":7,"\u00ab":18,"\u00bb":18,"\u2039":18,"\u203a":18}},"\u2020":{"d":"53,18r0,-178r-43,0r0,-21r43,0r0,-72r24,0r0,72r43,0r0,21r-43,0r0,178r-24,0","w":130},"\u2021":{"d":"53,18r0,-82r-43,0r0,-21r43,0r0,-75r-43,0r0,-21r43,0r0,-72r24,0r0,72r43,0r0,21r-43,0r0,75r43,0r0,21r-43,0r0,82r-24,0","w":130},"\u2022":{"d":"79,-53v-28,0,-51,-24,-51,-52v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,52,-51,52","w":158},"\u2026":{"d":"218,0r0,-29r28,0r0,29r-28,0xm133,0r0,-29r28,0r0,29r-28,0xm49,0r0,-29r27,0r0,29r-27,0","w":294,"k":{"9":2,"7":7,"6":4,"4":6,"0":7,"T":25,"\u0162":25,"\u0164":25,"\u0166":25,"\u021a":25,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":25,"W":25,"\u0174":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"v":14,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":30,"\u2013":30,"\u2014":30,"\u2212":30,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u0109":5,"\u010b":5,"\u010d":5,"\u010f":5,"\u0111":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"J":-9,"\u0134":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u010e":7,"\u0112":7,"\u0114":7,"\u0116":7,"\u0118":7,"\u011a":7,"\u0124":7,"\u0126":7,"\u0136":7,"\u0139":7,"\u013b":7,"\u013d":7,"\u013f":7,"\u0141":7,"\u0154":7,"\u0156":7,"\u0158":7,"\u00ab":18,"\u00bb":18,"\u2039":18,"\u203a":18}},"\u2030":{"d":"73,-157v-28,0,-51,-22,-51,-50v0,-27,23,-50,51,-50v28,0,50,23,50,50v0,28,-22,50,-50,50xm24,0r193,-253r26,0r-193,253r-26,0xm73,-177v17,0,29,-13,29,-30v0,-16,-12,-30,-29,-30v-17,0,-29,14,-29,30v0,17,12,30,29,30xm265,-45v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,27,-23,49,-51,49v-28,0,-50,-22,-50,-49xm144,-45v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,27,-23,49,-51,49v-28,0,-50,-22,-50,-49xm287,-46v0,17,11,30,28,30v17,0,30,-13,30,-30v0,-16,-13,-30,-30,-30v-17,0,-28,14,-28,30xm166,-46v0,17,11,30,28,30v17,0,30,-13,30,-30v0,-16,-13,-30,-30,-30v-17,0,-28,14,-28,30","w":380},"\u2039":{"d":"73,-28r-59,-74r59,-74r26,0r-59,74r59,74r-26,0","w":123,"k":{"7":12,"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7}},"\u203a":{"d":"24,-28r59,-74r-59,-74r26,0r59,74r-59,74r-26,0","w":123,"k":{"7":12,"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7}},"\u2044":{"d":"10,0r107,-253r23,0r-107,253r-23,0","w":149},"\u20ac":{"d":"14,-96r0,-18r21,0v-1,-1,-1,-29,0,-29r-21,0r0,-19r24,0v15,-66,81,-108,154,-91r-6,23v-54,-15,-110,16,-121,68r109,0r-4,19r-109,0r-1,29r105,0r-3,18r-98,0v10,55,71,90,128,72r5,23v-72,19,-149,-24,-160,-95r-23,0","w":212},"\u2122":{"d":"151,-95r0,-19v4,-1,13,3,13,-3r10,-136r19,0r47,105v12,-35,32,-71,47,-105r18,0r11,136v0,6,9,2,13,3r0,19v0,0,-31,3,-33,-17r-8,-101r-40,88r-17,0r-41,-88v2,32,-6,68,-6,101v0,19,-15,17,-33,17xm72,-95r0,-139v-14,3,-43,-10,-38,14r-19,0v0,-17,-4,-33,17,-33r100,0v20,-3,17,16,17,33r-19,0v-1,-5,3,-14,-4,-14r-34,0r0,139r-20,0","w":351},"\u2212":{"d":"18,-92r0,-21r182,0r0,21r-182,0","w":218,"k":{"x":9,"X":4,"9":13,"7":25,"5":10,"3":14,"1":11,"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"\u021a":22,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"V":11,"W":11,"\u0174":11,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00c7":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"\u00d6":-5,"\u00d8":-5,"\u0106":-5,"\u0108":-5,"\u010a":-5,"\u010c":-5,"\u011c":-5,"\u011e":-5,"\u0120":-5,"\u0122":-5,"\u014c":-5,"\u014e":-5,"\u0150":-5,"\u0152":-5,"v":6,"w":6,"\u0175":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0177":6,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u00c4":6,"\u00c5":6,"\u00c6":6,"\u0100":6,"\u0102":6,"\u0104":6,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"S":9,"\u015a":9,"\u015c":9,"\u015e":9,"\u0160":9,"\u0218":9,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4}},"\u221e":{"d":"90,-63v-34,0,-62,-29,-62,-63v0,-35,28,-62,62,-62v35,0,62,27,62,62v0,34,-27,63,-62,63","w":179},"\u2248":{"d":"33,-116r-12,-15v12,-12,31,-25,52,-25v34,0,46,25,72,25v15,0,30,-10,40,-20r12,16v-12,12,-30,24,-52,24v-34,0,-46,-25,-72,-25v-15,0,-30,10,-40,20xm33,-53r-12,-16v12,-12,31,-25,52,-25v34,0,46,26,72,26v15,0,30,-11,40,-21r12,16v-12,12,-30,25,-52,25v-34,0,-46,-25,-72,-25v-15,0,-30,10,-40,20","w":218},"\u2260":{"d":"45,-30r23,-30r-43,0r0,-21r57,0r31,-42r-88,0r0,-21r103,0r31,-42r15,11r-24,31r43,0r0,21r-57,0r-31,42r88,0r0,21r-102,0r-31,41","w":218},"\u2264":{"d":"25,-93r0,-18r163,-73r0,24r-133,58r133,57r0,24xm25,37r163,0r0,21r-163,0r0,-21","w":218},"\u2265":{"d":"31,-21r0,-24r132,-58r-132,-57r0,-24r162,73r0,18xm31,37r162,0r0,21r-162,0r0,-21","w":218}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Trademark:
 * Museo is a trademark of Jos Buivenga/exljbris.
 * 
 * Full name:
 * Museo-500
 * 
 * Description:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Manufacturer:
 * Jos Buivenga
 * 
 * Designer:
 * Jos Buivenga
 * 
 * Vendor URL:
 * http://www.josbuivenga.demon.nl
 */
Cufon.registerFont({"w":195,"face":{"font-family":"Museo 500","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-19 -321 388 76","underline-thickness":"18","underline-position":"-18","stemh":"31","stemv":"35","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":96,"k":{"\u2026":18,"\u201e":18,"\u201d":25,"\u201c":25,"\u201a":18,"\u2019":25,"\u2018":25,"\u021a":7,"\u0178":13,"\u0176":13,"\u0174":8,"\u0166":7,"\u0164":7,"\u0162":7,"\u00dd":13,"Y":13,"W":8,"V":8,"T":7,".":18,",":18}},"\ufb00":{"d":"31,0r0,-154r-23,0r0,-28r23,0v1,-67,43,-79,82,-73r0,30v-22,-5,-48,3,-47,43r78,0v1,-67,44,-79,82,-73r0,30v-22,-5,-48,3,-47,43r43,0r0,28r-43,0r0,154r-35,0r0,-154r-78,0r0,154r-35,0","w":230,"k":{"\u0129":-5,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-16,"\u2019":-16,"\u201c":-16,"\u201d":-16,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"\u201a":18,"\u201e":18,"\u2026":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"\u0107":8,"\u0109":8,"\u010b":8,"\u010d":8,"\u010f":8,"\u0111":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"\u011b":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":3,"\u015b":3,"\u015d":3,"\u015f":3,"\u0161":3,"\u0219":3}},"\ufb01":{"d":"31,0r0,-154r-23,0r0,-28r23,0v1,-67,43,-79,82,-73r0,30v-22,-5,-48,3,-47,43r91,0v16,0,23,7,23,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23r0,-123v0,-5,-2,-8,-7,-8r-72,0r0,154r-35,0xm146,-218r0,-36r32,0r0,36r-32,0","w":212,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\ufb02":{"d":"31,-182v5,-89,58,-70,124,-72v16,0,23,7,23,23r0,193v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23r0,-193v-1,-15,-26,-6,-39,-8v-15,-2,-41,7,-38,42r43,0r0,28r-43,0r0,154r-35,0r0,-154r-23,0r0,-28r23,0","w":209},"\ufb03":{"d":"31,0r0,-154r-23,0r0,-28r23,0v1,-67,43,-79,82,-73r0,30v-22,-5,-48,3,-47,43r78,0v1,-67,44,-79,82,-73r0,30v-22,-5,-48,3,-47,43r92,0v16,0,23,7,23,23r0,121v0,10,12,8,22,8r0,30v-26,-1,-57,7,-57,-23r0,-123v0,-5,-3,-8,-8,-8r-72,0r0,154r-35,0r0,-154r-78,0r0,154r-35,0xm260,-218r0,-36r31,0r0,36r-31,0","w":325,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\ufb04":{"d":"144,-182v5,-89,58,-70,124,-72v16,0,23,7,23,23r0,193v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23r0,-193v-1,-15,-26,-6,-39,-8v-15,-2,-41,7,-38,42r43,0r0,28r-43,0r0,154r-35,0r0,-154r-78,0r0,154r-35,0r0,-154r-23,0r0,-28r23,0v0,-66,43,-79,82,-73r0,30v-23,-5,-49,4,-47,43r78,0","w":322},"\u00a0":{"w":96},"!":{"d":"41,-70r-2,-184r36,0r-3,184r-31,0xm39,0r0,-35r36,0r0,35r-36,0","w":113},"\"":{"d":"73,-191r0,-67r27,0r0,67r-27,0xm22,-191r0,-67r28,0r0,67r-28,0","w":122,"k":{"X":-7,"4":18,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"Y":-7,"\u00dd":-7,"\u0176":-7,"\u0178":-7,"V":-7,"W":-7,"\u0174":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"J":25,"\u0134":25,"M":8,"N":8,"\u014a":8,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"Z":-5,"\u0179":-5,"\u017b":-5,"\u017d":-5}},"#":{"d":"48,0r12,-69r-47,0r5,-26r47,0r10,-61r-46,0r4,-26r47,0r13,-72r29,0r-13,72r56,0r12,-72r30,0r-13,72r47,0r-4,26r-47,0r-11,61r47,0r-5,26r-46,0r-13,69r-29,0r12,-69r-56,0r-12,69r-29,0xm94,-95r56,0r11,-61r-56,0","w":254},"$":{"d":"15,-45r26,-21v0,0,20,38,61,38v26,0,44,-16,44,-38v0,-54,-123,-45,-123,-127v0,-33,27,-59,66,-64r0,-34r27,0r0,33v33,3,67,20,59,67r-33,0v4,-25,-13,-35,-38,-35v-27,0,-44,15,-44,33v0,53,122,40,122,126v0,35,-25,65,-66,70r0,34r-27,0r0,-33v-51,-6,-74,-49,-74,-49","w":196,"k":{"7":7}},"%":{"d":"76,-152v-30,0,-55,-23,-55,-53v0,-29,25,-53,55,-53v30,0,54,24,54,53v0,30,-24,53,-54,53xm27,0r194,-254r34,0r-195,254r-33,0xm76,-179v15,0,26,-11,26,-26v0,-15,-11,-27,-26,-27v-15,0,-27,12,-27,27v0,15,12,26,27,26xm152,-49v0,-29,23,-53,54,-53v30,0,55,24,55,53v0,30,-25,53,-55,53v-31,0,-54,-23,-54,-53xm180,-49v0,15,11,27,26,27v15,0,27,-12,27,-27v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27","w":281},"&":{"d":"104,4v-89,0,-121,-111,-44,-140v1,-3,-30,-11,-33,-57v-3,-50,58,-74,108,-62r-9,29v-27,-10,-63,7,-63,37v0,16,8,40,47,40r46,0r0,-33r34,0r0,33r32,0r0,31r-32,0v7,74,-21,122,-86,122xm52,-73v0,24,20,45,52,45v43,0,57,-39,52,-90v-50,-3,-104,0,-104,45","w":229},"'":{"d":"22,-191r0,-67r28,0r0,67r-28,0","w":72,"k":{"X":-7,"4":18,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"Y":-7,"\u00dd":-7,"\u0176":-7,"\u0178":-7,"V":-7,"W":-7,"\u0174":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u0100":32,"\u0102":32,"\u0104":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"J":25,"\u0134":25,"M":8,"N":8,"\u014a":8,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"Z":-5,"\u0179":-5,"\u017b":-5,"\u017d":-5}},"(":{"d":"72,34v-54,-83,-57,-216,-1,-299r30,0v-55,92,-50,206,2,299r-31,0","w":118,"k":{"\u0135":-7,"j":-7,"4":14}},")":{"d":"16,34v52,-93,57,-207,2,-299r30,0v56,83,53,216,-1,299r-31,0","w":118},"*":{"d":"58,-118r-26,-19r32,-40r-49,-14r9,-30r48,18r-2,-51r33,0r-3,51r48,-18r10,30r-50,14r32,40r-26,19v-10,-14,-17,-30,-28,-43","w":172},"+":{"d":"15,-89r0,-28r81,0r0,-88r29,0r0,88r81,0r0,28r-81,0r0,89r-29,0r0,-89r-81,0","w":220,"k":{"7":6}},",":{"d":"30,-38r36,0r-31,74r-27,0","w":86,"k":{"9":2,"7":6,"6":4,"4":5,"0":7,"T":25,"\u0162":25,"\u0164":25,"\u0166":25,"\u021a":25,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":25,"W":25,"\u0174":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"v":14,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":28,"\u2013":28,"\u2014":28,"\u2212":28,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u0109":5,"\u010b":5,"\u010d":5,"\u010f":5,"\u0111":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"J":-9,"\u0134":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u010e":7,"\u0112":7,"\u0114":7,"\u0116":7,"\u0118":7,"\u011a":7,"\u0124":7,"\u0126":7,"\u0136":7,"\u0139":7,"\u013b":7,"\u013d":7,"\u013f":7,"\u0141":7,"\u0154":7,"\u0156":7,"\u0158":7,"\u00ab":18,"\u00bb":18,"\u2039":18,"\u203a":18}},"-":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155,"k":{"x":8,"X":4,"9":12,"7":23,"5":9,"3":14,"1":11}},"\u00ad":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155,"k":{"T":22,"\u0162":22,"\u0164":22,"\u0166":22,"\u021a":22,"Y":22,"\u00dd":22,"\u0176":22,"\u0178":22,"V":11,"W":11,"\u0174":11,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00c7":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"\u00d6":-5,"\u00d8":-5,"\u0106":-5,"\u0108":-5,"\u010a":-5,"\u010c":-5,"\u011c":-5,"\u011e":-5,"\u0120":-5,"\u0122":-5,"\u014c":-5,"\u014e":-5,"\u0150":-5,"\u0152":-5,"v":6,"w":6,"\u0175":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0177":6,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8,"Z":4,"\u0179":4,"\u017b":4,"\u017d":4}},".":{"d":"25,0r0,-37r36,0r0,37r-36,0","w":86,"k":{"9":2,"7":6,"6":4,"4":5,"0":7,"T":25,"\u0162":25,"\u0164":25,"\u0166":25,"\u021a":25,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":25,"W":25,"\u0174":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"v":14,"w":14,"\u0175":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":28,"\u2013":28,"\u2014":28,"\u2212":28,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"\u0107":5,"\u0109":5,"\u010b":5,"\u010d":5,"\u010f":5,"\u0111":5,"\u0113":5,"\u0115":5,"\u0117":5,"\u0119":5,"\u011b":5,"\u011d":5,"\u011f":5,"\u0121":5,"\u0123":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u0153":5,"J":-9,"\u0134":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u010e":7,"\u0112":7,"\u0114":7,"\u0116":7,"\u0118":7,"\u011a":7,"\u0124":7,"\u0126":7,"\u0136":7,"\u0139":7,"\u013b":7,"\u013d":7,"\u013f":7,"\u0141":7,"\u0154":7,"\u0156":7,"\u0158":7,"\u00ab":18,"\u00bb":18,"\u2039":18,"\u203a":18}},"\/":{"d":"0,15r92,-283r31,0r-92,283r-31,0","w":124,"k":{"7":-5}},"0":{"d":"109,4v-68,0,-90,-58,-90,-131v0,-73,22,-131,90,-131v68,0,90,58,90,131v0,73,-22,131,-90,131xm109,-28v41,0,54,-44,54,-99v0,-55,-13,-99,-54,-99v-42,0,-53,44,-53,99v0,55,11,99,53,99","w":218,"k":{"\u2026":14,"\u201e":14,"\u201a":14,".":14,",":14,"\u00b0":4,"8":4,"7":9,"3":3,"2":4,"1":5}},"1":{"d":"23,0r0,-31r56,0r-1,-180v-3,8,-26,30,-35,38r-22,-22r61,-59r33,0r0,223r55,0r0,31r-147,0","w":181,"k":{"\u2212":18,"\u201d":18,"\u201c":18,"\u2019":18,"\u2018":18,"\u2014":18,"\u2013":18,"-":18,"'":22,"\"":22,"\u2030":9,"\u00b0":25,"9":4,"8":3,"7":4,"6":4,"5":3,"4":6,"3":1,"0":5,"\/":-9,"%":9}},"2":{"d":"14,-29v0,-94,129,-87,129,-156v0,-23,-18,-40,-45,-40v-28,0,-42,10,-39,35r-33,0v-10,-51,35,-67,74,-68v46,0,80,29,80,73v0,87,-129,88,-129,147v0,5,3,7,9,7r90,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-130,0v-20,0,-24,-8,-24,-29","w":206,"k":{"\u2212":8,"\u2014":8,"\u2013":8,"-":8,"9":6,"7":1,"4":7,"0":2}},"3":{"d":"9,-31r20,-27v0,0,25,28,64,28v27,0,51,-19,51,-46v-1,-34,-33,-49,-73,-45r-8,-19r68,-84v-13,1,-53,1,-71,1v-11,0,-6,15,-7,24r-34,0v1,-25,-7,-55,22,-55r134,0r0,23r-67,80v33,4,72,26,72,75v0,42,-34,80,-87,80v-53,0,-84,-35,-84,-35","w":194,"k":{"9":2,"7":2}},"4":{"d":"6,-67r0,-23r115,-164r41,0r0,156r39,0r0,31r-39,0r0,67r-36,0r0,-67r-120,0xm126,-98r1,-114v-21,37,-57,81,-82,115v18,-2,58,-1,81,-1","w":207,"k":{"\u2026":4,"\u201e":4,"\u201d":7,"\u201c":7,"\u201a":4,"\u2019":7,"\u2018":7,".":4,",":4,"\u00b0":7,"9":4,"4":-11,"2":-7,"1":3}},"5":{"d":"18,-31r20,-27v0,0,20,28,59,28v32,0,55,-22,55,-50v0,-32,-28,-52,-61,-52v-44,1,-43,22,-63,6r11,-105v3,-43,73,-17,111,-23v29,-4,23,29,23,55r-33,0v-1,-10,3,-25,-8,-24v-20,3,-54,-9,-61,8v-1,19,-7,42,-6,59v0,0,14,-7,33,-7v55,0,91,37,91,83v0,45,-37,84,-92,84v-53,0,-79,-35,-79,-35","w":209,"k":{"\u2026":5,"\u201e":5,"\u201a":5,".":5,",":5,"\u00b0":7,"9":1,"7":6,"5":3,"3":3,"2":2,"1":7,"0":3}},"6":{"d":"109,4v-54,0,-95,-46,-95,-117v0,-66,35,-145,114,-145v30,0,49,10,49,10r-11,31v0,0,-16,-9,-36,-9v-45,-1,-75,45,-76,87v41,-51,136,-14,136,58v0,50,-33,85,-81,85xm51,-98v0,32,25,70,57,70v30,0,47,-23,47,-53v0,-31,-19,-52,-52,-52v-28,0,-52,17,-52,35","w":204,"k":{"\u2212":5,"\u2014":5,"\u2013":5,"-":5,"9":4,"7":3,"5":2,"3":2,"0":3}},"7":{"d":"23,0r122,-224v-24,2,-67,1,-95,1v-11,0,-7,14,-8,24r-33,0v1,-25,-7,-55,22,-55r155,0r0,24r-123,230r-40,0","w":189,"k":{"\u2212":19,"\u203a":6,"\u2039":6,"\u2026":43,"\u201e":43,"\u201d":-13,"\u201c":-13,"\u201a":43,"\u2019":-13,"\u2018":-13,"\u2014":19,"\u2013":19,"\u00bb":6,"\u00ab":6,">":14,"=":14,"<":14,";":5,":":5,".":43,"-":19,",":43,"+":14,"\u00b0":-11,"?":-6,"9":3,"8":3,"7":-2,"5":1,"4":21,"2":3,"1":1,"0":7,"\/":22}},"8":{"d":"15,-73v0,-44,43,-63,42,-66v0,0,-31,-16,-31,-51v0,-35,28,-68,79,-68v49,0,79,28,79,68v0,37,-30,61,-30,61v69,34,36,133,-50,133v-48,0,-89,-30,-89,-77xm61,-190v-1,27,35,38,61,46v9,0,27,-21,27,-44v0,-23,-18,-38,-44,-38v-28,0,-44,16,-44,36xm155,-71v0,-29,-45,-43,-69,-51v-9,0,-35,20,-35,47v0,28,25,47,53,47v27,0,51,-18,51,-43","w":207,"k":{"9":3,"7":4,"4":-1,"0":4}},"9":{"d":"27,-6r11,-31v0,0,17,9,37,9v45,1,74,-46,75,-88v-41,53,-136,14,-136,-58v0,-50,33,-84,81,-84v54,0,95,46,95,117v0,66,-35,145,-114,145v-30,0,-49,-10,-49,-10xm101,-121v28,0,52,-18,52,-36v0,-33,-25,-69,-57,-69v-30,0,-47,22,-47,52v0,30,19,53,52,53","w":204,"k":{"\u2026":14,"\u201e":14,"\u201a":14,".":14,",":14,"8":2,"7":5,"3":2,"2":2,"1":1,"0":2}},":":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm35,0r0,-37r36,0r0,37r-36,0","w":105},";":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm16,36r19,-74r34,0r-26,74r-27,0","w":105},"<":{"d":"24,-91r0,-23r168,-75r0,32r-129,55r129,54r0,32","w":220,"k":{"7":6}},"=":{"d":"24,-122r0,-28r172,0r0,28r-172,0xm24,-54r0,-28r172,0r0,28r-172,0","w":220,"k":{"7":6}},">":{"d":"27,-16r0,-32r128,-55r-128,-54r0,-32r167,75r0,23","w":220,"k":{"7":6}},"?":{"d":"54,-70v-10,-68,59,-77,61,-121v0,-20,-17,-35,-41,-35v-23,0,-41,15,-41,15r-20,-25v0,0,24,-23,63,-23v41,0,76,26,76,66v-1,66,-73,61,-64,123r-34,0xm53,0r0,-35r36,0r0,35r-36,0","w":163},"@":{"d":"14,-87v0,-74,59,-133,132,-133v116,1,91,79,93,175r26,0r0,26r-98,0v-45,0,-74,-32,-74,-68v-1,-49,50,-75,113,-67v-1,-21,-21,-37,-58,-37v-56,0,-99,48,-99,104v0,57,42,104,103,104r0,28v-81,0,-138,-59,-138,-132xm128,-87v0,37,36,47,78,42r0,-85v-42,-4,-79,5,-78,43","w":274},"A":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113","w":239,"k":{"X":3}},"B":{"d":"37,-23r0,-200r-24,0r0,-31v80,1,183,-16,183,65v0,29,-17,45,-32,55v27,8,42,34,42,62v-1,72,-71,76,-146,72v-16,0,-23,-7,-23,-23xm73,-147v42,2,86,3,86,-39v0,-41,-45,-38,-86,-37r0,76xm73,-39v4,16,36,8,53,8v27,0,43,-17,43,-43v2,-47,-48,-46,-96,-44r0,79","w":222,"k":{"\u201d":6,"\u201c":6,"\u2019":6,"\u2018":6,"\u021a":7,"\u0178":9,"\u0176":9,"\u0175":2,"\u0174":4,"\u0166":7,"\u0164":7,"\u0162":7,"\u00dd":9,"w":2,"v":2,"Y":9,"W":4,"V":4,"T":7,"'":2,"\"":2}},"C":{"d":"12,-129v0,-73,55,-129,128,-129v42,1,108,16,95,79r-33,0v7,-37,-30,-46,-62,-46v-51,0,-90,39,-90,96v0,55,39,99,91,99v50,0,81,-34,81,-34r19,26v0,0,-36,42,-100,42v-76,0,-129,-58,-129,-133","w":252,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-8,"]":-8,"|":-8,"}":-8}},"D":{"d":"37,-23r0,-200r-23,0r0,-31r103,0v77,0,128,47,128,127v0,103,-75,127,-185,127v-16,0,-23,-7,-23,-23xm73,-39v1,15,27,8,41,8v57,0,94,-33,94,-96v-1,-78,-54,-103,-135,-96r0,184","w":257,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"E":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23","w":204,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"F":{"d":"37,0r0,-223r-23,0r0,-31r140,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-63,0r0,83r87,0r0,31r-87,0r0,109r-36,0","w":184,"k":{"\u2026":36,"\u201e":36,"\u201d":-9,"\u201c":-9,"\u201a":36,"\u2019":-9,"\u2018":-9,"\u0153":2,"\u0152":4,"\u0151":2,"\u0150":4,"\u014f":2,"\u014e":4,"\u014d":2,"\u014c":4,"\u014a":3,"\u0134":6,"\u0123":2,"\u0122":4,"\u0121":2,"\u0120":4,"\u011f":2,"\u011e":4,"\u011d":2,"\u011c":4,"\u011b":2,"\u0119":2,"\u0117":2,"\u0115":2,"\u0113":2,"\u0111":2,"\u010f":2,"\u010d":2,"\u010c":4,"\u010b":2,"\u010a":4,"\u0109":2,"\u0108":4,"\u0107":2,"\u0106":4,"\u0105":5,"\u0104":17,"\u0103":5,"\u0102":17,"\u0101":5,"\u0100":17,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":17,"\u00c5":17,"\u00c4":17,"\u00c3":17,"\u00c2":17,"\u00c1":17,"\u00c0":17,"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"a":5,"Q":4,"O":4,"N":3,"M":3,"J":6,"G":4,"C":4,"A":17,"@":2,".":36,",":36,"'":-7,"\"":-7}},"G":{"d":"13,-128v0,-73,55,-130,128,-130v61,0,90,31,90,31r-20,26v0,0,-28,-24,-70,-24v-51,0,-91,40,-91,97v0,59,41,98,92,98v45,0,73,-31,73,-31v0,-19,5,-40,-24,-34r0,-31v26,1,57,-7,57,23r0,103r-32,0r0,-27v0,0,-29,31,-80,31v-68,0,-123,-53,-123,-132","w":264,"k":{"T":6,"\u0162":6,"\u0164":6,"\u0166":6,"\u021a":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"\u0168":3,"\u016a":3,"\u016c":3,"\u016e":3,"\u0170":3,"\u0172":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u0101":-3,"\u0103":-3,"\u0105":-3,"\u00ad":-7,"\u2013":-7,"\u2014":-7,"\u2212":-7,"\"":2,"'":2,"\u2018":7,"\u2019":7,"\u201c":7,"\u201d":7,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"\u0107":-3,"\u0109":-3,"\u010b":-3,"\u010d":-3,"\u010f":-3,"\u0111":-3,"\u0113":-3,"\u0115":-3,"\u0117":-3,"\u0119":-3,"\u011b":-3,"\u011d":-3,"\u011f":-3,"\u0121":-3,"\u0123":-3,"\u014d":-3,"\u014f":-3,"\u0151":-3,"\u0153":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2,"\u010e":2,"\u0112":2,"\u0114":2,"\u0116":2,"\u0118":2,"\u011a":2,"\u0124":2,"\u0126":2,"\u0136":2,"\u0139":2,"\u013b":2,"\u013d":2,"\u013f":2,"\u0141":2,"\u0154":2,"\u0156":2,"\u0158":2}},"H":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,89r129,0r0,-89v-3,-31,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-36,0r0,-112r-129,0r0,112r-36,0","w":275,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"I":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0","w":114},"J":{"d":"84,4v-41,0,-81,-29,-76,-90r36,0v-3,38,17,56,40,56v20,0,39,-12,39,-45r0,-140v0,-5,-2,-8,-7,-8r-63,0r0,-31r83,0v16,0,23,7,23,23r0,158v0,55,-38,77,-75,77","w":187,"k":{"\u2018":5,"\u2019":5,"\u201c":5,"\u201d":5,",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0100":4,"\u0102":4,"\u0104":4,":":6,";":6}},"K":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,84v18,-1,38,4,45,-9r57,-98r40,0v-25,39,-47,88,-76,122v18,16,38,65,53,93v4,10,12,8,24,8r0,31v-27,0,-44,3,-55,-19r-44,-88v-6,-14,-26,-9,-44,-10r0,117r-36,0","w":219,"k":{"x":2,"C":8,"G":8,"O":8,"Q":8,"\u00c7":8,"\u00d2":8,"\u00d3":8,"\u00d4":8,"\u00d5":8,"\u00d6":8,"\u00d8":8,"\u0106":8,"\u0108":8,"\u010a":8,"\u010c":8,"\u011c":8,"\u011e":8,"\u0120":8,"\u0122":8,"\u014c":8,"\u014e":8,"\u0150":8,"\u0152":8,"v":11,"w":11,"\u0175":11,"y":7,"\u00fd":7,"\u00ff":7,"\u0177":7,"\u00ad":13,"\u2013":13,"\u2014":13,"\u2212":13,"\u2018":1,"\u2019":1,"\u201c":1,"\u201d":1,")":-9,"]":-9,"|":-9,"}":-9,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,":":-11,";":-11,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"\u00ab":3,"\u00bb":3,"\u2039":3,"\u203a":3}},"L":{"d":"37,-23r0,-192v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,192v0,5,3,8,8,8r70,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-109,0v-16,0,-23,-7,-23,-23","k":{"*":27,"T":36,"\u0162":36,"\u0164":36,"\u0166":36,"\u021a":36,"Y":29,"\u00dd":29,"\u0176":29,"\u0178":29,"V":14,"W":14,"\u0174":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u0168":13,"\u016a":13,"\u016c":13,"\u016e":13,"\u0170":13,"\u0172":13,"v":17,"w":17,"\u0175":17,"y":14,"\u00fd":14,"\u00ff":14,"\u0177":14,"\u00ad":9,"\u2013":9,"\u2014":9,"\u2212":9,"\"":29,"'":29,"\u2018":22,"\u2019":22,"\u201c":22,"\u201d":22,",":-4,".":-4,"\u201a":-4,"\u201e":-4,"\u2026":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u0138":2,"\u0144":2,"\u0146":2,"\u0148":2,"\u014b":2,"\u0155":2,"\u0157":2,"\u0159":2,"\u0169":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"\u010e":11,"\u0112":11,"\u0114":11,"\u0116":11,"\u0118":11,"\u011a":11,"\u0124":11,"\u0126":11,"\u0136":11,"\u0139":11,"\u013b":11,"\u013d":11,"\u013f":11,"\u0141":11,"\u0154":11,"\u0156":11,"\u0158":11,"b":5,"h":5,"k":5,"l":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013c":5,"\u013e":5,"\u0140":5}},"M":{"d":"7,0r0,-31v9,0,19,2,20,-8r18,-215r37,0r73,167v18,-52,50,-116,72,-167r37,0r18,215v-1,10,10,8,19,8r0,31v-26,-1,-53,6,-55,-23r-12,-172v-13,46,-45,105,-64,149r-31,0r-51,-111v-7,-13,-12,-39,-15,-38v1,52,-10,119,-10,172v0,29,-30,23,-56,23","w":308,"k":{"\u201d":10,"\u201c":10,"\u2019":10,"\u2018":10,"\u021a":6,"\u0173":-1,"\u0171":-1,"\u016f":-1,"\u016d":-1,"\u016b":-1,"\u0169":-1,"\u0166":6,"\u0164":6,"\u0162":6,"\u0159":-1,"\u0157":-1,"\u0155":-1,"\u014b":-1,"\u0148":-1,"\u0146":-1,"\u0144":-1,"\u0138":-1,"\u00fc":-1,"\u00fb":-1,"\u00fa":-1,"\u00f9":-1,"\u00f1":-1,"u":-1,"r":-1,"p":-1,"n":-1,"m":-1,"T":6,"'":11,"\"":11}},"N":{"d":"14,0r0,-31v10,0,23,3,23,-8r0,-215r33,0r113,161v8,11,13,24,22,34v-6,-46,-1,-119,-3,-172v-1,-30,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-32,0r-113,-161v-8,-11,-13,-24,-22,-34v4,47,0,119,2,172v1,30,-33,22,-59,23","w":275,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"O":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"P":{"d":"37,0r0,-223r-23,0r0,-31r112,0v46,0,79,31,79,79v0,69,-57,89,-132,81r0,94r-36,0xm73,-125v51,3,95,1,95,-50v0,-50,-45,-50,-95,-48r0,98","w":213,"k":{"\u2026":38,"\u201e":38,"\u201a":38,"\u0219":4,"\u017e":2,"\u017c":2,"\u017a":2,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u014a":3,"\u0134":6,"\u0123":7,"\u0121":7,"\u011f":7,"\u011d":7,"\u011b":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u0111":7,"\u010f":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0105":7,"\u0104":21,"\u0103":7,"\u0102":21,"\u0101":7,"\u0100":21,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00c6":21,"\u00c5":21,"\u00c4":21,"\u00c3":21,"\u00c2":21,"\u00c1":21,"\u00c0":21,"z":2,"s":4,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,"N":3,"M":3,"J":6,"A":21,"@":7,".":38,",":38,"'":-2,"\"":-2}},"Q":{"d":"12,-129v0,-73,57,-129,130,-129v110,0,170,133,101,213r30,28r-22,23r-29,-29v-82,67,-210,1,-210,-106xm50,-129v0,56,40,99,92,99v33,0,54,-17,54,-17r-28,-28r21,-23r28,29v46,-60,3,-156,-75,-156v-52,0,-92,41,-92,96","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"R":{"d":"37,0r0,-223r-23,0r0,-31r111,0v45,0,76,28,76,74v0,42,-28,64,-46,68v17,15,29,51,41,73v4,10,12,8,23,8r0,31v-26,0,-42,2,-53,-19r-35,-68v-7,-21,-34,-12,-58,-14r0,101r-36,0xm73,-132v47,2,90,2,90,-46v0,-48,-43,-47,-90,-45r0,91","w":222,"k":{"T":8,"\u0162":8,"\u0164":8,"\u0166":8,"\u021a":8,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"V":2,"W":2,"\u0174":2,"C":1,"G":1,"O":1,"Q":1,"\u00c7":1,"\u00d2":1,"\u00d3":1,"\u00d4":1,"\u00d5":1,"\u00d6":1,"\u00d8":1,"\u0106":1,"\u0108":1,"\u010a":1,"\u010c":1,"\u011c":1,"\u011e":1,"\u0120":1,"\u0122":1,"\u014c":1,"\u014e":1,"\u0150":1,"\u0152":1,"\u2018":6,"\u2019":6,"\u201c":6,"\u201d":6,",":-7,".":-7,"\u201a":-7,"\u201e":-7,"\u2026":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"S":{"d":"12,-33r21,-26v0,0,26,31,64,31v24,0,44,-15,44,-38v0,-53,-123,-45,-123,-124v0,-38,33,-68,81,-68v34,0,84,15,73,67r-33,0v4,-26,-15,-35,-40,-35v-27,0,-44,15,-44,34v0,51,122,40,122,124v0,39,-31,72,-81,72v-54,0,-84,-37,-84,-37","w":191,"k":{"\u00ad":-3,"\u2013":-3,"\u2014":-3,"\u2212":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u0138":-2,"\u0144":-2,"\u0146":-2,"\u0148":-2,"\u014b":-2,"\u0155":-2,"\u0157":-2,"\u0159":-2,"\u0169":-2,"\u016b":-2,"\u016d":-2,"\u016f":-2,"\u0171":-2,"\u0173":-2,"z":2,"\u017a":2,"\u017c":2,"\u017e":2}},"T":{"d":"96,0r0,-223v-23,5,-67,-16,-59,24r-32,0v1,-25,-8,-55,22,-55r175,0v30,-4,21,30,22,55r-32,0v-1,-10,3,-24,-8,-24r-52,0r0,223r-36,0","w":228,"k":{"\u0133":12,"\u012b":-14,"\u0129":-18,"\u00ef":-11,"j":14,"i":12," ":7,"Y":-4,"\u00dd":-4,"\u0176":-4,"\u0178":-4,"V":-3,"W":-3,"\u0174":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u0106":7,"\u0108":7,"\u010a":7,"\u010c":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"\u0101":22,"\u0103":22,"\u0105":22,"v":22,"w":22,"\u0175":22,"y":23,"\u00fd":23,"\u00ff":23,"\u0177":23,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0100":31,"\u0102":31,"\u0104":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"\u0107":27,"\u0109":27,"\u010b":27,"\u010d":27,"\u010f":27,"\u0111":27,"\u0113":27,"\u0115":27,"\u0117":27,"\u0119":27,"\u011b":27,"\u011d":27,"\u011f":27,"\u0121":27,"\u0123":27,"\u014d":27,"\u014f":27,"\u0151":27,"\u0153":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u0138":16,"\u0144":16,"\u0146":16,"\u0148":16,"\u014b":16,"\u0155":16,"\u0157":16,"\u0159":16,"\u0169":16,"\u016b":16,"\u016d":16,"\u016f":16,"\u0171":16,"\u0173":16,"J":18,"\u0134":18,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"\u00ab":11,"\u00bb":11,"\u2039":11,"\u203a":11,"M":4,"N":4,"\u014a":4,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"U":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93","w":262,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"V":{"d":"101,0r-80,-215v-2,-8,-8,-8,-17,-8r0,-31v26,0,42,-2,50,21r56,156v6,14,8,36,11,35v15,-63,46,-130,65,-191v7,-24,24,-21,50,-21r0,31v-9,0,-15,0,-17,8r-80,215r-38,0","w":240,"k":{" ":8,"T":-3,"\u0162":-3,"\u0164":-3,"\u0166":-3,"\u021a":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":-7,"'":-7,"\u2018":-2,"\u2019":-2,"\u201c":-2,"\u201d":-2,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0100":12,"\u0102":12,"\u0104":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u0107":19,"\u0109":19,"\u010b":19,"\u010d":19,"\u010f":19,"\u0111":19,"\u0113":19,"\u0115":19,"\u0117":19,"\u0119":19,"\u011b":19,"\u011d":19,"\u011f":19,"\u0121":19,"\u0123":19,"\u014d":19,"\u014f":19,"\u0151":19,"\u0153":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u0138":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"\u0159":7,"\u0169":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"J":11,"\u0134":11,"M":2,"N":2,"\u014a":2,"S":2,"\u015a":2,"\u015c":2,"\u015e":2,"\u0160":2,"\u0218":2}},"W":{"d":"80,0r-56,-215v-3,-8,-9,-8,-18,-8r0,-31v26,0,46,-3,52,21r45,190r57,-210r33,0r53,210r45,-190v4,-24,25,-21,51,-21r0,31v-9,0,-15,0,-17,8r-56,215r-42,0r-51,-195r-54,195r-42,0","w":348,"k":{" ":8,"T":-3,"\u0162":-3,"\u0164":-3,"\u0166":-3,"\u021a":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"\u0106":4,"\u0108":4,"\u010a":4,"\u010c":4,"\u011c":4,"\u011e":4,"\u0120":4,"\u0122":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u0152":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u0101":17,"\u0103":17,"\u0105":17,"\u00ad":11,"\u2013":11,"\u2014":11,"\u2212":11,"\"":-7,"'":-7,"\u2018":-2,"\u2019":-2,"\u201c":-2,"\u201d":-2,",":25,".":25,"\u201a":25,"\u201e":25,"\u2026":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0100":12,"\u0102":12,"\u0104":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u0107":19,"\u0109":19,"\u010b":19,"\u010d":19,"\u010f":19,"\u0111":19,"\u0113":19,"\u0115":19,"\u0117":19,"\u0119":19,"\u011b":19,"\u011d":19,"\u011f":19,"\u0121":19,"\u0123":19,"\u014d":19,"\u014f":19,"\u0151":19,"\u0153":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u0138":7,"\u0144":7,"\u0146":7,"\u0148":7,"\u014b":7,"\u0155":7,"\u0157":7,"\u0159":7,"\u0169":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"J":11,"\u0134":11,"M":2,"N":2,"\u014a":2,"S":2,"\u015a":2,"\u015c":2,"\u015e":2,"\u0160":2,"\u0218":2}},"X":{"d":"4,0r80,-131r-52,-83v-7,-11,-13,-9,-26,-9r0,-31v27,0,43,-3,56,19r45,78v7,-16,34,-58,44,-78v11,-22,28,-19,55,-19r0,31v-13,0,-20,-2,-26,9r-51,83r80,131r-41,0r-63,-106v-14,29,-43,76,-61,106r-40,0","w":212,"k":{"\u2212":4,"\u201d":-5,"\u201c":-5,"\u2019":-5,"\u2018":-5,"\u2014":4,"\u2013":4,"\u0153":3,"\u0152":4,"\u0151":3,"\u0150":4,"\u014f":3,"\u014e":4,"\u014d":3,"\u014c":4,"\u0123":3,"\u0122":4,"\u0121":3,"\u0120":4,"\u011f":3,"\u011e":4,"\u011d":3,"\u011c":4,"\u011b":3,"\u0119":3,"\u0117":3,"\u0115":3,"\u0113":3,"\u0111":3,"\u010f":3,"\u010d":3,"\u010c":4,"\u010b":3,"\u010a":4,"\u0109":3,"\u0108":4,"\u0107":3,"\u0106":4,"\u0104":3,"\u0102":3,"\u0100":3,"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":3,"\u00c5":3,"\u00c4":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u00c0":3,"}":-7,"|":-7,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3,"]":-7,"Q":4,"O":4,"G":4,"C":4,"A":3,"@":3,"-":4,")":-7,"'":-7,"\"":-7}},"Y":{"d":"91,0r0,-111r-65,-103v-6,-10,-10,-9,-22,-9r0,-31v26,0,37,-3,50,19r55,93v11,-22,39,-68,54,-93v12,-22,24,-19,50,-19r0,31v-12,0,-16,-1,-22,9r-64,103r0,111r-36,0","w":217,"k":{" ":13,"T":-4,"\u0162":-4,"\u0164":-4,"\u0166":-4,"\u021a":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,"\u2018":-1,"\u2019":-1,"\u201c":-1,"\u201d":-1,",":29,".":29,"\u201a":29,"\u201e":29,"\u2026":29,"A":28,"\u00c0":28,"\u00c1":28,"\u00c2":28,"\u00c3":28,"\u00c4":28,"\u00c5":28,"\u00c6":28,"\u0100":28,"\u0102":28,"\u0104":28,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"\u0107":25,"\u0109":25,"\u010b":25,"\u010d":25,"\u010f":25,"\u0111":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"\u011b":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u0138":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u014b":13,"\u0155":13,"\u0157":13,"\u0159":13,"\u0169":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13,"J":13,"\u0134":13,"z":11,"\u017a":11,"\u017c":11,"\u017e":11,"\u00ab":7,"\u00bb":7,"\u2039":7,"\u203a":7,"M":6,"N":6,"\u014a":6,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"Z":{"d":"6,0r0,-24r145,-200v-26,2,-71,1,-101,1v-11,0,-7,14,-8,24r-33,0v1,-26,-6,-55,23,-55r163,0r0,23r-125,177v-10,15,-19,21,-19,24v28,-2,76,-1,108,-1v11,0,7,-14,8,-24r34,0v0,26,5,55,-24,55r-171,0","w":209,"k":{"\u00ad":8,"\u2013":8,"\u2014":8,"\u2212":8,"\u00ab":4,"\u00bb":4,"\u2039":4,"\u203a":4}},"[":{"d":"35,11r0,-253v-3,-30,33,-22,59,-23r0,27v-11,1,-29,-5,-28,8r0,230v-1,13,17,7,28,8r0,26v-26,-1,-59,7,-59,-23","w":117,"k":{"\u0135":-7,"j":-7,"4":14}},"\\":{"d":"93,15r-91,-283r31,0r91,283r-31,0","w":122},"]":{"d":"23,8v11,-1,29,4,29,-8r0,-230v0,-12,-18,-7,-29,-8r0,-27v26,1,60,-8,60,23r0,253v3,31,-34,22,-60,23r0,-26","w":117},"^":{"d":"25,-89r72,-165r23,0r71,165r-31,0r-52,-127r-51,127r-32,0","w":220},"_":{"d":"2,0r193,0r0,28r-193,0r0,-28","w":197},"`":{"d":"64,-272r-34,-46r35,0r26,46r-27,0","w":136},"a":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"b":{"d":"29,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23v0,24,-3,52,0,74v0,0,16,-29,59,-29v49,0,80,38,80,95v0,58,-35,95,-83,95v-43,0,-55,-31,-58,-30r1,26r-34,0xm63,-90v0,32,17,64,52,64v29,0,52,-24,52,-65v0,-40,-20,-65,-51,-65v-27,0,-53,20,-53,66","w":216,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"c":{"d":"13,-91v0,-54,39,-95,98,-95v29,0,75,12,65,58r-31,0v5,-23,-17,-28,-34,-29v-36,0,-62,27,-62,66v0,41,30,64,64,64v34,0,56,-25,56,-25r15,25v0,0,-26,31,-74,31v-57,0,-97,-40,-97,-95","w":191,"k":{"\u021a":11,"\u0177":2,"\u0166":11,"\u0164":11,"\u0162":11,"\u0140":1,"\u013e":1,"\u013c":1,"\u013a":1,"\u0137":1,"\u0125":1,"\u00ff":2,"\u00fd":2,"y":2,"l":1,"k":1,"h":1,"b":1,"T":11}},"d":{"d":"13,-91v0,-58,35,-95,83,-95v44,0,54,29,57,28v-2,-14,-1,-41,-1,-58v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23r0,193v0,11,13,8,23,8r0,30v-29,1,-62,5,-57,-29v0,0,-14,33,-59,33v-49,0,-81,-38,-81,-95xm100,-26v27,0,53,-19,53,-65v0,-32,-17,-65,-52,-65v-28,0,-52,24,-52,65v0,40,21,65,51,65","w":217},"e":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0","w":198,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"f":{"d":"31,0r0,-154r-23,0r0,-28r23,0v1,-67,43,-79,82,-73r0,30v-22,-5,-49,3,-47,43r43,0r0,28r-43,0r0,154r-35,0","w":117,"k":{"\u0129":-5,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u0101":7,"\u0103":7,"\u0105":7,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-16,"\u2019":-16,"\u201c":-16,"\u201d":-16,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"\u201a":18,"\u201e":18,"\u2026":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"\u0107":8,"\u0109":8,"\u010b":8,"\u010d":8,"\u010f":8,"\u0111":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"\u011b":8,"\u011d":8,"\u011f":8,"\u0121":8,"\u0123":8,"\u014d":8,"\u014f":8,"\u0151":8,"\u0153":8,"s":3,"\u015b":3,"\u015d":3,"\u015f":3,"\u0161":3,"\u0219":3}},"g":{"d":"13,-95v0,-52,29,-91,80,-91v45,0,59,28,59,28v-6,-29,28,-24,54,-24r0,30v-9,1,-22,-3,-22,7r0,137v-1,86,-93,100,-154,68r12,-28v0,0,22,13,49,13v41,0,65,-29,58,-75v-11,18,-27,28,-54,28v-50,0,-82,-40,-82,-93xm102,-32v25,0,48,-15,48,-63v0,-48,-23,-61,-51,-61v-32,0,-50,23,-50,60v0,38,20,64,53,64","w":214,"k":{"\u2018":-7,"\u2019":-7,"\u201c":-7,"\u201d":-7}},"h":{"d":"125,-154v-35,0,-62,28,-61,69r0,85r-35,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,22r0,86v8,-18,32,-40,68,-40v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,6,-58,-23v-7,-50,22,-131,-34,-131","w":223,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"i":{"d":"33,-218r0,-36r31,0r0,36r-31,0xm32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23","w":99,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"j":{"d":"40,-218r0,-36r32,0r0,36r-32,0xm-7,44v22,0,47,0,47,-40r0,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-6,58,23r0,165v-4,66,-47,70,-82,67r0,-29","w":102},"k":{"d":"29,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v25,2,58,-8,58,21r0,118v15,0,27,3,35,-8r42,-59r40,0v-19,25,-41,62,-63,82v14,9,29,46,40,63v3,9,15,7,26,7r0,30v-26,-1,-44,3,-55,-17r-33,-61v-7,-11,-18,-7,-32,-8r0,86r-35,0","w":189,"k":{"\u201d":-4,"\u201c":-4,"\u2019":-4,"\u2018":-4,"\u021a":7,"\u0177":4,"\u0175":4,"\u0166":7,"\u0164":7,"\u0162":7,"\u0153":3,"\u0151":3,"\u014f":3,"\u014d":3,"\u0140":3,"\u013e":3,"\u013c":3,"\u013a":3,"\u0137":3,"\u0125":3,"\u0123":3,"\u0121":3,"\u011f":3,"\u011d":3,"\u011b":3,"\u0119":3,"\u0117":3,"\u0115":3,"\u0113":3,"\u0111":3,"\u010f":3,"\u010d":3,"\u010b":3,"\u0109":3,"\u0107":3,"\u0105":2,"\u0103":2,"\u0101":2,"\u00ff":4,"\u00fd":4,"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,"y":4,"w":4,"v":4,"q":3,"o":3,"l":3,"k":3,"h":3,"g":3,"e":3,"d":3,"c":3,"b":3,"a":2,"T":7,"@":3}},"l":{"d":"30,-23r0,-193v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23r0,193v0,10,12,8,22,8r0,30v-26,-1,-57,7,-57,-23","w":96},"m":{"d":"120,-155v-62,1,-55,87,-54,155r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v33,-2,63,-3,57,37v13,-46,109,-60,117,0v12,-20,34,-41,65,-41v71,0,60,80,60,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-49,20,-132,-33,-132v-61,0,-56,87,-54,155r-34,0r0,-109v0,-24,-4,-46,-32,-46","w":337,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"n":{"d":"126,-154v-36,0,-60,27,-60,69r0,85r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v32,-1,65,-5,56,37v7,-16,29,-41,69,-41v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-50,22,-131,-35,-131","w":225,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"o":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65","w":222,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"p":{"d":"31,72r0,-216v0,-11,-13,-8,-23,-8r0,-30v27,1,63,-7,55,28v0,0,16,-32,61,-32v49,0,80,38,80,95v0,58,-35,95,-83,95v-42,0,-53,-30,-56,-29v2,27,1,67,1,97r-35,0xm64,-90v0,32,18,64,52,64v29,0,52,-24,52,-65v0,-40,-21,-65,-51,-65v-27,0,-53,20,-53,66","w":217,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"q":{"d":"14,-91v0,-58,34,-95,82,-95v45,0,56,31,59,30v-7,-31,28,-26,55,-26r0,30v-10,0,-23,-3,-23,8r0,216r-35,0r0,-98v0,0,-15,30,-58,30v-49,0,-80,-38,-80,-95xm101,-26v27,0,52,-19,52,-65v0,-32,-16,-65,-51,-65v-29,0,-53,24,-53,65v0,40,21,65,52,65","w":217},"r":{"d":"131,-149v-39,-8,-65,29,-65,74r0,75r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v36,-2,66,-4,56,45v11,-30,31,-50,67,-47r0,35","w":139,"k":{"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"\u0101":11,"\u0103":11,"\u0105":11,"v":-5,"w":-5,"\u0175":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0177":-5,"\u00ad":7,"\u2013":7,"\u2014":7,"\u2212":7,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13,",":20,".":20,"\u201a":20,"\u201e":20,"\u2026":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"\u010f":7,"\u0111":7,"\u0113":7,"\u0115":7,"\u0117":7,"\u0119":7,"\u011b":7,"\u011d":7,"\u011f":7,"\u0121":7,"\u0123":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3,"b":4,"h":4,"k":4,"l":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013c":4,"\u013e":4,"\u0140":4}},"s":{"d":"10,-28r18,-23v0,0,22,27,55,27v17,0,31,-8,31,-24v0,-33,-99,-28,-99,-87v0,-35,31,-51,68,-51v28,0,69,10,60,52r-32,0v4,-19,-12,-24,-27,-24v-21,0,-34,7,-34,21v0,35,99,27,99,88v0,32,-29,53,-67,53v-49,0,-72,-32,-72,-32","w":163,"k":{"\u2018":4,"\u2019":4,"\u201c":4,"\u201d":4}},"t":{"d":"32,-67r0,-87r-24,0r0,-28r25,0r0,-50r34,0r0,50r44,0r0,28r-44,0r0,83v3,40,24,42,47,41r0,31v-37,1,-82,-1,-82,-68","w":126,"k":{"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\u00ad":5,"\u2013":5,"\u2014":5,"\u2212":5,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"\u0107":3,"\u0109":3,"\u010b":3,"\u010d":3,"\u010f":3,"\u0111":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"\u011b":3,"\u011d":3,"\u011f":3,"\u0121":3,"\u0123":3,"\u014d":3,"\u014f":3,"\u0151":3,"\u0153":3,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"u":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41","w":223,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"v":{"d":"76,0r-57,-145v-2,-6,-6,-7,-14,-7r0,-30v23,0,38,-1,45,18r47,129v10,-43,32,-88,45,-129v6,-19,22,-18,45,-18r0,30v-8,0,-14,1,-16,7r-55,145r-40,0","w":191,"k":{"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-8,"\u2019":-8,"\u201c":-8,"\u201d":-8,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"w":{"d":"68,0r-48,-145v-2,-8,-8,-7,-16,-7r0,-30v24,0,43,-3,49,19r37,128r44,-146r32,0r45,146r37,-128v5,-23,24,-19,49,-19r0,30v-8,0,-15,-1,-17,7r-47,145r-40,0r-43,-137v-11,45,-30,93,-43,137r-39,0","w":300,"k":{"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-8,"\u2019":-8,"\u201c":-8,"\u201d":-8,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"x":{"d":"5,0r62,-94r-35,-51v-5,-9,-14,-7,-26,-7r0,-30v27,1,42,-4,54,18v8,15,22,32,29,47v18,-28,27,-76,83,-65r0,30v-11,0,-21,-2,-26,6r-35,52r61,94r-39,0r-44,-69r-44,69r-40,0","w":177,"k":{"\u2212":8,"\u201d":-7,"\u201c":-7,"\u2019":-7,"\u2018":-7,"\u2014":8,"\u2013":8,"-":8}},"y":{"d":"16,32v0,0,12,13,27,13v22,1,33,-27,40,-46r-62,-144v-4,-7,-8,-7,-16,-7r0,-30v23,0,38,-3,46,18r49,125v10,-41,31,-85,44,-125v7,-21,24,-18,48,-18r0,30v-9,0,-13,-1,-17,7r-72,178v-11,28,-32,43,-58,43v-27,0,-43,-18,-43,-18","w":196,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-10,"\u2019":-10,"\u201c":-10,"\u201d":-10,",":16,".":16,"\u201a":16,"\u201e":16,"\u2026":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"z":{"d":"12,0r0,-20r108,-133v-14,2,-49,1,-67,1v-10,-1,-8,11,-8,20r-32,0v0,-25,-4,-50,23,-50r130,0r0,20r-108,133v17,-2,55,-1,76,-1v9,0,7,-11,7,-20r32,0v0,25,4,50,-23,50r-138,0","w":181,"k":{"v":6,"w":6,"\u0175":6,"y":5,"\u00fd":5,"\u00ff":5,"\u0177":5,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-14,"\u2019":-14,"\u201c":-14,"\u201d":-14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"{":{"d":"41,-28r0,-34v0,-37,-31,-40,-31,-40r0,-30v0,0,31,-3,31,-40r0,-31v4,-61,39,-62,67,-62r0,27v-16,0,-36,-1,-36,37r0,38v0,38,-31,43,-30,46v0,0,30,9,30,46r0,41v2,38,20,38,36,38r0,27v-29,0,-62,-2,-67,-63","w":122,"k":{"\u0135":-7,"j":-7,"4":14}},"|":{"d":"39,57r0,-342r30,0r0,342r-30,0","w":107,"k":{"\u0135":-7,"j":-7,"4":14}},"}":{"d":"14,8v16,0,36,0,36,-38r0,-41v0,-39,31,-44,30,-47v0,0,-30,-9,-30,-45r0,-38v-2,-38,-20,-37,-36,-37r0,-27v29,0,62,1,67,62r0,31v0,37,31,40,31,40r0,30v0,0,-31,3,-31,40r0,34v-4,61,-39,63,-67,63r0,-27","w":122},"~":{"d":"22,-73v0,-42,20,-61,51,-61v38,0,41,35,68,35v19,0,25,-19,25,-34r28,0v0,42,-19,61,-50,61v-38,0,-42,-35,-69,-35v-19,0,-24,19,-24,34r-29,0","w":220},"\u00a1":{"d":"39,-147r0,-35r35,0r0,35r-35,0xm39,72r2,-184r31,0r3,184r-36,0","w":113},"\u00a2":{"d":"93,14r0,-40v-46,-6,-73,-49,-73,-101v0,-52,27,-95,73,-101r0,-40r27,0r0,40v31,5,53,26,65,56r-32,12v-23,-65,-98,-34,-98,33v0,70,79,93,98,33r32,12v-11,27,-32,52,-65,56r0,40r-27,0","w":203},"\u00a3":{"d":"18,0r0,-31r22,0r0,-84r-16,0r0,-25r16,0v-7,-70,12,-117,78,-118v36,0,60,23,60,23r-20,24v0,0,-18,-15,-40,-15v-47,0,-43,42,-42,86r66,0r0,25r-66,0r0,84r78,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-24,55r-153,0","w":210,"k":{"7":5}},"\u00a5":{"d":"35,-73r0,-23r58,0v2,-16,-5,-23,-11,-31r-48,0r0,-22v11,-1,25,2,34,-1r-41,-65v-5,-9,-11,-8,-22,-8r0,-31v26,0,38,-2,51,19r55,92v11,-23,40,-67,54,-92v13,-22,25,-19,51,-19r0,31v-11,0,-18,-1,-23,8r-40,66r33,0r0,22r-48,0v-5,8,-11,16,-9,31r57,0r0,23r-57,0r0,73r-36,0r0,-73r-58,0","w":221,"k":{"7":-5,"4":9}},"\u00a7":{"d":"55,-40r-28,-157v0,-35,26,-61,68,-61v31,0,51,18,51,18r-16,23v0,0,-15,-12,-35,-12v-27,0,-41,21,-36,50r25,139r-29,0xm22,4r16,-24v0,0,15,13,35,13v27,0,41,-23,36,-54r-24,-135r28,0r27,156v0,36,-25,62,-67,62v-31,0,-51,-18,-51,-18","w":165},"\u00a8":{"d":"111,-281r0,-37r26,0r0,37r-26,0xm51,-281r0,-37r27,0r0,37r-27,0","w":180},"\u00a9":{"d":"13,-127v0,-73,57,-131,128,-131v72,0,129,58,129,131v0,73,-57,131,-129,131v-71,0,-128,-58,-128,-131xm40,-127v0,60,44,107,101,107v58,0,103,-47,103,-107v0,-60,-45,-107,-103,-107v-57,0,-101,47,-101,107xm73,-127v0,-38,27,-72,71,-72v41,0,58,36,58,36r-22,12v-15,-41,-80,-20,-80,24v0,26,16,47,45,47v24,0,35,-22,35,-22r22,12v0,0,-17,35,-58,35v-44,0,-71,-34,-71,-72","w":283},"\u00aa":{"d":"93,-157v-8,24,-76,26,-73,-17v2,-38,46,-38,71,-38v2,-25,-24,-31,-37,-18r0,7r-25,0v-7,-29,23,-36,40,-35v57,1,47,42,48,91v0,7,9,3,14,4r0,23v-18,-1,-39,5,-38,-17xm64,-159v17,0,26,-17,27,-35v-17,0,-44,0,-45,19v0,8,6,16,18,16xm19,-95r0,-21r113,0r0,21r-113,0","w":149},"\u00ab":{"d":"87,-102r60,-74r34,0r-59,74r59,74r-34,0xm74,-28r-59,-74r59,-74r35,0r-59,74r59,74r-35,0","w":204,"k":{"7":12,"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7}},"\u00ac":{"d":"24,-122r0,-28r172,0r0,96r-29,0r0,-68r-143,0","w":220},"\u00ae":{"d":"13,-127v0,-73,57,-131,128,-131v72,0,129,58,129,131v0,73,-57,131,-129,131v-71,0,-128,-58,-128,-131xm40,-127v0,60,44,107,101,107v58,0,103,-47,103,-107v0,-60,-45,-107,-103,-107v-57,0,-101,47,-101,107xm97,-60r0,-116r-12,0r0,-19v48,0,107,-9,107,41v0,22,-16,32,-25,37v15,5,13,40,35,39r0,18v-16,-1,-28,3,-34,-10v-12,-16,-11,-48,-45,-42r0,52r-26,0xm123,-131v23,2,43,0,43,-23v0,-22,-20,-23,-43,-22r0,45","w":283},"\u00af":{"d":"39,-282r0,-25r91,0r0,25r-91,0","w":167},"\u02c9":{"d":"39,-282r0,-25r91,0r0,25r-91,0","w":167},"\u00b0":{"d":"71,-152v-30,0,-54,-23,-54,-53v0,-29,24,-53,54,-53v30,0,55,24,55,53v0,30,-25,53,-55,53xm71,-179v15,0,27,-11,27,-26v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26","w":142},"\u00b1":{"d":"15,-89r0,-28r81,0r0,-88r29,0r0,88r81,0r0,28r-81,0r0,89r-29,0r0,-89r-81,0xm21,34r179,0r0,28r-179,0r0,-28","w":220},"\u00b2":{"d":"124,-211v0,51,-70,51,-78,89v14,4,44,4,59,0r0,-12r26,0v0,18,4,38,-17,38r-78,0v-13,0,-18,-4,-18,-21v-2,-54,78,-51,78,-94v0,-12,-9,-21,-24,-21v-16,0,-23,7,-21,21r-25,0v-7,-34,24,-46,47,-46v30,0,51,18,51,46","w":152},"\u00b3":{"d":"75,-93v-34,0,-56,-29,-56,-29r19,-17v0,0,15,21,37,21v15,0,27,-11,27,-26v0,-19,-19,-26,-41,-24r-4,-16r38,-47r-40,0v-5,0,-3,9,-3,13r-26,0v0,-18,-3,-36,18,-36r83,0r0,18r-37,46v21,3,40,21,40,46v0,31,-26,51,-55,51","w":152},"\u00b4":{"d":"43,-272r26,-46r35,0r-34,46r-27,0","w":139},"\u00b5":{"d":"7,-152r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v0,0,-17,41,-67,41v-26,0,-31,-11,-34,-11v3,15,3,57,3,79r-31,0r0,-216v0,-11,-13,-8,-23,-8","w":223},"\u03bc":{"d":"7,-152r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v0,0,-17,41,-67,41v-26,0,-31,-11,-34,-11v3,15,3,57,3,79r-31,0r0,-216v0,-11,-13,-8,-23,-8","w":223},"\u00b6":{"d":"100,18r0,-105v-46,0,-85,-37,-85,-84v0,-47,39,-83,85,-83r98,0r0,31r-71,0r0,241r-27,0xm149,18r0,-221r27,0r0,221r-27,0","w":215},"\u00b7":{"d":"25,-86r0,-37r36,0r0,37r-36,0","w":86},"\u2219":{"d":"25,-86r0,-37r36,0r0,37r-36,0","w":86},"\u00b8":{"d":"58,-8v5,3,16,-1,17,6r-4,20v14,2,26,11,26,26v0,30,-36,35,-57,28r0,-21v5,3,36,6,33,-9v1,-10,-15,-13,-25,-10","w":149},"\u00b9":{"d":"27,-96r0,-24r34,0r-1,-99v-2,7,-13,15,-18,20r-17,-17r39,-38r24,0r0,134r33,0r0,24r-94,0","w":152},"\u00ba":{"d":"82,-138v-34,0,-61,-26,-61,-61v0,-34,27,-59,61,-59v34,0,62,25,62,59v0,35,-28,61,-62,61xm82,-161v19,0,35,-16,35,-38v0,-21,-16,-36,-35,-36v-20,0,-36,15,-36,36v0,22,16,38,36,38xm26,-95r0,-21r113,0r0,21r-113,0","w":164},"\u00bb":{"d":"95,-28r59,-74r-59,-74r35,0r59,74r-59,74r-35,0xm22,-28r59,-74r-59,-74r35,0r59,74r-59,74r-35,0","w":204,"k":{"7":12,"T":11,"\u0162":11,"\u0164":11,"\u0166":11,"\u021a":11,"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7}},"\u00bc":{"d":"102,0r104,-254r28,0r-103,254r-29,0xm28,-96r0,-24r34,0r-1,-99v-2,7,-14,15,-19,20r-16,-17r39,-38r24,0r0,134r32,0r0,24r-93,0xm186,-41r0,-16r69,-102r31,0r0,94r24,0r0,24r-24,0r0,41r-27,0r0,-41r-73,0xm221,-71v-5,6,-7,7,2,6r36,0v-1,-20,3,-44,0,-62v-12,20,-25,37,-38,56","w":329},"\u00bd":{"d":"98,0r104,-254r28,0r-103,254r-29,0xm28,-96r0,-24r34,0r-1,-99v-2,7,-14,15,-19,20r-16,-17r39,-38r24,0r0,134r32,0r0,24r-93,0xm301,-115v0,51,-70,51,-78,89v14,5,39,0,57,2v4,-1,1,-10,2,-15r26,0v0,19,4,39,-17,39r-79,0v-13,0,-17,-4,-17,-21v-2,-54,78,-50,78,-94v0,-13,-9,-21,-24,-21v-16,0,-22,6,-20,21r-26,0v-7,-34,24,-47,47,-47v30,0,51,19,51,47","w":329},"\u00be":{"d":"102,0r103,-254r29,0r-103,254r-29,0xm78,-93v-34,0,-56,-29,-56,-29r18,-17v0,0,16,21,38,21v15,0,27,-11,27,-26v0,-20,-19,-26,-42,-24r-4,-16r38,-47r-39,0v-6,0,-2,9,-3,13r-26,0v0,-18,-4,-36,17,-36r84,0r0,18r-38,46v21,3,41,21,41,46v0,31,-26,51,-55,51xm186,-41r0,-16r69,-102r31,0r0,94r24,0r0,24r-24,0r0,41r-27,0r0,-41r-73,0xm221,-71v-5,6,-7,7,2,6r36,0v-1,-20,3,-44,0,-62v-12,20,-25,37,-38,56","w":329},"\u00bf":{"d":"75,-147r0,-35r35,0r0,35r-35,0xm12,10v1,-65,71,-62,63,-122r34,0v9,67,-60,75,-61,119v0,20,17,36,41,36v23,0,41,-15,41,-15r19,25v0,0,-23,23,-62,23v-41,0,-75,-26,-75,-66","w":163},"\u00c0":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm106,-272r-34,-46r35,0r26,46r-27,0","w":239,"k":{"X":3}},"\u00c1":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm106,-272r26,-46r35,0r-34,46r-27,0","w":239,"k":{"X":3}},"\u00c2":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm72,-272r32,-46r32,0r31,46r-28,0r-19,-29r-20,29r-28,0","w":239,"k":{"X":3}},"\u00c3":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm59,-272v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,14,-14,14,-24r24,0v0,30,-13,46,-37,46v-24,0,-30,-25,-46,-25v-11,0,-15,13,-15,24r-23,0","w":239,"k":{"X":3}},"\u00c4":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm136,-281r0,-37r27,0r0,37r-27,0xm77,-281r0,-37r27,0r0,37r-27,0","w":239,"k":{"X":3}},"\u00c5":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm120,-267v-15,0,-29,-10,-29,-27v0,-17,14,-27,29,-27v15,0,29,10,29,27v0,17,-14,27,-29,27xm120,-282v7,0,12,-5,12,-12v0,-8,-5,-13,-12,-13v-7,0,-12,5,-12,13v0,7,5,12,12,12","w":239,"k":{"X":3}},"\u00c6":{"d":"4,0r0,-31v9,0,13,-1,17,-8r85,-215r161,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-70,0r0,79r87,0r0,31r-87,0r0,74v0,6,4,8,10,8r70,0v11,0,7,-14,8,-24r33,0v-1,26,7,55,-23,55r-109,0v-18,0,-25,-5,-25,-23r0,-90r-57,0r-35,92v-6,24,-21,21,-47,21xm98,-144r45,0r0,-79r-16,0","w":308},"\u00c7":{"d":"12,-129v0,-73,55,-129,128,-129v42,1,108,16,95,79r-33,0v7,-37,-30,-46,-62,-46v-51,0,-90,39,-90,96v0,55,38,99,90,99v51,0,82,-34,82,-34r19,26v0,0,-34,40,-97,42r-3,14v15,2,26,11,26,26v0,30,-37,35,-57,28r0,-21v5,3,36,6,33,-9v1,-10,-16,-13,-26,-10r8,-28v-68,-7,-113,-63,-113,-133","w":252,"k":{"Y":4,"\u00dd":4,"\u0176":4,"\u0178":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\u0106":2,"\u0108":2,"\u010a":2,"\u010c":2,"\u011c":2,"\u011e":2,"\u0120":2,"\u0122":2,"\u014c":2,"\u014e":2,"\u0150":2,"\u0152":2,"\"":-8,"'":-8,"\u2018":-9,"\u2019":-9,"\u201c":-9,"\u201d":-9,")":-8,"]":-8,"|":-8,"}":-8}},"\u00c8":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm92,-272r-34,-46r35,0r27,46r-28,0","w":204,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00c9":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm92,-272r26,-46r36,0r-34,46r-28,0","w":204,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00ca":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm59,-272r31,-46r32,0r32,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","w":204,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00cb":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm123,-281r0,-37r26,0r0,37r-26,0xm64,-281r0,-37r26,0r0,37r-26,0","w":204,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"V":5,"W":5,"\u0174":5,"v":1,"w":1,"\u0175":1,"J":-3,"\u0134":-3,"f":-2,"\u017f":-2,"\ufb00":-2,"\ufb01":-2,"\ufb02":-2,"\ufb03":-2,"\ufb04":-2}},"\u00cc":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm43,-272r-34,-46r35,0r26,46r-27,0","w":114},"\u00cd":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm43,-272r26,-46r35,0r-34,46r-27,0","w":114},"\u00ce":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm9,-272r32,-46r32,0r31,46r-28,0r-19,-29r-20,29r-28,0","w":114},"\u00cf":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm73,-281r0,-37r27,0r0,37r-27,0xm14,-281r0,-37r27,0r0,37r-27,0","w":114},"\u00d0":{"d":"37,-23r0,-89r-18,0r0,-30r18,0r0,-81r-23,0r0,-31r103,0v77,0,128,47,128,127v0,103,-75,127,-185,127v-16,0,-23,-7,-23,-23xm73,-39v1,15,27,8,41,8v57,0,94,-33,94,-96v-1,-78,-54,-103,-135,-96r0,81r52,0r0,30r-52,0r0,73","w":257,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d1":{"d":"14,0r0,-31v10,0,23,3,23,-8r0,-215r33,0r113,161v8,11,13,24,22,34v-6,-46,-1,-119,-3,-172v-1,-30,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-32,0r-113,-161v-8,-11,-13,-24,-22,-34v4,47,0,119,2,172v1,30,-33,22,-59,23xm80,-272v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,15,-14,15,-24r24,0v0,30,-13,46,-37,46v-24,0,-31,-25,-47,-25v-11,0,-14,13,-14,24r-24,0","w":275,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,",":7,".":7,"\u201a":7,"\u201e":7,"\u2026":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2,"\u0107":2,"\u0109":2,"\u010b":2,"\u010d":2,"\u010f":2,"\u0111":2,"\u0113":2,"\u0115":2,"\u0117":2,"\u0119":2,"\u011b":2,"\u011d":2,"\u011f":2,"\u0121":2,"\u0123":2,"\u014d":2,"\u014f":2,"\u0151":2,"\u0153":2}},"\u00d2":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm127,-272r-34,-46r36,0r26,46r-28,0","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d3":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm128,-272r26,-46r35,0r-34,46r-27,0","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d4":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm94,-272r32,-46r32,0r31,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d5":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm81,-272v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,14,-14,14,-24r24,0v0,30,-13,46,-37,46v-24,0,-30,-25,-46,-25v-11,0,-15,13,-15,24r-23,0","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d6":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm158,-281r0,-37r27,0r0,37r-27,0xm99,-281r0,-37r27,0r0,37r-27,0","w":285,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d7":{"d":"17,-20r74,-83r-74,-82r20,-20r73,82r74,-82r20,20r-75,82r75,83r-20,20r-74,-82r-73,82","w":220},"\u00d8":{"d":"40,-3r18,-24v-28,-24,-45,-61,-45,-102v0,-98,111,-162,198,-111r17,-24r17,13r-16,23v27,24,45,59,45,99v0,101,-112,167,-199,114r-17,24xm79,-57r111,-155v-62,-37,-142,11,-140,83v0,29,11,54,29,72xm95,-43v64,38,143,-12,141,-86v0,-28,-11,-52,-29,-69","w":286,"k":{"i":-3,"X":4,"T":7,"\u0162":7,"\u0164":7,"\u0166":7,"\u021a":7,"Y":13,"\u00dd":13,"\u0176":13,"\u0178":13,"V":4,"W":4,"\u0174":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"\u0101":-2,"\u0103":-2,"\u0105":-2,"v":-1,"w":-1,"\u0175":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0177":-1,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\u2212":-5,"\"":4,"'":4,"\u2018":2,"\u2019":2,"\u201c":2,"\u201d":2,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u0100":5,"\u0102":5,"\u0104":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"\u0107":-2,"\u0109":-2,"\u010b":-2,"\u010d":-2,"\u010f":-2,"\u0111":-2,"\u0113":-2,"\u0115":-2,"\u0117":-2,"\u0119":-2,"\u011b":-2,"\u011d":-2,"\u011f":-2,"\u0121":-2,"\u0123":-2,"\u014d":-2,"\u014f":-2,"\u0151":-2,"\u0153":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"\u0138":-3,"\u0144":-3,"\u0146":-3,"\u0148":-3,"\u014b":-3,"\u0155":-3,"\u0157":-3,"\u0159":-3,"\u0169":-3,"\u016b":-3,"\u016d":-3,"\u016f":-3,"\u0171":-3,"\u0173":-3}},"\u00d9":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm117,-272r-34,-46r35,0r27,46r-28,0","w":262,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00da":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm117,-272r27,-46r35,0r-34,46r-28,0","w":262,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00db":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm84,-272r31,-46r32,0r32,46r-29,0v-7,-9,-11,-21,-19,-29r-19,29r-28,0","w":262,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00dc":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm148,-281r0,-37r26,0r0,37r-26,0xm89,-281r0,-37r26,0r0,37r-26,0","w":262,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u0100":7,"\u0102":7,"\u0104":7,"M":2,"N":2,"\u014a":2}},"\u00dd":{"d":"91,0r0,-111r-65,-103v-6,-10,-10,-9,-22,-9r0,-31v26,0,37,-3,50,19r55,93v11,-22,39,-68,54,-93v12,-22,24,-19,50,-19r0,31v-12,0,-16,-1,-22,9r-64,103r0,111r-36,0xm95,-272r26,-46r35,0r-34,46r-27,0","w":217,"k":{" ":13,"T":-4,"\u0162":-4,"\u0164":-4,"\u0166":-4,"\u021a":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u0101":16,"\u0103":16,"\u0105":16,"\u00ad":22,"\u2013":22,"\u2014":22,"\u2212":22,"\"":-7,"'":-7,"\u2018":-1,"\u2019":-1,"\u201c":-1,"\u201d":-1,",":29,".":29,"\u201a":29,"\u201e":29,"\u2026":29,"A":28,"\u00c0":28,"\u00c1":28,"\u00c2":28,"\u00c3":28,"\u00c4":28,"\u00c5":28,"\u00c6":28,"\u0100":28,"\u0102":28,"\u0104":28,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"\u0107":25,"\u0109":25,"\u010b":25,"\u010d":25,"\u010f":25,"\u0111":25,"\u0113":25,"\u0115":25,"\u0117":25,"\u0119":25,"\u011b":25,"\u011d":25,"\u011f":25,"\u0121":25,"\u0123":25,"\u014d":25,"\u014f":25,"\u0151":25,"\u0153":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u0138":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u014b":13,"\u0155":13,"\u0157":13,"\u0159":13,"\u0169":13,"\u016b":13,"\u016d":13,"\u016f":13,"\u0171":13,"\u0173":13,"J":13,"\u0134":13,"z":11,"\u017a":11,"\u017c":11,"\u017e":11,"\u00ab":7,"\u00bb":7,"\u2039":7,"\u203a":7,"M":6,"N":6,"\u014a":6,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17}},"\u00de":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,62,-7,59,23r0,20v75,-7,132,11,132,80v0,68,-57,88,-132,80r0,51r-36,0xm73,-82v50,2,95,2,95,-49v0,-50,-45,-52,-95,-49r0,98","w":214},"\u00df":{"d":"7,0r0,-30v9,0,21,3,21,-8r0,-153v-4,-85,148,-87,147,-10v0,34,-36,45,-36,66v0,24,64,37,64,85v0,37,-30,54,-62,54v-57,0,-60,-14,-45,-45v0,0,19,15,41,15v16,0,30,-7,30,-26v0,-31,-64,-42,-64,-82v0,-29,36,-40,36,-66v0,-14,-11,-28,-34,-28v-21,0,-42,13,-42,40r0,165v3,29,-30,22,-56,23","w":208},"\u00e0":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm81,-208r-34,-46r35,0r27,46r-28,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e1":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm81,-208r27,-46r35,0r-34,46r-28,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e2":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm48,-208r32,-46r32,0r31,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e3":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm35,-209v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,14,-13,14,-23r24,0v0,30,-13,45,-37,45v-24,0,-30,-24,-46,-24v-11,0,-15,12,-15,23r-23,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e4":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm112,-218r0,-36r27,0r0,36r-27,0xm53,-218r0,-36r27,0r0,36r-27,0","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e5":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm96,-204v-15,0,-29,-10,-29,-27v0,-17,14,-27,29,-27v15,0,29,10,29,27v0,17,-14,27,-29,27xm96,-219v7,0,12,-5,12,-12v0,-8,-5,-12,-12,-12v-7,0,-12,4,-12,12v0,7,5,12,12,12","k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00e6":{"d":"13,-51v0,-61,74,-61,118,-61v1,-33,-12,-48,-40,-47v-13,0,-36,4,-30,25r-33,0v-8,-42,28,-52,63,-52v37,-1,52,14,63,32v14,-21,37,-32,65,-32v55,1,83,44,76,99r-130,0v2,40,27,61,60,61v31,0,54,-21,54,-21r15,25v0,0,-27,26,-70,26v-38,1,-64,-19,-80,-45v-3,9,-21,45,-68,45v-33,0,-63,-20,-63,-55xm166,-112r95,0v-1,-30,-21,-47,-43,-47v-27,0,-47,17,-52,47xm49,-53v0,15,11,29,34,29v32,-1,49,-32,48,-63v-35,0,-82,-1,-82,34","w":312,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00e7":{"d":"13,-91v0,-54,39,-95,98,-95v29,0,75,12,65,58r-31,0v5,-23,-17,-28,-34,-29v-36,0,-62,27,-62,66v0,41,30,64,64,64v34,0,56,-25,56,-25r15,25v0,0,-25,31,-73,31r-3,14v15,2,26,11,26,26v0,30,-37,35,-57,28r0,-21v5,3,35,5,32,-9v1,-10,-15,-13,-25,-10r7,-29v-46,-8,-78,-45,-78,-94","w":191},"\u00e8":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm89,-208r-34,-46r35,0r26,46r-27,0","w":198,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00e9":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm89,-208r27,-46r35,0r-34,46r-28,0","w":198,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00ea":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm56,-208r31,-46r32,0r32,46r-29,0v-7,-9,-11,-21,-19,-29r-19,29r-28,0","w":198,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00eb":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm120,-218r0,-36r26,0r0,36r-26,0xm60,-218r0,-36r27,0r0,36r-27,0","w":198,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":10,"\u2019":10,"\u201c":10,"\u201d":10}},"\u00ec":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm33,-208r-34,-46r35,0r26,46r-27,0","w":99,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00ed":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm33,-208r26,-46r36,0r-35,46r-27,0","w":99,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00ee":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm0,-208r31,-46r32,0r32,46r-29,0v-7,-10,-11,-22,-19,-30r-19,30r-28,0","w":99,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00ef":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm58,-218r0,-36r27,0r0,36r-27,0xm8,-218r0,-36r27,0r0,36r-27,0","w":99,"k":{"v":2,"w":2,"\u0175":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0177":2}},"\u00f0":{"d":"99,4v-111,0,-114,-173,0,-172v31,0,42,15,45,15v-8,-20,-21,-36,-39,-48r-65,29r-4,-22r45,-20v-14,-7,-31,-12,-47,-16r10,-29v26,6,51,15,74,29r50,-22r4,22r-33,15v66,46,82,219,-40,219xm104,-140v-74,-2,-71,113,-4,114v68,0,77,-116,4,-114","w":207},"\u00f1":{"d":"126,-154v-36,0,-60,27,-60,69r0,85r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v32,-1,65,-5,56,37v7,-16,29,-41,69,-41v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-50,22,-131,-35,-131xm55,-209v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,15,-13,15,-23r23,0v0,30,-13,45,-37,45v-24,0,-30,-24,-46,-24v-11,0,-14,12,-14,23r-24,0","w":225,"k":{"T":31,"\u0162":31,"\u0164":31,"\u0166":31,"\u021a":31,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":25,"'":25,"\u2018":13,"\u2019":13,"\u201c":13,"\u201d":13}},"\u00f2":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm97,-208r-34,-46r35,0r26,46r-27,0","w":222,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f3":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm97,-208r26,-46r35,0r-34,46r-27,0","w":222,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f4":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm64,-208r31,-46r32,0r32,46r-29,0v-7,-9,-11,-21,-19,-29r-19,29r-28,0","w":222,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f5":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm50,-209v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,15,-13,15,-23r23,0v0,30,-13,45,-37,45v-24,0,-30,-24,-46,-24v-11,0,-14,12,-14,23r-24,0","w":222,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f6":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm128,-218r0,-36r26,0r0,36r-26,0xm68,-218r0,-36r27,0r0,36r-27,0","w":222,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f7":{"d":"91,-157r0,-32r34,0r0,32r-34,0xm17,-89r0,-28r182,0r0,28r-182,0xm91,-16r0,-33r34,0r0,33r-34,0","w":220},"\u00f8":{"d":"34,1r14,-19v-21,-17,-35,-42,-35,-73v0,-73,82,-118,147,-83r14,-20r17,12r-14,19v19,17,32,43,32,72v2,71,-77,116,-144,85r-14,20xm67,-45r74,-103v-42,-23,-93,8,-92,57v0,19,6,34,18,46xm84,-32v61,31,120,-53,73,-103","w":222,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u2018":16,"\u2019":16,"\u201c":16,"\u201d":16,",":5,".":5,"\u201a":5,"\u201e":5,"\u2026":5,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"b":3,"h":3,"k":3,"l":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013c":3,"\u013e":3,"\u0140":3}},"\u00f9":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm95,-208r-34,-46r35,0r27,46r-28,0","w":223,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fa":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm95,-208r27,-46r35,0r-34,46r-28,0","w":223,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fb":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm62,-208r31,-46r32,0r32,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","w":223,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fc":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm126,-218r0,-36r26,0r0,36r-26,0xm67,-218r0,-36r26,0r0,36r-26,0","w":223,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"\u2018":11,"\u2019":11,"\u201c":11,"\u201d":11}},"\u00fd":{"d":"16,32v0,0,12,13,27,13v22,1,33,-27,40,-46r-62,-144v-4,-7,-8,-7,-16,-7r0,-30v23,0,38,-3,46,18r49,125v10,-41,31,-85,44,-125v7,-21,24,-18,48,-18r0,30v-9,0,-13,-1,-17,7r-72,178v-11,28,-32,43,-58,43v-27,0,-43,-18,-43,-18xm84,-208r27,-46r35,0r-34,46r-28,0","w":196,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u0101":3,"\u0103":3,"\u0105":3,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2212":6,"\u2018":-10,"\u2019":-10,"\u201c":-10,"\u201d":-10,",":16,".":16,"\u201a":16,"\u201e":16,"\u2026":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u0107":4,"\u0109":4,"\u010b":4,"\u010d":4,"\u010f":4,"\u0111":4,"\u0113":4,"\u0115":4,"\u0117":4,"\u0119":4,"\u011b":4,"\u011d":4,"\u011f":4,"\u0121":4,"\u0123":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4}},"\u00fe":{"d":"30,72r0,-288v0,-11,-13,-8,-23,-8r0,-30v26,1,57,-7,57,23r0,74v11,-19,30,-29,58,-29v50,0,81,39,81,95v0,55,-31,95,-81,95v-43,0,-58,-29,-58,-29r0,97r-34,0xm63,-91v0,48,26,65,53,65v31,0,51,-26,51,-65v0,-39,-20,-65,-51,-65v-28,0,-53,17,-53,65","w":216,"k":{"T":14,"\u0162":14,"\u0164":14,"\u0166":14,"\u021a":14,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u0101":2,"\u0103":2,"\u0105":2,"v":4,"w":4,"\u0175":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0177":4,"\"":4,"'":4,"\u20
