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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/*	ColorBox v1.3.6 - a full featured, light-weight, customizable lightbox based on jQuery 1.3 */
(function(c){function r(b,d){d=d==="x"?m.width():m.height();return typeof b==="string"?Math.round(b.match(/%/)?d/100*parseInt(b,10):parseInt(b,10)):b}function M(b){b=c.isFunction(b)?b.call(i):b;return a.photo||b.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i)}function Y(){for(var b in a)if(c.isFunction(a[b])&&b.substring(0,2)!=="on")a[b]=a[b].call(i);a.rel=a.rel||i.rel;a.href=a.href||i.href;a.title=a.title||i.title}function Z(b){i=b;a=c.extend({},c(i).data(q));Y();if(a.rel&&a.rel!=="nofollow"){g= c(".cboxElement").filter(function(){return(c(this).data(q).rel||this.rel)===a.rel});j=g.index(i);if(j<0){g=g.add(i);j=g.length-1}}else{g=c(i);j=0}if(!B){C=B=n;N=i;N.blur();c(document).bind("keydown.cbox_close",function(d){if(d.keyCode===27){d.preventDefault();e.close()}}).bind("keydown.cbox_arrows",function(d){if(g.length>1)if(d.keyCode===37){d.preventDefault();D.click()}else if(d.keyCode===39){d.preventDefault();E.click()}});a.overlayClose&&s.css({cursor:"pointer"}).one("click",e.close);c.event.trigger(aa); a.onOpen&&a.onOpen.call(i);s.css({opacity:a.opacity}).show();a.w=r(a.initialWidth,"x");a.h=r(a.initialHeight,"y");e.position(0);O&&m.bind("resize.cboxie6 scroll.cboxie6",function(){s.css({width:m.width(),height:m.height(),top:m.scrollTop(),left:m.scrollLeft()})}).trigger("scroll.cboxie6")}P.add(D).add(E).add(t).add(Q).hide();R.html(a.close).show();e.slideshow();e.load()}var q="colorbox",F="hover",n=true,e,x=c.browser.msie&&!c.support.opacity,O=x&&c.browser.version<7,aa="cbox_open",H="cbox_load",S= "cbox_complete",T="resize.cbox_resize",s,k,u,p,U,V,W,X,g,m,l,I,J,K,Q,P,t,E,D,R,y,z,v,w,i,N,j,a,B,C,$={transition:"elastic",speed:350,width:false,height:false,innerWidth:false,innerHeight:false,initialWidth:"400",initialHeight:"400",maxWidth:false,maxHeight:false,scalePhotos:n,scrolling:n,inline:false,html:false,iframe:false,photo:false,href:false,title:false,rel:false,opacity:0.9,preloading:n,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:false,overlayClose:n, slideshow:false,slideshowAuto:n,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:false,onLoad:false,onComplete:false,onCleanup:false,onClosed:false};e=c.fn.colorbox=function(b,d){var h=this;if(!h.length)if(h.selector===""){h=c("<a/>");b.open=n}else return this;h.each(function(){var f=c.extend({},c(this).data(q)?c(this).data(q):$,b);c(this).data(q,f).addClass("cboxElement");if(d)c(this).data(q).onComplete=d});b&&b.open&&Z(h);return this};e.init=function(){function b(d){return c('<div id="cbox'+ d+'"/>')}m=c(window);k=c('<div id="colorbox"/>');s=b("Overlay").hide();u=b("Wrapper");p=b("Content").append(l=b("LoadedContent").css({width:0,height:0}),J=b("LoadingOverlay"),K=b("LoadingGraphic"),Q=b("Title"),P=b("Current"),t=b("Slideshow"),E=b("Next"),D=b("Previous"),R=b("Close"));u.append(c("<div/>").append(b("TopLeft"),U=b("TopCenter"),b("TopRight")),c("<div/>").append(V=b("MiddleLeft"),p,W=b("MiddleRight")),c("<div/>").append(b("BottomLeft"),X=b("BottomCenter"),b("BottomRight"))).children().children().css({"float":"left"}); I=c("<div style='position:absolute; top:0; left:0; width:9999px; height:0;'/>");c("body").prepend(s,k.append(u,I));if(x){k.addClass("cboxIE");O&&s.css("position","absolute")}p.children().bind("mouseover mouseout",function(){c(this).toggleClass(F)}).addClass(F);y=U.height()+X.height()+p.outerHeight(n)-p.height();z=V.width()+W.width()+p.outerWidth(n)-p.width();v=l.outerHeight(n);w=l.outerWidth(n);k.css({"padding-bottom":y,"padding-right":z}).hide();E.click(e.next);D.click(e.prev);R.click(e.close);p.children().removeClass(F); c(".cboxElement").live("click",function(d){if(d.button!==0&&typeof d.button!=="undefined")return n;else{Z(this);return false}})};e.position=function(b,d){function h(A){U[0].style.width=X[0].style.width=p[0].style.width=A.style.width;K[0].style.height=J[0].style.height=p[0].style.height=V[0].style.height=W[0].style.height=A.style.height}var f=m.height();f=Math.max(f-a.h-v-y,0)/2+m.scrollTop();var o=Math.max(document.documentElement.clientWidth-a.w-w-z,0)/2+m.scrollLeft();b=k.width()===a.w+w&&k.height()=== a.h+v?0:b;u[0].style.width=u[0].style.height="9999px";k.dequeue().animate({width:a.w+w,height:a.h+v,top:f,left:o},{duration:b,complete:function(){h(this);C=false;u[0].style.width=a.w+w+z+"px";u[0].style.height=a.h+v+y+"px";d&&d()},step:function(){h(this)}})};e.resize=function(b){function d(){a.w=a.w||l.width();a.w=a.mw&&a.mw<a.w?a.mw:a.w;return a.w}function h(){a.h=a.h||l.height();a.h=a.mh&&a.mh<a.h?a.mh:a.h;return a.h}function f(G){e.position(G,function(){if(B){if(x){A&&l.fadeIn(100);k[0].style.removeAttribute("filter")}if(a.iframe)l.append("<iframe id='cboxIframe'"+ (a.scrolling?" ":"scrolling='no'")+" name='iframe_"+(new Date).getTime()+"' frameborder=0 src='"+a.href+"' "+(x?"allowtransparency='true'":"")+" />");l.show();Q.show().html(a.title);if(g.length>1){P.html(a.current.replace(/\{current\}/,j+1).replace(/\{total\}/,g.length)).show();E.html(a.next).show();D.html(a.previous).show();a.slideshow&&t.show()}J.hide();K.hide();c.event.trigger(S);a.onComplete&&a.onComplete.call(i);a.transition==="fade"&&k.fadeTo(L,1,function(){x&&k[0].style.removeAttribute("filter")}); m.bind(T,function(){e.position(0)})}})}if(B){var o,A,L=a.transition==="none"?0:a.speed;m.unbind(T);if(b){l.remove();l=c('<div id="cboxLoadedContent"/>').html(b);l.hide().appendTo(I).css({width:d(),overflow:a.scrolling?"auto":"hidden"}).css({height:h()}).prependTo(p);c("#cboxPhoto").css({cssFloat:"none"});O&&c("select:not(#colorbox select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("cbox_cleanup",function(){this.style.visibility="inherit"});a.transition=== "fade"&&k.fadeTo(L,0,function(){f(0)})||f(L);if(a.preloading&&g.length>1){b=j>0?g[j-1]:g[g.length-1];o=j<g.length-1?g[j+1]:g[0];o=c(o).data(q).href||o.href;b=c(b).data(q).href||b.href;M(o)&&c("<img />").attr("src",o);M(b)&&c("<img />").attr("src",b)}}else setTimeout(function(){var G=l.wrapInner("<div style='overflow:auto'></div>").children();a.h=G.height();l.css({height:a.h});G.replaceWith(G.children());e.position(L)},1)}};e.load=function(){var b,d,h,f=e.resize;C=n;i=g[j];a=c.extend({},c(i).data(q)); Y();c.event.trigger(H);a.onLoad&&a.onLoad.call(i);a.h=a.height?r(a.height,"y")-v-y:a.innerHeight?r(a.innerHeight,"y"):false;a.w=a.width?r(a.width,"x")-w-z:a.innerWidth?r(a.innerWidth,"x"):false;a.mw=a.w;a.mh=a.h;if(a.maxWidth){a.mw=r(a.maxWidth,"x")-w-z;a.mw=a.w&&a.w<a.mw?a.w:a.mw}if(a.maxHeight){a.mh=r(a.maxHeight,"y")-v-y;a.mh=a.h&&a.h<a.mh?a.h:a.mh}b=a.href;J.show();K.show();if(a.inline){c('<div id="cboxInlineTemp" />').hide().insertBefore(c(b)[0]).bind(H+" cbox_cleanup",function(){c(this).replaceWith(l.children())}); f(c(b))}else if(a.iframe)f(" ");else if(a.html)f(a.html);else if(M(b)){d=new Image;d.onload=function(){var o;d.onload=null;d.id="cboxPhoto";c(d).css({margin:"auto",border:"none",display:"block",cssFloat:"left"});if(a.scalePhotos){h=function(){d.height-=d.height*o;d.width-=d.width*o};if(a.mw&&d.width>a.mw){o=(d.width-a.mw)/d.width;h()}if(a.mh&&d.height>a.mh){o=(d.height-a.mh)/d.height;h()}}if(a.h)d.style.marginTop=Math.max(a.h-d.height,0)/2+"px";f(d);g.length>1&&c(d).css({cursor:"pointer"}).click(e.next); if(x)d.style.msInterpolationMode="bicubic"};d.src=b}else c("<div />").appendTo(I).load(b,function(o,A){A==="success"?f(this):f(c("<p>Request unsuccessful.</p>"))})};e.next=function(){if(!C){j=j<g.length-1?j+1:0;e.load()}};e.prev=function(){if(!C){j=j>0?j-1:g.length-1;e.load()}};e.slideshow=function(){function b(){t.text(a.slideshowStop).bind(S,function(){h=setTimeout(e.next,a.slideshowSpeed)}).bind(H,function(){clearTimeout(h)}).one("click",function(){d();c(this).removeClass(F)});k.removeClass(f+ "off").addClass(f+"on")}var d,h,f="cboxSlideshow_";t.bind("cbox_closed",function(){t.unbind();clearTimeout(h);k.removeClass(f+"off "+f+"on")});d=function(){clearTimeout(h);t.text(a.slideshowStart).unbind(S+" "+H).one("click",function(){b();h=setTimeout(e.next,a.slideshowSpeed);c(this).removeClass(F)});k.removeClass(f+"on").addClass(f+"off")};if(a.slideshow&&g.length>1)a.slideshowAuto?b():d()};e.close=function(){c.event.trigger("cbox_cleanup");a.onCleanup&&a.onCleanup.call(i);B=false;c(document).unbind("keydown.cbox_close keydown.cbox_arrows"); m.unbind(T+" resize.cboxie6 scroll.cboxie6");s.css({cursor:"auto"}).fadeOut("fast");k.stop(n,false).fadeOut("fast",function(){c("#colorbox iframe").attr("src","about:blank");l.remove();k.css({opacity:1});try{N.focus()}catch(b){}c.event.trigger("cbox_closed");a.onClosed&&a.onClosed.call(i)})};e.element=function(){return c(i)};e.settings=$;c(e.init)})(jQuery);;
// $Id: colorbox.js,v 1.6.2.5 2010/11/30 06:56:48 frjo Exp $
(function ($) {

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

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

})(jQuery);
;
// $Id: googleanalytics.js,v 1.9.2.8 2011/02/05 19:53:32 hass Exp $

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
          setTimeout('document.location = "' + this.href + '"', 100);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
            setTimeout('document.location = "' + this.href + '"', 100);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
  
            // First, delay the outbound click by a fraction of a second.
            // This delay will hardly be noticeable by the user, but it will provide the
            // browser more time load the tracking code. Without this method, it's possible
            // that a user can click on the outbound link before the tracking code loads,
            // in which case the event will not be recorded.
            // See http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55527
            setTimeout('document.location = "' + this.href + '"', 100);
          }
        }
      }
    });
  });
});
;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

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

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.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: colorbox_inline.js,v 1.1.2.2 2010/09/21 12:43:29 frjo Exp $
(function ($) {

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

})(jQuery);
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface © Kimberly Geswein. 2007 All Rights Reserved
 * 
 * Description:
 * This font was created using FontCreator 5.5 from High-Logic.com
 * 
 * Designer:
 * Kimberly Geswein
 */
