/*
 * 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>';
  }
};
;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function($) {

	var tmp, loading, overlay, wrap, outer, inner, close, nav_left, nav_right,

		selectedIndex = 0, selectedOpts = {}, selectedArray = [], currentIndex = 0, currentOpts = {}, currentArray = [],

		ajaxLoader = null, imgPreloader = new Image(), imgRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i, swfRegExp = /[^\.]\.(swf)\s*$/i,

		loadingTimer, loadingFrame = 1,

		start_pos, final_pos, busy = false, shadow = 20, fx = $.extend($('<div/>')[0], { prop: 0 }), titleh = 0, 

		isIE6 = !$.support.opacity && !window.XMLHttpRequest,

		/*
		 * Private methods 
		 */

		fancybox_abort = function() {
			loading.hide();

			imgPreloader.onerror = imgPreloader.onload = null;

			if (ajaxLoader) {
				ajaxLoader.abort();
			}

			tmp.empty();
		},

		fancybox_error = function() {
			$.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>', {
				'scrolling'		: 'no',
				'padding'		: 20,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none'
			});
		},

		fancybox_get_viewport = function() {
			return [ $(window).width(), $(window).height(), $(document).scrollLeft(), $(document).scrollTop() ];
		},

		fancybox_get_zoom_to = function () {
			var view	= fancybox_get_viewport(),
				to		= {},

				margin = currentOpts.margin,
				resize = currentOpts.autoScale,

				horizontal_space	= (shadow + margin) * 2,
				vertical_space		= (shadow + margin) * 2,
				double_padding		= (currentOpts.padding * 2),
				
				ratio;

			if (currentOpts.width.toString().indexOf('%') > -1) {
				to.width = ((view[0] * parseFloat(currentOpts.width)) / 100) - (shadow * 2) ;
				resize = false;

			} else {
				to.width = currentOpts.width + double_padding;
			}

			if (currentOpts.height.toString().indexOf('%') > -1) {
				to.height = ((view[1] * parseFloat(currentOpts.height)) / 100) - (shadow * 2);
				resize = false;

			} else {
				to.height = currentOpts.height + double_padding;
			}

			if (resize && (to.width > (view[0] - horizontal_space) || to.height > (view[1] - vertical_space))) {
				if (selectedOpts.type == 'image' || selectedOpts.type == 'swf') {
					horizontal_space	+= double_padding;
					vertical_space		+= double_padding;

					ratio = Math.min(Math.min( view[0] - horizontal_space, currentOpts.width) / currentOpts.width, Math.min( view[1] - vertical_space, currentOpts.height) / currentOpts.height);

					to.width	= Math.round(ratio * (to.width	- double_padding)) + double_padding;
					to.height	= Math.round(ratio * (to.height	- double_padding)) + double_padding;

				} else {
					to.width	= Math.min(to.width,	(view[0] - horizontal_space));
					to.height	= Math.min(to.height,	(view[1] - vertical_space));
				}
			}

			to.top	= view[3] + ((view[1] - (to.height	+ (shadow * 2 ))) * 0.5);
			to.left	= view[2] + ((view[0] - (to.width	+ (shadow * 2 ))) * 0.5);

			if (currentOpts.autoScale === false) {
				to.top	= Math.max(view[3] + margin, to.top);
				to.left	= Math.max(view[2] + margin, to.left);
			}

			return to;
		},

		fancybox_format_title = function(title) {
			if (title && title.length) {
				switch (currentOpts.titlePosition) {
					case 'inside':
						return title;
					case 'over':
						return '<span id="fancybox-title-over">' + title + '</span>';
					default:
						return '<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">' + title + '</span><span id="fancybox-title-right"></span></span>';
				}
			}

			return false;
		},

		fancybox_process_title = function() {
			var title	= currentOpts.title,
				width	= final_pos.width - (currentOpts.padding * 2),
				titlec	= 'fancybox-title-' + currentOpts.titlePosition;
				
			$('#fancybox-title').remove();

			titleh = 0;

			if (currentOpts.titleShow === false) {
				return;
			}

			title = $.isFunction(currentOpts.titleFormat) ? currentOpts.titleFormat(title, currentArray, currentIndex, currentOpts) : fancybox_format_title(title);

			if (!title || title === '') {
				return;
			}

			$('<div id="fancybox-title" class="' + titlec + '" />').css({
				'width'			: width,
				'paddingLeft'	: currentOpts.padding,
				'paddingRight'	: currentOpts.padding
			}).html(title).appendTo('body');

			switch (currentOpts.titlePosition) {
				case 'inside':
					titleh = $("#fancybox-title").outerHeight(true) - currentOpts.padding;
					final_pos.height += titleh;
				break;

				case 'over':
					$('#fancybox-title').css('bottom', currentOpts.padding);
				break;

				default:
					$('#fancybox-title').css('bottom', $("#fancybox-title").outerHeight(true) * -1);
				break;
			}

			$('#fancybox-title').appendTo( outer ).hide();
		},

		fancybox_set_navigation = function() {
			$(document).unbind('keydown.fb').bind('keydown.fb', function(e) {
				if (e.keyCode == 27 && currentOpts.enableEscapeButton) {
					e.preventDefault();
					$.fancybox.close();

				} else if (e.keyCode == 37) {
					e.preventDefault();
					$.fancybox.prev();

				} else if (e.keyCode == 39) {
					e.preventDefault();
					$.fancybox.next();
				}
			});

			if ($.fn.mousewheel) {
				wrap.unbind('mousewheel.fb');

				if (currentArray.length > 1) {
					wrap.bind('mousewheel.fb', function(e, delta) {
						e.preventDefault();

						if (busy || delta === 0) {
							return;
						}

						if (delta > 0) {
							$.fancybox.prev();
						} else {
							$.fancybox.next();
						}
					});
				}
			}

			if (!currentOpts.showNavArrows) { return; }

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex !== 0) {
				nav_left.show();
			}

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex != (currentArray.length -1)) {
				nav_right.show();
			}
		},

		fancybox_preload_images = function() {
			var href, 
				objNext;
				
			if ((currentArray.length -1) > currentIndex) {
				href = currentArray[ currentIndex + 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}

			if (currentIndex > 0) {
				href = currentArray[ currentIndex - 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}
		},

		_finish = function () {
			inner.css('overflow', (currentOpts.scrolling == 'auto' ? (currentOpts.type == 'image' || currentOpts.type == 'iframe' || currentOpts.type == 'swf' ? 'hidden' : 'auto') : (currentOpts.scrolling == 'yes' ? 'auto' : 'visible')));

			if (!$.support.opacity) {
				inner.get(0).style.removeAttribute('filter');
				wrap.get(0).style.removeAttribute('filter');
			}

			$('#fancybox-title').show();

			if (currentOpts.hideOnContentClick)	{
				inner.one('click', $.fancybox.close);
			}
			if (currentOpts.hideOnOverlayClick)	{
				overlay.one('click', $.fancybox.close);
			}

			if (currentOpts.showCloseButton) {
				close.show();
			}

			fancybox_set_navigation();

			$(window).bind("resize.fb", $.fancybox.center);

			if (currentOpts.centerOnScroll) {
				$(window).bind("scroll.fb", $.fancybox.center);
			} else {
				$(window).unbind("scroll.fb");
			}

			if ($.isFunction(currentOpts.onComplete)) {
				currentOpts.onComplete(currentArray, currentIndex, currentOpts);
			}

			busy = false;

			fancybox_preload_images();
		},

		fancybox_draw = function(pos) {
			var width	= Math.round(start_pos.width	+ (final_pos.width	- start_pos.width)	* pos),
				height	= Math.round(start_pos.height	+ (final_pos.height	- start_pos.height)	* pos),

				top		= Math.round(start_pos.top	+ (final_pos.top	- start_pos.top)	* pos),
				left	= Math.round(start_pos.left	+ (final_pos.left	- start_pos.left)	* pos);

			wrap.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px',
				'top'		: top		+ 'px',
				'left'		: left		+ 'px'
			});

			width	= Math.max(width - currentOpts.padding * 2, 0);
			height	= Math.max(height - (currentOpts.padding * 2 + (titleh * pos)), 0);

			inner.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px'
			});

			if (typeof final_pos.opacity !== 'undefined') {
				wrap.css('opacity', (pos < 0.5 ? 0.5 : pos));
			}
		},

		fancybox_get_obj_pos = function(obj) {
			var pos		= obj.offset();

			pos.top		+= parseFloat( obj.css('paddingTop') )	|| 0;
			pos.left	+= parseFloat( obj.css('paddingLeft') )	|| 0;

			pos.top		+= parseFloat( obj.css('border-top-width') )	|| 0;
			pos.left	+= parseFloat( obj.css('border-left-width') )	|| 0;

			pos.width	= obj.width();
			pos.height	= obj.height();

			return pos;
		},

		fancybox_get_zoom_from = function() {
			var orig = selectedOpts.orig ? $(selectedOpts.orig) : false,
				from = {},
				pos,
				view;

			if (orig && orig.length) {
				pos = fancybox_get_obj_pos(orig);

				from = {
					width	: (pos.width	+ (currentOpts.padding * 2)),
					height	: (pos.height	+ (currentOpts.padding * 2)),
					top		: (pos.top		- currentOpts.padding - shadow),
					left	: (pos.left		- currentOpts.padding - shadow)
				};
				
			} else {
				view = fancybox_get_viewport();

				from = {
					width	: 1,
					height	: 1,
					top		: view[3] + view[1] * 0.5,
					left	: view[2] + view[0] * 0.5
				};
			}

			return from;
		},

		fancybox_show = function() {
			loading.hide();

			if (wrap.is(":visible") && $.isFunction(currentOpts.onCleanup)) {
				if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
					$.event.trigger('fancybox-cancel');

					busy = false;
					return;
				}
			}

			currentArray	= selectedArray;
			currentIndex	= selectedIndex;
			currentOpts		= selectedOpts;

			inner.get(0).scrollTop	= 0;
			inner.get(0).scrollLeft	= 0;

			if (currentOpts.overlayShow) {
				if (isIE6) {
					$('select:not(#fancybox-tmp select)').filter(function() {
						return this.style.visibility !== 'hidden';
					}).css({'visibility':'hidden'}).one('fancybox-cleanup', function() {
						this.style.visibility = 'inherit';
					});
				}

				overlay.css({
					'background-color'	: currentOpts.overlayColor,
					'opacity'			: currentOpts.overlayOpacity
				}).unbind().show();
			}

			final_pos = fancybox_get_zoom_to();

			fancybox_process_title();

			if (wrap.is(":visible")) {
				$( close.add( nav_left ).add( nav_right ) ).hide();

				var pos = wrap.position(),
					equal;

				start_pos = {
					top		:	pos.top ,
					left	:	pos.left,
					width	:	wrap.width(),
					height	:	wrap.height()
				};

				equal = (start_pos.width == final_pos.width && start_pos.height == final_pos.height);

				inner.fadeOut(currentOpts.changeFade, function() {
					var finish_resizing = function() {
						inner.html( tmp.contents() ).fadeIn(currentOpts.changeFade, _finish);
					};
					
					$.event.trigger('fancybox-change');

					inner.empty().css('overflow', 'hidden');

					if (equal) {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
						});
						
						finish_resizing();

					} else {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
						});
						
						fx.prop = 0;

						$(fx).animate({ prop: 1 }, {
							 duration	: currentOpts.changeSpeed,
							 easing		: currentOpts.easingChange,
							 step		: fancybox_draw,
							 complete	: finish_resizing
						});
					}
				});

				return;
			}

			wrap.css('opacity', 1);

			if (currentOpts.transitionIn == 'elastic') {
				start_pos = fancybox_get_zoom_from();

				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
					})
					.html( tmp.contents() );

				wrap.css(start_pos).show();

				if (currentOpts.opacity) {
					final_pos.opacity = 0;
				}

				fx.prop = 0;

				$(fx).animate({ prop: 1 }, {
					 duration	: currentOpts.speedIn,
					 easing		: currentOpts.easingIn,
					 step		: fancybox_draw,
					 complete	: _finish
				});

			} else {
				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
					})
					.html( tmp.contents() );

				wrap.css( final_pos ).fadeIn( currentOpts.transitionIn == 'none' ? 0 : currentOpts.speedIn, _finish );
			}
		},

		fancybox_process_inline = function() {
			tmp.width(	selectedOpts.width );
			tmp.height(	selectedOpts.height );

			if (selectedOpts.width	== 'auto') {
				selectedOpts.width = tmp.width();
			}
			if (selectedOpts.height	== 'auto') {
				selectedOpts.height	= tmp.height();
			}

			fancybox_show();
		},
		
		fancybox_process_image = function() {
			busy = true;

			selectedOpts.width	= imgPreloader.width;
			selectedOpts.height	= imgPreloader.height;

			$("<img />").attr({
				'id'	: 'fancybox-img',
				'src'	: imgPreloader.src,
				'alt'	: selectedOpts.title
			}).appendTo( tmp );

			fancybox_show();
		},

		fancybox_start = function() {
			fancybox_abort();

			var obj	= selectedArray[ selectedIndex ],
				href, 
				type, 
				title,
				str,
				emb,
				selector,
				data;

			selectedOpts = $.extend({}, $.fn.fancybox.defaults, (typeof $(obj).data('fancybox') == 'undefined' ? selectedOpts : $(obj).data('fancybox')));
			title = obj.title || $(obj).title || selectedOpts.title || '';
			
			if (obj.nodeName && !selectedOpts.orig) {
				selectedOpts.orig = $(obj).children("img:first").length ? $(obj).children("img:first") : $(obj);
			}

			if (title === '' && selectedOpts.orig) {
				title = selectedOpts.orig.attr('alt');
			}

			if (obj.nodeName && (/^(?:javascript|#)/i).test(obj.href)) {
				href = selectedOpts.href || null;
			} else {
				href = selectedOpts.href || obj.href || null;
			}

			if (selectedOpts.type) {
				type = selectedOpts.type;

				if (!href) {
					href = selectedOpts.content;
				}
				
			} else if (selectedOpts.content) {
				type	= 'html';

			} else if (href) {
				if (href.match(imgRegExp)) {
					type = 'image';

				} else if (href.match(swfRegExp)) {
					type = 'swf';

				} else if ($(obj).hasClass("iframe")) {
					type = 'iframe';

				} else if (href.match(/#/)) {
					obj = href.substr(href.indexOf("#"));

					type = $(obj).length > 0 ? 'inline' : 'ajax';
				} else {
					type = 'ajax';
				}
			} else {
				type = 'inline';
			}

			selectedOpts.type	= type;
			selectedOpts.href	= href;
			selectedOpts.title	= title;

			if (selectedOpts.autoDimensions && selectedOpts.type !== 'iframe' && selectedOpts.type !== 'swf') {
				selectedOpts.width		= 'auto';
				selectedOpts.height		= 'auto';
			}

			if (selectedOpts.modal) {
				selectedOpts.overlayShow		= true;
				selectedOpts.hideOnOverlayClick	= false;
				selectedOpts.hideOnContentClick	= false;
				selectedOpts.enableEscapeButton	= false;
				selectedOpts.showCloseButton	= false;
			}

			if ($.isFunction(selectedOpts.onStart)) {
				if (selectedOpts.onStart(selectedArray, selectedIndex, selectedOpts) === false) {
					busy = false;
					return;
				}
			}

			tmp.css('padding', (shadow + selectedOpts.padding + selectedOpts.margin));

			$('.fancybox-inline-tmp').unbind('fancybox-cancel').bind('fancybox-change', function() {
				$(this).replaceWith(inner.children());
			});

			switch (type) {
				case 'html' :
					tmp.html( selectedOpts.content );
					fancybox_process_inline();
				break;

				case 'inline' :
					$('<div class="fancybox-inline-tmp" />').hide().insertBefore( $(obj) ).bind('fancybox-cleanup', function() {
						$(this).replaceWith(inner.children());
					}).bind('fancybox-cancel', function() {
						$(this).replaceWith(tmp.children());
					});

					$(obj).appendTo(tmp);

					fancybox_process_inline();
				break;

				case 'image':
					busy = false;

					$.fancybox.showActivity();

					imgPreloader = new Image();

					imgPreloader.onerror = function() {
						fancybox_error();
					};

					imgPreloader.onload = function() {
						imgPreloader.onerror = null;
						imgPreloader.onload = null;
						fancybox_process_image();
					};

					imgPreloader.src = href;
		
				break;

				case 'swf':
					str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"><param name="movie" value="' + href + '"></param>';
					emb = '';
					
					$.each(selectedOpts.swf, function(name, val) {
						str += '<param name="' + name + '" value="' + val + '"></param>';
						emb += ' ' + name + '="' + val + '"';
					});

					str += '<embed src="' + href + '" type="application/x-shockwave-flash" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"' + emb + '></embed></object>';

					tmp.html(str);

					fancybox_process_inline();
				break;

				case 'ajax':
					selector	= href.split('#', 2);
					data		= selectedOpts.ajax.data || {};

					if (selector.length > 1) {
						href = selector[0];

						if (typeof data == "string") {
							data += '&selector=' + selector[1];
						} else {
							data.selector = selector[1];
						}
					}

					busy = false;
					$.fancybox.showActivity();

					ajaxLoader = $.ajax($.extend(selectedOpts.ajax, {
						url		: href,
						data	: data,
						error	: fancybox_error,
						success : function(data, textStatus, XMLHttpRequest) {
							if (ajaxLoader.status == 200) {
								tmp.html( data );
								fancybox_process_inline();
							}
						}
					}));

				break;

				case 'iframe' :
					$('<iframe id="fancybox-frame" name="fancybox-frame' + new Date().getTime() + '" frameborder="0" hspace="0" scrolling="' + selectedOpts.scrolling + '" src="' + selectedOpts.href + '"></iframe>').appendTo(tmp);
					fancybox_show();
				break;
			}
		},

		fancybox_animate_loading = function() {
			if (!loading.is(':visible')){
				clearInterval(loadingTimer);
				return;
			}

			$('div', loading).css('top', (loadingFrame * -40) + 'px');

			loadingFrame = (loadingFrame + 1) % 12;
		},

		fancybox_init = function() {
			if ($("#fancybox-wrap").length) {
				return;
			}

			$('body').append(
				tmp			= $('<div id="fancybox-tmp"></div>'),
				loading		= $('<div id="fancybox-loading"><div></div></div>'),
				overlay		= $('<div id="fancybox-overlay"></div>'),
				wrap		= $('<div id="fancybox-wrap"></div>')
			);

			if (!$.support.opacity) {
				wrap.addClass('fancybox-ie');
				loading.addClass('fancybox-ie');
			}

			outer = $('<div id="fancybox-outer"></div>')
				.append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>')
				.appendTo( wrap );

			outer.append(
				inner		= $('<div id="fancybox-inner"></div>'),
				close		= $('<a id="fancybox-close"></a>'),

				nav_left	= $('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),
				nav_right	= $('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>')
			);

			close.click($.fancybox.close);
			loading.click($.fancybox.cancel);

			nav_left.click(function(e) {
				e.preventDefault();
				$.fancybox.prev();
			});

			nav_right.click(function(e) {
				e.preventDefault();
				$.fancybox.next();
			});

			if (isIE6) {
				overlay.get(0).style.setExpression('height',	"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");
				loading.get(0).style.setExpression('top',		"(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");

				outer.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>');
			}
		};

	/*
	 * Public methods 
	 */

	$.fn.fancybox = function(options) {
		$(this)
			.data('fancybox', $.extend({}, options, ($.metadata ? $(this).metadata() : {})))
			.unbind('click.fb').bind('click.fb', function(e) {
				e.preventDefault();

				if (busy) {
					return;
				}

				busy = true;

				$(this).blur();

				selectedArray	= [];
				selectedIndex	= 0;

				var rel = $(this).attr('rel') || '';

				if (!rel || rel == '' || rel === 'nofollow') {
					selectedArray.push(this);

				} else {
					selectedArray	= $("a[rel=" + rel + "], area[rel=" + rel + "]");
					selectedIndex	= selectedArray.index( this );
				}

				fancybox_start();

				return false;
			});

		return this;
	};

	$.fancybox = function(obj) {
		if (busy) {
			return;
		}

		busy = true;

		var opts = typeof arguments[1] !== 'undefined' ? arguments[1] : {};

		selectedArray	= [];
		selectedIndex	= opts.index || 0;

		if ($.isArray(obj)) {
			for (var i = 0, j = obj.length; i < j; i++) {
				if (typeof obj[i] == 'object') {
					$(obj[i]).data('fancybox', $.extend({}, opts, obj[i]));
				} else {
					obj[i] = $({}).data('fancybox', $.extend({content : obj[i]}, opts));
				}
			}

			selectedArray = jQuery.merge(selectedArray, obj);

		} else {
			if (typeof obj == 'object') {
				$(obj).data('fancybox', $.extend({}, opts, obj));
			} else {
				obj = $({}).data('fancybox', $.extend({content : obj}, opts));
			}

			selectedArray.push(obj);
		}

		if (selectedIndex > selectedArray.length || selectedIndex < 0) {
			selectedIndex = 0;
		}

		fancybox_start();
	};

	$.fancybox.showActivity = function() {
		clearInterval(loadingTimer);

		loading.show();
		loadingTimer = setInterval(fancybox_animate_loading, 66);
	};

	$.fancybox.hideActivity = function() {
		loading.hide();
	};

	$.fancybox.next = function() {
		return $.fancybox.pos( currentIndex + 1);
	};
	
	$.fancybox.prev = function() {
		return $.fancybox.pos( currentIndex - 1);
	};

	$.fancybox.pos = function(pos) {
		if (busy) {
			return;
		}

		pos = parseInt(pos, 10);

		if (pos > -1 && currentArray.length > pos) {
			selectedIndex = pos;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos < 0) {
			selectedIndex = currentArray.length - 1;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos >= currentArray.length) {
			selectedIndex = 0;
			fancybox_start();
		}

		return;
	};

	$.fancybox.cancel = function() {
		if (busy) {
			return;
		}

		busy = true;

		$.event.trigger('fancybox-cancel');

		fancybox_abort();

		if (selectedOpts && $.isFunction(selectedOpts.onCancel)) {
			selectedOpts.onCancel(selectedArray, selectedIndex, selectedOpts);
		}

		busy = false;
	};

	// Note: within an iframe use - parent.$.fancybox.close();
	$.fancybox.close = function() {
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		if (currentOpts && $.isFunction(currentOpts.onCleanup)) {
			if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
				busy = false;
				return;
			}
		}

		fancybox_abort();

		$(close.add( nav_left ).add( nav_right )).hide();

		$('#fancybox-title').remove();

		wrap.add(inner).add(overlay).unbind();

		$(window).unbind("resize.fb scroll.fb");
		$(document).unbind('keydown.fb');

		function _cleanup() {
			overlay.fadeOut('fast');

			wrap.hide();

			$.event.trigger('fancybox-cleanup');

			inner.empty();

			if ($.isFunction(currentOpts.onClosed)) {
				currentOpts.onClosed(currentArray, currentIndex, currentOpts);
			}

			currentArray	= selectedOpts	= [];
			currentIndex	= selectedIndex	= 0;
			currentOpts		= selectedOpts	= {};

			busy = false;
		}

		inner.css('overflow', 'hidden');

		if (currentOpts.transitionOut == 'elastic') {
			start_pos = fancybox_get_zoom_from();

			var pos = wrap.position();

			final_pos = {
				top		:	pos.top ,
				left	:	pos.left,
				width	:	wrap.width(),
				height	:	wrap.height()
			};

			if (currentOpts.opacity) {
				final_pos.opacity = 1;
			}

			fx.prop = 1;

			$(fx).animate({ prop: 0 }, {
				 duration	: currentOpts.speedOut,
				 easing		: currentOpts.easingOut,
				 step		: fancybox_draw,
				 complete	: _cleanup
			});

		} else {
			wrap.fadeOut( currentOpts.transitionOut == 'none' ? 0 : currentOpts.speedOut, _cleanup);
		}
	};

	$.fancybox.resize = function() {
		var c, h;
		
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		c = inner.wrapInner("<div style='overflow:auto'></div>").children();
		h = c.height();

		wrap.css({height:	h + (currentOpts.padding * 2) + titleh});
		inner.css({height:	h});

		c.replaceWith(c.children());

		$.fancybox.center();
	};

	$.fancybox.center = function() {
		busy = true;

		var view	= fancybox_get_viewport(),
			margin	= currentOpts.margin,
			to		= {};

		to.top	= view[3] + ((view[1] - ((wrap.height() - titleh) + (shadow * 2 ))) * 0.5);
		to.left	= view[2] + ((view[0] - (wrap.width() + (shadow * 2 ))) * 0.5);

		to.top	= Math.max(view[3] + margin, to.top);
		to.left	= Math.max(view[2] + margin, to.left);

		wrap.css(to);

		busy = false;
	};

	$.fn.fancybox.defaults = {
		padding				:	10,
		margin				:	20,
		opacity				:	false,
		modal				:	false,
		cyclic				:	false,
		scrolling			:	'auto',	// 'auto', 'yes' or 'no'

		width				:	560,
		height				:	340,

		autoScale			:	true,
		autoDimensions		:	true,
		centerOnScroll		:	false,

		ajax				:	{},
		swf					:	{ wmode: 'transparent' },

		hideOnOverlayClick	:	true,
		hideOnContentClick	:	false,

		overlayShow			:	true,
		overlayOpacity		:	0.3,
		overlayColor		:	'#666',

		titleShow			:	true,
		titlePosition		:	'outside',	// 'outside', 'inside' or 'over'
		titleFormat			:	null,

		transitionIn		:	'fade',	// 'elastic', 'fade' or 'none'
		transitionOut		:	'fade',	// 'elastic', 'fade' or 'none'

		speedIn				:	300,
		speedOut			:	300,

		changeSpeed			:	300,
		changeFade			:	'fast',

		easingIn			:	'swing',
		easingOut			:	'swing',

		showCloseButton		:	true,
		showNavArrows		:	true,
		enableEscapeButton	:	true,

		onStart				:	null,
		onCancel			:	null,
		onComplete			:	null,
		onCleanup			:	null,
		onClosed			:	null
	};

	$(document).ready(function() {
		fancybox_init();
	});

})(jQuery);;

/**
 * Initiate Fancybox using selector and options from the module's settings.
 */
Drupal.behaviors.initFancybox = function() {
  var settings = Drupal.settings.fancybox;

  // Convert any JavaScript events to function calls.
  var events = ["onStart", "onComplete", "onClosed", "onCleanup", "onCancel"];
  for (var i in events) {
    if (settings.options[events[i]].length && typeof(settings.options[events[i]]) == 'string') {
      settings.options[events[i]] = eval("("+settings.options[events[i]]+")");
    }
  }

  if (settings && settings.selector.length) {
    $(settings.selector).fancybox(settings.options);
  }

  $('.imagefield-fancybox').fancybox(settings.options);

  // emvideo support
  settings.options.hideOnContentClick = false;
  $('.emvideo-modal-fancybox').fancybox(settings.options);

}
;

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
var unixTime;
var clockDiv;
var hours;
var meridian = 'AM';

function doDate() {
	unixTime = unixTime + 1;
	d = new Date(unixTime * 1000); 
	if(d.getHours() > 12){
		hours = d.getHours() - 12;
		meridian = 'PM';
	} else {
		hours = d.getHours();
		meridian = 'AM';
	}
	
	
	clockDiv.innerHTML = hours + ':' + ("0" + d.getMinutes() ).slice (-2) + ' ' + meridian + '<br />'
			     + d.getDate() + '/' + ( d.getMonth() + 1) + '/' + d.getFullYear();
	
}

function timer(time, div) {
	unixTime = time;
	clockDiv = div;
	window.setInterval("doDate()", 1000);
}

;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
if (Drupal.jsEnabled) {
  $(document).ready(function() {
    // I am assuming that all of the links are refering to an internal node
    
    // add the attribute rel=facebox to all of the links I want to have a popup
    $('div.view-field > a').attr('class', 'popup');
   
    // on click of a link
    $('a.popup').click(function(a) {
    
      // Make sure that other stuff is closed. This seems to cause a problem in Fx2 and IE7.
      $('div#calpopup').fadeOut();
      $('div#calpopup').remove();
      
      // create div to hold data and add it to the end of the body
      var div = $('<div id="calpopup"><div id="popup-close"><img id="popup-close-img" src="' + Drupal.settings.jcalendar.path + '/images/cross.png" /></div><div id="calpopup-body"><img src="' + Drupal.settings.jcalendar.path + '/images/throbber.gif" id="popthrobber" /></div></div>').attr('style','display: none');
      div.appendTo(document.body);
      
      // Locate Popup
      var offset = $(this).offset();
      // Check position with window width.
      var offset_left = offset.left + 5;
      if ($(window).width() < $('#calpopup').width() + offset.left) {
        offset_left -= $('#calpopup').width() + 5;
        if (offset_left < 0) {
          offset_left = 0;
        }
      }
      var offset_top = offset.top + 25;
      if ($(window).height() < $('#calpopup').height() + offset_top) {
        offset_top -= $('#calpopup').height() + 25;
	      if (offset_top < 0) {
          offset_top = 0;
        }
      }
      $('#calpopup').css('left', offset_left);
      $('#calpopup').css('top', offset_top);
      
      // Show Popup
      $('#calpopup').fadeIn('slow');
      
      // If sucessful call this
      function domCallback(msg) {
        $('#calpopup-body').html(msg);
      }
      
      // Get NodeID and ItemID
      var ids = $(this).parent().parent().attr('class');
      var arrs = ids.split(" ");
      var arr = arrs[0].split(".");
      var nid = arr[1];
      var id = arr[4];
            
      // fill the div with data
      $.ajax({
        type: "GET",
        url: Drupal.settings.basePath + "?q=jcalendar/getnode/"+nid+"/"+ids,
        success: function(msg){
          domCallback(msg);
        }
      });
      
      // On click of the close image
      $('img#popup-close-img').click(function(x) {
        $('div#calpopup').fadeOut();
        $('div#calpopup').remove();
      });
      
      $(document).click(function(y) {
        var $tgt = $(y.target);
        if (!$tgt.parents().is('div#calpopup')) {
          $('div#calpopup').fadeOut();
          $('div#calpopup').remove();
          $(document).unbind("click");
        }
      });
      
      // Don't Follow the real link
      return false;
    });
  });
}
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, modified, disclosed or transferred without the express written
 * approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems
 * Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger
 * Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be
 * registered in certain jurisdictions. This typeface is original artwork of
 * Linotype Design Studio. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * Helvetica is one of the most famous and popular typefaces in the world. It
 * lends an air of lucid efficiency to any typographic message with its clean,
 * no-nonsense shapes. The original typeface was called Haas Grotesk, and was
 * designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type
 * Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an
 * adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the
 * Helvetica family was expanded to include many different weights, but these were
 * not as well coordinated with each other as they might have been. In 1983, D.
 * Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it
 * into a cohesive font family. Today, the original Helvetica family consists of 34
 * different font weights, and the Neue Helvetica family consists of 51 font
 * weights. The Helvetica family now forms an integral part of many digital
 * printers and operating systems and has become a stylistic anchor in our visual
 * culture. It is the quintessential sans serif font, timeless and neutral, and can
 * be used for all types of communication. Helvetica World, an update to the
 * classic Helvetica design using the OpenType font format, contains the following
 * Microsoft code pages: 1252 Latin 1, 1250 Latin 2 Eastern, 1251 Cyrillic, 1253
 * Greek, 1254 Turk, 1255 Hebrew, 1256 Arabic, 1257 Windows Baltic, 1258 Windows
 * Vietnamese, as well as a mixture of box drawing element glyphs and mathematical
 * symbols & operators. In total, each weight of Helvetica World contains more than
 * 1850 different glyph characters!
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Linotype Design Studio
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":200,"face":{"font-family":"helvetica","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 3 2 2 2 2 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-60 -348 378 77","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"\ufb01":{"d":"115,-257r23,0r0,36r-23,0r0,-36xm98,-236v-34,-9,-46,12,-41,50r36,0r0,19r-36,0r0,167r-23,0r0,-167r-32,0r0,-19r32,0v-5,-49,12,-80,64,-70r0,20xm115,-186r23,0r0,186r-23,0r0,-186","w":159},"\ufb02":{"d":"115,-257r23,0r0,257r-23,0r0,-257xm98,-236v-34,-9,-46,12,-41,50r36,0r0,19r-36,0r0,167r-23,0r0,-167r-32,0r0,-19r32,0v-5,-49,12,-80,64,-70r0,20","w":159},"\u0149":{"d":"39,-290v2,29,2,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm108,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172","w":199},"\u0132":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm114,-82v-1,35,9,67,49,67v41,0,48,-27,49,-67r0,-175r24,0r0,185v14,79,-95,102,-133,50v-11,-14,-14,-35,-13,-60r24,0","w":261},"\u0133":{"d":"22,-257r23,0r0,36r-23,0r0,-36xm22,-186r23,0r0,186r-23,0r0,-186xm90,-257r23,0r0,36r-23,0r0,-36xm57,49v22,5,33,-5,33,-26r0,-209r23,0r0,203v1,36,-16,58,-56,51r0,-19","w":134},"%":{"d":"25,-186v0,-41,16,-68,57,-68v41,0,57,27,57,68v0,41,-17,68,-57,68v-40,0,-57,-27,-57,-68xm278,-62v0,-27,-8,-52,-38,-52v-30,0,-38,25,-38,52v0,27,9,51,38,51v28,0,38,-24,38,-51xm183,-63v0,-41,18,-68,57,-68v39,0,57,27,57,68v0,41,-16,68,-57,68v-41,0,-57,-27,-57,-68xm231,-261r17,0r-162,273r-18,0xm120,-186v0,-28,-10,-52,-38,-52v-29,0,-38,24,-38,52v0,28,9,52,38,52v28,0,38,-24,38,-52","w":320},"&":{"d":"136,-205v1,-20,-15,-33,-34,-33v-42,0,-39,55,-15,74v5,6,6,6,10,11v18,-12,38,-23,39,-52xm195,-114v-1,21,-5,45,-15,62r43,52r-28,0r-28,-33v-31,55,-160,52,-153,-34v3,-41,34,-60,63,-76v-13,-18,-32,-33,-32,-62v0,-33,23,-52,57,-52v33,0,57,18,57,52v0,37,-28,50,-50,67r56,67v7,-13,7,-23,7,-43r23,0xm37,-64v-1,45,55,63,90,40v10,-7,19,-16,26,-26r-64,-78v-23,15,-52,27,-52,64","w":219},"\u2019":{"d":"66,-257v1,39,2,79,-32,87r0,-15v12,-4,16,-19,17,-34r-15,0r0,-38r30,0","w":100,"k":{"\u021b":6,"\u0163":6,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"t":6,"s":40,"\u2019":43}},"(":{"d":"87,-262v-60,82,-59,251,0,331r-18,0v-27,-46,-51,-94,-51,-165v0,-67,22,-122,51,-166r18,0","w":86},")":{"d":"0,69v60,-83,58,-250,0,-331r18,0v27,46,50,92,50,164v0,68,-22,123,-50,167r-18,0","w":86},"*":{"d":"10,-214r5,-14r41,15r0,-44r14,0r0,44r42,-15r5,14r-42,14r25,35r-11,8r-26,-36r-27,36r-11,-8r26,-35","w":126},"+":{"d":"99,-181r19,0r0,81r81,0r0,19r-81,0r0,81r-19,0r0,-81r-81,0r0,-19r81,0r0,-81","w":216},",":{"d":"65,-38v1,39,1,79,-32,87v-3,-24,21,-23,17,-49r-15,0r0,-38r30,0","w":100},"-":{"d":"22,-89r0,-20r90,0r0,20r-90,0","w":133},".":{"d":"35,0r0,-38r30,0r0,38r-30,0","w":100},"\/":{"d":"-5,5r111,-267r19,0r-110,267r-20,0","w":119},"0":{"d":"12,-124v0,-68,17,-130,88,-130v70,0,88,60,88,129v0,69,-17,130,-88,130v-71,0,-88,-61,-88,-129xm165,-125v0,-55,-10,-110,-65,-110v-55,0,-65,55,-65,110v0,55,10,111,65,111v56,0,65,-56,65,-111"},"1":{"d":"35,-203v42,0,67,-10,71,-49r18,0r0,252r-22,0r0,-187r-67,0r0,-16"},"2":{"d":"178,-183v0,94,-115,87,-139,162r140,0r0,21r-166,0v5,-92,106,-93,137,-158v18,-38,-8,-79,-51,-77v-40,1,-59,27,-57,70r-23,0v1,-54,25,-89,81,-89v47,1,78,24,78,71"},"3":{"d":"185,-71v5,90,-146,100,-169,27v-4,-11,-5,-23,-4,-36r23,0v-1,43,22,66,63,66v37,0,64,-19,64,-55v0,-43,-33,-57,-80,-54r0,-19v41,3,71,-9,71,-46v0,-32,-23,-47,-55,-47v-38,0,-57,26,-58,64r-22,0v1,-51,28,-83,79,-83v44,0,78,18,78,64v-1,29,-16,51,-42,56v32,5,50,28,52,63"},"4":{"d":"127,-82r-1,-137r-95,137r96,0xm11,-85r116,-167r21,0r0,170r38,0r0,19r-38,0r0,63r-21,0r0,-63r-116,0r0,-22"},"5":{"d":"183,-80v7,89,-132,116,-163,40v-4,-10,-7,-20,-7,-32r23,0v2,37,24,58,62,58v41,0,60,-29,63,-68v5,-68,-93,-87,-121,-36r-19,0r24,-131r126,0r0,21r-110,0r-16,84v10,-13,32,-23,54,-23v55,1,80,34,84,87"},"6":{"d":"14,-129v0,-66,22,-123,90,-125v47,0,73,23,78,66r-23,0v-1,-40,-55,-61,-88,-36v-24,18,-36,62,-33,102v10,-22,35,-43,67,-42v52,2,83,32,83,84v0,52,-33,84,-85,85v-75,2,-89,-59,-89,-134xm165,-78v0,-40,-20,-67,-61,-67v-41,0,-61,26,-62,67v0,41,22,64,63,64v38,0,60,-26,60,-64"},"7":{"d":"54,0v8,-104,49,-166,104,-228r-140,0r0,-21r162,0r0,21v-50,54,-97,127,-102,228r-24,0"},"8":{"d":"46,-191v0,31,22,47,54,47v32,0,54,-16,54,-47v0,-31,-24,-44,-54,-44v-30,0,-54,15,-54,44xm100,-254v42,0,75,19,76,63v1,31,-19,47,-41,56v30,6,52,29,52,64v0,52,-35,76,-87,76v-52,0,-87,-24,-87,-76v0,-34,23,-57,51,-65v-24,-8,-41,-25,-41,-55v0,-43,34,-63,77,-63xm36,-71v0,38,25,57,64,57v39,-1,64,-18,64,-57v0,-37,-27,-54,-64,-54v-38,0,-64,17,-64,54"},"9":{"d":"186,-120v0,67,-22,124,-90,125v-46,1,-73,-23,-78,-65r23,0v1,40,56,60,88,35v23,-19,37,-60,33,-101v-10,22,-36,42,-67,41v-53,-1,-83,-32,-83,-84v0,-52,32,-84,86,-85v74,0,88,57,88,134xm35,-170v0,40,21,66,61,66v40,0,62,-26,62,-66v0,-41,-21,-65,-63,-65v-38,0,-60,26,-60,65"},":":{"d":"35,0r0,-38r30,0r0,38r-30,0xm35,-142r0,-38r30,0r0,38r-30,0","w":100},";":{"d":"35,-142r0,-38r30,0r0,38r-30,0xm65,-38v1,39,1,79,-32,87v-3,-24,21,-23,17,-49r-15,0r0,-38r30,0","w":100},"<":{"d":"199,3r-182,-84r0,-20r182,-84r0,20r-160,74r160,74r0,20","w":216},"=":{"d":"199,-46r-181,0r0,-19r181,0r0,19xm199,-117r-181,0r0,-19r181,0r0,19","w":216},">":{"d":"177,-91r-160,-74r0,-20r182,84r0,20r-182,84r0,-20","w":216},"?":{"d":"83,-38r30,0r0,38r-30,0r0,-38xm100,-243v-39,0,-58,25,-58,65r-23,0v2,-53,29,-81,82,-84v56,-3,89,52,64,100v-17,33,-61,42,-56,98r-22,0v-7,-72,65,-72,65,-131v0,-29,-21,-48,-52,-48","w":193},"@":{"d":"155,-203v20,0,32,13,38,31r9,-24r19,0v-12,42,-31,79,-38,125v1,5,2,9,8,9v40,0,61,-46,61,-90v0,-61,-41,-94,-102,-94v-71,0,-114,47,-114,119v0,70,44,116,114,116v44,0,73,-22,93,-48r19,0v-22,36,-56,64,-112,64v-82,0,-133,-53,-133,-135v0,-80,52,-132,132,-132v72,0,122,39,122,112v0,56,-31,104,-83,104v-14,0,-25,-9,-25,-24v-11,10,-27,24,-46,24v-30,0,-48,-22,-48,-53v0,-55,31,-104,86,-104xm122,-66v46,0,80,-84,42,-115v-44,-11,-70,38,-72,81v0,20,12,34,30,34","w":288},"A":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"B":{"d":"50,-144v60,-2,139,14,143,-44v4,-62,-84,-46,-143,-48r0,92xm227,-73v2,90,-112,72,-201,73r0,-257v81,4,191,-21,191,63v0,32,-18,51,-45,58v32,4,55,28,55,63xm202,-74v0,-66,-89,-46,-152,-49r0,102v66,-3,152,17,152,-53","w":240},"C":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,49,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,103,-107,103v-80,0,-114,-54,-121,-134","w":253},"D":{"d":"233,-129v0,83,-38,129,-118,129r-89,0r0,-257r89,0v79,2,118,45,118,128xm208,-129v0,-95,-61,-114,-158,-107r0,215v97,7,158,-12,158,-108","w":246},"E":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257","w":213},"F":{"d":"26,-257r163,0r0,21r-139,0r0,93r124,0r0,21r-124,0r0,122r-24,0r0,-257","w":193,"k":{"\u0104":20,"\u00c5":20,"\u0102":20,"\u0100":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"A":20,".":46,",":46}},"G":{"d":"38,-129v-12,111,143,157,181,57v4,-12,5,-24,5,-38r-88,0r0,-21r110,0r0,131r-18,0v-2,-15,0,-34,-4,-47v-15,32,-44,52,-89,52v-80,0,-113,-54,-121,-134v-14,-141,201,-186,228,-48r-24,0v-8,-38,-37,-65,-83,-65v-66,0,-90,49,-97,113","w":266},"H":{"d":"26,-257r24,0r0,112r153,0r0,-112r25,0r0,257r-25,0r0,-125r-153,0r0,125r-24,0r0,-257","w":253},"I":{"d":"28,-257r24,0r0,257r-24,0r0,-257","w":79},"J":{"d":"32,-82v-1,35,9,67,49,67v41,0,48,-27,49,-67r0,-175r24,0r0,185v14,79,-95,102,-133,50v-11,-14,-14,-35,-13,-60r24,0","w":180},"K":{"d":"26,-257r24,0r0,138r150,-138r33,0r-115,106r120,151r-31,0r-107,-134r-50,46r0,88r-24,0r0,-257","w":233},"L":{"d":"26,-257r24,0r0,236r144,0r0,21r-168,0r0,-257","w":193,"k":{"\u021a":33,"\u00ff":13,"\u0177":13,"\u00fd":13,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33,"\u2019":35}},"M":{"d":"25,-257r36,0r89,225r89,-225r36,0r0,257r-25,0r-1,-222r-87,222r-23,0r-89,-222r0,222r-25,0r0,-257","w":299},"N":{"d":"26,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0r0,-257","w":253},"O":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134","w":266},"P":{"d":"192,-184v0,-66,-79,-51,-142,-52r0,105v64,-1,142,14,142,-53xm216,-184v0,84,-85,75,-166,74r0,110r-24,0r0,-257v86,2,190,-19,190,73","w":226,"k":{"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"A":27,".":55,",":55}},"Q":{"d":"255,-129v0,43,-14,81,-39,102r36,28r-12,16r-40,-31v-17,12,-37,20,-66,19v-81,-2,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133xm37,-129v-4,84,70,139,144,101r-34,-26r13,-15r37,28v59,-55,38,-206,-63,-201v-65,3,-94,47,-97,113","w":266},"R":{"d":"197,-185v0,-67,-84,-49,-147,-51r0,101v63,-2,147,16,147,-50xm202,0v-16,-43,4,-114,-59,-114r-93,0r0,114r-24,0r0,-257v85,3,196,-21,196,67v0,35,-21,59,-50,66v59,1,34,85,57,124r-27,0","w":240,"k":{"\u021a":-2,"\u00ff":-9,"\u0177":-9,"\u00fd":-9,"\u0178":5,"\u0176":5,"\u00dd":5,"\u0174":-2,"\u0162":-2,"\u0164":-2,"y":-9,"Y":5,"W":-2,"V":-2,"T":-2}},"S":{"d":"173,-127v78,34,32,142,-57,132v-62,-7,-106,-25,-103,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,77,-25,91v30,6,62,13,88,24","w":226},"T":{"d":"-2,-257r204,0r0,21r-90,0r0,236r-24,0r0,-236r-90,0r0,-21","k":{"\u0133":-9,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0173":33,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u012f":-9,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":40,"\u00e5":40,"\u0103":40,"\u0101":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"\u0104":24,"\u00c5":24,"\u0102":24,"\u0100":24,"\u00c4":24,"\u00c3":24,"\u00c2":24,"\u00c1":24,"\u00c0":24,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"i":-9,"e":40,"c":40,"a":40,"A":24,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98","w":246},"V":{"d":"-3,-257r27,0r84,230r83,-230r26,0r-96,257r-28,0","w":213,"k":{"\u0133":-2,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0173":13,"\u0171":13,"\u016f":13,"\u016d":13,"\u016b":13,"\u00fc":13,"\u0169":13,"\u00fb":13,"\u00fa":13,"\u00f9":13,"\u0159":13,"\u0157":13,"\u0155":13,"\u0151":20,"\u014f":20,"\u014d":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u012f":-2,"\u0119":20,"\u0117":20,"\u0115":20,"\u0113":20,"\u00eb":20,"\u011b":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u0105":20,"\u00e5":20,"\u0103":20,"\u0101":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u0104":20,"\u00c5":20,"\u0102":20,"\u0100":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":6,"u":13,"r":13,"o":20,"i":-2,"e":20,"a":20,"A":20,";":27,":":27,".":46,"-":20,",":46}},"W":{"d":"0,-257r26,0r59,225r63,-225r31,0r63,225r59,-225r24,0r-70,257r-26,0r-66,-230r-65,230r-27,0","w":326,"k":{"\u0133":-9,"\u0173":6,"\u0171":6,"\u016f":6,"\u016d":6,"\u016b":6,"\u00fc":6,"\u0169":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u0159":6,"\u0157":6,"\u0155":6,"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u012f":-9,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u0105":13,"\u00e5":13,"\u0103":13,"\u0101":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u0104":6,"\u00c5":6,"\u0102":6,"\u0100":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"u":6,"r":6,"o":6,"i":-9,"e":6,"a":13,"A":6,";":6,":":6,".":27,",":27}},"X":{"d":"1,-257r29,0r73,108r75,-108r27,0r-88,125r93,132r-29,0r-78,-113r-80,113r-27,0r92,-132","w":206},"Y":{"d":"98,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0r0,-106","w":219,"k":{"\u0133":3,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u00fc":27,"\u0169":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":27,"q":33,"p":27,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":36,"-":40,",":44}},"Z":{"d":"13,-257r185,0r0,22r-169,214r173,0r0,21r-200,0r0,-22r169,-214r-158,0r0,-21","w":206},"[":{"d":"27,69r0,-331r58,0r0,19r-35,0r0,293r35,0r0,19r-58,0","w":86},"\\":{"d":"105,5r-110,-267r19,0r111,267r-20,0","w":119},"]":{"d":"59,-262r0,331r-58,0r0,-19r36,0r0,-293r-36,0r0,-19r58,0","w":86},"^":{"d":"16,-86r83,-163r18,0r83,163r-20,0r-72,-140r-71,140r-21,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"34,-170v-1,-39,-1,-79,32,-87v3,23,-19,24,-17,49r15,0r0,38r-30,0","w":100,"k":{"\u2018":43}},"a":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88","w":186},"b":{"d":"109,5v-33,1,-56,-18,-67,-40r0,35r-20,0r0,-257r22,0r1,107v9,-26,32,-41,64,-41v57,0,84,41,84,98v0,57,-27,96,-84,98xm109,-14v43,0,61,-34,61,-79v0,-45,-18,-79,-61,-79v-46,0,-65,34,-65,79v0,45,19,79,65,79","w":206},"c":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-33,72,-77,72v-58,0,-85,-41,-88,-98","w":186},"d":{"d":"97,-191v33,0,55,16,65,41r0,-107r23,0r0,257r-21,0v-1,-11,2,-26,-1,-35v-11,23,-32,40,-66,40v-57,-1,-83,-41,-83,-98v0,-57,26,-98,83,-98xm97,-172v-44,0,-61,36,-61,79v0,43,17,79,61,79v46,0,65,-33,65,-79v0,-46,-19,-79,-65,-79","w":206},"e":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98","w":186},"f":{"d":"98,-236v-34,-9,-46,12,-41,50r36,0r0,19r-36,0r0,167r-23,0r0,-167r-32,0r0,-19r32,0v-5,-49,12,-80,64,-70r0,20","w":93,"k":{"f":6,"\u2019":-6}},"g":{"d":"96,-191v29,-1,49,20,60,37r0,-32r23,0v-6,116,38,289,-110,257v-27,-6,-47,-23,-50,-53r23,0v5,25,25,36,54,37v52,2,65,-42,59,-95v-9,22,-31,38,-59,38v-58,0,-84,-39,-84,-96v0,-54,28,-92,84,-93xm35,-95v0,41,19,74,61,74v41,0,60,-33,60,-74v0,-42,-17,-77,-60,-77v-43,0,-61,33,-61,77"},"h":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-257r23,0r1,103v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172","w":193},"i":{"d":"22,-257r23,0r0,36r-23,0r0,-36xm22,-186r23,0r0,186r-23,0r0,-186","w":66},"j":{"d":"22,-257r23,0r0,36r-23,0r0,-36xm-11,49v22,5,33,-5,33,-26r0,-209r23,0r0,203v1,36,-16,58,-56,51r0,-19","w":66},"k":{"d":"22,-257r22,0r0,161r103,-90r30,0r-79,69r85,117r-29,0r-73,-101r-37,30r0,71r-22,0r0,-257","w":180},"l":{"d":"22,-257r23,0r0,257r-23,0r0,-257","w":66},"m":{"d":"44,-154v12,-44,103,-52,114,-1v9,-22,31,-35,59,-36v87,-4,55,113,61,191r-22,0r0,-125v-1,-31,-11,-47,-44,-47v-73,1,-46,103,-51,172r-22,0r0,-126v0,-28,-12,-45,-39,-46v-76,0,-52,100,-56,172r-22,0r0,-186r20,0v2,10,-3,26,2,32","w":299},"n":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172","w":193},"o":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98"},"p":{"d":"109,5v-34,0,-53,-18,-65,-40r0,104r-22,0r0,-255r20,0v1,11,-2,27,1,36v9,-24,35,-41,66,-41v57,0,84,41,84,98v0,57,-27,96,-84,98xm109,-14v43,0,61,-34,61,-79v0,-45,-18,-79,-61,-79v-47,0,-65,32,-65,79v0,45,19,79,65,79","w":206},"q":{"d":"97,-191v34,0,55,18,67,41r0,-36r21,0r0,255r-23,0r0,-104v-11,24,-31,40,-65,40v-57,-1,-83,-41,-83,-98v0,-57,26,-98,83,-98xm97,-172v-44,0,-61,36,-61,79v0,43,17,79,61,79v46,0,65,-33,65,-79v0,-46,-19,-79,-65,-79","w":206},"r":{"d":"113,-166v-42,2,-69,25,-69,67r0,99r-22,0r0,-186r20,0v1,14,-2,32,1,44v11,-28,33,-48,70,-46r0,22","w":113,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"49,-96v-59,-27,-23,-95,38,-95v42,0,65,21,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,119,11,122,90v2,59,-88,68,-128,40v-14,-10,-21,-27,-23,-50r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47","w":173},"t":{"d":"95,1v-37,4,-60,-1,-60,-41r0,-127r-32,0r0,-19r32,0r0,-56r23,0r0,56r37,0r0,19r-37,0r0,126v-3,23,15,27,37,23r0,19","w":106},"u":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172","w":193},"v":{"d":"1,-186r25,0r59,163r58,-163r23,0r-70,186r-24,0","w":166,"k":{".":27,",":27}},"w":{"d":"3,-186r24,0r48,159r46,-159r25,0r46,159r48,-159r24,0r-60,186r-25,0r-46,-156r-46,156r-24,0","w":266,"k":{".":20,",":20}},"x":{"d":"72,-96r-66,-90r28,0r53,71r52,-71r28,0r-67,89r73,97r-29,0r-58,-78r-58,78r-28,0","w":173},"y":{"d":"1,-186r24,0r61,159r57,-159r23,0r-90,234v-7,19,-32,24,-57,19r0,-19v39,10,47,-22,56,-49","w":166,"k":{".":33,",":33}},"z":{"d":"33,-19r128,0r0,19r-156,0r0,-18r122,-149r-113,0r0,-19r142,0r0,16","w":166},"{":{"d":"53,-97v51,21,-7,139,52,147r0,19v-57,10,-50,-47,-49,-99v-1,-26,-2,-55,-26,-57r0,-19v65,-10,-25,-165,75,-156r0,19v-39,-2,-27,51,-27,87v0,28,-9,49,-25,59","w":119},"|":{"d":"31,-283r19,0r0,360r-19,0r0,-360","w":79},"}":{"d":"41,-156v-3,-34,15,-89,-27,-87r0,-19v57,-10,50,45,50,98v0,26,1,56,26,57r0,20v-66,9,26,166,-76,156r0,-19v58,-1,0,-124,53,-147v-16,-10,-24,-32,-26,-59","w":119},"~":{"d":"70,-112v39,0,88,46,108,-1r13,13v-11,15,-21,31,-45,31v-38,0,-90,-48,-108,1r-13,-13v8,-16,21,-31,45,-31","w":216},"\u00a1":{"d":"59,-186r0,38r-31,0r0,-38r31,0xm56,-5r0,74r-25,0r0,-74r6,-117r13,0","w":86},"\u00a2":{"d":"19,-93v0,-55,27,-91,78,-97r0,-32r14,0r0,31v42,2,67,24,72,64r-23,0v-6,-25,-20,-45,-49,-45r0,158v31,-2,46,-24,50,-53r23,0v-5,41,-31,70,-73,72r0,37r-14,0r0,-37v-51,-6,-78,-43,-78,-98xm97,-171v-75,7,-69,151,0,157r0,-157"},"\u00a3":{"d":"39,-18v31,-20,69,4,103,4v18,0,33,-10,42,-20r11,17v-38,52,-118,-16,-167,22r-13,-19v30,-17,55,-65,31,-105r-29,0r0,-11r22,0v-10,-17,-18,-33,-20,-58v-5,-76,101,-94,145,-52v15,15,21,36,21,63r-23,0v1,-42,-20,-66,-60,-66v-37,0,-59,19,-60,56v-1,26,14,38,21,57r58,0r0,11r-51,0v21,38,-4,84,-31,101"},"\u2044":{"d":"103,-261r17,0r-162,273r-18,0","w":60},"\u00a5":{"d":"40,-126r38,0r-76,-131r26,0r72,131r72,-131r25,0r-76,131r39,0r0,17v-16,2,-39,-4,-49,3r0,26r49,0r0,17r-49,0r0,63r-23,0r0,-63r-48,0r0,-17r48,0v-1,-9,2,-23,-2,-29r-46,0r0,-17"},"\u0192":{"d":"6,41v31,9,48,-12,52,-38r27,-142r-36,0r3,-19r36,0v9,-52,17,-113,88,-97v1,32,-56,6,-56,54r-9,43r41,0r-4,19r-40,0v-13,58,-18,123,-38,175v-8,20,-36,31,-67,24"},"\u00a7":{"d":"60,-211v14,67,124,50,124,128v0,28,-19,41,-39,50v38,32,10,91,-43,91v-41,0,-68,-22,-67,-64r23,0v-1,29,16,45,42,45v22,0,40,-9,40,-32v-13,-68,-124,-50,-124,-128v0,-28,19,-42,39,-51v-38,-32,-9,-90,43,-90v40,0,68,22,67,63r-23,0v0,-27,-15,-43,-42,-44v-24,-1,-38,10,-40,32xm131,-44v26,-5,42,-42,20,-64v-20,-22,-57,-36,-83,-53v-24,7,-40,41,-19,64v20,22,57,35,82,53"},"'":{"d":"39,-257r23,0r0,87r-23,0r0,-87","w":100},"\u201c":{"d":"23,-170v-1,-39,-1,-79,32,-87v3,23,-19,24,-17,49r15,0r0,38r-30,0xm78,-170v-1,-40,-1,-80,33,-87v4,24,-21,23,-17,49r15,0r0,38r-31,0","w":133},"\u00ab":{"d":"22,-88r0,-22r47,-45r0,24r-33,32r33,32r0,24xm80,-88r0,-22r47,-45r0,24r-33,32r33,32r0,24","w":153},"\u2039":{"d":"19,-88r0,-22r48,-45r0,24r-34,32r34,32r0,24","w":93},"\u203a":{"d":"26,-67r34,-32r-34,-32r0,-24r48,45r0,22r-48,45r0,-24","w":93},"\u2013":{"d":"0,-89r0,-20r180,0r0,20r-180,0","w":180},"\u2020":{"d":"17,-158r0,-19r72,0r0,-80r22,0r0,80r72,0r0,19r-72,0r0,212r-22,0r0,-212r-72,0"},"\u2021":{"d":"17,-17r0,-19r72,0r0,-131r-72,0r0,-19r72,0r0,-71r22,0r0,71r72,0r0,19r-72,0r0,131r72,0r0,19r-72,0r0,71r-22,0r0,-71r-72,0"},"\u00b7":{"d":"29,-114v0,-12,9,-21,21,-21v12,0,21,10,21,22v0,11,-10,20,-21,20v-12,0,-21,-9,-21,-21","w":100},"\u00b6":{"d":"24,-186v-4,-79,84,-73,163,-71r0,321r-23,0r0,-302r-43,0r0,302r-23,0r0,-182v-44,-1,-72,-27,-74,-68","w":216},"\u2022":{"d":"90,-64v-39,0,-64,-26,-64,-65v0,-38,26,-64,64,-64v39,0,64,25,64,64v0,39,-25,65,-64,65","w":180},"\u201a":{"d":"66,-38v1,39,1,79,-32,87v-3,-23,20,-23,17,-49r-15,0r0,-38r30,0","w":100},"\u201e":{"d":"55,-38v1,39,1,79,-32,87v-3,-23,20,-23,17,-49r-16,0r0,-38r31,0xm110,-38v1,39,1,79,-32,87v-3,-23,20,-23,17,-49r-15,0r0,-38r30,0","w":133},"\u201d":{"d":"55,-257v1,39,2,79,-32,87r0,-15v12,-4,16,-19,17,-34r-16,0r0,-38r31,0xm110,-257v1,39,2,79,-32,87r0,-15v12,-4,16,-19,17,-34r-15,0r0,-38r30,0","w":133},"\u00bb":{"d":"26,-67r34,-32r-34,-32r0,-24r48,45r0,22r-48,45r0,-24xm84,-67r34,-32r-34,-32r0,-24r48,45r0,22r-48,45r0,-24","w":153},"\u2026":{"d":"285,0r0,-38r30,0r0,38r-30,0xm165,0r0,-38r30,0r0,38r-30,0xm45,0r0,-38r30,0r0,38r-30,0","w":360},"\u2030":{"d":"112,-193v0,-25,-9,-45,-35,-45v-27,-1,-35,20,-35,45v0,24,9,45,35,44v26,0,35,-19,35,-44xm23,-193v0,-38,16,-61,54,-61v38,0,54,23,54,61v0,38,-17,61,-54,61v-37,0,-54,-24,-54,-61xm359,-55v0,-25,-8,-46,-35,-45v-26,0,-34,19,-34,45v0,26,9,44,34,44v27,1,35,-20,35,-44xm271,-55v0,-37,15,-61,53,-61v39,0,54,23,54,61v0,37,-15,60,-54,60v-38,0,-53,-23,-53,-60xm231,-55v0,-26,-8,-45,-34,-45v-27,-1,-35,20,-35,45v0,24,9,45,35,44v25,0,34,-18,34,-44xm143,-55v0,-38,15,-61,54,-61v39,0,54,23,54,61v0,37,-16,60,-54,60v-38,0,-54,-23,-54,-60xm210,-261r16,0r-162,273r-18,0","w":399},"\u00bf":{"d":"111,-148r-31,0r0,-38r31,0r0,38xm94,55v40,0,56,-27,58,-65r22,0v-1,54,-29,84,-81,84v-44,0,-73,-23,-74,-66v-1,-66,72,-60,65,-132r23,0v7,71,-65,72,-65,130v0,32,22,49,52,49","w":193},"`":{"d":"-11,-262r28,0r38,50r-19,0","w":66},"\u00b4":{"d":"30,-212r-18,0r38,-51r28,0","w":66},"\u02c6":{"d":"88,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":66},"\u02dc":{"d":"9,-254v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":66},"\u00af":{"d":"-26,-230r0,-16r119,0r0,16r-119,0","w":66},"\u02d8":{"d":"85,-261v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":66},"\u02d9":{"d":"21,-220r0,-36r25,0r0,36r-25,0","w":66},"\u00a8":{"d":"-11,-220r0,-36r25,0r0,36r-25,0xm53,-220r0,-36r24,0r0,36r-24,0","w":66},"\u02da":{"d":"33,-269v-13,0,-24,11,-24,24v0,13,11,25,24,25v14,0,25,-11,25,-25v0,-13,-12,-24,-25,-24xm33,-206v-23,0,-38,-16,-38,-39v0,-23,16,-38,38,-38v23,0,39,15,39,38v0,23,-16,39,-39,39","w":66},"\u00b8":{"d":"50,44v0,-24,-33,-5,-39,-17v11,-9,12,-29,34,-27r-15,19v20,-3,41,2,41,23v1,35,-47,36,-73,24r5,-12v15,4,47,12,47,-10","w":66},"\u02dd":{"d":"44,-212r37,-51r27,0r-45,51r-19,0xm-12,-212r36,-51r28,0r-46,51r-18,0","w":66},"\u02db":{"d":"17,44v2,-24,19,-32,37,-44r14,0v-13,13,-29,19,-29,42v-1,26,31,18,35,2r11,5v-7,32,-71,33,-68,-5","w":66},"\u02c7":{"d":"-22,-263r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":66},"\u2014":{"d":"47,-89r0,-20r266,0r0,20r-266,0","w":360},"\u00c6":{"d":"160,-102r0,-134r-14,0r-68,134r82,0xm185,-21r133,0r0,21r-158,0r0,-81r-93,0r-42,81r-28,0r135,-257r185,0r0,21r-132,0r0,93r124,0r0,21r-124,0r0,101","w":326},"\u00aa":{"d":"50,-240v-16,2,-31,8,-31,25r-16,0v1,-29,21,-36,50,-39v54,-5,47,49,46,98v-1,8,8,9,14,7v0,8,2,15,-10,13v-16,1,-15,-9,-18,-20v-15,34,-87,34,-87,-11v0,-40,48,-33,79,-41v15,-15,-6,-35,-27,-32xm40,-147v30,1,48,-19,41,-51v-16,14,-66,-1,-66,30v0,14,11,21,25,21","w":111},"\u0141":{"d":"26,-257r24,0r0,130r88,-61r0,21r-88,60r0,86r144,0r0,21r-168,0r0,-90r-30,20r0,-20r30,-20r0,-147","w":193},"\u00d8":{"d":"134,-262v37,-1,63,13,82,31r26,-28r9,8r-26,30v18,22,30,54,30,92v0,79,-41,131,-121,134v-38,1,-65,-13,-84,-32r-27,31r-10,-9r29,-31v-19,-22,-31,-55,-30,-93v2,-79,41,-131,122,-133xm134,-242v-94,0,-120,119,-76,188r143,-159v-15,-16,-36,-29,-67,-29xm134,-15v93,4,118,-119,75,-188r-143,159v15,18,36,29,68,29","w":266},"\u0152":{"d":"135,-262v30,0,55,9,70,26r0,-21r170,0r0,21r-146,0r0,93r133,0r0,21r-133,0r0,101r148,0r0,21r-172,0r0,-25v-16,17,-38,30,-70,30v-80,0,-122,-56,-122,-134v0,-77,42,-133,122,-133xm135,-15v36,0,70,-14,70,-49r-1,-133v-2,-34,-37,-45,-69,-45v-64,0,-97,47,-97,113v0,66,32,114,97,114","w":386},"\u00ba":{"d":"18,-193v0,27,14,46,42,46v27,0,42,-18,42,-46v0,-28,-15,-47,-42,-47v-28,0,-42,20,-42,47xm119,-193v0,38,-22,61,-61,61v-37,0,-57,-25,-57,-61v0,-37,20,-61,57,-61v39,0,61,23,61,61","w":120},"\u00e6":{"d":"19,-129v-6,-71,124,-85,138,-24v13,-46,106,-50,128,-6v9,19,18,44,18,72r-140,0v-2,43,17,74,61,73v32,0,49,-19,55,-46r22,0v-4,72,-131,90,-149,19v-8,31,-39,46,-78,46v-37,0,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38v-29,0,-50,14,-50,43r-23,0xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm280,-106v7,-70,-96,-89,-114,-25v-3,8,-3,16,-3,25r117,0","w":313},"\u0131":{"d":"22,0r0,-186r23,0r0,186r-23,0","w":66},"\u0142":{"d":"22,-257r23,0r0,96r24,-20r0,20r-24,20r0,141r-23,0r0,-122r-24,19r0,-19r24,-20r0,-115","w":66},"\u00f8":{"d":"100,-191v28,1,48,9,61,24v9,-7,17,-28,27,-13r-20,22v41,57,15,167,-68,163v-27,-1,-47,-9,-60,-24r-22,23r-8,-7r22,-24v-42,-57,-15,-168,68,-164xm100,-14v61,1,79,-78,53,-127r-99,106v9,11,26,21,46,21xm100,-172v-61,-1,-80,79,-52,128r98,-106v-9,-12,-25,-22,-46,-22"},"\u0153":{"d":"288,-106v9,-70,-95,-90,-112,-25v-2,8,-4,16,-4,25r116,0xm230,-14v34,0,50,-19,58,-46r22,0v-3,72,-132,90,-148,18v-10,27,-30,49,-67,47v-58,-1,-82,-40,-82,-98v0,-57,26,-96,83,-98v36,0,56,18,67,46v9,-50,101,-62,129,-20v13,18,19,44,19,78r-139,0v2,39,17,72,58,73xm150,-94v0,-43,-12,-78,-55,-78v-45,0,-59,37,-59,83v1,42,16,74,59,75v45,0,55,-37,55,-80","w":320},"\u00df":{"d":"94,-243v-36,-1,-48,18,-49,52r0,191r-23,0r0,-193v1,-46,26,-69,72,-69v41,0,70,21,70,63v0,30,-17,48,-41,55v35,4,53,28,54,66v0,57,-38,86,-98,80r0,-20v43,8,75,-13,75,-56v0,-47,-29,-59,-75,-58r0,-20v35,0,62,-10,62,-46v0,-29,-19,-44,-47,-45","w":193},"\u00f7":{"d":"108,2v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v1,10,-10,21,-20,20xm108,-143v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v1,10,-10,21,-20,20xm18,-81r0,-19r181,0r0,19r-181,0","w":216},"\u00be":{"d":"172,-50r59,0v-1,-25,2,-55,-1,-78xm231,-36r-75,0r0,-14r76,-102r16,0r0,102r25,0r0,14r-25,0r0,36r-17,0r0,-36xm225,-261r17,0r-162,273r-18,0xm101,-142v0,-25,-25,-32,-52,-30r0,-14v25,1,45,-4,46,-27v0,-19,-19,-26,-36,-27v-24,-1,-36,15,-36,37r-17,0v1,-30,20,-51,53,-51v53,0,72,62,25,73v18,4,34,16,34,38v0,50,-69,60,-101,34v-11,-9,-15,-22,-14,-39r17,0v0,24,15,39,39,39v22,0,42,-11,42,-33","w":300},"\u00bc":{"d":"172,-50r59,0v-1,-25,2,-55,-1,-78xm231,-36r-75,0r0,-14r76,-102r16,0r0,102r25,0r0,14r-25,0r0,36r-17,0r0,-36xm17,-224v25,0,44,-4,46,-27r15,0r0,152r-17,0r0,-111r-44,0r0,-14xm211,-261r17,0r-163,273r-17,0","w":300},"\u00b9":{"d":"13,-224v25,0,43,-5,46,-27r14,0r0,152r-17,0r0,-111r-43,0r0,-14","w":119},"\u00d7":{"d":"27,-158r13,-14r68,68r68,-68r13,14r-68,68r68,68r-13,13r-68,-68r-68,68r-13,-13r67,-68","w":216},"\u00ae":{"d":"186,-163v0,-33,-39,-27,-72,-27r0,54v31,-2,73,7,72,-27xm205,-163v0,27,-16,39,-39,43r46,69r-22,0r-43,-69r-33,0r0,69r-19,0r0,-155v50,1,110,-10,110,43xm257,-129v0,-69,-44,-114,-113,-114v-68,0,-113,44,-113,114v0,70,44,115,113,115v70,0,113,-46,113,-115xm10,-129v0,-81,53,-133,134,-133v82,0,134,52,134,133v0,82,-52,134,-134,134v-82,0,-134,-52,-134,-134","w":288},"\u00de":{"d":"192,-141v0,-67,-78,-52,-142,-53r0,105v63,-2,142,15,142,-52xm216,-141v0,83,-85,74,-166,73r0,68r-24,0r0,-257r24,0r0,42v81,-1,166,-10,166,74","w":226},"\u00a6":{"d":"31,-238r19,0r0,90r-19,0r0,-90xm31,-58r19,0r0,90r-19,0r0,-90","w":79},"\u00d0":{"d":"233,-129v0,83,-38,129,-118,129r-89,0r0,-125r-26,0r0,-16r26,0r0,-116r89,0v79,2,118,45,118,128xm208,-129v0,-95,-61,-114,-158,-107r0,95r85,0r0,16r-85,0r0,104v97,7,158,-12,158,-108","w":246},"\u00bd":{"d":"229,-141v-25,0,-36,17,-36,41r-17,0v0,-35,19,-53,54,-56v55,-4,68,63,27,89v-24,15,-55,24,-65,53r90,0r0,14r-109,0v2,-65,84,-54,93,-112v-2,-20,-15,-29,-37,-29xm17,-224v25,0,44,-4,46,-27r15,0r0,152r-17,0r0,-111r-44,0r0,-14xm211,-261r17,0r-163,273r-17,0","w":300},"\u2212":{"d":"199,-81r-181,0r0,-19r181,0r0,19","w":216},"\u00f0":{"d":"145,-168v-7,-21,-29,-41,-47,-56r-38,21r-11,-12r36,-20r-34,-20r13,-12r38,23r41,-23r11,11r-39,22v38,32,71,74,71,141v0,57,-27,98,-88,98v-58,0,-83,-37,-86,-95v-3,-72,74,-116,133,-78xm163,-90v0,-41,-19,-73,-64,-73v-45,1,-64,30,-64,74v0,43,19,74,64,75v46,0,64,-31,64,-76"},"\u00b1":{"d":"18,-19r181,0r0,19r-181,0r0,-19xm99,-181r19,0r0,65r81,0r0,19r-81,0r0,65r-19,0r0,-65r-81,0r0,-19r81,0r0,-65","w":216},"\u00fe":{"d":"109,5v-34,0,-53,-18,-65,-40r0,104r-22,0r0,-326r22,0r1,107v9,-26,32,-41,64,-41v57,0,84,41,84,98v0,57,-27,96,-84,98xm109,-14v43,0,61,-34,61,-79v0,-45,-18,-79,-61,-79v-46,0,-65,34,-65,79v0,45,19,79,65,79","w":206},"\u00a9":{"d":"69,-129v-8,-87,129,-115,145,-28r-19,0v-20,-65,-112,-39,-107,28v3,40,19,66,60,67v26,0,43,-16,47,-38r19,0v-5,34,-30,54,-67,54v-51,0,-73,-34,-78,-83xm144,-14v70,0,113,-46,113,-115v0,-69,-44,-114,-113,-114v-68,0,-113,44,-113,114v0,70,44,115,113,115xm144,-262v82,0,134,52,134,133v0,82,-52,134,-134,134v-82,0,-134,-52,-134,-134v0,-81,53,-133,134,-133","w":288},"\u00ac":{"d":"180,-117r-162,0r0,-19r181,0r0,96r-19,0r0,-77","w":216},"\u00b2":{"d":"61,-240v-24,0,-36,16,-35,41r-17,0v-1,-36,18,-56,54,-55v29,0,53,15,52,45v-3,58,-74,51,-90,96r89,0r0,14r-109,0v2,-65,85,-53,93,-112v-1,-20,-16,-28,-37,-29","w":119},"\u00b3":{"d":"101,-142v0,-25,-25,-32,-52,-30r0,-14v25,1,45,-4,46,-27v0,-19,-19,-26,-36,-27v-24,-1,-36,15,-36,37r-17,0v1,-30,20,-51,53,-51v53,0,72,62,25,73v18,4,34,16,34,38v0,50,-69,60,-101,34v-11,-9,-15,-22,-14,-39r17,0v0,24,15,39,39,39v22,0,42,-11,42,-33","w":119},"\u2122":{"d":"171,-109r0,-148r31,0r48,120r46,-120r31,0r0,148r-19,0r-1,-131r-52,131r-11,0r-54,-131r0,131r-19,0xm78,-109r0,-132r-48,0r0,-16r115,0r0,16r-48,0r0,132r-19,0","w":356},"\u00b0":{"d":"72,-240v-23,0,-38,15,-38,38v0,22,14,37,38,37v24,0,38,-15,38,-37v0,-23,-15,-38,-38,-38xm72,-150v-31,0,-52,-21,-52,-52v0,-31,21,-52,52,-52v31,0,52,21,52,52v0,31,-21,52,-52,52","w":144},"\u00b5":{"d":"151,-33v-15,33,-72,51,-107,26r0,76r-23,0r0,-255r23,0v7,67,-27,175,50,172v73,-3,52,-100,55,-172r23,0r0,186r-21,0r0,-33","w":193},"$":{"d":"190,-67v0,48,-35,70,-83,72r0,31r-14,0r0,-31v-55,-6,-81,-30,-83,-87r23,0v1,42,22,63,60,68r0,-106v-40,-9,-78,-22,-76,-72v1,-45,29,-70,76,-70r0,-29r14,0r0,29v47,1,74,31,76,78r-23,0v1,-33,-21,-59,-53,-59r0,103v42,9,83,22,83,73xm93,-243v-57,-9,-74,83,-20,95v6,2,13,3,20,5r0,-100xm107,-14v64,9,82,-84,21,-97r-21,-6r0,103"},"\u20ac":{"d":"30,-156v10,-57,43,-100,104,-100v30,0,52,9,67,27r-10,22v-27,-36,-83,-39,-112,-5v-12,14,-21,33,-25,56r120,0r-6,16r-116,0r-1,21r110,0r-7,16r-101,0v5,49,30,88,79,88v32,0,43,-12,63,-31r0,28v-68,56,-166,2,-166,-85r-24,0r7,-16r16,0r0,-21r-23,0r7,-16r18,0"},"\u00a4":{"d":"100,-193v-40,0,-66,27,-66,68v0,42,25,69,66,69v41,0,67,-27,67,-69v0,-42,-26,-68,-67,-68xm156,-55v-25,26,-86,24,-112,0r-20,20r-14,-14r21,-20v-26,-25,-26,-86,0,-111r-21,-20r14,-14r20,20v26,-24,87,-27,112,0r19,-20r14,14r-19,19v25,27,25,86,0,113r19,19r-14,14"},"\u2260":{"d":"95,-41r-28,53r-22,-12r21,-41r-51,0r0,-26r65,0r24,-46r-89,0r0,-25r102,0r28,-54r22,12r-22,42r53,0r0,25r-66,0r-24,46r90,0r0,26r-103,0","w":213},"\u221e":{"d":"39,-91v0,43,55,33,71,11v4,-3,8,-7,11,-10v-14,-15,-30,-31,-54,-33v-17,-2,-28,15,-28,32xm164,-80v17,22,71,31,71,-11v0,-43,-57,-35,-72,-10r-11,11xm151,-120v28,-41,107,-35,107,28v0,35,-20,57,-53,57v-32,0,-51,-21,-68,-40v-19,16,-34,39,-69,39v-34,0,-53,-22,-53,-55v0,-33,19,-56,52,-56v34,0,51,24,70,41","w":273},"\u2264":{"d":"15,11r0,-26r183,0r0,26r-183,0xm15,-96r0,-27r183,-67r0,28r-147,53r147,52r0,27","w":213},"\u2265":{"d":"15,11r0,-26r183,0r0,26r-183,0xm15,-30r0,-27r147,-52r-147,-53r0,-28r183,67r0,27","w":213},"\u2202":{"d":"39,-76v-6,58,68,79,89,29v6,-15,12,-35,12,-54v-11,-14,-29,-30,-53,-30v-33,0,-45,24,-48,55xm78,-260v69,0,91,61,91,130v0,70,-14,134,-84,134v-48,0,-69,-34,-73,-81v-6,-75,92,-100,129,-49v4,-55,-9,-111,-61,-111v-18,0,-29,8,-41,17r-16,-18v15,-12,31,-22,55,-22","w":183},"\u2211":{"d":"9,77r0,-23r116,-158r-111,-156r0,-23r194,0r0,26r-158,0r109,153r-115,155r168,0r0,26r-203,0","w":221},"\u220f":{"d":"206,77r0,-334r-153,0r0,334r-29,0r0,-360r210,0r0,360r-28,0","w":258},"\u03c0":{"d":"197,-4v-27,15,-64,2,-56,-37r0,-107r-88,0r0,148r-27,0r0,-148r-25,0r0,-24r194,0r0,24r-27,0r0,108v-3,19,14,23,29,16r0,20","w":205},"\u222b":{"d":"123,-283v25,-2,40,31,13,34v-12,1,-12,-14,-20,-16v-17,7,-11,41,-11,65r0,213v5,43,-33,83,-67,53v-8,-8,1,-21,11,-21v11,0,10,13,18,15v15,-8,10,-41,10,-62r0,-220v2,-33,11,-58,46,-61","w":199},"\u2126":{"d":"248,-149v0,52,-27,86,-69,99r0,26r69,0r0,24r-92,0r0,-66v39,-6,63,-38,63,-82v0,-52,-35,-86,-87,-86v-51,0,-86,33,-86,86v0,46,23,74,63,82r0,66r-92,0r0,-24r69,0r0,-26v-41,-13,-69,-46,-69,-99v0,-69,48,-111,115,-111v69,0,116,42,116,111","w":269},"\u221a":{"d":"109,77r-27,0r-58,-120r-17,8r-10,-22r40,-19r54,115r67,-322r27,0","w":181},"\u2248":{"d":"202,-84v0,51,-55,63,-98,39v-26,-14,-70,-22,-74,15r-18,0v4,-28,15,-52,46,-53v43,0,108,55,126,-1r18,0xm202,-149v1,52,-55,61,-98,39v-26,-13,-71,-21,-74,15r-18,0v0,-51,54,-63,97,-40v24,13,72,25,75,-14r18,0","w":213},"\u2206":{"d":"120,-226r-77,200r155,0xm5,0r100,-256r30,0r103,256r-233,0","w":242},"\u25ca":{"d":"107,-242r-48,114r48,113r47,-113xm120,13r-26,0r-62,-141r62,-141r26,0r61,141","w":213},"\u00ad":{"d":"22,-89r0,-20r90,0r0,20r-90,0","w":133},"\u00c0":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm63,-330r28,0r38,50r-19,0","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u00c1":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm119,-280r-18,0r38,-51r28,0","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u00c2":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm168,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u00c3":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm90,-322v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u00c4":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm70,-288r0,-36r25,0r0,36r-25,0xm134,-288r0,-36r24,0r0,36r-24,0","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u0100":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm54,-298r0,-16r119,0r0,16r-119,0","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u0102":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm166,-329v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u00c5":{"d":"62,-101r101,0r-49,-132xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm114,-334v-13,0,-24,11,-24,24v0,13,11,25,24,25v14,0,25,-11,25,-25v0,-13,-12,-24,-25,-24xm114,-271v-23,0,-38,-16,-38,-39v0,-23,16,-38,38,-38v23,0,39,15,39,38v0,23,-16,39,-39,39","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u0104":{"d":"165,44v2,-23,19,-31,38,-44r-31,-80r-117,0r-31,80r-27,0r104,-257r28,0r100,257v-27,2,-37,21,-42,42v-1,24,33,19,36,2r10,5v-7,33,-71,32,-68,-5xm62,-101r101,0r-49,-132","w":226,"k":{"\u021a":24,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":2,"\u0162":24,"\u0164":24,"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24,"\u2019":31}},"\u0106":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,49,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,103,-107,103v-80,0,-114,-54,-121,-134xm142,-280r-18,0r38,-51r28,0","w":253},"\u0108":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,49,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,103,-107,103v-80,0,-114,-54,-121,-134xm188,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":253},"\u010c":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,49,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,103,-107,103v-80,0,-114,-54,-121,-134xm79,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":253},"\u010a":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,49,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,103,-107,103v-80,0,-114,-54,-121,-134xm121,-288r0,-36r25,0r0,36r-25,0","w":253},"\u00c7":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,49,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,101,-107,103r-12,14v20,-3,42,2,42,23v0,34,-47,36,-74,24r5,-12v15,4,47,12,48,-10v1,-24,-34,-5,-40,-17r18,-22v-71,-8,-101,-58,-108,-134","w":253},"\u010e":{"d":"233,-129v0,83,-38,129,-118,129r-89,0r0,-257r89,0v79,2,118,45,118,128xm208,-129v0,-95,-61,-114,-158,-107r0,215v97,7,158,-12,158,-108xm56,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":246},"\u00c8":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm66,-330r28,0r38,50r-19,0","w":213},"\u00c9":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm119,-280r-18,0r38,-51r28,0","w":213},"\u00ca":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm169,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":213},"\u011a":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm59,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":213},"\u00cb":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm70,-288r0,-36r25,0r0,36r-25,0xm134,-288r0,-36r24,0r0,36r-24,0","w":213},"\u0112":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm56,-298r0,-16r119,0r0,16r-119,0","w":213},"\u0114":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm166,-329v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":213},"\u0116":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm102,-288r0,-36r25,0r0,36r-25,0","w":213},"\u0118":{"d":"137,44v2,-23,19,-31,38,-44r-149,0r0,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21v-30,0,-43,19,-46,42v-3,24,33,19,36,2r10,5v-7,33,-71,32,-68,-5","w":213},"\u011c":{"d":"38,-129v-12,111,143,157,181,57v4,-12,5,-24,5,-38r-88,0r0,-21r110,0r0,131r-18,0v-2,-15,0,-34,-4,-47v-15,32,-44,52,-89,52v-80,0,-113,-54,-121,-134v-14,-141,201,-186,228,-48r-24,0v-8,-38,-37,-65,-83,-65v-66,0,-90,49,-97,113xm188,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":266},"\u011e":{"d":"38,-129v-12,111,143,157,181,57v4,-12,5,-24,5,-38r-88,0r0,-21r110,0r0,131r-18,0v-2,-15,0,-34,-4,-47v-15,32,-44,52,-89,52v-80,0,-113,-54,-121,-134v-14,-141,201,-186,228,-48r-24,0v-8,-38,-37,-65,-83,-65v-66,0,-90,49,-97,113xm187,-329v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":266},"\u0120":{"d":"38,-129v-12,111,143,157,181,57v4,-12,5,-24,5,-38r-88,0r0,-21r110,0r0,131r-18,0v-2,-15,0,-34,-4,-47v-15,32,-44,52,-89,52v-80,0,-113,-54,-121,-134v-14,-141,201,-186,228,-48r-24,0v-8,-38,-37,-65,-83,-65v-66,0,-90,49,-97,113xm123,-288r0,-36r25,0r0,36r-25,0","w":266},"\u0122":{"d":"150,18v2,29,2,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm38,-129v-12,111,143,157,181,57v4,-12,5,-24,5,-38r-88,0r0,-21r110,0r0,131r-18,0v-2,-15,0,-34,-4,-47v-15,32,-44,52,-89,52v-80,0,-113,-54,-121,-134v-14,-141,201,-186,228,-48r-24,0v-8,-38,-37,-65,-83,-65v-66,0,-90,49,-97,113","w":266},"\u0124":{"d":"26,-257r24,0r0,112r153,0r0,-112r25,0r0,257r-25,0r0,-125r-153,0r0,125r-24,0r0,-257xm181,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":253},"\u0126":{"d":"26,-257r24,0r0,71r153,0r0,-71r25,0r0,257r-25,0r0,-121r-153,0r0,121r-24,0r0,-257xm50,-170r0,28r153,0r0,-28r-153,0","w":253},"\u00cc":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm-13,-330r28,0r38,50r-19,0","w":79},"\u00cd":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm46,-280r-18,0r38,-51r28,0","w":79},"\u00ce":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm94,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":79},"\u0128":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm16,-322v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":79},"\u00cf":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm-4,-288r0,-36r25,0r0,36r-25,0xm60,-288r0,-36r24,0r0,36r-24,0","w":79},"\u012a":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm-19,-298r0,-16r119,0r0,16r-119,0","w":79},"\u0130":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm27,-288r0,-36r25,0r0,36r-25,0","w":79},"\u012e":{"d":"6,44v1,-24,17,-32,34,-44r-12,0r0,-257r24,0r0,257v-12,13,-26,19,-26,42v0,25,29,18,32,2r9,5v-7,16,-13,23,-32,24v-19,1,-30,-11,-29,-29","w":79},"\u0134":{"d":"32,-82v-1,35,9,67,49,67v41,0,48,-27,49,-67r0,-175r24,0r0,185v14,79,-95,102,-133,50v-11,-14,-14,-35,-13,-60r24,0xm194,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":180},"\u0136":{"d":"136,18v2,29,0,56,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm26,-257r24,0r0,138r150,-138r33,0r-115,106r120,151r-31,0r-107,-134r-50,46r0,88r-24,0r0,-257","w":233},"\u0139":{"d":"26,-257r24,0r0,236r144,0r0,21r-168,0r0,-257xm47,-280r-18,0r38,-51r28,0","w":193,"k":{"\u021a":33,"\u00ff":13,"\u0177":13,"\u00fd":13,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33,"\u2019":35}},"\u013d":{"d":"105,-206r-17,0r20,-51r28,0xm26,-257r24,0r0,236r144,0r0,21r-168,0r0,-257","w":193,"k":{"\u021a":33,"\u00ff":13,"\u0177":13,"\u00fd":13,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33,"\u2019":35}},"\u013b":{"d":"121,18v2,29,1,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm26,-257r24,0r0,236r144,0r0,21r-168,0r0,-257","w":193,"k":{"\u021a":33,"\u00ff":13,"\u0177":13,"\u00fd":13,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33,"\u2019":35}},"\u0143":{"d":"26,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0r0,-257xm131,-280r-18,0r38,-51r28,0","w":253},"\u0147":{"d":"26,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0r0,-257xm71,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":253},"\u00d1":{"d":"26,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0r0,-257xm105,-322v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":253},"\u0145":{"d":"140,18v2,29,2,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm26,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0r0,-257","w":253},"\u00d2":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm86,-330r28,0r38,50r-19,0","w":266},"\u00d3":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm142,-280r-18,0r38,-51r28,0","w":266},"\u00d4":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm188,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":266},"\u00d5":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm110,-322v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":266},"\u00d6":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm88,-288r0,-36r25,0r0,36r-25,0xm152,-288r0,-36r24,0r0,36r-24,0","w":266},"\u014c":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm75,-298r0,-16r119,0r0,16r-119,0","w":266},"\u014e":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm186,-329v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":266},"\u0150":{"d":"134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm151,-280r37,-51r27,0r-45,51r-19,0xm95,-280r36,-51r28,0r-46,51r-18,0","w":266},"\u0154":{"d":"197,-185v0,-67,-84,-49,-147,-51r0,101v63,-2,147,16,147,-50xm202,0v-16,-43,4,-114,-59,-114r-93,0r0,114r-24,0r0,-257v85,3,196,-21,196,67v0,35,-21,59,-50,66v59,1,34,85,57,124r-27,0xm121,-280r-18,0r38,-51r28,0","w":240,"k":{"\u021a":-2,"\u00ff":-9,"\u0177":-9,"\u00fd":-9,"\u0178":5,"\u0176":5,"\u00dd":5,"\u0174":-2,"\u0162":-2,"\u0164":-2,"y":-9,"Y":5,"W":-2,"V":-2,"T":-2}},"\u0158":{"d":"197,-185v0,-67,-84,-49,-147,-51r0,101v63,-2,147,16,147,-50xm202,0v-16,-43,4,-114,-59,-114r-93,0r0,114r-24,0r0,-257v85,3,196,-21,196,67v0,35,-21,59,-50,66v59,1,34,85,57,124r-27,0xm58,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":240,"k":{"\u021a":-2,"\u00ff":-9,"\u0177":-9,"\u00fd":-9,"\u0178":5,"\u0176":5,"\u00dd":5,"\u0174":-2,"\u0162":-2,"\u0164":-2,"y":-9,"Y":5,"W":-2,"V":-2,"T":-2}},"\u0156":{"d":"137,18v2,29,1,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm197,-185v0,-67,-84,-49,-147,-51r0,101v63,-2,147,16,147,-50xm202,0v-16,-43,4,-114,-59,-114r-93,0r0,114r-24,0r0,-257v85,3,196,-21,196,67v0,35,-21,59,-50,66v59,1,34,85,57,124r-27,0","w":240,"k":{"\u021a":-2,"\u00ff":-9,"\u0177":-9,"\u00fd":-9,"\u0178":5,"\u0176":5,"\u00dd":5,"\u0174":-2,"\u0162":-2,"\u0164":-2,"y":-9,"Y":5,"W":-2,"V":-2,"T":-2}},"\u015a":{"d":"173,-127v78,34,32,142,-57,132v-62,-7,-106,-25,-103,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,77,-25,91v30,6,62,13,88,24xm118,-280r-18,0r38,-51r28,0","w":226},"\u015c":{"d":"173,-127v78,34,32,142,-57,132v-62,-7,-106,-25,-103,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,77,-25,91v30,6,62,13,88,24xm168,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":226},"\u0160":{"d":"173,-127v78,34,32,142,-57,132v-62,-7,-106,-25,-103,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,77,-25,91v30,6,62,13,88,24xm60,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":226},"\u015e":{"d":"126,44v1,-24,-34,-5,-40,-17r18,-22v-56,-4,-94,-29,-91,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,75,-25,91v55,13,129,14,129,83v0,52,-40,73,-97,73r-12,14v20,-3,42,2,42,23v0,34,-47,36,-74,24r5,-12v15,4,47,12,48,-10","w":226},"\u0218":{"d":"130,18v2,29,1,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm173,-127v78,34,32,142,-57,132v-62,-7,-106,-25,-103,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,77,-25,91v30,6,62,13,88,24","w":226},"\u0164":{"d":"-2,-257r204,0r0,21r-90,0r0,236r-24,0r0,-236r-90,0r0,-21xm47,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","k":{"\u0133":-9,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0173":33,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u012f":-9,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":40,"\u00e5":40,"\u0103":40,"\u0101":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"\u0104":24,"\u00c5":24,"\u0102":24,"\u0100":24,"\u00c4":24,"\u00c3":24,"\u00c2":24,"\u00c1":24,"\u00c0":24,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"i":-9,"e":40,"c":40,"a":40,"A":24,";":40,":":40,".":40,"-":46,",":40}},"\u0162":{"d":"116,18v2,29,0,56,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm-2,-257r204,0r0,21r-90,0r0,236r-24,0r0,-236r-90,0r0,-21","k":{"\u0133":-9,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0173":33,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u012f":-9,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":40,"\u00e5":40,"\u0103":40,"\u0101":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"\u0104":24,"\u00c5":24,"\u0102":24,"\u0100":24,"\u00c4":24,"\u00c3":24,"\u00c2":24,"\u00c1":24,"\u00c0":24,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"i":-9,"e":40,"c":40,"a":40,"A":24,";":40,":":40,".":40,"-":46,",":40}},"\u0166":{"d":"-2,-257r204,0r0,21r-90,0r0,61r60,0r0,16r-60,0r0,159r-24,0r0,-159r-59,0r0,-16r59,0r0,-61r-90,0r0,-21"},"\u00d9":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm77,-330r28,0r38,50r-19,0","w":246},"\u00da":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm131,-280r-18,0r38,-51r28,0","w":246},"\u00db":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm177,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":246},"\u0168":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm99,-322v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":246},"\u00dc":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm79,-288r0,-36r25,0r0,36r-25,0xm143,-288r0,-36r24,0r0,36r-24,0","w":246},"\u016a":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm63,-298r0,-16r119,0r0,16r-119,0","w":246},"\u016c":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm174,-329v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":246},"\u016e":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm122,-334v-13,0,-24,11,-24,24v0,13,11,25,24,25v14,0,25,-11,25,-25v0,-13,-12,-24,-25,-24xm122,-271v-23,0,-38,-16,-38,-39v0,-23,16,-38,38,-38v23,0,39,15,39,38v0,23,-16,39,-39,39","w":246},"\u0170":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm139,-280r37,-51r27,0r-45,51r-19,0xm83,-280r36,-51r28,0r-46,51r-18,0","w":246},"\u0172":{"d":"118,5v-61,-2,-95,-38,-95,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0v-7,108,36,255,-89,262v-11,11,-22,18,-23,37v-1,24,33,19,36,2r10,5v-7,32,-70,33,-68,-5v2,-20,15,-28,29,-39","w":246},"\u0174":{"d":"0,-257r26,0r59,225r63,-225r31,0r63,225r59,-225r24,0r-70,257r-26,0r-66,-230r-65,230r-27,0xm217,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":326,"k":{"\u0133":-9,"\u0173":6,"\u0171":6,"\u016f":6,"\u016d":6,"\u016b":6,"\u00fc":6,"\u0169":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u0159":6,"\u0157":6,"\u0155":6,"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u012f":-9,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u0105":13,"\u00e5":13,"\u0103":13,"\u0101":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u0104":6,"\u00c5":6,"\u0102":6,"\u0100":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"u":6,"r":6,"o":6,"i":-9,"e":6,"a":13,"A":6,";":6,":":6,".":27,",":27}},"\u00dd":{"d":"98,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0r0,-106xm118,-280r-18,0r38,-51r28,0","w":219,"k":{"\u0133":3,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u00fc":27,"\u0169":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":27,"q":33,"p":27,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":36,"-":40,",":44}},"\u0176":{"d":"98,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0r0,-106xm165,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":219,"k":{"\u0133":3,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u00fc":27,"\u0169":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":27,"q":33,"p":27,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":36,"-":40,",":44}},"\u0178":{"d":"98,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0r0,-106xm66,-288r0,-36r25,0r0,36r-25,0xm130,-288r0,-36r24,0r0,36r-24,0","w":219,"k":{"\u0133":3,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u00fc":27,"\u0169":27,"\u00fb":27,"\u00fa":27,"\u00f9":27,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":27,"q":33,"p":27,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":36,"-":40,",":44}},"\u0179":{"d":"13,-257r185,0r0,22r-169,214r173,0r0,21r-200,0r0,-22r169,-214r-158,0r0,-21xm110,-280r-18,0r38,-51r28,0","w":206},"\u017d":{"d":"13,-257r185,0r0,22r-169,214r173,0r0,21r-200,0r0,-22r169,-214r-158,0r0,-21xm49,-331r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":206},"\u017b":{"d":"13,-257r185,0r0,22r-169,214r173,0r0,21r-200,0r0,-22r169,-214r-158,0r0,-21xm93,-288r0,-36r25,0r0,36r-25,0","w":206},"\u00e0":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm46,-262r28,0r38,50r-19,0","w":186},"\u00e1":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm100,-212r-18,0r38,-51r28,0","w":186},"\u00e2":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm147,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":186},"\u00e3":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm69,-254v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":186},"\u00e4":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm49,-220r0,-36r25,0r0,36r-25,0xm113,-220r0,-36r24,0r0,36r-24,0","w":186},"\u0101":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm36,-230r0,-16r119,0r0,16r-119,0","w":186},"\u0103":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm146,-261v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":186},"\u00e5":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-269v-13,0,-24,11,-24,24v0,13,11,25,24,25v14,0,25,-11,25,-25v0,-13,-12,-24,-25,-24xm92,-206v-23,0,-38,-16,-38,-39v0,-23,16,-38,38,-38v23,0,39,15,39,38v0,23,-16,39,-39,39","w":186},"\u0105":{"d":"92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v1,13,2,25,-17,21v-14,12,-28,20,-29,42v-1,24,33,19,36,2r10,5v-7,32,-70,33,-68,-5v2,-25,23,-33,39,-46v-11,-4,-12,-18,-14,-30v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88","w":186},"\u0107":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-33,72,-77,72v-58,0,-85,-41,-88,-98xm107,-212r-18,0r38,-51r28,0","w":186},"\u0109":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-33,72,-77,72v-58,0,-85,-41,-88,-98xm154,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":186},"\u010d":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-33,72,-77,72v-58,0,-85,-41,-88,-98xm46,-263r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":186},"\u010b":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-33,72,-77,72v-58,0,-85,-41,-88,-98xm87,-220r0,-36r25,0r0,36r-25,0","w":186},"\u00e7":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-32,71,-75,72r-12,14v21,-3,42,2,42,23v1,35,-47,36,-73,24r5,-12v14,5,45,11,47,-10v2,-17,-23,-16,-34,-11v-11,-9,9,-19,13,-28v-50,-7,-75,-43,-78,-98","w":186},"\u010f":{"d":"220,-206r-17,0r20,-51r28,0xm97,-191v33,0,55,16,65,41r0,-107r23,0r0,257r-21,0v-1,-11,2,-26,-1,-35v-11,23,-32,40,-66,40v-57,-1,-83,-41,-83,-98v0,-57,26,-98,83,-98xm97,-172v-44,0,-61,36,-61,79v0,43,17,79,61,79v46,0,65,-33,65,-79v0,-46,-19,-79,-65,-79","w":232},"\u0111":{"d":"97,-191v33,0,55,16,65,41r0,-60r-62,0r0,-16r62,0r0,-31r23,0r0,31r30,0r0,16r-30,0r0,210r-21,0v-1,-11,2,-26,-1,-35v-11,23,-32,40,-66,40v-57,-1,-83,-41,-83,-98v0,-57,26,-98,83,-98xm97,-172v-44,0,-61,36,-61,79v0,43,17,79,61,79v46,0,65,-33,65,-79v0,-46,-19,-79,-65,-79","w":215},"\u00e8":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm48,-262r28,0r38,50r-19,0","w":186},"\u00e9":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm102,-212r-18,0r38,-51r28,0","w":186},"\u00ea":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm150,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":186},"\u011b":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm43,-263r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":186},"\u00eb":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm52,-220r0,-36r25,0r0,36r-25,0xm116,-220r0,-36r24,0r0,36r-24,0","w":186},"\u0113":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm37,-230r0,-16r119,0r0,16r-119,0","w":186},"\u0115":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm149,-261v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":186},"\u0117":{"d":"155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm83,-220r0,-36r25,0r0,36r-25,0","w":186},"\u0119":{"d":"12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-10,37,-28,61,-69,66v-11,10,-22,18,-23,37v-1,24,33,19,36,2r10,5v-7,32,-70,33,-68,-5v2,-20,15,-28,29,-39v-55,-3,-74,-42,-80,-98xm155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0","w":186},"\u011d":{"d":"96,-191v29,-1,49,20,60,37r0,-32r23,0v-6,116,38,289,-110,257v-27,-6,-47,-23,-50,-53r23,0v5,25,25,36,54,37v52,2,65,-42,59,-95v-9,22,-31,38,-59,38v-58,0,-84,-39,-84,-96v0,-54,28,-92,84,-93xm35,-95v0,41,19,74,61,74v41,0,60,-33,60,-74v0,-42,-17,-77,-60,-77v-43,0,-61,33,-61,77xm158,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0"},"\u011f":{"d":"96,-191v29,-1,49,20,60,37r0,-32r23,0v-6,116,38,289,-110,257v-27,-6,-47,-23,-50,-53r23,0v5,25,25,36,54,37v52,2,65,-42,59,-95v-9,22,-31,38,-59,38v-58,0,-84,-39,-84,-96v0,-54,28,-92,84,-93xm35,-95v0,41,19,74,61,74v41,0,60,-33,60,-74v0,-42,-17,-77,-60,-77v-43,0,-61,33,-61,77xm148,-261v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0"},"\u0121":{"d":"96,-191v29,-1,49,20,60,37r0,-32r23,0v-6,116,38,289,-110,257v-27,-6,-47,-23,-50,-53r23,0v5,25,25,36,54,37v52,2,65,-42,59,-95v-9,22,-31,38,-59,38v-58,0,-84,-39,-84,-96v0,-54,28,-92,84,-93xm35,-95v0,41,19,74,61,74v41,0,60,-33,60,-74v0,-42,-17,-77,-60,-77v-43,0,-61,33,-61,77xm87,-220r0,-36r25,0r0,36r-25,0"},"\u0123":{"d":"85,-224v-2,-29,-2,-57,31,-55r0,10v-9,1,-12,5,-14,12r14,0r0,33r-31,0xm96,-191v29,-1,49,20,60,37r0,-32r23,0v-6,116,38,289,-110,257v-27,-6,-47,-23,-50,-53r23,0v5,25,25,36,54,37v52,2,65,-42,59,-95v-9,22,-31,38,-59,38v-58,0,-84,-39,-84,-96v0,-54,28,-92,84,-93xm35,-95v0,41,19,74,61,74v41,0,60,-33,60,-74v0,-42,-17,-77,-60,-77v-43,0,-61,33,-61,77"},"\u0125":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-257r23,0r1,103v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172xm149,-280r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":193},"\u0127":{"d":"111,-172v-77,-1,-57,98,-59,172r-22,0r0,-210r-30,0r0,-16r30,0r0,-31r22,0r0,31r55,0r0,16r-55,0v1,18,-2,40,1,56v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-22,0v-7,-66,26,-172,-47,-172","w":201},"\u00ec":{"d":"22,0r0,-186r23,0r0,186r-23,0xm-20,-262r28,0r38,50r-19,0","w":66},"\u00ed":{"d":"22,0r0,-186r23,0r0,186r-23,0xm39,-212r-18,0r38,-51r28,0","w":66},"\u00ee":{"d":"22,0r0,-186r23,0r0,186r-23,0xm88,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":66},"\u0129":{"d":"22,0r0,-186r23,0r0,186r-23,0xm9,-254v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":66},"\u00ef":{"d":"22,0r0,-186r23,0r0,186r-23,0xm-11,-220r0,-36r25,0r0,36r-25,0xm53,-220r0,-36r24,0r0,36r-24,0","w":66},"\u012b":{"d":"22,0r0,-186r23,0r0,186r-23,0xm-26,-230r0,-16r119,0r0,16r-119,0","w":66},"\u012f":{"d":"-2,44v2,-23,18,-31,34,-44r-10,0r0,-186r23,0r0,186v-13,12,-26,21,-27,42v-1,25,29,18,32,2r9,5v-6,33,-64,31,-61,-5xm22,-257r23,0r0,36r-23,0r0,-36","w":66},"\u0135":{"d":"-11,49v22,5,33,-5,33,-26r0,-209r23,0r0,203v1,36,-16,58,-56,51r0,-19xm87,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":66},"\u0137":{"d":"111,18v2,29,0,56,-31,55v-3,-15,12,-10,14,-22r-14,0r0,-33r31,0xm22,-257r22,0r0,161r103,-90r30,0r-79,69r85,117r-29,0r-73,-101r-37,30r0,71r-22,0r0,-257","w":180},"\u013a":{"d":"22,-257r23,0r0,257r-23,0r0,-257xm40,-280r-18,0r38,-51r28,0","w":66},"\u013e":{"d":"80,-206r-17,0r19,-51r29,0xm22,-257r23,0r0,257r-23,0r0,-257","w":91},"\u013c":{"d":"49,18v2,29,2,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm22,-257r23,0r0,257r-23,0r0,-257","w":66},"\u0144":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172xm103,-212r-18,0r38,-51r28,0","w":193},"\u0148":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172xm42,-263r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":193},"\u00f1":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172xm72,-254v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":193},"\u0146":{"d":"114,18v2,29,2,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm102,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172","w":193},"\u00f2":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm53,-262r28,0r38,50r-19,0"},"\u00f3":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm107,-212r-18,0r38,-51r28,0"},"\u00f4":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm154,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0"},"\u00f5":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm77,-254v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34"},"\u00f6":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm56,-220r0,-36r25,0r0,36r-25,0xm120,-220r0,-36r24,0r0,36r-24,0"},"\u014d":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm42,-230r0,-16r119,0r0,16r-119,0"},"\u014f":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm153,-261v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0"},"\u0151":{"d":"165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm117,-212r37,-51r27,0r-45,51r-19,0xm61,-212r36,-51r28,0r-46,51r-18,0"},"\u0155":{"d":"113,-166v-42,2,-69,25,-69,67r0,99r-22,0r0,-186r20,0v1,14,-2,32,1,44v11,-28,33,-48,70,-46r0,22xm42,-212r-18,0r38,-51r28,0","w":113,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"\u0157":{"d":"49,18v2,29,2,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm113,-166v-42,2,-69,25,-69,67r0,99r-22,0r0,-186r20,0v1,14,-2,32,1,44v11,-28,33,-48,70,-46r0,22","w":113,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"\u0159":{"d":"113,-166v-42,2,-69,25,-69,67r0,99r-22,0r0,-186r20,0v1,14,-2,32,1,44v11,-28,33,-48,70,-46r0,22xm13,-263r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":113,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"\u015b":{"d":"49,-96v-59,-27,-23,-95,38,-95v42,0,65,21,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,119,11,122,90v2,59,-88,68,-128,40v-14,-10,-21,-27,-23,-50r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47xm94,-212r-18,0r38,-51r28,0","w":173},"\u015d":{"d":"49,-96v-59,-27,-23,-95,38,-95v42,0,65,21,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,119,11,122,90v2,59,-88,68,-128,40v-14,-10,-21,-27,-23,-50r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47xm142,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":173},"\u0161":{"d":"49,-96v-59,-27,-23,-95,38,-95v42,0,65,21,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,119,11,122,90v2,59,-88,68,-128,40v-14,-10,-21,-27,-23,-50r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47xm35,-263r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":173},"\u015f":{"d":"49,-96v-59,-27,-23,-95,38,-95v42,0,65,21,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,122,11,122,90v0,39,-33,53,-71,55r-12,14v20,-3,42,2,42,23v0,34,-47,36,-73,24r5,-12v14,5,46,11,47,-10v1,-24,-34,-5,-40,-17r18,-22v-40,-3,-64,-24,-67,-65r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47","w":173},"\u0219":{"d":"103,18v2,29,0,56,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm49,-96v-59,-27,-23,-95,38,-95v42,0,65,21,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,119,11,122,90v2,59,-88,68,-128,40v-14,-10,-21,-27,-23,-50r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47","w":173},"\u0165":{"d":"107,-206r-17,0r20,-51r28,0xm95,1v-37,4,-60,-1,-60,-41r0,-127r-32,0r0,-19r32,0r0,-56r23,0r0,56r37,0r0,19r-37,0r0,126v-3,23,15,27,37,23r0,19","w":119},"\u0163":{"d":"80,18v2,29,1,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm95,1v-37,4,-60,-1,-60,-41r0,-127r-32,0r0,-19r32,0r0,-56r23,0r0,56r37,0r0,19r-37,0r0,126v-3,23,15,27,37,23r0,19","w":106},"\u0167":{"d":"95,1v-37,4,-60,-1,-60,-41r0,-75r-36,0r0,-16r36,0r0,-36r-32,0r0,-19r32,0r0,-56r23,0r0,56r37,0r0,19r-37,0r0,36r42,0r0,16r-42,0r0,74v-3,23,15,27,37,23r0,19","w":106},"\u00f9":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm51,-262r28,0r38,50r-19,0","w":193},"\u00fa":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm104,-212r-18,0r38,-51r28,0","w":193},"\u00fb":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm150,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":193},"\u0169":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm73,-254v26,0,57,35,67,-2r14,0v-4,17,-11,35,-32,35v-24,0,-58,-36,-67,1r-14,0v2,-18,12,-34,32,-34","w":193},"\u00fc":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm52,-220r0,-36r25,0r0,36r-25,0xm116,-220r0,-36r24,0r0,36r-24,0","w":193},"\u016b":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm38,-230r0,-16r119,0r0,16r-119,0","w":193},"\u016d":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm149,-261v0,41,-58,60,-88,34v-9,-8,-14,-19,-15,-34r14,0v1,21,16,30,37,30v22,0,34,-12,38,-30r14,0","w":193},"\u016f":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm97,-269v-13,0,-24,11,-24,24v0,13,11,25,24,25v14,0,25,-11,25,-25v0,-13,-12,-24,-25,-24xm97,-206v-23,0,-38,-16,-38,-39v0,-23,16,-38,38,-38v23,0,39,15,39,38v0,23,-16,39,-39,39","w":193},"\u0171":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm115,-212r37,-51r27,0r-45,51r-19,0xm59,-212r36,-51r28,0r-46,51r-18,0","w":193},"\u0173":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186v-23,5,-32,21,-37,42v-1,24,33,19,36,2r10,5v-7,33,-71,32,-68,-5v2,-23,19,-31,38,-44v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-91,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172","w":193},"\u0175":{"d":"3,-186r24,0r48,159r46,-159r25,0r46,159r48,-159r24,0r-60,186r-25,0r-46,-156r-46,156r-24,0xm187,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":266,"k":{".":20,",":20}},"\u00fd":{"d":"1,-186r24,0r61,159r57,-159r23,0r-90,234v-7,19,-32,24,-57,19r0,-19v39,10,47,-22,56,-49xm94,-212r-18,0r38,-51r28,0","w":166,"k":{".":33,",":33}},"\u0177":{"d":"1,-186r24,0r61,159r57,-159r23,0r-90,234v-7,19,-32,24,-57,19r0,-19v39,10,47,-22,56,-49xm139,-212r-24,0r-31,-37r-31,37r-21,0r41,-51r25,0","w":166,"k":{".":33,",":33}},"\u00ff":{"d":"1,-186r24,0r61,159r57,-159r23,0r-90,234v-7,19,-32,24,-57,19r0,-19v39,10,47,-22,56,-49xm42,-220r0,-36r25,0r0,36r-25,0xm106,-220r0,-36r24,0r0,36r-24,0","w":166,"k":{".":33,",":33}},"\u017a":{"d":"33,-19r128,0r0,19r-156,0r0,-18r122,-149r-113,0r0,-19r142,0r0,16xm90,-212r-18,0r38,-51r28,0","w":166},"\u017e":{"d":"33,-19r128,0r0,19r-156,0r0,-18r122,-149r-113,0r0,-19r142,0r0,16xm29,-263r24,0r31,37r31,-37r21,0r-41,51r-25,0","w":166},"\u017c":{"d":"33,-19r128,0r0,19r-156,0r0,-18r122,-149r-113,0r0,-19r142,0r0,16xm71,-220r0,-36r25,0r0,36r-25,0","w":166},"\u013f":{"d":"26,-257r24,0r0,236r144,0r0,21r-168,0r0,-257xm103,-150r0,-36r25,0r0,36r-25,0","w":193,"k":{"\u021a":33,"\u00ff":13,"\u0177":13,"\u00fd":13,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33,"\u2019":35}},"\u0140":{"d":"22,-257r23,0r0,257r-23,0r0,-257xm67,-150r0,-36r25,0r0,36r-25,0","w":106},"\u212e":{"d":"16,-93v-9,-108,149,-134,179,-40v4,12,7,25,7,40r-145,0r0,65v35,37,104,21,121,-22r13,8v-17,28,-39,48,-82,48v-59,0,-88,-39,-93,-99xm161,-106r0,-52v-28,-28,-77,-30,-104,0r0,52r104,0","w":216},"\u2113":{"d":"78,-42v-2,38,42,39,61,19r7,9v-27,31,-88,24,-86,-26r0,-46v-8,7,-13,17,-22,23r-7,-10r29,-30v3,-62,-16,-157,43,-157v23,0,36,20,35,45v-2,50,-30,81,-60,115r0,58xm78,-117v22,-27,43,-57,45,-96v0,-17,-7,-32,-21,-33v-37,9,-20,84,-24,129","w":180},"!":{"d":"28,0r0,-38r31,0r0,38r-31,0xm31,-180r0,-77r25,0r0,77r-6,116r-13,0","w":86},"\"":{"d":"79,-257r23,0r0,87r-23,0r0,-87xm31,-257r23,0r0,87r-23,0r0,-87","w":133},"#":{"d":"80,-153r-8,57r51,0r8,-57r-51,0xm179,-80r-40,0r-11,80r-18,0r11,-80r-51,0r-11,80r-18,0r11,-80r-39,0r0,-16r41,0r8,-57r-39,0r0,-16r41,0r12,-80r18,0r-12,80r51,0r11,-80r18,0r-11,80r38,0r0,16r-40,0r-8,57r38,0r0,16"},"\u0110":{"d":"233,-129v0,83,-38,129,-118,129r-89,0r0,-125r-26,0r0,-16r26,0r0,-116r89,0v79,2,118,45,118,128xm208,-129v0,-95,-61,-114,-158,-107r0,95r85,0r0,16r-85,0r0,104v97,7,158,-12,158,-108","w":246},"\u00a0":{"w":100},"\u021a":{"d":"116,18v2,29,0,56,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm-2,-257r204,0r0,21r-90,0r0,236r-24,0r0,-236r-90,0r0,-21","k":{"\u0133":-9,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0173":33,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u012f":-9,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":40,"\u00e5":40,"\u0103":40,"\u0101":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"\u0104":24,"\u00c5":24,"\u0102":24,"\u0100":24,"\u00c4":24,"\u00c3":24,"\u00c2":24,"\u00c1":24,"\u00c0":24,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"i":-9,"e":40,"c":40,"a":40,"A":24,";":40,":":40,".":40,"-":46,",":40}},"\u021b":{"d":"80,18v2,29,1,57,-31,55r0,-10v8,-2,12,-5,14,-12r-14,0r0,-33r31,0xm95,1v-37,4,-60,-1,-60,-41r0,-127r-32,0r0,-19r32,0r0,-56r23,0r0,56r37,0r0,19r-37,0r0,126v-3,23,15,27,37,23r0,19","w":106},"\uf8ff":{"d":"80,-42r0,-24r20,0r0,24r-20,0xm138,-172v0,42,-47,39,-40,88v-7,-1,-19,3,-18,-6v-5,-44,40,-47,40,-81v0,-16,-13,-30,-28,-30v-18,0,-27,14,-29,34r-18,-3v2,-31,19,-48,48,-49v26,-1,45,21,45,47xm166,-18r0,-222r-148,0r0,222r148,0xm184,-258r0,258r-184,0r0,-258r184,0","w":184},"\u02c9":{"d":"-26,-230r0,-16r119,0r0,16r-119,0","w":66},"\u2219":{"d":"29,-114v0,-12,9,-21,21,-21v12,0,21,10,21,22v0,11,-10,20,-21,20v-12,0,-21,-9,-21,-21","w":100},"\u2215":{"d":"103,-261r17,0r-162,273r-18,0","w":60},"\u0394":{"d":"120,-226r-77,200r155,0xm5,0r100,-256r30,0r103,256r-233,0","w":242},"\u03a9":{"d":"248,-149v0,52,-27,86,-69,99r0,26r69,0r0,24r-92,0r0,-66v39,-6,63,-38,63,-82v0,-52,-35,-86,-87,-86v-51,0,-86,33,-86,86v0,46,23,74,63,82r0,66r-92,0r0,-24r69,0r0,-26v-41,-13,-69,-46,-69,-99v0,-69,48,-111,115,-111v69,0,116,42,116,111","w":269},"\u03bc":{"d":"151,-33v-15,33,-72,51,-107,26r0,76r-23,0r0,-255r23,0v7,67,-27,175,50,172v73,-3,52,-100,55,-172r23,0r0,186r-21,0r0,-33","w":193}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, modified, disclosed or transferred without the express written
 * approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems
 * Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger
 * Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be
 * registered in certain jurisdictions. This typeface is original artwork of
 * Linotype Design Studio. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * Helvetica is one of the most famous and popular typefaces in the world. It
 * lends an air of lucid efficiency to any typographic message with its clean,
 * no-nonsense shapes. The original typeface was called Haas Grotesk, and was
 * designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type
 * Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an
 * adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the
 * Helvetica family was expanded to include many different weights, but these were
 * not as well coordinated with each other as they might have been. In 1983, D.
 * Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it
 * into a cohesive font family. Today, the original Helvetica family consists of 34
 * different font weights, and the Neue Helvetica family consists of 51 font
 * weights. The Helvetica family now forms an integral part of many digital
 * printers and operating systems and has become a stylistic anchor in our visual
 * culture. It is the quintessential sans serif font, timeless and neutral, and can
 * be used for all types of communication. Helvetica World, an update to the
 * classic Helvetica design using the OpenType font format, contains the following
 * Microsoft code pages: 1252 Latin 1, 1250 Latin 2 Eastern, 1251 Cyrillic, 1253
 * Greek, 1254 Turk, 1255 Hebrew, 1256 Arabic, 1257 Windows Baltic, 1258 Windows
 * Vietnamese, as well as a mixture of box drawing element glyphs and mathematical
 * symbols & operators. In total, each weight of Helvetica World contains more than
 * 1850 different glyph characters!
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Linotype Design Studio
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":200,"face":{"font-family":"helvetica","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 2 2 2 2 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-59 -345 384 80.5","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"\ufb01":{"d":"136,-257r41,0r0,39r-41,0r0,-39xm114,-222v-17,-5,-41,-5,-39,17r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0r0,-30r31,0v-8,-57,27,-80,80,-69r0,33xm136,-186r41,0r0,186r-41,0r0,-186"},"\ufb02":{"d":"136,-257r41,0r0,257r-41,0r0,-257xm114,-222v-17,-5,-41,-5,-39,17r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0r0,-30r31,0v-8,-57,27,-80,80,-69r0,33"},"\u0149":{"d":"-6,-293r47,0v2,36,0,65,-42,63r0,-14v9,-2,14,-4,16,-13r-21,0r0,-36xm108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42","w":206},"\u0132":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm187,-31v29,0,36,-19,36,-49r0,-177r45,0v-9,109,40,269,-85,263v-57,-3,-79,-36,-76,-96r45,0v-1,33,1,59,35,59","w":295},"\u0133":{"d":"23,-257r41,0r0,39r-41,0r0,-39xm23,-186r41,0r0,186r-41,0r0,-186xm107,-257r41,0r0,39r-41,0r0,-39xm76,40v22,5,31,-3,31,-26r0,-200r41,0r0,202v1,43,-27,65,-72,56r0,-32","w":170},"!":{"d":"26,-45r48,0r0,45r-48,0r0,-45xm28,-257r45,0v2,68,-5,126,-12,185r-21,0v-7,-59,-15,-117,-12,-185","w":100},"\"":{"d":"93,-257r37,0r0,101r-37,0r0,-101xm30,-257r37,0r0,101r-37,0r0,-101","w":159},"#":{"d":"85,-149r-6,46r40,0r6,-46r-40,0xm178,-76r-34,0r-11,76r-29,0r11,-76r-40,0r-11,76r-28,0r10,-76r-34,0r0,-27r38,0r7,-46r-34,0r0,-27r37,0r11,-76r29,0r-11,76r40,0r10,-76r29,0r-10,76r31,0r0,27r-35,0r-6,46r30,0r0,27"},"$":{"d":"93,-231v-46,-8,-53,58,-15,68v5,2,10,3,15,4r0,-72xm194,-75v0,53,-34,78,-85,81r0,28r-16,0r0,-28v-53,-2,-87,-29,-87,-84r41,0v1,32,13,51,46,52r0,-87v-40,-13,-82,-27,-81,-80v1,-48,35,-67,81,-70r0,-28r16,0r0,28v48,1,77,24,79,70r-41,0v-1,-25,-13,-37,-38,-38r0,76v42,12,85,26,85,80xm109,-26v47,5,61,-68,16,-79v-5,-2,-10,-4,-16,-5r0,84"},"%":{"d":"89,-234v-39,2,-38,96,0,97v39,-1,40,-96,0,-97xm150,-185v0,43,-19,71,-60,71v-42,0,-60,-28,-60,-71v0,-43,18,-72,60,-72v42,0,60,30,60,72xm270,-115v-40,1,-37,96,0,97v39,-2,40,-96,0,-97xm330,-67v0,43,-17,72,-60,72v-42,0,-61,-29,-60,-72v1,-41,18,-71,60,-71v42,0,60,29,60,71xm234,-261r27,0r-139,270r-28,0","w":360},"&":{"d":"209,-123v-3,23,-9,46,-20,63r49,60r-50,0r-23,-29v-35,55,-160,43,-153,-42v3,-42,31,-59,59,-75v-12,-16,-26,-29,-26,-56v0,-38,24,-61,63,-61v38,0,64,23,64,61v0,36,-24,52,-47,66r40,48v4,-10,7,-20,8,-35r36,0xm53,-71v0,48,62,56,83,24r7,-9r-51,-63v-18,11,-39,19,-39,48xm116,-169v24,-11,27,-64,-7,-64v-34,-1,-33,47,-12,62r8,10","w":233},"'":{"d":"32,-257r36,0r0,101r-36,0r0,-101","w":100},"(":{"d":"103,-263v-55,85,-59,248,0,332r-34,0v-27,-45,-51,-94,-51,-166v0,-67,22,-122,51,-166r34,0","w":100},")":{"d":"-3,69v55,-85,59,-248,0,-332r34,0v27,45,51,94,51,166v0,67,-22,122,-51,166r-34,0","w":100},"*":{"d":"7,-206r8,-23r39,15r0,-43r25,0r0,43r39,-15r9,23r-41,14r25,34r-19,14r-26,-36r-24,36r-20,-14r25,-34","w":133},"+":{"d":"90,-182r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73r-73,0r0,-36r73,0r0,-73","w":216},",":{"d":"25,-49r50,0v4,53,-3,98,-49,106r0,-22v15,-3,24,-18,24,-35r-25,0r0,-49","w":100},"-":{"d":"18,-117r104,0r0,39r-104,0r0,-39","w":140},".":{"d":"25,-49r50,0r0,49r-50,0r0,-49","w":100},"\/":{"d":"95,-263r40,0r-104,269r-39,0","w":126},"0":{"d":"13,-126v0,-69,17,-131,87,-131v70,0,87,62,87,131v0,69,-17,131,-87,131v-70,0,-87,-62,-87,-131xm54,-126v0,46,4,97,46,97v43,0,46,-51,46,-97v0,-46,-3,-97,-46,-97v-42,0,-46,51,-46,97"},"1":{"d":"19,-210v37,-1,66,-12,74,-42r33,0r0,252r-45,0r0,-178r-62,0r0,-32"},"2":{"d":"105,-257v85,-6,104,105,46,146v-31,22,-69,40,-88,74r123,0r0,37r-172,0v0,-88,89,-98,124,-152v19,-29,4,-73,-35,-71v-33,2,-43,28,-43,63r-41,0v1,-59,28,-93,86,-97"},"3":{"d":"148,-74v1,-37,-29,-44,-66,-43r0,-31v32,1,56,-9,56,-39v0,-22,-16,-36,-39,-36v-30,0,-41,23,-42,52r-41,0v4,-51,29,-86,83,-86v45,0,78,23,80,67v1,29,-15,45,-36,55v28,5,46,30,46,63v0,91,-151,103,-172,25v-4,-11,-6,-23,-6,-36r41,0v0,30,16,54,48,54v27,0,48,-18,48,-45"},"4":{"d":"40,-92r77,0r-1,-111xm188,-60r-32,0r0,60r-39,0r0,-60r-108,0r0,-40r108,-152r39,0r0,160r32,0r0,32"},"5":{"d":"147,-85v0,-52,-71,-70,-89,-29r-41,0r27,-138r131,0r0,37r-100,0v-3,21,-12,45,-12,65v44,-45,134,-7,125,65v10,92,-130,121,-168,47v-5,-9,-7,-21,-7,-34r41,0v2,27,19,43,46,43v34,0,47,-22,47,-56"},"6":{"d":"12,-127v-4,-90,70,-167,147,-111v14,10,23,28,24,50r-41,0v1,-35,-50,-46,-69,-20v-12,17,-20,47,-19,72v10,-18,30,-30,54,-30v50,0,80,33,80,85v0,52,-31,85,-84,86v-74,1,-89,-58,-92,-132xm57,-82v0,30,15,53,46,53v29,0,44,-23,44,-53v0,-29,-14,-51,-44,-51v-30,0,-46,21,-46,51"},"7":{"d":"46,0v8,-94,50,-159,97,-215r-130,0r0,-37r172,0r0,34v-49,56,-87,121,-94,218r-45,0"},"8":{"d":"140,-186v1,-23,-18,-39,-40,-39v-22,0,-41,16,-40,39v1,23,17,37,40,37v24,0,40,-13,40,-37xm143,-136v80,24,46,149,-43,141v-53,-5,-89,-27,-89,-79v0,-32,19,-55,46,-62v-22,-7,-34,-26,-35,-52v-1,-46,31,-69,78,-69v78,0,107,97,43,121xm52,-74v0,29,21,47,48,47v27,0,48,-18,48,-47v0,-27,-20,-44,-48,-44v-28,0,-48,17,-48,44"},"9":{"d":"188,-125v4,90,-70,167,-147,111v-14,-10,-23,-28,-24,-50r41,0v-1,31,41,46,63,26v18,-15,26,-50,25,-78v-10,18,-29,30,-54,30v-52,0,-80,-33,-80,-85v0,-53,31,-85,87,-86v73,0,85,60,89,132xm143,-171v0,-30,-15,-52,-46,-52v-30,0,-44,22,-44,52v0,30,15,53,44,53v30,0,46,-22,46,-53"},":":{"d":"25,-49r50,0r0,49r-50,0r0,-49xm25,-182r50,0r0,48r-50,0r0,-48","w":100},";":{"d":"25,-182r50,0r0,48r-50,0r0,-48xm25,-49r50,0v4,53,-3,98,-49,106r0,-22v15,-3,24,-18,24,-35r-25,0r0,-49","w":100},"<":{"d":"199,3r-182,-81r0,-26r182,-81r0,37r-134,57r134,57r0,37","w":216},"=":{"d":"199,-36r-182,0r0,-37r182,0r0,37xm199,-109r-182,0r0,-37r182,0r0,37","w":216},">":{"d":"151,-91r-134,-57r0,-37r182,81r0,26r-182,81r0,-37","w":216},"?":{"d":"75,-45r48,0r0,45r-48,0r0,-45xm102,-229v-31,0,-43,23,-43,54r-41,0v1,-55,31,-88,86,-88v48,0,78,26,79,73v2,63,-66,56,-64,120r-39,0v-3,-51,25,-67,49,-92v20,-21,6,-67,-27,-67"},"@":{"d":"71,-107v0,-70,80,-127,119,-68r6,-20r25,0r-29,111v0,3,2,9,7,8v33,-6,47,-39,47,-77v0,-56,-40,-87,-96,-87v-64,0,-104,44,-104,108v0,69,38,115,107,115v35,0,63,-16,81,-36r25,0v-20,34,-57,59,-107,59v-83,0,-134,-54,-134,-139v0,-79,54,-130,132,-130v68,0,120,38,120,105v0,60,-34,100,-85,108v-13,0,-19,-10,-22,-21v-27,37,-92,17,-92,-36xm101,-111v0,19,10,33,29,33v44,1,72,-86,21,-96v-31,4,-50,31,-50,63","w":288},"A":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"B":{"d":"184,-185v1,-52,-67,-31,-112,-35r0,71v47,-2,111,13,112,-36xm240,-72v0,93,-122,69,-213,72r0,-257v84,4,203,-23,202,64v0,29,-17,44,-37,55v31,6,48,30,48,66xm195,-77v0,-56,-72,-37,-123,-40r0,80v51,-3,123,16,123,-40","w":253},"C":{"d":"14,-129v-10,-125,158,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98v42,0,61,-29,65,-67r44,0v-7,62,-42,104,-109,104v-81,0,-117,-55,-123,-135","w":259},"D":{"d":"247,-129v0,78,-35,129,-113,129r-107,0r0,-257r107,0v78,2,113,51,113,128xm202,-129v0,-79,-48,-98,-130,-91r0,183v82,6,130,-12,130,-92","w":259},"E":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257","w":226},"F":{"d":"27,-257r178,0r0,39r-133,0r0,67r117,0r0,37r-117,0r0,114r-45,0r0,-257","w":213,"k":{"\u0104":20,"\u00c5":20,"\u0102":20,"\u0100":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"A":20,".":46,",":46}},"G":{"d":"60,-129v-6,76,73,128,132,80v13,-10,19,-30,19,-52r-69,0r0,-34r110,0r0,135r-29,0r-7,-30v-21,24,-39,36,-77,36v-81,0,-118,-56,-124,-135v-10,-123,158,-182,222,-84v7,10,10,24,12,38r-44,0v-6,-32,-29,-51,-66,-51v-56,0,-75,43,-79,97","w":273},"H":{"d":"26,-257r45,0r0,102r117,0r0,-102r45,0r0,257r-45,0r0,-116r-117,0r0,116r-45,0r0,-257","w":259},"I":{"d":"27,-257r45,0r0,257r-45,0r0,-257","w":100},"J":{"d":"85,-31v29,0,36,-19,36,-49r0,-177r45,0v-9,109,40,269,-85,263v-57,-3,-79,-36,-76,-96r45,0v-1,33,1,59,35,59","w":193},"K":{"d":"27,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0r0,-257","w":246},"L":{"d":"27,-257r45,0r0,218r131,0r0,39r-176,0r0,-257","w":206,"k":{"\u00ff":13,"\u0177":13,"\u00fd":13,"\u2019":27,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u021a":33,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"27,-257r63,0r72,201r69,-201r62,0r0,257r-42,0r-1,-198r-71,198r-38,0r-72,-198r0,198r-42,0r0,-257","w":320},"N":{"d":"26,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0r0,-257","w":259},"O":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135","w":273},"P":{"d":"228,-177v0,52,-31,79,-87,78r-69,0r0,99r-45,0r0,-257r114,0v55,0,87,27,87,80xm183,-178v0,-56,-61,-40,-111,-42r0,85v51,-1,111,10,111,-43","w":240,"k":{"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"A":27,".":61,",":61}},"Q":{"d":"260,-129v0,43,-14,76,-36,99r33,29r-22,24r-38,-32v-17,11,-36,15,-60,15v-81,-2,-123,-55,-123,-135v0,-80,44,-134,123,-134v79,0,123,56,123,134xm59,-129v-2,65,41,115,107,92r-26,-22r21,-25r32,27v41,-51,26,-172,-56,-169v-56,2,-76,42,-78,97","w":273},"R":{"d":"197,0v-15,-42,4,-106,-58,-106r-67,0r0,106r-45,0r0,-257v88,4,208,-23,208,69v0,37,-19,55,-42,66v53,3,27,91,52,122r-48,0xm190,-181v0,-55,-68,-36,-118,-39r0,80v50,-3,118,15,118,-41","w":253,"k":{"\u0178":13,"\u0176":13,"\u00dd":13,"\u0174":6,"\u021a":6,"\u0162":6,"\u0164":6,"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"171,-140v91,36,42,156,-52,146v-63,-7,-105,-29,-107,-92r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v0,46,68,39,104,53","w":233},"T":{"d":"3,-257r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0r0,-39","w":213,"k":{"\u0173":33,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":36,"\u00e5":36,"\u0103":36,"\u0101":36,"\u00e4":36,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u0104":33,"\u00c5":33,"\u0102":33,"\u0100":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":36,"A":33,";":30,":":30,".":40,"-":46,",":40}},"U":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99","w":259},"V":{"d":"-2,-257r47,0r65,203r66,-203r46,0r-88,257r-50,0","w":219,"k":{"\u0173":13,"\u0133":-4,"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0171":13,"\u016f":13,"\u016d":13,"\u016b":13,"\u00fc":13,"\u0169":13,"\u00fb":13,"\u00fa":13,"\u00f9":13,"\u0159":13,"\u0157":13,"\u0155":13,"\u0151":20,"\u014f":20,"\u014d":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u012f":-4,"\u0119":20,"\u0117":20,"\u0115":20,"\u0113":20,"\u00eb":20,"\u011b":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u0105":20,"\u00e5":20,"\u0103":20,"\u0101":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u0104":20,"\u00c5":20,"\u0102":20,"\u0100":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":6,"u":13,"r":13,"o":20,"i":-4,"e":20,"a":20,"A":20,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"2,-257r46,0r47,197r52,-197r46,0r51,197r48,-197r46,0r-71,257r-46,0r-52,-197r-53,197r-46,0","w":339,"k":{"\u0173":6,"\u0171":6,"\u016f":6,"\u016d":6,"\u016b":6,"\u00fc":6,"\u0169":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u0159":6,"\u0157":6,"\u0155":6,"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u0105":13,"\u00e5":13,"\u0103":13,"\u0101":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u0104":9,"\u00c5":9,"\u0102":9,"\u0100":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"u":6,"r":6,"o":6,"e":6,"a":13,"A":9,";":6,":":6,".":27,"-":10,",":27}},"X":{"d":"5,-257r54,0r58,91r61,-91r50,0r-85,124r91,133r-54,0r-64,-98r-66,98r-51,0r91,-133","w":233},"Y":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101","w":233,"k":{"\u0173":31,"\u0133":3,"\u0171":31,"\u016f":31,"\u016d":31,"\u016b":31,"\u00fc":31,"\u0169":31,"\u00fb":31,"\u00fa":31,"\u00f9":31,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":31,"q":37,"p":31,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":40,"-":40,",":40}},"Z":{"d":"20,-257r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0r0,-39","w":226},"[":{"d":"26,-263r80,0r0,32r-41,0r0,267r41,0r0,33r-80,0r0,-332","w":106},"\\":{"d":"135,6r-40,0r-103,-269r39,0","w":126},"]":{"d":"81,69r-81,0r0,-33r42,0r0,-267r-42,0r0,-32r81,0r0,332","w":106},"^":{"d":"30,-121r65,-131r26,0r65,131r-37,0r-41,-89r-41,89r-37,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"38,-264r33,52r-30,0r-51,-52r48,0","w":86},"a":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42"},"b":{"d":"127,5v-31,0,-55,-9,-65,-31r0,26r-39,0r0,-257r41,0r0,95v12,-16,30,-29,56,-29v58,0,87,39,87,99v0,54,-25,95,-80,97xm114,-27v37,0,52,-29,52,-66v0,-36,-17,-65,-52,-66v-36,-1,-53,29,-52,66v1,36,15,66,52,66","w":219},"c":{"d":"13,-91v-10,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,46,-35,75,-85,75v-60,-1,-84,-38,-90,-96"},"d":{"d":"93,-191v31,-1,49,13,63,29r0,-95r41,0r0,257r-39,0v-1,-8,2,-19,-1,-25v-9,19,-31,30,-57,30v-59,0,-86,-39,-87,-99v0,-58,26,-94,80,-97xm106,-159v-37,0,-52,29,-52,68v1,36,15,64,51,64v37,0,51,-29,52,-66v1,-37,-17,-66,-51,-66","w":219},"e":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98"},"f":{"d":"114,-222v-17,-5,-41,-5,-39,17r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0r0,-30r31,0v-8,-57,27,-80,80,-69r0,33","w":113,"k":{"\u2019":-6,"f":6}},"g":{"d":"97,-191v27,-1,45,12,56,30r0,-25r41,0r0,176v11,89,-120,109,-166,53v-5,-7,-8,-16,-9,-27r41,0v3,21,21,27,45,27v43,0,53,-34,47,-76v-11,18,-30,33,-56,33v-58,-1,-83,-39,-83,-98v0,-55,29,-92,84,-93xm54,-94v1,35,14,62,49,62v36,0,50,-30,50,-65v0,-35,-15,-62,-50,-62v-35,0,-49,28,-49,65","w":213},"h":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-257r41,0r0,95v25,-46,122,-37,122,34r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42","w":206},"i":{"d":"23,-257r41,0r0,39r-41,0r0,-39xm23,-186r41,0r0,186r-41,0r0,-186","w":86},"j":{"d":"23,-257r41,0r0,39r-41,0r0,-39xm-8,40v22,5,31,-3,31,-26r0,-200r41,0r0,202v1,43,-27,65,-72,56r0,-32","w":86},"k":{"d":"23,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0r0,-257","w":193},"l":{"d":"23,-257r41,0r0,257r-41,0r0,-257","w":86},"m":{"d":"62,-160v13,-38,96,-44,109,0v23,-46,121,-44,121,31r0,129r-41,0r-1,-129v-1,-20,-12,-30,-33,-30v-65,0,-33,100,-40,159r-41,0r0,-120v0,-25,-8,-40,-33,-39v-62,3,-34,99,-40,159r-41,0r0,-186r38,0v1,8,-3,22,2,26","w":313},"n":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42","w":206},"o":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66","w":213},"p":{"d":"127,5v-29,0,-51,-11,-63,-29r0,93r-41,0r0,-255r39,0r0,25v10,-20,31,-30,58,-30v58,0,87,39,87,99v0,54,-25,97,-80,97xm114,-27v37,0,52,-29,52,-66v0,-36,-17,-65,-52,-66v-36,-1,-53,29,-52,66v1,36,15,66,52,66","w":219},"q":{"d":"100,-191v28,0,46,12,58,30r0,-25r39,0r0,255r-41,0r-1,-93v-12,18,-34,29,-62,29v-55,0,-80,-41,-80,-97v0,-60,28,-97,87,-99xm105,-159v-35,1,-50,30,-51,66v0,38,15,65,51,66v36,1,52,-29,52,-66v0,-38,-16,-67,-52,-66","w":219},"r":{"d":"131,-150v-43,-10,-68,19,-68,61r0,89r-41,0r0,-186r38,0v1,11,-2,27,1,36v8,-26,33,-46,70,-40r0,40","w":126,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"158,-94v56,56,-21,119,-97,95v-29,-8,-49,-25,-49,-61r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-31,34,-5,38v28,11,64,7,83,26","w":186},"t":{"d":"112,0v-42,6,-78,1,-78,-46r0,-110r-31,0r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,111v0,16,21,16,37,13r0,32","w":119},"u":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45","w":206},"v":{"d":"3,-186r45,0r48,143r45,-143r43,0r-67,186r-46,0","w":186,"k":{".":27,",":27}},"w":{"d":"5,-186r43,0r37,139r35,-139r42,0r34,139r38,-139r41,0r-58,186r-42,0r-35,-138r-35,138r-43,0","w":280,"k":{".":20,",":20}},"x":{"d":"72,-98r-65,-88r50,0r39,57r40,-57r48,0r-63,86r71,100r-49,0r-48,-69r-45,69r-49,0","w":193},"y":{"d":"19,37v32,12,49,-11,53,-38r-71,-185r45,0r49,139r48,-139r42,0r-82,220v-9,32,-41,46,-84,38r0,-35","w":186,"k":{".":33,",":33}},"z":{"d":"15,-186r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0r0,-32","w":180},"{":{"d":"32,19v-2,-42,12,-102,-33,-100r0,-32v46,2,31,-59,33,-101v2,-40,33,-53,79,-49r0,32v-24,-2,-41,2,-40,25v0,48,9,107,-37,109v51,-1,34,68,38,117v1,16,19,17,39,16r0,33v-46,4,-77,-9,-79,-50","w":106},"|":{"d":"22,-283r36,0r0,360r-36,0r0,-360","w":79},"}":{"d":"74,-214v2,43,-12,103,34,101r0,32v-48,-4,-32,58,-34,100v-2,41,-33,55,-79,50r0,-33v24,1,42,1,40,-25v-3,-49,-7,-105,38,-109v-51,1,-36,-66,-38,-116v-1,-17,-20,-18,-40,-17r0,-32v46,-4,77,8,79,49","w":106},"~":{"d":"70,-122v36,0,87,48,108,0v22,30,2,62,-32,62v-37,0,-89,-50,-108,0r-13,-31v8,-16,21,-31,45,-31","w":216},"\u00a0":{"w":100},"\u00c0":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm110,-334r33,52r-30,0r-51,-52r48,0","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u00c1":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm131,-334r48,0r-51,52r-30,0","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u00c2":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm94,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u00c3":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm94,-327v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u00c4":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm69,-287r0,-39r41,0r0,39r-41,0xm172,-326r0,39r-41,0r0,-39r41,0","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u0100":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm68,-295r0,-23r103,0r0,23r-103,0","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u0102":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm83,-333v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u00c5":{"d":"96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm80,-102r79,0r-40,-111xm120,-330v-12,0,-22,10,-22,22v0,12,9,23,22,22v12,0,21,-10,21,-22v0,-12,-10,-22,-21,-22xm157,-308v0,23,-14,37,-37,37v-24,0,-38,-14,-38,-37v0,-23,15,-37,38,-37v22,0,37,14,37,37","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u0104":{"d":"154,48v2,-28,22,-34,41,-48r-24,-68r-103,0r-24,68r-47,0r99,-257r48,0r99,257r-29,0v-17,13,-32,23,-34,46v-2,20,28,20,33,4r15,3v-3,35,-77,40,-74,-5xm80,-102r79,0r-40,-111","w":240,"k":{"\u00ff":6,"\u0177":6,"\u00fd":6,"\u0175":6,"\u2019":27,"\u0178":27,"\u0176":27,"\u00dd":27,"\u0174":9,"\u021a":33,"\u0162":33,"\u0164":33,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u00c6":{"d":"125,-257r208,0r0,39r-126,0r0,67r118,0r0,37r-118,0r0,75r128,0r0,39r-170,0r0,-66r-87,0r-30,66r-51,0xm95,-100r70,0r0,-118r-13,0","w":346},"\u0106":{"d":"14,-129v-10,-125,158,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98v42,0,61,-29,65,-67r44,0v-7,62,-42,104,-109,104v-81,0,-117,-55,-123,-135xm151,-334r48,0r-51,52r-30,0","w":259},"\u0108":{"d":"14,-129v-10,-125,158,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98v42,0,61,-29,65,-67r44,0v-7,62,-42,104,-109,104v-81,0,-117,-55,-123,-135xm112,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":259},"\u010c":{"d":"14,-129v-10,-125,158,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98v42,0,61,-29,65,-67r44,0v-7,62,-42,104,-109,104v-81,0,-117,-55,-123,-135xm156,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":259},"\u010a":{"d":"14,-129v-10,-125,158,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98v42,0,61,-29,65,-67r44,0v-7,62,-42,104,-109,104v-81,0,-117,-55,-123,-135xm116,-287r0,-39r41,0r0,39r-41,0","w":259},"\u00c7":{"d":"137,-31v42,0,61,-29,65,-67r44,0v-5,63,-42,101,-107,104r-11,16v22,-4,42,3,42,25v1,38,-53,38,-80,25r6,-14v15,3,45,13,45,-9v1,-16,-20,-17,-30,-10r-8,-7r20,-27v-70,-9,-103,-58,-109,-134v-10,-125,158,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98","w":259},"\u010e":{"d":"247,-129v0,78,-35,129,-113,129r-107,0r0,-257r107,0v78,2,113,51,113,128xm202,-129v0,-79,-48,-98,-130,-91r0,183v82,6,130,-12,130,-92xm138,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":259},"\u0110":{"d":"202,-129v0,-79,-48,-98,-130,-91r0,69r71,0r0,37r-71,0r0,77v82,6,130,-12,130,-92xm247,-129v0,78,-35,129,-113,129r-107,0r0,-114r-24,0r0,-37r24,0r0,-106r107,0v78,2,113,51,113,128","w":259},"\u00d0":{"d":"202,-129v0,-79,-48,-98,-130,-91r0,69r71,0r0,37r-71,0r0,77v82,6,130,-12,130,-92xm247,-129v0,78,-35,129,-113,129r-107,0r0,-114r-24,0r0,-37r24,0r0,-106r107,0v78,2,113,51,113,128","w":259},"\u00c8":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm116,-334r33,52r-30,0r-51,-52r48,0","w":226},"\u00c9":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm133,-334r48,0r-51,52r-30,0","w":226},"\u00ca":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm95,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":226},"\u011a":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm139,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":226},"\u00cb":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm70,-287r0,-39r41,0r0,39r-41,0xm173,-326r0,39r-41,0r0,-39r41,0","w":226},"\u0112":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm69,-295r0,-23r103,0r0,23r-103,0","w":226},"\u0114":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm82,-333v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":226},"\u0116":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm99,-287r0,-39r41,0r0,39r-41,0","w":226},"\u0118":{"d":"141,48v2,-28,22,-34,41,-48r-155,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-14,0v-17,13,-32,23,-34,46v-2,20,28,20,33,4r15,3v-3,35,-77,40,-74,-5","w":226},"\u011c":{"d":"60,-129v-6,76,73,128,132,80v13,-10,19,-30,19,-52r-69,0r0,-34r110,0r0,135r-29,0r-7,-30v-21,24,-39,36,-77,36v-81,0,-118,-56,-124,-135v-10,-123,158,-182,222,-84v7,10,10,24,12,38r-44,0v-6,-32,-29,-51,-66,-51v-56,0,-75,43,-79,97xm114,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":273},"\u011e":{"d":"60,-129v-6,76,73,128,132,80v13,-10,19,-30,19,-52r-69,0r0,-34r110,0r0,135r-29,0r-7,-30v-21,24,-39,36,-77,36v-81,0,-118,-56,-124,-135v-10,-123,158,-182,222,-84v7,10,10,24,12,38r-44,0v-6,-32,-29,-51,-66,-51v-56,0,-75,43,-79,97xm103,-333v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":273},"\u0120":{"d":"60,-129v-6,76,73,128,132,80v13,-10,19,-30,19,-52r-69,0r0,-34r110,0r0,135r-29,0r-7,-30v-21,24,-39,36,-77,36v-81,0,-118,-56,-124,-135v-10,-123,158,-182,222,-84v7,10,10,24,12,38r-44,0v-6,-32,-29,-51,-66,-51v-56,0,-75,43,-79,97xm118,-287r0,-39r41,0r0,39r-41,0","w":273},"\u0122":{"d":"115,18r47,0v2,35,1,65,-41,62r0,-13v9,-2,14,-4,16,-13r-22,0r0,-36xm60,-129v-6,76,73,128,132,80v13,-10,19,-30,19,-52r-69,0r0,-34r110,0r0,135r-29,0r-7,-30v-21,24,-39,36,-77,36v-81,0,-118,-56,-124,-135v-10,-123,158,-182,222,-84v7,10,10,24,12,38r-44,0v-6,-32,-29,-51,-66,-51v-56,0,-75,43,-79,97","w":273},"\u0124":{"d":"26,-257r45,0r0,102r117,0r0,-102r45,0r0,257r-45,0r0,-116r-117,0r0,116r-45,0r0,-257xm105,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":259},"\u0126":{"d":"26,-257r45,0r0,62r117,0r0,-62r45,0r0,257r-45,0r0,-107r-117,0r0,107r-45,0r0,-257xm188,-146r0,-26r-117,0r0,26r117,0","w":259},"\u00cc":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm40,-334r33,52r-30,0r-51,-52r48,0","w":100},"\u00cd":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm61,-334r48,0r-51,52r-30,0","w":100},"\u00ce":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm24,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":100},"\u0128":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm24,-327v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":100},"\u00cf":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm-1,-287r0,-39r41,0r0,39r-41,0xm102,-326r0,39r-41,0r0,-39r41,0","w":100},"\u012a":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm-2,-295r0,-23r103,0r0,23r-103,0","w":100},"\u0130":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm29,-287r0,-39r41,0r0,39r-41,0","w":100},"\u012e":{"d":"18,48v2,-25,19,-34,37,-48r-28,0r0,-257r45,0r0,257v-14,13,-28,23,-30,46v-1,20,25,20,30,4r13,3v-5,18,-17,30,-42,27v-15,-2,-26,-12,-25,-32","w":100},"\u0134":{"d":"85,-31v29,0,36,-19,36,-49r0,-177r45,0v-9,109,40,269,-85,263v-57,-3,-79,-36,-76,-96r45,0v-1,33,1,59,35,59xm116,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":193},"\u0136":{"d":"99,18r48,0v2,36,-1,64,-42,62r0,-13v9,-2,14,-4,16,-13r-22,0r0,-36xm27,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0r0,-257","w":246},"\u0139":{"d":"27,-257r45,0r0,218r131,0r0,39r-176,0r0,-257xm67,-334r48,0r-51,52r-30,0","w":206,"k":{"\u00ff":13,"\u0177":13,"\u00fd":13,"\u2019":27,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u021a":33,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33}},"\u013d":{"d":"118,-257r45,0r-29,51r-27,0xm27,-257r45,0r0,218r131,0r0,39r-176,0r0,-257","w":206,"k":{"\u00ff":13,"\u0177":13,"\u00fd":13,"\u2019":27,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u021a":33,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33}},"\u013b":{"d":"92,18r47,0v2,35,0,64,-41,62r0,-13v9,-2,14,-4,16,-13r-22,0r0,-36xm27,-257r45,0r0,218r131,0r0,39r-176,0r0,-257","w":206,"k":{"\u00ff":13,"\u0177":13,"\u00fd":13,"\u2019":27,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u021a":33,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33}},"\u0141":{"d":"27,-257r45,0r0,110r72,-51r0,33r-72,52r0,74r131,0r0,39r-176,0r0,-82r-27,20r0,-33r27,-19r0,-143","w":206},"\u013f":{"d":"27,-257r45,0r0,218r131,0r0,39r-176,0r0,-257xm116,-148r0,-39r41,0r0,39r-41,0","w":206,"k":{"\u00ff":13,"\u0177":13,"\u00fd":13,"\u2019":27,"\u0178":40,"\u0176":40,"\u00dd":40,"\u0174":20,"\u021a":33,"\u0162":33,"\u0164":33,"y":13,"Y":40,"W":20,"V":33,"T":33}},"\u0143":{"d":"26,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0r0,-257xm144,-334r48,0r-51,52r-30,0","w":259},"\u0147":{"d":"26,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0r0,-257xm149,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":259},"\u00d1":{"d":"26,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0r0,-257xm104,-327v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":259},"\u0145":{"d":"103,18r47,0v2,36,-1,64,-42,62r0,-13v9,-2,14,-4,16,-13r-21,0r0,-36xm26,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0r0,-257","w":259},"\u00d2":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm116,-334r33,52r-30,0r-51,-52r48,0","w":273},"\u00d3":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm153,-334r48,0r-51,52r-30,0","w":273},"\u00d4":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm112,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":273},"\u00d5":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm112,-327v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":273},"\u00d6":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm86,-287r0,-39r41,0r0,39r-41,0xm189,-326r0,39r-41,0r0,-39r41,0","w":273},"\u014c":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm86,-295r0,-23r103,0r0,23r-103,0","w":273},"\u014e":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm99,-333v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":273},"\u0150":{"d":"215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm14,-129v0,-80,44,-134,123,-134v79,0,123,56,123,134v0,79,-42,135,-123,135v-81,0,-123,-55,-123,-135xm189,-334r49,0r-51,52r-30,0xm118,-334r49,0r-52,52r-30,0","w":273},"\u00d8":{"d":"137,-263v35,0,60,12,80,29r27,-30r15,13r-28,32v17,23,29,52,29,90v0,79,-42,135,-123,135v-35,0,-60,-12,-80,-29r-27,30r-16,-13r29,-32v-17,-23,-30,-52,-29,-91v2,-80,44,-134,123,-134xm137,-31v76,3,93,-95,65,-155r-118,133v11,13,29,22,53,22xm137,-226v-76,-3,-93,95,-65,155r118,-133v-11,-13,-29,-21,-53,-22","w":273},"\u0152":{"d":"136,-263v29,0,49,9,65,26r0,-20r175,0r0,39r-134,0r0,67r123,0r0,37r-123,0r0,75r137,0r0,39r-178,0r0,-23v-15,17,-38,29,-68,29v-78,0,-118,-54,-118,-133v0,-80,41,-136,121,-136xm137,-31v35,0,62,-17,62,-48r0,-96v-2,-34,-26,-51,-62,-51v-55,0,-77,43,-77,98v0,54,22,97,77,97","w":393},"\u0154":{"d":"197,0v-15,-42,4,-106,-58,-106r-67,0r0,106r-45,0r0,-257v88,4,208,-23,208,69v0,37,-19,55,-42,66v53,3,27,91,52,122r-48,0xm190,-181v0,-55,-68,-36,-118,-39r0,80v50,-3,118,15,118,-41xm136,-334r48,0r-51,52r-30,0","w":253,"k":{"\u0178":13,"\u0176":13,"\u00dd":13,"\u0174":6,"\u021a":6,"\u0162":6,"\u0164":6,"Y":13,"W":6,"V":6,"T":6}},"\u0158":{"d":"197,0v-15,-42,4,-106,-58,-106r-67,0r0,106r-45,0r0,-257v88,4,208,-23,208,69v0,37,-19,55,-42,66v53,3,27,91,52,122r-48,0xm190,-181v0,-55,-68,-36,-118,-39r0,80v50,-3,118,15,118,-41xm141,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":253,"k":{"\u0178":13,"\u0176":13,"\u00dd":13,"\u0174":6,"\u021a":6,"\u0162":6,"\u0164":6,"Y":13,"W":6,"V":6,"T":6}},"\u0156":{"d":"104,18r47,0v2,36,0,64,-42,62r0,-13v9,-2,16,-4,17,-13r-22,0r0,-36xm197,0v-15,-42,4,-106,-58,-106r-67,0r0,106r-45,0r0,-257v88,4,208,-23,208,69v0,37,-19,55,-42,66v53,3,27,91,52,122r-48,0xm190,-181v0,-55,-68,-36,-118,-39r0,80v50,-3,118,15,118,-41","w":253,"k":{"\u0178":13,"\u0176":13,"\u00dd":13,"\u0174":6,"\u021a":6,"\u0162":6,"\u0164":6,"Y":13,"W":6,"V":6,"T":6}},"\u015a":{"d":"171,-140v91,36,42,156,-52,146v-63,-7,-105,-29,-107,-92r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v0,46,68,39,104,53xm132,-334r48,0r-51,52r-30,0","w":233},"\u015c":{"d":"171,-140v91,36,42,156,-52,146v-63,-7,-105,-29,-107,-92r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v0,46,68,39,104,53xm94,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":233},"\u0160":{"d":"171,-140v91,36,42,156,-52,146v-63,-7,-105,-29,-107,-92r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v0,46,68,39,104,53xm138,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":233},"\u015e":{"d":"153,47v1,38,-54,39,-81,25r6,-14v13,6,45,11,46,-9v1,-16,-21,-17,-31,-10r-8,-7r20,-27v-55,-5,-92,-32,-93,-91r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v15,70,154,15,154,118v0,58,-45,78,-100,81r-11,16v21,-5,43,3,43,25","w":233},"\u0218":{"d":"93,18r47,0v2,36,-1,64,-42,62r0,-13v9,-2,15,-4,16,-13r-21,0r0,-36xm171,-140v91,36,42,156,-52,146v-63,-7,-105,-29,-107,-92r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v0,46,68,39,104,53","w":233},"\u0164":{"d":"3,-257r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0r0,-39xm127,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":213,"k":{"\u0173":33,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":36,"\u00e5":36,"\u0103":36,"\u0101":36,"\u00e4":36,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u0104":33,"\u00c5":33,"\u0102":33,"\u0100":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":36,"A":33,";":30,":":30,".":40,"-":46,",":40}},"\u0162":{"d":"83,18r47,0v2,36,-1,64,-42,62r0,-13v9,-2,15,-4,16,-13r-21,0r0,-36xm3,-257r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0r0,-39","w":213,"k":{"\u0173":33,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":36,"\u00e5":36,"\u0103":36,"\u0101":36,"\u00e4":36,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u0104":33,"\u00c5":33,"\u0102":33,"\u0100":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":36,"A":33,";":30,":":30,".":40,"-":46,",":40}},"\u021a":{"d":"83,18r47,0v2,36,-1,64,-42,62r0,-13v9,-2,15,-4,16,-13r-21,0r0,-36xm3,-257r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0r0,-39","w":213,"k":{"\u0173":33,"\u00ff":40,"\u0177":40,"\u00fd":40,"\u0175":40,"\u0171":33,"\u016f":33,"\u016d":33,"\u016b":33,"\u00fc":33,"\u0169":33,"\u00fb":33,"\u00fa":33,"\u00f9":33,"\u0219":40,"\u015f":40,"\u0161":40,"\u015d":40,"\u015b":40,"\u0159":33,"\u0157":33,"\u0155":33,"\u0151":40,"\u014f":40,"\u014d":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u0119":40,"\u0117":40,"\u0115":40,"\u0113":40,"\u00eb":40,"\u011b":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u010b":40,"\u010d":40,"\u0109":40,"\u0107":40,"\u0105":36,"\u00e5":36,"\u0103":36,"\u0101":36,"\u00e4":36,"\u00e3":36,"\u00e2":36,"\u00e1":36,"\u00e0":36,"\u0104":33,"\u00c5":33,"\u0102":33,"\u0100":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":36,"A":33,";":30,":":30,".":40,"-":46,",":40}},"\u0166":{"d":"3,-257r208,0r0,39r-82,0r0,50r59,0r0,23r-59,0r0,145r-45,0r0,-145r-57,0r0,-23r57,0r0,-50r-81,0r0,-39","w":213},"\u00de":{"d":"183,-139v0,-56,-61,-40,-111,-42r0,85v51,-1,111,10,111,-43xm228,-139v0,79,-74,83,-156,79r0,60r-45,0r0,-257r45,0r0,39v81,-4,156,0,156,79","w":240},"\u00d9":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm117,-334r33,52r-30,0r-51,-52r48,0","w":259},"\u00da":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm144,-334r48,0r-51,52r-30,0","w":259},"\u00db":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm105,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":259},"\u0168":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm104,-327v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":259},"\u00dc":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm78,-287r0,-39r41,0r0,39r-41,0xm181,-326r0,39r-41,0r0,-39r41,0","w":259},"\u016a":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm79,-295r0,-23r103,0r0,23r-103,0","w":259},"\u016c":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm93,-333v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":259},"\u016e":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm131,-330v-12,0,-22,10,-22,22v0,12,9,23,22,22v12,0,21,-10,21,-22v0,-12,-10,-22,-21,-22xm168,-308v0,23,-14,37,-37,37v-24,0,-38,-14,-38,-37v0,-23,15,-37,38,-37v22,0,37,14,37,37","w":259},"\u0170":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm183,-334r49,0r-51,52r-30,0xm112,-334r49,0r-52,52r-30,0","w":259},"\u0172":{"d":"122,6v-61,-4,-98,-35,-98,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0v-7,108,36,256,-91,262v-13,11,-26,21,-27,41v-1,20,28,20,33,4r15,3v-7,39,-83,37,-74,-12v3,-16,18,-25,31,-35","w":259},"\u0174":{"d":"2,-257r46,0r47,197r52,-197r46,0r51,197r48,-197r46,0r-71,257r-46,0r-52,-197r-53,197r-46,0xm145,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":339,"k":{"\u0173":6,"\u0171":6,"\u016f":6,"\u016d":6,"\u016b":6,"\u00fc":6,"\u0169":6,"\u00fb":6,"\u00fa":6,"\u00f9":6,"\u0159":6,"\u0157":6,"\u0155":6,"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u0105":13,"\u00e5":13,"\u0103":13,"\u0101":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u0104":9,"\u00c5":9,"\u0102":9,"\u0100":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"u":6,"r":6,"o":6,"e":6,"a":13,"A":9,";":6,":":6,".":27,"-":10,",":27}},"\u00dd":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101xm135,-334r48,0r-51,52r-30,0","w":233,"k":{"\u0173":31,"\u0133":3,"\u0171":31,"\u016f":31,"\u016d":31,"\u016b":31,"\u00fc":31,"\u0169":31,"\u00fb":31,"\u00fa":31,"\u00f9":31,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":31,"q":37,"p":31,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":40,"-":40,",":40}},"\u0176":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101xm94,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":233,"k":{"\u0173":31,"\u0133":3,"\u0171":31,"\u016f":31,"\u016d":31,"\u016b":31,"\u00fc":31,"\u0169":31,"\u00fb":31,"\u00fa":31,"\u00f9":31,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":31,"q":37,"p":31,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":40,"-":40,",":40}},"\u0178":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101xm67,-287r0,-39r41,0r0,39r-41,0xm170,-326r0,39r-41,0r0,-39r41,0","w":233,"k":{"\u0173":31,"\u0133":3,"\u0171":31,"\u016f":31,"\u016d":31,"\u016b":31,"\u00fc":31,"\u0169":31,"\u00fb":31,"\u00fa":31,"\u00f9":31,"\u0151":33,"\u014f":33,"\u014d":33,"\u00f6":33,"\u00f5":33,"\u00f4":33,"\u00f3":33,"\u00f2":33,"\u012f":3,"\u0119":33,"\u0117":33,"\u0115":33,"\u0113":33,"\u00eb":33,"\u011b":33,"\u00ea":33,"\u00e9":33,"\u00e8":33,"\u0105":33,"\u00e5":33,"\u0103":33,"\u0101":33,"\u00e4":33,"\u00e3":33,"\u00e2":33,"\u00e1":33,"\u00e0":33,"\u0104":27,"\u00c5":27,"\u0102":27,"\u0100":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"v":20,"u":31,"q":37,"p":31,"o":33,"i":3,"e":33,"a":33,"A":27,";":33,":":33,".":40,"-":40,",":40}},"\u0179":{"d":"20,-257r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0r0,-39xm130,-334r48,0r-51,52r-30,0","w":226},"\u017d":{"d":"20,-257r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0r0,-39xm136,-282r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":226},"\u017b":{"d":"20,-257r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0r0,-39xm96,-287r0,-39r41,0r0,39r-41,0","w":226},"\u00e0":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm95,-264r33,52r-30,0r-51,-52r48,0"},"\u00e1":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm113,-264r48,0r-51,52r-30,0"},"\u00e2":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm77,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32"},"\u00e3":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm76,-257v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41"},"\u00e4":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm50,-217r0,-39r41,0r0,39r-41,0xm153,-256r0,39r-41,0r0,-39r41,0"},"\u0101":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm50,-225r0,-23r103,0r0,23r-103,0"},"\u0103":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm64,-263v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0"},"\u00e5":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm102,-265v-12,0,-22,10,-22,22v0,12,9,23,22,22v12,0,21,-10,21,-22v0,-12,-10,-22,-21,-22xm139,-243v0,23,-14,37,-37,37v-24,0,-38,-14,-38,-37v0,-23,15,-37,38,-37v22,0,37,14,37,37"},"\u0105":{"d":"103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-8,3,-15,6,-26,5v-11,11,-27,19,-27,41v-1,20,27,20,32,4r15,3v-3,35,-76,39,-74,-5v2,-25,20,-33,37,-46v-8,-3,-12,-10,-14,-20v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42"},"\u00e6":{"d":"18,-129v-3,-69,114,-81,147,-37v25,-36,107,-30,127,6v11,20,20,46,18,78r-135,0v-7,58,80,74,93,23r41,0v-7,65,-121,88,-153,30v-24,45,-144,53,-144,-20v0,-60,60,-54,109,-64v31,-15,12,-46,-21,-46v-24,0,-38,10,-41,30r-41,0xm90,-27v36,-1,51,-24,46,-66v-24,18,-85,-1,-83,42v1,20,18,23,37,24xm269,-109v7,-55,-76,-67,-90,-19v-2,6,-4,12,-4,19r94,0","w":320},"\u0107":{"d":"13,-91v-10,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,46,-35,75,-85,75v-60,-1,-84,-38,-90,-96xm120,-264r48,0r-51,52r-30,0"},"\u0109":{"d":"13,-91v-10,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,46,-35,75,-85,75v-60,-1,-84,-38,-90,-96xm80,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32"},"\u010d":{"d":"13,-91v-10,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,46,-35,75,-85,75v-60,-1,-84,-38,-90,-96xm124,-212r-40,0r-38,-52r33,0r25,33r25,-33r34,0"},"\u010b":{"d":"13,-91v-10,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,46,-35,75,-85,75v-60,-1,-84,-38,-90,-96xm83,-217r0,-39r41,0r0,39r-41,0"},"\u00e7":{"d":"143,47v1,38,-54,38,-81,25r7,-14v13,6,45,11,45,-9v1,-16,-20,-17,-30,-10r-8,-7r20,-27v-55,-4,-77,-40,-83,-96v-9,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,43,-31,71,-75,75v-4,6,-10,10,-13,17v21,-5,43,3,43,25"},"\u010f":{"d":"226,-257r45,0r-29,51r-27,0xm93,-191v31,-1,49,13,63,29r0,-95r41,0r0,257r-39,0v-1,-8,2,-19,-1,-25v-9,19,-31,30,-57,30v-59,0,-86,-39,-87,-99v0,-58,26,-94,80,-97xm106,-159v-37,0,-52,29,-52,68v1,36,15,64,51,64v37,0,51,-29,52,-66v1,-37,-17,-66,-51,-66","w":247},"\u0111":{"d":"93,-191v31,-1,49,13,63,29r0,-48r-55,0r0,-24r55,0r0,-23r41,0r0,23r28,0r0,24r-28,0r0,210r-39,0v-1,-8,2,-19,-1,-25v-9,19,-31,30,-57,30v-59,0,-86,-39,-87,-99v0,-58,26,-94,80,-97xm106,-159v-37,0,-52,29,-52,68v1,36,15,64,51,64v37,0,51,-29,52,-66v1,-37,-17,-66,-51,-66","w":223},"\u00f0":{"d":"147,-166v-4,-16,-24,-36,-38,-47r-39,18r-18,-17r34,-17v-10,-5,-18,-9,-30,-12r27,-22v13,4,26,10,38,18r37,-18r18,17r-34,17v76,45,85,239,-41,234v-57,-2,-83,-39,-86,-96v-4,-72,76,-116,132,-75xm104,-27v66,2,73,-123,4,-123v-37,0,-52,26,-52,62v0,34,14,60,48,61","w":213},"\u00e8":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm91,-264r33,52r-30,0r-51,-52r48,0"},"\u00e9":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm119,-264r48,0r-51,52r-30,0"},"\u00ea":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm78,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32"},"\u011b":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm122,-212r-40,0r-38,-52r33,0r25,33r25,-33r34,0"},"\u00eb":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm51,-217r0,-39r41,0r0,39r-41,0xm154,-256r0,39r-41,0r0,-39r41,0"},"\u0113":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm51,-225r0,-23r103,0r0,23r-103,0"},"\u0115":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm65,-263v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0"},"\u0117":{"d":"149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm83,-217r0,-39r41,0r0,39r-41,0"},"\u0119":{"d":"13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-8,35,-32,55,-68,62v-14,11,-27,21,-29,42v-2,20,28,20,33,4r15,3v-4,34,-77,40,-75,-5v1,-22,18,-31,33,-43v-55,-4,-80,-40,-84,-98xm149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0"},"\u011d":{"d":"97,-191v27,-1,45,12,56,30r0,-25r41,0r0,176v11,89,-120,109,-166,53v-5,-7,-8,-16,-9,-27r41,0v3,21,21,27,45,27v43,0,53,-34,47,-76v-11,18,-30,33,-56,33v-58,-1,-83,-39,-83,-98v0,-55,29,-92,84,-93xm54,-94v1,35,14,62,49,62v36,0,50,-30,50,-65v0,-35,-15,-62,-50,-62v-35,0,-49,28,-49,65xm84,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":213},"\u011f":{"d":"97,-191v27,-1,45,12,56,30r0,-25r41,0r0,176v11,89,-120,109,-166,53v-5,-7,-8,-16,-9,-27r41,0v3,21,21,27,45,27v43,0,53,-34,47,-76v-11,18,-30,33,-56,33v-58,-1,-83,-39,-83,-98v0,-55,29,-92,84,-93xm54,-94v1,35,14,62,49,62v36,0,50,-30,50,-65v0,-35,-15,-62,-50,-62v-35,0,-49,28,-49,65xm68,-263v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":213},"\u0121":{"d":"97,-191v27,-1,45,12,56,30r0,-25r41,0r0,176v11,89,-120,109,-166,53v-5,-7,-8,-16,-9,-27r41,0v3,21,21,27,45,27v43,0,53,-34,47,-76v-11,18,-30,33,-56,33v-58,-1,-83,-39,-83,-98v0,-55,29,-92,84,-93xm54,-94v1,35,14,62,49,62v36,0,50,-30,50,-65v0,-35,-15,-62,-50,-62v-35,0,-49,28,-49,65xm85,-217r0,-39r41,0r0,39r-41,0","w":213},"\u0123":{"d":"130,-221r-47,0v-2,-36,-1,-65,42,-63r0,14v-9,2,-16,4,-17,13r22,0r0,36xm97,-191v27,-1,45,12,56,30r0,-25r41,0r0,176v11,89,-120,109,-166,53v-5,-7,-8,-16,-9,-27r41,0v3,21,21,27,45,27v43,0,53,-34,47,-76v-11,18,-30,33,-56,33v-58,-1,-83,-39,-83,-98v0,-55,29,-92,84,-93xm54,-94v1,35,14,62,49,62v36,0,50,-30,50,-65v0,-35,-15,-62,-50,-62v-35,0,-49,28,-49,65","w":213},"\u0125":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-257r41,0r0,95v25,-46,122,-37,122,34r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42xm78,-282r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":206},"\u0127":{"d":"111,-159v-66,0,-40,96,-45,159r-41,0r0,-210r-27,0r0,-24r27,0r0,-23r41,0r0,23r46,0r0,24r-46,0v1,15,-2,35,1,48v24,-46,122,-37,122,34r0,128r-41,0v-8,-57,25,-159,-37,-159","w":210},"\u0131":{"d":"23,0r0,-186r41,0r0,186r-41,0","w":86},"\u00ec":{"d":"23,0r0,-186r41,0r0,186r-41,0xm32,-264r33,52r-30,0r-51,-52r48,0","w":86},"\u2019":{"d":"28,-176v17,-2,21,-16,22,-32r-22,0r0,-49r45,0v2,49,2,97,-45,101r0,-20","w":100,"k":{"\u021b":6,"\u0163":6,"\u0219":27,"\u015f":27,"\u0161":27,"\u015d":27,"\u015b":27,"\u2019":28,"t":6,"s":27}},"\u2018":{"d":"73,-236v-13,4,-23,15,-22,32r22,0r0,48r-45,0v-4,-50,2,-93,45,-101r0,21","w":100,"k":{"\u2018":28}},"\u00a1":{"d":"74,-146r-48,0r0,-45r48,0r0,45xm73,66r-45,0v-2,-68,5,-127,12,-186r21,0v6,60,15,117,12,186","w":100},"\u00a2":{"d":"190,-70v-7,42,-30,76,-78,75r0,32r-16,0r0,-32v-54,-3,-83,-41,-83,-96v0,-58,27,-97,83,-100r0,-33r16,0r0,33v44,2,72,25,77,67r-41,0v-3,-19,-15,-34,-36,-35r0,132v22,-4,35,-19,37,-43r41,0xm96,-159v-58,7,-54,127,0,132r0,-132"},"\u00a3":{"d":"13,-23v25,-16,52,-55,31,-92r-33,0r0,-23r23,0v-40,-50,-3,-125,67,-125v57,0,91,31,91,89r-42,0v-1,-33,-14,-55,-48,-55v-47,0,-46,64,-24,91r53,0r0,23r-44,0v18,35,-9,68,-30,84v38,-27,93,23,124,-11r18,28v-38,48,-122,-14,-167,20"},"\u2044":{"d":"91,-261r29,0r-151,270r-28,0","w":60},"\u00a5":{"d":"80,-59r-50,0r0,-24r50,0r0,-24r-50,0r0,-24r36,0r-68,-126r46,0r56,115r57,-115r45,0r-68,126r36,0r0,24r-49,0r0,24r49,0r0,24r-49,0r0,59r-41,0r0,-59"},"\u0192":{"d":"47,-158r33,0v7,-60,22,-122,101,-103r-6,32v-48,-14,-45,37,-53,71r36,0r-5,31r-37,0v-24,75,1,204,-116,186r5,-32v20,4,39,3,43,-18r27,-136r-33,0"},"\u00a7":{"d":"47,-166v-44,-45,16,-119,84,-92v26,10,43,29,44,63r-39,0v3,-39,-60,-49,-64,-9v19,60,121,43,121,118v0,28,-18,43,-39,52v12,12,19,23,20,46v3,76,-122,79,-142,20v-3,-9,-7,-20,-7,-32r39,0v-6,43,68,60,69,12v-16,-65,-120,-47,-125,-124v-2,-29,17,-45,39,-54xm132,-52v16,-5,31,-27,17,-44v-17,-21,-56,-34,-80,-50v-26,5,-29,49,-2,57"},"\u00a4":{"d":"49,-126v0,31,20,54,51,54v31,0,51,-23,51,-54v0,-32,-19,-54,-50,-54v-31,0,-52,22,-52,54xm152,-54v-20,24,-83,24,-104,1r-21,21r-20,-21r21,-22v-24,-19,-24,-83,0,-102r-21,-22r21,-21r20,20v21,-20,81,-22,102,0r21,-21r22,22r-20,21v22,24,22,81,-1,104r20,21r-20,20"},"\u201c":{"d":"138,-236v-13,5,-22,16,-22,32r22,0r0,48r-45,0v-4,-50,3,-92,45,-101r0,21xm67,-236v-13,4,-23,15,-22,32r22,0r0,48r-45,0v-4,-50,2,-93,45,-101r0,21","w":159},"\u00ab":{"d":"89,-78r0,-40r56,-44r0,37r-34,27r34,27r0,38xm18,-78r0,-40r56,-44r0,37r-34,27r34,27r0,38","w":166},"\u2039":{"d":"18,-78r0,-40r56,-44r0,37r-34,27r34,27r0,38","w":93},"\u203a":{"d":"75,-118r0,40r-56,45r0,-38r35,-27r-35,-27r0,-37","w":93},"\u2013":{"d":"0,-117r180,0r0,39r-180,0r0,-39","w":180},"\u2020":{"d":"80,-152r-69,0r0,-34r69,0r0,-71r41,0r0,71r68,0r0,34r-68,0r0,210r-41,0r0,-210"},"\u2021":{"d":"80,-13r-69,0r0,-35r69,0r0,-104r-69,0r0,-34r69,0r0,-71r41,0r0,71r68,0r0,34r-68,0r0,104r68,0r0,35r-68,0r0,71r-41,0r0,-71"},"\u00b7":{"d":"50,-81v-36,-1,-34,-55,0,-54v16,1,26,10,27,26v0,13,-13,29,-27,28","w":100},"\u00b6":{"d":"11,-189v-3,-83,97,-67,177,-68r0,315r-29,0r0,-292r-42,0r0,292r-28,0r0,-182v-46,-1,-76,-22,-78,-65","w":216},"\u2022":{"d":"90,-64v-39,0,-64,-26,-64,-65v0,-38,26,-64,64,-64v39,0,64,25,64,64v0,39,-25,65,-64,65","w":180},"\u201a":{"d":"28,32v13,-5,22,-16,22,-32r-22,0r0,-49r45,0v4,50,-2,94,-45,102r0,-21","w":100},"\u201e":{"d":"93,32v13,-4,23,-15,22,-32r-22,0r0,-49r45,0v3,50,0,95,-45,102r0,-21xm22,32v13,-5,22,-16,22,-32r-22,0r0,-49r45,0v4,50,-2,94,-45,102r0,-21","w":159},"\u201d":{"d":"93,-176v12,-5,23,-15,22,-32r-22,0r0,-49r45,0v3,49,0,94,-45,101r0,-20xm22,-176v12,-5,22,-16,22,-32r-22,0r0,-49r45,0v4,50,-2,93,-45,101r0,-20","w":159},"\u00bb":{"d":"149,-118r0,40r-56,45r0,-38r34,-27r-34,-27r0,-37xm77,-118r0,40r-55,45r0,-38r34,-27r-34,-27r0,-37","w":166},"\u2026":{"d":"275,-49r50,0r0,49r-50,0r0,-49xm155,-49r50,0r0,49r-50,0r0,-49xm35,-49r50,0r0,49r-50,0r0,-49","w":360},"\u2030":{"d":"330,-97v-31,0,-34,79,0,80v24,0,23,-27,23,-51v0,-15,-8,-29,-23,-29xm384,-55v0,35,-18,60,-54,60v-36,0,-54,-25,-54,-60v0,-37,16,-63,54,-63v37,0,54,25,54,63xm207,-97v-31,0,-34,79,0,80v24,0,24,-26,23,-51v-1,-15,-8,-29,-23,-29xm261,-55v-1,36,-18,60,-54,60v-35,0,-52,-24,-53,-60v0,-38,16,-63,53,-63v37,0,54,25,54,63xm203,-261r26,0r-144,270r-26,0xm83,-155v33,-1,32,-80,0,-80v-32,2,-33,79,0,80xm30,-193v1,-37,15,-64,53,-64v37,0,54,26,54,64v0,34,-17,60,-54,59v-36,0,-53,-23,-53,-59","w":413},"\u00bf":{"d":"124,-191r0,45r-48,0r0,-45r48,0xm98,38v30,0,43,-23,43,-52r42,0v-2,54,-33,86,-87,86v-47,0,-77,-24,-78,-71v-3,-65,67,-56,63,-121r39,0v3,52,-25,68,-49,93v-19,20,-5,65,27,65"},"\u00b4":{"d":"49,-264r48,0r-51,52r-30,0","w":86},"\u02c6":{"d":"18,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":86},"\u02dc":{"d":"17,-257v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":86},"\u00af":{"d":"-8,-225r0,-23r103,0r0,23r-103,0","w":86},"\u02d8":{"d":"6,-263v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":86},"\u02d9":{"d":"23,-217r0,-39r41,0r0,39r-41,0","w":86},"\u00a8":{"d":"-8,-217r0,-39r41,0r0,39r-41,0xm95,-256r0,39r-41,0r0,-39r41,0","w":86},"\u02da":{"d":"44,-265v-12,0,-22,10,-22,22v0,12,9,23,22,22v12,0,21,-10,21,-22v0,-12,-10,-22,-21,-22xm81,-243v0,23,-14,37,-37,37v-24,0,-38,-14,-38,-37v0,-23,15,-37,38,-37v22,0,37,14,37,37","w":86},"\u00b8":{"d":"84,47v1,38,-54,38,-81,25r7,-14v13,6,45,11,45,-9v1,-16,-20,-16,-31,-10r-7,-7r23,-32r18,0v-5,8,-13,13,-17,22v21,-5,43,3,43,25","w":86},"\u02dd":{"d":"91,-264r49,0r-51,52r-30,0xm20,-264r49,0r-52,52r-30,0","w":86},"\u02db":{"d":"17,48v2,-26,22,-34,41,-48r20,0v-16,13,-32,22,-34,46v-1,21,28,20,33,4r14,3v-3,35,-77,39,-74,-5","w":86},"\u02c7":{"d":"63,-212r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":86},"\u2014":{"d":"47,-117r266,0r0,39r-266,0r0,-39","w":360},"\u00aa":{"d":"68,-257v25,0,50,7,51,33r0,55v-2,9,6,9,12,7r0,25v-16,4,-38,5,-39,-15v-22,32,-107,17,-82,-32v12,-25,62,-12,78,-33v1,-14,-10,-17,-22,-17v-13,0,-25,3,-25,15r-31,0v4,-27,27,-38,58,-38xm37,-170v11,25,63,13,51,-23v-14,10,-50,0,-51,23","w":136},"\u00ba":{"d":"69,-257v40,0,65,24,65,62v0,37,-25,62,-65,61v-40,0,-64,-24,-64,-61v0,-37,24,-62,64,-62xm69,-158v23,0,33,-16,33,-37v0,-22,-11,-39,-33,-39v-21,0,-32,17,-32,39v0,21,10,36,32,37","w":136},"\u0142":{"d":"23,-115r-25,19r0,-25r25,-19r0,-117r41,0r0,85r24,-20r0,26r-24,19r0,147r-41,0r0,-115","w":86},"\u00f8":{"d":"143,-144v-40,-39,-107,6,-87,70v1,6,3,12,6,18xm107,5v-26,-2,-46,-8,-61,-20r-23,25r-11,-10r23,-26v-47,-60,-16,-171,72,-165v27,2,46,8,61,20r23,-25r11,10r-23,25v47,60,16,172,-72,166xm71,-42v40,39,107,-6,87,-70v-1,-6,-3,-12,-6,-18","w":213},"\u0153":{"d":"149,-94v0,-34,-13,-65,-48,-65v-35,0,-47,30,-47,65v0,37,11,67,47,67v36,0,48,-30,48,-67xm277,-109v6,-54,-77,-68,-91,-19v-2,6,-4,13,-4,19r95,0xm316,-59v-4,67,-122,88,-151,30v-12,24,-35,34,-67,34v-58,0,-85,-41,-85,-99v0,-57,31,-95,89,-97v32,0,53,11,65,31v21,-42,110,-38,132,1v11,20,19,46,19,77r-136,0v-9,59,82,74,93,23r41,0","w":326},"\u00df":{"d":"101,-231v-26,0,-37,18,-37,47r0,184r-41,0r0,-188v1,-49,30,-75,79,-75v43,0,74,22,76,65v1,28,-17,46,-37,55v31,4,49,29,49,61v0,59,-37,94,-103,86r0,-32v42,7,63,-17,62,-56v-1,-33,-29,-44,-62,-44r0,-27v30,0,50,-11,50,-39v0,-24,-12,-37,-36,-37","w":206},"\u00f7":{"d":"108,-43v36,0,32,53,0,52v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26xm134,-165v-1,14,-11,25,-26,26v-13,0,-26,-13,-26,-26v0,-14,12,-27,26,-26v13,0,27,13,26,26xm17,-73r0,-36r182,0r0,36r-182,0","w":216},"\u00be":{"d":"95,-146v0,-23,-21,-24,-42,-25r0,-21v19,2,35,-4,36,-22v-6,-30,-54,-20,-51,10r-29,0v2,-33,22,-49,55,-53v50,-6,74,58,31,74v53,21,26,88,-30,88v-38,0,-59,-20,-59,-56r29,0v0,18,11,31,30,31v15,0,30,-11,30,-26xm221,-261r28,0r-150,270r-28,0xm241,-62v-1,-18,2,-41,-1,-57r-42,57r43,0xm272,0r-31,0r0,-35r-70,0r0,-29r66,-90r35,0r0,92r17,0r0,27r-17,0r0,35","w":300},"\u00bc":{"d":"202,-261r28,0r-151,270r-28,0xm13,-229v25,0,45,-5,50,-25r25,0r0,156r-31,0r0,-110r-44,0r0,-21xm228,-62v-1,-18,2,-41,-1,-57r-42,57r43,0xm259,0r-31,0r0,-35r-71,0r0,-29r67,-90r35,0r0,92r17,0r0,27r-17,0r0,35","w":300},"\u00b9":{"d":"13,-229v25,0,44,-6,50,-25r25,0r0,156r-31,0r0,-110r-44,0r0,-21","w":129},"\u00d7":{"d":"20,-154r31,-20r57,57r57,-57r31,20r-63,63r63,63r-31,20r-57,-58r-57,58r-31,-20r62,-63","w":216},"\u00ae":{"d":"144,-17v66,0,103,-45,103,-112v0,-66,-38,-111,-103,-111v-65,0,-103,45,-103,111v0,67,37,112,103,112xm144,-263v80,0,132,51,132,134v0,83,-52,135,-132,135v-82,0,-132,-53,-132,-135v0,-83,52,-134,132,-134xm180,-159v-1,-27,-36,-20,-62,-21r0,44v26,-2,62,6,62,-23xm204,-158v0,26,-16,39,-39,41r42,66r-28,0r-38,-64r-23,0r0,64r-25,0r0,-150v51,0,111,-9,111,43","w":288},"\u00a6":{"d":"22,-238r36,0r0,90r-36,0r0,-90xm22,-58r36,0r0,90r-36,0r0,-90","w":79},"\u00bd":{"d":"287,-112v0,52,-62,50,-80,87r77,0r0,25r-114,0v0,-59,57,-62,82,-96v12,-16,-1,-39,-22,-39v-20,0,-26,16,-27,35r-31,0v0,-38,22,-61,59,-61v33,1,56,15,56,49xm13,-229v25,0,44,-6,50,-25r25,0r0,156r-31,0r0,-110r-44,0r0,-21xm200,-261r28,0r-150,270r-29,0","w":300},"\u2212":{"d":"17,-73r0,-36r182,0r0,36r-182,0","w":216},"\u00b1":{"d":"17,-37r182,0r0,37r-182,0r0,-37xm90,-182r36,0r0,45r73,0r0,37r-73,0r0,45r-36,0r0,-45r-73,0r0,-37r73,0r0,-45","w":216},"\u00fe":{"d":"114,-27v37,0,52,-29,52,-66v0,-36,-17,-65,-52,-66v-36,-1,-53,29,-52,66v1,36,15,66,52,66xm127,5v-28,0,-51,-11,-63,-29r0,93r-41,0r0,-326r41,0r0,95v12,-16,30,-29,56,-29v58,0,87,39,87,99v0,54,-25,97,-80,97","w":219},"\u00a9":{"d":"101,-129v-9,58,77,79,87,26r24,0v-6,33,-27,56,-63,56v-50,0,-73,-33,-77,-82v-7,-82,128,-109,140,-23r-24,0v-17,-53,-92,-31,-87,23xm144,-17v66,0,103,-45,103,-112v0,-66,-38,-111,-103,-111v-65,0,-103,45,-103,111v0,67,37,112,103,112xm144,-263v80,0,132,51,132,134v0,83,-52,135,-132,135v-82,0,-132,-53,-132,-135v0,-83,52,-134,132,-134","w":288},"\u00ac":{"d":"162,-109r-145,0r0,-37r182,0r0,107r-37,0r0,-70","w":216},"\u00b2":{"d":"125,-210v0,52,-62,50,-81,87r77,0r0,25r-113,0v-4,-68,74,-59,85,-112v0,-15,-13,-22,-26,-22v-19,0,-26,15,-26,34r-32,0v-1,-36,24,-59,59,-59v33,1,57,15,57,47","w":129},"\u00b3":{"d":"95,-146v0,-22,-19,-26,-42,-25r0,-21v19,0,35,-4,36,-22v-6,-30,-54,-20,-51,10r-29,0v2,-33,22,-49,55,-53v50,-6,74,58,31,74v53,21,26,88,-30,88v-38,0,-59,-20,-59,-56r29,0v0,18,11,31,30,31v15,0,31,-11,30,-26","w":129},"\u2122":{"d":"253,-152r41,-105r41,0r0,148r-27,0r-1,-116r-44,116r-20,0r-45,-116r0,116r-27,0r0,-148r42,0xm141,-234r-46,0r0,125r-28,0r0,-125r-46,0r0,-23r120,0r0,23","w":356},"\u00b0":{"d":"72,-237v-20,0,-34,14,-34,34v0,20,14,34,34,34v20,0,34,-14,34,-34v0,-20,-14,-34,-34,-34xm72,-149v-32,0,-54,-22,-54,-54v0,-32,22,-54,54,-54v32,0,54,22,54,54v0,32,-22,54,-54,54","w":144},"\u00b5":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-11,26,-58,44,-81,18r0,77r-41,0r0,-255r41,0r0,114v0,29,9,45,35,45","w":206},"\u20ac":{"d":"36,-164v10,-77,99,-122,168,-71r-16,33v-26,-26,-66,-33,-91,-4v-9,11,-16,25,-19,42r96,0r-10,23r-88,0r0,25r83,0r-9,22r-72,0v5,37,25,67,62,67v28,0,37,-10,54,-24r0,40v-69,43,-157,-5,-158,-83r-28,0r10,-22r16,0v0,-9,-2,-17,0,-25r-26,0r9,-23r19,0"},"\u2260":{"d":"98,-36r-29,55r-32,-16r20,-39r-44,0r0,-36r63,0r22,-42r-85,0r0,-37r103,0r28,-55r32,17r-20,38r44,0r0,37r-62,0r-22,42r84,0r0,36r-102,0","w":213},"\u221e":{"d":"47,-93v-1,40,53,33,68,10v4,-3,7,-7,10,-10v-13,-12,-26,-29,-50,-31v-18,-1,-28,14,-28,31xm175,-82v17,21,68,30,68,-11v0,-41,-53,-34,-68,-10r-10,10v3,3,6,8,10,11xm215,-157v38,0,56,25,59,63v4,65,-79,82,-114,39r-15,-15v-19,18,-34,39,-69,39v-39,0,-60,-25,-60,-63v0,-38,21,-63,59,-63v36,0,52,23,70,43v18,-19,34,-43,70,-43","w":290},"\u2264":{"d":"13,13r0,-37r187,0r0,37r-187,0xm13,-98r0,-37r187,-64r0,38r-137,44r137,42r0,39","w":213},"\u2265":{"d":"13,13r0,-37r187,0r0,37r-187,0xm13,-36r0,-39r137,-42r-137,-44r0,-38r187,64r0,37","w":213},"\u2202":{"d":"93,-24v38,0,49,-39,50,-79v-22,-37,-98,-30,-92,28v3,28,13,51,42,51xm14,-77v-6,-72,85,-102,129,-58v3,-47,-10,-95,-56,-95v-18,0,-32,8,-42,18r-21,-24v19,-14,32,-24,62,-24v72,0,97,59,97,131v0,70,-19,133,-91,133v-50,0,-74,-32,-78,-81","w":197},"\u2211":{"d":"9,77r0,-31r110,-151r-105,-148r0,-30r204,0r0,35r-153,0r101,143r-107,147r163,0r0,35r-213,0","w":231},"\u220f":{"d":"204,77r0,-325r-143,0r0,325r-38,0r0,-360r220,0r0,360r-39,0","w":265},"\u03c0":{"d":"204,-5v-30,18,-66,5,-66,-39r0,-95r-76,0r0,139r-36,0r0,-139r-26,0r0,-35r203,0r0,35r-29,0r0,97v0,16,17,16,30,10r0,27","w":212},"\u222b":{"d":"133,-283v32,-3,54,40,19,44v-18,2,-14,-18,-25,-23v-15,5,-6,38,-6,59r-1,219v-2,34,-13,61,-50,61v-32,0,-53,-39,-19,-44v17,-3,15,20,25,25v15,-5,6,-33,6,-53r0,-224v2,-36,13,-60,51,-64","w":216},"\u2126":{"d":"251,-147v0,52,-25,85,-66,97r0,17r66,0r0,33r-98,0r0,-68v35,-8,58,-34,58,-76v0,-48,-28,-80,-77,-80v-49,0,-77,33,-77,81v0,41,21,67,57,75r0,68r-97,0r0,-33r65,0r0,-17v-40,-13,-65,-44,-65,-96v0,-71,47,-114,117,-114v69,0,117,42,117,113","w":272},"\u2248":{"d":"203,-87v-5,33,-16,60,-53,60v-34,0,-60,-22,-92,-24v-14,-1,-21,12,-23,24r-25,0v5,-31,15,-61,52,-60v35,1,59,22,94,24v14,1,21,-13,23,-24r24,0xm151,-100v-42,2,-100,-54,-116,0r-24,0v4,-32,16,-60,51,-60v35,0,60,22,94,24v15,1,20,-12,23,-24r24,0v-4,33,-16,59,-52,60","w":213},"\u2206":{"d":"120,-212r-65,177r134,0xm3,0r98,-256r40,0r102,256r-240,0","w":245},"\u221a":{"d":"120,77r-37,0r-55,-115r-18,8r-14,-30r51,-24r48,102r61,-301r39,0","w":191},"\u25ca":{"d":"106,-233r-43,105r43,105r44,-105xm123,13r-34,0r-63,-141r63,-141r34,0r64,141","w":213},"\u0140":{"d":"23,-257r41,0r0,257r-41,0r0,-257xm83,-148r0,-39r41,0r0,39r-41,0","w":130},"\u00ed":{"d":"23,0r0,-186r41,0r0,186r-41,0xm55,-264r48,0r-51,52r-30,0","w":86},"\u00ee":{"d":"23,0r0,-186r41,0r0,186r-41,0xm18,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":86},"\u0129":{"d":"23,0r0,-186r41,0r0,186r-41,0xm17,-257v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":86},"\u00ef":{"d":"23,0r0,-186r41,0r0,186r-41,0xm-8,-217r0,-39r41,0r0,39r-41,0xm95,-256r0,39r-41,0r0,-39r41,0","w":86},"\u012b":{"d":"23,0r0,-186r41,0r0,186r-41,0xm-8,-225r0,-23r103,0r0,23r-103,0","w":86},"\u012f":{"d":"9,48v1,-27,20,-33,37,-48r-23,0r0,-186r41,0r-1,186v-14,13,-28,23,-30,46v-1,19,24,21,29,4r14,3v-5,18,-17,30,-42,27v-15,-2,-26,-12,-25,-32xm23,-257r41,0r0,39r-41,0r0,-39","w":86},"\u0135":{"d":"-8,40v22,5,31,-3,31,-26r0,-200r41,0r0,202v1,43,-27,65,-72,56r0,-32xm18,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":86},"\u0137":{"d":"77,18r47,0v2,36,0,64,-42,62r0,-13v9,-2,16,-4,17,-13r-22,0r0,-36xm23,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0r0,-257","w":193},"\u013a":{"d":"23,-257r41,0r0,257r-41,0r0,-257xm55,-334r48,0r-51,52r-30,0","w":86},"\u013e":{"d":"94,-257r45,0r-30,51r-27,0xm23,-257r41,0r0,257r-41,0r0,-257","w":114},"\u013c":{"d":"20,18r47,0v2,36,-1,64,-42,62r0,-13v9,-2,15,-4,16,-13r-21,0r0,-36xm23,-257r41,0r0,257r-41,0r0,-257","w":86},"\u0144":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42xm116,-264r48,0r-51,52r-30,0","w":206},"\u0148":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42xm124,-212r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":206},"\u00f1":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42xm77,-257v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":206},"\u0146":{"d":"79,18r47,0v2,35,1,65,-41,62r0,-13v9,-2,14,-4,16,-13r-22,0r0,-36xm108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42","w":206},"\u00f2":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm93,-264r33,52r-30,0r-51,-52r48,0","w":213},"\u00f3":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm119,-264r48,0r-51,52r-30,0","w":213},"\u00f4":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm82,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":213},"\u00f5":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm81,-257v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":213},"\u00f6":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm56,-217r0,-39r41,0r0,39r-41,0xm159,-256r0,39r-41,0r0,-39r41,0","w":213},"\u014d":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm56,-225r0,-23r103,0r0,23r-103,0","w":213},"\u014f":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm70,-263v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":213},"\u0151":{"d":"201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm157,-264r49,0r-51,52r-30,0xm86,-264r49,0r-52,52r-30,0","w":213},"\u0155":{"d":"131,-150v-43,-10,-68,19,-68,61r0,89r-41,0r0,-186r38,0v1,11,-2,27,1,36v8,-26,33,-46,70,-40r0,40xm62,-264r48,0r-51,52r-30,0","w":126,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"\u0157":{"d":"19,18r47,0v2,36,-1,64,-42,62r0,-13v9,-2,14,-4,16,-13r-21,0r0,-36xm131,-150v-43,-10,-68,19,-68,61r0,89r-41,0r0,-186r38,0v1,11,-2,27,1,36v8,-26,33,-46,70,-40r0,40","w":126,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"\u0159":{"d":"131,-150v-43,-10,-68,19,-68,61r0,89r-41,0r0,-186r38,0v1,11,-2,27,1,36v8,-26,33,-46,70,-40r0,40xm96,-212r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":126,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u0149":-6,"\u0146":-6,"\u00f1":-6,"\u0148":-6,"\u0144":-6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u00eb":6,"\u011b":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u010f":6,"\u00e7":6,"\u010b":6,"\u010d":6,"\u0109":6,"\u0107":6,"q":6,"o":6,"n":-6,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"\u015b":{"d":"158,-94v56,56,-21,119,-97,95v-29,-8,-49,-25,-49,-61r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-31,34,-5,38v28,11,64,7,83,26xm102,-264r48,0r-51,52r-30,0","w":186},"\u015d":{"d":"158,-94v56,56,-21,119,-97,95v-29,-8,-49,-25,-49,-61r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-31,34,-5,38v28,11,64,7,83,26xm71,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":186},"\u0161":{"d":"158,-94v56,56,-21,119,-97,95v-29,-8,-49,-25,-49,-61r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-31,34,-5,38v28,11,64,7,83,26xm115,-212r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":186},"\u015f":{"d":"130,47v1,37,-53,39,-80,25r6,-14v13,6,45,11,46,-9v0,-15,-20,-17,-31,-10r-8,-7r20,-27v-41,-5,-70,-21,-71,-65r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-30,31,-5,38v42,12,102,9,102,65v0,43,-36,57,-77,60v-3,6,-12,12,-12,17v21,-5,41,3,42,25","w":186},"\u0219":{"d":"69,18r47,0v2,36,-1,64,-42,62r0,-13v9,-2,15,-4,16,-13r-21,0r0,-36xm158,-94v56,56,-21,119,-97,95v-29,-8,-49,-25,-49,-61r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-31,34,-5,38v28,11,64,7,83,26","w":186},"\u0165":{"d":"120,-257r45,0r-30,51r-27,0xm112,0v-42,6,-78,1,-78,-46r0,-110r-31,0r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,111v0,16,21,16,37,13r0,32","w":140},"\u0163":{"d":"50,18r47,0v2,36,0,64,-42,62r0,-13v9,-2,16,-4,17,-13r-22,0r0,-36xm112,0v-42,6,-78,1,-78,-46r0,-110r-31,0r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,111v0,16,21,16,37,13r0,32","w":119},"\u0167":{"d":"112,0v-42,6,-78,1,-78,-46r0,-55r-34,0r0,-24r34,0r0,-31r-31,0r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,31r40,0r0,24r-40,0v3,34,-15,82,37,69r0,32","w":119},"\u00f9":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm89,-264r33,52r-30,0r-51,-52r48,0","w":206},"\u00fa":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm120,-264r48,0r-51,52r-30,0","w":206},"\u00fb":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm78,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":206},"\u0169":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm77,-257v26,-2,59,32,70,-2r20,0v-4,23,-14,41,-40,41v-24,0,-57,-29,-67,2r-20,0v4,-21,13,-39,37,-41","w":206},"\u00fc":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm52,-217r0,-39r41,0r0,39r-41,0xm155,-256r0,39r-41,0r0,-39r41,0","w":206},"\u016b":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm54,-225r0,-23r103,0r0,23r-103,0","w":206},"\u016d":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm68,-263v4,36,71,35,75,0r21,0v0,48,-66,65,-100,38v-10,-9,-16,-21,-17,-38r21,0","w":206},"\u016f":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm106,-265v-12,0,-22,10,-22,22v0,12,9,23,22,22v12,0,21,-10,21,-22v0,-12,-10,-22,-21,-22xm143,-243v0,23,-14,37,-37,37v-24,0,-38,-14,-38,-37v0,-23,15,-37,38,-37v22,0,37,14,37,37","w":206},"\u0171":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm156,-264r49,0r-51,52r-30,0xm85,-264r49,0r-52,52r-30,0","w":206},"\u0175":{"d":"5,-186r43,0r37,139r35,-139r42,0r34,139r38,-139r41,0r-58,186r-42,0r-35,-138r-35,138r-43,0xm117,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":280,"k":{".":20,",":20}},"\u00fd":{"d":"19,37v32,12,49,-11,53,-38r-71,-185r45,0r49,139r48,-139r42,0r-82,220v-9,32,-41,46,-84,38r0,-35xm112,-264r48,0r-51,52r-30,0","w":186,"k":{".":33,",":33}},"\u0177":{"d":"19,37v32,12,49,-11,53,-38r-71,-185r45,0r49,139r48,-139r42,0r-82,220v-9,32,-41,46,-84,38r0,-35xm69,-212r-33,0r38,-52r40,0r39,52r-33,0r-26,-32","w":186,"k":{".":33,",":33}},"\u00ff":{"d":"19,37v32,12,49,-11,53,-38r-71,-185r45,0r49,139r48,-139r42,0r-82,220v-9,32,-41,46,-84,38r0,-35xm44,-217r0,-39r41,0r0,39r-41,0xm147,-256r0,39r-41,0r0,-39r41,0","w":186,"k":{".":33,",":33}},"\u017a":{"d":"15,-186r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0r0,-32xm107,-264r48,0r-51,52r-30,0","w":180},"\u017e":{"d":"15,-186r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0r0,-32xm111,-212r-40,0r-38,-52r33,0r25,33r25,-33r34,0","w":180},"\u017c":{"d":"15,-186r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0r0,-32xm70,-217r0,-39r41,0r0,39r-41,0","w":180},"\u2113":{"d":"89,-97v1,31,-8,73,23,73v11,1,21,-6,33,-14r13,21v-34,36,-111,29,-109,-28r0,-25v-8,6,-13,14,-22,19r-14,-22r35,-30v0,-71,-11,-155,58,-157v30,0,49,21,48,52v-2,51,-31,79,-65,111xm89,-131v20,-20,33,-43,33,-75v0,-13,-5,-26,-16,-27v-28,9,-13,68,-17,102","w":180},"\u212e":{"d":"16,-93v-9,-108,149,-134,179,-40v4,12,7,25,7,40r-145,0r0,65v35,37,104,21,121,-22r13,8v-17,28,-39,48,-82,48v-59,0,-88,-39,-93,-99xm161,-106r0,-52v-28,-28,-77,-30,-104,0r0,52r104,0","w":216},"\u0173":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-22,0v-15,13,-31,22,-32,46v-1,20,26,21,31,4r14,3v-3,34,-73,39,-70,-5v2,-27,20,-34,39,-48v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45","w":206},"\u02c9":{"d":"-8,-225r0,-23r103,0r0,23r-103,0","w":86},"\u021b":{"d":"50,18r47,0v2,36,0,64,-42,62r0,-13v9,-2,16,-4,17,-13r-22,0r0,-36xm112,0v-42,6,-78,1,-78,-46r0,-110r-31,0r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,111v0,16,21,16,37,13r0,32","w":119},"\u00ad":{"d":"18,-117r104,0r0,39r-104,0r0,-39","w":140},"\u2219":{"d":"50,-81v-36,-1,-34,-55,0,-54v16,1,26,10,27,26v0,13,-13,29,-27,28","w":100},"\u2215":{"d":"91,-261r29,0r-151,270r-28,0","w":60},"\u0394":{"d":"120,-212r-65,177r134,0xm3,0r98,-256r40,0r102,256r-240,0","w":245},"\u03a9":{"d":"251,-147v0,52,-25,85,-66,97r0,17r66,0r0,33r-98,0r0,-68v35,-8,58,-34,58,-76v0,-48,-28,-80,-77,-80v-49,0,-77,33,-77,81v0,41,21,67,57,75r0,68r-97,0r0,-33r65,0r0,-17v-40,-13,-65,-44,-65,-96v0,-71,47,-114,117,-114v69,0,117,42,117,113","w":272},"\u03bc":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-11,26,-58,44,-81,18r0,77r-41,0r0,-255r41,0r0,114v0,29,9,45,35,45","w":206},"\uf8ff":{"d":"80,-42r0,-24r20,0r0,24r-20,0xm138,-172v0,42,-47,39,-40,88v-7,-1,-19,3,-18,-6v-5,-44,40,-47,40,-81v0,-16,-13,-30,-28,-30v-18,0,-27,14,-29,34r-18,-3v2,-31,19,-48,48,-49v26,-1,45,21,45,47xm166,-18r0,-222r-148,0r0,222r148,0xm184,-258r0,258r-184,0r0,-258r184,0","w":184}}});
;
$(document).ready(function() {

	$('.views-exposed-widgets .views-exposed-widget:last').addClass('buttons');
	
	$('.views-exposed-widgets .form-select').change(function(){
		$(this).parents('form').submit();
	});
	
	
	
	$('.collapsed .fieldset-content').hide();
	$('.collapsible .fieldset-title').click(function(){
		$(this).next('.collapsible .fieldset-content').toggle();
		return false;
	});
	
	
	$('.more-text-toggle').click(function(){
		$(this).parent('p').next('.more-text').toggle();	
		return false;
	});
	
	
	//open perth website
	$("#block-block-9").click(function(){
		window.location = 'http://www.perth.wa.gov.au/';
	})
	
	//login
	$('.sign-in').click(function(){
		$('.member-bar').slideToggle();
	});
	
	
	//Jselect
	$('.jselect ul').hover(function(){
		$(this).addClass('open');
	},function(){	
	$(this).removeClass('open');
		
		
//		
//		$thisone = $(this).find('ul',0);		
//		if ( $thisone.is(':visible')){
//			$thisone.hide();
//		} else {
//			$thisone.show();
//		}
	});

	//search box placeholder
	$('#edit-search-block-form-1').val('Search');
	$('#edit-search-block-form-1').focus(function(){
                $(this).val('');
        });

	
});

;
// $Id$

Drupal.behaviors.tao = function (context) {
  $('fieldset.collapsible:not(.tao-processed) > legend > .fieldset-title').each(function() {
    var fieldset = $(this).parents('fieldset').eq(0);
    fieldset.addClass('tao-processed');

    // Expand any fieldsets containing errors.
    if ($('input.error, textarea.error, select.error', fieldset).size() > 0) {
      $(fieldset).removeClass('collapsed');
    }

    // Add a click handler for toggling fieldset state.
    $(this).click(function() {
      if (fieldset.is('.collapsed')) {
        $(fieldset).removeClass('collapsed').children('.fieldset-content').show();
      }
      else {
        $(fieldset).addClass('collapsed').children('.fieldset-content').hide();
      }
      return false;
    });
  });
};
;

