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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: ajax_load.js,v 1.11 2009/09/20 14:22:29 markuspetrux Exp $

(function ($) {

Drupal.AjaxLoad = Drupal.AjaxLoad || { externalScripts: [], loadPending: [] };

/**
 * Load JavaScript and CSS files and data. 
 */
Drupal.AjaxLoad.loadFiles = function (target, response) {
  // Handle scripts.

  // Initialize the list of currently loaded external scripts.
  if (Drupal.AjaxLoad.externalScripts.length < 1) {
    $('script[src]').each(function() {
      Drupal.AjaxLoad.externalScripts.push($(this).attr('src'));
    });
  }
  // See if we have any settings to extend. Do this first so that behaviors
  // can access the new settings easily.
  if (response.scripts) {
    // Each Ajax operation needs its own counter.
    var index = Drupal.AjaxLoad.loadPending.length;
    Drupal.AjaxLoad.loadPending[index] = 0;
    if (!response.__customSettings && response.scripts.setting) {
      $.extend(Drupal.settings, response.scripts.setting);
    }
    // Inline scripts will be handled separately.
    var types = ['core', 'module', 'theme'];
    $.each(types, function (i, type) {
      if (response.scripts[type]) {
        $.each(response.scripts[type], function (src, data) {
          // Load scripts.
          src = Drupal.settings.basePath + src;
          // Test if the script already exists.
          var found = false;
          for (var j = 0; j < Drupal.AjaxLoad.externalScripts.length; j++) {
            if (Drupal.AjaxLoad.externalScripts[j].indexOf(src) == 0) {
              found = true;
              break;
            }
          }
          if (!found) {
            Drupal.AjaxLoad.loadPending[index]++;
            $.getScript(src, function () {
              Drupal.AjaxLoad.externalScripts.push(src);
              Drupal.AjaxLoad.loadComplete(index, target, response);
            });
          }
        });
      }
    });
    // Ensure Drupal behaviors are attached to new content, even when no
    // new external scripts have been loaded.
    if (Drupal.AjaxLoad.loadPending[index] == 0) {
      Drupal.attachBehaviors(target);
      // Ensure inline scripts are parsed after all external scripts have loaded.
      Drupal.AjaxLoad.loadInline(response);
    }
  }
  if (response.css) {
    // Handle stylesheets.
    var types = ['module', 'theme'];
    $.each(response.css, function (media, files) {
      $.each(types, function (i, type) {
        if (files[type]) {
          $.each(files[type], function (src, data) {
            src = Drupal.settings.basePath + src;
            // Test if the stylesheet already exists.
            if (!$('link[href*=' + src + ']').size()) {
              $('<link type="text/css" rel="stylesheet" media="' + media + '" href="' + src + '" />').appendTo('head');
            }
          });
        }
      });
    });
  }
};

/**
 * When all scripts have loaded, attach behaviors. 
 */
Drupal.AjaxLoad.loadInline = function(response) {
  // Handle inline scripts.
  if (response.scripts.inline) {
    $.each(response.scripts.inline, function (i, script) {
      // document.write calls would mess things up.
      if (script.code.indexOf('document.write') == -1) {
        eval(script.code);
      }
    });
  }
};

/**
 * When all scripts have loaded, attach behaviors. 
 */
Drupal.AjaxLoad.loadComplete = function(index, target, response) {
  Drupal.AjaxLoad.loadPending[index]--;
  if (Drupal.AjaxLoad.loadPending[index] == 0) {
    Drupal.attachBehaviors(target);
    // Ensure inline scripts are parsed after all external scripts have loaded.
    Drupal.AjaxLoad.loadInline(response);
  }
};

})(jQuery);
;
// $Id: jquerymenu.js,v 1.7 2010/05/05 07:50:55 aaronhawkins Exp $
Drupal.behaviors.jquerymenu = function(context) {
  jqm_showit = function() {
    $(this).children('.jqm_link_edit').fadeIn();
  }
  jqm_hideit = function() {
    $(this).children('.jqm_link_edit').fadeOut();
  }
  $('ul.jquerymenu li').hover(jqm_showit, jqm_hideit);

  $('ul.jquerymenu:not(.jquerymenu-processed)', context).addClass('jquerymenu-processed').each(function(){
    $(this).find("li.parent span.parent").click(function(){
      momma = $(this).parent();
      if ($(momma).hasClass('closed')){
        $($(this).siblings('ul').children()).hide().fadeIn('3000');
        $(momma).children('ul').slideDown('700');
        $(momma).removeClass('closed').addClass('open');
        $(this).removeClass('closed').addClass('open');
      }
      else{
        $(momma).children('ul').slideUp('700');
        $($(this).siblings('ul').children()).fadeOut('3000');
        $(momma).removeClass('open').addClass('closed');
        $(this).removeClass('open').addClass('closed');
      }
    });
  });
};
// $Id: og.js,v 1.9.2.3 2010/01/24 14:44:56 amitaibu Exp $

// Content type form
Drupal.behaviors.og_content_type = function() {
  // Disable the group limit textarea if the content type is not a standard group post
  $('input[name="og_content_type_usage"]').click(function(){
    if (!$('#edit-og-content-type-usage-group-post-standard').attr('checked')) {
      $('#edit-og-max-groups').attr('disabled','disabled');
    } else {
      $('#edit-og-max-groups').removeAttr('disabled');
    }
  });
  
  // Initial check to see if content type is standard group post
  if (!$('#edit-og-content-type-usage-group-post-standard').attr('checked')) {
    $('#edit-og-max-groups').attr('disabled','disabled');
  };
}


Drupal.verticalTabs = Drupal.verticalTabs || {};

Drupal.verticalTabs.og_nodeapi = function() {
  var values = [];
  $('.vertical-tabs-og_nodeapi #edit-og-groups :selected')
    .each(function (i, selected) {
      values[i] = $(selected).text();
    });

  return values.join(', ');
}

Drupal.verticalTabs.og = function() {
  var type = $('.vertical-tabs-og input[type=radio]:checked').val();
  
  switch (type) {
    case 'group':
      return Drupal.t('Group node');
      break;
      
    case 'omitted':
      return Drupal.t('May not be posted into a group.');
      break;
      
    case 'group_post_standard':
      return Drupal.t('Standard group post');
      break;
      
    case 'group_post_wiki':
      return Drupal.t('Wiki group post');
      break;
  }
}
;
// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/*
 * 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}})());;
// $Id:



/* ---- Initialise all popups on load ---- */



$(
  function(){
    $('.popup-element').popup();
  }
);



/* ---- Popup object ---- */



function PopupObject(element){

  this.element = element;
  this.title = element.children('.popup-title-container').children('.popup-title');
  this.body = $($('.popup-body', element)[0]);
  this.leaveTimeout = false;
  this.visible = false;

  if (this.body.length){
    var opacity = this.body.attr('class').match(/popup-opacity-([0-9]*\.?[0-9]*)/);
    this.opacity = opacity == null
      ? false
      : opacity[1];
  }

  if (!this.element.hasClass('popup-menu-flat-element')){
    this.initEvents();
  }
}



PopupObject.prototype.initEvents = function(){

  var thisObject = this;

  // Trigger immediate hiding of popup
  var handler = function(event){
    thisObject.hide();
  }
  this.element.unbind('hide', handler).bind('hide', handler);

  if (this.element.hasClass('popup-hover-activate-element')){

    // Trigger showing of popup
    var handler = function(event){
      if (!thisObject.visible){
        thisObject.show();
      }
    }
    this.title.unbind('mouseenter', handler).bind('mouseenter', handler);

    // Trigger delayed hiding of popup
    var handler = function(event){
      thisObject.leaveTimeout = setTimeout(
        function(){
          thisObject.hide();
        }, Drupal.settings.popup.hoverLinger
      );

    }
    this.element.unbind('mouseleave', handler).bind('mouseleave', handler);

    // Handle the cancellation of hiding
    var handler = function(){
      if (thisObject.leaveTimeout){
        clearTimeout(thisObject.leaveTimeout);
        thisObject.leaveTimeout = false;
      }
    }
    this.element.unbind('cancelHide', handler).bind('cancelHide', handler);

    // Cancel hiding
    var handler = function(event){
      thisObject.element.parents().andSelf().trigger('cancelHide');
    }
    this.element.unbind('mouseenter', handler).bind('mouseenter', handler);

  }

  if (this.element.hasClass('popup-click-activate-element')){

    var handler = function(event){
      if (thisObject.visible){
        thisObject.hide();
      } else {
        thisObject.show();
      }
    }
    this.title.unbind('click', handler).click(handler);

    if (this.body.hasClass('popup-close-button')){
      this.body.prepend('<a href="#" class="popup-close-button popup-generated-close-button"><span>[x]</span></a>');
    }
  }

  $('a.popup-close-button').click(
    function(){
      $($(this).parents('.popup-element')[0]).trigger('hide');
      return false;
    }
  );
}



PopupObject.prototype.show = function(){

  var thisObject = this;
  var zIndex = (this.element.parents('.popup-element').length + 1) * 500;

  thisObject.element.css('position', 'relative').addClass('popped-up-element');
  thisObject.body.css('z-index', zIndex).addClass('popped-up-body');
  thisObject.title.addClass('popped-up-title');
  thisObject.visible = true;

  switch(true){

    case this.body.hasClass('popup-slide-effect'): 
      this.body.slideDown("medium");
    break;

    case this.body.hasClass('popup-fade-effect'):
      if (this.opacity){
        this.body.fadeTo("medium", this.opacity);
      } else {
        this.body.fadeIn("medium");
      }
    break;

    case this.body.hasClass('popup-slide-fade-effect'): 
      this.body.animate(
        {
          height: 'show',
          opacity: (this.opacity ? this.opacity : 'show')
        }, 'medium'
      );
    break;

    default:
      if (this.opacity){
        this.body.css('opacity', this.opacity);
      }
      this.body.show();
  }

}



PopupObject.prototype.hide = function(){

  var thisObject = this;

  var restoreState = function(){
    thisObject.element.css('position', 'static').removeClass('popped-up-element');
    thisObject.body.css('z-index', '').removeClass('popped-up-body');
    thisObject.title.removeClass('popped-up-title');
    thisObject.visible = false;
  }

  switch(true){

    case this.body.hasClass('popup-slide-effect'): this.body.slideUp('medium', restoreState); break;

    case this.body.hasClass('popup-fade-effect'): this.body.fadeOut('medium', restoreState); break;

    case this.body.hasClass('popup-slide-fade-effect'):
      this.body.animate(
        {
          height: 'hide',
          opacity: 'hide'
        }, 'medium', 
        restoreState
      ); 
      break;

    default: 
      this.body.hide();
      restoreState();
  }

}



/* ---- JQuery interface ---- */



jQuery.fn.popup = function(){
  return this.each(
    function(){
      var thisObject = $(this);
      if (!thisObject.popupObject){
        thisObject.popupObject = new PopupObject($(this));
      }
    }
  );
}


;
// Copyright 2006 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
document.createElement("canvas").getContext||(function(){var s=Math,j=s.round,F=s.sin,G=s.cos,V=s.abs,W=s.sqrt,k=10,v=k/2;function X(){return this.context_||(this.context_=new H(this))}var L=Array.prototype.slice;function Y(b,a){var c=L.call(arguments,2);return function(){return b.apply(a,c.concat(L.call(arguments)))}}var M={init:function(b){if(/MSIE/.test(navigator.userAgent)&&!window.opera){var a=b||document;a.createElement("canvas");a.attachEvent("onreadystatechange",Y(this.init_,this,a))}},init_:function(b){b.namespaces.g_vml_||
b.namespaces.add("g_vml_","urn:schemas-microsoft-com:vml","#default#VML");b.namespaces.g_o_||b.namespaces.add("g_o_","urn:schemas-microsoft-com:office:office","#default#VML");if(!b.styleSheets.ex_canvas_){var a=b.createStyleSheet();a.owningElement.id="ex_canvas_";a.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}g_vml_\\:*{behavior:url(#default#VML)}g_o_\\:*{behavior:url(#default#VML)}"}var c=b.getElementsByTagName("canvas"),d=0;for(;d<c.length;d++)this.initElement(c[d])},
initElement:function(b){if(!b.getContext){b.getContext=X;b.innerHTML="";b.attachEvent("onpropertychange",Z);b.attachEvent("onresize",$);var a=b.attributes;if(a.width&&a.width.specified)b.style.width=a.width.nodeValue+"px";else b.width=b.clientWidth;if(a.height&&a.height.specified)b.style.height=a.height.nodeValue+"px";else b.height=b.clientHeight}return b}};function Z(b){var a=b.srcElement;switch(b.propertyName){case "width":a.style.width=a.attributes.width.nodeValue+"px";a.getContext().clearRect();
break;case "height":a.style.height=a.attributes.height.nodeValue+"px";a.getContext().clearRect();break}}function $(b){var a=b.srcElement;if(a.firstChild){a.firstChild.style.width=a.clientWidth+"px";a.firstChild.style.height=a.clientHeight+"px"}}M.init();var N=[],B=0;for(;B<16;B++){var C=0;for(;C<16;C++)N[B*16+C]=B.toString(16)+C.toString(16)}function I(){return[[1,0,0],[0,1,0],[0,0,1]]}function y(b,a){var c=I(),d=0;for(;d<3;d++){var f=0;for(;f<3;f++){var h=0,g=0;for(;g<3;g++)h+=b[d][g]*a[g][f];c[d][f]=
h}}return c}function O(b,a){a.fillStyle=b.fillStyle;a.lineCap=b.lineCap;a.lineJoin=b.lineJoin;a.lineWidth=b.lineWidth;a.miterLimit=b.miterLimit;a.shadowBlur=b.shadowBlur;a.shadowColor=b.shadowColor;a.shadowOffsetX=b.shadowOffsetX;a.shadowOffsetY=b.shadowOffsetY;a.strokeStyle=b.strokeStyle;a.globalAlpha=b.globalAlpha;a.arcScaleX_=b.arcScaleX_;a.arcScaleY_=b.arcScaleY_;a.lineScale_=b.lineScale_}function P(b){var a,c=1;b=String(b);if(b.substring(0,3)=="rgb"){var d=b.indexOf("(",3),f=b.indexOf(")",d+
1),h=b.substring(d+1,f).split(",");a="#";var g=0;for(;g<3;g++)a+=N[Number(h[g])];if(h.length==4&&b.substr(3,1)=="a")c=h[3]}else a=b;return{color:a,alpha:c}}function aa(b){switch(b){case "butt":return"flat";case "round":return"round";case "square":default:return"square"}}function H(b){this.m_=I();this.mStack_=[];this.aStack_=[];this.currentPath_=[];this.fillStyle=this.strokeStyle="#000";this.lineWidth=1;this.lineJoin="miter";this.lineCap="butt";this.miterLimit=k*1;this.globalAlpha=1;this.canvas=b;
var a=b.ownerDocument.createElement("div");a.style.width=b.clientWidth+"px";a.style.height=b.clientHeight+"px";a.style.overflow="hidden";a.style.position="absolute";b.appendChild(a);this.element_=a;this.lineScale_=this.arcScaleY_=this.arcScaleX_=1}var i=H.prototype;i.clearRect=function(){this.element_.innerHTML=""};i.beginPath=function(){this.currentPath_=[]};i.moveTo=function(b,a){var c=this.getCoords_(b,a);this.currentPath_.push({type:"moveTo",x:c.x,y:c.y});this.currentX_=c.x;this.currentY_=c.y};
i.lineTo=function(b,a){var c=this.getCoords_(b,a);this.currentPath_.push({type:"lineTo",x:c.x,y:c.y});this.currentX_=c.x;this.currentY_=c.y};i.bezierCurveTo=function(b,a,c,d,f,h){var g=this.getCoords_(f,h),l=this.getCoords_(b,a),e=this.getCoords_(c,d);Q(this,l,e,g)};function Q(b,a,c,d){b.currentPath_.push({type:"bezierCurveTo",cp1x:a.x,cp1y:a.y,cp2x:c.x,cp2y:c.y,x:d.x,y:d.y});b.currentX_=d.x;b.currentY_=d.y}i.quadraticCurveTo=function(b,a,c,d){var f=this.getCoords_(b,a),h=this.getCoords_(c,d),g={x:this.currentX_+
0.6666666666666666*(f.x-this.currentX_),y:this.currentY_+0.6666666666666666*(f.y-this.currentY_)};Q(this,g,{x:g.x+(h.x-this.currentX_)/3,y:g.y+(h.y-this.currentY_)/3},h)};i.arc=function(b,a,c,d,f,h){c*=k;var g=h?"at":"wa",l=b+G(d)*c-v,e=a+F(d)*c-v,m=b+G(f)*c-v,r=a+F(f)*c-v;if(l==m&&!h)l+=0.125;var n=this.getCoords_(b,a),o=this.getCoords_(l,e),q=this.getCoords_(m,r);this.currentPath_.push({type:g,x:n.x,y:n.y,radius:c,xStart:o.x,yStart:o.y,xEnd:q.x,yEnd:q.y})};i.rect=function(b,a,c,d){this.moveTo(b,
a);this.lineTo(b+c,a);this.lineTo(b+c,a+d);this.lineTo(b,a+d);this.closePath()};i.strokeRect=function(b,a,c,d){var f=this.currentPath_;this.beginPath();this.moveTo(b,a);this.lineTo(b+c,a);this.lineTo(b+c,a+d);this.lineTo(b,a+d);this.closePath();this.stroke();this.currentPath_=f};i.fillRect=function(b,a,c,d){var f=this.currentPath_;this.beginPath();this.moveTo(b,a);this.lineTo(b+c,a);this.lineTo(b+c,a+d);this.lineTo(b,a+d);this.closePath();this.fill();this.currentPath_=f};i.createLinearGradient=function(b,
a,c,d){var f=new D("gradient");f.x0_=b;f.y0_=a;f.x1_=c;f.y1_=d;return f};i.createRadialGradient=function(b,a,c,d,f,h){var g=new D("gradientradial");g.x0_=b;g.y0_=a;g.r0_=c;g.x1_=d;g.y1_=f;g.r1_=h;return g};i.drawImage=function(b){var a,c,d,f,h,g,l,e,m=b.runtimeStyle.width,r=b.runtimeStyle.height;b.runtimeStyle.width="auto";b.runtimeStyle.height="auto";var n=b.width,o=b.height;b.runtimeStyle.width=m;b.runtimeStyle.height=r;if(arguments.length==3){a=arguments[1];c=arguments[2];h=g=0;l=d=n;e=f=o}else if(arguments.length==
5){a=arguments[1];c=arguments[2];d=arguments[3];f=arguments[4];h=g=0;l=n;e=o}else if(arguments.length==9){h=arguments[1];g=arguments[2];l=arguments[3];e=arguments[4];a=arguments[5];c=arguments[6];d=arguments[7];f=arguments[8]}else throw Error("Invalid number of arguments");var q=this.getCoords_(a,c),t=[];t.push(" <g_vml_:group",' coordsize="',k*10,",",k*10,'"',' coordorigin="0,0"',' style="width:',10,"px;height:",10,"px;position:absolute;");if(this.m_[0][0]!=1||this.m_[0][1]){var E=[];E.push("M11=",
this.m_[0][0],",","M12=",this.m_[1][0],",","M21=",this.m_[0][1],",","M22=",this.m_[1][1],",","Dx=",j(q.x/k),",","Dy=",j(q.y/k),"");var p=q,z=this.getCoords_(a+d,c),w=this.getCoords_(a,c+f),x=this.getCoords_(a+d,c+f);p.x=s.max(p.x,z.x,w.x,x.x);p.y=s.max(p.y,z.y,w.y,x.y);t.push("padding:0 ",j(p.x/k),"px ",j(p.y/k),"px 0;filter:progid:DXImageTransform.Microsoft.Matrix(",E.join(""),", sizingmethod='clip');")}else t.push("top:",j(q.y/k),"px;left:",j(q.x/k),"px;");t.push(' ">','<g_vml_:image src="',b.src,
'"',' style="width:',k*d,"px;"," height:",k*f,'px;"',' cropleft="',h/n,'"',' croptop="',g/o,'"',' cropright="',(n-h-l)/n,'"',' cropbottom="',(o-g-e)/o,'"'," />","</g_vml_:group>");this.element_.insertAdjacentHTML("BeforeEnd",t.join(""))};i.stroke=function(b){var a=[],c=P(b?this.fillStyle:this.strokeStyle),d=c.color,f=c.alpha*this.globalAlpha;a.push("<g_vml_:shape",' filled="',!!b,'"',' style="position:absolute;width:',10,"px;height:",10,'px;"',' coordorigin="0 0" coordsize="',k*10," ",k*10,'"',' stroked="',
!b,'"',' path="');var h={x:null,y:null},g={x:null,y:null},l=0;for(;l<this.currentPath_.length;l++){var e=this.currentPath_[l];switch(e.type){case "moveTo":a.push(" m ",j(e.x),",",j(e.y));break;case "lineTo":a.push(" l ",j(e.x),",",j(e.y));break;case "close":a.push(" x ");e=null;break;case "bezierCurveTo":a.push(" c ",j(e.cp1x),",",j(e.cp1y),",",j(e.cp2x),",",j(e.cp2y),",",j(e.x),",",j(e.y));break;case "at":case "wa":a.push(" ",e.type," ",j(e.x-this.arcScaleX_*e.radius),",",j(e.y-this.arcScaleY_*e.radius),
" ",j(e.x+this.arcScaleX_*e.radius),",",j(e.y+this.arcScaleY_*e.radius)," ",j(e.xStart),",",j(e.yStart)," ",j(e.xEnd),",",j(e.yEnd));break}if(e){if(h.x==null||e.x<h.x)h.x=e.x;if(g.x==null||e.x>g.x)g.x=e.x;if(h.y==null||e.y<h.y)h.y=e.y;if(g.y==null||e.y>g.y)g.y=e.y}}a.push(' ">');if(b)if(typeof this.fillStyle=="object"){var m=this.fillStyle,r=0,n={x:0,y:0},o=0,q=1;if(m.type_=="gradient"){var t=m.x1_/this.arcScaleX_,E=m.y1_/this.arcScaleY_,p=this.getCoords_(m.x0_/this.arcScaleX_,m.y0_/this.arcScaleY_),
z=this.getCoords_(t,E);r=Math.atan2(z.x-p.x,z.y-p.y)*180/Math.PI;if(r<0)r+=360;if(r<1.0E-6)r=0}else{var p=this.getCoords_(m.x0_,m.y0_),w=g.x-h.x,x=g.y-h.y;n={x:(p.x-h.x)/w,y:(p.y-h.y)/x};w/=this.arcScaleX_*k;x/=this.arcScaleY_*k;var R=s.max(w,x);o=2*m.r0_/R;q=2*m.r1_/R-o}var u=m.colors_;u.sort(function(ba,ca){return ba.offset-ca.offset});var J=u.length,da=u[0].color,ea=u[J-1].color,fa=u[0].alpha*this.globalAlpha,ga=u[J-1].alpha*this.globalAlpha,S=[],l=0;for(;l<J;l++){var T=u[l];S.push(T.offset*q+
o+" "+T.color)}a.push('<g_vml_:fill type="',m.type_,'"',' method="none" focus="100%"',' color="',da,'"',' color2="',ea,'"',' colors="',S.join(","),'"',' opacity="',ga,'"',' g_o_:opacity2="',fa,'"',' angle="',r,'"',' focusposition="',n.x,",",n.y,'" />')}else a.push('<g_vml_:fill color="',d,'" opacity="',f,'" />');else{var K=this.lineScale_*this.lineWidth;if(K<1)f*=K;a.push("<g_vml_:stroke",' opacity="',f,'"',' joinstyle="',this.lineJoin,'"',' miterlimit="',this.miterLimit,'"',' endcap="',aa(this.lineCap),
'"',' weight="',K,'px"',' color="',d,'" />')}a.push("</g_vml_:shape>");this.element_.insertAdjacentHTML("beforeEnd",a.join(""))};i.fill=function(){this.stroke(true)};i.closePath=function(){this.currentPath_.push({type:"close"})};i.getCoords_=function(b,a){var c=this.m_;return{x:k*(b*c[0][0]+a*c[1][0]+c[2][0])-v,y:k*(b*c[0][1]+a*c[1][1]+c[2][1])-v}};i.save=function(){var b={};O(this,b);this.aStack_.push(b);this.mStack_.push(this.m_);this.m_=y(I(),this.m_)};i.restore=function(){O(this.aStack_.pop(),
this);this.m_=this.mStack_.pop()};function ha(b){var a=0;for(;a<3;a++){var c=0;for(;c<2;c++)if(!isFinite(b[a][c])||isNaN(b[a][c]))return false}return true}function A(b,a,c){if(!!ha(a)){b.m_=a;if(c)b.lineScale_=W(V(a[0][0]*a[1][1]-a[0][1]*a[1][0]))}}i.translate=function(b,a){A(this,y([[1,0,0],[0,1,0],[b,a,1]],this.m_),false)};i.rotate=function(b){var a=G(b),c=F(b);A(this,y([[a,c,0],[-c,a,0],[0,0,1]],this.m_),false)};i.scale=function(b,a){this.arcScaleX_*=b;this.arcScaleY_*=a;A(this,y([[b,0,0],[0,a,
0],[0,0,1]],this.m_),true)};i.transform=function(b,a,c,d,f,h){A(this,y([[b,a,0],[c,d,0],[f,h,1]],this.m_),true)};i.setTransform=function(b,a,c,d,f,h){A(this,[[b,a,0],[c,d,0],[f,h,1]],true)};i.clip=function(){};i.arcTo=function(){};i.createPattern=function(){return new U};function D(b){this.type_=b;this.r1_=this.y1_=this.x1_=this.r0_=this.y0_=this.x0_=0;this.colors_=[]}D.prototype.addColorStop=function(b,a){a=P(a);this.colors_.push({offset:b,color:a.color,alpha:a.alpha})};function U(){}G_vmlCanvasManager=
M;CanvasRenderingContext2D=H;CanvasGradient=D;CanvasPattern=U})();
;
/*
 * @name BeautyTips
 * @desc a tooltips/baloon-help plugin for jQuery
 *
 * @author Jeff Robbins - Lullabot - http://www.lullabot.com
 * @version 0.9.5 release candidate 1  (5/20/2009)
 */
jQuery.bt={version:'0.9.5-rc1'};;(function($){jQuery.fn.bt=function(content,options){if(typeof content!='string'){var contentSelect=true;options=content;content=false;}
else{var contentSelect=false;}
if(jQuery.fn.hoverIntent&&jQuery.bt.defaults.trigger=='hover'){jQuery.bt.defaults.trigger='hoverIntent';}
return this.each(function(index){var opts=jQuery.extend(false,jQuery.bt.defaults,jQuery.bt.options,options);opts.spikeLength=numb(opts.spikeLength);opts.spikeGirth=numb(opts.spikeGirth);opts.overlap=numb(opts.overlap);var ajaxTimeout=false;if(opts.killTitle){$(this).find('[title]').andSelf().each(function(){if(!$(this).attr('bt-xTitle')){$(this).attr('bt-xTitle',$(this).attr('title')).attr('title','');}});}
if(typeof opts.trigger=='string'){opts.trigger=[opts.trigger];}
if(opts.trigger[0]=='hoverIntent'){var hoverOpts=jQuery.extend(opts.hoverIntentOpts,{over:function(){this.btOn();},out:function(){this.btOff();}});$(this).hoverIntent(hoverOpts);}
else if(opts.trigger[0]=='hover'){$(this).hover(function(){this.btOn();},function(){this.btOff();});}
else if(opts.trigger[0]=='now'){if($(this).hasClass('bt-active')){this.btOff();}
else{this.btOn();}}
else if(opts.trigger[0]=='none'){}
else if(opts.trigger.length>1&&opts.trigger[0]!=opts.trigger[1]){$(this).bind(opts.trigger[0],function(){this.btOn();}).bind(opts.trigger[1],function(){this.btOff();});}
else{$(this).bind(opts.trigger[0],function(){if($(this).hasClass('bt-active')){this.btOff();}
else{this.btOn();}});}
this.btOn=function(){if(typeof $(this).data('bt-box')=='object'){this.btOff();}
opts.preBuild.apply(this);$(jQuery.bt.vars.closeWhenOpenStack).btOff();$(this).addClass('bt-active '+opts.activeClass);if(contentSelect&&opts.ajaxPath==null){if(opts.killTitle){$(this).attr('title',$(this).attr('bt-xTitle'));}
content=$.isFunction(opts.contentSelector)?opts.contentSelector.apply(this):eval(opts.contentSelector);if(opts.killTitle){$(this).attr('title','');}}
if(opts.ajaxPath!=null&&content==false){if(typeof opts.ajaxPath=='object'){var url=eval(opts.ajaxPath[0]);url+=opts.ajaxPath[1]?' '+opts.ajaxPath[1]:'';}
else{var url=opts.ajaxPath;}
var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var cacheData=opts.ajaxCache?$(document.body).data('btCache-'+url.replace(/\./g,'')):null;if(typeof cacheData=='string'){content=selector?$("<div/>").append(cacheData.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):cacheData;}
else{var target=this;var ajaxOpts=jQuery.extend(false,{type:opts.ajaxType,data:opts.ajaxData,cache:opts.ajaxCache,url:url,complete:function(XMLHttpRequest,textStatus){if(textStatus=='success'||textStatus=='notmodified'){if(opts.ajaxCache){$(document.body).data('btCache-'+url.replace(/\./g,''),XMLHttpRequest.responseText);}
ajaxTimeout=false;content=selector?$("<div/>").append(XMLHttpRequest.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):XMLHttpRequest.responseText;}
else{if(textStatus=='timeout'){ajaxTimeout=true;}
content=opts.ajaxError.replace(/%error/g,XMLHttpRequest.statusText);}
if($(target).hasClass('bt-active')){target.btOn();}}},opts.ajaxOpts);jQuery.ajax(ajaxOpts);content=opts.ajaxLoading;}}
var shadowMarginX=0;var shadowMarginY=0;var shadowShiftX=0;var shadowShiftY=0;if(opts.shadow&&!shadowSupport()){opts.shadow=false;jQuery.extend(opts,opts.noShadowOpts);}
if(opts.shadow){if(opts.shadowBlur>Math.abs(opts.shadowOffsetX)){shadowMarginX=opts.shadowBlur*2;}
else{shadowMarginX=opts.shadowBlur+Math.abs(opts.shadowOffsetX);}
shadowShiftX=(opts.shadowBlur-opts.shadowOffsetX)>0?opts.shadowBlur-opts.shadowOffsetX:0;if(opts.shadowBlur>Math.abs(opts.shadowOffsetY)){shadowMarginY=opts.shadowBlur*2;}
else{shadowMarginY=opts.shadowBlur+Math.abs(opts.shadowOffsetY);}
shadowShiftY=(opts.shadowBlur-opts.shadowOffsetY)>0?opts.shadowBlur-opts.shadowOffsetY:0;}
if(opts.offsetParent){var offsetParent=$(opts.offsetParent);var offsetParentPos=offsetParent.offset();var pos=$(this).offset();var top=numb(pos.top)-numb(offsetParentPos.top)+numb($(this).css('margin-top'))-shadowShiftY;var left=numb(pos.left)-numb(offsetParentPos.left)+numb($(this).css('margin-left'))-shadowShiftX;}
else{var offsetParent=($(this).css('position')=='absolute')?$(this).parents().eq(0).offsetParent():$(this).offsetParent();var pos=$(this).btPosition();var top=numb(pos.top)+numb($(this).css('margin-top'))-shadowShiftY;var left=numb(pos.left)+numb($(this).css('margin-left'))-shadowShiftX;}
var width=$(this).btOuterWidth();var height=$(this).outerHeight();if(typeof content=='object'){if(content==null){return;}
var original=content;var clone=$(original).clone(true).show();var origClones=$(original).data('bt-clones')||[];origClones.push(clone);$(original).data('bt-clones',origClones);$(clone).data('bt-orig',original);$(this).data('bt-content-orig',{original:original,clone:clone});content=clone;}
if(typeof content=='null'||content==''){return;}
var $text=$('<div class="bt-content"></div>').append(content).css({padding:opts.padding,position:'absolute',width:(opts.shrinkToFit?'auto':opts.width),zIndex:opts.textzIndex,left:shadowShiftX,top:shadowShiftY}).css(opts.cssStyles);var $box=$('<div class="bt-wrapper"></div>').append($text).addClass(opts.cssClass).css({position:'absolute',width:opts.width,zIndex:opts.wrapperzIndex,visibility:'hidden'}).appendTo(offsetParent);if(jQuery.fn.bgiframe){$text.bgiframe();$box.bgiframe();}
$(this).data('bt-box',$box);var scrollTop=numb($(document).scrollTop());var scrollLeft=numb($(document).scrollLeft());var docWidth=numb($(window).width());var docHeight=numb($(window).height());var winRight=scrollLeft+docWidth;var winBottom=scrollTop+docHeight;var space=new Object();var thisOffset=$(this).offset();space.top=thisOffset.top-scrollTop;space.bottom=docHeight-((thisOffset+height)-scrollTop);space.left=thisOffset.left-scrollLeft;space.right=docWidth-((thisOffset.left+width)-scrollLeft);var textOutHeight=numb($text.outerHeight());var textOutWidth=numb($text.btOuterWidth());if(opts.positions.constructor==String){opts.positions=opts.positions.replace(/ /,'').split(',');}
if(opts.positions[0]=='most'){var position='top';for(var pig in space){position=space[pig]>space[position]?pig:position;}}
else{for(var x in opts.positions){var position=opts.positions[x];if((position=='left'||position=='right')&&space[position]>textOutWidth+opts.spikeLength){break;}
else if((position=='top'||position=='bottom')&&space[position]>textOutHeight+opts.spikeLength){break;}}}
var horiz=left+((width-textOutWidth)*.5);var vert=top+((height-textOutHeight)*.5);var points=new Array();var textTop,textLeft,textRight,textBottom,textTopSpace,textBottomSpace,textLeftSpace,textRightSpace,crossPoint,textCenter,spikePoint;switch(position){case'top':$text.css('margin-bottom',opts.spikeLength+'px');$box.css({top:(top-$text.outerHeight(true))+opts.overlap,left:horiz});textRightSpace=(winRight-opts.windowMargin)-($text.offset().left+$text.btOuterWidth(true));var xShift=shadowShiftX;if(textRightSpace<0){$box.css('left',(numb($box.css('left'))+textRightSpace)+'px');xShift-=textRightSpace;}
textLeftSpace=($text.offset().left+numb($text.css('margin-left')))-(scrollLeft+opts.windowMargin);if(textLeftSpace<0){$box.css('left',(numb($box.css('left'))-textLeftSpace)+'px');xShift+=textLeftSpace;}
textTop=$text.btPosition().top+numb($text.css('margin-top'));textLeft=$text.btPosition().left+numb($text.css('margin-left'));textRight=textLeft+$text.btOuterWidth();textBottom=textTop+$text.outerHeight();textCenter={x:textLeft+($text.btOuterWidth()*opts.centerPointX),y:textTop+($text.outerHeight()*opts.centerPointY)};points[points.length]=spikePoint={y:textBottom+opts.spikeLength,x:((textRight-textLeft)*.5)+xShift,type:'spike'};crossPoint=findIntersectX(spikePoint.x,spikePoint.y,textCenter.x,textCenter.y,textBottom);crossPoint.x=crossPoint.x<textLeft+opts.spikeGirth/2+opts.cornerRadius?textLeft+opts.spikeGirth/2+opts.cornerRadius:crossPoint.x;crossPoint.x=crossPoint.x>(textRight-opts.spikeGirth/2)-opts.cornerRadius?(textRight-opts.spikeGirth/2)-opts.CornerRadius:crossPoint.x;points[points.length]={x:crossPoint.x-(opts.spikeGirth/2),y:textBottom,type:'join'};points[points.length]={x:textLeft,y:textBottom,type:'corner'};points[points.length]={x:textLeft,y:textTop,type:'corner'};points[points.length]={x:textRight,y:textTop,type:'corner'};points[points.length]={x:textRight,y:textBottom,type:'corner'};points[points.length]={x:crossPoint.x+(opts.spikeGirth/2),y:textBottom,type:'join'};points[points.length]=spikePoint;break;case'left':$text.css('margin-right',opts.spikeLength+'px');$box.css({top:vert+'px',left:((left-$text.btOuterWidth(true))+opts.overlap)+'px'});textBottomSpace=(winBottom-opts.windowMargin)-($text.offset().top+$text.outerHeight(true));var yShift=shadowShiftY;if(textBottomSpace<0){$box.css('top',(numb($box.css('top'))+textBottomSpace)+'px');yShift-=textBottomSpace;}
textTopSpace=($text.offset().top+numb($text.css('margin-top')))-(scrollTop+opts.windowMargin);if(textTopSpace<0){$box.css('top',(numb($box.css('top'))-textTopSpace)+'px');yShift+=textTopSpace;}
textTop=$text.btPosition().top+numb($text.css('margin-top'));textLeft=$text.btPosition().left+numb($text.css('margin-left'));textRight=textLeft+$text.btOuterWidth();textBottom=textTop+$text.outerHeight();textCenter={x:textLeft+($text.btOuterWidth()*opts.centerPointX),y:textTop+($text.outerHeight()*opts.centerPointY)};points[points.length]=spikePoint={x:textRight+opts.spikeLength,y:((textBottom-textTop)*.5)+yShift,type:'spike'};crossPoint=findIntersectY(spikePoint.x,spikePoint.y,textCenter.x,textCenter.y,textRight);crossPoint.y=crossPoint.y<textTop+opts.spikeGirth/2+opts.cornerRadius?textTop+opts.spikeGirth/2+opts.cornerRadius:crossPoint.y;crossPoint.y=crossPoint.y>(textBottom-opts.spikeGirth/2)-opts.cornerRadius?(textBottom-opts.spikeGirth/2)-opts.cornerRadius:crossPoint.y;points[points.length]={x:textRight,y:crossPoint.y+opts.spikeGirth/2,type:'join'};points[points.length]={x:textRight,y:textBottom,type:'corner'};points[points.length]={x:textLeft,y:textBottom,type:'corner'};points[points.length]={x:textLeft,y:textTop,type:'corner'};points[points.length]={x:textRight,y:textTop,type:'corner'};points[points.length]={x:textRight,y:crossPoint.y-opts.spikeGirth/2,type:'join'};points[points.length]=spikePoint;break;case'bottom':$text.css('margin-top',opts.spikeLength+'px');$box.css({top:(top+height)-opts.overlap,left:horiz});textRightSpace=(winRight-opts.windowMargin)-($text.offset().left+$text.btOuterWidth(true));var xShift=shadowShiftX;if(textRightSpace<0){$box.css('left',(numb($box.css('left'))+textRightSpace)+'px');xShift-=textRightSpace;}
textLeftSpace=($text.offset().left+numb($text.css('margin-left')))-(scrollLeft+opts.windowMargin);if(textLeftSpace<0){$box.css('left',(numb($box.css('left'))-textLeftSpace)+'px');xShift+=textLeftSpace;}
textTop=$text.btPosition().top+numb($text.css('margin-top'));textLeft=$text.btPosition().left+numb($text.css('margin-left'));textRight=textLeft+$text.btOuterWidth();textBottom=textTop+$text.outerHeight();textCenter={x:textLeft+($text.btOuterWidth()*opts.centerPointX),y:textTop+($text.outerHeight()*opts.centerPointY)};points[points.length]=spikePoint={x:((textRight-textLeft)*.5)+xShift,y:shadowShiftY,type:'spike'};crossPoint=findIntersectX(spikePoint.x,spikePoint.y,textCenter.x,textCenter.y,textTop);crossPoint.x=crossPoint.x<textLeft+opts.spikeGirth/2+opts.cornerRadius?textLeft+opts.spikeGirth/2+opts.cornerRadius:crossPoint.x;crossPoint.x=crossPoint.x>(textRight-opts.spikeGirth/2)-opts.cornerRadius?(textRight-opts.spikeGirth/2)-opts.cornerRadius:crossPoint.x;points[points.length]={x:crossPoint.x+opts.spikeGirth/2,y:textTop,type:'join'};points[points.length]={x:textRight,y:textTop,type:'corner'};points[points.length]={x:textRight,y:textBottom,type:'corner'};points[points.length]={x:textLeft,y:textBottom,type:'corner'};points[points.length]={x:textLeft,y:textTop,type:'corner'};points[points.length]={x:crossPoint.x-(opts.spikeGirth/2),y:textTop,type:'join'};points[points.length]=spikePoint;break;case'right':$text.css('margin-left',(opts.spikeLength+'px'));$box.css({top:vert+'px',left:((left+width)-opts.overlap)+'px'});textBottomSpace=(winBottom-opts.windowMargin)-($text.offset().top+$text.outerHeight(true));var yShift=shadowShiftY;if(textBottomSpace<0){$box.css('top',(numb($box.css('top'))+textBottomSpace)+'px');yShift-=textBottomSpace;}
textTopSpace=($text.offset().top+numb($text.css('margin-top')))-(scrollTop+opts.windowMargin);if(textTopSpace<0){$box.css('top',(numb($box.css('top'))-textTopSpace)+'px');yShift+=textTopSpace;}
textTop=$text.btPosition().top+numb($text.css('margin-top'));textLeft=$text.btPosition().left+numb($text.css('margin-left'));textRight=textLeft+$text.btOuterWidth();textBottom=textTop+$text.outerHeight();textCenter={x:textLeft+($text.btOuterWidth()*opts.centerPointX),y:textTop+($text.outerHeight()*opts.centerPointY)};points[points.length]=spikePoint={x:shadowShiftX,y:((textBottom-textTop)*.5)+yShift,type:'spike'};crossPoint=findIntersectY(spikePoint.x,spikePoint.y,textCenter.x,textCenter.y,textLeft);crossPoint.y=crossPoint.y<textTop+opts.spikeGirth/2+opts.cornerRadius?textTop+opts.spikeGirth/2+opts.cornerRadius:crossPoint.y;crossPoint.y=crossPoint.y>(textBottom-opts.spikeGirth/2)-opts.cornerRadius?(textBottom-opts.spikeGirth/2)-opts.cornerRadius:crossPoint.y;points[points.length]={x:textLeft,y:crossPoint.y-opts.spikeGirth/2,type:'join'};points[points.length]={x:textLeft,y:textTop,type:'corner'};points[points.length]={x:textRight,y:textTop,type:'corner'};points[points.length]={x:textRight,y:textBottom,type:'corner'};points[points.length]={x:textLeft,y:textBottom,type:'corner'};points[points.length]={x:textLeft,y:crossPoint.y+opts.spikeGirth/2,type:'join'};points[points.length]=spikePoint;break;}
var canvas=document.createElement('canvas');$(canvas).attr('width',(numb($text.btOuterWidth(true))+opts.strokeWidth*2+shadowMarginX)).attr('height',(numb($text.outerHeight(true))+opts.strokeWidth*2+shadowMarginY)).appendTo($box).css({position:'absolute',zIndex:opts.boxzIndex});if(typeof G_vmlCanvasManager!='undefined'){canvas=G_vmlCanvasManager.initElement(canvas);}
if(opts.cornerRadius>0){var newPoints=new Array();var newPoint;for(var i=0;i<points.length;i++){if(points[i].type=='corner'){newPoint=betweenPoint(points[i],points[(i-1)%points.length],opts.cornerRadius);newPoint.type='arcStart';newPoints[newPoints.length]=newPoint;newPoints[newPoints.length]=points[i];newPoint=betweenPoint(points[i],points[(i+1)%points.length],opts.cornerRadius);newPoint.type='arcEnd';newPoints[newPoints.length]=newPoint;}
else{newPoints[newPoints.length]=points[i];}}
points=newPoints;}
var ctx=canvas.getContext("2d");if(opts.shadow&&opts.shadowOverlap!==true){var shadowOverlap=numb(opts.shadowOverlap);switch(position){case'top':if(opts.shadowOffsetX+opts.shadowBlur-shadowOverlap>0){$box.css('top',(numb($box.css('top'))-(opts.shadowOffsetX+opts.shadowBlur-shadowOverlap)));}
break;case'right':if(shadowShiftX-shadowOverlap>0){$box.css('left',(numb($box.css('left'))+shadowShiftX-shadowOverlap));}
break;case'bottom':if(shadowShiftY-shadowOverlap>0){$box.css('top',(numb($box.css('top'))+shadowShiftY-shadowOverlap));}
break;case'left':if(opts.shadowOffsetY+opts.shadowBlur-shadowOverlap>0){$box.css('left',(numb($box.css('left'))-(opts.shadowOffsetY+opts.shadowBlur-shadowOverlap)));}
break;}}
drawIt.apply(ctx,[points],opts.strokeWidth);ctx.fillStyle=opts.fill;if(opts.shadow){ctx.shadowOffsetX=opts.shadowOffsetX;ctx.shadowOffsetY=opts.shadowOffsetY;ctx.shadowBlur=opts.shadowBlur;ctx.shadowColor=opts.shadowColor;}
ctx.closePath();ctx.fill();if(opts.strokeWidth>0){ctx.shadowColor='rgba(0, 0, 0, 0)';ctx.lineWidth=opts.strokeWidth;ctx.strokeStyle=opts.strokeStyle;ctx.beginPath();drawIt.apply(ctx,[points],opts.strokeWidth);ctx.closePath();ctx.stroke();}
opts.preShow.apply(this,[$box[0]]);$box.css({display:'none',visibility:'visible'});opts.showTip.apply(this,[$box[0]]);if(opts.overlay){var overlay=$('<div class="bt-overlay"></div>').css({position:'absolute',backgroundColor:'blue',top:top,left:left,width:width,height:height,opacity:'.2'}).appendTo(offsetParent);$(this).data('overlay',overlay);}
if((opts.ajaxPath!=null&&opts.ajaxCache==false)||ajaxTimeout){content=false;}
if(opts.clickAnywhereToClose){jQuery.bt.vars.clickAnywhereStack.push(this);$(document).click(jQuery.bt.docClick);}
if(opts.closeWhenOthersOpen){jQuery.bt.vars.closeWhenOpenStack.push(this);}
opts.postShow.apply(this,[$box[0]]);};this.btOff=function(){var box=$(this).data('bt-box');if(typeof box=='undefined'){return;}
opts.preHide.apply(this,[box]);var i=this;i.btCleanup=function(){var box=$(i).data('bt-box');var contentOrig=$(i).data('bt-content-orig');var overlay=$(i).data('bt-overlay');if(typeof box=='object'){$(box).remove();$(i).removeData('bt-box');}
if(typeof contentOrig=='object'){var clones=$(contentOrig.original).data('bt-clones');$(contentOrig).data('bt-clones',arrayRemove(clones,contentOrig.clone));}
if(typeof overlay=='object'){$(overlay).remove();$(i).removeData('bt-overlay');}
jQuery.bt.vars.clickAnywhereStack=arrayRemove(jQuery.bt.vars.clickAnywhereStack,i);jQuery.bt.vars.closeWhenOpenStack=arrayRemove(jQuery.bt.vars.closeWhenOpenStack,i);$(i).removeClass('bt-active '+opts.activeClass);opts.postHide.apply(i);}
opts.hideTip.apply(this,[box,i.btCleanup]);};var refresh=this.btRefresh=function(){this.btOff();this.btOn();};});function drawIt(points,strokeWidth){this.moveTo(points[0].x,points[0].y);for(i=1;i<points.length;i++){if(points[i-1].type=='arcStart'){this.quadraticCurveTo(round5(points[i].x,strokeWidth),round5(points[i].y,strokeWidth),round5(points[(i+1)%points.length].x,strokeWidth),round5(points[(i+1)%points.length].y,strokeWidth));i++;}
else{this.lineTo(round5(points[i].x,strokeWidth),round5(points[i].y,strokeWidth));}}};function round5(num,strokeWidth){var ret;strokeWidth=numb(strokeWidth);if(strokeWidth%2){ret=num;}
else{ret=Math.round(num-.5)+.5;}
return ret;};function numb(num){return parseInt(num)||0;};function arrayRemove(arr,elem){var x,newArr=new Array();for(x in arr){if(arr[x]!=elem){newArr.push(arr[x]);}}
return newArr;};function canvasSupport(){var canvas_compatible=false;try{canvas_compatible=!!(document.createElement('canvas').getContext('2d'));}catch(e){canvas_compatible=!!(document.createElement('canvas').getContext);}
return canvas_compatible;}
function shadowSupport(){try{var userAgent=navigator.userAgent.toLowerCase();if(/webkit/.test(userAgent)){return true;}
else if(/gecko|mozilla/.test(userAgent)&&parseFloat(userAgent.match(/firefox\/(\d+(?:\.\d+)+)/)[1])>=3.1){return true;}}
catch(err){}
return false;}
function betweenPoint(point1,point2,dist){var y,x;if(point1.x==point2.x){y=point1.y<point2.y?point1.y+dist:point1.y-dist;return{x:point1.x,y:y};}
else if(point1.y==point2.y){x=point1.x<point2.x?point1.x+dist:point1.x-dist;return{x:x,y:point1.y};}};function centerPoint(arcStart,corner,arcEnd){var x=corner.x==arcStart.x?arcEnd.x:arcStart.x;var y=corner.y==arcStart.y?arcEnd.y:arcStart.y;var startAngle,endAngle;if(arcStart.x<arcEnd.x){if(arcStart.y>arcEnd.y){startAngle=(Math.PI/180)*180;endAngle=(Math.PI/180)*90;}
else{startAngle=(Math.PI/180)*90;endAngle=0;}}
else{if(arcStart.y>arcEnd.y){startAngle=(Math.PI/180)*270;endAngle=(Math.PI/180)*180;}
else{startAngle=0;endAngle=(Math.PI/180)*270;}}
return{x:x,y:y,type:'center',startAngle:startAngle,endAngle:endAngle};};function findIntersect(r1x1,r1y1,r1x2,r1y2,r2x1,r2y1,r2x2,r2y2){if(r2x1==r2x2){return findIntersectY(r1x1,r1y1,r1x2,r1y2,r2x1);}
if(r2y1==r2y2){return findIntersectX(r1x1,r1y1,r1x2,r1y2,r2y1);}
var r1m=(r1y1-r1y2)/(r1x1-r1x2);var r1b=r1y1-(r1m*r1x1);var r2m=(r2y1-r2y2)/(r2x1-r2x2);var r2b=r2y1-(r2m*r2x1);var x=(r2b-r1b)/(r1m-r2m);var y=r1m*x+r1b;return{x:x,y:y};};function findIntersectY(r1x1,r1y1,r1x2,r1y2,x){if(r1y1==r1y2){return{x:x,y:r1y1};}
var r1m=(r1y1-r1y2)/(r1x1-r1x2);var r1b=r1y1-(r1m*r1x1);var y=r1m*x+r1b;return{x:x,y:y};};function findIntersectX(r1x1,r1y1,r1x2,r1y2,y){if(r1x1==r1x2){return{x:r1x1,y:y};}
var r1m=(r1y1-r1y2)/(r1x1-r1x2);var r1b=r1y1-(r1m*r1x1);var x=(y-r1b)/r1m;return{x:x,y:y};};};jQuery.fn.btPosition=function(){function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;};var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}
return results;};jQuery.fn.btOuterWidth=function(margin){function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;};return this["innerWidth"]()
+num(this,"borderLeftWidth")
+num(this,"borderRightWidth")
+(margin?num(this,"marginLeft")
+num(this,"marginRight"):0);};jQuery.fn.btOn=function(){return this.each(function(index){if(jQuery.isFunction(this.btOn)){this.btOn();}});};jQuery.fn.btOff=function(){return this.each(function(index){if(jQuery.isFunction(this.btOff)){this.btOff();}});};jQuery.bt.vars={clickAnywhereStack:[],closeWhenOpenStack:[]};jQuery.bt.docClick=function(e){if(!e){var e=window.event;};if(!$(e.target).parents().andSelf().filter('.bt-wrapper, .bt-active').length&&jQuery.bt.vars.clickAnywhereStack.length){$(jQuery.bt.vars.clickAnywhereStack).btOff();$(document).unbind('click',jQuery.bt.docClick);}};jQuery.bt.defaults={trigger:'hover',clickAnywhereToClose:true,closeWhenOthersOpen:false,shrinkToFit:false,width:'200px',padding:'10px',spikeGirth:10,spikeLength:15,overlap:0,overlay:false,killTitle:true,textzIndex:9999,boxzIndex:9998,wrapperzIndex:9997,offsetParent:null,positions:['most'],fill:"rgb(255, 255, 102)",windowMargin:10,strokeWidth:1,strokeStyle:"#000",cornerRadius:5,centerPointX:.5,centerPointY:.5,shadow:false,shadowOffsetX:2,shadowOffsetY:2,shadowBlur:3,shadowColor:"#000",shadowOverlap:false,noShadowOpts:{strokeStyle:'#999'},cssClass:'',cssStyles:{},activeClass:'bt-active',contentSelector:"$(this).attr('title')",ajaxPath:null,ajaxError:'<strong>ERROR:</strong> <em>%error</em>',ajaxLoading:'<blink>Loading...</blink>',ajaxData:{},ajaxType:'GET',ajaxCache:true,ajaxOpts:{},preBuild:function(){},preShow:function(box){},showTip:function(box){$(box).show();},postShow:function(box){},preHide:function(box){},hideTip:function(box,callback){$(box).hide();callback();},postHide:function(){},hoverIntentOpts:{interval:300,timeout:500}};jQuery.bt.options={};})(jQuery);;
// $Id: beautytips.js,v 1.2.2.5 2010/06/16 20:35:47 kleinmp Exp $

/**
 * Defines the default beautytip and adds them to the content on the page
 */ 
Drupal.behaviors.beautytips = function() {
  jQuery.bt.options.closeWhenOthersOpen = true;
  beautytips = Drupal.settings.beautytips;

  // Add the the tooltips to the page
  for (var key in beautytips) {
    // Build array of options that were passed to beautytips_add_beautyips
    var bt_options = new Array();
    if (beautytips[key]['list']) {
      for ( var k = 0; k < beautytips[key]['list'].length; k++) {
        bt_options[beautytips[key]['list'][k]] = beautytips[key][beautytips[key]['list'][k]];
      }
    }
    if (beautytips[key]['cssSelect']) {
      // Run any java script that needs to be run when the page loads
      if (beautytips[key]['contentSelector'] && beautytips[key]['preEval']) {
        $(beautytips[key]['cssSelect']).each(function() {
          eval(beautytips[key]['contentSelector']);
        });
      }
      if (beautytips[key]['text']) {
        $(beautytips[key]['cssSelect']).each(function() {
          $(this).bt(beautytips[key]['text'], bt_options);
        });
      }
      else if (beautytips[key]['ajaxPath']) {
        $(beautytips[key]['cssSelect']).each(function() {
          $(this).bt(bt_options);
          if (beautytips[key]['ajaxDisableLink']) {
            $(beautytips[key]['ajaxDisableLink']).click(function() {
              return false;
            });
          }
        });
      }
      else { 
        $(beautytips[key]['cssSelect']).each(function() {
          $(this).bt(bt_options);
        });
      }
    }
    bt_options.length = 0;
  }
}
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  ITC Franklin Gothic is a trademark of The International Typeface Corporation
 * which may be registered in certain jurisdictions. Portions copyright Microsoft
 * Corporation.  All rights reserved.
 * 
 * Trademark:
 * ITC Franklin Gothic is a trademark of The International Typeface Corporation
 * which may be registered in certain jurisdictions.
 * 
 * Description:
 * Designed in 1902 by Morris Fuller Benton for the American Type Founders
 * company, Franklin Gothic still reigns as one of the most-widely used sans serif
 * typefaces. Originally issued in only one weight, the ATF version of Franklin
 * Gothic was eventually expanded to include five additional weights, but no light
 * or intermediate weights were ever developed. In 1979, under license from ATF,
 * ITC developed four new weights in roman and italic: book, medium, demi and
 * heavy. Designed by Victor Caruso, ITCs new weights matched the original faces
 * characteristics, but featured a slightly enlarged lowercase x-height. ITC
 * Franklin Gothic also features a slightly condensed lowercase a-z alphabet. In
 * 1991, ITC commissioned the Font Bureau in Boston to create condensed, compressed
 * and extra compressed versions of ITC Franklin Gothic, which increased the
 * flexibility and usefulness of the design.
 * 
 * Manufacturer:
 * International Typeface Corporation
 * 
 * Designer:
 * Victor Caruso -- Font Bureau
 * 
 * Vendor URL:
 * http://www.itcfonts.com
 * 
 * License information:
 * http://www.itcfonts.com/itc/licensing.html
 */
Cufon.registerFont({"w":184,"face":{"font-family":"Franklin Gothic Demi Cond","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 7 6 3 4 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-95 -361 360 110","underline-thickness":"17.9297","underline-position":"-18.1055","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":67},"!":{"d":"30,-240r63,0r-16,168r-32,0xm37,-53r49,0r0,53r-49,0r0,-53","w":122},"\"":{"d":"35,-240r47,0r-7,106r-33,0xm103,-240r46,0r-7,106r-33,0"},"#":{"d":"61,-240r31,0r-10,69r35,0r11,-69r31,0r-11,69r33,0r-5,29r-32,0r-6,39r32,0r-4,29r-32,0r-12,74r-31,0r11,-74r-35,0r-11,74r-31,0r11,-74r-32,0r4,-29r32,0r6,-39r-32,0r4,-29r32,0xm77,-142r-6,39r36,0r6,-39r-36,0"},"$":{"d":"49,-116v-48,-25,-30,-120,30,-119r0,-25r27,0r0,25v30,4,49,20,58,51r-37,16v-7,-21,-19,-32,-34,-32v-22,0,-34,28,-18,40v33,23,98,26,96,84v-2,39,-26,66,-65,69r0,33r-27,0r0,-33v-35,-4,-58,-23,-66,-61r42,-11v-1,42,67,48,68,9v0,-30,-55,-30,-74,-46"},"%":{"d":"57,-241v33,0,48,26,48,62v0,35,-15,61,-48,61v-33,0,-46,-24,-47,-61v0,-37,14,-62,47,-62xm57,-144v20,-1,19,-72,0,-71v-15,1,-13,15,-13,36v0,23,0,31,13,35xm163,-240r27,0r-113,240r-27,0xm182,-122v33,0,47,24,47,62v0,37,-14,61,-47,61v-33,0,-48,-26,-48,-61v0,-37,15,-62,48,-62xm182,-25v20,-1,19,-71,0,-71v-19,1,-19,71,0,71","w":239},"&":{"d":"112,-244v35,-1,61,24,61,58v0,24,-13,43,-41,57r33,44v8,-12,14,-29,19,-52r39,7v-6,28,-18,54,-33,77v11,11,18,15,33,12r0,41v-29,6,-46,-1,-65,-20v-47,45,-141,25,-141,-47v0,-31,18,-54,54,-69v-42,-46,-20,-108,41,-108xm115,-209v-29,3,-21,32,-3,53v14,-8,21,-19,21,-33v0,-12,-6,-21,-18,-20xm91,-109v-34,16,-32,73,10,73v13,0,23,-5,33,-14","w":233},"'":{"d":"38,-240r47,0r-7,106r-33,0","w":122},"(":{"d":"62,-240r38,0v-48,87,-48,213,0,300r-38,0v-58,-82,-59,-218,0,-300","w":122},")":{"d":"22,60v47,-75,48,-225,0,-300r39,0v58,82,57,218,0,300r-39,0","w":122},"*":{"d":"77,-240r30,0r-4,44r36,-24r15,26r-40,18r40,17r-15,27r-36,-25r4,45r-30,0r4,-45r-36,25r-15,-27r39,-17r-39,-18r15,-26r36,24"},"+":{"d":"112,-139r54,0r0,38r-54,0r0,55r-40,0r0,-55r-54,0r0,-38r54,0r0,-55r40,0r0,55"},",":{"d":"21,-53r49,0r0,48r-29,62r-20,0r23,-57r-23,0r0,-53","w":91,"k":{"1":8}},"-":{"d":"13,-110r72,0r0,38r-72,0r0,-38","w":98,"k":{"\u0443":-1,"\u0442":5,"\u0423":8,"\u0422":8,"\u0410":-6,"Y":8,"W":-1,"V":-1,"T":6,"A":-6}},".":{"d":"21,-53r49,0r0,53r-49,0r0,-53","w":91,"k":{"1":8}},"\/":{"d":"139,-240r34,0r-147,300r-33,0","w":190},"0":{"d":"92,-244v64,0,80,52,80,121v0,75,-14,127,-80,127v-64,0,-80,-52,-80,-121v0,-78,13,-127,80,-127xm92,-35v32,-7,24,-28,24,-85v0,-52,7,-77,-24,-85v-31,7,-25,30,-25,85v0,55,-6,77,25,85","k":{"7":7,"4":-3,"1":10}},"1":{"d":"89,-242r40,0r0,203r40,0r0,39r-133,0r0,-39r40,0r0,-142v-12,12,-25,22,-40,30r0,-47v21,-11,39,-26,53,-44","k":{"9":3,"7":20,"6":9,"5":2,"4":6,"2":-1,"1":12,"0":5,".":-2,",":-2}},"2":{"d":"86,-201v-22,1,-26,22,-28,46r-48,-10v8,-52,34,-79,79,-79v44,0,78,29,75,70v-5,66,-43,85,-100,127r104,0r-4,47r-154,0r0,-47v61,-58,85,-62,99,-124v0,-20,-8,-30,-23,-30","k":{"7":7,"4":3,"1":12}},"3":{"d":"60,-144v30,2,49,-2,49,-30v-1,-41,-48,-37,-52,1r-46,-9v12,-41,38,-62,79,-62v71,0,99,94,36,118v27,9,40,27,40,57v0,69,-83,92,-132,57v-15,-11,-24,-29,-28,-55r46,-8v2,24,13,36,32,36v18,0,28,-14,28,-33v1,-28,-21,-35,-52,-33r0,-39","k":{"7":8,"1":15}},"4":{"d":"91,-244r57,0r0,147r27,0r0,41r-27,0r0,56r-53,0r0,-56r-86,0r0,-41xm99,-95r0,-98r-53,98r53,0","k":{"7":14,"4":-5,"1":16}},"5":{"d":"121,-78v0,-38,-45,-54,-57,-20r-41,-8r8,-134r128,0r-5,47r-84,0r-3,54v38,-46,114,-8,105,58v8,77,-84,108,-135,66v-14,-12,-23,-28,-25,-49r48,-8v3,22,13,33,31,33v20,0,30,-13,30,-39","k":{"7":10,"4":-4,"1":13}},"6":{"d":"18,-117v0,-94,61,-159,130,-111v13,9,20,27,24,48r-42,13v-3,-40,-36,-50,-54,-23v-6,10,-9,33,-9,66v31,-56,107,-17,107,48v0,49,-30,80,-76,80v-53,0,-80,-41,-80,-121xm69,-73v0,22,8,37,27,38v18,0,27,-13,27,-41v0,-24,-9,-37,-26,-37v-18,0,-28,13,-28,40","k":{"4":-4,"1":10}},"7":{"d":"25,-240r142,0r0,40v-38,49,-57,116,-58,200r-57,0v1,-73,24,-138,70,-193r-101,0","k":{":":14,"7":5,"6":10,"4":21,"1":12,".":24}},"8":{"d":"94,-244v72,-9,98,83,42,113v67,35,37,144,-47,135v-80,11,-106,-99,-39,-122v-60,-34,-32,-133,44,-126xm95,-209v-27,-2,-38,35,-16,48v8,6,16,10,25,14v23,-18,25,-60,-9,-62xm91,-33v26,0,43,-26,26,-46v-5,-6,-18,-13,-37,-22v-33,15,-30,68,11,68","k":{"7":5,"4":-4,"1":11}},"9":{"d":"86,-244v66,0,80,57,80,120v0,85,-27,128,-81,128v-37,0,-60,-20,-69,-59r46,-9v3,19,11,29,25,29v22,0,31,-30,30,-75v-9,14,-23,21,-42,21v-41,2,-65,-39,-65,-76v0,-44,28,-79,76,-79xm87,-205v-17,0,-26,16,-26,36v0,25,9,37,27,37v18,0,27,-12,27,-36v0,-21,-9,-37,-28,-37","k":{"7":10,"1":13}},":":{"d":"21,-178r49,0r0,54r-49,0r0,-54xm21,-53r49,0r0,53r-49,0r0,-53","w":91},";":{"d":"21,-178r49,0r0,54r-49,0r0,-54xm21,-53r49,0r0,48r-29,62r-20,0r23,-57r-23,0r0,-53","w":91},"\u037e":{"d":"21,-178r49,0r0,54r-49,0r0,-54xm21,-53r49,0r0,48r-29,62r-20,0r23,-57r-23,0r0,-53","w":91},"<":{"d":"170,-224r0,53r-99,51r99,51r0,53r-156,-82r0,-45"},"=":{"d":"166,-130r-148,0r0,-38r148,0r0,38xm166,-72r-148,0r0,-38r148,0r0,38"},">":{"d":"14,-16r0,-53r99,-51r-99,-51r0,-53r156,82r0,45"},"?":{"d":"102,-177v0,-14,-8,-23,-21,-24v-17,0,-26,14,-26,43r-45,-6v0,-46,28,-80,74,-80v59,0,83,55,63,103v-9,22,-52,34,-47,72r-42,0v-12,-63,44,-61,44,-108xm55,-51r47,0r0,51r-47,0r0,-51","w":171},"@":{"d":"101,-48v-61,0,-42,-140,14,-137v12,0,20,6,26,18r2,-16r24,0r-12,95v0,8,3,12,8,12v19,-1,28,-34,28,-60v0,-51,-23,-85,-72,-85v-52,0,-81,45,-81,101v0,57,29,102,85,100v23,0,44,-6,63,-19r9,24v-83,56,-188,1,-188,-104v0,-70,44,-129,112,-129v63,0,102,46,102,108v0,46,-25,90,-63,91v-14,0,-22,-6,-26,-20v-7,14,-18,21,-31,21xm117,-153v-16,2,-21,23,-20,45v0,18,4,27,13,27v13,0,19,-16,19,-48v0,-16,-4,-24,-12,-24","w":226},"A":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0","k":{"\u2019":12,"\u201d":13,"\u00ab":6,"y":1,"u":-2,"t":2,"g":-5,"b":-4,"Y":9,"W":4,"V":4,"U":4,"T":7,"Q":3,"O":3,"G":4,"C":4,".":-8,"-":-4,",":-8}},"B":{"d":"148,-125v69,27,46,142,-43,125r-82,0r0,-240v75,1,160,-15,160,63v0,27,-12,44,-35,52xm129,-173v0,-26,-25,-31,-56,-28r0,58v32,2,56,-2,56,-30xm136,-73v0,-33,-30,-32,-63,-31r0,63v33,2,63,-1,63,-32","w":202,"k":{"V":-1,"O":1}},"C":{"d":"70,-117v1,47,2,78,35,78v19,0,31,-16,34,-48r49,3v-3,49,-34,88,-83,88v-66,0,-91,-55,-91,-124v0,-71,25,-123,91,-124v50,0,78,31,82,93r-48,4v-1,-36,-12,-54,-33,-54v-34,0,-37,33,-36,84","w":196,"k":{"A":-3}},"D":{"d":"190,-121v0,74,-26,124,-104,121r-63,0r0,-240r56,0v81,-2,111,40,111,119xm135,-123v0,-49,-10,-80,-60,-76r0,158v52,3,60,-30,60,-82","w":202,"k":{"Y":3,"T":-3,"A":2}},"E":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240","w":171},"F":{"d":"23,-240r142,0r0,41r-90,0r0,63r69,0r0,41r-69,0r0,95r-52,0r0,-240","w":159,"k":{"u":3,"r":4,"a":5,"O":-3,"J":4,"A":4,".":17,"-":-4,",":17}},"G":{"d":"70,-117v0,46,5,78,40,78v21,0,33,-16,33,-48r-36,0r0,-41r83,0r0,128r-22,0r-7,-27v-13,21,-32,31,-58,31v-59,-1,-89,-55,-89,-119v0,-71,27,-128,94,-129v49,0,76,28,82,83r-47,7v-3,-31,-15,-47,-34,-47v-35,0,-39,34,-39,84","w":208,"k":{"Y":2,"T":-4,"A":-8}},"H":{"d":"23,-240r52,0r0,97r58,0r0,-97r53,0r0,240r-53,0r0,-98r-58,0r0,98r-52,0r0,-240","w":208},"I":{"d":"23,-240r52,0r0,240r-52,0r0,-240","w":98},"J":{"d":"-2,-44v32,6,44,1,44,-37r0,-159r53,0r0,159v7,70,-32,96,-97,81r0,-44","w":116},"K":{"d":"23,-240r52,0r0,100r59,-100r53,0r-60,88r65,152r-54,0r-43,-111r-20,29r0,82r-52,0r0,-240","w":190,"k":{"y":7,"o":3,"e":3,"a":-1,"T":-14,"O":5,"G":6,"C":6,"-":2}},"L":{"d":"23,-240r52,0r0,195r78,0r0,45r-130,0r0,-240","w":153,"k":{"\u2019":26,"\u201d":28,"y":5,"u":-4,"Y":11,"W":6,"V":6,"T":8,"O":-1}},"M":{"d":"23,-240r77,0r34,148r38,-148r75,0r0,240r-49,0r0,-201r-49,201r-39,0r-44,-201r0,201r-43,0r0,-240","w":269},"N":{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240","w":202,"k":{"u":-2,"o":-1,"a":1,"A":-7,".":-1,",":-1}},"O":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81","w":202,"k":{"Y":3,"X":5,"W":1,"T":-3,"A":1}},"P":{"d":"181,-165v1,64,-36,80,-106,76r0,89r-52,0r0,-240r69,0v61,-4,88,20,89,75xm126,-166v0,-30,-17,-39,-51,-35r0,71v33,3,51,-5,51,-36","k":{"a":1,"J":9,"A":6,".":27,",":27}},"Q":{"d":"144,-7v-1,20,18,21,35,15r0,38v-37,12,-70,-4,-70,-43v-70,5,-95,-47,-95,-123v0,-82,29,-124,87,-124v108,0,112,197,43,237xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81","w":202},"R":{"d":"98,-240v88,-17,108,103,49,135r44,105r-57,0r-32,-95r-27,0r0,95r-52,0r0,-240r75,0xm130,-168v0,-30,-22,-36,-55,-33r0,67v32,2,55,-1,55,-34","w":196,"k":{"y":-7,"o":2,"e":2,"W":-1,"V":-2,"U":2,"T":-7,"O":1,"G":2,"C":1,"-":2}},"S":{"d":"47,-113v-58,-34,-29,-131,44,-131v42,0,68,19,78,56r-43,17v-6,-20,-17,-30,-34,-30v-22,0,-34,26,-17,38v33,22,102,29,99,90v-2,46,-36,78,-85,77v-43,0,-71,-22,-83,-66r46,-13v6,24,18,36,38,36v24,0,41,-23,25,-42v-10,-11,-56,-25,-68,-32","k":{"t":2,"Y":-1,"W":-2,"V":-4,"T":-8,"A":-4}},"T":{"d":"-4,-240r149,0r0,45r-49,0r0,195r-52,0r0,-195r-48,0r0,-45","w":140,"k":{"\u00ab":17,"y":8,"w":9,"v":8,"u":10,"s":12,"r":10,"o":12,"j":-5,"i":-5,"g":13,"e":13,"c":12,"a":15,"Y":-21,"W":-17,"V":-18,"S":-7,"O":-4,"J":5,"G":-2,"C":-2,"A":5,";":12,":":12,".":10,"-":6,",":10}},"U":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244","w":208,"k":{"A":2,".":4,",":4}},"V":{"d":"-5,-240r55,0r37,183r39,-183r45,0r-59,241r-59,-1","w":165,"k":{"\u00ab":10,"y":-10,"r":1,"o":5,"g":6,"e":6,"a":8,"T":-18,"S":-2,"G":1,"A":3,";":2,":":2,".":10,",":10}},"W":{"d":"-2,-240r54,0r25,166r32,-166r48,0r30,167r29,-167r44,0r-51,241r-47,0r-32,-167r-33,167r-47,0","w":257,"k":{"\u00ab":8,"y":-9,"r":1,"o":4,"g":5,"e":5,"a":7,"T":-17,"S":-1,"G":1,"A":2,":":2,".":8,"-":-2,",":8}},"X":{"d":"2,-240r58,0r29,62r30,-62r51,0r-57,109r64,131r-58,0r-35,-78r-39,78r-50,0r65,-123","w":171,"k":{"y":2,"o":2,"e":2,"Q":4,"O":4,"C":4,"-":3}},"Y":{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101","w":159,"k":{"\u00ab":21,"v":-3,"u":7,"p":7,"o":14,"g":15,"e":15,"a":17,"T":-21,"O":4,"G":5,"C":5,"A":10,";":8,":":8,".":17,"-":11,",":17}},"Z":{"d":"8,-240r154,0r0,38r-100,159r103,0r0,43r-165,0r0,-37r101,-160r-93,0r0,-43","w":165},"[":{"d":"26,-240r74,0r0,23r-30,0r0,255r30,0r0,22r-74,0r0,-300","w":122},"\\":{"d":"51,-240r146,300r-33,0r-147,-300r34,0","w":190},"]":{"d":"96,60r-74,0r0,-22r31,0r0,-255r-31,0r0,-23r74,0r0,300","w":122},"^":{"d":"53,-126r-48,0r55,-115r60,0r54,115r-47,0r-37,-79","w":180},"_":{"d":"0,20r180,0r0,32r-180,0r0,-32","w":180},"`":{"d":"114,-211r-14,14r-65,-40r19,-30","w":165},"a":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22","w":171,"k":{"y":2,"v":1}},"b":{"d":"161,-90v0,52,-17,92,-63,94v-20,0,-33,-9,-41,-27v-3,6,-6,14,-9,23r-30,0r0,-240r49,0r0,79v43,-47,94,2,94,71xm110,-89v0,-31,0,-55,-21,-58v-27,-4,-22,44,-22,73v0,26,0,41,21,43v24,-3,22,-27,22,-58","w":171,"k":{"y":1}},"c":{"d":"11,-88v-1,-55,22,-92,72,-93v41,0,64,23,68,69r-46,2v-2,-17,-3,-32,-20,-33v-17,0,-25,17,-25,52v0,53,41,80,45,22r46,3v-4,47,-28,70,-70,70v-51,-1,-70,-37,-70,-92","w":159},"d":{"d":"11,-88v-1,-53,16,-92,59,-92v17,0,28,6,35,19r0,-79r49,0r0,240r-46,0r0,-29v-8,21,-21,31,-40,31v-44,0,-57,-43,-57,-90xm83,-32v27,2,21,-41,22,-71v0,-28,-2,-42,-22,-44v-24,5,-21,25,-21,63v0,29,-1,51,21,52","w":171},"e":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0","w":165,"k":{"y":2,"x":1,"v":1}},"f":{"d":"27,-178v-5,-57,24,-77,80,-70r0,39v-25,-3,-36,2,-33,31r31,0r0,39r-31,0r0,139r-47,0r0,-139r-20,0r0,-39r20,0","w":104,"k":{"t":-8,"s":-4,"o":-2,"l":-3,"j":-2,"i":-3,"f":-8,"e":-1}},"g":{"d":"122,-173v1,-29,18,-38,47,-34r0,33v-14,-5,-26,-1,-29,14v37,44,-11,107,-74,86v-12,5,-17,17,-6,23v39,7,107,-4,107,54v0,40,-29,60,-87,60v-73,0,-97,-55,-43,-76v-36,-16,-29,-52,7,-69v-50,-26,-23,-99,40,-99v13,0,26,3,38,8xm86,-98v15,-1,16,-11,16,-28v0,-19,-6,-29,-16,-29v-14,1,-17,12,-17,30v0,18,6,27,17,27xm124,13v0,-26,-35,-15,-60,-21v-28,18,-20,42,25,40v23,0,35,-7,35,-19","w":165},"h":{"d":"90,-143v-17,0,-22,9,-22,31r0,112r-50,0r0,-240r50,0r0,81v9,-15,23,-22,43,-22v74,0,36,114,45,181r-49,0r0,-114v-2,-20,0,-29,-17,-29","w":171},"i":{"d":"68,-192r-50,0r0,-49r50,0r0,49xm18,-178r50,0r0,178r-50,0r0,-178","w":85},"j":{"d":"70,-192r-50,0r0,-49r50,0r0,49xm-3,22v22,1,23,-5,23,-29r0,-171r49,0r0,172v5,56,-18,79,-72,69r0,-41","w":85},"k":{"d":"18,-240r50,0r0,131r50,-69r45,0r-45,60r49,118r-53,0r-28,-82r-18,25r0,57r-50,0r0,-240","w":165,"k":{"u":-1,"o":4,"g":-3,"e":4,".":-4,"-":4,",":-4}},"l":{"d":"18,-240r50,0r0,240r-50,0r0,-240","w":85},"m":{"d":"88,-143v-21,0,-19,15,-20,40r0,103r-50,0r0,-178r47,0r0,25v11,-36,75,-39,82,0v8,-19,22,-28,43,-28v76,-2,36,114,46,181r-50,0r0,-111v0,-22,2,-32,-15,-32v-21,0,-19,14,-19,40r0,103r-49,0r0,-112v-1,-21,1,-31,-15,-31","w":251,"k":{"w":-1,"p":-1}},"n":{"d":"90,-143v-22,0,-21,13,-22,39r0,104r-50,0r0,-178r47,0r0,25v8,-19,24,-28,45,-28v74,0,38,112,46,181r-49,0r0,-116v-1,-19,-2,-27,-17,-27","w":171,"k":{"w":-1,"p":-1}},"o":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58","w":165,"k":{"y":1,"x":1,"v":1}},"p":{"d":"161,-92v0,68,-46,120,-94,79r0,73r-49,0r0,-238r46,0r0,27v10,-19,23,-29,40,-29v39,0,57,37,57,88xm89,-147v-29,-3,-22,44,-22,74v0,28,-1,41,21,41v25,0,22,-21,22,-59v0,-33,2,-54,-21,-56","w":171,"k":{"y":1}},"q":{"d":"11,-86v-12,-78,61,-125,102,-69v5,-6,9,-14,13,-23r28,0v-4,70,-1,162,-2,238r-49,0r0,-78v-39,50,-102,-3,-92,-68xm83,-32v26,0,20,-43,20,-75v0,-26,-1,-38,-21,-40v-24,2,-20,20,-20,54v0,39,-4,56,21,61","w":171},"r":{"d":"18,-178r44,0r0,43v10,-33,23,-49,50,-44r0,48v-58,-10,-42,77,-44,131r-50,0r0,-178","w":110,"k":{"z":-5,"y":-13,"x":-12,"w":-13,"v":-13,"t":-8,"s":-5,"q":-4,"p":-2,"o":-4,"k":-2,"h":-2,"g":-2,"f":-8,"d":-4,"c":-4,"a":-2,";":-2,":":-2,".":12,"-":4,",":12}},"s":{"d":"24,-92v-31,-38,2,-89,51,-89v32,0,51,15,60,46r-35,11v-5,-16,-13,-24,-26,-24v-16,0,-20,21,-10,28v27,18,78,20,77,66v-1,35,-30,58,-68,58v-40,0,-62,-18,-66,-53r39,-7v0,29,45,38,48,10v-3,-28,-61,-26,-70,-46","w":147,"k":{"t":-1}},"t":{"d":"109,0v-54,12,-83,-5,-83,-68r0,-71r-20,0r0,-39r20,0r0,-54r48,-2r0,56r33,0r0,39r-33,0v7,39,-23,114,35,101r0,38","w":110,"k":{"o":-1,"a":-3,";":-2,":":-2}},"u":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28","w":171},"v":{"d":"-4,-178r48,0r24,105r25,-105r41,0r-49,178r-39,0","w":128,"k":{"s":-1,"a":2,";":-4,":":-4,".":7,"-":-4,",":7}},"w":{"d":"-3,-178r48,0r21,108r20,-108r48,0r16,108r24,-108r39,0r-44,178r-42,0r-23,-121r-22,121r-40,0","w":208,"k":{"s":-1,"a":2,";":-4,":":-4,".":5,"-":-5,",":5}},"x":{"d":"-2,-178r54,0r19,42r23,-42r43,0r-46,79r53,99r-54,0r-26,-53r-30,53r-43,0r53,-91","w":135,"k":{"e":1,"c":1,"a":-2}},"y":{"d":"-5,-178r50,0r24,109r23,-109r42,0r-53,181v-9,44,-30,67,-79,57r0,-39v26,3,40,0,44,-24","w":128,"k":{"o":1,"g":1,"e":2,"c":1,"a":3,";":-4,":":-4,".":9,"-":-3,",":9}},"z":{"d":"13,-178r111,0r0,32r-66,111r68,0r0,35r-119,0r0,-35r65,-107r-59,0r0,-36","w":128},"{":{"d":"33,-144v0,-57,-7,-109,63,-96r0,24v-50,-4,9,117,-41,124v34,5,16,55,21,97v2,24,-2,30,20,31r0,24v-47,3,-65,-6,-63,-55v-5,-28,15,-83,-18,-83r0,-29v22,-2,18,-8,18,-37","w":122},"|":{"d":"63,-240r54,0r0,300r-54,0r0,-300","w":180},"}":{"d":"90,-66v-7,55,19,136,-47,126r-16,0r0,-24v49,4,-11,-119,40,-128v-33,-6,-17,-52,-21,-93v-1,-25,3,-30,-19,-31r0,-24v74,-14,61,48,63,112v0,16,2,20,17,21r0,29v-11,0,-16,4,-17,12","w":122},"~":{"d":"151,-201v-9,3,-53,-20,-66,-20v-9,0,-17,7,-25,22r-27,-22v13,-33,31,-49,54,-49v9,-3,57,22,68,22v10,0,18,-8,26,-23r26,22v-12,32,-31,48,-56,48","w":239},"\u00c4":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm141,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm61,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19"},"\u00c5":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm92,-255v-17,0,-34,-15,-34,-34v0,-18,17,-34,34,-34v17,0,34,16,34,34v0,19,-17,34,-34,34xm92,-303v-7,-1,-15,7,-14,14v0,7,8,14,14,14v6,0,13,-7,13,-14v0,-7,-6,-14,-13,-14"},"\u00c7":{"d":"142,47v-2,36,-51,39,-77,18r6,-16v11,6,21,9,29,9v8,0,12,-3,12,-10v0,-13,-16,-17,-32,-15r11,-30v-51,-9,-77,-51,-77,-123v0,-71,25,-123,91,-124v50,0,78,31,82,93r-48,4v-1,-36,-12,-54,-33,-54v-34,0,-37,33,-36,84v1,47,2,78,35,78v19,0,31,-16,34,-48r49,3v-2,47,-30,85,-78,88r-4,14v22,-2,36,9,36,29","w":196},"\u00c9":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm67,-273r60,-56r20,30r-65,40","w":171},"\u00d1":{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240xm46,-275v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":202},"\u00d6":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm153,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm73,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":202},"\u00dc":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm156,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm76,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":208},"\u00e1":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm64,-211r60,-56r20,30r-65,40","w":171},"\u00e0":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm117,-211r-14,14r-65,-40r19,-30","w":171},"\u00e2":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm10,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":171},"\u00e4":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm140,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm60,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":171},"\u00e3":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm32,-219v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":171},"\u00e5":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm90,-195v-17,0,-34,-15,-34,-34v0,-18,17,-34,34,-34v17,0,34,16,34,34v0,19,-17,34,-34,34xm90,-243v-7,-1,-15,7,-14,14v0,7,8,14,14,14v6,0,13,-7,13,-14v0,-7,-6,-14,-13,-14","w":171},"\u00e7":{"d":"11,-88v-1,-55,22,-92,72,-93v41,0,64,23,68,69r-46,2v-2,-17,-3,-32,-20,-33v-17,0,-25,17,-25,52v0,53,41,80,45,22r46,3v-4,43,-25,66,-62,70r-6,14v20,-4,36,8,36,27v-1,35,-48,37,-75,18r6,-16v15,9,36,18,41,-1v-1,-13,-16,-18,-32,-14r10,-29v-39,-6,-58,-37,-58,-91","w":159},"\u00e9":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm59,-211r60,-56r20,30r-65,40","w":165},"\u00e8":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm114,-211r-14,14r-65,-40r19,-30","w":165},"\u00ea":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm16,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":165},"\u00eb":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm137,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm57,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":165},"\u00ed":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm15,-211r60,-56r20,30r-65,40","w":85},"\u00ec":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm71,-211r-14,14r-65,-40r19,-30","w":85},"\u00ee":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm-28,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":85},"\u00ef":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm93,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm13,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":85},"\u00f1":{"d":"90,-143v-22,0,-21,13,-22,39r0,104r-50,0r0,-178r47,0r0,25v8,-19,24,-28,45,-28v74,0,38,112,46,181r-49,0r0,-116v-1,-19,-2,-27,-17,-27xm27,-219v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":171},"\u00f3":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm57,-211r60,-56r20,30r-65,40","w":165},"\u00f2":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm112,-211r-14,14r-65,-40r19,-30","w":165},"\u00f4":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm12,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":165},"\u00f6":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm133,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm53,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":165},"\u00f5":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm25,-219v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":165},"\u00fa":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm57,-211r60,-56r20,30r-65,40","w":171},"\u00f9":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm112,-211r-14,14r-65,-40r19,-30","w":171},"\u00fb":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm14,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":171},"\u00fc":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm135,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm55,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":171},"\u2020":{"d":"68,-240r48,0r0,64r50,0r0,42r-50,0r0,194r-48,0r0,-194r-50,0r0,-42r50,0r0,-64"},"\u00b0":{"d":"92,-244v31,0,57,25,57,57v0,31,-26,58,-57,58v-31,0,-57,-27,-57,-58v0,-31,26,-57,57,-57xm92,-158v14,0,25,-15,25,-29v1,-14,-11,-28,-25,-28v-14,0,-24,14,-24,28v0,14,10,29,24,29"},"\u00a2":{"d":"82,-36v-78,-6,-77,-170,0,-173r0,-32r26,0r0,32v31,4,48,26,52,64r-41,3v-1,-21,-9,-32,-23,-32v-22,0,-22,21,-22,51v0,31,0,48,22,51v17,-2,19,-11,23,-32r41,4v-5,39,-22,60,-52,64r0,38r-26,0r0,-38"},"\u00a3":{"d":"111,-205v-23,-1,-14,38,-13,58r40,0r0,37r-35,0v1,37,-8,53,-27,69v42,3,74,-3,79,-36r38,15v-10,45,-31,62,-90,62r-100,0r0,-41v49,8,55,-24,51,-69r-28,0r0,-37r22,0v-9,-56,10,-97,63,-97v33,0,53,16,61,46r-38,18v-4,-17,-12,-25,-23,-25"},"\u00a7":{"d":"53,-143v-41,-33,-14,-101,45,-101v35,0,58,15,67,45r-37,12v-1,-29,-50,-33,-50,-4v0,41,84,30,84,91v0,19,-7,34,-23,47v50,34,20,113,-47,113v-41,0,-65,-17,-73,-54r41,-7v0,33,64,38,60,3v-5,-47,-95,-34,-95,-97v0,-22,10,-37,28,-48xm91,-120v-17,-14,-25,-2,-25,13v0,23,26,27,47,39v21,-22,5,-44,-22,-52"},"\u2022":{"d":"120,-173v26,0,49,24,49,51v0,27,-23,50,-49,50v-26,0,-50,-24,-50,-50v0,-27,23,-51,50,-51","w":239},"\u00b6":{"d":"8,-167v0,-51,20,-73,77,-73r83,0r0,300r-28,0r0,-271r-17,0r0,271r-28,0r0,-153v-60,4,-87,-18,-87,-74","w":196},"\u00df":{"d":"100,-220v-28,2,-28,21,-27,57r0,184r-50,0r0,-143r-19,0r0,-39r19,0v-1,-58,29,-93,85,-93v38,0,61,19,62,52v0,27,-18,46,-54,57v28,21,76,31,76,81v0,56,-55,83,-106,60r12,-33v21,9,51,10,50,-17v-3,-40,-66,-37,-64,-81v0,-9,2,-19,6,-30v22,-3,34,-13,34,-30v-1,-14,-9,-26,-24,-25","w":196},"\u00ae":{"d":"140,4v-67,0,-126,-57,-126,-124v0,-67,60,-124,126,-124v67,0,126,57,126,124v0,67,-59,124,-126,124xm140,-216v-51,0,-95,45,-95,96v0,52,44,96,95,96v51,0,95,-45,95,-96v0,-52,-44,-96,-95,-96xm89,-192v51,-1,106,-7,104,44v0,18,-8,30,-22,37r27,63r-42,0r-19,-55r-9,0r0,55r-39,0r0,-144xm128,-165r0,35v16,1,27,-2,27,-18v0,-14,-11,-18,-27,-17","w":280},"\u00a9":{"d":"140,4v-67,0,-126,-57,-126,-124v0,-67,60,-124,126,-124v67,0,126,57,126,124v0,67,-59,124,-126,124xm140,-216v-51,0,-95,45,-95,96v0,52,44,96,95,96v51,0,95,-45,95,-96v0,-52,-44,-96,-95,-96xm123,-118v0,46,37,61,41,15r36,2v-2,31,-23,56,-57,55v-40,-1,-62,-28,-61,-73v0,-45,18,-75,62,-75v34,0,52,19,55,58r-36,2v-1,-21,-7,-31,-19,-31v-14,0,-21,16,-21,47","w":280},"\u2122":{"d":"5,-233r90,0r0,26r-30,0r0,111r-32,0r0,-111r-28,0r0,-26xm105,-233r48,0r19,84r22,-84r46,0r0,137r-29,0r0,-114r-30,114r-23,0r-27,-114r0,114r-26,0r0,-137","w":263},"\u00b4":{"d":"65,-211r60,-56r20,30r-65,40","w":165},"\u00a8":{"d":"133,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm53,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":165},"\u2260":{"d":"136,-168r30,0r0,38r-48,0r-10,20r58,0r0,38r-76,0r-18,40r-34,-16r11,-24r-31,0r0,-38r48,0r10,-20r-58,0r0,-38r76,0r18,-40r34,16"},"\u00c6":{"d":"80,-240r162,0r0,41r-89,0r0,56r70,0r0,41r-70,0r0,59r89,0r0,43r-139,0r0,-56r-53,0r-19,56r-45,0xm104,-94r0,-111r-40,111r40,0","w":245},"\u00d8":{"d":"155,-254r28,0r-20,38v17,20,25,53,25,96v0,101,-53,145,-129,114r-11,21r-27,0r19,-38v-17,-21,-26,-54,-26,-97v0,-102,56,-146,130,-113xm123,-195v-42,-25,-58,12,-58,75v0,18,0,33,2,44xm80,-43v49,23,61,-23,58,-85v0,-11,-1,-23,-3,-34","w":202},"\u221e":{"d":"69,-181v21,0,41,16,50,31v27,-62,111,-49,111,21v0,35,-21,61,-54,61v-22,0,-41,-13,-57,-40v-9,15,-28,30,-50,30v-26,0,-43,-24,-43,-51v0,-28,17,-52,43,-52xm204,-130v0,-17,-9,-36,-27,-35v-13,0,-26,11,-41,35v18,24,16,34,41,36v18,1,27,-19,27,-36xm51,-130v3,35,35,30,53,0v-12,-17,-22,-25,-33,-25v-11,0,-21,11,-20,25","w":256},"\u00b1":{"d":"112,-139r54,0r0,38r-54,0r0,51r-40,0r0,-51r-54,0r0,-38r54,0r0,-55r40,0r0,55xm166,4r-148,0r0,-38r148,0r0,38"},"\u2264":{"d":"170,-230r0,50r-97,32r97,31r0,50r-156,-59r0,-45xm170,-57r0,47r-156,0r0,-47r156,0"},"\u2265":{"d":"14,-67r0,-50r98,-31r-98,-32r0,-50r156,59r0,45xm14,-10r0,-47r156,0r0,47r-156,0"},"\u00a5":{"d":"9,-240r51,0r36,98r38,-98r41,0r-39,94r36,0r0,26r-47,0r-10,21r57,0r0,27r-57,0r0,72r-47,0r0,-72r-54,0r0,-27r54,0r-9,-21r-45,0r0,-26r34,0"},"\u00b5":{"d":"85,-35v24,-2,19,-21,19,-52r0,-91r50,0r0,178r-47,0r0,-24v-3,19,-7,26,-22,28v-16,-2,-19,-10,-23,-28r0,84r-46,0r0,-238r49,0r0,91v1,32,-4,49,20,52","w":171},"\u2202":{"d":"145,-166v7,-63,-55,-88,-78,-31r-24,-15v9,-29,32,-50,65,-50v45,0,65,43,64,97v-2,80,-31,168,-109,170v-34,0,-56,-25,-55,-62v1,-67,62,-112,137,-109xm48,-59v0,42,50,35,69,2v12,-20,22,-44,26,-76v-54,-5,-95,29,-95,74","w":177},"\u2211":{"d":"24,-270r218,0r0,29r-174,0r107,141r-114,147r183,0r0,28r-223,0r0,-33r109,-141r-106,-140r0,-31","w":256},"\u220f":{"d":"28,-270r240,0r0,345r-34,0r0,-314r-172,0r0,314r-34,0r0,-345","w":296},"\uf006":{"d":"172,-137r0,137r-50,0r0,-137r-49,0r0,137r-50,0r0,-137r-18,0r0,-41r184,0r0,41r-17,0","w":194},"\u222b":{"d":"0,17v1,-25,28,-14,37,-6v5,0,6,-3,6,-10v-4,-82,-14,-243,2,-300v9,-31,45,-38,53,-10v0,24,-24,20,-36,9v-5,0,-7,3,-7,11v4,88,11,121,6,225v-4,67,-2,93,-40,103v-12,0,-21,-9,-21,-22","w":98},"\u00aa":{"d":"73,-111v-15,26,-65,22,-65,-14v0,-25,20,-38,60,-40v4,-19,-19,-24,-20,-5r-36,-3v5,-22,21,-33,48,-33v60,0,39,65,47,110r-32,0v-1,-5,-2,-10,-2,-15xm68,-144v-21,-6,-32,22,-14,26v9,0,14,-8,14,-26","w":116},"\u00ba":{"d":"104,-151v0,38,-16,57,-49,57v-33,0,-49,-19,-49,-56v0,-37,16,-56,49,-56v33,0,49,18,49,55xm55,-120v17,-2,16,-60,0,-60v-17,0,-15,58,0,60","w":110},"\u2126":{"d":"68,-139v1,46,21,81,55,96r0,43r-113,0r0,-40v25,0,47,3,71,4v-45,-19,-67,-55,-67,-107v-1,-73,50,-121,124,-121v80,0,127,45,127,121v0,51,-22,87,-67,107r71,-4r0,40r-113,0r0,-43v75,-24,75,-183,-18,-183v-46,0,-70,41,-70,87","w":276},"\u00e6":{"d":"101,-110v1,-21,0,-38,-19,-38v-13,0,-21,9,-22,28r-43,-5v0,-55,80,-74,110,-38v32,-36,100,-12,107,27v2,13,7,31,7,55r-92,0v-1,28,4,50,23,50v14,0,23,-9,25,-29r42,3v-2,66,-93,82,-118,30v-21,45,-112,42,-108,-19v4,-48,32,-61,88,-64xm194,-109v0,-26,-7,-39,-22,-39v-14,0,-22,13,-23,39r45,0xm101,-85v-27,4,-39,9,-39,33v0,15,6,23,17,23v19,0,23,-28,22,-56","w":251},"\u00f8":{"d":"127,-196r23,0r-17,34v14,16,22,40,22,73v0,76,-43,107,-104,87r-11,23r-23,0r17,-35v-15,-16,-23,-41,-23,-75v0,-76,44,-106,105,-86xm99,-145v-48,-21,-47,44,-42,92xm69,-31v46,16,45,-41,41,-89","w":165},"\u00bf":{"d":"116,-126r-47,0r0,-52r47,1r0,51xm70,0v0,14,8,23,21,23v17,0,25,-14,25,-43r45,6v-1,46,-26,80,-73,80v-79,0,-91,-99,-36,-134v16,-16,20,-13,20,-41r42,0v10,62,-41,62,-44,109","w":171},"\u00a1":{"d":"86,-124r-49,0r0,-54r49,1r0,53xm93,63r-63,0r15,-169r32,0","w":122},"\u00ac":{"d":"116,0r0,-57r-104,0r0,-48r156,0r0,105r-52,0","w":180},"\u221a":{"d":"184,-329r13,0r-55,343r-87,-180r-35,16r-6,-11r53,-27r71,145","w":197},"\u0192":{"d":"82,-173v7,-62,30,-81,87,-69r-6,39v-24,-9,-34,4,-35,30r31,0r-6,39r-30,0v-18,75,4,207,-102,184r6,-39v27,4,31,-5,34,-32r15,-113r-25,0r6,-39r25,0"},"\u2248":{"d":"123,-124v-10,2,-52,-21,-67,-21v-9,0,-17,6,-25,19r-26,-18v13,-33,31,-49,54,-49v9,-3,56,21,68,21v9,0,18,-6,26,-19r26,18v-12,32,-31,49,-56,49xm122,-47v-9,2,-52,-20,-66,-20v-9,0,-17,6,-25,19r-26,-19v13,-33,31,-49,54,-49v9,-3,58,21,68,22v9,0,18,-6,26,-19r26,18v-12,32,-31,48,-57,48"},"\u2206":{"d":"216,0r-211,0r110,-244xm174,-14r-70,-170r-77,170r147,0","w":220},"\u00ab":{"d":"142,-29r-26,0r-37,-63r37,-63r26,0r-22,63xm81,-29r-27,0r-37,-63r37,-63r27,0r-22,63","w":159,"k":{"\u0447":3,"\u0442":-6,"\u043b":-1,"\u042f":5,"\u0427":3,"\u0423":5,"\u0422":14,"\u041b":-3,"\u0410":-4}},"\u00bb":{"d":"17,-155r27,0r37,63r-37,63r-27,0r22,-63xm79,-155r26,0r37,63r-37,63r-26,0r22,-63","w":159,"k":{"Y":17,"W":9,"V":9,"T":16,"A":4}},"\u2026":{"d":"21,-53r49,0r0,53r-49,0r0,-53xm113,-53r50,0r0,53r-50,0r0,-53xm205,-53r50,0r0,53r-50,0r0,-53","w":275},"\u00a0":{"w":67},"\u00c0":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm120,-269r-14,14r-65,-40r19,-30"},"\u00c3":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm34,-275v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11"},"\u00d5":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm43,-275v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":202},"\u0152":{"d":"14,-114v0,-91,38,-144,125,-126r140,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-143,0v-80,21,-122,-38,-122,-114xm107,-201v-36,0,-36,46,-37,85v-2,66,25,92,64,68r0,-143v-7,-6,-16,-10,-27,-10","w":282},"\u0153":{"d":"81,4v-50,0,-70,-38,-70,-93v0,-88,73,-116,120,-71v30,-41,102,-15,109,26v2,14,7,31,7,53r-94,0v-1,28,2,50,25,50v15,0,23,-10,25,-30r44,3v-7,62,-77,80,-118,43v-11,13,-27,19,-48,19xm200,-109v1,-24,-6,-39,-23,-39v-16,0,-24,13,-24,39r47,0xm83,-31v23,-3,21,-26,21,-58v0,-34,1,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58","w":257},"\u2013":{"d":"14,-109r131,0r0,36r-131,0r0,-36","w":159},"\u2014":{"d":"13,-109r213,0r0,36r-213,0r0,-36","w":239},"\u201c":{"d":"130,-144r-45,0r0,-53r25,-47r20,0r-20,47r20,0r0,53xm68,-144r-45,0r0,-53r26,-47r19,0r-19,47r19,0r0,53","w":153,"k":{"Y":-5,"W":-5,"V":-7,"T":-4,"A":13}},"\u201d":{"d":"23,-240r45,0r0,53r-25,47r-20,0r20,-47r-20,0r0,-53xm85,-240r45,0r0,53r-26,47r-19,0r19,-47r-19,0r0,-53","w":153,"k":{"Y":-7,"W":-5,"V":-6,"T":-4,"A":14}},"\u2018":{"d":"65,-144r-45,0r0,-53r26,-47r19,0r-19,47r19,0r0,53","w":85},"\u2019":{"d":"20,-240r45,0r0,53r-25,47r-20,0r20,-47r-20,0r0,-53","w":85},"\u00f7":{"d":"113,-156r-42,0r0,-47r42,0r0,47xm166,-101r-148,0r0,-38r148,0r0,38xm113,-37r-42,0r0,-48r42,0r0,48"},"\u25ca":{"d":"97,-250r73,125r-73,125r-20,0r-69,-125r69,-125r20,0xm87,-233r-60,108r60,108r63,-108","w":177},"\u00ff":{"d":"-5,-178r50,0r24,109r23,-109r42,0r-53,181v-9,44,-30,67,-79,57r0,-39v26,3,40,0,44,-24xm117,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm37,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":128},"\u0178":{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101xm130,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm50,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":159},"\u2215":{"d":"58,-240r29,0r-115,240r-28,0","w":30},"\u20ac":{"d":"22,-159v-2,-97,146,-116,160,-19r-45,11v-4,-23,-16,-34,-33,-34v-18,0,-30,14,-33,42r39,0r0,27r-41,0r0,21r41,0r0,27r-40,0v1,55,58,58,66,14r45,10v-11,43,-29,64,-78,64v-51,0,-76,-37,-82,-88r-20,0r0,-27r17,0r0,-21r-17,0r0,-27r21,0"},"\u2039":{"d":"81,-29r-27,0r-37,-63r37,-63r27,0r-22,63","w":98},"\u203a":{"d":"18,-155r26,0r37,63r-37,63r-26,0r22,-63","w":98},"\ufb01":{"d":"105,-209v-23,-3,-33,4,-31,31r31,0r0,39r-31,0r0,139r-47,0r0,-139r-20,0r0,-39r20,0v-5,-59,23,-75,78,-70r0,39xm172,-192r-50,0r0,-49r50,0r0,49xm122,-178r50,0r0,178r-50,0r0,-178","w":190},"\ufb02":{"d":"105,-209v-23,-3,-33,4,-31,31r31,0r0,39r-31,0r0,139r-47,0r0,-139r-20,0r0,-39r20,0v-5,-59,23,-75,78,-70r0,39xm122,-240r50,0r0,240r-50,0r0,-240","w":190},"\u2021":{"d":"68,-240r48,0r0,64r50,0r0,42r-50,0r0,88r50,0r0,42r-50,0r0,64r-48,0r0,-64r-50,0r0,-42r50,0r0,-88r-50,0r0,-42r50,0r0,-64"},"\u2219":{"d":"21,-119r49,0r0,53r-49,0r0,-53","w":91},"\u201a":{"d":"20,-53r45,0r0,53r-25,47r-20,0r20,-47r-20,0r0,-53","w":85},"\u201e":{"d":"23,-53r45,0r0,53r-25,47r-20,0r20,-47r-20,0r0,-53xm85,-53r45,0r0,53r-26,47r-19,0r19,-47r-19,0r0,-53","w":153,"k":{"Y":14,"W":10,"V":10,"T":11,"A":-9}},"\u2030":{"d":"57,-241v33,0,48,26,48,62v0,35,-15,61,-48,61v-33,0,-46,-24,-47,-61v0,-37,14,-62,47,-62xm57,-144v20,-1,19,-72,0,-71v-15,1,-13,15,-13,36v0,23,0,31,13,35xm163,-240r27,0r-113,240r-27,0xm182,-122v33,0,47,24,47,62v0,37,-14,61,-47,61v-33,0,-48,-26,-48,-61v0,-37,15,-62,48,-62xm182,-25v20,-1,19,-71,0,-71v-19,1,-19,71,0,71xm291,-122v33,0,49,24,48,62v0,35,-15,61,-48,61v-33,0,-47,-24,-47,-61v1,-36,13,-62,47,-62xm291,-25v22,-1,19,-71,0,-71v-15,0,-13,15,-13,36v0,23,0,31,13,35","w":349},"\u00c2":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm21,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0"},"\u00ca":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm26,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":171},"\u00c1":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm66,-269r60,-56r20,30r-65,40"},"\u00cb":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm146,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm66,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":171},"\u00c8":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm126,-269r-14,14r-65,-40r19,-30","w":171},"\u00cd":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm16,-269r60,-56r20,30r-65,40","w":98},"\u00ce":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm-22,-257r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":98},"\u00cf":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm99,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm19,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":98},"\u00cc":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm80,-269r-14,14r-65,-40r19,-30","w":98},"\u00d3":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm71,-273r60,-56r20,30r-65,40","w":202},"\u00d4":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm32,-257r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":202},"\u00d2":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm131,-273r-14,14r-65,-40r19,-30","w":202},"\u00da":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm76,-269r60,-56r20,30r-65,40","w":208},"\u00db":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm20,-260r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":208},"\u00d9":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm136,-269r-14,14r-65,-40r19,-30","w":208},"\u0131":{"d":"18,-178r50,0r0,178r-50,0r0,-178","w":85},"\u02c6":{"d":"12,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":165},"\u02dc":{"d":"25,-219v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":165},"\u02c9":{"d":"33,-236r99,0r0,26r-99,0r0,-26","w":165},"\u02d8":{"d":"25,-246r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":165},"\u02d9":{"d":"83,-201v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":165},"\u02da":{"d":"83,-195v-17,0,-34,-15,-34,-34v0,-18,17,-34,34,-34v17,0,34,16,34,34v0,19,-17,34,-34,34xm83,-243v-7,-1,-15,7,-14,14v0,7,8,14,14,14v6,0,13,-7,13,-14v0,-7,-6,-14,-13,-14","w":165},"\u00b8":{"d":"96,46v-1,-13,-16,-18,-32,-14r11,-32r20,0r-7,18v20,-4,36,7,36,27v-1,35,-48,37,-75,18r6,-15v15,9,37,16,41,-2","w":165},"\u02dd":{"d":"89,-258r20,22r-50,39r-13,-13xm144,-258r20,22r-50,39r-13,-13","w":165},"\u02db":{"d":"133,63v-30,8,-65,-1,-66,-29v0,-15,15,-38,43,-34v-28,19,-17,55,19,46","w":165},"\u02c7":{"d":"12,-251r39,0r32,21r32,-21r38,0r-70,55","w":165},"\u0141":{"d":"23,-240r52,0r0,84r40,-40r0,43r-40,39r0,69r78,0r0,45r-130,0r0,-78r-21,21r0,-43r21,-21r0,-119","w":153},"\u0142":{"d":"24,-240r50,0r0,81r21,-21r0,35r-21,21r0,124r-50,0r0,-91r-21,21r0,-35r21,-21r0,-114","w":98},"\u0160":{"d":"47,-113v-58,-34,-29,-131,44,-131v42,0,68,19,78,56r-43,17v-6,-20,-17,-30,-34,-30v-22,0,-34,26,-17,38v33,22,102,29,99,90v-2,46,-36,78,-85,77v-43,0,-71,-22,-83,-66r46,-13v6,24,18,36,38,36v24,0,41,-23,25,-42v-10,-11,-56,-25,-68,-32xm24,-310r39,0r32,21r32,-21r38,0r-70,55"},"\u0161":{"d":"24,-92v-31,-38,2,-89,51,-89v32,0,51,15,60,46r-35,11v-5,-16,-13,-24,-26,-24v-16,0,-20,21,-10,28v27,18,78,20,77,66v-1,35,-30,58,-68,58v-40,0,-62,-18,-66,-53r39,-7v0,29,45,38,48,10v-3,-28,-61,-26,-70,-46xm5,-251r39,0r32,21r32,-21r38,0r-70,55","w":147},"\u017d":{"d":"8,-240r154,0r0,38r-100,159r103,0r0,43r-165,0r0,-37r101,-160r-93,0r0,-43xm16,-310r39,0r32,21r32,-21r38,0r-70,55","w":165},"\u017e":{"d":"13,-178r111,0r0,32r-66,111r68,0r0,35r-119,0r0,-35r65,-107r-59,0r0,-36xm0,-251r39,0r32,21r32,-21r38,0r-70,55","w":128},"\u00a6":{"d":"63,-240r54,0r0,126r-54,0r0,-126xm63,-55r54,0r0,115r-54,0r0,-115","w":180},"\u00d0":{"d":"190,-121v0,74,-26,124,-104,121r-63,0r0,-104r-21,0r0,-35r21,0r0,-101r56,0v81,-2,111,38,111,119xm135,-123v0,-49,-10,-79,-60,-76r0,60r36,0r0,35r-36,0r0,63v52,3,60,-30,60,-82","w":202},"\u00f0":{"d":"11,-89v0,-60,34,-110,84,-84v-4,-12,-9,-23,-14,-32r-25,15r-11,-18r25,-15r-12,-20r28,-17r13,20r23,-14r11,18r-23,13v30,47,45,93,45,137v-1,52,-19,90,-71,90v-49,0,-73,-31,-73,-93xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58","w":165},"\u00dd":{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101xm53,-269r60,-56r20,30r-65,40","w":159},"\u00fd":{"d":"-5,-178r50,0r24,109r23,-109r42,0r-53,181v-9,44,-30,67,-79,57r0,-39v26,3,40,0,44,-24xm41,-211r60,-56r20,30r-65,40","w":128},"\u00de":{"d":"181,-132v0,63,-37,80,-106,76r0,56r-52,0r0,-240r52,0r0,33v68,-5,106,13,106,75xm126,-133v0,-30,-17,-39,-51,-35r0,71v33,3,51,-6,51,-36"},"\u00fe":{"d":"161,-92v8,67,-46,121,-93,79r-1,73r-49,0r0,-300r49,0r0,85v39,-57,102,-5,94,63xm90,-147v-29,1,-23,43,-23,74v0,28,-1,41,21,41v25,0,22,-21,22,-59v0,-34,1,-51,-20,-56","w":171},"\u2212":{"d":"166,-101r-148,0r0,-38r148,0r0,38"},"\u00d7":{"d":"92,-148r41,-41r28,28r-41,41r41,41r-28,28r-41,-41r-41,41r-28,-28r41,-41r-41,-41r28,-28"},"\u00b9":{"d":"58,-241r30,0r0,117r25,0r0,28r-91,0r0,-28r26,0r0,-73v-8,7,-17,12,-26,16r0,-34v14,-7,27,-15,36,-26","w":122},"\u00b2":{"d":"6,-127v39,-34,54,-34,63,-70v0,-9,-3,-15,-11,-15v-9,0,-15,9,-16,27r-37,-7v0,-64,105,-66,105,-7v0,38,-23,46,-61,70r64,0r-3,33r-104,0r0,-31","w":122},"\u00b3":{"d":"85,-172v49,17,22,78,-27,78v-33,0,-51,-15,-55,-46r35,-5v-2,25,33,30,33,5v0,-15,-15,-18,-33,-17r0,-27v16,1,33,-1,31,-15v0,-9,-4,-14,-13,-14v-8,0,-13,6,-15,18r-35,-6v6,-52,101,-57,102,-2v0,14,-7,24,-23,31","w":122},"\u00bd":{"d":"55,-241r30,0r0,117r25,0r0,28r-91,0r0,-28r26,0r0,-73v-8,7,-17,12,-26,16r0,-34v14,-7,27,-15,36,-26xm187,-240r29,0r-115,240r-28,0xm164,-31v39,-34,54,-34,63,-70v0,-9,-3,-15,-11,-15v-9,0,-15,9,-16,27r-37,-7v0,-64,105,-66,105,-7v0,38,-23,46,-61,70r64,0r-3,33r-104,0r0,-31","w":288},"\u00bc":{"d":"54,-241r30,0r0,117r25,0r0,28r-91,0r0,-28r26,0r0,-73v-8,7,-17,12,-26,16r0,-34v14,-7,27,-15,36,-26xm187,-240r29,0r-115,240r-28,0xm218,-146r41,0r0,84r18,0r0,30r-18,0r0,32r-39,0r0,-32r-55,0r0,-28xm224,-58r0,-55r-32,55r32,0","w":288},"\u00be":{"d":"93,-172v49,17,22,78,-27,78v-33,0,-51,-15,-55,-46r35,-5v-2,25,33,30,33,5v0,-15,-15,-18,-33,-17r0,-27v16,1,33,-1,31,-15v0,-9,-4,-14,-13,-14v-8,0,-13,6,-15,18r-35,-6v6,-52,101,-57,102,-2v0,14,-7,24,-23,31xm195,-240r29,0r-115,240r-28,0xm220,-146r41,0r0,84r18,0r0,30r-18,0r0,32r-39,0r0,-32r-55,0r0,-28xm226,-58r0,-55r-32,55r32,0","w":288},"\u20a3":{"d":"75,-67r35,0r0,36r-35,0r0,31r-52,0r0,-31r-21,0r0,-36r21,0r0,-173r142,0r0,41r-90,0r0,63r69,0r0,41r-69,0r0,28","w":159},"\u011e":{"d":"70,-117v0,46,5,78,40,78v21,0,33,-16,33,-48r-36,0r0,-41r83,0r0,128r-22,0r-7,-27v-13,21,-32,31,-58,31v-59,-1,-89,-55,-89,-119v0,-71,27,-128,94,-129v49,0,76,28,82,83r-47,7v-3,-31,-15,-47,-34,-47v-35,0,-39,34,-39,84xm51,-304r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":208},"\u011f":{"d":"122,-173v1,-29,18,-38,47,-34r0,33v-14,-5,-26,-1,-29,14v37,44,-11,107,-74,86v-12,5,-17,17,-6,23v39,7,107,-4,107,54v0,40,-29,60,-87,60v-73,0,-97,-55,-43,-76v-36,-16,-29,-52,7,-69v-50,-26,-23,-99,40,-99v13,0,26,3,38,8xm86,-98v15,-1,16,-11,16,-28v0,-19,-6,-29,-16,-29v-14,1,-17,12,-17,30v0,18,6,27,17,27xm124,13v0,-26,-35,-15,-60,-21v-28,18,-20,42,25,40v23,0,35,-7,35,-19xm28,-246r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":165},"\u0130":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm49,-259v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":98},"\u015e":{"d":"90,18v23,-2,37,10,37,29v0,36,-51,39,-78,18r6,-16v11,6,22,9,30,9v8,0,11,-3,11,-10v0,-14,-16,-16,-32,-15r11,-30v-36,-5,-59,-27,-69,-65r46,-13v6,24,18,36,38,36v24,0,41,-23,25,-42v-36,-25,-100,-27,-100,-89v0,-43,32,-75,76,-74v42,0,68,19,78,56r-43,17v-6,-20,-17,-30,-34,-30v-22,0,-34,26,-17,38v33,22,99,29,99,90v0,45,-34,75,-79,77"},"\u015f":{"d":"109,45v-1,35,-49,37,-75,18r6,-15v16,9,37,16,41,-2v-1,-13,-17,-18,-33,-14r11,-29v-31,-5,-48,-22,-52,-52r39,-7v0,29,45,38,48,10v-3,-28,-61,-26,-70,-46v-31,-38,2,-89,51,-89v32,0,51,15,60,46r-35,11v-5,-16,-13,-24,-26,-24v-16,0,-20,21,-10,28v27,18,79,20,77,66v0,33,-27,57,-62,58r-6,14v19,-4,37,8,36,27","w":147},"\u0106":{"d":"70,-117v1,47,2,78,35,78v19,0,31,-16,34,-48r49,3v-3,49,-34,88,-83,88v-66,0,-91,-55,-91,-124v0,-71,25,-123,91,-124v50,0,78,31,82,93r-48,4v-1,-36,-12,-54,-33,-54v-34,0,-37,33,-36,84xm74,-269r60,-56r20,30r-65,40","w":196},"\u0107":{"d":"11,-88v-1,-55,22,-92,72,-93v41,0,64,23,68,69r-46,2v-2,-17,-3,-32,-20,-33v-17,0,-25,17,-25,52v0,53,41,80,45,22r46,3v-4,47,-28,70,-70,70v-51,-1,-70,-37,-70,-92xm58,-211r60,-56r20,30r-65,40","w":159},"\u010c":{"d":"70,-117v1,47,2,78,35,78v19,0,31,-16,34,-48r49,3v-3,49,-34,88,-83,88v-66,0,-91,-55,-91,-124v0,-71,25,-123,91,-124v50,0,78,31,82,93r-48,4v-1,-36,-12,-54,-33,-54v-34,0,-37,33,-36,84xm34,-309r39,0r32,21r32,-21r38,0r-70,55","w":196},"\u010d":{"d":"6,-88v-1,-55,22,-92,72,-93v41,0,64,23,68,69r-46,2v-2,-17,-3,-32,-20,-33v-17,0,-25,17,-25,52v0,53,41,80,45,22r46,3v-4,47,-28,70,-70,70v-51,-1,-70,-37,-70,-92xm10,-251r39,0r32,21r32,-21r38,0r-70,55","w":159},"\u0111":{"d":"11,-88v-1,-52,16,-92,58,-92v17,0,29,6,36,19r0,-34r-35,0r0,-24r35,0r0,-21r49,0r0,21r19,0r0,24r-19,0r0,195r-46,0r0,-29v-8,21,-21,31,-40,31v-43,0,-57,-43,-57,-90xm83,-32v27,2,21,-41,22,-71v0,-28,-2,-42,-22,-44v-24,5,-21,25,-21,63v0,29,-1,51,21,52","w":171},"\u00ad":{"d":"13,-110r72,0r0,38r-72,0r0,-38","w":98},"\u00af":{"d":"0,-292r180,0r0,31r-180,0r0,-31","w":180},"\u00b7":{"d":"21,-119r49,0r0,53r-49,0r0,-53","w":91},"\u0100":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm40,-294r99,0r0,26r-99,0r0,-26"},"\u0101":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm40,-236r99,0r0,26r-99,0r0,-26","w":171},"\u0102":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0xm32,-306r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0"},"\u0103":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm32,-246r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":171},"\u0104":{"d":"210,65v-31,8,-68,-1,-68,-30v0,-14,8,-25,25,-35r-34,0r-12,-50r-68,0r-12,50r-48,0r72,-240r53,0r69,240v-28,19,-19,57,19,48xm111,-91r-24,-98r-24,98r48,0"},"\u0105":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v3,-35,33,-55,71,-55v47,0,64,19,64,71v0,31,-2,89,3,110v-27,18,-17,55,18,46r4,17v-31,8,-66,0,-66,-29v0,-13,8,-25,25,-34r-27,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22","w":171},"\u0108":{"d":"70,-117v1,47,2,78,35,78v19,0,31,-16,34,-48r49,3v-3,49,-34,88,-83,88v-66,0,-91,-55,-91,-124v0,-71,25,-123,91,-124v50,0,78,31,82,93r-48,4v-1,-36,-12,-54,-33,-54v-34,0,-37,33,-36,84xm34,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":196},"\u0109":{"d":"11,-88v-1,-55,22,-92,72,-93v41,0,64,23,68,69r-46,2v-2,-17,-3,-32,-20,-33v-17,0,-25,17,-25,52v0,53,41,80,45,22r46,3v-4,47,-28,70,-70,70v-51,-1,-70,-37,-70,-92xm13,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":159},"\u010a":{"d":"70,-117v1,47,2,78,35,78v19,0,31,-16,34,-48r49,3v-3,49,-34,88,-83,88v-66,0,-91,-55,-91,-124v0,-71,25,-123,91,-124v50,0,78,31,82,93r-48,4v-1,-36,-12,-54,-33,-54v-34,0,-37,33,-36,84xm104,-259v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":196},"\u010b":{"d":"11,-88v-1,-55,22,-92,72,-93v41,0,64,23,68,69r-46,2v-2,-17,-3,-32,-20,-33v-17,0,-25,17,-25,52v0,53,41,80,45,22r46,3v-4,47,-28,70,-70,70v-51,-1,-70,-37,-70,-92xm85,-201v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":159},"\u010e":{"d":"190,-121v0,74,-26,124,-104,121r-63,0r0,-240r56,0v81,-2,111,40,111,119xm135,-123v0,-49,-10,-80,-60,-76r0,158v52,3,60,-30,60,-82xm24,-309r39,0r32,21r32,-21r38,0r-70,55","w":202},"\u010f":{"d":"11,-88v-1,-53,16,-92,59,-92v17,0,28,6,35,19r0,-79r49,0r0,240r-46,0r0,-29v-8,21,-21,31,-40,31v-44,0,-57,-43,-57,-90xm83,-32v27,2,21,-41,22,-71v0,-28,-2,-42,-22,-44v-24,5,-21,25,-21,63v0,29,-1,51,21,52xm175,-240r36,0r-28,70r-18,0","w":209},"\u0110":{"d":"190,-121v0,74,-26,124,-104,121r-63,0r0,-104r-21,0r0,-35r21,0r0,-101r56,0v81,-2,111,38,111,119xm135,-123v0,-49,-10,-79,-60,-76r0,60r36,0r0,35r-36,0r0,63v52,3,60,-30,60,-82","w":202},"\u0112":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm46,-294r99,0r0,26r-99,0r0,-26","w":171},"\u0113":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm37,-236r99,0r0,26r-99,0r0,-26","w":165},"\u0114":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm38,-306r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":171},"\u0115":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm29,-246r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":165},"\u0116":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm96,-259v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":171},"\u0117":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm86,-201v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":165},"\u0118":{"d":"192,65v-31,8,-68,-1,-68,-30v0,-14,8,-25,25,-35r-126,0r0,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43v-28,19,-19,57,19,48","w":171},"\u0119":{"d":"155,-58v-2,37,-42,52,-45,83v-1,18,15,20,34,19r4,16v-31,8,-66,0,-66,-29v0,-12,6,-21,19,-29v-60,11,-90,-32,-90,-88v0,-82,77,-125,125,-72v14,15,19,41,19,77r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0","w":165},"\u011a":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm25,-309r39,0r32,21r32,-21r38,0r-70,55","w":171},"\u011b":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm16,-251r39,0r32,21r32,-21r38,0r-70,55","w":165},"\u011c":{"d":"70,-117v0,46,5,78,40,78v21,0,33,-16,33,-48r-36,0r0,-41r83,0r0,128r-22,0r-7,-27v-13,21,-32,31,-58,31v-59,-1,-89,-55,-89,-119v0,-71,27,-128,94,-129v49,0,76,28,82,83r-47,7v-3,-31,-15,-47,-34,-47v-35,0,-39,34,-39,84xm37,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":208},"\u011d":{"d":"122,-173v1,-29,18,-38,47,-34r0,33v-14,-5,-26,-1,-29,14v37,44,-11,107,-74,86v-12,5,-17,17,-6,23v39,7,107,-4,107,54v0,40,-29,60,-87,60v-73,0,-97,-55,-43,-76v-36,-16,-29,-52,7,-69v-50,-26,-23,-99,40,-99v13,0,26,3,38,8xm86,-98v15,-1,16,-11,16,-28v0,-19,-6,-29,-16,-29v-14,1,-17,12,-17,30v0,18,6,27,17,27xm124,13v0,-26,-35,-15,-60,-21v-28,18,-20,42,25,40v23,0,35,-7,35,-19xm7,-217r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":165},"\u0120":{"d":"70,-117v0,46,5,78,40,78v21,0,33,-16,33,-48r-36,0r0,-41r83,0r0,128r-22,0r-7,-27v-13,21,-32,31,-58,31v-59,-1,-89,-55,-89,-119v0,-71,27,-128,94,-129v49,0,76,28,82,83r-47,7v-3,-31,-15,-47,-34,-47v-35,0,-39,34,-39,84xm108,-259v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":208},"\u0121":{"d":"122,-173v1,-29,18,-38,47,-34r0,33v-14,-5,-26,-1,-29,14v37,44,-11,107,-74,86v-12,5,-17,17,-6,23v39,7,107,-4,107,54v0,40,-29,60,-87,60v-73,0,-97,-55,-43,-76v-36,-16,-29,-52,7,-69v-50,-26,-23,-99,40,-99v13,0,26,3,38,8xm86,-98v15,-1,16,-11,16,-28v0,-19,-6,-29,-16,-29v-14,1,-17,12,-17,30v0,18,6,27,17,27xm124,13v0,-26,-35,-15,-60,-21v-28,18,-20,42,25,40v23,0,35,-7,35,-19xm86,-201v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":165},"\u0122":{"d":"70,-117v0,46,5,78,40,78v21,0,33,-16,33,-48r-36,0r0,-41r83,0r0,128r-22,0r-7,-27v-13,21,-32,31,-58,31v-59,-1,-89,-55,-89,-119v0,-71,27,-128,94,-129v49,0,76,28,82,83r-47,7v-3,-31,-15,-47,-34,-47v-35,0,-39,34,-39,84xm91,19r37,0r-28,67r-19,0","w":208},"\u0123":{"d":"122,-173v1,-29,18,-38,47,-34r0,33v-14,-5,-26,-1,-29,14v37,44,-11,107,-74,86v-12,5,-17,17,-6,23v39,7,107,-4,107,54v0,40,-29,60,-87,60v-73,0,-97,-55,-43,-76v-36,-16,-29,-52,7,-69v-50,-26,-23,-99,40,-99v13,0,26,3,38,8xm86,-98v15,-1,16,-11,16,-28v0,-19,-6,-29,-16,-29v-14,1,-17,12,-17,30v0,18,6,27,17,27xm124,13v0,-26,-35,-15,-60,-21v-28,18,-20,42,25,40v23,0,35,-7,35,-19xm102,-200r-37,0r28,-66r19,0","w":165},"\u0124":{"d":"23,-240r52,0r0,97r58,0r0,-97r53,0r0,240r-53,0r0,-98r-58,0r0,98r-52,0r0,-240xm33,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":208},"\u0125":{"d":"90,-143v-17,0,-22,9,-22,31r0,112r-50,0r0,-240r50,0r0,81v9,-15,23,-22,43,-22v74,0,36,114,45,181r-49,0r0,-114v-2,-20,0,-29,-17,-29xm-25,-261r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":171},"\u0126":{"d":"75,-211r58,0r0,-29r53,0r0,29r24,0r0,39r-24,0r0,172r-53,0r0,-98r-58,0r0,98r-52,0r0,-172r-24,0r0,-39r24,0r0,-29r52,0r0,29xm75,-172r0,29r58,0r0,-29r-58,0","w":208},"\u0127":{"d":"90,-143v-17,0,-22,9,-22,31r0,112r-50,0r0,-197r-24,0r0,-29r24,0r0,-14r50,0r0,14r64,0r0,29r-64,0r0,38v9,-15,23,-22,43,-22v74,0,36,114,45,181r-49,0r0,-114v-2,-20,0,-29,-17,-29","w":171},"\u0128":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm-8,-276v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":98},"\u0129":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm-16,-219v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":85},"\u012a":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm-1,-295r99,0r0,26r-99,0r0,-26","w":98},"\u012b":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm-7,-236r99,0r0,26r-99,0r0,-26","w":85},"\u012c":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm-9,-306r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":98},"\u012d":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm-16,-246r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":85},"\u012e":{"d":"90,65v-30,9,-62,-2,-63,-30v0,-14,9,-26,28,-35r-32,0r0,-240r52,0r0,240v-28,13,-25,55,11,48","w":98},"\u012f":{"d":"68,-192r-50,0r0,-49r50,0r0,49xm82,63v-49,19,-86,-41,-34,-63r-30,0r0,-178r50,0r0,178v-25,11,-23,54,10,46","w":85},"\u0132":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm95,-44v32,6,44,1,44,-37r0,-159r53,0r0,159v7,70,-32,96,-97,81r0,-44","w":213},"\u0133":{"d":"68,-192r-50,0r0,-49r50,0r0,49xm18,-178r50,0r0,178r-50,0r0,-178xm156,-192r-50,0r0,-49r50,0r0,49xm83,22v22,1,23,-5,23,-29r0,-171r49,0r0,172v5,56,-18,79,-72,69r0,-41","w":171},"\u0134":{"d":"-2,-44v32,6,44,1,44,-37r0,-159r53,0r0,159v7,70,-32,96,-97,81r0,-44xm-2,-260r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":116},"\u0135":{"d":"-23,-200r70,-55r71,55r-38,0r-33,-21r-32,21r-38,0xm-3,22v22,1,23,-5,23,-29r0,-171r49,0r0,172v5,57,-18,79,-72,69r0,-41","w":85},"\u0136":{"d":"23,-240r52,0r0,100r59,-100r53,0r-60,88r65,152r-54,0r-43,-111r-20,29r0,82r-52,0r0,-240xm90,19r37,0r-28,67r-19,0","w":190},"\u0137":{"d":"18,-240r50,0r0,131r50,-69r45,0r-45,60r49,118r-53,0r-28,-82r-18,25r0,57r-50,0r0,-240xm72,19r37,0r-28,67r-19,0","w":165},"\u0138":{"d":"18,-178r50,0r0,69r50,-69r45,0r-45,60r49,118r-53,0r-28,-82r-18,25r0,57r-50,0r0,-178","w":165},"\u0139":{"d":"23,-240r52,0r0,195r78,0r0,45r-130,0r0,-240xm22,-269r60,-56r20,30r-65,40","w":153},"\u013a":{"d":"18,-240r50,0r0,240r-50,0r0,-240xm16,-269r60,-56r20,30r-65,40","w":85},"\u013b":{"d":"23,-240r52,0r0,195r78,0r0,45r-130,0r0,-240xm71,19r37,0r-28,67r-19,0","w":153},"\u013c":{"d":"18,-240r50,0r0,240r-50,0r0,-240xm25,19r37,0r-28,67r-19,0","w":85},"\u013d":{"d":"23,-240r52,0r0,195r78,0r0,45r-130,0r0,-240xm110,-240r36,0r-28,70r-18,0","w":153},"\u013e":{"d":"18,-240r50,0r0,240r-50,0r0,-240xm90,-240r36,0r-28,70r-18,0","w":85},"\u013f":{"d":"23,-240r52,0r0,195r78,0r0,45r-130,0r0,-240xm99,-150r54,0r0,55r-54,0r0,-55","w":153},"\u0140":{"d":"18,-240r50,0r0,240r-50,0r0,-240xm86,-148r50,0r0,53r-50,0r0,-53","w":136},"\u0143":{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240xm72,-269r60,-56r20,30r-65,40","w":202},"\u0144":{"d":"90,-143v-22,0,-21,13,-22,39r0,104r-50,0r0,-178r47,0r0,25v8,-19,24,-28,45,-28v74,0,38,112,46,181r-49,0r0,-116v-1,-19,-2,-27,-17,-27xm60,-211r60,-56r20,30r-65,40","w":171},"\u0145":{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240xm85,19r37,0r-28,67r-19,0","w":202},"\u0146":{"d":"90,-143v-22,0,-21,13,-22,39r0,104r-50,0r0,-178r47,0r0,25v8,-19,24,-28,45,-28v74,0,38,112,46,181r-49,0r0,-116v-1,-19,-2,-27,-17,-27xm70,19r37,0r-28,67r-19,0","w":171},"\u0147":{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240xm30,-309r39,0r32,21r32,-21r38,0r-70,55","w":202},"\u0148":{"d":"90,-143v-22,0,-21,13,-22,39r0,104r-50,0r0,-178r47,0r0,25v8,-19,24,-28,45,-28v74,0,38,112,46,181r-49,0r0,-116v-1,-19,-2,-27,-17,-27xm14,-251r39,0r32,21r32,-21r38,0r-70,55","w":171},"\u0149":{"d":"106,-143v-22,0,-21,13,-22,39r0,104r-50,0r0,-178r47,0r0,25v8,-19,24,-28,45,-28v74,0,38,112,46,181r-49,0r0,-116v-1,-19,-2,-27,-17,-27xm-10,-247r45,0r0,53r-25,47r-20,0r20,-47r-20,0r0,-53","w":195},"\u014a":{"d":"114,-198v-69,0,-37,126,-44,198r-53,0r0,-240r51,0r0,24v45,-54,126,-25,126,63r0,130v5,70,-44,102,-109,85r0,-43v33,8,56,8,56,-33r0,-145v0,-26,-9,-39,-27,-39","w":210},"\u014b":{"d":"110,-181v74,0,41,112,46,181v4,52,-33,70,-81,57r0,-41v20,5,32,6,32,-16r0,-116v-1,-19,-2,-27,-17,-27v-22,0,-21,13,-22,39r0,104r-50,0r0,-178r47,0r0,25v8,-19,24,-28,45,-28","w":165},"\u014c":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm53,-294r99,0r0,26r-99,0r0,-26","w":202},"\u014d":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm34,-236r99,0r0,26r-99,0r0,-26","w":165},"\u014e":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm43,-306r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":202},"\u014f":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm24,-243r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":165},"\u0150":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm100,-318r20,22r-50,39r-13,-13xm155,-318r20,22r-50,39r-13,-13","w":202},"\u0151":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm81,-258r20,22r-50,39r-13,-13xm136,-258r20,22r-50,39r-13,-13","w":165},"\u0154":{"d":"98,-240v88,-17,108,103,49,135r44,105r-57,0r-32,-95r-27,0r0,95r-52,0r0,-240r75,0xm130,-168v0,-30,-22,-36,-55,-33r0,67v32,2,55,-1,55,-34xm64,-271r60,-56r20,30r-65,40","w":196},"\u0155":{"d":"18,-178r44,0r0,43v10,-33,23,-49,50,-44r0,48v-58,-10,-42,77,-44,131r-50,0r0,-178xm42,-211r60,-56r20,30r-65,40","w":110},"\u0156":{"d":"98,-240v88,-17,108,103,49,135r44,105r-57,0r-32,-95r-27,0r0,95r-52,0r0,-240r75,0xm130,-168v0,-30,-22,-36,-55,-33r0,67v32,2,55,-1,55,-34xm86,19r37,0r-28,67r-19,0","w":196},"\u0157":{"d":"18,-178r44,0r0,43v10,-33,23,-49,50,-44r0,48v-58,-10,-42,77,-44,131r-50,0r0,-178xm25,19r37,0r-28,67r-19,0","w":110},"\u0158":{"d":"98,-240v88,-17,108,103,49,135r44,105r-57,0r-32,-95r-27,0r0,95r-52,0r0,-240r75,0xm130,-168v0,-30,-22,-36,-55,-33r0,67v32,2,55,-1,55,-34xm27,-309r39,0r32,21r32,-21r38,0r-70,55","w":196},"\u0159":{"d":"18,-178r44,0r0,43v10,-33,23,-49,50,-44r0,48v-58,-10,-42,77,-44,131r-50,0r0,-178xm-5,-251r39,0r32,21r32,-21r38,0r-70,55","w":110},"\u015a":{"d":"47,-113v-58,-34,-29,-131,44,-131v42,0,68,19,78,56r-43,17v-6,-20,-17,-30,-34,-30v-22,0,-34,26,-17,38v33,22,102,29,99,90v-2,46,-36,78,-85,77v-43,0,-71,-22,-83,-66r46,-13v6,24,18,36,38,36v24,0,41,-23,25,-42v-10,-11,-56,-25,-68,-32xm61,-270r60,-56r20,30r-65,40"},"\u015b":{"d":"24,-92v-31,-38,2,-89,51,-89v32,0,51,15,60,46r-35,11v-5,-16,-13,-24,-26,-24v-16,0,-20,21,-10,28v27,18,78,20,77,66v-1,35,-30,58,-68,58v-40,0,-62,-18,-66,-53r39,-7v0,29,45,38,48,10v-3,-28,-61,-26,-70,-46xm49,-211r60,-56r20,30r-65,40","w":147},"\u015c":{"d":"47,-113v-58,-34,-29,-131,44,-131v42,0,68,19,78,56r-43,17v-6,-20,-17,-30,-34,-30v-22,0,-34,26,-17,38v33,22,102,29,99,90v-2,46,-36,78,-85,77v-43,0,-71,-22,-83,-66r46,-13v6,24,18,36,38,36v24,0,41,-23,25,-42v-10,-11,-56,-25,-68,-32xm24,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0"},"\u015d":{"d":"24,-92v-31,-38,2,-89,51,-89v32,0,51,15,60,46r-35,11v-5,-16,-13,-24,-26,-24v-16,0,-20,21,-10,28v27,18,78,20,77,66v-1,35,-30,58,-68,58v-40,0,-62,-18,-66,-53r39,-7v0,29,45,38,48,10v-3,-28,-61,-26,-70,-46xm5,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":147},"\u0162":{"d":"-4,-240r149,0r0,45r-49,0r0,195r-52,0r0,-195r-48,0r0,-45xm53,19r37,0r-28,67r-19,0","w":140},"\u0163":{"d":"109,0v-54,12,-83,-5,-83,-68r0,-71r-20,0r0,-39r20,0r0,-54r48,-2r0,56r33,0r0,39r-33,0v7,39,-23,114,35,101r0,38xm49,19r37,0r-28,67r-19,0","w":110},"\u0164":{"d":"-4,-240r149,0r0,45r-49,0r0,195r-52,0r0,-195r-48,0r0,-45xm0,-310r39,0r32,21r32,-21r38,0r-70,55","w":140},"\u0165":{"d":"109,0v-54,12,-83,-5,-83,-68r0,-71r-20,0r0,-39r20,0r0,-54r48,-2r0,56r33,0r0,39r-33,0v7,39,-23,114,35,101r0,38xm101,-267r36,0r-28,70r-18,0","w":110},"\u0166":{"d":"96,-161r61,0r0,46r-61,0r0,115r-52,0r0,-115r-57,0r0,-46r57,0r0,-34r-48,0r0,-45r149,0r0,45r-49,0r0,34","w":140},"\u0167":{"d":"109,0v-64,16,-93,-16,-83,-89r-20,0r0,-35r20,0r0,-15r-20,0r0,-39r22,0r4,-52r42,-4r0,56r33,0r0,39r-33,0r0,15r25,0r0,35r-25,0v-1,33,-4,60,35,51r0,38","w":110},"\u0168":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm47,-275v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":208},"\u0169":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm28,-219v21,-38,54,-21,83,-12v5,0,11,-4,17,-12r16,11v-20,38,-55,25,-84,14v-5,0,-10,4,-17,11","w":171},"\u016a":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm56,-295r99,0r0,26r-99,0r0,-26","w":208},"\u016b":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm35,-236r99,0r0,26r-99,0r0,-26","w":171},"\u016c":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm47,-305r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":208},"\u016d":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm27,-246r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":171},"\u016e":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm106,-255v-17,0,-34,-15,-34,-34v0,-18,17,-34,34,-34v17,0,34,16,34,34v0,19,-17,34,-34,34xm106,-303v-7,-1,-15,7,-14,14v0,7,8,14,14,14v6,0,13,-7,13,-14v0,-7,-6,-14,-13,-14","w":208},"\u016f":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm85,-195v-17,0,-34,-15,-34,-34v0,-18,17,-34,34,-34v17,0,34,16,34,34v0,19,-17,34,-34,34xm85,-243v-7,-1,-15,7,-14,14v0,7,8,14,14,14v6,0,13,-7,13,-14v0,-7,-6,-14,-13,-14","w":171},"\u0170":{"d":"105,4v-67,-4,-82,-30,-82,-107r0,-137r52,0r0,137v0,40,2,62,35,64v32,-4,32,-23,32,-64r0,-137r44,0v-6,105,32,249,-81,244xm102,-318r20,22r-50,39r-13,-13xm157,-318r20,22r-50,39r-13,-13","w":208},"\u0171":{"d":"61,4v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29v26,0,22,-19,22,-52r0,-91r50,0r0,178r-47,0r0,-24v-12,21,-20,28,-46,28xm87,-258r20,22r-50,39r-13,-13xm142,-258r20,22r-50,39r-13,-13","w":171},"\u0172":{"d":"110,-39v32,-4,32,-23,32,-64r0,-137r44,0r0,135v-1,55,1,71,-30,96v-14,11,-21,23,-21,35v0,18,19,23,36,19r3,17v-32,9,-68,-1,-68,-30v0,-12,6,-22,19,-30v-75,9,-102,-23,-102,-105r0,-137r52,0r0,137v0,40,2,62,35,64","w":208},"\u0173":{"d":"82,-35v26,0,22,-19,22,-52r0,-91r50,0r0,178v-27,18,-17,55,18,46r4,17v-31,8,-65,-1,-66,-29v0,-13,8,-25,25,-34r-28,0r0,-24v-12,21,-20,28,-46,28v-75,1,-35,-115,-45,-182r49,0r0,114v2,19,0,29,17,29","w":171},"\u0174":{"d":"-2,-240r54,0r25,166r32,-166r48,0r30,167r29,-167r44,0r-51,241r-47,0r-32,-167r-33,167r-47,0xm62,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":257},"\u0175":{"d":"-3,-178r48,0r21,108r20,-108r48,0r16,108r24,-108r39,0r-44,178r-42,0r-23,-121r-22,121r-40,0xm35,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":208},"\u0176":{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101xm9,-262r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":159},"\u0177":{"d":"-5,-178r50,0r24,109r23,-109r42,0r-53,181v-9,44,-30,67,-79,57r0,-39v26,3,40,0,44,-24xm-5,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":128},"\u0179":{"d":"8,-240r154,0r0,38r-100,159r103,0r0,43r-165,0r0,-37r101,-160r-93,0r0,-43xm53,-274r60,-56r20,30r-65,40","w":165},"\u017a":{"d":"13,-178r111,0r0,32r-66,111r68,0r0,35r-119,0r0,-35r65,-107r-59,0r0,-36xm45,-211r60,-56r20,30r-65,40","w":128},"\u017b":{"d":"8,-240r154,0r0,38r-100,159r103,0r0,43r-165,0r0,-37r101,-160r-93,0r0,-43xm87,-259v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":165},"\u017c":{"d":"13,-178r111,0r0,32r-66,111r68,0r0,35r-119,0r0,-35r65,-107r-59,0r0,-36xm71,-201v-11,0,-24,-10,-23,-22v0,-12,10,-22,23,-22v12,0,22,9,22,22v0,12,-11,22,-22,22","w":128},"\u017f":{"d":"18,-178v-3,-60,24,-74,81,-70r0,39v-28,-1,-33,0,-33,31r0,178r-48,0r0,-178","w":85},"\u01fa":{"d":"92,-296v28,0,47,36,27,58r68,238r-54,0r-12,-50r-68,0r-12,50r-48,0r72,-239v-19,-22,0,-57,27,-57xm50,-322r74,-39r12,35r-75,23xm92,-276v-8,-1,-15,7,-14,15v0,8,7,15,14,15v7,1,15,-7,14,-15v1,-9,-7,-15,-14,-15xm111,-91r-24,-98r-24,98r48,0"},"\u01fb":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22xm90,-195v-17,0,-34,-15,-34,-34v0,-18,17,-34,34,-34v17,0,34,16,34,34v0,19,-17,34,-34,34xm90,-243v-7,-1,-15,7,-14,14v0,7,8,14,14,14v6,0,13,-7,13,-14v0,-7,-6,-14,-13,-14xm51,-276r60,-56r20,30r-65,40","w":171},"\u01fc":{"d":"80,-240r162,0r0,41r-89,0r0,56r70,0r0,41r-70,0r0,59r89,0r0,43r-139,0r0,-56r-53,0r-19,56r-45,0xm104,-94r0,-111r-40,111r40,0xm126,-273r60,-56r20,30r-65,40","w":245},"\u01fd":{"d":"101,-110v1,-21,0,-38,-19,-38v-13,0,-21,9,-22,28r-43,-5v0,-55,80,-74,110,-38v32,-36,100,-12,107,27v2,13,7,31,7,55r-92,0v-1,28,4,50,23,50v14,0,23,-9,25,-29r42,3v-2,66,-93,82,-118,30v-21,45,-112,42,-108,-19v4,-48,32,-61,88,-64xm194,-109v0,-26,-7,-39,-22,-39v-14,0,-22,13,-23,39r45,0xm101,-85v-27,4,-39,9,-39,33v0,15,6,23,17,23v19,0,23,-28,22,-56xm95,-211r60,-56r20,30r-65,40","w":251},"\u01fe":{"d":"155,-254r28,0r-20,38v17,20,25,53,25,96v0,101,-53,145,-129,114r-11,21r-27,0r19,-38v-17,-21,-26,-54,-26,-97v0,-102,56,-146,130,-113xm123,-195v-42,-25,-58,12,-58,75v0,18,0,33,2,44xm80,-43v49,23,61,-23,58,-85v0,-11,-1,-23,-3,-34xm60,-273r60,-56r20,30r-65,40","w":202},"\u01ff":{"d":"127,-196r23,0r-17,34v14,16,22,40,22,73v0,76,-43,107,-104,87r-11,23r-23,0r17,-35v-15,-16,-23,-41,-23,-75v0,-76,44,-106,105,-86xm99,-145v-48,-21,-47,44,-42,92xm69,-31v46,16,45,-41,41,-89xm49,-212r60,-56r20,30r-65,40","w":165},"\u0384":{"d":"-39,-191r46,-71r31,21r-56,62","w":183},"\u0385":{"d":"72,-263r49,-45r17,24r-56,35xm119,-205v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v10,-1,21,9,20,19v0,12,-10,19,-20,19xm80,-224v-1,23,-40,25,-40,0v-1,-11,8,-20,20,-19v11,-1,20,9,20,19","w":178},"\u0386":{"d":"66,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm112,-91r-24,-98r-24,98r48,0xm-29,-190r46,-71r31,21r-56,62","w":185},"\u0387":{"d":"21,-119r49,0r0,53r-49,0r0,-53","w":91},"\u0388":{"d":"25,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm-76,-191r46,-71r31,21r-56,62","w":179},"\u0389":{"d":"24,-240r52,0r0,97r58,0r0,-97r53,0r0,240r-53,0r0,-98r-58,0r0,98r-52,0r0,-240xm-69,-190r46,-71r31,21r-56,62","w":209},"\u038a":{"d":"24,-240r52,0r0,240r-52,0r0,-240xm-69,-190r46,-71r31,21r-56,62","w":99},"\u038c":{"d":"106,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm106,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81xm-43,-190r46,-71r31,21r-56,62","w":205},"\u038e":{"d":"-5,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101xm-95,-190r46,-71r31,21r-56,62","w":164},"\u038f":{"d":"74,-132v0,34,-2,81,28,90r0,42r-93,0r0,-44r41,0v-25,-19,-37,-49,-37,-89v-1,-66,34,-107,94,-111v101,-7,124,152,57,200r41,0r0,44r-93,0r0,-42v29,-7,28,-56,28,-88v0,-48,-11,-71,-33,-71v-22,0,-33,23,-33,69xm-43,-190r46,-71r31,21r-56,62","w":210},"\u0390":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm26,-261r49,-45r17,24r-56,35xm73,-203v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v10,-1,21,9,20,19v0,12,-10,19,-20,19xm34,-222v-1,23,-40,25,-40,0v-1,-11,8,-20,20,-19v11,-1,20,9,20,19","w":85},"\u0391":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0"},"\u0392":{"d":"148,-125v69,27,46,142,-43,125r-82,0r0,-240v75,1,160,-15,160,63v0,27,-12,44,-35,52xm129,-173v0,-26,-25,-31,-56,-28r0,58v32,2,56,-2,56,-30xm136,-73v0,-33,-30,-32,-63,-31r0,63v33,2,63,-1,63,-32","w":202},"\u0393":{"d":"169,-240r0,44r-94,0r0,196r-52,0r0,-240r146,0","w":168},"\u0394":{"d":"61,-240r59,0r68,240r-193,0xm125,-45r-37,-144r-34,144r71,0","w":182},"\u0395":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240","w":171},"\u0396":{"d":"8,-240r154,0r0,38r-100,159r103,0r0,43r-165,0r0,-37r101,-160r-93,0r0,-43","w":165},"\u0397":{"d":"23,-240r52,0r0,97r58,0r0,-97r53,0r0,240r-53,0r0,-98r-58,0r0,98r-52,0r0,-240","w":208},"\u0398":{"d":"102,-244v64,0,91,49,91,122v0,84,-31,126,-91,126v-64,0,-91,-49,-90,-122v0,-84,30,-126,90,-126xm102,-39v34,-5,33,-32,33,-81v0,-49,1,-76,-33,-81v-33,5,-32,33,-32,81v0,48,-1,75,32,81xm126,-143r0,42r-47,0r0,-42r47,0","w":204},"\u0399":{"d":"23,-240r52,0r0,240r-52,0r0,-240","w":98},"\u039a":{"d":"23,-240r52,0r0,100r59,-100r53,0r-60,88r65,152r-54,0r-43,-111r-20,29r0,82r-52,0r0,-240","w":190},"\u039b":{"d":"43,0r-49,0r66,-240r60,0r68,240r-52,0r-48,-189"},"\u039c":{"d":"23,-240r77,0r34,148r38,-148r75,0r0,240r-49,0r0,-201r-49,201r-39,0r-44,-201r0,201r-43,0r0,-240","w":269},"\u039d":{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240","w":202},"\u039e":{"d":"151,-240r0,44r-140,0r0,-44r140,0xm129,-144r0,44r-96,0r0,-44r96,0xm151,-44r0,44r-140,0r0,-44r140,0","w":162},"\u039f":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81","w":202},"\u03a0":{"d":"23,-240r163,0r0,240r-53,0r0,-195r-58,0r0,195r-52,0r0,-240","w":208},"\u03a1":{"d":"181,-165v1,64,-36,80,-106,76r0,89r-52,0r0,-240r69,0v61,-4,88,20,89,75xm126,-166v0,-30,-17,-39,-51,-35r0,71v33,3,51,-5,51,-36"},"\u03a3":{"d":"10,-240r140,0r0,41r-87,0r48,66r-53,90r98,0r0,43r-146,0r0,-43r50,-86r-50,-70r0,-41","w":160},"\u03a4":{"d":"-4,-240r149,0r0,45r-49,0r0,195r-52,0r0,-195r-48,0r0,-45","w":140},"\u03a5":{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101","w":159},"\u03a6":{"d":"140,-218v51,7,81,43,82,98v0,55,-27,88,-82,98r0,29r-46,0r0,-29v-55,-8,-82,-42,-82,-98v0,-55,31,-91,82,-98r0,-29r46,0r0,29xm94,-178v-41,10,-42,105,0,115r0,-115xm140,-63v41,-10,42,-105,0,-115r0,115","w":234},"\u03a7":{"d":"2,-240r58,0r29,62r30,-62r51,0r-57,109r64,131r-58,0r-35,-78r-39,78r-50,0r65,-123","w":171},"\u03a8":{"d":"236,-167v4,81,-17,115,-82,124r0,43r-53,0r0,-43v-93,-2,-82,-98,-81,-197r52,0v7,56,-19,144,29,153r0,-153r53,0r0,153v47,-8,23,-95,29,-153r53,0r0,73","w":255},"\u03a9":{"d":"74,-132v0,34,-2,81,28,90r0,42r-93,0r0,-44r41,0v-25,-19,-37,-49,-37,-89v-1,-66,34,-107,94,-111v101,-7,124,152,57,200r41,0r0,44r-93,0r0,-42v29,-7,28,-56,28,-88v0,-48,-11,-71,-33,-71v-22,0,-33,23,-33,69","w":214},"\u03aa":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm99,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm19,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":98},"\u03ab":{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101xm130,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm50,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":159},"\u03ac":{"d":"10,-89v0,-80,88,-130,121,-55r9,-34r49,0r-30,84r34,94r-51,0r-13,-41v-13,30,-31,45,-53,45v-42,0,-66,-48,-66,-93xm89,-146v-34,7,-33,109,1,115v21,-7,20,-27,30,-59v-11,-32,-9,-48,-31,-56xm60,-211r60,-56r20,30r-65,40","w":195},"\u03ad":{"d":"66,-127v0,21,10,20,35,20r0,33v-26,1,-39,-2,-39,20v0,35,38,31,45,-2r42,7v-16,39,-27,49,-70,53v-64,7,-94,-72,-40,-97v-48,-26,-17,-88,40,-88v38,0,60,16,66,49r-44,9v-1,-31,-35,-35,-35,-4xm55,-211r60,-56r20,30r-65,40","w":152},"\u03ae":{"d":"91,-150v-43,12,-16,99,-23,150r-50,0r0,-178r50,0r0,25v20,-48,104,-33,88,37r0,176r-49,0r0,-176v-1,-26,3,-32,-16,-34xm65,-211r60,-56r20,30r-65,40","w":173},"\u03af":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm15,-211r60,-56r20,30r-65,40","w":85},"\u03b0":{"d":"86,4v-91,0,-66,-100,-69,-182r50,0r0,103v2,28,-4,41,18,41v22,0,18,-13,18,-41r0,-103r50,0v-3,81,22,182,-67,182xm69,-261r49,-45r17,24r-56,35xm116,-203v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v10,-1,21,9,20,19v0,12,-10,19,-20,19xm77,-222v-1,23,-40,25,-40,0v-1,-11,8,-20,20,-19v11,-1,20,9,20,19","w":169},"\u03b1":{"d":"10,-89v0,-80,88,-130,121,-55r9,-34r49,0r-30,84r34,94r-51,0r-13,-41v-13,30,-31,45,-53,45v-42,0,-66,-48,-66,-93xm89,-146v-34,7,-33,109,1,115v21,-7,20,-27,30,-59v-11,-32,-9,-48,-31,-56","w":195},"\u03b2":{"d":"121,-136v79,11,57,143,-16,140v-17,0,-28,-6,-36,-18r0,74r-50,0r0,-215v0,-58,15,-85,72,-89v70,-5,95,92,30,108xm90,-214v-24,0,-21,19,-21,52r0,114v0,12,11,19,22,19v22,0,29,-24,29,-50v0,-23,-8,-40,-32,-39r0,-29v22,0,26,-12,27,-31v1,-21,-8,-36,-25,-36","w":181},"\u03b3":{"d":"43,60r0,-60r-47,-178r49,0r29,115r29,-115r42,0r-52,178r0,60r-50,0","w":138},"\u03b4":{"d":"11,-84v0,-42,30,-77,65,-81r-44,-42r0,-33r115,0r0,33r-60,0v36,28,80,72,80,123v0,51,-29,88,-78,88v-50,1,-78,-36,-78,-88xm119,-83v0,-29,-3,-51,-26,-51v-18,0,-27,18,-27,52v0,34,8,51,26,51v18,0,27,-17,27,-52","w":177},"\u03b5":{"d":"66,-127v0,21,10,20,35,20r0,33v-26,1,-39,-2,-39,20v0,35,38,31,45,-2r42,7v-16,39,-27,49,-70,53v-64,7,-94,-72,-40,-97v-48,-26,-17,-88,40,-88v38,0,60,16,66,49r-44,9v-1,-31,-35,-35,-35,-4","w":152},"\u03b6":{"d":"64,1v-41,-1,-53,-28,-53,-70v0,-47,20,-91,62,-133r-56,0r0,-38r104,0r0,31v-46,47,-71,98,-56,160v21,12,59,2,59,49v0,17,-5,38,-14,61r-44,-5v8,-19,12,-34,12,-44v0,-10,-4,-11,-14,-11","w":125},"\u03b7":{"d":"91,-150v-43,12,-16,99,-23,150r-50,0r0,-178r50,0r0,25v20,-48,104,-33,88,37r0,176r-49,0r0,-176v-1,-26,3,-32,-16,-34","w":173},"\u03b8":{"d":"11,-120v0,-67,19,-124,78,-124v58,0,78,58,78,124v0,66,-20,124,-78,124v-58,0,-78,-58,-78,-124xm58,-140r61,0v-1,-46,-11,-69,-30,-69v-19,0,-29,23,-31,69xm58,-108v0,51,11,77,31,77v20,0,29,-26,30,-77r-61,0","w":177},"\u03b9":{"d":"18,-178r50,0r0,178r-50,0r0,-178","w":85},"\u03ba":{"d":"18,-178r50,0r0,69r50,-69r45,0r-45,60r49,118r-53,0r-28,-82r-18,25r0,57r-50,0r0,-178","w":165},"\u03bb":{"d":"-4,0r50,-162r-22,-78r50,0r71,240r-51,0r-26,-102r-30,102r-42,0","w":139},"\u03bc":{"d":"87,-34v21,-4,20,-16,21,-50r0,-94r49,0r0,178r-48,0r0,-24v-4,36,-41,38,-44,1r0,84r-47,0r0,-239r50,0r0,94v-1,32,-4,46,19,50","w":175},"\u03bd":{"d":"-4,-178r48,0r24,105r25,-105r41,0r-49,178r-39,0","w":128},"\u03be":{"d":"65,-72v1,51,78,13,78,75v0,15,-4,35,-11,59r-39,-7v6,-29,14,-49,-14,-50v-48,-2,-68,-21,-69,-68v0,-38,18,-53,47,-64v-47,-10,-48,-62,-1,-75r-39,0r0,-38r120,0r0,38v-33,-2,-60,0,-61,30v-1,27,20,31,48,29r0,38v-35,-2,-60,1,-59,33","w":143},"\u03bf":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58","w":165},"\u03c0":{"d":"172,-137r0,137r-50,0r0,-137r-49,0r0,137r-50,0r0,-137r-18,0r0,-41r184,0r0,41r-17,0","w":194},"\u03c1":{"d":"162,-89v1,53,-19,93,-63,95v-19,0,-30,-6,-33,-19r0,73r-50,0v7,-98,-30,-241,73,-241v48,0,73,30,73,92xm90,-31v23,-4,21,-24,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,37,-2,54,21,58","w":171},"\u03c2":{"d":"84,-144v-32,3,-30,88,-4,98v26,10,70,7,70,49v0,15,-3,35,-11,59r-45,-9v8,-21,22,-48,-6,-50v-50,-3,-78,-37,-78,-91v0,-72,61,-119,116,-80v12,8,19,25,24,49r-45,8v-3,-22,-10,-33,-21,-33","w":155},"\u03c3":{"d":"137,-142v15,14,17,26,17,55v0,61,-24,91,-72,91v-48,0,-72,-31,-72,-93v0,-73,36,-102,98,-89r63,0r0,36r-34,0xm82,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58","w":174},"\u03c4":{"d":"-1,-178r134,0r0,40r-43,0r0,138r-50,0r0,-138r-41,0r0,-40","w":131},"\u03c5":{"d":"86,4v-91,0,-66,-100,-69,-182r50,0r0,103v2,28,-4,41,18,41v22,0,18,-13,18,-41r0,-103r50,0v-3,81,22,182,-67,182","w":169},"\u03c6":{"d":"213,-88v0,49,-28,91,-79,92r0,56r-45,0r0,-56v-89,3,-105,-149,-29,-177r14,41v-22,24,-16,94,15,100r0,-148v77,-9,123,23,124,92xm134,-31v38,-6,37,-111,0,-116r0,116","w":223},"\u03c7":{"d":"49,-65r-47,-113r47,0r29,68r34,-68r42,0r-52,118r52,119r-47,0r-34,-82r-39,82r-42,0","w":148},"\u03c8":{"d":"210,-178v0,86,15,184,-72,181r0,57r-49,0r0,-57v-51,-6,-72,-27,-72,-88r0,-93r50,0v1,41,-5,98,4,130v2,7,9,11,18,12r0,-142r49,0r0,142v23,-4,22,-18,22,-49r0,-93r50,0","w":227},"\u03c9":{"d":"77,-34v22,-8,8,-65,12,-99r45,0v3,34,-9,88,11,99v11,0,17,-16,17,-47v0,-33,-8,-60,-23,-82r37,-20v27,37,32,54,37,101v7,67,-61,114,-102,67v-39,46,-101,0,-101,-66v0,-48,15,-75,36,-102r38,20v-15,22,-23,49,-23,82v0,31,5,47,16,47","w":222},"\u03ca":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm93,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm13,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":85},"\u03cb":{"d":"86,4v-91,0,-66,-100,-69,-182r50,0r0,103v2,28,-4,41,18,41v22,0,18,-13,18,-41r0,-103r50,0v-3,81,22,182,-67,182xm137,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm57,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":169},"\u03cc":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58xm57,-211r60,-56r20,30r-65,40","w":165},"\u03cd":{"d":"86,4v-91,0,-66,-100,-69,-182r50,0r0,103v2,28,-4,41,18,41v22,0,18,-13,18,-41r0,-103r50,0v-3,81,22,182,-67,182xm59,-211r60,-56r20,30r-65,40","w":169},"\u03ce":{"d":"77,-34v22,-8,8,-65,12,-99r45,0v3,34,-9,88,11,99v11,0,17,-16,17,-47v0,-33,-8,-60,-23,-82r37,-20v27,37,32,54,37,101v7,67,-61,114,-102,67v-39,46,-101,0,-101,-66v0,-48,15,-75,36,-102r38,20v-15,22,-23,49,-23,82v0,31,5,47,16,47xm91,-211r60,-56r20,30r-65,40","w":222},"\u0401":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240xm146,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm66,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":171},"\u0402":{"d":"125,-185v71,3,37,116,43,185v5,52,-33,70,-81,57r0,-41v19,4,32,8,32,-16r0,-116v-1,-21,0,-29,-17,-29v-18,0,-20,11,-20,30r0,115r-53,0r0,-199r-32,0r0,-41r150,0r0,41r-65,0r0,37v9,-15,23,-23,43,-23","w":182},"\u0403":{"d":"169,-240r0,44r-94,0r0,196r-52,0r0,-240r146,0xm52,-273r60,-56r20,30r-65,40","w":168,"k":{"\u045e":-5,"\u0459":24,"\u0454":20,"\u044f":18,"\u044e":8,"\u044a":-6,"\u0447":6,"\u0446":9,"\u0445":-1,"\u0444":24,"\u0443":-3,"\u0442":-3,"\u0441":19,"\u0440":7,"\u043f":8,"\u043e":19,"\u043d":8,"\u043c":8,"\u043b":22,"\u043a":8,"\u0438":8,"\u0437":13,"\u0435":20,"\u0434":22,"\u0432":8,"\u0430":19,"\u0427":-5,"\u0424":7,"\u0423":-17,"\u0422":-14,"\u041e":-1,"\u041b":10,"\u0414":12,"\u040e":-16,"\u040b":-15,"\u0409":10}},"\u0404":{"d":"12,-119v0,-71,27,-124,94,-125v51,-1,83,27,90,66r-52,11v-4,-23,-17,-34,-37,-34v-24,0,-38,19,-42,57r71,0r0,40r-71,0v-3,79,72,86,85,22r47,10v-7,51,-37,76,-91,76v-67,1,-94,-55,-94,-123","w":201},"\u0405":{"d":"47,-113v-58,-34,-29,-131,44,-131v42,0,68,19,78,56r-43,17v-6,-20,-17,-30,-34,-30v-22,0,-34,26,-17,38v33,22,102,29,99,90v-2,46,-36,78,-85,77v-43,0,-71,-22,-83,-66r46,-13v6,24,18,36,38,36v24,0,41,-23,25,-42v-10,-11,-56,-25,-68,-32"},"\u0406":{"d":"23,-240r52,0r0,240r-52,0r0,-240","w":98},"\u0407":{"d":"23,-240r52,0r0,240r-52,0r0,-240xm99,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm19,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":98},"\u0408":{"d":"-2,-44v32,6,44,1,44,-37r0,-159r53,0r0,159v7,70,-32,96,-97,81r0,-44","w":116},"\u0409":{"d":"272,-75v0,74,-59,79,-136,75r-48,-189r-45,189r-49,0r66,-240r60,0r25,89v73,-4,127,4,127,76xm217,-74v2,-35,-24,-39,-60,-36r20,71v29,3,38,-10,40,-35","w":278,"k":{"\u044a":-3,"\u042a":11,"\u0427":2,"\u0423":1,"\u0422":13,"\u040e":2,"\u040b":3}},"\u040a":{"d":"292,-75v-2,54,-26,75,-90,75r-69,0r0,-100r-58,0r0,100r-52,0r0,-240r52,0r0,99r58,0r0,-99r53,0r0,89v67,-4,108,14,106,76xm236,-75v0,-30,-18,-37,-50,-35r0,69v31,2,50,-3,50,-34","w":297,"k":{"\u044a":-2,"\u042a":11,"\u0427":3,"\u0423":1,"\u0422":13,"\u040e":2,"\u040b":3}},"\u040b":{"d":"125,-185v71,3,34,117,43,185r-49,0r0,-116v-1,-21,0,-29,-17,-29v-18,0,-20,11,-20,30r0,115r-53,0r0,-199r-32,0r0,-41r150,0r0,41r-65,0r0,37v9,-15,23,-23,43,-23","w":187},"\u040c":{"d":"23,-240r52,0r0,100r59,-100r53,0r-60,88r65,152r-54,0r-43,-111r-20,29r0,82r-52,0r0,-240xm72,-273r60,-56r20,30r-65,40","w":190,"k":{"\u0454":6,"\u0447":15,"\u0444":7,"\u0443":12,"\u0442":9,"\u0441":6,"\u043e":5,"\u0435":6,"\u0431":7,"\u0424":13,"\u0421":8,"\u041e":7,"\u0417":2,"\u0404":8}},"\u040e":{"d":"65,-72r-72,-168r54,0r41,105r36,-105r49,0r-65,180v-15,48,-29,63,-88,60r0,-44v27,0,39,2,45,-28xm32,-304r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":164,"k":{"\u0459":15,"\u0454":10,"\u044f":10,"\u044e":5,"\u0447":3,"\u0446":6,"\u0445":-4,"\u0444":12,"\u0442":-6,"\u0441":10,"\u0440":4,"\u043f":5,"\u043e":10,"\u043d":5,"\u043c":5,"\u043b":14,"\u043a":5,"\u0438":5,"\u0437":6,"\u0436":-3,"\u0435":11,"\u0434":14,"\u0431":4,"\u0430":10,"\u042f":1,"\u0427":-8,"\u0424":6,"\u0422":-17,"\u0421":2,"\u041e":2,"\u041b":9,"\u0417":-1,"\u0414":10,"\u0410":9,"\u040e":-20,"\u040b":-18,"\u0409":9,"\u0404":2}},"\u040f":{"d":"85,0r-62,0r0,-240r52,0r0,195r58,0r0,-195r53,0r0,240r-63,0r-4,51r-31,-1","w":208},"\u0410":{"d":"65,-240r53,0r69,240r-54,0r-12,-50r-68,0r-12,50r-48,0xm111,-91r-24,-98r-24,98r48,0","k":{"\u045e":3,"\u0459":-16,"\u0447":6,"\u0443":3,"\u0442":3,"\u043b":-15,"\u0437":-5,"\u042a":7,"\u0427":12,"\u0424":5,"\u0423":-5,"\u0422":9,"\u0421":2,"\u041e":2,"\u041b":-18,"\u0417":-3,"\u040e":-4,"\u0409":-18,"\u0404":2,"\u00bb":-2,";":-4,":":-4,".":-8,"-":-4,",":-8}},"\u0411":{"d":"181,-75v0,83,-76,77,-158,75r0,-240r136,0r0,41r-84,0r0,48v68,-3,106,14,106,76xm126,-75v0,-30,-18,-37,-51,-35r0,69v31,1,51,-3,51,-34","w":192,"k":{"\u045e":4,"\u0443":4,"\u0442":1,"\u0436":4,"\u0428":1,"\u0427":5,"\u0422":2,"\u0416":2,"\u0410":-4,"\u040b":1}},"\u0412":{"d":"148,-125v69,27,46,142,-43,125r-82,0r0,-240v75,1,160,-15,160,63v0,27,-12,44,-35,52xm129,-173v0,-26,-25,-31,-56,-28r0,58v32,2,56,-2,56,-30xm136,-73v0,-33,-30,-32,-63,-31r0,63v33,2,63,-1,63,-32","w":202,"k":{"\u045e":-4,"\u044a":-8,"\u0447":2,"\u0443":-4,"\u0442":-5,"\u0436":-3,"\u0427":4,"\u0422":-4,"\u0416":1,"\u0410":-4,"\u040e":1,"\u040b":-5}},"\u0413":{"d":"169,-240r0,41r-94,0r0,199r-52,0r0,-240r146,0","w":168,"k":{"\u045e":-5,"\u0459":24,"\u0454":20,"\u044f":18,"\u044e":8,"\u044a":-6,"\u0447":6,"\u0446":9,"\u0445":-1,"\u0444":24,"\u0443":-3,"\u0442":-3,"\u0441":19,"\u0440":7,"\u043f":8,"\u043e":19,"\u043d":8,"\u043c":8,"\u043b":22,"\u043a":8,"\u0438":8,"\u0437":13,"\u0435":20,"\u0434":22,"\u0432":8,"\u0430":19,"\u0427":-5,"\u0424":7,"\u0423":-17,"\u0422":-14,"\u0421":-1,"\u041e":-1,"\u041b":10,"\u0414":12,"\u040e":-16,"\u040b":-15,"\u0409":10,";":8,":":8,".":35,"-":26,",":35}},"\u0414":{"d":"10,-44r52,-196r68,0r47,196r15,0r0,93r-39,0r-5,-49r-110,0r-4,49r-39,0r0,-93r15,0xm58,-44r66,0r-29,-145r-7,0","w":186},"\u0415":{"d":"23,-240r146,0r0,41r-94,0r0,56r73,0r0,41r-73,0r0,59r94,0r0,43r-146,0r0,-240","w":171,"k":{"\u0424":6}},"\u0416":{"d":"197,-137r75,137r-55,0r-57,-105v-6,29,0,72,-2,105r-53,0v-2,-34,4,-75,-2,-105r-57,105r-51,0r71,-125r-66,-115r55,0r46,88r4,1r0,-89r53,0r0,89r49,-89r51,0","w":258,"k":{"\u045e":-5,"\u0454":-1,"\u0447":11,"\u0443":5,"\u0441":-1,"\u043e":-2,"\u0437":-7,"\u0435":-1,"\u0430":-8,"\u0424":8,"\u0421":2,"\u041e":2,"\u0417":-5,"\u0404":2}},"\u0417":{"d":"85,-203v-20,0,-23,10,-28,36r-46,-9v10,-48,31,-63,80,-68v72,-7,98,94,36,118v27,8,40,28,40,58v0,72,-104,94,-141,50v-11,-13,-17,-33,-22,-57r47,-7v7,30,8,41,34,43v18,1,28,-15,28,-33v0,-25,-16,-35,-45,-33r0,-39v27,2,42,-5,42,-30v0,-19,-9,-29,-25,-29","w":178,"k":{"\u045e":-5,"\u0459":-1,"\u044f":1,"\u0447":1,"\u0445":-5,"\u0443":-5,"\u0442":-7,"\u043b":-2,"\u042f":2,"\u0427":2,"\u0422":-5,"\u041b":-4,"\u0417":-7,"\u0414":-9,"\u0410":-5,"\u040b":-7,"\u0409":-4}},"\u0418":{"d":"75,-25r0,25r-52,0r0,-240r52,0r0,135r62,-108r0,-27r53,0r0,240r-53,0r0,-134v-19,38,-42,72,-62,109","w":212},"\u0419":{"d":"75,-25r0,25r-52,0r0,-240r52,0r0,135r62,-108r0,-27r53,0r0,240r-53,0r0,-134v-19,38,-42,72,-62,109xm51,-304r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":212},"\u041a":{"d":"23,-240r52,0r0,100r59,-100r53,0r-60,88r65,152r-54,0r-43,-111r-20,29r0,82r-52,0r0,-240","w":190,"k":{"\u0454":6,"\u0447":15,"\u0444":7,"\u0443":12,"\u0442":9,"\u0441":6,"\u043e":5,"\u0437":1,"\u0435":6,"\u0431":7,"\u0424":13,"\u0421":8,"\u041e":7,"\u0417":2,"\u0404":8}},"\u041b":{"d":"43,0r-49,0r66,-240r60,0r68,240r-52,0r-48,-189"},"\u041c":{"d":"23,-240r77,0r34,148r38,-148r75,0r0,240r-49,0r0,-201r-49,201r-39,0r-44,-201r0,201r-43,0r0,-240","w":269},"\u041d":{"d":"23,-240r52,0r0,97r58,0r0,-97r53,0r0,240r-53,0r0,-98r-58,0r0,98r-52,0r0,-240","w":208},"\u041e":{"d":"101,-244v64,0,88,52,87,124v0,82,-29,124,-87,124v-64,0,-87,-53,-87,-124v0,-82,29,-124,87,-124xm101,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,49,-1,74,31,81","w":202,"k":{"\u0459":1,"\u042f":2,"\u042a":-7,"\u0427":1,"\u0425":4,"\u0423":2,"\u0422":-2,"\u0417":-4,"\u0416":5,"\u0414":-3,"\u040e":3,"\u040b":-3}},"\u041f":{"d":"23,-240r163,0r0,240r-53,0r0,-195r-58,0r0,195r-52,0r0,-240","w":208},"\u0420":{"d":"181,-165v1,64,-36,80,-106,76r0,89r-52,0r0,-240r69,0v61,-4,88,20,89,75xm126,-166v0,-30,-17,-39,-51,-35r0,71v33,3,51,-5,51,-36","k":{"\u0459":13,"\u0454":1,"\u0444":3,"\u0441":1,"\u043e":1,"\u043b":11,"\u0437":-2,"\u0435":2,"\u0434":11,"\u0430":1,"\u042f":-1,"\u0427":-1,"\u0421":-3,"\u041b":7,"\u0414":9,"\u0410":8,"\u0409":7,".":29,"-":1,",":29}},"\u0421":{"d":"70,-117v1,47,2,78,35,78v19,0,31,-16,34,-48r49,3v-3,49,-34,88,-83,88v-66,0,-91,-55,-91,-124v0,-71,25,-123,91,-124v50,0,78,31,82,93r-48,4v-1,-36,-12,-54,-33,-54v-34,0,-37,33,-36,84","w":196,"k":{"\u045e":-7,"\u0447":-1,"\u0443":-7,"\u0442":-10,"\u0425":2,"\u0424":-2,"\u0422":-6,"\u0421":-3,"\u041e":-3,"\u041b":-3,"\u0417":-8,"\u0416":3,"\u0410":-3,"\u040e":1,"\u040b":-7,"\u0409":-3}},"\u0422":{"d":"-4,-240r149,0r0,45r-49,0r0,195r-52,0r0,-195r-48,0r0,-45","w":140,"k":{"\u045e":-6,"\u0459":9,"\u0454":12,"\u044f":13,"\u044a":-8,"\u0447":4,"\u0446":8,"\u0445":-3,"\u0444":15,"\u0443":-5,"\u0442":-5,"\u0441":12,"\u0440":5,"\u043f":7,"\u043e":12,"\u043d":7,"\u043c":7,"\u043b":10,"\u043a":7,"\u0438":7,"\u0437":12,"\u0436":-2,"\u0435":12,"\u0434":10,"\u0433":7,"\u0432":7,"\u0430":13,"\u042f":-2,"\u0424":5,"\u0423":-17,"\u0422":-14,"\u0421":-1,"\u041e":-2,"\u041b":8,"\u0417":-6,"\u0414":8,"\u0410":7,"\u040e":-16,"\u040b":-15,"\u0409":8,"\u0404":-1,"\u00bb":14,";":6,":":6,".":13,"-":8,",":13}},"\u0423":{"d":"65,-72r-72,-168r54,0r41,105r36,-105r49,0r-65,180v-15,48,-29,63,-88,60r0,-44v27,0,39,2,45,-28","w":164,"k":{"\u045e":-9,"\u0459":14,"\u0454":9,"\u044f":9,"\u044e":4,"\u0447":2,"\u0446":5,"\u0445":-5,"\u0444":12,"\u0443":-6,"\u0442":-7,"\u0441":9,"\u0440":4,"\u043f":4,"\u043e":9,"\u043d":4,"\u043c":4,"\u043b":13,"\u043a":4,"\u0438":4,"\u0437":5,"\u0436":-4,"\u0435":10,"\u0434":13,"\u0431":4,"\u0430":10,"\u042f":1,"\u0427":-9,"\u0424":5,"\u0423":-21,"\u0422":-18,"\u0421":1,"\u041e":1,"\u041b":8,"\u0417":-2,"\u0414":9,"\u0410":9,"\u040b":-20,"\u0409":8,"\u0404":2,"\u00bb":7,";":4,":":4,".":21,"-":6,",":21}},"\u0424":{"d":"139,-218v52,7,82,41,82,98v0,55,-27,88,-82,98r0,29r-45,0r0,-29v-55,-8,-82,-42,-82,-98v0,-55,31,-91,82,-98r0,-29r45,0r0,29xm94,-178v-41,10,-42,105,0,115r0,-115xm139,-63v41,-10,42,-105,0,-115r0,115","w":233,"k":{"\u0459":5,"\u043b":4,"\u0434":4,"\u042f":4,"\u042a":1,"\u0427":1,"\u0425":9,"\u0423":8,"\u041b":2,"\u0416":10,"\u0414":5,"\u0410":3,"\u040e":9,"\u0409":2}},"\u0425":{"d":"2,-240r58,0r29,62r30,-62r51,0r-57,109r64,131r-58,0r-35,-78r-39,78r-50,0r65,-123","w":171,"k":{"\u0454":2,"\u0447":12,"\u0444":4,"\u0443":4,"\u0442":3,"\u0441":2,"\u043e":1,"\u0437":-3,"\u0435":2,"\u0430":-4,"\u0424":9,"\u0421":3,"\u041e":2,"\u0417":-1,"\u0404":3}},"\u0426":{"d":"188,-45r35,0r0,94r-39,0r-4,-49r-156,0r0,-240r53,0r0,195r58,0r0,-195r53,0r0,195","w":222},"\u0427":{"d":"70,-153v-5,43,33,44,52,19r0,-106r53,0r0,240r-53,0r0,-88v-49,33,-104,2,-104,-67r0,-85r52,0r0,87","w":197},"\u0428":{"d":"24,0r0,-240r53,0r0,195r44,0r0,-195r53,0r0,195r44,0r0,-195r52,0r0,240r-246,0","w":294},"\u0429":{"d":"269,-45r36,0r0,94r-39,0r-5,-49r-238,0r0,-240r52,0r0,195r44,0r0,-195r53,0r0,195r44,0r0,-195r53,0r0,195","w":302},"\u042a":{"d":"206,-74v0,81,-76,76,-159,74r0,-192r-56,0r0,-48r109,0r0,89v69,-3,106,14,106,77xm150,-74v0,-31,-17,-39,-50,-36r0,71v33,3,50,-5,50,-35","w":211,"k":{"\u044a":-2,"\u042a":12,"\u0427":3,"\u0423":1,"\u0422":13,"\u040e":2,"\u040b":4}},"\u042b":{"d":"181,-75v0,83,-76,77,-158,75r0,-240r52,0r0,89v68,-3,106,14,106,76xm126,-74v0,-31,-18,-39,-51,-36r0,71v33,3,51,-5,51,-35xm207,-240r52,0r0,240r-52,0r0,-240","w":282},"\u042c":{"d":"181,-75v0,83,-76,77,-158,75r0,-240r52,0r0,89v68,-3,106,14,106,76xm126,-74v0,-31,-18,-39,-51,-36r0,71v33,3,51,-5,51,-35","w":187,"k":{"\u044a":-2,"\u042a":12,"\u0427":3,"\u0423":1,"\u0422":13,"\u040e":2,"\u040b":4}},"\u042d":{"d":"189,-119v-1,68,-25,123,-94,123v-53,0,-83,-25,-90,-76r47,-10v6,29,20,43,43,43v25,0,39,-22,42,-65r-72,0r0,-40r71,0v2,-64,-67,-78,-79,-23r-51,-11v7,-39,39,-67,89,-66v67,1,95,53,94,125","w":201,"k":{"\u0459":1,"\u042f":2,"\u042a":-6,"\u0427":1,"\u0423":3,"\u0422":-1,"\u041b":1,"\u0414":-2,"\u0410":1,"\u040e":4,"\u040b":-2,"\u0409":1}},"\u042e":{"d":"191,-244v64,0,87,53,87,124v0,82,-29,124,-87,124v-52,0,-81,-34,-87,-102r-29,0r0,98r-52,0r0,-240r52,0r0,97r29,0v7,-67,36,-101,87,-101xm191,-39v33,-6,32,-32,32,-81v0,-48,1,-75,-32,-81v-33,5,-31,33,-31,81v0,48,-2,76,31,81","w":290,"k":{"\u0459":1,"\u042f":3,"\u042a":-7,"\u0427":1,"\u0425":4,"\u0423":2,"\u0422":-2,"\u041b":1,"\u0417":-4,"\u0416":5,"\u0414":-3,"\u040e":3,"\u040b":-3,"\u0409":1}},"\u042f":{"d":"15,-168v0,-49,27,-72,83,-72r75,0r0,240r-52,0r0,-95r-27,0r-32,95r-57,0r44,-105v-22,-12,-34,-33,-34,-63xm121,-201v-32,-2,-54,1,-54,33v0,33,22,36,54,34r0,-67","w":196},"\u0430":{"d":"104,-110v-1,-21,3,-39,-17,-38v-13,0,-20,9,-21,27r-47,-5v4,-35,33,-55,72,-55v91,0,54,105,66,181r-46,0v-2,-5,-3,-14,-3,-27v-18,47,-99,39,-95,-18v4,-50,32,-61,91,-65xm81,-29v21,0,24,-27,23,-56v-25,4,-39,8,-40,34v0,15,6,22,17,22","w":171,"k":{"\u045e":4,"\u0459":-5,"\u0447":5,"\u0443":4,"\u0442":-3}},"\u0431":{"d":"163,-91v0,55,-25,95,-77,95v-50,0,-75,-34,-75,-102v1,-70,15,-126,66,-139v16,-4,23,-3,25,-18r45,0v2,56,-81,25,-87,81v53,-34,103,18,103,83xm85,-146v-18,0,-26,19,-26,57v0,36,9,55,27,55v17,0,26,-19,26,-55v0,-38,-10,-57,-27,-57","w":173,"k":{"\u045e":3,"\u044f":2,"\u0447":2,"\u0445":1,"\u0443":3,"\u0442":-4,"\u0437":-1,"\u0436":3}},"\u0432":{"d":"138,-95v47,18,30,95,-23,95r-97,0r0,-178v60,4,144,-18,142,46v0,16,-7,28,-22,37xm114,-126v4,-24,-22,-19,-43,-19r0,36v20,-2,47,7,43,-17xm118,-58v3,-25,-25,-20,-47,-20r0,40v22,-1,50,6,47,-20","w":174,"k":{"\u045e":1,"\u044f":2,"\u0447":4,"\u0445":-1,"\u0443":1,"\u0442":-5,"\u0437":-4,"\u0436":1}},"\u0433":{"d":"18,-178r101,0r0,39r-51,0r0,139r-50,0r0,-178","w":120,"k":{"\u045e":-10,"\u0459":9,"\u0454":-2,"\u044f":-2,"\u0444":1,"\u0441":-2,"\u043e":-2,"\u043b":8,"\u0434":8,";":-1,":":-1,".":17,"-":13,",":17}},"\u0434":{"d":"11,-38r36,-140r64,0r32,140r15,0r0,78r-36,0r-4,-40r-81,0r-4,40r-36,0r0,-78r14,0xm48,-38r46,0r-19,-92r-3,0","w":154},"\u0435":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0","w":165,"k":{"\u045e":3,"\u044f":2,"\u0447":1,"\u0445":1,"\u0443":3,"\u0437":-3,"\u0436":2}},"\u0436":{"d":"169,-107r55,107r-51,0r-40,-77v-3,23,0,52,-1,77r-46,0v-2,-25,4,-56,-2,-77r-41,77r-48,0r54,-95r-49,-83r50,0r31,58r5,2r0,-60r46,0r0,60v16,-16,23,-41,36,-60r48,0","w":214,"k":{"\u045e":-11,"\u0454":1,"\u0444":3,"\u0441":1,"\u0437":-2,"\u0435":1,"\u0431":-2}},"\u0437":{"d":"91,-54v-2,-22,-12,-19,-39,-20r0,-33v26,1,35,0,35,-20v0,-14,-5,-21,-16,-21v-10,0,-16,8,-19,25r-44,-9v2,-66,132,-65,130,1v0,16,-8,29,-24,38v54,24,25,104,-40,97v-42,-4,-55,-14,-70,-53r42,-7v5,18,14,27,26,27v11,-1,20,-10,19,-25","w":152,"k":{"\u045e":1,"\u0459":-2,"\u044f":2,"\u0447":3,"\u0443":1,"\u0442":-5,"\u043b":-2,"\u0436":1}},"\u0438":{"d":"108,-83v-12,30,-41,41,-40,83r-50,0r0,-178r50,0r0,86r40,-63r0,-23r49,0r0,178r-49,0r0,-83","w":175},"\u0439":{"d":"108,-83v-12,30,-41,41,-40,83r-50,0r0,-178r50,0r0,86r40,-63r0,-23r49,0r0,178r-49,0r0,-83xm32,-243r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":175,"k":{"\u0459":-4}},"\u043a":{"d":"18,-178r50,0r0,69r50,-69r45,0r-45,60r49,118r-53,0r-28,-82r-18,25r0,57r-50,0r0,-178","w":165,"k":{"\u045e":-12,"\u0444":2,"\u0437":-3,"\u0431":-3,"\u0430":-4}},"\u043b":{"d":"-5,0r53,-178r51,0r49,178r-51,0r-27,-115r-29,115r-46,0","w":145},"\u043c":{"d":"18,0r0,-178r64,0r33,121r32,-121r60,0r0,178r-45,0r0,-100r-28,100r-47,0r-27,-99r0,99r-42,0","w":225},"\u043d":{"d":"18,0r0,-178r50,0r0,64r39,0r0,-64r50,0r0,178r-50,0r0,-75r-39,0r0,75r-50,0","w":174},"\u043e":{"d":"155,-89v0,62,-24,93,-72,93v-48,0,-72,-31,-72,-93v0,-62,24,-92,72,-92v48,0,72,30,72,92xm83,-31v22,-5,21,-25,21,-58v0,-34,2,-53,-21,-58v-23,4,-21,24,-21,58v0,34,-2,53,21,58","w":165,"k":{"\u045e":2,"\u0459":1,"\u044a":-7,"\u0443":2,"\u0442":-4,"\u0437":-2,"\u0436":2}},"\u043f":{"d":"18,0r0,-178r132,0r0,178r-49,0r0,-145r-33,0r0,145r-50,0","w":168},"\u0440":{"d":"161,-92v0,68,-46,120,-94,79r0,73r-49,0r0,-238r46,0r0,27v10,-19,23,-29,40,-29v39,0,57,37,57,88xm89,-147v-29,-3,-22,44,-22,74v0,28,-1,41,21,41v25,0,22,-21,22,-59v0,-33,2,-54,-21,-56","w":171,"k":{"\u045e":2,"\u0454":-1,"\u044f":1,"\u0447":1,"\u0443":2,"\u0442":-5,"\u0437":-1,"\u0436":2,";":2,":":1,"-":-8,",":1}},"\u0441":{"d":"11,-88v-1,-55,22,-92,72,-93v41,0,64,23,68,69r-46,2v-2,-17,-3,-32,-20,-33v-17,0,-25,17,-25,52v0,53,41,80,45,22r46,3v-4,47,-28,70,-70,70v-51,-1,-70,-37,-70,-92","w":159,"k":{"\u0459":-1,"\u0447":-1,"\u0444":-2,"\u0443":-1,"\u0442":-8,"\u043e":-2,"\u043b":-2,"\u0437":-5,"\u0436":1,"\u0430":-2,"\u040e":3}},"\u0442":{"d":"-1,-178r134,0r0,40r-43,0r0,138r-50,0r0,-138r-41,0r0,-40","w":131,"k":{"\u045e":-12,"\u0459":6,"\u0454":-4,"\u044f":-4,"\u0447":-5,"\u0444":-1,"\u0443":-12,"\u0442":-14,"\u0441":-4,"\u043e":-4,"\u043b":5,"\u0437":-8,"\u0435":-3,"\u0434":5,"\u0430":-4,"\u00bb":-5,";":-3,":":-3,".":10,"-":6,",":10}},"\u0443":{"d":"-5,-178r50,0r24,109r23,-109r42,0r-53,181v-9,44,-30,67,-79,57r0,-39v26,3,40,0,44,-24","w":128,"k":{"\u0459":7,"\u0454":4,"\u044f":4,"\u0447":-2,"\u0444":6,"\u0442":-11,"\u0441":4,"\u043e":4,"\u043b":6,"\u0435":5,"\u0434":6,"\u0430":4,"\u00bb":1,".":12,",":13}},"\u0444":{"d":"198,-89v0,49,-29,83,-73,88r0,60r-41,0r0,-60v-44,-5,-73,-40,-73,-88v0,-50,24,-80,73,-91r0,-57r41,0r0,57v49,11,73,41,73,91xm84,-37r0,-106v-34,11,-33,95,0,106xm125,-37v34,-11,33,-95,0,-106r0,106","w":208,"k":{"\u045e":4,"\u0459":2,"\u044f":3,"\u044a":-4,"\u0447":2,"\u0445":4,"\u0443":4,"\u0442":-2,"\u043b":2,"\u0437":-1,"\u0436":5,"\u0434":-2,"\u0433":1}},"\u0445":{"d":"-2,-178r54,0r19,42r23,-42r43,0r-46,79r53,99r-54,0r-26,-53r-30,53r-43,0r53,-91","w":135,"k":{"\u045e":-12,"\u0454":1,"\u0444":3,"\u0437":-2,"\u0435":1,"\u0430":-4}},"\u0446":{"d":"18,0r0,-178r50,0r0,140r35,0r0,-140r50,0r0,140r22,0r0,80r-36,0r-4,-42r-117,0","w":172},"\u0447":{"d":"94,-59v-37,18,-80,-1,-80,-46r0,-73r49,0v3,33,-14,105,31,82r0,-82r50,0r0,178r-50,0r0,-59","w":162},"\u0448":{"d":"19,0r0,-178r50,0r0,140r30,0r0,-140r50,0r0,140r30,0r0,-140r50,0r0,178r-210,0","w":248},"\u0449":{"d":"18,0r0,-178r49,0r0,140r32,0r0,-140r48,0r0,140r32,0r0,-140r49,0r0,140r22,0r0,80r-35,0r-5,-42r-192,0","w":247},"\u044a":{"d":"165,-58v0,36,-18,58,-57,58r-80,0r0,-142r-38,0r0,-36r88,0r0,62v53,-6,87,11,87,58xm78,-35v23,2,40,0,40,-23v0,-26,-17,-23,-40,-23r0,46","w":171,"k":{"\u045e":8,"\u044a":7,"\u0447":2,"\u0443":8,"\u0442":11,"\u0441":-2,"\u0435":-2}},"\u044b":{"d":"155,-58v0,36,-18,58,-57,58r-80,0r0,-178r50,0r0,62v53,-6,87,12,87,58xm68,-35v23,2,39,0,39,-23v0,-26,-16,-24,-39,-23r0,46xm175,0r0,-178r49,0r0,178r-49,0","w":242},"\u044c":{"d":"155,-58v0,36,-18,58,-57,58r-80,0r0,-178r50,0r0,62v53,-6,87,12,87,58xm68,-35v23,2,39,0,39,-23v0,-26,-16,-24,-39,-23r0,46","w":161,"k":{"\u045e":8,"\u044a":7,"\u0447":2,"\u0443":8,"\u0442":11,"\u0441":-2,"\u0435":-2}},"\u044d":{"d":"145,-91v0,55,-21,95,-73,95v-38,0,-61,-18,-68,-54r46,-10v2,15,8,23,20,23v16,0,25,-13,26,-38r-56,0r0,-32r55,0v4,-38,-37,-53,-45,-17r-46,-5v9,-35,31,-53,66,-53v48,0,75,35,75,91","w":154,"k":{"\u045e":2,"\u0459":2,"\u044f":2,"\u044a":-7,"\u0447":1,"\u0443":2,"\u0442":-4,"\u043b":1}},"\u044e":{"d":"84,-75r-16,0r0,75r-50,0r0,-176r50,0r0,64r17,0v6,-46,30,-69,71,-69v48,0,72,30,72,92v0,62,-24,93,-72,93v-44,0,-68,-27,-72,-79xm156,-31v23,-4,21,-24,21,-58v0,-34,2,-53,-21,-58v-22,5,-21,23,-21,58v0,37,-2,54,21,58","w":237,"k":{"\u045e":3,"\u0459":1,"\u044a":-7,"\u0447":1,"\u0445":1,"\u0443":3,"\u0442":-4,"\u043b":1,"\u0437":-2,"\u0436":2}},"\u044f":{"d":"40,-78v-44,-25,-28,-100,36,-100r77,0r0,178r-49,0r0,-67r-22,0r-28,67r-50,0xm63,-123v-4,23,19,20,41,20r0,-42v-22,0,-44,-3,-41,22","w":171},"\u0451":{"d":"11,-86v0,-81,72,-123,124,-74v14,14,20,41,20,79r-93,0v0,27,0,50,23,50v15,0,24,-10,26,-30r44,3v-8,41,-32,62,-71,62v-49,0,-73,-38,-73,-90xm108,-109v1,-24,-7,-40,-23,-39v-15,0,-23,13,-23,39r46,0xm137,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm57,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":165},"\u0452":{"d":"92,-136v-42,8,-19,90,-25,136r-49,0r0,-191r-26,0r0,-33r26,0r0,-20r49,0r0,20r57,0r0,33r-57,0r0,26v9,-8,21,-12,36,-12v58,0,51,46,53,121v1,76,-3,112,-70,113r-4,-36v36,-3,28,-22,28,-78v0,-48,6,-70,-18,-79","w":169},"\u0453":{"d":"18,-178r101,0r0,39r-51,0r0,139r-50,0r0,-178xm38,-213r60,-56r20,30r-65,40","w":120,"k":{"\u0459":9,"\u0454":-2,"\u044f":-2,"\u0441":-2,"\u043e":-2,"\u043b":8,"\u0434":8}},"\u0454":{"d":"10,-91v-9,-96,122,-126,141,-38r-47,5v-2,-23,-24,-27,-36,-13v-4,5,-7,15,-8,30r55,0r0,32r-56,0v-3,41,40,53,46,15r46,10v-7,36,-30,54,-68,54v-53,0,-68,-40,-73,-95","w":155},"\u0455":{"d":"24,-92v-31,-38,2,-89,51,-89v32,0,51,15,60,46r-35,11v-5,-16,-13,-24,-26,-24v-16,0,-20,21,-10,28v27,18,78,20,77,66v-1,35,-30,58,-68,58v-40,0,-62,-18,-66,-53r39,-7v0,29,45,38,48,10v-3,-28,-61,-26,-70,-46","w":147},"\u0456":{"d":"68,-192r-50,0r0,-49r50,0r0,49xm18,-178r50,0r0,178r-50,0r0,-178","w":85},"\u0457":{"d":"18,-178r50,0r0,178r-50,0r0,-178xm93,-223v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm13,-204v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":85},"\u0458":{"d":"70,-192r-50,0r0,-49r50,0r0,49xm-3,22v22,1,23,-5,23,-29r0,-171r49,0r0,172v5,56,-18,79,-72,69r0,-41","w":85},"\u0459":{"d":"220,-58v0,36,-18,58,-57,58r-69,0r-20,-114r-33,114r-46,0r58,-178r52,0r13,62v57,-5,102,3,102,58xm135,-36v21,1,40,1,37,-22v3,-30,-22,-22,-46,-23","w":225,"k":{"\u045e":7,"\u044a":6,"\u0447":2,"\u0443":7,"\u0442":10}},"\u045a":{"d":"244,-58v0,36,-18,58,-57,58r-80,0r0,-75r-39,0r0,75r-50,0r0,-178r50,0r0,64r39,0r0,-64r50,0r0,62v53,-5,87,10,87,58xm157,-35v23,2,39,1,39,-23v0,-27,-17,-23,-39,-23r0,46","w":250,"k":{"\u045e":7,"\u0454":-2,"\u044a":7,"\u0447":2,"\u0443":7,"\u0442":11,"\u0441":-2,"\u0435":-2}},"\u045b":{"d":"93,-137v-42,8,-21,89,-26,137r-49,0r0,-191r-26,0r0,-33r26,0r0,-21r49,0r0,21r56,0r0,33r-56,0r0,30v37,-35,89,-9,89,56r0,105r-48,0r0,-101v-2,-21,0,-33,-15,-36","w":171},"\u045c":{"d":"18,-178r50,0r0,69r50,-69r45,0r-45,60r49,118r-53,0r-28,-82r-18,25r0,57r-50,0r0,-178xm60,-212r60,-56r20,30r-65,40","w":165,"k":{"\u045e":-13,"\u0444":3,"\u0437":-3,"\u0431":-3,"\u0430":-4}},"\u045e":{"d":"-5,-178r50,0r24,109r23,-109r42,0r-53,181v-9,44,-30,67,-79,57r0,-39v26,3,40,0,44,-24xm7,-243r28,0v7,24,53,24,60,0r28,0v-11,58,-104,59,-116,0","w":128,"k":{"\u0454":4,"\u044f":4,"\u0447":-2,"\u0444":6,"\u0442":-11,"\u0441":4,"\u043e":4,"\u043b":6,"\u0435":5,"\u0434":6,"\u0430":4}},"\u045f":{"d":"18,0r0,-178r50,0r0,140r35,0r0,-140r49,0r0,178r-47,0r-3,42r-34,0r-3,-42r-47,0","w":170},"\u0490":{"d":"169,-285r0,89r-94,0r0,196r-52,0r0,-240r103,0r0,-45r43,0","w":168},"\u0491":{"d":"75,-181r0,-36r49,0r0,75r-56,0r0,142r-50,0r0,-181r57,0","w":125},"\u1e80":{"d":"-2,-240r54,0r25,166r32,-166r48,0r30,167r29,-167r44,0r-51,241r-47,0r-32,-167r-33,167r-47,0xm164,-269r-14,14r-65,-40r19,-30","w":257},"\u1e81":{"d":"-3,-178r48,0r21,108r20,-108r48,0r16,108r24,-108r39,0r-44,178r-42,0r-23,-121r-22,121r-40,0xm142,-212r-14,14r-65,-40r19,-30","w":208},"\u1e82":{"d":"-2,-240r54,0r25,166r32,-166r48,0r30,167r29,-167r44,0r-51,241r-47,0r-32,-167r-33,167r-47,0xm99,-269r60,-56r20,30r-65,40","w":257},"\u1e83":{"d":"-3,-178r48,0r21,108r20,-108r48,0r16,108r24,-108r39,0r-44,178r-42,0r-23,-121r-22,121r-40,0xm77,-214r60,-56r20,30r-65,40","w":208},"\u1e84":{"d":"-2,-240r54,0r25,166r32,-166r48,0r30,167r29,-167r44,0r-51,241r-47,0r-32,-167r-33,167r-47,0xm183,-281v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm103,-262v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":257},"\u1e85":{"d":"-3,-178r48,0r21,108r20,-108r48,0r16,108r24,-108r39,0r-44,178r-42,0r-23,-121r-22,121r-40,0xm156,-222v0,25,-40,24,-41,0v0,-10,9,-20,20,-19v12,-1,21,9,21,19xm76,-203v-10,0,-21,-7,-20,-19v0,-10,9,-20,20,-19v11,-1,20,9,20,19v0,11,-10,19,-20,19","w":208},"\u1ef2":{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,139r0,101r-53,0r0,-101xm107,-269r-14,14r-65,-40r19,-30","w":159},"\u1ef3":{"d":"-5,-178r50,0r24,109r23,-109r42,0r-53,181v-9,44,-30,67,-79,57r0,-39v26,3,40,0,44,-24xm100,-213r-14,14r-65,-40r19,-30","w":128},"\u2015":{"d":"13,-109r213,0r0,36r-213,0r0,-36","w":239},"\u2017":{"d":"0,17r180,0r0,28r-180,0r0,-28xm0,60r180,0r0,28r-180,0r0,-28","w":180},"\u201b":{"d":"65,-240r0,53r-19,0r19,47r-19,0r-26,-47r0,-53r45,0","w":85},"\u2032":{"d":"37,-140r-30,0r27,-100r43,0","w":69},"\u2033":{"d":"37,-140r-30,0r27,-100r43,0xm105,-140r-29,0r27,-100r42,0","w":133},"\u203c":{"d":"21,-240r63,0r-16,168r-32,0xm28,-53r49,0r0,53r-49,0r0,-53xm109,-240r63,0r-16,168r-32,0xm116,-53r49,0r0,53r-49,0r0,-53","w":195},"\u203e":{"d":"-7,-329r216,0r0,13r-216,0r0,-13","w":201},"\u2044":{"d":"58,-240r29,0r-115,240r-28,0","w":30},"\u207f":{"d":"60,-178v-9,1,-10,6,-11,19r0,63r-37,0r0,-108r29,0r0,15v17,-28,74,-22,65,23r0,70r-37,0r0,-70v0,-8,-3,-12,-9,-12","w":116},"\u20a4":{"d":"46,-161v-4,-50,18,-84,65,-83v33,0,53,16,61,46r-38,18v-4,-30,-40,-37,-39,-1v0,5,1,11,2,20r47,0r0,32r-44,0r2,17r42,0r0,32r-43,0v-3,14,-11,27,-25,39v42,3,74,-3,79,-36r38,15v-10,45,-31,62,-90,62r-100,0r0,-41v33,3,52,-4,51,-39r-28,0r0,-32r27,0r-3,-17r-24,0r0,-32r20,0"},"\u20a7":{"d":"181,-165v1,64,-36,80,-106,76r0,89r-52,0r0,-240r69,0v61,-4,88,20,89,75xm126,-166v0,-30,-17,-39,-51,-35r0,71v33,3,51,-5,51,-36xm248,-1v-36,9,-64,-1,-60,-41r0,-38r-14,0r0,-28r17,0r3,-30r30,-3r0,33r22,0r0,28r-22,0v4,24,-14,63,24,52r0,27xm293,-41v-56,-7,-42,-71,6,-69v21,0,35,10,41,29r-28,7v-1,-14,-21,-20,-23,-6v9,21,57,13,54,46v-2,22,-20,36,-45,36v-27,0,-42,-11,-46,-33r31,-4v-1,16,24,21,26,6v-1,-10,-6,-8,-16,-12","w":346},"\u2105":{"d":"15,-178v0,-76,101,-91,106,-19r-39,4v-2,-10,-1,-18,-11,-19v-15,2,-14,12,-15,36v0,20,4,31,14,31v12,-1,11,-8,13,-22r39,3v-4,35,-21,52,-53,52v-37,0,-54,-28,-54,-66xm181,-240r29,0r-114,240r-28,0xm208,-127v36,0,56,25,55,64v0,41,-17,67,-56,67v-39,1,-56,-27,-56,-66v0,-39,18,-65,57,-65xm222,-63v0,-23,-5,-35,-15,-35v-10,0,-14,12,-14,35v0,23,4,34,14,34v10,0,15,-11,15,-34","w":278},"\u2113":{"d":"144,-243v18,1,29,15,29,34v0,34,-21,72,-63,114v-7,34,-10,55,-10,64v0,8,1,11,5,11v7,3,13,-24,23,-24v4,0,6,2,6,7v0,19,-19,44,-40,43v-28,-1,-30,-34,-29,-69v-10,12,-16,13,-19,0v2,-11,20,-25,22,-30v7,-41,17,-77,29,-106v12,-29,28,-44,47,-44xm115,-128v17,-18,35,-49,36,-78v0,-9,-3,-13,-7,-13v-9,0,-18,30,-29,91","w":211},"\u2116":{"d":"23,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-74,-174r0,174r-40,0r0,-240xm309,-122v0,38,-16,57,-49,57v-33,0,-49,-19,-49,-56v0,-37,16,-56,49,-56v33,0,49,18,49,55xm260,-91v17,-3,14,-58,0,-60v-17,0,-17,58,0,60xm211,-37r98,0r0,37r-98,0r0,-37","w":321},"\u212e":{"d":"16,-93v0,-86,99,-132,157,-75v18,17,28,42,29,75r-146,0r0,65v37,35,99,25,122,-22r13,7v-23,32,-40,48,-82,49v-55,2,-93,-44,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0","w":216},"\u215b":{"d":"220,-146v46,-6,68,47,28,67v47,22,24,87,-31,81v-52,6,-74,-55,-27,-73v-42,-20,-18,-81,30,-75xm226,-89v13,-9,13,-32,-5,-32v-23,5,-18,24,5,32xm218,-25v11,0,18,-4,18,-13v0,-8,-8,-15,-25,-22v-17,8,-18,35,7,35xm50,-241r30,0r0,117r25,0r0,28r-91,0r0,-28r26,0r0,-73v-8,7,-17,12,-26,16r0,-34v14,-7,27,-15,36,-26xm183,-240r29,0r-115,240r-28,0","w":288},"\u215c":{"d":"226,-146v47,-5,69,48,28,67v47,22,24,87,-31,81v-51,5,-74,-55,-27,-73v-41,-21,-18,-81,30,-75xm232,-89v13,-9,13,-32,-5,-32v-23,5,-18,24,5,32xm225,-25v28,-5,21,-25,-7,-35v-18,8,-19,37,7,35xm83,-172v49,17,22,78,-27,78v-33,0,-51,-15,-55,-46r35,-5v-2,25,33,30,33,5v0,-15,-15,-18,-33,-17r0,-27v16,1,33,-1,31,-15v0,-9,-4,-14,-13,-14v-8,0,-13,6,-15,18r-35,-6v6,-52,101,-57,102,-2v0,14,-7,24,-23,31xm185,-240r29,0r-115,240r-28,0","w":288},"\u215d":{"d":"228,-146v47,-5,69,48,28,67v47,22,24,87,-31,81v-51,5,-74,-55,-27,-73v-42,-20,-18,-81,30,-75xm234,-89v13,-9,13,-32,-5,-32v-23,5,-18,24,5,32xm227,-25v28,-5,21,-25,-7,-35v-18,8,-19,37,7,35xm115,-146v5,49,-57,65,-91,41v-10,-7,-15,-17,-17,-30r37,-6v2,11,7,17,17,17v11,0,16,-7,16,-20v0,-22,-28,-25,-32,-8r-31,-6r6,-82r88,0r-4,32r-56,0r-2,27v26,-26,74,-5,69,35xm187,-240r29,0r-115,240r-28,0","w":288},"\u215e":{"d":"212,-146v46,-6,68,47,28,67v47,22,23,87,-31,81v-52,6,-74,-55,-27,-73v-42,-20,-18,-81,30,-75xm218,-89v13,-9,13,-32,-5,-32v-23,5,-18,24,5,32xm210,-25v11,0,18,-4,18,-13v0,-8,-8,-15,-25,-22v-17,8,-18,35,7,35xm16,-240r96,0r0,27v-25,28,-37,68,-37,117r-42,0v0,-42,15,-79,43,-111r-63,0xm171,-240r29,0r-115,240r-28,0","w":288},"\u2190":{"d":"86,-154r14,0v-10,20,-21,38,-34,54r280,0r0,18r-280,0v12,12,23,30,34,54r-14,0v-26,-30,-50,-50,-72,-60r0,-7v21,-8,44,-28,72,-59","w":360},"\u2191":{"d":"27,-184v31,-28,50,-52,58,-73r9,0v10,22,29,47,59,73r0,13v-24,-11,-42,-22,-54,-34r0,280r-18,0r0,-280v-16,13,-34,24,-54,34r0,-13","w":180},"\u2192":{"d":"273,-154v28,31,52,51,73,59r0,7v-22,10,-47,30,-73,60r-13,0v11,-24,22,-42,34,-54r-280,0r0,-18r280,0v-13,-16,-25,-34,-34,-54r13,0","w":360},"\u2193":{"d":"27,2r0,-13v20,10,38,21,54,34r0,-280r18,0r0,280v12,-12,30,-23,54,-34r0,13v-30,26,-49,51,-59,73r-9,0v-8,-21,-27,-45,-58,-73","w":180},"\u2194":{"d":"346,-95r0,8v-21,9,-45,29,-71,59r-14,0v8,-20,19,-38,34,-54r-230,0v15,16,26,34,34,54r-14,0v-26,-30,-50,-50,-71,-59r0,-8v21,-9,45,-29,71,-59r14,0v-8,20,-19,38,-34,54r230,0v-15,-16,-26,-34,-34,-54r14,0v26,30,50,50,71,59","w":360},"\u2195":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71","w":180},"\u21a8":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-38,-19,-54,-34r0,230v16,-15,34,-26,54,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,39,19,55,34r0,-230v-16,15,-35,26,-55,34r0,-14v30,-26,50,-50,59,-71xm27,92r126,0r0,17r-126,0r0,-17","w":180},"\u221f":{"d":"64,-225r17,0r0,207r208,0r0,18r-225,0r0,-225","w":352},"\u2229":{"d":"130,-230v-96,0,-63,132,-68,230r-37,0r0,-112v-7,-100,25,-144,105,-153v79,9,104,53,104,153r0,112r-37,0r0,-113v5,-77,-9,-117,-67,-117","w":258},"\u2261":{"d":"166,-159r-148,0r0,-38r148,0r0,38xm166,-100r-148,0r0,-38r148,0r0,38xm166,-41r-148,0r0,-38r148,0r0,38"},"\u2302":{"d":"27,0r0,-111r81,-92r81,92r0,111r-162,0xm41,-14r134,0r0,-91r-67,-76r-67,76r0,91","w":216},"\u2310":{"d":"64,0r-52,0r0,-105r156,0r0,48r-104,0r0,57","w":180},"\u2320":{"d":"130,-287v-12,2,-9,10,-9,31r0,347r-26,0r0,-319v-1,-40,18,-74,52,-77v26,-2,32,33,8,35v-14,1,-15,-15,-25,-17","w":216},"\u2321":{"d":"86,72v12,-2,9,-10,9,-31r0,-346r26,0r0,318v1,41,-18,76,-52,78v-25,2,-32,-33,-9,-36v13,-1,17,15,26,17","w":216},"\u2500":{"d":"260,-94r-263,0r0,-31r263,0r0,31","w":256},"\u2502":{"d":"113,109r0,-437r31,0r0,437r-31,0","w":256},"\u250c":{"d":"260,-125r0,31r-116,0r0,203r-31,0r0,-234r147,0","w":256},"\u2510":{"d":"113,-94r-116,0r0,-31r147,0r0,234r-31,0r0,-203","w":256},"\u2514":{"d":"113,-94r0,-234r31,0r0,203r116,0r0,31r-147,0","w":256},"\u2518":{"d":"144,-94r-147,0r0,-31r116,0r0,-203r31,0r0,234","w":256},"\u251c":{"d":"113,109r0,-437r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0","w":256},"\u2524":{"d":"113,109r0,-203r-116,0r0,-31r116,0r0,-203r31,0r0,437r-31,0","w":256},"\u252c":{"d":"113,-94r-116,0r0,-31r263,0r0,31r-116,0r0,203r-31,0r0,-203","w":256},"\u2534":{"d":"260,-94r-263,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31","w":256},"\u253c":{"d":"113,-94r-116,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0r0,-203","w":256},"\u2550":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u2551":{"d":"146,109r0,-437r31,0r0,437r-31,0xm80,109r0,-437r30,0r0,437r-30,0","w":256},"\u2552":{"d":"113,109r0,-267r147,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":256},"\u2553":{"d":"80,109r0,-234r180,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-30,0","w":256},"\u2554":{"d":"110,109r-30,0r0,-267r180,0r0,31r-150,0r0,236xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0","w":256},"\u2555":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r147,0r0,267r-31,0r0,-169","w":256},"\u2556":{"d":"79,109r0,-203r-82,0r0,-31r180,0r0,234r-31,0r0,-203r-36,0r0,203r-31,0","w":256},"\u2557":{"d":"146,109r0,-236r-149,0r0,-31r180,0r0,267r-31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169","w":256},"\u2558":{"d":"113,-60r0,-268r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-147,0","w":256},"\u2559":{"d":"260,-94r-180,0r0,-234r30,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31","w":256},"\u255a":{"d":"110,-328r0,237r150,0r0,31r-180,0r0,-268r30,0xm177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170","w":256},"\u255b":{"d":"144,-60r-147,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,268","w":256},"\u255c":{"d":"177,-94r-180,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,234","w":256},"\u255d":{"d":"146,-328r31,0r0,268r-180,0r0,-31r149,0r0,-237xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0","w":256},"\u255e":{"d":"113,109r0,-437r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":256},"\u255f":{"d":"146,109r0,-437r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0xm80,109r0,-437r30,0r0,437r-30,0","w":256},"\u2560":{"d":"80,109r0,-437r30,0r0,437r-30,0xm146,-127r0,-201r31,0r0,170r83,0r0,31r-114,0xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0","w":256},"\u2561":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,437r-31,0r0,-169","w":256},"\u2562":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,437r-31,0xm146,109r0,-437r31,0r0,437r-31,0","w":256},"\u2563":{"d":"146,109r0,-437r31,0r0,437r-31,0xm110,-328r0,201r-113,0r0,-31r82,0r0,-170r31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169","w":256},"\u2564":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm113,-60r-116,0r0,-31r263,0r0,31r-116,0r0,169r-31,0r0,-169","w":256},"\u2565":{"d":"79,109r0,-203r-82,0r0,-31r263,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-31,0","w":256},"\u2566":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0","w":256},"\u2567":{"d":"260,-127r-263,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u2568":{"d":"260,-94r-263,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31","w":256},"\u2569":{"d":"110,-127r-113,0r0,-31r82,0r0,-170r31,0r0,201xm260,-127r-114,0r0,-201r31,0r0,170r83,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u256a":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0r0,-169","w":256},"\u256b":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0r0,-203r-36,0r0,203r-31,0","w":256},"\u256c":{"d":"177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0","w":256},"\u2580":{"d":"260,-109r-263,0r0,-219r263,0r0,219","w":256},"\u2584":{"d":"260,109r-263,0r0,-218r263,0r0,218","w":256},"\u2588":{"d":"-3,109r0,-437r263,0r0,437r-263,0","w":256},"\u258c":{"d":"-3,109r0,-437r131,0r0,437r-131,0","w":256},"\u2590":{"d":"128,109r0,-437r132,0r0,437r-132,0","w":256},"\u2591":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm63,-284r22,0r0,22r-22,0r0,-22xm150,-284r22,0r0,22r-22,0r0,-22xm238,-284r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm238,-196r22,0r0,22r-22,0r0,-22xm150,-196r22,0r0,22r-22,0r0,-22xm63,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-109r22,0r0,22r-22,0r0,-22xm150,-109r22,0r0,22r-22,0r0,-22xm63,-109r22,0r0,22r-22,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm63,-21r22,0r0,22r-22,0r0,-22xm150,-21r22,0r0,22r-22,0r0,-22xm238,-21r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm63,67r22,0r0,22r-22,0r0,-22xm150,67r22,0r0,22r-22,0r0,-22xm238,67r22,0r0,22r-22,0r0,-22","w":256},"\u2592":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm63,-328r21,0r0,22r-21,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm150,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm238,-328r22,0r0,22r-22,0r0,-22xm-3,-284r22,0r0,22r-22,0r0,-22xm41,-284r22,0r0,22r-22,0r0,-22xm84,-284r22,0r0,22r-22,0r0,-22xm128,-284r22,0r0,22r-22,0r0,-22xm172,-284r22,0r0,22r-22,0r0,-22xm216,-284r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm63,-240r21,0r0,22r-21,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm150,-240r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm238,-240r22,0r0,22r-22,0r0,-22xm-3,-196r22,0r0,22r-22,0r0,-22xm41,-196r22,0r0,22r-22,0r0,-22xm84,-196r22,0r0,22r-22,0r0,-22xm128,-196r22,0r0,22r-22,0r0,-22xm172,-196r22,0r0,22r-22,0r0,-22xm216,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm63,-152r21,0r0,22r-21,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm150,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-152r22,0r0,22r-22,0r0,-22xm-3,-109r22,0r0,22r-22,0r0,-22xm84,-109r22,0r0,22r-22,0r0,-22xm128,-109r22,0r0,22r-22,0r0,-22xm172,-109r22,0r0,22r-22,0r0,-22xm216,-109r22,0r0,22r-22,0r0,-22xm41,-109r22,0r0,22r-22,0r0,-22xm238,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm150,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm63,-65r21,0r0,22r-21,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm-3,-21r22,0r0,22r-22,0r0,-22xm41,-21r22,0r0,22r-22,0r0,-22xm84,-21r22,0r0,22r-22,0r0,-22xm128,-21r22,0r0,22r-22,0r0,-22xm172,-21r22,0r0,22r-22,0r0,-22xm216,-21r22,0r0,22r-22,0r0,-22xm238,23r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm150,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm63,23r21,0r0,22r-21,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm-3,67r22,0r0,22r-22,0r0,-22xm41,67r22,0r0,22r-22,0r0,-22xm84,67r22,0r0,22r-22,0r0,-22xm128,67r22,0r0,22r-22,0r0,-22xm172,67r22,0r0,22r-22,0r0,-22xm216,67r22,0r0,22r-22,0r0,-22","w":256},"\u2593":{"d":"263,-262r0,66r-22,0r0,22r22,0r0,65r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,21r-263,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-66r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r21,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,44r-22,0r0,22r22,0xm22,-284r0,22r22,0r0,-22r-22,0xm66,-284r0,22r22,0r0,-22r-22,0xm110,-284r0,22r21,0r0,-22r-21,0xm153,-284r0,22r22,0r0,-22r-22,0xm197,-284r0,22r22,0r0,-22r-22,0xm241,-240r-22,0r0,22r22,0r0,-22xm197,-240r-22,0r0,22r22,0r0,-22xm153,-240r-22,0r0,22r22,0r0,-22xm110,-240r-22,0r0,22r22,0r0,-22xm66,-240r-22,0r0,22r22,0r0,-22xm22,-196r0,22r22,0r0,-22r-22,0xm66,-196r0,22r22,0r0,-22r-22,0xm110,-196r0,22r21,0r0,-22r-21,0xm153,-196r0,22r22,0r0,-22r-22,0xm197,-196r0,22r22,0r0,-22r-22,0xm66,-152r-22,0r0,22r22,0r0,-22xm88,-152r0,22r22,0r0,-22r-22,0xm131,-152r0,22r22,0r0,-22r-22,0xm175,-152r0,22r22,0r0,-22r-22,0xm219,-152r0,22r22,0r0,-22r-22,0xm22,-109r0,22r22,0r0,-22r-22,0xm110,-109r0,22r21,0r0,-22r-21,0xm88,-87r0,-22r-22,0r0,22r22,0xm153,-109r0,22r22,0r0,-22r-22,0xm197,-109r0,22r22,0r0,-22r-22,0xm241,-43r0,-22r-22,0r0,22r22,0xm197,-43r0,-22r-22,0r0,22r22,0xm153,-43r0,-22r-22,0r0,22r22,0xm110,-43r0,-22r-22,0r0,22r22,0xm66,-43r0,-22r-22,0r0,22r22,0xm22,-21r0,22r22,0r0,-22r-22,0xm66,-21r0,22r22,0r0,-22r-22,0xm110,-21r0,22r21,0r0,-22r-21,0xm153,-21r0,22r22,0r0,-22r-22,0xm197,-21r0,22r22,0r0,-22r-22,0xm241,45r0,-22r-22,0r0,22r22,0xm197,45r0,-22r-22,0r0,22r22,0xm153,45r0,-22r-22,0r0,22r22,0xm110,45r0,-22r-22,0r0,22r22,0xm66,45r0,-22r-22,0r0,22r22,0xm22,67r0,22r22,0r0,-22r-22,0xm66,67r0,22r22,0r0,-22r-22,0xm110,67r0,22r21,0r0,-22r-21,0xm153,67r0,22r22,0r0,-22r-22,0xm197,67r0,22r22,0r0,-22r-22,0","w":262},"\u25a0":{"d":"26,-166r166,0r0,166r-166,0r0,-166","w":217},"\u25a1":{"d":"26,-166r166,0r0,166r-166,0r0,-166xm39,-153r0,140r139,0r0,-140r-139,0","w":217},"\u25aa":{"d":"112,-167r0,96r-96,0r0,-96r96,0","w":127},"\u25ab":{"d":"112,-167r0,96r-96,0r0,-96r96,0xm98,-153r-68,0r0,68r68,0r0,-68","w":127},"\u25ac":{"d":"0,-124r360,0r0,68r-360,0r0,-68","w":360},"\u25b2":{"d":"53,0r125,-249r125,249r-250,0","w":356},"\u25ba":{"d":"51,-249r255,127r-255,127r0,-254","w":356},"\u25bc":{"d":"303,-244r-125,249r-125,-249r250,0","w":356},"\u25c4":{"d":"306,-249r0,254r-255,-127","w":356},"\u25cb":{"d":"108,-179v41,0,77,35,77,77v0,42,-36,78,-77,78v-41,0,-77,-36,-77,-78v0,-42,36,-77,77,-77xm108,-37v34,0,64,-31,64,-65v0,-35,-29,-64,-64,-64v-34,0,-64,31,-64,64v0,33,30,65,64,65","w":216},"\u25cf":{"d":"109,-179v41,0,77,36,77,77v0,41,-36,78,-77,78v-41,0,-78,-37,-78,-78v0,-41,37,-77,78,-77","w":217},"\u25d8":{"d":"22,0r0,-172r172,0r0,172r-172,0xm108,-51v19,0,35,-16,35,-35v0,-19,-16,-36,-35,-36v-19,0,-36,17,-36,36v0,19,17,35,36,35","w":216},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm108,-24v41,0,78,-36,78,-77v0,-41,-37,-78,-78,-78v-41,0,-77,36,-77,78v0,42,35,77,77,77xm108,-166v34,0,64,30,64,65v0,34,-30,64,-64,64v-34,0,-64,-30,-64,-64v0,-34,30,-65,64,-65","w":216},"\u25e6":{"d":"64,-169v26,0,50,24,50,50v0,27,-23,50,-50,50v-27,0,-50,-22,-50,-50v0,-27,23,-50,50,-50xm64,-82v20,0,37,-17,37,-37v0,-20,-17,-37,-37,-37v-20,0,-37,17,-37,37v0,20,17,37,37,37","w":127},"\u263a":{"d":"184,-203v60,0,112,52,112,112v0,60,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm184,5v50,0,96,-46,96,-96v0,-50,-45,-96,-96,-96v-51,0,-96,45,-96,96v0,51,46,96,96,96xm141,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm227,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm132,-55r11,-6v16,33,66,34,81,0r12,6v-22,46,-82,45,-104,0","w":367},"\u263b":{"d":"189,-203v60,0,112,51,112,112v0,61,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm146,-100v8,0,15,-6,15,-14v0,-8,-7,-14,-15,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14xm232,-100v8,0,15,-7,15,-14v0,-7,-7,-14,-15,-14v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm138,-55v21,46,81,45,103,0r-11,-6v-16,33,-66,34,-81,0","w":378},"\u263c":{"d":"159,-285r13,0r0,59v22,1,42,9,61,25r51,-50r9,9r-50,51v16,21,25,42,25,63r59,0r0,12r-59,0v-2,22,-10,42,-25,61r50,51r-10,9r-50,-49v-20,15,-40,22,-61,24r0,59r-13,0r0,-59v-24,-3,-44,-11,-61,-24r-52,49r-9,-9r50,-51v-15,-18,-23,-39,-25,-62r-59,0r0,-12r59,0v2,-23,10,-43,25,-61r-50,-51r9,-10r51,50v21,-15,42,-24,62,-25r0,-59xm165,-33v48,0,90,-42,90,-90v0,-48,-42,-90,-90,-90v-48,0,-90,42,-90,90v0,48,42,90,90,90","w":330},"\u2640":{"d":"183,-168v0,45,-36,81,-79,83r0,65r73,0r0,9r-73,0r0,70r-10,0r0,-70r-73,0r0,-9r73,0r0,-65v-42,-3,-78,-37,-78,-83v-1,-45,38,-84,83,-84v45,0,84,39,84,84xm99,-93v40,0,75,-35,75,-75v0,-40,-35,-75,-75,-75v-40,0,-75,35,-75,75v0,40,35,75,75,75","w":198},"\u2642":{"d":"96,-191v49,-16,53,-20,99,-50r5,2v4,42,13,78,28,108r-4,3v-17,-22,-30,-46,-39,-73r-52,111v24,9,51,42,51,76v0,44,-38,74,-81,74v-45,0,-85,-37,-85,-81v0,-52,53,-94,107,-72r51,-112v-25,11,-52,16,-80,18r0,-4xm162,-21v0,-37,-34,-70,-69,-70v-36,-1,-68,32,-68,67v-1,38,32,70,69,70v37,0,68,-31,68,-67","w":240},"\u2660":{"d":"95,-82v-15,46,-81,43,-84,-5v0,-18,11,-36,33,-54v31,-25,48,-50,52,-75v5,54,79,73,85,128v2,21,-18,41,-38,40v-18,0,-33,-12,-45,-34v-1,51,22,72,67,75r1,7r-140,0r2,-7v45,1,70,-28,67,-75","w":191},"\u2663":{"d":"179,-48v-28,-2,-44,-17,-58,-42v2,55,22,76,71,84r2,6r-149,0r1,-6v50,-7,70,-31,71,-84v-10,24,-30,41,-58,42v-25,1,-48,-22,-48,-49v0,-37,36,-64,71,-40v-27,-33,-4,-79,36,-79v41,-1,66,48,37,79v36,-23,71,2,72,39v1,27,-21,51,-48,50","w":238},"\u2665":{"d":"107,-172v4,-56,97,-57,95,0v-1,36,-14,47,-37,78v-32,43,-53,75,-58,98v-12,-52,-61,-94,-90,-146v-18,-34,3,-74,39,-74v24,0,41,15,51,44","w":212},"\u2666":{"d":"91,-216v23,38,50,74,81,110v-16,15,-70,86,-81,110v-12,-22,-38,-59,-80,-110v38,-45,64,-81,80,-110","w":182},"\u266a":{"d":"5,25v0,-65,101,-89,163,-54r-5,-241r10,0v25,14,96,77,100,105v0,4,-6,12,-10,12v-23,-15,-61,-60,-88,-74r4,242v0,80,-174,95,-174,10","w":277},"\u266b":{"d":"53,33v0,-43,53,-65,93,-42r0,-201r164,-51r0,228v2,48,-21,67,-63,69v-31,1,-49,-18,-50,-46v0,-43,52,-65,93,-42r0,-149r-123,38r0,172v1,45,-22,70,-65,70v-28,0,-49,-18,-49,-46","w":360},"\uf001":{"d":"105,-209v-23,-3,-33,4,-31,31r31,0r0,39r-31,0r0,139r-47,0r0,-139r-20,0r0,-39r20,0v-5,-59,23,-75,78,-70r0,39xm172,-192r-50,0r0,-49r50,0r0,49xm122,-178r50,0r0,178r-50,0r0,-178","w":190},"\uf002":{"d":"105,-209v-23,-3,-33,4,-31,31r31,0r0,39r-31,0r0,139r-47,0r0,-139r-20,0r0,-39r20,0v-5,-59,23,-75,78,-70r0,39xm122,-240r50,0r0,240r-50,0r0,-240","w":190},"\uf003":{"d":"58,-242r41,0r0,84r18,0r0,30r-18,0r0,32r-39,0r0,-32r-55,0r0,-28xm64,-154r0,-55r-32,55r32,0","w":122},"\uf004":{"d":"80,-240r36,0r-28,70r-18,0","w":165},"\uf005":{"d":"67,19r37,0r-28,67r-19,0","w":165},"\u00a4":{"d":"122,-179r23,-23r25,25r-23,24v10,17,11,40,0,58r24,24r-27,26r-23,-23v-20,10,-40,9,-59,-1r-23,24r-25,-25r23,-24v-10,-18,-11,-41,0,-59r-24,-23r27,-26r23,23v18,-10,41,-9,59,0xm92,-152v-14,1,-29,12,-28,28v0,16,12,27,28,28v16,1,28,-13,28,-28v0,-15,-13,-28,-28,-28"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  ITC Franklin Gothic is a trademark of The International Typeface Corporation
 * which may be registered in certain jurisdictions. Portions copyright Microsoft
 * Corporation.  All rights reserved.
 * 
 * Trademark:
 * ITC Franklin Gothic is a trademark of The International Typeface Corporation
 * which may be registered in certain jurisdicions.
 * 
 * Description:
 * Designed in 1902 by Morris Fuller Benton for the American Type Founders
 * company, Franklin Gothic still reigns as one of the most-widely used sans serif
 * typefaces. Originally issued in only one weight, the ATF version of Franklin
 * Gothic was eventually expanded to include five additional weights, but no light
 * or intermediate weights were ever developed. In 1979, under license from ATF,
 * ITC developed four new weights in roman and italic: book, medium, demi and
 * heavy. Designed by Victor Caruso, ITCs new weights matched the original faces
 * characteristics, but featured a slightly enlarged lowercase x-height. ITC
 * Franklin Gothic also features a slightly condensed lowercase a-z alphabet. In
 * 1991, ITC commissioned the Font Bureau in Boston to create condensed, compressed
 * and extra compressed versions of ITC Franklin Gothic, which increased the
 * flexibility and usefulness of the design.
 * 
 * Manufacturer:
 * International Typeface Corporation
 * 
 * Designer:
 * Victor Caruso -- Font Bureau
 * 
 * Vendor URL:
 * http://www.itcfonts.com
 * 
 * License information:
 * http://www.itcfonts.com/itc/licensing.html
 */
Cufon.registerFont({"w":165,"face":{"font-family":"Franklin Gothic Medium Cond","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 6 6 3 4 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-92 -356 360 110","underline-thickness":"17.9297","underline-position":"-18.1055","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":67},"!":{"d":"37,-240r49,0r-13,175r-24,0xm41,-44r40,0r0,44r-40,0r0,-44","w":122},"\"":{"d":"46,-240r37,0r-6,98r-25,0xm101,-240r37,0r-6,98r-25,0","w":184},"#":{"d":"66,-240r26,0r-12,70r40,0r11,-70r26,0r-11,70r35,0r-5,24r-34,0r-8,47r35,0r-4,24r-35,0r-13,75r-26,0r13,-75r-40,0r-13,75r-26,0r13,-75r-35,0r4,-24r35,0r8,-47r-35,0r4,-24r35,0xm76,-146r-8,47r40,0r8,-47r-40,0","w":183},"$":{"d":"83,-108v-79,-12,-73,-120,-1,-128r0,-23r22,0r0,23v30,3,50,20,59,49r-29,12v-8,-19,-12,-26,-31,-32r0,66v40,11,65,26,65,67v0,37,-26,65,-64,67r0,31r-22,0r0,-31v-35,-4,-57,-23,-66,-58r32,-10v5,22,16,34,35,38r0,-71xm83,-207v-32,6,-32,53,0,60r0,-60xm103,-36v40,-3,40,-61,0,-66r0,66","w":183},"%":{"d":"63,-242v31,0,47,27,47,62v0,35,-16,62,-47,62v-31,0,-48,-26,-48,-62v0,-36,16,-62,48,-62xm82,-180v0,-27,-6,-40,-19,-40v-13,0,-20,13,-20,40v0,27,6,40,19,40v13,0,20,-13,20,-40xm170,-240r23,0r-117,240r-23,0xm183,-122v31,0,47,27,47,62v0,35,-16,62,-47,62v-31,0,-47,-26,-47,-62v0,-35,16,-62,47,-62xm202,-60v0,-27,-6,-40,-19,-40v-13,0,-20,14,-20,41v0,26,7,39,20,39v13,0,19,-13,19,-40","w":245},"&":{"d":"109,-244v32,-1,55,21,54,52v0,25,-15,46,-44,62r41,59v9,-15,16,-35,21,-63r30,6v-6,32,-16,60,-32,82v13,14,17,18,36,15r0,31v-27,7,-43,1,-60,-20v-45,47,-134,23,-134,-46v0,-31,17,-55,52,-71v-36,-46,-23,-105,36,-107xm110,-217v-32,4,-25,40,-6,65v19,-11,27,-24,27,-41v0,-13,-9,-26,-21,-24xm89,-115v-42,18,-40,88,9,90v15,0,29,-7,40,-19","w":226},"'":{"d":"43,-240r37,0r-6,98r-25,0","w":122},"(":{"d":"65,-240r29,0v-54,87,-55,213,0,300r-29,0v-65,-90,-65,-211,0,-300","w":91},")":{"d":"27,60r-29,0v54,-87,55,-213,0,-300r29,0v65,88,65,212,0,300","w":91},"*":{"d":"79,-240r26,0r-4,48r40,-27r12,24r-41,19r41,18r-12,24r-40,-26r4,48r-26,0r4,-48r-40,26r-12,-24r41,-18r-41,-19r12,-24r40,27","w":183},"+":{"d":"107,-135r58,0r0,30r-58,0r0,59r-30,0r0,-59r-59,0r0,-30r59,0r0,-59r30,0r0,59","w":183},",":{"d":"25,-45r40,0r0,43r-27,53r-17,0r22,-51r-18,0r0,-45","w":85,"k":{"1":17}},"-":{"d":"14,-105r76,0r0,30r-76,0r0,-30","w":104,"k":{"\u0443":-1,"\u0442":4,"\u0423":12,"\u0422":7,"\u0410":-4,"Y":9,"V":2,"T":7,"A":-4}},".":{"d":"23,-45r40,0r0,45r-40,0r0,-45","w":85,"k":{"1":17}},"\/":{"d":"127,-240r28,0r-133,300r-27,0","w":171},"0":{"d":"14,-117v0,-76,16,-127,78,-127v52,0,78,40,78,121v-1,76,-15,127,-78,127v-52,0,-78,-40,-78,-121xm92,-25v37,-6,37,-42,37,-95v0,-53,-1,-88,-37,-95v-36,7,-37,41,-37,95v0,56,2,87,37,95","w":183,"k":{"7":11,"4":-2,"1":13}},"1":{"d":"93,-243r29,0r0,213r39,0r0,30r-119,0r0,-30r41,0r0,-164v-11,13,-24,24,-42,34r0,-37v21,-11,38,-27,52,-46","w":183,"k":{"9":8,"8":6,"7":26,"6":15,"5":8,"4":14,"3":5,"2":2,"1":17,"0":12,".":7,",":9}},"2":{"d":"120,-171v4,-22,-13,-41,-34,-40v-22,0,-35,16,-39,48r-35,-8v7,-43,30,-73,77,-73v42,0,75,28,72,70v-5,69,-54,97,-107,139r108,0r-1,35r-149,0r0,-34v64,-61,97,-70,108,-137","w":183,"k":{"7":12,"4":10,"1":17}},"3":{"d":"118,-176v0,-21,-12,-39,-33,-38v-19,0,-32,12,-38,36r-33,-8v11,-39,36,-58,74,-58v73,0,97,96,32,118v79,20,45,137,-33,130v-45,-4,-73,-21,-80,-64r34,-8v5,55,84,54,82,-2v-1,-33,-25,-42,-64,-40r0,-29v36,2,59,-4,59,-37","w":183,"k":{"7":13,"1":18}},"4":{"d":"97,-244r46,0r0,156r30,0r0,31r-30,0r0,57r-39,0r0,-57r-93,0r0,-29xm106,-86r0,-123r-64,123r64,0","w":183,"k":{"7":18,"4":-4,"1":24}},"5":{"d":"130,-79v0,-51,-61,-67,-76,-23r-30,-6r8,-132r125,0r-4,35r-91,0r-4,66v40,-49,120,-10,111,58v13,96,-141,117,-154,24r35,-9v6,25,19,38,41,38v26,0,39,-17,39,-51","w":183,"k":{"7":13,"4":-2,"1":20}},"6":{"d":"19,-114v0,-90,53,-161,126,-116v13,8,21,24,26,44r-33,10v-6,-44,-54,-51,-70,-14v-7,16,-11,39,-12,71v26,-68,117,-30,117,43v0,45,-30,81,-74,80v-58,-2,-80,-49,-80,-118xm60,-75v0,26,14,49,39,49v24,0,35,-17,35,-50v0,-29,-10,-47,-35,-48v-26,0,-39,22,-39,49","w":183,"k":{"4":-4,"1":12}},"7":{"d":"167,-212v-38,48,-66,129,-66,212r-42,0v0,-73,24,-141,72,-205r-106,0r3,-35r139,0r0,28","w":183,"k":{":":17,"7":6,"6":14,"4":26,"1":18,".":28}},"8":{"d":"94,-244v72,0,98,89,33,114v76,29,48,134,-37,134v-83,0,-107,-100,-33,-126v-64,-30,-38,-122,37,-122xm94,-217v-19,0,-36,13,-35,33v0,18,12,32,38,42v22,-11,33,-25,33,-41v0,-19,-16,-35,-36,-34xm92,-24v34,0,56,-36,32,-61v-7,-7,-20,-14,-39,-22v-52,14,-48,83,7,83","w":183,"k":{"7":9,"4":-4,"1":15}},"9":{"d":"12,-164v0,-46,29,-81,74,-80v52,0,78,37,78,113v0,110,-48,158,-123,124v-11,-8,-19,-22,-25,-41r34,-10v7,39,53,43,66,8v6,-16,10,-38,11,-67v-30,63,-115,23,-115,-47xm86,-118v25,0,37,-23,37,-48v0,-25,-13,-48,-36,-48v-24,0,-38,20,-37,49v0,26,12,46,36,47","w":183,"k":{"7":14,"4":1,"1":16}},":":{"d":"23,-178r40,0r0,46r-40,0r0,-46xm23,-45r40,0r0,45r-40,0r0,-45","w":85},";":{"d":"25,-178r40,0r0,46r-40,0r0,-46xm25,-45r40,0r0,43r-27,53r-17,0r22,-51r-18,0r0,-45","w":85},"\u037e":{"d":"25,-178r40,0r0,46r-40,0r0,-46xm25,-45r40,0r0,43r-27,53r-17,0r22,-51r-18,0r0,-45","w":85},"<":{"d":"166,-215r0,41r-112,54r112,55r0,40r-156,-78r0,-34","w":183},"=":{"d":"165,-130r-147,0r0,-29r147,0r0,29xm165,-81r-147,0r0,-29r147,0r0,29","w":183},">":{"d":"18,-25r0,-40r112,-55r-112,-55r0,-40r155,78r0,35","w":183},"?":{"d":"115,-179v1,-21,-11,-34,-31,-34v-22,0,-34,17,-36,50r-34,-7v4,-50,28,-74,72,-74v41,-1,69,25,69,66v0,55,-66,58,-58,114r-34,0v-10,-67,50,-62,52,-115xm60,-43r39,0r0,43r-39,0r0,-43","w":177},"@":{"d":"97,-48v-64,0,-47,-139,12,-137v13,0,22,7,28,22r3,-19r21,0r-13,98v0,8,3,12,9,12v22,-2,31,-34,31,-63v0,-53,-26,-90,-74,-90v-53,-1,-85,50,-85,107v0,86,85,131,153,84r8,19v-84,53,-187,2,-187,-102v0,-72,43,-129,111,-129v62,0,98,44,98,108v0,44,-21,88,-58,89v-14,0,-23,-7,-26,-21v-7,14,-17,22,-31,22xm102,-75v27,0,36,-81,8,-84v-26,1,-38,76,-8,84","w":214},"A":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0","w":177,"k":{"\u2019":12,"\u201d":12,"\u00ab":4,"y":3,"v":1,"t":1,"g":-5,"b":-2,"Y":9,"W":5,"V":7,"U":3,"T":9,"Q":4,"O":4,"G":4,"C":4,".":-7,"-":-4,",":-6}},"B":{"d":"179,-66v0,44,-27,66,-82,66r-74,0r0,-240v72,0,148,-12,148,61v0,27,-11,45,-35,53v29,9,43,29,43,60xm130,-175v0,-37,-33,-35,-68,-34r0,69v37,2,68,0,68,-35xm138,-71v0,-36,-34,-42,-76,-39r0,78v40,2,76,0,76,-39","w":196,"k":{"Y":1,"W":3,"V":3,"O":3}},"C":{"d":"103,-28v29,0,36,-24,41,-53r36,5v-8,53,-33,80,-78,80v-64,0,-87,-54,-87,-123v0,-70,24,-124,88,-125v44,0,70,27,78,82r-37,5v-4,-36,-18,-54,-41,-54v-31,0,-46,31,-46,94v0,59,15,89,46,89","w":190,"k":{"A":-1}},"D":{"d":"187,-124v0,75,-30,124,-107,124r-57,0r0,-240r54,0v76,-2,110,45,110,116xm63,-32v61,6,82,-31,82,-88v-1,-66,-25,-92,-82,-88r0,176","w":202,"k":{"Y":5,"V":4,"T":2,"J":3,"A":5}},"E":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240"},"F":{"d":"23,-240r133,0r0,32r-93,0r0,72r75,0r0,31r-75,0r0,105r-40,0r0,-240","w":153,"k":{"u":4,"r":5,"a":4,"J":8,"A":7,".":24,"-":-1,",":25}},"G":{"d":"148,-162v-7,-33,-13,-49,-43,-49v-32,0,-48,30,-48,91v0,61,17,92,50,92v27,0,41,-21,41,-63r-43,0r0,-32r80,0r0,125r-21,0r-6,-31v-12,22,-31,33,-57,33v-60,0,-86,-56,-86,-121v0,-71,24,-127,91,-127v43,0,70,24,78,73","w":202,"k":{"Y":1,"V":2,"T":-3,"A":-7}},"H":{"d":"23,-240r40,0r0,100r70,0r0,-100r40,0r0,240r-40,0r0,-107r-70,0r0,107r-40,0r0,-240","w":196},"I":{"d":"23,-240r40,0r0,240r-40,0r0,-240","w":85},"J":{"d":"-6,-33v45,11,55,-7,55,-58r0,-149r39,0r0,149v7,75,-26,106,-94,91r0,-33","w":110,"k":{"A":2}},"K":{"d":"23,-240r40,0r0,114r72,-114r42,0r-62,88r73,152r-43,0r-54,-119r-28,40r0,79r-40,0r0,-240","w":184,"k":{"y":8,"o":2,"e":2,"a":-2,"T":-14,"O":7,"G":7,"C":7,"-":2}},"L":{"d":"23,-240r40,0r0,206r85,0r0,34r-125,0r0,-240","w":147,"k":{"\u2019":29,"\u201d":30,"y":7,"u":-3,"Y":11,"W":8,"V":11,"T":8,"O":1,"G":2,"C":2,"-":21}},"M":{"d":"22,-240r59,0r48,173r49,-173r56,0r0,240r-37,0r0,-205r-57,205r-29,0r-56,-205r0,205r-33,0r0,-240","w":257},"N":{"d":"22,-240r47,0r78,173r0,-173r34,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240","w":202,"k":{"u":-1,"o":-1,"e":-1,"A":-4,".":-1}},"O":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92","w":202,"k":{"Y":2,"X":4,"W":1,"V":2,"T":-1,"A":4}},"P":{"d":"171,-167v-1,60,-39,78,-108,73r0,94r-40,0r0,-240v79,-4,151,-3,148,73xm129,-167v-2,-37,-23,-46,-66,-42r0,83v40,2,68,-1,66,-41","w":177,"k":{"o":1,"e":2,"a":2,"J":13,"A":9,".":33,"-":4,",":34}},"Q":{"d":"133,-2v-4,27,20,29,41,23r0,30v-38,12,-76,-4,-73,-47v-63,-3,-86,-50,-86,-124v-1,-72,22,-119,86,-124v112,-8,109,218,32,242xm101,-28v40,0,44,-44,44,-92v0,-46,-3,-92,-44,-92v-39,0,-44,45,-44,92v0,47,5,92,44,92","w":202},"R":{"d":"23,-240v74,-2,149,-6,149,69v0,30,-13,51,-37,63r46,108r-44,0r-37,-100r-37,0r0,100r-40,0r0,-240xm63,-131v41,4,70,-4,70,-41v0,-37,-32,-39,-70,-37r0,78","w":190,"k":{"y":-4,"u":2,"o":4,"e":4,"U":2,"T":-5,"O":3,"G":3,"C":3,"-":5}},"S":{"d":"49,-121v-54,-32,-30,-123,42,-123v39,0,64,19,75,58r-34,11v-7,-22,-17,-35,-42,-37v-28,-2,-45,36,-23,52v33,24,108,30,105,92v-2,43,-33,72,-81,72v-44,0,-72,-22,-83,-67r36,-10v6,30,22,45,48,45v32,0,50,-29,33,-55v-9,-13,-63,-31,-76,-38","w":184,"k":{"t":1,"T":-5,"A":-1}},"T":{"d":"-6,-240r147,0r0,34r-54,0r0,206r-40,0r0,-206r-53,0r0,-34","w":135,"k":{"\u00ab":16,"y":10,"w":10,"v":9,"u":12,"s":12,"r":12,"o":13,"j":-6,"i":-7,"g":14,"e":13,"c":13,"a":15,"Y":-23,"W":-17,"V":-18,"S":-5,"O":-1,"J":6,"A":8,";":16,":":15,".":12,"-":8,",":13}},"U":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244","w":196,"k":{"A":2,".":2,",":4}},"V":{"d":"-1,-240r41,0r46,191r46,-191r35,0r-63,241r-44,-1","k":{"\u00ab":11,"y":-6,"u":4,"r":4,"o":8,"g":9,"e":8,"a":9,"T":-18,"O":3,"G":4,"C":3,"A":8,";":5,":":5,".":14,"-":2,",":15}},"W":{"d":"1,-240r40,0r33,180r37,-180r35,0r37,180r34,-180r34,0r-51,241r-36,0r-38,-177r-37,177r-36,0","w":251,"k":{"\u00ab":8,"y":-7,"u":4,"r":4,"o":5,"g":7,"e":5,"a":7,"T":-17,"O":2,"G":2,"C":2,"A":6,":":4,".":10,",":10}},"X":{"d":"3,-240r44,0r34,77r39,-77r37,0r-56,109r63,131r-44,0r-41,-92r-46,92r-38,0r64,-124","w":159,"k":{"y":3,"o":2,"e":2,"Q":4,"O":4,"C":4,"-":2}},"Y":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101","w":147,"k":{"\u00ab":18,"v":-4,"u":7,"p":6,"o":13,"g":14,"e":13,"a":14,"T":-23,"O":3,"G":4,"C":4,"A":10,";":8,":":7,".":16,"-":10,",":17}},"Z":{"d":"7,-240r144,0r0,28r-107,179r109,0r0,33r-153,0r0,-31r105,-176r-98,0r0,-33","w":153},"[":{"d":"26,-240r62,0r0,20r-28,0r0,260r28,0r0,20r-62,0r0,-300","w":91},"\\":{"d":"45,-240r132,300r-27,0r-133,-300r28,0","w":171},"]":{"d":"66,60r-62,0r0,-20r28,0r0,-260r-28,0r0,-20r62,0r0,300","w":91},"^":{"d":"47,-124r-43,0r59,-117r54,0r59,117r-43,0r-43,-85","w":180},"_":{"d":"0,19r180,0r0,36r-180,0r0,-36","w":180},"`":{"d":"117,-212r-13,13r-62,-39r19,-24","w":180},"a":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28","k":{"y":3}},"b":{"d":"58,-157v38,-56,101,-5,101,64v0,65,-22,97,-66,97v-21,0,-35,-9,-43,-28v-3,7,-5,15,-8,24r-21,0r0,-240r37,0r0,83xm90,-154v-33,0,-32,42,-32,79v0,34,10,51,31,51v29,0,30,-29,31,-67v0,-37,-2,-63,-30,-63","w":171,"k":{"y":3}},"c":{"d":"13,-88v0,-54,19,-93,69,-94v36,0,58,21,63,64r-36,4v-4,-25,-5,-37,-27,-39v-29,4,-28,29,-31,68v-5,66,53,82,58,21r36,3v-5,44,-27,65,-65,65v-50,0,-67,-39,-67,-92","w":147,"k":{"k":-3,"h":-3}},"d":{"d":"13,-88v0,-72,63,-126,101,-69r0,-83r36,0r0,240r-33,0r0,-27v-9,20,-23,30,-44,30v-44,0,-60,-43,-60,-91xm83,-24v30,0,31,-41,31,-80v0,-30,-11,-50,-32,-50v-20,0,-30,21,-30,63v0,45,10,67,31,67","w":171},"e":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0","w":159,"k":{"v":-1,"t":-2}},"f":{"d":"27,-178v-4,-58,21,-74,73,-67r0,29v-29,-4,-41,3,-37,38r31,0r0,30r-31,0r0,148r-36,0r0,-148r-23,0r0,-30r23,0","w":91,"k":{"t":-13,"s":-6,"o":-2,"l":-6,"j":-6,"i":-7,"f":-12,"e":-1,"a":-2}},"g":{"d":"115,-174v3,-26,17,-37,45,-32r0,27v-16,-4,-26,3,-28,19v36,45,-7,113,-71,92v-15,3,-18,21,-6,27v37,9,112,-6,107,52v-3,41,-36,51,-81,55v-62,6,-97,-57,-45,-79v-30,-15,-24,-52,6,-65v-44,-30,-17,-104,40,-104v12,0,23,3,33,8xm108,-123v0,-23,-9,-35,-25,-35v-17,0,-26,12,-26,35v0,23,9,35,26,35v17,0,25,-12,25,-35xm128,15v0,-29,-46,-18,-70,-22v-30,18,-12,47,27,47v28,0,43,-9,43,-25","w":159},"h":{"d":"108,-112v0,-30,-2,-40,-22,-40v-45,0,-23,103,-28,152r-37,0r0,-240r37,0r0,86v8,-19,23,-28,43,-28v71,1,36,114,44,182r-37,0r0,-112","k":{"y":2}},"i":{"d":"59,-201r-38,0r0,-39r38,0r0,39xm22,-178r36,0r0,178r-36,0r0,-178","w":79},"j":{"d":"60,-201r-39,0r0,-39r39,0r0,39xm-9,31v29,7,31,-5,31,-38r0,-171r37,0r0,172v5,54,-19,78,-68,67r0,-30","w":79},"k":{"d":"21,-240r37,0r0,142r57,-80r37,0r-46,62r51,116r-40,0r-35,-89r-24,33r0,56r-37,0r0,-240","w":153,"k":{"u":-2,"o":2,"g":-6,"e":2,"a":-1,".":-6,"-":2,",":-5}},"l":{"d":"22,-240r36,0r0,240r-36,0r0,-240","w":79},"m":{"d":"86,-152v-25,0,-28,21,-28,49r0,103r-37,0r0,-178r34,0r0,28v12,-42,77,-44,85,1v8,-22,23,-33,45,-33v74,-1,38,114,46,182r-37,0r0,-109v-1,-28,1,-43,-21,-43v-46,0,-23,103,-28,152r-37,0r0,-108v-1,-29,1,-44,-22,-44","w":251,"k":{"y":2}},"n":{"d":"87,-152v-26,0,-28,20,-29,53r0,99r-36,0r0,-178r34,0r0,28v8,-21,22,-32,43,-32v74,1,38,113,46,182r-36,0r0,-112v-1,-25,1,-40,-22,-40","k":{"y":2}},"o":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66","k":{"y":3,"v":1}},"p":{"d":"159,-90v0,47,-17,93,-62,93v-17,0,-30,-7,-39,-21r0,78r-37,0r0,-238r34,0r0,30v9,-21,24,-33,44,-33v42,1,60,41,60,91xm120,-90v0,-82,-62,-80,-62,-14v0,39,-3,78,31,80v21,0,31,-22,31,-66","w":171,"k":{"y":2}},"q":{"d":"13,-86v-12,-78,70,-130,106,-65v4,-7,7,-17,11,-28r20,0r0,239r-37,0r0,-83v-37,58,-110,8,-100,-63xm82,-24v42,0,46,-130,0,-130v-27,0,-30,28,-30,64v0,43,10,66,30,66","w":171},"r":{"d":"22,-178r32,0r0,40v12,-32,23,-45,51,-43r0,38v-64,-9,-44,85,-47,143r-36,0r0,-178","w":98,"k":{"z":-10,"y":-16,"x":-15,"w":-16,"v":-17,"t":-15,"s":-9,"q":-5,"p":-5,"o":-5,"k":-5,"h":-5,"g":-5,"f":-14,"d":-6,"c":-5,"a":-5,";":-5,":":-5,".":9,"-":5,",":10}},"s":{"d":"36,-86v-46,-25,-18,-96,35,-96v30,0,48,16,57,46r-28,8v-4,-32,-53,-37,-53,-5v0,42,92,23,88,81v-2,33,-29,56,-65,56v-38,0,-59,-17,-64,-51r31,-6v1,37,59,42,62,7v2,-27,-48,-28,-63,-40","w":141,"k":{"t":-3}},"t":{"d":"101,1v-53,11,-76,-8,-76,-68r0,-81r-23,0r0,-30r24,0r2,-46r33,-3r0,49r34,0r0,30r-34,0r0,78v-4,37,7,46,40,42r0,29","w":98,"k":{"o":-2,"e":-2,"a":-7,";":-3,":":-4}},"u":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31"},"v":{"d":"-2,-178r36,0r33,128r33,-128r32,0r-51,178r-32,0","w":128,"k":{"s":-2,"g":1,"a":1,";":-2,":":-4,".":9,"-":-4,",":9}},"w":{"d":"0,-178r36,0r26,122r26,-122r32,0r25,123r28,-123r30,0r-44,178r-31,0r-27,-123r-26,123r-31,0","w":202,"k":{"s":-2,"g":2,"a":1,";":-1,":":-2,".":7,"-":-4,",":8}},"x":{"d":"-1,-178r41,0r26,52r27,-52r34,0r-45,81r53,97r-41,0r-32,-63r-34,63r-34,0r51,-92","w":128,"k":{"o":1,"e":1,"c":1,"a":-1}},"y":{"d":"0,-178r37,0r31,122r31,-122r33,0r-57,189v-8,37,-27,61,-71,50r0,-29v33,4,38,-7,46,-38","w":128,"k":{"s":-2,"o":1,"g":2,"e":2,"c":1,"a":1,";":-2,":":-3,".":10,"-":-2,",":12}},"z":{"d":"12,-178r108,0r0,23r-75,127r75,0r0,28r-115,0r0,-28r72,-122r-65,0r0,-28","w":122},"{":{"d":"32,-145v0,-54,-5,-105,56,-95r0,21v-53,-5,8,117,-44,127v33,5,20,56,22,96v2,27,0,34,22,35r0,21v-61,9,-56,-42,-56,-99v0,-28,5,-39,-19,-40r0,-26v23,-1,19,-11,19,-40","w":91},"|":{"d":"70,-240r40,0r0,300r-40,0r0,-300","w":180},"}":{"d":"60,-39v1,55,7,109,-56,99r0,-21v53,4,-9,-120,44,-131v-32,-5,-20,-53,-22,-92v-1,-27,0,-34,-22,-35r0,-21v59,-8,56,39,56,95v0,27,-3,38,19,40r0,26v-22,2,-18,13,-19,40","w":91},"~":{"d":"152,-89v-7,2,-57,-21,-70,-21v-11,0,-21,8,-29,24r-20,-13v14,-29,22,-43,52,-46v13,-2,60,21,72,21v12,0,21,-8,29,-22r21,13v-13,30,-31,44,-55,44","w":239},"\u00c4":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm64,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm120,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":177},"\u00c5":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm88,-256v-17,0,-33,-14,-33,-33v0,-18,16,-33,33,-33v17,0,33,15,33,33v0,18,-16,34,-33,33xm88,-305v-8,0,-16,8,-15,16v0,7,7,15,15,15v8,0,15,-8,15,-15v1,-8,-7,-16,-15,-16","w":177},"\u00c7":{"d":"15,-119v0,-70,24,-124,88,-125v44,0,70,27,78,82r-37,5v-4,-36,-18,-54,-41,-54v-31,0,-46,31,-46,94v0,59,15,89,46,89v29,0,36,-24,41,-53r36,5v-7,52,-32,79,-76,80r-4,14v22,-1,36,8,36,26v-1,33,-48,40,-72,19r5,-13v14,6,38,12,41,-4v-3,-15,-11,-13,-33,-14r10,-29v-53,-8,-72,-61,-72,-122","w":190},"\u00c9":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm63,-275r56,-50r19,24r-62,39"},"\u00d1":{"d":"22,-240r47,0r78,173r0,-173r34,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240xm51,-275v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2","w":202},"\u00d6":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm73,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm129,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":202},"\u00dc":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm72,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm128,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":196},"\u00e1":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm63,-212r56,-50r19,24r-62,39"},"\u00e0":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm110,-212r-13,13r-62,-39r19,-24"},"\u00e2":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm18,-202r63,-49r63,49r-31,2r-32,-21r-31,21"},"\u00e4":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm58,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm114,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18"},"\u00e3":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm32,-216v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2"},"\u00e5":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm85,-196v-17,0,-33,-14,-33,-33v0,-18,16,-33,33,-33v17,0,33,15,33,33v0,18,-16,34,-33,33xm85,-245v-8,0,-16,8,-15,16v0,7,7,15,15,15v8,0,15,-8,15,-15v1,-8,-7,-16,-15,-16"},"\u00e7":{"d":"13,-88v0,-55,19,-93,69,-94v36,0,58,21,63,64r-36,4v-4,-25,-5,-37,-27,-39v-29,4,-28,29,-31,68v-5,66,53,82,58,21r36,3v-6,42,-20,63,-62,65r-5,13v22,-2,36,7,36,25v-2,32,-46,38,-71,19r5,-14v14,7,39,13,41,-4v2,-12,-17,-14,-32,-13r9,-27v-36,-7,-53,-37,-53,-91","w":147},"\u00e9":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm56,-212r56,-50r19,24r-62,39","w":159},"\u00e8":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm112,-212r-13,13r-62,-39r19,-24","w":159},"\u00ea":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm21,-202r63,-49r63,49r-31,2r-32,-21r-31,21","w":159},"\u00eb":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm56,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm112,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":159},"\u00ed":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm12,-212r56,-50r19,24r-62,39","w":79},"\u00ec":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm68,-212r-13,13r-62,-39r19,-24","w":79},"\u00ee":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm-23,-202r63,-49r63,49r-31,2r-32,-21r-31,21","w":79},"\u00ef":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm12,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm68,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":79},"\u00f1":{"d":"87,-152v-26,0,-28,20,-29,53r0,99r-36,0r0,-178r34,0r0,28v8,-21,22,-32,43,-32v74,1,38,113,46,182r-36,0r0,-112v-1,-25,1,-40,-22,-40xm28,-216v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2"},"\u00f3":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm55,-212r56,-50r19,24r-62,39"},"\u00f2":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm111,-212r-13,13r-62,-39r19,-24"},"\u00f4":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm20,-202r63,-49r63,49r-31,2r-32,-21r-31,21"},"\u00f6":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm55,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm111,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18"},"\u00f5":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm32,-216v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2"},"\u00fa":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm54,-212r56,-50r19,24r-62,39"},"\u00f9":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm110,-212r-13,13r-62,-39r19,-24"},"\u00fb":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm20,-202r63,-49r63,49r-31,2r-32,-21r-31,21"},"\u00fc":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm55,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm111,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18"},"\u2020":{"d":"75,-240r34,0r0,68r53,0r0,31r-53,0r0,201r-34,0r0,-201r-53,0r0,-31r53,0r0,-68","w":183},"\u00b0":{"d":"92,-244v30,0,56,26,56,56v0,30,-27,56,-56,56v-29,0,-56,-26,-56,-56v0,-30,26,-56,56,-56xm92,-156v16,0,28,-15,28,-32v0,-17,-12,-32,-28,-32v-16,0,-28,15,-28,32v0,17,12,32,28,32","w":183},"\u00a2":{"d":"85,-37v-75,-6,-74,-165,0,-170r0,-33r21,0r0,33v29,4,45,24,50,59r-31,4v-2,-19,-8,-31,-20,-36r0,114v11,-4,18,-16,20,-35r31,4v-4,35,-21,55,-50,60r0,39r-21,0r0,-39xm86,-179v-28,8,-28,105,0,113r0,-113","w":183},"\u00a3":{"d":"57,-140v-14,-57,5,-104,60,-104v28,0,48,12,58,38r-29,17v-10,-36,-58,-34,-55,11r5,38r46,0r0,28r-43,0v6,36,-4,64,-28,81v45,1,78,1,89,-32r28,14v-13,67,-105,45,-181,49r0,-32v51,6,65,-33,55,-80r-35,0r0,-28r30,0","w":183},"\u00a7":{"d":"56,-144v-41,-30,-18,-100,40,-100v35,0,56,15,64,46r-30,7v-4,-37,-63,-37,-61,-1v3,49,91,30,91,93v0,19,-8,34,-25,48v53,32,22,113,-43,113v-39,0,-63,-18,-71,-54r32,-6v1,42,78,43,75,2v-4,-53,-101,-34,-101,-97v0,-21,10,-38,29,-51xm77,-132v-30,24,-18,56,21,64v20,15,30,-9,31,-23v-5,-27,-16,-23,-52,-41","w":183},"\u2022":{"d":"120,-173v27,0,49,24,49,51v0,27,-23,50,-49,50v-26,0,-50,-24,-50,-50v0,-27,23,-51,50,-51","w":239},"\u00b6":{"d":"6,-171v1,-46,21,-69,75,-69r78,0r0,300r-24,0r0,-276r-18,0r0,276r-24,0r0,-161v-59,5,-89,-16,-87,-70","w":183},"\u00df":{"d":"93,-225v-31,2,-33,26,-33,63r0,179r-36,0r0,-149r-21,0r0,-29r21,0v-4,-59,23,-88,74,-91v32,-2,59,20,59,51v0,27,-20,46,-58,55v23,23,86,35,79,84v3,53,-49,79,-100,60r10,-27v26,13,57,4,56,-27v-1,-51,-94,-43,-66,-106v29,-6,44,-17,44,-35v0,-18,-11,-29,-29,-28","w":184},"\u00ae":{"d":"141,4v-68,0,-126,-57,-126,-124v0,-67,60,-124,126,-124v66,0,125,57,125,124v0,67,-58,124,-125,124xm141,-220v-54,0,-100,46,-100,100v0,54,46,100,100,100v54,0,99,-47,99,-100v0,-53,-45,-100,-99,-100xm92,-192v47,-1,100,-4,100,42v0,17,-8,30,-23,38r30,64r-33,0r-24,-59r-20,0r0,59r-30,0r0,-144xm122,-170r0,42v22,1,40,0,40,-22v0,-20,-19,-21,-40,-20","w":281},"\u00a9":{"d":"141,4v-68,0,-126,-57,-126,-124v0,-67,60,-124,126,-124v66,0,125,57,125,124v0,67,-58,124,-125,124xm141,-220v-54,0,-100,46,-100,100v0,54,46,100,100,100v54,0,99,-47,99,-100v0,-53,-45,-100,-99,-100xm144,-69v19,0,19,-13,24,-30r28,3v-5,34,-23,50,-53,50v-40,-1,-58,-30,-58,-73v0,-45,18,-75,59,-76v31,0,48,18,52,52r-28,4v-2,-21,-11,-33,-24,-33v-18,0,-27,18,-27,54v0,33,9,49,27,49","w":281},"\u2122":{"d":"5,-233r88,0r0,22r-30,0r0,115r-27,0r0,-115r-31,0r0,-22xm104,-233r39,0r26,99r26,-99r38,0r0,137r-25,0r0,-115r-31,115r-21,0r-30,-115r0,115r-22,0r0,-137","w":257},"\u00b4":{"d":"73,-212r56,-50r19,24r-62,39","w":180},"\u00a8":{"d":"62,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm118,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":180},"\u2260":{"d":"126,-159r39,0r0,29r-52,0r-10,20r62,0r0,29r-75,0r-20,41r-26,-12r13,-29r-39,0r0,-29r53,0r10,-20r-63,0r0,-29r76,0r19,-42r27,13","w":183},"\u00c6":{"d":"95,-240r153,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r97,0r0,33r-136,0r0,-66r-62,0r-28,66r-37,0xm113,-97r0,-117r-51,117r51,0","w":251},"\u00d8":{"d":"16,-120v0,-91,53,-150,130,-112r10,-21r26,0r-19,37v16,20,23,53,23,96v0,72,-21,122,-84,124v-25,0,-18,-2,-44,-11r-11,22r-25,0r19,-38v-17,-20,-25,-52,-25,-97xm102,-213v-61,-4,-51,110,-41,155r68,-146v-7,-6,-16,-9,-27,-9xm75,-34v51,26,73,-25,73,-86v0,-28,-2,-47,-6,-59","w":202},"\u221e":{"d":"27,-129v0,-52,67,-63,94,-17v23,-26,26,-41,58,-41v29,0,51,22,51,56v0,38,-21,59,-51,59v-31,0,-37,-15,-58,-40v-28,46,-94,36,-94,-17xm210,-129v0,-30,-28,-49,-51,-31v-6,5,-15,14,-26,30v10,15,25,39,46,39v18,0,31,-15,31,-38xm46,-130v0,39,43,34,63,1v-14,-19,-28,-28,-39,-28v-14,0,-24,12,-24,27","w":256},"\u00b1":{"d":"107,-135r58,0r0,30r-58,0r0,57r-30,0r0,-57r-59,0r0,-30r59,0r0,-59r30,0r0,59xm165,-2r-147,0r0,-29r147,0r0,29","w":183},"\u2264":{"d":"166,-234r0,38r-112,53r112,52r0,38r-156,-73r0,-35xm166,-42r0,36r-156,0r0,-36r156,0","w":183},"\u2265":{"d":"18,-53r0,-38r112,-53r-112,-52r0,-38r155,73r0,35xm18,-6r0,-36r155,0r0,36r-155,0","w":183},"\u00a5":{"d":"10,-240r40,0r44,108r46,-108r34,0r-44,96r40,0r0,22r-50,0r-11,24r61,0r0,22r-61,0r0,76r-36,0r0,-76r-56,0r0,-22r56,0r-11,-24r-45,0r0,-22r36,0","w":183},"\u00b5":{"d":"92,-23v46,-8,21,-103,27,-155r36,0r0,178r-31,0r0,-19v-8,28,-47,31,-59,6r0,73r-37,0r0,-238r37,0v5,53,-17,146,27,155","w":183},"\u2202":{"d":"151,-162v-1,-45,-4,-78,-36,-78v-17,0,-30,14,-40,40r-24,-11v11,-29,32,-51,63,-51v44,0,57,43,57,99v0,85,-38,165,-107,168v-34,2,-55,-26,-54,-61v2,-71,58,-107,141,-106xm41,-53v5,45,55,39,79,4v15,-21,26,-51,30,-91v-71,-1,-101,30,-109,87","w":177},"\u2211":{"d":"24,-270r218,0r0,29r-174,0r107,140r-114,148r183,0r0,28r-223,0r0,-33r109,-142r-106,-139r0,-31","w":256},"\u220f":{"d":"28,-270r240,0r0,345r-34,0r0,-314r-172,0r0,314r-34,0r0,-345","w":296},"\uf006":{"d":"23,0r0,-150r-18,0r0,-28r155,0r0,28r-18,0r0,150r-36,0r0,-150r-46,0r0,150r-37,0"},"\u222b":{"d":"0,17v1,-25,28,-14,37,-6v5,0,6,-3,6,-10v-4,-82,-14,-243,2,-300v9,-31,45,-38,53,-10v0,24,-24,20,-36,9v-5,0,-7,3,-7,11v4,88,11,121,6,225v-4,67,-2,93,-40,103v-12,0,-21,-9,-21,-22","w":98},"\u00aa":{"d":"69,-164v5,-26,-27,-29,-30,-8r-27,-3v5,-21,20,-31,45,-31v57,0,34,68,43,110r-23,0v-1,-5,-2,-11,-2,-17v-15,29,-67,24,-67,-13v0,-27,25,-42,61,-38xm69,-146v-17,-4,-33,4,-32,19v0,9,4,13,12,13v13,0,20,-10,20,-32","w":110},"\u00ba":{"d":"55,-206v32,-1,47,22,47,55v0,38,-16,57,-47,57v-32,1,-46,-22,-46,-56v0,-38,15,-56,46,-56xm72,-150v0,-24,-6,-35,-17,-35v-11,0,-17,11,-17,35v0,24,6,36,17,36v11,0,17,-12,17,-36","w":110},"\u2126":{"d":"61,-138v0,52,24,92,60,107r0,31r-101,0r0,-29r65,1v-99,-48,-73,-236,54,-236v125,0,152,184,54,236r64,-1r0,29r-101,0r0,-31v78,-25,87,-203,-17,-205v-51,-1,-78,46,-78,98","w":276},"\u00e6":{"d":"19,-131v1,-50,86,-69,112,-29v22,-28,71,-28,93,2v11,15,19,41,19,75r-100,0v-9,61,54,83,65,27r32,4v-6,64,-92,75,-117,23v-21,48,-113,44,-110,-18v3,-51,39,-63,95,-63v10,-50,-49,-62,-56,-17xm205,-108v-1,-31,-11,-47,-30,-47v-19,0,-29,16,-31,47r61,0xm73,-22v26,-2,38,-32,35,-65v-35,-2,-59,9,-58,37v0,18,8,28,23,28","w":251},"\u00f8":{"d":"35,-14v-38,-43,-32,-168,47,-168v14,0,25,3,35,8r10,-19r21,0r-16,32v14,16,21,39,21,71v2,77,-41,108,-102,88r-11,21r-21,0xm103,-151v-38,-18,-56,17,-56,62v0,19,2,34,6,46xm65,-25v56,20,59,-54,49,-105"},"\u00bf":{"d":"117,-134r-39,0r0,-44r39,1r0,43xm84,-41v-28,21,-32,76,10,77v23,0,34,-17,36,-50r34,6v-4,50,-29,75,-73,75v-53,0,-81,-47,-62,-97v9,-25,62,-37,52,-84r33,0v0,48,-2,52,-30,73","w":177},"\u00a1":{"d":"81,-133r-40,0r0,-45r40,1r0,44xm86,63r-49,0r12,-176r24,0","w":122},"\u00ac":{"d":"129,0r0,-59r-115,0r0,-37r156,0r0,96r-41,0","w":183},"\u221a":{"d":"184,-329r13,0r-55,343r-87,-180r-35,16r-6,-11r53,-27r71,145","w":197},"\u0192":{"d":"86,-166v7,-60,29,-86,86,-76r-4,29v-33,-8,-43,13,-47,47r37,0r-5,30r-36,0v-21,75,4,203,-102,188r5,-31v35,4,38,-11,44,-46r18,-111r-29,0r5,-30r28,0","w":183},"\u2248":{"d":"124,-127v-7,3,-57,-20,-70,-20v-11,0,-21,8,-29,24r-20,-14v12,-27,21,-43,52,-46v12,-1,60,21,72,21v12,0,21,-7,29,-21r21,12v-13,30,-31,44,-55,44xm124,-60v-7,2,-57,-21,-70,-21v-11,0,-21,8,-29,24r-20,-13v12,-27,21,-43,52,-46v12,-1,60,22,71,21v12,0,22,-8,30,-22r21,13v-13,30,-31,44,-55,44","w":183},"\u2206":{"d":"216,0r-211,0r110,-244xm174,-14r-70,-170r-77,170r147,0","w":220},"\u00ab":{"d":"125,-35r-20,0r-34,-57r34,-58r20,0r-19,58xm70,-36r-20,0r-34,-56r34,-57r20,0r-19,57","w":140,"k":{"\u0447":2,"\u0442":9,"\u043b":-3,"\u042f":5,"\u0427":1,"\u0423":4,"\u0422":12,"\u041b":-5,"\u0410":-2}},"\u00bb":{"d":"16,-150r20,0r34,58r-34,57r-20,0r19,-57xm71,-150r21,0r33,58r-33,57r-21,0r19,-57","w":140,"k":{"Y":16,"W":8,"V":10,"T":15,"A":3}},"\u2026":{"d":"23,-45r40,0r0,45r-40,0r0,-45xm109,-45r40,0r0,45r-40,0r0,-45xm195,-45r40,0r0,45r-40,0r0,-45","w":257},"\u00a0":{"w":67},"\u00c0":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm122,-275r-13,13r-62,-39r19,-24","w":177},"\u00c3":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm36,-275v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2","w":177},"\u00d5":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm50,-275v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2","w":202},"\u0152":{"d":"15,-119v0,-72,25,-122,86,-125v19,0,35,8,47,24r0,-20r136,0r0,32r-100,0r0,68r78,0r0,32r-78,0r0,75r101,0r0,33r-138,0r0,-22v-11,18,-27,27,-47,27v-58,-2,-85,-55,-85,-124xm105,-211v-44,1,-48,48,-48,96v0,58,16,87,48,87v20,0,33,-11,41,-33r0,-122v-9,-19,-22,-28,-41,-28","w":288},"\u0153":{"d":"13,-89v5,-54,17,-92,68,-93v23,0,41,9,52,27v21,-35,73,-35,97,-4v12,15,19,40,19,76r-100,0v-10,62,54,83,65,27r33,4v-8,61,-85,74,-117,30v-42,56,-125,14,-117,-67xm211,-108v1,-27,-8,-47,-30,-47v-19,0,-29,16,-31,47r61,0xm82,-23v27,-4,30,-29,30,-66v0,-37,-3,-62,-30,-65v-26,2,-30,30,-30,65v1,35,2,63,30,66","w":257},"\u2013":{"d":"30,-104r124,0r0,28r-124,0r0,-28","w":183},"\u2014":{"d":"11,-104r205,0r0,28r-205,0r0,-28","w":226},"\u201c":{"d":"112,-156r-39,0r0,-43r25,-45r17,0r-20,44r17,0r0,44xm58,-156r-38,0r0,-43r24,-45r17,0r-20,44r17,0r0,44","w":135,"k":{"Y":-9,"W":-6,"V":-6,"T":-7,"A":14}},"\u201d":{"d":"23,-240r38,0r0,43r-24,45r-17,0r20,-43r-17,0r0,-45xm77,-240r38,0r0,43r-24,45r-18,0r21,-43r-17,0r0,-45","w":135,"k":{"Y":-9,"W":-7,"V":-7,"T":-8,"A":13}},"\u2018":{"d":"57,-156r-38,0r0,-43r24,-45r18,0r-21,44r17,0r0,44","w":79},"\u2019":{"d":"22,-240r39,0r0,43r-25,45r-17,0r21,-43r-18,0r0,-45","w":79},"\u00f7":{"d":"110,-153r-36,0r0,-39r36,0r0,39xm165,-105r-147,0r0,-30r147,0r0,30xm110,-47r-36,0r0,-40r36,0r0,40","w":183},"\u25ca":{"d":"97,-250r73,125r-73,125r-20,0r-69,-125r69,-125r20,0xm87,-233r-60,108r60,108r63,-108","w":177},"\u00ff":{"d":"0,-178r37,0r31,122r31,-122r33,0r-57,189v-8,37,-27,61,-71,50r0,-29v33,4,38,-7,46,-38xm39,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm95,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":128},"\u0178":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101xm48,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm104,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":147},"\u2215":{"d":"61,-240r26,0r-117,240r-26,0","w":30},"\u20ac":{"d":"63,-86v-1,74,70,78,73,15r40,5v-6,47,-31,70,-73,70v-47,0,-74,-30,-82,-90r-17,0r0,-21r16,0r0,-22r-16,0r0,-21r17,0v5,-85,75,-120,132,-77v14,11,20,29,23,51r-39,5v-3,-29,-14,-44,-33,-44v-23,0,-37,22,-41,65r47,0r0,21r-48,0r0,22r48,0r0,21r-47,0","w":183},"\u2039":{"d":"70,-35r-20,0r-34,-57r34,-58r20,0r-19,58","w":85},"\u203a":{"d":"16,-150r20,0r34,58r-34,57r-20,0r19,-57","w":85},"\ufb01":{"d":"27,-178v-3,-56,18,-73,69,-68r0,30v-27,-3,-36,5,-33,38r31,0r0,30r-31,0r0,148r-36,0r0,-148r-23,0r0,-30r23,0xm151,-201r-38,0r0,-39r38,0r0,39xm114,-178r36,0r0,178r-36,0r0,-178","w":171},"\ufb02":{"d":"27,-178v-3,-56,18,-73,69,-68r0,30v-27,-3,-36,5,-33,38r31,0r0,30r-31,0r0,148r-36,0r0,-148r-23,0r0,-30r23,0xm113,-240r37,0r0,240r-37,0r0,-240","w":171},"\u2021":{"d":"75,-240r34,0r0,68r53,0r0,31r-53,0r0,102r53,0r0,31r-53,0r0,68r-34,0r0,-68r-53,0r0,-31r53,0r0,-102r-53,0r0,-31r53,0r0,-68","w":183},"\u2219":{"d":"23,-115r40,0r0,45r-40,0r0,-45","w":85},"\u201a":{"d":"22,-45r39,0r0,44r-25,45r-17,0r21,-44r-18,0r0,-45","w":79},"\u201e":{"d":"23,-45r38,0r0,44r-24,45r-17,0r20,-44r-17,0r0,-45xm77,-45r38,0r0,44r-24,45r-18,0r21,-44r-17,0r0,-45","w":135,"k":{"Y":13,"W":9,"V":12,"T":10,"A":-9}},"\u2030":{"d":"63,-242v31,0,47,27,47,62v0,35,-16,62,-47,62v-31,0,-48,-26,-48,-62v0,-36,16,-62,48,-62xm82,-180v0,-27,-6,-40,-19,-40v-13,0,-20,13,-20,40v0,27,7,40,20,40v13,0,19,-13,19,-40xm170,-240r24,0r-118,240r-23,0xm183,-122v31,0,47,27,47,62v0,35,-16,62,-47,62v-31,0,-47,-27,-47,-62v0,-35,16,-62,47,-62xm202,-60v0,-27,-6,-40,-19,-40v-13,0,-19,14,-19,41v0,26,6,39,19,39v13,0,19,-13,19,-40xm293,-122v31,0,47,27,47,62v0,36,-16,62,-47,62v-31,0,-47,-27,-47,-62v0,-35,16,-62,47,-62xm313,-60v0,-27,-7,-40,-20,-40v-13,0,-19,14,-19,41v0,26,6,39,19,39v13,0,20,-13,20,-40","w":355},"\u00c2":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm26,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":177},"\u00ca":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm29,-263r63,-49r63,49r-31,2r-32,-21r-31,21"},"\u00c1":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm62,-273r56,-50r19,24r-62,39","w":177},"\u00cb":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm64,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm120,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18"},"\u00c8":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm116,-273r-13,13r-62,-39r19,-24"},"\u00cd":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm23,-273r56,-50r19,24r-62,39","w":85},"\u00ce":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm-20,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":85},"\u00cf":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm15,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm71,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":85},"\u00cc":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm69,-273r-13,13r-62,-39r19,-24","w":85},"\u00d3":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm80,-273r56,-50r19,24r-62,39","w":202},"\u00d4":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm39,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":202},"\u00d2":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm125,-273r-13,13r-62,-39r19,-24","w":202},"\u00da":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm77,-273r56,-50r19,24r-62,39","w":196},"\u00db":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm35,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":196},"\u00d9":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm121,-273r-13,13r-62,-39r19,-24","w":196},"\u0131":{"d":"22,-178r36,0r0,178r-36,0r0,-178","w":79},"\u02c6":{"d":"27,-202r63,-49r63,49r-31,2r-32,-21r-31,21","w":180},"\u02dc":{"d":"36,-216v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2","w":180},"\u02c9":{"d":"41,-234r98,0r0,23r-98,0r0,-23","w":180},"\u02d8":{"d":"36,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":180},"\u02d9":{"d":"90,-202v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":180},"\u02da":{"d":"90,-196v-17,0,-33,-14,-33,-33v0,-18,16,-33,33,-33v17,0,33,15,33,33v0,18,-16,34,-33,33xm90,-245v-8,0,-16,8,-15,16v0,7,7,15,15,15v8,0,15,-8,15,-15v1,-8,-7,-16,-15,-16","w":180},"\u00b8":{"d":"131,43v-1,32,-46,37,-70,18r5,-13v15,6,38,12,40,-5v2,-12,-17,-14,-32,-13r10,-30r18,0r-6,17v21,-1,35,8,35,26","w":180},"\u02dd":{"d":"98,-256r19,20r-48,37r-12,-12xm148,-256r19,20r-49,37r-11,-12","w":180},"\u02db":{"d":"141,58v-25,10,-64,2,-63,-26v0,-15,13,-35,40,-32v-26,18,-16,53,19,44","w":180},"\u02c7":{"d":"27,-245r32,-3r31,22r32,-22r31,3r-63,48","w":180},"\u0141":{"d":"23,-240r40,0r0,94r42,-42r0,36r-42,43r0,75r85,0r0,34r-125,0r0,-83r-20,20r0,-36r20,-21r0,-120","w":147},"\u0142":{"d":"25,-240r36,0r0,88r23,-23r0,30r-23,22r0,123r-36,0r0,-100r-23,23r0,-29r23,-23r0,-111","w":85},"\u0160":{"d":"49,-121v-54,-32,-30,-123,42,-123v39,0,64,19,75,58r-34,11v-7,-22,-17,-35,-42,-37v-28,-2,-45,36,-23,52v33,24,108,30,105,92v-2,43,-33,72,-81,72v-44,0,-72,-22,-83,-67r36,-10v6,30,22,45,48,45v32,0,50,-29,33,-55v-9,-13,-63,-31,-76,-38xm31,-306r32,-3r31,22r32,-22r31,3r-63,48","w":184},"\u0161":{"d":"36,-86v-46,-25,-18,-96,35,-96v30,0,48,16,57,46r-28,8v-4,-32,-53,-37,-53,-5v0,42,92,23,88,81v-2,33,-29,56,-65,56v-38,0,-59,-17,-64,-51r31,-6v1,37,59,42,62,7v2,-27,-48,-28,-63,-40xm10,-245r32,-3r31,22r32,-22r31,3r-63,48","w":141},"\u017d":{"d":"7,-240r144,0r0,28r-107,179r109,0r0,33r-153,0r0,-31r105,-176r-98,0r0,-33xm16,-306r32,-3r31,22r32,-22r31,3r-63,48","w":153},"\u017e":{"d":"12,-178r108,0r0,23r-75,127r75,0r0,28r-115,0r0,-28r72,-122r-65,0r0,-28xm4,-245r32,-3r31,22r32,-22r31,3r-63,48","w":122},"\u00a6":{"d":"70,-240r40,0r0,123r-40,0r0,-123xm70,-55r40,0r0,115r-40,0r0,-115","w":180},"\u00d0":{"d":"187,-124v0,75,-30,124,-107,124r-57,0r0,-109r-20,0r0,-30r20,0r0,-101r54,0v76,-2,110,46,110,116xm63,-32v61,6,82,-31,82,-88v-1,-66,-25,-92,-82,-88r0,69r44,0r0,30r-44,0r0,77","w":202},"\u00f0":{"d":"10,-89v-3,-61,37,-113,86,-84v-6,-14,-11,-24,-16,-33r-24,14r-10,-16r24,-15r-11,-19r24,-15r12,20r23,-14r10,16r-23,14v26,44,44,77,45,135v1,52,-21,90,-69,90v-55,1,-68,-40,-71,-93xm80,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66","w":159},"\u00dd":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101xm53,-273r56,-50r19,24r-62,39","w":147},"\u00fd":{"d":"0,-178r37,0r31,122r31,-122r33,0r-57,189v-8,37,-27,61,-71,50r0,-29v33,4,38,-7,46,-38xm38,-212r56,-50r19,24r-62,39","w":128},"\u00de":{"d":"171,-130v0,60,-40,78,-108,74r0,56r-40,0r0,-240r40,0r0,37v66,-5,108,14,108,73xm129,-130v-1,-37,-23,-46,-66,-42r0,84v40,2,68,-3,66,-42","w":177},"\u00fe":{"d":"159,-90v0,47,-17,93,-62,93v-17,0,-30,-7,-39,-21r0,78r-37,0r0,-300r37,0r0,90v9,-20,23,-31,42,-31v40,0,60,42,59,91xm91,-154v-31,0,-33,43,-33,80v0,30,7,50,31,50v21,0,31,-22,31,-66v0,-42,-9,-64,-29,-64","w":171},"\u2212":{"d":"165,-105r-147,0r0,-30r147,0r0,30","w":183},"\u00d7":{"d":"92,-142r44,-43r21,21r-43,44r43,44r-21,21r-44,-43r-44,43r-22,-21r44,-44r-44,-44r22,-21","w":183},"\u00b9":{"d":"61,-241r22,0r0,123r25,0r0,22r-81,0r0,-22r27,0r0,-87v-8,7,-17,13,-27,18r0,-27v14,-7,25,-15,34,-27","w":122},"\u00b2":{"d":"8,-120v38,-32,58,-40,68,-78v0,-14,-7,-21,-19,-21v-13,0,-20,10,-22,29r-27,-5v2,-63,98,-62,99,-4v0,25,-22,51,-64,78r65,0r-1,25r-99,0r0,-24","w":122},"\u00b3":{"d":"38,-181v20,0,38,1,37,-19v-2,-28,-37,-25,-40,1r-26,-6v6,-50,97,-52,96,2v0,14,-7,25,-22,31v51,18,23,78,-25,78v-31,0,-48,-13,-53,-41r27,-6v0,30,46,33,46,2v0,-18,-18,-22,-40,-21r0,-21","w":122},"\u00bd":{"d":"58,-241r22,0r0,123r25,0r0,22r-81,0r0,-22r27,0r0,-87v-8,7,-17,13,-27,18r0,-27v14,-7,25,-15,34,-27xm179,-240r26,0r-117,240r-26,0xm155,-24v38,-32,58,-40,68,-78v0,-14,-7,-21,-19,-21v-13,0,-20,10,-22,29r-27,-5v2,-63,98,-62,99,-4v0,25,-22,51,-64,78r65,0r-1,25r-99,0r0,-24","w":275},"\u00bc":{"d":"54,-241r22,0r0,123r25,0r0,22r-81,0r0,-22r27,0r0,-87v-8,7,-17,13,-27,18r0,-27v14,-7,25,-15,34,-27xm184,-240r26,0r-117,240r-26,0xm213,-147r32,0r0,91r19,0r0,23r-19,0r0,33r-29,0r0,-33r-59,0r0,-20xm217,-54r0,-66r-36,66r36,0","w":275},"\u00be":{"d":"44,-181v20,0,38,1,37,-19v-2,-28,-37,-25,-40,1r-26,-6v6,-50,97,-52,96,2v0,14,-7,25,-22,31v51,18,23,78,-25,78v-31,0,-48,-13,-53,-41r27,-6v0,30,46,33,46,2v0,-18,-18,-22,-40,-21r0,-21xm184,-240r26,0r-117,240r-26,0xm211,-147r32,0r0,91r19,0r0,23r-19,0r0,33r-29,0r0,-33r-59,0r0,-20xm215,-54r0,-66r-36,66r36,0","w":275},"\u20a3":{"d":"63,-70r35,0r0,30r-35,0r0,40r-40,0r0,-40r-18,0r0,-30r18,0r0,-170r133,0r0,32r-93,0r0,72r75,0r0,31r-75,0r0,35","w":153},"\u011e":{"d":"148,-162v-7,-33,-13,-49,-43,-49v-32,0,-48,30,-48,91v0,61,17,92,50,92v27,0,41,-21,41,-63r-43,0r0,-32r80,0r0,125r-21,0r-6,-31v-12,22,-31,33,-57,33v-60,0,-86,-56,-86,-121v0,-71,24,-127,91,-127v43,0,70,24,78,73xm56,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":202},"\u011f":{"d":"115,-174v3,-26,17,-37,45,-32r0,27v-16,-4,-26,3,-28,19v36,45,-7,113,-71,92v-15,3,-18,21,-6,27v37,9,112,-6,107,52v-3,41,-36,51,-81,55v-62,6,-97,-57,-45,-79v-30,-15,-24,-52,6,-65v-44,-30,-17,-104,40,-104v12,0,23,3,33,8xm108,-123v0,-23,-9,-35,-25,-35v-17,0,-26,12,-26,35v0,23,9,35,26,35v17,0,25,-12,25,-35xm128,15v0,-29,-46,-18,-70,-22v-30,18,-12,47,27,47v28,0,43,-9,43,-25xm30,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":159},"\u0130":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm43,-262v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":85},"\u015e":{"d":"49,-121v-54,-32,-30,-123,42,-123v39,0,64,19,75,58r-34,11v-7,-22,-17,-35,-42,-37v-28,-2,-45,36,-23,52v33,24,105,30,105,92v0,42,-33,74,-78,72r-5,14v21,-1,37,7,37,26v0,33,-48,40,-73,19r5,-13v14,6,38,12,41,-4v-3,-16,-11,-13,-32,-14r9,-29v-37,-6,-60,-28,-68,-66r36,-10v6,30,22,45,48,45v32,0,50,-29,33,-55v-9,-13,-63,-31,-76,-38","w":184},"\u015f":{"d":"100,-128v-4,-32,-53,-37,-53,-5v0,42,93,23,88,81v-3,32,-28,56,-63,56r-4,13v22,-2,36,8,36,26v0,31,-46,37,-71,18r5,-13v15,6,38,11,41,-5v1,-12,-17,-14,-33,-13r10,-26v-29,-6,-46,-23,-50,-51r31,-6v1,37,59,42,62,7v-8,-42,-87,-22,-87,-81v0,-31,27,-55,59,-55v30,0,48,16,57,46","w":141},"\u0106":{"d":"103,-28v29,0,36,-24,41,-53r36,5v-8,53,-33,80,-78,80v-64,0,-87,-54,-87,-123v0,-70,24,-124,88,-125v44,0,70,27,78,82r-37,5v-4,-36,-18,-54,-41,-54v-31,0,-46,31,-46,94v0,59,15,89,46,89xm80,-273r56,-50r19,24r-62,39","w":190},"\u0107":{"d":"13,-88v0,-54,19,-93,69,-94v36,0,58,21,63,64r-36,4v-4,-25,-5,-37,-27,-39v-29,4,-28,29,-31,68v-5,66,53,82,58,21r36,3v-5,44,-27,65,-65,65v-50,0,-67,-39,-67,-92xm61,-212r56,-50r19,24r-62,39","w":147},"\u010c":{"d":"103,-28v29,0,36,-24,41,-53r36,5v-8,53,-33,80,-78,80v-64,0,-87,-54,-87,-123v0,-70,24,-124,88,-125v44,0,70,27,78,82r-37,5v-4,-36,-18,-54,-41,-54v-31,0,-46,31,-46,94v0,59,15,89,46,89xm42,-306r32,-3r31,22r32,-22r31,3r-63,48","w":190},"\u010d":{"d":"13,-88v0,-54,19,-93,69,-94v36,0,58,21,63,64r-36,4v-4,-25,-5,-37,-27,-39v-29,4,-28,29,-31,68v-5,66,53,82,58,21r36,3v-5,44,-27,65,-65,65v-50,0,-67,-39,-67,-92xm21,-245r32,-3r31,22r32,-22r31,3r-63,48","w":147},"\u0111":{"d":"13,-88v0,-73,66,-127,102,-66r0,-45r-39,0r0,-20r39,0r0,-21r35,0r0,21r20,0r0,20r-20,0r0,199r-33,0r0,-27v-9,20,-23,30,-44,30v-43,-2,-60,-39,-60,-91xm83,-24v30,0,31,-41,31,-80v0,-30,-11,-50,-32,-50v-20,0,-30,21,-30,63v0,45,10,67,31,67","w":171},"\u00ad":{"d":"14,-105r76,0r0,30r-76,0r0,-30","w":104},"\u00af":{"d":"0,-318r180,0r0,36r-180,0r0,-36","w":180},"\u00b7":{"d":"23,-115r40,0r0,45r-40,0r0,-45","w":85},"\u0100":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm41,-294r98,0r0,23r-98,0r0,-23","w":177},"\u0101":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm36,-234r98,0r0,23r-98,0r0,-23"},"\u0102":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm37,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":177},"\u0103":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm31,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43"},"\u0104":{"d":"200,59v-26,12,-65,2,-65,-26v0,-13,8,-24,25,-33r-23,0r-16,-60r-70,0r-14,60r-38,0r69,-240r44,0r65,240v-27,19,-18,54,20,45xm114,-91r-28,-110r-27,110r55,0","w":177},"\u0105":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182v-26,18,-16,53,19,44r4,14v-25,10,-64,2,-63,-26v0,-13,8,-23,24,-32r-18,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28"},"\u0108":{"d":"103,-28v29,0,36,-24,41,-53r36,5v-8,53,-33,80,-78,80v-64,0,-87,-54,-87,-123v0,-70,24,-124,88,-125v44,0,70,27,78,82r-37,5v-4,-36,-18,-54,-41,-54v-31,0,-46,31,-46,94v0,59,15,89,46,89xm42,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":190},"\u0109":{"d":"13,-88v0,-54,19,-93,69,-94v36,0,58,21,63,64r-36,4v-4,-25,-5,-37,-27,-39v-29,4,-28,29,-31,68v-5,66,53,82,58,21r36,3v-5,44,-27,65,-65,65v-50,0,-67,-39,-67,-92xm20,-202r63,-49r63,49r-31,2r-32,-21r-31,21","w":147},"\u010a":{"d":"103,-28v29,0,36,-24,41,-53r36,5v-8,53,-33,80,-78,80v-64,0,-87,-54,-87,-123v0,-70,24,-124,88,-125v44,0,70,27,78,82r-37,5v-4,-36,-18,-54,-41,-54v-31,0,-46,31,-46,94v0,59,15,89,46,89xm105,-262v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":190},"\u010b":{"d":"13,-88v0,-54,19,-93,69,-94v36,0,58,21,63,64r-36,4v-4,-25,-5,-37,-27,-39v-29,4,-28,29,-31,68v-5,66,53,82,58,21r36,3v-5,44,-27,65,-65,65v-50,0,-67,-39,-67,-92xm84,-202v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":147},"\u010e":{"d":"187,-124v0,75,-30,124,-107,124r-57,0r0,-240r54,0v76,-2,110,45,110,116xm63,-32v61,6,82,-31,82,-88v-1,-66,-25,-92,-82,-88r0,176xm29,-306r32,-3r31,22r32,-22r31,3r-63,48","w":202},"\u010f":{"d":"13,-88v0,-72,63,-126,101,-69r0,-83r36,0r0,240r-33,0r0,-27v-9,20,-23,30,-44,30v-44,0,-60,-43,-60,-91xm83,-24v30,0,31,-41,31,-80v0,-30,-11,-50,-32,-50v-20,0,-30,21,-30,63v0,45,10,67,31,67xm172,-240r34,0r-26,67r-17,0","w":200},"\u0110":{"d":"187,-124v0,75,-30,124,-107,124r-57,0r0,-109r-20,0r0,-30r20,0r0,-101r54,0v76,-2,110,46,110,116xm63,-32v61,6,82,-31,82,-88v-1,-66,-25,-92,-82,-88r0,69r44,0r0,30r-44,0r0,77","w":202},"\u0112":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm43,-294r98,0r0,23r-98,0r0,-23"},"\u0113":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm41,-234r98,0r0,23r-98,0r0,-23","w":159},"\u0114":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm39,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43"},"\u0115":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm32,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":159},"\u0116":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm93,-262v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20"},"\u0117":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm86,-202v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":159},"\u0118":{"d":"185,59v-26,12,-65,3,-64,-26v0,-13,7,-24,24,-33r-122,0r0,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33v-28,19,-16,53,20,45"},"\u0119":{"d":"149,-52v-3,38,-39,45,-44,76v-1,16,18,20,35,17r3,14v-25,10,-65,2,-63,-25v0,-10,7,-19,18,-27v-56,10,-85,-31,-85,-89v0,-91,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0","w":159},"\u011a":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm29,-306r32,-3r31,22r32,-22r31,3r-63,48"},"\u011b":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm23,-245r32,-3r31,22r32,-22r31,3r-63,48","w":159},"\u011c":{"d":"148,-162v-7,-33,-13,-49,-43,-49v-32,0,-48,30,-48,91v0,61,17,92,50,92v27,0,41,-21,41,-63r-43,0r0,-32r80,0r0,125r-21,0r-6,-31v-12,22,-31,33,-57,33v-60,0,-86,-56,-86,-121v0,-71,24,-127,91,-127v43,0,70,24,78,73xm45,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":202},"\u011d":{"d":"115,-174v3,-26,17,-37,45,-32r0,27v-16,-4,-26,3,-28,19v36,45,-7,113,-71,92v-15,3,-18,21,-6,27v37,9,112,-6,107,52v-3,41,-36,51,-81,55v-62,6,-97,-57,-45,-79v-30,-15,-24,-52,6,-65v-44,-30,-17,-104,40,-104v12,0,23,3,33,8xm108,-123v0,-23,-9,-35,-25,-35v-17,0,-26,12,-26,35v0,23,9,35,26,35v17,0,25,-12,25,-35xm128,15v0,-29,-46,-18,-70,-22v-30,18,-12,47,27,47v28,0,43,-9,43,-25xm20,-213r63,-49r63,49r-31,2r-32,-21r-31,21","w":159},"\u0120":{"d":"148,-162v-7,-33,-13,-49,-43,-49v-32,0,-48,30,-48,91v0,61,17,92,50,92v27,0,41,-21,41,-63r-43,0r0,-32r80,0r0,125r-21,0r-6,-31v-12,22,-31,33,-57,33v-60,0,-86,-56,-86,-121v0,-71,24,-127,91,-127v43,0,70,24,78,73xm107,-262v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":202},"\u0121":{"d":"115,-174v3,-26,17,-37,45,-32r0,27v-16,-4,-26,3,-28,19v36,45,-7,113,-71,92v-15,3,-18,21,-6,27v37,9,112,-6,107,52v-3,41,-36,51,-81,55v-62,6,-97,-57,-45,-79v-30,-15,-24,-52,6,-65v-44,-30,-17,-104,40,-104v12,0,23,3,33,8xm108,-123v0,-23,-9,-35,-25,-35v-17,0,-26,12,-26,35v0,23,9,35,26,35v17,0,25,-12,25,-35xm128,15v0,-29,-46,-18,-70,-22v-30,18,-12,47,27,47v28,0,43,-9,43,-25xm84,-202v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":159},"\u0122":{"d":"148,-162v-7,-33,-13,-49,-43,-49v-32,0,-48,30,-48,91v0,61,17,92,50,92v27,0,41,-21,41,-63r-43,0r0,-32r80,0r0,125r-21,0r-6,-31v-12,22,-31,33,-57,33v-60,0,-86,-56,-86,-121v0,-71,24,-127,91,-127v43,0,70,24,78,73xm102,19r33,0r-26,65r-16,0","w":202},"\u0123":{"d":"99,-200r-33,0r25,-65r17,0xm115,-174v3,-26,17,-37,45,-32r0,27v-16,-4,-26,3,-28,19v36,45,-7,113,-71,92v-15,3,-18,21,-6,27v37,9,112,-6,107,52v-3,41,-36,51,-81,55v-62,6,-97,-57,-45,-79v-30,-15,-24,-52,6,-65v-44,-30,-17,-104,40,-104v12,0,23,3,33,8xm108,-123v0,-23,-9,-35,-25,-35v-17,0,-26,12,-26,35v0,23,9,35,26,35v17,0,25,-12,25,-35xm128,15v0,-29,-46,-18,-70,-22v-30,18,-12,47,27,47v28,0,43,-9,43,-25","w":159},"\u0124":{"d":"23,-240r40,0r0,100r70,0r0,-100r40,0r0,240r-40,0r0,-107r-70,0r0,107r-40,0r0,-240xm35,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":196},"\u0125":{"d":"108,-112v0,-30,-2,-40,-22,-40v-45,0,-23,103,-28,152r-37,0r0,-240r37,0r0,86v8,-19,23,-28,43,-28v71,1,36,114,44,182r-37,0r0,-112xm-21,-258r63,-49r63,49r-31,2r-32,-21r-31,21"},"\u0126":{"d":"23,-240r40,0r0,32r71,0r0,-32r39,0r0,32r24,0r0,34r-24,0r0,174r-39,0r0,-107r-71,0r0,107r-40,0r0,-174r-24,0r0,-34r24,0r0,-32xm63,-140r71,0r0,-34r-71,0r0,34","w":196},"\u0127":{"d":"108,-112v-1,-29,-1,-40,-21,-40v-46,0,-24,103,-29,152r-36,0r0,-196r-31,0r0,-28r31,0r0,-16r36,0r0,16r69,0r0,28r-69,0r0,42v8,-19,23,-28,43,-28v71,1,36,114,44,182r-37,0r0,-112"},"\u0128":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm-11,-275v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2","w":85},"\u0129":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm-14,-216v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2","w":79},"\u012a":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm-6,-294r98,0r0,23r-98,0r0,-23","w":85},"\u012b":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm-9,-234r98,0r0,23r-98,0r0,-23","w":79},"\u012c":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm-10,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":85},"\u012d":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm-14,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":79},"\u012e":{"d":"79,59v-45,24,-84,-39,-33,-59r-23,0r0,-240r40,0r0,240v-25,17,-19,52,12,45","w":85},"\u012f":{"d":"59,-201r-38,0r0,-39r38,0r0,39xm74,58v-45,21,-78,-37,-32,-58r-20,0r0,-178r36,0r0,178v-21,16,-18,50,12,44","w":79},"\u0132":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm80,-33v45,10,54,-6,54,-58r0,-149r40,0r0,149v7,75,-26,106,-94,91r0,-33","w":196},"\u0133":{"d":"59,-201r-38,0r0,-39r38,0r0,39xm140,-201r-39,0r0,-39r39,0r0,39xm22,-178r36,0r0,178r-36,0r0,-178xm71,31v29,7,31,-5,31,-38r0,-171r37,0r0,172v5,54,-19,78,-68,67r0,-30","w":159},"\u0134":{"d":"-6,-33v45,11,55,-7,55,-58r0,-149r39,0r0,149v7,75,-26,106,-94,91r0,-33xm4,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":110},"\u0135":{"d":"-22,-202r62,-49r63,49r-31,2r-32,-21r-31,21xm-9,31v29,7,31,-5,31,-38r0,-171r37,0r0,172v5,54,-19,78,-68,67r0,-30","w":79},"\u0136":{"d":"23,-240r40,0r0,114r72,-114r42,0r-62,88r73,152r-43,0r-54,-119r-28,40r0,79r-40,0r0,-240xm85,19r33,0r-26,65r-16,0","w":184},"\u0137":{"d":"21,-240r37,0r0,142r57,-80r37,0r-46,62r51,116r-40,0r-35,-89r-24,33r0,56r-37,0r0,-240xm70,19r33,0r-26,65r-16,0","w":153},"\u0138":{"d":"22,-178r36,0r0,80r58,-80r36,0r-46,62r51,116r-40,0r-35,-89r-24,33r0,56r-36,0r0,-178","w":153},"\u0139":{"d":"23,-240r40,0r0,206r85,0r0,34r-125,0r0,-240xm23,-273r56,-50r19,24r-62,39","w":147},"\u013a":{"d":"22,-240r36,0r0,240r-36,0r0,-240xm22,-273r56,-50r19,24r-62,39","w":79},"\u013b":{"d":"23,-240r40,0r0,206r85,0r0,34r-125,0r0,-240xm69,19r33,0r-26,65r-16,0","w":147},"\u013c":{"d":"22,-240r36,0r0,240r-36,0r0,-240xm24,19r33,0r-26,65r-16,0","w":79},"\u013d":{"d":"23,-240r40,0r0,206r85,0r0,34r-125,0r0,-240xm99,-240r35,0r-26,70r-18,0","w":147},"\u013e":{"d":"22,-240r36,0r0,240r-36,0r0,-240xm80,-240r34,0r-26,67r-17,0","w":108},"\u013f":{"d":"23,-240r40,0r0,206r85,0r0,34r-125,0r0,-240xm97,-145r40,0r0,45r-40,0r0,-45","w":147},"\u0140":{"d":"22,-240r36,0r0,240r-36,0r0,-240xm80,-143r39,0r0,44r-39,0r0,-44","w":119},"\u0143":{"d":"22,-240r47,0r78,173r0,-173r34,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240xm80,-273r56,-50r19,24r-62,39","w":202},"\u0144":{"d":"87,-152v-26,0,-28,20,-29,53r0,99r-36,0r0,-178r34,0r0,28v8,-21,22,-32,43,-32v74,1,38,113,46,182r-36,0r0,-112v-1,-25,1,-40,-22,-40xm62,-212r56,-50r19,24r-62,39"},"\u0145":{"d":"22,-240r47,0r78,173r0,-173r34,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240xm86,19r33,0r-26,65r-16,0","w":202},"\u0146":{"d":"87,-152v-26,0,-28,20,-29,53r0,99r-36,0r0,-178r34,0r0,28v8,-21,22,-32,43,-32v74,1,38,113,46,182r-36,0r0,-112v-1,-25,1,-40,-22,-40xm68,19r33,0r-26,65r-16,0"},"\u0147":{"d":"22,-240r47,0r78,173r0,-173r34,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240xm38,-306r32,-3r31,22r32,-22r31,3r-63,48","w":202},"\u0148":{"d":"87,-152v-26,0,-28,20,-29,53r0,99r-36,0r0,-178r34,0r0,28v8,-21,22,-32,43,-32v74,1,38,113,46,182r-36,0r0,-112v-1,-25,1,-40,-22,-40xm18,-245r32,-3r31,22r32,-22r31,3r-63,48"},"\u0149":{"d":"-4,-240r38,0r0,43r-24,45r-17,0r20,-43r-17,0r0,-45xm109,-152v-26,0,-28,20,-29,53r0,99r-37,0r0,-178r34,0r0,28v8,-21,23,-32,44,-32v74,1,38,113,46,182r-37,0r0,-112v-1,-25,1,-40,-21,-40","w":187},"\u014a":{"d":"115,-209v-76,0,-47,130,-52,209r-40,0r0,-240r38,0r0,41v15,-30,35,-45,62,-45v93,-2,58,137,65,226v4,66,-34,97,-97,85r0,-33v35,8,57,-1,57,-42r0,-153v0,-32,-11,-48,-33,-48","w":210},"\u014b":{"d":"87,-152v-26,0,-29,23,-29,53r0,99r-36,0r0,-178r34,0r0,28v8,-21,22,-32,43,-32v74,1,38,113,46,182v5,51,-22,72,-68,61r0,-30v29,7,31,-5,31,-38r1,-105v-1,-25,1,-40,-22,-40"},"\u014c":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm53,-294r98,0r0,23r-98,0r0,-23","w":202},"\u014d":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm35,-234r98,0r0,23r-98,0r0,-23"},"\u014e":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm48,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":202},"\u014f":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm29,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43"},"\u0150":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm109,-316r19,20r-48,37r-12,-12xm159,-316r19,20r-49,37r-11,-12","w":202},"\u0151":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm88,-256r19,20r-48,37r-12,-12xm138,-256r19,20r-49,37r-11,-12"},"\u0154":{"d":"23,-240v74,-2,149,-6,149,69v0,30,-13,51,-37,63r46,108r-44,0r-37,-100r-37,0r0,100r-40,0r0,-240xm63,-131v41,4,70,-4,70,-41v0,-37,-32,-39,-70,-37r0,78xm67,-273r56,-50r19,24r-62,39","w":190},"\u0155":{"d":"22,-178r32,0r0,40v12,-32,23,-45,51,-43r0,38v-64,-9,-44,85,-47,143r-36,0r0,-178xm39,-212r56,-50r19,24r-62,39","w":98},"\u0156":{"d":"23,-240v74,-2,149,-6,149,69v0,30,-13,51,-37,63r46,108r-44,0r-37,-100r-37,0r0,100r-40,0r0,-240xm63,-131v41,4,70,-4,70,-41v0,-37,-32,-39,-70,-37r0,78xm81,19r33,0r-26,65r-16,0","w":190},"\u0157":{"d":"22,-178r32,0r0,40v12,-32,23,-45,51,-43r0,38v-64,-9,-44,85,-47,143r-36,0r0,-178xm23,19r33,0r-26,65r-16,0","w":98},"\u0158":{"d":"23,-240v74,-2,149,-6,149,69v0,30,-13,51,-37,63r46,108r-44,0r-37,-100r-37,0r0,100r-40,0r0,-240xm63,-131v41,4,70,-4,70,-41v0,-37,-32,-39,-70,-37r0,78xm27,-306r32,-3r31,22r32,-22r31,3r-63,48","w":190},"\u0159":{"d":"22,-178r32,0r0,40v12,-32,23,-45,51,-43r0,38v-64,-9,-44,85,-47,143r-36,0r0,-178xm-2,-245r32,-3r31,22r32,-22r31,3r-63,48","w":98},"\u015a":{"d":"49,-121v-54,-32,-30,-123,42,-123v39,0,64,19,75,58r-34,11v-7,-22,-17,-35,-42,-37v-28,-2,-45,36,-23,52v33,24,108,30,105,92v-2,43,-33,72,-81,72v-44,0,-72,-22,-83,-67r36,-10v6,30,22,45,48,45v32,0,50,-29,33,-55v-9,-13,-63,-31,-76,-38xm71,-273r56,-50r19,24r-62,39","w":184},"\u015b":{"d":"36,-86v-46,-25,-18,-96,35,-96v30,0,48,16,57,46r-28,8v-4,-32,-53,-37,-53,-5v0,42,92,23,88,81v-2,33,-29,56,-65,56v-38,0,-59,-17,-64,-51r31,-6v1,37,59,42,62,7v2,-27,-48,-28,-63,-40xm50,-212r56,-50r19,24r-62,39","w":141},"\u015c":{"d":"49,-121v-54,-32,-30,-123,42,-123v39,0,64,19,75,58r-34,11v-7,-22,-17,-35,-42,-37v-28,-2,-45,36,-23,52v33,24,108,30,105,92v-2,43,-33,72,-81,72v-44,0,-72,-22,-83,-67r36,-10v6,30,22,45,48,45v32,0,50,-29,33,-55v-9,-13,-63,-31,-76,-38xm29,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":184},"\u015d":{"d":"36,-86v-46,-25,-18,-96,35,-96v30,0,48,16,57,46r-28,8v-4,-32,-53,-37,-53,-5v0,42,92,23,88,81v-2,33,-29,56,-65,56v-38,0,-59,-17,-64,-51r31,-6v1,37,59,42,62,7v2,-27,-48,-28,-63,-40xm10,-202r63,-49r63,49r-31,2r-32,-21r-31,21","w":141},"\u0162":{"d":"-6,-240r147,0r0,34r-54,0r0,206r-40,0r0,-206r-53,0r0,-34xm51,19r33,0r-26,65r-16,0","w":135},"\u0163":{"d":"101,1v-53,11,-76,-8,-76,-68r0,-81r-23,0r0,-30r24,0r2,-46r33,-3r0,49r34,0r0,30r-34,0r0,78v-4,37,7,46,40,42r0,29xm45,19r33,0r-26,65r-16,0","w":98},"\u0164":{"d":"-6,-240r147,0r0,34r-54,0r0,206r-40,0r0,-206r-53,0r0,-34xm5,-306r32,-3r31,22r32,-22r31,3r-63,48","w":134},"\u0165":{"d":"101,1v-53,11,-76,-8,-76,-68r0,-81r-23,0r0,-30r24,0r2,-46r33,-3r0,49r34,0r0,30r-34,0r0,78v-4,37,7,46,40,42r0,29xm88,-264r34,0r-26,67r-17,0","w":114},"\u0166":{"d":"87,-156r61,0r0,33r-61,0r0,123r-40,0r0,-123r-60,0r0,-33r60,0r0,-50r-53,0r0,-34r147,0r0,34r-54,0r0,50","w":134},"\u0167":{"d":"101,1v-67,17,-84,-26,-76,-99r-23,0r0,-26r23,0r0,-24r-23,0r0,-30r24,0r2,-46r33,-3r0,49r34,0r0,30r-34,0r0,24r27,0r0,26r-27,0v1,38,-11,83,40,70r0,29","w":98},"\u0168":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm45,-275v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2","w":196},"\u0169":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm30,-216v18,-41,50,-23,77,-11v6,0,11,-5,16,-14r15,10v-10,18,-23,27,-36,27v-19,0,-44,-32,-58,-2"},"\u016a":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm50,-294r98,0r0,23r-98,0r0,-23","w":196},"\u016b":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm34,-234r98,0r0,23r-98,0r0,-23"},"\u016c":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm45,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":196},"\u016d":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm29,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43"},"\u016e":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm99,-255v-17,0,-33,-14,-33,-33v0,-18,16,-33,33,-33v17,0,33,15,33,33v0,18,-16,34,-33,33xm99,-304v-8,0,-16,8,-15,16v0,7,7,15,15,15v8,0,15,-8,15,-15v1,-8,-7,-16,-15,-16","w":196},"\u016f":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm83,-196v-17,0,-33,-14,-33,-33v0,-18,16,-33,33,-33v17,0,33,15,33,33v0,18,-16,34,-33,33xm83,-245v-8,0,-16,8,-15,16v0,7,7,15,15,15v8,0,15,-8,15,-15v1,-8,-7,-16,-15,-16"},"\u0170":{"d":"98,4v-113,0,-68,-145,-77,-244r39,0r0,149v0,40,4,63,40,63v36,0,40,-19,39,-64r0,-148r36,0v-8,101,36,244,-77,244xm106,-317r19,20r-48,37r-12,-12xm156,-317r19,20r-49,37r-11,-12","w":196},"\u0171":{"d":"65,4v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40v50,0,22,-99,29,-153r37,0r0,178r-34,0r0,-27v-9,21,-24,31,-45,31xm88,-256r19,20r-48,37r-12,-12xm138,-256r19,20r-49,37r-11,-12"},"\u0172":{"d":"100,-28v36,0,40,-19,39,-64r0,-148r36,0r0,146v0,48,-3,70,-31,88v-28,18,-22,58,18,49r3,14v-26,10,-65,2,-64,-26v0,-11,5,-21,17,-29v-68,8,-97,-18,-97,-93r0,-149r39,0r0,149v0,40,4,63,40,63","w":196},"\u0173":{"d":"78,-25v50,0,22,-99,29,-153r37,0r0,178v-26,18,-16,53,19,44r4,14v-25,10,-64,2,-63,-26v0,-13,8,-23,24,-32r-18,0r0,-27v-9,21,-24,31,-45,31v-74,0,-36,-116,-45,-182r37,0r0,113v1,27,-1,40,21,40"},"\u0174":{"d":"1,-240r40,0r33,180r37,-180r35,0r37,180r34,-180r34,0r-51,241r-36,0r-38,-177r-37,177r-36,0xm65,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":251},"\u0175":{"d":"0,-178r36,0r26,122r26,-122r32,0r25,123r28,-123r30,0r-44,178r-31,0r-27,-123r-26,123r-31,0xm38,-202r63,-49r63,49r-31,2r-32,-21r-31,21","w":202},"\u0176":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101xm12,-263r63,-49r63,49r-31,2r-32,-21r-31,21","w":147},"\u0177":{"d":"0,-178r37,0r31,122r31,-122r33,0r-57,189v-8,37,-27,61,-71,50r0,-29v33,4,38,-7,46,-38xm5,-202r63,-49r63,49r-31,2r-32,-21r-31,21","w":128},"\u0179":{"d":"7,-240r144,0r0,28r-107,179r109,0r0,33r-153,0r0,-31r105,-176r-98,0r0,-33xm57,-273r56,-50r19,24r-62,39","w":153},"\u017a":{"d":"12,-178r108,0r0,23r-75,127r75,0r0,28r-115,0r0,-28r72,-122r-65,0r0,-28xm43,-212r56,-50r19,24r-62,39","w":122},"\u017b":{"d":"7,-240r144,0r0,28r-107,179r109,0r0,33r-153,0r0,-31r105,-176r-98,0r0,-33xm80,-262v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":153},"\u017c":{"d":"12,-178r108,0r0,23r-75,127r75,0r0,28r-115,0r0,-28r72,-122r-65,0r0,-28xm67,-202v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":122},"\u017f":{"d":"100,-212v-29,-3,-40,1,-40,34r0,178r-38,0r0,-178v-3,-55,22,-69,78,-66r0,32","w":85},"\u01fa":{"d":"90,-299v28,0,47,40,23,59r64,240r-40,0r-16,-60r-70,0r-14,60r-38,0r69,-239v-25,-18,-8,-60,22,-60xm90,-281v-9,0,-15,6,-15,16v0,9,7,16,15,16v8,0,16,-7,16,-16v0,-8,-8,-16,-16,-16xm114,-91r-28,-110r-27,110r55,0xm49,-322r69,-34r13,29r-72,22","w":177},"\u01fb":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28xm85,-196v-17,0,-33,-14,-33,-33v0,-18,16,-33,33,-33v17,0,33,15,33,33v0,18,-16,34,-33,33xm85,-245v-8,0,-16,8,-15,16v0,7,7,15,15,15v8,0,15,-8,15,-15v1,-8,-7,-16,-15,-16xm49,-277r56,-50r19,24r-62,39"},"\u01fc":{"d":"95,-240r153,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r97,0r0,33r-136,0r0,-66r-62,0r-28,66r-37,0xm113,-97r0,-117r-51,117r51,0xm129,-273r56,-50r19,24r-62,39","w":251},"\u01fd":{"d":"19,-131v1,-50,86,-69,112,-29v22,-28,71,-28,93,2v11,15,19,41,19,75r-100,0v-9,61,54,83,65,27r32,4v-6,64,-92,75,-117,23v-21,48,-113,44,-110,-18v3,-51,39,-63,95,-63v10,-50,-49,-62,-56,-17xm205,-108v-1,-31,-11,-47,-30,-47v-19,0,-29,16,-31,47r61,0xm73,-22v26,-2,38,-32,35,-65v-35,-2,-59,9,-58,37v0,18,8,28,23,28xm103,-212r56,-50r19,24r-62,39","w":251},"\u01fe":{"d":"16,-120v0,-91,53,-150,130,-112r10,-21r26,0r-19,37v16,20,23,53,23,96v0,72,-21,122,-84,124v-25,0,-18,-2,-44,-11r-11,22r-25,0r19,-38v-17,-20,-25,-52,-25,-97xm102,-213v-61,-4,-51,110,-41,155r68,-146v-7,-6,-16,-9,-27,-9xm75,-34v51,26,73,-25,73,-86v0,-28,-2,-47,-6,-59xm66,-273r56,-50r19,24r-62,39","w":202},"\u01ff":{"d":"35,-14v-38,-43,-32,-168,47,-168v14,0,25,3,35,8r10,-19r21,0r-16,32v14,16,21,39,21,71v2,77,-41,108,-102,88r-11,21r-21,0xm103,-151v-38,-18,-56,17,-56,62v0,19,2,34,6,46xm65,-25v56,20,59,-54,49,-105xm51,-212r56,-50r19,24r-62,39"},"\u0384":{"d":"19,-259r27,19r-53,58r-16,-12","w":180},"\u0385":{"d":"118,-305r18,23r-53,34r-10,-16xm62,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm118,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":180},"\u0386":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0xm24,-259r27,19r-53,58r-16,-12","w":177},"\u0387":{"d":"23,-115r40,0r0,45r-40,0r0,-45","w":85},"\u0388":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm-18,-259r27,19r-53,58r-16,-12"},"\u0389":{"d":"23,-240r40,0r0,100r70,0r0,-100r40,0r0,240r-40,0r0,-107r-70,0r0,107r-40,0r0,-240xm-18,-259r27,19r-53,58r-16,-12","w":196},"\u038a":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm-18,-259r27,19r-53,58r-16,-12","w":85},"\u038c":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92xm4,-259r27,19r-53,58r-16,-12","w":202},"\u038e":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101xm-50,-259r27,19r-53,58r-16,-12","w":147},"\u038f":{"d":"104,-244v104,0,115,173,39,211r53,0r0,33r-81,0r0,-35v45,-21,55,-177,-11,-177v-65,0,-57,154,-11,177r0,35r-81,0r0,-33r53,0v-76,-38,-65,-211,39,-211xm2,-259r27,19r-53,58r-16,-12","w":207},"\u0390":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm68,-305r18,23r-53,34r-10,-16xm12,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm68,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":79},"\u0391":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0","w":177},"\u0392":{"d":"179,-66v0,44,-27,66,-82,66r-74,0r0,-240v72,0,148,-12,148,61v0,27,-11,45,-35,53v29,9,43,29,43,60xm130,-175v0,-37,-33,-35,-68,-34r0,69v37,2,68,0,68,-35xm138,-71v0,-36,-34,-42,-76,-39r0,78v40,2,76,0,76,-39","w":196},"\u0393":{"d":"23,0r0,-240r116,0r0,33r-76,0r0,207r-40,0","w":135},"\u0394":{"d":"-6,0r65,-240r52,0r64,240r-181,0xm40,-33r84,0r-41,-174","w":169},"\u0395":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240"},"\u0396":{"d":"7,-240r144,0r0,28r-107,179r109,0r0,33r-153,0r0,-31r105,-176r-98,0r0,-33","w":153},"\u0397":{"d":"23,-240r40,0r0,100r70,0r0,-100r40,0r0,240r-40,0r0,-107r-70,0r0,107r-40,0r0,-240","w":196},"\u0398":{"d":"105,-244v65,0,88,52,88,124v0,72,-23,124,-88,124v-66,0,-90,-51,-90,-124v0,-72,24,-124,90,-124xm105,-28v41,0,47,-44,47,-92v0,-49,-6,-92,-48,-92v-41,0,-47,43,-47,92v1,48,6,92,48,92xm133,-138r0,32r-57,0r0,-32r57,0","w":208},"\u0399":{"d":"23,-240r40,0r0,240r-40,0r0,-240","w":85},"\u039a":{"d":"23,-240r40,0r0,114r72,-114r42,0r-62,88r73,152r-43,0r-54,-119r-28,40r0,79r-40,0r0,-240","w":184},"\u039b":{"d":"31,0r-37,0r65,-240r49,0r62,240r-42,0r-48,-199","w":164},"\u039c":{"d":"22,-240r59,0r48,173r49,-173r56,0r0,240r-37,0r0,-205r-57,205r-29,0r-56,-205r0,205r-33,0r0,-240","w":257},"\u039d":{"d":"22,-240r47,0r78,173r0,-173r34,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240","w":202},"\u039e":{"d":"10,-207r0,-33r139,0r0,33r-139,0xm32,-107r0,-32r95,0r0,32r-95,0xm10,0r0,-33r139,0r0,33r-139,0","w":159},"\u039f":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92","w":202},"\u03a0":{"d":"23,0r0,-240r143,0r0,240r-39,0r0,-207r-64,0r0,207r-40,0","w":189},"\u03a1":{"d":"171,-167v-1,60,-39,78,-108,73r0,94r-40,0r0,-240v79,-4,151,-3,148,73xm129,-167v-2,-37,-23,-46,-66,-42r0,83v40,2,68,-1,66,-41","w":177},"\u03a3":{"d":"9,0r0,-31r60,-96r-56,-81r0,-32r129,0r0,32r-85,0r53,73r-62,102r101,0r0,33r-140,0","w":152},"\u03a4":{"d":"-6,-240r147,0r0,34r-54,0r0,206r-40,0r0,-206r-53,0r0,-34","w":135},"\u03a5":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101","w":147},"\u03a6":{"d":"130,-218v52,5,82,41,82,98v0,57,-27,90,-82,98r0,29r-33,0r0,-29v-54,-4,-81,-43,-82,-97v-1,-58,31,-94,82,-99r0,-30r33,0r0,30xm97,-189v-29,7,-43,30,-43,70v0,38,14,61,43,68r0,-138xm130,-51v29,-7,43,-30,43,-70v0,-38,-14,-61,-43,-68r0,138","w":227},"\u03a7":{"d":"3,-240r44,0r34,77r39,-77r37,0r-56,109r63,131r-44,0r-41,-92r-46,92r-38,0r64,-124","w":159},"\u03a8":{"d":"224,-170v2,82,-11,118,-82,125r0,45r-40,0r0,-45v-94,0,-83,-97,-82,-195r39,0v10,59,-23,155,43,162r0,-162r40,0r0,162v63,-4,38,-97,43,-162r39,0r0,70","w":243},"\u03a9":{"d":"104,-244v104,0,115,173,39,211r53,0r0,33r-81,0r0,-35v45,-21,55,-177,-11,-177v-65,0,-57,154,-11,177r0,35r-81,0r0,-33r53,0v-76,-38,-65,-211,39,-211","w":207},"\u03aa":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm15,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm71,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":85},"\u03ab":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101xm48,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm104,-264v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":147},"\u03ac":{"d":"13,-87v0,-52,18,-94,65,-95v24,0,41,16,50,46r12,-42r34,0r-27,85r31,93r-37,0r-13,-48v-9,28,-20,52,-52,52v-46,0,-63,-41,-63,-91xm80,-154v-41,6,-38,126,2,131v22,-8,27,-36,35,-68v-7,-17,-14,-66,-37,-63xm64,-212r56,-50r19,24r-62,39","w":182},"\u03ad":{"d":"56,-130v1,22,10,28,35,28r0,23v-28,-3,-37,5,-39,27v-1,18,9,31,24,31v16,0,28,-14,30,-32r33,6v-9,34,-30,51,-65,51v-65,0,-84,-83,-27,-97v-52,-19,-30,-89,28,-89v36,0,56,16,61,48r-33,7v-1,-40,-48,-38,-47,-3xm52,-212r56,-50r19,24r-62,39","w":142},"\u03ae":{"d":"97,-182v42,2,48,26,48,75r0,167r-37,0r0,-171v-1,-28,-1,-40,-20,-43v-50,8,-28,98,-33,154r-37,0r0,-178r34,0r0,25v11,-19,26,-29,45,-29xm64,-212r56,-50r19,24r-62,39","w":162},"\u03af":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm12,-212r56,-50r19,24r-62,39","w":79},"\u03b0":{"d":"82,4v-88,0,-56,-105,-62,-182r36,0r0,105v1,31,-1,50,25,50v26,0,26,-19,26,-50r0,-105r36,0v-5,78,25,182,-61,182xm109,-305r18,23r-53,34r-10,-16xm53,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm109,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":162},"\u03b1":{"d":"13,-87v0,-52,18,-94,65,-95v24,0,41,16,50,46r12,-42r34,0r-27,85r31,93r-37,0r-13,-48v-9,28,-20,52,-52,52v-46,0,-63,-41,-63,-91xm80,-154v-41,6,-38,126,2,131v22,-8,27,-36,35,-68v-7,-17,-14,-66,-37,-63","w":182},"\u03b2":{"d":"110,-135v74,13,59,141,-13,139v-16,0,-29,-6,-39,-18r0,74r-36,0r0,-219v-3,-59,12,-81,63,-85v69,-5,84,90,25,109xm85,-219v-25,2,-26,16,-27,55r0,124v24,37,62,7,62,-35v0,-31,-13,-47,-39,-47r0,-22v24,0,30,-17,30,-37v0,-20,-6,-40,-26,-38","w":171},"\u03b3":{"d":"45,60r0,-60r-50,-178r38,0r33,131v11,-52,22,-84,34,-131r33,0r-51,178r0,60r-37,0","w":129},"\u03b4":{"d":"13,-83v0,-47,23,-82,69,-80r-53,-49r0,-28r106,0r0,28r-65,0v34,35,83,56,83,127v0,50,-22,89,-70,89v-48,1,-70,-37,-70,-87xm83,-23v43,-3,42,-120,0,-122v-44,1,-42,121,0,122"},"\u03b5":{"d":"56,-130v1,22,10,28,35,28r0,23v-28,-3,-37,5,-39,27v-1,18,9,31,24,31v16,0,28,-14,30,-32r33,6v-9,34,-30,51,-65,51v-65,0,-84,-83,-27,-97v-52,-19,-30,-89,28,-89v36,0,56,16,61,48r-33,7v-1,-40,-48,-38,-47,-3","w":142},"\u03b6":{"d":"72,57v9,-24,20,-56,-10,-58v-39,-3,-49,-25,-49,-66v0,-51,23,-99,68,-145r-62,0r0,-28r93,0r0,24v-47,51,-73,106,-55,174v15,19,58,1,58,49v0,17,-3,34,-11,53","w":118},"\u03b7":{"d":"97,-182v42,2,48,26,48,75r0,167r-37,0r0,-171v-1,-28,-1,-40,-20,-43v-50,8,-28,98,-33,154r-37,0r0,-178r34,0r0,25v11,-19,26,-29,45,-29","w":162},"\u03b8":{"d":"83,-244v47,0,70,41,70,124v0,83,-23,124,-70,124v-47,0,-70,-41,-70,-124v0,-83,23,-124,70,-124xm50,-136r66,0v0,-56,-11,-83,-33,-83v-22,0,-33,27,-33,83xm50,-113v4,52,0,83,33,92v33,-8,29,-41,33,-92r-66,0"},"\u03b9":{"d":"22,-178r36,0r0,178r-36,0r0,-178","w":79},"\u03ba":{"d":"22,-178r36,0r0,80r58,-80r36,0r-46,62r51,116r-40,0r-35,-89r-24,33r0,56r-36,0r0,-178","w":153},"\u03bb":{"d":"-4,0r51,-164r-22,-76r39,0r69,240r-39,0r-31,-118r-35,118r-32,0","w":128},"\u03bc":{"d":"85,-23v46,-8,21,-103,27,-155r37,0r0,178r-31,0r0,-19v-9,29,-47,31,-60,6r0,73r-36,0r0,-238r36,0v5,53,-17,146,27,155","w":170},"\u03bd":{"d":"-2,-178r36,0r33,128r33,-128r32,0r-51,178r-32,0","w":128},"\u03be":{"d":"48,-70v-5,62,81,16,81,78v0,13,-3,32,-9,55r-33,-6v9,-29,18,-55,-16,-56v-42,-2,-62,-21,-62,-63v0,-33,16,-55,48,-66v-55,-20,-47,-69,9,-84r-49,0r0,-28r108,0r0,28v-39,-2,-66,8,-66,39v0,27,20,37,51,35r0,27v-39,-2,-59,5,-62,41","w":128},"\u03bf":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66"},"\u03c0":{"d":"23,0r0,-150r-18,0r0,-28r155,0r0,28r-18,0r0,150r-36,0r0,-150r-46,0r0,150r-37,0"},"\u03c1":{"d":"159,-86v0,70,-63,121,-103,68r0,78r-36,0v7,-99,-30,-242,69,-242v49,0,70,40,70,96xm89,-23v25,-3,32,-30,31,-65v0,-44,-10,-66,-31,-66v-21,0,-32,22,-32,66v0,35,7,61,32,65","w":172},"\u03c2":{"d":"81,-154v-40,0,-36,102,-6,115v23,10,66,6,66,47v0,14,-3,32,-9,55r-32,-7v7,-20,16,-54,-11,-56v-53,-5,-72,-35,-76,-91v-5,-66,54,-117,106,-78v11,8,18,25,23,48r-34,7v-3,-27,-12,-40,-27,-40","w":150},"\u03c3":{"d":"13,-88v0,-61,32,-108,93,-90r56,0r0,28r-34,0v45,42,28,157,-45,154v-49,-2,-70,-38,-70,-92xm83,-23v26,-3,31,-31,31,-65v0,-43,-11,-64,-32,-64v-20,0,-30,21,-30,64v0,36,6,61,31,65","w":167},"\u03c4":{"d":"39,0r0,-150r-42,0r0,-28r120,0r0,28r-41,0r0,150r-37,0","w":114},"\u03c5":{"d":"82,4v-88,0,-56,-105,-62,-182r36,0r0,105v1,31,-1,50,25,50v26,0,26,-19,26,-50r0,-105r36,0v-5,78,25,182,-61,182","w":162},"\u03c6":{"d":"192,-89v0,53,-27,89,-76,93r0,56r-33,0r0,-56v-85,0,-96,-146,-29,-175r11,30v-31,26,-23,113,18,118r0,-157v68,-13,109,28,109,91xm116,-22v54,-5,54,-129,0,-133r0,133","w":201},"\u03c7":{"d":"50,-69r-46,-109r38,0r31,81r33,-81r33,0r-49,116r52,122r-38,0r-38,-95r-40,95r-33,0","w":140},"\u03c8":{"d":"200,-178v-2,85,18,186,-72,181r0,57r-36,0r0,-57v-54,-4,-73,-23,-72,-86r0,-95r36,0v2,44,-7,112,7,141v4,9,15,11,29,12r0,-153r36,0r0,153v58,2,27,-100,35,-153r37,0","w":219},"\u03c9":{"d":"75,-23v30,0,12,-74,17,-113r33,0v3,40,-11,113,18,113v15,0,22,-19,22,-56v0,-36,-7,-65,-22,-88r26,-15v23,29,35,63,35,103v0,46,-16,82,-58,83v-18,0,-30,-9,-37,-27v-7,18,-19,27,-37,27v-82,-3,-68,-141,-24,-186r27,15v-15,23,-23,52,-23,88v0,37,8,56,23,56","w":217},"\u03ca":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm12,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm68,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":79},"\u03cb":{"d":"82,4v-88,0,-56,-105,-62,-182r36,0r0,105v1,31,-1,50,25,50v26,0,26,-19,26,-50r0,-105r36,0v-5,78,25,182,-61,182xm53,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm109,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":162},"\u03cc":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66xm55,-212r56,-50r19,24r-62,39"},"\u03cd":{"d":"82,4v-88,0,-56,-105,-62,-182r36,0r0,105v1,31,-1,50,25,50v26,0,26,-19,26,-50r0,-105r36,0v-5,78,25,182,-61,182xm57,-212r56,-50r19,24r-62,39","w":162},"\u03ce":{"d":"75,-23v30,0,12,-74,17,-113r33,0v3,40,-11,113,18,113v15,0,22,-19,22,-56v0,-36,-7,-65,-22,-88r26,-15v23,29,35,63,35,103v0,46,-16,82,-58,83v-18,0,-30,-9,-37,-27v-7,18,-19,27,-37,27v-82,-3,-68,-141,-24,-186r27,15v-15,23,-23,52,-23,88v0,37,8,56,23,56xm92,-212r56,-50r19,24r-62,39","w":217},"\u0401":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240xm64,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm120,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18"},"\u0402":{"d":"106,-132v-50,2,-35,79,-37,132r-40,0r0,-208r-32,0r0,-32r144,0r0,32r-72,0r0,74v11,-17,27,-26,48,-26v56,0,56,38,56,107v-1,80,-2,113,-69,117r0,-30v36,-7,30,-31,30,-84v0,-54,3,-74,-28,-82","w":185},"\u0403":{"d":"23,0r0,-240r116,0r0,33r-76,0r0,207r-40,0xm49,-273r56,-50r19,24r-62,39","w":135,"k":{"\u045e":-7,"\u0459":22,"\u0454":25,"\u044f":24,"\u044e":25,"\u044a":18,"\u0447":30,"\u0446":24,"\u0445":19,"\u0444":27,"\u0443":21,"\u0442":21,"\u0441":25,"\u0440":24,"\u043f":24,"\u043e":25,"\u043d":24,"\u043c":24,"\u043b":20,"\u043a":24,"\u0438":24,"\u0437":26,"\u0436":20,"\u0435":25,"\u0434":27,"\u0432":24,"\u0430":27,"\u0427":-8,"\u0424":9,"\u0423":-18,"\u0422":-20,"\u041b":8,"\u0414":13,"\u040e":-18,"\u040b":-18,"\u0409":8}},"\u0404":{"d":"15,-119v0,-70,22,-124,88,-125v40,0,65,21,75,65r-36,11v-4,-29,-17,-43,-39,-43v-29,0,-45,24,-47,72r71,0r0,30r-71,0v1,54,17,81,47,81v28,0,34,-21,40,-49r36,8v-9,49,-34,73,-77,73v-64,-1,-87,-55,-87,-123","w":186},"\u0405":{"d":"49,-121v-54,-32,-30,-123,42,-123v39,0,64,19,75,58r-34,11v-7,-22,-17,-35,-42,-37v-28,-2,-45,36,-23,52v33,24,108,30,105,92v-2,43,-33,72,-81,72v-44,0,-72,-22,-83,-67r36,-10v6,30,22,45,48,45v32,0,50,-29,33,-55v-9,-13,-63,-31,-76,-38","w":184},"\u0406":{"d":"23,-240r40,0r0,240r-40,0r0,-240","w":85},"\u0407":{"d":"23,-240r40,0r0,240r-40,0r0,-240xm15,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm71,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":85},"\u0408":{"d":"-6,-33v45,11,55,-7,55,-58r0,-149r39,0r0,149v7,75,-26,106,-94,91r0,-33","w":110},"\u0409":{"d":"250,-74v0,46,-21,74,-68,74r-66,0r-36,-199r-49,199r-37,0r65,-240r49,0r19,93r48,0v56,-2,75,24,75,73xm211,-74v0,-46,-35,-42,-77,-41r17,82v37,2,60,-3,60,-41","w":258,"k":{"\u044a":1,"\u042a":9,"\u0427":4,"\u0423":3,"\u0422":13,"\u040e":3,"\u040b":4}},"\u040a":{"d":"279,-72v-1,43,-23,72,-66,72r-84,0r0,-111r-66,0r0,111r-40,0r0,-240r40,0r0,97r66,0r0,-97r39,0r0,97v68,-5,112,8,111,71xm240,-73v0,-39,-33,-41,-72,-38r0,78v40,2,72,1,72,-40","w":287,"k":{"\u044a":1,"\u042a":9,"\u0427":4,"\u0423":2,"\u0422":13,"\u040e":2,"\u040b":4}},"\u040b":{"d":"133,-85v6,-61,-64,-53,-64,-13r0,98r-40,0r0,-208r-32,0r0,-32r145,0r0,32r-73,0r0,72v35,-46,104,-25,104,53r0,83r-40,0r0,-85","w":192},"\u040c":{"d":"23,-240r40,0r0,114r72,-114r42,0r-62,88r73,152r-43,0r-54,-119r-28,40r0,79r-40,0r0,-240xm73,-273r56,-50r19,24r-62,39","w":184,"k":{"\u045e":-2,"\u0454":2,"\u0447":12,"\u0444":4,"\u0443":8,"\u0442":3,"\u0441":2,"\u043e":2,"\u0437":-4,"\u0435":2,"\u0431":2,"\u0430":-2,"\u0424":11,"\u0421":7,"\u041e":6,"\u0404":7}},"\u040e":{"d":"66,-69r-70,-171r41,0r46,122r40,-122r35,0v-28,72,-46,170,-85,228v-8,13,-30,13,-52,12r0,-34v29,4,38,-10,45,-35xm30,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":153,"k":{"\u0459":14,"\u0454":10,"\u044f":7,"\u044e":5,"\u0447":2,"\u0446":6,"\u0445":-5,"\u0444":11,"\u0442":-7,"\u0441":10,"\u0440":5,"\u043f":5,"\u043e":10,"\u043d":5,"\u043c":5,"\u043b":11,"\u043a":5,"\u0438":5,"\u0437":6,"\u0436":-4,"\u0435":11,"\u0434":20,"\u0431":5,"\u0430":10,"\u0427":-9,"\u0424":6,"\u0422":-20,"\u0421":3,"\u041e":3,"\u041b":7,"\u0417":-1,"\u0414":13,"\u0410":10,"\u040e":-19,"\u040b":-19,"\u0409":7,"\u0404":3}},"\u040f":{"d":"63,-33r69,0r0,-207r40,0r0,240r-58,0r-3,51r-27,0r-3,-51r-58,0r0,-240r40,0r0,207","w":194},"\u0410":{"d":"68,-240r44,0r65,240r-40,0r-16,-60r-70,0r-14,60r-38,0xm114,-91r-28,-110r-27,110r55,0","w":177,"k":{"\u045e":3,"\u0459":-13,"\u0447":6,"\u0444":2,"\u0443":3,"\u0442":4,"\u043b":-15,"\u0437":-4,"\u042a":6,"\u0427":11,"\u0424":6,"\u0423":-4,"\u0422":9,"\u0421":4,"\u041e":4,"\u041b":-17,"\u0417":-2,"\u040e":-4,"\u0409":-17,"\u0404":4,"\u00bb":-2,";":-2,":":-2,".":-7,"-":-4,",":-6}},"\u0411":{"d":"174,-71v-1,42,-24,72,-67,71r-84,0r0,-240r127,0r0,32r-87,0r0,61v70,-6,112,12,111,76xm63,-33v40,2,72,2,72,-40v0,-44,-31,-44,-72,-42r0,82","w":188,"k":{"\u045e":6,"\u044a":4,"\u0443":6,"\u0442":8,"\u0436":2,"\u0428":3,"\u0427":7,"\u0423":2,"\u0422":1,"\u0416":2,"\u040e":2,"\u040b":2}},"\u0412":{"d":"179,-66v0,44,-27,66,-82,66r-74,0r0,-240v72,0,148,-12,148,61v0,27,-11,45,-35,53v29,9,43,29,43,60xm130,-175v0,-37,-33,-35,-68,-34r0,69v37,2,68,0,68,-35xm138,-71v0,-36,-34,-42,-76,-39r0,78v40,2,76,0,76,-39","w":196,"k":{"\u045e":-1,"\u0459":2,"\u044a":-5,"\u0447":4,"\u0443":-1,"\u0442":-2,"\u0428":1,"\u0427":6,"\u0423":5,"\u0422":-2,"\u0416":4,"\u040e":5,"\u040b":-1}},"\u0413":{"d":"23,0r0,-240r116,0r0,33r-76,0r0,207r-40,0","w":135,"k":{"\u045e":-7,"\u0459":22,"\u0454":25,"\u044f":24,"\u044e":25,"\u044a":18,"\u0447":30,"\u0446":24,"\u0445":19,"\u0444":27,"\u0443":21,"\u0442":21,"\u0441":25,"\u0440":24,"\u043f":24,"\u043e":25,"\u043d":24,"\u043c":24,"\u043b":20,"\u043a":24,"\u0438":24,"\u0437":26,"\u0436":20,"\u0435":25,"\u0434":27,"\u0432":24,"\u0430":27,"\u0427":-8,"\u0424":9,"\u0423":-18,"\u0422":-20,"\u041b":8,"\u0414":13,"\u040e":-18,"\u040b":-18,"\u0409":8,";":28,":":27,".":24,"-":20,",":25}},"\u0414":{"d":"17,-33r53,-207r58,0r47,207r14,0r0,84r-28,0r-4,-51r-121,0r-5,51r-27,0r0,-84r13,0xm53,-33r81,0r-34,-166r-9,0","w":192},"\u0415":{"d":"23,-240r137,0r0,32r-97,0r0,68r76,0r0,32r-76,0r0,75r99,0r0,33r-139,0r0,-240","k":{"\u0424":6}},"\u0416":{"d":"177,-138r72,138r-42,0r-60,-114r-8,4r0,110r-37,0r0,-110r-8,-4r-61,114r-37,0r68,-125r-62,-115r41,0r55,102r4,2r0,-104r37,0r0,104r4,-2r55,-102r37,0","w":240,"k":{"\u045e":-2,"\u0447":11,"\u0444":2,"\u0443":5,"\u0437":-6,"\u0430":-5,"\u0424":9,"\u0421":4,"\u041e":4,"\u0417":-2,"\u0404":4}},"\u0417":{"d":"123,-127v76,21,46,131,-34,131v-47,0,-73,-24,-80,-72r35,-6v1,58,81,61,81,4v0,-31,-18,-44,-51,-40r0,-29v30,3,48,-7,48,-36v0,-21,-14,-38,-35,-37v-21,0,-35,14,-39,40r-34,-6v7,-45,32,-66,75,-66v73,0,100,95,34,117","w":181,"k":{"\u045e":-3,"\u0459":1,"\u0447":2,"\u0445":-3,"\u0443":-3,"\u0442":-5,"\u042f":4,"\u0427":4,"\u0425":2,"\u0423":2,"\u0422":-5,"\u041b":-3,"\u0417":-3,"\u0416":3,"\u0414":-1,"\u040e":2,"\u040b":-4,"\u0409":-3}},"\u0418":{"d":"63,-21r0,21r-40,0r0,-240r40,0r-2,168v20,-51,53,-98,78,-145r0,-23r39,0r0,240r-39,0r1,-166v-20,50,-52,98,-77,145","w":201},"\u0419":{"d":"63,-21r0,21r-40,0r0,-240r40,0r-2,168v20,-51,53,-98,78,-145r0,-23r39,0r0,240r-39,0r1,-166v-20,50,-52,98,-77,145xm48,-306r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":201},"\u041a":{"d":"23,-240r40,0r0,114r72,-114r42,0r-62,88r73,152r-43,0r-54,-119r-28,40r0,79r-40,0r0,-240","w":184,"k":{"\u045e":-2,"\u0454":2,"\u0447":12,"\u0444":4,"\u0443":8,"\u0442":3,"\u0441":2,"\u043e":2,"\u0437":-4,"\u0435":2,"\u0431":2,"\u0430":-2,"\u0424":11,"\u0421":7,"\u041e":6,"\u0404":7}},"\u041b":{"d":"31,0r-37,0r65,-240r49,0r62,240r-42,0r-48,-199","w":164},"\u041c":{"d":"22,-240r59,0r48,173r49,-173r56,0r0,240r-37,0r0,-205r-57,205r-29,0r-56,-205r0,205r-33,0r0,-240","w":257},"\u041d":{"d":"23,-240r40,0r0,100r70,0r0,-100r40,0r0,240r-40,0r0,-107r-70,0r0,107r-40,0r0,-240","w":196},"\u041e":{"d":"102,-244v63,0,86,53,86,124v1,72,-22,124,-86,124v-64,0,-87,-52,-87,-124v0,-73,23,-124,87,-124xm102,-28v39,0,44,-45,44,-92v0,-47,-5,-92,-45,-92v-39,0,-44,46,-44,92v0,47,4,92,45,92","w":202,"k":{"\u0459":2,"\u042f":3,"\u042a":-2,"\u0427":1,"\u0425":4,"\u0423":5,"\u0422":-1,"\u0416":5,"\u0414":3,"\u0410":4,"\u040e":5}},"\u041f":{"d":"23,0r0,-240r145,0r0,240r-40,0r0,-208r-65,0r0,208r-40,0","w":190},"\u0420":{"d":"171,-167v-1,60,-39,78,-108,73r0,94r-40,0r0,-240v79,-4,151,-3,148,73xm129,-167v-2,-37,-23,-46,-66,-42r0,83v40,2,68,-1,66,-41","w":177,"k":{"\u0459":12,"\u0454":1,"\u0444":2,"\u0441":1,"\u043e":1,"\u043b":8,"\u0437":-2,"\u0435":2,"\u0434":17,"\u0430":2,"\u042f":-2,"\u0427":-2,"\u0421":-2,"\u041b":6,"\u0414":12,"\u0410":9,"\u0409":6,";":1,".":33,"-":3,",":34}},"\u0421":{"d":"103,-28v29,0,36,-24,41,-53r36,5v-8,53,-33,80,-78,80v-64,0,-87,-54,-87,-123v0,-70,24,-124,88,-125v44,0,70,27,78,82r-37,5v-4,-36,-18,-54,-41,-54v-31,0,-46,31,-46,94v0,59,15,89,46,89","w":190,"k":{"\u045e":-8,"\u0459":1,"\u0447":-1,"\u0443":-8,"\u0442":-10,"\u042f":-1,"\u0425":1,"\u0422":-7,"\u0421":-1,"\u041e":-1,"\u041b":-4,"\u0417":-5,"\u0416":2,"\u0410":-1,"\u040b":-5,"\u0409":-4}},"\u0422":{"d":"-6,-240r147,0r0,34r-54,0r0,206r-40,0r0,-206r-53,0r0,-34","w":135,"k":{"\u045e":-8,"\u0459":10,"\u0454":13,"\u044f":12,"\u044a":6,"\u0447":18,"\u0446":12,"\u0445":7,"\u0444":15,"\u0443":10,"\u0442":9,"\u0441":13,"\u0440":12,"\u043f":12,"\u043e":13,"\u043d":12,"\u043c":12,"\u043b":8,"\u043a":12,"\u0438":12,"\u0437":14,"\u0436":8,"\u0435":13,"\u0434":15,"\u0433":12,"\u0432":12,"\u0430":15,"\u042f":-5,"\u0424":8,"\u0423":-19,"\u0422":-21,"\u041e":-1,"\u041b":6,"\u0417":-7,"\u0414":11,"\u0410":8,"\u040e":-19,"\u040b":-19,"\u0409":6,"\u00bb":13,";":16,":":15,".":12,"-":8,",":13}},"\u0423":{"d":"66,-69r-70,-171r41,0r46,122r40,-122r35,0v-28,72,-46,170,-85,228v-8,13,-30,13,-52,12r0,-34v29,4,38,-10,45,-35","w":153,"k":{"\u045e":-8,"\u0459":14,"\u0454":10,"\u044f":7,"\u044e":5,"\u0447":2,"\u0446":6,"\u0445":-5,"\u0444":11,"\u0443":-6,"\u0442":-7,"\u0441":10,"\u0440":5,"\u043f":5,"\u043e":10,"\u043d":5,"\u043c":5,"\u043b":11,"\u043a":5,"\u0438":5,"\u0437":6,"\u0436":-4,"\u0435":11,"\u0434":20,"\u0431":5,"\u0430":10,"\u0427":-9,"\u0424":6,"\u0423":-19,"\u0422":-20,"\u0421":3,"\u041e":3,"\u041b":7,"\u0417":-1,"\u0414":13,"\u0410":10,"\u040b":-19,"\u0409":7,"\u0404":3,"\u00bb":8,";":6,":":5,".":21,"-":6,",":22}},"\u0424":{"d":"130,-218v52,5,82,41,82,98v0,57,-27,90,-82,98r0,29r-33,0r0,-29v-54,-4,-81,-43,-82,-97v-1,-58,31,-94,82,-99r0,-30r33,0r0,30xm97,-189v-29,7,-43,30,-43,70v0,38,14,61,43,68r0,-138xm130,-51v29,-7,43,-30,43,-70v0,-38,-14,-61,-43,-68r0,138","w":227,"k":{"\u0459":6,"\u043b":3,"\u0434":12,"\u042f":4,"\u042a":7,"\u0427":2,"\u0425":9,"\u0423":9,"\u041b":2,"\u0416":10,"\u0414":9,"\u0410":6,"\u040e":9,"\u0409":2}},"\u0425":{"d":"3,-240r44,0r34,77r39,-77r37,0r-56,109r63,131r-44,0r-41,-92r-46,92r-38,0r64,-124","w":159,"k":{"\u0454":2,"\u0447":12,"\u0444":4,"\u0443":3,"\u0442":2,"\u0441":2,"\u043e":2,"\u0437":-4,"\u0435":2,"\u0430":-3,"\u0424":8,"\u0421":4,"\u041e":3,"\u0417":-1,"\u0404":4}},"\u0426":{"d":"23,0r0,-240r40,0r0,207r69,0r0,-207r40,0r0,207r25,0r0,84r-28,0r-4,-51r-142,0","w":197},"\u0427":{"d":"57,-240v6,45,-19,126,27,129v14,0,27,-7,39,-22r0,-107r39,0r0,240r-39,0r0,-101v-38,46,-106,18,-106,-55r0,-84r40,0","w":185},"\u0428":{"d":"23,0r0,-240r40,0r0,207r57,0r0,-207r40,0r0,207r57,0r0,-207r40,0r0,240r-234,0","w":280},"\u0429":{"d":"257,-33r25,0r0,84r-27,0r-5,-51r-227,0r0,-240r40,0r0,207r57,0r0,-207r40,0r0,207r57,0r0,-207r40,0r0,207","w":282},"\u042a":{"d":"189,-74v-1,43,-22,74,-68,74r-81,0r0,-207r-49,0r0,-33r89,0r0,93v68,-5,111,9,109,73xm150,-74v0,-42,-30,-43,-70,-41r0,82v40,2,70,2,70,-41","w":197,"k":{"\u044a":1,"\u042a":9,"\u0427":4,"\u0423":3,"\u0422":13,"\u040e":3,"\u040b":4}},"\u042b":{"d":"171,-74v0,44,-21,74,-67,74r-81,0r0,-240r40,0r0,93v68,-5,108,9,108,73xm132,-74v0,-43,-29,-43,-69,-41r0,82v40,2,69,1,69,-41xm191,-240r40,0r0,240r-40,0r0,-240","w":253},"\u042c":{"d":"171,-74v0,44,-21,74,-67,74r-81,0r0,-240r40,0r0,93v68,-5,108,9,108,73xm132,-74v0,-43,-29,-43,-69,-41r0,82v40,2,69,1,69,-41","w":180,"k":{"\u044a":1,"\u042a":9,"\u0427":4,"\u0423":3,"\u0422":13,"\u040e":3,"\u040b":4}},"\u042d":{"d":"43,-77v6,27,12,49,40,49v30,0,46,-27,48,-81r-72,0r0,-30r71,0v6,-79,-75,-100,-86,-29r-35,-11v10,-44,34,-65,74,-65v65,-1,88,56,88,124v0,69,-22,123,-86,124v-43,0,-69,-24,-78,-73","w":186,"k":{"\u0459":2,"\u042f":4,"\u042a":-2,"\u0427":2,"\u0423":6,"\u041b":1,"\u0414":4,"\u0410":4,"\u040e":6,"\u0409":1}},"\u042e":{"d":"268,-120v0,72,-22,124,-86,124v-54,0,-83,-38,-86,-114r-33,0r0,110r-40,0r0,-240r40,0r0,98r34,0v6,-68,33,-102,85,-102v64,0,86,52,86,124xm182,-28v39,0,44,-46,44,-92v0,-46,-3,-92,-44,-92v-40,0,-45,44,-45,92v0,47,5,92,45,92","w":283,"k":{"\u0459":2,"\u042f":3,"\u042a":-2,"\u0427":1,"\u0425":4,"\u0423":5,"\u0422":-1,"\u041b":1,"\u0416":5,"\u0414":3,"\u0410":4,"\u040e":5,"\u0409":1}},"\u042f":{"d":"167,-240v-74,-2,-149,-6,-149,69v0,30,13,51,37,63r-46,108r44,0r37,-100r37,0r0,100r40,0r0,-240xm127,-131v-41,4,-70,-4,-70,-41v0,-37,33,-39,70,-37r0,78","w":190},"\u0430":{"d":"110,-110v11,-49,-51,-62,-56,-17r-35,-5v4,-31,31,-50,67,-50v87,0,51,111,63,182r-34,0v-2,-6,-3,-17,-3,-30v-18,51,-102,43,-99,-17v3,-49,37,-65,97,-63xm75,-22v24,0,37,-32,35,-64v-34,-4,-59,8,-59,36v0,18,8,28,24,28","k":{"\u045e":3,"\u0459":-4,"\u0447":5,"\u0443":3,"\u0442":-3}},"\u0431":{"d":"83,4v-55,0,-70,-40,-70,-101v0,-96,23,-135,82,-146v3,-2,4,-7,5,-13r37,0v2,45,-66,29,-79,63v-3,8,-6,18,-8,30v46,-48,103,4,103,74v0,54,-21,93,-70,93xm82,-23v26,-2,33,-30,32,-64v0,-45,-11,-67,-32,-67v-22,0,-33,22,-33,67v0,36,7,60,33,64","k":{"\u045e":3,"\u0447":2,"\u0445":1,"\u0443":3,"\u0442":-2,"\u0436":1}},"\u0432":{"d":"116,-93v53,9,47,93,-7,93r-87,0r0,-178v55,1,126,-13,126,44v0,19,-11,33,-32,41xm114,-127v0,-31,-28,-26,-56,-26r0,51v27,0,56,6,56,-25xm58,-28v29,0,59,7,59,-27v0,-33,-30,-27,-59,-27r0,54","k":{"\u045e":1,"\u0447":4,"\u0445":-2,"\u0443":1,"\u0442":-4,"\u0437":-3,"\u0436":-1}},"\u0433":{"d":"115,-178r0,28r-57,0r0,150r-36,0r0,-178r93,0","w":115,"k":{"\u045e":-12,"\u0459":9,"\u0454":-1,"\u044f":-5,"\u0444":1,"\u0441":-1,"\u043e":-1,"\u043b":5,"\u0434":14,";":-1,":":-2,".":18,"-":14,",":19}},"\u0434":{"d":"24,-28r36,-150r55,0r32,150r13,0r0,69r-24,0r-5,-41r-91,0r-5,41r-24,0r0,-69r13,0xm56,-28r54,0r-24,-121r-5,0","w":162},"\u0435":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0","w":159,"k":{"\u045e":1,"\u044f":-1,"\u0443":1,"\u043b":-3,"\u0437":-4}},"\u0436":{"d":"153,-106r52,106r-38,0r-41,-82r-10,3r0,79r-34,0r0,-79r-10,-3r-42,82r-34,0r51,-94r-46,-84r36,0r37,70r8,2r0,-72r34,0r0,72r8,-2r37,-70r34,0","w":197,"k":{"\u045e":-10,"\u0444":2,"\u0437":-4,"\u0431":-1}},"\u0437":{"d":"93,-52v-1,-23,-13,-28,-39,-27r0,-23v23,-1,36,-4,35,-29v0,-17,-7,-26,-20,-26v-14,0,-23,10,-26,30r-32,-7v1,-60,119,-66,117,0v0,19,-10,32,-30,41v59,16,36,97,-26,97v-40,0,-58,-20,-65,-51r33,-6v3,43,55,41,53,1","w":143,"k":{"\u045e":1,"\u0459":-1,"\u0447":3,"\u0445":-1,"\u0442":-5,"\u043b":-4}},"\u0438":{"d":"92,-70v-12,23,-35,34,-34,70r-36,0r0,-178r36,0r-1,114v15,-31,37,-62,55,-91r0,-23r37,0r0,178r-37,0r1,-109v-5,13,-14,25,-21,39","w":170},"\u0439":{"d":"92,-70v-12,23,-35,34,-34,70r-36,0r0,-178r36,0r-1,114v15,-31,37,-62,55,-91r0,-23r37,0r0,178r-37,0r1,-109v-5,13,-14,25,-21,39xm31,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":170,"k":{"\u0459":-2}},"\u043a":{"d":"22,-178r36,0r0,80r58,-80r36,0r-46,62r51,116r-40,0r-35,-89r-24,33r0,56r-36,0r0,-178","w":153,"k":{"\u045e":-10,"\u0454":1,"\u0444":3,"\u0441":1,"\u043e":1,"\u0437":-3,"\u0435":1,"\u0431":-1,"\u0430":-2}},"\u043b":{"d":"-4,0r49,-178r42,0r46,178r-38,0r-32,-142r-35,142r-32,0","w":128},"\u043c":{"d":"21,0r0,-178r53,0r38,149r36,-149r50,0r0,178r-33,0r0,-145r-39,145r-38,0r-37,-145r0,145r-30,0","w":219},"\u043d":{"d":"22,0r0,-178r36,0r0,71r53,0r0,-71r37,0r0,178r-37,0r0,-79r-53,0r0,79r-36,0","w":169},"\u043e":{"d":"83,-182v48,0,70,36,70,91v0,63,-24,95,-71,95v-50,0,-69,-36,-69,-93v0,-62,23,-93,70,-93xm83,-23v44,0,43,-130,0,-131v-21,0,-31,21,-31,65v0,36,3,66,31,66","k":{"\u045e":3,"\u0459":2,"\u044a":-5,"\u0445":1,"\u0443":3,"\u0442":-2,"\u0436":1}},"\u043f":{"d":"22,0r0,-178r120,0r0,178r-37,0r0,-153r-47,0r0,153r-36,0","w":163},"\u0440":{"d":"159,-90v0,47,-17,93,-62,93v-17,0,-30,-7,-39,-21r0,78r-37,0r0,-238r34,0r0,30v9,-21,24,-33,44,-33v42,1,60,41,60,91xm120,-90v0,-82,-62,-80,-62,-14v0,39,-3,78,31,80v21,0,31,-22,31,-66","w":171,"k":{"\u045e":3,"\u0447":2,"\u0443":2,"\u0442":-2,"\u0436":1,";":5,":":4,".":2,"-":-8,",":4}},"\u0441":{"d":"13,-88v0,-54,19,-93,69,-94v36,0,58,21,63,64r-36,4v-4,-25,-5,-37,-27,-39v-29,4,-28,29,-31,68v-5,66,53,82,58,21r36,3v-5,44,-27,65,-65,65v-50,0,-67,-39,-67,-92","w":147,"k":{"\u0459":-1,"\u044f":-2,"\u0447":-1,"\u0445":-1,"\u0444":-2,"\u0443":-1,"\u0442":-7,"\u043e":-2,"\u043b":-4,"\u0437":-4,"\u0430":-2,"\u040e":2}},"\u0442":{"d":"38,0r0,-150r-41,0r0,-28r117,0r0,28r-39,0r0,150r-37,0","w":110,"k":{"\u045e":-13,"\u0459":5,"\u0454":-2,"\u044f":-6,"\u0447":-6,"\u0443":-13,"\u0442":-15,"\u0441":-2,"\u043e":-2,"\u043b":3,"\u0437":-7,"\u0435":-1,"\u0434":10,"\u0430":-2,"\u00bb":9,";":-3,":":-4,".":8,"-":4,",":9}},"\u0443":{"d":"0,-178r37,0r31,122r31,-122r33,0r-57,189v-8,37,-27,61,-71,50r0,-29v33,4,38,-7,46,-38","w":128,"k":{"\u0459":3,"\u044f":-3,"\u0447":-7,"\u0444":1,"\u0442":-16,"\u0437":-4,"\u0435":1,"\u0434":9,"\u00bb":-2,";":-3,":":-4,".":9,"-":-4,",":10}},"\u0444":{"d":"191,-88v-1,49,-27,83,-73,88r0,60r-32,0r0,-60v-46,-4,-73,-39,-73,-87v0,-51,24,-82,73,-91r0,-59r32,0r0,59v49,10,73,40,73,90xm86,-23r0,-131v-49,8,-50,123,0,131xm118,-23v50,-8,49,-123,0,-131r0,131","w":203,"k":{"\u045e":4,"\u0459":3,"\u044f":1,"\u044a":-2,"\u0447":2,"\u0445":3,"\u0443":4,"\u0436":4,"\u0434":8,"\u0433":1}},"\u0445":{"d":"-1,-178r41,0r26,52r27,-52r34,0r-45,81r53,97r-41,0r-32,-63r-34,63r-34,0r51,-92","w":128,"k":{"\u045e":-10,"\u0454":1,"\u0444":4,"\u0441":1,"\u043e":1,"\u0437":-2,"\u0435":1,"\u0430":-1}},"\u0446":{"d":"22,0r0,-178r36,0r0,150r49,0r0,-150r37,0r0,150r22,0r0,69r-24,0r-5,-41r-115,0","w":166},"\u0447":{"d":"98,-68v-28,25,-81,14,-81,-36r0,-74r36,0v4,33,-13,94,21,95v9,0,18,-3,24,-9r0,-86r36,0r0,178r-36,0r0,-68","w":156},"\u0448":{"d":"22,0r0,-178r36,0r0,150r44,0r0,-150r37,0r0,150r44,0r0,-150r36,0r0,178r-197,0","w":240},"\u0449":{"d":"22,0r0,-178r36,0r0,150r44,0r0,-150r37,0r0,150r44,0r0,-150r36,0r0,150r23,0r0,69r-25,0r-4,-41r-191,0","w":242},"\u044a":{"d":"67,-110v51,-4,87,5,87,55v0,66,-64,55,-124,55r0,-150r-39,0r0,-28r76,0r0,68xm67,-28v28,0,51,5,51,-28v0,-33,-22,-30,-51,-29r0,57","w":161,"k":{"\u045e":7,"\u044a":6,"\u0447":2,"\u0443":7,"\u0442":9,"\u0441":-2,"\u0435":-2}},"\u044b":{"d":"58,-110v52,-6,88,7,88,55v0,66,-64,55,-124,55r0,-178r36,0r0,68xm58,-28v28,0,52,5,52,-28v0,-33,-23,-30,-52,-29r0,57xm160,0r0,-178r37,0r0,178r-37,0","w":218},"\u044c":{"d":"58,-110v52,-6,88,7,88,55v0,66,-64,55,-124,55r0,-178r36,0r0,68xm58,-28v28,0,52,5,52,-28v0,-33,-23,-30,-52,-29r0,57","w":152,"k":{"\u045e":7,"\u044a":6,"\u0447":2,"\u0443":7,"\u0442":9,"\u0441":-2,"\u0435":-2}},"\u044d":{"d":"66,-182v50,0,70,39,69,93v0,62,-22,93,-67,93v-35,0,-57,-17,-63,-53r35,-7v2,20,11,30,26,30v21,0,31,-17,32,-52r-56,0r0,-25r55,0v3,-55,-48,-69,-57,-21r-35,-7v8,-34,28,-51,61,-51","w":148,"k":{"\u045e":3,"\u0459":2,"\u044a":-5,"\u0447":2,"\u0443":3,"\u0442":-2}},"\u044e":{"d":"155,-182v49,1,70,38,70,91v0,63,-23,95,-69,95v-43,0,-66,-27,-69,-83r-29,0r0,79r-36,0r0,-176r36,0r0,70r30,0v4,-51,26,-76,67,-76xm155,-23v27,-3,31,-30,31,-66v0,-35,-3,-65,-31,-65v-28,0,-31,30,-31,65v0,36,3,63,31,66","w":237,"k":{"\u045e":3,"\u0459":2,"\u044a":-5,"\u0447":2,"\u0445":1,"\u0443":3,"\u0442":-2,"\u0436":1}},"\u044f":{"d":"39,-78v-44,-19,-36,-100,28,-100r71,0r0,178r-37,0r0,-71r-32,0r-27,71r-37,0xm48,-123v0,28,24,29,53,27r0,-57v-29,-1,-53,-3,-53,30","w":156},"\u0451":{"d":"13,-86v-16,-90,102,-133,131,-50v4,14,7,31,7,53r-101,0v-11,62,55,83,66,27r33,4v-9,38,-31,56,-66,56v-47,0,-71,-36,-70,-90xm113,-108v0,-31,-10,-47,-30,-47v-19,0,-30,16,-32,47r62,0xm56,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm112,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":159},"\u0452":{"d":"90,-144v-48,0,-28,91,-32,144r-36,0r0,-201r-26,0r0,-22r26,0r0,-21r36,0r0,21r58,0r0,22r-58,0r0,51v10,-16,25,-24,43,-24v54,0,47,51,47,122v0,76,2,108,-59,112r-3,-25v33,-7,28,-37,28,-83v0,-42,-2,-68,-5,-79v-3,-11,-9,-17,-19,-17","w":164},"\u0453":{"d":"115,-178r0,28r-57,0r0,150r-36,0r0,-178r93,0xm41,-212r56,-50r19,24r-62,39","w":115,"k":{"\u0459":9,"\u044f":-5,"\u0444":1,"\u043b":5,"\u0434":13}},"\u0454":{"d":"13,-88v0,-54,19,-93,69,-94v33,0,53,17,61,51r-35,7v-3,-19,-12,-29,-26,-29v-19,0,-29,17,-31,50r56,0r0,25r-57,0v-5,56,52,72,59,22r34,7v-7,36,-27,53,-62,53v-45,0,-68,-30,-68,-92","w":148},"\u0455":{"d":"36,-86v-46,-25,-18,-96,35,-96v30,0,48,16,57,46r-28,8v-4,-32,-53,-37,-53,-5v0,42,92,23,88,81v-2,33,-29,56,-65,56v-38,0,-59,-17,-64,-51r31,-6v1,37,59,42,62,7v2,-27,-48,-28,-63,-40","w":141},"\u0456":{"d":"59,-201r-38,0r0,-39r38,0r0,39xm22,-178r36,0r0,178r-36,0r0,-178","w":79},"\u0457":{"d":"22,-178r36,0r0,178r-36,0r0,-178xm12,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm68,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":79},"\u0458":{"d":"60,-201r-39,0r0,-39r39,0r0,39xm-9,31v29,7,31,-5,31,-38r0,-171r37,0r0,172v5,54,-19,78,-68,67r0,-30","w":79},"\u0459":{"d":"162,-110v34,-1,47,24,49,55v4,63,-58,56,-116,55r-23,-142r-39,142r-33,0r54,-178r43,0r13,68r52,0xm127,-28v27,1,48,3,48,-28v0,-36,-29,-29,-60,-29","w":213,"k":{"\u045e":4,"\u044a":3,"\u0443":4,"\u0442":7}},"\u045a":{"d":"146,-106v49,-4,87,3,87,51v0,66,-64,55,-124,55r0,-81r-51,0r0,81r-36,0r0,-178r36,0r0,72r51,0r0,-72r37,0r0,72xm146,-28v27,0,51,4,51,-27v0,-31,-24,-26,-51,-26r0,53","w":240,"k":{"\u045e":7,"\u0454":-2,"\u044a":6,"\u0447":2,"\u0443":7,"\u0442":9,"\u0441":-2,"\u0435":-2}},"\u045b":{"d":"90,-144v-47,8,-28,91,-32,144r-37,0r0,-201r-25,0r0,-22r25,0r0,-22r37,0r0,22r57,0r0,22r-57,0r0,53v10,-17,23,-26,42,-26v73,-1,41,106,48,174r-37,0r0,-100v0,-27,0,-42,-21,-44","w":164},"\u045c":{"d":"22,-178r36,0r0,80r58,-80r36,0r-46,62r51,116r-40,0r-35,-89r-24,33r0,56r-36,0r0,-178xm60,-212r56,-50r19,24r-62,39","w":153,"k":{"\u045e":-10,"\u0454":1,"\u0444":4,"\u0441":1,"\u043e":1,"\u0437":-3,"\u0435":2,"\u0430":-2}},"\u045e":{"d":"0,-178r37,0r31,122r31,-122r33,0r-57,189v-8,37,-27,61,-71,50r0,-29v33,4,38,-7,46,-38xm15,-243r25,0v4,26,54,27,58,0r25,0v-6,29,-24,43,-54,43v-30,0,-48,-14,-54,-43","w":128,"k":{"\u0454":1,"\u044f":-1,"\u0447":-5,"\u0444":2,"\u0442":-15,"\u0441":1,"\u043e":1,"\u043b":1,"\u0437":-2,"\u0435":2,"\u0434":10,"\u0430":2}},"\u045f":{"d":"22,0r0,-178r36,0r0,150r49,0r0,-150r37,0r0,178r-46,0r-3,41r-25,0r-3,-41r-45,0"},"\u0490":{"d":"139,-285r0,78r-76,0r0,207r-40,0r0,-240r85,0r0,-45r31,0","w":135},"\u0491":{"d":"86,-178r0,-38r29,0r0,66r-57,0r0,150r-36,0r0,-178r64,0","w":115},"\u1e80":{"d":"1,-240r40,0r33,180r37,-180r35,0r37,180r34,-180r34,0r-51,241r-36,0r-38,-177r-37,177r-36,0xm164,-273r-13,13r-62,-39r19,-24","w":251},"\u1e81":{"d":"0,-178r36,0r26,122r26,-122r32,0r25,123r28,-123r30,0r-44,178r-31,0r-27,-123r-26,123r-31,0xm138,-212r-13,13r-62,-39r19,-24","w":202},"\u1e82":{"d":"1,-240r40,0r33,180r37,-180r35,0r37,180r34,-180r34,0r-51,241r-36,0r-38,-177r-37,177r-36,0xm94,-273r56,-50r19,24r-62,39","w":251},"\u1e83":{"d":"0,-178r36,0r26,122r26,-122r32,0r25,123r28,-123r30,0r-44,178r-31,0r-27,-123r-26,123r-31,0xm75,-212r56,-50r19,24r-62,39","w":202},"\u1e84":{"d":"1,-240r40,0r33,180r37,-180r35,0r37,180r34,-180r34,0r-51,241r-36,0r-38,-177r-37,177r-36,0xm100,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm156,-265v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":251},"\u1e85":{"d":"0,-178r36,0r26,122r26,-122r32,0r25,123r28,-123r30,0r-44,178r-31,0r-27,-123r-26,123r-31,0xm73,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v10,0,19,9,19,19v0,10,-9,18,-19,18xm129,-204v-10,0,-19,-8,-19,-18v0,-9,10,-19,19,-19v9,0,19,10,19,19v0,10,-9,18,-19,18","w":202},"\u1ef2":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,139r0,101r-40,0r0,-101xm109,-273r-13,13r-62,-39r19,-24","w":147},"\u1ef3":{"d":"0,-178r37,0r31,122r31,-122r33,0r-57,189v-8,37,-27,61,-71,50r0,-29v33,4,38,-7,46,-38xm100,-212r-13,13r-62,-39r19,-24","w":128},"\u2015":{"d":"11,-104r205,0r0,28r-205,0r0,-28","w":226},"\u2017":{"d":"0,18r180,0r0,25r-180,0r0,-25xm0,60r180,0r0,25r-180,0r0,-25","w":180},"\u201b":{"d":"57,-240r0,45r-17,0r21,43r-18,0r-24,-45r0,-43r38,0","w":79},"\u2032":{"d":"37,-144r-27,0r27,-96r40,0","w":76},"\u2033":{"d":"35,-144r-28,0r28,-96r40,0xm106,-144r-27,0r27,-96r40,0","w":136},"\u203c":{"d":"20,-240r49,0r-12,175r-24,0xm106,-240r49,0r-12,175r-24,0xm24,-44r41,0r0,44r-41,0r0,-44xm111,-44r40,0r0,44r-40,0r0,-44","w":180},"\u203e":{"d":"-7,-329r214,0r0,13r-214,0r0,-13","w":199},"\u2044":{"d":"61,-240r26,0r-117,240r-26,0","w":30},"\u207f":{"d":"69,-164v-1,-13,0,-20,-11,-20v-26,2,-13,60,-16,88r-28,0r0,-108r21,0r0,16v17,-30,63,-23,63,23r0,69r-29,0r0,-68","w":110},"\u20a4":{"d":"54,-161v-4,-49,17,-84,63,-83v28,0,48,12,58,38r-28,17v-6,-17,-17,-25,-30,-25v-23,0,-28,27,-24,53r49,0r0,26r-45,0v1,8,2,16,3,23r42,0r0,26r-41,0v-1,23,-11,42,-29,55v45,1,77,0,88,-32r28,14v-13,67,-105,45,-181,49r0,-32v39,3,58,-13,58,-54r-38,0r0,-26r35,0r-4,-23r-31,0r0,-26r27,0","w":183},"\u20a7":{"d":"152,-167v-2,53,-28,78,-90,73r0,94r-39,0r0,-240v73,-5,132,3,129,73xm111,-168v-1,-32,-12,-46,-49,-42r0,86v36,2,50,-9,49,-44xm222,1v-52,13,-70,-20,-63,-79r-19,0r0,-27r20,0r2,-40r30,-3r0,43r26,0r0,27r-26,0v-2,33,0,59,30,51r0,28xm323,-50v20,28,-9,54,-43,54v-28,0,-45,-11,-49,-33r28,-7v1,27,49,23,35,0v-22,-11,-60,-14,-59,-42v1,-42,82,-48,90,-6r-25,9v-4,-23,-41,-20,-29,2v11,5,51,14,52,23","w":341},"\u2105":{"d":"70,-223v-21,0,-19,18,-21,44v-4,45,36,53,38,13r27,2v-3,30,-18,46,-46,46v-32,0,-48,-21,-48,-63v0,-75,88,-86,94,-19r-27,3v-1,-16,-3,-26,-17,-26xm182,-240r25,0r-117,240r-25,0xm207,-122v34,1,48,26,49,62v0,43,-17,64,-50,64v-35,0,-51,-24,-50,-63v0,-42,17,-63,51,-63xm227,-60v0,-28,-7,-43,-21,-43v-14,0,-21,15,-21,43v0,28,7,43,21,43v14,0,21,-15,21,-43","w":275},"\u2113":{"d":"132,-244v17,0,28,14,27,33v0,35,-21,73,-63,115v-7,37,-11,59,-11,67v0,7,2,11,6,11v8,4,14,-22,23,-25v4,0,6,2,6,7v1,18,-21,41,-39,41v-27,0,-30,-40,-25,-72v-11,11,-16,16,-20,3v2,-13,15,-18,22,-29v8,-42,18,-78,30,-107v12,-29,26,-44,44,-44xm101,-126v19,-21,37,-51,39,-82v0,-10,-2,-15,-7,-15v-10,0,-21,32,-32,97","w":183},"\u2116":{"d":"22,-240r47,0r78,173r0,-173r34,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240xm258,-183v36,-1,53,25,52,62v0,43,-17,64,-52,64v-35,0,-52,-24,-52,-63v0,-42,17,-63,52,-63xm279,-120v0,-28,-7,-43,-21,-43v-14,0,-21,15,-21,43v0,28,7,42,21,42v14,0,21,-14,21,-42xm310,-30r0,30r-104,0r0,-30r104,0","w":318},"\u212e":{"d":"16,-93v0,-86,99,-132,157,-75v18,17,28,42,29,75r-146,0r0,65v37,35,99,25,122,-22r13,7v-23,32,-40,48,-82,49v-55,2,-93,-44,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0","w":216},"\u215b":{"d":"208,-146v46,-5,66,51,24,68v49,20,26,86,-27,80v-52,6,-71,-59,-23,-75v-41,-19,-22,-78,26,-73xm208,-126v-27,3,-24,33,2,39v25,-7,23,-38,-2,-39xm207,-19v35,-5,25,-36,-5,-44v-29,9,-25,46,5,44xm51,-241r22,0r0,123r25,0r0,22r-81,0r0,-22r27,0r0,-87v-8,7,-17,13,-27,18r0,-27v14,-7,25,-15,34,-27xm176,-240r26,0r-117,240r-26,0","w":275},"\u215c":{"d":"214,-146v46,-5,66,51,23,68v49,19,27,86,-26,80v-52,6,-71,-59,-23,-75v-41,-19,-22,-78,26,-73xm214,-126v-27,2,-25,34,2,39v24,-7,22,-39,-2,-39xm212,-19v18,0,33,-18,18,-31v-4,-4,-11,-8,-22,-13v-29,8,-25,44,4,44xm34,-181v20,0,38,1,37,-19v-2,-28,-37,-25,-40,1r-26,-6v6,-50,97,-52,96,2v0,14,-7,25,-22,31v51,18,23,78,-25,78v-31,0,-48,-13,-53,-41r27,-6v0,30,46,33,46,2v0,-18,-18,-22,-40,-21r0,-21xm184,-240r26,0r-117,240r-26,0","w":275},"\u215d":{"d":"215,-146v46,-5,66,51,24,68v49,19,27,85,-26,80v-52,6,-73,-59,-24,-75v-41,-19,-22,-78,26,-73xm215,-126v-27,3,-24,33,2,39v25,-7,23,-39,-2,-39xm214,-19v17,0,31,-17,18,-31v-4,-4,-11,-8,-22,-13v-30,8,-27,44,4,44xm110,-146v7,60,-95,72,-103,14r27,-6v5,31,46,27,46,-7v0,-30,-37,-33,-44,-10r-22,-4r4,-81r84,0r-3,25r-58,0r-2,32v28,-26,75,-3,71,37xm184,-240r26,0r-117,240r-26,0","w":275},"\u215e":{"d":"202,-146v46,-5,66,51,24,68v48,20,26,85,-26,80v-52,6,-73,-59,-24,-75v-41,-19,-22,-78,26,-73xm202,-126v-27,3,-24,33,2,39v25,-7,23,-38,-2,-39xm201,-19v17,0,31,-17,18,-31v-4,-4,-11,-8,-22,-13v-30,8,-27,44,4,44xm17,-240r92,0r0,19v-27,34,-41,76,-41,125r-32,0v0,-45,14,-85,43,-119r-64,0xm166,-240r26,0r-117,240r-26,0","w":275},"\u2190":{"d":"86,-154r14,0v-9,20,-21,38,-34,54r280,0r0,18r-280,0v12,12,23,30,34,54r-13,0v-26,-30,-51,-50,-73,-60r0,-7v21,-8,44,-28,72,-59","w":360},"\u2191":{"d":"27,-163v31,-28,50,-51,58,-72r9,0v10,22,29,46,59,72r0,14v-24,-11,-42,-23,-54,-35r0,259r-18,0r0,-259v-16,13,-34,26,-54,35r0,-14","w":180},"\u2192":{"d":"273,-154v28,31,52,51,73,59r0,7v-22,10,-47,30,-73,60r-13,0v11,-24,22,-42,34,-54r-280,0r0,-18r280,0v-13,-16,-25,-34,-34,-54r13,0","w":360},"\u2193":{"d":"27,3r0,-14v20,9,38,22,54,35r0,-259r18,0r0,259v12,-12,30,-24,54,-35r0,14v-30,26,-49,50,-59,72r-9,0v-8,-21,-27,-44,-58,-72","w":180},"\u2194":{"d":"346,-95r0,8v-21,9,-45,29,-71,59r-14,0v8,-20,19,-38,34,-54r-230,0v15,16,26,34,34,54r-14,0v-26,-30,-50,-50,-71,-59r0,-8v21,-9,45,-29,71,-59r14,0v-8,20,-19,38,-34,54r230,0v-15,-16,-26,-34,-34,-54r14,0v26,30,50,50,71,59","w":360},"\u2195":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71","w":180},"\u21a8":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71xm27,92r126,0r0,17r-126,0r0,-17","w":180},"\u221f":{"d":"64,-225r17,0r0,207r208,0r0,18r-225,0r0,-225","w":352},"\u2229":{"d":"129,-209v-94,-4,-75,111,-76,209r-19,0r0,-83v-7,-95,20,-137,95,-145v76,8,103,49,96,145r0,83r-19,0r0,-84v5,-79,-13,-122,-77,-125","w":258},"\u2261":{"d":"165,-155r-147,0r0,-29r147,0r0,29xm165,-105r-147,0r0,-30r147,0r0,30xm165,-56r-147,0r0,-29r147,0r0,29","w":183},"\u2302":{"d":"27,0r0,-111r81,-92r81,92r0,111r-162,0xm41,-14r134,0r0,-91r-67,-76r-67,76r0,91","w":216},"\u2310":{"d":"55,0r-41,0r0,-96r156,0r0,37r-115,0r0,59","w":183},"\u2320":{"d":"156,-270v-15,2,-23,-30,-33,-10r-2,371r-25,0r0,-319v-1,-42,18,-73,51,-77v26,-3,34,32,9,35","w":217},"\u2321":{"d":"61,55v16,-2,23,30,34,10r1,-370r25,0r0,318v2,43,-18,74,-51,78v-25,3,-33,-33,-9,-36","w":217},"\u2500":{"d":"259,-94r-263,0r0,-31r263,0r0,31","w":255},"\u2502":{"d":"112,109r0,-437r31,0r0,437r-31,0","w":255},"\u250c":{"d":"259,-125r0,31r-116,0r0,203r-31,0r0,-234r147,0","w":255},"\u2510":{"d":"112,-94r-116,0r0,-31r147,0r0,234r-31,0r0,-203","w":255},"\u2514":{"d":"112,-94r0,-234r31,0r0,203r116,0r0,31r-147,0","w":255},"\u2518":{"d":"143,-94r-147,0r0,-31r116,0r0,-203r31,0r0,234","w":255},"\u251c":{"d":"112,109r0,-437r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0","w":255},"\u2524":{"d":"112,109r0,-203r-116,0r0,-31r116,0r0,-203r31,0r0,437r-31,0","w":255},"\u252c":{"d":"112,-94r-116,0r0,-31r263,0r0,31r-116,0r0,203r-31,0r0,-203","w":255},"\u2534":{"d":"259,-94r-263,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31","w":255},"\u253c":{"d":"112,-94r-116,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0r0,-203","w":255},"\u2550":{"d":"259,-127r-263,0r0,-31r263,0r0,31xm259,-60r-263,0r0,-31r263,0r0,31","w":255},"\u2551":{"d":"146,109r0,-437r30,0r0,437r-30,0xm79,109r0,-437r31,0r0,437r-31,0","w":255},"\u2552":{"d":"112,109r0,-267r147,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":255},"\u2553":{"d":"79,109r0,-234r180,0r0,31r-83,0r0,203r-30,0r0,-203r-36,0r0,203r-31,0","w":255},"\u2554":{"d":"110,109r-31,0r0,-267r180,0r0,31r-149,0r0,236xm176,-60r0,169r-30,0r0,-200r113,0r0,31r-83,0","w":255},"\u2555":{"d":"112,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r147,0r0,267r-31,0r0,-169","w":255},"\u2556":{"d":"79,109r0,-203r-83,0r0,-31r180,0r0,234r-30,0r0,-203r-37,0r0,203r-30,0","w":255},"\u2557":{"d":"146,109r0,-236r-150,0r0,-31r180,0r0,267r-30,0xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169","w":255},"\u2558":{"d":"112,-60r0,-268r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-147,0","w":255},"\u2559":{"d":"259,-94r-180,0r0,-234r31,0r0,203r36,0r0,-203r30,0r0,203r83,0r0,31","w":255},"\u255a":{"d":"110,-328r0,237r149,0r0,31r-180,0r0,-268r31,0xm176,-158r83,0r0,31r-113,0r0,-201r30,0r0,170","w":255},"\u255b":{"d":"143,-60r-147,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,268","w":255},"\u255c":{"d":"176,-94r-180,0r0,-31r83,0r0,-203r30,0r0,203r37,0r0,-203r30,0r0,234","w":255},"\u255d":{"d":"146,-328r30,0r0,268r-180,0r0,-31r150,0r0,-237xm79,-158r0,-170r30,0r0,201r-113,0r0,-31r83,0","w":255},"\u255e":{"d":"112,109r0,-437r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":255},"\u255f":{"d":"146,109r0,-437r30,0r0,203r83,0r0,31r-83,0r0,203r-30,0xm79,109r0,-437r31,0r0,437r-31,0","w":255},"\u2560":{"d":"79,109r0,-437r31,0r0,437r-31,0xm146,-127r0,-201r30,0r0,170r83,0r0,31r-113,0xm146,109r0,-200r113,0r0,31r-83,0r0,169r-30,0","w":255},"\u2561":{"d":"112,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,437r-31,0r0,-169","w":255},"\u2562":{"d":"79,109r0,-203r-83,0r0,-31r83,0r0,-203r30,0r0,437r-30,0xm146,109r0,-437r30,0r0,437r-30,0","w":255},"\u2563":{"d":"146,109r0,-437r30,0r0,437r-30,0xm109,-328r0,201r-113,0r0,-31r83,0r0,-170r30,0xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169","w":255},"\u2564":{"d":"259,-127r-263,0r0,-31r263,0r0,31xm112,-60r-116,0r0,-31r263,0r0,31r-116,0r0,169r-31,0r0,-169","w":255},"\u2565":{"d":"79,109r0,-203r-83,0r0,-31r263,0r0,31r-83,0r0,203r-30,0r0,-203r-37,0r0,203r-30,0","w":255},"\u2566":{"d":"259,-127r-263,0r0,-31r263,0r0,31xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169xm146,109r0,-200r113,0r0,31r-83,0r0,169r-30,0","w":255},"\u2567":{"d":"259,-127r-263,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31xm259,-60r-263,0r0,-31r263,0r0,31","w":255},"\u2568":{"d":"259,-94r-263,0r0,-31r83,0r0,-203r30,0r0,203r37,0r0,-203r30,0r0,203r83,0r0,31","w":255},"\u2569":{"d":"109,-127r-113,0r0,-31r83,0r0,-170r30,0r0,201xm259,-127r-113,0r0,-201r30,0r0,170r83,0r0,31xm259,-60r-263,0r0,-31r263,0r0,31","w":255},"\u256a":{"d":"112,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0r0,-169","w":255},"\u256b":{"d":"79,109r0,-203r-83,0r0,-31r83,0r0,-203r30,0r0,203r37,0r0,-203r30,0r0,203r83,0r0,31r-83,0r0,203r-30,0r0,-203r-37,0r0,203r-30,0","w":255},"\u256c":{"d":"176,-158r83,0r0,31r-113,0r0,-201r30,0r0,170xm79,-158r0,-170r30,0r0,201r-113,0r0,-31r83,0xm79,-60r-83,0r0,-31r113,0r0,200r-30,0r0,-169xm176,-60r0,169r-30,0r0,-200r113,0r0,31r-83,0","w":255},"\u2580":{"d":"259,-109r-263,0r0,-219r263,0r0,219","w":255},"\u2584":{"d":"259,109r-263,0r0,-218r263,0r0,218","w":255},"\u2588":{"d":"-4,109r0,-437r263,0r0,437r-263,0","w":255},"\u258c":{"d":"-4,109r0,-437r131,0r0,437r-131,0","w":255},"\u2590":{"d":"128,109r0,-437r131,0r0,437r-131,0","w":255},"\u2591":{"d":"0,-328r21,0r0,22r-21,0r0,-22xm85,-328r21,0r0,22r-21,0r0,-22xm170,-328r21,0r0,22r-21,0r0,-22xm42,-284r22,0r0,22r-22,0r0,-22xm127,-284r21,0r0,22r-21,0r0,-22xm212,-284r21,0r0,22r-21,0r0,-22xm170,-240r21,0r0,22r-21,0r0,-22xm85,-240r21,0r0,22r-21,0r0,-22xm0,-240r21,0r0,22r-21,0r0,-22xm212,-196r21,0r0,22r-21,0r0,-22xm127,-196r21,0r0,22r-21,0r0,-22xm42,-196r22,0r0,22r-22,0r0,-22xm0,-152r21,0r0,22r-21,0r0,-22xm85,-152r21,0r0,22r-21,0r0,-22xm170,-152r21,0r0,22r-21,0r0,-22xm212,-109r21,0r0,22r-21,0r0,-22xm127,-109r21,0r0,22r-21,0r0,-22xm42,-109r22,0r0,22r-22,0r0,-22xm0,-65r21,0r0,22r-21,0r0,-22xm85,-65r21,0r0,22r-21,0r0,-22xm170,-65r21,0r0,22r-21,0r0,-22xm42,-21r22,0r0,22r-22,0r0,-22xm127,-21r21,0r0,22r-21,0r0,-22xm212,-21r21,0r0,22r-21,0r0,-22xm170,23r21,0r0,22r-21,0r0,-22xm85,23r21,0r0,22r-21,0r0,-22xm0,23r21,0r0,22r-21,0r0,-22xm42,67r22,0r0,22r-22,0r0,-22xm127,67r21,0r0,22r-21,0r0,-22xm212,67r21,0r0,22r-21,0r0,-22","w":255},"\u2592":{"d":"21,-328r21,0r0,22r-21,0r0,-22xm64,-328r21,0r0,22r-21,0r0,-22xm106,-328r21,0r0,22r-21,0r0,-22xm148,-328r22,0r0,22r-22,0r0,-22xm191,-328r21,0r0,22r-21,0r0,-22xm233,-328r21,0r0,22r-21,0r0,-22xm0,-284r21,0r0,22r-21,0r0,-22xm42,-284r22,0r0,22r-22,0r0,-22xm85,-284r21,0r0,22r-21,0r0,-22xm127,-284r21,0r0,22r-21,0r0,-22xm170,-284r21,0r0,22r-21,0r0,-22xm212,-284r21,0r0,22r-21,0r0,-22xm21,-240r21,0r0,22r-21,0r0,-22xm64,-240r21,0r0,22r-21,0r0,-22xm106,-240r21,0r0,22r-21,0r0,-22xm148,-240r22,0r0,22r-22,0r0,-22xm191,-240r21,0r0,22r-21,0r0,-22xm233,-240r21,0r0,22r-21,0r0,-22xm42,-196r22,0r0,22r-22,0r0,-22xm85,-196r21,0r0,22r-21,0r0,-22xm127,-196r21,0r0,22r-21,0r0,-22xm170,-196r21,0r0,22r-21,0r0,-22xm212,-196r21,0r0,22r-21,0r0,-22xm0,-196r21,0r0,22r-21,0r0,-22xm21,-152r21,0r0,22r-21,0r0,-22xm64,-152r21,0r0,22r-21,0r0,-22xm106,-152r21,0r0,22r-21,0r0,-22xm148,-152r22,0r0,22r-22,0r0,-22xm191,-152r21,0r0,22r-21,0r0,-22xm233,-152r21,0r0,22r-21,0r0,-22xm0,-109r21,0r0,22r-21,0r0,-22xm85,-109r21,0r0,22r-21,0r0,-22xm127,-109r21,0r0,22r-21,0r0,-22xm170,-109r21,0r0,22r-21,0r0,-22xm212,-109r21,0r0,22r-21,0r0,-22xm42,-109r22,0r0,22r-22,0r0,-22xm233,-65r21,0r0,22r-21,0r0,-22xm191,-65r21,0r0,22r-21,0r0,-22xm148,-65r22,0r0,22r-22,0r0,-22xm106,-65r21,0r0,22r-21,0r0,-22xm64,-65r21,0r0,22r-21,0r0,-22xm21,-65r21,0r0,22r-21,0r0,-22xm0,-21r21,0r0,22r-21,0r0,-22xm42,-21r22,0r0,22r-22,0r0,-22xm85,-21r21,0r0,22r-21,0r0,-22xm127,-21r21,0r0,22r-21,0r0,-22xm170,-21r21,0r0,22r-21,0r0,-22xm212,-21r21,0r0,22r-21,0r0,-22xm233,23r21,0r0,22r-21,0r0,-22xm191,23r21,0r0,22r-21,0r0,-22xm148,23r22,0r0,22r-22,0r0,-22xm106,23r21,0r0,22r-21,0r0,-22xm64,23r21,0r0,22r-21,0r0,-22xm21,23r21,0r0,22r-21,0r0,-22xm0,67r21,0r0,22r-21,0r0,-22xm42,67r22,0r0,22r-22,0r0,-22xm85,67r21,0r0,22r-21,0r0,-22xm127,67r21,0r0,22r-21,0r0,-22xm170,67r21,0r0,22r-21,0r0,-22xm212,67r21,0r0,22r-21,0r0,-22","w":255},"\u2593":{"d":"254,-262r0,66r-21,0r0,22r21,0r0,65r-21,0r0,22r21,0r0,66r-21,0r0,22r21,0r0,66r-21,0r0,22r21,0r0,21r-254,0r0,-65r21,0r0,-22r-21,0r0,-66r21,0r0,-22r-21,0r0,-65r21,0r0,-22r-21,0r0,-66r21,0r0,-22r-21,0r0,-66r21,0r0,-22r21,0r0,22r22,0r0,-22r21,0r0,22r21,0r0,-22r21,0r0,22r21,0r0,-22r22,0r0,22r21,0r0,-22r21,0r0,22r21,0r0,-22r21,0r0,44r-21,0r0,22r21,0xm21,-284r0,22r21,0r0,-22r-21,0xm64,-284r0,22r21,0r0,-22r-21,0xm106,-284r0,22r21,0r0,-22r-21,0xm148,-284r0,22r22,0r0,-22r-22,0xm191,-284r0,22r21,0r0,-22r-21,0xm233,-240r-21,0r0,22r21,0r0,-22xm191,-240r-21,0r0,22r21,0r0,-22xm148,-240r-21,0r0,22r21,0r0,-22xm106,-240r-21,0r0,22r21,0r0,-22xm64,-240r-22,0r0,22r22,0r0,-22xm21,-196r0,22r21,0r0,-22r-21,0xm64,-196r0,22r21,0r0,-22r-21,0xm106,-196r0,22r21,0r0,-22r-21,0xm148,-196r0,22r22,0r0,-22r-22,0xm191,-196r0,22r21,0r0,-22r-21,0xm64,-152r-22,0r0,22r22,0r0,-22xm85,-152r0,22r21,0r0,-22r-21,0xm127,-152r0,22r21,0r0,-22r-21,0xm170,-152r0,22r21,0r0,-22r-21,0xm212,-152r0,22r21,0r0,-22r-21,0xm21,-109r0,22r21,0r0,-22r-21,0xm106,-109r0,22r21,0r0,-22r-21,0xm85,-87r0,-22r-21,0r0,22r21,0xm148,-109r0,22r22,0r0,-22r-22,0xm191,-109r0,22r21,0r0,-22r-21,0xm233,-43r0,-22r-21,0r0,22r21,0xm191,-43r0,-22r-21,0r0,22r21,0xm148,-43r0,-22r-21,0r0,22r21,0xm106,-43r0,-22r-21,0r0,22r21,0xm64,-43r0,-22r-22,0r0,22r22,0xm21,-21r0,22r21,0r0,-22r-21,0xm64,-21r0,22r21,0r0,-22r-21,0xm106,-21r0,22r21,0r0,-22r-21,0xm148,-21r0,22r22,0r0,-22r-22,0xm191,-21r0,22r21,0r0,-22r-21,0xm233,45r0,-22r-21,0r0,22r21,0xm191,45r0,-22r-21,0r0,22r21,0xm148,45r0,-22r-21,0r0,22r21,0xm106,45r0,-22r-21,0r0,22r21,0xm64,45r0,-22r-22,0r0,22r22,0xm21,67r0,22r21,0r0,-22r-21,0xm64,67r0,22r21,0r0,-22r-21,0xm106,67r0,22r21,0r0,-22r-21,0xm148,67r0,22r22,0r0,-22r-22,0xm191,67r0,22r21,0r0,-22r-21,0","w":255},"\u25a0":{"d":"26,-166r166,0r0,166r-166,0r0,-166","w":217},"\u25a1":{"d":"26,-166r166,0r0,166r-166,0r0,-166xm39,-153r0,140r139,0r0,-140r-139,0","w":217},"\u25aa":{"d":"112,-167r0,96r-96,0r0,-96r96,0","w":127},"\u25ab":{"d":"112,-167r0,96r-96,0r0,-96r96,0xm98,-153r-68,0r0,68r68,0r0,-68","w":127},"\u25ac":{"d":"0,-124r360,0r0,68r-360,0r0,-68","w":360},"\u25b2":{"d":"53,0r125,-249r125,249r-250,0","w":356},"\u25ba":{"d":"51,-249r255,127r-255,127r0,-254","w":356},"\u25bc":{"d":"303,-244r-125,249r-125,-249r250,0","w":356},"\u25c4":{"d":"306,-249r0,254r-255,-127","w":356},"\u25cb":{"d":"31,-102v2,-43,34,-77,78,-77v44,0,76,33,77,77v1,41,-36,78,-77,78v-41,0,-80,-37,-78,-78xm173,-102v-1,-36,-28,-64,-64,-64v-36,0,-64,26,-64,64v0,35,29,65,64,65v35,0,64,-31,64,-65","w":217},"\u25cf":{"d":"109,-179v41,0,77,36,77,77v0,41,-36,78,-77,78v-41,0,-78,-37,-78,-78v0,-41,37,-77,78,-77","w":217},"\u25d8":{"d":"22,0r0,-172r173,0r0,172r-173,0xm144,-86v0,-19,-16,-36,-35,-36v-19,0,-37,16,-36,36v0,19,17,35,36,35v19,0,35,-16,35,-35","w":217},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm186,-101v-1,-44,-33,-78,-77,-78v-45,0,-76,34,-78,78v-1,41,37,77,78,77v41,0,79,-35,77,-77xm45,-101v0,-38,28,-65,64,-65v36,0,63,28,64,65v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":217},"\u25e6":{"d":"64,-169v26,0,50,24,50,50v0,27,-23,50,-50,50v-27,0,-50,-22,-50,-50v0,-27,23,-50,50,-50xm64,-82v20,0,37,-17,37,-37v0,-20,-17,-37,-37,-37v-20,0,-37,17,-37,37v0,20,17,37,37,37","w":127},"\u263a":{"d":"68,-91v0,-63,47,-112,112,-112v65,0,112,49,112,112v0,64,-48,112,-112,112v-64,0,-112,-48,-112,-112xm276,-91v0,-56,-42,-96,-96,-96v-54,0,-96,40,-96,96v0,55,40,96,96,96v56,0,96,-41,96,-96xm123,-114v0,-7,7,-14,14,-14v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14xm209,-114v0,-7,7,-14,14,-14v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14xm232,-55v-15,42,-88,44,-104,0r11,-6v16,34,66,33,82,0","w":360},"\u263b":{"d":"68,-91v0,-63,47,-112,112,-112v65,0,112,49,112,112v0,64,-48,112,-112,112v-64,0,-112,-48,-112,-112xm151,-114v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14v7,0,14,-7,14,-14xm237,-114v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14v7,0,14,-7,14,-14xm128,-55v15,42,88,44,104,0r-11,-6v-16,34,-66,33,-82,0","w":360},"\u263c":{"d":"97,-201v21,-13,34,-22,62,-25r0,-59r13,0r0,59v28,2,42,11,61,25r51,-50r9,9r-50,51v15,18,23,36,25,62r59,0r0,12r-59,0v-2,23,-10,43,-25,62r50,51r-10,9r-49,-50v-21,15,-32,22,-62,25r0,59r-13,0r0,-59v-28,-4,-43,-10,-61,-24r-52,49r-9,-9r50,-51v-14,-18,-22,-35,-25,-62r-59,0r0,-12r59,0v2,-28,10,-43,25,-61r-50,-51r9,-10xm255,-123v0,-52,-39,-90,-90,-90v-51,0,-90,38,-90,90v0,52,38,90,90,90v52,0,90,-38,90,-90","w":329},"\u2640":{"d":"227,-173v2,48,-40,92,-87,92r0,71r81,0r0,10r-81,0r0,77r-10,0r0,-77r-81,0r0,-10r81,0r0,-71v-47,-3,-87,-42,-87,-92v0,-53,39,-92,92,-92v53,0,91,39,92,92xm217,-173v-1,-47,-35,-82,-82,-82v-47,0,-82,35,-83,82v-1,44,38,83,83,83v45,0,83,-38,82,-83","w":270},"\u2642":{"d":"20,-46v-1,-59,58,-109,121,-87r63,-136r-94,47r-4,-10r108,-53r6,3r29,117r-10,3r-25,-102r-63,135v30,15,53,44,53,83v0,52,-40,92,-93,92v-52,0,-90,-39,-91,-92xm194,-46v-2,-47,-35,-82,-83,-82v-48,1,-80,35,-82,82v-1,45,38,83,82,83v44,1,84,-38,83,-83","w":270},"\u2660":{"d":"117,-82v-10,43,-87,45,-84,-5v3,-61,81,-67,85,-129v6,56,81,73,86,128v2,20,-18,40,-39,40v-23,-1,-35,-15,-45,-34v0,50,20,72,67,75r1,7r-139,0r1,-7v46,1,68,-28,67,-75","w":236},"\u2663":{"d":"178,-48v-32,-3,-44,-17,-58,-42v2,56,20,74,72,84r1,6r-149,0r1,-6v52,-7,68,-32,71,-84v-13,52,-106,57,-106,-7v0,-38,36,-63,71,-40v-27,-30,-5,-79,37,-79v41,0,64,47,37,79v31,-22,71,0,71,39v0,27,-20,52,-48,50","w":236},"\u2665":{"d":"118,-172v6,-54,96,-58,96,0v0,72,-83,110,-96,176v-11,-65,-87,-105,-96,-174v-3,-25,21,-47,45,-46v27,1,44,19,51,44","w":236},"\u2666":{"d":"118,4v-26,-44,-41,-62,-81,-110v21,-23,63,-78,81,-111v17,33,60,87,81,111v-17,18,-66,81,-81,110","w":236},"\u266a":{"d":"7,-33v-1,-37,44,-54,78,-35r0,-172v69,-5,91,20,88,87r-17,0v3,-35,-20,-48,-53,-47r0,147v12,65,-94,84,-96,20","w":180},"\u266b":{"d":"15,-17v-1,-38,45,-54,79,-35r0,-171r140,-44r0,195v12,66,-94,79,-97,19v-1,-37,46,-54,79,-36r0,-127r-105,32r0,147v3,41,-20,57,-55,59v-26,1,-41,-15,-41,-39","w":270},"\uf001":{"d":"27,-178v-3,-56,18,-73,69,-68r0,30v-27,-3,-36,5,-33,38r31,0r0,30r-31,0r0,148r-36,0r0,-148r-23,0r0,-30r23,0xm151,-201r-38,0r0,-39r38,0r0,39xm114,-178r36,0r0,178r-36,0r0,-178","w":171},"\uf002":{"d":"27,-178v-3,-56,18,-73,69,-68r0,30v-27,-3,-36,5,-33,38r31,0r0,30r-31,0r0,148r-36,0r0,-148r-23,0r0,-30r23,0xm113,-240r37,0r0,240r-37,0r0,-240","w":171},"\uf003":{"d":"65,-243r32,0r0,91r19,0r0,23r-19,0r0,33r-29,0r0,-33r-59,0r0,-20xm69,-150r0,-66r-36,66r36,0","w":122},"\uf004":{"d":"88,-240r34,0r-26,67r-17,0","w":180},"\uf005":{"d":"75,19r33,0r-26,65r-16,0","w":180},"\u00a4":{"d":"123,-174r25,-25r20,20r-25,25v12,18,12,42,0,61r25,24r-21,21r-25,-24v-20,11,-41,11,-60,-1r-25,25r-20,-20r24,-25v-11,-19,-11,-43,0,-61r-25,-25r21,-21r25,25v18,-12,44,-10,61,1xm92,-154v-16,-1,-31,14,-31,30v0,16,15,31,31,31v17,0,31,-15,31,-31v0,-17,-14,-30,-31,-30","w":184}}});
;

/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
;(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;

;(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);;

/*
 * Supposition v0.2 - an optional enhancer for Superfish jQuery menu widget
 *
 * Copyright (c) 2008 Joel Birch - based mostly on work by Jesse Klaasse and credit goes largely to him.
 * Special thanks to Karl Swedberg for valuable input.
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 */

(function($){

	$.fn.supposition = function(){
		var $w = $(window), /*do this once instead of every onBeforeShow call*/
			_offset = function(dir) {
				return window[dir == 'y' ? 'pageYOffset' : 'pageXOffset']
				|| document.documentElement && document.documentElement[dir=='y' ? 'scrollTop' : 'scrollLeft']
			    || document.body[dir=='y' ? 'scrollTop' : 'scrollLeft'];
			},
			onInit = function(){
				/* I haven't touched this bit - needs work as there are still z-index issues */
				$topNav = $('li',this);
				var cZ=parseInt($topNav.css('z-index')) + $topNav.length;
				$topNav.each(function() {
					$(this).css({zIndex:--cZ});
				});
			},
			onHide = function(){
				this.css({marginTop:'',marginLeft:''});
			},
			onBeforeShow = function(){
				this.each(function(){
					var $u = $(this);
					$u.css('display','block');
					var menuWidth = $u.width(),
						parentWidth = $u.parents('ul').width(),
						totalRight = $w.width() + _offset('x'),
						menuRight = $u.offset().left + menuWidth;
					if (menuRight > totalRight) {
						$u.css('margin-left', ($u.parents('ul').length == 1 ? totalRight - menuRight : -(menuWidth + parentWidth)) + 'px');
					}

					var windowHeight = $w.height(),
						offsetTop = $u.offset().top,
						menuHeight = $u.height(),
						baseline = windowHeight + _offset('y');
					var expandUp = (offsetTop + menuHeight > baseline);
					if (expandUp) {
						$u.css('margin-top',baseline - (menuHeight + offsetTop));
					}
					$u.css('display','none');
				});
			};
		
		return this.each(function() {
			var o = $.fn.superfish.o[this.serial]; /* get this menu's options */
			
			/* if callbacks already set, store them */
			var _onInit = o.onInit,
				_onBeforeShow = o.onBeforeShow,
				_onHide = o.onHide;
				
			$.extend($.fn.superfish.o[this.serial],{
				onInit		: function() {
					onInit.call(this); /* fire our Supposition callback */
					_onInit.call(this); /* fire stored callbacks */
				},
				onBeforeShow: function() {
					onBeforeShow.call(this); /* fire our Supposition callback */
					_onBeforeShow.call(this); /* fire stored callbacks */
				},
				onHide		: function() {
					onHide.call(this); /* fire our Supposition callback */
					_onHide.call(this); /* fire stored callbacks */
				}
			});
		});
	};

})(jQuery);;

/*
 * Supersubs v0.2b - jQuery plugin
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 *
 * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
 * their longest list item children. If you use this, please expect bugs and report them
 * to the jQuery Google Group with the word 'Superfish' in the subject line.
 *
 */

;(function($){ // $ will refer to jQuery within this closure

	$.fn.supersubs = function(options){
		var opts = $.extend({}, $.fn.supersubs.defaults, options);
		// return original object to support chaining
		return this.each(function() {
			// cache selections
			var $$ = $(this);
			// support metadata
			var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
			// get the font size of menu.
			// .css('fontSize') returns various results cross-browser, so measure an em dash instead
			var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
				'padding' : 0,
				'position' : 'absolute',
				'top' : '-999em',
				'width' : 'auto'
			}).appendTo($$).width(); //clientWidth is faster, but was incorrect here
			// remove em dash
			$('#menu-fontsize').remove();
			// cache all ul elements
			$ULs = $$.find('ul');
			// loop through each ul in menu
			$ULs.each(function(i) {	
				// cache this ul
				var $ul = $ULs.eq(i);
				// get all (li) children of this ul
				var $LIs = $ul.children();
				// get all anchor grand-children
				var $As = $LIs.children('a');
				// force content to one line and save current float property
				var liFloat = $LIs.css('white-space','nowrap').css('float');
				// remove width restrictions and floats so elements remain vertically stacked
				var emWidth = $ul.add($LIs).add($As).css({
					'float' : 'none',
					'width'	: 'auto'
				})
				// this ul will now be shrink-wrapped to longest li due to position:absolute
				// so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
				.end().end()[0].clientWidth / fontsize;
				// add more width to ensure lines don't turn over at certain sizes in various browsers
				emWidth += o.extraWidth;
				// restrict to at least minWidth and at most maxWidth
				if (emWidth > o.maxWidth)		{ emWidth = o.maxWidth; }
				else if (emWidth < o.minWidth)	{ emWidth = o.minWidth; }
				emWidth += 'em';
				// set ul to width in ems
				$ul.css('width',emWidth);
				// restore li floats to avoid IE bugs
				// set li width to full width of this ul
				// revert white-space to normal
				$LIs.css({
					'float' : liFloat,
					'width' : '100%',
					'white-space' : 'normal'
				})
				// update offset position of descendant ul to reflect new width of parent
				.each(function(){
					var $childUl = $('>ul',this);
					var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
					$childUl.css(offsetDirection,emWidth);
				});
			});
			
		});
	};
	// expose defaults
	$.fn.supersubs.defaults = {
		minWidth		: 9,		// requires em unit.
		maxWidth		: 25,		// requires em unit.
		extraWidth		: 0			// extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
	};
	
})(jQuery); // plugin code ends
;

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

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

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

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

})(jQuery);
;

Drupal.behaviors.fusionEqualheights = function (context) {
  if (jQuery().equalHeights) {
    $("#header-top-wrapper div.equal-heights div.content").equalHeights();
    $("#header-group-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-top-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-first div.equal-heights div.content").equalHeights();
    $("#content-top div.equal-heights div.content").equalHeights();
    $("#content-region div.equal-heights div.content").equalHeights();
    $("#content-bottom div.equal-heights div.content").equalHeights();
    $("#node-top div.equal-heights div.content").equalHeights();
    $("#node-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-last div.equal-heights div.content").equalHeights();
    $("#postscript-top div.equal-heights div.content").equalHeights();
    $("#postscript-bottom-wrapper div.equal-heights div.content").equalHeights();
    $("#footer-wrapper div.equal-heights div.content").equalHeights();
  }
};

Drupal.behaviors.fusionIE6fixes = function (context) {
  // IE6 & less-specific functions
  // Add hover class to primary menu li elements on hover
  if ($.browser.msie && ($.browser.version < 7)) {
    $('form input.form-submit').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#primary-menu ul.sf-menu li.expanded').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('.sf-menu li').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#search input#search_header').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
  };
};

Drupal.behaviors.fusionOverlabel = function (context) {
  if (jQuery().overlabel) {
    $("div.fusion-horiz-login label").overlabel();
  }
};

Drupal.behaviors.fusionSuperfish = function (context) {
  $("#primary-menu ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionSuperfishBlocks = function (context) {
  $("div.block ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionGridMask = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    var grid_width_pos = parseInt($('body').attr('class').indexOf('grid-width-')) + 11;
    var grid_width = $('body').attr('class').substring(grid_width_pos, grid_width_pos + 2);
    var grid = '<div id="grid-mask-overlay" class="full-width"><div class="row">';
    for (i = 1; i <= grid_width; i++) {
      grid += '<div class="block grid' + grid_width + '-1"><div class="inner"></div></div>';
    }
    grid += '</div></div>';
    $('body.grid-mask-enabled').prepend(grid);
    $('#grid-mask-overlay .row').addClass('grid' + grid_width + '-' + grid_width);
    $('#grid-mask-overlay .block .inner').height($('body').height());
  }
};

Drupal.behaviors.fusionGridMaskToggle = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    $('body.grid-mask-enabled').prepend('<div id="grid-mask-toggle">grid</div>');
    $('div#grid-mask-toggle')
      .toggle( function () {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      },
      function() {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      });
  }
};

Drupal.behaviors.fusionPanelsShowEdit = function (context) {
  // Sets parent row and block elements to have "overflow: visible" if editing Panel page
  if ($("#panels-edit-display-form").size() > 0 || $("#page-manager-edit").size() > 0) {
    $("#panels-edit-display-form").parents('.row, .block').css("overflow", "visible");
    $("#page-manager-edit").parents('.row, .block').css("overflow", "visible");
  }
};

Drupal.behaviors.fusionScreenshotpreview = function (context) {
  // Displays Skinr previews
  if ($('span.preview-icon').size() > 0) {
    // configure distance of preview from the cursor
    var xOffset = 20;
    var yOffset = 0;
  
    $('span.preview-icon').hover(function(e){
      var img_class = this.id;
      var caption = $(this).parent().text();
      // add preview markup
      $('body').append('<div id="screenshot">' +
                       '<div class="screenshot-preview ' + img_class + '" alt="preview"></div>' + 
                       '<div class="screenshot-caption">' + caption + '</div>' +
                       '</div>');
      $("#screenshot").hide();  // hide preview until dimensions are set
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");  // set initial preview position
      // load image in order to set preview dimensions
      var img = new Image();
      img.onload = function() {
        var caption_height = parseFloat($("#screenshot .screenshot-caption").css("height"));
        $("#screenshot").css("height", img.height + caption_height);
        $("#screenshot").css("width", img.width);
        $("#screenshot ." + img_class).css("height", img.height);
        $("#screenshot ." + img_class).css("width", img.width);
        $("#screenshot .screenshot-caption").css("width", img.width - 10);
        $("#screenshot").fadeIn("fast");  // now show preview
      }
      img.src = $("." + img_class).css("background-image").replace(/^url|[\(\)\"]/g, '');
    },
    function(){
      $("#screenshot").remove();
    });
    // adjust preview position with cursor movement
    $("span.preview-icon").mousemove(function(e){
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");
    });
  }
};
;