Cufon.registerFont({"w":100,"face":{"font-family":"You Are Loved","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"13","bbox":"-2.75 -336 274.013 65","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{},"\u00a0":{},"!":{"d":"14,-294v9,-16,44,-2,70,-6r-5,112r-4,91v-1,20,0,25,-11,25v3,1,1,4,-1,5v-13,-1,-32,4,-39,-3r-6,-152v5,-3,12,-8,7,-9v0,2,0,4,-3,3v-7,-3,-7,-16,-3,-22v5,4,8,5,12,3r-1,-2v0,-2,5,-3,15,-4v-1,-10,-24,4,-16,-7v7,-1,25,4,21,-5v-11,0,-40,6,-34,-9v4,0,11,2,9,-4v-13,-1,-8,-8,-11,-16xm29,-262v0,-1,1,-1,2,-1v0,1,-1,1,-2,1xm21,-255v-3,0,-2,-4,0,-5r0,5xm52,-257v-8,3,-4,5,1,7v2,-1,7,0,8,-3v0,-2,-3,-2,-9,-2r0,-2xm68,-254v-1,1,-3,2,0,2r0,-2xm42,-189v0,-7,-8,-9,-6,-2v2,0,6,6,6,2xm34,-193v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm62,-187v2,0,6,1,5,-2v-3,0,-4,1,-5,2xm37,-140v-1,1,-4,4,0,3r0,-3xm41,-75v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm19,-51v12,-7,38,-1,56,-3v9,14,1,34,4,59v-10,9,-36,2,-53,4v-16,-6,-2,-38,-7,-60xm64,-47v-3,-1,-10,2,-5,3v2,-1,6,0,5,-3xm54,-29v0,-4,-13,-3,-13,0r13,0xm51,-24v-2,-2,-10,-2,-9,2v4,1,5,1,9,-2"},"\"":{"d":"5,-279v11,1,36,-4,44,4v-1,18,2,41,-2,56r-10,0v3,13,19,25,9,40v-35,-10,-46,-50,-41,-100xm63,-274v9,-1,34,-2,44,3r-1,57r-10,0v2,13,16,23,9,39v-36,-9,-47,-49,-42,-99","w":119},"#":{"d":"79,-266v-5,-12,13,-7,20,-9v2,2,11,-1,9,5v-6,21,-8,43,-11,69v16,2,34,-1,52,0v3,0,7,-16,10,-47v3,-35,15,-24,32,-26v3,30,-10,52,-9,73v9,1,23,-3,26,4v-1,11,4,28,-4,33v-41,-4,-28,2,-38,57v13,2,35,-3,42,3v-1,11,4,29,-4,34r-44,0v-8,47,-13,70,-15,72v-9,-1,-22,2,-28,-2r12,-70r-55,0v-8,45,-13,68,-15,72v-9,-1,-22,2,-28,-2r12,-66v-4,-12,-12,-1,-26,-4v0,-10,-5,-31,3,-37v42,3,28,0,39,-57v-18,-1,-50,8,-42,-18v-10,-27,23,-17,48,-19v7,-39,12,-60,14,-65xm97,-254v0,-3,-3,-5,-2,0r2,0xm80,-107v21,-5,57,13,58,-13v1,-14,9,-31,5,-44v-16,-2,-33,1,-49,-1v-4,0,-9,19,-14,58","w":224},"$":{"d":"78,11v-38,-5,-60,-37,-60,-81r7,0v-1,-3,2,-10,-3,-9v-1,4,-3,8,-5,5v1,-8,-5,-22,3,-24v20,0,41,2,59,0v6,13,-4,62,11,66v26,-1,14,-66,4,-74v-19,-15,-27,-18,-26,-27v-3,-1,-2,2,-4,3v-64,-31,-70,-161,16,-168v1,-9,-3,-23,4,-26v21,-4,31,3,26,26v9,0,21,2,28,11v-2,0,-7,-1,-6,2v12,-1,9,8,19,9v-1,3,-4,3,-8,3v0,5,3,20,6,8v3,1,5,8,7,-3v10,10,19,48,9,61v-19,-1,-45,3,-60,-2v-2,-10,4,-13,3,-22v-2,2,-3,0,-5,0r3,-11v-3,1,-3,-1,-3,-4v3,-1,1,3,5,2v-3,-10,13,-2,6,-14v3,-5,13,4,9,-7v11,-3,-3,17,9,13v-4,-8,3,-16,-4,-20v-1,3,0,7,-5,6v0,-5,0,-7,-2,-7v-3,-1,-1,7,-5,7v2,-14,-13,-1,-13,-1v-2,9,6,10,4,4v1,-2,0,-5,3,-4v2,8,8,13,-7,14v0,2,4,6,0,6v-2,0,-3,-3,-5,-10v2,-4,3,-10,-4,-10v-2,-3,-3,-15,-9,-11v4,0,0,11,0,13v-3,-4,0,-9,-7,-7v0,10,-3,-3,-7,1v-2,6,5,2,7,5v-1,0,-3,-1,-3,1v5,0,9,14,-1,13v3,4,-2,12,1,15v2,0,3,-3,3,-8v8,19,-4,35,19,52r1,6v-4,-4,-5,1,-6,5v13,-2,3,7,10,9v4,-7,1,-15,0,-18v61,45,71,51,74,106v2,48,-15,83,-44,89v0,4,-7,7,-21,10v-4,10,-3,17,-1,28v-10,-1,-26,4,-30,-3v-1,-8,3,-25,-2,-28xm130,-287v-5,-1,-7,1,-4,4v3,1,4,-2,4,-4xm65,-277v-2,-2,-4,-2,-3,3v2,0,2,-2,3,-3xm84,-279v-2,0,-4,0,-3,2xm139,-279v-4,1,-12,-2,-12,2v13,-8,2,18,13,9v-1,-4,-3,-8,-1,-11xm59,-274v-4,1,-6,3,-4,7v5,1,4,-3,4,-7xm149,-266v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm92,-256v1,-3,-2,-10,3,-9v0,0,4,11,-3,9xm85,-255v-2,-2,-1,-7,2,-3xm148,-252v0,-8,-5,-3,-5,0v2,1,4,1,5,0xm139,-256v-4,-1,-5,1,-4,5v4,1,5,-1,4,-5xm76,-247v0,-3,0,-5,3,-4v0,3,0,5,-3,4xm132,-241v0,-7,-6,-5,-10,-3v0,4,6,4,10,3xm60,-239v-7,16,6,28,4,4v1,1,2,1,4,1r0,-5v-2,3,-5,1,-8,0xm124,-239v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm54,-230v-2,1,-2,8,0,9r0,-9xm76,-225v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm133,-219v-2,1,0,4,1,5v1,0,3,1,3,-1xm78,-214v-1,-4,-4,-5,-3,0r3,0xm64,-203v-2,1,-3,4,0,4r0,-4xm66,-185v0,-5,-4,-7,-6,-2v2,1,3,2,6,2xm91,-182v-2,-3,-5,-5,-6,0v2,0,3,1,6,0xm97,-177v-3,0,-3,2,-3,5v4,1,3,-2,3,-5xm82,-173v-4,2,-8,7,-1,8v4,-4,5,1,10,1v2,-13,-7,-1,-9,-9xm84,-158v-1,-3,-4,-5,-5,-3v-1,6,1,7,5,3xm90,-154v3,-1,0,-11,-1,-6xm76,-156v-4,-1,-6,4,-2,6v1,-2,2,-3,2,-6xm68,-155v-6,-1,-2,11,-4,16v1,1,2,1,4,1r0,-17xm92,-127v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm118,-87v-1,-2,-4,-5,-4,0r4,0xm146,-39v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm139,-32v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm146,-31v-2,-1,-2,1,-2,3xm138,-11v-2,1,0,5,0,7v8,-1,-2,-17,0,-7xm132,-10v-2,1,-5,6,0,6r0,-6xm94,-2v0,-3,-4,-5,-3,0r3,0xm87,20v-4,-1,-3,2,-3,5v2,0,3,-2,3,-5xm103,28v-2,0,-2,0,-2,2v2,0,2,0,2,-2","w":200},"%":{"d":"16,-266v17,-47,100,-32,90,30v3,36,-1,109,-14,100v0,4,-9,11,-29,13v-61,7,-53,-71,-51,-133v1,-3,6,-7,4,-10xm156,-292v6,-2,19,-2,24,0r-101,320v-7,-1,-18,2,-22,-2xm58,-266v-15,24,-2,73,-5,112v6,4,13,1,12,-9r0,-96v0,-5,-2,-7,-7,-7xm175,-144v55,0,50,59,50,111v0,47,-26,65,-64,56v-45,-11,-32,-62,-32,-107v0,-40,16,-60,46,-60xm171,-112r0,106v3,4,14,5,13,-4v-2,-34,5,-79,-4,-106v-5,-1,-7,2,-9,4","w":234},"&":{"d":"42,-126v-41,-45,-28,-134,46,-132v55,2,79,75,40,124v12,31,20,47,24,47v11,-6,22,-23,33,-21v-1,31,7,47,-17,63v5,16,16,34,18,50v-25,-4,-57,12,-63,-14v-24,11,-42,24,-56,22v-60,7,-84,-117,-25,-139xm81,-216v-22,22,17,81,15,15v0,-9,-3,-16,-15,-15xm76,-139v-1,-9,1,-24,-3,-22v2,6,-1,22,3,22xm138,-156v0,-2,-7,-3,-6,0r6,0xm100,-155v0,5,2,8,4,8v0,-4,2,-10,-4,-8xm69,-151v-3,0,-5,2,-2,4v3,1,2,-2,2,-4xm74,-119v6,-3,4,-21,-6,-15v-2,8,7,7,6,15xm81,-130v2,3,2,12,5,6v-1,-3,0,-7,-5,-6xm68,-120v-2,5,1,6,4,3r0,-3v-1,0,-3,2,-4,0xm86,-118v0,0,-2,0,-2,1v0,0,2,0,2,-1xm80,-86v-19,7,-16,47,3,47v9,0,14,-3,17,-10","w":200},"'":{"d":"21,-262r42,0v4,45,1,87,-40,99v-9,-13,1,-21,8,-37v-23,-4,-5,-36,-10,-62","w":79},"(":{"d":"17,-81v10,-95,-42,-228,79,-208v10,7,-2,28,4,38v-13,4,-25,0,-25,23v0,24,2,52,-2,73v3,20,-3,38,2,58v-3,8,1,13,-7,16v6,0,4,4,1,7v13,3,2,25,7,41v-2,1,-7,-1,-6,3v5,0,8,3,10,8v14,1,11,5,18,2v3,14,-2,23,2,36v-44,10,-89,0,-83,-49r0,-48xm25,-140v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm43,-139v0,0,-2,0,-2,1v0,0,2,0,2,-1xm33,-126v-3,1,-4,5,0,5r0,-5xm44,-100v0,-7,5,-23,-5,-22v5,4,1,2,-1,9v-5,0,-3,-6,-7,-6v-2,13,9,9,13,19xm26,-121v-5,-1,-2,6,-3,9r3,2r0,-11xm63,-101v-3,-1,-6,2,-3,3xm44,-94v-3,3,-8,17,0,21v6,-8,0,-11,0,-21xm37,-84v-7,-2,-6,7,-3,8v2,1,5,-5,3,-8xm66,-84v-4,0,-6,1,-7,4v3,-1,8,1,7,-4xm64,-78v-3,-1,-7,4,-4,5v3,0,5,-1,4,-5xm64,-53v-1,1,-3,4,0,4r0,-4xm64,-44v-2,-1,-5,-3,-4,2v2,0,3,-1,4,-2xm64,-32v-2,0,-5,-1,-4,2v2,0,5,1,4,-2","w":119},")":{"d":"98,-59v2,74,-21,72,-80,73v-7,-6,-7,-34,0,-41v12,1,20,0,20,-14r0,-195v3,-24,-14,-13,-24,-22v1,-12,-4,-39,7,-38v57,1,74,11,74,46v0,68,1,119,3,191","w":108},"*":{"d":"67,-158v0,-8,14,-3,21,-4v2,9,-1,20,0,30v20,-6,28,-18,28,14v-14,8,-21,7,-20,14v18,24,14,25,-3,36v-4,-8,-7,-18,-15,-23r-16,23v-5,-3,-11,-8,-15,-15v8,-11,12,-20,12,-25r-22,-12r6,-20v8,1,19,10,25,6xm75,-118v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3","w":140},"+":{"d":"88,-228v13,-9,52,-5,38,25v0,13,2,27,0,40v18,2,47,-5,58,4v-2,14,5,37,-4,44v-17,2,-42,-4,-54,3r1,59v1,12,-16,7,-26,7v-9,0,-13,-1,-13,-3r0,-66v-18,-2,-44,4,-57,-3v1,-15,-3,-34,2,-45v13,2,36,1,55,0r0,-65","w":210},",":{"d":"22,-59v9,-6,33,-3,43,-3v4,49,-5,90,-41,99v-7,-15,5,-28,9,-39v-6,0,-11,1,-11,-6r0,-51"},"-":{"d":"18,-97v-5,-28,-9,-65,24,-53v17,-1,39,-2,56,0v-1,17,5,41,-2,53v-21,0,-44,-2,-63,0v-1,-2,0,-6,-4,-5v1,9,-6,2,-11,5xm47,-145v-8,-1,3,16,-8,15v0,1,-2,3,0,4v14,5,8,-10,8,-19xm39,-103v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3","w":119},"\u00ad":{"d":"18,-97v-5,-28,-9,-65,24,-53v17,-1,39,-2,56,0v-1,17,5,41,-2,53v-21,0,-44,-2,-63,0v-1,-2,0,-6,-4,-5v1,9,-6,2,-11,5xm47,-145v-8,-1,3,16,-8,15v0,1,-2,3,0,4v14,5,8,-10,8,-19xm39,-103v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3","w":119},".":{"d":"25,-53v3,-14,37,-5,49,-4v-2,20,4,47,-3,61v-15,-2,-38,4,-46,-4r0,-53"},"\/":{"d":"84,-316v18,-1,29,-1,46,0r-30,120r2,2v-30,126,-46,192,-48,198v-13,1,-37,4,-47,-2v43,-186,69,-292,77,-318xm99,-240v-5,1,-1,11,-2,16v4,-2,1,-11,2,-16xm99,-208v-4,0,-2,4,0,5r0,-5","w":135},"0":{"d":"17,-251v-8,-33,43,-59,65,-59v32,-1,29,12,42,10v35,12,34,64,38,109v-7,32,-4,85,0,108v-3,37,-8,57,-14,61v0,5,-10,18,-28,26v-3,1,-2,-6,-5,-10v5,18,-12,17,-37,17v-3,1,-10,-8,-12,-2v-3,-1,-3,-13,-9,-3v-31,-7,-52,-50,-45,-85v-3,-26,1,-53,-2,-65v4,-29,-5,-97,7,-107xm73,-305v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm60,-295v-4,-3,-13,4,-5,5v3,-1,4,-3,5,-5xm128,-290v-4,0,-4,6,-1,7v2,0,0,-5,1,-7xm110,-283v4,-1,0,-9,0,-4v-2,0,0,3,0,4xm67,-287v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm136,-287v-1,1,-5,5,0,4r0,-4xm111,-282v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm36,-280v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm84,-279v-5,0,-2,9,-2,10v4,0,1,-7,2,-10xm135,-262v5,-4,2,-22,-5,-10v-7,1,-2,13,-3,19v4,-2,-2,-14,8,-14r0,5xm23,-264v-6,0,-3,4,0,6r0,-6xm53,-264v-1,1,-4,4,0,3r0,-3xm68,-264v-4,1,-11,-2,-10,3v4,-1,11,2,10,-3xm99,-139v-8,-44,18,-130,-26,-122v5,27,-2,55,3,78v-13,16,6,52,-4,76v-10,-4,-1,6,-5,11v4,15,-4,17,-5,28v10,-5,9,9,14,15v-6,6,1,19,13,16v20,-18,1,-70,10,-102xm124,-255v1,-6,-6,-11,-4,-2v1,1,2,2,4,2xm71,-251v-4,-1,-5,1,-2,4v2,0,2,-2,2,-4xm147,-240v3,-9,-6,-14,-11,-10v7,-2,4,9,11,10xm62,-239v-4,2,1,12,-10,8v-2,6,6,16,4,8v-1,-5,5,-9,5,-1v5,-1,1,-10,1,-15xm109,-236v-2,0,-5,5,0,4r0,-4xm18,-231v-5,-1,-2,7,-3,10v6,1,3,-7,3,-10xm33,-231v-2,1,-4,2,0,2r0,-2xm71,-226v3,-3,-3,-8,-3,-3xm33,-225v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm49,-221v-5,2,-2,12,-3,18v1,0,3,1,3,-1v-3,-5,3,-9,0,-17xm20,-208v-1,-14,-7,-7,-5,0v2,2,4,4,5,0xm154,-215v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm125,-165v3,-13,8,-40,-8,-32v0,3,-2,5,-7,5r0,9v2,-3,1,-6,10,-3v-1,-5,5,-6,5,-1v-1,7,-1,18,0,22xm52,-181v0,-3,-4,-7,-5,-2v2,1,2,2,5,2xm153,-186v-5,-1,-5,3,-1,4v2,0,1,-3,1,-4xm137,-184v-4,-1,-5,1,-1,3v2,0,1,-2,1,-3xm143,-179v-2,1,-2,4,-1,7v5,0,4,-4,1,-7xm65,-178r0,16v5,-3,6,-14,0,-16xm112,-177v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm137,-176v-2,-2,-8,-1,-6,3v4,1,5,-1,6,-3xm61,-176v-3,4,-4,12,-4,17v8,1,2,-12,4,-17xm120,-176v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm137,-170v-4,-1,-5,1,-5,4v3,0,6,0,5,-4xm146,-166v0,-1,-4,-2,-4,0r4,0xm52,-161v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm45,-159v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm122,-147v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm153,-113v2,-6,2,-34,-2,-31xm61,-143v-5,1,-5,6,0,7r0,-7xm115,-139v-2,-2,-5,0,-1,1xm146,-140v-3,1,-3,3,0,5r0,-5xm15,-138v-2,1,-3,8,0,8v2,-3,2,-5,0,-8xm39,-136v-9,2,-3,25,0,32v2,-9,0,-23,0,-32xm23,-133v-8,1,-1,10,-3,15r4,0xm33,-133v-4,-1,-6,3,-3,5v1,-2,3,-2,3,-5xm146,-133v-1,1,-5,5,0,4r0,-4xm17,-129v-1,0,-3,-1,-3,1v2,4,6,2,3,-1xm146,-124v-5,1,-1,12,-2,17v7,1,0,-11,3,-16xm132,-113v1,-7,-7,-13,-7,-5v3,0,2,7,7,5xm17,-120v-5,0,-3,8,-2,12v2,-1,4,-1,6,0v-3,2,-1,7,4,5v-1,-6,1,-15,-7,-10xm61,-117v-2,8,-16,-2,-19,5v6,-1,0,5,3,8v6,-1,1,-7,4,-7v3,-1,12,12,14,4v-3,-3,0,-7,-2,-10xm19,-103v0,-4,-5,-5,-4,0r4,0xm71,-101v0,-2,0,-5,2,-5v0,2,1,6,-2,5xm63,-95v-3,-1,-4,3,-2,4v1,-1,2,-2,2,-4xm40,-90v-4,1,-7,17,1,16xm50,-86v-2,0,-4,0,-3,3v0,8,2,21,4,8xm146,-86v-4,-1,-7,3,-5,5v5,1,10,0,5,-5xm143,-72v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm74,-40v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm109,-17v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm60,-6v-1,2,2,7,2,2xm92,-6v-3,1,-3,3,0,5v2,-2,2,-4,0,-5","w":167},"1":{"d":"80,-287r34,0v6,76,3,156,3,218v0,29,-1,59,0,89v-17,3,-53,6,-66,-3r0,-135v6,-15,-1,-33,0,-54v2,-30,-13,-30,-38,-30v-7,-5,0,-22,-5,-30v0,-6,8,-10,24,-13v16,-9,32,-23,48,-42xm109,-262v-2,2,-1,3,1,1xm110,-257v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm71,-250v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm91,-176v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm101,-158v0,-3,-4,-7,-4,-2v1,1,2,2,4,2xm61,-136v-2,0,-1,3,-1,4v1,-1,2,-2,1,-4xm61,-21v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm61,-15v-2,0,0,5,-1,7v4,0,1,-5,1,-7xm86,-12v-5,-1,-3,4,-3,7r3,2r0,-9xm87,5v-1,-5,-3,-4,-2,0r2,0xm86,6r0,5r0,-5","w":130},"2":{"d":"60,-309v58,-13,100,24,99,81v0,34,-25,92,-75,175v8,13,52,-4,69,7v-2,16,4,39,-3,50r-133,0v-8,-6,-2,-26,-5,-37v0,-4,20,-44,58,-122v22,-44,29,-60,28,-91v0,-10,-4,-18,-17,-17v-7,0,-10,14,-10,43v0,7,2,19,-5,20v-17,-1,-43,3,-54,-3v1,-46,6,-97,48,-106xm105,-46v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm75,-37v0,-4,-4,-7,-4,-1v1,1,2,1,4,1xm105,-40v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm92,-28v0,-9,-5,-6,-5,0r5,0xm67,-30v0,-2,-3,-4,-2,0r2,0xm60,-30v-3,-3,-7,0,-4,3v2,0,3,-2,4,-3","w":165},"3":{"d":"161,-61v13,57,-48,105,-110,78v2,-3,-1,-9,-3,-9v-1,3,0,7,-4,6v-37,-27,-30,-49,-33,-117v16,-6,44,0,62,-2v7,14,-2,76,7,82v32,-3,14,-45,20,-75v-2,-20,-12,-29,-21,-28v-27,2,-17,-22,-19,-43v15,-8,40,-2,40,-32v0,-19,0,-36,-4,-51v-2,2,-7,3,-16,4v-10,19,-1,37,-8,53v-18,-2,-41,3,-53,-3r-5,2v-11,-60,12,-113,78,-101v30,-1,60,18,61,49r0,-5v4,0,6,11,7,32v2,31,-6,47,-24,64v28,10,28,61,25,96xm126,-269v-1,8,4,12,3,1xm121,-262v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm102,-248v7,-1,2,-16,-1,-11xm96,-254v0,0,-2,0,-2,1v0,0,2,0,2,-1xm139,-249v-4,0,-1,3,0,5r0,-5xm115,-212v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm80,-136r0,5r0,-5xm133,-56v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm118,-45v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm30,-30v1,3,-2,10,2,10v0,-4,1,-9,-2,-10xm73,-19v-2,0,-6,6,0,5r0,-5xm64,-17r0,5r0,-5xm31,-3v-1,2,2,7,2,2xm48,2v1,-2,-2,-7,-2,-3xm57,4v3,-2,-1,-8,-3,-5v-1,3,1,4,3,5","w":168},"4":{"d":"66,-295v26,6,53,-6,82,1r1,199v4,4,17,-1,19,6v-3,20,11,55,-19,49v-2,17,4,42,-3,54v-23,-4,-68,15,-61,-21r0,-33r-72,0v-9,-8,-2,-32,-4,-44v3,-19,18,-75,44,-169v9,2,4,-7,4,-9v3,-18,7,-29,9,-33xm78,-275v-1,2,2,7,2,2xm90,-271r0,6r0,-6xm133,-228v-3,0,-3,6,0,8r0,-8xm58,-93r27,0r0,-122xm111,-206v-1,-3,-2,2,-2,2xm133,-116v-10,0,-1,7,-2,13v5,0,1,-9,2,-13","w":175},"5":{"d":"92,21v-63,5,-83,-49,-80,-119v13,-9,44,-3,64,-3v6,20,-7,71,14,74v23,-15,11,-79,11,-119v0,-13,-4,-20,-12,-20v-13,-5,-5,28,-19,28r-56,-1r1,-139v-2,-33,35,-9,61,-17v24,4,58,-4,77,4r1,44v-21,5,-51,1,-80,2r1,48v34,-29,87,-21,89,41r2,64v-1,88,-12,108,-74,113","w":173},"6":{"d":"10,-88v2,-95,-19,-219,83,-209v17,1,20,2,19,10v4,1,5,-1,4,-5v24,-4,53,46,48,81v-16,3,-49,5,-65,-1v-2,-17,7,-38,-16,-37v-13,12,-9,52,-6,77v47,-48,87,7,87,83v0,56,-7,87,-22,93v-11,13,-30,20,-57,20v-58,0,-77,-32,-75,-112xm108,-275v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm109,-264v-6,0,-5,4,-1,5v2,0,4,0,3,-3xm71,-81v2,-2,6,3,3,3v1,19,-3,60,13,54v23,-7,7,-60,13,-91v-1,-19,-3,-28,-17,-26v-12,-1,-5,48,-12,60xm53,-40v-1,1,-3,2,0,2r0,-2","w":170},"7":{"d":"13,-279v8,-19,52,-1,81,-8v14,5,26,-2,41,1v6,60,-7,105,-15,153v-4,1,-1,-4,-6,-3r1,3r-6,0v0,-8,-7,-4,-11,-3v6,3,2,7,6,12v9,-5,15,-2,13,11v-5,44,-14,93,-24,136v-20,-1,-45,3,-61,-2r29,-159v2,-4,9,-7,8,-11v-3,1,-4,0,-7,0r14,-81v-20,-2,-50,5,-63,-4v2,-15,-1,-29,0,-45xm101,-222v-6,-4,-10,1,-2,2xm108,-148v-4,2,-11,6,-10,9v10,-1,11,-2,10,-9xm86,-147v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm94,-137v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm87,-133v-13,3,-17,14,0,13r0,-13xm97,-131v-3,0,-5,0,-4,3v3,0,5,0,4,-3","w":147},"8":{"d":"90,-305v63,-18,96,100,44,137r0,2v22,7,28,49,28,93v0,48,-20,87,-57,83v0,-8,5,-19,-7,-14v1,11,-1,20,-9,12v0,11,-22,2,-28,4v-48,-8,-55,-59,-52,-116v3,-55,6,-38,25,-64v-39,-25,-25,-128,18,-130v3,-9,24,-7,38,-7xm67,-298v-3,3,0,11,-1,16v8,-3,9,-6,4,-10r-1,1v0,-2,1,-7,-1,-7v0,2,1,6,-1,6r0,-6xm83,-286v1,2,2,4,2,0r-2,0xm89,-259v-24,-1,-9,30,-15,51v0,16,4,23,12,23v7,0,10,-9,10,-27v-1,-15,1,-51,-7,-47xm89,-33v5,0,8,-9,9,-25v-5,-15,11,-89,-18,-75v-10,12,-15,111,9,100xm115,-19v-3,-3,-6,0,-4,4xm112,-14v0,1,-4,5,0,4r0,-4xm101,8v0,0,0,-2,1,-2v0,0,0,2,-1,2","w":169},"9":{"d":"91,-107v-32,41,-85,2,-85,-55v0,-21,6,-20,3,-31v7,4,9,-4,5,-9v-3,3,-6,3,-8,-1v-3,-54,15,-98,69,-100v119,-5,80,138,84,245v2,43,-27,77,-79,76v-49,0,-74,-29,-74,-86v15,-5,39,-2,58,-2v19,0,-5,45,20,40v22,-4,9,-50,11,-77r-4,0xm85,-255v-15,0,-15,11,-15,32v0,31,0,46,2,73v0,5,3,12,12,12v18,0,12,-56,12,-77v0,-26,-4,-40,-11,-40xm16,-187v0,0,-2,0,-2,1v0,0,2,0,2,-1","w":168},":":{"d":"22,-225v3,-14,38,-5,50,-4v-2,20,5,48,-4,61v-15,-2,-38,4,-46,-4r0,-53xm27,-112v-1,-12,14,-7,22,-6r0,-2v2,4,29,-2,27,4r0,57v-10,5,-38,5,-49,0r0,-53"},";":{"d":"18,-193v11,-9,31,-1,48,-3v0,20,4,51,-4,63v-14,-3,-36,5,-44,-4r0,-56xm59,-166v1,-3,-3,-6,-4,-4v-1,3,1,5,4,4xm43,-169v-3,-2,-5,-1,-4,3v2,0,3,-2,4,-3xm22,-55r42,0v3,47,0,87,-41,98v-7,-13,1,-23,9,-37v-23,-3,-5,-36,-10,-61"},"\u037e":{"d":"18,-193v11,-9,31,-1,48,-3v0,20,4,51,-4,63v-14,-3,-36,5,-44,-4r0,-56xm59,-166v1,-3,-3,-6,-4,-4v-1,3,1,5,4,4xm43,-169v-3,-2,-5,-1,-4,3v2,0,3,-2,4,-3xm22,-55r42,0v3,47,0,87,-41,98v-7,-13,1,-23,9,-37v-23,-3,-5,-36,-10,-61"},"<":{"d":"29,-131v2,-3,54,-32,152,-77v-2,33,11,53,-26,60r-66,34r91,46v1,14,3,37,-1,49r-90,-47v-25,-10,-64,-31,-60,-31r0,-34xm111,-71v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm95,-69v-2,0,-2,0,-2,2v2,0,2,0,2,-2","w":210},"=":{"d":"27,-155v0,-33,43,-7,75,-16r71,0v14,3,4,30,7,44r-4,4r-145,0v-9,-6,1,-22,-4,-32xm27,-95v45,-7,105,1,149,-2v9,8,3,32,3,47v-37,-1,-79,3,-112,-2v-14,-2,-42,13,-40,-10v1,-11,3,-23,0,-33xm123,-76v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm84,-62v-3,0,-6,0,-5,4v4,1,5,-1,5,-4","w":210},">":{"d":"26,-174v1,-15,-2,-34,1,-47v93,45,144,70,152,76v0,34,4,35,-30,52r-123,60v2,-31,-11,-54,25,-59v44,-22,66,-34,67,-36v-61,-29,-91,-44,-92,-46","w":210},"?":{"d":"181,-213v0,56,2,121,-54,122v-12,1,-22,-9,-33,-18v-1,11,5,29,-7,29r-50,0v-7,-21,-2,-59,-2,-85r57,0v0,11,4,17,13,17v6,0,9,-9,9,-25r0,-88v0,-8,-3,-13,-10,-13v-18,0,-3,50,-14,62v-9,2,-13,-2,-16,-7v-2,16,-24,2,-40,7v-4,-6,-5,-16,-1,-23v0,7,2,19,3,5v0,-8,1,-14,-5,-14v5,-29,6,-51,42,-68v7,4,7,-8,31,-7v54,3,76,36,77,106xm31,-237v0,-2,0,-4,2,-3v0,2,0,4,-2,3xm34,-47v-6,-31,35,-16,56,-19v9,12,2,40,4,59v-11,9,-39,2,-57,4v-7,-9,-1,-30,-3,-44","w":200},"@":{"d":"194,1v-93,25,-160,-45,-160,-148v0,-103,34,-168,124,-178v61,-7,117,59,116,132v-1,72,-25,117,-79,133v-12,0,-21,-7,-28,-21v-15,14,-29,27,-40,17v-27,12,-52,-39,-48,-85v7,-68,21,-115,69,-115v11,0,23,8,35,24v0,-24,16,-19,34,-16r-21,155v2,8,2,9,9,8v31,-13,46,-48,45,-100v-1,-56,-30,-103,-92,-103v-130,0,-141,266,-1,273v34,1,56,-10,86,-36v10,0,21,-1,29,1v-16,27,-41,49,-78,59xm154,-234v-31,0,-34,34,-43,101v3,32,7,46,26,45v20,3,37,-45,37,-111v0,-23,-9,-35,-20,-35xm223,-90v-2,-1,-2,1,-2,3","w":285},"A":{"d":"41,-308r93,-1v22,118,17,136,41,307v-15,8,-45,1,-65,3v-9,-11,-2,-45,-8,-56v-9,1,-23,-4,-23,6v-1,52,3,52,-35,47v-9,3,-29,6,-37,0xm67,-266v-8,4,-5,29,-4,40v6,-8,4,-26,4,-40xm91,-227v-4,74,-17,96,-10,117r21,0v-5,-38,-2,-83,-11,-117xm57,-212v1,20,0,34,-1,49v3,-1,3,1,3,4v-6,0,-18,16,-8,21r0,-10r3,1v-1,-5,0,-8,6,-7v1,-23,-1,-35,5,-53v-1,-3,-4,-5,-8,-5xm60,-151v-3,2,-5,10,1,10xm54,-97v-1,-3,-5,-3,-4,2xm63,-85v-1,-7,-3,-3,-1,0r1,0xm56,-82v-3,0,-7,-2,-6,3v3,0,7,1,6,-3xm63,-83v-4,-1,-4,7,-2,9xm70,-82v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm56,-76v-3,0,-7,-1,-6,3v3,0,7,1,6,-3xm61,-71v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm56,-52v-3,0,-8,-2,-7,3v3,0,8,2,7,-3xm61,-44v-2,0,-14,-2,-12,4v8,-1,11,1,12,6v1,-7,6,-6,0,-10xm60,-33v0,4,-1,9,5,7v1,-5,-3,-5,-5,-7xm63,-17v-2,-1,-4,-1,-3,3v1,-1,4,0,3,-3xm62,-7v1,-3,-3,-7,-2,-2","w":178},"B":{"d":"16,12v-8,-43,4,-108,-4,-151v9,-51,-5,-122,3,-157v2,3,18,-4,25,0v1,9,-1,22,2,29v3,-8,-3,-22,0,-30v55,-2,113,-1,118,53v-5,-1,-4,3,-4,7v4,1,3,-3,3,-6v8,17,7,55,-4,72v-3,-4,4,-14,-3,-14v2,14,-2,29,-14,22v-4,7,-7,14,5,14v29,17,26,43,26,79v0,48,-4,71,-31,77v-1,-2,0,-5,-2,-5v2,9,-17,12,-32,10v-23,-2,-62,1,-88,0xm49,-292v-3,-1,-2,2,-2,4xm120,-287v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm136,-282v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm121,-278v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm121,-274v-5,-1,-2,6,-3,9v5,1,2,-6,3,-9xm19,-262v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm121,-251v1,-4,-4,-10,-3,-3xm111,-249r0,23v5,-1,6,-24,0,-23xm143,-249v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm100,-182v2,-26,6,-69,-20,-62v4,24,-12,67,12,71xm105,-243v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm36,-240v-5,0,-3,4,0,1r0,-1xm26,-239v0,2,-1,6,2,5v0,-3,-1,-4,-2,-5xm122,-238v-4,-1,-2,16,-2,16v5,-1,-1,-12,2,-16xm28,-232v-2,0,-2,0,-2,2r2,2r0,-4xm35,-230v-1,2,2,7,2,2xm58,-230v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm75,-227v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm52,-222v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm105,-222v1,16,-3,38,2,51v1,-10,-2,-37,8,-26v-1,-3,2,-9,-2,-8v0,2,0,4,-3,3v-2,-6,0,-17,-5,-20xm122,-219v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm160,-213v-4,0,-1,4,0,6v2,-1,0,-4,0,-6xm58,-207v-1,2,2,7,2,2xm131,-201v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm21,-200v-2,0,-3,10,1,9xm154,-196v-4,0,-1,6,-2,9v4,0,1,-6,2,-9xm139,-190v-4,1,-2,11,0,14v1,-5,1,-9,0,-14xm47,-184v-5,-1,-2,6,-3,9v5,1,2,-6,3,-9xm30,-182v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm74,-179v1,2,2,4,2,0r-2,0xm107,-168v-2,0,-3,9,1,8xm117,-164v-2,-1,-5,-3,-4,2v2,0,3,-1,4,-2xm124,-162v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm68,-157v0,5,-1,11,2,13v0,-5,1,-11,-2,-13xm56,-149v1,-4,-2,-6,-3,-3xm102,-141v-3,2,-4,13,0,15v2,-6,2,-9,0,-15xm79,-109r1,68v5,6,4,-1,15,-1v1,5,6,11,2,15v9,-13,-1,-63,7,-80v-5,-25,-25,-31,-25,-2xm74,-93v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm159,-63v-2,0,-1,3,-1,4v1,-1,3,-3,1,-4xm160,-53v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm21,-50v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm153,-48v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm160,-40v-2,2,-2,4,0,5r0,-5xm150,-36v-2,3,0,12,0,17v4,-1,5,-15,0,-17xm111,-32v0,2,-1,6,2,5v0,-3,-1,-4,-2,-5xm139,-13v-3,-3,-4,-1,-5,2r2,3xm152,-15v-8,-1,-16,3,-8,7v7,-1,9,-1,8,-7xm100,-14v-2,2,-4,4,0,5r0,-5xm107,-13v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm91,3v-2,0,-1,3,-1,4v2,0,1,-3,1,-4","w":172},"C":{"d":"72,4v-85,9,-65,-146,-65,-224v0,-40,3,-41,12,-54v0,3,0,5,3,4v0,-20,10,-28,28,-35v1,2,0,5,2,5v1,-18,23,-9,35,-15v3,3,2,9,2,15v7,1,0,-21,10,-8v1,-7,6,-1,10,-3v41,3,64,69,54,138v-14,-1,-20,-1,-16,-14v2,9,6,6,6,-1v-1,-5,2,-14,-3,-15v-2,14,-1,17,-8,13v-2,7,5,19,-5,17v0,-9,-2,-13,-5,0v-16,-2,-40,7,-34,-20v-4,-52,7,-73,-14,-69v-16,3,-8,63,-12,74v-1,36,1,79,1,112v0,21,4,32,11,32v2,9,2,-2,10,-1v1,-25,8,-47,4,-73v13,-11,34,2,44,-5v4,1,0,10,6,9v-3,-6,4,-12,5,-5v1,3,-2,10,3,9v1,-6,0,-16,7,-11v0,40,3,89,-20,102v0,-3,0,-5,-3,-4r0,10v-14,14,-37,27,-52,17v0,-6,2,-24,-4,-18v0,10,2,30,-6,14v0,5,-4,11,-6,4xm52,-296v-3,0,-3,6,0,7r0,-7xm93,-295v-4,0,-1,8,-2,11v4,0,1,-8,2,-11xm44,-291v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm36,-283v1,-3,-4,-9,-3,-3xm29,-280v-2,2,-2,4,0,6r0,-6xm29,-272v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm22,-261v-1,1,-5,5,0,4r0,-4xm38,-259v-2,1,-5,3,0,3r0,-3xm28,-258r0,5v2,-2,2,-4,0,-5xm28,-249r0,4v2,-1,2,-3,0,-4xm118,-237v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm63,-236v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm15,-231v0,-3,-3,-5,-2,0r2,0xm22,-231v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm31,-201v1,-11,-2,-40,-2,-20v1,6,-3,17,2,20xm15,-220v-3,3,0,11,-1,15v6,-2,1,-10,1,-15xm25,-214v1,-4,-4,-7,-3,-1v1,1,2,3,3,1xm24,-210v-2,1,-2,8,0,9v0,-3,2,-7,0,-9xm159,-209v-3,6,-1,16,-1,25v5,-2,2,-14,1,-25xm62,-206v1,8,-3,20,3,23v3,-8,-1,-26,-3,-23xm41,-204v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm17,-203v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm49,-190v1,-5,0,-13,-4,-10v1,7,2,10,4,10xm41,-194v-4,-1,-1,5,-2,7v5,1,4,-5,2,-7xm23,-193v0,5,-1,12,2,14v0,-5,1,-12,-2,-14xm18,-189v-5,2,-5,19,0,22r0,-22xm47,-188v-3,6,4,13,3,3xm103,-187v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm31,-184v0,6,-2,21,4,16v-1,-11,-2,-16,-4,-16xm41,-183v-4,0,-1,28,2,28xm24,-177r0,19v2,0,4,0,3,-3r-2,0v1,-5,4,-13,-1,-16xm66,-147v1,-9,4,-31,-3,-29v1,9,0,21,3,29xm57,-176v-2,2,-2,13,2,14v0,-6,-1,-10,-2,-14xm50,-173v-3,0,-6,16,0,18v0,-6,2,-14,0,-18xm49,-151v1,5,-1,12,2,15v-1,-5,2,-13,-2,-15xm67,-145v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm51,-134v0,1,-4,5,0,4r0,-4xm36,-125v1,-3,-2,-9,-2,-3xm28,-126v-2,0,0,5,-1,7v0,0,2,0,2,-1xm36,-123v-1,1,-4,8,0,8r0,-8xm22,-110v1,-3,-4,-7,-3,-3xm13,-112v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm118,-101v-5,-1,-2,7,-3,10v5,1,2,-7,3,-10xm134,-96v-2,-2,-4,-2,-3,3v2,0,4,0,3,-3xm156,-98v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm23,-87v-1,0,-3,-1,-3,1v2,4,6,2,3,-1xm44,-87v1,3,-2,11,2,11v0,-4,1,-10,-2,-11xm14,-83v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm31,-83v-3,-1,-2,3,-2,5v1,-2,2,-2,2,-5xm135,-76v0,-5,-6,-6,-4,0r4,0xm148,-72v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm38,-67v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm22,-65v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm119,-44v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm111,-40v-3,2,-3,14,0,17r0,-17xm87,-37v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm136,-23v0,-3,-5,-6,-4,-1v1,1,3,3,4,1xm102,-24r0,7v3,0,3,-3,3,-6xm111,-21v-2,2,-3,8,0,10r0,-10xm93,-19r0,10v2,-2,3,-8,0,-10xm55,-12v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm70,-7r0,6v2,-1,3,-5,0,-6","w":173},"D":{"d":"9,-304v24,-5,59,-1,82,-1r0,13v4,-2,3,-8,3,-13v21,3,46,0,38,31r2,2v1,-7,-3,-19,2,-22v2,1,4,13,8,5v7,6,1,21,5,30v4,-5,0,-12,1,-20v12,12,16,57,9,79v8,37,0,105,4,133v-3,38,-10,56,-19,56v0,3,-7,7,-20,11v-12,1,-30,8,-25,-13r-3,-3v5,19,-12,24,-24,15v-4,6,-5,0,-13,3v-1,-2,0,-6,-3,-5v-6,13,-25,1,-45,6v-6,-56,2,-106,-2,-164v4,1,6,8,8,-5v-2,-7,-3,-15,-2,-28v-2,0,-4,-2,-5,0v1,-10,3,-19,2,-31v-7,-15,-1,-51,-3,-79xm101,-300v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm86,-292v-5,8,3,28,-2,39v-10,-4,-12,6,-12,18r3,155r-2,3v-2,-5,3,-17,-4,-17r0,39v12,12,29,0,27,-22v-3,-21,3,-49,-1,-68v5,-9,6,-18,4,-32v1,3,-1,5,-4,4v4,-28,9,-64,-7,-81v0,-14,0,-32,-2,-38xm101,-291v-2,2,-2,10,1,12xm91,-290r0,18v5,1,4,-4,4,-8v0,-6,-2,-10,-4,-10xm40,-289v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm70,-286v-1,5,-4,23,3,24v-1,-8,3,-21,-3,-24xm124,-285v1,12,-3,30,3,37v2,-11,0,-25,0,-37r-3,0xm79,-279v-2,-2,-4,-2,-3,2xm118,-279v-4,-1,-1,5,-2,7v4,1,1,-5,2,-7xm143,-278v-2,0,-4,0,-3,3v2,2,4,2,3,-3xm64,-274v-2,1,-3,5,0,6r0,-6xm80,-274v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm117,-267v1,7,-3,20,3,22r0,-22r-3,0xm54,-262v1,1,4,5,3,0r-3,0xm104,-262v-3,-1,-3,1,-3,4r3,2r0,-6xm35,-256v-9,2,1,17,-3,27v8,-3,-2,-17,3,-27xm134,-254v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm47,-252r0,5v2,-1,2,-3,0,-5xm64,-252v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm153,-231v-2,-6,2,-24,-4,-15v2,5,-2,15,4,15xm133,-247v2,5,-3,16,4,16v-2,-6,3,-15,-4,-16xm47,-245v-1,2,1,8,2,3xm127,-245v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm142,-243v0,6,-1,14,2,17v-1,-6,2,-14,-2,-17xm112,-242v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm42,-240v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm19,-236v-6,0,-2,11,-2,17v7,-2,-4,-12,2,-17xm111,-235v0,4,-1,15,4,10v0,-6,-2,-10,-4,-10xm118,-231v1,3,-2,10,3,9v0,-4,0,-8,-3,-9xm107,-216v0,-6,-4,-11,-3,-3v0,15,1,22,3,22r0,-19xm115,-220v-8,-1,-3,10,-4,15v1,1,2,2,4,2r0,-17xm58,-219v-4,-1,-1,5,-2,8v4,1,1,-5,2,-8xm67,-215v-5,0,-5,12,0,15r0,-15xm145,-210v1,-3,-1,-6,-2,-3xm118,-213v1,9,2,14,4,14v-2,-4,2,-14,-4,-14xm137,-213v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm21,-205v-4,0,-6,3,-4,6v3,0,5,-2,4,-6xm138,-205v-4,1,-3,14,0,17r0,-17xm145,-204v-2,2,-2,4,0,5r0,-5xm131,-185v0,-6,1,-21,-4,-16v2,5,-3,16,4,16xm28,-200v-3,8,-4,25,0,35v2,-16,2,-21,0,-35xm36,-189v1,-4,3,-13,-3,-10v0,5,0,9,3,10xm49,-199v0,6,-1,13,3,15v0,-6,2,-14,-3,-15xm67,-198v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm20,-197v-6,2,-3,13,1,15v0,-5,2,-12,-1,-15xm59,-194v-5,0,-1,8,-1,13v3,-2,2,-9,1,-13xm117,-183v0,-7,-5,-9,-5,-1v0,0,5,5,5,1xm147,-190v-5,-1,-2,6,-3,9v3,-1,3,-5,3,-9xm107,-189v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm122,-189v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm44,-184v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm106,-183v1,4,-2,12,2,12v0,-4,1,-11,-2,-12xm138,-183v-2,0,-3,10,1,9xm121,-182v0,4,-1,10,2,11v0,-4,0,-9,-2,-11xm35,-181r0,7v2,-2,2,-5,0,-7xm60,-176v0,-2,-3,-4,-2,0r2,0xm21,-174v2,-2,1,-5,-2,-3v1,1,0,3,2,3xm44,-178v-4,0,-3,10,0,12r0,-12xm153,-178r0,6v2,-1,3,-5,0,-6xm52,-174v-2,2,-1,3,1,1xm21,-167v0,-1,-2,-8,-2,-2xm60,-168v-2,2,-2,4,0,6r0,-6xm35,-167v1,4,-2,12,2,12v0,-4,1,-11,-2,-12xm129,-166r0,8v3,-2,4,-6,0,-8xm21,-165v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm149,-163v-7,2,-1,11,0,18r0,-18xm30,-157v1,-3,-4,-7,-3,-3xm139,-162v-3,0,-3,9,0,11r0,-11xm44,-160v-3,0,-2,7,0,8r0,-8xm154,-158v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm30,-155v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm132,-146v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm155,-146v-4,1,-3,22,1,26v-2,-8,1,-19,-1,-26xm149,-137v-3,0,-3,6,0,8r0,-8xm70,-134v-2,2,-2,4,0,5r0,-5xm17,-129v-2,2,-3,9,0,11r0,-11xm63,-128v-6,-1,-2,7,-3,11v4,-1,3,-6,3,-11xm149,-126v-4,6,-2,26,0,35v0,-12,2,-24,0,-35xm156,-113v-6,0,-1,7,-2,12v1,0,5,4,4,0xm57,-88v1,-5,-5,-13,-4,-4v0,4,1,8,4,4xm111,-91v-2,0,-4,0,-3,2v2,2,4,2,3,-2xm160,-80v0,-4,-2,-14,-5,-5v1,5,-2,14,3,15xm41,-88v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm128,-87v-7,-2,-3,8,-4,12v5,1,4,-3,5,-11xm143,-85v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm120,-83v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm17,-82v-2,3,-2,14,0,17v3,-5,1,-11,0,-17xm62,-80v0,4,-1,9,2,10v0,-4,0,-8,-2,-10xm110,-75r0,5v2,-1,2,-3,0,-5xm73,-71v0,-1,-1,-4,1,-4v0,2,2,5,-1,4xm26,-72v-4,0,-1,4,0,6r0,-6xm152,-61v2,-6,-6,-11,-4,-3v1,1,1,4,4,3xm73,-65v0,0,0,-2,1,-2v0,0,0,2,-1,2xm65,-62v-5,1,-1,10,-2,14v3,-2,2,-9,2,-14xm104,-59v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm144,-59v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm35,-56v-5,-1,-2,7,-3,10v5,1,2,-7,3,-10xm42,-53v0,-2,-3,-4,-2,0r2,0xm19,-55v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm25,-48r0,14v3,-2,3,-11,0,-14xm42,-46v-4,-1,-1,5,-2,8v4,1,1,-5,2,-8xm63,-41v-1,2,2,7,2,2xm106,-30v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm51,-27v-2,-2,-5,-2,-5,2v0,5,2,8,5,3r0,-5xm42,-28v-1,1,-3,5,0,6v0,-2,1,-3,0,-6xm97,-28v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm26,-27v-2,0,-1,3,-1,4v1,-1,2,-2,1,-4xm104,-22v-2,5,-3,11,2,13v0,-5,1,-11,-2,-13xm59,-17v0,-3,-4,-6,-3,-1v1,1,2,3,3,1xm113,-16v1,-3,-2,-4,-2,-2xm138,-19v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm25,-16v1,2,-2,8,2,7v0,-3,-1,-5,-2,-7xm65,-16v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm90,-14v-2,2,-4,12,0,13r0,-13xm20,-13v-1,0,-1,1,-1,2v1,0,1,-1,1,-2","w":169},"E":{"d":"10,-255v3,-19,-11,-62,17,-48v15,-3,46,-2,71,-2v-1,4,-4,8,2,8v-2,-15,12,-1,20,-8v2,17,0,39,1,58v-8,9,-19,-1,-31,4v-4,-8,-4,0,-13,0r0,58v14,4,38,-7,41,7v-2,11,5,31,-4,35v10,20,-14,22,-21,13v1,-5,1,-12,-4,-13v0,0,4,20,-5,16v-26,10,3,69,-11,96v-1,-5,-4,-18,-6,-7v3,13,8,5,11,14v6,-6,11,5,12,-5v-4,0,2,-15,-5,-17v-1,5,1,13,-2,16v-2,0,-3,-9,-5,-26v8,0,16,-3,18,4r0,-4v2,0,4,4,4,11v8,2,0,-17,9,-10v-4,13,2,34,0,49v-7,2,-1,-7,-7,-6v5,23,-34,14,-56,16v-11,-4,-27,5,-36,-3v1,-21,-2,-47,1,-66v3,-1,2,6,4,8v-2,-7,5,-26,-4,-24v-1,-8,-3,-21,4,-19v1,-4,-1,-6,-5,-5v7,-38,-7,-79,3,-115v-5,-8,-2,-23,-3,-35xm30,-301v-10,4,-12,5,0,6r0,-6xm53,-297v-4,0,-1,7,-1,11v2,-1,3,-9,1,-11xm115,-297v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm68,-294v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm83,-290v1,3,-2,10,2,10v0,-4,0,-8,-2,-10xm38,-282v-5,4,1,14,-1,22r3,0xm69,-278v1,-3,-2,-4,-2,-2xm78,-278v0,-2,-4,-4,-3,0r3,0xm99,-281v1,3,-2,9,2,8v0,-3,0,-7,-2,-8xm15,-280v-2,6,-3,18,0,22v1,-7,1,-15,0,-22xm24,-270v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm78,-259v3,-2,0,-8,-3,-5v0,3,2,3,3,5xm78,-257v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm40,-249v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm48,-249v-4,0,-1,4,0,6r0,-6xm14,-247r0,5v2,-1,2,-3,0,-5xm72,-243v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm15,-239v-2,1,-3,14,3,13v0,-6,-3,-8,-3,-13xm47,-232v1,7,-3,20,3,22v-1,-7,3,-20,-3,-22xm26,-230v-5,0,-1,8,-2,12v5,0,1,-8,2,-12xm66,-225v0,-2,-4,-4,-3,0r3,0xm73,-222v-2,1,-5,8,0,7r0,-7xm26,-207v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm27,-187v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm35,-183v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm43,-179v0,-4,-4,-5,-3,0r3,0xm58,-180v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm74,-179v-4,-1,-1,5,-2,8v4,1,1,-5,2,-8xm48,-178v0,6,-2,12,0,17v7,-1,2,-19,0,-17xm58,-175v-2,2,-3,14,1,14xm20,-174v-4,0,-5,7,-1,8v2,-1,0,-6,1,-8xm21,-155r8,0v-2,-5,-2,-10,-2,-17v-2,0,-4,6,-6,17xm35,-164v-1,0,-3,-1,-3,1v1,6,4,11,4,2xm43,-163v-3,1,-3,8,0,10v2,-3,2,-6,0,-10xm51,-157v-1,-2,-4,-1,-3,2xm59,-157v-4,5,-3,29,2,36v2,-11,0,-23,-2,-36xm68,-157v0,0,-2,0,-2,1v0,0,2,0,2,-1xm83,-151v-2,-2,-4,-2,-3,3v2,0,4,0,3,-3xm105,-153v-3,1,-7,-1,-7,3v3,0,8,2,7,-3xm51,-148v-1,-1,-4,-5,-3,0r3,0xm20,-150v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm27,-150v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm75,-150v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm45,-136v-1,-4,-4,-5,-4,0v0,4,3,4,4,0xm29,-136v-1,-1,-4,-5,-3,0r3,0xm100,-139v-3,-1,-2,2,-2,4v2,-1,4,-2,2,-4xm109,-139v-4,-1,-6,3,-3,5v4,1,3,-2,3,-5xm52,-137v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm84,-137v-1,1,-3,3,0,3r0,-3xm36,-136v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm84,-132v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm46,-126v-4,-2,-5,1,-4,5v2,-1,4,-2,4,-5xm35,-123r0,7v2,-2,2,-5,0,-7xm29,-119v-6,7,0,34,2,47v0,-18,0,-32,-2,-47xm62,-113v1,-4,-4,-8,-4,-2xm22,-113v0,1,-4,5,0,4r0,-4xm70,-109v-5,0,-3,14,0,16v-2,-6,4,-14,0,-16xm46,-107v-2,1,0,6,-1,8v3,0,2,-6,1,-8xm62,-107v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm24,-102v-3,-2,-5,-2,-4,2v1,13,2,25,1,39r3,0r0,-41xm46,-97v-2,0,-2,7,0,8v0,-3,2,-6,0,-8xm62,-93v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm56,-91v-6,0,-4,13,-3,19r3,0r0,-19xm45,-87v1,5,-2,21,2,19v1,-5,1,-18,-2,-19xm61,-84v-3,9,0,28,2,37v-1,-12,3,-29,-2,-37xm70,-83v-4,4,-3,20,0,26v4,-7,-2,-16,0,-26xm11,-76v0,-2,0,-4,2,-3v0,2,0,4,-2,3xm11,-70v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm38,-65v-6,-1,3,17,-8,13r0,3v5,-5,4,4,7,6v5,-9,1,-16,1,-22xm47,-62v-5,0,-6,9,-1,10v2,-1,-1,-7,1,-10xm70,-56r0,5r0,-5xm123,-54v-2,0,-4,-3,-2,-3xm88,-54v-3,-1,-4,3,-2,4xm25,-51v-3,-1,-3,1,-3,4v3,1,2,-2,3,-4xm115,-46v-3,-1,1,-7,2,-4xm120,-40v2,-4,-1,-10,3,-10v3,18,2,34,2,53v-9,1,-18,2,-24,-2v7,-4,8,-1,13,-4v0,-14,-6,-45,6,-37xm16,-45v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm62,-43v1,5,-3,14,1,16v1,-6,6,-14,-1,-16xm101,-41v-5,5,3,30,5,12v-3,-4,-5,-8,-5,-12xm54,-40v1,3,-2,10,3,9v0,-4,0,-8,-3,-9xm40,-14v2,-7,-1,-32,-4,-20v0,13,2,20,4,20xm95,-31v-5,0,0,8,-1,11v5,0,6,-10,1,-11xm120,-30v-3,0,-3,3,-2,6v4,0,5,-5,2,-6xm25,-24v-6,0,-2,10,-3,15v6,0,2,-10,3,-15xm31,-20v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm31,-13v-2,0,-1,14,1,10v-2,-3,1,-8,-1,-10xm96,-7v0,6,1,5,2,1","w":133},"F":{"d":"15,-288v20,-6,30,1,50,-3v3,5,11,-4,8,8v-1,9,1,25,9,18v1,9,1,14,3,14v-1,-14,0,-25,-2,-38v6,-4,23,2,28,-2r5,10v0,-11,3,-10,11,-10v-1,22,14,68,-15,61v-1,-2,0,-6,-3,-5v1,14,-29,-4,-27,15v0,-1,-1,-2,-3,-2v-3,5,-1,13,0,20r3,-1v-1,17,-6,38,11,33v7,3,9,-4,10,10v5,0,-1,-9,5,-10v3,8,10,-6,9,6v5,2,5,-11,8,-1v-4,9,-7,7,-5,18v11,0,-4,7,2,9v1,-1,2,-2,2,1v-10,5,8,31,-16,25v0,-6,-5,-12,-5,-1v-5,1,-4,-4,-5,-7v-3,-1,-1,7,-5,7v0,-5,-2,-8,-4,-8v-3,6,-9,16,-7,29v-10,3,-1,-36,-10,-15v0,13,3,19,10,19v-1,30,4,67,-1,93r-3,-1r0,8v-9,-4,-11,15,-15,0v-3,7,-36,12,-30,-5v-4,-11,4,-30,-4,-34v-2,12,4,38,-4,39v0,-6,2,-22,-5,-13v-1,6,2,16,-3,17v1,-32,-6,-72,1,-99v-5,-5,9,-14,-1,-16r0,-112v2,-2,2,-4,4,-1v-3,12,4,23,4,8v-2,-10,1,-23,-1,-31v-7,-2,0,10,-6,10xm78,-291v5,1,6,13,1,15v-4,-2,-2,-11,-1,-15xm100,-283v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm44,-282v-5,0,-2,10,-2,17v6,0,1,-12,2,-17xm93,-266v0,-4,-4,-7,-3,0r3,0xm62,-268v0,0,-2,0,-2,1v0,0,2,0,2,-1xm100,-268v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm119,-244v-2,-4,-1,-20,-4,-16v0,11,2,16,4,16xm24,-250v-7,-1,-6,6,-1,7v4,0,1,-5,1,-7xm53,-245v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm55,-236v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm71,-234v-3,-1,-2,4,-2,6v5,2,5,-4,2,-6xm81,-232v-1,-1,-4,-3,-4,0r4,0xm40,-219v1,-8,-5,-16,-4,-6v1,3,0,7,4,6xm63,-219v5,-3,-3,-17,-3,-6v1,8,3,10,5,6r-2,0xm69,-223v6,3,-4,11,5,9v1,-5,-3,-16,-5,-9xm18,-218v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm40,-203v1,-6,-4,-13,-3,-3xm72,-203v4,-2,-2,-9,-3,-5xm82,-207v-1,0,-2,-4,0,-4r0,4xm34,-191v-11,1,-4,41,0,52v2,-5,-3,-18,5,-17v3,9,-5,21,3,23v1,-13,6,-34,-8,-30v-1,-8,0,-14,6,-7v6,-13,-9,-7,-6,-21xm40,-190v-3,0,-6,4,0,3r0,-3xm24,-184v-3,0,-4,9,-3,12v2,0,5,1,4,-2xm74,-181v-7,5,0,21,-3,31v-8,-3,-3,-17,-5,-29v-7,4,-5,43,1,59v-2,-8,-1,-13,5,-19v2,6,-1,16,4,19v-1,-9,1,-25,5,-7r6,-1v-1,-7,-5,-10,-10,-10xm46,-176v1,1,4,4,3,0r-3,0xm57,-176v-2,1,-3,5,0,6r0,-6xm51,-168v0,-3,-5,-4,-4,0r4,0xm82,-150v1,-6,-1,-25,-4,-14v2,4,-2,14,4,14xm60,-138v-1,-14,2,-35,-13,-23v5,5,8,13,10,23r3,0xm98,-154v1,-5,-4,-10,-3,-2xm105,-158v-4,0,-5,5,0,5r0,-5xm88,-155v0,4,-1,11,2,12v0,-4,1,-11,-2,-12xm114,-150v1,-6,-3,-6,-4,-2v1,2,2,4,4,2xm68,-144v0,-2,0,-4,3,-3v0,2,0,4,-3,3xm52,-143v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm114,-142v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm34,-137v-3,3,-3,10,-3,17v8,1,2,-11,3,-17xm26,-136v-1,2,-4,14,2,13v0,-5,-1,-9,-2,-13xm104,-128v-1,2,2,7,2,2xm42,-126r0,6r0,-6xm58,-124r0,6r0,-6xm115,-123v-5,0,-3,4,0,1r0,-1xm69,-115v-3,0,-5,4,-2,5v5,1,3,-2,2,-5xm42,-113v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm35,-112v0,0,-2,0,-2,1v0,0,2,0,2,-1xm45,-95v0,-5,-6,-4,-3,0r3,0xm31,-65v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm79,-59v-3,-1,-3,1,-1,3v2,0,1,-2,1,-3xm73,-21v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm39,-17v-1,0,-3,-1,-3,1v2,1,4,3,3,-1xm56,-17v-2,0,-4,0,-3,3r3,3r0,-6xm39,-11v-5,1,-2,11,-3,17v7,0,1,-12,3,-17xm79,-5v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm79,16v-2,-5,5,-12,4,-3v-1,1,-1,4,-4,3","w":136},"G":{"d":"60,-287v11,5,-2,-26,13,-19v3,-1,2,4,5,6v2,-16,16,6,19,-6v29,7,36,13,39,26v0,-2,-1,-6,1,-6v9,7,14,12,13,22v8,0,12,18,12,54v-4,6,6,20,-2,24v-11,-4,-36,5,-46,-3v-5,6,-11,-1,-17,0v-3,-24,11,-66,-16,-65v-8,8,-6,16,-6,25r0,128v-4,1,-3,-2,-5,-3v0,10,-6,13,-4,6v0,-2,-2,-2,-5,-2v1,4,0,11,6,7v5,5,12,23,5,32v10,17,7,40,10,63v9,-6,-10,-38,9,-39v8,0,10,-58,5,-73v-18,4,-6,-31,-10,-46r75,-1v4,34,4,91,0,122r-3,-1r0,11v10,1,2,23,4,33v-8,2,-5,-4,-10,-6v0,12,-23,8,-32,4v-2,-12,8,-19,-1,-24v0,4,-3,6,-9,6v2,23,-31,29,-54,25v-8,-15,2,-43,-5,-60v3,-3,2,-9,-3,-8v-1,2,0,6,-4,5v-1,-5,-4,-16,-5,-5v-2,12,12,3,10,18v-2,15,3,33,0,46v-11,-7,-22,-9,-21,-26v-2,3,-2,1,-1,5v-5,0,-11,-11,-16,-33v-2,-9,10,-1,6,-12v-15,3,-1,-18,-9,-26v2,-46,-5,-101,5,-139v-4,-9,0,-23,0,-34v1,1,3,1,5,1v-3,-19,8,-23,19,-35v2,2,-1,14,4,8v1,-5,-3,-15,4,-13v0,6,-2,13,4,14v-3,-11,2,-25,11,-19r0,13xm94,-296v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm96,-287v-2,-3,-4,-4,-3,2xm56,-288v-4,0,-1,6,-2,9v4,0,1,-6,2,-9xm87,-286v-5,2,-3,4,-9,2v-4,7,1,20,5,9v-2,-7,5,-5,4,-11xm102,-284v1,8,-3,21,2,25v-1,-8,3,-21,-2,-25xm32,-274v1,-6,-2,-7,-3,-2xm49,-277v-4,1,-4,7,0,8r0,-8xm144,-277v-3,0,-5,0,-4,3v2,-1,5,0,4,-3xm32,-269v-5,0,-1,9,-2,13v6,1,2,-8,2,-13xm27,-268v-5,-1,-2,5,-3,8v5,1,2,-5,3,-8xm65,-249v3,-2,0,-8,-3,-5v0,3,2,3,3,5xm114,-255v-4,0,-4,14,0,15r0,-15xm59,-247v4,-5,-2,-8,-3,-2xm131,-250v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm121,-245v-2,0,-2,0,-2,2xm34,-243v-2,0,-3,4,0,5r0,-5xm67,-236v-4,-1,-1,5,-2,8v4,1,1,-5,2,-8xm41,-231r0,21v6,-1,4,-18,0,-21xm34,-229v-2,1,-3,9,3,7v0,-4,0,-6,-3,-7xm147,-229v-4,0,-1,6,-2,9v4,0,1,-6,2,-9xm53,-228v-7,1,-4,27,0,34v0,-14,-3,-22,0,-34xm19,-227v-2,6,3,11,0,22v8,1,-1,-14,5,-17v-2,6,5,16,6,6v-3,-3,-1,-15,-8,-7v0,-2,-1,-4,-3,-4xm153,-226v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm37,-213v0,-4,-6,-5,-4,0r4,0xm37,-208v-1,0,-3,-1,-3,1v2,1,4,3,3,-1xm108,-207v-5,0,0,10,0,10r0,-10xm114,-207v-3,1,0,11,3,7v0,-4,0,-6,-3,-7xm30,-204v-2,-3,-3,3,-3,3v2,0,2,-2,3,-3xm22,-197v2,-4,-3,-7,-3,-3xm102,-202v-4,0,-6,4,0,3r0,-3xm37,-195v-3,1,-5,10,0,11r0,-11xm60,-192v1,3,-2,9,2,9v0,0,1,-8,-2,-9xm14,-190v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm54,-188v-6,0,-4,6,-3,10v5,1,2,-7,3,-10xm30,-176v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm16,-159v0,-3,-5,-6,-4,-1v1,1,2,2,4,1xm60,-156v1,3,-1,10,4,9v-4,-4,3,-12,-4,-9xm24,-148v0,-4,-4,-5,-3,0r3,0xm55,-151v-5,3,-4,16,-2,23v6,0,1,-13,2,-23xm110,-135v0,-2,-3,-4,-3,-1v1,4,1,4,3,1xm48,-137v-6,-1,-5,11,-11,1v-2,3,-4,6,-8,4v-1,9,6,3,9,11v2,0,2,-2,2,-5v5,0,8,-4,8,-11xm64,-128v1,-4,-4,-7,-4,-2v0,2,2,2,4,2xm71,-133v-4,-1,-3,3,-4,5v1,5,2,7,4,7r0,-12xm96,-130v-7,-1,-5,6,-3,10v3,-1,3,-5,3,-10xm64,-121v-5,-1,-3,4,-3,7v5,1,3,-4,3,-7xm24,-111v-7,0,-4,5,0,7r0,-7xm110,-111v-1,1,-4,4,0,3r0,-3xm32,-110v-5,0,0,9,0,9r0,-9xm41,-99v0,-4,-4,-5,-3,0r3,0xm57,-101v-4,0,-3,5,-3,9v0,5,1,8,3,8v0,-6,4,-13,0,-17xm48,-100v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm25,-94v-1,-3,-2,2,-2,2xm49,-90v1,-3,-3,-6,-4,-4v0,2,0,5,4,4xm112,-81v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm134,-79v-1,1,-3,6,2,5v0,-3,-1,-4,-2,-5xm16,-66v3,-2,-2,-7,-3,-3v0,2,2,2,3,3xm104,-71v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm23,-62v5,-1,1,-11,-1,-6xm34,-67v-4,-1,-1,5,-2,7v4,1,1,-5,2,-7xm65,-66v-2,0,-1,3,-1,4v1,-1,3,-3,1,-4xm112,-65v-4,-1,-1,5,-2,7v4,1,1,-5,2,-7xm56,-49v7,0,3,-17,-1,-13v2,5,-1,9,1,13xm105,-60v0,-3,-4,-4,-3,0r3,0xm128,-63v-3,-1,-5,1,-2,3v2,1,2,-1,2,-3xm34,-58v-7,1,-2,9,-1,13v7,-1,2,-8,1,-13xm142,-57v0,3,-1,7,3,6v1,-4,-1,-5,-3,-6xm28,-23v0,-9,1,-43,-6,-26v2,8,-3,24,6,26xm153,-49v-6,3,-2,36,0,47v2,-16,2,-35,0,-47xm34,-44v-3,5,-3,24,1,30v0,-3,2,-16,6,-14v-4,6,5,9,3,2v4,-17,-10,-6,-10,-18xm65,-44r0,48v10,-4,-2,-39,4,-48r-4,0xm43,-41v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm145,-41v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm75,-39v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm60,-33r0,5r0,-5xm120,-28v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm110,-26v1,3,-2,10,3,9v0,-4,0,-8,-3,-9xm107,-12v-4,-2,2,-17,-4,-11v1,5,-1,18,4,11xm75,-24v-3,2,-3,7,-3,12v6,1,4,-7,3,-12xm43,-20v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm97,-12v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm75,-4v-6,-1,-2,9,-3,13v5,0,4,-8,3,-13xm82,8v-2,0,-1,3,-1,4v2,0,1,-3,1,-4","w":173},"H":{"d":"9,-224v3,-31,-14,-75,24,-64v1,4,0,16,5,11v-2,-13,3,-8,10,-11v2,2,3,5,3,9v1,0,2,-3,3,-9v5,-2,2,5,5,6v4,-8,8,-2,15,-6v3,32,-1,70,1,99v-6,3,-6,9,4,13v4,-4,9,1,13,-1v1,7,2,10,4,10v1,-39,-4,-85,1,-120v1,5,3,8,5,8v1,-12,6,-9,6,-1v-2,8,3,31,-4,27v-1,-10,2,-18,-3,-21r-1,47v10,3,-2,-27,8,-20v1,18,0,28,3,45v4,-6,-2,-20,9,-19v-2,-4,-5,-2,-8,-5v1,-7,-4,-21,4,-22v1,3,-2,11,2,11v-1,-6,2,-19,-6,-14v0,-12,-2,-26,0,-37r41,0v1,8,1,13,3,13v1,-4,1,-18,5,-10v-2,19,4,46,-2,61r-3,-1r0,11r5,-1r-2,198v-2,-1,-6,-2,-5,2v11,-2,6,18,7,32v-3,8,-19,3,-29,4v-3,1,-1,-6,-5,-6v-1,12,-21,3,-30,6v-3,-5,-3,-23,0,-29v4,2,13,1,16,-2v-3,-4,-6,-18,-7,-6v-2,-2,-7,0,-10,0v-3,-11,-4,-36,0,-48v2,3,4,3,5,-1v-2,-8,-4,-7,-6,-1v-5,-12,9,-20,-1,-24v2,-13,1,-19,-6,-27v1,9,-6,12,-5,2v-6,0,-2,7,-10,6r1,98v-11,2,3,-24,-9,-18v7,5,-4,26,9,21v0,6,2,12,0,17v-1,-1,-2,-1,-4,-1v1,10,-3,16,-8,8v-3,8,-17,5,-24,3v3,-6,2,-17,2,-26r-3,0r0,27v-10,1,-31,7,-28,-12v2,-13,-6,-44,5,-42v-5,-5,-11,-32,0,-35v0,-5,1,-12,-5,-11v-2,-12,9,-14,2,-24xm60,-274v0,-3,-3,-5,-2,0r2,0xm31,-273v-2,-2,-3,0,-4,1r5,91xm22,-267v-2,0,-3,2,-3,5v4,1,3,-2,3,-5xm46,-259v1,-4,-2,-6,-3,-3xm54,-257v-3,-1,-2,3,-2,5v1,-2,2,-2,2,-5xm142,-248v1,-4,-4,-6,-5,-2v0,2,2,2,5,2xm158,-246v1,-6,-2,-8,-4,-4v0,2,0,5,4,4xm60,-242v1,4,-3,12,3,11v0,-5,1,-10,-3,-11xm52,-239v1,4,-3,13,2,13v0,-5,1,-11,-2,-13xm143,-221v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm73,-210v-1,-2,-4,-1,-3,2xm159,-208v0,-2,-4,-4,-3,0r3,0xm144,-207v-4,-1,-1,5,-2,8v2,-2,2,-4,2,-8xm113,-194v1,-3,-2,-6,-3,-4v0,3,0,5,3,4xm142,-189v1,10,-2,25,2,32v-2,-10,3,-26,-2,-32xm89,-172v-3,1,-4,6,0,7r0,-7xm104,-168v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm144,-155v-2,2,-2,4,0,5r0,-5xm72,-145r0,5v2,-2,2,-4,0,-5xm80,-144v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm67,-111v-4,2,-5,18,0,21v2,-5,-1,-14,0,-21xm99,-95v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm68,-72v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm100,-58v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm100,-52v-2,2,-4,4,0,4r0,-4xm124,-12v8,-1,4,-23,-1,-19v0,6,-3,15,1,19xm152,-16v-1,-6,-9,-8,-10,-2v4,0,6,2,6,8v2,0,3,-2,4,-6xm136,-20v-4,-1,-5,1,-4,5v4,1,5,-1,4,-5xm116,-10v1,2,2,4,2,0r-2,0xm52,-6r0,22v11,1,-2,-17,4,-21xm150,-5v-4,-1,-1,5,-2,8v2,0,5,1,4,-2","w":170},"I":{"d":"9,-309v14,-10,48,-1,30,18v-3,-2,-4,-7,-6,-2v-1,12,3,48,6,17v-5,-15,2,-12,4,-2v1,7,-3,20,3,22v1,-9,2,-29,7,-11v-4,-1,-3,2,-3,5r4,1v2,-16,-2,-35,2,-48r5,2v-1,-7,6,-5,12,-5v3,55,6,124,0,178v6,39,1,81,3,127v-18,9,-40,0,-64,4v-2,0,-3,-3,-4,-10v3,-13,-3,-32,1,-45v2,1,5,4,5,0v0,-7,-1,-8,-6,-9v10,-69,-8,-141,3,-202v0,2,0,4,3,4v1,-7,4,-17,-2,-17v0,4,-3,15,-4,6v-2,-11,4,-25,1,-33xm35,-308v-2,1,-2,10,0,11r0,-11xm21,-302v-1,-4,-4,-5,-3,0r3,0xm61,-304v-2,0,-3,7,0,7r0,-7xm29,-301v-5,0,1,8,-2,13v5,0,1,-9,2,-13xm61,-294v-2,1,-2,3,0,4r0,-4xm21,-282v3,-5,-3,-9,-3,-3xm61,-274v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm29,-261v-2,0,0,5,-1,7v0,0,2,0,2,-1xm54,-260v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm23,-251v-7,-1,-3,9,-4,14v7,1,5,-8,4,-14xm30,-248v-2,0,-4,4,-2,4v1,-1,2,-2,2,-4xm46,-246v-4,0,-1,4,0,6r0,-6xm16,-235v2,-4,-3,-7,-3,-3xm64,-216v-5,2,-2,12,-3,20v3,0,5,-5,5,-14xm57,-197v-1,-4,-5,-4,-4,1v5,4,-1,19,4,23r0,-24xm49,-198v-8,1,-1,21,0,18r0,-18xm50,-168v-4,1,-3,18,0,19v5,-6,-1,-8,0,-19xm57,-159v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm67,-130v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm19,-128v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm59,-126v-3,-2,-3,0,-3,3xm53,-125v-1,1,-5,4,0,4r0,-4xm44,-118v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm61,-80v1,-4,-3,-6,-4,-2v1,1,2,2,4,2xm22,-80v-6,-1,-3,9,-4,16v0,6,2,10,4,10r0,-26xm27,-63r0,11v3,-1,3,-10,0,-11xm27,-45v-1,12,0,14,11,16v1,3,-2,9,2,9v-2,-4,3,-22,-5,-15v-1,0,-3,-3,-6,-10r-2,0xm22,-41v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm55,-40v-3,0,-6,6,0,5r0,-5xm13,-21v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm23,-21v-4,0,-1,8,-2,11","w":85},"J":{"d":"34,-270v20,0,46,3,60,0v10,69,2,165,5,242v3,61,-31,74,-71,64v-2,4,-19,5,-21,-1v1,-16,-3,-37,2,-50v6,5,14,-5,20,-2r2,-11r7,2v1,-7,-1,-8,-7,-8r2,-123v-3,-24,-3,-49,5,-66v-9,-5,-1,-34,-4,-47xm91,-266v-5,10,-3,30,-2,44v4,1,5,-2,5,-5xm41,-264v-2,2,-3,7,0,9v2,-3,2,-6,0,-9xm82,-260v-6,-1,-2,8,-3,12v2,2,4,7,0,11v12,0,5,-16,3,-23xm84,-227v-3,-8,-13,-13,-9,-31v-8,6,-3,27,-2,40v6,-2,1,-12,9,-11v0,2,0,2,2,2xm65,-248v-1,9,1,27,3,16r0,-16r-3,0xm61,-237v-1,1,-4,5,0,5r0,-5xm83,-236v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm45,-228v-4,0,-6,10,-1,10v2,-3,-1,-8,1,-10xm61,-228v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm62,-211v-1,-4,-2,-4,-3,-1v1,4,1,4,3,1xm68,-213v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm92,-211v-6,5,0,30,2,15xm79,-205v-1,-6,-5,-5,-6,-1v2,2,4,5,6,1xm77,-197v-2,2,-1,3,1,1xm92,-185v-1,2,2,7,2,2xm76,-184v1,8,-1,20,2,26v-1,-9,2,-21,-2,-26xm91,-73v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm44,-39v-2,0,-4,0,-3,3v2,2,4,2,4,-1","w":112},"K":{"d":"9,-291v27,-5,47,2,60,-1v14,23,2,68,6,109v2,0,11,-34,27,-104v13,-13,45,-3,64,-5r-13,49v-4,1,-3,-3,-4,-6r-6,6v-1,-8,-3,-15,-4,-10v1,5,-1,17,6,11v10,21,-9,49,-17,89v5,17,8,39,11,54r0,-2v3,0,13,38,30,116v-21,-2,-51,4,-67,-3v0,-11,-11,-36,-7,-61v-6,-2,0,7,-5,7v-5,-26,-7,-49,-15,-63r0,118v-17,6,-44,-1,-64,2v-6,-97,-1,-205,-2,-306xm126,-290v-3,-1,-5,1,-4,4v3,2,5,0,4,-4xm116,-288v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm42,-281v-1,2,2,7,2,2xm27,-280v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm68,-280v-2,2,-4,4,0,5r0,-5xm126,-277v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm133,-277v0,0,-2,0,-2,1v0,0,2,0,2,-1xm133,-275r0,5r0,-5xm156,-271v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm149,-252v2,-6,-4,-18,-4,-7v0,5,2,7,4,7xm124,-259v-1,5,-1,15,0,22r3,0v-1,-8,2,-19,-3,-22xm102,-254v-5,3,0,18,-1,27v9,2,2,-7,5,-13v-4,-2,-5,-7,-4,-14xm134,-253v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm111,-250v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm115,-249v0,2,-1,6,2,5v0,-3,-1,-4,-2,-5xm120,-228v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm136,-220v1,-4,-2,-9,-4,-6v1,3,0,7,4,6xm111,-217v1,-4,-3,-8,-4,-4xm120,-220v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm47,-205v0,-4,-4,-7,-3,0r3,0xm89,-178v-2,2,-5,3,-3,6v3,-1,5,-2,3,-6xm104,-178v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm32,-169v-4,1,-4,15,0,16r0,-16xm112,-169v-2,1,-2,3,0,5v2,-1,0,-3,0,-5xm25,-167v-2,0,-4,0,-3,2v2,2,4,2,3,-2xm25,-156v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm122,-125r0,6r0,-6xm133,-119v-3,0,-6,5,0,4r0,-4xm106,-76v1,10,-2,25,2,32v-1,-10,2,-25,-2,-32xm52,-69v-6,0,-2,11,-3,16v6,0,2,-11,3,-16xm28,-67v-2,1,-2,8,0,9r0,-9xm33,-63v5,4,-3,30,7,21v-2,-8,1,-26,-7,-21xm28,-57v-3,3,0,12,-1,17v8,1,3,-10,4,-15xm43,-53v1,3,-2,9,3,8v0,-4,0,-7,-3,-8xm132,-52v0,4,-3,10,2,11v0,-4,1,-10,-2,-11xm126,-41v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm150,-39v-1,-1,-2,-3,-2,0r2,0xm108,-33v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm152,-23v-3,0,-5,0,-4,3v3,1,5,1,4,-3xm144,-20v-4,0,-2,8,0,10r0,-10xm134,-17v-4,0,-7,4,-1,4v4,0,4,-2,1,-4xm40,-10v1,-4,-4,-7,-4,-2v0,4,2,4,4,2xm20,-12v5,3,-4,13,5,11v1,-6,0,-5,6,-4r-1,-9v-2,2,-5,2,-10,2xm72,-7v-6,-1,-4,5,-3,8v5,1,4,-5,3,-8xm67,-4v0,0,-7,0,-3,2","w":173},"L":{"d":"9,-302v16,-10,39,0,63,-4v10,67,-4,181,4,251v-2,6,-3,9,-4,9v-2,-5,-1,-12,-4,-15v0,5,-2,13,0,17r7,-1v4,6,-1,28,6,36v1,-10,-5,-26,2,-31v8,14,0,23,5,40v-22,7,-49,-1,-76,3v-7,-95,-2,-199,-3,-305xm24,-187v-3,-1,-2,3,-2,5v3,0,3,-2,2,-5xm36,-139v-6,-1,-2,9,-4,14v-3,3,1,14,5,7xm43,-134v0,0,-2,0,-2,1v0,0,2,0,2,-1xm57,-109v8,-2,0,-29,0,-19v0,6,-2,14,0,19xm52,-123v-7,0,1,15,-10,11v0,6,-2,9,0,14v4,-4,8,-10,9,-1v5,-8,1,-11,1,-24xm41,-119v1,1,2,3,2,0r-2,0xm16,-110v1,5,-3,15,4,13v1,-6,1,-12,-4,-13xm35,-108v-4,0,-3,8,-2,12v4,-1,6,-9,2,-12xm30,-105v-1,-2,-4,-2,-4,1v2,4,-2,11,2,13xm58,-103v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm19,-78r0,13v3,-2,3,-11,0,-13xm69,-69v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm80,-51v-1,-4,2,-10,4,-6v0,4,0,11,-4,6xm100,-50v-4,-2,-6,-9,1,-9v5,4,0,2,-1,9xm89,-51v-1,-4,2,-9,3,-2v0,1,-1,2,-3,2xm105,-53v0,-3,0,-5,3,-4v0,3,0,5,-3,4xm63,-53v-5,-1,-3,4,-3,7r3,2r0,-9xm37,-49v-2,2,-2,4,0,5v3,-1,3,-3,0,-5xm32,-45v-1,-2,-5,-1,-4,2v2,0,3,-1,4,-2xm92,2v-3,-13,-5,-37,0,-47v2,5,2,16,5,10v-4,-7,4,-16,5,-4v-4,17,8,39,-3,41v-2,-9,-2,-1,-7,0xm112,3v-11,-4,-8,-38,-4,-43v4,0,7,9,8,29v0,6,0,12,-4,14xm95,-30v-3,6,-4,20,2,24v-1,-8,2,-20,-2,-24xm33,-11v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm40,-8v-4,1,-3,4,0,6r0,-6xm63,-7v-3,1,-3,3,0,5r0,-5","w":126},"M":{"d":"157,-185v-10,22,-4,86,-24,193r-37,0v-14,-41,-15,-135,-27,-184r0,180v-3,6,-21,6,-24,0v1,-21,3,-35,-3,-52v-2,22,-2,34,1,53v-3,5,-13,4,-12,-5v-6,0,1,11,-13,8v-5,0,-7,-3,-7,-10v1,-46,-5,-99,2,-140v-4,-6,-4,-37,7,-30v1,-8,-6,0,-9,-4r1,-125v8,1,20,-3,22,4r0,16v8,-1,-2,-17,6,-20r56,0v4,6,5,63,19,138v-1,-15,11,-114,15,-138v27,2,55,-1,83,0v8,43,3,119,3,178v0,30,1,86,0,127v-10,9,-38,2,-55,4v-13,-18,3,-69,-4,-88r0,-105xm28,-277v2,14,-4,35,3,44v0,0,3,-35,-3,-44xm24,-235v0,-7,-5,-20,-3,-8v-4,2,-2,9,3,8xm34,-197v1,-4,-3,-10,-3,-4v0,4,1,9,3,4xm135,-204v-2,0,0,5,-1,7v0,0,2,0,2,-1xm32,-193v3,22,-3,53,5,70v2,-25,0,-48,-5,-70xm85,-153v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm44,-152v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm21,-149v-2,-2,-4,-2,-3,3v2,0,4,0,3,-3xm22,-125v-2,1,-5,2,-4,6v1,0,3,-1,3,1v0,4,-2,9,0,13v6,-5,0,-9,1,-20xm37,-113v4,-2,0,-13,-1,-6xm28,-113v6,-1,2,-11,-1,-6xm45,-107v-4,0,-2,4,0,5r0,-5xm22,-89v4,-2,1,-14,-1,-13xm48,-93v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm22,-86v0,8,2,24,-7,20v4,3,3,13,11,21v0,-11,2,-39,-4,-41xm49,-62v2,-5,-1,-7,-7,-4v-1,1,-2,0,-2,2xm170,-67v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm32,-37v-3,-1,-3,1,-3,4v4,1,4,-1,3,-4xm37,-25v1,-4,-2,-9,-4,-7v1,3,-1,8,4,7","w":226},"N":{"d":"97,-33v-12,-10,-14,-68,-27,-83r1,131v-14,4,-33,0,-51,2v-10,-24,0,-83,-5,-109v0,-3,9,-4,0,-5v5,-56,-3,-121,3,-169v-6,-20,3,-31,27,-26v2,0,3,2,3,5v4,-8,30,-9,23,9v4,0,5,7,9,22r27,103v7,-22,-6,-90,5,-115v-14,-26,19,-25,43,-24v20,2,3,28,8,47v-3,0,0,-5,-4,-4v0,12,9,23,2,36r-1,-1v9,16,-2,35,5,45v-6,57,-1,129,0,182v-13,8,-34,4,-53,4v-13,0,-3,-12,-10,-17v6,2,4,-5,4,-9v-5,-1,-2,6,-5,5v-2,-10,-6,-18,-4,-29xm128,-289v-3,0,-6,3,-1,3xm55,-287v1,3,-2,9,3,8v1,-4,-1,-7,-3,-8xm33,-270v7,-2,-2,-24,-1,-8xm65,-279v1,-2,-2,-7,-2,-3xm59,-270v0,-4,-6,-7,-4,-1v1,1,3,4,4,1xm50,-273r0,5r0,-5xm27,-272r0,5r0,-5xm43,-272v-5,-1,-4,6,-3,10v5,1,2,-7,3,-10xm43,-260v-4,2,-5,15,0,17r0,-17xm128,-260v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm50,-256v-4,0,-2,8,0,10r0,-10xm36,-255v-4,-1,-3,2,-3,5r3,2r0,-7xm160,-255v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm128,-248v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm65,-244v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm161,-243v0,0,0,-2,1,-2v0,0,0,2,-1,2xm22,-240v-5,-1,-4,2,-1,4xm27,-236v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm21,-233v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm152,-232v-4,0,-1,6,-2,9v4,0,1,-6,2,-9xm43,-228v-2,1,-5,7,1,5xm52,-223v0,-3,-4,-6,-4,-1v1,1,2,2,4,1xm75,-227v-4,0,-5,5,0,5v1,-2,1,-4,0,-5xm68,-225v-5,-1,-5,2,-2,5v1,-1,2,-2,2,-5xm159,-225v0,3,0,7,2,8v0,-3,0,-7,-2,-8xm127,-217v-4,5,-11,-3,-8,6v7,-4,9,1,6,7v7,-2,2,-5,2,-13xm154,-209v1,-5,-1,-11,-4,-7v1,3,-1,8,4,7xm22,-212v0,-3,-2,-2,-4,-1v0,2,3,3,4,1xm145,-213v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm29,-209v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm43,-209v-1,0,-3,-1,-3,1v1,1,4,3,4,0xm68,-208v-4,1,-3,6,-3,10v5,1,2,-7,3,-10xm122,-208v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm37,-206v-5,-1,-4,5,-3,8v5,1,2,-5,3,-8xm145,-203v-1,1,-3,3,0,3r0,-3xm122,-202v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm154,-202v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm129,-197v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm122,-196v-7,-1,0,12,-3,17v7,0,3,-10,3,-17xm83,-193v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm68,-186v-5,-1,-2,3,-2,6v3,1,2,-4,2,-6xm93,-180v-2,0,-4,0,-3,3v2,2,4,2,3,-3xm23,-177v-4,-1,-1,5,-2,8v4,0,-1,-5,2,-8xm38,-171v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm138,-168v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm31,-156v2,-2,-1,-6,-3,-4v0,2,2,3,3,4xm69,-160v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm77,-155v-3,-1,-3,1,-1,3xm92,-145v-2,1,-2,3,0,5r0,-5xm99,-142v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm131,-142v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm85,-139v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm55,-137v-7,2,5,18,-10,16v0,6,8,3,11,6xm101,-132v-6,-2,-3,16,-3,16v8,1,-3,-14,3,-16xm47,-128v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm117,-128v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm111,-126v-3,-2,-5,0,-4,4v3,1,5,-1,4,-4xm40,-123v-4,-1,-1,5,-2,7v2,-1,2,-4,2,-7xm26,-122v-3,-1,-2,2,-2,4v1,-1,4,-3,2,-4xm27,-112v-1,-1,-4,-5,-3,0r3,0xm101,-111v-5,-1,-2,6,-2,9v5,1,2,-6,2,-9xm56,-101v0,-3,-3,-5,-2,0r2,0xm112,-102v-2,-2,-6,-5,-5,0v1,2,3,2,5,0xm124,-105v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm36,-99v-6,-2,-4,5,-2,7v2,-1,2,-4,2,-7xm50,-99v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm119,-99v-3,-1,-2,3,-2,5v1,-1,2,-2,2,-5xm133,-94v-5,1,-3,22,3,16v-2,-5,-3,-10,-3,-16xm42,-92v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm119,-91v-2,0,-4,7,0,6r0,-6xm42,-81v-2,1,-5,3,0,3r0,-3xm150,-80v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm42,-76v-3,-1,-2,2,-3,4v3,1,5,-1,3,-4xm59,-76v-3,-1,-5,1,-4,4v3,1,5,-1,4,-4xm88,-76v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm119,-75v-5,0,-1,8,-2,12v5,0,1,-8,2,-12xm135,-72v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm42,-62v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm119,-58v-5,0,-1,10,-1,15v3,-3,0,-11,1,-15xm136,-57v-9,1,-3,13,-1,30v1,-10,0,-22,1,-30xm140,-57v-1,3,2,10,3,3xm159,-40v1,-5,0,-23,-4,-13v0,9,2,13,4,13xm103,-54r0,5r0,-5xm112,-51v0,-2,-4,-4,-3,0r3,0xm97,-43v1,-5,-6,-7,-4,-1v1,1,3,3,4,1xm150,-44v0,4,-3,11,2,11v2,-4,2,-11,-2,-11xm103,-41v-2,0,-3,9,1,8xm159,-35v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm22,-27v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm136,-25v-4,0,-1,8,-2,11v4,0,1,-8,2,-11xm151,-19v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm109,-11v0,2,5,6,5,1v-2,-2,-2,-1,-5,-1xm59,-5v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm115,-3v0,-2,-4,-3,-3,0r3,0xm53,-1v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm138,-1v-6,-1,-2,8,-3,12v6,1,3,-7,3,-12xm37,0v-1,0,-1,1,-1,2v1,0,1,-1,1,-2","w":178},"O":{"d":"11,-206v10,-4,2,-13,4,-26v-3,-28,31,-62,66,-64v1,2,2,4,5,5v1,-8,4,-3,9,-5v84,0,71,122,70,200v0,48,-2,71,-7,71v2,6,-14,39,-23,22v3,-3,1,-15,-3,-10v2,15,1,28,-11,31v0,-2,1,-5,-2,-4v-1,3,0,8,-5,7v-1,-3,1,-9,-3,-9v1,4,-2,16,-5,7v-2,-4,2,-11,-3,-11v2,20,-8,17,-18,17v-50,0,-79,-44,-70,-79v-7,-45,-3,-99,-4,-152xm86,-265v-2,2,-2,4,0,5r0,-5xm62,-258v-3,-1,-2,2,-2,4v2,-1,4,-2,2,-4xm110,-245v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm95,-244v-37,4,-5,64,-20,97r3,0r-2,99v1,26,19,30,22,7v3,2,5,0,4,-4v-2,1,-4,4,-5,-1v6,-62,-1,-120,1,-187v7,3,4,-5,4,-9v0,0,-4,13,-7,-2xm50,-242v1,7,5,11,4,3v-1,-1,-1,-4,-4,-3xm63,-229v0,-3,-4,-6,-3,0r3,0xm39,-223v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm30,-205v7,-1,-2,-16,-2,-6xm46,-214v-4,0,-1,6,-2,9v4,1,4,-3,4,-7xm23,-212v-2,1,-3,4,0,4r0,-4xm63,-203v2,-4,-3,-7,-3,-3xm39,-202v-3,-1,-3,5,-2,7v4,1,1,-5,2,-7xm71,-200v-4,0,-1,6,-2,9v4,0,1,-6,2,-9xm31,-184v3,-1,0,-13,-1,-10v2,3,-1,8,1,10xm41,-176v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm106,-174v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm21,-157v0,-2,-6,-3,-5,0v1,3,3,3,5,0xm113,-157v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm18,-150v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm74,-149v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm122,-144v-2,-3,-4,-4,-3,2xm64,-141v-1,2,1,8,2,3xm57,-139v2,7,-4,24,3,22v-2,-7,2,-19,-3,-22xm121,-138v-4,-1,-1,5,-2,7v1,0,3,1,3,-1xm42,-125v-2,0,-6,3,-3,5v2,-1,4,-2,3,-5xm26,-115v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm28,-93v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm116,-93v-3,-1,-2,2,-2,4v2,-1,4,-2,2,-4xm124,-88v-4,0,0,6,0,6r0,-6xm148,-86v-1,0,-3,-1,-3,1v2,1,4,3,3,-1xm108,-84r0,5r0,-5xm20,-80v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm20,-54r0,6v1,-2,3,-5,0,-6xm38,-52v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm38,-47v-2,1,-2,3,0,5r0,-5xm20,-46v0,4,-1,9,2,10v0,-4,0,-8,-2,-10xm102,-31v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm105,-20v0,-2,-4,-3,-4,-1v1,1,2,2,4,1xm80,-19v-4,0,-2,6,0,8r0,-8xm96,-14v1,-3,-3,-7,-2,-2xm126,-18v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm121,-8v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm96,-5v-2,2,-2,4,0,6r0,-6xm105,-3v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm96,3v-2,3,-3,15,0,18v1,-6,1,-13,0,-18","w":176},"P":{"d":"11,-285v-4,-16,11,-17,25,-15v1,2,0,6,3,5v1,-12,15,2,20,-5v6,4,8,-2,12,5v1,-9,26,-7,30,0v-2,13,1,30,1,45r3,0r0,-28v9,5,8,34,3,45v-3,-1,-2,-6,-6,-1v-1,9,10,1,8,8r2,32v5,1,4,-2,4,-6v-2,-30,-10,-74,0,-96v2,8,-3,34,5,23v0,-7,-6,-19,2,-21v22,9,33,34,32,56v-1,21,2,96,-9,101v0,1,-5,9,-13,12v1,-8,0,-31,-5,-16v0,7,6,24,-4,18v-2,4,-6,5,-5,-2v2,-9,11,0,7,-17v-7,-3,-2,4,-5,7v-5,-5,-1,-18,-7,-23v-4,19,11,53,-28,42v-16,2,-7,18,-7,34r0,87v-11,8,-43,4,-65,3xm95,-294v-6,-1,-4,10,-3,13v7,0,2,-7,3,-13xm25,-281v-2,-2,-4,-1,-3,2xm48,-280v0,0,-2,0,-2,1v0,0,2,0,2,-1xm27,-274v-7,-2,-3,7,-4,11v1,1,3,4,4,1r0,-12xm54,-271v1,3,-2,9,3,8v0,-4,0,-7,-3,-8xm96,-270v-4,-1,-12,7,-4,10v6,0,2,-6,4,-10xm64,-266v1,-3,-1,-6,-2,-3xm127,-270v-7,0,-1,13,-3,18v8,0,5,-13,3,-18xm39,-264v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm121,-254v-5,-1,-2,5,-3,8v3,-1,3,-4,3,-8xm49,-253v-2,2,-2,4,0,5r0,-5xm79,-247v2,25,-3,57,2,79v27,5,19,-36,19,-59v0,-13,-7,-20,-21,-20xm122,-239v-5,-1,-5,7,-4,9v6,2,5,-4,4,-9xm42,-236v-3,1,-5,9,0,10v1,-3,1,-7,0,-10xm74,-215v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm43,-214v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm123,-173v-2,0,-1,3,-1,4v1,-1,3,-3,1,-4xm110,-136v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm94,-125v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm63,-111v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm68,-17v0,-2,-4,-4,-3,0r3,0xm20,-9v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm62,-9v-4,-1,-3,2,-3,5v2,-1,5,-2,3,-5","w":161},"Q":{"d":"8,-202v5,-6,14,2,15,6v4,-12,-9,-17,-14,-12v-2,-35,5,-70,31,-85v-2,5,3,18,4,6v-1,-6,5,-9,6,-1v0,14,-5,31,1,41v3,-20,1,-35,2,-55v10,-2,20,-9,28,-2v0,-7,6,-3,12,-4v2,6,1,15,4,20v3,-6,-4,-19,4,-19v5,6,8,-2,13,14v0,-4,0,-8,3,-9v19,8,25,17,28,28v7,-3,6,7,6,15v-1,3,0,7,-4,6v-1,-3,1,-10,-5,-8v0,15,-3,28,4,38r3,-3v7,12,-2,35,6,41v3,-7,-1,-33,5,-22v-5,68,28,186,-39,198v-1,10,4,16,13,16v-1,2,1,10,2,4v0,-1,-2,-3,0,-4v11,3,27,-7,27,8v0,18,-4,16,-6,24v5,-1,6,2,3,5v-36,-3,-88,13,-85,-30v-3,-20,0,-46,-8,-61v-2,16,8,42,0,53v-3,1,0,-7,-5,-5r0,3v-21,1,-49,-29,-50,-56v4,-2,4,-8,4,-15v-5,-2,-2,12,-7,1r2,0v-7,-41,0,-92,-3,-136xm80,-302v-2,4,-2,8,0,12v3,-1,3,-10,0,-12xm66,-300v-2,0,-2,7,0,7r0,-7xm89,-298v-5,0,-2,9,0,11r0,-11xm107,-290v-1,-8,-5,-10,-5,-1v0,4,5,7,5,1xm44,-295v0,-2,3,-4,2,0r-2,0xm59,-297v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm98,-176v-7,-26,11,-72,-16,-84v1,-7,0,-29,-2,-25v1,9,-5,22,1,27v-18,38,1,111,-8,148v5,22,-2,61,5,75v-1,-3,1,-5,4,-4v0,0,3,11,-1,13v-1,-4,-2,-7,-4,-7v0,14,0,53,4,50v3,-13,-3,-30,2,-40v3,5,-1,18,5,20v1,-14,-3,-26,-1,-36v8,-2,3,35,9,13v-2,-3,-2,-6,0,-9r6,1v1,-10,-2,-23,1,-31v3,3,5,12,6,-1v-1,-4,2,-12,-4,-11v0,5,0,6,-3,6v0,-4,-2,-6,-6,-7r1,-94v8,2,4,-10,1,-4xm75,-281v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm113,-281v-2,0,-4,0,-3,2v3,3,5,5,7,0xm89,-277v-4,0,-3,11,-1,12v2,-2,0,-8,1,-12xm66,-276v-2,1,-4,12,0,12v4,-5,1,-5,0,-12xm129,-274v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm59,-270v-4,-1,-2,6,-2,11v5,0,2,-6,2,-11xm114,-270v-4,0,-5,6,0,6r0,-6xm137,-270v-2,0,-4,7,0,6r0,-6xm105,-269v-2,0,0,4,-1,6v3,-2,3,-4,1,-6xm98,-268v-2,-1,-2,1,-2,3xm131,-268v-5,-1,-2,7,-3,10v4,0,2,-7,3,-10xm123,-266v-5,-1,-2,5,-3,8v4,-1,4,-4,3,-8xm45,-259v-3,0,-5,0,-4,3v3,0,5,0,4,-3xm155,-258v0,9,8,18,1,21v-2,-6,1,-13,-1,-21xm21,-254v-3,-1,-3,1,-3,4r3,2r0,-6xm130,-254v-4,0,0,6,0,6r0,-6xm130,-247v-7,13,-2,26,6,30v-1,5,-9,-3,-7,6v22,-3,1,-24,1,-36xm147,-244v0,-3,0,-5,3,-4v0,3,0,5,-3,4xm51,-242v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm150,-237v-5,0,-4,-5,0,-6v0,3,2,3,0,6xm128,-186v-9,-3,1,-58,-9,-46v3,17,2,36,2,56v5,-1,6,4,9,6v8,-12,5,-19,-1,-32xm51,-236v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm147,-232v1,-1,4,-4,3,0r-3,0xm157,-216v-3,-5,-3,-23,3,-17v-1,6,2,16,-3,17xm50,-190v12,-3,-4,-48,0,-26r0,26xm147,-212v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm147,-207v-4,1,-5,19,0,23v-2,-9,4,-18,0,-23xm70,-189v4,-6,-4,-18,-4,-7v-5,-5,-9,-1,-6,6v3,1,5,-1,4,-4xm140,-201v-5,-1,-2,7,-3,10v5,1,2,-7,3,-10xm118,-181v-1,0,-3,-1,-3,1v2,1,4,3,3,-1xm24,-175v0,0,-2,0,-2,1v0,0,2,0,2,-1xm22,-173r0,5v2,-1,2,-3,0,-5xm129,-159v3,-11,-9,-17,-10,-8v-1,-3,-1,-3,-4,-2v0,8,3,29,3,12v0,-12,6,2,11,-2xm17,-170v-5,0,0,10,0,10v3,-1,0,-7,0,-10xm108,-170r0,8v3,-1,3,-7,0,-8xm54,-165v0,-3,-3,-5,-4,-3v-1,3,1,3,4,3xm71,-164v1,-3,-1,-6,-2,-3xm103,-162v-1,-4,-7,-7,-5,0v2,1,4,3,5,0xm108,-159v0,4,0,9,2,11v0,-4,1,-10,-2,-11xm104,-146v-5,2,-2,15,-1,20v4,-4,0,-14,1,-20xm135,-130v1,-3,-2,-4,-2,-2xm17,-132v-1,2,2,7,2,2xm125,-130v2,6,-2,18,3,21v1,-7,1,-14,0,-21r-3,0xm120,-126v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm136,-120v1,-4,-4,-7,-3,-1v1,1,2,3,3,1xm123,-72v0,-12,2,-43,-4,-38r1,38r3,0xm114,-104v-3,-1,-2,4,-2,6v3,-1,3,-3,2,-6xm128,-103v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm153,-93v1,-5,-4,-5,-3,-1v1,1,2,3,3,1xm146,-93v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm108,-89v-5,-1,-2,5,-3,8v5,1,2,-5,3,-8xm66,-85v2,10,-3,27,3,34v0,-12,5,-28,-3,-34xm131,-83v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm61,-79v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm117,-73v-4,-2,-6,3,-3,5v1,-2,3,-2,3,-5xm61,-67v2,-7,-3,-5,-4,-1v1,8,6,24,-1,29r-3,-2v1,4,-3,13,3,12v-2,-7,4,-12,4,-1v5,-9,-2,-25,1,-37xm54,-65v1,-4,-4,-9,-3,-2xm54,-56v-2,2,-4,4,0,4r0,-4xm96,-37v-5,-3,-1,-24,2,-16v0,6,1,13,-2,16xm46,-30v6,-2,1,-17,-2,-7xm40,-40v-4,0,-2,8,0,10v0,-3,2,-8,0,-10xm125,-40v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm32,-37v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm62,-21v1,-3,-2,-9,-3,-5v0,3,-1,6,3,5xm48,-26v-6,1,-1,14,-2,22v7,0,1,-15,2,-22xm103,-20v-4,1,-3,15,0,16v0,-5,-2,-12,0,-16xm57,-18v-4,1,-4,16,0,17r0,-17xm40,-15r0,6r0,-6xm96,-9v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm88,-2v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm96,-2v-5,1,-3,9,-2,14v4,-2,2,-9,2,-14xm103,-2v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm110,8v7,-1,-3,-14,-1,-6","w":169},"R":{"d":"23,-172v4,-9,2,-20,-6,-23v0,2,1,12,-6,11v1,-32,-5,-69,0,-98v7,6,7,-7,17,-4v0,3,1,6,5,5v3,0,1,-5,5,-4v-1,6,1,6,6,4v2,6,-1,16,4,19v-1,-7,5,-9,6,-1v0,7,-2,15,2,19v1,-7,1,-13,0,-20r8,0v-2,0,-2,-2,-2,-5v5,-8,-4,-3,-9,-7v-4,3,-4,-5,-5,-8v-3,0,-8,4,-8,-1v10,-1,21,-3,22,7v5,-16,20,3,27,-2v0,9,4,13,3,23v6,2,3,-8,6,-7v6,0,13,1,16,-2v1,9,2,13,7,9v2,2,3,7,4,13v3,-1,6,-13,8,0v9,-2,0,-19,3,-27v4,-1,16,18,20,44v-5,0,-6,4,-5,9v5,1,-2,-9,5,-7v1,22,2,79,-9,72v-1,-2,1,-7,-1,-8v2,22,-13,15,-21,24v28,11,34,29,31,56v-14,3,3,3,1,25v-3,25,5,56,-2,76v-8,-1,-27,10,-25,-8v-4,1,2,15,-6,9v-12,3,-33,6,-27,-13v-2,-11,-1,-23,10,-17v1,-6,0,-6,-9,-6v-8,-25,9,-93,-13,-101r0,-2v-1,3,-5,2,-9,2r0,99v-11,3,15,48,-15,38v-11,3,-30,0,-18,-7v-13,-2,-10,14,-30,9v-2,0,-3,-5,-4,-13v3,-26,3,-54,0,-80r2,0v-4,-20,-5,-79,5,-93v-1,0,-2,-1,-2,-3v6,-1,7,8,8,-2v5,2,10,-1,5,-5xm25,-284v-1,1,-4,4,0,3r0,-3xm55,-280v-1,-7,-3,-3,-1,0r1,0xm73,-284v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm113,-273v-4,-1,-3,-9,1,-9v5,0,2,6,1,9r-2,0xm119,-280v6,-1,20,8,11,9v-7,-1,-11,-5,-11,-9xm16,-276v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm85,-274v-3,4,1,6,-2,8r4,0v-1,-3,1,-6,-2,-8xm23,-266v1,5,-3,15,2,16v-1,-5,2,-14,-2,-16xm33,-266v-4,6,-1,38,1,49v1,-17,2,-35,-1,-49xm129,-259v0,0,3,-8,2,-3xm44,-252v-6,1,-1,-10,-6,-7v-4,12,12,17,1,20v2,5,0,15,7,9v-3,11,8,14,16,12v2,9,1,12,5,12v1,-10,0,-31,-3,-36v0,7,-1,30,-8,16v-3,2,-3,4,-5,-4v4,1,5,4,9,-2v-5,-12,-10,-15,-14,-27v0,4,0,6,-2,7xm65,-260v-2,1,-5,4,0,3r0,-3xm81,-252v-5,-1,-5,3,-1,4v2,0,1,-3,1,-4xm145,-252v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm126,-242v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm46,-231v0,0,-5,-6,0,-5r0,5xm23,-232v2,5,-3,17,5,12v-5,-4,1,-16,-5,-12xm96,-215v6,-14,-25,-28,-21,-8v-5,-1,-4,6,-3,9r3,-1v2,16,0,40,0,49v9,1,20,-1,19,-8v7,2,-1,34,9,18v-6,-13,-4,-31,11,-19v3,-19,-11,-2,-7,-18v-2,-4,0,-12,-5,-13v2,7,-6,17,-4,4v0,-4,1,-13,-2,-13xm17,-232v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm112,-226v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm43,-223v-1,0,-5,4,-2,5v2,-1,4,-2,2,-5xm146,-216v-3,-1,-2,2,-2,4xm128,-215v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm125,-196v12,-2,0,-23,-1,-6xm112,-206v-7,2,2,24,2,8v0,-3,0,-7,-2,-8xm123,-201v-1,-3,-6,0,-2,1xm27,-201v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm139,-185v1,-15,-3,-15,-11,-9v2,4,8,-1,8,9r3,0xm121,-195v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm152,-195r0,5r0,-5xm147,-194v-6,4,-6,25,0,32v2,-11,2,-20,0,-32xm152,-189v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm130,-184v-2,1,-2,8,0,9r0,-9xm53,-159v4,-11,-2,-33,-7,-13v-2,-1,-4,-1,-5,0v-2,18,7,-1,9,13r3,0xm35,-180v-1,1,-3,3,0,3r0,-3xm11,-174v0,-2,-1,-5,2,-4v3,2,4,5,-2,4xm107,-174v-8,-2,0,10,-4,12v2,6,2,9,5,9v-1,-7,0,-16,-1,-21xm114,-173v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm130,-173v-2,1,-2,8,0,9r0,-9xm121,-172v-3,6,1,11,-9,9v-2,15,8,1,9,17v5,-5,2,-15,10,-6v0,-14,-11,-4,-10,-20xm59,-171v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm75,-164v-5,0,-2,8,-3,11v7,2,3,-7,3,-11xm92,-153v4,-5,-4,-17,-5,-6v1,3,0,7,5,6xm29,-163v-3,0,-5,2,-2,4v3,1,2,-2,2,-4xm59,-159v1,-4,-2,-6,-3,-3xm37,-158v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm53,-153v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm115,-150v-2,0,-3,2,-3,5v4,1,6,-3,3,-5xm108,-147v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm101,-142v-4,-1,-3,2,-3,5r3,2r0,-7xm39,-136v-1,-3,-2,2,-2,2xm45,-136v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm91,-132v1,4,-3,13,2,13v0,-5,1,-11,-2,-13xm131,-130v-3,2,1,8,0,12v5,-2,4,-10,0,-12xm86,-120v-1,-1,-4,-5,-3,0r3,0xm108,-123v-2,2,-4,4,0,5r0,-5xm30,-119v-6,-1,-12,4,-8,8v6,-4,13,4,8,-8xm55,-119v-3,3,-8,17,0,20v0,-5,1,-6,7,-5v0,-12,-10,1,-7,-15xm110,-115v-1,1,-3,2,0,2r0,-2xm131,-115v0,4,-3,15,3,11v0,-5,1,-10,-3,-11xm46,-109v-3,0,-3,3,-1,5v1,-1,1,-3,1,-5xm33,-105v-5,0,-3,4,0,1r0,-1xm39,-102v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm32,-98v-4,-1,-1,5,-2,7v4,1,1,-5,2,-7xm16,-94v-2,0,-5,-1,-4,2v1,4,2,7,6,4xm25,-91v0,-4,-3,-3,-4,0r4,0xm103,-94v-6,0,-5,8,-1,10v3,-1,1,-6,1,-10xm112,-91v-6,-2,-6,4,-3,7v4,-1,4,-4,3,-7xm55,-88v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm118,-87v1,2,2,4,2,0r-2,0xm134,-87v-5,-1,-4,2,-1,4v2,0,1,-3,1,-4xm142,-86v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm150,-86v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm18,-81v-3,-1,-5,-1,-4,3v3,0,5,0,4,-3xm40,-79v-2,0,-2,7,0,7v3,-2,4,-6,0,-7xm16,-75v-4,0,-3,5,-2,7v4,1,1,-5,2,-7xm113,-72v-1,-1,-5,-2,-4,1v-2,6,0,12,0,19r3,0xm152,-73v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm151,-66v-1,-2,-4,0,-4,3v3,0,3,-2,4,-3xm103,-63v-3,3,-4,9,-1,17v4,-2,0,-10,1,-17xm150,-56v-3,0,-6,4,-1,4xm18,-54v-5,-1,3,9,-4,7v-1,3,1,3,4,3r0,-10xm45,-12v0,-5,-3,-5,-5,-1v1,1,3,1,5,1xm60,-17v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm51,-15v-3,0,-3,3,-1,4v3,-1,5,-2,1,-4xm18,-14v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm24,-7v-5,0,-7,0,-3,3v2,0,4,0,3,-3xm45,-7v-4,-1,-7,5,-2,5v1,-1,2,-2,2,-5xm45,2v-5,0,-5,3,-5,8v5,1,5,-3,5,-8xm139,5v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm126,14v-2,-3,-7,-2,-6,3v2,-1,5,-1,6,-3xm29,14v-5,-1,-4,2,-1,4v2,0,1,-3,1,-4","w":165},"S":{"d":"73,-308v5,-17,24,4,28,-3v13,-2,51,22,45,46v3,0,6,16,7,49v-16,3,-49,4,-63,-1v3,-15,0,-48,-10,-45v-11,-1,-13,17,-12,31v0,16,10,29,30,42v58,39,59,65,60,119v1,4,-8,1,-7,6v17,3,-4,26,2,30v-4,10,-7,15,-11,17v0,-3,0,-5,-3,-4r1,7v-14,15,-32,22,-54,22r-1,-5v-19,8,-32,-4,-46,-6v-8,-3,-12,-13,-12,-26v-5,-1,-3,6,-5,8v-14,-13,-16,-60,-16,-86v18,-4,38,0,60,-2v12,10,-6,31,-9,12v-3,-1,-2,2,-2,4v5,2,-6,27,7,22v1,2,2,7,3,17v4,1,17,16,26,6v2,-11,3,-19,6,-16v-1,4,-1,8,0,11v5,-2,8,-15,-2,-14v0,-27,-8,-43,-22,-53v-57,-41,-68,-53,-68,-117v0,-35,11,-62,31,-64v3,-10,7,2,12,-6v1,5,-1,20,4,13r1,-17v9,2,16,-4,20,3xm98,-305v-4,7,-3,32,2,41v7,-3,-6,-24,3,-28v2,2,4,2,3,-2v-8,2,-2,-9,-8,-11xm74,-300v-3,3,0,11,-1,15v4,-2,1,-10,1,-15xm44,-295v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm129,-295v-3,1,-2,9,0,12v5,-1,4,-11,0,-12xm36,-291v-4,1,-3,4,0,6r0,-6xm68,-288v-3,-1,-5,1,-4,4v3,1,5,-1,4,-4xm106,-288v-2,2,-4,4,0,4r0,-4xm52,-281v1,-3,-4,-7,-3,-3xm122,-286v-5,-1,-4,4,-4,8v3,-1,5,-3,4,-8xm100,-262v-2,2,-4,4,-3,8v2,-2,4,-4,3,-8xm101,-243v0,-8,-4,-6,-4,0r0,7v2,-2,5,-3,4,-7xm100,-222v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm23,-219v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm55,-205v-2,0,-3,2,-3,4v3,1,3,-1,3,-4xm48,-204v-4,-1,-5,1,-4,5v4,1,5,-1,4,-5xm73,-139v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm18,-104v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm27,-99r0,5r0,-5xm43,-86v1,-3,-2,-11,4,-10v4,7,-3,27,5,25r0,-28v-7,-2,-16,5,-9,13xm60,-80v-4,-3,0,-10,4,-6v-1,3,0,7,-4,6xm43,-78v-3,2,-3,9,-4,13v7,2,3,-8,4,-13xm18,-60v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm27,-60v-5,0,-4,5,-4,10v6,1,5,-6,4,-10xm117,-55v1,-6,-9,-5,-11,-4v0,7,5,2,11,4xm36,-59v-5,-1,-2,6,-3,9v5,1,2,-6,3,-9xm122,-59v-2,5,1,16,2,14v0,-5,1,-12,-2,-14xm52,-53v-3,-1,-4,3,-2,4xm142,-40v-1,-3,-5,-12,-5,-5v0,6,1,10,5,5xm52,-22v-7,-4,-14,3,-10,10v4,-1,3,-8,10,-7r0,-3xm36,-16v-2,2,-7,6,0,5v2,-1,2,-3,0,-5xm69,-14v-2,2,-7,14,0,13r0,-13xm91,-14v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm52,-13v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm82,-12v1,4,0,10,3,12v-1,-4,4,-13,-3,-12xm49,-3v5,1,11,5,14,1v0,-1,1,-3,-1,-3r-9,2r0,-2","w":164},"T":{"d":"72,-282v2,-4,5,-25,6,-12v2,4,-1,14,6,13v3,-6,-2,-14,0,-18v21,1,44,-1,66,0v4,16,3,45,0,62v-15,0,-26,-2,-35,-3v-4,3,-2,25,-7,32v7,1,3,15,-1,20v-6,-3,-2,-15,-8,-8v3,5,0,21,-4,11v-3,-1,-2,5,-5,7v-1,-5,-2,-9,-2,-15v-8,-3,-5,11,-12,12v-4,-5,-8,-11,-9,0v-5,-3,-2,-11,-4,-22v-9,-2,1,12,-10,9v9,7,-7,28,4,40v1,-8,3,-26,5,-8v5,-3,1,-18,11,-3v1,-11,1,-12,7,-6v-3,-5,3,-14,3,-6v4,11,-1,30,5,39v6,-3,-4,-20,4,-23v2,4,-1,11,4,12v-1,-8,5,-13,6,-4v5,1,0,-8,6,-8v9,46,2,109,4,167v-14,8,-51,6,-68,1r2,-139v-4,-15,7,-33,-2,-51v7,-13,-2,-41,5,-53v2,6,1,15,5,18v0,-7,5,-15,5,-2v5,1,3,-4,4,-8v-7,-2,-11,-12,-9,-18v12,1,18,6,25,-3v3,1,6,4,5,-2v-8,-5,-25,4,-21,-6v-5,-1,-6,-20,-5,-24v-5,0,-7,-6,-7,-17v6,-1,3,8,7,9v1,-3,-1,-9,4,-8v1,3,0,9,6,8v0,-2,-1,-5,1,-5v2,0,3,4,3,12xm10,-283v0,-6,2,-21,6,-12v-2,14,3,5,10,10v0,-19,3,-13,7,-2v-1,-12,5,-14,7,-5v6,2,-1,-8,7,-6v0,17,10,23,0,29v-4,-1,-1,-8,-5,-9v5,14,-12,22,-7,9r-3,-2r-1,13v-5,-1,-2,-10,-6,-8v1,7,-1,15,7,14v-2,4,2,12,-2,12v-2,-3,-4,-7,-2,-11v-8,-2,3,14,-7,12r0,-17v-6,1,-6,6,-9,-5v1,-1,1,-4,3,-4v3,-1,0,9,6,7v7,-12,-5,-13,-10,-10v6,-6,2,-3,-1,-15xm22,-292v-1,0,-2,-5,0,-5r0,5xm6,-266v-1,-5,2,-7,4,-2v1,3,-2,2,-4,2xm6,-256v0,-5,0,-13,4,-6v-1,3,0,7,-4,6xm6,-241v1,-4,-3,-14,4,-12v7,5,7,22,-4,12xm46,-252v6,1,6,12,2,15v-7,-3,0,-10,-2,-15xm106,-251v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm116,-249v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm36,-244v3,-3,6,-1,6,3v-2,3,-7,2,-6,-3xm84,-239v-6,4,-3,11,0,21v1,-7,1,-14,0,-21xm70,-234v0,-6,-3,-2,-1,0r1,0xm69,-231v-1,2,-2,6,1,7v0,0,15,-1,-1,-7xm95,-226v2,-6,-8,-7,-6,-2v2,3,3,5,6,2xm101,-230v-3,0,-5,3,0,2r0,-2xm94,-213v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm92,-207r0,6v4,-1,3,-4,0,-6xm57,-201v0,-3,-5,-4,-4,0r4,0xm81,-181v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm108,-162v-6,-2,-4,-22,0,-19v7,4,1,12,0,19xm90,-162v2,-2,-2,-13,4,-7v-1,2,0,7,-4,7xm97,-167v0,-2,0,-4,2,-3v0,2,0,4,-2,3xm57,-151v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm105,-148v0,-4,-4,-3,-4,0v0,2,4,3,4,0xm80,-150v-2,1,-3,12,1,12xm72,-133v-1,2,1,8,2,3xm105,-128v2,-2,-1,-6,-3,-4v0,3,2,3,3,4xm59,-123v-4,0,-1,7,-2,10v4,0,1,-7,2,-10xm90,-123v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm60,-76v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm97,-76v-2,6,4,15,5,7v-1,-5,-3,-7,-5,-7","w":156},"U":{"d":"154,-40v2,21,-37,61,-76,53v-27,0,-55,-18,-65,-47v5,1,6,-2,5,-6v-5,-2,-3,4,-6,5v-4,-20,-8,-50,-3,-72v2,10,-1,25,5,31v2,-15,0,-57,-6,-42v-8,-65,6,-116,-3,-177v5,-17,36,-3,55,-7v28,-6,5,37,13,60r0,170v0,22,3,33,8,33v20,1,3,-40,16,-49v-5,-48,-9,-113,-2,-153v-7,-13,1,-44,-2,-60v13,0,12,5,17,12v0,-7,0,-11,2,-13v7,3,11,4,8,8v-4,-3,-5,-1,-5,4v-1,2,10,4,9,9v2,-1,6,-14,7,0v6,1,6,0,6,-8v6,-2,1,7,5,8v1,-22,9,-2,9,-21v13,42,6,94,8,149v-10,30,7,79,-5,109v-2,-1,-5,-2,-5,1v0,2,2,3,5,3xm142,-301v4,-4,4,5,4,5v-4,1,-3,-3,-4,-5xm36,-299v-2,4,-2,15,1,19xm45,-297v-6,0,-2,11,-3,16v6,0,2,-10,3,-16xm127,-299v2,1,6,8,0,8r0,-8xm100,-288v3,-4,-2,-12,-2,-2xm19,-295v1,11,-1,27,2,36r2,-13v3,0,6,4,7,0v-1,-4,1,-10,-2,-12v0,4,-2,6,-4,7v-2,-5,0,-16,-5,-18xm29,-295v-3,2,-4,7,0,9r0,-9xm69,-288v-3,1,-2,11,0,13r0,-13xm13,-285v-2,3,-3,14,2,15xm61,-284v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm37,-278v-1,2,-3,5,0,6r0,-6xm126,-268v-6,2,-15,12,-7,17v3,-6,2,-6,7,-17xm61,-253v1,4,-2,12,2,12v0,-4,1,-11,-2,-12xm39,-251v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm55,-248v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm49,-237v2,-8,-5,-14,-7,-6v2,3,2,9,7,6xm125,-246v-5,1,-5,6,1,6v3,-2,1,-4,-1,-6xm21,-245v-2,1,-3,10,2,9xm114,-242v-1,-2,-5,-5,-5,0v3,4,2,3,5,0xm31,-235v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm23,-222v4,-2,-2,-10,-3,-5v0,3,2,3,3,5xm97,-226v-7,0,-1,10,-2,18v7,0,1,-12,2,-18xm14,-222v1,4,-4,13,3,12v0,-5,1,-11,-3,-12xm34,-214v-2,-3,-6,-2,-5,3v1,2,3,2,5,0r0,-3xm24,-215v-8,0,2,9,-3,12v6,1,3,-6,3,-12xm41,-214v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm105,-213v-4,0,-2,10,0,12r0,-12xm50,-204v0,-9,-4,-5,-5,0v2,0,4,2,5,0xm57,-193v0,-4,-5,-5,-4,0r4,0xm104,-190v1,3,-2,9,2,9v0,0,1,-8,-2,-9xm122,-190v-4,0,-3,8,0,11v4,-2,1,-8,0,-11xm122,-178v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm51,-173v0,0,-2,0,-2,1v0,0,2,0,2,-1xm156,-167v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm148,-166v0,0,-2,0,-2,1v0,0,2,0,2,-1xm109,-135v-2,0,-5,5,0,4r0,-4xm29,-124v-4,2,-11,-2,-12,4v4,14,-1,48,7,50v-2,-14,-4,-28,-1,-42v9,1,0,18,7,23xm126,-119v-2,0,-5,-1,-4,2v2,3,5,4,4,-2xm135,-119v-5,-1,-4,2,-4,6v5,1,4,-2,4,-6xm141,-119v-3,1,-3,3,0,5v2,-1,0,-3,0,-5xm103,-107v3,-5,-1,-16,-5,-6v1,3,0,7,5,6xm110,-117v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm117,-115v-2,0,-4,4,0,3r0,-3xm36,-112v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm9,-108v-1,0,-2,-4,0,-4r0,4xm44,-110v-2,4,-2,15,2,9v0,0,1,-8,-2,-9xm62,-94v1,-5,-3,-12,-4,-5v1,3,3,5,4,5xm103,-102v-5,-1,-5,3,-2,5v3,1,2,-3,2,-5xm110,-101v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm30,-80v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm153,-64v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm144,-51v-1,-2,-3,-5,-3,0r3,0xm144,-43v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm33,-37v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm49,3v3,-2,2,-6,-2,-4v0,2,-1,5,2,4","w":169},"V":{"d":"5,-291v22,-4,22,9,25,26v1,-8,-6,-23,1,-26v11,4,39,-7,45,5v3,15,-1,37,5,48v-2,21,7,90,11,140v5,-37,13,-182,16,-179v-5,-5,1,-18,9,-12r0,-2v18,2,43,-4,55,3v-1,7,5,52,-2,52v-1,60,-30,261,-26,251v-31,7,-67,0,-100,1v-3,-36,-12,-61,-15,-139v-4,0,-8,-29,-14,-87v7,-7,-7,-15,2,-21v-2,-13,-11,-16,-12,-60xm23,-288v-1,-2,-6,-1,-5,2v1,2,1,5,3,5xm158,-284v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm151,-283v-5,1,-4,8,-4,14r4,1r0,-15xm55,-278v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm141,-277v1,3,-2,9,2,8v0,-4,0,-6,-2,-8xm135,-272v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm20,-268v0,6,-1,12,3,14v0,-6,1,-12,-3,-14xm30,-262v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm152,-246v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm160,-235v1,-3,-2,-4,-2,-2xm31,-227v-8,2,2,10,-11,10v1,4,12,6,14,-3xm23,-226v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm41,-219v-4,-1,-5,1,-4,5v4,1,5,-1,4,-5xm55,-219v-2,1,-7,7,0,6r0,-6xm49,-213v0,-2,-4,-4,-4,-1v1,1,2,1,4,1xm33,-194v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm42,-192v-2,-3,-4,1,-5,3v3,1,5,1,5,-3xm28,-181v-6,-1,-2,10,-3,14v4,-1,2,-8,3,-14xm132,-153v-2,-1,-2,1,-2,3v2,0,1,-2,2,-3xm125,-130v1,-11,-1,-25,-13,-12v0,12,9,-4,7,7xm29,-140r0,5r0,-5xm84,-112v2,-2,0,-7,-2,-3v1,1,0,3,2,3xm67,-112v-3,0,-5,0,-4,3v3,0,5,0,4,-3xm109,-102v-1,1,-5,4,0,3r0,-3xm126,-82v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm147,-41v-1,0,-3,-1,-3,1v2,1,4,3,3,-1","w":181},"W":{"d":"86,-122v0,-58,12,-124,15,-179v1,-25,41,-3,60,-12v13,-1,9,10,10,19r15,179v4,-37,2,-85,11,-93v-3,-39,2,-116,11,-104v17,6,45,-8,60,3r-29,305v-24,3,-54,0,-80,1v-4,0,-11,-39,-20,-119r-2,-32r-3,0v-4,10,1,33,-8,27v-1,3,1,5,4,4v-9,81,-8,119,-18,119r-70,1v-7,0,-8,-8,-10,-24r-27,-283v13,-5,44,0,64,-2r13,194xm226,-297v-2,-2,-3,0,-1,1xm247,-292v-2,6,-14,15,-3,23v0,-4,12,-1,6,-11v5,-2,-2,-8,-3,-12xm225,-250v9,-3,11,-15,9,-26v-2,3,-8,-2,-3,-2v4,2,4,-2,4,-5v-16,-5,-9,18,-10,33xm244,-277v0,-1,-1,-3,1,-3v0,1,1,3,-1,3xm230,-270v0,-3,0,-5,3,-4v0,3,0,5,-3,4xm226,-262v1,-4,9,-6,7,2v-3,0,-5,-1,-7,-2xm204,-233v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm223,-230v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm229,-230v-3,0,-5,1,-3,4v3,1,3,-1,3,-4xm33,-202v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm50,-198v-1,1,-3,3,0,3r0,-3xm43,-194v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm173,-153v-3,1,-6,7,0,5r0,-5xm150,-149v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm146,-142v4,5,-2,7,4,9v1,-4,2,-10,-4,-9xm127,-138v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm37,-134v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm44,-130v-6,3,2,19,3,7xm110,-110v-3,2,-11,-3,-7,4v3,-1,8,1,7,-4xm64,-35v4,-1,0,-10,-1,-5","w":273},"X":{"d":"75,-286v6,25,8,53,16,76r14,-76v18,2,41,-3,55,2v-14,77,-21,123,-22,137r33,168r-57,1v-4,0,-12,-33,-23,-100r-16,100v-20,-1,-46,3,-62,-2r23,-171r-22,-135v15,-2,47,2,61,0xm70,-280r0,8v4,-1,4,-7,0,-8xm31,-216v1,-3,-1,-6,-2,-3xm163,15v-2,-4,-10,-9,-8,0r8,0xm158,16v-2,0,-4,0,-3,2v2,2,4,2,3,-2","w":178},"Y":{"d":"33,-207v-17,-26,-15,-64,-26,-98v27,3,30,-1,59,0v7,35,7,78,18,110v1,-8,2,-5,1,-9v9,-67,15,-101,18,-101v19,1,41,-2,58,1v-12,54,-21,90,-27,106v-9,-1,-3,5,-1,8v-15,52,-23,108,-19,178v0,11,-1,16,-3,16r-56,0v-6,-22,-5,-69,0,-99v-7,-38,-22,-70,-22,-112xm30,-275v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm38,-275v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm42,-213v-6,-1,-2,7,-3,11v1,1,3,3,4,1xm57,-197v7,-10,-4,-12,-10,-9r1,9r9,0xm68,-198v1,-5,-5,-11,-5,-4v0,3,1,5,5,4xm75,-201v0,0,-2,-8,-2,-2xm92,-203v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm92,-198v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm108,-198v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm117,-197v-3,-3,-6,0,-4,4v3,1,4,-2,4,-4xm92,-176v-5,9,4,18,3,2xm116,-175v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm44,-174v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm52,-174v-5,-1,-3,6,-5,9v6,0,-1,7,5,7v2,-7,-3,-13,0,-16xm69,-165v-5,-1,-2,7,-3,10v5,1,2,-7,3,-10xm94,-158v-5,-1,-2,5,-3,8v5,1,2,-5,3,-8xm69,-142v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm52,-131v-3,-1,-2,3,-2,5v4,0,4,-3,2,-5xm68,-28v-1,-5,-5,-5,-4,1xm76,-30v-2,-3,-6,-3,-5,2v2,2,6,4,5,-2xm84,-31v-4,-1,-5,1,-2,4v3,1,2,-2,2,-4","w":166},"Z":{"d":"11,-302v26,-13,73,0,115,-5v12,89,-16,95,-46,246v18,0,28,2,45,0v6,14,5,48,0,63v-38,-2,-84,4,-118,-2v-3,-13,1,-27,-2,-37r52,-208v-15,-2,-38,4,-46,-4v-2,-19,4,-38,0,-53xm104,-264v0,-3,-5,-4,-4,0r4,0","w":137},"[":{"d":"15,-296v15,-11,45,1,69,-4v7,8,7,38,0,48v-4,-1,-7,-1,-11,0v-2,44,4,97,-3,136v4,17,0,54,2,64v-4,0,-6,4,0,2v-1,13,6,15,13,12v0,16,-1,33,3,45v-23,3,-51,2,-72,0r0,-3v3,1,5,1,4,-3v-7,-13,-3,-44,-5,-73v-1,-20,6,-28,10,-15v1,5,-2,13,4,12v3,-18,-5,-29,-14,-32r0,-189xm48,-225v1,1,1,4,3,4r0,-5xm26,-111v-1,1,-3,2,0,2r0,-2xm42,-100v-3,-1,-2,4,-2,6v1,-2,2,-3,2,-6xm20,-84v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm61,-70v0,-2,-4,-4,-3,0r3,0xm45,-72v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm68,-72v-4,-1,-1,5,-2,7v3,1,3,-5,2,-7xm52,-68v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm53,-63v-2,2,-1,3,1,1xm27,-60v1,1,2,6,4,3v-1,-1,-1,-4,-4,-3xm31,-54v-4,0,-2,4,0,5r0,-5xm27,-24v0,-8,-1,-12,-5,-9v2,3,0,10,5,9xm35,-17v2,-5,-3,-11,-4,-6v1,3,0,7,4,6xm58,-20v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm24,-17v1,3,-2,9,2,8v0,-4,0,-6,-2,-8xm58,-13v0,0,-2,0,-2,1v0,0,2,0,2,-1xm83,-1v-1,-3,-4,-3,-5,0v1,3,3,3,5,0xm27,5v0,-6,-3,-9,-3,-1"},"\\":{"d":"55,-307v4,26,15,53,16,79v18,49,46,184,59,242v-23,-4,-55,13,-50,-21v-4,-30,-25,-69,-21,-95v1,1,6,6,5,0v-14,-1,-14,-31,-31,-107v0,-1,-15,-40,-24,-98r46,0xm72,-225v-2,0,-2,7,0,7r0,-7xm65,-221v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm75,-92v0,-4,-6,-9,-5,-2v1,1,2,2,5,2xm81,-98v-5,1,-4,7,-3,11v6,1,2,-7,3,-11xm107,-65v2,-5,-1,-10,-4,-5xm107,-62v-4,0,-5,4,0,3r0,-3xm75,-47v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm87,-34v0,-4,-11,-6,-10,-1xm119,-12v-2,0,-1,2,-1,3v2,0,1,-2,1,-3","w":136},"]":{"d":"20,-302r64,0v11,39,1,107,4,159r-16,1v0,4,6,5,9,3v-2,11,13,23,4,30v5,16,2,41,2,61v-6,0,-2,-5,-5,-9v-12,2,-10,3,-11,12v9,-1,11,-1,17,2v0,17,-2,32,1,48v-6,3,-19,6,-17,-7v-5,1,-8,2,-7,9v-25,1,-62,4,-46,-34v2,8,-3,20,4,22r0,-29v0,-4,-8,0,-6,-6v16,-3,3,18,13,18v-5,-21,12,-25,0,-41v6,-2,5,-5,1,-7v6,-58,-5,-122,0,-180v0,-5,-11,-4,-16,-6v0,-15,1,-50,5,-46xm56,-217v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm65,-203v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm49,-200v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm60,-189v-4,0,-6,5,0,4r0,-4xm34,-186v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm44,-173v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm51,-170r0,5r0,-5xm45,-163v0,-2,-4,-4,-3,0r3,0xm41,-159v1,1,4,4,3,0r-3,0xm53,-153v-3,-1,-3,5,-2,7v3,0,2,-4,2,-7xm45,-150v-6,-1,-2,10,-3,14v7,1,3,-9,3,-14xm37,-137v5,-1,0,-12,-1,-5v2,2,-1,4,1,5xm46,-132v-3,1,-2,10,0,11v2,-2,0,-7,0,-11xm40,-121v1,-5,-2,-14,-4,-7v0,0,-1,9,4,7xm55,-131v-7,-1,-3,9,-3,9v5,1,2,-6,3,-9xm69,-127v0,-2,-2,-5,-2,-3xm78,-131v-3,0,-5,0,-4,3v3,0,5,0,4,-3xm62,-130v-3,-1,-2,3,-1,5v2,0,1,-3,1,-5xm42,-82v-2,-6,1,-21,-6,-14v3,3,2,12,6,14xm71,-83v1,4,-2,13,3,14v-1,-9,-1,-14,-3,-14xm82,-79v-2,-6,-5,2,-5,2v0,2,0,5,4,4xm50,-80v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm66,-74v-5,1,-2,7,-1,11v4,-1,1,-7,1,-11xm57,-68v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm51,-58v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm60,-56v-2,-1,-5,-1,-4,2v2,3,3,1,4,-2xm69,-47v0,-5,-2,-12,-4,-7v0,0,-1,9,4,7xm77,-48v-1,-2,-2,-5,2,-4v-2,2,2,5,-2,4xm45,-48v-3,0,-5,0,-4,3v3,0,5,0,4,-3xm52,-48v0,0,-2,0,-2,1v0,0,2,0,2,-1xm60,-46v-3,-3,-5,1,-5,3v3,0,3,-2,5,-3xm37,-22v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm46,-16v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm79,1v1,-3,-2,-8,-3,-3xm24,-3v-4,-1,-3,2,-3,5v2,-1,4,-2,3,-5"},"^":{"d":"75,-235v22,-1,40,-9,43,22r47,129v-14,1,-25,-4,-34,0v-4,-3,1,-15,-5,-17v-2,1,-2,6,-2,14v-6,-4,-24,-71,-33,-88v-14,29,-22,77,-34,90v-13,-1,-29,3,-40,0v5,-17,24,-67,58,-150xm61,-182v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm125,-156v-3,-9,-4,4,-11,1v-1,4,1,5,3,6v6,-2,6,-6,8,-7xm109,-145v-4,0,-4,3,-1,5v2,0,1,-3,1,-5xm124,-143v-2,0,0,4,-1,6v3,0,1,-4,1,-6xm118,-122v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm125,-112v2,-1,-1,-7,-2,-4v0,2,1,3,2,4xm50,-102v-6,1,-5,8,0,5r0,-5xm136,-101v-2,2,-2,10,1,12v3,-8,3,-9,-1,-12xm43,-95v-5,-1,-2,5,-3,8v4,1,4,-4,3,-8xm145,-92v-2,0,-4,0,-3,3v2,0,4,0,3,-3","w":168},"_":{"d":"11,-1v-8,-31,40,-15,68,-20v35,5,79,-2,112,1v0,7,3,17,-2,20v-34,-1,-74,3,-104,-2v-19,4,-55,1,-74,1","w":200},"`":{"d":"15,-228v34,-4,59,-12,68,28v4,9,16,19,9,23v-39,8,-53,-34,-77,-51","w":119},"a":{"d":"47,9v-35,8,-46,-42,-42,-89v2,-26,14,-39,34,-46v-1,4,1,15,3,11r-1,-13v34,-18,45,-17,44,-42v-2,-30,-4,-43,-18,-35v-1,-10,0,-18,0,-28v-8,-1,-8,9,-16,1v-2,6,-1,16,-1,26r3,0v1,-6,-3,-18,2,-21v27,5,-15,25,10,30v-1,6,3,30,-4,21v-5,1,-3,5,-1,8v1,-1,3,-1,5,-1v0,10,-1,10,0,20v-10,2,-17,-2,-24,0v0,-2,0,-5,-4,-4v4,1,1,4,-1,5v-12,0,-13,-3,-11,-11v-11,-1,6,-24,-10,-14v-5,9,-4,19,8,21v-6,1,-14,7,-19,-3v4,-13,4,-12,1,-23v-1,-40,24,-68,64,-72v1,7,2,10,4,10v-1,-15,10,-13,12,-6v1,9,-5,24,2,28v1,-7,1,-29,5,-14v-3,3,-1,4,2,5v8,-1,-4,-20,4,-22v25,-3,17,32,21,44v7,-3,-3,-29,3,-34v9,5,-6,22,8,20v0,0,-4,-6,1,-7r5,14v1,-3,-1,-9,1,-11v4,19,17,42,7,59v12,34,1,88,5,140v-14,7,7,31,-7,31r-53,0v-4,-3,1,-14,-4,-17v-7,10,-26,29,-38,19xm132,-229v-2,0,-6,-4,-2,-3xm128,-214v-3,1,-3,7,0,8r0,-8xm135,-206v-2,4,-3,11,2,12v0,-5,1,-10,-2,-12xm128,-202v0,7,1,6,2,1xm52,-165v5,-6,-4,-20,-2,-3xm124,-175v-6,-1,-3,5,-3,9v5,1,2,-6,3,-9xm31,-173v-1,-2,-6,-1,-5,2v2,1,6,2,5,-2xm46,-170v-4,-1,-9,11,-5,13v3,-5,3,-5,5,-13xm40,-165v-1,-1,-4,-5,-3,0r3,0xm33,-162v-2,-3,-6,-2,-5,3v3,0,3,-2,5,-3xm55,-162v-5,-1,-4,4,-4,8v4,0,2,-6,4,-8xm125,-154v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm103,-149v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm94,-144v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm79,-143v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm56,-123r0,5r0,-5xm103,-122v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm42,-112v-3,0,-3,2,-2,5v1,-2,2,-2,2,-5xm85,-109v-27,-3,-23,73,-12,75v24,-1,5,-47,12,-75xm42,-98v-4,0,-1,6,-2,9v4,0,1,-6,2,-9xm127,-91v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm127,-79v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm35,-73v-3,1,0,8,-1,11v3,-2,2,-8,1,-11xm128,-69v0,0,-2,0,-2,1v0,0,2,0,2,-1xm128,-63v-3,0,-3,6,0,7r0,-7xm106,-56v-2,3,-7,17,0,19r0,-19xm99,-30v4,-3,-2,-15,-4,-6v1,4,3,6,4,6xm37,-36v-3,0,-3,9,0,11v4,-1,0,-7,0,-11xm106,-32v-2,2,-4,14,2,12xm31,-24v-1,0,-3,-4,-3,-2xm126,-22v-2,-2,-5,-4,-4,2v4,-2,6,1,10,1v0,-5,-2,-4,-6,-3xm117,-9v4,-11,-5,-8,-11,-9v-5,10,2,9,11,9xm133,-15v-7,-7,-17,1,-9,7v4,-2,1,-5,8,-3xm100,-14v-1,0,-3,-1,-3,1v2,1,4,3,3,-1xm138,-11v0,7,1,6,2,1xm101,-7v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm125,-4v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm100,-2v-2,0,-1,3,-1,4v1,-1,2,-2,1,-4xm46,3v-2,0,-1,3,-1,4v1,-1,2,-2,1,-4","w":154},"b":{"d":"10,-297v4,-7,6,4,10,2v-1,-3,-1,-5,3,-5v5,12,0,29,2,44v7,0,9,-9,6,-14v2,1,4,3,3,-1v-3,1,-6,-4,-3,-5v4,2,5,11,9,-1v5,0,4,4,4,9v4,-4,1,-23,5,-11v6,-2,-1,-22,7,-21v3,8,-4,23,5,21v0,-11,-5,-25,12,-21v5,20,-6,55,5,70v11,-12,22,-24,31,-16v12,-12,21,12,29,3v8,5,9,15,11,23r2,-7v3,0,6,9,6,25v0,34,7,77,-4,103v13,34,8,112,-41,112v-13,0,-26,-8,-39,-24v3,28,-19,20,-23,10v0,20,-25,3,-37,9v-4,-16,-6,-54,0,-71v-9,-14,16,-21,6,-33r-1,11v-15,-15,-2,-41,-8,-64v0,-33,-1,-67,5,-91v3,-1,2,4,5,6v6,-14,2,-49,-3,-53v-4,6,4,17,-4,15v3,-9,-2,-19,-3,-25xm44,-266v3,18,-13,3,-8,21v4,1,3,-3,4,-6r7,2v-1,-11,-1,-17,-3,-17xm67,-265v1,3,-2,10,2,10v0,-4,0,-8,-2,-10xm55,-257v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm61,-252v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm29,-251v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm14,-244v-1,-4,3,-8,4,-4v0,2,0,5,-4,4xm62,-244v0,-3,-3,-5,-2,0r2,0xm47,-244v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm55,-243v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm62,-238v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm39,-234v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm95,-233v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm47,-232v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm61,-232v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm39,-229v-2,1,-5,4,0,4r0,-4xm141,-229v-2,1,-3,10,1,10xm71,-227v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm104,-223v0,-3,-4,-6,-4,-1v1,1,3,3,4,1xm119,-222v1,-5,-10,-6,-11,-3v0,5,7,1,11,3xm31,-225v-6,0,-1,15,0,13v3,-4,0,-8,0,-13xm47,-225v-3,0,-3,6,0,7v2,-2,2,-5,0,-7xm63,-211v0,-5,1,-16,-3,-13v0,9,1,13,3,13xm127,-225v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm79,-224v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm39,-222v-7,3,0,19,-2,31v7,-3,1,-23,2,-31xm132,-222v-1,3,2,10,3,3xm119,-218v-3,0,-3,3,-2,6v3,1,2,-4,2,-6xm81,-216v-4,-1,-6,3,-3,5v2,-1,4,-2,3,-5xm87,-216v-2,2,-4,4,0,5v2,-1,2,-3,0,-5xm142,-216v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm127,-214v-3,-1,-2,3,-2,5v3,1,4,-4,2,-5xm88,-208v-28,16,-6,41,-17,75v11,33,-11,97,18,102v11,-22,3,-58,5,-91r3,-2v1,7,1,11,3,11v-1,-4,1,-15,-3,-13v-3,1,-2,-5,-4,-8v4,-13,-5,-43,5,-48v2,-14,-8,-12,-10,-26xm97,-207v-2,0,-4,0,-3,3xm111,-202v-1,1,-4,4,0,4r0,-4xm31,-201v-4,7,-1,19,-1,29v9,-6,1,-19,1,-29xm49,-191v-6,-1,-1,7,-2,10v4,0,3,-8,2,-10xm17,-190v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm25,-182v1,-6,-3,-10,-4,-2v-1,3,2,2,4,2xm128,-184v0,-7,-3,-6,-2,0r2,0xm149,-190v1,3,0,12,4,8v-1,-3,1,-9,-4,-8xm41,-182v0,-5,-5,-8,-4,0r4,0xm104,-181v4,-2,0,-10,-3,-6v-1,4,2,4,3,6xm111,-185v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm50,-168v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm18,-166v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm57,-166v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm128,-166v-3,-1,-3,1,-1,3v2,0,1,-2,1,-3xm52,-152v-2,-3,-3,3,-3,3v2,0,2,-2,3,-3xm18,-149v-2,0,0,4,-1,6v3,0,1,-4,1,-6xm44,-133v1,-7,-2,-19,-4,-11v1,4,-2,12,4,11xm61,-143v-5,-1,-8,5,-3,10xm34,-142v-3,1,-5,7,2,6v0,-3,-1,-4,-2,-6xm51,-138v0,-3,-3,-5,-2,0r2,0xm104,-133v6,0,3,-12,0,-7r0,7xm66,-140v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm154,-139v0,0,-2,0,-2,1v0,0,2,0,2,-1xm100,-134v-2,-1,-2,1,-2,3v2,0,1,-2,2,-3xm67,-127v-2,1,-3,10,1,10xm121,-127v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm44,-115v-8,2,4,26,-8,18v-2,6,-2,15,0,25v9,-2,-3,-13,5,-19v1,5,5,19,8,8v3,7,5,-4,7,-3v0,-5,-2,-12,0,-15v2,6,2,15,6,20v-1,-13,9,-11,7,-24v-7,1,-6,-5,-9,-10v-2,16,-2,12,-14,9xm20,-111v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm36,-111v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm52,-111v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm109,-102v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm101,-101v-4,-1,-1,5,-2,7v4,1,1,-5,2,-7xm26,-90v-6,6,7,27,4,6v-1,-3,0,-7,-4,-6xm109,-90v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm125,-89v-5,0,0,9,0,9v2,-2,0,-6,0,-9xm101,-88v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm117,-76v1,-14,-5,-5,-11,-7v2,11,4,1,11,7xm132,-86v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm21,-76v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm23,-62v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm111,-62v-4,-1,-3,2,-3,5v2,-1,4,-2,3,-5xm41,-42v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm105,-27v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm77,-19v1,-8,-7,-9,-6,-1v1,10,3,3,6,1xm18,-21v-4,1,-4,7,0,9r0,-9xm67,-16v-4,-1,-1,5,-2,7v2,-1,1,-5,2,-7xm90,-11v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm25,-9v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm56,-8r1,13v5,-1,7,-6,6,-13r-7,0","w":168},"c":{"d":"57,-236v9,-3,35,-8,37,3v14,-5,42,11,42,31v13,7,14,49,8,62v-18,-3,-70,11,-51,-19v-9,-5,0,-47,-16,-36v-1,-3,-3,-5,-4,-5v-5,17,1,58,-5,69v5,31,-6,96,10,109v7,1,10,-2,14,-4r1,-59v16,1,28,-9,27,15v0,17,-2,48,6,53v-1,-11,-2,-25,2,-34v2,2,4,2,3,-3v-16,-5,-5,-11,-10,-29v0,-2,9,-3,26,-3v11,38,-19,113,-48,102v3,8,-7,3,-12,6v-4,-1,-2,-7,1,-7r6,3v-1,-4,3,-13,-4,-11v0,5,0,6,-3,6v-1,-12,-2,-19,-5,-14v3,14,4,27,-15,23v-31,-5,-47,-17,-47,-38r-3,2v-2,0,-7,-11,-10,-34v-3,-22,1,-46,-2,-69v3,-31,1,-97,21,-100v-1,-5,13,-16,30,-18v-1,5,1,6,4,2xm66,-235v-4,0,-6,4,0,3r0,-3xm65,-217v5,-3,-3,-16,-3,-7v4,3,0,6,3,7xm35,-220v0,0,-2,0,-2,1v0,0,2,0,2,-1xm42,-209v1,-4,-1,-14,-3,-9v1,3,-1,9,3,9xm50,-218v-1,-1,-4,-4,-3,0r3,0xm74,-214v-4,-1,-1,5,-1,6v2,0,0,-4,1,-6xm58,-197v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm67,-197v-3,-1,-2,3,-2,5v1,-2,2,-2,2,-5xm20,-192v-1,9,-8,23,-6,33v10,3,7,-10,9,-18v-4,-2,-3,-9,-3,-15xm35,-192v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm65,-188r0,4v2,-1,2,-3,0,-4xm125,-187v-1,-2,-4,-1,-3,2xm60,-185v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm60,-176v-5,0,0,10,0,10v3,-1,0,-7,0,-10xm36,-175v-7,9,2,29,0,44v8,-1,-3,-17,8,-19v-1,-4,3,-13,-2,-13r0,7v-4,-1,-6,-8,-6,-19xm13,-174v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm52,-163v-5,5,2,13,3,5v-1,-2,-1,-5,-3,-5xm53,-147v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm24,-143v-6,-3,-12,7,-6,10v1,-2,4,1,6,0r0,-10xm42,-140v1,1,1,4,4,3v0,-5,0,-5,-4,-3xm31,-140v-3,1,0,8,-1,11v4,-2,2,-7,1,-11xm53,-138v-2,2,-1,9,0,12v3,-1,7,-1,10,0v1,-10,-10,2,-10,-12xm30,-127r0,23v5,-1,3,-18,0,-23xm53,-124v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm63,-121v-4,2,-2,20,0,24r0,-24xm52,-117v1,11,2,17,4,17r0,-17r-4,0xm39,-116v-3,-1,-2,2,-2,4v1,-1,4,-3,2,-4xm14,-111r1,9v4,-2,10,-2,9,-9r-10,0xm37,-110v0,6,-2,24,4,15v-1,-6,3,-15,-4,-15xm33,-94v-1,1,-6,6,0,5r0,-5xm65,-89v-4,-1,-3,3,-3,6v4,1,3,-3,3,-6xm44,-74v-5,-1,-4,2,-4,6v0,5,2,8,4,8r0,-14xm34,-62v-2,-2,-4,-2,-3,3v2,0,4,0,3,-3xm116,-63v-3,-3,-5,0,-4,4xm20,-60v-4,1,-4,14,0,18r0,-18xm108,-57v-8,2,-5,29,0,33v0,-11,2,-23,0,-33xm34,-56v-4,-1,-3,2,-3,5v2,-1,4,-2,3,-5xm140,-56v-1,1,-5,4,0,4r0,-4xm44,-53v-2,1,-5,4,0,4r0,-4xm100,-47v-3,2,-5,10,0,11v1,-4,1,-8,0,-11xm140,-43v-5,-1,-2,3,-2,6v3,1,2,-4,2,-6xm42,-40v-1,9,-1,17,0,26v5,-1,5,-22,0,-26xm140,-32v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm37,-26v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm52,-21v-4,0,-3,6,-2,9v4,0,1,-6,2,-9xm109,-14v-2,-2,-4,-2,-3,3v2,0,4,0,3,-3xm44,-11v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm36,-9v-2,0,-3,10,1,9v2,-4,3,-7,-1,-9xm31,-6v-3,-1,-3,5,-2,7v4,1,1,-5,2,-7xm126,0v-1,-3,-5,-5,-4,0r4,0","w":158},"d":{"d":"87,-300v19,-3,37,-3,57,-3v0,5,0,6,3,6v-1,-4,3,-7,4,-3v0,11,-7,7,-6,15r5,0v-3,39,2,89,1,131v0,2,-2,2,-5,2v10,46,1,100,6,151v-9,14,-38,3,-61,7v-6,-1,-1,-13,-6,-15v-28,28,-61,28,-78,-12v-6,-61,-3,-116,-3,-173v0,-27,7,-48,27,-53v1,5,-2,14,3,15v0,-12,-5,-21,13,-20v-1,5,3,15,3,5v-2,-2,0,-6,4,-5v10,-1,19,8,33,16v-2,-24,3,-46,0,-64xm125,-298v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm124,-287v3,-1,-1,-7,-2,-4xm92,-290v2,7,4,2,10,4v2,-6,-6,-3,-10,-4xm107,-290v1,7,5,1,11,4v2,-7,-7,-3,-11,-4xm138,-285r0,21v4,-2,14,-21,0,-21xm112,-280v-4,-1,-4,1,-3,4v3,1,2,-2,3,-4xm125,-280v-4,4,-1,13,-2,20v12,0,4,-13,2,-20xm111,-270v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm104,-264v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm112,-263v-3,-1,-5,1,-4,4v5,-1,3,4,3,7v3,-2,1,-7,1,-11xm119,-263v-1,1,-4,7,0,7r0,-7xm145,-252v-5,-1,-4,3,-4,7v5,1,4,-3,4,-7xm42,-240v1,-5,-4,-10,-4,-3v1,1,1,4,4,3xm23,-239v1,4,-2,11,3,10v0,-4,1,-9,-3,-10xm145,-233v-3,1,-2,7,0,9r0,-9xm59,-232v-4,-1,-5,1,-4,5v1,1,2,3,4,3r0,-8xm145,-222v-5,1,-5,11,0,11v1,-4,1,-8,0,-11xm26,-217v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm138,-217v-5,-1,-2,6,-3,9v5,1,4,-7,3,-9xm81,-216r0,5r0,-5xm80,-208v-22,4,-11,49,-11,72r0,89v0,7,2,13,11,12v5,0,7,-10,7,-31r0,-119v0,-16,-2,-23,-7,-23xm21,-200v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm144,-200v1,3,-2,9,2,9v0,-4,0,-7,-2,-9xm11,-183v-2,0,-1,3,-1,4v1,-1,2,-2,1,-4xm117,-154v0,-3,-4,-5,-3,0r3,0xm124,-156v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm149,-143v0,-1,-1,-3,1,-3v0,1,1,3,-1,3xm23,-140v-4,-1,-1,5,-2,7v4,1,1,-5,2,-7xm22,-122v-2,0,-2,7,0,7v2,-1,3,-6,0,-7xm15,-117v1,9,-3,24,2,29r0,-29r-2,0xm10,-69v-5,1,-2,10,1,9v-1,-3,1,-8,-1,-9xm123,-66v-2,-2,-4,-2,-3,3v2,0,4,0,3,-3xm138,-67v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm11,-55v-1,1,-5,5,0,4r0,-4","w":166},"e":{"d":"155,-68v0,68,-17,98,-73,98v-50,0,-75,-30,-75,-92v1,-3,10,-8,0,-10v0,-35,0,-138,18,-136v11,-13,20,-22,31,-19v47,-20,104,16,97,84v-1,14,13,55,-19,46v-19,2,-51,-6,-63,3v4,21,-8,82,11,79v24,-4,1,-51,15,-66v21,0,34,2,54,0v2,0,4,5,4,13xm56,-226v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm43,-195v-3,-1,-2,4,-2,6v3,1,2,-4,2,-6xm83,-188v-22,1,-7,33,-11,50r17,0v-1,-16,4,-44,-6,-50xm41,-185v2,10,-6,29,4,32v-1,-10,2,-29,-4,-32xm95,-119v-2,0,-1,3,-1,5v4,0,2,-3,1,-5xm103,-116v-4,1,-3,4,-1,7v4,1,3,-2,3,-5xm111,-115v-5,0,-2,7,0,9r0,-9xm120,-115v-2,0,-3,10,1,9xm50,-85v-1,0,-3,-1,-3,1v2,1,4,3,3,-1xm57,-76v0,-2,-3,-4,-2,0r2,0xm44,-76v-6,0,-4,13,-3,19v5,-2,4,-13,3,-19xm25,-72v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm139,-71v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm140,-62v-2,-2,-5,0,-1,1xm140,-57v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm35,-50v-2,0,-3,4,0,5r0,-5xm36,-39v-1,-3,-3,-4,-2,0r2,0xm29,-24v-2,-1,-2,1,-2,3","w":163},"f":{"d":"43,-287v20,-1,30,-9,31,19v1,-8,-1,-16,0,-21v9,-2,3,10,7,14v-4,1,-12,-1,-6,-4v-1,8,15,5,9,13v0,1,2,3,6,4v3,-11,-10,-6,-12,-13r4,-15v26,-4,12,19,16,35v-2,6,-16,6,-17,-1v1,6,-4,6,-8,8r0,19v13,2,28,-8,25,13v-1,13,6,32,-14,28v-2,21,4,49,-2,66v4,48,-1,93,2,137v-14,6,-47,4,-64,1r0,-204v-21,5,-12,-22,-14,-37v3,-5,7,-3,14,-4v-1,-19,3,-45,12,-48v-3,1,0,8,2,5v0,-8,-3,-12,9,-12r0,-3xm42,-283v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm74,-261v-3,2,-5,5,-3,10v8,0,7,-6,3,-10xm44,-228v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm46,-218v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm55,-213v0,-3,-4,-7,-3,-1v1,1,2,3,3,1xm69,-218v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm75,-95v-2,0,-1,3,-1,4v1,-1,3,-3,1,-4xm78,-33v1,1,2,3,2,0r-2,0xm73,0v-1,4,-4,10,2,11v0,-4,1,-10,-2,-11xm52,4v-4,0,-4,3,-4,7v5,1,4,-3,4,-7xm32,10v1,1,2,3,2,0r-2,0"},"g":{"d":"39,-235v15,-10,52,5,47,17r7,0v3,-7,2,-10,6,-16v21,3,57,-11,57,15r0,147v-7,8,7,42,-2,59v-3,-6,1,-18,-8,-18r1,18r-23,1v-1,7,2,16,6,11r0,4v5,-2,10,-5,6,-11v6,-2,5,15,9,3v0,-1,-2,-4,1,-3v-3,13,10,2,10,11v0,57,-114,85,-140,33v2,-12,-11,-16,-4,-35v19,3,34,2,57,2v5,22,26,21,26,-3v0,-9,1,-18,-4,-24v-28,31,-81,12,-81,-41v0,-28,5,-63,-2,-85v6,-31,-5,-76,29,-84v0,5,2,15,3,5xm26,-221v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm42,-205v-5,-1,-5,2,-2,5v3,1,2,-3,2,-5xm49,-168v-12,0,-2,-33,-9,-26v2,12,-6,33,8,32v1,2,-2,8,2,7xm72,-165v4,10,-1,34,-3,14v-5,1,-4,8,-11,0v-1,4,-4,8,-4,0v-4,0,-6,12,0,11v0,-3,1,-5,4,-4v2,3,0,10,5,9r0,-4v23,-1,2,33,11,46v-6,22,-3,46,18,35v-2,-23,3,-39,5,-56v3,1,5,-1,4,-4v-6,1,-5,-2,-5,-7v-7,-50,1,-68,-14,-69v-7,0,-10,9,-10,29xm26,-192v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm49,-191v-3,0,-3,7,0,9r0,-9xm68,-183v-5,0,-5,12,0,15v3,-3,-1,-10,0,-15xm108,-182v-3,3,-3,12,0,15r0,-15xm36,-163v1,-4,-2,-6,-3,-3xm27,-162v0,-3,-5,-6,-4,0r4,0xm40,-157v1,2,2,4,4,1v0,-5,-1,-1,-4,-1xm43,-152v-2,0,-5,6,0,5r0,-5xm149,-134v1,2,2,4,2,0r-2,0xm63,-130v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm118,-115v0,13,-2,29,5,35v1,-16,-3,-20,-3,-35r-2,0xm112,-109v-4,-1,-3,3,-3,6v4,0,4,-3,3,-6xm133,-69v0,-7,-4,-24,-5,-16v1,11,-2,15,-6,6r0,8v-9,2,-11,0,-9,6v9,-2,17,5,20,-4xm140,-76v-5,1,-6,10,-1,11v8,0,13,-5,5,-9v0,1,-1,2,-3,2xm138,-61v-1,7,9,0,12,3v2,-9,-4,1,-12,-3xm150,-38v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm101,3v8,-2,-1,-22,-3,-15xm111,-11v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm119,-11v-5,0,1,11,-5,12v0,-5,-6,-11,-6,-1v-1,6,9,3,12,3xm130,-6v-1,0,-2,-4,0,-4r0,4xm16,12v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm42,37v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm50,38v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm59,38v-6,-1,-4,4,-1,5v1,-1,1,-3,1,-5","w":166},"h":{"d":"9,-272v0,-26,23,-7,45,-14v9,4,20,-5,20,9v0,18,-5,44,1,58v18,-14,25,-17,45,-15v0,13,7,-3,8,6v1,13,0,26,5,35v-1,-10,1,-20,6,-10v1,-7,-2,-17,3,-19r6,10v-7,-2,-1,5,-1,5v1,-2,0,-5,2,-5v2,6,8,18,1,21v-1,-13,-5,-11,-6,-2v3,10,7,8,10,2v7,66,0,138,3,207v0,5,-7,8,-11,6v2,-2,0,-6,-3,-6v0,2,2,6,0,7v-16,-2,-39,4,-50,-3v-1,-29,11,-45,7,-53r-5,3v-2,-36,-5,-97,3,-126v-9,-7,1,-34,-14,-34v-7,0,-11,9,-11,25v-8,1,-3,14,1,20r-2,62v0,16,5,48,-2,57v-1,-7,-6,-6,-12,-7v1,6,-6,4,-6,9v13,3,14,0,21,0v1,9,-2,14,-4,19v10,1,2,16,4,27v-17,0,-49,5,-64,-2v1,-12,-1,-27,2,-37v2,1,4,3,5,1v-1,-5,-3,-11,0,-15v7,-1,2,9,6,11v1,-11,-3,-24,-9,-12v2,4,-3,10,-4,4v5,-9,-8,-34,11,-28v3,-2,4,-3,7,-1v-1,-12,3,-19,0,-29v-6,3,4,31,-12,23r-2,3v-10,-61,-4,-138,-4,-212xm15,-282v-4,0,-5,5,0,5r0,-5xm132,-225v0,-2,0,-4,2,-3v0,2,4,6,0,5xm118,-212v3,-7,-7,-18,-6,-6v1,3,1,7,6,6xm123,-224v-2,1,-3,7,0,8r0,-8xm133,-213v-1,-4,4,-7,4,-3v0,4,-1,6,-4,3xm123,-214v-3,6,-2,21,0,29v7,-7,1,-17,0,-29xm115,-181v1,2,-2,8,2,7v0,-3,0,-6,-2,-7xm21,-174v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm104,-152v-2,2,-4,4,0,5r0,-5xm134,-149v1,9,-4,30,7,25v1,3,1,7,6,6v0,-5,0,-11,-8,-10v-2,-6,0,-18,-5,-21xm16,-138v-3,-1,-2,2,-2,4xm137,-115v-8,0,-9,-17,-11,-3v-3,15,12,18,20,13v-6,2,-7,-14,-9,-10xm121,-122v-4,-1,-4,3,-3,6v4,1,4,-3,3,-6xm112,-121v0,6,1,5,2,1xm143,-117v0,2,0,11,4,4v-1,-3,1,-5,-4,-4xm114,-113v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm43,-86v-11,3,2,17,-5,26v2,0,5,3,5,1v0,-9,-2,-19,0,-27xm64,-85v0,3,-1,7,3,6v1,-4,-1,-5,-3,-6xm52,-78v0,-5,-6,-8,-4,0r4,0xm52,-73v0,-1,-4,-2,-4,0r4,0xm64,-74r0,22r4,0v1,-7,-1,-17,0,-22r-4,0xm52,-72v-8,-1,0,7,-2,14v6,-1,-1,-11,2,-14xm59,-72v-4,-1,-3,2,-2,4v2,0,1,-3,2,-4xm112,-54v8,-1,2,-17,-2,-11r1,2v-3,0,-6,0,-5,4v5,0,5,2,6,5xm61,-57v0,-4,-5,-9,-4,-2v1,1,2,2,4,2xm100,-63v-4,0,0,6,0,6r0,-6xm27,-35v-3,1,0,7,-1,10v5,-1,5,-5,1,-10xm53,-35v-4,0,-2,4,0,5r0,-5xm114,-25v0,-4,-5,-7,-4,-1v1,1,2,2,4,1xm136,-24v1,-3,-4,-6,-4,-2v1,1,2,2,4,2xm143,-25v0,-3,-4,-4,-4,-1v1,1,3,3,4,1xm30,-22v-2,1,-5,0,-4,3v3,2,5,2,4,-3xm56,-12v1,-5,-6,-11,-4,-2v1,2,2,4,4,2xm112,-11v6,-5,-4,-15,-2,-3xm48,-16v-1,-2,-4,-1,-3,2xm61,-17v-3,0,-3,3,-2,6v7,1,8,-4,2,-6xm114,-8v-3,0,-6,0,-5,4v3,0,6,0,5,-4","w":164},"i":{"d":"7,-262v-3,-13,-8,-50,11,-39v11,-5,25,4,30,-2v9,6,31,-4,22,20v0,0,3,17,-2,21v-20,0,-42,-2,-61,0xm5,-243v13,-8,41,-1,63,-4v9,63,-2,135,3,202v-6,12,5,39,-3,51v-20,-4,-47,5,-63,-3r0,-246xm68,-210v-2,0,-4,0,-3,3r3,3r0,-6xm63,-152v-4,0,-4,3,-2,5v3,1,2,-3,2,-5xm23,-146v0,-3,-3,-4,-3,-1v0,1,2,3,3,1xm24,-135v-2,0,-4,0,-3,2r6,0xm32,-135v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm66,-133v-7,-5,-6,1,-2,3v0,-2,0,-4,2,-3xm65,-128v0,-1,-4,-2,-4,0r4,0xm65,-122v0,-1,-4,-2,-4,0r4,0xm49,-96v0,0,-2,0,-2,1v0,0,2,0,2,-1xm68,-87v-4,0,-4,2,-3,5v1,-2,3,-2,3,-5xm44,-65v0,-1,-4,-2,-4,0r4,0xm11,-42v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm28,-42v-3,0,-6,0,-5,4v3,0,6,0,5,-4xm45,-42v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm61,-42v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm63,-13v-3,0,-4,2,-4,5v4,1,5,-1,4,-5","w":79},"j":{"d":"14,-280v20,1,44,-4,58,4v0,-3,1,-5,4,-4v2,10,5,34,-2,41r-55,0v-15,-1,-6,-29,-5,-41xm38,-276v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm24,-275v-3,0,-5,3,-3,4v3,1,3,-1,3,-4xm31,-275v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm33,-263v-1,-1,-4,-3,-3,0v1,2,3,5,3,0xm11,-222v18,-5,47,-2,67,-1v-2,32,3,71,-2,99v6,48,-2,95,2,139v-3,2,-9,1,-8,7v4,0,6,1,6,3v-9,42,-30,39,-75,40v-5,-8,-5,-32,0,-41v25,4,3,-27,13,-43v-8,-68,3,-138,-3,-203xm56,-51v-3,0,-4,1,-4,4v3,1,5,-1,4,-4xm65,-19v-1,-2,-5,0,-5,2v3,0,4,-1,5,-2xm56,-15v-3,1,-3,3,0,5r0,-5xm56,-9v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm24,15v-6,-1,-5,2,-4,7v3,-1,5,-3,4,-7xm33,19v-2,-1,-2,1,-2,3xm58,19v-5,0,-4,6,0,3r0,-3","w":88},"k":{"d":"11,-300v19,-7,44,0,64,-2v2,39,-5,86,1,121r19,-66v15,-1,41,-4,53,2r-25,99r25,110v-3,14,12,34,6,42v-30,-5,-69,17,-63,-29v-7,-18,-5,-52,-16,-61v3,33,-3,58,1,87v-15,6,-36,0,-61,3v-11,-84,0,-210,-4,-306xm57,-297v-5,0,0,10,0,10r0,-10xm21,-250v-5,-1,-6,2,-3,5v4,1,3,-2,3,-5xm37,-248v-1,-1,-4,-3,-4,0r4,0xm21,-239v-2,1,-4,3,0,3r0,-3xm41,-184v-1,-5,-5,-5,-4,1v2,4,3,2,4,-1xm66,-26v-3,0,-15,12,-7,13v7,0,8,-5,7,-13xm17,-19v-3,-1,-2,4,-2,6v6,-1,3,-2,2,-6xm25,-17v-4,1,-5,4,1,4v2,-2,-1,-1,-1,-4","w":163},"l":{"d":"9,-288v21,2,51,-5,65,4r0,86v-7,13,6,47,-4,59v11,41,-1,105,4,158v-17,5,-43,1,-63,2v-7,-83,-2,-216,-2,-309xm53,-210v-5,0,-9,-12,-12,-8v0,9,3,12,12,8xm62,-220v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm31,-210v-4,-4,-18,-5,-17,5v11,4,12,8,12,16v13,0,-2,-18,5,-21xm64,-193v-3,-1,-2,2,-2,4v2,0,4,-3,2,-4xm28,-177v-3,0,-5,2,-3,4v3,1,3,-1,3,-4xm56,-175v-2,-3,-6,-2,-4,2v2,0,5,1,4,-2xm69,-138v0,-2,-5,-3,-4,0r4,0xm30,-91v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm41,-40v-4,-1,-5,1,-1,3v2,0,1,-2,1,-3xm33,-31v-5,0,-1,9,-2,13v7,1,3,-9,2,-13xm42,-31v-4,0,-6,11,0,11r0,-11xm67,-26v-6,0,-4,10,-2,13v4,-3,3,-9,2,-13xm25,-24v-7,0,-2,8,-1,12r3,0xm59,-24v-6,-1,-2,8,-2,12v6,0,1,-7,2,-12xm16,-13v6,-1,1,-15,-1,-7xm51,-21v-3,-1,-3,1,-3,4v2,2,2,2,4,0","w":79},"m":{"d":"75,-234v26,-34,58,-32,80,2v5,-3,8,-12,14,-7v8,-36,71,-16,65,13v14,58,2,146,6,222v-13,6,-45,4,-61,1r-2,-184v-1,-21,1,-29,-12,-27v-5,0,-7,10,-7,31r-2,129v3,14,2,33,2,50v-14,6,-48,5,-63,0r1,-187v3,-27,-21,-29,-21,-9r0,196v-14,9,-43,-2,-60,3v-7,-21,4,-45,-3,-70v5,1,10,-4,4,-7v-1,1,-3,4,-4,1v3,-52,-2,-116,0,-173v12,-8,47,-5,63,-2r0,18xm192,-246v-3,5,-2,16,0,21v4,-6,2,-17,0,-21xm203,-238v1,-4,-3,-9,-3,-4xm182,-239v-2,0,-7,-1,-6,2v3,2,9,14,11,5v-2,-5,-4,-7,-5,-7xm113,-237v-3,-1,-5,2,-2,3xm228,-231v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm203,-230v-2,0,-2,0,-2,2r2,2r0,-4xm212,-227v1,-3,-4,-4,-4,-1v0,2,3,3,4,1xm212,-216v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm121,-125v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm17,-88v0,0,-2,0,-2,1v0,0,2,0,2,-1xm48,-72v2,5,1,10,6,10v-1,-8,-3,-21,-6,-10xm27,-75v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm21,-51v-1,-2,-5,-1,-4,2v2,0,3,-1,4,-2xm21,-41v2,-3,-1,-7,-4,-5v0,3,0,6,4,5xm227,-15v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm228,-11v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm196,-9v-3,0,-5,2,-3,5v1,-2,3,-2,3,-5","w":255},"n":{"d":"105,-242r0,9v4,-1,-3,-12,7,-9v7,1,12,4,17,11v16,10,15,15,19,62v-2,4,-3,3,-9,3v0,5,2,7,6,4v8,66,-1,108,3,173v-12,9,-38,1,-62,4v-7,-76,5,-158,-7,-227v-3,-2,-8,-23,5,-22v0,-2,0,-2,2,-2v1,11,8,3,10,5v-3,2,2,8,2,3v-3,-5,-3,-9,0,-14r7,0xm55,-239v3,6,0,20,8,18v3,2,3,11,6,16v3,-11,-5,-19,5,-21v-2,6,-3,24,5,18v3,2,10,1,9,8v-18,-7,-23,3,-23,17v-5,2,-1,-5,-5,-4v-1,13,12,31,-5,37v1,14,-5,28,0,36v0,1,-2,2,-7,3v1,4,0,7,5,5v2,8,2,10,7,8v-3,-10,4,-19,4,-4r0,113v-10,8,-39,2,-60,4v-9,-11,5,-23,-4,-30v2,-13,-2,-20,4,-29v-3,-28,-7,-67,-2,-88v0,2,-1,5,2,4v3,-8,6,4,8,-1v-1,-5,2,-14,-3,-15v0,3,0,5,-3,4v-10,-25,-3,-45,-6,-81v-1,-17,7,-20,11,-10v7,-1,13,-9,16,1r5,-4v0,4,2,6,4,6v1,-14,4,-8,5,-1v0,3,-1,12,3,8v-3,-4,-1,-13,4,-15v0,9,0,29,6,12v0,-5,-4,-13,1,-15xm140,-217v-6,0,-2,9,-2,15v5,-1,1,-11,2,-15xm142,-194v-5,-1,-2,6,-3,9v3,-1,3,-5,3,-9xm134,-178r0,-4r0,4xm133,-176v1,3,1,5,1,0r-1,0xm142,-175v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm133,-166v0,4,2,5,2,0r-2,0xm126,-158v-4,0,-1,7,-2,10v5,1,2,-6,2,-10xm105,-155v-2,-2,-6,0,-3,2xm135,-146v1,-3,-1,-6,-2,-3xm59,-142v1,1,5,4,0,3r0,-3xm62,-122v-5,-1,-4,-11,1,-11v0,4,2,9,-1,11xm91,-102v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm55,-85v-4,1,-9,7,-2,7v1,-2,2,-4,2,-7xm18,-49v-4,1,-9,9,-9,23v5,-6,6,10,11,4v0,-9,-4,-19,-2,-27xm12,-30v-1,-1,-4,-5,0,-4v3,1,3,3,0,4xm5,-22v-2,0,-5,5,0,4r0,-4xm12,-16v0,-2,-3,-3,-3,-1v1,1,2,3,3,1xm28,-10v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm37,-1v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm7,2v-1,-1,-4,-3,-3,0r3,0xm12,0v-2,1,-5,11,2,9","w":164},"o":{"d":"152,-150v7,64,7,163,-61,161r0,2v-33,-4,-59,1,-74,-35v-19,-47,-8,-97,-8,-151v0,-46,22,-75,67,-78v5,5,15,-4,10,10v2,4,4,2,5,-2v-1,-3,-3,-5,0,-6v6,3,7,13,4,19v11,1,13,-13,4,-15r0,-3v41,8,62,50,53,95v1,-7,-5,-14,-5,-4v0,8,1,9,5,7xm80,-246r0,6v4,-1,3,-4,0,-6xm83,-230v-5,-1,-2,6,-3,9v1,6,3,16,-5,16v-8,43,-3,87,-3,133v0,32,-2,40,14,40v2,-2,2,-4,5,-5v1,9,-2,19,-5,7v-10,2,8,33,-7,27v0,2,-2,7,0,8v5,-8,12,0,11,-16v3,5,9,0,9,-5r-2,-7v4,-1,1,9,7,7v3,-19,0,-9,-2,-35v-6,5,-2,11,-11,5r0,-109v4,1,1,8,5,9v-7,-25,-6,-54,-13,-84xm51,-229v-2,0,-4,0,-3,2v2,2,4,2,3,-2xm91,-229v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm123,-229v-5,-1,-3,4,-3,7v3,3,4,1,4,-3xm65,-225v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm76,-206v0,-4,0,-16,-3,-11v1,4,-3,12,3,11xm113,-219v-1,5,2,12,4,4xm67,-216v-2,1,-5,3,0,3r0,-3xm43,-211v-2,2,-1,3,1,1xm37,-208v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm149,-182r0,5r0,-5xm104,-139v3,-16,-3,-56,-5,-24v3,8,-3,23,5,24xm143,-161v-2,0,-1,3,-1,5v3,0,2,-3,1,-5xm48,-155v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm96,-144v-3,0,-2,11,0,13v1,-4,1,-9,0,-13xm106,-115v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm28,-80v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm30,-72v-1,0,-3,-1,-3,1v1,1,4,3,4,0xm36,-70v0,-1,-4,-2,-4,0r4,0xm102,-59v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm142,-48v2,-5,-4,-13,-4,-6v1,3,0,7,4,6xm111,-44v-8,2,-1,22,-3,33v1,0,4,1,4,-1v-4,-10,1,-21,-1,-32xm128,-43v-2,0,-5,-1,-4,2v0,5,6,11,4,3v2,0,0,-4,0,-5xm97,-27v0,-3,-1,-6,3,-5v0,3,1,6,-3,5xm128,-30v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm31,-25v0,-3,-4,-5,-3,0r3,0xm79,-27v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm73,-7v-6,0,-4,8,-1,11v3,-1,1,-7,1,-11xm64,-5v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm112,3v3,-2,0,-9,-2,-3","w":160},"p":{"d":"86,-227v-6,-10,20,-26,24,-15v0,7,-9,-1,-8,5r2,-3v3,7,4,-1,5,12v7,-2,16,-1,11,-11v17,3,1,38,10,51v7,-8,1,-26,3,-39v-9,-3,-2,-9,3,-12v11,8,19,31,17,61v-8,3,2,5,1,26v-3,40,4,90,-4,125r-2,-42v-11,8,10,54,-4,53v-1,-7,-1,-23,-5,-22v4,18,-13,0,-4,14r3,-1v1,6,-1,9,-5,4v-2,16,7,10,7,21v-19,23,-50,19,-66,-8r-4,0r0,54v-15,-3,-34,7,-38,-9v3,13,-11,10,-22,10v-11,-70,0,-201,-4,-280v2,-1,6,-15,16,-9v0,2,-2,6,0,6v0,-8,31,-10,38,-4v-2,3,0,4,3,4v1,-5,3,-8,5,-5v3,7,-3,22,5,22v7,-9,11,-13,13,-13v2,14,5,10,3,22v-10,0,-24,-3,-18,12v-7,43,3,109,-1,154v-1,11,12,17,17,19v3,-42,-3,-92,4,-130v0,1,1,2,3,2r0,-16v-7,3,-3,-6,-5,-12v3,-9,-3,-23,-6,-38r9,3r-8,-1v5,-3,10,-7,2,-10xm114,-241v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm133,-240v-3,1,-9,-3,-4,-3xm39,-240v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm136,-229v-5,1,0,9,-1,13v5,-1,0,-9,1,-13xm89,-217v-1,0,-4,-1,-4,1v2,0,5,2,4,-1xm20,-203v-1,-3,-3,-3,-4,0v2,4,1,0,4,0xm26,-201v2,-3,0,-5,-3,-3v1,1,1,3,3,3xm148,-204v-3,-1,-5,1,-4,4v3,1,5,-1,4,-4xm22,-185v-1,-14,-7,-6,-6,0v1,9,3,13,5,13xm146,-193v-6,1,2,6,2,12v0,0,2,0,2,-1xm12,-190v-3,2,-1,8,-2,11v5,0,4,-8,2,-11xm134,-172v-2,-2,-5,-1,-4,3v3,0,3,-2,4,-3xm21,-169v-2,3,-3,16,1,18xm14,-166v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm92,-167v2,6,-4,14,-2,4v-2,-2,0,-3,2,-4xm28,-163v1,8,-3,21,3,24v-3,-8,3,-22,-3,-24xm133,-141v5,0,4,-8,0,-5r0,5xm92,-145r0,14v4,0,5,-11,0,-14xm22,-142v-4,0,-1,4,0,6r0,-6xm32,-129v-9,0,-1,14,-1,20v5,-1,0,-14,1,-20xm144,-115v-2,0,-3,4,0,5r0,-5xm137,-82v-7,0,-3,13,0,18v3,-1,0,-6,0,-9v5,0,16,0,8,-4v-2,3,-7,2,-7,-3v1,-9,-1,-16,7,-8v-1,-6,2,-14,-2,-17v0,7,-1,8,-4,8r-1,-17v-8,1,-2,23,-1,32xm129,-92v-2,0,0,5,-1,7v0,0,2,0,2,-1xm143,-46v-2,-7,-5,-5,-5,1r1,4xm80,-9v-1,-5,-3,-4,-2,0r2,0xm85,-13v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm137,-11v0,-2,0,-4,2,-3v0,2,0,4,-2,3xm47,-12v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm137,-6v-1,0,-3,-1,-3,1v1,0,3,1,3,-1","w":157},"q":{"d":"91,-9v-35,48,-83,17,-83,-42v0,-27,3,-59,-2,-83v17,-2,-4,-30,5,-38v-1,-17,-4,-30,-1,-46v4,2,5,0,9,-1v3,8,-1,36,5,48v3,-18,1,-40,0,-63v5,1,5,12,7,-1v0,-3,-3,-9,2,-8v0,2,-1,6,2,5v2,0,2,-2,2,-7v19,-10,43,2,54,27v13,-2,-10,-22,4,-26v6,-1,9,5,16,6v-2,-9,10,-1,16,-6v2,10,34,-15,26,21r0,186v-6,-2,-4,5,-4,9v2,-1,4,-3,5,0v2,8,-3,9,-5,14v10,11,1,41,5,58v-20,6,-43,2,-64,1v2,-19,-3,-36,1,-54xm62,-243v-6,0,-3,6,0,8r0,-8xm53,-234v4,-4,-2,-9,-2,-2xm139,-239v-5,1,-1,10,-2,14v-4,-1,-10,-4,-8,3v1,10,3,15,5,15v0,-8,2,-7,6,-5v-1,-15,14,6,5,-15v-4,-1,1,5,-3,7xm68,-238v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm115,-236r0,20r3,0v-1,-6,3,-18,-3,-20xm19,-220v-8,-1,-2,-17,1,-12xm112,-220v-2,-1,-5,-5,-5,0v2,2,4,2,5,0xm88,-220v-4,1,-3,7,-3,12v6,1,2,-8,3,-12xm80,-214v-6,2,-3,3,-1,7v-18,19,-2,62,-9,86v2,11,5,37,-1,46v4,33,0,46,14,44v16,-32,3,-85,7,-134v3,-40,-7,-29,-10,-49xm15,-211v-2,0,-2,7,0,7r0,-7xm73,-207v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm142,-198v3,-2,-5,-9,-3,-3xm150,-204v-4,0,-3,5,-2,8v4,1,1,-5,2,-8xm14,-203v1,3,-2,11,2,11v0,-4,1,-10,-2,-11xm63,-203v-4,-1,-3,3,-3,6r3,2r0,-8xm57,-201v-2,0,-8,16,0,19r0,-19xm41,-198v-5,0,-3,4,-1,7v3,-1,2,-5,1,-7xm44,-195v3,6,-1,22,8,10v-5,-6,-2,-12,-8,-10xm40,-184v1,12,-7,10,-7,2v-6,2,-1,47,4,46v-3,-13,-6,-24,1,-36v5,3,3,-2,9,-2v0,1,-1,3,1,3v-1,-3,2,-5,-1,-6v1,3,-2,2,-4,2v0,-4,0,-8,-3,-9xm26,-166v-3,0,-2,9,0,5v2,0,0,-4,0,-5xm20,-143v-1,1,-5,5,0,4r0,-4xm27,-140v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm69,-138v-4,0,-6,8,-1,7xm12,-132v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm37,-131v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm65,-128v1,3,0,8,3,10v-1,-4,2,-11,-3,-10xm96,-72v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm33,-47v5,-1,0,-9,-2,-6v0,3,0,5,2,6xm40,-43v1,3,-2,9,2,8v0,-3,0,-7,-2,-8xm153,-32v-1,0,-2,-4,0,-4r0,4xm127,-33v-2,4,-4,11,2,8v0,-3,0,-7,-2,-8xm49,-30v-1,1,-4,4,0,3r0,-3","w":163},"r":{"d":"112,-255v4,28,-2,60,1,86v-66,5,-26,109,-39,170v-20,-2,-49,6,-63,-3v2,-45,-4,-97,3,-137v-6,-31,-2,-73,-3,-109v14,-6,49,-5,64,0v1,6,-3,16,0,21v20,-24,16,-22,37,-28xm41,-131v-6,-1,-2,11,-2,13v5,0,1,-9,2,-13","w":119},"s":{"d":"5,-168v2,-43,19,-67,66,-67v41,0,68,15,67,55v3,7,6,26,-1,31v-17,-2,-43,5,-53,-4v-2,-14,7,-38,-10,-38v-21,8,-8,46,3,52v44,26,69,36,69,86v0,16,-3,56,-13,52v5,4,-3,14,-11,16v-1,-1,0,-2,-2,-2v0,7,-13,13,-38,15v-10,1,-13,-3,-17,-7v0,3,0,6,-4,5v-3,0,-2,-6,-6,-3v-19,2,-42,-20,-42,-43v4,1,4,-2,4,-5r-7,1v-2,0,-2,-13,-3,-38v11,-10,32,-1,54,-5v12,7,-8,56,18,50v16,-3,8,-53,-2,-50v-33,-26,-76,-38,-72,-101xm34,-207v-7,-1,-4,2,-1,4v1,-1,1,-2,1,-4xm89,-206v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm19,-188v3,-1,-1,-7,-2,-4xm21,-184v0,-3,-4,-4,-3,0r3,0xm57,-177v4,-3,-3,-16,-2,-3xm28,-185v-4,0,-2,4,-3,8v5,1,2,-5,3,-8xm92,-184v-1,1,-5,5,0,4r0,-4xm132,-180v-1,-1,-2,-3,-2,0r2,0xm58,-176v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm124,-174v-4,-1,-3,2,-3,5v4,1,3,-2,3,-5xm44,-163v1,-4,-3,-11,-4,-6v1,3,0,7,4,6xm110,-171v-7,-1,-3,4,-1,6v10,1,7,-3,1,-6xm51,-169v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm28,-163v-4,-1,-1,5,-2,8v7,1,2,-4,2,-8xm23,-150v-2,-3,-2,-13,-5,-9v2,5,-2,10,5,9xm37,-159v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm15,-154v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm37,-140v0,0,-2,0,-2,1v0,0,2,0,2,-1xm14,-40v-4,-1,-1,5,-2,7v4,1,1,-5,2,-7xm103,-36v-3,-1,-2,3,-3,5v4,1,3,-2,3,-5xm136,-33v-1,-4,-9,0,-10,2v7,-2,5,5,5,10v-2,-1,-1,-4,-6,-3v-2,11,9,-1,7,13v7,0,2,-15,4,-22xm95,-33v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm104,-24v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm120,-24v-6,-1,2,3,-3,4v4,1,4,-1,3,-4","w":150},"t":{"d":"14,-222v0,-22,-4,-51,17,-38v13,-5,30,1,43,-3v8,7,2,28,4,41v23,-6,16,19,17,37v-3,5,-9,5,-11,-1v1,7,-4,5,-9,5v3,9,-1,16,-5,22v18,18,1,128,12,142v26,-2,13,21,16,39v-40,13,-97,-3,-84,-59v1,-7,-4,-19,5,-19v-9,-33,-4,-87,-5,-125v-22,8,-12,-22,-15,-39v4,-4,10,0,15,-2xm53,-222v1,-5,-4,-5,-3,-1xm25,-221v-4,1,-1,12,-7,6v-1,8,8,10,11,4v-2,0,-3,-3,-4,-10xm62,-221v-4,0,-7,-1,-6,4v4,0,7,1,6,-4xm62,-208v1,-4,-5,-6,-5,-2xm66,-212v-2,1,-7,10,2,8v0,-3,0,-7,-2,-8xm36,-141v-2,-2,-6,0,-5,3v3,2,5,2,5,-3xm45,-69v1,7,-2,18,2,22v-2,-8,4,-20,-2,-22xm54,-69v-4,1,-2,4,0,6r0,-6xm90,2v0,3,-2,8,3,7v0,-4,0,-6,-3,-7xm47,6v-4,-1,-5,1,-4,5v3,0,4,-2,4,-5"},"u":{"d":"10,-236v16,-11,38,3,52,-4v22,2,9,42,14,59v-3,36,1,74,-2,106v3,20,-6,62,19,43r1,-204v11,-12,53,6,60,-4v9,16,2,57,4,84v-8,2,4,13,-5,17v7,2,4,19,1,18v10,38,0,91,4,131v-16,6,-43,1,-64,2r-1,-15v-36,41,-86,20,-83,-48v1,-35,-2,-74,2,-105r-2,0v2,-19,-2,-54,0,-80xm151,-232v-6,-2,-2,7,-2,7xm62,-233v-3,0,-6,6,0,5r0,-5xm138,-219v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm49,-218v-5,-1,-6,2,-3,5v4,1,3,-2,3,-5xm53,-217v-2,0,-4,0,-3,3v1,-4,4,2,3,-3xm29,-207v-1,1,-3,6,2,5v0,-3,-1,-3,-2,-5xm151,-110v4,-1,-1,-10,0,-3r-2,0xm152,-108v-2,0,-7,-1,-6,2v2,0,7,1,6,-2xm111,-94v-3,0,-4,5,0,5r0,-5xm144,-76v-4,0,-1,4,0,6r2,0xm136,-74v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm154,-73v-3,-1,-5,2,-2,3xm137,-68v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm130,-59v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm122,-41v-3,6,3,14,3,3xm140,-36v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3","w":167},"v":{"d":"81,-73r14,-171r51,0r3,4v-19,167,-29,250,-32,250r-77,0v-15,-56,-24,-182,-35,-252v13,-5,36,0,53,-2v10,-1,11,138,23,171xm33,-180v4,-2,-2,-18,-2,-8xm42,-189v-3,-1,-3,1,-3,4r3,2r0,-6xm17,-182r0,10v2,0,2,-3,3,-8xm93,-46v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm103,-42v-1,-1,-4,-3,-4,0r4,0xm112,-41v-1,-1,-4,-3,-3,0r3,0","w":154},"w":{"d":"27,-8r-26,-237v12,-7,32,-1,52,-3v3,0,5,9,6,25v-2,12,3,24,-1,34v5,0,8,25,11,74r2,0v5,-37,6,-107,16,-133v16,2,41,-5,51,4r11,123v10,-68,12,-135,18,-127v17,1,41,-4,52,3r-26,249v-18,6,-47,-2,-65,2v-3,0,-7,-19,-10,-58v5,-21,-3,-12,-5,-51r-2,0v-7,72,-13,109,-15,109r-62,0v-5,0,-7,-5,-7,-14xm30,-31v-3,-1,-2,3,-2,5v4,0,5,-4,2,-5","w":223},"x":{"d":"9,-241v27,1,62,-15,56,26v4,17,5,37,11,52v5,-19,9,-51,13,-77v15,-2,41,-4,56,0r-25,121r30,128v-16,4,-39,1,-58,2v-3,0,-7,-20,-12,-59v-2,-6,-1,-15,-5,-20v-8,52,-13,78,-15,78v-23,-3,-35,1,-52,-1r27,-129xm23,-218v-2,0,-1,3,-1,4v1,-1,2,-2,1,-4xm33,-218v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm97,-213v-4,6,-13,-8,-9,8v8,-1,17,4,9,-8xm109,-214v1,6,3,9,5,6v-2,-3,0,-9,-5,-6xm33,-210v-2,1,-4,3,0,3r0,-3xm107,-200v1,-9,-5,-12,-4,-4v-1,3,1,5,4,4xm41,-209v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm114,-204v-3,-1,-5,1,-4,4v3,1,5,-1,4,-4xm114,-194v-3,3,-6,29,0,33v10,1,17,-13,4,-14xm102,-177v-3,-3,-11,1,-6,4v4,0,4,-3,6,-4xm113,-160v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm103,-152v-4,0,-1,6,-2,9v4,0,1,-6,2,-9xm77,-147v-5,1,-4,11,0,11v1,-4,1,-7,0,-11xm139,-33v0,-5,-6,-3,-2,0r2,0xm103,-33v-2,-2,-5,0,-1,1xm41,-5v0,-3,-4,-4,-3,0r3,0xm41,-1v-4,-1,-4,3,-3,6v4,0,6,-2,3,-6","w":153},"y":{"d":"3,-227v14,-6,42,4,53,-2v8,2,5,13,1,19v4,0,8,8,9,24r12,117v-3,0,-3,3,-3,6v13,2,8,-19,8,-27v0,-45,2,-97,11,-137v4,-3,2,15,9,11v-4,-22,27,-10,43,-13v9,7,-3,23,0,35r-16,149v-4,55,-9,82,-15,82v-4,15,-33,27,-62,21v1,-1,2,-2,2,-4v-8,-1,-16,2,-15,-8v-5,0,-3,9,-1,12v4,-2,13,1,6,2v-8,1,-17,-2,-24,0v0,-12,-17,-49,16,-41v8,-20,-1,-30,-7,-80v8,-5,-10,-24,4,-27v-5,-1,-11,0,-9,-8xm109,-223v-6,-2,-5,3,-5,8v3,-1,9,1,11,-1v-8,0,-7,-2,-6,-7xm53,-207v-3,-1,-4,3,-2,4v2,-1,4,-2,2,-4xm107,-183v-3,-2,-6,0,-5,4v4,1,4,-2,5,-4xm103,-177v-9,2,2,9,2,14v-1,-3,4,-2,5,-4v-11,-1,7,-6,-7,-10xm30,-175v-5,-1,-5,1,-2,3xm112,-159v-2,-3,-12,-3,-10,3xm97,-160v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm108,-146v0,-3,-6,-4,-5,0r5,0xm115,-147v-6,-1,-4,1,-1,3xm124,-108v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm133,-108v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm108,-107v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm54,-82v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm70,-77v-5,3,-2,24,2,12v-2,-4,-1,-7,-2,-12xm59,-66v-2,0,-7,-1,-6,2v3,0,4,-1,6,-2xm124,-65v-3,-1,-5,1,-4,4v1,1,3,3,4,1r0,-5xm125,-53v-1,-4,-8,-2,-2,0r2,0xm105,-26v-5,-4,-11,-1,-8,6v-8,-2,-13,11,-8,18v5,-2,4,-14,4,-15v1,7,9,20,8,5v5,0,4,-4,4,-8v-1,1,0,2,-2,2v-1,-4,3,-3,2,-8xm71,28v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm25,54v-3,0,-4,4,0,4r0,-4xm35,54v-2,0,-4,0,-3,3v1,-1,4,0,3,-3","w":154},"z":{"d":"17,-217v2,-19,-6,-37,17,-34v30,4,54,-1,84,0v8,44,6,59,-16,112r-8,0v1,4,6,1,8,3v-8,30,-21,55,-26,87v14,2,38,-5,45,4v-2,15,4,38,-3,48r-102,0v-10,-16,-2,-77,9,-83v3,2,2,3,2,8v6,2,15,-5,5,-3v-1,-1,-2,0,-2,-2v4,0,10,2,8,-4v-4,0,-6,-2,-6,-4v11,2,12,-10,21,-6v-2,-10,-12,-6,-13,2v-13,-7,-14,-13,-3,-20v-3,-2,-3,-7,-2,-11r15,0v0,-3,-1,-5,-5,-4v1,4,-2,3,-5,3v-6,-9,3,-16,9,-18r-6,0v1,-6,1,-16,7,-19v1,3,0,7,4,6v4,-8,-3,-8,-4,-14v5,1,4,-2,1,-5v3,-9,17,-24,4,-34v-2,7,-26,6,-36,4v3,-5,-1,-8,3,-9v-3,0,-5,-2,-5,-7xm65,-245v-5,-1,-5,3,-1,4v2,0,1,-3,1,-4xm38,-241v-5,2,-3,11,1,14v4,-1,1,-16,-1,-14xm73,-237v-2,1,-3,5,0,6r0,-6xm41,-211v-1,1,-3,2,0,2r0,-2xm57,-209v3,-1,10,2,10,-2v-4,0,-8,0,-10,2xm71,-160v-5,1,-4,7,0,7r0,-7xm78,-157v0,0,-2,0,-2,1v0,4,3,4,4,0xm55,-145v-4,-3,-5,2,-5,5v0,4,1,6,6,5v2,-5,-2,-3,-1,-10xm75,-137v0,-6,-11,-10,-8,-2v-2,5,8,2,8,2xm91,-137v-2,-3,-5,-5,-8,-2v0,4,5,5,8,2xm82,-137v-5,-4,-9,2,-1,1xm49,-128v0,-5,-5,-3,-6,0r6,0xm55,-130v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm56,-123v-5,0,-6,4,0,4v1,-1,1,-3,0,-4xm61,-121v0,2,4,3,12,4v0,-6,-6,-3,-12,-4xm75,-107v-1,-1,-4,-4,-3,0r3,0xm83,-109v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm48,-102v-5,-2,-9,0,-5,4v3,-1,5,-3,5,-4xm86,-94v-4,-1,-5,3,-1,3xm29,-83v0,-1,-1,-3,1,-3v0,1,1,3,-1,3xm35,-61v-10,2,-3,-12,-8,-6v1,6,1,12,0,18v7,0,3,11,11,11v2,-6,1,-22,-3,-23xm22,-49v6,-4,-1,-19,-3,-13v2,2,3,6,3,13xm62,-61v-5,-1,-6,2,-2,5v3,1,2,-3,2,-5xm70,-51v4,-9,-6,-15,-3,-4v-1,3,-1,5,3,4xm55,-50v1,-8,-6,-2,-12,-3r-2,4v6,0,9,0,14,-1xm62,-54v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm40,-28v-7,-2,-7,3,-5,9v5,1,5,-4,5,-9xm38,-18v-3,-1,-3,1,-3,4v3,1,3,-1,3,-4xm38,-6v-2,-2,-5,0,-1,1","w":129},"{":{"d":"56,-308v-2,-22,40,-31,62,-23v-1,13,5,40,-7,42v-25,-4,-23,19,-29,30v-11,-4,-23,-10,-38,-11v4,-5,-4,-24,15,-15v0,-1,-1,-3,1,-3v-1,3,1,3,4,3v2,-8,-20,-3,-17,-10v4,-9,5,-13,9,-13xm64,-294v-1,1,-4,1,-4,3r5,0xm26,-156v17,2,19,-7,32,-10v-19,-2,-37,4,-48,4v-1,-15,0,-9,18,-16v14,-5,17,-46,16,-75v7,-8,33,-2,41,0v-2,6,-7,2,-13,2v-4,8,11,9,5,15v11,4,5,28,4,41v-5,-2,-11,-2,-17,0v0,6,10,2,15,3v3,8,-13,5,-21,10v-7,-5,-12,2,-11,10v-7,2,-2,-6,-7,-6v-5,0,-7,3,-7,9v12,-3,24,4,17,-9r25,-1v-1,12,-10,17,-21,21v4,0,5,6,2,8v23,12,32,65,26,100v5,20,-1,38,35,39v-4,14,10,43,-10,43v-28,0,-45,-7,-53,-23v-7,0,-11,-37,-12,-110v-5,-19,-16,-28,-32,-28v2,-9,-5,-26,5,-27v0,3,-1,7,3,6v-1,-4,0,-8,5,-5v-3,5,2,7,5,3xm77,-219v-2,1,0,6,-1,8v-6,1,-9,12,-16,2r-5,9r17,0v2,-6,13,-15,5,-19xm55,-194v-1,-3,-4,-4,-3,0r3,0","w":120},"|":{"d":"31,-328v1,-6,27,-12,24,3v7,2,1,-8,7,-8v3,0,4,7,4,19r0,171v0,6,-2,9,-6,9v11,49,3,101,6,157v-7,10,-24,-2,-33,4r-2,-272v2,-26,1,-55,0,-83xm59,-200v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm59,-134v-2,-1,-5,-3,-6,0v0,4,4,2,6,0xm47,-91v8,-1,1,-21,-1,-7xm55,-99v1,1,2,3,4,3v-1,-1,-1,-4,-4,-3xm58,-48v-1,0,-3,-1,-3,1v1,0,3,1,3,-1","w":93},"}":{"d":"84,-49v9,53,-15,86,-68,80v-1,-13,-19,-55,20,-48v8,-1,14,-27,10,-41v0,-51,9,-82,27,-93v-10,-19,-31,-38,-23,-59v0,-3,-4,-7,-2,-9v10,-1,39,4,31,-6v-12,-1,-23,2,-32,1v1,-19,-1,-33,-1,-54v5,0,12,2,11,-4v-3,-1,-9,1,-10,-1v4,-1,17,0,14,-5v0,0,-41,3,-48,-7v4,-15,-9,-41,14,-41v19,0,46,6,43,19v-6,-1,-18,-8,-23,-3v-1,18,35,1,35,20v0,2,-3,2,-10,2v0,2,4,3,12,4v2,10,2,43,-5,22v-10,-1,-6,5,-7,11v16,-3,13,8,16,20v2,7,-19,10,-2,14v0,24,7,40,19,49v29,0,13,24,17,45v-33,0,-33,47,-38,84xm84,-120v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm51,-52v0,5,6,4,11,4v0,-5,-6,-4,-11,-4","w":120},"~":{"d":"140,-135v17,5,27,-10,48,-20v4,31,-7,53,-35,50v0,3,-2,3,-5,3v0,-2,0,-4,-2,-3v0,3,-1,4,-4,4v-40,-11,-71,-31,-107,3v4,-14,-5,-30,4,-35r-2,-3v43,-26,43,-18,103,1xm148,-112v-2,-1,-5,2,-1,2xm148,-109v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm156,-109v-2,0,-4,0,-3,3v2,0,4,0,3,-3","w":210}}});
;
$(document).ready(function() {

});



;

