/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'strings': { "Unspecified error": "Erreur non spécifiée", "Your server has been successfully tested to support this feature.": "Le test a réussi. Votre serveur supporte cette fonctionnalité.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "La configuration de votre système ne supporte pas cette fonctionnalité. La \x3ca href=\"http://drupal.org/node/15365\"\x3epage du manuel sur les URLs simplifiées\x3c/a\x3e apporte une aide supplémentaire.", "Testing clean URLs...": "Test des URLs simplifiées...", "Search": "Recherche", "Anonymous": "Anonyme", "Published": "Publié", "Not published": "Non publié", "Promoted to front page": "Promu en page d\'accueil", "An error occurred. \n@uri\n@text": "Une erreur s\'est produite. \n@uri\n@text", "An error occurred. \n@uri\n(no information available).": "Une erreur s\'est produite. \n@uri\n(aucune information supplémentaire)", "An HTTP error @status occurred. \n@uri": "Une erreur HTTP @status s\'est produite. \n@uri", "Drag to re-order": "Cliquer-déposer pour ré-organiser", "Changes made in this table will not be saved until the form is submitted.": "Les modifications réalisées sur cette table ne seront enregistrés que lorsque le formulaire sera soumis.", "Select all rows in this table": "Sélectionner toutes les lignes du tableau", "Deselect all rows in this table": "Désélectionner toutes les lignes du tableau", "Split summary at cursor": "Créer un résumé à partir du curseur", "Join summary": "Fusionner le résumé et le corps du message", "None": "Aucun", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "N\'oubliez pas de cliquer sur \x3cem\x3eEnregistrer les blocs\x3c/em\x3e pour confirmer les modifications apportées ici.", "Remove this item": "Supprimer cet élément", "The selected file %filename cannot not be uploaded. Only files with the following extensions are allowed: %extensions.": "Le fichier sélectionné %filename n\'a pas pu être transféré. Seuls les fichiers possédant les extensions suivantes sont autorisés : %extensions.", "Automatic alias": "Alias automatique" } };;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

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

})(jQuery);
;
// MOBOTIX Camera View Library
//
// Author: Daniel Kabs

/*
  Copyright (c) 2007, MOBOTIX AG, Kaiserslautern, Germany.

  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


// introducing namespace 'MX'

var MX = {
  version   : '1.0',
  author    : 'Daniel Kabs',
  copyright : 'MOBOTIX AG, Germany'
};

if (!("console" in window)) {
  console = new Object();
  console.log = console.debug = console.info = console.warn =
  console.error =  function() {  };
  console.error = alert;
}

/*
    ImageRefreshPeriodic object
    Periodically Refresh live image from camera

    Parameters to constructor function:
      ImageID           : ID of HTML Image element that needs to be refreshed
      RefreshRate       : update rate in seconds (minimum one second)

    Methods:
      getRefreshRate();
      setRefreshRate(value);
      stop();
*/

MX.ImageRefreshPeriodic = function(ImageID, RefreshRate) {
  // parameters
  if (!ImageID || RefreshRate < 1) {
    console.error("ImageRefreshPeriodic: Invalid constructor function call.");
  }
  // public methods
  this.getRefreshRate = function() {
    return RefreshRate;
  };
  this.setRefreshRate = function(NewRefreshRate) {
    if (NewRefreshRate >= 1) {
      RefreshRate = NewRefreshRate;
      if (SetTimeoutReference) {
        clearTimeout(SetTimeoutReference);
        loadNextImage();
      }
    }
  };
  this.stop = function() {
    aborted = true;
  };
  // private variables
  var ImgElement = document.getElementById(ImageID);
  var ImgSrc = ImgElement.src;
  var ImageBuffer = new Image();
  var LoadingStartTime = 0;
  var SetTimeoutReference = null;
  var aborted = false;
  // private methods
  var loadNextImage = function () {
    SetTimeoutReference = null;
    if (aborted) {
      return;
    }
    LoadingStartTime = new Date().getTime();
    ImageBuffer.src = MX.makeUncachedURL(ImgSrc);
  };
  var handleLoadEvent = function() {
    ImgElement.src = this.src;
    var WaitTime =  (RefreshRate * 1000) 
                  - ((new Date().getTime()) - LoadingStartTime);
                                               
    if (WaitTime < 0) {
      loadNextImage();
    } else {
      SetTimeoutReference = setTimeout(loadNextImage, WaitTime);
    }
  };
  var handleErrorEvent = function() {
    console.warn("Image load error:" + this.src);
    SetTimeoutReference = setTimeout(loadNextImage,
                                    (RefreshRate < 10 ? 10 : RefreshRate) * 1000);
  };
  var handleAbortEvent = function() {
    console.warn("Image loading aborted!");
  };
  // attach event handlers
  ImageBuffer.onload  = handleLoadEvent;
  ImageBuffer.onerror = handleErrorEvent;
  ImageBuffer.onabort = handleAbortEvent;
  // start refresh
  loadNextImage();
}; // end ImageRefreshPeriodic

MX.Urlcounter = Math.floor(Math.random() * 10000000);

MX.makeUncachedURL = function (path) {
  if (path.substr(-1,1) == "&") {
    ;
  } else if (path.indexOf("?") < 0) {
    path += "?";
  } else {
    path += "&";
  }
  return path + (MX.Urlcounter++);
};

MX.registerBodyOnloadHandler = function(onloadHandlerFunction) {
  if (typeof onloadHandlerFunction != 'undefined') {
    var oldOnloadHandlerFunction = window.onload;
    if (typeof(oldOnloadHandlerFunction) != 'function') {
      window.onload = onloadHandlerFunction;
    } else {
      window.onload = function() {
        oldOnloadHandlerFunction();
        onloadHandlerFunction();
      }
    }
  }
};

;
var Cufon=function(){function v(a){var b=this.face=a.face,d={" ":1,"\u00a0":1,"\u3000":1};this.glyphs=function(b){var a,d={"\u2011":"-","\u00ad":"\u2011"};for(a in d)d.hasOwnProperty(a)&&(b[a]||(b[a]=b[d[a]]));return b}(a.glyphs);this.w=a.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=function(){var a=b.bbox.split(/\s+/);a={minX:parseInt(a[0],10),minY:parseInt(a[1],10),maxX:parseInt(a[2],
10),maxY:parseInt(a[3],10)};a.width=a.maxX-a.minX;a.height=a.maxY-a.minY;a.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return a}();this.ascent=-parseInt(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(a,b,L){for(var m=this.glyphs,e,f,p=[],g=0,j=-1,i=-1,h;h=a[++j];)if(e=m[h]||this.missingGlyph)f&&(g-=f=f[h]||0,p[i]-=f),f=e.w,isNaN(f)&&(f=+this.w),f>0&&(f+=b,d[h]&&(f+=L)),g+=p[++i]=~~f,f=e.k;p.total=
g;return p}}function J(){var a={},b={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(d,c){var k=a[d]||a[b[d]]||a.normal||a.italic||a.oblique;if(!k)return null;c={normal:400,bold:700}[c]||parseInt(c,10);if(k[c])return k[c];var L={1:1,99:0}[c%100],m=[],f,e;L===void 0&&(L=c>400);c==500&&(c=400);for(var p in k)if(k.hasOwnProperty(p)){p=parseInt(p,10);if(!f||p<f)f=p;if(!e||p>e)e=p;m.push(p)}c<f&&(c=f);c>e&&(c=e);m.sort(function(b,a){return(L?
b>=c&&a>=c?b<a:b>a:b<=c&&a<=c?b>a:b<a)?-1:1});return k[m[0]]}}function r(a){var b={},d={};this.extend=function(a){for(var d in a)a.hasOwnProperty(d)&&(b[d]=a[d]);return this};this.get=function(c){return b[c]!=void 0?b[c]:a[c]};this.getSize=function(a,b){return d[a]||(d[a]=new f.Size(this.get(a),b))};this.isUsable=function(){return!!a}}function I(a,b,d){a.addEventListener?a.addEventListener(b,d,!1):a.attachEvent&&a.attachEvent("on"+b,d)}function B(a,b){if(b._mediatorMode)return a;var d=K.get(a),c=
d.options;if(c){if(c===b)return a;c.hover&&D.detach(a)}b.hover&&b.hoverables[a.nodeName.toLowerCase()]&&D.attach(a);d.options=b;return a}function e(a){var b={};return function(d){b.hasOwnProperty(d)||(b[d]=a.apply(null,arguments));return b[d]}}function n(a){return document.getElementsByTagName(a)}function l(){for(var a={},b,d,c=0,k=arguments.length;b=arguments[c],c<k;++c)for(d in b)b.hasOwnProperty(d)&&(a[d]=b[d]);return a}function j(a,b,d,c,k,L){var e=document.createDocumentFragment();if(b==="")return e;
var g=c.separate,h=b.split(M[g]);if((g=g=="words")&&x)/^\s/.test(b)&&h.unshift(""),/\s$/.test(b)&&h.push("");for(var p=0,j=h.length;p<j;++p)(b=z[c.engine](a,g?f.textAlign(h[p],d,p,j):h[p],d,c,k,L,p<j-1))&&e.appendChild(b);return e}function i(a,b,d){a.removeEventListener?a.removeEventListener(b,d,!1):a.detachEvent&&a.detachEvent("on"+b,d)}function o(a,b){var d=a.nodeName.toLowerCase();if(!b.ignore[d]&&(!b.ignoreClass||!b.ignoreClass.test(a.className))){if(b.onBeforeReplace)b.onBeforeReplace(a,b);d=
!b.textless[d];var c=b.trim==="simple",k=f.getStyle(B(a,b)).extend(b);if(parseFloat(k.get("fontSize"))!==0){var e;a:{e=f.quotedList(k.get("fontFamily").toLowerCase());for(var m,g=0;m=e[g];++g)if(E[m]){e=E[m].get(k.get("fontStyle"),k.get("fontWeight"));break a}e=null}var h,p,i,n,l=b.softHyphens,o=!1,y=/\u00ad/g,u=b.modifyText;if(e){for(m=a.firstChild;m;m=h){g=m.nodeType;h=m.nextSibling;if(d&&g==3){if(l&&a.nodeName.toLowerCase()!=s&&(i=m.data.indexOf("\u00ad"),i>=0))m.splitText(i),h=m.nextSibling,h.deleteData(0,
1),o=document.createElement(s),o.appendChild(document.createTextNode("\u00ad")),a.insertBefore(o,h),h=o,o=!0;p?(p.appendData(m.data),a.removeChild(m)):p=m;if(h)continue}if(p)i=p.data,l||(i=i.replace(y,"")),i=f.whiteSpace(i,k,p,n,c),u&&(i=u(i,p,a,b)),a.replaceChild(j(e,i,k,b,m,a),p),p=null;if(g==1){if(m.firstChild)if(m.nodeName.toLowerCase()=="cufon")z[b.engine](e,null,k,b,m,a);else arguments.callee(m,b);n=m}}l&&o&&(t(a),q||I(window,"resize",N),q=!0);if(b.onAfterReplace)b.onAfterReplace(a,b)}}}}function t(a){var b,
d,c,k,e,f;a=a.getElementsByTagName(s);for(f=0;b=a[f];++f)if(b.className=u,c=d=b.parentNode,c.nodeName.toLowerCase()!=w)k=document.createElement(w),k.appendChild(b.previousSibling),d.insertBefore(k,b),k.appendChild(b);else if(c=c.parentNode,c.nodeName.toLowerCase()==w){for(d=c.parentNode;c.firstChild;)d.insertBefore(c.firstChild,c);d.removeChild(c)}for(f=0;b=a[f];++f)if(b.className="",c=b.parentNode,d=c.parentNode,e=c.nextSibling||d.nextSibling,k=e.nodeName.toLowerCase()==w?c:b.previousSibling,k.offsetTop>=
e.offsetTop)b.className=u,k.offsetTop<e.offsetTop&&(k=document.createElement(w),d.insertBefore(k,c),k.appendChild(c),k.appendChild(e))}function N(){y||(f.addClass(h.root(),A),clearTimeout(F),F=setTimeout(function(){y=!0;f.removeClass(h.root(),A);t(document);y=!1},100))}var g=function(){return g.replace.apply(null,arguments)},h=g.DOM={ready:function(){var a=!1,b={loaded:1,complete:1},d=[],c=function(){if(!a){a=!0;for(var b;b=d.shift();b());}};document.addEventListener&&(document.addEventListener("DOMContentLoaded",
c,!1),window.addEventListener("pageshow",c,!1));!window.opera&&document.readyState&&function(){b[document.readyState]?c():setTimeout(arguments.callee,10)}();document.readyState&&document.createStyleSheet&&function(){try{document.body.doScroll("left"),c()}catch(a){setTimeout(arguments.callee,1)}}();I(window,"load",c);return function(b){arguments.length?a?b():d.push(b):c()}}(),root:function(){return document.documentElement||document.body},strict:function(){var a;if(document.compatMode=="BackCompat")return!1;
if(a=document.doctype)return!/frameset|transitional/i.test(a.publicId);a=document.firstChild;if(a.nodeType!=8||/^DOCTYPE.+(transitional|frameset)/i.test(a.data))return!1;return!0}()},f=g.CSS={Size:function(a,b){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/b*this.value};this.convertFrom=function(a){return a/this.value*b};this.toString=function(){return this.value+this.unit}},addClass:function(a,b){var d=a.className;a.className=d+(d&&" ")+
b;return a},color:e(function(a){var b={};b.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(a,c,e){b.opacity=parseFloat(e);return"rgb("+c+")"});return b}),fontStretch:e(function(a){if(typeof a=="number")return a;if(/%$/.test(a))return parseFloat(a)/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}[a]||1}),getStyle:function(a){var b=document.defaultView;if(b&&b.getComputedStyle)return new r(b.getComputedStyle(a,
null));if(a.currentStyle)return new r(a.currentStyle);return new r(a.style)},gradient:e(function(a){var b={id:a,type:a.match(/^-([a-z]+)-gradient\(/)[1],stops:[]};a=a.substr(a.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,c=a.length,e;d<c;++d)e=a[d].split("=",2).reverse(),b.stops.push([e[1]||d/(c-1),e[0]]);return b}),quotedList:e(function(a){for(var b=[],d=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,c;c=d.exec(a);)b.push(c[3]||c[1]);return b}),recognizesMedia:e(function(a){var b=
document.createElement("style"),d;b.type="text/css";b.media=a;try{b.appendChild(document.createTextNode("/**/"))}catch(c){}a=n("head")[0];a.insertBefore(b,a.firstChild);d=(d=b.sheet||b.styleSheet)&&!d.disabled;a.removeChild(b);return d}),removeClass:function(a,b){a.className=a.className.replace(RegExp("(?:^|\\s+)"+b+"(?=\\s|$)","g"),"");return a},supports:function(a,b){var d=document.createElement("span").style;if(d[a]===void 0)return!1;d[a]=b;return d[a]===b},textAlign:function(a,b,d,c){b.get("textAlign")==
"right"?d>0&&(a=" "+a):d<c-1&&(a+=" ");return a},textShadow:e(function(a){if(a=="none")return null;for(var b=[],d={},c,e=0,f=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;c=f.exec(a);)c[0]==","?(b.push(d),d={},e=0):c[1]?d.color=c[1]:d[["offX","offY","blur"][e++]]=c[2];b.push(d);return b}),textTransform:function(){var a={uppercase:function(a){return a.toUpperCase()},lowercase:function(a){return a.toLowerCase()},capitalize:function(a){return a.replace(/(?:^|\s)./g,function(a){return a.toUpperCase()})}};
return function(b,d){var c=a[d.get("textTransform")];return c?c(b):b}}(),whiteSpace:function(){var a={inline:1,"inline-block":1,"run-in":1},b=/^\s+/,d=/\s+$/;return function(c,e,f,g,h){if(h)return c.replace(b,"").replace(d,"");g&&g.nodeName.toLowerCase()=="br"&&(c=c.replace(b,""));if(a[e.get("display")])return c;f.previousSibling||(c=c.replace(b,""));f.nextSibling||(c=c.replace(d,""));return c}}()};f.ready=function(){function a(a){if(!l[a.type.toLowerCase()])return!0;return a.disabled||b(a.sheet,
a.media||"screen")}function b(a,c){if(!f.recognizesMedia(c||"all"))return!0;if(!a||a.disabled)return!1;try{var d=a.cssRules,e;if(d){var g=0,k=d.length;a:for(;e=d[g],g<k;++g)switch(e.type){case 2:break;case 3:if(!b(e.styleSheet,e.media.mediaText))return!1;break;default:break a}}}catch(h){}return!0}function d(){if(document.createStyleSheet)return!0;var b,c;for(c=0;b=i[c];++c)if(b.rel.toLowerCase()=="stylesheet"&&!a(b))return!1;for(c=0;b=j[c];++c)if(!a(b))return!1;return!0}var c=!f.recognizesMedia("all"),
e=!1,g=[],i=n("link"),j=n("style"),l={"":1,"text/css":1};h.ready(function(){e||(e=f.getStyle(document.body).isUsable());if(c||e&&d()){c=!0;for(var a;a=g.shift();a());}else setTimeout(arguments.callee,10)});return function(a){c?a():g.push(a)}}();var x=" ".split(/\s+/).length==0,w="cufonglue",s="cufonshy",u="cufon-shy-disabled",A="cufon-viewport-resizing",K=new function(){var a={},b=0;this.get=function(d){d=d.cufid||(d.cufid=++b);return a[d]||(a[d]={})}},D=new function(){function a(a){var b=a.relatedTarget,
e;if(e=b)a:{try{if(this.contains){e=this.contains(b);break a}e=this.compareDocumentPosition(b)&16;break a}catch(f){}e=!1}e||d(this,a.type=="mouseover")}function b(a){if(!a)a=window.event;d(a.target||a.srcElement,a.type=="mouseenter")}function d(a,b){setTimeout(function(){var d=K.get(a).options;if(b)d=l(d,d.hover),d._mediatorMode=1;g.replace(a,d,!0)},10)}this.attach=function(c){c.onmouseenter===void 0?(I(c,"mouseover",a),I(c,"mouseout",a)):(I(c,"mouseenter",b),I(c,"mouseleave",b))};this.detach=function(c){c.onmouseenter===
void 0?(i(c,"mouseover",a),i(c,"mouseout",a)):(i(c,"mouseenter",b),i(c,"mouseleave",b))}},C=new function(){var a=[],b={};this.add=function(d,c){b[d]=a.push(c)-1};this.repeat=function(){var d;if(arguments.length){d=arguments;for(var c=[],e,f=0;e=d[f];++f)c[f]=a[b[e]];d=c}else d=a;for(e=0;c=d[e++];)g.replace(c[0],c[1],!0)}},G=!1,q=!1,F,y=!1,z={},E={},H={autoDetect:!1,engine:null,forceHitArea:!1,hover:!1,hoverables:{a:!0},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,noscript:1,optgroup:1,
option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},ignoreClass:null,modifyText:null,onAfterReplace:null,onBeforeReplace:null,printable:!0,selector:window.Sizzle||window.jQuery&&function(a){return jQuery(a)}||window.dojo&&dojo.query||window.glow&&glow.dom&&glow.dom.get||window.Ext&&Ext.query||window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query||window.$$&&function(a){return $$(a)}||window.$&&function(a){return $(a)}||document.querySelectorAll&&function(a){return document.querySelectorAll(a)}||
n,separate:"words",softHyphens:!0,textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none",trim:"advanced"},M={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};g.now=function(){h.ready();return g};g.refresh=function(){C.repeat.apply(C,arguments);return g};g.registerEngine=function(a,b){if(!b)return g;z[a]=b;return g.set("engine",a)};g.registerFont=function(a){if(!a)return g;a=new v(a);var b=a.family;E[b]||(E[b]=new J);E[b].add(a);return g.set("fontFamily",
'"'+b+'"')};g.replace=function(a,b,d){b=l(H,b);if(!b.engine)return g;G||(f.addClass(h.root(),"cufon-active cufon-loading"),f.ready(function(){f.addClass(f.removeClass(h.root(),"cufon-loading"),"cufon-ready")}),G=!0);if(b.hover)b.forceHitArea=!0;b.autoDetect&&delete b.fontFamily;if(typeof b.ignoreClass=="string")b.ignoreClass=RegExp("(?:^|\\s)(?:"+b.ignoreClass.replace(/\s+/g,"|")+")(?:\\s|$)");if(typeof b.textShadow=="string")b.textShadow=f.textShadow(b.textShadow);typeof b.color=="string"&&/^-/.test(b.color)?
b.textGradient=f.gradient(b.color):delete b.textGradient;d||C.add(a,arguments);if(a.nodeType||typeof a=="string")a=[a];f.ready(function(){for(var c=0,d=a.length;c<d;++c){var e=a[c];typeof e=="string"?g.replace(b.selector(e),b,!0):o(e,b)}});return g};g.set=function(a,b){H[a]=b;return g};return g}();
Cufon.registerEngine("vml",function(){function v(e,n){if(!isNaN(n)||/px$/i.test(n))return parseFloat(n);var l=e.style.left,j=e.runtimeStyle.left;e.runtimeStyle.left=e.currentStyle.left;e.style.left=n.replace("%","em");var i=e.style.pixelLeft;e.style.left=l;e.runtimeStyle.left=j;return i}function J(e,n,l,j){var i="computed"+j,o=n[i];isNaN(o)&&(o=n.get(j),n[i]=o=o=="normal"?0:~~l.convertFrom(v(e,o)));return o}var r=document.namespaces;if(r&&(r.add("cvml","urn:schemas-microsoft-com:vml"),r=null,r=document.createElement("cvml:shape"),
r.style.behavior="url(#default#VML)",r.coordsize)){r=null;var I=(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:'+(I?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}cufonglue{white-space:nowrap;display:inline-block;}.cufon-viewport-resizing cufonglue{white-space:normal;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,
"!important;"));var B={};return function(e,n,l,j,i,o,t){var r=n===null;if(r)n=i.alt;var g=e.viewBox,h;if(!(h=l.computedFontSize)){h=Cufon.CSS.Size;var f;f=l.get("fontSize");f=v(o,/(?:em|ex|%)$|^[a-z-]+$/i.test(f)?"1em":f);h=l.computedFontSize=new h(f+"px",e.baseSize)}f=h;if(r)h=i,i=i.firstChild;else{h=document.createElement("cufon");h.className="cufon cufon-vml";h.alt=n;i=document.createElement("cufoncanvas");h.appendChild(i);if(j.printable){var x=document.createElement("cufontext");x.appendChild(document.createTextNode(n));
h.appendChild(x)}t||h.appendChild(document.createElement("cvml:shape"))}t=h.style;var w=i.style,s=f.convert(g.height);x=Math.ceil(s);s=x/s*Cufon.CSS.fontStretch(l.get("fontStretch"));var u=g.minX,A=g.minY;w.height=x;w.top=Math.round(f.convert(A-e.ascent));w.left=Math.round(f.convert(u));t.height=f.convert(e.height)+"px";var K=l.get("color"),D=Cufon.CSS.textTransform(n,l).split(""),C=e.spacing(D,J(o,l,f,"letterSpacing"),J(o,l,f,"wordSpacing"));if(!C.length)return null;n=C.total;var G=-u+n+(g.width-
C[C.length-1]);w=f.convert(G*s);w=Math.round(w);g=G+","+g.height;var q;G="r"+g+"ns";var F;if(F=j.textGradient){var y=j.textGradient;F=y.id;if(!B[F]){y=y.stops;var z=document.createElement("cvml:fill"),E=[];z.type="gradient";z.angle=180;z.focus="0";z.method="none";z.color=y[0][1];for(var H=1,M=y.length-1;H<M;++H)E.push(y[H][0]*100+"% "+y[H][1]);z.colors=E.join(",");z.color2=y[M][1];B[F]=z}F=B[F]}y=e.glyphs;z=0;E=j.textShadow;H=-1;for(M=0;D[++H];){var a=y[D[H]]||e.missingGlyph,b;if(a){if(r)for(b=i.childNodes[M];b.firstChild;)b.removeChild(b.firstChild);
else b=document.createElement("cvml:shape"),i.appendChild(b);b.stroked="f";b.coordsize=g;b.coordorigin=q=u-z+","+A;b.path=(a.d?"m"+a.d+"xe":"")+"m"+q+G;b.fillcolor=K;F&&b.appendChild(F.cloneNode(!1));q=b.style;q.width=w;q.height=x;if(E){q=E[0];a=E[1];var d=Cufon.CSS.color(q.color),c,k=document.createElement("cvml:shadow");k.on="t";k.color=d.color;k.offset=q.offX+","+q.offY;if(a)c=Cufon.CSS.color(a.color),k.type="double",k.color2=c.color,k.offset2=a.offX+","+a.offY;k.opacity=d.opacity||c&&c.opacity||
1;b.appendChild(k)}z+=C[M++]}}e=b.nextSibling;if(j.forceHitArea){if(!e)e=document.createElement("cvml:rect"),e.stroked="f",e.className="cufon-vml-cover",j=document.createElement("cvml:fill"),j.opacity=0,e.appendChild(j),i.appendChild(e);j=e.style;j.width=w;j.height=x}else e&&i.removeChild(e);t.width=Math.max(Math.ceil(f.convert(n*s)),0);if(I){j=l.computedYAdjust;if(j===void 0)j=l.get("lineHeight"),j=="normal"?j="1em":isNaN(j)||(j+="em"),l.computedYAdjust=j=0.5*(v(o,j)-parseFloat(t.height));if(j)t.marginTop=
Math.ceil(j)+"px",t.marginBottom=j+"px"}return h}}}());
Cufon.registerEngine("canvas",function(){var v=document.createElement("canvas");if(v&&v.getContext&&v.getContext.apply){v=null;var J=Cufon.CSS.supports("display","inline-block");v=!J&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var r=document.createElement("style");r.type="text/css";r.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(v?
"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}"+(J?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}cufonglue{white-space:nowrap;display:inline-block;}.cufon-viewport-resizing cufonglue{white-space:normal;}}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));
document.getElementsByTagName("head")[0].appendChild(r);return function(r,B,e,n,l){function j(){var e=r.glyphs,f,g=-1,h=-1;for(q.scale(G,1);K[++g];)if(f=e[K[g]]||r.missingGlyph){if(f.d){q.beginPath();if(f.code){var i=f.code;f=q;for(var j=0,a=i.length;j<a;++j){var b=i[j];f[b.m].apply(f,b.a)}}else{i=f;f="m"+f.d;j=q;b=a=0;var d=[],c=/([mrvxe])([^a-z]*)/g,k=void 0,l=0;a:for(;k=c.exec(f);++l){var m=k[2].split(",");switch(k[1]){case "v":d[l]={m:"bezierCurveTo",a:[a+~~m[0],b+~~m[1],a+~~m[2],b+~~m[3],a+=
~~m[4],b+=~~m[5]]};break;case "r":d[l]={m:"lineTo",a:[a+=~~m[0],b+=~~m[1]]};break;case "m":d[l]={m:"moveTo",a:[a=~~m[0],b=~~m[1]]};break;case "x":d[l]={m:"closePath"};break;case "e":break a}j[d[l].m].apply(j,d[l].a)}i.code=d}q.fill()}q.translate(D[++h],0)}q.restore()}var i=B===null;i&&(B=l.getAttribute("alt"));var o=r.viewBox,t=e.getSize("fontSize",r.baseSize),v=0,g=0,h=0,f=0,x=n.textShadow,w=[];if(x)for(var s=x.length;s--;){var u=x[s],A=t.convertFrom(parseFloat(u.offX));u=t.convertFrom(parseFloat(u.offY));
w[s]=[A,u];u<v&&(v=u);A>g&&(g=A);u>h&&(h=u);A<f&&(f=A)}var K=Cufon.CSS.textTransform(B,e).split(""),D=r.spacing(K,~~t.convertFrom(parseFloat(e.get("letterSpacing"))||0),~~t.convertFrom(parseFloat(e.get("wordSpacing"))||0));if(!D.length)return null;u=D.total;g+=o.width-D[D.length-1];f+=o.minX;i?(i=l,s=l.firstChild):(i=document.createElement("cufon"),i.className="cufon cufon-canvas",i.setAttribute("alt",B),s=document.createElement("canvas"),i.appendChild(s),n.printable&&(l=document.createElement("cufontext"),
l.appendChild(document.createTextNode(B)),i.appendChild(l)));l=i.style;var C=s.style;A=t.convert(o.height);B=Math.ceil(A)/A;var G=B*Cufon.CSS.fontStretch(e.get("fontStretch"));u*=G;g=Math.ceil(t.convert(u+g-f));h=Math.ceil(t.convert(o.height-v+h));s.width=g;s.height=h;C.width=g+"px";C.height=h+"px";v+=o.minY;C.top=Math.round(t.convert(v-r.ascent))+"px";C.left=Math.round(t.convert(f))+"px";h=Math.max(Math.ceil(t.convert(u)),0)+"px";J?(l.width=h,l.height=t.convert(r.height)+"px"):(l.paddingLeft=h,l.paddingBottom=
t.convert(r.height)-1+"px");var q=s.getContext("2d");t=A/o.height;q.scale(t,t*B);q.translate(-f,-v);q.save();if(x)for(s=x.length;s--;)u=x[s],q.save(),q.fillStyle=u.color,q.translate.apply(q,w[s]),j();if(n=n.textGradient){e=n.stops;o=q.createLinearGradient(0,o.minY,0,o.maxY);s=0;for(n=e.length;s<n;++s)o.addColorStop.apply(o,e[s]);q.fillStyle=o}else q.fillStyle=e.get("color");j();return i}}}());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 Monotype Imaging, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging, Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansStd-BoldItalic
 * 
 * Vendor URL:
 * http://www.monotypeimaging.com.
 * 
 * License information:
 * http://www.monotypeimaging.com/html/type/license.html.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"728,-509v0,24,-2,50,-7,78r-21,119v-41,234,-165,321,-353,321v-137,0,-246,-81,-246,-245v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v134,0,246,73,246,243xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66xm686,-938v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":698,"k":{"T":30,"V":24,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"X":49,"Z":28,"\u017d":28,"x":13}},{"d":"623,-534v0,2,0,5,-1,8r-88,506v-2,11,-12,20,-23,20r-102,0v-10,0,-17,-8,-17,-17r0,-3r4,-29v-54,42,-102,58,-155,58v-120,0,-168,-92,-168,-192v0,-19,2,-37,5,-56v0,0,13,-75,16,-94v30,-174,138,-248,295,-248v68,0,142,10,207,25v17,4,27,7,27,22xm445,-442v-18,-3,-49,-6,-77,-6v-71,0,-100,42,-114,123r-18,105v-2,11,-3,22,-3,33v0,33,12,61,57,61v34,0,73,-16,106,-35xm608,-639v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":581,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":23}},{"d":"501,-230r-170,0r-3,20v-6,33,-19,57,-33,76r274,0v10,0,16,6,16,14r0,4r-17,97v-2,11,-12,19,-23,19r-442,0v-11,0,-16,-9,-16,-18v0,-2,1,-4,1,-6r13,-70v2,-12,8,-18,13,-24v17,-18,43,-58,49,-92r3,-20r-50,0v-11,0,-18,-8,-16,-19r10,-57v2,-11,13,-19,24,-19r49,0r12,-65r-51,0v-11,0,-17,-8,-15,-19r10,-57v2,-11,12,-19,23,-19r50,0r7,-41v32,-180,110,-226,296,-226v57,0,131,12,161,19v19,4,18,9,16,20r-18,99v-2,14,-12,19,-22,18v-41,-5,-110,-12,-163,-12v-74,0,-94,17,-105,81r-8,42r169,0v11,0,19,8,17,19r-10,57v-2,11,-12,19,-23,19r-169,0r-12,65r169,0v11,0,18,8,16,19r-10,57v-2,11,-11,19,-22,19"},{"d":"164,-706r95,-40v4,-2,9,-3,15,-3r49,0v13,0,13,8,12,17r-67,380v-3,13,-8,17,-18,17r-71,0v-9,0,-17,-4,-14,-17r51,-290r-57,23v-15,5,-21,1,-18,-12r11,-62v1,-5,4,-10,12,-13xm774,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm577,-214v-17,-16,-25,-41,-25,-68v0,-97,67,-137,168,-137r6,0v79,0,129,35,129,99v0,46,-20,83,-58,106v18,16,28,46,28,75v0,101,-81,144,-173,144r-6,0v-78,0,-128,-41,-128,-108v0,-43,19,-88,59,-111xm672,-175v-31,0,-53,24,-53,62v0,23,14,38,41,38r6,0v38,0,58,-26,58,-65v0,-18,-6,-35,-35,-35r-17,0xm686,-252r17,0v35,0,51,-23,51,-54v0,-21,-12,-33,-41,-33r-7,0v-35,0,-57,18,-57,55v0,20,12,32,37,32","w":855},{"d":"518,-121r0,3r-17,93v-2,13,-8,18,-23,21v-34,7,-113,13,-166,13v-110,0,-211,-39,-211,-165v0,-15,1,-32,5,-50r2,-10r-44,37v-3,3,-6,4,-8,4v-3,0,-4,-2,-4,-4r0,-2r24,-139v2,-10,2,-13,13,-22r48,-40r60,-341v2,-11,13,-20,24,-20r131,0v10,0,16,7,16,16r0,4r-30,173r81,-68v3,-2,5,-3,8,-3v4,0,7,2,7,6r0,2r-24,135v-1,8,-2,12,-10,18r-92,77r-31,177v-2,10,-3,19,-3,26v0,32,17,42,55,42r172,0v10,0,17,7,17,17","w":519,"k":{"O":30,"\u00d8":30,"\u0152":30,"\u00d3":30,"\u00d4":30,"\u00d6":30,"\u00d2":30,"\u00d5":30,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":10,"\u00f8":10,"\u0153":10,"\u00f3":10,"\u00f4":10,"\u00f6":10,"\u00f2":10,"\u00f5":10,"y":63,"\u00fd":63,"\u00ff":63,"C":13,"\u00c7":13,"E":16,"\u00c9":16,"\u00ca":16,"\u00cb":16,"\u00c8":16,"G":27,"L":22,"\u0141":22,"T":82,"U":34,"\u00da":34,"\u00db":34,"\u00dc":34,"\u00d9":34,"V":64,"Y":96,"\u00dd":96,"\u0178":96,"v":21,"\u2013":16,"\u2014":16,"S":7,"\u0160":7,"-":16,"\u00ae":24,"\u2122":24}},{"d":"578,-72v-27,153,-145,221,-300,221v-78,0,-153,-12,-202,-28v-9,-3,-17,-9,-15,-19r14,-80v2,-12,7,-20,23,-18v69,6,143,9,197,9v71,0,104,-30,114,-85r3,-18v8,-45,0,-86,-65,-86r-176,0v-11,0,-18,-9,-16,-20r15,-85v2,-11,11,-19,22,-19r172,0v65,0,93,-43,101,-87r2,-14v8,-45,-8,-75,-86,-75v-70,0,-122,7,-199,12v-14,1,-19,-5,-17,-18r15,-80v1,-10,12,-16,23,-19v55,-16,131,-31,209,-31v163,0,252,55,225,205r-2,14v-10,58,-58,123,-116,153v50,29,74,85,62,150"},{"d":"608,-379v0,19,-4,46,-6,58r-13,70v-32,170,-119,260,-296,260v-136,0,-210,-86,-210,-204v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v135,0,211,80,211,202xm446,-367v0,-52,-24,-76,-73,-76v-58,0,-95,34,-111,122r-13,70v-3,18,-5,34,-5,48v0,52,24,75,74,75v65,0,95,-42,110,-123r13,-70v3,-17,5,-33,5,-46xm628,-771r0,5r-3,20v-13,90,-57,122,-137,122v-20,0,-56,-10,-74,-24r-37,-29v-15,-12,-26,-18,-37,-18v-13,0,-23,3,-28,27r-4,19v-2,11,-8,17,-18,17r-71,0v-8,0,-13,-4,-13,-12v0,-1,1,-3,1,-5r4,-19v18,-87,57,-121,139,-121v20,0,52,9,71,23r38,28v15,11,26,18,37,18v15,0,24,-2,28,-27r3,-19v2,-11,9,-16,19,-16r70,0v8,0,12,4,12,11","w":590,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":20,"x":38,"z":16,"\u017e":16,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"413,-107v-1,9,-5,17,-19,17r-30,0r-12,73v-2,12,-5,17,-19,17r-72,0v-12,0,-14,-8,-13,-17r12,-73r-151,0v-8,0,-15,-4,-13,-17r10,-52v1,-6,3,-14,10,-21r211,-224v6,-6,12,-10,20,-10r58,0v14,0,16,8,14,17r-40,224r30,0v13,0,15,6,13,17xm278,-173r18,-103r-94,103r76,0","w":355},{"d":"402,-615r0,2r-24,135v-1,8,-2,12,-10,18r-75,63r-66,376v-2,11,-13,21,-24,21r-122,0v-10,0,-17,-8,-17,-18r0,-3r38,-216r-69,58v-3,3,-6,4,-8,4v-3,0,-4,-2,-4,-4r0,-2r24,-139v2,-10,2,-12,13,-22r73,-62r61,-343v2,-11,13,-20,24,-20r122,0v10,0,16,7,16,17r0,3r-32,183r65,-54v3,-2,5,-3,8,-3v4,0,7,2,7,6","w":282},{"d":"309,-531r0,3r-22,126v-2,11,-13,19,-24,19r-117,0v-10,0,-17,-6,-17,-16r0,-3r22,-126v2,-11,13,-20,24,-20r117,0v10,0,17,7,17,17xm242,-153v0,2,-1,5,-3,9r-134,224v-7,11,-13,20,-24,20r-88,0v-8,0,-14,-5,-14,-12v0,-3,1,-5,2,-8r103,-224v5,-12,13,-19,24,-19r122,0v8,0,12,4,12,10","w":275},{"d":"662,-563v0,4,-1,8,-4,11r-211,262r134,269v1,2,1,4,1,6v0,8,-5,15,-13,15r-143,0v-11,0,-14,-6,-21,-21r-72,-155r-120,156v-12,15,-19,20,-30,20r-134,0v-6,0,-9,-4,-9,-9v0,-4,1,-7,4,-11r224,-278r-126,-254v-1,-2,-2,-4,-2,-7v0,-7,5,-14,13,-14r143,0v11,0,15,8,21,21r65,138r106,-138v12,-15,19,-21,30,-21r134,0v6,0,10,5,10,10","w":617,"k":{"q":46,"d":47,"a":62,"\u00e6":62,"\u00e1":62,"\u00e2":62,"\u00e4":62,"\u00e0":62,"\u00e5":62,"\u00e3":62,"e":43,"\u00e9":43,"\u00ea":43,"\u00eb":43,"\u00e8":43,"o":43,"\u00f8":43,"\u0153":43,"\u00f3":43,"\u00f4":43,"\u00f6":43,"\u00f2":43,"\u00f5":43,"u":23,"\u00fa":23,"\u00fb":23,"\u00fc":23,"\u00f9":23,"c":31,"\u00e7":31}},{"d":"620,-415v0,19,-2,39,-6,61r-58,333v-2,11,-14,21,-25,21r-121,0v-10,0,-16,-8,-16,-17r0,-4r58,-333v3,-17,5,-32,5,-44v0,-37,-24,-49,-54,-49v-38,0,-86,19,-108,32r-69,394v-2,11,-13,21,-24,21r-121,0v-10,0,-17,-8,-17,-18r0,-3r94,-532v2,-11,12,-20,23,-20r109,0v10,0,17,7,17,17r0,3r-4,24v45,-34,103,-52,156,-52v86,0,161,48,161,166xm638,-771r0,5r-3,20v-13,90,-57,122,-137,122v-20,0,-56,-10,-74,-24r-37,-29v-15,-12,-26,-18,-37,-18v-13,0,-23,3,-28,27r-4,19v-2,11,-8,17,-18,17r-71,0v-8,0,-13,-4,-13,-12v0,-1,1,-3,1,-5r4,-19v18,-87,57,-121,139,-121v20,0,52,9,71,23r38,28v15,11,26,18,37,18v15,0,24,-2,28,-27r3,-19v2,-11,9,-16,19,-16r70,0v8,0,12,4,12,11","w":612,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":26}},{"d":"370,-356v-1,8,-7,16,-18,16r-66,0v-10,0,-12,-8,-11,-16r32,-181v2,-9,2,-16,2,-22v0,-18,-7,-24,-24,-24v-18,0,-37,7,-58,17r-37,210v-1,8,-6,16,-17,16r-66,0v-10,0,-13,-8,-12,-16r51,-289v1,-7,5,-14,17,-14r62,0v12,0,13,7,12,14r-1,9v31,-21,59,-28,85,-28v66,0,85,40,85,86v0,13,-2,27,-4,41","w":347,"k":{"v":14,"y":13,"\u00fd":13,"\u00ff":13}},{"d":"606,-372v0,17,-2,36,-5,54r-10,58v-3,15,-12,24,-25,24r-321,0v-2,15,-4,29,-4,41v0,52,25,70,89,70v63,0,153,-5,194,-9r3,0v9,0,16,4,16,13r0,3r-14,76v-3,16,-7,23,-25,27v-67,16,-123,24,-210,24v-108,0,-210,-62,-210,-201v0,-17,2,-36,5,-56r12,-70v30,-174,135,-263,299,-263v135,0,206,92,206,209xm455,-380v0,-46,-22,-71,-78,-71v-68,0,-100,46,-115,115r188,0v3,-16,5,-31,5,-44xm606,-639v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":590,"k":{"y":20,"\u00fd":20,"\u00ff":20,"T":60,"v":20,"x":23,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"728,-509v0,24,-2,50,-7,78r-21,119v-41,234,-165,321,-353,321v-137,0,-246,-81,-246,-245v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v134,0,246,73,246,243xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66xm717,-933r0,5r-3,20v-13,90,-57,122,-137,122v-20,0,-56,-10,-74,-24r-37,-29v-15,-12,-26,-18,-37,-18v-13,0,-23,3,-28,27r-4,19v-2,11,-8,17,-18,17r-71,0v-8,0,-13,-4,-13,-12v0,-1,1,-3,1,-5r4,-19v18,-87,57,-121,139,-121v20,0,52,9,71,23r38,28v15,11,26,18,37,18v15,0,24,-2,28,-27r3,-19v2,-11,9,-16,19,-16r70,0v8,0,12,4,12,11","w":698,"k":{"T":30,"V":24,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"X":49,"Z":28,"\u017d":28,"x":13}},{"d":"623,-534v0,2,0,5,-1,8r-88,506v-2,11,-12,20,-23,20r-102,0v-10,0,-17,-8,-17,-17r0,-3r4,-29v-54,42,-102,58,-155,58v-120,0,-168,-92,-168,-192v0,-19,2,-37,5,-56v0,0,13,-75,16,-94v30,-174,138,-248,295,-248v68,0,142,10,207,25v17,4,27,7,27,22xm445,-442v-18,-3,-49,-6,-77,-6v-71,0,-100,42,-114,123r-18,105v-2,11,-3,22,-3,33v0,33,12,61,57,61v34,0,73,-16,106,-35xm608,-756r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm391,-756r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":581,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":23}},{"d":"540,-547v0,88,-47,120,-122,120v-20,0,-50,-8,-71,-22r-42,-29v-17,-12,-30,-18,-41,-18v-13,0,-23,6,-23,27r0,19v0,11,-5,17,-15,17r-71,0v-10,0,-15,-6,-15,-17r0,-19v0,-86,48,-119,123,-119v20,0,49,7,70,21r43,28v17,11,29,18,40,18v15,0,23,-6,23,-27r0,-19v0,-11,6,-16,16,-16r70,0v10,0,15,5,15,16r0,20xm540,-327v0,88,-47,120,-122,120v-20,0,-50,-8,-71,-22r-42,-29v-17,-12,-30,-18,-41,-18v-13,0,-23,6,-23,27r0,19v0,11,-5,17,-15,17r-71,0v-10,0,-15,-6,-15,-17r0,-19v0,-86,48,-119,123,-119v20,0,49,7,70,21r43,28v17,11,29,18,40,18v15,0,23,-6,23,-27r0,-19v0,-11,6,-16,16,-16r70,0v10,0,15,5,15,16r0,20","w":549},{"d":"714,-858r-371,817r-31,-423v-1,-13,-8,-15,-17,-15r-168,0v-8,0,-12,5,-14,14r-17,97v-1,6,0,12,9,12r62,0v8,0,9,2,10,11r32,402v2,13,5,18,17,18r185,0v13,0,23,-5,28,-16r427,-918v4,-8,5,-14,-8,-14r-125,0v-13,0,-13,4,-19,15","w":730},{"d":"653,-457v0,67,-8,145,-21,210v-35,170,-127,256,-292,256v-153,0,-230,-78,-230,-211v0,-29,2,-55,10,-106v31,-177,137,-237,270,-237v37,0,83,11,108,30v-1,-7,-3,-17,-6,-25v-11,-82,-49,-160,-191,-160v-30,0,-62,2,-97,8v-11,2,-16,-2,-15,-11r7,-65v2,-14,8,-17,19,-20v37,-7,75,-11,115,-11v219,0,323,136,323,342xm479,-339v0,-54,-22,-82,-79,-82v-68,0,-103,47,-116,137v-7,47,-9,66,-9,85v0,56,23,85,79,85v67,0,101,-47,115,-137v8,-48,10,-70,10,-88","w":623},{"d":"872,-715v0,2,-1,4,-1,7r-123,694v-2,11,-11,14,-19,14r-132,0v-8,0,-12,-7,-12,-16r0,-4r73,-417r0,-3v0,-4,-2,-5,-4,-5v-3,0,-5,2,-9,7r-119,165v-9,12,-20,17,-33,17r-80,0v-13,0,-22,-5,-27,-17r-61,-165v-2,-5,-4,-7,-7,-7v-2,0,-5,1,-6,8r-73,417v-2,11,-11,20,-20,20r-132,0v-7,0,-15,-3,-15,-11r0,-3r123,-695v4,-21,21,-34,42,-34r87,0v21,0,33,11,39,27r103,285v3,8,5,13,9,13v4,0,7,-5,13,-13r203,-285v12,-17,28,-27,49,-27r101,0v19,0,31,11,31,28","w":816,"k":{"V":16,"Y":27,"\u00dd":27,"\u0178":27}},{"d":"324,-556r0,3r-94,533v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r94,-533v2,-11,12,-20,23,-20r122,0v10,0,17,7,17,17xm454,-754r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm237,-754r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":290},{"d":"649,-555r0,3r-94,532v-2,11,-12,20,-23,20r-112,0v-10,0,-17,-7,-17,-16r0,-4r5,-24v-47,31,-90,53,-159,53v-99,0,-156,-62,-156,-167v0,-19,2,-39,6,-61r58,-333v2,-11,14,-21,25,-21r121,0v10,0,16,8,16,17r0,4r-58,333v-3,17,-5,34,-5,46v0,34,15,48,62,48v20,0,69,-15,100,-33r69,-394v2,-11,13,-21,24,-21r121,0v10,0,17,8,17,18xm631,-773v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":612},{"d":"633,0r-597,0v-15,0,-17,-12,-13,-21r259,-620v40,-96,102,-111,185,-111v69,0,140,15,146,111r39,620v1,17,-6,21,-19,21xm471,-137r-19,-458v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-179,458r225,0","w":669,"k":{"v":46,"V":56,"T":70,"G":20,"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"L":20,"\u0141":20,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"Y":76,"\u00dd":76,"\u0178":76}},{"d":"622,-346v0,11,-9,16,-20,16r-431,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r431,0v11,0,20,5,20,16r0,90"},{"d":"454,-628v0,13,-1,27,-4,42r-6,33v-20,110,-75,165,-185,165v-79,0,-131,-50,-131,-129v0,-11,1,-23,3,-36r6,-33v23,-126,87,-166,186,-166v78,0,131,41,131,124xm347,-621v0,-32,-14,-41,-40,-41v-34,0,-53,16,-64,76r-6,33v-2,12,-3,23,-3,32v0,33,14,44,41,44v34,0,52,-20,62,-76r6,-33v3,-14,4,-25,4,-35","w":380},{"d":"690,-589v0,76,-46,160,-123,192v58,34,75,91,75,132v0,176,-114,274,-289,274v-17,0,-40,-2,-60,-6v-10,-2,-18,-7,-16,-19r17,-96v2,-11,6,-16,14,-16r1,0v12,1,24,1,36,1v92,0,134,-44,134,-136v0,-42,-25,-71,-92,-71r-31,0v-10,0,-17,-6,-17,-16r0,-3r14,-79v2,-11,13,-19,24,-19r31,0v78,0,119,-51,119,-115v0,-48,-27,-69,-86,-69v-87,0,-116,39,-130,120r-87,494v-2,11,-12,21,-23,21r-124,0v-10,0,-16,-8,-16,-17r0,-4r87,-494v35,-199,128,-259,304,-259v155,0,238,69,238,185","w":652},{"d":"644,-298v-38,217,-145,307,-324,307v-142,0,-222,-87,-222,-229v0,-24,2,-51,7,-78r1,-6v40,-228,150,-308,323,-308v140,0,224,79,224,226v0,25,-3,53,-8,82xm473,-298r1,-6v6,-32,8,-58,8,-79v0,-70,-29,-87,-78,-87v-60,0,-103,28,-127,166r-1,6v-6,32,-8,58,-8,79v0,70,29,86,77,86v62,0,104,-27,128,-165"},{"d":"510,-572r0,3r-18,104v-2,10,-11,16,-22,16r-92,0r-15,88r92,0v10,0,16,4,16,12r0,3r-18,103v-2,10,-11,16,-22,16r-92,0r-38,213v-2,11,-8,20,-19,20r-132,0v-9,0,-13,-6,-13,-15r0,-5r38,-213r-86,0v-10,0,-16,-5,-16,-13r0,-3r18,-103v2,-10,11,-15,22,-15r86,0r15,-88r-86,0v-10,0,-16,-5,-16,-13r0,-3r18,-104v2,-10,11,-15,22,-15r86,0r29,-164v2,-10,9,-19,20,-19r131,0v9,0,13,7,13,15r0,4r-29,164r92,0v10,0,16,4,16,12","w":440},{"d":"668,-558v0,3,-1,5,-2,8r-272,589v-55,118,-97,163,-244,163v-37,0,-98,-8,-122,-16v-10,-3,-18,-7,-18,-15r0,-3r15,-81v2,-11,12,-19,23,-19r2,0v32,2,91,8,124,8v36,0,57,-12,75,-52r14,-31r-5,0v-40,0,-77,-15,-86,-93r-53,-450r0,-3v0,-12,7,-20,23,-20r131,0v10,0,15,9,16,19r23,382v1,12,4,13,10,13r8,0r163,-395v4,-10,13,-19,24,-19r135,0v9,0,16,7,16,15xm610,-754r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm393,-754r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":592,"k":{"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":23,"\u00f8":23,"\u0153":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,",":55,"\u201a":55,"\u201e":55,".":61,"\u2026":61,"c":27,"\u00e7":27,"d":13,"q":20}},{"d":"316,-597v-1,7,-5,14,-16,14r-4,0v-25,0,-45,3,-69,18r-37,209v-1,8,-5,16,-18,16r-65,0v-8,0,-15,-6,-13,-16r51,-289v1,-7,5,-14,18,-14r64,0v13,0,13,7,12,14r-2,12v20,-25,50,-31,76,-31v13,0,14,6,12,15","w":225,"k":{"q":8,"d":8,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,",":17,"\u201a":17,"\u201e":17,".":17,"\u2026":17,"c":8,"\u00e7":8}},{"d":"621,-414v0,14,-1,29,-4,44r-61,350v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r61,-349v2,-11,3,-20,3,-28v0,-39,-22,-52,-76,-52v-30,0,-60,3,-82,8r-74,420v-2,11,-13,21,-24,21r-121,0v-10,0,-17,-8,-17,-18r0,-3r128,-726v2,-11,12,-20,23,-20r122,0v10,0,17,7,17,17r0,3r-32,179v28,-6,68,-13,107,-13v130,0,192,70,192,167","w":612,"k":{"v":20,"y":20,"\u00fd":20,"\u00ff":20}},{"d":"780,-374v0,184,-150,332,-334,332v-184,0,-332,-148,-332,-332v0,-184,148,-335,332,-335v184,0,334,151,334,335xm728,-374v0,-155,-127,-283,-282,-283v-155,0,-281,128,-281,283v0,155,126,280,281,280v155,0,282,-125,282,-280xm549,-183v0,8,-4,12,-13,14v-17,5,-44,9,-82,9v-107,0,-170,-60,-170,-189r0,-56v0,-130,63,-189,170,-189v38,0,66,6,82,10v9,2,13,4,13,12r0,63v0,9,-5,12,-12,12r-2,0v-23,-3,-42,-5,-81,-5v-35,0,-67,18,-67,97r0,56v0,81,32,98,67,98v34,0,58,-2,81,-5r3,0v6,0,11,2,11,11r0,62","w":750},{"d":"208,-551r57,-36v50,-32,64,-35,64,-57v0,-19,-11,-24,-47,-24v-32,0,-72,3,-107,7v-13,2,-16,-6,-14,-17r7,-42v2,-9,5,-14,17,-17v33,-9,80,-17,120,-17v86,0,129,28,129,94v0,48,-23,87,-86,125r-50,31v-53,32,-87,54,-93,81r165,0v13,0,16,5,14,15r-9,56v-2,11,-6,17,-20,17r-241,0v-12,0,-16,-8,-14,-17r9,-55v11,-62,39,-105,99,-144","w":355},{"d":"325,-345v124,-50,158,-53,158,-98v0,-26,-26,-34,-99,-34v-61,0,-138,8,-200,13v-14,1,-18,-6,-16,-20r14,-78v1,-10,11,-16,22,-19v59,-17,144,-31,218,-31v151,0,229,47,229,150v0,113,-57,168,-198,222v-113,44,-161,63,-167,94r0,4r280,0v16,0,18,8,16,19r-18,103v-2,11,-5,20,-23,20r-445,0v-11,0,-19,-9,-17,-20r12,-70v28,-154,98,-201,234,-255"},{"d":"649,-555r0,3r-94,532v-2,11,-12,20,-23,20r-112,0v-10,0,-17,-7,-17,-16r0,-4r5,-24v-47,31,-90,53,-159,53v-99,0,-156,-62,-156,-167v0,-19,2,-39,6,-61r58,-333v2,-11,14,-21,25,-21r121,0v10,0,16,8,16,17r0,4r-58,333v-3,17,-5,34,-5,46v0,34,15,48,62,48v20,0,69,-15,100,-33r69,-394v2,-11,13,-21,24,-21r121,0v10,0,17,8,17,18xm506,-639v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":612},{"d":"1089,-747r-32,179v28,-6,68,-13,107,-13v130,0,192,70,192,167v0,14,-1,29,-4,44r-61,350v-2,11,-6,20,-24,20r-122,0v-10,0,-19,-5,-16,-20r61,-349v2,-11,3,-20,3,-28v0,-39,-22,-52,-76,-52v-30,0,-60,3,-82,8r-74,420v-2,11,-8,21,-24,21r-121,0v-13,0,-19,-8,-17,-21r113,-640r-142,0v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-85,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-178,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v12,3,18,5,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r178,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20","w":1347},{"d":"566,-548v0,3,0,6,-1,9r-13,74v-2,10,-6,22,-17,35r-249,283v-3,3,-4,6,-4,7v0,3,2,4,6,4r190,0v9,0,15,5,15,13r0,3r-17,100v-2,11,-13,20,-24,20r-375,0v-16,0,-29,-5,-29,-24v0,-3,0,-6,1,-9r11,-64v3,-18,9,-24,21,-38r261,-296v3,-3,4,-6,4,-8v0,-3,-2,-4,-6,-4r-193,0v-9,0,-14,-5,-14,-13r0,-3r17,-94v2,-11,12,-20,23,-20r365,0v16,0,28,7,28,25","w":515,"k":{"e":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00e8":23,"o":16,"\u00f8":16,"\u0153":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"d":6}},{"d":"130,-421v37,3,84,5,107,5v44,0,57,-21,57,-59v0,-18,-4,-31,-31,-31r-95,0v-12,0,-15,-7,-13,-17r8,-46v2,-10,6,-16,19,-16r93,0v38,0,48,-32,48,-52v0,-21,-10,-31,-42,-31v-23,0,-62,1,-98,6v-18,3,-25,-1,-23,-15r7,-43v2,-10,10,-14,18,-17v30,-8,71,-17,119,-17v81,0,125,33,125,93v0,54,-24,95,-61,115v21,18,30,37,30,71v0,97,-58,145,-172,145v-43,0,-84,-7,-112,-15v-7,-3,-14,-6,-12,-17r8,-43v2,-10,7,-16,20,-16","w":355},{"d":"772,-727r0,3r-79,445v-45,251,-181,288,-340,288v-140,0,-243,-65,-243,-217v0,-22,1,-45,6,-71r79,-445v2,-11,12,-19,23,-19r131,0v10,0,17,7,17,16r0,3r-79,445v-4,22,-6,42,-6,59v0,60,28,86,98,86v90,0,125,-43,143,-145r79,-445v2,-11,12,-19,23,-19r130,0v10,0,18,6,18,16xm705,-937v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":711,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":16}},{"d":"744,-283v0,12,-6,22,-14,30r-186,178v-9,9,-17,12,-32,12r-133,0v-8,0,-12,-4,-12,-9v0,-4,2,-8,6,-11r224,-203r-141,-203v-2,-2,-2,-5,-2,-7v0,-7,7,-13,16,-13r109,0v15,0,22,3,28,12r127,185v7,10,10,20,10,29xm433,-283v0,12,-6,22,-14,30r-186,178v-9,9,-17,12,-32,12r-133,0v-8,0,-12,-4,-12,-9v0,-4,2,-8,6,-11r224,-203r-141,-203v-2,-2,-2,-5,-2,-7v0,-7,7,-13,16,-13r109,0v15,0,22,3,28,12r127,185v7,10,10,20,10,29","w":718},{"d":"352,-751r0,4r-108,499v-2,11,-13,21,-24,21r-85,0v-10,0,-18,-9,-18,-18r0,-3r68,-499v1,-11,14,-20,25,-20r125,0v10,0,17,7,17,16xm241,-150r0,4r-22,126v-2,11,-12,20,-23,20r-118,0v-10,0,-16,-7,-16,-16r0,-4r22,-126v2,-11,12,-19,23,-19r118,0v10,0,16,6,16,15","w":273},{"d":"579,-771r0,5r-3,20v-13,90,-57,122,-137,122v-20,0,-56,-10,-74,-24r-37,-29v-15,-12,-26,-18,-37,-18v-13,0,-23,3,-28,27r-4,19v-2,11,-8,17,-18,17r-71,0v-8,0,-13,-4,-13,-12v0,-1,1,-3,1,-5r4,-19v18,-87,57,-121,139,-121v20,0,52,9,71,23r38,28v15,11,26,18,37,18v15,0,24,-2,28,-27r3,-19v2,-11,9,-16,19,-16r70,0v8,0,12,4,12,11","w":497},{"d":"292,-363v0,11,-9,21,-20,21r-123,0v-11,0,-21,-10,-21,-21r0,-345v0,-11,10,-20,21,-20r123,0v11,0,20,9,20,20r0,345xm292,190v0,11,-9,21,-20,21r-123,0v-11,0,-21,-10,-21,-21r0,-345v0,-11,10,-20,21,-20r123,0v11,0,20,9,20,20r0,345","w":290},{"d":"668,-558v0,3,-1,5,-2,8r-272,589v-55,118,-97,163,-244,163v-37,0,-98,-8,-122,-16v-10,-3,-18,-7,-18,-15r0,-3r15,-81v2,-11,12,-19,23,-19r2,0v32,2,91,8,124,8v36,0,57,-12,75,-52r14,-31r-5,0v-40,0,-77,-15,-86,-93r-53,-450r0,-3v0,-12,7,-20,23,-20r131,0v10,0,15,9,16,19r23,382v1,12,4,13,10,13r8,0r163,-395v4,-10,13,-19,24,-19r135,0v9,0,16,7,16,15xm631,-773v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":592,"k":{"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":23,"\u00f8":23,"\u0153":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,",":55,"\u201a":55,"\u201e":55,".":61,"\u2026":61,"c":27,"\u00e7":27,"d":13,"q":20}},{"d":"848,-280v0,13,-1,27,-4,42r-13,75v-22,128,-83,172,-179,172v-79,0,-121,-53,-121,-130v0,-13,1,-27,4,-42r13,-75v23,-131,83,-171,178,-171v77,0,122,50,122,129xm827,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm440,-623v0,13,-1,27,-4,42r-13,75v-22,128,-83,172,-179,172v-79,0,-121,-53,-121,-130v0,-13,1,-27,4,-42r13,-75v23,-131,83,-171,178,-171v77,0,122,50,122,129xm747,-278v0,-35,-14,-45,-36,-45v-29,0,-51,17,-63,85r-13,75v-3,16,-4,29,-4,40v0,35,14,46,36,46v29,0,51,-18,63,-86r13,-75v3,-16,4,-29,4,-40xm339,-621v0,-35,-14,-45,-36,-45v-29,0,-51,17,-63,85r-13,75v-3,16,-4,29,-4,40v0,35,14,46,36,46v29,0,51,-18,63,-86r13,-75v3,-16,4,-29,4,-40","w":839},{"d":"841,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm824,-107v-1,9,-5,17,-19,17r-30,0r-12,73v-2,12,-5,17,-19,17r-72,0v-12,0,-14,-8,-13,-17r12,-73r-151,0v-8,0,-15,-4,-13,-17r10,-52v1,-6,3,-14,10,-21r211,-224v6,-6,12,-10,20,-10r58,0v14,0,16,8,14,17r-40,224r30,0v13,0,15,6,13,17xm689,-173r18,-103r-94,103r76,0xm119,-421v37,3,84,5,107,5v44,0,57,-21,57,-59v0,-18,-4,-31,-31,-31r-95,0v-12,0,-15,-7,-13,-17r8,-46v2,-10,6,-16,19,-16r93,0v38,0,48,-32,48,-52v0,-21,-10,-31,-42,-31v-23,0,-62,1,-98,6v-18,3,-25,-1,-23,-15r7,-43v2,-10,10,-14,18,-17v30,-8,71,-17,119,-17v81,0,125,33,125,93v0,54,-24,95,-61,115v21,18,30,37,30,71v0,97,-58,145,-172,145v-43,0,-84,-7,-112,-15v-7,-3,-14,-6,-12,-17r8,-43v2,-10,7,-16,20,-16","w":841},{"d":"652,-725v0,2,-1,4,-1,6r-17,93v-2,11,-12,20,-23,20r-203,0v-41,0,-66,8,-76,67r-16,92r259,0v10,0,16,7,16,17r0,3r-16,95v-2,11,-13,20,-24,20r-259,0r-19,106v-2,10,-3,19,-3,26v0,32,17,42,55,42r203,0v10,0,17,7,17,17r0,3r-17,93v-2,13,-9,19,-23,21v-36,5,-86,13,-194,13v-104,0,-213,-37,-213,-166v0,-15,2,-32,5,-49r59,-332v34,-194,145,-214,282,-214v108,0,156,8,190,13v12,2,18,5,18,14xm631,-917r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm414,-917r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":581},{"d":"189,-356v-1,8,-4,16,-16,16r-67,0v-10,0,-13,-8,-12,-16r70,-394v1,-8,5,-15,17,-15r67,0v11,0,13,6,11,15","w":167},{"d":"697,-473v0,218,-150,304,-351,304v-26,0,-50,-1,-78,-2r-26,151v-2,11,-12,20,-23,20r-131,0v-10,0,-15,-7,-15,-16r0,-3r0,-1r124,-704v2,-11,11,-19,22,-19r131,0v10,0,16,6,16,15r0,3r0,1r-11,59v11,-1,51,-1,74,-1v134,0,268,50,268,193xm523,-448v0,-54,-41,-74,-115,-74v-14,0,-68,0,-78,1r-37,207v10,1,67,1,78,1v92,0,152,-39,152,-135","w":652,"k":{"a":21,"\u00e6":21,"\u00e1":21,"\u00e2":21,"\u00e4":21,"\u00e0":21,"\u00e5":21,"\u00e3":21,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,",":105,"\u201a":105,"\u201e":105,".":110,"\u2026":110,"T":11,"A":54,"\u00c6":54,"\u00c1":54,"\u00c2":54,"\u00c4":54,"\u00c0":54,"\u00c5":54,"\u00c3":54,"X":36,"Z":26,"\u017d":26}},{"d":"578,-72v-27,153,-145,221,-300,221v-78,0,-153,-12,-202,-28v-9,-3,-17,-9,-15,-19r14,-80v2,-12,7,-20,23,-18v69,6,143,9,197,9v71,0,104,-30,114,-85r3,-18v8,-45,0,-86,-65,-86r-176,0v-11,0,-18,-9,-16,-20r15,-85v2,-11,11,-19,22,-19r172,0v65,0,93,-43,101,-87r2,-14v8,-45,-8,-75,-86,-75v-70,0,-122,7,-199,12v-14,1,-19,-5,-17,-18r15,-80v1,-10,12,-16,23,-19v55,-16,131,-31,209,-31v163,0,252,55,225,205r-2,14v-10,58,-58,123,-116,153v50,29,74,85,62,150"},{"d":"787,-727r0,3r-121,686v-4,21,-23,38,-44,38r-84,0v-21,0,-44,-4,-55,-31r-166,-394v-3,-6,-5,-8,-8,-8v-3,0,-5,2,-6,8r-71,405v-2,11,-13,20,-24,20r-118,0v-10,0,-16,-7,-16,-17r0,-3r120,-685v4,-21,24,-38,45,-38r76,0v20,0,44,6,54,31r172,412v3,6,3,8,6,8v2,0,6,-2,7,-9r75,-423v2,-11,12,-19,23,-19r118,0v10,0,17,7,17,16xm722,-932r0,5r-3,20v-13,90,-57,122,-137,122v-20,0,-56,-10,-74,-24r-37,-29v-15,-12,-26,-18,-37,-18v-13,0,-23,3,-28,27r-4,19v-2,11,-8,17,-18,17r-71,0v-8,0,-13,-4,-13,-12v0,-1,1,-3,1,-5r4,-19v18,-87,57,-121,139,-121v20,0,52,9,71,23r38,28v15,11,26,18,37,18v15,0,24,-2,28,-27r3,-19v2,-11,9,-16,19,-16r70,0v8,0,12,4,12,11","w":729,"k":{"T":26,"V":21,"Y":41,"\u00dd":41,"\u0178":41}},{"d":"728,-509v0,24,-2,50,-7,78r-21,119v-41,234,-165,321,-353,321v-137,0,-246,-81,-246,-245v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v134,0,246,73,246,243xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66xm685,-804v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":698,"k":{"T":30,"V":24,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"X":49,"Z":28,"\u017d":28,"x":13}},{"d":"557,-773v0,3,-2,7,-6,11r-109,117v-11,11,-16,15,-30,15r-160,0v-14,0,-17,-3,-24,-15r-68,-117v-2,-3,-3,-6,-3,-8v0,-5,4,-9,11,-9r98,0v13,0,15,3,22,12r51,70r76,-70v10,-9,13,-12,26,-12r108,0v5,0,8,2,8,6","w":443},{"d":"606,-372v0,17,-2,36,-5,54r-10,58v-3,15,-12,24,-25,24r-321,0v-2,15,-4,29,-4,41v0,52,25,70,89,70v63,0,153,-5,194,-9r3,0v9,0,16,4,16,13r0,3r-14,76v-3,16,-7,23,-25,27v-67,16,-123,24,-210,24v-108,0,-210,-62,-210,-201v0,-17,2,-36,5,-56r12,-70v30,-174,135,-263,299,-263v135,0,206,92,206,209xm455,-380v0,-46,-22,-71,-78,-71v-68,0,-100,46,-115,115r188,0v3,-16,5,-31,5,-44xm611,-773v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":590,"k":{"y":20,"\u00fd":20,"\u00ff":20,"T":60,"v":20,"x":23,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"164,-706r95,-40v4,-2,9,-3,15,-3r49,0v13,0,13,8,12,17r-67,380v-3,13,-8,17,-18,17r-71,0v-9,0,-17,-4,-14,-17r51,-290r-57,23v-15,5,-21,1,-18,-12r11,-62v1,-5,4,-10,12,-13xm774,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm757,-107v-1,9,-5,17,-19,17r-30,0r-12,73v-2,12,-5,17,-19,17r-72,0v-12,0,-14,-8,-13,-17r12,-73r-151,0v-8,0,-15,-4,-13,-17r10,-52v1,-6,3,-14,10,-21r211,-224v6,-6,12,-10,20,-10r58,0v14,0,16,8,14,17r-40,224r30,0v13,0,15,6,13,17xm622,-173r18,-103r-94,103r76,0","w":774},{"d":"602,-550v0,2,-1,5,-1,7r-16,89v-2,10,-12,17,-22,17r-2,0v-36,-4,-64,-7,-121,-7v-52,0,-86,27,-102,116r-15,84v-3,18,-5,34,-5,47v0,53,25,69,67,69v57,0,85,-4,123,-7r2,0v9,0,16,5,16,14r0,3r-16,89v-3,15,-9,19,-25,23v-20,5,-47,10,-81,13r-13,73v-2,11,-13,20,-24,20r-101,0v-10,0,-16,-7,-16,-16r0,-4r15,-84v-64,-29,-109,-93,-109,-184v0,-18,1,-36,5,-56r15,-84v29,-161,98,-215,188,-240r15,-82v2,-11,12,-20,23,-20r101,0v10,0,17,7,17,17r0,3r-13,71v33,3,59,8,77,13v12,3,18,6,18,16"},{"d":"538,-540r0,5r-14,81v-2,11,-9,19,-20,19r-3,0v-28,-4,-113,-13,-164,-13r-4,0v-26,0,-55,1,-55,35v0,12,8,21,24,31r111,71v62,40,79,85,79,124v0,145,-118,196,-247,196v-55,0,-129,-8,-178,-22v-10,-3,-15,-9,-15,-18r0,-5r15,-81v2,-12,11,-19,23,-19r3,0v53,7,124,14,168,14v34,0,66,-3,66,-45v0,-13,-8,-26,-30,-40r-117,-75v-45,-29,-65,-75,-65,-119v0,-140,114,-180,234,-180v70,0,125,10,174,23v10,3,15,9,15,18xm587,-773v0,3,-2,7,-6,11r-109,117v-11,11,-16,15,-30,15r-160,0v-14,0,-17,-3,-24,-15r-68,-117v-2,-3,-3,-6,-3,-8v0,-5,4,-9,11,-9r98,0v13,0,15,3,22,12r51,70r76,-70v10,-9,13,-12,26,-12r108,0v5,0,8,2,8,6","w":503,"k":{"v":6}},{"d":"600,-255v0,3,-2,7,-5,10r-63,63v-3,3,-7,5,-10,5v-6,0,-11,-3,-16,-8r-120,-120r-120,120v-5,5,-10,8,-15,8v-3,0,-7,-2,-10,-5r-64,-64v-3,-3,-5,-7,-5,-10v0,-5,3,-10,8,-15r120,-120r-120,-120v-5,-5,-8,-10,-8,-15v0,-3,2,-7,5,-10r64,-64v3,-3,7,-5,10,-5v5,0,10,3,15,8r120,120r120,-120v5,-5,10,-8,16,-8v3,0,7,2,10,5r63,63v3,3,5,7,5,10v0,6,-3,11,-8,16r-120,120r120,120v5,5,8,10,8,16"},{"d":"369,-728r0,4r-124,704v-2,11,-12,20,-23,20r-134,0v-9,0,-14,-7,-14,-15r0,-5r124,-704v2,-11,10,-19,21,-19r134,0v10,0,16,6,16,15xm493,-917r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm276,-917r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":311},{"d":"608,-379v0,19,-4,46,-6,58r-13,70v-32,170,-119,260,-296,260v-136,0,-210,-86,-210,-204v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v135,0,211,80,211,202xm446,-367v0,-52,-24,-76,-73,-76v-58,0,-95,34,-111,122r-13,70v-3,18,-5,34,-5,48v0,52,24,75,74,75v65,0,95,-42,110,-123r13,-70v3,-17,5,-33,5,-46xm607,-773v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":590,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":20,"x":38,"z":16,"\u017e":16,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"604,-404v0,35,-3,73,-10,114r-5,31v-30,187,-124,268,-297,268v-136,0,-209,-84,-209,-209v0,-19,2,-38,5,-59r5,-31v22,-136,105,-267,276,-267v24,0,48,4,75,11v-31,-42,-65,-66,-100,-85r-83,56v-7,4,-11,7,-15,7v-3,0,-6,-2,-9,-7r-21,-30v-2,-3,-3,-6,-3,-8v0,-5,4,-9,14,-16r46,-31v-15,-5,-31,-11,-46,-15v-8,-2,-13,-6,-13,-12v0,-3,0,-5,2,-8r37,-68v4,-8,9,-11,15,-11v3,0,5,0,8,1v40,10,76,23,110,37r89,-60v4,-3,9,-4,14,-4v4,0,8,1,11,5r22,29v2,2,2,4,2,6v0,7,-6,12,-12,16r-60,41v103,62,152,157,152,299xm437,-346v0,-56,-20,-76,-70,-76v-62,0,-96,33,-112,132r-5,31v-4,23,-6,42,-6,58v0,54,22,74,72,74v62,0,95,-30,111,-132r5,-31v4,-22,5,-40,5,-56","w":590},{"d":"673,-600v0,4,-2,9,-6,13r-87,95v19,31,28,70,28,113v0,19,-2,38,-6,58r-13,70v-32,170,-119,260,-296,260v-56,0,-101,-15,-135,-40r-51,56v-8,9,-12,10,-18,10r-66,0v-5,0,-7,-3,-7,-6v0,-4,2,-9,6,-13r90,-98v-19,-32,-29,-70,-29,-113v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v56,0,102,13,136,38r49,-53v8,-9,12,-10,18,-10r66,0v5,0,7,3,7,6xm426,-426v-12,-12,-30,-17,-53,-17v-58,0,-95,34,-111,122r-13,70v-1,8,-2,16,-3,23xm445,-344r-182,199v12,12,30,17,55,17v65,0,95,-42,110,-123r13,-70v1,-8,3,-16,4,-23","w":590,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":20,"x":38,"z":16,"\u017e":16,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"362,-369v-2,11,-5,16,-23,20v-32,7,-76,14,-119,14v-78,0,-118,-43,-118,-112v0,-12,2,-25,4,-38r7,-43v17,-95,70,-136,165,-136v10,0,25,1,40,3r16,-89v1,-8,8,-15,16,-15r67,0v12,0,13,7,12,15xm275,-418r29,-163v-13,-2,-30,-2,-41,-2v-36,0,-50,26,-56,62r-7,43v-1,9,-2,17,-2,24v0,23,9,39,36,39v16,0,31,-1,41,-3","w":338},{"d":"369,-728r0,4r-124,704v-2,11,-12,20,-23,20r-134,0v-9,0,-14,-7,-14,-15r0,-5r124,-704v2,-11,10,-19,21,-19r134,0v10,0,16,6,16,15xm497,-803v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":311},{"d":"772,-727r0,3r-79,445v-45,251,-181,288,-340,288v-140,0,-243,-65,-243,-217v0,-22,1,-45,6,-71r79,-445v2,-11,12,-19,23,-19r131,0v10,0,17,7,17,16r0,3r-79,445v-4,22,-6,42,-6,59v0,60,28,86,98,86v90,0,125,-43,143,-145r79,-445v2,-11,12,-19,23,-19r130,0v10,0,18,6,18,16xm598,-803v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":711,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":16}},{"d":"369,-728r0,4r-124,704v-2,11,-12,20,-23,20r-134,0v-9,0,-14,-7,-14,-15r0,-5r124,-704v2,-11,10,-19,21,-19r134,0v10,0,16,6,16,15xm393,-804v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":311},{"d":"606,-372v0,17,-2,36,-5,54r-10,58v-3,15,-12,24,-25,24r-321,0v-2,15,-4,29,-4,41v0,52,25,70,89,70v63,0,153,-5,194,-9r3,0v9,0,16,4,16,13r0,3r-14,76v-3,16,-7,23,-25,27v-67,16,-123,24,-210,24v-108,0,-210,-62,-210,-201v0,-17,2,-36,5,-56r12,-70v30,-174,135,-263,299,-263v135,0,206,92,206,209xm455,-380v0,-46,-22,-71,-78,-71v-68,0,-100,46,-115,115r188,0v3,-16,5,-31,5,-44xm517,-639v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":590,"k":{"y":20,"\u00fd":20,"\u00ff":20,"T":60,"v":20,"x":23,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"644,-298v-38,217,-145,307,-324,307v-142,0,-222,-87,-222,-229v0,-24,2,-51,7,-78r1,-6v40,-228,150,-308,323,-308v140,0,224,79,224,226v0,25,-3,53,-8,82xm473,-298r1,-6v6,-32,8,-58,8,-79v0,-70,-29,-87,-78,-87v-60,0,-103,28,-127,166r-1,6v-6,32,-8,58,-8,79v0,70,29,86,77,86v62,0,104,-27,128,-165"},{"d":"533,-639v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":443},{"d":"728,-509v0,24,-2,50,-7,78r-21,119v-41,234,-165,321,-353,321v-137,0,-246,-81,-246,-245v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v134,0,246,73,246,243xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66xm680,-917r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm463,-917r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":698,"k":{"T":30,"V":24,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"X":49,"Z":28,"\u017d":28,"x":13}},{"d":"150,-371r95,-40v4,-2,9,-3,15,-3r49,0v13,0,13,8,12,17r-67,380v-3,13,-8,17,-18,17r-71,0v-9,0,-17,-4,-14,-17r51,-290r-57,23v-15,5,-21,1,-18,-12r11,-62v1,-5,4,-10,12,-13","w":241},{"d":"294,-449r0,4r-22,126v-2,11,-12,20,-23,20r-117,0v-10,0,-18,-7,-18,-17r0,-3r22,-126v2,-11,14,-19,25,-19r117,0v10,0,16,6,16,15","w":274},{"d":"779,-500v0,4,-2,8,-6,11r-224,203r141,203v2,2,2,5,2,7v0,7,-7,13,-16,13r-109,0v-15,0,-22,-3,-28,-12r-127,-185v-7,-10,-10,-20,-10,-29v0,-12,6,-22,14,-30r186,-178v9,-9,17,-12,32,-12r133,0v8,0,12,4,12,9xm468,-500v0,4,-2,8,-6,11r-224,203r141,203v2,2,2,5,2,7v0,7,-7,13,-16,13r-109,0v-15,0,-22,-3,-28,-12r-127,-185v-7,-10,-10,-20,-10,-29v0,-12,6,-22,14,-30r186,-178v9,-9,17,-12,32,-12r133,0v8,0,12,4,12,9","w":718},{"d":"558,-773v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":443},{"d":"623,-534v0,2,0,5,-1,8r-88,506v-2,11,-12,20,-23,20r-102,0v-10,0,-17,-8,-17,-17r0,-3r4,-29v-54,42,-102,58,-155,58v-120,0,-168,-92,-168,-192v0,-19,2,-37,5,-56v0,0,13,-75,16,-94v30,-174,138,-248,295,-248v68,0,142,10,207,25v17,4,27,7,27,22xm445,-442v-18,-3,-49,-6,-77,-6v-71,0,-100,42,-114,123r-18,105v-2,11,-3,22,-3,33v0,33,12,61,57,61v34,0,73,-16,106,-35xm625,-771r0,5r-3,20v-13,90,-57,122,-137,122v-20,0,-56,-10,-74,-24r-37,-29v-15,-12,-26,-18,-37,-18v-13,0,-23,3,-28,27r-4,19v-2,11,-8,17,-18,17r-71,0v-8,0,-13,-4,-13,-12v0,-1,1,-3,1,-5r4,-19v18,-87,57,-121,139,-121v20,0,52,9,71,23r38,28v15,11,26,18,37,18v15,0,24,-2,28,-27r3,-19v2,-11,9,-16,19,-16r70,0v8,0,12,4,12,11","w":581,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":23}},{"d":"651,-396v0,36,-8,87,-33,230v-44,250,-146,314,-334,314v-90,0,-154,-10,-193,-20v-11,-3,-18,-7,-18,-17r0,-5r15,-87v3,-17,10,-24,27,-21v47,8,120,14,179,14v96,0,135,-35,151,-146r1,-7v-27,5,-78,12,-120,12v-117,0,-210,-57,-210,-182v0,-195,124,-302,313,-302v139,0,222,80,222,217xm486,-391v0,-74,-34,-92,-80,-92v-90,0,-122,74,-122,157v0,61,38,78,90,78v26,0,69,-6,93,-10v8,-43,19,-89,19,-133"},{"d":"562,59v0,12,-3,16,-14,16r-406,0v-15,0,-17,-9,-17,-20r0,-126v0,-9,1,-16,6,-24r171,-227v3,-5,3,-8,3,-12v0,-4,0,-7,-3,-12r-171,-227v-5,-8,-6,-15,-6,-24r0,-126v0,-11,2,-20,17,-20r406,0v11,0,14,4,14,16r0,116v0,10,-2,17,-14,17r-244,0v-5,0,-6,4,-3,9r157,217v4,6,6,11,6,20r0,28v0,9,-2,14,-6,20r-157,218v-3,5,-2,9,3,9r244,0v12,0,14,7,14,17r0,115","w":547},{"d":"649,-554r0,3r-88,502v-2,14,-12,23,-37,31v-48,15,-123,27,-216,27v-33,0,-62,-3,-87,-9r-30,171v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r128,-722v2,-11,13,-22,24,-22r121,0v10,0,17,9,17,19r0,3r-58,332v-2,12,-3,23,-3,33v0,44,23,62,74,62v32,0,60,-2,81,-7r74,-420v2,-11,13,-22,24,-22r121,0v10,0,17,9,17,19","w":612},{"d":"208,-216r57,-36v50,-32,64,-35,64,-57v0,-19,-11,-24,-47,-24v-32,0,-72,3,-107,7v-13,2,-16,-6,-14,-17r7,-42v2,-9,5,-14,17,-17v33,-9,80,-17,120,-17v86,0,129,28,129,94v0,48,-23,87,-86,125r-50,31v-53,32,-87,54,-93,81r165,0v13,0,16,5,14,15r-9,56v-2,11,-6,17,-20,17r-241,0v-12,0,-16,-8,-14,-17r9,-55v11,-62,39,-105,99,-144","w":355},{"d":"651,-346v0,11,-9,16,-20,16r-170,0r0,169v0,11,-5,20,-16,20r-90,0v-11,0,-16,-9,-16,-20r0,-169r-169,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r169,0r0,-170v0,-11,5,-20,16,-20r90,0v11,0,16,9,16,20r0,170r170,0v11,0,20,5,20,16r0,90"},{"d":"328,-344r0,3r-13,74v-2,11,-12,18,-23,18r-194,0v-10,0,-17,-6,-17,-15r0,-3r13,-74v2,-11,12,-19,23,-19r194,0v10,0,17,6,17,16","w":302},{"d":"535,-748r0,4r-13,72v-2,11,-12,19,-23,19r-324,0v-10,0,-17,-6,-17,-16r0,-3r13,-72v2,-11,13,-19,24,-19r324,0v10,0,16,6,16,15","w":443},{"d":"651,-283r0,4r-16,92v-2,11,-13,20,-24,20r-66,0r-25,147v-2,11,-12,20,-23,20r-133,0v-10,0,-15,-7,-15,-16r0,-4r25,-147r-289,0v-10,0,-16,-7,-16,-16r0,-4r17,-97v2,-11,8,-21,17,-31r389,-414v9,-9,16,-14,28,-14r107,0v10,0,16,7,16,16r0,4r-74,424r66,0v10,0,16,7,16,16xm440,-510v0,-3,-1,-4,-3,-4v-1,0,-3,1,-4,2r-185,203v-2,2,-3,5,-3,6v0,3,2,4,6,4r152,0r37,-209r0,-2"},{"d":"434,-743r107,0v14,0,20,10,17,20r-43,143r87,0v11,0,20,5,20,16r0,90v0,11,-9,16,-20,16r-124,0r-40,134r164,0v11,0,20,5,20,16r0,90v0,11,-9,16,-20,16r-201,0r-54,181v-3,11,-9,21,-20,21r-107,0v-11,0,-23,-5,-18,-21r54,-181r-73,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r110,0r41,-134r-151,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r188,0r43,-143v3,-11,9,-20,20,-20"},{"d":"845,-737v0,4,-2,9,-6,14r-539,702v-11,14,-17,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm648,-214v-17,-16,-25,-41,-25,-68v0,-97,67,-137,168,-137r6,0v79,0,129,35,129,99v0,46,-20,83,-58,106v18,16,28,46,28,75v0,101,-81,144,-173,144r-6,0v-78,0,-128,-41,-128,-108v0,-43,19,-88,59,-111xm743,-175v-31,0,-53,24,-53,62v0,23,14,38,41,38r6,0v38,0,58,-26,58,-65v0,-18,-6,-35,-35,-35r-17,0xm757,-252r17,0v35,0,51,-23,51,-54v0,-21,-12,-33,-41,-33r-7,0v-35,0,-57,18,-57,55v0,20,12,32,37,32xm119,-421v37,3,84,5,107,5v44,0,57,-21,57,-59v0,-18,-4,-31,-31,-31r-95,0v-12,0,-15,-7,-13,-17r8,-46v2,-10,6,-16,19,-16r93,0v38,0,48,-32,48,-52v0,-21,-10,-31,-42,-31v-23,0,-62,1,-98,6v-18,3,-25,-1,-23,-15r7,-43v2,-10,10,-14,18,-17v30,-8,71,-17,119,-17v81,0,125,33,125,93v0,54,-24,95,-61,115v21,18,30,37,30,71v0,97,-58,145,-172,145v-43,0,-84,-7,-112,-15v-7,-3,-14,-6,-12,-17r8,-43v2,-10,7,-16,20,-16","w":926},{"d":"647,-282r-429,0r0,193v42,40,92,63,152,63v112,0,165,-59,210,-127r31,19v-52,81,-116,141,-241,141v-163,0,-271,-133,-271,-290v0,-159,104,-290,275,-290v170,0,273,134,273,291xm527,-315r0,-163v-36,-33,-95,-62,-153,-62v-60,0,-116,21,-156,62r0,163r309,0","w":606},{"d":"235,-598v18,-3,39,-5,59,-5v67,0,118,28,118,101v0,106,-65,172,-172,172v-80,0,-128,-41,-128,-127v0,-15,2,-33,5,-51r12,-70v23,-132,92,-176,187,-176v48,0,84,7,108,12v14,3,14,8,12,17r-8,47v-2,12,-5,21,-23,18v-27,-4,-58,-8,-96,-8v-43,0,-64,17,-74,70xm222,-523r-5,28v-3,15,-4,28,-4,38v0,36,15,44,38,44v31,0,59,-22,59,-79v0,-27,-18,-36,-44,-36v-11,0,-31,2,-44,5","w":355},{"d":"623,-534v0,2,0,5,-1,8r-88,506v-2,11,-12,20,-23,20r-102,0v-10,0,-17,-8,-17,-17r0,-3r4,-29v-54,42,-102,58,-155,58v-120,0,-168,-92,-168,-192v0,-19,2,-37,5,-56v0,0,13,-75,16,-94v30,-174,138,-248,295,-248v68,0,142,10,207,25v17,4,27,7,27,22xm445,-442v-18,-3,-49,-6,-77,-6v-71,0,-100,42,-114,123r-18,105v-2,11,-3,22,-3,33v0,33,12,61,57,61v34,0,73,-16,106,-35xm629,-773v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":581,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":23}},{"d":"300,60v0,2,-2,6,-3,8r-84,107v-13,16,-17,20,-29,20r-75,0v-7,0,-11,-6,-9,-14v0,-2,0,-4,2,-6r45,-107v5,-12,12,-19,23,-19r117,0v14,0,14,4,13,11","w":443},{"d":"510,-63v3,11,1,17,-12,25v-34,22,-112,53,-184,53v-121,0,-156,-92,-138,-209r8,-52r-68,42v-7,5,-16,6,-19,-2r-17,-36v-4,-8,-1,-15,7,-20r112,-69r47,-265v23,-132,86,-197,216,-197v116,0,157,52,157,120v0,123,-96,227,-259,339r-24,137v-11,64,3,86,42,86v35,0,64,-11,90,-23v13,-6,20,-8,24,5xm493,-720v-57,0,-72,45,-86,124r-31,172v105,-84,166,-160,166,-244v0,-27,-10,-52,-49,-52","w":540},{"d":"651,-716r0,4r-18,101v-2,11,-9,17,-20,17r-2,0v-28,-2,-142,-11,-210,-11v-48,0,-89,8,-89,64v0,21,10,31,51,58r116,76v75,49,107,102,107,160v0,183,-143,256,-311,256v-79,0,-140,-9,-189,-22v-9,-2,-16,-8,-16,-17r0,-3r17,-98v2,-12,10,-19,21,-19r3,0v40,4,149,12,188,12v56,0,103,-18,103,-82v0,-22,-12,-44,-52,-70r-123,-81v-63,-41,-90,-99,-90,-155v0,-175,143,-226,294,-226v73,0,172,12,208,22v8,2,12,7,12,14xm648,-938v0,3,-2,7,-6,11r-109,117v-11,11,-16,15,-30,15r-160,0v-14,0,-17,-3,-24,-15r-68,-117v-2,-3,-3,-6,-3,-8v0,-5,4,-9,11,-9r98,0v13,0,15,3,22,12r51,70r76,-70v10,-9,13,-12,26,-12r108,0v5,0,8,2,8,6","w":588,"k":{"V":10,"v":9,"x":6}},{"d":"407,-663r-201,314v-7,10,-11,14,-19,14r-75,0v-14,0,-18,-10,-11,-20r200,-307r-146,0v-15,0,-17,-6,-15,-16r10,-54v2,-12,6,-17,21,-17r234,0v19,0,22,12,20,24r-5,31v-3,16,-5,19,-13,31","w":323,"k":{"\/":62,",":65,"\u201a":65,"\u201e":65,".":65,"\u2026":65}},{"d":"772,-727r0,3r-79,445v-45,251,-181,288,-340,288v-140,0,-243,-65,-243,-217v0,-22,1,-45,6,-71r79,-445v2,-11,12,-19,23,-19r131,0v10,0,17,7,17,16r0,3r-79,445v-4,22,-6,42,-6,59v0,60,28,86,98,86v90,0,125,-43,143,-145r79,-445v2,-11,12,-19,23,-19r130,0v10,0,18,6,18,16xm691,-917r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm474,-917r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":711,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":16}},{"d":"259,-664v38,0,83,4,119,14v13,3,16,6,14,17r-49,282v-1,6,-4,11,-13,11r-60,0v-6,0,-10,-4,-9,-11r2,-16v-30,23,-57,32,-86,32v-67,0,-96,-51,-96,-98v0,-20,3,-41,5,-51v0,0,5,-31,7,-42v17,-105,79,-138,166,-138xm291,-586v-10,-2,-28,-4,-43,-4v-40,0,-55,24,-63,69r-10,58v-1,7,-2,13,-2,19v0,18,6,34,31,34v19,0,41,-9,59,-20","w":322,"k":{"v":13,"y":13,"\u00fd":13,"\u00ff":13}},{"d":"652,-725v0,2,-1,4,-1,6r-17,93v-2,11,-12,20,-23,20r-203,0v-41,0,-66,8,-76,67r-16,92r259,0v10,0,16,7,16,17r0,3r-16,95v-2,11,-13,20,-24,20r-259,0r-19,106v-2,10,-3,19,-3,26v0,32,17,42,55,42r203,0v10,0,17,7,17,17r0,3r-17,93v-2,13,-9,19,-23,21v-36,5,-86,13,-194,13v-104,0,-213,-37,-213,-166v0,-15,2,-32,5,-49r59,-332v34,-194,145,-214,282,-214v108,0,156,8,190,13v12,2,18,5,18,14xm533,-804v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":581},{"d":"653,-20v0,12,-9,20,-20,20r-137,0v-10,0,-17,-8,-17,-18r-7,-164r-205,0r-65,164v-4,10,-13,18,-23,18r-143,0v-9,0,-14,-5,-14,-12v0,-3,1,-6,2,-9r258,-620v40,-96,117,-111,186,-111v69,0,139,15,145,111r40,620r0,1xm468,-319r-12,-276v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-110,276r149,0xm604,-895v0,64,-52,116,-116,116v-64,0,-117,-52,-117,-116v0,-64,53,-117,117,-117v64,0,116,53,116,117xm533,-896v0,-24,-21,-44,-45,-44v-24,0,-43,19,-43,44v0,25,19,44,43,44v24,0,45,-20,45,-44","w":669,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"G":20,"L":20,"\u0141":20,"T":70,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"V":56,"Y":76,"\u00dd":76,"\u0178":76,"v":46}},{"d":"912,-661r-142,0v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-85,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-178,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r178,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20r-72,405r183,-216v10,-12,21,-15,29,-15r151,0v8,0,13,4,13,9v0,4,-2,8,-6,12r-240,253r141,278v4,8,2,21,-13,21r-147,0v-11,0,-20,-9,-25,-21r-102,-228r-40,228v-2,11,-13,21,-24,21r-121,0v-11,0,-19,-7,-17,-21","w":1323,"k":{"q":35,"d":35,"e":35,"\u00e9":35,"\u00ea":35,"\u00eb":35,"\u00e8":35,"o":35,"\u00f8":35,"\u0153":35,"\u00f3":35,"\u00f4":35,"\u00f6":35,"\u00f2":35,"\u00f5":35,"c":35,"\u00e7":35}},{"d":"651,-283r0,4r-16,92v-2,11,-13,20,-24,20r-66,0r-25,147v-2,11,-12,20,-23,20r-133,0v-10,0,-15,-7,-15,-16r0,-4r25,-147r-289,0v-10,0,-16,-7,-16,-16r0,-4r17,-97v2,-11,8,-21,17,-31r389,-414v9,-9,16,-14,28,-14r107,0v10,0,16,7,16,16r0,4r-74,424r66,0v10,0,16,7,16,16xm440,-510v0,-3,-1,-4,-3,-4v-1,0,-3,1,-4,2r-185,203v-2,2,-3,5,-3,6v0,3,2,4,6,4r152,0r37,-209r0,-2"},{"d":"949,-372v0,17,-2,36,-5,54r-10,58v-3,15,-12,24,-25,24r-323,0v-2,15,-4,29,-4,41v0,52,35,70,91,70v63,0,153,-5,194,-9r3,0v9,0,16,4,16,13r0,3r-14,76v-3,16,-7,23,-25,27v-67,16,-123,24,-210,24v-60,0,-113,-19,-148,-60v-47,40,-112,60,-196,60v-136,0,-210,-86,-210,-204v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v71,0,125,22,161,60v46,-40,107,-60,185,-60v135,0,206,92,206,209xm798,-380v0,-46,-22,-71,-78,-71v-68,0,-100,46,-115,115r188,0v3,-16,5,-31,5,-44xm446,-367v0,-52,-24,-76,-73,-76v-58,0,-95,34,-111,122r-13,70v-3,18,-5,34,-5,48v0,52,24,75,74,75v65,0,95,-42,110,-123r13,-70v3,-17,5,-33,5,-46","w":933,"k":{"y":20,"\u00fd":20,"\u00ff":20,"T":60,"v":20,"x":23,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"163,-549v-17,-16,-25,-41,-25,-68v0,-97,67,-137,168,-137r6,0v79,0,129,35,129,99v0,46,-20,83,-58,106v18,16,28,46,28,75v0,101,-81,144,-173,144r-6,0v-78,0,-128,-41,-128,-108v0,-43,19,-88,59,-111xm258,-510v-31,0,-53,24,-53,62v0,23,14,38,41,38r6,0v38,0,58,-26,58,-65v0,-18,-6,-35,-35,-35r-17,0xm272,-587r17,0v35,0,51,-23,51,-54v0,-21,-12,-33,-41,-33r-7,0v-35,0,-57,18,-57,55v0,20,12,32,37,32","w":355},{"d":"427,-454v0,-3,-2,-5,-6,-5r-273,0v-11,0,-21,-3,-18,-19r18,-100v2,-11,7,-19,24,-19r433,0v20,0,32,8,28,33r-13,73v-2,13,-12,27,-24,46r-364,572v-8,13,-16,19,-28,19r-141,0v-12,0,-16,-4,-16,-10v0,-4,2,-9,5,-13r373,-571v1,-2,2,-4,2,-6","w":588,"k":{"\/":112,",":118,"\u201a":118,"\u201e":118,".":118,"\u2026":118}},{"d":"481,-755v162,0,272,78,272,238v0,23,-2,47,-7,73r-2,12v-20,114,-56,202,-208,250r-5,27r111,0v13,0,22,4,19,20r-20,114v-3,16,-13,21,-26,21r-191,0v-13,0,-20,-8,-18,-21r38,-213v3,-18,6,-21,18,-25v67,-22,88,-74,109,-190r2,-12v2,-14,4,-28,4,-42v0,-54,-24,-99,-113,-99v-111,0,-147,71,-159,141r-2,12v-7,41,-12,74,-12,101v0,48,15,75,53,89v10,4,13,7,10,25r-38,213v-2,13,-11,21,-24,21r-191,0v-13,0,-23,-5,-20,-21r20,-114v3,-16,14,-20,27,-20r111,0r5,-27v-97,-34,-123,-106,-123,-185v0,-32,4,-66,10,-99r2,-12v37,-210,163,-277,348,-277","w":716},{"d":"345,-20v-2,11,-11,20,-22,20r-131,0v-11,0,-19,-9,-17,-20r71,-405r-120,46v-5,2,-9,3,-12,3v-7,0,-10,-5,-9,-13r20,-114v1,-7,5,-11,13,-14r176,-75v7,-3,14,-4,24,-4r90,0v11,0,17,8,15,19","w":439},{"d":"688,-569v0,80,-36,144,-111,183v37,31,59,76,59,129v0,189,-134,266,-309,266r-11,0v-136,0,-228,-71,-228,-186v0,-89,43,-160,118,-209v-36,-32,-55,-71,-55,-126v0,-181,138,-240,300,-240r11,0v147,0,226,73,226,183xm528,-561v0,-42,-27,-66,-88,-66r-11,0v-77,0,-120,41,-120,118v0,39,24,65,77,65r31,0v71,0,111,-51,111,-117xm471,-251v0,-38,-20,-73,-75,-73r-31,0v-75,0,-112,68,-112,135v0,43,24,72,86,72r11,0v81,0,121,-60,121,-134"},{"d":"311,-486v-18,3,-39,5,-59,5v-67,0,-118,-28,-118,-101v0,-106,65,-172,172,-172v80,0,128,41,128,127v0,15,-2,33,-5,51r-12,70v-23,132,-92,176,-187,176v-48,0,-84,-7,-108,-12v-14,-3,-14,-8,-12,-17r8,-47v2,-12,5,-21,23,-18v27,4,58,8,96,8v43,0,64,-17,74,-70xm324,-561r5,-28v3,-15,4,-28,4,-38v0,-36,-15,-44,-38,-44v-31,0,-59,22,-59,79v0,27,18,36,44,36v11,0,31,-2,44,-5","w":355},{"d":"889,-349v0,6,-5,10,-11,10r-78,0v-6,0,-11,-4,-11,-10r0,-242v0,-57,-14,-66,-70,-66r0,308v0,6,-5,10,-11,10r-79,0v-6,0,-10,-4,-10,-10r0,-308v-27,0,-49,2,-70,4r0,304v0,6,-4,10,-10,10r-78,0v-6,0,-11,-4,-11,-10r0,-355v0,-25,7,-32,28,-34v71,-7,134,-9,190,-9v141,0,221,16,221,156r0,242xm418,-673v0,8,-6,13,-13,13r-82,0r0,308v0,7,-6,13,-13,13r-77,0v-7,0,-13,-6,-13,-13r0,-308r-84,0v-7,0,-13,-5,-13,-13r0,-57v0,-7,6,-13,13,-13r269,0v7,0,13,6,13,13r0,57","w":830},{"d":"328,-344r0,3r-13,74v-2,11,-12,18,-23,18r-194,0v-10,0,-17,-6,-17,-15r0,-3r13,-74v2,-11,12,-19,23,-19r194,0v10,0,17,6,17,16","w":302},{"d":"487,-155v0,3,-1,6,-3,9r-136,224v-7,11,-11,20,-22,20r-88,0v-9,0,-15,-5,-15,-13v0,-2,1,-5,2,-7r104,-224v6,-12,12,-19,23,-19r122,0v8,0,13,4,13,10xm258,-155v0,3,-1,6,-3,9r-136,224v-7,11,-11,20,-22,20r-88,0v-9,0,-15,-5,-15,-13v0,-2,1,-5,2,-7r104,-224v6,-12,12,-19,23,-19r122,0v8,0,13,4,13,10","w":473,"k":{"*":76,"\"":75,"'":75,"\u2019":75,"\u201d":75}},{"d":"369,-728r0,4r-124,704v-2,11,-12,20,-23,20r-134,0v-9,0,-14,-7,-14,-15r0,-5r124,-704v2,-11,10,-19,21,-19r134,0v10,0,16,6,16,15xm498,-938v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":311},{"d":"710,-717r0,5r-18,97v-2,13,-10,20,-22,20r-3,0v-38,-2,-82,-8,-137,-8v-70,0,-123,31,-150,115r213,0v10,0,15,5,15,12v0,3,-1,5,-2,8r-20,44v-6,13,-13,20,-24,20r-201,0r-11,62r183,0v7,0,13,5,13,11v0,1,0,3,-1,4r-26,60v-2,6,-9,9,-16,9r-164,0r0,5r0,10v0,84,48,103,110,103v55,0,100,-6,139,-8r3,0v10,0,17,5,17,15v0,1,-1,3,-1,5r-18,97v-3,14,-11,19,-26,23v-22,7,-72,17,-142,17v-130,0,-255,-76,-255,-251r0,-11r0,-5r-41,0v-10,0,-16,-7,-16,-16r0,-4r8,-44v2,-11,12,-20,23,-20r35,0r11,-62r-35,0v-10,0,-16,-7,-16,-16r0,-4r8,-44v2,-11,12,-20,23,-20r37,0v47,-209,203,-264,346,-264v70,0,122,11,142,18v11,4,19,7,19,17"},{"d":"649,-555r0,3r-94,532v-2,11,-12,20,-23,20r-112,0v-10,0,-17,-7,-17,-16r0,-4r5,-24v-47,31,-90,53,-159,53v-99,0,-156,-62,-156,-167v0,-19,2,-39,6,-61r58,-333v2,-11,14,-21,25,-21r121,0v10,0,16,8,16,17r0,4r-58,333v-3,17,-5,34,-5,46v0,34,15,48,62,48v20,0,69,-15,100,-33r69,-394v2,-11,13,-21,24,-21r121,0v10,0,17,8,17,18xm615,-754r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm398,-754r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":612},{"d":"496,-600v0,-3,-2,-5,-6,-5r-273,0v-11,0,-21,-3,-18,-19r18,-100v2,-11,7,-19,24,-19r433,0v20,0,32,8,28,33r-13,73v-2,13,-12,27,-24,46r-364,572v-8,13,-16,19,-28,19r-141,0v-12,0,-16,-4,-16,-10v0,-4,2,-9,5,-13r373,-571v1,-2,2,-4,2,-6","k":{"\/":112,",":118,"\u201a":118,"\u201e":118,".":118,"\u2026":118}},{"d":"606,-364v0,15,-6,29,-15,41r-203,249v-11,13,-19,19,-30,19v-10,0,-19,-6,-29,-19r-203,-249v-10,-12,-16,-26,-16,-41v0,-14,5,-27,16,-40r204,-255v7,-9,16,-14,28,-14v12,0,22,5,29,14r204,255v10,13,15,26,15,40xm462,-363v0,-6,-3,-12,-8,-19r-77,-100v-7,-8,-12,-10,-19,-10v-8,0,-12,2,-19,10r-77,100v-5,7,-8,13,-8,19v0,7,3,14,9,21r76,95v8,10,13,13,19,13v6,0,12,-3,20,-13r75,-95v6,-7,9,-14,9,-21","w":576},{"d":"309,-532r0,4r-22,126v-2,11,-12,19,-23,19r-117,0v-10,0,-18,-7,-18,-16r0,-3r22,-126v2,-11,14,-20,25,-20r117,0v10,0,16,7,16,16xm242,-149r0,3r-22,126v-2,11,-13,20,-24,20r-117,0v-10,0,-17,-7,-17,-17r0,-3r22,-126v2,-11,13,-19,24,-19r117,0v10,0,17,6,17,16","w":275},{"d":"277,-354v-1,7,-3,12,-17,15v-8,2,-27,4,-44,4v-47,0,-80,-17,-80,-72v0,-9,1,-20,3,-32r26,-147r-40,-7v-8,-1,-13,-6,-11,-15r6,-37v1,-7,5,-14,18,-14r40,0r7,-41v2,-9,4,-13,16,-15r71,-12v9,-1,13,4,11,14r-9,54r41,0v11,0,14,5,12,14r-8,44v-2,10,-5,15,-17,15r-41,0r-27,154v-1,4,-1,8,-1,11v0,7,4,11,15,11r23,0v11,0,15,6,13,14","w":235,"k":{"q":3,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6}},{"d":"669,-732v15,4,20,9,18,22r-15,87v-3,17,-8,24,-27,21v-47,-7,-120,-14,-179,-14v-96,0,-135,35,-151,146r-1,7v27,-5,78,-12,120,-12v117,0,210,57,210,182v0,195,-124,302,-300,302v-152,0,-235,-80,-235,-217v0,-36,8,-87,33,-230v44,-250,146,-314,334,-314v90,0,154,10,193,20xm476,-278v0,-61,-38,-78,-90,-78v-26,0,-69,6,-93,10v-8,43,-19,89,-19,133v0,74,34,92,80,92v90,0,122,-74,122,-157"},{"d":"387,-485v-2,10,-10,16,-18,16r-169,0v-5,29,-1,53,50,53v27,0,75,-3,100,-5v8,0,13,4,11,13r-7,41v-2,10,-7,17,-17,19v-37,9,-68,13,-105,13v-88,0,-144,-42,-123,-155r5,-27v18,-101,77,-147,161,-147v98,0,131,69,117,153xm211,-531r90,0v5,-37,-2,-54,-35,-54v-33,0,-48,20,-55,54","w":332,"k":{"x":13,"v":11,"T":33,"y":11,"\u00fd":11,"\u00ff":11}},{"d":"130,-421v37,3,84,5,107,5v44,0,57,-21,57,-59v0,-18,-4,-31,-31,-31r-95,0v-12,0,-15,-7,-13,-17r8,-46v2,-10,6,-16,19,-16r93,0v38,0,48,-32,48,-52v0,-21,-10,-31,-42,-31v-23,0,-62,1,-98,6v-18,3,-25,-1,-23,-15r7,-43v2,-10,10,-14,18,-17v30,-8,71,-17,119,-17v81,0,125,33,125,93v0,54,-24,95,-61,115v21,18,30,37,30,71v0,97,-58,145,-172,145v-43,0,-84,-7,-112,-15v-7,-3,-14,-6,-12,-17r8,-43v2,-10,7,-16,20,-16","w":355},{"d":"644,-578r0,1r-18,100v-2,11,-12,19,-23,19r-272,0r-37,138r29,0v162,0,262,52,262,185v0,203,-122,291,-318,291v-64,0,-136,-11,-191,-29v-8,-3,-17,-7,-17,-18r0,-3r0,-1r14,-79v2,-11,7,-20,22,-18r1,0r1,0v62,7,140,12,177,12v99,0,138,-46,138,-142v0,-53,-31,-67,-128,-67r-155,0v-7,0,-11,-6,-11,-12r0,-2r0,-1r97,-373v3,-12,8,-19,23,-19r389,0v10,0,17,7,17,16r0,2"},{"d":"481,-755v162,0,272,78,272,238v0,23,-2,47,-7,73r-2,12v-20,114,-56,202,-208,250r-5,27r111,0v13,0,22,4,19,20r-20,114v-3,16,-13,21,-26,21r-191,0v-13,0,-20,-8,-18,-21r38,-213v3,-18,6,-21,18,-25v67,-22,88,-74,109,-190r2,-12v2,-14,4,-28,4,-42v0,-54,-24,-99,-113,-99v-111,0,-147,71,-159,141r-2,12v-7,41,-12,74,-12,101v0,48,15,75,53,89v10,4,13,7,10,25r-38,213v-2,13,-11,21,-24,21r-191,0v-13,0,-23,-5,-20,-21r20,-114v3,-16,14,-20,27,-20r111,0r5,-27v-97,-34,-123,-106,-123,-185v0,-32,4,-66,10,-99r2,-12v37,-210,163,-277,348,-277","w":716},{"d":"653,-20v0,12,-9,20,-20,20r-137,0v-10,0,-17,-8,-17,-18r-7,-164r-205,0r-65,164v-4,10,-13,18,-23,18r-143,0v-9,0,-14,-5,-14,-12v0,-3,1,-6,2,-9r258,-620v40,-96,117,-111,186,-111v69,0,139,15,145,111r40,620r0,1xm468,-319r-12,-276v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-110,276r149,0xm697,-932r0,5r-3,20v-13,90,-57,122,-137,122v-20,0,-56,-10,-74,-24r-37,-29v-15,-12,-26,-18,-37,-18v-13,0,-23,3,-28,27r-4,19v-2,11,-8,17,-18,17r-71,0v-8,0,-13,-4,-13,-12v0,-1,1,-3,1,-5r4,-19v18,-87,57,-121,139,-121v20,0,52,9,71,23r38,28v15,11,26,18,37,18v15,0,24,-2,28,-27r3,-19v2,-11,9,-16,19,-16r70,0v8,0,12,4,12,11","w":669,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"G":20,"L":20,"\u0141":20,"T":70,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"V":56,"Y":76,"\u00dd":76,"\u0178":76,"v":46}},{"d":"649,-554r0,3r-88,502v-2,14,-12,23,-37,31v-48,15,-123,27,-216,27v-33,0,-62,-3,-87,-9r-30,171v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r128,-722v2,-11,13,-22,24,-22r121,0v10,0,17,9,17,19r0,3r-58,332v-2,12,-3,23,-3,33v0,44,23,62,74,62v32,0,60,-2,81,-7r74,-420v2,-11,13,-22,24,-22r121,0v10,0,17,9,17,19","w":612},{"d":"324,-556r0,3r-94,533v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r94,-533v2,-11,12,-20,23,-20r122,0v10,0,17,7,17,17xm457,-639v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":290},{"d":"782,-732v0,3,-1,5,-3,8r-269,353r154,351v1,3,2,5,2,7v0,8,-7,13,-16,13r-143,0v-13,0,-18,-4,-23,-15r-93,-211r-153,206v-9,12,-18,20,-29,20r-148,0v-8,0,-13,-5,-13,-10v0,-3,2,-7,4,-10r272,-361r-150,-343v-1,-2,-1,-3,-1,-5v0,-7,8,-14,17,-14r145,0v11,0,18,10,22,19r88,202r148,-202v7,-9,17,-19,28,-19r148,0v8,0,13,5,13,11","w":703,"k":{"v":43,"G":47,"-":43,"O":49,"\u00d8":49,"\u0152":49,"\u00d3":49,"\u00d4":49,"\u00d6":49,"\u00d2":49,"\u00d5":49,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"e":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00e8":33,"o":40,"\u00f8":40,"\u0153":40,"\u00f3":40,"\u00f4":40,"\u00f6":40,"\u00f2":40,"\u00f5":40,"u":36,"\u00fa":36,"\u00fb":36,"\u00fc":36,"\u00f9":36,"y":46,"\u00fd":46,"\u00ff":46,"C":43,"\u00c7":43,"E":34,"\u00c9":34,"\u00ca":34,"\u00cb":34,"\u00c8":34,"L":20,"\u0141":20,"\u2013":43,"\u2014":43}},{"d":"710,-549v0,12,-1,25,-2,38r-1,9v-21,189,-168,242,-341,242v-24,0,-56,-2,-81,-3r-42,243v-2,11,-13,20,-24,20r-129,0v-10,0,-17,-6,-17,-16r0,-3r119,-672v6,-34,21,-43,53,-48v52,-8,134,-13,206,-13v152,0,259,60,259,203xm539,-530v0,-57,-35,-80,-111,-80v-14,0,-70,2,-82,3r-36,204v11,1,70,2,81,2v89,0,138,-32,146,-101r1,-9v1,-7,1,-13,1,-19xm1040,-573r82,0v11,0,19,9,17,20r-15,81v-2,11,-12,20,-23,20r-82,0r-52,291v-2,12,-3,21,-3,28v0,15,7,19,28,19r49,0v11,0,20,5,18,17r-14,78v-2,10,-9,18,-22,20v-31,5,-52,8,-81,8v-91,0,-142,-33,-142,-120v0,-15,2,-32,5,-51r51,-290r-78,-13v-11,-2,-19,-10,-17,-21r11,-66v2,-11,14,-21,25,-21r80,0r14,-82v2,-11,12,-18,24,-20r126,-21v15,-3,20,6,18,17xm1596,-558v13,4,17,12,15,23r-14,81v-2,12,-7,22,-23,19v-28,-5,-113,-13,-164,-13v-27,0,-59,-1,-59,35v0,12,8,21,24,31r111,71v62,40,79,85,79,124v0,145,-118,196,-247,196v-55,0,-129,-8,-178,-22v-13,-4,-17,-12,-15,-23r15,-81v2,-13,12,-21,26,-19v53,8,124,14,168,14v34,0,66,-3,66,-45v0,-13,-8,-26,-30,-40r-117,-75v-45,-29,-65,-75,-65,-119v0,-140,114,-180,234,-180v70,0,125,10,174,23","w":1576},{"d":"566,-548v0,3,0,6,-1,9r-13,74v-2,10,-6,22,-17,35r-249,283v-3,3,-4,6,-4,7v0,3,2,4,6,4r190,0v9,0,15,5,15,13r0,3r-17,100v-2,11,-13,20,-24,20r-375,0v-16,0,-29,-5,-29,-24v0,-3,0,-6,1,-9r11,-64v3,-18,9,-24,21,-38r261,-296v3,-3,4,-6,4,-8v0,-3,-2,-4,-6,-4r-193,0v-9,0,-14,-5,-14,-13r0,-3r17,-94v2,-11,12,-20,23,-20r365,0v16,0,28,7,28,25xm604,-773v0,3,-2,7,-6,11r-109,117v-11,11,-16,15,-30,15r-160,0v-14,0,-17,-3,-24,-15r-68,-117v-2,-3,-3,-6,-3,-8v0,-5,4,-9,11,-9r98,0v13,0,15,3,22,12r51,70r76,-70v10,-9,13,-12,26,-12r108,0v5,0,8,2,8,6","w":515,"k":{"e":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00e8":23,"o":16,"\u00f8":16,"\u0153":16,"\u00f3":16,"\u00f4":16,"\u00f6":16,"\u00f2":16,"\u00f5":16,"d":6}},{"d":"375,-113r-118,0r-16,93v-2,11,-13,20,-24,20r-130,0v-12,0,-18,-10,-16,-20r16,-93r-48,0v-11,0,-18,-9,-16,-20r17,-95v2,-11,12,-20,23,-20r48,0r51,-289v33,-189,143,-215,281,-215v108,0,157,9,191,14v12,2,18,6,17,20r-17,93v-2,11,-7,20,-23,20r-203,0v-47,0,-67,16,-76,68r-16,90r252,0v16,0,25,6,23,20r-16,95v-3,18,-13,20,-24,20r-259,0r-12,64r119,0v11,0,19,9,17,20r-17,95v-2,11,-13,20,-24,20","w":581},{"d":"413,-442v-1,9,-5,17,-19,17r-30,0r-12,73v-2,12,-5,17,-19,17r-72,0v-12,0,-14,-8,-13,-17r12,-73r-151,0v-8,0,-15,-4,-13,-17r10,-52v1,-6,3,-14,10,-21r211,-224v6,-6,12,-10,20,-10r58,0v14,0,16,8,14,17r-40,224r30,0v13,0,15,6,13,17xm278,-508r18,-103r-94,103r76,0","w":355},{"d":"760,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm538,-86v37,3,84,5,107,5v44,0,57,-21,57,-59v0,-18,-4,-31,-31,-31r-95,0v-12,0,-15,-7,-13,-17r8,-46v2,-10,6,-16,19,-16r93,0v38,0,48,-32,48,-52v0,-21,-10,-31,-42,-31v-23,0,-62,1,-98,6v-18,3,-25,-1,-23,-15r7,-43v2,-10,10,-14,18,-17v30,-8,71,-17,119,-17v81,0,125,33,125,93v0,54,-24,95,-61,115v21,18,30,37,30,71v0,97,-58,145,-172,145v-43,0,-84,-7,-112,-15v-7,-3,-14,-6,-12,-17r8,-43v2,-10,7,-16,20,-16xm113,-551r57,-36v50,-32,64,-35,64,-57v0,-19,-11,-24,-47,-24v-32,0,-72,3,-107,7v-13,2,-16,-6,-14,-17r7,-42v2,-9,5,-14,17,-17v33,-9,80,-17,120,-17v86,0,129,28,129,94v0,48,-23,87,-86,125r-50,31v-53,32,-87,54,-93,81r165,0v13,0,16,5,14,15r-9,56v-2,11,-6,17,-20,17r-241,0v-12,0,-16,-8,-14,-17r9,-55v11,-62,39,-105,99,-144","w":837},{"d":"571,-661r-142,0v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-85,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20r-72,405r183,-216v10,-12,21,-15,29,-15r151,0v8,0,13,4,13,9v0,4,-2,8,-6,12r-240,253r141,278v4,8,2,21,-13,21r-147,0v-11,0,-20,-9,-25,-21r-102,-228r-40,228v-2,11,-13,21,-24,21r-121,0v-11,0,-19,-7,-17,-21","w":982,"k":{"q":35,"d":35,"e":35,"\u00e9":35,"\u00ea":35,"\u00eb":35,"\u00e8":35,"o":35,"\u00f8":35,"\u0153":35,"\u00f3":35,"\u00f4":35,"\u00f6":35,"\u00f2":35,"\u00f5":35,"c":35,"\u00e7":35}},{"d":"150,-706r95,-40v4,-2,9,-3,15,-3r49,0v13,0,13,8,12,17r-67,380v-3,13,-8,17,-18,17r-71,0v-9,0,-17,-4,-14,-17r51,-290r-57,23v-15,5,-21,1,-18,-12r11,-62v1,-5,4,-10,12,-13","w":241},{"d":"658,-564v0,4,-2,8,-6,12r-240,253r141,278v4,8,2,21,-13,21r-147,0v-11,0,-20,-9,-25,-21r-102,-228r-40,228v-2,11,-13,21,-24,21r-121,0v-11,0,-19,-7,-17,-21r128,-726v2,-11,9,-20,24,-20r121,0v16,0,19,9,17,20r-72,405r183,-216v10,-12,21,-15,29,-15r151,0v8,0,13,4,13,9","w":588,"k":{"q":37,"d":35,"a":35,"\u00e6":35,"\u00e1":35,"\u00e2":35,"\u00e4":35,"\u00e0":35,"\u00e5":35,"\u00e3":35,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"o":37,"\u00f8":37,"\u0153":37,"\u00f3":37,"\u00f4":37,"\u00f6":37,"\u00f2":37,"\u00f5":37,"u":25,"\u00fa":25,"\u00fb":25,"\u00fc":25,"\u00f9":25,"c":35,"\u00e7":35}},{"d":"717,-581v0,83,-36,167,-116,203v44,26,66,75,66,121v0,209,-184,266,-358,266v-66,0,-145,-5,-183,-12v-32,-6,-46,-15,-46,-43v0,-6,1,-14,2,-22r107,-608v8,-45,25,-59,65,-65v35,-5,119,-11,183,-11v165,0,280,48,280,171xm549,-553v0,-44,-36,-59,-126,-59v-16,0,-62,0,-76,1r-31,173r112,0v76,0,121,-37,121,-115xm500,-250v0,-39,-24,-69,-93,-69r-112,0r-33,187v16,0,68,1,82,1v83,0,156,-20,156,-119","w":669,"k":{"X":22,"V":22,"T":13,"Y":40,"\u00dd":40,"\u0178":40}},{"d":"669,-535v0,36,-8,87,-33,230v-44,250,-146,314,-334,314v-90,0,-154,-10,-193,-20v-11,-3,-18,-7,-18,-17r0,-5r15,-87v3,-17,10,-24,27,-21v47,8,120,14,179,14v96,0,135,-35,151,-146r1,-7v-27,5,-78,12,-120,12v-117,0,-210,-57,-210,-182v0,-195,124,-302,313,-302v139,0,222,80,222,217xm504,-530v0,-74,-34,-92,-80,-92v-90,0,-122,74,-122,157v0,61,38,78,90,78v26,0,69,-6,93,-10v8,-43,19,-89,19,-133"},{"d":"608,-379v0,19,-4,46,-6,58r-13,70v-32,170,-119,260,-296,260v-136,0,-210,-86,-210,-204v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v135,0,211,80,211,202xm446,-367v0,-52,-24,-76,-73,-76v-58,0,-95,34,-111,122r-13,70v-3,18,-5,34,-5,48v0,52,24,75,74,75v65,0,95,-42,110,-123r13,-70v3,-17,5,-33,5,-46xm495,-639v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":590,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":20,"x":38,"z":16,"\u017e":16,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"383,-473v-15,88,-67,138,-155,138v-86,0,-124,-49,-124,-119v0,-12,1,-24,3,-37r7,-39v18,-96,80,-134,159,-134v86,0,121,45,121,111v0,13,-1,27,-4,41xm289,-480r7,-39v2,-10,3,-18,3,-26v0,-23,-10,-36,-36,-36v-29,0,-48,22,-55,62r-7,39v-2,10,-2,21,-2,25v0,25,10,38,35,38v29,0,48,-23,55,-63","w":330,"k":{"x":21,"v":11,"y":13,"\u00fd":13,"\u00ff":13,"z":9,"\u017e":9}},{"d":"688,-569v0,80,-36,144,-111,183v37,31,59,76,59,129v0,189,-134,266,-309,266r-11,0v-136,0,-228,-71,-228,-186v0,-89,43,-160,118,-209v-36,-32,-55,-71,-55,-126v0,-181,138,-240,300,-240r11,0v147,0,226,73,226,183xm528,-561v0,-42,-27,-66,-88,-66r-11,0v-77,0,-120,41,-120,118v0,39,24,65,77,65r31,0v71,0,111,-51,111,-117xm471,-251v0,-38,-20,-73,-75,-73r-31,0v-75,0,-112,68,-112,135v0,43,24,72,86,72r11,0v81,0,121,-60,121,-134"},{"d":"652,-723v0,1,-1,3,-1,5r-17,93v-2,11,-12,20,-23,20r-203,0v-47,0,-67,16,-76,68r-16,90r259,0v10,0,16,7,16,16r0,4r-16,95v-2,11,-13,20,-24,20r-259,0r-51,292v-2,11,-13,20,-24,20r-130,0v-10,0,-16,-7,-16,-16r0,-4r91,-517v33,-189,143,-215,281,-215v108,0,157,9,191,14v12,2,18,6,18,15","w":581,"k":{"\u201e":106,"\u201a":106,"G":21,"O":10,"\u00d8":10,"\u0152":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"a":36,"\u00e6":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u00e0":36,"\u00e5":36,"\u00e3":36,"e":30,"\u00e9":30,"\u00ea":30,"\u00eb":30,"\u00e8":30,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"\u00f5":36,",":106,".":106,"\u2026":106,"A":58,"\u00c6":58,"\u00c1":58,"\u00c2":58,"\u00c4":58,"\u00c0":58,"\u00c5":58,"\u00c3":58}},{"d":"649,-555r0,3r-94,532v-2,11,-12,20,-23,20r-112,0v-10,0,-17,-7,-17,-16r0,-4r5,-24v-47,31,-90,53,-159,53v-99,0,-156,-62,-156,-167v0,-19,2,-39,6,-61r58,-333v2,-11,14,-21,25,-21r121,0v10,0,16,8,16,17r0,4r-58,333v-3,17,-5,34,-5,46v0,34,15,48,62,48v20,0,69,-15,100,-33r69,-394v2,-11,13,-21,24,-21r121,0v10,0,17,8,17,18xm617,-639v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":612},{"d":"1001,-733v0,1,0,3,-1,5r-208,655v-18,58,-53,76,-106,76r-50,0v-44,0,-83,-18,-87,-68r-26,-299v-1,-8,-2,-8,-7,-8v-5,0,-7,0,-10,8r-132,299v-22,51,-60,68,-104,68r-51,0v-51,0,-84,-42,-84,-97r0,-5r22,-629v0,-11,10,-15,19,-15r132,0v8,0,13,7,13,17r0,2r-35,536r0,5v0,5,1,8,4,8v3,0,5,-4,9,-13r121,-275v17,-38,43,-48,70,-48r99,0v27,0,51,10,54,48r23,275v1,9,2,13,5,13v4,0,6,-4,8,-13r155,-536v3,-11,11,-19,19,-19r134,0v7,0,14,3,14,10","w":889,"k":{"\u00bf":73,"x":29,"q":15,"d":15,"O":10,"\u00d8":10,"\u0152":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"a":15,"\u00e6":15,"\u00e1":15,"\u00e2":15,"\u00e4":15,"\u00e0":15,"\u00e5":15,"\u00e3":15,"e":15,"\u00e9":15,"\u00ea":15,"\u00eb":15,"\u00e8":15,"o":15,"\u00f8":15,"\u0153":15,"\u00f3":15,"\u00f4":15,"\u00f6":15,"\u00f2":15,"\u00f5":15,"c":15,"\u00e7":15,"E":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00c8":10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"S":10,"\u0160":10,"s":15,"\u0161":15,"z":15,"\u017e":15}},{"d":"496,-600v0,-3,-2,-5,-6,-5r-273,0v-11,0,-21,-3,-18,-19r18,-100v2,-11,7,-19,24,-19r433,0v20,0,32,8,28,33r-13,73v-2,13,-12,27,-24,46r-364,572v-8,13,-16,19,-28,19r-141,0v-12,0,-16,-4,-16,-10v0,-4,2,-9,5,-13r373,-571v1,-2,2,-4,2,-6"},{"d":"679,-366v0,102,-26,235,-175,235r-6,0v-39,0,-79,-13,-112,-46v-26,32,-58,47,-98,47r-7,0v-148,0,-171,-134,-171,-235r0,-25v0,-101,26,-235,174,-235r7,0v39,0,79,14,111,46v25,-33,56,-47,100,-47r6,0v149,0,171,134,171,236r0,24xm560,-366r0,-24v0,-69,-4,-133,-52,-133r-5,0v-33,1,-43,46,-56,146v-7,56,-11,83,-18,110v24,28,49,34,70,34r5,0v48,0,56,-65,56,-133xm358,-485v-21,-26,-47,-37,-68,-37r-5,0v-49,0,-55,69,-55,132r0,25v0,63,3,132,52,132r5,0v32,0,43,-40,56,-151v7,-50,11,-79,15,-101","w":649},{"d":"620,-474v0,11,-9,16,-20,16r-419,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r419,0v11,0,20,5,20,16r0,90xm620,-218v0,11,-9,16,-20,16r-419,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r419,0v11,0,20,5,20,16r0,90"},{"d":"311,-151v-18,3,-39,5,-59,5v-67,0,-118,-28,-118,-101v0,-106,65,-172,172,-172v80,0,128,41,128,127v0,15,-2,33,-5,51r-12,70v-23,132,-92,176,-187,176v-48,0,-84,-7,-108,-12v-14,-3,-14,-8,-12,-17r8,-47v2,-12,5,-21,23,-18v27,4,58,8,96,8v43,0,64,-17,74,-70xm324,-226r5,-28v3,-15,4,-28,4,-38v0,-36,-15,-44,-38,-44v-31,0,-59,22,-59,79v0,27,18,36,44,36v11,0,31,-2,44,-5","w":355},{"d":"608,-379v0,19,-4,46,-6,58r-13,70v-32,170,-119,260,-296,260v-136,0,-210,-86,-210,-204v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v135,0,211,80,211,202xm446,-367v0,-52,-24,-76,-73,-76v-58,0,-95,34,-111,122r-13,70v-3,18,-5,34,-5,48v0,52,24,75,74,75v65,0,95,-42,110,-123r13,-70v3,-17,5,-33,5,-46xm602,-754r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm385,-754r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":590,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":20,"x":38,"z":16,"\u017e":16,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"439,-728r0,4r-159,899v-2,10,-10,19,-20,19r-244,0v-10,0,-17,-7,-17,-17r0,-3r16,-87v2,-11,12,-20,23,-20r97,0r121,-683r-96,0v-10,0,-17,-7,-17,-17r0,-3r15,-87v2,-11,13,-20,24,-20r243,0v9,0,14,7,14,15","w":374},{"d":"688,-569v0,80,-36,144,-111,183v37,31,59,76,59,129v0,189,-134,266,-309,266r-11,0v-136,0,-228,-71,-228,-186v0,-89,43,-160,118,-209v-36,-32,-55,-71,-55,-126v0,-181,138,-240,300,-240r11,0v147,0,226,73,226,183xm528,-561v0,-42,-27,-66,-88,-66r-11,0v-77,0,-120,41,-120,118v0,39,24,65,77,65r31,0v71,0,111,-51,111,-117xm471,-251v0,-38,-20,-73,-75,-73r-31,0v-75,0,-112,68,-112,135v0,43,24,72,86,72r11,0v81,0,121,-60,121,-134"},{"d":"677,-582v0,85,-39,166,-121,202v37,22,66,74,66,124v0,186,-137,265,-307,265v-78,0,-153,-12,-202,-28v-8,-3,-15,-8,-15,-16r0,-2r0,-1r14,-80v2,-11,11,-18,21,-18r1,0r1,0v69,6,143,9,197,9v90,0,122,-52,122,-136v0,-35,-19,-53,-70,-53r-176,0v-10,0,-16,-7,-16,-16r0,-3r0,-1r15,-85v2,-11,12,-19,23,-19r172,0v80,0,104,-52,104,-123v0,-37,-21,-53,-87,-53v-70,0,-122,5,-199,12r-1,0r-1,0v-9,0,-15,-5,-15,-14r0,-3r0,-1r14,-80v2,-10,12,-16,23,-19v55,-16,132,-31,210,-31v139,0,227,58,227,170"},{"d":"679,-597v0,108,-54,173,-151,231r-95,57v-74,44,-149,77,-171,167r311,0v10,0,17,7,17,16r0,2r0,1r-18,103v-2,11,-13,20,-24,20r-445,0v-10,0,-16,-7,-16,-16r0,-3r0,-1r18,-102v19,-110,82,-201,180,-262r104,-65v98,-61,123,-77,123,-121v0,-33,-25,-47,-96,-47v-61,0,-137,7,-199,13r-2,0v-9,0,-15,-7,-15,-16r0,-4r14,-78v2,-10,11,-16,22,-19v59,-17,134,-31,219,-31v150,0,224,60,224,155"},{"d":"623,-534v0,2,0,5,-1,8r-88,506v-2,11,-12,20,-23,20r-102,0v-10,0,-17,-8,-17,-17r0,-3r4,-29v-54,42,-102,58,-155,58v-120,0,-168,-92,-168,-192v0,-19,2,-37,5,-56v0,0,13,-75,16,-94v30,-174,138,-248,295,-248v68,0,142,10,207,25v17,4,27,7,27,22xm445,-442v-18,-3,-49,-6,-77,-6v-71,0,-100,42,-114,123r-18,105v-2,11,-3,22,-3,33v0,33,12,61,57,61v34,0,73,-16,106,-35xm497,-639v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":581,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":23}},{"d":"150,-706r95,-40v4,-2,9,-3,15,-3r49,0v13,0,13,8,12,17r-67,380v-3,13,-8,17,-18,17r-71,0v-9,0,-17,-4,-14,-17r51,-290r-57,23v-15,5,-21,1,-18,-12r11,-62v1,-5,4,-10,12,-13","w":241},{"d":"455,-453v0,-3,-2,-5,-6,-5r-273,0v-11,0,-21,-3,-18,-19r18,-100v2,-11,7,-19,24,-19r433,0v20,0,32,8,28,33r-13,73v-2,13,-12,27,-24,46r-364,572v-8,13,-16,19,-28,19r-141,0v-12,0,-16,-4,-16,-10v0,-4,2,-9,5,-13r373,-571v1,-2,2,-4,2,-6","k":{"\/":112,",":118,"\u201a":118,"\u201e":118,".":118,"\u2026":118}},{"w":250},{"d":"538,-540r0,5r-14,81v-2,11,-9,19,-20,19r-3,0v-28,-4,-113,-13,-164,-13r-4,0v-26,0,-55,1,-55,35v0,12,8,21,24,31r111,71v62,40,79,85,79,124v0,145,-118,196,-247,196v-55,0,-129,-8,-178,-22v-10,-3,-15,-9,-15,-18r0,-5r15,-81v2,-12,11,-19,23,-19r3,0v53,7,124,14,168,14v34,0,66,-3,66,-45v0,-13,-8,-26,-30,-40r-117,-75v-45,-29,-65,-75,-65,-119v0,-140,114,-180,234,-180v70,0,125,10,174,23v10,3,15,9,15,18","w":503,"k":{"v":6}},{"d":"221,-451r-55,-36v-25,-17,-45,-42,-45,-84v0,-59,42,-93,132,-93v44,0,69,6,95,13v8,2,12,5,10,16r-7,44v-2,13,-6,17,-18,15v-16,-2,-61,-7,-89,-7v-19,0,-27,2,-27,12v0,7,6,11,13,15r51,33v40,26,53,45,53,79v0,64,-42,109,-139,109v-31,0,-71,-4,-98,-12v-11,-3,-13,-7,-11,-17r7,-43v3,-13,8,-16,21,-15v29,4,73,8,97,8v18,0,25,-5,25,-18v0,-8,-4,-12,-15,-19","w":284,"k":{"v":3}},{"d":"469,-552v0,11,-9,20,-20,20r-118,0v-11,0,-20,-9,-20,-20r0,-112v0,-11,9,-20,20,-20r118,0v11,0,20,9,20,20r0,112xm620,-346v0,11,-9,16,-20,16r-419,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r419,0v11,0,20,5,20,16r0,90xm469,-104v0,11,-9,19,-20,19r-118,0v-11,0,-20,-8,-20,-19r0,-112v0,-11,9,-20,20,-20r118,0v11,0,20,9,20,20r0,112"},{"d":"787,-727r0,3r-124,704v-2,11,-13,20,-24,20r-131,0v-10,0,-16,-7,-16,-16r0,-4r50,-289r-247,0r-50,289v-2,11,-13,20,-24,20r-131,0v-10,0,-16,-7,-16,-16r0,-4r124,-704v2,-11,12,-19,23,-19r131,0v10,0,17,6,17,16r0,3r-47,266r247,0r47,-266v2,-11,12,-19,23,-19r131,0v10,0,17,6,17,16","w":729},{"d":"697,-573v11,0,19,6,17,20r-94,533v-2,11,-7,20,-24,20r-122,0v-12,0,-18,-8,-16,-20r76,-432r-178,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-19,-10,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r320,0xm582,-638v-12,0,-18,-8,-16,-20r16,-93v2,-11,8,-20,24,-20r130,0v12,0,19,5,16,20r-16,93v-2,11,-8,20,-24,20r-130,0","w":680},{"d":"653,-20v0,12,-9,20,-20,20r-137,0v-10,0,-17,-8,-17,-18r-7,-164r-205,0r-65,164v-4,10,-13,18,-23,18r-143,0v-9,0,-14,-5,-14,-12v0,-3,1,-6,2,-9r258,-620v40,-96,117,-111,186,-111v69,0,139,15,145,111r40,620r0,1xm468,-319r-12,-276v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-110,276r149,0xm676,-917r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm459,-917r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":669,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"G":20,"L":20,"\u0141":20,"T":70,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"V":56,"Y":76,"\u00dd":76,"\u0178":76,"v":46}},{"d":"716,-454r-69,0r-57,320v-4,25,4,25,25,25r45,0v7,0,10,2,8,11r-16,91v-2,11,-6,11,-13,13v-10,2,-29,6,-60,6v-86,0,-123,-40,-123,-107v0,-18,2,-38,6,-60r53,-299r-198,0r-77,434v-2,9,-4,20,-17,20r-103,0v-12,0,-14,-8,-12,-20r77,-434r-69,0v-11,0,-15,-2,-13,-15r14,-79v2,-13,7,-16,18,-16r600,0v11,0,14,3,12,16r-14,79v-2,13,-6,15,-17,15","w":672},{"d":"784,54v0,11,-9,20,-20,20r-131,0v-11,0,-20,-9,-20,-20r0,-648r-247,0r0,648v0,11,-9,20,-20,20r-131,0v-11,0,-20,-9,-20,-20r0,-648r-50,0v-11,0,-20,-9,-20,-20r0,-109v0,-11,9,-20,20,-20r689,0v11,0,20,9,20,20r0,109v0,11,-9,20,-20,20r-50,0r0,648","w":839},{"d":"646,-715r0,2r-17,97v-2,12,-11,20,-24,20r-1,0r-1,0v-37,-3,-91,-8,-146,-8v-69,0,-130,36,-154,169r-23,126v-4,23,-6,43,-6,61v0,83,44,108,101,108v55,0,110,-5,149,-8r3,0v10,0,17,5,17,15v0,1,-1,3,-1,5r-18,97v-3,14,-11,19,-26,23v-22,7,-82,17,-152,17v-131,0,-247,-80,-247,-244v0,-23,2,-48,7,-74r23,-126v48,-263,192,-317,352,-317v70,0,126,10,146,17v12,4,18,7,18,17r0,3","w":561,"k":{"O":21,"\u00d8":21,"\u0152":21,"\u00d3":21,"\u00d4":21,"\u00d6":21,"\u00d2":21,"\u00d5":21,"y":9,"\u00fd":9,"\u00ff":9,"C":29,"\u00c7":29,"G":16}},{"d":"546,-728r0,4r-124,704v-2,11,-12,20,-23,20r-131,0v-10,0,-16,-7,-16,-16r0,-4r97,-552r-120,46v-5,2,-9,3,-12,3v-6,0,-9,-3,-9,-9r0,-4r20,-114v1,-7,5,-11,12,-14r176,-75v7,-3,14,-4,24,-4r90,0v10,0,16,6,16,15"},{"d":"653,-20v0,12,-9,20,-20,20r-137,0v-10,0,-17,-8,-17,-18r-7,-164r-205,0r-65,164v-4,10,-13,18,-23,18r-143,0v-9,0,-14,-5,-14,-12v0,-3,1,-6,2,-9r258,-620v40,-96,117,-111,186,-111v69,0,139,15,145,111r40,620r0,1xm468,-319r-12,-276v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-110,276r149,0","w":669,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"G":20,"L":20,"\u0141":20,"T":70,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"V":56,"Y":76,"\u00dd":76,"\u0178":76,"v":46}},{"d":"393,-474v-16,91,-64,139,-165,139v-42,0,-85,-7,-115,-14v-16,-4,-17,-9,-15,-20r67,-381v1,-8,9,-15,17,-15r66,0v8,0,13,7,12,15r-16,89v15,-2,32,-3,42,-3v80,0,118,43,118,109v0,12,-2,25,-4,38xm298,-478r7,-43v2,-10,3,-20,3,-28v0,-21,-8,-34,-37,-34v-12,0,-28,0,-41,2r-29,163v11,2,25,3,41,3v38,0,49,-27,56,-63","w":336,"k":{"x":12,"v":10,"y":11,"\u00fd":11,"\u00ff":11}},{"d":"420,-518v-25,138,-82,188,-185,188v-89,0,-141,-62,-118,-188r8,-47v26,-147,87,-189,184,-189v90,0,142,62,119,189xm316,-518r8,-47v14,-81,2,-100,-30,-100v-31,0,-51,19,-65,100r-8,47v-14,80,-4,99,29,99v33,0,52,-19,66,-99","w":355},{"d":"1190,-374v0,-46,-18,-73,-72,-73v-24,0,-58,2,-83,5r-55,312v18,3,48,6,81,6v71,0,98,-42,111,-123r13,-78v3,-18,5,-34,5,-49xm1089,-747r-31,173v30,-4,63,-7,83,-7v139,0,211,81,211,200v0,18,-2,37,-5,56r-13,78v-30,178,-132,256,-297,256v-77,0,-153,-12,-208,-26v-24,-6,-29,-13,-26,-29r109,-615r-142,0v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-86,0r-80,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-178,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r178,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20","w":1331},{"d":"583,-760v0,3,-1,7,-3,12r-93,219v-6,14,-13,19,-23,19r-119,0v-7,0,-10,-3,-10,-8v0,-3,1,-7,3,-11r113,-219v7,-13,12,-19,22,-19r102,0v6,0,8,3,8,7xm363,-760v0,3,-1,7,-3,12r-93,219v-6,14,-13,19,-23,19r-119,0v-7,0,-10,-3,-10,-8v0,-3,1,-7,3,-11r114,-219v7,-13,12,-19,22,-19r101,0v6,0,8,3,8,7","w":473,"k":{".":75,"\u2026":75}},{"d":"678,-513v0,30,-3,63,-9,99r-15,86v-43,249,-145,337,-330,337v-132,0,-218,-79,-218,-239v0,-30,3,-63,9,-98r15,-86v46,-266,153,-338,329,-338v137,0,219,81,219,239xm509,-515v0,-74,-28,-95,-75,-95v-64,0,-106,42,-133,196r-15,86v-7,42,-11,76,-11,102v0,73,27,93,74,93v62,0,106,-37,134,-195r15,-86v7,-41,11,-75,11,-101"},{"d":"710,-549v0,12,-1,25,-2,38r-1,9v-21,189,-168,242,-341,242v-24,0,-56,-2,-81,-3r-42,243v-2,11,-13,20,-24,20r-129,0v-10,0,-17,-6,-17,-16r0,-3r119,-672v6,-34,21,-43,53,-48v52,-8,134,-13,206,-13v152,0,259,60,259,203xm539,-530v0,-57,-35,-80,-111,-80v-14,0,-70,2,-82,3r-36,204v11,1,70,2,81,2v89,0,138,-32,146,-101r1,-9v1,-7,1,-13,1,-19","w":652,"k":{"\u201e":105,"\u201a":105,"a":21,"\u00e6":21,"\u00e1":21,"\u00e2":21,"\u00e4":21,"\u00e0":21,"\u00e5":21,"\u00e3":21,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,",":105,".":110,"\u2026":110,"T":11,"A":54,"\u00c6":54,"\u00c1":54,"\u00c2":54,"\u00c4":54,"\u00c0":54,"\u00c5":54,"\u00c3":54,"X":36,"Z":26,"\u017d":26}},{"d":"429,-661v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-85,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20r-128,726v-2,11,-12,21,-23,21r-122,0v-10,0,-17,-8,-17,-18r0,-3r113,-640r-142,0","w":677},{"d":"428,-283v0,12,-6,22,-14,30r-186,178v-9,9,-17,12,-32,12r-133,0v-8,0,-12,-4,-12,-9v0,-4,2,-8,6,-11r224,-203r-141,-203v-2,-2,-2,-5,-2,-7v0,-7,7,-13,16,-13r109,0v15,0,22,3,28,12r127,185v7,10,10,20,10,29","w":413},{"d":"706,-717r0,3r-19,106v-2,11,-8,13,-17,13r-3,0v-48,-2,-122,-8,-207,-8v-81,0,-137,32,-161,170r-22,125v-4,25,-7,47,-7,66v0,83,41,104,89,104v28,0,54,-1,78,-3r40,-230v2,-11,12,-20,23,-20r128,0v10,0,16,7,16,16r0,4r-59,336v-2,14,-8,20,-24,23v-56,11,-128,21,-228,21v-102,0,-236,-63,-236,-243v0,-23,2,-48,7,-75r22,-124v49,-276,198,-319,361,-319v100,0,169,15,205,23v7,2,14,5,14,12","k":{"V":6}},{"d":"608,-379v0,19,-4,46,-6,58r-13,70v-32,170,-119,260,-296,260v-136,0,-210,-86,-210,-204v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v135,0,211,80,211,202xm446,-367v0,-52,-24,-76,-73,-76v-58,0,-95,34,-111,122r-13,70v-3,18,-5,34,-5,48v0,52,24,75,74,75v65,0,95,-42,110,-123r13,-70v3,-17,5,-33,5,-46","w":590,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":20,"x":38,"z":16,"\u017e":16,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"715,-508v0,23,-2,47,-7,72r-23,129v-40,226,-153,316,-375,316v-83,0,-170,-8,-210,-15v-15,-3,-24,-9,-24,-25v0,-3,0,-6,1,-10r117,-661v4,-23,15,-32,35,-35v42,-7,133,-15,216,-15v166,0,270,89,270,244xm543,-495v0,-87,-49,-112,-124,-112v-25,0,-57,1,-71,2r-83,467v14,1,46,2,71,2v96,0,154,-36,178,-171r23,-129v4,-22,6,-42,6,-59","w":682,"k":{"T":15,"V":16,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"X":33,"Z":9,"\u017d":9}},{"d":"518,-121r0,3r-17,93v-2,13,-8,18,-23,21v-34,7,-113,13,-166,13v-110,0,-211,-39,-211,-165v0,-15,2,-32,5,-50r91,-517v2,-11,13,-20,24,-20r131,0v10,0,16,7,16,16r0,4r-91,517v-2,10,-3,19,-3,26v0,32,17,42,55,42r172,0v10,0,17,7,17,17","w":519,"k":{"O":30,"\u00d8":30,"\u0152":30,"\u00d3":30,"\u00d4":30,"\u00d6":30,"\u00d2":30,"\u00d5":30,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":10,"\u00f8":10,"\u0153":10,"\u00f3":10,"\u00f4":10,"\u00f6":10,"\u00f2":10,"\u00f5":10,"y":63,"\u00fd":63,"\u00ff":63,"C":13,"\u00c7":13,"E":16,"\u00c9":16,"\u00ca":16,"\u00cb":16,"\u00c8":16,"G":27,"L":22,"\u0141":22,"T":82,"U":34,"\u00da":34,"\u00db":34,"\u00dc":34,"\u00d9":34,"V":64,"Y":96,"\u00dd":96,"\u0178":96,"v":21,"\u2013":16,"\u2014":16,"S":7,"\u0160":7,"-":16,"\u00ae":24,"\u2122":24}},{"d":"651,-396v0,36,-8,87,-33,230v-44,250,-146,314,-334,314v-90,0,-154,-10,-193,-20v-11,-3,-18,-7,-18,-17r0,-5r15,-87v3,-17,10,-24,27,-21v47,8,120,14,179,14v96,0,135,-35,151,-146r1,-7v-27,5,-78,12,-120,12v-117,0,-210,-57,-210,-182v0,-195,124,-302,313,-302v139,0,222,80,222,217xm486,-391v0,-74,-34,-92,-80,-92v-90,0,-122,74,-122,157v0,61,38,78,90,78v26,0,69,-6,93,-10v8,-43,19,-89,19,-133"},{"d":"394,-14v0,10,-12,19,-22,19r-127,0v-11,0,-14,-10,-15,-21r-89,-707r0,-2v0,-10,12,-18,22,-18r126,0v11,0,16,9,17,20r88,707r0,2","w":405},{"d":"688,-569v0,80,-36,144,-111,183v37,31,59,76,59,129v0,189,-134,266,-309,266r-11,0v-136,0,-228,-71,-228,-186v0,-89,43,-160,118,-209v-36,-32,-55,-71,-55,-126v0,-181,138,-240,300,-240r11,0v147,0,226,73,226,183xm528,-561v0,-42,-27,-66,-88,-66r-11,0v-77,0,-120,41,-120,118v0,39,24,65,77,65r31,0v71,0,111,-51,111,-117xm471,-251v0,-38,-20,-73,-75,-73r-31,0v-75,0,-112,68,-112,135v0,43,24,72,86,72r11,0v81,0,121,-60,121,-134"},{"d":"675,-725r0,1r-18,100v-2,11,-12,19,-23,19r-272,0r-37,138r29,0v162,0,262,52,262,185v0,203,-122,291,-318,291v-64,0,-136,-11,-191,-29v-8,-3,-17,-7,-17,-18r0,-3r0,-1r14,-79v2,-11,12,-18,22,-18r1,0r1,0v62,7,140,12,177,12v99,0,138,-46,138,-142v0,-53,-31,-67,-128,-67r-155,0v-7,0,-11,-6,-11,-12r0,-2r0,-1r97,-373v3,-10,13,-19,23,-19r389,0v10,0,17,7,17,16r0,2"},{"w":250},{"d":"391,-606r0,643v0,142,-58,171,-168,171v-29,0,-49,-3,-79,-8v-12,-2,-19,-10,-19,-20r0,-78v0,-11,8,-17,21,-17r49,0v30,0,33,-7,33,-47r0,-643v0,-142,58,-171,168,-171v29,0,49,3,79,8v12,2,19,10,19,20r0,78v0,11,-8,17,-21,17r-49,0v-30,0,-33,7,-33,47","w":479},{"d":"713,-561v0,119,-52,216,-169,256r101,282v1,3,2,5,2,8v0,8,-6,15,-18,15r-145,0v-11,0,-12,-10,-16,-20r-90,-253r-1,0v-4,0,-10,1,-18,1v-21,0,-52,-2,-71,-2r-44,254v-2,11,-13,20,-24,20r-130,0v-10,0,-16,-7,-16,-16r0,-3r0,-1r118,-671v6,-34,21,-43,53,-48v48,-8,134,-13,206,-13v150,0,262,56,262,191xm542,-539v0,-52,-39,-68,-117,-68v-14,0,-66,2,-78,3r-34,192v11,1,59,2,70,2v98,0,159,-24,159,-129","w":680,"k":{"V":31,"T":32,"G":28,"O":28,"\u00d8":28,"\u0152":28,"\u00d3":28,"\u00d4":28,"\u00d6":28,"\u00d2":28,"\u00d5":28,"e":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00e8":23,"o":30,"\u00f8":30,"\u0153":30,"\u00f3":30,"\u00f4":30,"\u00f6":30,"\u00f2":30,"\u00f5":30,"y":20,"\u00fd":20,"\u00ff":20,"c":6,"\u00e7":6,"C":28,"\u00c7":28,"E":23,"\u00c9":23,"\u00ca":23,"\u00cb":23,"\u00c8":23,"L":23,"\u0141":23,"Y":39,"\u00dd":39,"\u0178":39,"S":8,"\u0160":8}},{"d":"369,-728r0,4r-124,704v-2,11,-12,20,-23,20r-134,0v-9,0,-14,-7,-14,-15r0,-5r124,-704v2,-11,10,-19,21,-19r134,0v10,0,16,6,16,15","w":311},{"d":"669,-535v0,36,-8,87,-33,230v-44,250,-146,314,-334,314v-90,0,-154,-10,-193,-20v-11,-3,-18,-7,-18,-17r0,-5r15,-87v3,-17,10,-24,27,-21v47,8,120,14,179,14v96,0,135,-35,151,-146r1,-7v-27,5,-78,12,-120,12v-117,0,-210,-57,-210,-182v0,-195,124,-302,313,-302v139,0,222,80,222,217xm504,-530v0,-74,-34,-92,-80,-92v-90,0,-122,74,-122,157v0,61,38,78,90,78v26,0,69,-6,93,-10v8,-43,19,-89,19,-133"},{"d":"423,-320r-16,95v-41,24,-64,43,-75,103r-24,131v-28,154,-73,185,-234,185r-58,0v-10,0,-17,-7,-17,-17r0,-3r16,-87v2,-11,12,-20,23,-20r58,0v32,0,40,-9,49,-58r24,-131v13,-69,36,-122,109,-151v-37,-26,-59,-68,-59,-119v0,-10,1,-20,3,-31r23,-135v2,-14,4,-26,4,-34v0,-20,-8,-24,-31,-24r-58,0v-10,0,-17,-7,-17,-17r0,-3r15,-87v2,-11,13,-20,24,-20r58,0v113,0,174,39,174,135v0,15,-2,32,-5,50r-23,135v-2,13,-4,24,-4,34v0,28,11,47,41,69","w":407},{"d":"624,-391v0,14,-7,24,-21,36r-232,207v-7,6,-13,11,-24,11r-139,0v-7,0,-12,-6,-12,-13v0,-4,2,-8,6,-12r259,-229r-259,-229v-4,-4,-6,-8,-6,-12v0,-7,5,-13,12,-13r139,0v11,0,17,5,24,11r232,207v14,12,21,22,21,36"},{"d":"420,-183v-25,138,-82,188,-185,188v-89,0,-141,-62,-118,-188r8,-47v26,-147,87,-189,184,-189v90,0,142,62,119,189xm316,-183r8,-47v14,-81,2,-100,-30,-100v-31,0,-51,19,-65,100r-8,47v-14,80,-4,99,29,99v33,0,52,-19,66,-99","w":355},{"d":"191,-355v-1,8,-6,15,-17,15r-67,0v-9,0,-12,-7,-11,-15r51,-290v1,-7,5,-14,17,-14r67,0v10,0,12,7,11,14xm255,-702v-1,8,-8,15,-16,15r-72,0v-8,0,-14,-4,-12,-15r9,-50v2,-8,4,-15,17,-15r72,0v8,0,14,5,11,15","w":172},{"d":"657,-480v0,105,-47,151,-143,151v-39,0,-68,-15,-91,-29r-71,-43v-18,-11,-33,-13,-43,-13v-28,0,-31,19,-31,40r0,18v0,11,-7,20,-18,20r-89,0v-13,0,-20,-6,-20,-20r0,-18v0,-120,57,-158,143,-158v19,0,54,5,73,17r90,54v18,11,33,14,43,14v21,0,29,-8,29,-33r0,-25v0,-14,6,-20,19,-20r89,0v13,0,20,6,20,20r0,25"},{"d":"617,-381v0,18,-2,37,-5,56r-13,78v-30,178,-132,256,-297,256v-77,0,-153,-12,-208,-26v-24,-6,-29,-13,-26,-29r124,-701v2,-11,9,-20,24,-20r121,0v11,0,20,6,17,20r-31,173v30,-4,63,-7,83,-7v139,0,211,81,211,200xm455,-374v0,-46,-18,-73,-72,-73v-24,0,-58,2,-83,5r-55,312v18,3,48,6,81,6v71,0,98,-42,111,-123r13,-78v3,-18,5,-34,5,-49","w":596,"k":{"y":20,"\u00fd":20,"\u00ff":20,"v":18,"x":21,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"644,-578r0,1r-18,100v-2,11,-12,19,-23,19r-272,0r-37,138r29,0v162,0,262,52,262,185v0,203,-122,291,-318,291v-64,0,-136,-11,-191,-29v-8,-3,-17,-7,-17,-18r0,-3r0,-1r14,-79v2,-11,12,-18,22,-18r1,0r1,0v62,7,140,12,177,12v99,0,138,-46,138,-142v0,-53,-31,-67,-128,-67r-155,0v-7,0,-11,-6,-11,-12r0,-2r0,-1r97,-373v3,-10,13,-19,23,-19r389,0v10,0,17,7,17,16r0,2"},{"d":"470,-727r0,4r-15,87v-2,11,-12,20,-23,20r-96,0r-121,683r97,0v10,0,17,7,17,17r0,3r-16,87v-2,11,-12,20,-23,20r-244,0v-9,0,-14,-7,-14,-15r0,-4r159,-899v2,-10,10,-19,20,-19r243,0v10,0,16,7,16,16","w":374,"k":{"j":-37}},{"d":"652,-725v0,2,-1,4,-1,6r-17,93v-2,11,-12,20,-23,20r-203,0v-41,0,-66,8,-76,67r-16,92r259,0v10,0,16,7,16,17r0,3r-16,95v-2,11,-13,20,-24,20r-259,0r-19,106v-2,10,-3,19,-3,26v0,32,17,42,55,42r203,0v10,0,17,7,17,17r0,3r-17,93v-2,13,-9,19,-23,21v-36,5,-86,13,-194,13v-104,0,-213,-37,-213,-166v0,-15,2,-32,5,-49r59,-332v34,-194,145,-214,282,-214v108,0,156,8,190,13v12,2,18,5,18,14","w":581},{"d":"669,-732v15,4,20,9,18,22r-15,87v-3,17,-8,24,-27,21v-47,-7,-120,-14,-179,-14v-96,0,-135,35,-151,146r-1,7v27,-5,78,-12,120,-12v117,0,210,57,210,182v0,195,-124,302,-300,302v-152,0,-235,-80,-235,-217v0,-36,8,-87,33,-230v44,-250,146,-314,334,-314v90,0,154,10,193,20xm476,-278v0,-61,-38,-78,-90,-78v-26,0,-69,6,-93,10v-8,43,-19,89,-19,133v0,74,34,92,80,92v90,0,122,-74,122,-157"},{"d":"231,-182r-85,0v-7,0,-14,-3,-11,-14r53,-201v1,-9,11,-17,20,-17r210,0v14,0,16,7,14,17r-10,54v-2,12,-5,16,-20,16r-141,0v-5,19,-12,42,-18,63r10,0v98,0,148,30,148,107v0,103,-61,162,-180,162v-35,0,-76,-6,-106,-16v-7,-2,-14,-6,-12,-18r7,-43v2,-10,4,-17,21,-15v33,3,77,6,95,6v53,0,68,-28,68,-63v0,-30,-16,-38,-63,-38","w":355},{"d":"368,-251v-2,11,-13,19,-24,19r-300,0v-11,0,-17,-8,-15,-19r14,-79v2,-11,11,-20,22,-20r300,0v11,0,19,9,17,20","w":309},{"d":"685,-720r0,5v-4,26,-10,61,-16,91v-2,9,-7,18,-13,26r-348,432v-4,5,-7,9,-7,13v0,3,3,5,10,5r260,0v10,0,17,6,17,15r0,3r-19,110v-2,11,-13,20,-24,20r-454,0v-21,0,-37,-7,-37,-25v0,-2,1,-4,1,-6r15,-80v3,-14,7,-26,22,-44r343,-422v4,-5,6,-9,6,-12v0,-4,-3,-6,-10,-6r-238,0v-10,0,-17,-6,-17,-16r0,-3r20,-110v2,-11,12,-19,23,-19r431,0v19,0,35,8,35,23","w":615},{"d":"659,-574v0,5,-4,9,-12,9r-130,0v-17,0,-21,-4,-31,-15r-80,-89r-80,89v-10,11,-14,15,-31,15r-130,0v-8,0,-12,-4,-12,-9v0,-4,2,-8,5,-12r111,-148v10,-14,16,-18,34,-18r206,0v18,0,23,4,34,18r111,148v3,4,5,8,5,12"},{"d":"163,-214v-17,-16,-25,-41,-25,-68v0,-97,67,-137,168,-137r6,0v79,0,129,35,129,99v0,46,-20,83,-58,106v18,16,28,46,28,75v0,101,-81,144,-173,144r-6,0v-78,0,-128,-41,-128,-108v0,-43,19,-88,59,-111xm258,-175v-31,0,-53,24,-53,62v0,23,14,38,41,38r6,0v38,0,58,-26,58,-65v0,-18,-6,-35,-35,-35r-17,0xm272,-252r17,0v35,0,51,-23,51,-54v0,-21,-12,-33,-41,-33r-7,0v-35,0,-57,18,-57,55v0,20,12,32,37,32","w":355},{"d":"651,-716r0,4r-18,101v-2,11,-9,17,-20,17r-2,0v-28,-2,-142,-11,-210,-11v-48,0,-89,8,-89,64v0,21,10,31,51,58r116,76v75,49,107,102,107,160v0,183,-143,256,-311,256v-79,0,-140,-9,-189,-22v-9,-2,-16,-8,-16,-17r0,-3r17,-98v2,-12,10,-19,21,-19r3,0v40,4,149,12,188,12v56,0,103,-18,103,-82v0,-22,-12,-44,-52,-70r-123,-81v-63,-41,-90,-99,-90,-155v0,-175,143,-226,294,-226v73,0,172,12,208,22v8,2,12,7,12,14","w":588,"k":{"V":10,"v":9,"x":6}},{"d":"545,-570v0,7,-6,12,-15,15r-115,34r72,98v3,5,5,10,5,14v0,5,-1,9,-6,12r-52,38v-3,2,-6,3,-9,3v-6,0,-12,-4,-16,-10r-69,-100r-69,100v-4,6,-10,10,-16,10v-3,0,-6,-1,-9,-3r-53,-38v-5,-3,-7,-7,-7,-12v0,-4,3,-9,6,-14r72,-98r-114,-34v-9,-3,-16,-8,-16,-16v0,-1,0,-3,1,-5r20,-63v2,-7,7,-10,13,-10v4,0,7,1,11,2r115,38r-3,-119v0,-11,5,-21,16,-21r66,0v11,0,15,10,15,21r-1,119r113,-38v4,-1,7,-2,11,-2v6,0,11,3,13,10r20,63v1,2,1,4,1,6","w":479},{"d":"662,-559v0,3,-1,6,-2,9r-206,454v-40,89,-105,105,-164,105v-59,0,-116,-16,-125,-105r-45,-454r0,-2v0,-12,9,-21,19,-21r127,0v10,0,16,9,17,21r17,392v1,15,5,21,12,21v7,0,13,-6,19,-21r155,-392v5,-12,15,-21,25,-21r137,0v8,0,14,6,14,14","w":585,"k":{"\u201e":55,"\u201a":55,"q":22,"d":20,".":51,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e0":23,"\u00e5":23,"\u00e3":23,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":23,"\u00f8":23,"\u0153":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,",":55,"\u2026":51}},{"d":"747,-541v0,2,-1,3,-1,4r-26,76v-2,7,-10,11,-17,11r-85,0r-43,161r84,0v8,0,16,5,16,13v0,1,-1,2,-1,3r-23,71v-2,7,-12,15,-19,15r-84,0r-44,168v-3,10,-10,19,-21,19r-102,0v-9,0,-14,-6,-14,-14v0,-1,1,-3,1,-5r44,-168r-113,0r-45,168v-3,10,-11,19,-21,19r-103,0v-8,0,-14,-6,-14,-14v0,-2,1,-3,1,-5r44,-168r-85,0v-7,0,-12,-4,-12,-10v0,-2,0,-3,1,-5r25,-75v2,-7,9,-12,16,-12r83,0r42,-161r-85,0v-7,0,-12,-3,-12,-9v0,-2,0,-3,1,-5r25,-77v2,-7,11,-11,18,-11r80,0r46,-172v3,-10,12,-19,22,-19r103,0v8,0,13,6,13,14v0,1,-1,3,-1,5r-46,172r113,0r47,-172v3,-10,11,-19,22,-19r102,0v9,0,13,6,13,13v0,2,0,4,-1,6r-47,172r87,0v8,0,16,4,16,11xm482,-450r-113,0r-43,161r113,0","w":699},{"d":"669,-732v15,4,20,9,18,22r-15,87v-3,17,-8,24,-27,21v-47,-7,-120,-14,-179,-14v-96,0,-135,35,-151,146r-1,7v27,-5,78,-12,120,-12v117,0,210,57,210,182v0,195,-124,302,-300,302v-152,0,-235,-80,-235,-217v0,-36,8,-87,33,-230v44,-250,146,-314,334,-314v90,0,154,10,193,20xm476,-278v0,-61,-38,-78,-90,-78v-26,0,-69,6,-93,10v-8,43,-19,89,-19,133v0,74,34,92,80,92v90,0,122,-74,122,-157"},{"d":"669,-732v15,4,20,9,18,22r-15,87v-3,17,-8,24,-27,21v-47,-7,-120,-14,-179,-14v-96,0,-135,35,-151,146r-1,7v27,-5,78,-12,120,-12v117,0,210,57,210,182v0,195,-124,302,-300,302v-152,0,-235,-80,-235,-217v0,-36,8,-87,33,-230v44,-250,146,-314,334,-314v90,0,154,10,193,20xm476,-278v0,-61,-38,-78,-90,-78v-26,0,-69,6,-93,10v-8,43,-19,89,-19,133v0,74,34,92,80,92v90,0,122,-74,122,-157"},{"d":"582,-759v0,3,-1,7,-3,11r-114,219v-7,13,-12,19,-22,19r-101,0v-6,0,-8,-3,-8,-7v0,-3,1,-7,3,-12r93,-219v6,-14,13,-19,23,-19r119,0v7,0,10,3,10,8xm363,-759v0,3,-1,7,-3,11r-114,219v-7,13,-12,19,-22,19r-101,0v-6,0,-8,-3,-8,-7v0,-3,1,-7,3,-12r93,-219v6,-14,13,-19,23,-19r119,0v7,0,10,3,10,8","w":472,"k":{",":75,"\u201a":75,"\u201e":75,".":75,"\u2026":75}},{"d":"146,-142r133,0r49,-283r-140,56v-5,2,-9,3,-12,3v-7,0,-10,-5,-9,-13r20,-114v2,-7,5,-11,13,-14r196,-85v7,-3,14,-4,24,-4r90,0v11,0,17,8,15,19r-76,435r133,0v11,0,18,8,16,19r-18,103v-2,11,-12,20,-23,20r-436,0v-11,0,-19,-9,-17,-20r18,-103v2,-11,13,-19,24,-19"},{"d":"514,-356v-1,8,-10,16,-18,16r-66,0v-8,0,-13,-8,-12,-16r33,-185v5,-31,0,-41,-22,-41v-9,0,-22,2,-39,9v-1,10,-3,22,-5,32r-33,185v-1,8,-9,16,-17,16r-67,0v-8,0,-12,-8,-11,-16r33,-185v5,-31,1,-41,-17,-41v-13,0,-27,5,-44,14r-38,212v-1,8,-10,16,-18,16r-65,0v-8,0,-14,-8,-13,-16r51,-289v1,-7,4,-14,18,-14r63,0v7,0,13,2,11,13r-1,6v26,-14,51,-24,81,-24v29,0,47,9,62,28v30,-21,57,-28,83,-28v83,0,95,62,84,123","w":491,"k":{"v":11}},{"d":"543,-774v0,2,0,4,-1,6v-25,68,-76,145,-204,145v-97,0,-156,-63,-162,-145r0,-1v0,-7,4,-10,11,-10r77,0v8,0,10,4,11,12v5,45,36,57,72,57v42,0,68,-15,86,-57v3,-8,5,-12,15,-12r87,0v6,0,8,2,8,5","w":443},{"d":"231,-517r-85,0v-7,0,-14,-3,-11,-14r53,-201v1,-9,11,-17,20,-17r210,0v14,0,16,7,14,17r-10,54v-2,12,-5,16,-20,16r-141,0v-5,19,-12,42,-18,63r10,0v98,0,148,30,148,107v0,103,-61,162,-180,162v-35,0,-76,-6,-106,-16v-7,-2,-14,-6,-12,-18r7,-43v2,-10,4,-17,21,-15v33,3,77,6,95,6v53,0,68,-28,68,-63v0,-30,-16,-38,-63,-38","w":355},{"d":"743,-149r0,3r-22,126v-2,11,-13,20,-24,20r-118,0v-10,0,-16,-7,-16,-16r0,-4r22,-126v2,-11,12,-19,23,-19r118,0v10,0,17,6,17,16xm489,-149r0,3r-22,126v-2,11,-13,20,-24,20r-118,0v-10,0,-16,-7,-16,-16r0,-4r22,-126v2,-11,12,-19,23,-19r118,0v10,0,17,6,17,16xm235,-149r0,3r-22,126v-2,11,-13,20,-24,20r-118,0v-10,0,-16,-7,-16,-16r0,-4r22,-126v2,-11,12,-19,23,-19r118,0v10,0,17,6,17,16","w":767,"k":{"*":76,"\"":75,"'":75,"\u2019":75,"\u201d":75,"\u2018":75,"\u201c":75}},{"d":"782,-733v0,4,-3,9,-8,15r-309,338r176,359v2,3,2,6,2,9v0,7,-6,12,-16,12r-161,0v-12,0,-16,-6,-20,-14r-144,-330r-57,324v-2,11,-13,20,-24,20r-131,0v-10,0,-16,-7,-16,-16r0,-4r124,-704v2,-11,12,-19,23,-19r131,0v10,0,17,6,17,16r0,3r-54,303r264,-310v7,-8,13,-12,24,-12r164,0v10,0,15,4,15,10","w":678,"k":{"\u00c7":61,"v":53,"q":25,"d":33,"V":7,"T":6,"G":61,"-":16,"O":53,"\u00d8":53,"\u0152":53,"\u00d3":53,"\u00d4":53,"\u00d6":53,"\u00d2":53,"\u00d5":53,"a":28,"\u00e6":28,"\u00e1":28,"\u00e2":28,"\u00e4":28,"\u00e0":28,"\u00e5":28,"\u00e3":28,"e":50,"\u00e9":50,"\u00ea":50,"\u00eb":50,"\u00e8":50,"o":38,"\u00f8":38,"\u0153":38,"\u00f3":38,"\u00f4":38,"\u00f6":38,"\u00f2":38,"\u00f5":38,"u":46,"\u00fa":46,"\u00fb":46,"\u00fc":46,"\u00f9":46,"y":53,"\u00fd":53,"\u00ff":53,"\u2019":7,"\u201d":7,"c":33,"\u00e7":33,"C":61,"E":42,"\u00c9":42,"\u00ca":42,"\u00cb":42,"\u00c8":42,"L":13,"\u0141":13,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"Y":10,"\u00dd":10,"\u0178":10,"\u2013":16,"\u2014":16}},{"d":"323,-556r0,4r-103,584v-24,136,-76,171,-188,171v-26,0,-51,-2,-79,-7v-11,-2,-16,-7,-16,-16r0,-4r14,-79v2,-11,11,-18,24,-18r44,0v28,0,33,-13,39,-47r103,-584v2,-11,12,-21,23,-21r124,0v10,0,15,8,15,17","w":290},{"d":"1043,-573v11,0,19,6,17,20r-94,533v-2,11,-7,20,-24,20r-122,0v-12,0,-18,-8,-16,-20r76,-432r-182,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-3,-70,-9v-8,-2,-18,-6,-16,-17r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-178,0r-81,453v-27,153,-102,172,-209,172v-16,0,-48,-3,-70,-9v-8,-2,-18,-6,-16,-17r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r178,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r324,0xm928,-638v-12,0,-18,-8,-16,-20r16,-93v2,-11,8,-20,24,-20r130,0v12,0,19,5,16,20r-16,93v-2,11,-8,20,-24,20r-130,0","w":1026},{"d":"671,-714r0,3r-17,99v-2,11,-11,18,-21,18r-2,0v-61,-6,-142,-11,-210,-11v-50,0,-88,9,-88,66v0,21,12,35,53,60r115,69v78,47,106,107,106,167v0,138,-90,230,-226,244r-17,94v-2,11,-12,20,-23,20r-110,0v-10,0,-17,-7,-17,-17r0,-3r16,-89v-49,-3,-90,-10,-124,-19v-9,-2,-15,-8,-15,-17r0,-3r17,-98v2,-10,11,-19,22,-19r2,0v40,5,140,12,187,12v62,0,104,-14,104,-83v0,-22,-12,-39,-51,-65r-123,-82v-68,-45,-92,-105,-92,-158v0,-133,83,-203,205,-219r16,-87v2,-11,13,-20,24,-20r110,0v10,0,16,7,16,16r0,4r-15,83v58,4,117,12,143,19v8,2,15,8,15,16"},{"d":"787,-727r0,3r-121,686v-4,21,-23,38,-44,38r-84,0v-21,0,-44,-4,-55,-31r-166,-394v-3,-6,-5,-8,-8,-8v-3,0,-5,2,-6,8r-71,405v-2,11,-13,20,-24,20r-118,0v-10,0,-16,-7,-16,-17r0,-3r120,-685v4,-21,24,-38,45,-38r76,0v20,0,44,6,54,31r172,412v3,6,3,8,6,8v2,0,6,-2,7,-9r75,-423v2,-11,12,-19,23,-19r118,0v10,0,17,7,17,16","w":729,"k":{"T":26,"V":21,"Y":41,"\u00dd":41,"\u0178":41}},{"d":"130,-86v37,3,84,5,107,5v44,0,57,-21,57,-59v0,-18,-4,-31,-31,-31r-95,0v-12,0,-15,-7,-13,-17r8,-46v2,-10,6,-16,19,-16r93,0v38,0,48,-32,48,-52v0,-21,-10,-31,-42,-31v-23,0,-62,1,-98,6v-18,3,-25,-1,-23,-15r7,-43v2,-10,10,-14,18,-17v30,-8,71,-17,119,-17v81,0,125,33,125,93v0,54,-24,95,-61,115v21,18,30,37,30,71v0,97,-58,145,-172,145v-43,0,-84,-7,-112,-15v-7,-3,-14,-6,-12,-17r8,-43v2,-10,7,-16,20,-16","w":355},{"d":"325,-345v124,-50,158,-53,158,-98v0,-26,-26,-34,-99,-34v-61,0,-138,8,-200,13v-14,1,-18,-6,-16,-20r14,-78v1,-10,11,-16,22,-19v59,-17,144,-31,218,-31v151,0,229,47,229,150v0,113,-57,168,-198,222v-113,44,-161,63,-167,94r0,4r280,0v16,0,18,8,16,19r-18,103v-2,11,-5,20,-23,20r-445,0v-11,0,-19,-9,-17,-20r12,-70v28,-154,98,-201,234,-255"},{"d":"571,-661r-142,0v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-85,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20r-31,173v30,-4,63,-7,83,-7v139,0,211,81,211,200v0,18,-2,37,-5,56r-13,78v-30,178,-132,256,-297,256v-77,0,-153,-12,-208,-26v-24,-6,-29,-13,-26,-29xm849,-374v0,-46,-18,-73,-72,-73v-24,0,-58,2,-83,5r-55,312v18,3,48,6,81,6v71,0,98,-42,111,-123r13,-78v3,-18,5,-34,5,-49","w":990},{"d":"677,-582v0,85,-39,166,-121,202v37,22,66,74,66,124v0,186,-137,265,-307,265v-78,0,-153,-12,-202,-28v-8,-3,-15,-8,-15,-16r0,-2r0,-1r14,-80v2,-11,11,-18,21,-18r1,0r1,0v69,6,143,9,197,9v90,0,122,-52,122,-136v0,-35,-19,-53,-70,-53r-176,0v-10,0,-16,-7,-16,-16r0,-3r0,-1r15,-85v2,-11,12,-19,23,-19r172,0v80,0,104,-52,104,-123v0,-37,-21,-53,-87,-53v-70,0,-122,5,-199,12r-1,0r-1,0v-9,0,-15,-5,-15,-14r0,-3r0,-1r14,-80v2,-10,12,-16,23,-19v55,-16,132,-31,210,-31v139,0,227,58,227,170"},{"d":"620,-415v0,19,-2,39,-6,61r-58,333v-2,11,-14,21,-25,21r-121,0v-10,0,-16,-8,-16,-17r0,-4r58,-333v3,-17,5,-32,5,-44v0,-37,-24,-49,-54,-49v-38,0,-86,19,-108,32r-69,394v-2,11,-13,21,-24,21r-121,0v-10,0,-17,-8,-17,-18r0,-3r94,-532v2,-11,12,-20,23,-20r109,0v10,0,17,7,17,17r0,3r-4,24v45,-34,103,-52,156,-52v86,0,161,48,161,166","w":612,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":26}},{"d":"653,-20v0,12,-9,20,-20,20r-137,0v-10,0,-17,-8,-17,-18r-7,-164r-205,0r-65,164v-4,10,-13,18,-23,18r-143,0v-9,0,-14,-5,-14,-12v0,-3,1,-6,2,-9r258,-620v40,-96,117,-111,186,-111v69,0,139,15,145,111r40,620r0,1xm468,-319r-12,-276v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-110,276r149,0xm688,-937v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":669,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"G":20,"L":20,"\u0141":20,"T":70,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"V":56,"Y":76,"\u00dd":76,"\u0178":76,"v":46}},{"d":"164,-706r95,-40v4,-2,9,-3,15,-3r49,0v13,0,13,8,12,17r-67,380v-3,13,-8,17,-18,17r-71,0v-9,0,-17,-4,-14,-17r51,-290r-57,23v-15,5,-21,1,-18,-12r11,-62v1,-5,4,-10,12,-13xm774,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm552,-86v37,3,84,5,107,5v44,0,57,-21,57,-59v0,-18,-4,-31,-31,-31r-95,0v-12,0,-15,-7,-13,-17r8,-46v2,-10,6,-16,19,-16r93,0v38,0,48,-32,48,-52v0,-21,-10,-31,-42,-31v-23,0,-62,1,-98,6v-18,3,-25,-1,-23,-15r7,-43v2,-10,10,-14,18,-17v30,-8,71,-17,119,-17v81,0,125,33,125,93v0,54,-24,95,-61,115v21,18,30,37,30,71v0,97,-58,145,-172,145v-43,0,-84,-7,-112,-15v-7,-3,-14,-6,-12,-17r8,-43v2,-10,7,-16,20,-16","w":851},{"d":"678,-513v0,30,-3,63,-9,99r-15,86v-43,249,-145,337,-330,337v-132,0,-218,-79,-218,-239v0,-30,3,-63,9,-98r15,-86v46,-266,153,-338,329,-338v137,0,219,81,219,239xm509,-515v0,-74,-28,-95,-75,-95v-64,0,-106,42,-133,196r-15,86v-7,42,-11,76,-11,102v0,73,27,93,74,93v62,0,106,-37,134,-195r15,-86v7,-41,11,-75,11,-101"},{"d":"628,-136r0,4r-16,92v-2,11,-13,20,-24,20r-66,0r-25,147v-2,11,-12,20,-23,20r-133,0v-10,0,-15,-7,-15,-16r0,-4r25,-147r-289,0v-10,0,-16,-7,-16,-16r0,-4r17,-97v2,-11,8,-21,17,-31r389,-414v9,-9,16,-14,28,-14r107,0v10,0,16,7,16,16r0,4r-74,424r66,0v10,0,16,7,16,16xm417,-363v0,-3,-1,-4,-3,-4v-1,0,-3,1,-4,2r-185,203v-2,2,-3,5,-3,6v0,3,2,4,6,4r152,0r37,-209r0,-2"},{"d":"407,-328r-201,314v-7,10,-11,14,-19,14r-75,0v-14,0,-18,-10,-11,-20r200,-307r-146,0v-15,0,-17,-6,-15,-16r10,-54v2,-12,6,-17,21,-17r234,0v19,0,22,12,20,24r-5,31v-3,16,-5,19,-13,31","w":323,"k":{"\/":62,",":65,"\u201a":65,"\u201e":65,".":65,"\u2026":65}},{"d":"771,-661v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-86,0r-80,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-179,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r179,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0","w":736,"k":{"q":15,"d":15,"e":15,"\u00e9":15,"\u00ea":15,"\u00eb":15,"\u00e8":15,"o":15,"\u00f8":15,"\u0153":15,"\u00f3":15,"\u00f4":15,"\u00f6":15,"\u00f2":15,"\u00f5":15,"c":15,"\u00e7":15}},{"d":"371,-418v0,216,-74,436,-219,598v-10,11,-21,14,-36,14r-110,0v-8,0,-11,-3,-11,-8v0,-5,3,-12,8,-18v137,-191,208,-394,208,-628v0,-105,-17,-189,-42,-257v-1,-4,-2,-8,-2,-12v0,-8,4,-14,14,-14r90,0v15,0,26,3,32,14v37,69,68,181,68,311","w":361},{"d":"755,-731v0,3,-1,7,-3,10r-212,346v-28,46,-52,67,-78,77r-49,278v-2,11,-13,20,-24,20r-131,0v-10,0,-16,-7,-16,-17r0,-3r49,-278v-23,-10,-41,-31,-53,-77r-90,-346v0,-1,-1,-3,-1,-4v0,-10,9,-18,20,-18r140,0v10,0,15,8,17,17r58,282v3,13,6,15,13,15v7,0,10,-2,17,-15r158,-282v5,-9,13,-17,23,-17r148,0v9,0,14,5,14,12","w":649,"k":{"O":45,"\u00d8":45,"\u0152":45,"\u00d3":45,"\u00d4":45,"\u00d6":45,"\u00d2":45,"\u00d5":45,"a":90,"\u00e6":90,"\u00e1":90,"\u00e2":90,"\u00e4":90,"\u00e0":90,"\u00e5":90,"\u00e3":90,"e":95,"\u00e9":95,"\u00ea":95,"\u00eb":95,"\u00e8":95,"o":96,"\u00f8":96,"\u0153":96,"\u00f3":96,"\u00f4":96,"\u00f6":96,"\u00f2":96,"\u00f5":96,"u":68,"\u00fa":68,"\u00fb":68,"\u00fc":68,"\u00f9":68,"y":41,"\u00fd":41,"\u00ff":41,",":96,"\u201a":96,"\u201e":96,".":96,"\u2026":96,"c":93,"\u00e7":93,"C":50,"\u00c7":50,"E":35,"\u00c9":35,"\u00ca":35,"\u00cb":35,"\u00c8":35,"G":50,"v":47,"A":76,"\u00c6":76,"\u00c1":76,"\u00c2":76,"\u00c4":76,"\u00c0":76,"\u00c5":76,"\u00c3":76,"\u2013":56,"\u2014":56,"S":9,"\u0160":9,"-":56,"x":41,"\u00ee":-23,"\u00ef":-23,"\u00ec":-23,"s":68,"\u0161":68,"z":65,"\u017e":65,"F":36,"d":93,"\u00a1":55,"p":69,"q":93,"\u00bf":140,"\/":96}},{"d":"728,-361r0,3r-1,8v-9,75,-38,146,-97,218r83,108v2,3,4,6,4,9v0,8,-7,15,-15,15r-142,0v-8,0,-11,-1,-16,-8r-24,-32v-55,31,-121,49,-195,49v-129,0,-242,-45,-242,-185v0,-112,80,-165,169,-214r-7,-9v-49,-63,-58,-112,-58,-151v0,-158,125,-202,265,-202v132,0,202,66,202,153v0,108,-75,164,-167,216r-35,20r106,137v16,-26,32,-61,40,-124r1,-8v1,-11,10,-20,21,-20r93,0v10,0,15,7,15,17xm505,-591v0,-30,-22,-49,-69,-49v-62,0,-104,26,-104,91v0,21,7,44,40,82r7,8r29,-16v48,-26,97,-53,97,-116xm450,-130r-124,-163v-54,30,-79,58,-79,117v0,49,29,69,99,69v41,0,75,-8,104,-23","w":732},{"d":"646,-715r0,2r-17,97v-2,12,-11,20,-24,20r-1,0r-1,0v-37,-3,-91,-8,-146,-8v-69,0,-130,36,-154,169r-23,126v-4,23,-6,43,-6,61v0,83,44,108,101,108v55,0,110,-5,149,-8r3,0v10,0,17,5,17,15v0,1,-1,3,-1,5r-18,97v-3,14,-11,19,-26,23v-22,7,-82,17,-152,17v-131,0,-247,-80,-247,-244v0,-23,2,-48,7,-74r23,-126v48,-263,192,-317,352,-317v70,0,126,10,146,17v12,4,18,7,18,17r0,3xm423,41v0,2,-2,5,-6,9r-144,122v-10,8,-13,12,-26,12r-107,0v-6,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r113,-117v11,-11,16,-15,30,-15r132,0v6,0,10,2,10,6","w":561,"k":{"O":21,"\u00d8":21,"\u0152":21,"\u00d3":21,"\u00d4":21,"\u00d6":21,"\u00d2":21,"\u00d5":21,"y":9,"\u00fd":9,"\u00ff":9,"C":29,"\u00c7":29,"G":16}},{"d":"912,-661r-142,0v-31,0,-40,8,-47,52r-6,36r86,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-86,0r-80,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-178,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,4,71,9v14,3,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r178,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20r-128,726v-2,11,-12,21,-23,21r-122,0v-10,0,-17,-8,-17,-18r0,-3","w":1017},{"d":"844,-737v0,4,-2,9,-6,14r-539,702v-11,14,-17,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm647,-214v-17,-16,-25,-41,-25,-68v0,-97,67,-137,168,-137r6,0v79,0,129,35,129,99v0,46,-20,83,-58,106v18,16,28,46,28,75v0,101,-81,144,-173,144r-6,0v-78,0,-128,-41,-128,-108v0,-43,19,-88,59,-111xm742,-175v-31,0,-53,24,-53,62v0,23,14,38,41,38r6,0v38,0,58,-26,58,-65v0,-18,-6,-35,-35,-35r-17,0xm756,-252r17,0v35,0,51,-23,51,-54v0,-21,-12,-33,-41,-33r-7,0v-35,0,-57,18,-57,55v0,20,12,32,37,32xm219,-517r-85,0v-7,0,-14,-3,-11,-14r53,-201v1,-9,11,-17,20,-17r210,0v14,0,16,7,14,17r-10,54v-2,12,-5,16,-20,16r-141,0v-5,19,-12,42,-18,63r10,0v98,0,148,30,148,107v0,103,-61,162,-180,162v-35,0,-76,-6,-106,-16v-7,-2,-14,-6,-12,-18r7,-43v2,-10,4,-17,21,-15v33,3,77,6,95,6v53,0,68,-28,68,-63v0,-30,-16,-38,-63,-38","w":925},{"d":"519,-730v0,2,-1,5,-2,7r-334,702v-5,11,-13,21,-24,21r-127,0v-9,0,-16,-6,-16,-14v0,-2,1,-5,2,-7r335,-702v5,-11,13,-20,24,-20r127,0v8,0,15,5,15,13","w":405,"k":{"q":32,"4":45,"\/":13,"e":50,"\u00e9":50,"\u00ea":50,"\u00eb":50,"\u00e8":50,"o":32,"\u00f8":32,"\u0153":32,"\u00f3":32,"\u00f4":32,"\u00f6":32,"\u00f2":32,"\u00f5":32,"c":55,"\u00e7":55}},{"d":"258,-155v0,3,-1,6,-3,9r-136,224v-7,11,-11,20,-22,20r-88,0v-9,0,-15,-5,-15,-13v0,-2,1,-5,2,-7r104,-224v6,-12,12,-19,23,-19r122,0v8,0,13,4,13,10","w":253,"k":{"*":76,"\"":75,"'":75,"\u2019":75,"\u201d":75}},{"d":"652,-725v0,2,-1,4,-1,6r-17,93v-2,11,-12,20,-23,20r-203,0v-41,0,-66,8,-76,67r-16,92r259,0v10,0,16,7,16,17r0,3r-16,95v-2,11,-13,20,-24,20r-259,0r-19,106v-2,10,-3,19,-3,26v0,32,17,42,55,42r203,0v10,0,17,7,17,17r0,3r-17,93v-2,13,-9,19,-23,21v-36,5,-86,13,-194,13v-104,0,-213,-37,-213,-166v0,-15,2,-32,5,-49r59,-332v34,-194,145,-214,282,-214v108,0,156,8,190,13v12,2,18,5,18,14xm648,-938v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":581},{"d":"628,-136r0,4r-16,92v-2,11,-13,20,-24,20r-66,0r-25,147v-2,11,-12,20,-23,20r-133,0v-10,0,-15,-7,-15,-16r0,-4r25,-147r-289,0v-10,0,-16,-7,-16,-16r0,-4r17,-97v2,-11,8,-21,17,-31r389,-414v9,-9,16,-14,28,-14r107,0v10,0,16,7,16,16r0,4r-74,424r66,0v10,0,16,7,16,16xm417,-363v0,-3,-1,-4,-3,-4v-1,0,-3,1,-4,2r-185,203v-2,2,-3,5,-3,6v0,3,2,4,6,4r152,0r37,-209r0,-2"},{"d":"630,-534v0,2,0,5,-1,8r-124,701v-2,11,-13,20,-24,20r-120,0v-10,0,-17,-7,-17,-17r0,-3r31,-173v-26,5,-52,7,-77,7v-119,0,-217,-57,-217,-197v0,-18,1,-38,5,-59r13,-78v29,-176,123,-256,296,-256v77,0,153,12,208,26v21,5,27,11,27,21xm453,-442v-18,-3,-48,-5,-81,-5v-71,0,-98,40,-112,122r-13,78v-3,19,-5,34,-5,48v0,61,29,75,78,75v23,0,49,-3,78,-6","w":596},{"d":"764,-732v0,3,-1,7,-4,11r-150,224r87,0v10,0,16,6,16,15r0,4r-13,74v-2,11,-11,19,-22,19r-142,0r-62,92r-4,11r189,0v10,0,17,6,17,15r0,3r-14,75v-2,11,-11,18,-22,18r-190,0r-26,151v-2,11,-13,20,-24,20r-133,0v-10,0,-15,-7,-15,-16r0,-4r26,-151r-189,0v-10,0,-17,-6,-17,-15r0,-3r14,-75v2,-11,12,-18,23,-18r189,0r1,-11r-29,-92r-143,0v-10,0,-17,-6,-17,-16r0,-3r13,-74v2,-11,13,-19,24,-19r88,0r-72,-224v-1,-2,-1,-4,-1,-6v0,-10,8,-16,18,-16r143,0v10,0,14,8,16,17r71,270r168,-270v6,-9,12,-17,22,-17r151,0v8,0,13,4,13,11"},{"d":"652,-725v0,2,-1,4,-1,6r-17,93v-2,11,-12,20,-23,20r-203,0v-41,0,-66,8,-76,67r-16,92r259,0v10,0,16,7,16,17r0,3r-16,95v-2,11,-13,20,-24,20r-259,0r-19,106v-2,10,-3,19,-3,26v0,32,17,42,55,42r203,0v10,0,17,7,17,17r0,3r-17,93v-2,13,-9,19,-23,21v-36,5,-86,13,-194,13v-104,0,-213,-37,-213,-166v0,-15,2,-32,5,-49r59,-332v34,-194,145,-214,282,-214v108,0,156,8,190,13v12,2,18,5,18,14xm651,-804v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":581},{"d":"296,173v0,11,-9,21,-20,21r-123,0v-11,0,-21,-10,-21,-21r0,-896v0,-11,10,-20,21,-20r123,0v11,0,20,9,20,20r0,896","w":290},{"d":"444,-367v0,92,-75,167,-167,167v-92,0,-167,-75,-167,-167v0,-92,75,-167,167,-167v92,0,167,75,167,167","w":418},{"d":"649,-555r0,3r-94,532v-2,11,-12,20,-23,20r-112,0v-10,0,-17,-7,-17,-16r0,-4r5,-24v-47,31,-90,53,-159,53v-99,0,-156,-62,-156,-167v0,-19,2,-39,6,-61r58,-333v2,-11,14,-21,25,-21r121,0v10,0,16,8,16,17r0,4r-58,333v-3,17,-5,34,-5,46v0,34,15,48,62,48v20,0,69,-15,100,-33r69,-394v2,-11,13,-21,24,-21r121,0v10,0,17,8,17,18","w":612},{"d":"679,-597v0,108,-54,173,-151,231r-95,57v-74,44,-149,77,-171,167r311,0v10,0,17,7,17,16r0,2r0,1r-18,103v-2,11,-13,20,-24,20r-445,0v-10,0,-16,-7,-16,-16r0,-3r0,-1r18,-102v19,-110,82,-201,180,-262r104,-65v98,-61,123,-77,123,-121v0,-33,-25,-47,-96,-47v-61,0,-137,7,-199,13r-2,0v-9,0,-15,-7,-15,-16r0,-4r14,-78v2,-10,11,-16,22,-19v59,-17,134,-31,219,-31v150,0,224,60,224,155"},{"d":"363,-759v0,3,-1,7,-3,11r-114,219v-7,13,-12,19,-22,19r-101,0v-6,0,-8,-3,-8,-7v0,-3,1,-7,3,-12r93,-219v6,-14,13,-19,23,-19r119,0v7,0,10,3,10,8","w":253,"k":{",":75,"\u201a":75,"\u201e":75,".":75,"\u2026":75,"s":56,"\u0161":56}},{"d":"728,-509v0,24,-2,50,-7,78r-21,119v-35,198,-129,291,-272,315r-3,18r0,3r0,5v0,15,8,17,21,17r90,0v9,0,21,3,21,13r0,3r-14,82v-2,10,-12,18,-27,22v-29,7,-75,13,-114,13v-81,0,-141,-31,-141,-120v0,-11,1,-24,3,-37r4,-23v-98,-26,-167,-104,-167,-235v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v134,0,246,73,246,243xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66","w":698,"k":{"X":49,"V":24,"T":30,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"Z":28,"\u017d":28}},{"d":"606,-150v0,7,-5,13,-12,13r-139,0v-11,0,-17,-5,-24,-11r-233,-207v-14,-12,-20,-22,-20,-36v0,-14,6,-24,20,-36r233,-207v7,-6,13,-11,24,-11r139,0v7,0,12,6,12,13v0,4,-2,8,-6,12r-259,229r259,229v4,4,6,8,6,12xm628,4v0,11,-9,16,-20,16r-431,0v-11,0,-20,-5,-20,-16r0,-71v0,-11,9,-16,20,-16r431,0v11,0,20,5,20,16r0,71"},{"d":"258,-155v0,3,-1,6,-3,9r-136,224v-7,11,-11,20,-22,20r-88,0v-9,0,-15,-5,-15,-13v0,-2,1,-5,2,-7r104,-224v6,-12,12,-19,23,-19r122,0v8,0,13,4,13,10","w":274,"k":{"*":76,"\"":75,"'":75,"\u2019":75,"\u201d":75}},{"d":"473,-557r0,3r-23,126v-2,11,-12,20,-23,20r-118,0v-10,0,-17,-7,-17,-17r0,-3r23,-126v2,-11,12,-19,23,-19r118,0v10,0,17,6,17,16xm436,47v0,2,-1,5,-1,7r-15,89v-2,14,-7,22,-23,26v-45,13,-108,21,-164,21v-110,0,-192,-44,-192,-135v0,-87,50,-147,108,-207r56,-58v56,-58,70,-68,74,-89r5,-28v2,-12,16,-19,27,-19r100,0v10,0,15,8,15,16r0,4r-4,27v-8,52,-17,84,-64,134r-59,63v-32,34,-67,66,-67,117v0,18,8,29,42,29v52,0,96,-5,145,-11r3,0v10,0,14,6,14,14","w":479,"k":{"V":58,"Y":85,"\u00dd":85,"\u0178":85}},{"d":"675,-725r0,1r-18,100v-2,11,-12,19,-23,19r-272,0r-37,138r29,0v162,0,262,52,262,185v0,203,-122,291,-318,291v-64,0,-136,-11,-191,-29v-8,-3,-17,-7,-17,-18r0,-3r0,-1r14,-79v2,-11,12,-18,22,-18r1,0r1,0v62,7,140,12,177,12v99,0,138,-46,138,-142v0,-53,-31,-67,-128,-67r-155,0v-7,0,-11,-6,-11,-12r0,-2r0,-1r97,-373v3,-10,13,-19,23,-19r389,0v10,0,17,7,17,16r0,2"},{"d":"208,-551r57,-36v50,-32,64,-35,64,-57v0,-19,-11,-24,-47,-24v-32,0,-72,3,-107,7v-13,2,-16,-6,-14,-17r7,-42v2,-9,5,-14,17,-17v33,-9,80,-17,120,-17v86,0,129,28,129,94v0,48,-23,87,-86,125r-50,31v-53,32,-87,54,-93,81r165,0v13,0,16,5,14,15r-9,56v-2,11,-6,17,-20,17r-241,0v-12,0,-16,-8,-14,-17r9,-55v11,-62,39,-105,99,-144","w":355},{"d":"786,-731v0,3,-1,6,-2,9r-258,620v-40,96,-116,111,-185,111v-69,0,-140,-15,-146,-111r-40,-620r0,-1v0,-12,9,-20,21,-20r134,0v10,0,17,8,17,18r23,577v0,11,2,15,11,15v9,0,13,-4,17,-15r227,-577v4,-10,12,-18,22,-18r145,0v9,0,14,5,14,12","w":686,"k":{"\u00ef":-13,"\u00bf":99,"\u00a1":10,"x":16,"v":10,"q":44,"p":10,"G":23,"F":20,"\/":56,"O":24,"\u00d8":24,"\u0152":24,"\u00d3":24,"\u00d4":24,"\u00d6":24,"\u00d2":24,"\u00d5":24,"a":50,"\u00e6":50,"\u00e1":50,"\u00e2":50,"\u00e4":50,"\u00e0":50,"\u00e5":50,"\u00e3":50,"e":50,"\u00e9":50,"\u00ea":50,"\u00eb":50,"\u00e8":50,"o":50,"\u00f8":50,"\u0153":50,"\u00f3":50,"\u00f4":50,"\u00f6":50,"\u00f2":50,"\u00f5":50,"u":33,"\u00fa":33,"\u00fb":33,"\u00fc":33,"\u00f9":33,"y":13,"\u00fd":13,"\u00ff":13,",":55,"\u201a":55,"\u201e":55,".":55,"\u2026":55,"c":43,"\u00e7":43,"C":29,"\u00c7":29,"E":33,"\u00c9":33,"\u00ca":33,"\u00cb":33,"\u00c8":33,"A":56,"\u00c6":56,"\u00c1":56,"\u00c2":56,"\u00c4":56,"\u00c0":56,"\u00c5":56,"\u00c3":56,"S":9,"\u0160":9,"\u00ee":-13,"\u00ec":-13,"s":44,"\u0161":44,"z":12,"\u017e":12}},{"d":"531,-754r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm314,-754r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":443},{"d":"653,-20v0,12,-9,20,-20,20r-137,0v-10,0,-17,-8,-17,-18r-7,-164r-205,0r-65,164v-4,10,-13,18,-23,18r-143,0v-9,0,-14,-5,-14,-12v0,-3,1,-6,2,-9r258,-620v40,-96,117,-111,186,-111v69,0,139,15,145,111r40,620r0,1xm468,-319r-12,-276v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-110,276r149,0xm571,-803v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":669,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"G":20,"L":20,"\u0141":20,"T":70,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"V":56,"Y":76,"\u00dd":76,"\u0178":76,"v":46}},{"d":"620,-535v0,2,-1,4,-1,7r-93,530v-25,144,-113,200,-278,200v-86,0,-152,-15,-186,-27v-11,-4,-16,-9,-16,-18v0,-3,1,-5,1,-8r12,-67v2,-11,10,-18,21,-18r2,0v44,4,141,12,189,12v69,0,85,-16,96,-74r2,-11v-28,6,-55,9,-81,9v-121,0,-216,-65,-216,-199v0,-18,1,-37,5,-58r12,-68v33,-186,120,-256,296,-256v91,0,170,15,208,25v20,5,27,11,27,21xm445,-440v-18,-3,-45,-7,-83,-7v-71,0,-99,51,-112,122r-12,68v-3,19,-5,35,-5,49v0,61,32,76,80,76v23,0,50,-3,79,-7","w":573},{"d":"468,-500v0,4,-2,8,-6,11r-224,203r141,203v2,2,2,5,2,7v0,7,-7,13,-16,13r-109,0v-15,0,-22,-3,-28,-12r-127,-185v-7,-10,-10,-20,-10,-29v0,-12,6,-22,14,-30r186,-178v9,-9,17,-12,32,-12r133,0v8,0,12,4,12,9","w":413},{"d":"535,-748r0,4r-13,72v-2,11,-12,19,-23,19r-324,0v-10,0,-17,-6,-17,-16r0,-3r13,-72v2,-11,13,-19,24,-19r324,0v10,0,16,6,16,15","w":443},{"d":"731,-730v0,2,-1,4,-1,6r-159,900v-2,10,-10,19,-20,19r-43,0v-9,0,-14,-7,-14,-16r0,-3r149,-843r-63,0r-149,843v-2,10,-10,19,-20,19r-43,0v-9,0,-14,-7,-14,-16r0,-3r74,-418r-96,0v-120,0,-208,-81,-208,-187v0,-12,1,-24,3,-36r10,-55v30,-164,140,-223,283,-223r297,0v10,0,14,5,14,13","w":659},{"d":"369,-727r0,3r-129,730v-24,136,-109,173,-210,173v-23,0,-37,-1,-63,-4v-7,-1,-12,-6,-12,-14r0,-3r18,-102v1,-7,7,-14,14,-14r50,0v23,0,28,-11,32,-36r129,-730v2,-11,12,-19,23,-19r131,0v10,0,17,7,17,16","w":311},{"d":"1201,-280v0,13,-1,27,-4,42r-13,75v-22,127,-83,172,-179,172v-79,0,-121,-53,-121,-130v0,-13,1,-27,4,-42r13,-75v23,-131,83,-171,178,-171v77,0,122,50,122,129xm848,-280v0,13,-1,27,-4,42r-13,75v-22,127,-83,172,-179,172v-79,0,-121,-53,-121,-130v0,-13,1,-27,4,-42r13,-75v23,-131,83,-171,178,-171v77,0,122,50,122,129xm827,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm440,-623v0,13,-1,27,-4,42r-13,75v-22,127,-83,172,-179,172v-79,0,-121,-53,-121,-130v0,-13,1,-27,4,-42r13,-75v23,-131,83,-171,178,-171v77,0,122,50,122,129xm1100,-278v0,-35,-14,-45,-36,-45v-29,0,-51,17,-63,85r-13,75v-3,16,-4,29,-4,40v0,35,14,46,36,46v29,0,51,-18,63,-86r13,-75v3,-16,4,-29,4,-40xm747,-278v0,-35,-14,-45,-36,-45v-29,0,-51,17,-63,85r-13,75v-3,16,-4,29,-4,40v0,35,14,46,36,46v29,0,51,-18,63,-86r13,-75v3,-16,4,-29,4,-40xm339,-621v0,-35,-14,-45,-36,-45v-29,0,-51,17,-63,85r-13,75v-3,16,-4,29,-4,40v0,35,14,46,36,46v29,0,51,-18,63,-86r13,-75v3,-16,4,-29,4,-40","w":1192},{"d":"1059,-724v0,2,-1,3,-1,5r-17,93v-2,11,-12,20,-23,20r-203,0v-41,0,-66,8,-76,67r-14,84r-1,8r258,0v10,0,16,7,16,17r0,3r-16,95v-2,11,-13,20,-24,20r-258,0v-2,12,-5,24,-7,36r-13,70v-2,10,-3,19,-3,26v0,32,17,42,55,42r203,0v10,0,17,7,17,17r0,3r-17,93v-2,13,-9,19,-23,21v-36,5,-86,13,-194,13v-62,0,-127,-14,-168,-52v-55,36,-123,52,-203,52v-137,0,-246,-81,-246,-245v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v65,0,124,17,168,54v50,-47,120,-54,201,-54v108,0,156,8,190,13v12,2,18,6,18,15xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66","w":989},{"d":"715,-508v0,23,-2,47,-7,72r-23,129v-40,226,-153,316,-375,316v-83,0,-170,-8,-210,-15v-15,-3,-24,-9,-24,-25v0,-3,0,-6,1,-10r48,-271r-56,0v-10,0,-16,-6,-16,-15r0,-4r17,-97v2,-11,12,-19,23,-19r56,0r45,-255v4,-23,15,-32,35,-35v42,-7,133,-15,216,-15v166,0,270,89,270,244xm543,-495v0,-87,-49,-112,-124,-112v-25,0,-57,1,-71,2r-28,158r61,0v10,0,15,6,15,15r0,4r-17,97v-2,11,-11,19,-22,19r-61,0r-31,174v14,1,46,2,71,2v96,0,154,-36,178,-171r23,-129v4,-22,6,-42,6,-59","w":682,"k":{"T":15,"V":16,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"X":33,"Z":9,"\u017d":9}},{"d":"583,-759v0,3,-1,7,-3,11r-114,219v-7,13,-12,19,-22,19r-101,0v-6,0,-8,-3,-8,-7v0,-3,1,-7,3,-12r93,-219v6,-14,13,-19,23,-19r119,0v7,0,10,3,10,8xm363,-759v0,3,-1,7,-3,11r-113,219v-7,13,-12,19,-22,19r-102,0v-6,0,-8,-3,-8,-7v0,-3,1,-7,3,-12r94,-219v6,-14,13,-19,23,-19r118,0v7,0,10,3,10,8","w":473,"k":{",":75,"\u201a":75,"\u201e":75,".":75,"\u2026":75,"s":56,"\u0161":56}},{"d":"593,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6","w":370},{"d":"317,41v0,2,-2,5,-6,9r-144,122v-9,8,-13,12,-26,12r-107,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r113,-117v11,-11,16,-15,30,-15r132,0v6,0,10,2,10,6","w":426},{"d":"164,-706r95,-40v4,-2,9,-3,15,-3r49,0v13,0,13,8,12,17r-67,380v-3,13,-8,17,-18,17r-71,0v-9,0,-17,-4,-14,-17r51,-290r-57,23v-15,5,-21,1,-18,-12r11,-62v1,-5,4,-10,12,-13xm774,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm618,-216r57,-36v50,-32,64,-35,64,-57v0,-19,-11,-24,-47,-24v-32,0,-72,3,-107,7v-13,2,-16,-6,-14,-17r7,-42v2,-9,5,-14,17,-17v33,-9,80,-17,120,-17v86,0,129,28,129,94v0,48,-23,87,-86,125r-50,31v-53,32,-87,54,-93,81r165,0v13,0,16,5,14,15r-9,56v-2,11,-6,17,-20,17r-241,0v-12,0,-16,-8,-14,-17r9,-55v11,-62,39,-105,99,-144","w":844},{"d":"807,-741v0,3,-1,7,-4,10r-96,108v14,32,21,69,21,114v0,24,-2,50,-7,78r-21,119v-41,234,-165,321,-353,321v-62,0,-118,-17,-161,-50r-35,39v-7,8,-13,11,-23,11r-97,0v-6,0,-9,-4,-9,-8v0,-4,2,-8,5,-11r97,-109v-15,-33,-23,-72,-23,-117v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v63,0,121,16,165,51r35,-40v7,-8,9,-9,19,-9r97,0v6,0,9,4,9,9xm533,-575v-17,-19,-43,-27,-78,-27v-84,0,-131,46,-153,171r-21,119v-1,8,-2,15,-3,22xm552,-451r-255,286v17,17,42,24,77,24v84,0,133,-51,154,-171r21,-119v1,-7,2,-14,3,-20","w":698,"k":{"T":30,"V":24,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"X":49,"Z":28,"\u017d":28,"x":13}},{"d":"324,-556r0,3r-94,533v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r94,-533v2,-11,12,-20,23,-20r122,0v10,0,17,7,17,17xm471,-773v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":290},{"d":"617,-379v0,17,-2,35,-5,54r-13,78v-31,186,-136,256,-288,256v-28,0,-58,-3,-89,-7r-31,173v-2,11,-12,20,-23,20r-121,0v-10,0,-18,-7,-18,-17r0,-3r124,-701v3,-16,8,-23,36,-29v60,-14,140,-26,217,-26v134,0,211,81,211,202xm455,-377v0,-46,-18,-70,-72,-70v-33,0,-63,2,-83,5r-55,312v28,4,53,6,75,6v63,0,100,-24,117,-123r13,-78v3,-20,5,-37,5,-52","w":596,"k":{"\ue007":20,"\ue003":20,"\ue006":20,"\ue005":20,"\ue004":20,"\ue002":20,"\ue001":20,"\ue000":20,"\ufb04":20,"\ufb03":20,"\ufb00":20,"x":28,"v":20,"y":20,"\u00fd":20,"\u00ff":20}},{"d":"487,-556r0,3r-15,81v-2,11,-12,20,-23,20r-82,0r-52,291v-2,12,-3,21,-3,28v0,15,7,19,28,19r49,0v10,0,18,4,18,14r0,3r-14,78v-2,10,-9,18,-22,20v-31,5,-52,8,-81,8v-91,0,-142,-33,-142,-120v0,-15,2,-32,5,-51r51,-290r-78,-13v-10,-2,-17,-8,-17,-18r0,-3r11,-66v2,-11,14,-21,25,-21r80,0r14,-82v2,-11,12,-18,24,-20r126,-21r3,0v9,0,15,5,15,14r0,3r-19,106r82,0v10,0,17,7,17,17","w":421,"k":{"q":6,"d":6,"e":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00e8":10,"o":10,"\u00f8":10,"\u0153":10,"\u00f3":10,"\u00f4":10,"\u00f6":10,"\u00f2":10,"\u00f5":10,"c":6,"\u00e7":6}},{"d":"468,-711v0,64,-52,116,-116,116v-64,0,-117,-52,-117,-116v0,-64,53,-117,117,-117v64,0,116,53,116,117xm397,-712v0,-24,-21,-44,-45,-44v-24,0,-43,19,-43,44v0,25,19,44,43,44v24,0,45,-20,45,-44","w":443},{"d":"242,-149r0,3r-22,126v-2,11,-13,20,-24,20r-117,0v-10,0,-17,-7,-17,-17r0,-3r22,-126v2,-11,13,-19,24,-19r117,0v10,0,17,6,17,16","w":274,"k":{"*":76,"\"":75,"'":75,"\u2019":75,"\u201d":75,"\u2018":75,"\u201c":75}},{"d":"432,-648v0,9,-1,19,-3,30r-35,198v-1,8,-4,14,-11,16v-43,11,-88,16,-131,16v-89,0,-132,-38,-132,-94v0,-112,87,-123,178,-123r22,0r3,-13v2,-8,3,-14,3,-20v0,-19,-11,-25,-37,-25v-34,0,-69,3,-103,5r-1,0v-6,0,-9,-5,-9,-11r0,-3r9,-50v1,-8,9,-13,17,-15v21,-6,64,-15,102,-15v74,0,128,32,128,104xm310,-546v-2,0,-9,-1,-15,-1v-41,0,-74,9,-74,57v0,21,14,27,44,27v13,0,23,-2,31,-3","w":357},{"d":"885,-423v0,20,-2,41,-6,61r-60,341v-2,11,-14,21,-25,21r-121,0v-10,0,-16,-8,-16,-17r0,-4r60,-341v3,-17,5,-31,5,-43v0,-28,-12,-40,-52,-40v-16,0,-50,3,-81,16v0,22,-3,45,-7,67r-60,341v-2,11,-13,21,-24,21r-121,0v-10,0,-17,-8,-17,-18r0,-3r60,-341v3,-18,6,-34,6,-47v0,-23,-8,-36,-40,-36v-25,0,-59,14,-91,30r-69,394v-2,11,-13,21,-24,21r-121,0v-10,0,-17,-8,-17,-18r0,-3r94,-532v2,-11,12,-20,23,-20r109,0v10,0,17,7,17,17r0,3r-4,23v40,-26,86,-51,141,-51v58,0,94,18,116,45v59,-34,109,-45,177,-45v111,0,148,73,148,158","w":875,"k":{"v":20}},{"d":"429,-661v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-85,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0","w":394,"k":{"q":15,"g":15,"d":10,"e":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00e8":10,"o":10,"\u00f8":10,"\u0153":10,"\u00f3":10,"\u00f4":10,"\u00f6":10,"\u00f2":10,"\u00f5":10,",":58,"\u201a":58,"\u201e":58,".":58,"\u2026":58,"c":9,"\u00e7":9,"s":6,"\u0161":6}},{"d":"510,-572r0,3r-18,104v-2,10,-11,16,-22,16r-92,0r-77,435v-2,11,-8,20,-19,20r-132,0v-9,0,-13,-6,-13,-15r0,-5r77,-435r-86,0v-10,0,-16,-5,-16,-13r0,-3r18,-104v2,-10,11,-15,22,-15r86,0r29,-164v2,-10,9,-19,20,-19r131,0v9,0,13,7,13,15r0,4r-29,164r92,0v10,0,16,4,16,12","w":440},{"d":"658,-251v-2,11,-13,19,-24,19r-590,0v-11,0,-17,-8,-15,-19r14,-79v2,-11,11,-20,22,-20r590,0v11,0,19,9,17,20","w":599},{"d":"748,-747r-32,179v28,-6,68,-13,107,-13v130,0,192,70,192,167v0,14,-1,29,-4,44r-61,350v-2,11,-7,20,-24,20r-122,0v-14,0,-18,-10,-16,-20r61,-349v2,-11,3,-20,3,-28v0,-39,-22,-52,-76,-52v-30,0,-60,3,-82,8r-74,420v-2,11,-7,21,-24,21r-121,0v-15,0,-19,-10,-17,-21r113,-640r-142,0v-31,0,-39,8,-46,52r-6,36r85,0v18,0,19,10,17,21r-14,80v-3,16,-8,20,-24,20r-85,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v97,0,164,10,186,14r112,0v16,0,24,5,21,20","w":1006},{"d":"995,-729v0,2,-1,4,-1,6r-17,97v-2,11,-12,20,-23,20r-242,0r-28,159r234,0v10,0,16,7,16,16r0,4r-16,95v-2,11,-13,20,-24,20r-234,0r-19,106v-2,10,-2,19,-2,26v0,32,16,42,54,42r178,0v10,0,17,7,17,17r0,3r-17,93v-2,13,-9,19,-23,21v-36,5,-64,13,-172,13v-119,0,-210,-38,-210,-159v0,-10,1,-21,2,-32r-199,0r-65,164v-4,10,-13,18,-23,18r-145,0v-9,0,-14,-5,-14,-13v0,-3,1,-5,2,-8r258,-620v40,-96,115,-102,184,-102r512,0v12,0,17,5,17,14xm543,-610r-95,0v-9,0,-13,5,-17,15r-110,276r170,0","w":924},{"d":"473,-564r0,3r-17,95v-2,9,-9,19,-18,19r-8,0v-49,0,-95,15,-135,35r-69,391v-2,11,-13,21,-24,21r-121,0v-10,0,-17,-8,-17,-17r0,-4r94,-532v2,-11,12,-20,23,-20r119,0v10,0,17,7,17,16r0,4r-4,20v49,-41,90,-48,143,-48v10,0,17,7,17,17","w":396,"k":{"q":12,"d":18,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e0":23,"\u00e5":23,"\u00e3":23,"e":16,"\u00e9":16,"\u00ea":16,"\u00eb":16,"\u00e8":16,"o":19,"\u00f8":19,"\u0153":19,"\u00f3":19,"\u00f4":19,"\u00f6":19,"\u00f2":19,"\u00f5":19,",":30,"\u201a":30,"\u201e":30,".":30,"\u2026":30,"c":14,"\u00e7":14}},{"d":"235,-263v18,-3,39,-5,59,-5v67,0,118,28,118,101v0,106,-65,172,-172,172v-80,0,-128,-41,-128,-127v0,-15,2,-33,5,-51r12,-70v23,-132,92,-176,187,-176v48,0,84,7,108,12v14,3,14,8,12,17r-8,47v-2,12,-5,21,-23,18v-27,-4,-58,-8,-96,-8v-43,0,-64,17,-74,70xm222,-188r-5,28v-3,15,-4,28,-4,38v0,36,15,44,38,44v31,0,59,-22,59,-79v0,-27,-18,-36,-44,-36v-11,0,-31,2,-44,5","w":355},{"d":"410,79v28,0,33,-13,39,-47r85,-484r-178,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-5,-70,-9v-8,-2,-16,-6,-16,-15r0,-2r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,200,-172v36,0,60,4,80,9v14,3,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r322,0v16,0,17,11,15,21r-103,584v-24,136,-76,171,-188,171v-26,0,-51,-2,-79,-7v-13,-2,-18,-9,-16,-20r14,-79v2,-11,11,-18,24,-18r44,0xm583,-638v-12,0,-18,-10,-16,-20r16,-93v2,-11,9,-20,24,-20r129,0v11,0,19,4,17,20r-16,93v-2,11,-8,20,-25,20r-129,0","w":681},{"d":"772,-727r0,3r-79,445v-45,251,-181,288,-340,288v-140,0,-243,-65,-243,-217v0,-22,1,-45,6,-71r79,-445v2,-11,12,-19,23,-19r131,0v10,0,17,7,17,16r0,3r-79,445v-4,22,-6,42,-6,59v0,60,28,86,98,86v90,0,125,-43,143,-145r79,-445v2,-11,12,-19,23,-19r130,0v10,0,18,6,18,16","w":711,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":16}},{"d":"623,-534v0,2,0,5,-1,8r-88,506v-2,11,-12,20,-23,20r-102,0v-10,0,-17,-8,-17,-17r0,-3r4,-29v-54,42,-102,58,-155,58v-120,0,-168,-92,-168,-192v0,-19,2,-37,5,-56v0,0,13,-75,16,-94v30,-174,138,-248,295,-248v68,0,142,10,207,25v17,4,27,7,27,22xm445,-442v-18,-3,-49,-6,-77,-6v-71,0,-100,42,-114,123r-18,105v-2,11,-3,22,-3,33v0,33,12,61,57,61v34,0,73,-16,106,-35xm538,-741v0,64,-52,116,-116,116v-64,0,-117,-52,-117,-116v0,-64,53,-117,117,-117v64,0,116,53,116,117xm467,-742v0,-24,-21,-44,-45,-44v-24,0,-43,19,-43,44v0,25,19,44,43,44v24,0,45,-20,45,-44","w":581,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":23}},{"d":"653,-20v0,12,-9,20,-20,20r-137,0v-10,0,-17,-8,-17,-18r-7,-164r-205,0r-65,164v-4,10,-13,18,-23,18r-143,0v-9,0,-14,-5,-14,-12v0,-3,1,-6,2,-9r258,-620v40,-96,117,-111,186,-111v69,0,139,15,145,111r40,620r0,1xm468,-319r-12,-276v0,-10,-1,-15,-10,-15v-9,0,-13,5,-17,15r-110,276r149,0xm673,-804v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":669,"k":{"O":18,"\u00d8":18,"\u0152":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u00d5":18,"y":46,"\u00fd":46,"\u00ff":46,"\u2019":50,"\u201d":50,"C":20,"\u00c7":20,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"G":20,"L":20,"\u0141":20,"T":70,"U":20,"\u00da":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"V":56,"Y":76,"\u00dd":76,"\u0178":76,"v":46}},{"d":"192,-638v-12,0,-18,-10,-16,-20r16,-93v2,-11,9,-20,24,-20r129,0v11,0,19,4,17,20r-16,93v-2,11,-8,20,-25,20r-129,0xm19,79v28,0,33,-13,39,-47r103,-584v2,-11,8,-21,23,-21r124,0v16,0,17,11,15,21r-103,584v-24,136,-76,171,-188,171v-26,0,-51,-2,-79,-7v-13,-2,-18,-9,-16,-20r14,-79v2,-11,11,-18,24,-18r44,0","w":290},{"d":"317,90r-14,75v-2,8,-4,13,-13,16v-15,6,-67,20,-122,20v-61,0,-118,-18,-118,-86v0,-50,20,-80,90,-117r53,-28v6,-4,16,-7,30,-7r98,0v11,0,10,9,1,15r-87,52v-18,11,-32,20,-32,38v0,15,9,19,26,19v36,0,69,-9,80,-9v7,0,9,5,8,12","w":426},{"d":"620,-198v0,11,-8,20,-19,20r-85,0v-11,0,-18,-9,-18,-20r0,-261r-317,0v-11,0,-20,-5,-20,-16r0,-89v0,-11,9,-16,20,-16r420,0v11,0,19,6,19,16r0,366"},{"d":"363,-760v0,3,-1,7,-3,12r-93,219v-6,14,-13,19,-23,19r-119,0v-7,0,-10,-3,-10,-8v0,-3,1,-7,3,-11r114,-219v7,-13,12,-19,22,-19r101,0v6,0,8,3,8,7","w":253,"k":{".":75,"\u2026":75}},{"d":"755,79v28,0,33,-13,39,-47r85,-484r-181,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-3,-70,-9v-9,-2,-18,-7,-16,-17r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-178,0r-81,453v-27,153,-102,172,-209,172v-25,0,-48,-3,-70,-9v-9,-2,-18,-7,-16,-17r13,-76v2,-12,11,-18,20,-18r40,0v44,0,52,-5,60,-52r80,-453r-76,-12v-15,-2,-18,-12,-16,-26r11,-62v3,-16,9,-21,24,-21r78,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r178,0r6,-36v25,-150,98,-172,209,-172v25,0,49,5,71,9v9,2,18,8,16,18r-13,74v-2,12,-6,19,-22,19r-52,0v-31,0,-39,8,-46,52r-6,36r325,0v16,0,17,11,15,21r-103,584v-24,136,-76,171,-188,171v-26,0,-51,-2,-79,-7v-13,-2,-18,-9,-16,-20r14,-79v2,-11,11,-18,24,-18r44,0xm928,-638v-12,0,-18,-6,-16,-20r16,-93v2,-11,9,-20,24,-20r129,0v11,0,20,4,17,20r-16,93v-2,11,-8,20,-25,20r-129,0","w":1026},{"d":"588,-150v0,7,-5,13,-12,13r-139,0v-11,0,-17,-5,-24,-11r-233,-207v-14,-12,-20,-22,-20,-36v0,-14,6,-24,20,-36r233,-207v7,-6,13,-11,24,-11r139,0v7,0,12,6,12,13v0,4,-2,8,-6,12r-259,229r259,229v4,4,6,8,6,12"},{"d":"530,-767r120,0v14,0,21,5,18,20r-124,701v-3,16,-8,23,-36,29v-60,14,-140,26,-217,26v-134,0,-209,-85,-209,-204v0,-17,1,-34,4,-52r13,-78v31,-184,122,-256,296,-256v20,0,53,3,81,7r31,-173v2,-11,9,-20,23,-20xm453,-442v-23,-3,-57,-5,-81,-5v-73,0,-98,40,-112,122r-13,78v-3,20,-5,38,-5,53v0,46,18,70,73,70v33,0,63,-3,83,-6","w":596},{"d":"324,-556r0,3r-94,533v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r94,-533v2,-11,12,-20,23,-20r122,0v10,0,17,7,17,17xm341,-639v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":290},{"d":"324,-556r0,3r-94,533v-2,11,-13,20,-24,20r-122,0v-10,0,-16,-7,-16,-16r0,-4r94,-533v2,-11,12,-20,23,-20r122,0v10,0,17,7,17,17","w":290},{"d":"653,-714r0,3r-18,102v-1,8,-7,14,-15,14r-1,0v-70,-4,-144,-8,-217,-8v-43,0,-93,3,-93,59v0,21,17,36,61,62r116,69v73,44,105,102,105,165v0,49,-20,101,-54,150v6,14,13,52,13,73v0,176,-147,241,-306,241v-79,0,-147,-9,-196,-22v-9,-2,-17,-8,-17,-17r0,-3r18,-101v2,-11,13,-19,23,-19r2,0v62,6,124,14,187,14r4,0v54,0,107,-14,107,-79v0,-23,-17,-40,-59,-65r-120,-73v-73,-45,-101,-107,-101,-175v0,-48,24,-115,61,-149v-14,-25,-16,-49,-16,-77v0,-157,157,-202,285,-202v73,0,179,12,215,22v8,2,16,8,16,16xm450,-229v0,-33,-6,-45,-58,-76r-89,-54v-23,-14,-34,-21,-49,-31v-18,21,-21,42,-21,57v0,34,35,56,70,77r64,37v26,15,45,25,65,40v10,-14,18,-39,18,-50","w":589},{"d":"563,52r0,3r-8,48v-2,11,-12,16,-23,16r-564,0v-10,0,-17,-4,-17,-13r0,-3r8,-48v2,-11,12,-16,23,-16r564,0v10,0,17,4,17,13","w":541},{"d":"728,-509v0,24,-2,50,-7,78r-21,119v-41,234,-165,321,-353,321v-137,0,-246,-81,-246,-245v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v134,0,246,73,246,243xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66xm576,-803v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":698,"k":{"T":30,"V":24,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"X":49,"Z":28,"\u017d":28,"x":13}},{"d":"608,-379v0,19,-4,46,-6,58r-13,70v-32,170,-119,260,-296,260v-136,0,-210,-86,-210,-204v0,-18,1,-37,5,-56r13,-70v34,-181,130,-260,296,-260v135,0,211,80,211,202xm446,-367v0,-52,-24,-76,-73,-76v-58,0,-95,34,-111,122r-13,70v-3,18,-5,34,-5,48v0,52,24,75,74,75v65,0,95,-42,110,-123r13,-70v3,-17,5,-33,5,-46xm606,-639v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":590,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":20,"x":38,"z":16,"\u017e":16,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"389,-581v68,0,142,8,207,25v23,6,29,10,26,30r-88,506v-2,11,-7,20,-23,20r-102,0v-11,0,-19,-7,-17,-20r4,-29v-54,42,-102,58,-155,58v-120,0,-168,-92,-168,-192v0,-19,2,-37,5,-56v0,0,13,-75,16,-94v30,-174,138,-248,295,-248xm445,-442v-18,-3,-49,-6,-77,-6v-71,0,-100,42,-114,123r-18,105v-2,11,-3,22,-3,33v0,33,12,61,57,61v34,0,73,-16,106,-35","w":581,"k":{"y":23,"\u00fd":23,"\u00ff":23,"v":23}},{"d":"774,-737v0,4,-2,9,-6,14r-539,702v-11,14,-17,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6xm577,-214v-17,-16,-25,-41,-25,-68v0,-97,67,-137,168,-137r6,0v79,0,129,35,129,99v0,46,-20,83,-58,106v18,16,28,46,28,75v0,101,-81,144,-173,144r-6,0v-78,0,-128,-41,-128,-108v0,-43,19,-88,59,-111xm672,-175v-31,0,-53,24,-53,62v0,23,14,38,41,38r6,0v38,0,58,-26,58,-65v0,-18,-6,-35,-35,-35r-17,0xm686,-252r17,0v35,0,51,-23,51,-54v0,-21,-12,-33,-41,-33r-7,0v-35,0,-57,18,-57,55v0,20,12,32,37,32xm411,-663r-201,314v-7,10,-11,14,-19,14r-75,0v-14,0,-18,-10,-11,-20r200,-307r-146,0v-15,0,-17,-6,-15,-16r10,-54v2,-12,6,-17,21,-17r234,0v19,0,22,12,20,24r-5,31v-3,16,-5,19,-13,31","w":855},{"d":"617,-378v0,17,-2,36,-5,55r-13,74v-30,171,-118,258,-283,258v-30,0,-61,-3,-94,-10r-31,176v-2,11,-12,20,-23,20r-122,0v-10,0,-17,-7,-17,-17r0,-3r163,-922v2,-11,11,-20,22,-20r124,0v10,0,16,7,16,16r0,4r-30,171v26,-3,55,-5,83,-5v129,0,210,77,210,203xm455,-375v0,-51,-20,-72,-72,-72v-33,0,-57,2,-83,5r-55,312v28,4,53,6,74,6v71,0,101,-27,118,-125r13,-74v4,-20,5,-37,5,-52","w":596,"k":{"y":20,"\u00fd":20,"\u00ff":20,"v":18,"x":21,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"624,-773v0,3,-2,6,-6,9r-144,122v-9,8,-14,12,-27,12r-107,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r132,0v6,0,11,2,11,6xm391,-773v0,3,-2,6,-6,9r-144,122v-9,8,-14,12,-27,12r-107,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r132,0v6,0,11,2,11,6","w":443},{"d":"665,-484v0,154,-126,279,-280,279v-154,0,-279,-125,-279,-279v0,-154,125,-279,279,-279v154,0,280,125,280,279xm614,-484v0,-126,-103,-229,-229,-229v-126,0,-228,103,-228,229v0,126,102,229,228,229v126,0,229,-103,229,-229xm523,-330v0,5,-4,10,-10,10r-67,0v-5,0,-8,-4,-10,-8r-63,-111v-2,0,-6,-6,-8,-6r-26,0r0,114v0,6,-5,11,-11,11r-60,0v-6,0,-11,-5,-11,-11r0,-294v0,-21,6,-27,25,-30v15,-2,62,-5,89,-5v87,0,140,27,140,108r0,7v0,47,-25,73,-59,87r69,121v1,2,2,4,2,7xm432,-545r0,-7v0,-27,-15,-39,-54,-39r-41,0r0,85v5,0,37,1,41,1v39,0,54,-14,54,-40","w":598},{"d":"593,-737v0,4,-2,9,-6,14r-539,702v-11,14,-16,21,-27,21r-103,0v-6,0,-9,-3,-9,-8v0,-4,1,-8,5,-13r539,-702v12,-15,18,-20,29,-20r103,0v6,0,8,2,8,6","w":370},{"d":"685,-720r0,5v-4,26,-10,61,-16,91v-2,9,-7,18,-13,26r-348,432v-4,5,-7,9,-7,13v0,3,3,5,10,5r260,0v10,0,17,6,17,15r0,3r-19,110v-2,11,-13,20,-24,20r-454,0v-21,0,-37,-7,-37,-25v0,-2,1,-4,1,-6r15,-80v3,-14,7,-26,22,-44r343,-422v4,-5,6,-9,6,-12v0,-4,-3,-6,-10,-6r-238,0v-10,0,-17,-6,-17,-16r0,-3r20,-110v2,-11,12,-19,23,-19r431,0v19,0,35,8,35,23xm680,-937v0,3,-2,7,-6,11r-109,117v-11,11,-16,15,-30,15r-160,0v-14,0,-17,-3,-24,-15r-68,-117v-2,-3,-3,-6,-3,-8v0,-5,4,-9,11,-9r98,0v13,0,15,3,22,12r51,70r76,-70v10,-9,13,-12,26,-12r108,0v5,0,8,2,8,6","w":615},{"d":"606,-372v0,17,-2,36,-5,54r-10,58v-3,15,-12,24,-25,24r-321,0v-2,15,-4,29,-4,41v0,52,25,70,89,70v63,0,153,-6,194,-9v16,-1,21,2,19,16r-14,76v-3,16,-7,23,-25,27v-67,16,-123,24,-210,24v-108,0,-210,-62,-210,-201v0,-17,2,-36,5,-56r12,-70v30,-174,135,-263,299,-263v135,0,206,92,206,209xm455,-380v0,-46,-22,-71,-78,-71v-68,0,-100,46,-115,115r188,0v3,-16,5,-31,5,-44","w":590,"k":{"y":20,"\u00fd":20,"\u00ff":20,"T":60,"v":20,"x":23,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"402,-639v0,5,-4,9,-11,9r-99,0v-13,0,-15,-4,-22,-12r-100,-122v-2,-3,-3,-5,-3,-7v0,-5,5,-8,12,-8r124,0v14,0,18,4,25,15r71,117v2,3,3,6,3,8","w":443},{"d":"380,-581v60,0,104,8,131,15v18,5,19,10,17,23r-16,89v-2,11,-4,19,-24,17v-38,-4,-64,-7,-121,-7v-49,0,-85,23,-102,116r-15,84v-3,19,-5,35,-5,48v0,54,25,68,67,68v57,0,85,-3,123,-7v15,-2,20,6,18,17r-16,89v-3,15,-9,19,-25,23v-29,7,-73,15,-133,15v-117,0,-197,-70,-197,-194v0,-19,2,-38,6,-59r15,-84v33,-187,132,-253,277,-253","w":474,"k":{"\u00e7":15,"e":21,"\u00e9":21,"\u00ea":21,"\u00eb":21,"\u00e8":21,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f6":33,"\u00f2":33,"\u00f5":33,"c":15}},{"d":"294,-449r0,4r-22,126v-2,11,-12,20,-23,20r-117,0v-10,0,-18,-7,-18,-17r0,-3r22,-126v2,-11,14,-19,25,-19r117,0v10,0,16,6,16,15","w":274},{"d":"614,-346v0,11,-9,16,-20,16r-155,0r0,154v0,11,-5,20,-16,20r-90,0v-11,0,-16,-9,-16,-20r0,-154r-154,0v-11,0,-20,-5,-20,-16r0,-90v0,-11,9,-16,20,-16r154,0r0,-155v0,-11,5,-20,16,-20r90,0v11,0,16,9,16,20r0,155r155,0v11,0,20,5,20,16r0,90xm614,4v0,11,-9,16,-20,16r-431,0v-11,0,-20,-5,-20,-16r0,-71v0,-11,9,-16,20,-16r431,0v11,0,20,5,20,16r0,71"},{"d":"668,-558v0,3,-1,5,-2,8r-272,589v-55,118,-97,163,-244,163v-37,0,-98,-8,-122,-16v-10,-3,-18,-7,-18,-15r0,-3r15,-81v2,-11,12,-19,23,-19r2,0v32,2,91,8,124,8v36,0,57,-12,75,-52r14,-31r-5,0v-40,0,-77,-15,-86,-93r-53,-450r0,-3v0,-12,7,-20,23,-20r131,0v10,0,15,9,16,19r23,382v1,12,4,13,10,13r8,0r163,-395v4,-10,13,-19,24,-19r135,0v9,0,16,7,16,15","w":592,"k":{"\u201e":55,"\u201a":55,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e0":24,"\u00e5":24,"\u00e3":24,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":23,"\u00f8":23,"\u0153":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,",":55,".":61,"\u2026":61,"c":27,"\u00e7":27,"d":13,"q":20}},{"d":"781,-393v0,260,-172,347,-406,347v-95,0,-160,-47,-160,-128v0,-12,2,-23,4,-35r22,-116v25,-132,99,-167,215,-167v43,0,91,6,132,15v14,3,21,12,21,23v0,3,0,5,-1,8r-59,299v113,-19,151,-148,151,-247v0,-110,-62,-196,-216,-196v-175,0,-282,83,-315,246r-32,160v-4,22,-8,41,-8,64v0,113,78,168,230,168v60,0,113,-8,148,-8r1,0r1,0r3,0v5,0,7,1,7,6r0,3r0,1r-4,39v-1,7,-6,12,-14,13v-34,4,-87,10,-149,10v-182,0,-304,-82,-304,-232v0,-21,3,-43,7,-64r33,-165v42,-211,184,-312,404,-312v192,0,289,129,289,268xm484,-392v-17,-3,-35,-5,-51,-5v-48,0,-67,19,-79,76r-23,111v-2,8,-3,21,-3,29v0,32,19,40,64,40v15,0,29,0,42,-1","w":774},{"d":"503,-727r0,4r-15,87v-2,11,-12,20,-23,20r-58,0v-32,0,-41,9,-49,58r-23,135v-12,72,-37,119,-110,150v41,23,60,72,60,119v0,11,-1,22,-3,32r-24,131v-2,13,-4,24,-4,32v0,21,10,26,33,26r58,0v10,0,17,7,17,17r0,3r-16,87v-2,11,-12,20,-23,20r-58,0v-121,0,-175,-44,-175,-133v0,-16,2,-33,5,-52r24,-131v2,-9,2,-17,2,-25v0,-34,-14,-59,-41,-78r16,-95v41,-24,67,-55,75,-103r23,-135v28,-162,81,-185,235,-185r58,0v10,0,16,7,16,16","w":407,"k":{"j":-37}},{"d":"146,-142r133,0r75,-430r-140,56v-5,2,-9,3,-12,3v-7,0,-10,-5,-9,-13r20,-114v2,-7,5,-11,13,-14r196,-85v7,-3,14,-4,24,-4r90,0v11,0,17,8,15,19r-102,582r133,0v11,0,18,8,16,19r-18,103v-2,11,-12,20,-23,20r-436,0v-11,0,-19,-9,-17,-20r18,-103v2,-11,13,-19,24,-19"},{"d":"652,-557v0,6,-3,11,-7,15r-86,85v15,27,23,56,23,86v0,31,-8,62,-24,90r84,84v4,4,7,10,7,15v0,4,-2,8,-5,11r-57,57v-3,3,-7,5,-11,5v-6,0,-11,-3,-15,-7r-86,-87v-25,14,-54,21,-82,21v-30,0,-59,-7,-86,-22r-85,85v-4,4,-10,8,-16,8v-3,0,-7,-2,-10,-5r-57,-57v-3,-3,-5,-8,-5,-12v0,-5,3,-11,7,-15r85,-84v-15,-27,-23,-57,-23,-87v0,-28,6,-57,20,-82r-85,-86v-4,-4,-7,-10,-7,-15v0,-4,2,-8,5,-11r57,-57v3,-3,7,-5,11,-5v5,0,11,3,15,7r83,83v28,-16,60,-23,91,-23v30,0,59,7,86,22r85,-85v4,-4,10,-7,15,-7v4,0,8,2,11,5r57,57v3,3,5,7,5,11xm479,-374v0,-46,-38,-83,-84,-83v-46,0,-85,37,-85,83v0,46,39,84,85,84v46,0,84,-38,84,-84"},{"d":"192,-638v-12,0,-18,-8,-16,-20r16,-93v2,-11,8,-20,24,-20r130,0v12,0,19,5,16,20r-16,93v-2,11,-8,20,-24,20r-130,0xm307,-573v11,0,19,6,17,20r-94,533v-2,11,-7,20,-24,20r-122,0v-12,0,-18,-8,-16,-20r94,-533v2,-11,12,-20,23,-20r122,0","w":290},{"d":"772,-727r0,3r-79,445v-45,251,-181,288,-340,288v-140,0,-243,-65,-243,-217v0,-22,1,-45,6,-71r79,-445v2,-11,12,-19,23,-19r131,0v10,0,17,7,17,16r0,3r-79,445v-4,22,-6,42,-6,59v0,60,28,86,98,86v90,0,125,-43,143,-145r79,-445v2,-11,12,-19,23,-19r130,0v10,0,18,6,18,16xm699,-804v0,5,-3,9,-10,9r-98,0v-13,0,-16,-3,-22,-12r-50,-70r-77,70v-10,9,-13,12,-26,12r-108,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r110,-117v11,-11,15,-15,29,-15r160,0v14,0,18,3,25,15r67,117v2,3,2,6,2,8","w":711,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":16}},{"d":"539,-628v0,87,-50,147,-108,207r-56,58v-56,58,-70,68,-74,89r-5,28v-2,12,-16,19,-27,19r-100,0v-10,0,-15,-8,-15,-16r0,-4r4,-27v8,-52,17,-84,64,-134r59,-63v32,-34,67,-66,67,-117v0,-18,-8,-29,-42,-29v-52,0,-96,5,-145,11r-3,0v-10,0,-14,-6,-14,-14v0,-2,1,-5,1,-7r15,-89v2,-14,7,-22,23,-26v45,-13,108,-21,164,-21v110,0,192,44,192,135xm288,-148r0,3r-23,126v-2,11,-12,19,-23,19r-118,0v-10,0,-17,-6,-17,-16r0,-3r23,-126v2,-11,12,-20,23,-20r118,0v10,0,17,7,17,17","w":479},{"d":"363,-759v0,3,-1,7,-3,11r-114,219v-7,13,-12,19,-22,19r-101,0v-6,0,-8,-3,-8,-7v0,-3,1,-7,3,-12r93,-219v6,-14,13,-19,23,-19r119,0v7,0,10,3,10,8","w":253,"k":{",":75,"\u201a":75,"\u201e":75,".":75,"\u2026":75}},{"d":"755,-731v0,3,-1,7,-3,10r-212,346v-28,46,-52,67,-78,77r-49,278v-2,11,-13,20,-24,20r-131,0v-10,0,-16,-7,-16,-17r0,-3r49,-278v-23,-10,-41,-31,-53,-77r-90,-346v0,-1,-1,-3,-1,-4v0,-10,9,-18,20,-18r140,0v10,0,15,8,17,17r58,282v3,13,6,15,13,15v7,0,10,-2,17,-15r158,-282v5,-9,13,-17,23,-17r148,0v9,0,14,5,14,12xm671,-914r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm454,-914r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":649,"k":{"O":45,"\u00d8":45,"\u0152":45,"\u00d3":45,"\u00d4":45,"\u00d6":45,"\u00d2":45,"\u00d5":45,"a":90,"\u00e6":90,"\u00e1":90,"\u00e2":90,"\u00e4":90,"\u00e0":90,"\u00e5":90,"\u00e3":90,"e":95,"\u00e9":95,"\u00ea":95,"\u00eb":95,"\u00e8":95,"o":96,"\u00f8":96,"\u0153":96,"\u00f3":96,"\u00f4":96,"\u00f6":96,"\u00f2":96,"\u00f5":96,"u":68,"\u00fa":68,"\u00fb":68,"\u00fc":68,"\u00f9":68,"y":41,"\u00fd":41,"\u00ff":41,",":96,"\u201a":96,"\u201e":96,".":96,"\u2026":96,"c":93,"\u00e7":93,"C":50,"\u00c7":50,"E":35,"\u00c9":35,"\u00ca":35,"\u00cb":35,"\u00c8":35,"G":50,"v":47,"A":76,"\u00c6":76,"\u00c1":76,"\u00c2":76,"\u00c4":76,"\u00c0":76,"\u00c5":76,"\u00c3":76,"\u2013":56,"\u2014":56,"S":9,"\u0160":9,"-":56,"x":41,"\u00ee":-23,"\u00ef":-23,"\u00ec":-23,"s":68,"\u0161":68,"z":65,"\u017e":65,"F":36,"d":93,"\u00a1":55,"p":69,"q":93,"\u00bf":140,"\/":96}},{"d":"755,-731v0,3,-1,7,-3,10r-212,346v-28,46,-52,67,-78,77r-49,278v-2,11,-13,20,-24,20r-131,0v-10,0,-16,-7,-16,-17r0,-3r49,-278v-23,-10,-41,-31,-53,-77r-90,-346v0,-1,-1,-3,-1,-4v0,-10,9,-18,20,-18r140,0v10,0,15,8,17,17r58,282v3,13,6,15,13,15v7,0,10,-2,17,-15r158,-282v5,-9,13,-17,23,-17r148,0v9,0,14,5,14,12xm681,-937v0,3,-2,6,-6,9r-144,122v-9,8,-13,12,-26,12r-117,0v-5,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r114,-117v11,-11,15,-15,29,-15r141,0v6,0,11,2,11,6","w":649,"k":{"O":45,"\u00d8":45,"\u0152":45,"\u00d3":45,"\u00d4":45,"\u00d6":45,"\u00d2":45,"\u00d5":45,"a":90,"\u00e6":90,"\u00e1":90,"\u00e2":90,"\u00e4":90,"\u00e0":90,"\u00e5":90,"\u00e3":90,"e":95,"\u00e9":95,"\u00ea":95,"\u00eb":95,"\u00e8":95,"o":96,"\u00f8":96,"\u0153":96,"\u00f3":96,"\u00f4":96,"\u00f6":96,"\u00f2":96,"\u00f5":96,"u":68,"\u00fa":68,"\u00fb":68,"\u00fc":68,"\u00f9":68,"y":41,"\u00fd":41,"\u00ff":41,",":96,"\u201a":96,"\u201e":96,".":96,"\u2026":96,"c":93,"\u00e7":93,"C":50,"\u00c7":50,"E":35,"\u00c9":35,"\u00ca":35,"\u00cb":35,"\u00c8":35,"G":50,"v":47,"A":76,"\u00c6":76,"\u00c1":76,"\u00c2":76,"\u00c4":76,"\u00c0":76,"\u00c5":76,"\u00c3":76,"\u2013":56,"\u2014":56,"S":9,"\u0160":9,"-":56,"x":41,"\u00ee":-23,"\u00ef":-23,"\u00ec":-23,"s":68,"\u0161":68,"z":65,"\u017e":65,"F":36,"d":93,"\u00a1":55,"p":69,"q":93,"\u00bf":140,"\/":96}},{"d":"728,-509v0,24,-2,50,-7,78r-21,119v-41,234,-165,321,-353,321v-137,0,-246,-81,-246,-245v0,-24,2,-49,7,-76r21,-119v44,-248,186,-321,353,-321v134,0,246,73,246,243xm556,-497v0,-75,-34,-105,-101,-105v-84,0,-131,46,-153,171r-21,119v-5,27,-7,50,-7,70v0,75,34,101,100,101v84,0,133,-51,154,-171r21,-119v4,-25,7,-47,7,-66","w":698,"k":{"T":30,"V":24,"Y":45,"\u00dd":45,"\u0178":45,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"X":49,"Z":28,"\u017d":28,"x":13}},{"d":"462,-735v0,5,-3,11,-8,18v-135,189,-206,391,-206,622v0,104,16,196,40,263v2,4,3,9,3,13v0,8,-4,13,-14,13r-90,0v-15,0,-26,-3,-32,-14v-46,-84,-69,-192,-69,-305v0,-218,74,-440,220,-604v10,-11,21,-14,36,-14r110,0v7,0,10,3,10,8","w":361,"k":{"j":-37}},{"d":"593,-251v-2,11,-13,19,-24,19r-460,0v-11,0,-17,-8,-15,-19r14,-79v2,-11,11,-20,22,-20r460,0v11,0,19,9,17,20","w":599},{"d":"529,-550v0,2,-1,5,-1,7r-16,89v-2,10,-12,17,-22,17r-2,0v-36,-4,-64,-7,-121,-7v-49,0,-85,23,-102,116r-15,84v-3,19,-5,35,-5,48v0,54,25,68,67,68v57,0,85,-3,123,-7r2,0v9,0,16,5,16,14r0,3r-16,89v-3,15,-9,19,-25,23v-29,7,-73,15,-133,15v-117,0,-197,-70,-197,-194v0,-19,2,-38,6,-59r15,-84v33,-187,132,-253,277,-253v60,0,104,8,131,15v12,3,18,7,18,16xm338,41v0,2,-2,5,-6,9r-144,122v-10,8,-13,12,-26,12r-107,0v-6,0,-8,-2,-8,-6v0,-3,2,-7,6,-11r113,-117v10,-11,16,-15,30,-15r132,0v6,0,10,2,10,6","w":474,"k":{"e":21,"\u00e9":21,"\u00ea":21,"\u00eb":21,"\u00e8":21,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f6":33,"\u00f2":33,"\u00f5":33,"c":15,"\u00e7":15}},{"d":"354,-751r0,4r-128,726v-2,11,-12,21,-23,21r-122,0v-10,0,-17,-8,-17,-18r0,-3r128,-726v2,-11,13,-20,24,-20r122,0v10,0,16,7,16,16","w":282},{"d":"606,-391v0,14,-7,24,-21,36r-232,207v-7,6,-13,11,-24,11r-139,0v-7,0,-12,-6,-12,-13v0,-4,2,-8,6,-12r259,-229r-259,-229v-4,-4,-6,-8,-6,-12v0,-7,5,-13,12,-13r139,0v11,0,17,5,24,11r232,207v14,12,21,22,21,36xm628,4v0,11,-9,16,-20,16r-431,0v-11,0,-20,-5,-20,-16r0,-71v0,-11,9,-16,20,-16r431,0v11,0,20,5,20,16r0,71"},{"d":"679,-760v0,1,-1,3,-1,5r-17,75v-2,11,-12,18,-25,18r-65,0v-49,0,-61,11,-70,49r-36,159r134,0v10,0,17,6,17,14v0,2,-1,3,-1,5r-19,84v-3,11,-13,21,-25,21r-134,0r-75,325v-31,133,-121,170,-225,170v-40,0,-80,-5,-99,-9v-13,-3,-17,-7,-17,-14v0,-1,1,-3,1,-5r17,-75v2,-11,12,-18,25,-18r65,0v49,0,61,-11,70,-49r74,-325r-126,0v-10,0,-17,-7,-17,-16v0,-2,1,-3,1,-5r19,-84v3,-11,13,-19,25,-19r127,0r36,-159v30,-133,122,-170,226,-170v40,0,79,5,98,9v13,3,17,7,17,14"},{"d":"436,-598v0,85,-68,154,-153,154v-84,0,-154,-69,-154,-154v0,-85,70,-154,154,-154v85,0,153,69,153,154xm355,-598v0,-40,-33,-73,-72,-73v-39,0,-72,33,-72,73v0,39,32,72,72,72v40,0,72,-33,72,-72","w":361},{"d":"693,-720v0,2,-1,4,-1,7r-18,99v-2,13,-10,18,-19,18r-3,0v-41,-5,-110,-12,-163,-12v-74,0,-93,17,-105,81r-15,82r169,0v10,0,17,6,17,16r0,3r-17,97v-2,11,-11,19,-22,19r-170,0r-18,100v-6,33,-19,57,-33,76r274,0v10,0,16,6,16,14r0,4r-17,97v-2,11,-12,19,-23,19r-442,0v-11,0,-16,-9,-16,-18v0,-2,1,-4,1,-6r13,-70v2,-12,8,-18,13,-24v17,-18,43,-58,49,-92r18,-100r-50,0v-10,0,-16,-6,-16,-15r0,-4r17,-97v2,-11,12,-19,23,-19r49,0r15,-81v33,-180,110,-226,296,-226v57,0,131,12,161,19v13,3,17,7,17,13"},{"d":"313,-557v0,2,0,3,-1,4r-22,126v-2,11,-12,19,-23,19r-118,0v-9,0,-16,-6,-16,-15r0,-4r22,-126v2,-11,12,-20,23,-20r118,0v10,0,17,7,17,16xm257,-328r0,3r-68,499v-1,11,-14,20,-25,20r-125,0v-9,0,-17,-7,-17,-16r0,-4r108,-499v3,-11,13,-21,24,-21r85,0v10,0,18,9,18,18","w":273,"k":{"V":10,"Y":55,"\u00dd":55,"\u0178":55}},{"d":"914,-560v0,3,0,5,-1,8r-174,482v-21,57,-58,70,-100,70r-61,0v-48,0,-70,-26,-73,-64r-21,-261v0,-5,-1,-5,-4,-5v-3,0,-4,0,-6,5r-113,261v-16,38,-47,64,-95,64r-61,0v-42,0,-76,-13,-76,-70r-4,-482v0,-11,8,-21,19,-21r117,0v12,0,18,2,18,16r0,1r-7,382r0,1v0,8,2,12,4,12v3,0,6,-4,10,-13r116,-266v15,-35,32,-45,64,-45r82,0v32,0,45,10,48,45r20,264v1,9,3,13,5,13v3,0,6,-5,9,-13r126,-380v5,-15,12,-17,24,-17r122,0v8,0,12,6,12,13","w":845,"k":{"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":15,"\u00f8":15,"\u0153":15,"\u00f3":15,"\u00f4":15,"\u00f6":15,"\u00f2":15,"\u00f5":15,",":27,"\u201a":27,"\u201e":27,".":40,"\u2026":40,"c":10,"\u00e7":10}},{"d":"898,-384v0,18,-2,36,-5,55r-11,64v-2,11,-14,21,-25,21r-310,0r-7,41v-1,6,-2,11,-2,16v0,44,39,61,104,61v38,0,136,-4,175,-8r5,0v8,0,13,2,13,11r0,5r-13,72v-3,15,-7,21,-23,26v-59,19,-139,29,-204,29v-57,0,-109,-16,-139,-46v-58,29,-124,46,-194,46v-103,0,-193,-50,-193,-149v0,-10,1,-21,3,-32r2,-11v23,-128,126,-158,287,-158r42,0r2,-9v3,-15,4,-29,4,-40v0,-42,-20,-56,-65,-56v-62,0,-137,4,-165,7r-3,0v-8,0,-13,-5,-13,-13r0,-5r14,-79v2,-11,11,-21,24,-24v36,-9,106,-21,166,-21v74,0,122,21,154,60v44,-42,105,-60,174,-60v141,0,203,89,203,197xm745,-384v0,-45,-22,-72,-73,-72v-61,0,-95,41,-106,106r-3,18r176,0r3,-18v2,-12,3,-24,3,-34xm393,-253r-47,0v-70,0,-109,18,-118,70r-2,11v-1,5,-1,10,-1,14v0,38,32,52,69,52v26,0,53,-4,75,-13","w":881,"k":{"y":20,"\u00fd":20,"\u00ff":20,"T":60,"v":20,"x":23,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"690,-727r0,3r-18,103v-2,11,-14,19,-25,19r-162,0r-102,582v-2,11,-13,20,-24,20r-131,0v-10,0,-16,-7,-16,-16r0,-4r102,-582r-163,0v-10,0,-16,-6,-16,-15r0,-4r18,-103v2,-11,12,-19,23,-19r496,0v10,0,18,7,18,16","w":587,"k":{"x":16,"v":13,"q":65,"p":16,"d":50,"G":25,"F":16,"\/":80,"-":57,"O":30,"\u00d8":30,"\u0152":30,"\u00d3":30,"\u00d4":30,"\u00d6":30,"\u00d2":30,"\u00d5":30,"a":60,"\u00e6":60,"\u00e1":60,"\u00e2":60,"\u00e4":60,"\u00e0":60,"\u00e5":60,"\u00e3":60,"e":66,"\u00e9":66,"\u00ea":66,"\u00eb":66,"\u00e8":66,"o":78,"\u00f8":78,"\u0153":78,"\u00f3":78,"\u00f4":78,"\u00f6":78,"\u00f2":78,"\u00f5":78,"u":20,"\u00fa":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,"y":27,"\u00fd":27,"\u00ff":27,",":55,"\u201a":55,"\u201e":55,".":55,"\u2026":55,"c":43,"\u00e7":43,"C":27,"\u00c7":27,"E":23,"\u00c9":23,"\u00ca":23,"\u00cb":23,"\u00c8":23,"A":70,"\u00c6":70,"\u00c1":70,"\u00c2":70,"\u00c4":70,"\u00c0":70,"\u00c5":70,"\u00c3":70,"\u00ee":-21,"\u00ef":-21,"\u00ec":-21,"s":58,"\u0161":58,"z":15,"\u017e":15}},{"d":"606,-372v0,17,-2,36,-5,54r-10,58v-3,15,-12,24,-25,24r-321,0v-2,15,-4,29,-4,41v0,52,25,70,89,70v63,0,153,-5,194,-9r3,0v9,0,16,4,16,13r0,3r-14,76v-3,16,-7,23,-25,27v-67,16,-123,24,-210,24v-108,0,-210,-62,-210,-201v0,-17,2,-36,5,-56r12,-70v30,-174,135,-263,299,-263v135,0,206,92,206,209xm455,-380v0,-46,-22,-71,-78,-71v-68,0,-100,46,-115,115r188,0v3,-16,5,-31,5,-44xm602,-754r0,3r-16,93v-2,11,-15,20,-26,20r-94,0v-10,0,-17,-7,-17,-17r0,-3r16,-93v2,-11,14,-20,25,-20r94,0v10,0,18,7,18,17xm385,-754r0,3r-16,93v-2,11,-14,20,-25,20r-94,0v-10,0,-18,-7,-18,-17r0,-3r16,-93v2,-11,15,-20,26,-20r94,0v10,0,17,7,17,17","w":590,"k":{"y":20,"\u00fd":20,"\u00ff":20,"T":60,"v":20,"x":23,"\ufb03":20,"\ufb00":20,"\ufb04":20,"\ue000":20,"\ue001":20,"\ue005":20,"\ue002":20,"\ue006":20,"\ue003":20,"\ue007":20,"\ue004":20}},{"d":"434,-758r0,3r-18,102v-2,11,-12,20,-23,20r-118,0v-10,0,-17,-7,-17,-17r0,-3r18,-102v2,-11,12,-19,23,-19r118,0v10,0,17,6,17,16","w":443}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+278-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("SwnZ~kQFW4M9Syx&Ak}lowoM3bQZnkM93b2lW4Vgn.[s:0F`3-6aGwB03-6aGw6l3-6lGwPF3-6lG(.`3-6aG(BO3-.kQ?Bb3-6aGw:Z3-.kQ?6d3-6aG(Blt1fDA(Uan?}DA(oaQbnDA(Uan4}DA(UanI.DA(Uan(VDA(olQIfDA(olG4}DA(olGI2Q3-6aGw.k3-6aGwnf3-6lG?Ub3-6lG?Pl3-6aGw2f3-6aGwVk3-.kQ0Ga3-6lGIoO3-6aGwnk3-.kQk:OW}OZGI^ft.OZGI^`GxOZn?D0GxOZGI^kt.OZn(UaGg%DA4:bQ?VDA(Uanw}DA(Ua:kof3-6aGkV?3-6aGwPb3-6aGwn!2.OZGI^`n.OZGI^?:xOZn?nxn.OZGI^!n.OZn?D0GZOZGI^!G.OZGI^!Q}OZGI2?QZOZGI^xt.OZGI^`:ZOZGI^fGxOZGIPbG.OZGI^!QZOZGI^?nxOZGI^kGZOZGI^kG}OZGI^kt}OZn?nx:xOZGI^?n.OZGI^!t.OZGI^?:ZOZGI^xt}OZn?:FGZOZGI2?QxOZGI^!QxOZn?:ZQxOZG?oOt.OZGI^f:xOZGI^`Q}OZGI^xGZOZn?D0t.OZG?oOG.OZGI^`Q.OZn?:ZQlNDA(Ua:4VDA(Ul:0!F3-6lG?:a3-6lG(.?3-6lG(2x3-.kQ?:13-6aGw6O3-.kQkG03-6lG(P03-6aG(:a3-.kQ?:$3-6aGwV?3-.kQk6d3-6aGwG$3-6aGwGZ3-.xGIUF3-.kQ?Q?3-6aG(603-.kQ?:d3-.kQ0G13-6lG(ob3-.kQ0GO3-.kQ?V`3-.kQ?nf3-6lG(olL.OZG?UOn.OZGI^?n}OZG?^f:ZOZGI^k:0ADA(oZ:bP;3-.kQk:03-.kQ?Bd3-.kQk.?3-6aGwo03-.kQ?B$3-6aGbPd3-6aGwG03-6aGb2?3-6aGw.x4}OZG?^fQZOZGIP1n.OZG?^fGZOZn?:bQ.OZG?PZQ}OZn(UaQZOZn?:bGkNy3-.kQ?BO3-6aGw:l3-.kQk:a3-.kQ?BaVxOZGI^k:xADA4:bGbnDA(olG46M3-.kQ?.x3-6aGw:b3(q03-.kQ?Qf3-6aGw6a3-6aGwod3-.kQ?Vf3-6aGwPaDZOZn?nkGxOZGI^kQFfDA4n`GI}DA(Ua:0VDA(U0:0^DA(olGwnI3-.kQkV?B.OZn?nx:.OZn?:bG.OZn(UaG.OZG?UO:ZOZn?:0t.^DA4n`GI2DA(oaGb}-~FVG3-.kQ?V?3}ODA4:1G0qZo}OZG?ol:x22t3Fr3-.kQ?6Z3-.kQk.!Yk2DA4:1G0.~V.OZn?D0QxOZn?:Z:.OZG?UOGZ%K3-.kQ?.!6l%bo0nDA4:bGb.DoxOZn?:FQ}OZn?nxnxOZGI2!t}OZn?:bQxOZG?UlQ!NDA46aGIfDA4n`GIG!(xOZn?:Zt}OZn?:FQ.OZn(UaG}OZn?:0:kdDA(Ua:0}DA(oOQ(Ga3-.kQ?B13-.kQ?.?3-.k:?UaS.!k3-6aGwG13-.k:?UF3-6lG(.!3yMDA(oaG4}DA(Ua:0xDA4:1G0VO3-6aGwPZ3-6aGwQfY}OZG?UlGg6l3-6lGIPd6.OZG?obQyODA(Ua:knDA4:bGbVDA4:bQ?Q43-6aGwP$3-6aGwGanZOZG?U0t.OZGI^fnxOZGI^`Q!%DA(oaG0^DA(UOQ(2DA(UanI^DA(oaG4VDA(oaQIVDA(Ua:?fDA(Ua:kVDA(UanIfDA(Uan4VaA}OZGI2!:CdDA(Ua:4}NnxOZG?UlG}OZG?UOQ}OZn(UaQ.OZGI^?Qg2DA4:bQ42DA46aGIn.3-6aGw6Z3-6aGwGlWxOZGI2!:xOZGI^f:ZOZG?UOt}OZn(UaG0O!3-6aGw.?3-6aG(GO3-6aGwP13ZOZGI^!GxOZGI^kQw}DA(oOQ4.DA(Uank.DA(UlnwVDA(Ua:4.DA(olG(.DA(UOQbVx:wQDA(Ua:?ADA(Ua:?}dB-sO3-6aGwPFW.OZGI^!:?[g3-6aG(D$3-6aGwV!(lfDA46aGIxDA(Uan(As3-6lG?:Z3-6aG(!l3-6aGwoa3-6aGwP03-6aGwPOAZOZGI^xQxVDA(Uan42DA(UlnI!`LgQa~wxFSyo`SCO%i(UsDIZ`LgUs~IZaLkOx~kAFWyOgi4o9n`dg~-xaW-GMK1F&W4:):`d,W0F,3`q7tgA1AU^yIP}w-o2SLGQtiBVC(6.43:nW~DAKYqf`?!xkg)%|_sN9,aOl0FZb1$d;&[Mr7Za9S([)i0%_W3VxD1.ln`Z`:4xxnw.0~bZNn.a9ng2[nw.b3yd_W3VxD1.ln`Z`:4xxnw.0~bZNn.a9ng2[n4N`DZa9~wM?:4a%2yM%LgVxD1B)~wM?:3V%~b$9WwM0Awdf~46%S4n,D`q&W(Ostls_WCxg4bQ~W.ZAi3^~W.ZMSCq%")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":645,"face":{"font-family":"Neo Sans Std","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 8 4 3 5 4 11 2 4","ascent":"765","descent":"-235","x-height":"9","bbox":"-91 -1012 1611.49 216","underline-thickness":"80","underline-position":"1","slope":"-11","stemh":"134","stemv":"163","unicode-range":"U+0020-U+FB04"}}));
;

(function( $, Cufon ) {

var EKBS = EKBS || {};

/* EXT LINKS
------------------------------------------------------------------ */

EKBS.extLinks = function() {
    $("a[href^=http://]").not("[href*=" + location.hostname + "]").click(function() {
        $(this).attr("target", "_blank");
    });
};

/* CUFON
------------------------------------------------------------------ */

EKBS.cufonInit = function() {
    Cufon.set("fontFamily", "Neo Sans Std");
    Cufon.replace("#nav-left a, #nav-header a, #nav-footer a", { hover: true });
    Cufon.replace("h2, h3, h4, h5, h6");
    Cufon.replace(".date-display-single");
    Cufon.now();
};

/* INIT
------------------------------------------------------------------ */

$(function() {
    EKBS.extLinks();
    EKBS.cufonInit();
});

})( jQuery, Cufon );
;

