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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Your server has been successfully tested to support this feature.": "Der Server wurde erfolgreich getestet und unterstützt diese Funktionalität.", "Testing clean URLs...": "Lesbare URLs werden getestet…", "Only files with the following extensions are allowed: %files-allowed.": "Nur Dateien mit folgenden Erweiterungen sind zulässig: %files-allowed.", "Unspecified error": "Unbekannter Fehler", "An error occurred. \n@uri\n@text": "Ein Fehler ist aufgetreten. \n@uri\n@text", "An error occurred. \n@uri\n(no information available).": "Ein Fehler ist aufgetreten. \n@uri\n(keine Information verfügbar).", "An HTTP error @status occurred. \n@uri": "Ein HTTP-Fehler @status ist aufgetreten. \n@uri", "Drag to re-order": "Ziehen um die Reihenfolge zu ändern", "Changes made in this table will not be saved until the form is submitted.": "Änderungen in dieser Tabelle werden nicht gespeichert bis dieses Formular gespeichert wurde.", "Select all rows in this table": "Alle Zeilen dieser Tabelle auswählen", "Deselect all rows in this table": "Alle Zeilen dieser Tabelle abwählen", "Split summary at cursor": "Anrisstext an Cursorposition trennen", "Join summary": "Anrisstext zusammenfügen", "jQuery UI Tabs: Not enough arguments to add tab.": "jQuery UI-Reiter: Nicht genug Argumente, um einen Reiter hinzuzufügen.", "An error occurred at @path.": "Ein Fehler ist auf @path aufgetreten.", "Upload": "Upload", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Die Änderungen an diesen Blöcken werden nicht gespeichert bis der \x3cem\x3eBlöcke speichern\x3c/em\x3e Schaltknopf gedrückt wird.", "The selected file %filename cannot not be uploaded. Only files with the following extensions are allowed: %extensions.": "Die ausgewählte Datei %filename konnte nicht hochgeladen werden. Nur Dateien mit den folgenden Erweiterungen sind zulässig: %extensions.", "Automatic alias": "Automatischer Alias", "Next": "nächste Seite" } };;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

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

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

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

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

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


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

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

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

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

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

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

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

  },

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

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

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

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

    Lightbox.isPaused = !Lightbox.autoStart;

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

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


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

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

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

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

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

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

      // Handle grouped items.
      else {

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    var s = Drupal.settings.lightbox2;

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

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

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

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

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

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

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

    // All other types of content.
    else {

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

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

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

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


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

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

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

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

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

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

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

  preloadNeighborImages: function() {

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

  },

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


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

    var xScroll, yScroll;

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

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

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

  getPageSize : function() {

    var xScroll, yScroll;

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

    var windowWidth, windowHeight;

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


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


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


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

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

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

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


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

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

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

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

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

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

};

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

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

;
(function ($) {

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;
/**
 * --------------------------------------------------------------------
 * jQuery-Plugin "pngFix"
 * Version: 1.1, 11.09.2007
 * by Andreas Eberhard, andreas.eberhard@gmail.com
 *                      http://jquery.andreaseberhard.de/
 *
 * Copyright (c) 2007 Andreas Eberhard
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Changelog:
 *    11.09.2007 Version 1.1
 *    - removed noConflict
 *    - added png-support for input type=image
 *    - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
 *    31.05.2007 initial Version 1.0
 * --------------------------------------------------------------------
 * @example $(function(){$(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready
 *
 * jQuery(function(){jQuery(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready when using noConflict
 *
 * @example $(function(){$('div.examples').pngFix();});
 * @desc Fixes all PNG's within div with class examples
 *
 * @example $(function(){$('div.examples').pngFix( { blankgif:'ext.gif' } );});
 * @desc Fixes all PNG's within div with class examples, provides blank gif for input with png
 * --------------------------------------------------------------------
 */

(function($) {

jQuery.fn.pngFix = function(settings) {

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

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

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

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

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

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

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

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

		});

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

};

})(jQuery);
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
// $Id: views_slideshow.js,v 1.1.2.1.2.39 2010/07/01 03:29:08 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.35 2010/07/01 03:29:08 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.04
 */
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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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-1]-=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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;if(!D){return}for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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},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",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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)}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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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.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("span");s.className="cufon cufon-canvas";s.alt=w;n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("span");S.className="cufon-alt";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">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</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("span");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("span");q.className="cufon-vml-canvas";y.appendChild(q);if(C.printable){var Z=document.createElement("span");Z.className="cufon-alt";Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
Cufon.registerFont({"w":123,"face":{"font-family":"Capture it","font-weight":400,"font-variant":"small-caps","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-3 -307.374 354 72.7201","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+007D"},"glyphs":{" ":{"w":105},"\u00a0":{"w":105},"!":{"d":"0,-46v18,2,43,-4,57,2v-7,5,5,19,-1,30v0,-7,-4,-5,-8,-7v2,0,14,10,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v2,13,-8,7,-18,9v-4,-7,-13,4,-19,-4v2,7,-7,3,-11,4v1,-4,-2,-3,-5,-3v1,2,1,4,-2,3v-1,-11,-1,-26,0,-35r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4r0,-9xm20,-248v0,0,-5,0,-3,1xm30,-239v0,-5,-4,-2,-1,0r1,0xm41,-230v-6,0,-11,0,-13,3r12,6v0,-3,-2,-8,1,-9xm41,-221v1,0,4,2,4,0r-4,0xm7,-217v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm51,-149v-2,0,-3,9,1,8v2,-3,0,-5,-1,-8xm56,-124v0,-5,-3,-4,-4,0v0,2,3,0,4,0xm9,-123v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm45,-122v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm20,-118v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm2,-115v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm25,-113v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm56,-114v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm36,-93v-2,-8,-6,-15,-9,-6xm11,-102v-8,3,-7,4,0,7v2,-2,2,-5,0,-7xm19,-97v2,2,4,6,-2,5v-5,-1,-7,8,-2,8v10,3,4,-6,14,-7v-5,1,-7,-17,-10,-6xm56,-98v-2,1,-7,-1,-6,3v3,0,7,1,6,-3xm47,-90v-3,2,-12,5,-7,7v-1,-3,7,-3,7,-7xm1,-86v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm47,-80v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm28,-79v-3,3,-5,5,1,3xm39,-70v-1,-4,-2,-5,-6,-5v0,1,2,3,6,5xm31,-70v-14,0,-10,3,-4,7v0,-3,1,-5,4,-7xm41,-68v-1,0,-3,-1,-3,1r4,0xm9,-68v0,6,-10,3,-2,9v0,-4,3,-4,7,-4v-1,-2,-3,-4,-5,-5xm57,-58v-12,-2,-21,0,-39,0v1,-1,3,-1,0,-1v-4,2,-12,1,-18,1v-3,-18,5,-15,20,-14v-1,-4,-16,-1,-11,-9v-1,-7,-15,-12,-6,-22r-3,-4v2,-47,-4,-103,2,-146v17,2,41,-3,55,2v1,15,0,26,-10,16v5,5,3,10,1,12v3,-1,6,-6,9,-4r0,112v-13,-8,-10,11,-21,4v-1,1,-3,3,-1,4v9,-1,15,12,12,-4v13,0,0,8,10,12v1,9,-2,14,-6,18v4,1,5,-1,6,-3r0,26xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm18,-22v-1,0,-5,0,-2,1xm21,-13v0,1,4,2,4,0r-4,0xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":70},"\"":{"d":"56,-252v1,7,-19,7,-8,15v2,-2,9,-9,7,-2v-2,27,6,73,-2,91v0,-2,2,-5,-1,-5v-3,5,-2,7,1,10r-20,0v3,-8,10,-19,11,-25v-12,1,-8,5,-14,9v10,2,1,9,3,15v-11,0,-22,2,-32,0r-2,-56v7,-5,-10,-33,7,-36v-3,-4,-8,-6,-7,-15v6,2,8,13,16,6v-1,-1,-1,-3,0,-5v-4,1,-12,2,-12,-3v12,1,28,-2,38,1r-9,4v11,5,14,-5,24,-4xm54,-220v0,-2,-2,-3,-4,-3v1,1,1,4,4,3xm54,-216v1,-3,-3,-5,-4,-2v1,1,2,2,4,2xm52,-176v0,-12,-3,-6,-7,-1v8,1,-5,5,0,8v0,-3,3,-5,7,-7xm42,-218v2,0,4,-3,0,-2r0,2xm43,-236v-2,-3,-8,1,-9,3v3,1,7,6,9,4v-3,-2,-5,-5,0,-7xm39,-190v-5,-1,3,-5,-3,-4v0,3,0,5,3,4xm34,-219v0,-1,3,-4,1,-4v-3,0,-4,2,-1,4xm32,-172v3,-2,2,-5,-2,-4v0,2,1,3,2,4xm20,-237v4,7,17,-6,10,-5v0,4,-3,6,-10,5xm28,-175r-5,0r5,0xm26,-157v1,-4,-5,-1,-6,-1v2,2,4,4,6,1xm21,-221v2,-4,-1,-10,-6,-5v1,3,2,7,6,5xm22,-185v0,-3,-1,-5,-5,-4v-2,4,2,4,5,4xm19,-237v0,-2,-2,-7,-3,-5v1,2,0,6,3,5xm18,-176v0,-5,-7,0,-10,0v2,3,6,0,10,0xm5,-198v2,-1,3,-5,-1,-4xm7,-175v-1,-2,-2,-3,-5,-3v1,2,2,4,5,3xm124,-252v1,7,-19,7,-8,15v2,-1,5,-7,8,-4v-1,17,3,40,-3,52v5,6,6,40,-1,41v0,-2,2,-5,-1,-5v-2,5,-1,6,1,10r-19,0v2,-9,9,-20,11,-25v-12,1,-8,5,-14,9v5,2,8,17,-5,16r-25,-1r-1,-88v13,-5,-6,-12,2,-19v-1,6,8,10,13,6v-1,-1,-1,-3,0,-5v-4,1,-11,2,-12,-3v12,1,28,-2,38,1r-8,4v11,5,14,-5,24,-4xm121,-220v0,-2,-2,-2,-3,-3v1,1,0,4,3,3xm121,-216v1,-2,-2,-5,-3,-2v0,1,1,2,3,2xm117,-184v-3,8,0,7,-6,15v3,-1,11,-10,6,-15xm110,-218v2,0,4,-3,0,-2r0,2xm111,-236v-2,-3,-8,1,-9,3v3,1,7,6,9,4v-4,-2,-6,-5,0,-7xm104,-194v0,2,-1,5,2,4v-2,-1,2,-5,-2,-4xm102,-219v0,-1,3,-4,1,-4v-3,0,-4,2,-1,4xm100,-172v3,-2,2,-5,-2,-4v0,2,1,3,2,4xm88,-237v3,6,17,-7,10,-5v0,4,-3,5,-10,5xm95,-175v0,-2,-3,-1,-4,-1v0,2,3,1,4,1xm93,-157v1,-4,-4,-1,-5,-1v2,2,3,4,5,1xm89,-221v2,-4,-1,-11,-7,-5v2,3,2,8,7,5xm90,-185v1,-5,-6,-5,-7,-1xm87,-237v0,-3,-2,-8,-4,-5v1,2,0,6,4,5xm86,-176v0,-5,-7,0,-10,0v2,3,6,0,10,0xm73,-198v2,-1,3,-5,-1,-4xm75,-175v-2,-2,-2,-3,-6,-3v2,1,2,4,6,3","w":137},"#":{"d":"48,-68v0,0,-5,0,-3,1xm112,-84v0,-2,-8,-2,-8,1xm114,-96v0,-4,-4,-9,-7,-6v2,3,6,3,7,6xm115,-88v-1,-3,-5,-3,-2,0r2,0xm120,-107v1,3,10,3,6,-1xm125,-76v1,3,6,-1,3,-1v0,1,-1,1,-3,1xm114,-112v1,-4,-1,-2,-3,-1xm131,-78v5,1,6,-1,2,-2xm119,-107r-1,-3xm120,-98v-2,-1,-7,2,-2,2xm138,-105v0,0,1,5,1,1xm141,-89v-2,2,-2,4,0,5r0,-5xm141,-92v-1,1,-1,1,0,2r0,-2xm81,-104v0,1,1,3,1,1xm79,-90r0,-1r0,1xm79,-84v2,-1,2,-3,0,-5r0,5xm127,-114r-1,0r1,0xm94,-113r-1,-1xm152,-90v2,2,10,-3,3,-2v-1,1,-3,0,-3,2xm64,-94v2,-3,6,-6,0,-6r0,6xm62,-93r6,3v-1,-4,-1,-4,-6,-3xm53,-114v-3,2,-4,2,0,3r0,-3xm63,-113v0,0,2,0,2,-1v0,0,-2,0,-2,1xm69,-109v1,1,0,2,2,2xm128,-84v2,0,2,-1,1,-2xm134,-97v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm85,-97v0,2,3,4,1,1xm110,-87v-1,-4,3,-5,-2,-4v1,0,2,2,2,4xm167,-110v3,-1,2,-3,0,-4r0,4xm157,-113r-3,1xm151,-109v-4,0,-4,0,-2,2xm185,-97v-4,-2,-18,7,-20,-1v3,5,-3,9,-2,11v6,-9,16,-3,22,-10xm154,-99v1,2,0,7,2,5v2,-6,-4,-7,-4,-4xm155,-72v0,3,1,1,3,1v-1,-3,-1,-3,-3,-1xm177,-75v-2,1,-5,0,-4,3v2,-1,4,-2,4,-3xm176,-83v-1,-2,-13,4,-7,5v0,-2,3,-4,7,-5xm149,-97v-3,7,7,11,-5,11v-1,3,-3,5,0,7v6,-3,21,-7,7,-10v0,-4,4,-7,-2,-8xm151,-80v-3,-1,-1,2,-1,4v1,-1,1,-2,1,-4xm170,-114v-6,6,0,8,5,12v1,-6,-6,-7,-5,-12xm155,-104v0,-3,-4,-4,-3,0r3,0xm149,-112v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm60,-74v-2,3,-4,5,1,3xm80,-75v-2,1,-5,0,-4,3v2,-1,4,-2,4,-3xm79,-83v-2,-2,-6,5,-9,2v2,7,3,-1,9,-2xm69,-110v3,3,4,5,9,8v-1,-5,-6,-17,-7,-8r-2,0xm59,-104v0,-3,-4,-4,-3,0r3,0xm52,-111v0,0,-2,0,-2,1v1,1,2,2,2,-1xm139,-153v0,-3,-7,-3,-9,0v1,2,6,-1,9,0xm141,-165v0,-4,-5,-8,-8,-6v2,3,7,3,8,6xm142,-157v-1,-3,-5,-3,-2,0r2,0xm146,-176v1,3,10,3,6,-1xm151,-145v1,3,6,-1,3,-1v0,1,-1,1,-3,1xm140,-181v0,-3,-1,-3,-2,-1xm163,-147v-1,-3,-5,-2,-6,0r6,0xm145,-176r-1,-3xm146,-167v-2,-1,-7,2,-2,2xm164,-174v0,0,1,5,1,1xm167,-158v-2,1,-2,3,0,5r0,-5xm167,-161v-1,1,-1,1,0,2r0,-2xm108,-171v1,-2,2,-2,0,-3v-1,1,-1,2,0,3xm105,-160r1,0r-1,0xm105,-153v2,-1,2,-3,0,-5r0,5xm152,-183r1,0r-1,0xm120,-182r0,-1r0,1xm179,-158v7,-2,6,-5,-1,-4v2,2,-1,3,1,4xm90,-163v2,-3,6,-6,0,-6r0,6xm88,-162r6,3v-1,-4,-1,-4,-6,-3xm77,-181v-1,0,2,-2,2,-2xm91,-183v0,0,-2,0,-2,1v1,0,3,2,3,0xm94,-178r3,2xm155,-155v-1,1,-2,2,1,2xm161,-166v-2,-1,-2,1,-2,3v2,0,1,-2,2,-3xm111,-166v0,2,2,4,2,1xm136,-156v0,-3,4,-5,-1,-4v1,0,1,2,1,4xm194,-179v0,-2,2,-3,0,-4r0,4xm183,-182r-3,1xm178,-178v-4,0,-4,0,-2,2xm211,-166v-4,-2,-18,7,-20,-1v3,5,-3,9,-2,11v5,-7,15,-5,22,-10xm180,-169v-4,1,2,7,2,6v0,-2,1,-7,-2,-6xm172,-123v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm150,-97v1,1,2,2,4,2v0,-3,-2,-3,-4,-2xm158,-102v0,1,5,4,5,0r-5,0xm156,-111v-2,-1,-5,1,-2,2xm164,-131v2,-3,-2,-12,-3,-8v6,5,-7,9,3,8xm165,-113v0,0,-8,2,-3,2v0,-1,1,-2,3,-2xm209,-198v-2,0,-6,1,-2,1xm214,-201v0,2,-4,1,-3,3v2,0,4,0,3,-3xm196,-193v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm212,-214v-2,-1,-6,3,-2,2xm189,-199v-5,2,-10,5,-7,8v-2,-5,9,-1,7,-8xm219,-232v-1,5,-9,2,-2,9v0,-4,3,-5,7,-5v-1,-2,-3,-3,-5,-4xm197,-133v-1,1,-3,0,-3,2r4,0xm187,-134v-13,1,-10,2,-5,7v0,-3,2,-5,5,-7xm189,-139v0,1,2,3,6,5v-1,-2,-4,-7,-6,-5xm183,-143v-2,1,-3,4,1,3xm203,-144v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm202,-152v-2,-3,-5,6,-9,2v2,7,3,-1,9,-2xm184,-153v1,-5,-9,-4,-6,-10v0,0,2,0,2,-1v-4,-2,-5,-3,-6,4v3,1,4,5,-1,5v-5,-1,-7,7,-2,7v4,-3,4,4,6,2v0,-5,3,-9,7,-7xm204,-235v-2,-5,-5,-4,-9,-1v3,2,7,6,9,1xm197,-183v-7,4,-2,8,4,11v0,-5,-5,-7,-4,-11xm182,-173v0,-3,-4,-4,-3,0r3,0xm175,-181v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm209,-208v-4,3,-13,3,-9,6v5,-2,8,-4,9,-6xm178,-107v-3,1,2,6,1,2xm149,-80r0,0r0,0xm138,-19v-6,0,-11,0,-13,3r12,5v0,-3,0,-6,1,-8xm140,-49v0,-2,-4,-4,-3,-1xm143,-70v0,1,-3,3,-1,3v2,-1,2,-1,1,-3xm75,-123v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm62,-102v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm59,-111v-2,-1,-5,1,-2,2xm66,-139v1,2,-6,10,1,8v1,-3,1,-7,-1,-8xm68,-113v0,0,-8,3,-3,2v0,-1,1,-2,3,-2xm108,-197v2,1,6,-1,2,-1xm118,-202v-1,1,-7,5,-1,4xm99,-193v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm115,-214v-2,-1,-4,2,-2,2xm93,-199v-5,2,-8,4,-8,8v-1,-5,10,-1,8,-8xm128,-228v-4,-5,-7,-1,-11,-1v0,4,2,4,4,6v0,-4,3,-5,7,-5xm100,-133v-1,1,-3,0,-3,2r4,0xm90,-134v-14,0,-10,3,-4,7v0,-3,1,-5,4,-7xm92,-139v0,1,2,3,6,5v-2,-3,-2,-8,-6,-5xm87,-143v-3,2,-5,4,1,3xm106,-144v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm105,-152v-1,-1,-12,4,-6,5v0,-2,2,-4,6,-5xm107,-235v-2,-5,-5,-4,-9,-1v3,2,7,6,9,1xm97,-176v2,0,8,7,7,1v-5,-4,-3,-12,-9,-3v4,0,4,0,2,2xm85,-173v0,-3,-4,-4,-3,0r3,0xm79,-180v0,0,-2,0,-2,1v1,1,2,2,2,-1xm112,-208v-4,3,-11,3,-9,6v5,-2,8,-4,9,-6xm81,-107v-3,2,2,3,2,3xm42,-19v-6,0,-12,0,-14,3r13,5v-1,-3,-2,-7,1,-8xm43,-49v0,-5,-4,-2,-1,0r1,0xm52,-80v2,0,2,0,2,-2v-4,0,-4,0,-2,2xm120,-80v3,0,7,-5,1,-4xm91,-98r-1,0r1,0xm132,-98v-3,-4,-5,1,-1,1xm35,-97r0,0r0,0xm91,-84v0,0,-1,-2,-1,0r1,0xm146,-149v3,0,7,-5,1,-4xm116,-168v0,1,0,1,1,1xm158,-167v0,-3,-2,-1,-3,0v1,1,2,1,3,0xm61,-166r0,0r0,0xm118,-153v0,-3,-3,0,-1,0r1,0xm54,-96r0,-1r0,1xm54,-97v-6,3,-1,9,3,10v-2,-3,-5,-6,-3,-10xm57,-95v-2,0,-2,0,-1,1xm83,-156v2,-2,-5,-4,-3,-10v-4,3,-1,9,3,10xm57,-99v-5,7,-16,3,-22,1r26,-68v5,6,17,0,19,10v-6,-1,-13,7,-6,8v15,3,11,-16,5,-18v-2,6,-13,0,-18,-1r33,-86r54,0r-32,85v-1,-1,-2,-1,-2,1r2,0r-26,69v-1,-4,-4,1,0,0r-37,98r-54,0r36,-97v5,6,17,0,19,10v-6,-1,-13,6,-6,8v4,-2,4,1,6,3v0,-11,10,-7,4,-13v-3,0,-3,-3,-3,-5v3,0,3,-2,2,-5xm97,-90r0,0r0,0xm121,-94v5,5,-6,13,-5,19v-10,-2,-12,-1,-21,-5v1,7,11,8,20,7v-3,7,-17,1,-25,3v4,-7,3,-22,11,-13v-7,-16,3,-23,6,-35r24,0v-3,12,-7,22,-17,27xm193,-85v-2,3,6,6,0,11r-4,0xm195,-92v1,-3,2,-8,3,-3v-2,1,1,4,-3,3xm198,-101v2,-8,8,-21,7,-10v0,4,4,2,6,1v-2,14,7,11,8,25v-8,0,4,11,-6,15v-5,-1,-15,3,-16,-3v7,1,2,-10,9,-11v-2,0,-4,0,-3,-2v11,-1,-1,-9,3,-15v-3,-1,-6,-3,-8,0xm22,-73v-7,8,-29,1,-18,-12v-5,1,-4,-4,-4,-8v4,-3,8,-4,11,-9v-7,1,-2,-6,-2,-9v2,4,9,1,6,-2v-2,-1,-1,-4,1,-5v10,1,8,2,18,0r-10,26v-7,-2,4,-14,-10,-10v4,7,-7,13,3,17r-3,0v1,3,6,5,4,12r4,0xm219,-108v0,4,1,7,-4,6v0,-4,0,-6,4,-6xm189,-72v1,3,-10,2,-10,2v1,-5,8,-7,10,-2xm0,-102v-1,-5,1,-8,5,-4v1,4,-1,5,-5,4xm123,-159r0,0r0,0xm158,-187v-5,9,-5,23,-17,25r0,2v3,-1,5,-4,8,-2v-3,7,-6,24,-16,15v-5,2,-7,-1,-12,-2v1,7,11,8,21,7v-3,7,-18,1,-26,3v4,-7,3,-22,11,-13v-8,-14,4,-23,6,-35r25,0xm220,-155v1,4,-4,4,2,4v0,5,0,9,-6,8xm222,-161v1,-3,2,-8,3,-3v-1,2,0,3,-3,3xm225,-171v0,-7,9,-21,5,-10v1,3,4,5,7,2v0,3,5,9,-2,8v2,6,13,5,11,17v-1,1,-5,25,-22,12v7,1,2,-10,8,-11v-2,0,-4,0,-3,-2v11,-2,-1,-9,3,-16v-3,-1,-5,-1,-7,0xm49,-142v-7,8,-28,2,-19,-13v-8,-5,4,-11,7,-16v-7,1,-2,-6,-2,-9v2,4,8,1,6,-2v-2,-1,-1,-4,1,-5v10,1,9,2,18,0r-9,26v-9,-2,5,-14,-11,-10v5,6,-9,14,3,15v-5,4,3,5,1,14r5,0xm246,-177v0,4,1,7,-4,6v1,-3,0,-7,4,-6xm209,-144v4,0,9,3,5,5v-7,1,-11,-1,-5,-5xm27,-172v-1,-4,1,-7,4,-3v1,3,-1,3,-4,3xm150,0r-55,0r95,-253r55,0xm55,-95v-1,0,-1,-1,-1,-1","w":252},"$":{"d":"185,-111v11,-1,20,14,15,19v-9,-1,-10,4,-19,3v5,7,14,-1,17,4v0,-4,4,-8,6,-5v0,5,2,9,-6,8v0,7,-10,7,-11,11v6,-4,16,2,17,-7v-3,10,2,22,-6,24r2,0v2,13,-13,10,-4,12v-2,3,-4,12,-9,10v0,4,-3,9,-6,7v3,-8,-4,-9,-8,-13v0,0,2,0,2,-1v-1,-2,-3,-2,-6,-1v-3,-9,9,-13,-4,-14v1,1,4,7,1,9r-3,-1v4,5,-2,10,-6,7v1,-7,8,-7,0,-10v-13,5,-18,-3,-6,-7v-9,-1,-1,-12,-2,-20v4,2,11,-4,6,-6v-6,4,-12,-3,-11,-7v11,2,20,-6,6,-8v-8,6,-37,0,-22,-7v-11,-6,-21,-3,-26,-14v-4,6,-8,7,-16,11v-53,-10,-78,-33,-78,-74v0,-43,38,-72,93,-70v-5,23,15,49,-21,45v1,-4,8,-3,11,-5v-6,1,-18,-2,-14,6v-35,25,-3,38,30,52r3,-3v40,9,59,13,78,33v-4,1,-4,-6,-9,-5v7,6,8,10,6,17xm147,-171v-3,-30,-16,-28,-38,-39v2,-12,-2,-30,1,-42v48,5,87,19,90,76xm134,-245v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm149,-239r3,-3xm51,-235v-4,1,-4,4,0,2r0,-2xm25,-218v0,-4,-4,-2,-1,0r1,0xm177,-220v-4,0,-8,0,-11,4v6,-2,17,3,11,-4xm48,-218v-2,0,-5,-1,-4,2r6,1xm163,-211v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm192,-199v-1,3,1,7,2,5xm58,-163v-3,-2,-8,-6,-10,-2xm67,-160v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm106,-148v1,-3,-1,-6,-2,-3v4,8,-8,8,-7,16v6,-4,9,-9,9,-13xm28,-150v-4,1,-2,2,0,4v0,-1,2,-3,0,-4xm39,-148v-4,0,-2,4,0,5r0,-5xm50,-138r-4,0r4,0xm73,-138v0,-2,-2,-2,-3,-1v0,2,2,1,3,1xm120,-134v1,0,5,0,2,-1xm31,-134v1,0,4,2,4,0r-4,0xm167,-133v6,9,-12,0,-5,14v-4,5,-8,0,-15,6v8,1,9,0,16,-3v1,5,-6,5,0,10v4,0,0,-12,7,-8v4,-8,-11,-5,-4,-11v6,1,8,-5,1,-8xm95,-131r0,4r0,-4xm130,-128v-2,0,-2,2,-2,4v3,1,2,-2,2,-4xm96,-123v-1,-6,-7,6,-13,0v2,7,10,5,13,0xm174,-122v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm193,-116v-5,1,-8,-4,-3,-5v2,1,3,3,3,5xm124,-118v-1,-1,-1,-1,-2,0r2,0xm182,-115v-1,-2,-6,-2,-5,1xm101,-111v-1,-5,4,-3,6,-1v0,1,1,3,-1,3xm176,-112v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm179,-109v1,1,0,2,2,2xm89,-107v9,1,11,-5,17,0r0,5v-11,-2,-17,-4,-17,-5xm146,-105v-2,-3,-3,2,-3,2v2,0,3,-1,3,-2xm170,-104v-3,-2,-9,3,-7,6xm188,-100v-1,-2,-7,-2,-6,-1xm175,-97v-2,0,-2,0,-2,2v4,0,4,0,2,-2xm180,-87v-7,2,-16,1,-21,5r8,0v0,3,1,5,3,5v-3,-4,1,-6,6,-5v2,1,4,3,3,-1v-1,-2,0,-3,1,-4xm74,-3v-15,0,-24,-4,-37,-11v1,-6,4,-4,4,-9v-21,10,-40,-23,-38,-48v-2,-1,-6,-13,0,-12v8,3,20,-3,27,2v2,-6,20,-4,24,-2v-2,5,6,20,11,26v-1,-1,-2,-2,-2,1v10,0,21,10,26,9v-1,5,1,0,6,1v7,-1,9,10,3,11v-1,0,-3,-2,-3,0v7,3,2,9,3,16v-1,-1,-2,-1,-3,0v-2,5,14,8,2,14v2,2,4,3,1,5v-7,2,-4,-7,-13,-8v1,5,-3,5,-7,5v-3,-5,-6,-10,-6,-5v2,0,2,2,2,5xm37,-82v-3,0,-3,3,-1,4xm191,-82v-2,-1,-5,1,-2,2xm185,-78v-3,0,-5,0,-3,3xm5,-78v-3,-1,-2,4,-2,6v4,0,4,-3,2,-6xm23,-74v0,-3,-4,-4,-3,0r3,0xm51,-70v0,-4,-5,-11,-6,-3v3,-1,3,3,6,3xm14,-72v1,0,4,1,4,-1v-2,0,-3,0,-4,1xm174,-73v-3,2,-8,6,0,5r0,-5xm37,-72v-4,1,-5,4,0,4r0,-4xm157,-72r1,2xm27,-70v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm149,-66v1,2,8,7,11,5v-4,-2,-6,-5,-11,-5xm175,-66v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm14,-65v-1,1,-3,2,0,2r0,-2xm184,-65v-4,-1,-3,3,-1,4v2,0,1,-3,1,-4xm172,-58v0,-4,-6,-6,-5,-4v0,1,2,2,5,4xm187,-59v-2,-2,-5,1,-2,2xm166,-54v1,-3,-5,-6,-4,-2xm46,-51v1,-3,-3,-7,-3,-3v1,1,0,4,3,3xm176,-54v1,0,3,2,3,0r-3,0xm17,-53v-1,1,-4,4,0,3r0,-3xm181,-53r-6,12v4,-1,15,-8,6,-10r0,-2xm31,-49r1,5xm55,-49v-1,2,-4,1,-4,4xm116,-12v9,-10,-7,-19,-7,-31v6,-3,8,-2,17,-5v2,6,-3,5,-8,5v1,7,2,4,10,4v-1,-1,-2,-2,1,-2v3,1,3,3,5,6v3,-9,-8,-11,-2,-15v23,0,20,27,37,17v3,9,-11,16,-2,19v1,-9,6,-19,12,-7v-18,13,-20,13,-37,13v0,-1,2,-3,0,-3v1,9,-9,11,-33,10v0,-7,-2,-14,7,-11xm141,-45v-2,0,-2,3,-1,4xm60,-43v2,1,4,6,6,5v-1,-3,-1,-6,-6,-5xm95,-36v0,-2,-4,-3,-3,0r3,0xm145,-36v-2,0,-4,0,-3,2r4,0xm184,-36v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm175,-35v1,3,-1,5,-4,4v-1,-3,1,-5,4,-4xm57,-31v2,1,4,3,3,-1v-2,-1,-7,1,-3,1xm109,-28v-1,-3,1,-8,3,-3v-1,1,0,4,-3,3xm38,-31v-1,1,-2,0,-2,2r3,0xm82,-30v-2,3,1,3,4,2v0,-2,-3,-1,-4,-2xm72,-29v-2,5,8,6,4,2v-1,2,-4,1,-4,-2xm109,-20v-2,-6,3,-7,7,-5v2,6,-3,8,-7,5xm158,-25v-3,0,-7,4,-1,3xm148,-25v-3,-1,-2,3,-2,5v7,-1,5,-1,2,-5xm56,-24v1,1,0,2,2,2xm130,-22v-1,2,0,4,3,3v0,-2,-2,-2,-3,-3xm66,-15v-2,-2,-6,-7,-5,0v1,-1,3,-1,5,0xm152,-12v4,1,9,-2,3,-3xm49,-14v6,-1,3,6,7,6v3,-5,-4,-5,-7,-6xm78,-14v-1,2,2,7,2,2xm119,-9v-1,5,2,3,4,2v0,-1,-1,-2,-4,-2xm114,-3r6,1v0,-3,-4,-1,-6,-1xm78,-3v0,2,-4,2,-4,0r4,0xm81,-1v0,-2,2,-1,3,-1v1,3,-2,2,-3,1xm87,-230v-3,1,2,6,1,2xm120,-150v-2,0,-3,10,1,9xm123,-126v-2,0,-1,4,-2,6v2,0,2,-3,2,-6xm90,-120v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm116,-119v-2,0,-9,4,-7,6v4,-2,6,-4,7,-6xm97,-115v-2,0,-1,3,0,4r0,-4xm84,-111v2,1,2,4,6,4v0,-2,-2,-3,-6,-4xm101,-109v-2,0,-1,3,-1,4v0,0,2,0,2,-1xm123,-110v4,0,1,7,2,10v-4,1,-1,-6,-2,-10xm118,-50v-4,2,-8,6,-5,8v-1,-5,7,-2,5,-8xm123,-44v0,0,-5,5,-1,4xm99,-33v-1,1,-4,4,0,3r0,-3xm95,-30v-2,0,-4,3,-1,2xm109,-306v-2,0,-2,2,-3,3v1,-1,4,0,3,-3xm114,-306v-2,0,-6,2,-3,3v1,-1,4,0,3,-3xm91,13v6,3,9,2,15,4v-4,1,-9,-11,-15,-4xm111,-296v0,-2,-3,-3,-2,0r2,0xm92,-297v0,7,9,8,9,0v-5,4,-4,2,-9,0xm80,24v2,0,6,1,5,-2v-2,2,-6,-2,-5,2xm110,-290v-1,0,-4,-2,-4,0v0,3,3,2,4,0xm103,27v-2,-2,-7,-1,-4,2v2,0,3,-1,4,-2xm94,-278v4,-8,-14,-13,-2,-6v0,2,-1,7,2,6xm100,31v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm118,33v-3,-1,-1,2,-1,4v2,-1,4,-2,1,-4xm103,-281v4,4,-8,9,5,5r1,1v-1,-3,0,-4,-4,-3v0,-2,0,-4,-2,-3xm90,36v-4,-2,-6,4,-2,5xm92,-277v-5,0,-6,4,0,2r0,-2xm98,39v-4,1,0,5,1,8v3,-2,0,-5,-1,-8xm109,18v3,18,10,5,23,10v0,9,2,18,0,26r-54,1v2,-14,-4,-36,2,-46v13,3,40,-4,48,2v-2,0,-5,-1,-5,1v5,2,6,1,10,-1r0,17v-8,-4,-17,-6,-24,-10xm128,-267v1,1,6,8,0,4v-9,2,-30,7,-35,-3v-3,1,-10,9,-14,3v4,1,12,-8,5,-11v-1,1,-3,1,-4,0v1,4,2,10,-3,10v1,-8,-2,-43,4,-24v4,-9,-4,-12,-3,-19v6,5,17,14,10,1v8,-3,29,0,43,-1r0,41xm100,48v-3,0,-3,3,-4,4v2,0,5,0,4,-4","w":213},"%":{"d":"99,8r-55,0r96,-261r54,0xm94,-63v-1,-2,-5,1,-3,1xm89,-43v0,-5,-4,-2,-1,0r1,0xm74,-9r13,6v-1,-4,-1,-7,1,-9v-6,-1,-10,1,-14,3xm100,-75v0,-4,-6,-2,-2,0r2,0xm127,-102v-1,1,1,4,2,2v0,-2,-1,-1,-2,-2xm158,-207v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm124,-179v-2,0,0,2,0,3r0,-3xm131,-171v0,-3,-4,-4,-3,0r3,0xm146,-181v-8,4,-2,9,4,12v1,-6,-5,-7,-4,-12xm153,-235v-2,-5,-5,-4,-9,-1v3,2,7,6,9,1xm129,-161v-3,-4,-6,-2,-5,3v2,2,4,6,-2,5v-5,-1,-7,8,-2,8v4,-2,4,1,6,3v-4,-11,15,-9,2,-13v0,0,-3,-7,1,-6xm151,-151v-4,1,-4,7,-9,4v2,7,3,-1,9,-2r0,-2xm152,-141v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm133,-140v-3,2,-5,6,0,3r0,-3xm144,-131v-1,-4,-2,-5,-6,-5v0,1,2,3,6,5xm136,-131v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm146,-129v-1,1,-3,0,-3,2r4,0xm174,-228v-4,-5,-6,-1,-11,-1v-1,4,3,3,3,6v0,-4,3,-5,8,-5xm139,-198v-5,2,-11,5,-8,8v-1,-5,10,-1,8,-8xm161,-213v-2,-1,-4,2,-2,2xm145,-192v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm164,-201v-1,1,-7,5,-1,4xm158,-197v-3,-1,-6,3,-1,2xm114,-109v0,0,-8,2,-3,2v0,-1,1,-2,3,-2xm113,-128v3,-3,-2,-11,-3,-8v6,3,-5,10,3,8xm105,-107v-2,-1,-5,1,-2,2xm108,-98v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm103,-94v-2,1,-5,2,-2,4v3,0,3,-2,2,-4xm121,-119v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm80,-135v-3,8,-14,11,-31,12r0,-24v23,-6,11,-41,14,-66v-2,-9,-7,-14,-14,-15r0,-25v48,-1,43,42,43,88v0,13,-6,28,-12,30xm81,-244v2,-1,6,-1,3,1xm67,-224v-3,-1,-1,2,-1,3r1,0v-2,0,0,-2,0,-3xm76,-220v-2,0,-2,0,-1,1xm80,-165v-1,0,-1,0,-1,1v1,0,3,2,3,0xm43,-228v-20,3,-11,40,-13,62v0,9,4,16,13,19r0,24v-52,-1,-42,-42,-43,-89v0,-24,15,-42,43,-41r0,25xm9,-245v1,0,3,1,1,1v-1,-4,-2,5,-3,-1v1,0,2,1,2,0xm18,-204v-6,-1,-1,2,-3,4v3,1,2,-2,3,-4xm18,-220v-1,0,-1,0,-1,1xm14,-164v-1,0,-3,2,-3,0r3,0xm199,-130v47,-2,46,43,43,88v-2,28,-12,39,-43,42r0,-25v22,-6,10,-41,13,-66v-2,-9,-6,-13,-13,-14r0,-25xm231,-121v0,-2,3,-2,3,0v-2,-1,-1,-1,-3,0xm215,-98v2,0,1,-2,1,-3v-2,0,-1,2,-1,3xm224,-97r1,0r-1,0xm230,-42v0,0,-2,0,-2,1v2,-1,4,1,3,0xm192,0v-50,-3,-43,-41,-43,-89v0,-26,15,-41,43,-41r0,24v-20,3,-11,41,-13,63v0,9,4,15,13,18r0,25xm157,-121v0,-4,5,0,2,0v0,-2,0,0,-1,0r-1,0xm168,-82v-7,-2,-4,5,-2,5xm168,-98v0,0,-2,0,-2,1xm163,-41v-1,0,-3,2,-3,0r3,0","w":253},"&":{"d":"88,-252v-2,9,1,9,-1,20v-2,0,-6,-2,-7,0v13,-1,7,17,8,28v-10,-2,-18,12,-23,9r1,-1v-8,13,-2,43,22,39r0,4v-3,-3,-6,3,-6,6v2,-1,1,-3,6,-4r0,42v-12,0,-14,6,-20,4v1,7,-8,3,-9,9r4,-1v-11,14,9,40,-13,43v1,8,11,-3,4,14v10,-1,15,-4,14,-14v6,3,15,4,20,7r0,42v-6,2,-3,-4,-5,-6v-1,12,-10,10,-21,9v-1,-5,3,-9,6,-15v-1,2,-4,2,-7,2v1,2,0,4,0,6v-3,-2,-6,7,-8,5v-21,-11,-18,-4,-36,-23v5,-7,13,-5,8,-11v-4,0,-8,0,-7,-5v9,0,8,-7,1,-7v1,3,2,4,-3,5v-6,0,-15,-2,-10,-8v-3,0,-6,-7,-6,-21v0,-21,14,-50,25,-49v0,-10,25,-12,25,-19v-9,0,-12,7,-20,0v4,-5,-3,-8,0,-15v-8,2,-3,-3,-4,-5v-5,3,-5,-2,-5,-7v4,-8,7,-10,7,-16v-8,2,-6,14,-16,11r-1,5v-2,0,-3,-5,-4,-16v-1,-37,29,-71,81,-67xm74,-235v-1,-4,-4,-4,-6,-2v3,0,2,3,6,2xm59,-230v-3,-1,-4,3,-2,4xm68,-218v0,-4,-5,-2,-8,-3v-1,4,5,1,8,3xm51,-214v0,1,-4,5,0,4r0,-4xm65,-211v-10,-1,-8,6,-3,8xm87,-210v0,0,-4,2,-2,2xm40,-207v-2,-3,-8,2,-8,6v3,2,5,-8,8,-6xm18,-207v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm60,-201v-1,-2,-1,0,-3,0v0,1,-1,3,1,3v1,0,1,-1,2,-3xm32,-190r11,2v-1,-4,-4,-8,0,-10v-4,0,-8,3,-11,8xm28,-198v-1,1,-2,0,-2,2xm57,-189v3,-3,-1,-11,-6,-7v1,3,0,8,6,7xm29,-190v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm17,-189v-1,3,2,6,2,1xm61,-176v1,-2,-3,-4,-3,-2xm46,-178v1,4,5,6,4,0r-4,0xm36,-176v1,4,3,7,4,2xm18,-170v1,1,4,4,0,3r0,-3xm11,-167v6,-4,8,5,4,6v-2,-1,-4,-3,-4,-6xm71,-160v-3,-1,-4,4,-2,4v1,-1,2,-2,2,-4xm18,-161v-1,2,7,7,3,10v-2,-3,-9,-7,-3,-10xm57,-155v-3,-8,-27,6,-14,0v4,-1,10,5,14,0xm62,-147v-2,0,-4,1,-2,3v2,1,2,-1,2,-3xm85,-140v-3,0,-5,1,-2,3v3,1,3,-1,2,-3xm55,-133r-3,-2xm62,-132v0,2,-4,5,-2,6v3,1,5,-5,2,-6xm83,-126v-3,0,-8,3,-5,4v2,-3,6,0,5,-4xm22,-67v-7,8,19,0,11,11v-2,-2,-5,2,-8,3v7,-2,5,1,7,7v11,-2,4,-7,13,-8v-5,-2,4,-9,-1,-7v-17,0,6,-21,-16,-20v4,-9,-14,-8,-5,-14v1,-4,-11,-12,-1,-14v1,-2,13,-6,12,3v9,-3,10,-14,-1,-20v-9,4,-8,2,1,4v3,17,-26,2,-20,15r-4,6r1,-1v9,3,-5,12,6,14v4,2,0,14,6,13v-2,-4,0,-6,5,-5v7,5,2,18,-6,13xm59,-110v0,1,5,4,5,0r-5,0xm59,-108v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm23,-106v-3,1,-3,1,0,2r0,-2xm41,-94v-10,-1,0,2,-4,6r6,0xm9,-87v-3,0,-3,1,-1,2xm7,-69v-1,-3,-2,2,-2,2xm17,-54v2,-7,-4,-16,-3,-8v-1,6,-5,7,3,8xm7,-60v-1,-2,-5,-4,-4,1v2,0,3,0,4,-1xm64,-60v6,1,4,7,0,12v-12,0,1,-10,0,-12xm31,-39v0,-4,-2,-6,-5,-3v0,1,2,2,5,3xm9,-38v1,-4,10,-4,8,2v-2,4,-6,1,-8,-2xm86,-36v-4,-1,-5,5,-3,7v0,-3,6,-3,3,-7xm39,-35v0,-2,-2,0,-3,0v0,0,0,2,1,2xm80,-15v-3,0,-5,0,-4,3v3,0,5,0,4,-3xm149,-57v-1,4,3,3,3,1v0,-2,-2,-1,-3,-1xm150,-66v-1,-1,-3,-2,-1,-7v5,-1,5,-1,5,-4v-7,6,-6,-15,-9,-5v-6,-1,-8,2,-5,7v12,-3,-2,12,10,9xm150,-91v1,3,5,2,3,0r-3,0xm157,-97v-5,-5,-5,-9,-10,-2v0,1,3,1,10,2xm171,-61v-5,-1,-1,1,-1,1xm131,-91v2,0,5,-6,3,-9v-1,0,-4,-1,-4,1v6,0,2,5,1,8xm139,-109v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm161,-127v0,2,3,4,2,1v-1,-1,-1,-3,-2,-1xm146,-35r0,-1r0,1xm111,-237v-1,2,1,2,3,2v0,-1,-1,-2,-3,-2xm129,-226v-1,-7,-4,-3,-1,0r1,0xm124,-221v-4,0,-7,-1,-7,3v2,-1,8,1,7,-3xm136,-210v0,-4,-4,-6,-3,0r3,0xm129,-207v0,-4,-9,-5,-9,-4v2,8,1,9,9,4xm100,-211v-3,1,-3,1,-1,3v3,1,1,-2,1,-3xm146,-208v2,2,5,10,7,6v-1,-4,-4,-5,-7,-6xm171,-207v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm125,-202v-2,2,1,5,3,4v1,-3,-2,-3,-3,-4xm142,-198v5,2,-3,8,0,10r11,-2v-3,-5,-7,-8,-11,-8xm156,-198v1,0,2,3,2,1xm128,-197v0,3,-3,10,3,8v2,-4,3,-8,-3,-8xm157,-190v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm167,-189v-2,0,-2,2,-2,4v3,1,2,-2,2,-4xm127,-178v-1,-2,-5,-1,-4,2xm139,-178v-4,-1,-7,2,-3,4v1,0,2,-2,3,-4xm148,-176v-3,1,-5,5,-1,5xm115,-156v2,-1,-2,-7,-1,-2xm133,-158v-4,0,-6,3,-3,5v7,1,9,-3,16,0v0,-2,-5,-3,-13,-5xm126,-146v-2,-2,-7,1,-2,2xm104,-139v-4,-3,-9,3,-2,2xm130,-133v0,-1,3,-2,1,-2xm122,-132v-2,2,0,7,3,6xm107,-122v0,0,-6,-6,-5,-2xm125,-110v-2,-1,-7,2,-2,2xm128,-108v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm102,-29v4,-5,-5,-11,-5,-3v3,0,5,1,5,3xm108,-15v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm172,-21v2,-1,2,-3,-1,-3xm167,-41v1,0,4,-1,1,-1xm177,-9v2,1,5,-1,2,-2xm116,-237r-2,-2v0,1,0,2,2,2xm168,-108v1,0,3,1,3,-1v-1,0,-3,-1,-3,1xm186,-132v3,-1,5,-2,2,-5v-3,0,-3,2,-2,5xm182,-129v-2,0,-5,-2,-5,0r5,0xm184,-120v1,0,5,0,2,-1xm175,-116v1,-1,8,-4,3,-4v1,2,-4,1,-3,4xm164,-167v0,-2,3,-4,2,0r-2,0xm168,-164v-1,-4,1,-5,5,-3v1,5,-5,8,-5,3xm163,-151v1,-7,3,-12,7,-7xm121,-48v-5,-5,-7,-10,0,-12v-1,2,12,11,0,12xm181,-99v-1,0,-1,0,-1,1v1,0,1,0,1,-1xm153,-130r3,-11r55,0r-25,67r27,74r-54,0r-5,-14v-9,0,-18,17,-28,4v-2,1,-3,0,-4,-2v3,-4,-5,-2,-6,-5v3,6,7,10,6,15v-11,2,-17,2,-21,-9v0,4,1,7,-4,6r0,-42v6,-2,22,-13,20,1v4,0,4,8,13,6v-3,-4,-1,-19,2,-9v8,-9,-20,-8,-6,-23v1,-11,0,-17,-5,-25v2,1,6,2,5,-2v-15,-1,-7,-9,-29,-10r0,-42v5,1,4,3,6,4v0,-6,-6,-5,-6,-10v22,2,29,-24,22,-39v1,1,1,3,-1,3v-5,-7,-12,-10,-21,-11v2,-10,-6,-30,8,-28v-1,-3,-8,2,-8,-1v0,-9,1,-10,0,-19v49,0,76,19,81,63v-6,0,0,0,0,4v-1,13,-5,21,-6,11v-11,5,-4,-10,-13,-7v-1,-2,0,-5,-3,-4v0,10,9,11,7,24r-6,-1v3,3,6,6,-2,5v4,12,-6,25,-13,15v-3,0,-8,-2,-7,3v3,-1,11,6,18,9xm163,-85v0,1,0,1,1,1v0,-1,0,-1,-1,-1xm163,-74v2,-1,1,-5,2,-7v-2,0,-5,5,-2,7xm157,-86v2,-1,3,-2,-1,-2xm162,-97v1,0,1,-1,1,-1xm143,-112v6,3,5,-9,8,-13v-7,5,-6,7,-8,13xm196,-28v1,-3,-2,-2,-4,-2v-1,3,1,3,4,2xm180,-34v-2,2,-6,3,-6,-2v1,-5,-7,-7,-7,-2v-3,8,5,5,6,14v-1,-4,18,-7,7,-10xm162,-25v-3,-3,-5,-5,-3,1xm153,-22v-1,-13,-4,-11,-7,-4v3,0,5,1,7,4xm190,-9v-1,-1,-1,-3,-1,0r1,0xm150,-45v5,3,13,-4,5,-1v-5,1,-5,-6,-5,1xm141,-37v0,-2,0,-2,-2,-2v0,2,0,2,2,2","w":220},"'":{"d":"0,-250v5,3,11,13,15,5v-2,-1,0,-3,0,-4v-4,1,-11,2,-12,-3v12,1,28,-2,38,1r-8,4v11,3,14,-5,24,-4v2,7,-19,7,-8,14v2,-1,5,-6,8,-3v-1,17,3,40,-3,52v6,3,6,40,-1,41v0,-2,2,-6,-1,-6v-1,4,-3,8,1,10r-19,0v2,-9,10,-19,11,-24v-11,2,-9,4,-14,9v10,1,1,9,3,14v-11,0,-23,2,-33,0r-1,-87v11,-6,-2,-8,0,-19xm54,-220v0,-2,-2,-1,-3,-2v0,1,1,2,3,2xm54,-215v0,-2,-2,-6,-3,-3v1,1,0,4,3,3xm52,-176v0,-10,-2,-5,-6,-1v8,1,-5,6,0,9v0,-3,2,-6,6,-8xm43,-218v2,0,4,-3,0,-2r0,2xm44,-237v-10,0,-9,9,0,9v-4,-4,-4,-4,0,-9xm37,-194v0,2,-1,6,2,5v-2,-2,2,-6,-2,-5xm35,-219v0,-1,3,-3,1,-3v-3,1,-3,1,-1,3xm33,-171v3,-2,2,-7,-2,-4v0,2,1,3,2,4xm21,-237v3,8,17,-6,10,-4v0,3,-4,4,-10,4xm28,-174v0,-2,-3,-1,-4,-1v0,2,3,1,4,1xm26,-156v1,-4,-4,-1,-5,-1v2,2,3,4,5,1xm18,-220v8,-4,4,-3,1,-9v-6,2,0,6,-1,9xm23,-184v1,-4,-5,-6,-6,-2xm20,-237v-1,-1,-2,-7,-3,-4v1,2,0,5,3,4xm19,-176v-1,-4,-7,0,-10,1v2,3,6,0,10,-1xm6,-197v2,-1,3,-5,-1,-4xm8,-174v-1,-3,-2,-4,-6,-4v2,2,2,5,6,4","w":69},"(":{"d":"88,-299v4,-1,5,2,6,4xm25,24v-16,-12,-24,-34,-24,-59v0,-79,-12,-176,15,-231v16,-17,59,-35,99,-25v-1,14,3,34,-2,45v-31,-3,-49,1,-55,30r0,179v0,18,9,30,27,36v-1,2,-2,5,2,4v5,-5,21,-5,28,-1v-1,15,3,35,-2,46v-39,-1,-81,0,-86,-26v-2,0,-2,0,-2,2xm15,-274v-1,-8,9,-1,4,-1v0,0,0,-2,-1,-2v0,3,-1,3,-3,3xm97,-252v1,1,2,1,3,0r-3,0xm99,-245v1,1,3,2,0,2r0,-2xm54,-236v-7,-1,0,3,-3,5v3,1,2,-3,3,-5xm36,-229v-2,0,-4,0,-2,2xm27,-33v0,-4,-5,-1,-6,0v0,0,0,2,1,2v-1,-3,3,-2,5,-2xm97,11v4,-2,6,-7,1,-6v0,2,-3,5,-1,6xm113,11v0,-6,-5,-5,-7,-2v6,4,-5,8,-3,10v7,-1,6,-7,10,-8xm92,10v-4,-1,-7,5,-2,5v1,-2,2,-2,2,-5xm98,21v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm98,24r0,1r0,-1xm96,30v-1,-3,2,-4,2,-2"},")":{"d":"21,-295v0,-3,2,-4,6,-4xm1,-291v32,-7,82,2,97,26v0,0,1,-2,1,0v5,15,16,34,16,52r0,178v0,22,-6,38,-18,51v2,4,-3,6,-7,8v0,0,0,-2,-1,-2v-1,2,-1,4,0,6v-10,14,-55,25,-88,18v1,-15,-2,-33,1,-46v11,-2,23,2,29,2r-1,-3v18,-6,27,-18,27,-36r0,-179v-4,-24,-19,-28,-38,-31r1,1v-1,-5,-7,5,-9,-1v1,-1,2,-2,-1,-2v-1,2,-8,5,-9,1r0,-43xm93,-275v1,-3,7,-5,7,1v-3,1,-2,-2,-4,-3v1,2,-1,2,-3,2xm18,-252v-3,0,-1,1,-1,1xm14,-243v1,-1,2,-3,2,0r-2,0xm65,-236v-4,-1,-2,3,-2,5v0,-3,1,-3,2,-5xm82,-229v-2,0,-2,1,-1,2xm91,-35v-2,0,-4,0,-3,2v4,-2,6,4,6,0xm14,5v1,1,4,9,6,4v-2,0,-2,-5,-6,-4xm4,6v-5,4,5,15,9,11v-10,0,-1,-11,-9,-11xm27,10v-5,-1,-5,2,-2,5v3,0,3,-2,2,-5xm19,21v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm17,24r0,1r0,-1xm17,27v5,0,3,4,0,1r0,-1"},"*":{"d":"53,-227r-13,-50r30,0r-13,50r44,-28r9,29r-50,3r38,34r-25,17r-18,-48r-17,47r-25,-17r38,-33r-51,-3r10,-29xm54,-226v2,1,3,-1,1,-1xm36,-228v0,0,-2,-3,-2,-1xm52,-225v0,-1,-6,-2,-5,1v3,1,3,1,5,-1xm41,-230v1,-1,-2,-5,-1,-1xm47,-226v-1,0,-2,-2,-2,0r2,0xm43,-228v-1,0,-4,-2,-4,0v3,7,6,-4,4,0xm40,-224v0,-3,-1,-1,-3,-1v0,2,3,-2,3,1xm58,-228v0,-1,2,-4,0,-4r0,4xm59,-238v1,0,1,-1,1,-2v-1,0,-1,1,-1,2xm30,-179v1,0,1,-1,1,-2v-1,0,-1,1,-1,2xm50,-242v2,-1,5,3,5,1xm35,-181v1,0,1,0,1,-1v-1,0,-1,0,-1,1xm27,-182v3,0,6,-2,2,-2xm37,-183v1,0,1,-1,1,-2v-1,0,-1,1,-1,2xm61,-248v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm43,-192v-3,2,-4,3,-2,5v0,-2,3,-2,2,-5xm28,-190v0,2,4,2,5,0v-1,-2,-3,0,-5,0xm58,-252v0,0,2,0,2,-1v0,0,-2,0,-2,1xm52,-258v1,1,4,4,4,2xm29,-197v-3,-2,-2,-2,-2,2v1,0,2,-1,2,-2xm55,-260r0,-1r0,1xm38,-200v0,3,3,0,1,0r-1,0xm53,-263v-1,-1,-5,2,-1,1v0,-1,0,-1,1,-1xm52,-265v0,0,2,0,2,-1v0,0,-2,0,-2,1xm53,-271v0,0,4,4,4,2xm58,-272v1,1,1,3,1,0r-1,0xm69,-226v1,0,2,3,2,1xm73,-224v2,-2,-2,-8,1,-3xm65,-227v0,2,3,1,1,0r-1,0xm68,-230v1,0,3,-1,1,-1xm47,-214v1,1,2,2,2,-1xm78,-233r-1,0r1,0xm23,-243v3,-1,1,-3,0,-4v-2,-1,-3,1,-1,2v2,1,2,0,1,2xm24,-233v0,-1,0,-1,-1,-1v0,0,0,1,1,1xm22,-236r-1,0r1,0xm18,-237v0,-1,-1,-3,-1,-1xm18,-234v-3,-2,-5,0,-2,2v1,0,1,-1,2,-2xm15,-247v2,-1,1,-4,-1,-2xm15,-240r1,1xm13,-235v0,-1,0,-1,-1,-1v0,1,0,1,1,1xm9,-248r1,-1xm8,-234v3,1,4,-5,2,-5v0,3,-4,0,-4,2v2,-1,2,1,2,3xm9,-245v0,-1,0,-1,-1,-1v0,1,0,1,1,1xm39,-205v6,0,6,-2,2,-3v0,1,-1,2,-2,3xm47,-206v1,-2,5,-4,-1,-2xm44,-210v1,0,3,-1,1,-1xm43,-216v1,0,3,-1,1,-1xm46,-217v1,0,3,-1,1,-1xm36,-190v1,-1,1,-6,0,-3v-1,1,-1,2,0,3xm38,-200v1,0,3,-2,0,-2r0,2xm38,-182v1,0,1,-1,1,-2v-1,0,-1,1,-1,2xm43,-200v2,-2,5,1,5,-1v-3,0,-4,0,-5,1xm33,-184r0,-1r0,1xm41,-185r-3,-2v0,1,1,2,3,2xm30,-188v0,0,3,2,2,0r-2,0xm39,-210v-2,0,-4,4,-1,4xm37,-191v4,0,3,-2,0,-3v-1,1,-1,2,0,3xm46,-212v-1,0,-2,-2,-2,0r2,0xm49,-217v0,2,4,2,5,0r-5,0xm42,-198v0,-3,0,-6,-2,-2v0,1,1,2,2,2xm52,-218r-2,0r2,0xm30,-201v1,-2,1,-2,-1,-1xm18,-186v6,0,5,-1,2,-3v0,1,-1,2,-2,3xm26,-189v1,3,3,1,5,1v-1,-4,-2,-2,-5,-1xm25,-191r-1,0r1,0xm22,-196v1,0,3,-3,1,-2xm81,-226r1,-1xm86,-226r2,0r-2,0xm80,-230v1,1,2,0,3,0r-3,0xm89,-226v1,0,3,-1,1,-1xm99,-231v-2,1,-6,0,-5,4v1,-2,5,-1,5,-4xm85,-236v1,3,2,4,4,2v0,-2,-2,-1,-4,-2xm91,-236v5,0,-5,8,2,5v-1,0,-1,0,-1,-1v7,0,3,-5,3,-7v-1,3,-5,-3,-4,3xm86,-241v3,1,4,-4,2,-4xm98,-240v1,2,2,2,1,0r-1,0xm102,-241v-2,-1,1,-4,-1,-4v-2,3,-4,0,1,4xm97,-247v-3,-2,-1,-4,-4,-4v0,2,1,6,4,4xm99,-249v0,1,0,1,1,1v0,-1,0,-1,-1,-1xm82,-178v1,0,1,-1,1,-2v-1,0,-1,1,-1,2xm77,-180v1,0,1,0,1,-1v-1,0,-1,0,-1,1xm85,-181r-3,-2v0,1,1,2,3,2xm75,-182v0,-1,-1,-3,-1,-1xm72,-186v0,0,-3,-8,-2,-3v1,1,2,2,2,3xm80,-189v0,3,4,2,4,0v-1,0,-3,-2,-4,0xm86,-194v0,-3,0,-5,-3,-2v0,1,2,2,3,2xm73,-197v0,-1,3,-2,1,-2xm65,-213v2,0,2,-1,1,-2xm73,-204v-2,-2,-3,-5,-4,-1v0,0,1,1,4,1xm63,-205v5,-1,0,-1,-1,-4v-2,2,1,1,1,4xm66,-210r2,1xm65,-217r2,1xm77,-189v0,-2,-1,-5,-2,-3xm72,-201r3,2v0,-1,-1,-2,-3,-2xm73,-181v1,0,1,0,1,-1v-1,0,-1,0,-1,1xm69,-199v0,-1,-4,-2,-5,0v2,-1,3,-1,5,0xm78,-182v2,0,1,-3,0,-1r0,1xm71,-184v2,0,4,-2,2,-2xm81,-185v1,0,1,-1,1,-2v-1,0,-1,1,-1,2xm73,-205v0,-1,1,-4,-1,-4v1,1,1,2,1,4xm72,-191v2,1,5,0,3,-2v-1,1,-2,2,-3,2xm69,-211v-1,-1,-2,-1,-3,0r3,0xm59,-214v0,0,6,0,4,1xm70,-197v4,0,2,-3,1,-4v-2,0,-1,3,-1,4xm62,-217r-2,0r2,0xm81,-202v1,1,2,3,2,0r-2,0xm93,-186v-2,-2,-3,-4,-5,-1v0,0,2,1,5,1xm82,-189v3,4,4,2,1,-1v0,1,0,1,-1,1xm87,-190r2,1xm89,-197r1,0r-1,0"},"+":{"d":"86,-190v9,0,6,20,3,25v-1,-1,-2,-1,-4,-1v0,2,2,3,6,3v0,27,-2,29,0,55v-5,2,5,28,-2,36v-15,-1,-35,3,-46,-2r0,-23r3,0v-6,-25,-4,-64,-1,-93v13,-1,34,2,41,0xm81,-179v0,-4,-3,-3,-4,0v1,0,3,2,4,0xm77,-107v0,0,0,-8,-5,-8v-1,5,1,7,5,8xm76,-151v-3,-2,-6,0,-2,2xm72,-169v1,-3,-2,-2,-4,-2v1,1,2,2,4,2xm70,-116v-1,-1,-4,-4,-3,0r3,0xm65,-183v0,1,-14,6,-9,8v4,-2,7,-4,9,-8xm55,-150v1,-2,-1,-5,-1,-1xm54,-176v1,-2,-2,-7,-2,-2xm54,-130v1,-4,-4,-2,-6,-3v2,1,2,4,6,3xm50,-173v0,-2,-3,-1,-4,-1v0,2,3,2,4,1xm48,-117v0,-2,0,-2,-2,-2r-2,2r4,0xm37,-107v-12,-1,-29,3,-37,-2v1,-14,-3,-34,2,-45r30,0r0,3v3,0,1,-4,5,-3r0,47xm99,-154v13,2,35,-7,35,11r0,28v-2,0,-4,0,-3,2v3,-1,3,1,3,4v-7,3,-26,4,-33,0v1,-1,4,-4,1,-5v-2,0,-3,3,-3,7r0,-47xm120,-117v4,0,3,-3,0,-4v0,1,-2,3,0,4xm41,-121v3,-1,8,-1,8,-5v-5,-1,-7,2,-8,5xm84,-124v2,1,4,1,4,-2v-2,0,-3,1,-4,2xm107,-126v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm50,-128v1,-1,5,-4,0,-3r0,3xm114,-142v-2,7,16,12,9,7v-5,0,-1,-13,-9,-7xm85,-142v2,1,7,-2,2,-2xm116,-144v2,1,8,-1,3,-2xm65,-144v3,1,2,-3,3,-5v-2,1,-4,2,-3,5xm110,-149v2,2,4,1,3,-2xm52,-149v2,0,2,0,2,-2r-2,-2r0,4","w":147},",":{"d":"57,-50v1,7,-19,7,-8,15v2,-1,5,-7,8,-4v-1,17,3,40,-3,52v5,6,6,40,-1,41v0,-2,2,-5,-1,-5v-2,5,-1,6,1,10r-19,0v2,-9,9,-20,11,-25v-11,2,-9,4,-14,9v5,2,8,17,-5,16r-25,-1r-1,-88v13,-5,-6,-12,2,-19v-1,6,8,10,13,6v-1,-1,-1,-3,0,-5v-4,1,-11,2,-12,-3v12,1,28,-2,38,1r-8,4v11,5,14,-5,24,-4xm54,-18v0,-2,-2,-2,-3,-3v1,1,0,4,3,3xm54,-14v0,-2,-1,-3,-3,-3v1,1,0,4,3,3xm50,18v-3,8,0,7,-6,15v3,-1,11,-10,6,-15xm46,-18v-1,0,-5,0,-2,1xm44,-34v-2,-3,-8,1,-9,3v3,1,7,6,9,4v-4,-2,-6,-5,0,-7xm37,8v0,2,-1,5,2,4v-2,-1,2,-5,-2,-4xm35,-17v0,-1,3,-4,1,-4v-3,0,-4,2,-1,4xm33,30v3,-2,2,-7,-2,-4v0,2,1,3,2,4xm21,-35v3,6,17,-7,10,-5v0,4,-3,5,-10,5xm28,27v0,-2,-3,-1,-4,-1v0,2,3,1,4,1xm26,45v1,-4,-4,-1,-5,-1v2,2,3,4,5,1xm22,-19v2,-4,-1,-11,-7,-5v2,3,2,8,7,5xm23,17v0,-3,-1,-5,-5,-4v-2,4,2,4,5,4xm20,-35v0,-2,-2,-7,-3,-5v1,2,0,6,3,5xm9,26v2,4,14,-2,8,-2xm6,4v2,-1,3,-5,-1,-4xm8,27v0,-3,-2,-3,-6,-3v2,1,2,4,6,3","w":70},"-":{"d":"0,-150v-1,-11,19,-6,25,-4v-1,1,-4,4,-1,5v2,0,3,-3,3,-7v13,-1,28,1,33,4v-1,-1,-1,-2,-1,-4r22,0r0,3v1,-2,4,2,4,-1r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,45r-23,0r0,-3v-25,6,-64,4,-93,1v-1,-12,2,-33,0,-39xm11,-146v-4,0,-3,3,0,4v0,-1,2,-3,0,-4xm83,-142v-3,1,-8,1,-8,5v5,1,7,-1,8,-5xm41,-139v-2,-2,-5,1,-2,2xm21,-137v-3,-1,-2,2,-2,4v1,-1,2,-2,2,-4xm74,-135v-1,1,-4,4,0,3r0,-3xm13,-120v4,-3,-3,-12,-7,-10v3,2,6,4,7,10xm40,-121v-2,-1,-5,1,-2,2xm14,-119v-2,-1,-7,2,-2,2xm60,-119v-3,-1,-5,5,-3,5v2,-1,4,-2,3,-5xm17,-115v-2,0,-1,2,-1,3v2,0,2,-2,1,-3xm72,-114v-2,0,-1,3,0,4r0,-4","w":130},"\u00ad":{"d":"0,-150v-1,-11,19,-6,25,-4v-1,1,-4,4,-1,5v2,0,3,-3,3,-7v13,-1,28,1,33,4v-1,-1,-1,-2,-1,-4r22,0r0,3v1,-2,4,2,4,-1r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,45r-23,0r0,-3v-25,6,-64,4,-93,1v-1,-12,2,-33,0,-39xm11,-146v-4,0,-3,3,0,4v0,-1,2,-3,0,-4xm83,-142v-3,1,-8,1,-8,5v5,1,7,-1,8,-5xm41,-139v-2,-2,-5,1,-2,2xm21,-137v-3,-1,-2,2,-2,4v1,-1,2,-2,2,-4xm74,-135v-1,1,-4,4,0,3r0,-3xm13,-120v4,-3,-3,-12,-7,-10v3,2,6,4,7,10xm40,-121v-2,-1,-5,1,-2,2xm14,-119v-2,-1,-7,2,-2,2xm60,-119v-3,-1,-5,5,-3,5v2,-1,4,-2,3,-5xm17,-115v-2,0,-1,2,-1,3v2,0,2,-2,1,-3xm72,-114v-2,0,-1,3,0,4r0,-4","w":130},".":{"d":"0,-46v18,2,43,-4,57,2v-7,5,5,19,-1,30v0,-7,-4,-5,-8,-7v2,0,14,10,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v2,13,-8,7,-18,9v-4,-7,-13,4,-19,-4v2,7,-7,3,-11,4v1,-4,-2,-3,-5,-3v1,2,1,4,-2,3v-1,-11,-1,-26,0,-35r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4r0,-9xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm18,-22v-1,0,-5,0,-2,1xm21,-13v0,1,4,2,4,0r-4,0xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":71},"\/":{"d":"52,9r-55,0r95,-261r55,0xm46,-61v-1,-2,-3,-2,-3,1xm42,-41v0,-2,-4,-4,-3,-1xm40,-11v-6,0,-11,0,-13,4r12,5v-1,-4,-1,-7,1,-9xm52,-73v0,-4,-4,-2,-1,0r1,0xm81,-98v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm111,-205v-2,0,-14,3,-9,5v5,-2,8,-3,9,-5xm77,-178v-2,0,-2,0,-2,2r2,2r0,-4xm82,-172v-2,0,-1,2,-1,3v3,1,2,-2,1,-3xm103,-168v-2,-7,-5,-14,-9,-6xm105,-233v-1,-7,-5,-4,-9,-1v3,1,7,5,9,1xm82,-159v-3,-5,-7,-2,-6,3v1,1,4,1,3,4v-6,-1,-13,6,-6,8v5,-3,4,2,6,4v-4,-11,15,-8,2,-14v0,0,-3,-6,1,-5xm104,-149v-4,0,-5,6,-9,3v2,9,2,0,9,-1r0,-2xm105,-139v-1,1,-4,0,-4,2v2,-1,4,-1,4,-2xm85,-138v-2,1,-3,5,0,2r0,-2xm91,-134v0,1,2,3,6,5v-1,-2,-4,-7,-6,-5xm89,-129v-13,0,-11,3,-5,7v0,-3,2,-5,5,-7xm98,-128v-1,1,-2,0,-2,2r3,0xm126,-226v-3,-6,-9,-1,-11,-1v0,4,2,4,4,6v0,-4,3,-5,7,-5xm91,-196v-5,2,-10,5,-7,8v-2,-5,9,-1,7,-8xm114,-212v-2,-1,-6,3,-2,2xm97,-190v-3,-1,-2,2,-3,4v3,1,3,-1,3,-4xm116,-199v-1,0,-5,4,-1,3xm111,-196v-3,-1,-7,3,-2,2xm66,-109v-1,1,-7,4,-2,4v-1,-2,3,-1,2,-4xm66,-126v2,-3,-2,-12,-3,-8v6,5,-7,9,3,8xm57,-105v0,0,-3,2,-1,2xm60,-96v0,1,5,4,5,0r-5,0xm56,-93v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm74,-117v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":146},"0":{"d":"96,-253v92,-1,85,83,83,171v0,21,-5,40,-18,51v4,8,-12,5,-8,12v-10,10,-29,17,-57,19r0,-48v43,-12,21,-80,26,-128v-4,-17,-12,-27,-26,-29r0,-48xm158,-235v2,-3,3,-3,7,-2v0,2,0,4,-2,3v-3,-1,-1,-4,-5,-1xm130,-196v-5,-1,-4,2,-3,5v3,0,0,-4,3,-5xm147,-188v-2,-2,-3,0,-1,1xm156,-82v-2,0,-5,-1,-4,2v4,-2,7,4,7,0xm83,-205v-40,5,-26,77,-26,121v0,18,9,30,26,36r0,48v-29,-4,-55,-7,-57,-25v-3,2,-5,1,-9,-3v0,-2,2,-5,-1,-4v-26,-29,-12,-91,-16,-141v-1,-19,10,-37,15,-53v14,-11,36,-29,68,-27r0,48xm14,-234v-1,-8,11,-3,5,-1v0,0,0,-2,-1,-2v0,3,-1,3,-4,3xm27,-159v1,3,6,7,2,9v6,1,4,-6,6,-9r-8,0xm35,-189v-2,0,-4,0,-2,2xm27,-80v0,-4,-6,-1,-7,0v0,0,0,2,1,2v-1,-3,4,-2,6,-2","w":193},"1":{"d":"19,-218v-4,2,-3,10,-3,16v1,-4,7,0,8,-2xm0,-158r0,-63r35,-32r0,64xm52,-90v-11,0,1,-13,-5,-17v2,-47,-4,-103,2,-146v18,1,41,-3,55,2v1,12,1,31,-9,15v-2,3,6,11,0,13r9,-4r0,112v-13,-7,-10,12,-21,5v0,1,-3,3,-1,3v6,-2,17,11,11,2v-2,-6,6,-7,8,-3v-5,6,10,19,-3,28v4,1,3,-3,6,-3v0,15,1,37,-3,45r3,-1v-1,8,3,21,-2,25v1,-7,-4,-5,-7,-7v0,0,12,9,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,3,-5,8,-4v1,19,-20,1,-31,9v-6,-6,-6,1,-17,0v1,-4,-3,-3,-6,-3v0,2,3,0,2,3v-8,-1,-2,-6,-5,-18v7,-5,-4,-12,2,-17v2,0,7,3,8,1v-5,0,-5,-5,-8,-7v0,2,1,5,-2,4v1,-11,-5,-43,8,-33v5,-1,15,0,8,-4v-11,-1,-7,-4,-11,-16xm65,-250v0,1,-3,3,-1,3v2,-1,2,-1,1,-3xm77,-239v0,-2,-3,-4,-2,0r2,0xm75,-227r12,6v-1,-4,-1,-7,1,-9v-6,-1,-10,1,-13,3xm92,-219v0,-4,-6,-2,-2,0r2,0xm52,-219v-1,1,1,4,2,2v0,-2,-1,-1,-2,-2xm98,-149v-4,2,0,12,2,6xm101,-127r-2,5v3,0,3,-2,2,-5xm56,-122v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm92,-121v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm66,-117v-2,0,0,3,0,3r0,-3xm49,-114v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm72,-112v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm102,-113v4,0,1,6,2,9v-3,1,-3,-7,-2,-9xm78,-104v-5,3,-1,9,5,12v1,-6,-6,-7,-5,-12xm60,-97v-8,-6,-11,-1,-3,3xm68,-101v-7,1,7,13,-7,10v-3,5,-1,10,5,7v1,1,0,4,2,4v-4,-11,15,-9,2,-13xm102,-97v-2,1,-6,0,-5,3v3,0,6,1,5,-3xm93,-89v-4,1,-4,7,-9,4v2,7,3,-1,9,-2r0,-2xm48,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm94,-79v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm75,-78v-3,2,-5,6,0,3r0,-3xm80,-73v0,1,2,2,6,4v0,-2,-4,-6,-6,-4xm78,-69v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm88,-67v-1,1,-3,0,-3,2r4,0xm61,-62v-3,-6,-9,-1,-11,-1v0,4,2,4,4,6v0,-4,3,-5,7,-5xm95,-60v-9,4,-12,8,0,4r0,-4xm66,-58v-2,0,-4,3,-1,2xm101,-55v-3,-1,-2,2,-3,4v3,1,3,-1,3,-4xm69,-46v-1,0,-5,5,-1,4xm64,-42v-3,-1,-7,3,-2,2xm74,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm82,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm65,-22v-1,0,-5,0,-2,1xm67,-13v2,0,5,2,5,0r-5,0xm63,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm90,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm102,-113v4,0,1,6,2,9v-3,1,-3,-7,-2,-9xm48,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8","w":117},"2":{"d":"97,-155v1,0,4,0,2,-1v-1,0,-1,1,-2,1xm72,-237v-1,-1,0,-2,-2,-2v0,1,0,2,2,2xm111,-171v-3,3,-3,5,-6,9v6,1,9,-3,6,-9xm55,-115v2,0,2,0,2,-2v-1,0,-2,0,-2,2xm49,-101r0,-2r0,2xm50,-99v-1,-1,-1,-3,-1,0r1,0xm50,-96v2,1,7,-2,2,-2xm61,-109v-3,2,-2,9,-2,11v4,-3,3,-5,2,-11xm65,-133v-5,0,-2,4,0,1r0,-1xm72,-129v-2,1,-1,8,2,7xm81,-141v-4,0,-6,4,0,3r0,-3xm84,-134v-4,0,-4,9,-3,9v8,-1,8,-2,3,-9xm81,-105v1,3,1,3,3,1v1,-3,-2,-1,-3,-1xm82,-151v2,-2,10,-5,6,-7v-4,1,-6,4,-6,7xm83,-176v0,2,-1,6,2,5v0,-2,1,-6,-2,-5xm89,-130v3,-1,8,-3,1,-3xm92,-147v2,-4,9,1,11,-1r-3,-10v-5,3,-8,7,-8,11xm94,-164v0,1,-3,2,-1,2xm95,-139v-1,6,2,7,8,6v0,-5,-4,-5,-8,-6xm104,-163v-7,1,-3,3,0,1r0,-1xm100,-173v0,1,5,4,5,0r-5,0xm55,-120r-2,3v1,0,2,-1,2,-3xm94,-139v0,-1,-4,-3,-3,0r3,0xm72,-104v1,0,1,0,1,-1v-1,0,-1,0,-1,1xm57,-108r3,0v-1,-1,-2,-1,-3,0xm122,-179v-4,-3,-7,-2,-9,-6v-1,6,4,10,9,6xm67,-237v-1,2,1,2,3,2v0,-1,-1,-2,-3,-2xm24,-248v-2,-2,-5,-5,-4,1xm55,-244v-2,0,-4,0,-3,2v1,-1,3,0,3,-2xm50,-239v0,-2,-3,-4,-2,0r2,0xm5,-238v-2,3,1,3,4,2v0,-2,-3,-1,-4,-2xm61,-232v-4,0,-11,-3,-11,-1v3,4,6,2,11,1xm85,-226v-1,-7,-4,-3,-1,0r1,0xm81,-221v-4,0,-8,-1,-8,3v3,-1,8,1,8,-3xm92,-210v0,-4,-4,-6,-3,0r3,0xm77,-212v-1,5,1,12,8,5v0,-4,-6,-2,-8,-5xm56,-211v-2,1,-2,1,-1,3v3,1,1,-2,1,-3xm102,-208v2,2,5,10,7,6v-1,-4,-4,-5,-7,-6xm127,-207v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm81,-202v1,2,3,7,3,1xm98,-198v5,2,-3,8,0,10r11,-2v-3,-5,-7,-8,-11,-8xm114,-197r0,1r0,-1xm89,-196v-5,-3,-7,4,-5,7v5,1,4,-4,5,-7xm114,-186v-1,-7,-3,-3,-1,0r1,0xm123,-189v-1,0,-2,4,0,4r0,-4xm83,-178v-1,-2,-3,2,-3,2xm93,-153v0,-1,-1,-1,-2,-1xm77,-130r2,1v0,0,-1,-1,-2,-1xm43,-86v-1,-1,-1,-1,-2,0r2,0xm39,-77v0,-2,-4,0,-1,0r1,0xm38,-62v-5,0,-11,-1,-12,2r11,2v-1,-2,-1,-4,1,-4xm46,-93v1,0,3,2,3,0r-3,0xm53,-108v-1,0,-3,1,-1,1xm56,-103v0,1,4,2,4,0r-4,0xm50,-101v-1,3,2,1,3,1v-1,-2,-1,-2,-3,-1xm48,-101r1,0r-1,0xm-1,-52r76,-118v4,-7,6,-20,0,-26v1,1,1,3,-1,3v-10,-21,-51,-6,-74,-14v1,-14,-3,-34,2,-45v68,-3,130,0,132,63v-6,0,0,0,0,4v-1,16,-8,18,-11,24r-70,109r-54,0xm0,-41v1,-10,20,-4,28,-4v-1,1,-4,4,-1,5v2,0,3,-2,3,-6v14,-1,30,1,37,3r-1,-3v11,-1,25,2,29,1r-1,-1v13,1,28,-2,39,1v-1,14,3,34,-2,45r-27,0r0,-3v-1,0,-2,1,-2,3v-19,-1,-44,3,-60,-2v-9,3,-32,4,-42,0v-1,-12,2,-33,0,-39xm12,-37v-4,0,-3,3,0,4v0,-1,2,-3,0,-4xm93,-33v-3,2,-9,0,-8,5v5,1,7,-1,8,-5xm46,-29v-2,-2,-4,-2,-4,1xm23,-28v-3,-1,-2,2,-2,4v1,-1,2,-2,2,-4xm83,-26v-1,1,-5,4,0,3r0,-3xm17,-12v-2,-3,-7,-10,-10,-8v7,-2,3,11,10,8xm45,-12v-2,-1,-7,2,-2,2xm15,-10v-2,-1,-7,2,-2,2xm67,-10v-3,-1,-5,6,-3,6v1,-2,4,-2,3,-6xm19,-6v-2,0,-1,2,-1,3v2,0,2,-2,1,-3xm81,-1v1,-3,-2,-4,-2,-2","w":145},"3":{"d":"48,-153v12,-3,40,-17,29,-36v-1,-2,2,-8,-2,-7v1,1,1,3,-1,3v-10,-21,-51,-6,-74,-14v1,-14,-3,-34,2,-45v68,-3,130,0,132,63v-6,0,0,0,0,4v-1,14,-4,21,-5,11v-11,4,-4,-10,-14,-7v-1,-1,0,-4,-2,-4v-1,9,10,12,6,24r-5,-1v3,3,4,6,-3,5v4,12,-6,25,-13,15v-3,0,-8,-2,-7,3v4,1,23,9,25,16v8,0,27,25,22,42v8,12,-4,30,-3,35v-12,5,-15,-9,-19,0v-1,2,13,3,4,8v-4,0,-7,0,-6,4v2,0,5,2,10,7v-18,19,-16,12,-36,23v-2,-2,-12,-6,-8,-11v-4,1,-8,-3,-8,-1v4,5,7,9,7,14v-11,2,-18,2,-22,-9r0,6v-9,-1,-2,2,-5,5v-17,-1,-39,3,-52,-2v1,-14,-3,-35,2,-45v13,1,30,-2,40,2r-1,-1v11,-2,20,-2,31,-8v0,8,3,14,15,14v1,-4,-7,-9,0,-13v1,2,2,6,3,-1v-20,-3,-1,-31,-12,-43v2,1,5,1,4,-2v-16,-2,-7,-10,-33,-11xm24,-248v-2,-2,-5,-5,-4,1xm55,-244v-2,0,-4,0,-3,2v1,-1,3,0,3,-2xm50,-239v0,-2,-3,-4,-2,0r2,0xm72,-237v-1,-3,-3,-1,-5,0v0,4,3,1,5,0xm5,-238v-2,3,1,3,4,2v0,-2,-3,-1,-4,-2xm61,-232v-4,0,-11,-3,-11,-1v3,4,6,2,11,1xm85,-226v-1,-7,-4,-3,-1,0r1,0xm81,-221v-4,0,-8,-1,-8,3v3,-1,8,1,8,-3xm92,-210v0,-4,-4,-6,-3,0r3,0xm77,-212v-1,5,1,12,8,5v0,-4,-6,-2,-8,-5xm56,-211v-2,1,-2,1,-1,3v3,1,1,-2,1,-3xm102,-208v2,2,5,10,7,6v-1,-4,-4,-5,-7,-6xm127,-207v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm81,-202v1,2,3,7,3,1xm98,-198v5,2,-3,8,0,10r11,-2v-3,-5,-7,-8,-11,-8xm114,-197r0,1r0,-1xm89,-196v-5,-3,-7,4,-5,7v5,1,4,-4,5,-7xm114,-186v-1,-7,-3,-3,-1,0r1,0xm123,-189v-1,0,-2,4,0,4r0,-4xm83,-178v-1,-2,-3,2,-3,2xm95,-178v-4,-1,-7,2,-3,4v1,0,2,-2,3,-4xm105,-176v-3,1,-6,5,-2,5xm121,-167v0,-2,3,-4,2,0r-2,0xm130,-167v0,3,-4,8,-6,5v0,-4,0,-8,6,-5xm72,-160v-2,0,-2,0,-2,2r2,2r0,-4xm120,-151v-3,-4,4,-14,6,-7xm89,-158v-4,0,-6,3,-3,5v7,1,9,-3,16,0v0,-2,-5,-3,-13,-5xm58,-147v0,0,-5,-11,-5,-4v4,1,5,2,5,4xm82,-146v-2,-1,-4,-1,-3,2v2,0,3,-1,3,-2xm60,-139v-4,-3,-9,3,-2,2xm88,-135v0,1,-3,2,-1,2xm79,-132v-4,1,0,7,2,6xm63,-122v0,0,-6,-6,-5,-2v1,0,3,0,5,2xm108,-126v-11,7,-10,15,-2,20v1,-10,16,-5,18,1v-12,8,4,15,-11,17v3,13,-14,2,-9,16v-4,5,3,10,-9,12v3,0,2,5,1,6v9,1,2,6,13,8v1,-4,1,-10,7,-7v-5,-4,-13,-2,-8,-10v8,2,19,-4,6,-3v-8,-3,-5,-17,5,-14v0,3,-2,7,2,6v1,-4,1,-7,0,-11v2,2,3,0,3,-2v8,-9,3,-17,5,-25v-5,-2,-22,4,-23,-10v6,-1,8,-1,2,-4xm81,-110v-3,-1,-6,2,-1,2xm84,-108v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm121,-105v-1,0,-4,-2,-3,1xm105,-92v-1,-5,-7,-1,-7,2v0,3,2,2,6,2v-2,-2,-2,-4,1,-4xm135,-87v-4,0,-4,0,-2,2xm136,-67v1,-3,-2,-4,-2,-2xm129,-64v-10,-5,-2,5,-5,10v10,1,1,-6,5,-10xm138,-62v-3,0,-5,2,-3,3v2,0,4,0,3,-3xm77,-48v-5,-5,-7,-10,0,-12v-1,2,12,11,0,12xm46,-44v-6,2,-4,5,0,6v3,-1,1,-4,0,-6xm113,-44v-2,0,-2,3,-3,5v4,-2,5,-2,3,-5xm36,-42v-1,0,-3,-1,-3,1v0,2,4,3,8,3v-1,-2,-2,-4,-5,-4xm128,-34v-5,1,-5,-7,-1,-7v4,1,4,4,1,7xm29,-30v-1,-6,-4,-11,-10,-2v2,0,7,8,10,2xm58,-36v-9,0,0,4,0,7v3,0,0,-5,0,-7xm104,-36v0,0,-2,0,-2,1v2,2,5,2,2,-1xm50,-24v2,-6,-7,-6,-8,-3v0,4,2,2,8,3xm26,-21v-2,2,-1,3,1,1xm64,-15v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm38,-14r0,3v3,-1,5,-1,0,-3xm41,-5v3,-4,-2,-6,-3,-3v1,1,0,4,3,3xm38,-4v-1,-3,-8,-3,-7,1v2,0,7,1,7,-1","w":150},"4":{"d":"124,-68v-1,2,-10,6,-12,1v1,1,2,2,2,-1v-4,-1,-12,-2,-11,-9v-7,0,-14,5,-2,8r1,4v-32,-3,-75,6,-102,-3v6,-13,-7,-44,4,-54v13,3,15,12,18,7v-3,-2,-1,-5,-9,-7r90,0v0,7,11,12,18,9v0,-4,-16,-5,-11,-9r49,0v-1,3,2,6,3,2v0,-5,8,-1,12,-2v1,11,-2,16,-4,24r4,-6r0,39v-15,-2,-43,4,-50,-3xm118,-91v0,-4,-8,-3,-11,0v2,7,4,8,3,1v2,-2,5,-2,8,-1xm105,-78v1,-7,-3,-7,-6,-2v0,1,0,1,1,1v0,0,0,-2,1,-2xm99,-109v0,0,-2,-5,-1,-2xm92,-104v1,-5,-4,-1,-7,-1v3,2,-6,6,1,5xm81,-105v2,0,3,-3,0,-2r0,2xm77,-78v2,-2,2,-4,-1,-3v-1,2,-3,4,1,3xm78,-94v0,-2,1,-6,-2,-5v0,2,-1,6,2,5xm74,-83v-5,-5,-7,1,-1,1xm73,-102v1,-2,-3,-5,-3,-3v1,2,2,3,3,3xm62,-99v10,-5,2,-13,-2,-7xm64,-88v0,-1,2,-3,0,-3r0,3xm58,-73v6,1,1,-8,2,-12v-1,0,-4,4,-4,10xm42,-88v0,-4,6,-5,0,-5v-2,2,-2,4,0,5xm36,-69v2,0,3,-5,0,-4v0,1,-2,3,0,4xm32,-76v-10,2,-1,-17,-10,-6v3,4,6,13,10,6xm28,-111v0,-2,-4,-4,-3,0r3,0xm17,-99v-8,-2,-6,8,-4,13v4,-2,0,-11,4,-13xm15,-75v-1,-1,-4,-1,-7,-1v2,2,4,2,7,1xm11,-73v1,1,0,2,2,2xm7,-105v3,-3,0,-8,-4,-5v1,3,3,5,4,5xm105,-233v2,2,8,5,2,6v-2,-1,-2,-3,-2,-6xm66,-151v0,-4,-4,-2,-1,0r1,0xm60,-173v-1,-1,-4,-4,-3,0r3,0xm57,-187v0,3,4,4,3,0r-3,0xm80,-197v-1,0,-4,-1,-4,1v2,0,5,2,4,-1xm75,-197v-1,-3,-3,-5,-6,-5v2,2,2,6,6,5xm92,-198v1,-3,-2,-4,-2,-2xm96,-202v0,0,-9,-1,-5,0r5,0xm105,-209v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm121,-239v-2,4,-16,4,-23,5v7,1,5,12,16,8r0,3v3,0,4,-1,4,-5v11,1,3,-2,3,-11xm123,-249v-2,-2,-4,0,-5,3v2,4,5,-1,5,-3xm173,-253v-13,15,-15,22,-28,25v1,-2,1,-2,-2,-2v-5,3,-24,11,-9,7v3,6,12,-1,13,1v-11,19,-34,2,-49,3v1,-2,-7,-8,-12,-5v0,-1,2,-2,0,-2r-4,2v2,-10,17,-6,12,-16v4,-5,7,-9,11,-13r68,0xm1,-128r73,-87v5,1,2,6,6,2v-7,-13,16,-8,16,-8v-2,2,1,2,3,3r4,-1r-1,2v15,3,30,8,37,5v-1,1,-4,12,-11,10v3,8,-48,55,-60,74r-67,0xm174,-242v1,8,-1,21,-7,9xm165,-231v6,3,1,7,0,8v3,-1,7,-5,9,-3r0,97r-57,0r0,-42xm136,-248v-1,-2,-4,1,-2,1xm145,-241v-1,0,-1,0,-1,1v1,0,3,2,3,0xm161,-219v0,-4,-4,-2,-1,0r1,0xm124,-216v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm168,-148v-2,0,-3,9,1,8xm117,-60v5,-1,5,2,7,3r0,-3r40,1v-9,4,-10,6,1,3v-1,-5,6,-2,9,-3v3,10,-5,19,-3,21r3,-1v-1,8,2,32,-4,20r-5,-2v1,0,12,10,2,11v-2,-1,-5,-5,-6,-3v5,7,6,9,13,4v1,19,-20,1,-31,9v-6,-6,-6,1,-17,0v1,-4,-3,-3,-6,-3v0,2,3,0,2,3v-9,1,-3,-8,-5,-18v6,-5,-3,-10,1,-17r9,2v-5,-1,-5,-7,-9,-8v0,1,1,4,-1,4r0,-23xm174,-242v1,8,-1,21,-7,9xm136,-248v-1,-2,-4,1,-2,1xm145,-241v-1,0,-1,0,-1,1v1,0,3,2,3,0xm161,-219v0,-4,-4,-2,-1,0r1,0xm124,-216v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm168,-148v-2,0,-3,9,1,8xm163,-217v-3,-3,-7,3,-7,7v2,-1,4,-3,5,-1v0,-3,1,-5,2,-6xm163,-210v-1,1,-4,4,0,3r0,-3xm155,-204v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm161,-196v1,0,-3,-3,-3,-3v0,1,1,2,3,3xm165,-188v-2,-8,-5,-6,-10,0v4,1,8,3,10,0xm146,-192v-2,1,-3,2,1,2xm133,-186v-2,-1,-5,-2,-4,2v7,2,19,-4,4,-2xm149,-171v-2,2,-7,4,-2,5v1,-1,2,-2,2,-5xm129,-162v1,-4,-2,-2,-4,-1v0,2,2,2,4,1xm133,-158v-5,1,-4,4,-1,7v0,-3,8,6,11,0v-2,-5,-11,2,-10,-7xm170,-151v0,-2,-1,-3,-3,-3v0,2,0,4,3,3xm157,-141v-6,-3,-20,2,-6,5v0,-2,2,-3,6,-5xm132,-134v4,-2,-1,-11,-2,-4xm129,-137v0,-1,-2,-4,-2,-2xm145,-15v1,1,3,5,3,1xm142,-34v-1,-1,-3,-5,-3,-1xm139,-49v0,5,4,5,3,0r-3,0","w":188},"5":{"d":"82,-146v-2,-1,-4,-1,-3,2v2,0,3,-1,3,-2xm139,-211v-2,0,-1,3,0,4r0,-4xm84,-212v-2,0,-1,2,-1,3v2,0,2,-2,1,-3xm127,-216v-3,-1,-5,5,-3,5v2,-1,4,-2,3,-5xm81,-216v-2,-1,-7,2,-2,2xm107,-218v-2,-1,-5,1,-2,2xm80,-217v4,-3,-3,-12,-7,-10v3,2,6,4,7,10xm141,-232v-1,1,-4,4,0,3r0,-3xm88,-234v-3,-1,-2,2,-2,4v1,-1,2,-2,2,-4xm108,-236v-2,-2,-5,1,-2,2xm78,-243v-4,0,-3,3,0,4v0,-1,2,-3,0,-4xm38,-4v-1,-3,-8,-3,-7,1v2,0,7,1,7,-1xm41,-5v3,-4,-2,-6,-3,-3v1,1,0,4,3,3xm38,-14r0,3v3,-1,5,-1,0,-3xm64,-15v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm26,-21v-2,2,-1,3,1,1xm50,-24v2,-6,-7,-6,-8,-3v0,4,2,2,8,3xm104,-36v0,0,-2,0,-2,1v2,2,5,2,2,-1xm58,-36v-9,0,0,4,0,7v3,0,0,-5,0,-7xm29,-30v-1,-6,-4,-11,-10,-2v2,0,7,8,10,2xm36,-42v-1,0,-3,-1,-3,1v0,2,4,3,8,3v-1,-2,-2,-4,-5,-4xm113,-44v-2,0,-2,3,-3,5v4,-2,5,-2,3,-5xm46,-44v-6,2,-4,5,0,6v3,-1,1,-4,0,-6xm138,-62v-3,0,-5,2,-3,3v2,0,4,0,3,-3xm129,-64v-10,-5,-2,5,-5,10v10,1,1,-6,5,-10xm136,-67v1,-3,-2,-4,-2,-2xm135,-87v-4,0,-4,0,-2,2xm105,-92v-1,-5,-7,-1,-7,2v0,3,2,2,6,2v-2,-2,-2,-4,1,-4xm121,-105v-1,0,-4,-2,-3,1xm84,-108v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm81,-110v-3,-1,-6,2,-1,2xm36,-117r5,0v-2,-2,-4,-2,-5,0xm108,-126v-11,7,-10,15,-2,20v1,-10,16,-5,18,1v-12,8,4,15,-11,17v3,13,-14,2,-9,16v-4,5,3,10,-9,12v3,0,2,5,1,6v9,1,2,6,13,8v1,-4,1,-10,7,-7v-5,-4,-13,-2,-8,-10v8,2,19,-4,6,-3v-8,-3,-5,-17,5,-14v0,3,-2,7,2,6v1,-4,1,-7,0,-11v2,2,3,0,3,-2v8,-9,3,-17,5,-25v-5,-2,-22,4,-23,-10v6,-1,8,-1,2,-4xm63,-122v0,0,-6,-6,-5,-2v1,0,3,0,5,2xm79,-132v-4,1,0,7,2,6xm88,-135v0,1,-3,2,-1,2xm60,-139v-4,-3,-9,3,-2,2xm77,-48v-5,-5,-7,-10,0,-12v-1,2,12,11,0,12xm58,-147v0,0,-2,-8,-5,-4v4,1,5,2,5,4xm30,-159v4,9,11,-5,17,-1v2,-7,6,-2,8,-7v-7,1,-6,-8,-1,-10v8,0,0,14,3,20v30,1,35,15,53,27v11,9,32,24,28,49v8,12,-4,30,-3,35v-12,5,-15,-9,-19,0v-1,2,13,3,4,8v-4,0,-7,0,-6,4v2,0,5,2,10,7v-18,19,-16,12,-36,23v-2,-2,-12,-6,-8,-11v-4,1,-8,-3,-8,-1v4,5,7,9,7,14v-11,2,-18,2,-22,-9r0,6v-9,-1,-2,2,-5,5v-17,-1,-39,3,-52,-2v1,-14,-3,-35,2,-45v13,1,30,-2,40,2r-1,-1v11,-2,20,-2,31,-8v0,8,3,14,15,14v1,-4,-7,-9,0,-13v1,2,2,6,3,-1v-20,-3,-1,-31,-12,-43v2,1,5,1,4,-2v-10,-11,-50,-10,-82,-13v2,-21,-4,-49,2,-66v0,6,3,6,3,2v-6,-4,-5,-21,-5,-32v2,0,6,2,7,0v-7,0,-8,-5,-7,-13v7,0,0,-2,0,-4r0,-28v4,3,17,-4,23,2v-9,0,-16,3,-10,12v6,-8,11,-16,24,-14v-2,6,5,11,0,14v0,-4,-6,-8,-8,-5v4,3,7,6,3,8v-5,-4,-5,4,-8,8v5,5,19,3,13,11v3,-1,8,1,9,-1v-2,0,-2,0,-2,-2v2,-1,4,-1,3,3v-3,-1,-2,2,-2,4v1,2,-2,6,-6,7v-4,-1,2,-9,-4,-10v1,3,-1,5,-3,2v1,-1,2,-2,-1,-2v-2,1,-6,0,-5,4v9,-4,10,21,17,8v1,1,3,1,5,1v-4,-7,-1,-12,9,-14v-1,8,1,14,-2,16r0,-2v-6,-2,-8,7,-6,2v6,1,9,7,4,9r-6,0v0,-2,2,-6,0,-6v-3,17,9,17,1,24v-8,1,-11,-7,-15,-1v7,3,0,10,3,17xm51,-253v-1,2,-1,4,2,3v1,-3,0,-3,4,-3v1,5,0,24,-3,11v-4,1,0,7,-8,8v11,0,6,8,2,11v0,0,-7,-15,-7,-4v2,0,3,0,3,1v-5,3,-14,-2,-8,-6v13,0,0,-20,11,-12v6,-3,-6,-11,4,-9xm57,-229v1,5,-1,14,-3,4v1,-3,1,-8,3,-4xm141,-206v-24,-2,-54,3,-74,-2v1,-14,-3,-34,2,-45v11,1,25,-3,22,7v2,0,3,-3,3,-7v13,-1,28,1,33,4v-1,-1,-1,-2,-1,-4r15,0r0,47xm128,-34v-5,1,-5,-7,-1,-7v4,1,4,4,1,7","w":153},"6":{"d":"163,-139v19,31,24,82,-2,108v3,9,-13,3,-8,12v-10,11,-30,17,-60,19r1,-48v37,-6,34,-68,-1,-70r0,-48v32,-1,56,14,70,27xm157,-148v1,-4,10,-3,6,1v-3,-2,-1,-3,-6,-1xm126,-109v1,6,2,5,3,0r-3,0xm144,-102v1,1,2,3,2,0r-2,0xm155,-82v-1,0,-3,-1,-3,1v4,-2,6,4,6,0xm83,-205v-40,5,-26,77,-26,121v0,18,9,30,26,36r0,48v-29,-4,-55,-7,-57,-25v-3,2,-5,1,-9,-3v0,-2,2,-5,-1,-4v-26,-29,-12,-91,-16,-141v-1,-19,10,-37,15,-53v14,-11,36,-29,68,-27r0,48xm14,-234v-1,-8,11,-3,5,-1v0,0,0,-2,-1,-2v0,3,-1,3,-4,3xm27,-159v1,3,6,7,2,9v6,1,4,-6,6,-9r-8,0xm35,-189v-2,0,-4,0,-2,2xm27,-80v0,-4,-6,-1,-7,0v0,0,0,2,1,2v-1,-3,4,-2,6,-2","w":191},"7":{"d":"50,-253v0,1,-2,3,0,3v1,-2,10,-6,12,-1v-1,-1,-2,-2,-2,1v4,1,12,2,11,9v8,0,14,-5,2,-8r-1,-4v32,3,76,-6,102,3v-6,13,7,44,-4,54v-14,-3,-13,-12,-18,-7v5,0,0,5,9,7r-90,0v-1,-9,-8,-9,-18,-9v1,4,17,4,12,9r-50,0v1,-3,-1,-5,-3,-2r1,2r-13,0v-2,-12,2,-16,5,-24r-5,6r0,-39r50,0xm5,-250v1,0,1,-1,1,-2xm56,-237v4,-6,-12,-7,-1,-1xm51,-237v-3,7,3,12,3,3xm57,-227v0,4,8,3,11,0v-1,-4,-1,-6,-4,-6v3,6,-2,8,-7,6xm69,-240v-1,7,3,7,6,2v0,-1,0,-1,-1,-1v0,0,0,2,-1,2xm74,-209v0,1,2,4,2,2v-1,-1,0,-2,-2,-2xm82,-214v-1,5,4,1,7,1v-3,-2,6,-6,-1,-5xm94,-213v-2,0,-4,3,0,2r0,-2xm97,-240v-2,2,-2,4,1,3v1,-2,3,-4,-1,-3xm96,-224v0,2,-1,6,2,5v0,-2,1,-6,-2,-5xm100,-235v5,5,7,-1,1,-1xm102,-216v-1,2,2,5,2,3v-1,-2,-1,-3,-2,-3xm112,-219v-10,5,-2,13,2,7xm111,-230v-1,1,-3,3,0,3r0,-3xm116,-245v-6,-1,-1,8,-2,12v1,0,4,-4,4,-10xm132,-230v0,4,-6,5,0,5v2,-2,2,-4,0,-5xm136,-246v2,3,3,-3,3,-3v-3,-1,-2,2,-3,3xm142,-242v9,-3,3,17,10,6v-3,-4,-5,-13,-10,-6xm147,-207v0,2,1,3,2,3v0,-2,0,-4,-2,-3xm157,-219v8,2,7,-8,4,-13v-4,2,0,11,-4,13xm159,-243v1,1,4,1,7,1v-2,-2,-4,-2,-7,-1xm161,-247r3,2xm167,-213v-3,3,0,8,4,5v-1,-3,-3,-5,-4,-5xm63,0r-64,0r111,-189r63,0xm56,-51v-1,-2,-5,1,-3,1xm49,-38v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm34,-12r14,4v-1,-3,-1,-5,1,-7v-7,-1,-11,1,-15,3xm59,-61v2,0,5,2,5,0r-5,0xm97,-78v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm131,-155v-2,-1,-15,2,-10,4v6,-1,9,-3,10,-4xm92,-136v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm98,-132v-2,-1,-2,1,-2,3v3,1,4,-1,2,-3xm122,-128v-2,-7,-6,-11,-10,-5xm125,-176v-2,-4,-9,-3,-11,0v4,1,8,3,11,0xm102,-115v-1,-1,-11,-4,-5,-8v-12,-3,4,9,-11,7v-1,2,-3,5,1,5v4,-2,5,1,7,3v-1,-5,2,-8,8,-7xm123,-115v-3,2,-8,1,-10,5v5,0,2,-3,10,-3r0,-2xm124,-108v-1,1,-4,0,-4,2v3,-1,4,-1,4,-2xm101,-107v-3,1,-4,5,0,2r0,-2xm115,-101v-2,-2,-3,-3,-7,-3v0,1,2,1,7,3xm105,-101v-15,-1,-11,4,-5,6v0,-2,2,-4,5,-6xm117,-99v-1,0,-3,-1,-3,1r4,0xm149,-171v-5,-6,-19,2,-8,4v0,-3,4,-5,8,-4xm108,-149v-6,2,-11,3,-8,6v-1,-4,9,-1,8,-6xm134,-160v-2,0,-6,1,-2,1xm116,-144v-4,-1,-7,3,-1,2xm137,-151v-4,1,-3,3,0,1r0,-1xm131,-149v-3,-1,-7,3,-2,2xm80,-86v-1,1,-7,3,-3,3v0,-2,4,0,3,-3xm74,-98v9,3,5,-10,2,-6v3,3,2,4,-2,6xm69,-83v-2,-1,-5,1,-1,1xm73,-76v2,0,5,2,5,0r-5,0xm68,-74v-3,0,-6,1,-3,3v2,0,4,0,3,-3xm88,-92v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":186},"8":{"d":"97,-232v0,-10,1,-10,0,-20v49,0,76,19,81,63v-6,0,0,0,0,4v-1,13,-5,21,-6,11v-11,5,-4,-10,-13,-7v-1,-2,0,-5,-3,-4v0,10,9,11,7,24r-6,-1v3,3,6,6,-2,5v4,12,-6,25,-13,15v-3,0,-8,-2,-7,3v4,1,23,9,25,16v10,1,22,20,24,40v-7,1,3,6,1,9v-2,22,-5,18,-6,28v-11,5,-16,-9,-19,0v-1,2,11,4,3,8v-4,0,-6,0,-6,4v2,0,6,2,11,7v-18,19,-16,13,-37,23v-1,-2,-12,-6,-8,-11v-3,1,-7,-3,-7,-1v4,5,6,9,6,14v-11,2,-17,2,-21,-9v0,4,1,7,-4,6r0,-42v6,-2,22,-13,20,1v4,0,4,8,13,6v-3,-4,-1,-19,2,-9v8,-9,-20,-8,-6,-23v1,-11,0,-17,-5,-25v2,1,6,2,5,-2v-15,-1,-7,-9,-29,-10r0,-42v5,1,4,3,6,4v0,-6,-6,-5,-6,-10v22,2,29,-24,22,-39v1,1,1,3,-1,3v-5,-7,-12,-10,-21,-11v2,-10,-6,-30,8,-28v-1,-2,-6,0,-8,0xm116,-237v-2,-3,-4,-1,-5,2v3,1,2,-2,5,-2xm129,-226v-1,-7,-4,-3,-1,0r1,0xm124,-221v-4,0,-7,-1,-7,3v2,-1,8,1,7,-3xm136,-210v0,-4,-4,-6,-3,0r3,0xm129,-207v0,-4,-9,-5,-9,-4v2,8,1,9,9,4xm100,-211v-3,1,-3,1,-1,3v3,1,1,-2,1,-3xm146,-208v2,2,5,10,7,6v-1,-4,-4,-5,-7,-6xm171,-207v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm125,-202v-2,2,1,5,3,4v1,-3,-2,-3,-3,-4xm142,-198v5,2,-3,8,0,10r11,-2v-3,-5,-7,-8,-11,-8xm156,-198v1,0,2,3,2,1xm128,-197v0,3,-3,10,3,8v2,-4,3,-8,-3,-8xm157,-190v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm167,-189v-2,0,-2,2,-2,4v3,1,2,-2,2,-4xm127,-178v-1,-2,-5,-1,-4,2xm139,-178v-4,-1,-7,2,-3,4v1,0,2,-2,3,-4xm148,-176v-3,1,-5,5,-1,5xm164,-167v0,-2,3,-4,2,0r-2,0xm168,-164v-1,-4,1,-5,5,-3v1,5,-5,8,-5,3xm115,-156v2,-1,-2,-7,-1,-2xm163,-151v1,-7,3,-12,7,-7xm133,-158v-4,0,-6,3,-3,5v7,1,9,-3,16,0v0,-2,-5,-3,-13,-5xm126,-146v-2,-2,-7,1,-2,2xm104,-139v-4,-3,-9,3,-2,2xm130,-133v0,-1,3,-2,1,-2xm122,-132v-2,2,0,7,3,6xm107,-122v0,0,-6,-6,-5,-2xm139,-62v1,3,3,6,0,8v9,1,3,6,14,8v1,-4,1,-10,7,-7v-5,-4,-13,-2,-8,-10v7,2,19,-4,6,-3v-7,-3,-6,-17,5,-14v-2,5,2,8,2,1r-1,-6v2,1,4,0,4,-2v5,-9,7,-20,2,-25v-5,-3,-20,3,-20,-10v8,-1,10,0,2,-4v-10,7,-9,10,-5,20v4,-5,17,-9,21,1v-12,7,3,15,-12,17v1,12,-16,6,-9,25xm125,-110v-2,-1,-7,2,-2,2xm128,-108v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm164,-105v-1,-1,-2,-2,-2,1xm149,-92v-1,-5,-7,-1,-7,2v1,2,1,2,5,2v-1,-2,-1,-4,2,-4xm179,-87v-4,0,-4,0,-2,2xm180,-67v1,-3,-2,-4,-2,-2xm172,-64v-11,-4,-1,5,-4,10v8,1,1,-5,4,-10xm181,-62v-3,0,-4,4,0,3r0,-3xm121,-48v-5,-5,-7,-10,0,-12v-1,2,12,11,0,12xm156,-44r-2,5v5,-2,5,-3,2,-5xm172,-34v-5,1,-5,-7,-1,-7v4,1,4,4,1,7xm102,-29v4,-5,-5,-11,-5,-3v3,0,5,1,5,3xm148,-33v0,-5,-3,-3,-1,0r1,0xm108,-15v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm88,-252v-2,9,1,9,-1,20v-2,0,-6,-2,-7,0v13,-1,7,17,8,28v-10,-2,-18,12,-23,9r1,-1v-8,13,-2,43,22,39r0,4v-3,-3,-6,3,-6,6v2,-1,1,-3,6,-4r0,42v-12,0,-14,6,-20,4v1,7,-8,3,-9,9r4,-1v-11,14,9,40,-13,43v1,8,11,-3,4,14v10,-1,15,-4,14,-14v6,3,15,4,20,7r0,42v-6,2,-3,-4,-5,-6v-1,12,-10,10,-21,9v-1,-5,3,-9,6,-15v-1,2,-4,2,-7,2v1,2,0,4,0,6v-3,-2,-6,7,-8,5v-21,-11,-18,-4,-36,-23v5,-7,13,-5,8,-11v-4,0,-8,0,-7,-5v9,0,8,-7,1,-7v1,3,2,4,-3,5v-6,0,-15,-2,-10,-8v-3,0,-6,-7,-6,-21v0,-21,14,-50,25,-49v0,-10,25,-12,25,-19v-9,0,-12,7,-20,0v4,-5,-3,-8,0,-15v-8,2,-3,-3,-4,-5v-5,3,-5,-2,-5,-7v4,-8,7,-10,7,-16v-8,2,-6,14,-16,11r-1,5v-2,0,-3,-5,-4,-16v-1,-37,29,-71,81,-67xm74,-235v-1,-4,-4,-4,-6,-2v3,0,2,3,6,2xm59,-230v-3,-1,-4,3,-2,4xm68,-218v0,-4,-5,-2,-8,-3v-1,4,5,1,8,3xm51,-214v0,1,-4,5,0,4r0,-4xm65,-211v-10,-1,-8,6,-3,8xm87,-210v0,0,-4,2,-2,2xm40,-207v-2,-3,-8,2,-8,6v3,2,5,-8,8,-6xm18,-207v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm60,-201v-1,-2,-1,0,-3,0v0,1,-1,3,1,3v1,0,1,-1,2,-3xm32,-190r11,2v-1,-4,-4,-8,0,-10v-4,0,-8,3,-11,8xm28,-198v-1,1,-2,0,-2,2xm57,-189v3,-3,-1,-11,-6,-7v1,3,0,8,6,7xm29,-190v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm17,-189v-1,3,2,6,2,1xm61,-176v1,-2,-3,-4,-3,-2xm46,-178v1,4,5,6,4,0r-4,0xm36,-176v1,4,3,7,4,2xm18,-170v1,1,4,4,0,3r0,-3xm11,-167v6,-4,8,5,4,6v-2,-1,-4,-3,-4,-6xm71,-160v-3,-1,-4,4,-2,4v1,-1,2,-2,2,-4xm18,-161v-1,2,7,7,3,10v-2,-3,-9,-7,-3,-10xm57,-155v-3,-8,-27,6,-14,0v4,-1,10,5,14,0xm62,-147v-2,0,-4,1,-2,3v2,1,2,-1,2,-3xm85,-140v-3,0,-5,1,-2,3v3,1,3,-1,2,-3xm55,-133r-3,-2xm62,-132v0,2,-4,5,-2,6v3,1,5,-5,2,-6xm83,-126v-3,0,-8,3,-5,4v2,-3,6,0,5,-4xm22,-67v-7,8,19,0,11,11v-2,-2,-5,2,-8,3v7,-2,5,1,7,7v11,-2,4,-7,13,-8v-5,-2,4,-9,-1,-7v-17,0,6,-21,-16,-20v4,-9,-14,-8,-5,-14v1,-4,-11,-12,-1,-14v1,-2,13,-6,12,3v9,-3,10,-14,-1,-20v-9,4,-8,2,1,4v3,17,-26,2,-20,15r-4,6r1,-1v9,3,-5,12,6,14v4,2,0,14,6,13v-2,-4,0,-6,5,-5v7,5,2,18,-6,13xm59,-110v0,1,5,4,5,0r-5,0xm59,-108v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm23,-106v-3,1,-3,1,0,2r0,-2xm41,-94v-10,-1,0,2,-4,6r6,0xm9,-87v-3,0,-3,1,-1,2xm7,-69v-1,-3,-2,2,-2,2xm17,-54v2,-7,-4,-16,-3,-8v-1,6,-5,7,3,8xm7,-60v-1,-2,-5,-4,-4,1v2,0,3,0,4,-1xm64,-60v6,1,4,7,0,12v-12,0,1,-10,0,-12xm31,-39v0,-4,-2,-6,-5,-3v0,1,2,2,5,3xm9,-38v1,-4,10,-4,8,2v-2,4,-6,1,-8,-2xm86,-36v-4,-1,-5,5,-3,7v0,-3,6,-3,3,-7xm39,-35v0,-2,-2,0,-3,0v0,0,0,2,1,2xm80,-15v-3,0,-5,0,-4,3v3,0,5,0,4,-3","w":193},"9":{"d":"85,-87v-79,7,-108,-85,-67,-135v-4,-10,13,-3,8,-12v10,-11,30,-17,60,-19r0,44v-3,-1,-3,1,-2,4v-37,6,-33,68,1,70r0,48xm21,-105v-1,4,-7,3,-7,-1v4,-1,3,2,7,1xm49,-144v5,1,4,-2,3,-5v-3,0,0,4,-3,5xm32,-152v2,2,3,0,1,-1xm23,-171v2,0,5,1,4,-2v-4,2,-7,-4,-7,0xm95,-48v40,-5,26,-77,26,-121v0,-18,-9,-30,-26,-36r0,-48v29,4,55,7,58,24v38,18,26,95,26,149v0,48,-31,80,-84,80r0,-48xm164,-19v1,8,-12,0,-4,1v0,0,0,2,1,2v0,-2,1,-3,3,-3xm152,-95v-5,-2,0,-9,-6,-8r-2,8r8,0xm146,-66v-2,1,-1,3,0,1r0,-1xm152,-173v0,4,5,1,6,0v0,0,0,-2,-1,-2v1,3,-3,2,-5,2","w":189},":":{"d":"0,-46v18,2,43,-4,57,2v-7,5,5,19,-1,30v0,-7,-4,-5,-8,-7v2,0,14,10,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v2,13,-8,7,-18,9v-4,-7,-13,4,-19,-4v2,7,-7,3,-11,4v1,-4,-2,-3,-5,-3v1,2,1,4,-2,3v-1,-11,-1,-26,0,-35r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4r0,-9xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm18,-22v-1,0,-5,0,-2,1xm21,-13v0,1,4,2,4,0r-4,0xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm0,-180v18,2,43,-4,57,2v-7,5,5,19,-1,30v1,-6,-6,-7,-8,-6v0,0,13,9,2,10v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v1,18,-18,3,-31,9v-5,-6,-20,4,-26,-2v5,-5,-4,-16,4,-21v-1,-3,-8,-7,-2,-12r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4r0,-9xm22,-179v-1,0,-5,4,-1,3xm17,-176v-3,-1,-7,3,-2,2xm27,-160v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-151v3,-3,-2,-11,-3,-8v6,4,-7,10,3,8xm18,-156v-2,-1,-5,1,-2,2xm21,-147v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm16,-144v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-142v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":70},";":{"d":"0,-180v18,2,43,-4,57,2v-7,5,5,19,-1,30v1,-6,-6,-7,-8,-6v0,0,13,9,2,10v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v1,18,-18,3,-31,9v-5,-6,-20,4,-26,-2v5,-5,-4,-16,4,-21v-1,-3,-8,-7,-2,-12r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4r0,-9xm22,-179v-1,0,-5,4,-1,3xm17,-176v-3,-1,-7,3,-2,2xm27,-160v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-151v3,-3,-2,-11,-3,-8v6,4,-7,10,3,8xm18,-156v-2,-1,-5,1,-2,2xm21,-147v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm16,-144v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-142v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm57,-50v1,7,-19,7,-8,15v2,-1,5,-7,8,-4v-1,17,3,40,-3,52v5,6,6,40,-1,41v0,-2,2,-5,-1,-5v-2,5,-1,6,1,10r-19,0v2,-9,9,-20,11,-25v-11,2,-9,4,-14,9v5,2,8,17,-5,16r-25,-1r-1,-88v13,-5,-6,-12,2,-19v-1,6,8,10,13,6v-1,-1,-1,-3,0,-5v-4,1,-11,2,-12,-3v12,1,28,-2,38,1r-8,4v11,5,14,-5,24,-4xm54,-18v0,-2,-2,-2,-3,-3v1,1,0,4,3,3xm54,-14v0,-2,-1,-3,-3,-3v1,1,0,4,3,3xm50,18v-3,8,0,7,-6,15v3,-1,11,-10,6,-15xm46,-18v-1,0,-5,0,-2,1xm44,-34v-2,-3,-8,1,-9,3v3,1,7,6,9,4v-4,-2,-6,-5,0,-7xm37,8v0,2,-1,5,2,4v-2,-1,2,-5,-2,-4xm35,-17v0,-1,3,-4,1,-4v-3,0,-4,2,-1,4xm33,30v3,-2,2,-7,-2,-4v0,2,1,3,2,4xm21,-35v3,6,17,-7,10,-5v0,4,-3,5,-10,5xm28,27v0,-2,-3,-1,-4,-1v0,2,3,1,4,1xm26,45v1,-4,-4,-1,-5,-1v2,2,3,4,5,1xm22,-19v2,-4,-1,-11,-7,-5v2,3,2,8,7,5xm23,17v0,-3,-1,-5,-5,-4v-2,4,2,4,5,4xm20,-35v0,-2,-2,-7,-3,-5v1,2,0,6,3,5xm9,26v2,4,14,-2,8,-2xm6,4v2,-1,3,-5,-1,-4xm8,27v0,-3,-2,-3,-6,-3v2,1,2,4,6,3","w":70},"\u037e":{"d":"0,-180v18,2,43,-4,57,2v-7,5,5,19,-1,30v1,-6,-6,-7,-8,-6v0,0,13,9,2,10v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v1,18,-18,3,-31,9v-5,-6,-20,4,-26,-2v5,-5,-4,-16,4,-21v-1,-3,-8,-7,-2,-12r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4r0,-9xm22,-179v-1,0,-5,4,-1,3xm17,-176v-3,-1,-7,3,-2,2xm27,-160v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-151v3,-3,-2,-11,-3,-8v6,4,-7,10,3,8xm18,-156v-2,-1,-5,1,-2,2xm21,-147v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm16,-144v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-142v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm57,-50v1,7,-19,7,-8,15v2,-1,5,-7,8,-4v-1,17,3,40,-3,52v5,6,6,40,-1,41v0,-2,2,-5,-1,-5v-2,5,-1,6,1,10r-19,0v2,-9,9,-20,11,-25v-11,2,-9,4,-14,9v5,2,8,17,-5,16r-25,-1r-1,-88v13,-5,-6,-12,2,-19v-1,6,8,10,13,6v-1,-1,-1,-3,0,-5v-4,1,-11,2,-12,-3v12,1,28,-2,38,1r-8,4v11,5,14,-5,24,-4xm54,-18v0,-2,-2,-2,-3,-3v1,1,0,4,3,3xm54,-14v0,-2,-1,-3,-3,-3v1,1,0,4,3,3xm50,18v-3,8,0,7,-6,15v3,-1,11,-10,6,-15xm46,-18v-1,0,-5,0,-2,1xm44,-34v-2,-3,-8,1,-9,3v3,1,7,6,9,4v-4,-2,-6,-5,0,-7xm37,8v0,2,-1,5,2,4v-2,-1,2,-5,-2,-4xm35,-17v0,-1,3,-4,1,-4v-3,0,-4,2,-1,4xm33,30v3,-2,2,-7,-2,-4v0,2,1,3,2,4xm21,-35v3,6,17,-7,10,-5v0,4,-3,5,-10,5xm28,27v0,-2,-3,-1,-4,-1v0,2,3,1,4,1xm26,45v1,-4,-4,-1,-5,-1v2,2,3,4,5,1xm22,-19v2,-4,-1,-11,-7,-5v2,3,2,8,7,5xm23,17v0,-3,-1,-5,-5,-4v-2,4,2,4,5,4xm20,-35v0,-2,-2,-7,-3,-5v1,2,0,6,3,5xm9,26v2,4,14,-2,8,-2xm6,4v2,-1,3,-5,-1,-4xm8,27v0,-3,-2,-3,-6,-3v2,1,2,4,6,3","w":70},"<":{"d":"142,-179v0,0,-1,5,0,1r0,-1xm155,-182v0,1,1,3,1,1xm181,-191v-3,1,-3,6,-3,10v9,1,5,-4,3,-10xm131,-175v0,1,0,5,1,2xm113,-153r1,3xm73,-129r-73,0r0,-13r187,-68r0,40xm54,-155v0,2,2,1,3,1xm61,-149v0,-4,-3,-2,-1,0r1,0xm27,-139v-4,5,-2,5,6,7v-2,-2,-3,-6,-6,-7xm76,-147v-2,-7,10,-4,2,-12v-7,0,-1,10,-12,5v1,4,6,3,10,7xm52,-138v-4,-1,-4,6,-4,7v1,-5,4,-3,4,-7xm54,-130r1,-3xm86,-150v-3,1,-1,4,0,2r0,-2xm57,-141v0,3,2,2,4,4v-3,-3,-1,-4,-4,-4xm91,-145v3,-3,7,-4,1,-7v-1,0,-1,2,-1,7xm64,-137v-2,0,0,2,0,3r0,-3xm46,-149v0,0,-8,7,-2,6v-1,-3,4,-7,2,-6xm19,-139v-4,0,-4,4,0,2r0,-2xm108,-165v0,1,-3,4,-1,4xm86,-164v0,2,4,4,7,2v1,-5,-3,1,-7,-2xm110,-170v-4,0,-2,3,0,1r0,-1xm115,-166v-1,2,1,5,1,1xm119,-172v0,1,-2,4,1,3v1,-1,1,-3,-1,-3xm99,-158v0,2,0,2,2,2v0,-2,0,-2,-2,-2xm52,-110v2,-1,-1,-4,-1,-2xm37,-114v4,0,1,-3,0,-1r0,1xm8,-116v5,1,9,1,6,-5r58,0r114,42r0,40r-186,-68r0,-14r10,0xm62,-109v0,1,-2,3,0,3r0,-3xm79,-85v2,1,3,-2,1,-2xm159,-63v-3,-1,-2,-11,-4,-6v1,4,3,6,4,6xm139,-88v0,-2,-3,0,-3,0r3,0xm132,-83v0,0,2,-3,0,-2r0,2xm140,-72v-3,-3,-7,-2,-9,3v4,1,6,-4,9,-3xm179,-67v4,-1,4,-5,1,-6v1,2,-3,4,-1,6xm125,-84v1,-2,4,-5,-2,-4v-1,2,-5,3,-4,-2v1,-3,-4,-3,-6,-2v-2,13,8,7,12,8xm116,-68v0,0,-3,-10,-4,-4v2,0,3,1,4,4xm110,-67v-1,-1,0,-3,-2,-3v1,2,1,3,2,3xm109,-82v-1,-2,-2,-3,-2,1xm107,-76v0,0,0,-2,-1,-2v0,0,-6,5,-2,5v0,-2,2,-2,3,-3xm102,-79v1,-10,-3,-7,-5,-3v2,0,4,1,5,3xm101,-72v0,0,0,-2,-1,-2r0,3xm174,-51v5,-3,0,-11,-3,-6v3,0,3,3,3,6xm152,-77v-2,-4,-3,-6,-6,-6v3,-1,1,7,6,6xm163,-61v0,-1,-1,-3,-1,-1xm148,-73v1,-3,-2,-2,-4,-2v-1,3,2,2,4,2xm154,-59v-2,0,0,-2,-2,-2v0,2,0,2,2,2xm152,-63v1,-2,-3,-4,-2,-1xm86,-95v0,0,-2,-7,-1,-2v1,0,1,1,1,2xm100,-96v4,3,11,-4,3,-1v-2,-1,-4,-3,-3,1xm85,-102v0,0,-2,-3,-2,-1xm78,-100v0,1,-2,3,0,3r0,-3xm75,-103v0,-2,-1,-4,-3,-2v0,1,1,2,3,2xm94,-90v0,-2,0,-2,-2,-2v0,2,0,2,2,2","w":197},"=":{"d":"0,-182v-1,-11,19,-6,25,-4v-1,1,-4,3,-1,4v2,0,3,-2,3,-6v12,0,26,-2,33,4v-1,-1,-1,-2,-1,-4r22,0r0,3v1,-2,4,2,4,-1r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,44r-116,-1v-1,-12,2,-33,0,-39xm11,-178v-3,0,-4,3,0,3v1,-1,1,-2,0,-3xm83,-175v-1,4,-8,0,-8,6v6,1,7,-2,8,-6xm41,-171v-2,-2,-4,-2,-3,2xm21,-169v-2,-1,-2,1,-2,3v1,0,2,-1,2,-3xm74,-167v-1,1,-3,2,0,2r0,-2xm13,-152v4,-3,-3,-12,-7,-10v3,2,6,3,7,10xm40,-153v-2,-1,-5,1,-2,2xm14,-151v-2,-1,-7,2,-2,2xm60,-151v-3,-1,-5,5,-3,5v1,-2,3,-2,3,-5xm17,-148v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm72,-146v-2,0,-1,3,0,4r0,-4xm0,-118v0,-9,20,-5,25,-3v-2,0,-3,4,-1,4v2,0,3,-2,3,-6v12,-1,28,0,33,3r-1,-3v10,0,18,0,26,2r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,44v-25,-2,-57,3,-78,-2v-8,4,-29,4,-38,0v-1,-12,2,-33,0,-39xm8,-112v2,1,3,3,4,0v-1,-1,-3,-1,-4,0xm83,-110v-4,1,-8,1,-8,6v6,1,7,-2,8,-6xm41,-106v-2,-2,-4,-2,-3,2xm21,-103v-1,-3,-2,2,-2,2xm74,-103v-1,1,-4,4,0,3r0,-3xm7,-98v0,2,6,11,8,9v-2,-4,-4,-7,-8,-9xm40,-88v-1,0,-5,0,-2,1xm14,-87v-2,-1,-7,2,-2,2xm60,-87v-3,-1,-5,6,-3,6v1,-2,4,-2,3,-6xm17,-83v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm72,-81v-2,0,0,3,0,3r0,-3","w":131},">":{"d":"45,-176v3,-1,1,-4,0,-2r0,2xm31,-180v3,0,1,-4,0,-1r0,1xm6,-191v-3,2,-6,11,0,9r2,1v0,-4,-1,-7,-2,-10xm54,-172v4,0,2,-4,0,-1r0,1xm73,-150v1,-1,3,-4,0,-3v-1,1,-1,2,0,3xm113,-129r-113,-41r0,-40r187,68r0,13r-74,0xm132,-154v0,-2,-2,0,-3,0r3,0xm128,-150v0,-2,-2,-1,-3,-1v-1,3,2,2,3,1xm154,-132v6,-1,10,-4,4,-7xm111,-147v2,-4,9,-3,9,-7v-9,5,-6,-6,-13,-4v1,4,-2,4,-3,6v3,1,8,0,7,5xm139,-131v0,0,-4,-10,-4,-5v2,0,3,2,4,5xm133,-130v-1,-1,0,-3,-2,-3v1,2,1,3,2,3xm103,-148v-2,-2,-4,-2,-2,1xm125,-137v3,0,4,-2,4,-4v-1,0,-2,1,-4,4xm96,-145v0,-9,-3,-7,-5,-3v2,0,4,1,5,3xm124,-135v-1,-1,-1,-3,-1,0r1,0xm146,-143v-2,-4,-4,-6,-6,-6v3,-1,1,7,6,6xm170,-136v0,0,-4,-5,-3,-1xm81,-161v-1,-1,-3,-7,-3,-2v1,0,1,3,3,2xm100,-164v-3,4,-7,-3,-6,2v2,2,6,0,6,-2xm78,-168v0,-1,-1,-3,-1,-1xm71,-166v0,1,-2,3,0,3r0,-3xm69,-169v0,-2,-1,-4,-3,-2v-1,2,1,2,3,2xm87,-156v0,0,0,-2,-1,-2v0,0,0,2,1,2xm133,-112v1,2,2,3,2,-1xm147,-116v0,2,3,3,2,0r-2,0xm172,-121v-2,6,4,8,6,4r-2,-4r11,0r0,14r-187,68r0,-40r115,-42r57,0xm124,-109v-1,2,1,5,2,2xm105,-87v0,2,1,2,3,2v0,-1,-1,-2,-3,-2xm30,-71v1,3,-3,7,-2,8v1,0,3,-2,4,-6xm48,-89v1,2,5,1,1,0r-1,0xm55,-85v-4,-1,-3,2,-1,2v1,0,1,-1,1,-2xm55,-69v-2,-4,-6,-8,-8,-3v3,-1,4,3,8,3xm6,-73v-3,3,0,8,3,4v-2,-1,-3,-3,-3,-4xm76,-86v-2,-4,-8,-11,-9,0v-1,-1,-7,-4,-7,0v2,0,0,2,2,2v0,0,0,-2,1,-2v4,0,6,10,6,1xm75,-74v-3,0,-6,7,-4,6v1,-5,4,-2,4,-6xm77,-67v1,0,1,-1,2,-3v-2,-1,-2,1,-2,3xm80,-84v-3,1,-3,3,0,2r0,-2xm84,-73v-2,-5,-5,-7,-3,-2v1,0,1,3,3,2xm84,-79v3,-4,7,-3,2,-7v-1,0,-2,2,-2,7xm86,-74v0,1,-2,2,0,2r0,-2xm12,-59v-1,0,-3,10,0,6v1,-4,7,-5,0,-6xm40,-83v0,0,-9,6,-3,6v0,-3,1,-6,3,-6xm24,-62r-1,1xm39,-75v-1,2,1,2,3,2v1,-2,-1,-2,-3,-2xm33,-59v2,0,2,0,2,-2v-2,0,0,2,-2,2xm36,-66r-1,3xm102,-99v-2,0,-4,5,-1,4xm80,-98v0,2,4,4,6,2v1,-5,-3,2,-6,-2xm102,-102v0,-1,2,-2,0,-2r0,2xm109,-100v-1,2,1,5,1,1xm112,-106v-1,2,-1,4,2,3v0,-2,-1,-3,-2,-3xm93,-92v0,0,0,2,1,2v0,0,0,-2,-1,-2","w":198},"?":{"d":"71,-150v0,0,-5,0,-3,1xm82,-142v-1,-3,-5,-1,-2,0r2,0xm92,-133v-6,0,-11,0,-13,4r12,5xm96,-122v0,-4,-6,-2,-2,0r2,0xm58,-119v0,-2,-3,-4,-2,-1v1,1,1,3,2,1xm72,-237v-1,-1,0,-2,-2,-2v0,1,0,2,2,2xm0,-207v1,-15,-3,-35,2,-46v68,-3,130,0,132,63v-3,1,-1,34,-5,15v-11,4,-4,-9,-14,-7v-1,-1,0,-4,-2,-4v-1,10,10,13,6,25r-5,-1v3,3,3,5,-3,4v3,11,3,18,-5,24r0,19v-13,-5,-11,7,-23,7v4,0,12,7,15,5v-4,0,-1,-4,-2,-7v13,0,0,8,10,12v1,9,-2,14,-6,18v4,1,5,-1,6,-3r0,27r-13,0v1,0,5,-1,4,-4v-11,7,-31,3,-48,4v-1,-8,0,-23,8,-14v4,0,17,-1,8,-3v1,-5,-11,1,-7,-7v0,-6,-11,-9,-9,-18r3,0v-5,-15,-3,-37,-4,-56v12,-3,40,-17,29,-35v-3,-25,-52,-11,-77,-18xm58,-66v-1,5,-9,2,-2,9v0,-4,3,-5,7,-5v-1,-2,-3,-3,-5,-4xm90,-67v-1,1,-3,1,0,1r0,-1xm80,-69v-13,2,-9,1,-6,7v4,0,1,-6,6,-7xm85,-75v-1,0,-3,-1,-3,1v0,1,2,3,6,5xm77,-78v-3,2,-5,4,1,3xm97,-79v-2,1,-5,0,-4,3v2,-1,4,-2,4,-3xm96,-89v-3,2,-12,5,-7,7v-1,-3,7,-3,7,-7xm105,-97v-2,1,-7,-1,-6,3v3,0,7,1,6,-3xm73,-99v-3,-4,-5,-1,-5,3v7,6,-13,4,-4,13v10,3,4,-6,14,-7v0,-1,-12,-6,-5,-9xm62,-97v-5,-6,-12,-1,-3,3v2,0,2,-2,3,-3xm66,-133v-7,4,-2,8,4,11v0,-5,-5,-7,-4,-11xm74,-112v-2,-1,-2,1,-2,3v3,1,4,-1,2,-3xm105,-123v0,-5,-3,-4,-4,0v0,2,3,0,4,0xm89,-159v-4,0,-7,4,-3,6v7,1,9,-3,16,0v0,-2,-5,-4,-13,-6xm72,-157v1,-3,-2,-4,-2,-2xm105,-177v-3,0,-6,6,-2,6xm90,-178v0,3,3,4,5,0r-5,0xm83,-178v0,-2,-3,1,-3,1xm123,-190v0,1,-2,4,0,4r0,-4xm114,-187v-1,-7,-3,-3,-1,0r1,0xm89,-196v-6,-3,-7,3,-5,7v5,1,4,-4,5,-7xm114,-197r0,1r0,-1xm98,-199v5,3,-2,9,0,11r11,-3v-3,-5,-7,-8,-11,-8xm82,-202v-1,1,1,6,2,3v0,-2,0,-4,-2,-3xm127,-207v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm102,-209v2,2,4,9,7,7v-1,-4,-4,-6,-7,-7xm57,-209v0,-2,-4,-3,-2,0r2,0xm77,-212v-1,6,2,12,8,4v0,-4,-5,-2,-8,-4xm92,-211v-2,-4,-4,-6,-3,0r3,0xm81,-220v-1,-2,-8,-1,-8,1xm85,-227v0,-5,-4,-2,-1,0r1,0xm61,-232v-3,-2,-11,-4,-11,-2v3,4,5,3,11,2xm5,-238v-1,0,-1,0,-1,1v2,0,5,2,5,0xm48,-243v-1,2,2,7,2,2xm55,-245v-2,0,-4,0,-3,2v1,-1,3,0,3,-2xm24,-248v-2,-2,-5,-6,-4,1xm70,-236r-3,0r3,0xm121,-168v0,-2,3,-3,2,0r-2,0xm50,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm105,-113v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm54,-154v-3,3,3,3,5,5v-1,-2,-2,-5,-5,-5xm58,-110v0,-2,-2,0,-3,0r3,0xm94,-121v-3,2,-11,3,-9,5v5,-2,8,-3,9,-5xm120,-152v-2,-3,4,-12,6,-7xm126,-161v-3,0,-2,-7,-1,-8v7,-1,5,6,1,8xm50,-46v18,2,43,-4,57,2v-2,3,-6,7,0,5v-1,8,3,21,-2,25v1,-7,-4,-5,-7,-7v0,0,12,9,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,3,-5,8,-4v1,19,-20,1,-31,9v-6,-6,-6,1,-17,0v1,-4,-3,-3,-6,-3v0,2,3,0,2,3v-8,-1,-2,-6,-5,-18v7,-5,-4,-12,2,-17v2,0,7,3,8,1v-5,0,-5,-5,-8,-7v0,2,1,5,-2,4r0,-9xm72,-46v-1,0,-5,5,-1,4xm67,-42v-3,-1,-7,3,-2,2xm77,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm85,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm68,-22v-1,0,-5,0,-2,1xm70,-13v2,0,5,2,5,0r-5,0xm66,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm93,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":145},"@":{"d":"95,-66v2,0,2,6,3,4v-3,-7,7,-8,2,-11v-2,-1,-2,5,-5,7xm88,-14v-2,0,-4,0,-3,2v2,-1,3,-1,3,-2xm103,-17v-4,-3,-7,2,-2,2v0,-2,2,0,2,-2xm107,-24v-3,5,2,10,-5,11v1,5,8,-7,10,4v3,0,3,-10,2,-12v-3,0,-1,4,-1,7v-5,-1,-6,-6,-6,-10xm112,-29v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm123,-25v3,-3,-1,-6,-4,-4v3,2,2,4,4,4xm95,-36v-3,2,-5,6,-1,3v2,-1,2,-1,1,-3xm92,-36v0,-2,-3,0,-4,0v0,3,3,2,4,0xm98,-47v-1,4,2,3,4,1v0,-2,-3,1,-4,-1xm108,-48v3,0,6,-1,2,-2v-2,0,-2,0,-2,2xm112,-53v0,-1,-2,-4,-2,-2xm105,-56v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm117,-60v-2,0,-1,2,-1,3xm97,-60v-1,0,-3,-1,-3,1r4,1xm108,-68r-1,1xm115,-73v4,2,4,10,6,4v-1,-2,-2,-4,-6,-4xm124,-80v0,-2,-2,-3,-2,0r2,0xm106,-89v-2,0,-2,1,-1,2xm112,-98v-1,2,-8,8,-2,7v-1,-5,2,-4,2,-7xm115,-110v-2,0,-4,0,-3,2v1,-1,3,0,3,-2xm124,-130v0,1,2,3,2,1xm163,-252v112,-7,201,133,119,217v-24,25,-36,30,-82,30v-7,-26,-11,-39,-12,-39r-50,0r9,-33v10,-1,23,2,31,-1v-10,-27,-12,-51,-19,-66r-40,139r-36,0v3,-10,-4,-24,5,-25v-9,-2,0,-14,2,-23v1,0,2,2,2,0v-3,-14,14,-25,10,-33v0,4,0,4,-2,4r36,-104r47,0r57,161v34,-8,43,-49,43,-90v0,-70,-53,-130,-125,-128v-77,2,-126,69,-128,150v-3,134,131,203,233,121r0,13v-107,79,-267,1,-263,-130v2,-93,70,-157,163,-163","w":319},"A":{"d":"0,-37r16,-48v3,0,3,9,5,5v-4,-8,9,-11,2,-14v-3,-1,-2,7,-7,9v3,-6,0,-18,9,-18v-1,2,1,2,3,2v-3,-5,1,-10,-2,-12v0,5,0,8,-3,7v9,-17,10,-49,23,-58v-1,-26,20,-59,27,-88r66,0r89,252r-65,0v-10,-36,-16,-54,-17,-54r-70,0r13,-46v14,-1,31,2,43,-1v-13,-38,-19,-71,-27,-93v0,7,-11,51,-35,130r-20,64r-50,0v-1,-7,2,-15,0,-20v1,1,3,1,3,-1v-6,1,-2,-7,-3,-11v2,-3,10,-1,4,-5v-1,2,-3,0,-4,0xm60,-172v-1,-1,-5,-4,-4,0r4,0xm44,-145v-1,-2,-6,-2,-5,1xm40,-130v-4,5,-5,7,-7,11v6,-1,5,-6,7,-11xm31,-117v-3,-1,-2,2,-1,3xm56,-105v-1,0,-2,-2,-2,0r2,0xm45,-94v5,2,3,13,8,6v-2,-2,-4,-6,-8,-6xm35,-88v-1,1,-2,0,-2,2xm19,-76v-1,0,-4,-1,-4,1r5,2xm47,-73v-1,-2,-1,-4,-1,0r1,0xm30,-71v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm39,-67v2,-1,-2,-3,-2,-3xm38,-62v0,2,-5,-2,-4,2v3,0,9,0,4,-2xm26,-58v-2,-1,-8,3,-3,4v-1,-2,4,-1,3,-4xm12,-42v-1,-5,-3,0,-6,0v2,2,4,2,6,0xm16,-42v-2,2,-4,2,-5,5v3,0,7,-2,5,-5xm54,-27v4,-3,1,-10,-4,-6v2,2,4,4,4,6xm38,-30v3,-1,-1,-5,-1,-2xm35,-25v-8,1,2,16,-9,14v1,8,12,-10,14,7v4,-2,4,-16,2,-18v-4,1,-1,6,-1,10v-4,-3,-11,-6,-6,-13xm28,-16v-7,-6,-9,2,-3,3v-1,-2,3,-1,3,-3xm6,-12v-2,0,-4,0,-3,3v2,-1,3,-2,3,-3","w":234},"B":{"d":"66,-250v56,-8,137,-4,134,61v0,1,-3,32,-5,15v-11,4,-4,-10,-14,-7v0,-2,1,-5,-2,-4v-1,9,10,12,6,24r-5,-1v3,3,4,6,-3,5v4,12,-6,25,-13,15v-3,0,-8,-2,-7,3v4,0,23,9,25,16v8,0,27,25,22,42v8,12,-4,30,-3,35v-12,4,-13,-6,-19,-2v-3,5,13,4,4,10v-4,0,-7,0,-6,4v2,0,5,2,10,7v-18,19,-16,12,-36,23v-2,-2,-12,-6,-8,-11v-3,1,-7,-2,-7,-1v4,5,6,9,6,14v-11,2,-18,2,-22,-9r0,6v-9,-1,-2,2,-5,5v-17,-1,-39,3,-52,-2v1,-14,-3,-35,2,-45v13,1,30,-2,40,2r-1,-1v11,-2,21,-3,32,-8v-1,8,3,14,14,14v1,-4,-7,-9,0,-13v2,1,3,7,3,-1v-20,-3,-1,-31,-12,-43v2,1,5,1,4,-2v-9,-11,-53,-10,-82,-13v1,-14,-3,-34,2,-44r44,0v9,6,38,-10,33,-33v-5,1,1,-8,-4,-7v1,1,1,3,-1,3v-10,-21,-51,-6,-74,-14r0,-43xm90,-248v-2,-2,-5,-5,-4,1xm121,-244v-2,0,-4,0,-3,2v1,-1,3,0,3,-2xm116,-239v0,-2,-3,-4,-2,0r2,0xm139,-237v-1,-3,-6,-2,-6,2v4,1,3,-2,6,-2xm72,-238v0,0,-2,0,-2,1v1,2,4,3,5,0xm127,-232v-4,0,-11,-3,-11,-1v3,4,6,2,11,1xm151,-226v-1,-7,-4,-3,-1,0r1,0xm147,-221v-4,0,-8,-1,-8,3v3,-1,8,1,8,-3xm156,-214v-1,2,1,6,2,3v-1,-2,-1,-3,-2,-3xm143,-212v-1,5,1,12,8,5v0,-4,-6,-2,-8,-5xm122,-211v-2,1,-2,1,-1,3v3,1,1,-2,1,-3xm168,-208v2,2,5,10,7,6v-1,-4,-4,-5,-7,-6xm193,-207v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm147,-202v1,2,3,7,3,1xm164,-198v5,2,-3,8,0,10r11,-2v-3,-5,-7,-8,-11,-8xm179,-198v1,0,2,3,2,1xm156,-196v-6,-3,-9,3,-6,7v6,1,5,-4,6,-7xm180,-186v-1,-7,-3,-3,-1,0r1,0xm189,-189v-1,0,-2,4,0,4r0,-4xm149,-178v-1,-2,-3,2,-3,2xm161,-178v-4,-1,-7,2,-3,4v1,0,2,-2,3,-4xm171,-176v-3,1,-6,5,-2,5xm187,-167v0,-2,3,-4,2,0r-2,0xm196,-167v0,3,-4,8,-6,5v0,-4,0,-8,6,-5xm138,-160v-2,0,-2,0,-2,2r3,2xm186,-151v-3,-4,4,-14,6,-7xm156,-158v-4,0,-8,3,-4,5v7,1,9,-3,16,0v0,-2,-4,-3,-12,-5xm124,-147v0,0,-5,-11,-5,-4v4,1,5,2,5,4xm148,-146v-2,-1,-4,-1,-3,2v2,0,3,-1,3,-2xm126,-139v-3,-3,-8,3,-2,2xm155,-135v-1,0,-4,2,-2,2xm145,-132v-4,1,0,7,2,6xm130,-122v0,0,-7,-6,-6,-2xm174,-126v-11,7,-10,15,-2,20v1,-10,16,-5,18,1v-12,8,4,15,-11,17v3,13,-14,2,-9,16v-4,5,3,10,-9,12v3,0,2,5,1,6v9,1,2,6,13,8v1,-4,1,-10,7,-7v-5,-4,-13,-2,-8,-10v7,2,19,-3,7,-3v-7,0,-6,-11,-2,-14v9,-2,2,5,8,6v1,-4,1,-7,0,-11v2,2,3,0,3,-2v8,-10,3,-17,5,-25v-5,-2,-22,4,-23,-10v6,-1,8,-1,2,-4xm102,-117r5,0v-2,-2,-4,-2,-5,0xm147,-110v-3,-1,-6,2,-1,2xm150,-108v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm187,-105v-1,0,-4,-2,-3,1xm172,-92v-2,-4,-8,-1,-8,2v0,3,2,2,6,2v-2,-2,-2,-4,2,-4xm201,-87v-3,0,-3,0,-2,2xm202,-67v1,-3,-2,-4,-2,-2xm195,-64v-10,-5,-2,5,-5,10v10,1,1,-6,5,-10xm204,-62v-3,0,-5,2,-3,3v2,0,4,0,3,-3xm143,-48v-7,-12,-1,-14,6,-4v-1,2,-2,4,-6,4xm112,-44v-6,2,-4,5,0,6v3,-1,1,-4,0,-6xm181,-42v-2,-3,-4,-1,-5,2v1,2,5,-1,5,-2xm102,-42v-1,0,-3,-1,-3,1v0,2,4,3,8,3v-1,-2,-2,-4,-5,-4xm194,-34v-5,1,-5,-7,-1,-7v5,1,5,4,1,7xm95,-30v-1,-6,-4,-11,-10,-2v2,0,7,8,10,2xm124,-29v4,-4,-4,-11,-4,-3v3,0,4,1,4,3xm170,-36v0,0,-2,0,-2,1v2,2,5,2,2,-1xm116,-24v2,-6,-7,-6,-8,-3v0,4,2,2,8,3xm92,-21v-2,2,-1,3,1,1xm130,-15v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm104,-14v-1,4,3,3,3,2v0,-1,-1,-1,-3,-2xm108,-9v-3,-1,-3,1,-3,4v3,1,2,-2,3,-4xm105,-4v-1,-3,-8,-3,-8,1v2,-1,7,1,8,-1xm5,-90v-11,0,1,-13,-5,-17v2,-47,-4,-103,2,-146v18,1,41,-3,55,2v1,12,1,31,-9,15v-2,3,6,11,0,13r9,-4r0,112v-13,-7,-10,12,-21,5v0,1,-3,3,-1,3v6,-2,17,11,11,2v-2,-6,6,-7,8,-3v-5,6,10,19,-3,28v4,1,3,-3,6,-3v0,15,1,37,-3,45r3,-1v-1,8,3,21,-2,25v1,-7,-4,-5,-7,-7v0,0,12,9,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,3,-5,8,-4v1,19,-20,2,-31,9v-6,-6,-6,2,-17,0v1,-4,-3,-3,-6,-3v0,2,3,0,2,3v-8,-1,-2,-6,-5,-18v7,-5,-4,-12,2,-17r9,2v-5,-1,-6,-5,-9,-8v0,2,1,5,-2,4v1,-11,-5,-43,8,-33v6,-1,16,0,8,-4v-11,-1,-7,-4,-11,-16xm20,-248v0,0,-5,0,-3,1xm30,-239v0,-2,-3,-4,-2,0r2,0xm28,-227r12,6v-1,-4,-1,-7,1,-9v-6,-1,-10,1,-13,3xm45,-219v0,-4,-6,-2,-2,0r2,0xm5,-219v-1,1,1,4,2,2v0,-2,-1,-1,-2,-2xm51,-149v-4,2,0,12,2,6xm54,-127r-2,5v3,0,3,-2,2,-5xm9,-122v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm45,-121v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm20,-117v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm2,-114v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm25,-112v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm55,-113v4,0,1,6,2,9v-3,1,-3,-7,-2,-9xm31,-104v-5,3,-1,9,5,12v1,-6,-6,-7,-5,-12xm13,-97v-5,-6,-12,-1,-3,3v2,0,2,-2,3,-3xm21,-101v-6,3,6,13,-7,10v-3,5,-1,10,6,7v0,1,-1,4,1,4v-4,-11,15,-9,2,-13xm55,-97v-2,1,-6,0,-5,3v3,0,6,1,5,-3xm46,-89v-3,2,-5,6,-9,4v2,7,3,-1,9,-2r0,-2xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm47,-79v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm28,-78v-3,2,-5,6,0,3r0,-3xm36,-74v-1,0,-3,-1,-3,1v0,1,2,2,6,4v0,-3,-2,-2,-3,-5xm31,-69v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm41,-67v-1,1,-3,0,-3,2r4,0xm14,-62v-3,-6,-9,-1,-11,-1v0,4,2,4,4,6v0,-4,3,-5,7,-5xm48,-60v-9,4,-12,8,0,4r0,-4xm20,-58v-2,-1,-6,3,-2,2xm54,-55v-3,-1,-2,2,-3,4v3,1,3,-1,3,-4xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm18,-22v-1,0,-5,0,-2,1xm20,-13v2,0,5,2,5,0r-5,0xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm55,-113v4,0,1,6,2,9v-3,1,-3,-7,-2,-9xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8","w":218},"C":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-36,19r-7,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-4,5,-9,3v-2,9,-12,4,-7,13v7,-5,12,-13,22,-6v2,10,-8,5,-6,12v4,-3,7,3,5,7v-11,-6,-3,8,-11,9v0,-5,3,-10,4,-15v-5,11,-13,4,-8,17v0,0,-1,-2,-1,0v2,0,2,2,3,6v-4,1,-20,1,-16,-7v-23,-1,-30,-6,-51,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm140,-48v6,2,24,-21,32,-21v-6,-3,-2,-2,4,-10v-2,-5,0,-6,4,-6v3,-1,2,3,4,3v1,-6,-9,1,-6,-12r50,27v-14,34,-65,75,-102,65v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1xm186,-156v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76v-1,-5,1,-7,3,-1xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm46,-210v-2,0,-4,1,-4,4v3,-1,4,-2,4,-4xm225,-176v-2,1,-13,3,-5,3v2,-1,6,0,5,-3xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm14,-134v0,-2,-3,-4,-2,-1xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-4,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm21,-108v1,-1,4,-2,2,-2xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm186,-80r1,1xm64,-77v-2,0,-5,2,0,2r0,-2xm181,-72r0,5v3,0,2,-4,0,-5xm197,-72v-2,2,-3,5,1,4xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm176,-65r0,5v2,-2,2,-4,0,-5xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm43,-55v-3,0,-8,2,-2,4v1,-1,2,-2,2,-4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v4,-2,3,-4,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm160,-24v-2,0,-4,4,-1,3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-5,-1,-2,3,-1,5v5,0,2,-2,1,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-3,-3,-4,-4,-2v2,0,1,3,4,2xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm139,-9v1,-3,-3,-6,-2,-1xm103,-3v1,-8,12,-5,12,2v-6,3,-8,-3,-12,-2","w":241},"D":{"d":"103,-255v0,-4,2,-6,7,-5xm6,-229v0,-4,0,-8,-6,-7v1,-5,-2,-15,2,-17v15,1,34,-2,47,1v0,1,-2,3,0,3v3,-5,5,1,8,4r0,120v-1,-1,-3,-1,-3,1v2,2,5,9,2,12v1,-2,1,-2,-2,-2v-1,4,-2,12,-9,11v1,7,5,14,8,1r4,0v-2,33,3,73,-3,102v-12,-7,-45,9,-54,-5v3,-13,12,-14,7,-17v-2,2,-3,2,-7,8r0,-89v8,0,12,-11,9,-18v-3,0,-4,17,-9,11r0,-49v4,1,7,-1,3,-4r-3,1v3,-21,-7,-55,4,-69xm66,-252v43,-3,96,-2,115,27v24,36,16,89,16,143v0,21,-5,40,-18,51v2,4,-3,6,-7,8v0,0,0,-2,-1,-2v-2,24,-67,28,-105,23v1,-14,-3,-35,2,-45v15,-1,34,1,45,1r-1,-2v45,-12,21,-79,27,-128v-6,-41,-48,-28,-73,-32r0,-44xm15,-251v-2,0,-4,5,-1,4xm6,-237v0,0,10,3,9,-3v-4,0,-8,0,-9,3xm175,-235v2,-3,4,-5,7,-2v0,1,1,3,-1,3v-3,-2,-1,-3,-6,-1xm8,-218v-1,2,4,7,6,4v-1,-2,-2,-5,-6,-4xm5,-215v-4,-1,-1,4,-1,5xm91,-212v-2,-2,-3,0,-1,1xm22,-209v1,2,-4,-2,-2,1v-2,0,-1,2,-1,3v5,0,10,-3,3,-4xm87,-203v0,-2,3,-4,2,0r-2,0xm18,-203v-3,0,-3,3,-3,6v1,-1,2,-1,3,0v2,13,-8,0,-12,6v7,-2,8,9,17,10v-3,0,-5,-2,-6,-5v0,-4,2,-5,6,-5v0,-7,-4,-5,-5,-12xm144,-197v1,7,2,6,3,0r-3,0xm30,-189v-1,-6,-4,-3,-3,0r3,0xm164,-189v-2,0,-2,0,-1,1xm24,-170v-2,-1,-5,-7,-7,-4v2,2,2,5,7,4xm57,-168v-1,-1,-4,-3,-3,0r3,0xm173,-82v-1,0,-3,-1,-3,1v4,-2,6,4,6,0xm92,-37v-1,-4,-5,-10,-8,-2xm74,-41v-7,2,-8,5,0,4v-1,3,7,12,9,7v-9,-1,-2,-11,-9,-11xm46,-125v-3,0,1,4,-5,7v5,1,5,-3,5,-7xm111,-33v0,-3,-5,-6,-6,-3v1,3,2,5,6,3xm41,-123v-8,-3,-11,3,-2,3xm31,-118v-2,1,-1,8,0,11v4,-1,6,-1,6,-4v-5,2,-7,-1,-6,-7xm92,-27v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm99,-22v0,-1,-5,-2,-5,0r5,0xm94,-20v-2,0,-2,0,-2,2xm44,-105v-5,-1,-6,2,-2,5v1,0,1,0,1,-1v0,0,-2,0,-2,-1xm14,-100v-1,-2,-3,2,-3,2xm15,-92v2,4,2,6,7,9v0,-5,-2,-9,-7,-9xm17,-81v0,-2,-3,-3,-2,0r2,0xm44,-75v1,-3,-4,-6,-3,-1xm29,-78v-2,0,-7,-1,-6,2v2,0,7,1,6,-2xm40,-74v-2,0,-3,3,-3,6v2,-1,3,-4,3,-6xm21,-73v-3,-1,-6,3,-4,3v2,-1,4,-2,4,-3xm23,-62v-5,-9,-12,-3,-7,2xm34,-64v-1,-1,-3,-3,-3,0r3,0xm49,-58v1,-6,-7,-1,-11,-2v4,0,8,4,11,2xm34,-42v-5,-4,-5,0,-2,2xm53,-36v0,-3,-5,-4,-4,0v1,0,3,2,4,0xm46,-32v2,10,-17,1,-6,10v4,-3,14,-6,6,-10xm12,-28v-4,0,-5,4,0,3r0,-3xm23,-17v0,7,9,6,13,3v-3,-2,-11,0,-13,-3xm48,-15v-2,0,-3,6,-1,7v1,-2,3,-4,1,-7xm51,-13r-2,2xm17,-7v-2,-3,-6,1,-4,3v3,-1,4,-2,4,-3","w":208},"E":{"d":"18,-252v6,9,-13,8,-16,15v7,0,5,7,2,10v-9,1,-2,-18,-3,-25v9,-2,11,5,17,0xm10,-183v-2,-9,11,-20,9,-11v1,2,1,5,3,5v-1,-3,1,-3,3,-1r-1,1v2,-1,8,1,7,-3v-10,4,-11,-23,-17,-8v-1,-1,-3,-1,-5,-1v4,7,1,13,-9,14v1,-8,-1,-14,2,-17r0,3v6,2,8,-7,6,-3v-7,-1,-9,-6,-4,-9v9,-3,3,9,8,3v-2,-10,-1,-11,-8,-15v8,-2,1,-7,13,-6v0,7,3,5,7,3v-3,-6,-3,-11,-3,-19v2,0,5,3,6,1r-2,-6v10,1,25,-2,32,2v-1,7,3,20,-2,24v1,-8,-3,-7,-3,-2v6,3,5,20,5,31v-2,0,-6,-2,-7,0v6,1,8,6,7,14v-7,0,-1,2,0,3v-3,18,7,46,-8,52v-1,-6,-8,4,-11,-2v0,-4,4,-6,0,-9v-1,3,0,7,-4,6v-7,-5,-4,-13,0,-20v9,1,18,-7,8,-12v-1,9,-11,15,-22,14v3,-7,-2,-8,-2,-14v5,-1,6,9,10,5v-4,-3,-7,-6,-3,-8v5,4,5,-4,8,-8v-5,-5,-19,-3,-13,-12v-2,2,-6,1,-8,2v1,0,1,1,1,2xm67,-247v0,-9,20,-5,25,-3v-2,0,-3,4,-1,4v2,0,3,-2,3,-6v27,0,29,2,54,0r0,3v1,-2,4,2,4,-1r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,44r-116,-1v-1,-13,2,-33,0,-40xm38,-246v0,1,-4,5,0,4v1,-1,1,-3,0,-4xm52,-245v-5,4,1,12,3,5v-1,-2,-1,-5,-3,-5xm78,-242v-3,0,-4,3,0,3v1,-1,1,-2,0,-3xm35,-240v-2,0,-5,3,-3,3xm150,-239v-4,1,-8,1,-8,6v6,1,6,-3,8,-6xm108,-235v-2,-2,-4,-2,-3,2xm46,-235v-6,-2,-8,3,-10,3r1,-1v-3,-1,-6,7,-3,7v0,-4,12,-3,12,-9xm88,-232v-1,-3,-2,2,-2,2xm141,-232v-1,1,-4,4,0,3r0,-3xm80,-216v4,-3,-3,-12,-7,-10v3,2,6,3,7,10xm32,-224v-1,0,-3,2,-1,2xm21,-223v-2,1,-8,2,-5,4v2,-1,6,0,5,-4xm45,-221v-3,0,-2,6,-2,7v6,-1,13,-5,2,-5r0,-2xm23,-220v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm33,-218v-2,0,-4,3,-1,2v1,-1,3,-1,1,-2xm107,-217v-1,0,-5,0,-2,1xm81,-216v-2,-1,-7,2,-2,2xm127,-216v-3,-1,-5,6,-3,6v1,-2,4,-2,3,-6xm30,-213v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm84,-212v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm139,-210v-2,0,0,3,0,3r0,-3xm54,-205v-1,-8,-7,5,-16,2v0,-2,-2,-2,-4,-1v-1,8,8,3,14,6v-4,-3,0,-8,6,-7xm48,-183v-1,-4,-8,-7,-12,-6v3,4,9,2,12,6xm49,-183v4,0,4,0,2,-2xm0,-175v-1,-4,1,-14,3,-5v-1,3,0,9,-3,5xm40,-183v-3,1,1,2,1,5r2,0xm20,-136v4,-9,2,-7,2,-14v11,0,8,8,4,13v13,11,15,7,17,22v8,-2,0,-8,11,-7v1,-1,0,-4,3,-3v-2,33,4,74,-3,102v5,-1,1,3,3,6v5,11,-10,25,-11,12v-5,0,-5,3,-11,3v-2,-5,8,-5,2,-8v0,3,-6,8,-11,5v0,-12,14,-4,15,-16v-4,1,-3,-2,-3,-5v6,-2,6,7,10,4v-7,-1,-3,-8,1,-11v2,0,0,3,3,2v0,-5,-3,-15,-6,-5v-2,8,-11,9,-18,15v-1,-4,-11,-6,-3,-9v5,1,4,-3,5,-7r-4,0v1,2,1,4,-2,3v-1,-1,-1,-4,-3,-4v2,11,-7,1,-8,11v-1,-2,-2,0,-3,1v6,0,6,4,7,8v-6,0,-7,0,-6,8v7,0,5,2,5,7v-5,0,-7,2,-8,-5v-11,-3,-5,-9,-8,-27v3,-3,9,-6,0,-5v4,-16,-5,-49,3,-65v-6,-1,-5,-21,0,-23v0,0,1,2,1,0v-6,-5,-6,-31,-2,-39v3,1,0,3,3,4v6,-10,-4,-10,4,-18v0,0,7,15,7,4v-2,0,-3,-1,-3,-2v5,-3,13,3,8,7v-12,0,0,20,-11,12v-8,10,18,11,3,21v1,2,4,3,7,3xm45,-174v-1,-3,-3,-4,-2,0r2,0xm45,-172v1,10,-11,-1,-13,7v5,-1,17,0,13,-7xm68,-155v3,-3,6,2,8,7r-1,1v5,-13,74,-11,97,-7v-2,0,-6,-2,-6,1v5,2,6,1,10,-1r0,16v-9,-3,-16,-5,-24,-9v4,17,13,6,23,9v0,9,2,19,0,27r-87,1v-4,-9,-14,5,-19,-2v4,1,12,-8,5,-11v-1,1,-3,1,-4,0v1,4,2,10,-3,10v1,-10,-4,-42,5,-24v3,-9,-5,-12,-4,-18xm6,-155v-3,-1,-2,2,-2,4v2,0,4,-3,2,-4xm99,-155v-2,0,-1,2,-2,3v1,0,2,-1,2,-3xm104,-155v-2,0,-6,2,-3,3v1,-1,4,0,3,-3xm53,-153v-3,0,-3,3,-1,4v0,0,2,0,2,-1xm136,-151v6,3,9,2,15,4v-4,1,-9,-11,-15,-4xm43,-149v-2,0,0,2,0,3v1,0,3,1,3,-1xm101,-145v0,-2,-3,-3,-2,0r2,0xm82,-146v0,7,9,8,9,0v-5,4,-4,2,-9,0xm6,-139v2,-1,4,-4,0,-2r0,2xm125,-140v2,0,6,1,5,-2v-2,2,-6,-2,-5,2xm100,-139v-2,-2,-5,1,-2,2xm146,-139v-4,-1,-3,2,-2,4v3,1,3,-2,2,-4xm84,-127v3,-5,-7,-14,-6,-8v5,-2,2,7,6,8xm145,-133v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm165,-130v-3,-2,-5,0,-3,3xm98,-128v-1,2,-7,-5,-3,1v-3,1,-8,2,-1,4v4,0,6,-1,4,-5xm135,-129v-4,-1,-8,5,-2,6xm21,-128v-16,5,-2,19,-17,23v6,-2,13,3,11,-6r5,0v-3,-4,1,-7,6,-6v4,2,1,5,4,7v0,-1,-1,-3,1,-3v6,2,1,11,5,12v0,-8,4,-4,2,-12v-9,0,-2,-6,-1,-10v-3,-1,-3,4,-7,1v0,-2,1,-5,-1,-5v-1,5,-2,7,-10,7v1,3,-1,5,-4,4v1,-6,3,-5,6,-12xm82,-126v-5,0,-6,4,0,2r0,-2xm143,-125v-4,1,0,5,1,8v3,-1,1,-6,-1,-8xm118,-116v-1,3,2,2,4,2v0,-2,-3,-1,-4,-2xm145,-116v-2,0,-4,1,-4,4v1,-1,5,-1,4,-4xm26,-105v-2,-9,-5,2,-10,0v1,4,7,9,5,0v2,-1,3,-1,5,0xm51,-108v-2,0,-4,0,-3,3v1,0,2,-1,3,-3xm46,-100v1,-3,-2,-4,-2,-2xm9,-102v-4,0,-6,7,0,5r0,-5xm41,-94v-2,0,-4,0,-3,3v1,-1,4,0,3,-3xm50,-84v6,-4,1,-14,-4,-6v1,3,0,7,4,6xm14,-88v-5,-1,-6,1,-2,4v2,-1,6,-3,2,-4xm38,-88v-3,1,-7,-1,-7,3v4,1,5,-1,7,-3xm46,-82v0,1,-2,3,0,3r0,-3xm10,-76r-4,0r4,0xm13,-72v0,-2,-2,-5,-2,-3xm48,-70v2,-6,-11,-7,-11,-4v9,-1,0,8,4,9v2,-1,3,-6,7,-5xm22,-71v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm5,-59v1,-6,10,-4,12,-8v-7,2,-15,-1,-12,8xm54,-66v0,-2,-2,0,-3,0v0,4,2,5,5,6v-2,-3,-5,-6,-2,-6xm13,-54v-3,0,-4,2,-4,6xm52,-44v0,-10,-4,-3,-7,-1xm80,-43v2,-7,12,-4,19,-3v-1,0,-1,0,-1,1v8,-1,45,-6,45,2v2,0,7,6,7,2v-2,0,-3,-2,-4,-6v13,-2,20,3,29,3r-1,-3v17,-5,14,11,9,17r5,-3v-2,13,2,23,-2,33v-11,-1,-27,2,-36,-1v3,1,5,-4,2,-1v0,0,-28,7,-20,-7v-9,-2,-9,-4,-16,0v6,7,0,10,-11,9v3,-12,-11,-4,-17,-5v5,-13,-6,-18,-1,-24v0,-3,-6,-5,-8,-2v5,5,-8,13,2,15v-3,4,3,5,1,13v3,-1,5,1,2,3v-12,2,-19,-3,-14,-15v-7,-1,-2,-9,2,-12v0,-3,4,-2,4,-4v-7,1,-2,-6,-2,-9v2,3,9,0,6,-3xm11,-44v0,2,4,2,4,0r-4,0xm112,-44v-1,1,-4,4,0,4r0,-4xm121,-44v0,2,3,3,2,0r-2,0xm10,-41v0,0,-2,0,-2,1v2,2,5,2,2,-1xm140,-41v-2,0,-1,3,-1,4v2,0,2,-2,1,-4xm125,-38v1,1,3,1,4,0r-4,0xm67,-32v-1,-4,1,-9,4,-4v1,3,-1,5,-4,4xm14,-35v-1,0,-3,-2,-3,0v1,2,2,2,3,0xm139,-34v0,-2,-2,0,-3,0v0,1,-1,3,1,3v0,-2,1,-3,2,-3xm167,-27v4,-1,0,-10,-1,-4xm145,-31v-1,2,-5,1,-4,4v2,0,5,0,4,-4xm123,-30v-4,1,3,10,-3,8r5,2v-3,-3,1,-8,-2,-10xm180,-30v-6,5,3,13,-4,17v7,0,1,-12,9,-10v1,-7,-8,0,-5,-7xm114,-28v-2,7,-11,2,-17,1v5,4,16,9,19,8v-4,0,-3,-6,-2,-9xm140,-24v2,0,-1,-6,-1,-3xm9,-17v-2,-5,-2,-8,-5,-4v1,2,-1,5,5,4xm136,-24v-6,2,0,22,5,18v-3,-6,-3,-10,-5,-18xm152,-21v-1,-3,-5,-1,-2,0r2,0xm159,-22v-2,0,-2,0,-1,1v3,-1,5,10,7,2xm147,-21v-1,1,-4,12,0,6r0,-6xm20,-20v3,0,2,5,1,7v0,-2,-3,-5,-1,-7xm55,-12v0,0,-9,1,-5,2v4,-1,5,-1,5,-2xm119,-7v3,-4,9,0,10,5v-6,4,-6,0,-10,-5xm92,-2v4,-2,9,-3,10,2v-4,0,-9,1,-10,-2xm0,-1v0,-2,3,-4,3,-1v-1,1,-2,3,-3,1","w":198},"F":{"d":"18,-252v6,9,-13,8,-16,15v7,0,5,7,2,10v-9,1,-2,-18,-3,-25v9,-2,11,5,17,0xm10,-183v-2,-9,11,-20,9,-11v1,2,1,5,3,5v-1,-3,1,-3,3,-1r-1,1v2,-1,8,1,7,-3v-10,4,-11,-23,-17,-8v-1,-1,-3,-1,-5,-1v4,7,1,13,-9,14v1,-8,-1,-14,2,-17r0,3v6,2,8,-7,6,-3v-7,-1,-9,-6,-4,-9v9,-3,3,9,8,3v-2,-10,-1,-11,-8,-15v8,-2,1,-7,13,-6v0,7,3,5,7,3v-3,-6,-3,-11,-3,-19v2,0,5,3,6,1r-2,-6v10,1,25,-2,32,2v-1,7,3,20,-2,24v1,-8,-3,-7,-3,-2v6,3,5,20,5,31v-2,0,-6,-2,-7,0v6,1,8,6,7,14v-7,0,-1,2,0,3v-3,18,7,46,-8,52v-1,-6,-8,4,-11,-2v0,-4,4,-6,0,-9v-1,3,0,7,-4,6v-7,-5,-4,-13,0,-20v9,1,18,-7,8,-12v-1,9,-11,15,-22,14v3,-7,-2,-8,-2,-14v5,-1,6,9,10,5v-4,-3,-7,-6,-3,-8v5,4,5,-4,8,-8v-5,-5,-19,-3,-13,-12v-2,2,-6,1,-8,2v1,0,1,1,1,2xm67,-247v0,-9,20,-5,25,-3v-2,0,-3,4,-1,4v2,0,3,-2,3,-6v27,0,29,2,54,0r0,3v1,-2,4,2,4,-1r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,44r-116,-1v-1,-13,2,-33,0,-40xm38,-246v0,1,-4,5,0,4v1,-1,1,-3,0,-4xm52,-245v-5,4,1,12,3,5v-1,-2,-1,-5,-3,-5xm78,-242v-3,0,-4,3,0,3v1,-1,1,-2,0,-3xm35,-240v-2,0,-5,3,-3,3xm150,-239v-4,1,-8,1,-8,6v6,1,6,-3,8,-6xm108,-235v-2,-2,-4,-2,-3,2xm46,-235v-6,-2,-8,3,-10,3r1,-1v-3,-1,-6,7,-3,7v0,-4,12,-3,12,-9xm88,-232v-1,-3,-2,2,-2,2xm141,-232v-1,1,-4,4,0,3r0,-3xm80,-216v4,-3,-3,-12,-7,-10v3,2,6,3,7,10xm32,-224v-1,0,-3,2,-1,2xm21,-223v-2,1,-8,2,-5,4v2,-1,6,0,5,-4xm45,-221v-3,0,-2,6,-2,7v6,-1,13,-5,2,-5r0,-2xm23,-220v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm33,-218v-2,0,-4,3,-1,2v1,-1,3,-1,1,-2xm107,-217v-1,0,-5,0,-2,1xm81,-216v-2,-1,-7,2,-2,2xm127,-216v-3,-1,-5,6,-3,6v1,-2,4,-2,3,-6xm30,-213v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm84,-212v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm139,-210v-2,0,0,3,0,3r0,-3xm54,-205v-1,-8,-7,5,-16,2v0,-2,-2,-2,-4,-1v-1,8,8,3,14,6v-4,-3,0,-8,6,-7xm48,-183v-1,-4,-8,-7,-12,-6v3,4,9,2,12,6xm49,-183v4,0,4,0,2,-2xm0,-175v-1,-4,1,-14,3,-5v-1,3,0,9,-3,5xm40,-183v-3,1,1,2,1,5r2,0xm20,-136v4,-9,2,-7,2,-14v11,0,8,8,4,13v13,11,15,7,17,22v8,-2,0,-8,11,-7v1,-1,0,-4,3,-3v-2,33,4,74,-3,102v5,-1,1,3,3,6v5,11,-10,25,-11,12v-5,0,-5,3,-11,3v-2,-5,8,-5,2,-8v0,3,-6,8,-11,5v0,-12,14,-4,15,-16v-4,1,-3,-2,-3,-5v6,-2,6,7,10,4v-7,-1,-3,-8,1,-11v2,0,0,3,3,2v0,-5,-3,-15,-6,-5v-2,8,-11,9,-18,15v-1,-4,-11,-6,-3,-9v5,1,4,-3,5,-7r-4,0v1,2,1,4,-2,3v-1,-1,-1,-4,-3,-4v2,11,-7,1,-8,11v-1,-2,-2,0,-3,1v6,0,6,4,7,8v-6,0,-7,0,-6,8v7,0,5,2,5,7v-5,0,-7,2,-8,-5v-11,-3,-5,-9,-8,-27v3,-3,9,-6,0,-5v4,-16,-5,-49,3,-65v-6,-1,-5,-21,0,-23v0,0,1,2,1,0v-6,-5,-6,-31,-2,-39v3,1,0,3,3,4v6,-10,-4,-10,4,-18v0,0,7,15,7,4v-2,0,-3,-1,-3,-2v5,-3,13,3,8,7v-12,0,0,20,-11,12v-8,10,18,11,3,21v1,2,4,3,7,3xm45,-174v-1,-3,-3,-4,-2,0r2,0xm45,-172v1,10,-11,-1,-13,7v5,-1,17,0,13,-7xm68,-155v3,-3,6,2,8,7r-1,1v5,-13,74,-11,97,-7v-2,0,-6,-2,-6,1v5,2,6,1,10,-1r0,16v-9,-3,-16,-5,-24,-9v4,17,13,6,23,9v0,9,2,19,0,27r-87,1v-4,-9,-14,5,-19,-2v4,1,12,-8,5,-11v-1,1,-3,1,-4,0v1,4,2,10,-3,10v1,-10,-4,-42,5,-24v3,-9,-5,-12,-4,-18xm6,-155v-3,-1,-2,2,-2,4v2,0,4,-3,2,-4xm99,-155v-2,0,-1,2,-2,3v1,0,2,-1,2,-3xm104,-155v-2,0,-6,2,-3,3v1,-1,4,0,3,-3xm53,-153v-3,0,-3,3,-1,4v0,0,2,0,2,-1xm136,-151v6,3,9,2,15,4v-4,1,-9,-11,-15,-4xm43,-149v-2,0,0,2,0,3v1,0,3,1,3,-1xm101,-145v0,-2,-3,-3,-2,0r2,0xm82,-146v0,7,9,8,9,0v-5,4,-4,2,-9,0xm6,-139v2,-1,4,-4,0,-2r0,2xm125,-140v2,0,6,1,5,-2v-2,2,-6,-2,-5,2xm100,-139v-2,-2,-5,1,-2,2xm146,-139v-4,-1,-3,2,-2,4v3,1,3,-2,2,-4xm84,-127v3,-5,-7,-14,-6,-8v5,-2,2,7,6,8xm145,-133v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm165,-130v-3,-2,-5,0,-3,3xm98,-128v-1,2,-7,-5,-3,1v-3,1,-8,2,-1,4v4,0,6,-1,4,-5xm135,-129v-4,-1,-8,5,-2,6xm21,-128v-16,5,-2,19,-17,23v6,-2,13,3,11,-6r5,0v-3,-4,1,-7,6,-6v4,2,1,5,4,7v0,-1,-1,-3,1,-3v6,2,1,11,5,12v0,-8,4,-4,2,-12v-9,0,-2,-6,-1,-10v-3,-1,-3,4,-7,1v0,-2,1,-5,-1,-5v-1,5,-2,7,-10,7v1,3,-1,5,-4,4v1,-6,3,-5,6,-12xm82,-126v-5,0,-6,4,0,2r0,-2xm143,-125v-4,1,0,5,1,8v3,-1,1,-6,-1,-8xm118,-116v-1,3,2,2,4,2v0,-2,-3,-1,-4,-2xm145,-116v-2,0,-4,1,-4,4v1,-1,5,-1,4,-4xm26,-105v-2,-9,-5,2,-10,0v1,4,7,9,5,0v2,-1,3,-1,5,0xm51,-108v-2,0,-4,0,-3,3v1,0,2,-1,3,-3xm46,-100v1,-3,-2,-4,-2,-2xm9,-102v-4,0,-6,7,0,5r0,-5xm41,-94v-2,0,-4,0,-3,3v1,-1,4,0,3,-3xm50,-84v6,-4,1,-14,-4,-6v1,3,0,7,4,6xm14,-88v-5,-1,-6,1,-2,4v2,-1,6,-3,2,-4xm38,-88v-3,1,-7,-1,-7,3v4,1,5,-1,7,-3xm46,-82v0,1,-2,3,0,3r0,-3xm10,-76r-4,0r4,0xm13,-72v0,-2,-2,-5,-2,-3xm48,-70v2,-6,-11,-7,-11,-4v9,-1,0,8,4,9v2,-1,3,-6,7,-5xm22,-71v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm5,-59v1,-6,10,-4,12,-8v-7,2,-15,-1,-12,8xm54,-66v0,-2,-2,0,-3,0v0,4,2,5,5,6v-2,-3,-5,-6,-2,-6xm13,-54v-3,0,-4,2,-4,6xm52,-44v0,-10,-4,-3,-7,-1xm11,-44v0,2,4,2,4,0r-4,0xm10,-41v0,0,-2,0,-2,1v2,2,5,2,2,-1xm14,-35v-1,0,-3,-2,-3,0v1,2,2,2,3,0xm9,-17v-2,-5,-2,-8,-5,-4v1,2,-1,5,5,4xm20,-20v3,0,2,5,1,7v0,-2,-3,-5,-1,-7xm55,-12v0,0,-9,1,-5,2v4,-1,5,-1,5,-2xm0,-1v0,-2,3,-4,3,-1v-1,1,-2,3,-3,1","w":198},"G":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-37,19r-6,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-3,5,-9,3v-2,9,-14,4,-7,13v7,-5,12,-13,22,-6v2,11,-6,3,-7,12v5,-3,9,2,6,7v-11,-6,-2,9,-12,9v-1,-3,2,-2,2,-5r-2,0v3,-4,5,-8,5,-10v0,8,-16,6,-8,10v-1,2,-1,5,0,7v-1,0,-2,-2,-2,0v1,1,5,5,2,7v-5,-3,-16,1,-15,-8v-22,-1,-30,-7,-50,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm237,-123v2,0,2,0,2,2v-1,0,-2,-1,-2,-2xm140,-48v6,2,24,-21,32,-21v-6,-3,-2,-2,4,-10v-2,-5,0,-6,4,-6v3,-1,2,3,4,3v1,-5,-11,-1,-5,-12r4,2v0,-5,-3,-9,-1,-16v2,2,6,-1,6,-5v-3,-1,-2,7,-6,3v-3,-11,3,-8,0,-13v16,2,40,-4,52,2v-1,7,-10,3,-3,7v2,0,5,-2,5,0r-1,2r4,0v0,23,-8,50,-29,74v-22,26,-57,43,-84,36v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1xm46,-210v-2,0,-4,1,-4,4v2,-1,4,-2,4,-4xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm14,-134v0,-2,-3,-4,-2,-1xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-5,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm197,-113v0,-3,-9,-10,-11,-6xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm219,-114v0,0,-2,0,-2,1r4,0xm205,-114v-2,1,-6,0,-6,4v4,-2,7,4,6,-4xm21,-108v1,-1,4,-2,2,-2xm202,-105v0,-2,-2,-6,-2,-3v2,2,-1,4,2,3xm208,-107v-1,2,4,5,4,1xm234,-107v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm187,-99v-3,-1,-2,2,-1,3v4,1,2,-1,1,-3xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm195,-91v-1,-1,-7,-2,-6,2v3,0,4,-1,6,-2xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm186,-80r1,1xm64,-77v-2,0,-5,2,0,2r0,-2xm181,-72r0,5v3,0,2,-4,0,-5xm197,-72v-2,2,-3,5,1,4xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm176,-65r0,5v2,-2,2,-4,0,-5xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm43,-55v-3,0,-8,2,-2,4v1,-1,2,-2,2,-4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v3,-1,4,-5,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm160,-24v-2,0,-4,4,-1,3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-4,-1,-2,3,-2,5v5,0,4,-1,2,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-4,-2,-3,-5,-3v2,1,0,3,5,3xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm139,-9v1,-3,-3,-6,-2,-1xm103,-3v1,-8,12,-5,12,2v-7,3,-8,-3,-12,-2xm186,-156v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76v-1,-5,1,-7,3,-1xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm225,-176v-2,1,-13,3,-5,3v2,-1,6,0,5,-3xm135,-118v7,3,8,2,15,4v-4,1,-9,-11,-15,-4xm129,-109v-6,2,-3,-8,-4,-14v13,1,40,-3,46,2v-2,0,-5,-2,-5,1v5,2,6,1,10,-1r0,16v-9,-3,-17,-5,-25,-9v5,17,13,6,24,9v0,9,2,19,0,27r-50,1v1,-11,-3,-30,4,-32xm147,-104v-2,-2,-7,-1,-4,2v2,0,3,-1,4,-2xm144,-100v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm164,-97v-3,-2,-5,0,-3,3xm134,-96v-3,0,-5,1,-4,5v4,2,4,-2,4,-5xm142,-92v-4,1,0,5,1,8v3,-2,0,-5,-1,-8xm144,-83v-2,0,-4,1,-4,4v1,-1,5,-1,4,-4","w":246},"H":{"d":"18,-252v6,9,-13,8,-16,15v7,0,5,7,2,10v-9,1,-2,-18,-3,-25v9,-2,11,5,17,0xm10,-183v-2,-9,11,-20,9,-11v1,2,1,5,3,5v-1,-3,1,-3,3,-1r-1,1v2,-1,8,1,7,-3v-10,4,-11,-23,-17,-8v-1,-1,-3,-1,-5,-1v4,7,1,13,-9,14v1,-8,-1,-14,2,-17r0,3v6,2,8,-7,6,-3v-7,-1,-9,-6,-4,-9v9,-3,3,9,8,3v-2,-10,-1,-11,-8,-15v8,-2,1,-7,13,-6v0,7,3,5,7,3v-3,-6,-3,-11,-3,-19v2,0,5,3,6,1r-2,-6v10,1,25,-2,32,2v-1,7,3,20,-2,24v1,-8,-3,-7,-3,-2v6,3,5,20,5,31v-2,0,-6,-2,-7,0v6,1,8,6,7,14v-7,0,-1,2,0,3v-3,18,7,46,-8,52v-1,-6,-8,4,-11,-2v0,-4,4,-6,0,-9v-1,3,0,7,-4,6v-7,-5,-4,-13,0,-20v9,1,18,-7,8,-12v-1,9,-11,15,-22,14v3,-7,-2,-8,-2,-14v5,-1,6,9,10,5v-4,-3,-7,-6,-3,-8v5,4,5,-4,8,-8v-5,-5,-19,-3,-13,-12v-2,2,-6,1,-8,2v1,0,1,1,1,2xm38,-246v0,1,-4,5,0,4v1,-1,1,-3,0,-4xm52,-245v-5,4,1,12,3,5v-1,-2,-1,-5,-3,-5xm35,-240v-2,0,-5,3,-3,3xm46,-235v-6,-2,-8,3,-10,3r1,-1v-3,-1,-6,7,-3,7v0,-4,12,-3,12,-9xm32,-224v-1,0,-3,2,-1,2xm21,-223v-2,1,-8,2,-5,4v2,-1,6,0,5,-4xm45,-221v-3,0,-2,6,-2,7v6,-1,13,-5,2,-5r0,-2xm23,-220v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm33,-218v-2,0,-4,3,-1,2v1,-1,3,-1,1,-2xm30,-213v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm54,-205v-1,-8,-7,5,-16,2v0,-2,-2,-2,-4,-1v-1,8,8,3,14,6v-4,-3,0,-8,6,-7xm48,-183v-1,-4,-8,-7,-12,-6v3,4,9,2,12,6xm49,-183v4,0,4,0,2,-2xm0,-175v-1,-4,1,-14,3,-5v-1,3,0,9,-3,5xm40,-183v-3,1,1,2,1,5r2,0xm20,-136v4,-9,2,-7,2,-14v11,0,8,8,4,13v13,11,15,7,17,22v8,-2,0,-8,11,-7v1,-1,0,-4,3,-3v-2,33,4,74,-3,102v5,-1,1,3,3,6v5,11,-10,25,-11,12v-5,0,-5,3,-11,3v-2,-5,8,-5,2,-8v0,3,-6,8,-11,5v0,-12,14,-4,15,-16v-4,1,-3,-2,-3,-5v6,-2,6,7,10,4v-7,-1,-3,-8,1,-11v2,0,0,3,3,2v0,-5,-3,-15,-6,-5v-2,8,-11,9,-18,15v-1,-4,-11,-6,-3,-9v5,1,4,-3,5,-7r-4,0v1,2,1,4,-2,3v-1,-1,-1,-4,-3,-4v2,11,-7,1,-8,11v-1,-2,-2,0,-3,1v6,0,6,4,7,8v-6,0,-7,0,-6,8v7,0,5,2,5,7v-5,0,-7,2,-8,-5v-11,-3,-5,-9,-8,-27v3,-3,9,-6,0,-5v4,-16,-5,-49,3,-65v-6,-1,-5,-21,0,-23v0,0,1,2,1,0v-6,-5,-6,-31,-2,-39v3,1,0,3,3,4v6,-10,-4,-10,4,-18v0,0,7,15,7,4v-2,0,-3,-1,-3,-2v5,-3,13,3,8,7v-12,0,0,20,-11,12v-8,10,18,11,3,21v1,2,4,3,7,3xm45,-174v-1,-3,-3,-4,-2,0r2,0xm45,-172v1,10,-11,-1,-13,7v5,-1,17,0,13,-7xm69,-110v2,-5,10,-7,4,-13v-1,2,-3,0,-4,0v0,3,3,10,-2,10v1,-10,-2,-23,1,-31r3,7v3,-9,-4,-12,-3,-19v7,0,7,16,12,6v-3,-4,-6,-7,3,-6v21,2,58,-4,71,2v-2,-1,-4,-2,-4,1v4,2,6,2,8,-1r0,16v-8,-3,-14,-5,-20,-9v4,16,9,7,20,9r0,27r-74,1v-4,-7,-8,1,-15,0xm6,-155v-3,-1,-2,2,-2,4v2,0,4,-3,2,-4xm94,-155v-2,0,-1,2,-2,3v1,0,2,-1,2,-3xm98,-155v-2,0,-3,1,-3,3v1,-1,4,0,3,-3xm53,-153v-3,0,-3,3,-1,4v0,0,2,0,2,-1xm131,-153v-8,0,-5,3,-1,6v1,-7,4,2,7,0v-2,0,-4,-2,-6,-6xm43,-149v-2,0,0,2,0,3v1,0,3,1,3,-1xm94,-147v0,1,1,3,1,1xm81,-146v-3,1,1,5,2,7v1,-2,5,-6,3,-7v-2,3,-3,4,-5,0xm6,-139v2,-1,4,-4,0,-2r0,2xm119,-142v-1,2,-4,-2,-3,2v2,0,4,0,3,-2xm95,-139v-2,-2,-5,1,-2,2xm133,-139v-3,-1,-2,2,-2,4v3,1,3,-2,2,-4xm80,-127v7,-4,-10,-14,-2,-8v1,2,3,4,2,8xm132,-133v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm149,-130v-3,-2,-5,0,-3,3xm93,-128v0,0,-10,2,-4,5v4,0,6,-1,4,-5xm124,-129v-4,-1,-6,5,-2,6xm21,-128v-16,5,-2,19,-17,23v6,-2,13,3,11,-6r5,0v-3,-4,1,-7,6,-6v4,2,1,5,4,7v0,-1,-1,-3,1,-3v6,2,1,11,5,12v0,-8,4,-4,2,-12v-9,0,-2,-6,-1,-10v-3,-1,-3,4,-7,1v0,-2,1,-5,-1,-5v-1,5,-2,7,-10,7v1,3,-1,5,-4,4v1,-6,3,-5,6,-12xm80,-126v-5,0,-6,4,0,2r0,-2xm131,-125v-4,0,0,5,0,8v3,-1,1,-5,0,-8xm113,-114v0,-2,-4,-3,-3,0r3,0xm132,-116v-1,1,-4,1,-3,4v1,-1,4,-1,3,-4xm26,-105v-2,-9,-5,2,-10,0v1,4,7,9,5,0v2,-1,3,-1,5,0xm51,-108v-2,0,-4,0,-3,3v1,0,2,-1,3,-3xm46,-100v1,-3,-2,-4,-2,-2xm9,-102v-4,0,-6,7,0,5r0,-5xm41,-94v-2,0,-4,0,-3,3v1,-1,4,0,3,-3xm50,-84v6,-4,1,-14,-4,-6v1,3,0,7,4,6xm14,-88v-5,-1,-6,1,-2,4v2,-1,6,-3,2,-4xm38,-88v-3,1,-7,-1,-7,3v4,1,5,-1,7,-3xm46,-82v0,1,-2,3,0,3r0,-3xm10,-76r-4,0r4,0xm13,-72v0,-2,-2,-5,-2,-3xm48,-70v2,-6,-11,-7,-11,-4v9,-1,0,8,4,9v2,-1,3,-6,7,-5xm22,-71v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm5,-59v1,-6,10,-4,12,-8v-7,2,-15,-1,-12,8xm54,-66v0,-2,-2,0,-3,0v0,4,2,5,5,6v-2,-3,-5,-6,-2,-6xm13,-54v-3,0,-4,2,-4,6xm52,-44v0,-10,-4,-3,-7,-1xm11,-44v0,2,4,2,4,0r-4,0xm10,-41v0,0,-2,0,-2,1v2,2,5,2,2,-1xm14,-35v-1,0,-3,-2,-3,0v1,2,2,2,3,0xm9,-17v-2,-5,-2,-8,-5,-4v1,2,-1,5,5,4xm20,-20v3,0,2,5,1,7v0,-2,-3,-5,-1,-7xm55,-12v0,0,-9,1,-5,2v4,-1,5,-1,5,-2xm0,-1v0,-2,3,-4,3,-1v-1,1,-2,3,-3,1xm169,-251v13,-4,43,-4,57,0v1,15,0,26,-10,16v5,5,3,10,1,12v3,-1,6,-6,9,-4r0,112v-13,-5,-11,7,-23,7v6,0,18,13,13,-2v13,0,0,8,10,12v1,9,-2,14,-6,18v4,1,3,-3,6,-3v-2,14,4,36,-4,43v1,1,3,1,4,0v-1,8,3,21,-2,25v1,-6,-6,-6,-7,-6v2,0,13,10,2,11v-2,-1,-4,-6,-5,-4v3,7,6,9,12,5v2,13,-8,7,-18,9v-4,-7,-15,5,-19,-5v2,7,-6,5,-11,5v1,-4,-3,-3,-6,-3v0,2,3,0,2,3v-11,-2,1,-22,-5,-33v2,-4,7,0,11,0v-5,-1,-6,-5,-9,-8v0,2,1,5,-2,4v2,-11,-6,-43,8,-33v4,0,17,-1,8,-3v1,-5,-11,1,-7,-7v0,-6,-11,-9,-9,-18r3,0v-8,-43,-1,-104,-3,-153xm189,-249v0,0,-5,0,-3,1xm199,-240v0,-5,-4,-2,-1,0r1,0xm210,-231v-6,0,-11,0,-13,4r12,5v-1,-4,-1,-7,1,-9xm214,-220v0,-4,-6,-2,-2,0r2,0xm176,-217v0,-2,-4,-4,-3,-1xm220,-149v-2,0,-3,9,1,8v2,-3,0,-5,-1,-8xm224,-128v-2,0,-5,6,0,5r0,-5xm178,-138v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm214,-122v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm188,-132v-2,0,-2,0,-2,2r2,2r0,-4xm173,-126v2,1,4,3,8,3v0,-2,-3,-2,-8,-3xm192,-121v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm224,-114v4,0,1,6,2,9v-3,1,-2,-5,-2,-9xm207,-123v-1,-8,-6,-15,-9,-7xm182,-109v-2,-6,-5,-4,-9,-1v3,1,6,4,9,1xm195,-101v-2,-5,-5,-2,-5,2v3,2,4,6,-2,6v-4,-1,-5,7,-1,7v4,-2,4,1,6,3v-3,-11,15,-8,1,-13v0,-2,-1,-5,1,-5xm224,-97v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm216,-88v-2,-2,-13,4,-7,6v0,-2,3,-5,7,-6xm170,-86v5,0,4,6,1,9v-4,1,-1,-5,-2,-8xm216,-79v-2,0,-4,0,-3,2v2,-1,3,-1,3,-2xm197,-79v-3,3,-5,5,1,3xm205,-75v-1,0,-3,-1,-3,1v0,1,2,2,6,4v0,-3,-2,-2,-3,-5xm200,-70v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm210,-68v-1,1,-3,0,-3,2r4,0xm183,-63v-5,-7,-14,1,-8,5v2,-2,2,-6,8,-5xm217,-61v-5,2,-10,6,-7,7v-1,-4,9,-1,7,-7xm189,-59v-2,-1,-6,3,-2,2xm224,-55v-4,-1,-6,4,-1,3xm191,-46v-1,0,-5,4,-1,3xm186,-43v-3,-1,-7,3,-2,2xm196,-27v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm204,-18v3,-3,-2,-11,-3,-8v6,4,-7,10,3,8xm187,-23v-2,-1,-5,1,-2,2xm189,-14v0,1,5,4,5,0r-5,0xm185,-11v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm212,-9v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":239},"I":{"d":"0,-251v13,-4,43,-4,57,0v1,12,1,32,-9,15v0,4,5,11,0,13r9,-4r0,112v-13,-7,-10,12,-21,5v0,1,-3,3,-1,3v8,-1,15,14,12,-3v13,0,0,8,10,12v1,9,-2,14,-6,18v4,1,5,-1,6,-3v-2,14,4,36,-4,43v7,1,5,19,3,26v0,-7,-4,-5,-8,-7v2,0,14,10,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v2,13,-8,7,-18,9v-4,-7,-13,4,-19,-4v2,7,-7,3,-11,4v1,-4,-2,-3,-5,-3v1,2,1,4,-2,3v-1,-11,-1,-26,0,-35r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4v2,-11,-6,-43,8,-33v6,-1,16,0,8,-4v-11,-1,-7,-4,-11,-16v-5,3,-6,-3,-5,-8r3,0v-8,-42,-1,-104,-3,-153xm20,-248v0,0,-5,0,-3,1xm30,-239v0,-5,-4,-2,-1,0r1,0xm28,-227r12,6v-1,-4,-1,-7,1,-9v-6,-1,-10,1,-13,3xm45,-219v0,-4,-6,-2,-2,0r2,0xm5,-219v-1,1,1,4,2,2v0,-2,-1,-1,-2,-2xm51,-149v-4,2,0,12,2,6xm56,-123v0,-5,-3,-4,-4,0v0,2,3,0,4,0xm9,-122v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm45,-121v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm20,-117v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm2,-114v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm25,-112v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm56,-113v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm27,-99r9,7v-1,-5,-6,-18,-7,-7r-2,0xm13,-97v-5,-6,-12,-1,-3,3v2,0,2,-2,3,-3xm21,-101v-6,3,6,13,-7,10v-3,5,-1,10,6,7r1,4v-4,-12,17,-9,2,-13xm56,-97v-2,1,-7,-1,-6,3v3,0,7,1,6,-3xm47,-89v-3,2,-12,5,-7,7v-1,-3,7,-3,7,-7xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm47,-79v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm28,-78v-3,3,-5,5,1,3xm36,-74v-1,0,-3,-1,-3,1v0,1,2,2,6,4v0,-3,-2,-2,-3,-5xm31,-69v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm41,-67v-1,1,-3,0,-3,2r4,0xm9,-66v-1,5,-9,2,-2,9v0,-4,3,-5,7,-5v-1,-2,-3,-3,-5,-4xm48,-60v-9,4,-12,8,0,4r0,-4xm20,-58v-2,-1,-6,3,-2,2xm55,-55v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm18,-22v-1,0,-5,0,-2,1xm21,-13v0,1,4,2,4,0r-4,0xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm56,-113v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8","w":69},"J":{"d":"60,-60v1,-1,2,0,2,-2v-1,0,-2,0,-2,2xm50,-252v11,-4,21,7,25,4v-3,-1,-5,-2,-6,-4v15,-6,23,14,10,19v4,2,5,11,-4,9v-1,-5,2,-7,1,-10v-5,5,-22,10,-5,8v4,5,4,10,14,6r0,142v-10,48,-29,76,-76,80v-1,-6,-4,2,-9,0v1,-8,-1,-18,5,-21v-1,2,-4,-2,-5,1v3,-11,-8,-39,8,-35v-1,-5,10,2,5,-5v10,-5,15,-14,15,-26r0,-144v7,-6,-4,-12,2,-18v5,2,4,-1,4,-6v4,1,13,-2,14,2v-6,-3,-8,1,-5,6v12,-4,-1,16,9,8v0,0,-2,0,-2,-1v-1,-6,8,-5,7,-9v-5,2,-7,-1,-7,-6xm78,-241v0,2,8,5,6,0r-6,0xm39,-241v-6,3,-7,6,0,8v1,-3,3,-6,0,-8xm64,-242v-5,3,-11,7,-5,11v-1,-4,5,-6,5,-11xm51,-226v-1,4,3,3,3,1v0,-2,-2,-1,-3,-1xm37,-224v-4,-1,-5,2,-7,3v5,-1,7,-1,7,-3xm46,-217v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm62,-217v4,-1,8,4,11,3v0,-1,-8,-7,-11,-3xm35,-213v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm80,-213v0,5,4,8,4,1xm78,-186v3,-1,5,-8,0,-8r0,8xm9,-9v-1,0,-4,-2,-4,0r4,0xm6,-18v7,-1,3,-3,0,-1r0,1xm15,-43v3,-6,-3,-7,-7,-5v-1,5,4,4,7,5xm16,-18r1,-1xm18,-34v-3,5,-9,-2,-11,0r3,11v5,-3,8,-7,8,-11xm22,-51v-1,-2,-7,2,-4,3v3,1,3,-2,4,-3xm30,-5v0,-2,1,-5,-2,-4v0,2,-1,5,2,4xm31,-30v0,0,-15,5,-9,7v6,-1,8,-4,9,-7xm34,-76v-1,-2,-1,-2,-3,-1v-1,3,2,1,3,1xm35,-55v-2,-2,-11,1,-13,3v7,-2,6,7,11,4v0,-3,1,-5,2,-7xm33,-40v4,0,6,-4,0,-3r0,3xm44,-52v-1,-3,1,-7,-3,-7v1,2,-1,8,3,7xm49,-47v7,-1,3,-4,0,-1r0,1xm54,-71v2,-3,4,-11,2,-11v-3,3,-2,5,-2,11xm67,-77v0,-2,0,-4,-2,-3v1,1,0,3,2,3xm60,-65v-2,-1,-2,1,-2,3v1,0,2,-1,2,-3xm82,-109r0,1r0,-1xm28,-252v7,-2,3,5,1,2v-1,0,-1,-1,-1,-2xm85,-222v-3,0,-2,-7,0,-9r0,9xm64,-82r-1,0r1,0","w":97},"K":{"d":"58,-252r-1,252r-57,0r0,-252r58,0xm146,-252v24,1,51,-2,73,1r-115,113r120,138r-69,0r-89,-105r0,-62","w":228},"L":{"d":"0,-251v16,-2,41,-2,57,0v1,15,1,27,-10,17v5,4,4,10,1,11v3,-1,7,-5,9,-3r0,112v-13,-8,-10,11,-21,4v-1,1,-3,3,-1,4v9,-1,15,12,12,-4v13,0,0,9,10,13v1,9,-2,13,-6,17v4,1,5,-1,6,-3v-2,14,4,36,-4,43v7,1,5,19,3,26v1,-6,-6,-7,-8,-6v0,0,13,9,2,10v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v1,18,-18,3,-31,9v-5,-6,-20,4,-26,-2v5,-5,-4,-16,4,-21v-1,-3,-8,-7,-2,-12r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4v2,-18,-9,-42,20,-34v-1,-3,-16,-2,-11,-9v-2,0,-4,-2,-4,-9v-5,3,-6,-3,-5,-8r3,0v-7,-42,-1,-104,-3,-154xm20,-248v0,0,-5,0,-3,1xm30,-239v0,-5,-4,-2,-1,0r1,0xm41,-230v-6,0,-11,0,-13,4r12,5v-1,-4,-1,-7,1,-9xm45,-219v0,-4,-6,-2,-2,0r2,0xm7,-217v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm51,-149v-2,0,-3,10,1,9v2,-3,0,-6,-1,-9xm56,-123v0,-5,-3,-4,-4,0v0,2,3,0,4,0xm9,-122v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm45,-121v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm20,-117v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm2,-114v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm25,-112v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm56,-113v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm36,-92v-2,-8,-6,-15,-9,-6xm13,-97v-6,-5,-12,0,-3,3v2,0,2,-2,3,-3xm19,-96v2,2,3,6,-2,6v-5,-1,-7,7,-2,7v9,3,5,-5,14,-6v-4,1,-7,-18,-10,-7xm56,-97v-2,1,-7,-1,-6,3v3,0,7,1,6,-3xm47,-87v-2,-2,-13,4,-7,6v0,-2,3,-5,7,-6xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm47,-79v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm28,-78v-3,3,-5,5,1,3xm36,-74v-1,0,-3,-1,-3,1v0,1,2,2,6,4v0,-3,-2,-2,-3,-5xm31,-69v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm41,-67v-1,1,-3,0,-3,2r4,0xm14,-62v-3,-6,-7,-1,-10,-1v1,10,3,1,10,1xm48,-60v-9,4,-12,8,0,4r0,-4xm20,-58v-2,-1,-6,3,-2,2xm55,-54v-4,-1,-6,4,-1,3xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,4,-7,10,3,8xm18,-22v-2,-1,-5,1,-2,2xm21,-13v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm178,-31v-10,-4,-10,10,-11,19v4,-1,1,5,2,7v-6,2,-13,-7,-20,2v2,0,3,1,3,3v-8,2,-21,-2,-12,-6v-2,-8,-7,-5,-16,-3v4,4,2,7,-2,9r-14,0v1,-4,-5,-3,-5,-2v1,1,3,0,3,2v-25,2,-44,4,-37,-33r5,3v-3,-4,-8,-11,-4,-17v7,0,12,-1,13,5v11,-8,15,-4,28,-5v-1,6,-5,4,-5,8v7,-14,41,-5,52,-7v-1,0,-1,0,-1,-1v9,1,14,0,21,1v-2,4,-1,10,4,6v-1,13,5,10,7,25v0,3,-5,25,-18,12v6,1,0,-10,7,-11v-2,0,-4,0,-3,-2v9,-2,-1,-9,3,-15xm145,-44v-1,2,1,6,1,2xm136,-43r-3,1xm117,-37v1,-5,-2,-4,-2,-1xm128,-38v1,1,2,1,3,0r-3,0xm188,-38v2,1,2,8,-2,6v0,-3,0,-5,2,-6xm118,-35v1,2,3,6,2,0r-2,0xm88,-27v3,-1,3,-8,-1,-5xm115,-27v1,-3,-5,-6,-4,-1xm135,-30v-7,1,1,7,-4,11v11,-3,1,-2,4,-11xm79,-28v0,-2,-3,-3,-2,0v1,1,1,1,0,2v-14,1,4,2,-1,11v3,0,1,3,4,2v-3,-6,-3,-6,-1,-15xm160,-27v-4,-2,-16,7,-17,-1v3,5,-3,9,-2,11v5,-8,14,-3,19,-10xm117,-27v-2,-1,-2,1,-2,3v2,0,1,-2,2,-3xm122,-24v-6,4,-2,13,-7,19v7,-1,8,-10,7,-19xm107,-23v-2,0,-4,3,0,2r0,-2xm99,-22v-4,0,-9,3,-6,6v3,-1,2,-5,6,-6xm111,-21v-2,0,-2,8,1,8xm136,-9v3,5,-6,14,-8,5v2,-4,5,-5,8,-5xm155,-1v1,-5,12,-3,7,1v-2,0,-7,1,-7,-1","w":202},"M":{"d":"1,-252r53,0v9,13,19,27,27,44r-2,0v5,7,19,16,14,27v5,1,14,8,9,14v-16,-1,-31,9,-44,5v-4,6,-10,-10,-10,-10v4,2,14,3,17,0v-7,0,-10,-11,-19,-6v-10,-10,-46,-74,-45,-74xm292,-2v-14,5,-39,0,-57,1r1,-59v4,-7,10,-1,8,-13r-8,-1v3,-57,-10,-67,26,-110v7,-9,17,-38,30,-49r0,153v-3,2,-4,2,0,5r0,63v1,2,-6,1,-5,4v5,-1,6,2,5,6xm271,-6v2,0,1,-3,0,-4r0,4xm38,-239r0,1r0,-1xm259,-12v2,-1,3,-2,-1,-2xm25,-174v-11,-4,-17,11,-25,2v2,-20,-4,-47,2,-63r30,52v-2,3,-8,3,-7,9xm273,-23v0,2,4,1,5,2v-2,-1,-2,-2,-5,-2xm259,-24v2,0,5,1,4,-2v-2,0,-5,-1,-4,2xm251,-28v3,-1,3,-1,1,-3xm279,-45v0,0,11,-3,4,-2v-2,-1,-1,3,-4,2xm265,-51r0,-4v-2,1,-2,3,0,4xm75,-194v0,-3,-4,-6,-3,0v1,2,2,2,3,0xm242,-69v0,6,-8,9,-6,0v0,-3,5,-2,6,0xm77,-173v8,4,10,-5,14,-8v-11,5,-21,-14,-19,1v-2,0,-4,1,-4,4v6,-2,5,6,9,5r0,-2xm282,-68r5,-1xm81,-176v2,-2,5,-6,4,0v-2,1,-3,3,-4,0xm33,-170v2,-3,6,-4,7,1v-3,1,-5,1,-7,-1xm17,-170v6,-2,7,3,4,7v2,-2,11,-7,13,-3v0,1,-4,5,0,4v4,-6,12,-4,12,6v-19,2,-33,10,-46,8v-1,-19,2,-8,14,-12v-4,-7,9,-3,3,-10xm141,-17r-73,-123v0,0,2,0,2,-1v-6,-1,-16,-16,-2,-12v7,6,20,-4,29,-2v2,-10,19,-5,17,4v-3,0,-3,5,0,5v0,-2,0,-4,3,-3r24,41r0,91xm255,-94v0,4,4,2,1,0r-1,0xm242,-98r4,0r-4,0xm42,-152v-1,4,2,5,5,3v2,11,10,4,8,19v-2,0,-4,0,-3,2r3,0r1,127r-56,0r0,-136v5,-12,28,-6,30,3v8,-9,-14,-7,-8,-14v6,-2,13,4,16,0v-2,-3,2,-3,4,-4xm54,-144v-3,0,-8,-6,-3,-6v2,1,3,3,3,6xm92,-146v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm43,-142v-3,-3,-4,-1,-4,3v0,1,-1,3,1,3v2,-1,3,-3,3,-6xm97,-139v2,0,5,2,5,0v-1,-1,-3,-1,-5,0xm102,-136v-1,-3,-2,2,-2,2xm119,-136v0,0,-8,6,-2,5v0,-2,4,-5,2,-5xm114,-130v0,-1,-4,-2,-4,0r4,0xm9,-130v2,8,7,7,10,2v-3,-1,-5,-3,-10,-2xm36,-127v-3,-3,-3,5,-11,3v0,2,-1,5,1,5v5,-3,7,-5,10,-8xm51,-123v0,0,-2,0,-2,1r3,2xm41,-121v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm129,-121v-3,-1,-4,3,-2,4v1,-1,2,-2,2,-4xm21,-118v-1,-1,-2,-1,-3,0r3,0xm34,-114v-2,-2,-9,4,-2,2xm128,-108v-2,0,-4,3,0,2r0,-2xm12,-102v-4,-1,-3,3,-1,4xm278,-157v1,0,3,-1,1,-1xm121,-87v-2,-1,-5,1,-2,2xm209,-180v2,1,6,4,2,5v-1,-1,-2,-2,-2,-5xm255,-233v1,-1,2,0,2,-2xm163,-47v0,-4,-4,-2,-1,0r1,0xm171,-94v-1,-1,-4,-4,-3,0r3,0xm180,-113v0,-5,-4,-2,-1,0r1,0xm184,-131v0,-1,-4,-2,-4,0r4,0xm179,-132v-1,-3,-2,-4,-5,-4v2,1,2,4,5,4xm194,-137v0,0,-2,0,-2,1v1,1,2,2,2,-1xm197,-139v0,-3,-4,-2,-5,0v0,2,4,0,5,0xm204,-146v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm213,-182v-14,-2,-7,7,-2,9v6,-3,8,7,10,-4v2,0,5,1,5,-1v-8,1,-10,-2,-13,-4xm231,-198v-1,-1,-5,0,-4,3v2,2,5,0,4,-3xm202,-168v-4,0,-9,1,-12,-1v0,-10,14,-8,9,-18v16,-23,24,-45,40,-66r54,0v-2,5,-13,21,-30,51v-11,19,-10,16,-19,28v1,-2,-1,-2,-3,-2v3,6,-19,1,-8,6v3,-2,11,-1,13,-2v-8,11,-8,22,-22,31r2,0r-73,123r0,-91v9,-13,14,-31,26,-41v-1,4,1,4,3,2v-10,-11,11,-19,20,-20xm232,-161v2,0,5,2,4,-1v-2,0,-3,0,-4,1xm228,-160v-4,-3,-11,-3,-20,-4v4,3,12,4,20,4xm207,-166v-1,0,-5,0,-2,1","w":307},"N":{"d":"1,-252r53,0v9,13,19,27,27,44r-2,0v5,7,19,16,14,27v5,1,14,8,9,14v-16,-1,-31,9,-44,5v-4,6,-10,-10,-10,-10v4,2,14,3,17,0v-7,0,-10,-11,-19,-6v-10,-10,-46,-74,-45,-74xm149,-227v-12,-35,31,-27,57,-23v2,8,-9,6,0,10r0,63v-3,2,-4,2,0,5v-2,49,4,107,-2,152r-27,-47r2,0v-36,-36,-28,-62,-29,-111v6,0,7,-4,9,-9v-16,1,-8,-26,-10,-40xm186,-246v-3,-1,-2,2,-2,4v1,-1,2,-2,2,-4xm38,-239r0,1r0,-1xm174,-239v-1,0,-2,-2,-2,0r2,0xm25,-173v-11,-4,-18,12,-25,1v2,-19,-4,-47,2,-62r30,52v-3,2,-8,3,-7,9xm192,-232v-3,-1,-7,3,-3,3xm177,-228v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm165,-221v4,-1,2,-4,0,-2r0,2xm194,-208v-1,0,-1,0,-1,1v3,-1,3,5,6,1xm179,-201v-1,1,-3,2,0,3r0,-3xm75,-194v0,-3,-4,-6,-3,0v1,2,2,2,3,0xm149,-188v2,-2,8,1,7,5v-3,5,-8,0,-7,-5xm77,-173v8,4,10,-5,14,-8v-11,5,-21,-14,-19,1v-2,0,-4,1,-4,4v6,-2,5,6,9,5r0,-2xm197,-185v-1,0,-1,0,-1,1v2,0,5,2,5,0xm81,-176v2,-2,5,-6,4,0v-2,1,-3,3,-4,0xm38,-167v-5,0,-6,-5,0,-5v2,2,2,4,0,5xm17,-170v6,-2,7,4,4,7v4,-1,10,-6,13,-2v-1,1,-4,4,0,3v5,-5,12,-3,12,6v-15,2,-32,10,-46,9v-1,-21,2,-7,14,-13v-2,-4,0,-6,5,-5xm78,-154v12,4,21,-5,30,-8v9,6,1,13,7,16v-1,-2,-1,-4,2,-3r88,149r-52,0r-85,-140v0,0,2,0,2,-1v-6,-1,-16,-16,-2,-12v0,1,10,6,10,-1xm172,-160v-2,-1,-5,1,-2,2xm160,-156v-1,0,-4,-1,-4,1v2,0,5,2,4,-1xm42,-152v-1,4,2,7,5,4v2,11,10,3,8,18v-2,0,-4,0,-3,2r3,0r1,128v-18,-1,-40,2,-56,-1r0,-136v6,-11,28,-6,30,4v9,-8,-14,-8,-8,-14v5,-1,12,2,16,0v-2,-3,2,-3,4,-5xm54,-143v-3,0,-8,-6,-3,-6v2,1,3,3,3,6xm92,-146v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm43,-141v-2,-2,-4,-2,-4,2v0,1,-1,3,1,3v2,-1,3,-2,3,-5xm97,-139v2,0,5,2,5,0v-1,-1,-3,-1,-5,0xm102,-136v-1,-3,-2,2,-2,2xm119,-136v0,0,-8,6,-2,5v0,-2,4,-5,2,-5xm114,-130v0,-1,-4,-2,-4,0r4,0xm9,-130v2,8,8,8,10,2v-3,-1,-5,-3,-10,-2xm36,-128v-4,1,-3,6,-11,5v0,1,-1,4,1,4v3,-3,9,-4,10,-9xm51,-123v0,0,-2,0,-2,1r3,2xm41,-121v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm129,-121v-3,-1,-4,3,-2,4v1,-1,2,-2,2,-4xm21,-117v0,-2,-2,-2,-3,-1v0,2,2,1,3,1xm29,-112v3,0,4,-1,5,-2v-4,1,-5,1,-5,2xm128,-108v-2,0,-4,3,0,2r0,-2xm12,-101v-4,-1,-3,3,-1,4xm194,-94v0,-4,-4,-2,-1,0r1,0xm121,-87v-2,-1,-5,1,-2,2xm186,-12v-1,-1,-2,-1,-3,0r3,0xm148,-8v1,2,6,4,7,1","w":219},"O":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-37,19r-6,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-3,5,-9,3v-2,9,-14,4,-7,13v7,-5,12,-13,22,-6v2,11,-6,3,-7,12v5,-3,9,2,6,7v-11,-6,-2,9,-12,9v-1,-3,2,-2,2,-5r-2,0v3,-4,5,-8,5,-10v0,8,-16,6,-8,10v-1,2,-1,5,0,7v-1,0,-2,-2,-2,0v1,1,5,5,2,7v-5,-3,-16,1,-15,-8v-22,-1,-30,-7,-50,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm140,-48v6,2,24,-21,32,-21v-6,-3,-2,-2,4,-10v-2,-5,0,-6,4,-6v3,-1,2,3,4,3v1,-5,-11,-1,-5,-12r4,2v0,-5,-3,-9,-1,-16v2,2,6,-1,6,-5v-3,-1,-2,7,-6,3v-3,-24,14,-23,30,-18v3,-6,7,-2,9,-4v-5,0,-1,-2,-4,-5v-1,4,-15,6,-16,2r2,-5v-9,2,-9,1,-20,0v-2,-6,-5,-15,3,-16v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76r0,-5v2,0,3,4,5,14v-3,-1,-3,-4,-4,3v-2,10,-17,4,-21,0v4,4,-2,8,-8,7v0,0,0,-2,-1,-2v-1,3,3,5,1,6v0,-1,0,-1,-1,-1r0,4v-3,0,-10,-5,-11,-1v9,2,23,10,29,3v-4,-2,-14,-7,-5,-12v3,2,0,5,2,7v0,-2,3,-2,7,-3v1,3,-6,7,-1,6v5,0,0,-8,5,-6v4,-1,9,-7,11,-1v-2,1,5,18,-4,15v1,4,-5,2,-5,5r6,-2r-1,2v10,0,6,8,6,16v-2,0,-1,-5,-5,-4v2,9,-8,5,-6,11v2,-2,5,0,8,0r-1,2r4,0v0,23,-8,50,-29,74v-22,26,-57,43,-84,36v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm46,-210v-2,0,-4,1,-4,4v2,-1,4,-2,4,-4xm224,-176v-2,1,-11,3,-5,3v2,-1,6,0,5,-3xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm207,-150v-1,0,-2,3,-2,1xm205,-144v0,0,-3,2,-1,2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm218,-138v2,1,7,4,10,5v1,-5,-4,-5,-10,-5xm14,-134v0,-2,-3,-4,-2,-1xm182,-137v4,-3,9,3,6,6v-4,0,-6,-2,-6,-6xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-5,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm237,-130v-1,8,-12,-7,-6,4v3,-2,7,2,6,-4xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm197,-113v0,-3,-9,-10,-11,-6xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm219,-114v0,0,-2,0,-2,1r4,0xm205,-114v-2,1,-6,0,-6,4v4,-2,7,4,6,-4xm21,-108v1,-1,4,-2,2,-2xm202,-105v0,-2,-2,-6,-2,-3v2,2,-1,4,2,3xm208,-107v-1,2,4,5,4,1xm234,-107v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm187,-99v-3,-1,-2,2,-1,3v4,1,2,-1,1,-3xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm195,-91v-1,-1,-7,-2,-6,2v3,0,4,-1,6,-2xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm186,-80r1,1xm64,-77v-2,0,-5,2,0,2r0,-2xm181,-72r0,5v3,0,2,-4,0,-5xm197,-72v-2,2,-3,5,1,4xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm176,-65r0,5v2,-2,2,-4,0,-5xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm43,-55v-3,0,-8,2,-2,4v1,-1,2,-2,2,-4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v3,-1,4,-5,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm160,-24v-2,0,-4,4,-1,3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-4,-1,-2,3,-2,5v5,0,4,-1,2,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-4,-2,-3,-5,-3v2,1,0,3,5,3xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm139,-9v1,-3,-3,-6,-2,-1xm103,-3v1,-8,12,-5,12,2v-7,3,-8,-3,-12,-2","w":249},"P":{"d":"103,-255v0,-4,2,-6,7,-5xm6,-229v0,-4,0,-8,-6,-7v1,-5,-2,-15,2,-17v15,1,34,-2,47,1v0,1,-2,3,0,3v3,-5,5,1,8,4r0,120v-1,-1,-3,-1,-3,1v2,2,5,9,2,12v1,-2,1,-2,-2,-2v-1,4,-2,12,-9,11v1,7,5,14,8,1r4,0v-2,33,3,73,-3,102v-12,-7,-45,9,-54,-5v3,-13,12,-14,7,-17v-2,2,-3,2,-7,8r0,-89v8,0,12,-11,9,-18v-3,0,-4,17,-9,11r0,-49v4,1,7,-1,3,-4r-3,1v3,-21,-7,-55,4,-69xm66,-252v43,-3,96,-2,115,27v20,31,23,82,-2,106v4,8,-13,5,-8,12v-10,15,-67,25,-105,18v1,-15,-3,-35,2,-46v15,-1,35,1,45,2r-1,-3v38,-6,33,-73,-5,-70v-5,-6,-22,3,-26,-2v1,0,1,0,1,-1v-4,2,-11,3,-16,1r0,-44xm15,-251v-2,0,-4,5,-1,4xm6,-237v0,0,10,3,9,-3v-4,0,-8,0,-9,3xm175,-235v2,-3,4,-5,7,-2v0,1,1,3,-1,3v-3,-2,-1,-3,-6,-1xm8,-218v-1,2,4,7,6,4v-1,-2,-2,-5,-6,-4xm5,-215v-4,-1,-1,4,-1,5xm91,-212v-2,-2,-3,0,-1,1xm22,-209v1,2,-4,-2,-2,1v-2,0,-1,2,-1,3v5,0,10,-3,3,-4xm87,-203v0,-2,3,-4,2,0r-2,0xm18,-203v-3,0,-3,3,-3,6v1,-1,2,-1,3,0v2,13,-8,0,-12,6v7,-2,8,9,17,10v-3,0,-5,-2,-6,-5v0,-4,2,-5,6,-5v0,-7,-4,-5,-5,-12xm144,-197v1,7,2,6,3,0r-3,0xm30,-189v-1,-6,-4,-3,-3,0r3,0xm164,-189v-2,0,-2,0,-1,1xm24,-170v-2,-1,-5,-7,-7,-4v2,2,2,5,7,4xm57,-168v-1,-1,-4,-3,-3,0r3,0xm173,-170v-2,0,-4,0,-3,2v4,-2,6,4,6,0xm92,-124v0,-5,-6,-9,-8,-3xm79,-126v-4,-5,-18,3,-5,2v-1,3,7,10,9,6v-5,1,-8,-6,-4,-8xm46,-125v-3,0,1,4,-5,7v5,1,5,-3,5,-7xm109,-125v-5,-1,-5,2,-2,5v5,1,3,-2,2,-5xm41,-123v-8,-3,-11,3,-2,3xm31,-118v-2,1,-1,8,0,11v4,-1,6,-1,6,-4v-5,2,-7,-1,-6,-7xm92,-114v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm99,-110v0,-1,-5,-2,-5,0r5,0xm94,-107v-1,-3,-2,2,-2,2xm44,-105v-5,-1,-6,2,-2,5v1,0,1,0,1,-1v0,0,-2,0,-2,-1xm14,-100v-1,-2,-3,2,-3,2xm15,-92v2,4,2,6,7,9v0,-5,-2,-9,-7,-9xm17,-81v0,-2,-3,-3,-2,0r2,0xm44,-75v1,-3,-4,-6,-3,-1xm29,-78v-2,0,-7,-1,-6,2v2,0,7,1,6,-2xm40,-74v-2,0,-3,3,-3,6v2,-1,3,-4,3,-6xm21,-73v-3,-1,-6,3,-4,3v2,-1,4,-2,4,-3xm23,-62v-5,-9,-12,-3,-7,2xm34,-64v-1,-1,-3,-3,-3,0r3,0xm49,-58v1,-6,-7,-1,-11,-2v4,0,8,4,11,2xm34,-42v-5,-4,-5,0,-2,2xm53,-36v0,-3,-5,-4,-4,0v1,0,3,2,4,0xm46,-32v2,10,-17,1,-6,10v4,-3,14,-6,6,-10xm12,-28v-4,0,-5,4,0,3r0,-3xm23,-17v0,7,9,6,13,3v-3,-2,-11,0,-13,-3xm48,-15v-2,0,-3,6,-1,7v1,-2,3,-4,1,-7xm51,-13r-2,2xm17,-7v-2,-3,-6,1,-4,3v3,-1,4,-2,4,-3","w":205},"Q":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-37,19r-6,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-3,5,-9,3v-2,9,-14,4,-7,13v7,-5,12,-13,22,-6v2,11,-6,3,-7,12v5,-3,9,2,6,7v-11,-6,-2,9,-12,9v-1,-3,2,-2,2,-5r-2,0v3,-4,5,-8,5,-10v0,8,-16,6,-8,10v-1,2,-1,5,0,7v-1,0,-2,-2,-2,0v1,1,5,5,2,7v-5,-3,-16,1,-15,-8v-22,-1,-30,-7,-50,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm46,-210v-2,0,-4,1,-4,4v2,-1,4,-2,4,-4xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm14,-134v0,-2,-3,-4,-2,-1xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-5,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm21,-108v1,-1,4,-2,2,-2xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm64,-77v-2,0,-5,2,0,2r0,-2xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm192,-31v1,-1,4,-1,3,-4v-3,1,-5,0,-3,4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v3,-1,4,-5,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-4,-1,-2,3,-2,5v5,0,4,-1,2,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-4,-2,-3,-5,-3v2,1,0,3,5,3xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm103,-3v1,-8,12,-5,12,2v-7,3,-8,-3,-12,-2xm219,-45v-1,1,-5,4,0,3v1,-1,1,-2,0,-3xm139,-9v1,-3,-3,-6,-2,-1xm160,-24v-2,0,-4,4,-1,3xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm176,-65r0,5v2,-2,2,-4,0,-5xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm181,-72r0,5v3,0,2,-4,0,-5xm186,-80r1,1xm195,-91v-1,-1,-7,-2,-6,2v3,0,4,-1,6,-2xm187,-99v-3,-1,-2,2,-1,3v4,1,2,-1,1,-3xm234,-107v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm208,-107v-1,2,4,5,4,1xm202,-105v0,-2,-2,-6,-2,-3v2,2,-1,4,2,3xm207,-42v-2,1,-6,0,-6,4v3,-3,8,4,6,-4xm219,-114v0,0,-2,0,-2,1r4,0xm197,-113v0,-3,-9,-10,-11,-6xm237,-130v-1,8,-12,-7,-6,4v3,-2,7,2,6,-4xm218,-138v2,1,7,4,10,5v1,-5,-4,-5,-10,-5xm205,-144v0,0,-3,2,-1,2xm224,-176v-2,1,-11,3,-5,3v2,-1,6,0,5,-3xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm192,-15v1,1,4,2,3,-1v-1,0,-3,-1,-3,1xm197,-55v4,1,3,-2,2,-4v-2,1,-1,3,-2,4xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm182,-137v4,-3,9,3,6,6v-4,0,-6,-2,-6,-6xm207,-150v-1,0,-2,3,-2,1xm216,-42v-3,-2,-4,0,-5,2xm223,-156v7,1,11,-7,14,-1v-2,1,5,18,-4,15v1,4,-5,2,-5,5r6,-2r-1,2v10,0,6,8,6,16v-2,0,-1,-5,-5,-4v2,9,-8,5,-6,11v2,-2,5,0,8,0r-1,2r4,0v2,20,-11,40,-20,64v2,-3,2,-8,5,-9r18,17r-41,41r-17,-18v-17,9,-41,21,-58,15v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1v-1,1,-2,2,1,2v1,-5,30,-20,29,-24v-1,0,-3,2,-3,0v5,-1,9,-22,16,-11v1,-5,-11,-1,-5,-12r4,2v0,-5,-3,-9,-1,-16v2,2,6,-1,6,-5v-3,-1,-2,7,-6,3v-3,-24,14,-23,30,-18v3,-6,7,-2,9,-4v-5,0,-1,-2,-4,-5v-1,4,-15,6,-16,2r2,-5v-9,2,-9,1,-20,0v-2,-6,-5,-15,3,-16v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76r0,-5v2,0,3,4,5,14v-3,-1,-3,-4,-4,3v-2,10,-17,4,-21,0v4,4,-2,8,-8,7v0,0,0,-2,-1,-2v-1,3,3,5,1,6v0,-1,0,-1,-1,-1r0,4v-3,0,-10,-5,-11,-1v9,2,23,10,29,3v-4,-2,-14,-7,-5,-12v3,2,0,5,2,7v0,-2,3,-2,7,-3v1,3,-6,7,-1,6v2,0,5,-5,2,-6","w":251},"R":{"d":"0,-251v13,-4,42,-4,57,0r-1,251v-9,-2,-21,1,-38,0v0,-2,0,-4,-2,-3v0,3,-13,5,-16,1r0,-249xm190,-71v-11,-1,-8,2,-6,11v4,1,5,-1,8,-2v1,11,8,26,0,32v9,-3,9,9,7,18v5,-4,6,1,11,8v-2,5,-11,4,-18,4r1,-10v-2,0,-2,3,-3,10v-5,0,-21,1,-15,-3v10,3,-1,-12,15,-9r0,-5v-14,3,-14,4,-14,12r-8,0v1,9,-10,4,-16,5v-10,-17,-12,-24,-19,-72v-2,-19,-25,-18,-44,-24v2,0,2,0,2,-2v-5,3,-18,9,-25,4v2,-7,-5,-19,5,-19v0,0,0,-2,-1,-2v-1,0,-3,2,-4,0v1,-8,-2,-20,2,-24v41,1,79,-1,75,-39v-4,-39,-44,-21,-77,-29v1,-15,-3,-35,2,-46v31,-1,105,1,102,16v45,13,36,102,-3,109v1,4,-6,4,-10,7v9,-1,24,12,27,29v-4,-1,-7,-2,-5,2v9,-3,8,3,11,19xm171,-200v-1,0,-4,2,-2,2xm55,-177v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm157,-159v-4,0,-3,4,-2,6v2,0,1,-4,2,-6xm50,-147v9,-8,3,-2,-1,-1v0,1,0,1,1,1xm138,-148v2,2,6,6,9,2v-4,1,-6,0,-9,-2xm48,-144v0,-4,-3,-2,-1,0r1,0xm129,-135v-6,-8,-8,3,-21,3v3,2,-4,8,2,7v7,-2,2,-10,12,-9v2,2,4,6,7,-1xm91,-137v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm150,-137v-2,0,-2,7,0,7r0,-7xm81,-136v0,9,3,9,6,2xm145,-116v0,-5,-8,-10,-9,-3xm103,-119v0,3,3,4,4,1xm36,-115v-2,2,-10,6,-2,5xm54,-116v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm79,-113v2,2,11,6,13,1v-7,2,-10,-5,-13,-1xm100,-109v0,0,-10,-1,-5,0r5,0xm44,-109v-4,0,-8,5,-1,4xm149,-108v-1,-2,-5,-1,-4,2xm130,-101v2,4,1,11,4,13v-2,-5,3,-14,-4,-13xm179,-96v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm186,-85v-9,-2,-14,4,-6,3v4,3,7,6,6,-3xm161,-85r-3,5v1,-2,3,-2,3,-5xm143,-82v-2,0,-1,3,-1,4xm180,-79v0,0,0,9,1,3xm163,-75v-1,0,-4,2,-2,2xm175,-72v-1,-2,-6,-2,-5,1xm51,-68v0,0,-5,5,-1,4xm178,-68v-4,0,-7,5,-3,4v1,-1,4,-1,3,-4xm145,-66v1,1,4,9,5,4v-3,0,-1,-5,-5,-4xm48,-62v-1,2,-4,2,-7,4v2,-1,7,0,7,-4xm168,-60v-2,0,-5,-2,-5,0v2,1,4,1,5,0xm173,-58v-4,1,-11,-1,-13,3v5,1,13,1,13,-3xm152,-54v-1,1,-4,4,0,3r0,-3xm140,-48v1,6,4,8,5,3v-2,-1,-2,-3,-5,-3xm160,-46v0,4,3,4,6,2v1,-3,-4,-2,-6,-2xm179,-46v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm148,-42v1,0,3,2,3,0r-3,0xm35,-37v-5,-1,-4,2,-1,4v2,0,1,-3,1,-4xm172,-37v0,1,3,5,8,5v1,-3,-3,-4,-8,-5xm39,-32v0,-1,-2,-2,-2,0r2,0xm161,-22v-3,-2,-11,-12,-15,-8v7,3,7,8,15,8xm186,-28v-3,0,-3,0,-2,2xm11,-24v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm170,-23v-3,3,-2,6,-4,9v6,2,4,-5,4,-9xm196,-23v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm30,-20v-2,-3,-6,1,-6,3v4,-1,6,-2,6,-3xm150,-17v-1,-1,-1,-3,-1,0r1,0xm12,-12v4,0,4,0,2,-2xm42,-10v-1,-1,-3,-3,-3,0r3,0xm11,-10v-1,-3,-2,2,-2,2xm29,-8v0,-4,-3,-2,-1,0r1,0xm38,-9v0,-1,-2,3,-2,3xm163,-8v-3,0,-5,0,-5,3v2,-1,6,0,5,-3xm208,7v1,-3,7,-3,8,0v-1,3,-7,3,-8,0","w":210},"S":{"d":"185,-111v11,-1,20,14,15,19v-9,-1,-10,4,-19,3v5,7,14,-1,17,4v0,-4,4,-8,6,-5v0,5,2,9,-6,8v0,7,-10,7,-11,11v6,-4,16,2,17,-7v-3,10,2,22,-6,24r2,0v2,13,-13,10,-4,12v-2,3,-4,12,-9,10v0,4,-3,9,-6,7v3,-8,-4,-9,-8,-13v0,0,2,0,2,-1v-1,-2,-3,-2,-6,-1v-3,-9,9,-13,-4,-14v1,1,4,7,1,9r-3,-1v4,5,-2,10,-6,7v1,-7,8,-7,0,-10v-13,5,-18,-3,-6,-7v-9,-1,-1,-12,-2,-20v4,2,11,-4,6,-6v-6,4,-12,-3,-11,-7v11,2,20,-6,6,-8v-8,6,-37,0,-22,-7v-11,-6,-21,-3,-26,-14v-4,6,-8,7,-16,11v-53,-10,-78,-33,-78,-74v0,-43,38,-72,93,-70v-5,23,15,49,-21,45v1,-4,8,-3,11,-5v-6,1,-18,-2,-14,6v-35,25,-3,38,30,52r3,-3v40,9,59,13,78,33v-4,1,-4,-6,-9,-5v7,6,8,10,6,17xm147,-171v-3,-30,-16,-28,-38,-39v2,-12,-2,-30,1,-42v48,5,87,19,90,76xm134,-245v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm149,-239r3,-3xm51,-235v-4,1,-4,4,0,2r0,-2xm25,-218v0,-4,-4,-2,-1,0r1,0xm177,-220v-4,0,-8,0,-11,4v6,-2,17,3,11,-4xm48,-218v-2,0,-5,-1,-4,2r6,1xm163,-211v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm192,-199v-1,3,1,7,2,5xm58,-163v-3,-2,-8,-6,-10,-2xm67,-160v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm106,-148v1,-3,-1,-6,-2,-3v4,8,-8,8,-7,16v6,-4,9,-9,9,-13xm28,-150v-4,1,-2,2,0,4v0,-1,2,-3,0,-4xm39,-148v-4,0,-2,4,0,5r0,-5xm50,-138r-4,0r4,0xm73,-138v0,-2,-2,-2,-3,-1v0,2,2,1,3,1xm120,-134v1,0,5,0,2,-1xm31,-134v1,0,4,2,4,0r-4,0xm167,-133v6,9,-12,0,-5,14v-4,5,-8,0,-15,6v8,1,9,0,16,-3v1,5,-6,5,0,10v4,0,0,-12,7,-8v4,-8,-11,-5,-4,-11v6,1,8,-5,1,-8xm95,-131r0,4r0,-4xm130,-128v-2,0,-2,2,-2,4v3,1,2,-2,2,-4xm96,-123v-1,-6,-7,6,-13,0v2,7,10,5,13,0xm174,-122v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm193,-116v-5,1,-8,-4,-3,-5v2,1,3,3,3,5xm124,-118v-1,-1,-1,-1,-2,0r2,0xm182,-115v-1,-2,-6,-2,-5,1xm101,-111v-1,-5,4,-3,6,-1v0,1,1,3,-1,3xm176,-112v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm179,-109v1,1,0,2,2,2xm89,-107v9,1,11,-5,17,0r0,5v-11,-2,-17,-4,-17,-5xm146,-105v-2,-3,-3,2,-3,2v2,0,3,-1,3,-2xm170,-104v-3,-2,-9,3,-7,6xm188,-100v-1,-2,-7,-2,-6,-1xm175,-97v-2,0,-2,0,-2,2v4,0,4,0,2,-2xm180,-87v-7,2,-16,1,-21,5r8,0v0,3,1,5,3,5v-3,-4,1,-6,6,-5v2,1,4,3,3,-1v-1,-2,0,-3,1,-4xm74,-3v-15,0,-24,-4,-37,-11v1,-6,4,-4,4,-9v-21,10,-40,-23,-38,-48v-2,-1,-6,-13,0,-12v8,3,20,-3,27,2v2,-6,20,-4,24,-2v-2,5,6,20,11,26v-1,-1,-2,-2,-2,1v10,0,21,10,26,9v-1,5,1,0,6,1v7,-1,9,10,3,11v-1,0,-3,-2,-3,0v7,3,2,9,3,16v-1,-1,-2,-1,-3,0v-2,5,14,8,2,14v2,2,4,3,1,5v-7,2,-4,-7,-13,-8v1,5,-3,5,-7,5v-3,-5,-6,-10,-6,-5v2,0,2,2,2,5xm37,-82v-3,0,-3,3,-1,4xm191,-82v-2,-1,-5,1,-2,2xm185,-78v-3,0,-5,0,-3,3xm5,-78v-3,-1,-2,4,-2,6v4,0,4,-3,2,-6xm23,-74v0,-3,-4,-4,-3,0r3,0xm51,-70v0,-4,-5,-11,-6,-3v3,-1,3,3,6,3xm14,-72v1,0,4,1,4,-1v-2,0,-3,0,-4,1xm174,-73v-3,2,-8,6,0,5r0,-5xm37,-72v-4,1,-5,4,0,4r0,-4xm157,-72r1,2xm27,-70v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm149,-66v1,2,8,7,11,5v-4,-2,-6,-5,-11,-5xm175,-66v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm14,-65v-1,1,-3,2,0,2r0,-2xm184,-65v-4,-1,-3,3,-1,4v2,0,1,-3,1,-4xm172,-58v0,-4,-6,-6,-5,-4v0,1,2,2,5,4xm187,-59v-2,-2,-5,1,-2,2xm166,-54v1,-3,-5,-6,-4,-2xm46,-51v1,-3,-3,-7,-3,-3v1,1,0,4,3,3xm176,-54v1,0,3,2,3,0r-3,0xm17,-53v-1,1,-4,4,0,3r0,-3xm181,-53r-6,12v4,-1,15,-8,6,-10r0,-2xm31,-49r1,5xm55,-49v-1,2,-4,1,-4,4xm116,-12v9,-10,-7,-19,-7,-31v6,-3,8,-2,17,-5v2,6,-3,5,-8,5v1,7,2,4,10,4v-1,-1,-2,-2,1,-2v3,1,3,3,5,6v3,-9,-8,-11,-2,-15v23,0,20,27,37,17v3,9,-11,16,-2,19v1,-9,6,-19,12,-7v-18,13,-20,13,-37,13v0,-1,2,-3,0,-3v1,9,-9,11,-33,10v0,-7,-2,-14,7,-11xm141,-45v-2,0,-2,3,-1,4xm60,-43v2,1,4,6,6,5v-1,-3,-1,-6,-6,-5xm95,-36v0,-2,-4,-3,-3,0r3,0xm145,-36v-2,0,-4,0,-3,2r4,0xm184,-36v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm175,-35v1,3,-1,5,-4,4v-1,-3,1,-5,4,-4xm57,-31v2,1,4,3,3,-1v-2,-1,-7,1,-3,1xm109,-28v-1,-3,1,-8,3,-3v-1,1,0,4,-3,3xm38,-31v-1,1,-2,0,-2,2r3,0xm82,-30v-2,3,1,3,4,2v0,-2,-3,-1,-4,-2xm72,-29v-2,5,8,6,4,2v-1,2,-4,1,-4,-2xm109,-20v-2,-6,3,-7,7,-5v2,6,-3,8,-7,5xm158,-25v-3,0,-7,4,-1,3xm148,-25v-3,-1,-2,3,-2,5v7,-1,5,-1,2,-5xm56,-24v1,1,0,2,2,2xm130,-22v-1,2,0,4,3,3v0,-2,-2,-2,-3,-3xm66,-15v-2,-2,-6,-7,-5,0v1,-1,3,-1,5,0xm95,-9v0,-3,-6,-8,-5,-3v1,3,5,-1,5,3xm152,-12v4,1,9,-2,3,-3xm49,-14v6,-1,3,6,7,6v3,-5,-4,-5,-7,-6xm78,-14v-1,2,2,7,2,2xm119,-9v-1,5,2,3,4,2v0,-1,-1,-2,-4,-2xm114,-3r6,1v0,-3,-4,-1,-6,-1xm78,-3v0,2,-4,2,-4,0r4,0xm81,-1v0,-2,2,-1,3,-1v1,3,-2,2,-3,1","w":212},"T":{"d":"188,-251v1,12,-7,8,-12,2v-1,-6,8,-2,12,-2xm156,-213v-7,-6,-16,-10,-14,-22v6,3,11,-4,14,1v-4,1,-8,6,-5,7v3,-6,8,-7,7,2v17,5,8,-14,19,-11v-5,1,2,-5,-2,-6v0,0,0,2,-1,2v-1,-2,-1,-4,3,-3v-1,2,1,2,3,2v3,-2,10,4,5,7v-2,-1,-8,-2,-7,2v5,-2,1,1,1,1v-3,0,0,5,0,7v5,0,2,-9,9,-11v0,14,-1,22,0,33v-6,1,0,-5,-3,-6v-5,13,-34,3,-56,6v-4,-2,-10,-1,-9,-7r5,-2v-7,2,-6,-6,-3,-8v4,-1,7,6,9,0v-2,2,-6,1,-5,-3v4,-7,12,-2,18,0v1,9,3,13,12,9xm173,-210v3,0,7,-8,5,-11v-4,3,-1,7,-5,11xm173,-209r0,3v1,-1,1,-2,0,-3xm165,-252v3,1,9,-2,9,2r-11,0xm172,-217v-2,1,-5,0,-4,3xm169,-240v-2,18,-9,-5,-19,2v-4,-2,4,-5,-1,-7v-9,1,-8,15,-18,5v-2,1,-3,2,-3,5v7,4,5,1,14,3v0,8,-8,6,-13,3v-10,12,-7,12,-20,15v2,7,6,-2,6,10v1,1,3,0,3,2v-32,-2,-70,4,-97,-3v0,1,2,4,-1,3v-11,4,-29,-7,-15,-10v-1,-3,-3,-4,-3,-9v5,-2,5,8,7,1v-3,1,-6,-5,-4,-9v11,0,3,11,14,13v-1,-4,2,-3,5,-3v2,5,-6,6,-3,9v1,-6,8,-2,10,2v-2,0,-2,0,-2,2v10,1,10,-9,3,-4v-5,-9,-15,-13,-8,-22v4,0,6,2,4,6v9,1,1,-4,8,-7v-11,1,-1,-7,-11,-7v1,-1,1,-3,-1,-3v0,7,-9,8,-8,0r-7,0v0,6,-2,5,-7,5v0,-5,-1,-6,5,-7v2,-10,10,-5,26,-7v3,3,6,9,5,0v14,4,45,-5,60,2v8,-8,24,5,27,-2v10,0,42,-1,28,3v5,7,29,-1,10,10v3,2,4,0,6,-1xm167,-213v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm163,-213v-10,3,0,-11,-8,-11v2,4,2,17,8,11xm142,-248v5,5,4,-1,1,-1xm144,-206v-1,-2,-3,-2,-3,1xm141,-214v0,-2,-3,0,-4,0v0,2,0,4,2,3xm131,-246v1,2,5,1,2,0r-2,0xm119,-225v2,-4,-8,0,-6,-10v-3,1,-5,-1,-4,-4v6,1,4,3,11,5v-5,-15,-19,0,-20,-15v-5,1,3,8,-2,10v7,-2,15,6,10,12v-5,1,-4,7,-13,6v10,6,11,-5,20,1v-1,-2,-1,-4,0,-6xm103,-234v-6,0,-5,-1,-4,-4v-2,2,-9,3,-1,6v3,2,-2,3,4,3xm102,-207v1,-3,-1,-3,-4,-3v0,1,2,2,4,3xm97,-212v0,-2,-2,0,-3,0r3,0xm96,-244v0,-3,-5,-4,-5,-1v1,1,3,1,5,1xm88,-216v1,-2,-1,-5,-2,-2v1,1,0,2,2,2xm83,-204v3,0,7,-6,2,-7v-7,1,-5,1,-2,7xm82,-243v0,0,2,-1,0,-1v-3,1,-3,5,0,6v2,-1,0,-3,0,-5xm82,-219v2,-1,1,-6,-2,-5v0,3,1,4,2,5xm78,-211v0,-2,-3,-1,-4,-2v-1,3,2,2,4,2xm71,-243v4,-1,0,-4,1,-3xm71,-243v0,1,-4,3,-2,3xm70,-220v1,7,-6,3,-9,4v4,7,13,5,9,-4xm67,-235v0,1,0,5,1,2xm63,-246v0,-2,0,-2,-2,-2r0,2v-3,1,-6,-6,-5,-1v6,1,3,8,7,10v-1,-3,-3,-7,0,-9xm62,-204v2,0,0,-2,0,-3v-2,1,-7,0,-6,5v3,-2,6,-7,6,-2xm50,-240v2,-2,-1,-5,-5,-4xm41,-206v10,0,3,-4,1,-7xm41,-243v0,1,-2,4,0,4r0,-4xm39,-245v-2,0,-4,3,0,2r0,-2xm33,-243v-2,1,-2,3,0,4r0,-4xm16,-244v7,-2,4,-5,0,-4r0,4xm18,-235v1,3,-1,3,-4,3r-2,-2xm12,-203v1,-3,-2,-8,-3,-5v0,3,2,5,3,5xm1,-252v1,0,3,2,1,2v-1,-1,-3,-1,-1,-2xm66,-1v2,-30,-5,-68,3,-92v1,-4,-8,-10,1,-13r2,1v2,-11,0,-15,10,-15v-1,-3,4,-2,4,-4v-8,-3,-16,4,-20,0v2,-10,-3,-27,2,-33v0,2,-1,5,2,4v1,-4,4,-6,7,-8v-16,5,-6,-9,-11,-23v5,-2,-4,-13,9,-7v0,-4,8,-1,11,-2v0,1,-1,4,1,4v8,-6,27,-4,36,-2v1,10,-1,5,-9,3v3,4,-2,5,-3,9v2,-3,9,-8,10,-1v1,5,-8,4,-7,8v4,-2,7,-2,9,-7v-2,8,4,23,-4,25v8,6,4,32,3,43v1,-4,-1,-5,-5,-4v6,3,9,20,0,22v1,1,5,6,1,8v-5,1,-6,-2,-5,-6v1,-1,3,-2,1,-4v-5,5,-22,10,-5,8v4,6,4,10,14,6r0,80r-57,0xm116,-47v2,-1,5,-9,0,-8r0,8xm118,-74v0,5,4,8,4,1xm73,-74v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm100,-78v4,-1,8,4,11,3v0,-1,-8,-7,-11,-3xm84,-78v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm68,-82v6,-1,10,-3,4,-3xm89,-87v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm122,-91v2,1,2,9,-1,8xm102,-103v-6,3,-11,7,-5,12v-1,-5,6,-6,5,-12xm77,-101v-7,2,-7,5,0,7v2,-2,2,-5,0,-7xm88,-102v-4,2,-2,11,2,6v-1,-1,-3,-1,-1,-6v4,-1,6,-1,6,-4v-8,7,-6,-15,-9,-5v-7,-2,-9,6,-3,7v2,0,6,-1,5,2xm116,-101v0,2,8,5,6,0r-6,0xm104,-113v0,3,8,8,9,5v-6,-1,-5,-5,-9,-5xm72,-114v1,4,-5,7,-6,3v-1,-8,1,-9,6,-3xm114,-116v0,0,-5,-5,-4,-1xm90,-120v2,3,7,3,3,0r-3,0xm99,-121v3,3,5,-2,6,-5v-4,2,-6,4,-6,5xm97,-126v-5,-4,-5,-10,-9,-2v0,1,2,1,9,2xm108,-129v-5,-1,-1,1,-1,1xm75,-128v2,-1,10,-6,3,-5v-6,0,-4,-6,-8,-1v-1,6,6,-1,5,6xm114,-134v1,-5,-8,-7,-8,-6v0,2,3,4,8,6xm82,-138v1,1,2,2,4,2v-1,-1,-2,-2,-4,-2xm117,-143v0,5,6,4,3,0r-3,0xm88,-149v0,-2,0,-4,-3,-3v-1,2,3,1,3,3xm79,-154v1,1,2,2,4,2v-1,-1,-2,-2,-4,-2xm88,-171v2,0,5,4,5,2v-3,0,-2,-3,-5,-2xm98,-168v2,1,5,-5,3,-8v-7,-1,2,3,-3,8xm81,-173v0,4,4,2,1,0r-1,0xm87,-180v3,1,6,-2,1,-2xm79,-185v2,1,4,1,4,-2v-2,-2,-3,0,-4,2xm106,-185v2,0,4,0,3,-2v-2,0,-4,0,-3,2","w":201},"U":{"d":"25,-62v0,-2,-1,-3,-1,-1xm0,-80r0,-142v13,5,11,-7,23,-7v-3,0,-19,-10,-12,-3v2,6,-4,6,-8,4v6,-8,-9,-14,0,-26r14,0v0,3,-6,2,-6,6v4,-5,18,-9,25,-4v-2,7,-15,4,-2,8v0,6,2,12,4,3v-7,-6,15,-5,4,-12v-2,0,-5,1,-5,-1v7,0,17,-3,15,7v5,-3,6,3,5,8r-3,0v8,43,1,104,3,153v-4,13,15,22,14,28r-1,-1v1,4,10,2,19,3v-1,11,2,26,-1,35v-2,0,-7,-1,-7,1v10,-1,8,10,8,19v-44,6,-89,-24,-89,-79xm2,-240v2,-1,6,0,5,-3v-3,0,-6,-1,-5,3xm44,-240v5,6,12,1,3,-3v-2,0,-2,2,-3,3xm21,-245v1,8,6,15,9,7xm32,-225v2,1,2,-1,2,-3v-3,-1,-4,1,-2,3xm55,-223v-2,-2,-3,-5,-7,-4v0,2,2,3,7,4xm37,-219v2,0,2,0,2,-2r-2,-2r0,4xm12,-216v2,0,14,-3,9,-5v-5,2,-8,3,-9,5xm48,-215v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm2,-210v2,0,2,-3,3,-5v-2,0,-4,2,-3,5xm6,-188v4,-2,0,-12,-2,-6xm76,-11v2,0,5,1,5,-1xm75,-22v0,2,3,1,5,1xm77,-50v-3,-2,-10,0,-7,5v3,-1,8,0,7,-5xm69,-20r-1,-1xm75,-25r3,-12v-4,1,-8,5,-11,1v0,4,3,8,8,11xm68,-51v0,0,-6,-4,-3,-1v-1,2,2,3,3,1xm56,-12v0,2,-1,6,2,5v0,-2,1,-6,-2,-5xm64,-25v3,-4,-9,-6,-10,-8v0,5,4,6,10,8xm52,-81v-1,2,-1,4,2,4v0,-2,-1,-3,-2,-4xm51,-58v1,4,0,9,4,9v0,-6,7,-3,8,-7xm48,-45v0,1,1,3,4,3v1,-3,-1,-3,-4,-3xm44,-61v-4,-1,-2,5,-3,7v4,1,2,-5,3,-7xm33,-52v-1,3,2,5,3,2xm29,-84r2,11v1,-6,3,-9,-2,-11xm18,-82v0,1,-1,3,1,3v0,-1,2,-4,-1,-3xm25,-67v0,4,3,4,2,0r-2,0xm4,-111r0,1r0,-1xm52,-254v3,0,6,-1,4,3v-2,0,-3,-1,-4,-3xm2,-224v-4,0,-1,-6,-2,-9v4,-1,1,5,2,9xm22,-84r2,0r-2,0xm162,-73r1,-2v-1,0,-1,0,-1,2xm152,-253v29,2,12,3,32,0v7,2,4,20,-3,19v3,0,5,6,1,8v-5,1,-6,-2,-5,-6v2,-1,4,-2,1,-4v-2,6,-14,3,-12,10v10,-8,9,12,22,4r0,142v-9,52,-37,83,-89,80v1,-8,-3,-21,8,-19r0,-2v-1,2,-6,-2,-8,1v3,-13,-9,-42,12,-35v-1,-5,8,1,7,-4v-1,1,-3,1,-3,-1v10,-5,15,-13,15,-25r0,-145v7,-6,-4,-12,2,-18v5,1,4,0,4,-5v4,1,12,-2,14,1v-6,-3,-9,2,-5,6v12,-4,-1,16,10,8v0,0,-2,0,-2,-1v0,-5,7,-5,6,-9v-4,2,-6,-1,-7,-5xm181,-242v0,2,6,3,5,0r-5,0xm141,-242v-7,2,-6,5,0,7v2,-3,4,-6,0,-7xm142,-200v5,8,3,2,9,-3r0,-4v-3,3,-7,3,-9,7xm155,-214v-1,4,3,3,3,1v0,-2,-2,-1,-3,-1xm132,-223v5,-1,10,-3,5,-3xm148,-219v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm165,-219v4,-1,7,5,10,3v0,-1,-8,-7,-10,-3xm138,-215v2,0,1,-3,1,-4v-2,0,-1,3,-1,4xm182,-215v0,5,4,8,4,1xm181,-188v1,-2,4,-7,0,-8r0,8xm124,-23v-1,-1,-4,-4,-4,0r4,0xm145,-101v0,-2,-4,0,-5,0r5,0xm119,-36v3,-6,-3,-8,-7,-6v-1,6,4,5,7,6xm151,-100r1,-1xm153,-116v-3,5,-9,-2,-11,0r3,11v5,-3,8,-7,8,-11xm126,-44v-1,-2,-7,1,-4,2v2,0,3,0,4,-2xm144,-19v0,-2,1,-6,-2,-5v0,2,-1,6,2,5xm166,-112v0,0,-9,1,-11,7v6,0,10,-4,11,-7xm134,-77v0,0,1,-5,0,-1r0,1xm142,-53v4,0,5,-9,4,-9v-4,1,-10,0,-12,3v5,0,7,2,8,6xm145,-46v4,0,6,-4,0,-3r0,3xm156,-58v-1,-3,1,-7,-3,-7v1,2,-1,8,3,7xm161,-53v7,-1,3,-4,0,-1r0,1xm156,-84v2,-2,4,-11,2,-11v-5,2,-3,5,-2,11xm169,-90v0,-2,0,-4,-2,-3v1,1,0,3,2,3xm162,-78v-2,-1,-2,1,-2,3v1,0,2,-1,2,-3xm184,-111r0,1r0,-1xm130,-252v7,-4,5,4,1,1xm188,-233v-1,3,2,10,-3,9v1,-3,-1,-9,3,-9xm163,-95r2,0r-2,0","w":201},"V":{"d":"45,-189v2,-1,2,-3,-1,-3v-2,0,1,3,1,3xm40,-209v1,0,3,-1,1,-1xm27,-245v2,4,8,4,14,4v-3,-2,0,-11,-3,-8xm49,-176v2,1,7,-2,2,-2xm79,-151v1,-1,4,-2,2,-3v-1,0,-2,1,-2,3xm111,-99r0,99r-18,0r-92,-252r54,0xm76,-74v2,1,2,-1,2,-3v-1,0,-2,1,-2,3xm81,-83v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm107,-44v-5,2,-12,8,-5,11v-1,-4,5,-6,5,-11xm77,-95v0,5,3,6,3,1v-1,-5,7,-5,6,-8v-7,3,-6,-5,-8,-9v2,8,-13,-1,-6,10v4,0,10,2,5,6xm99,-70v0,3,8,8,9,5v-6,-1,-5,-5,-9,-5xm109,-73v0,0,-5,-5,-4,-1xm82,-117v2,3,6,5,3,0r-3,0xm101,-83v-6,2,-9,8,-3,5v-1,-3,4,-2,3,-5xm89,-122v-5,-4,-4,-10,-10,-3v0,1,3,2,10,3xm100,-86v0,2,2,0,3,0r-3,0xm92,-55v1,-5,-9,-7,-9,-7v0,3,4,5,9,7xm99,-22v3,1,1,-2,1,-4v-3,-1,-1,2,-1,4xm62,-146v2,0,5,4,5,2v-3,0,-2,-3,-5,-2xm63,-116v2,0,5,-6,3,-9v-1,0,-4,-1,-4,1v6,0,2,5,1,8xm55,-148v0,4,4,2,1,0r-1,0xm61,-155v3,1,6,-2,1,-2xm53,-161v2,2,4,2,4,-1v-2,-1,-4,-1,-4,1xm72,-134v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm136,-70v0,0,-5,0,-3,1xm131,-50v0,-5,-4,-2,-1,0r1,0xm122,-14r7,3v-1,-4,-1,-7,1,-9r-8,0r0,-77r56,-155r55,0r-92,252r-19,0r0,-14xm142,-82v0,-4,-6,-2,-2,0r2,0xm171,-107v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm200,-214v-2,0,-14,3,-9,5v5,-2,8,-3,9,-5xm166,-187v-2,0,-1,3,0,4r0,-4xm172,-182v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm188,-189v-7,5,-3,9,4,12v1,-6,-5,-7,-4,-12xm195,-242v-2,-6,-5,-4,-9,-1v3,1,6,4,9,1xm168,-171v-7,2,6,13,-7,11v-3,4,0,9,5,6v1,2,0,5,2,5v-4,-11,15,-8,2,-14v-1,-5,1,-6,-2,-8xm193,-158v-4,0,-5,6,-9,3v2,9,2,0,9,-1r0,-2xm194,-148v-1,1,-3,0,-3,2v2,-1,3,-1,3,-2xm175,-147v-3,1,-4,5,0,2r0,-2xm183,-144v-1,0,-3,-1,-3,1r6,3v-3,0,-1,-3,-3,-4xm178,-139v-14,1,-10,5,-4,8v0,-3,1,-6,4,-8xm188,-137v-1,1,-3,0,-3,2r4,0xm216,-235v-4,-7,-8,-2,-11,-1v1,8,4,0,11,1xm181,-205v-5,2,-11,5,-8,8v-1,-5,10,-1,8,-8xm203,-221v-2,-1,-4,2,-2,2xm187,-199v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm206,-208v-2,0,-6,4,-1,3xm200,-205v-3,-1,-6,3,-1,2xm156,-118v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm155,-135v4,-6,-6,-12,-1,-6v2,5,-7,6,1,6xm147,-114v-2,-1,-5,1,-2,2xm150,-105v0,1,4,2,4,0r-4,0xm145,-102v-2,1,-4,2,-2,5v3,0,3,-2,2,-5xm163,-126v-1,0,-3,-1,-3,1v1,0,3,1,3,-1","w":240},"W":{"d":"45,-189v2,-1,2,-3,-1,-3v-2,0,1,3,1,3xm40,-209v1,0,3,-1,1,-1xm27,-245v2,4,8,4,14,4v-3,-2,0,-11,-3,-8xm49,-176v2,1,7,-2,2,-2xm79,-151v1,-1,4,-2,2,-3v-1,0,-2,1,-2,3xm111,-99r0,99r-18,0r-92,-252r54,0xm76,-74v2,1,2,-1,2,-3v-1,0,-2,1,-2,3xm81,-83v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm107,-44v-5,2,-12,8,-5,11v-1,-4,5,-6,5,-11xm77,-95v0,5,3,6,3,1v-1,-5,7,-5,6,-8v-7,3,-6,-5,-8,-9v2,8,-13,-1,-6,10v4,0,10,2,5,6xm99,-70v0,3,8,8,9,5v-6,-1,-5,-5,-9,-5xm82,-117v2,3,6,5,3,0r-3,0xm101,-83v-6,2,-9,8,-3,5v-1,-3,4,-2,3,-5xm89,-122v-5,-4,-4,-10,-10,-3v0,1,3,2,10,3xm100,-86v0,2,2,0,3,0r-3,0xm92,-55v1,-5,-9,-7,-9,-7v0,3,4,5,9,7xm99,-22v3,1,1,-2,1,-4v-3,-1,-1,2,-1,4xm62,-146v2,0,5,4,5,2v-3,0,-2,-3,-5,-2xm63,-116v2,0,5,-6,3,-9v-1,0,-4,-1,-4,1v6,0,2,5,1,8xm55,-148v0,4,4,2,1,0r-1,0xm61,-155v3,1,6,-2,1,-2xm53,-161v2,2,4,2,4,-1v-2,-1,-4,-1,-4,1xm72,-134v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm257,-70v-1,-2,-3,-2,-3,1xm253,-50v0,-2,-4,-4,-3,-1xm243,-14r7,3v-1,-4,-1,-7,1,-9r-8,0r0,-77r57,-155r54,0r-92,252r-19,0r0,-14xm263,-82v0,-4,-4,-2,-1,0r1,0xm292,-107v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm322,-214v-2,0,-14,3,-9,5v5,-2,8,-3,9,-5xm288,-187v-2,0,-2,0,-2,2r2,2r0,-4xm293,-182v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm314,-177v-2,-8,-6,-15,-9,-6xm316,-242v-1,-7,-5,-4,-9,-1v3,1,7,5,9,1xm287,-165v1,1,4,1,3,4v-6,-1,-13,6,-6,8v5,-3,4,2,6,4v-3,-11,15,-9,1,-14v2,-6,-4,-11,-4,-2xm315,-158v-4,3,-9,1,-9,7v3,-1,6,-3,9,-7xm316,-148v-1,1,-4,0,-4,2v2,-1,4,-1,4,-2xm296,-147v-3,1,-4,5,0,2r0,-2xm304,-144v-1,0,-3,-1,-3,1r7,3v-3,0,-2,-3,-4,-4xm300,-139v-13,1,-11,4,-5,8v0,-3,2,-6,5,-8xm309,-137v-1,1,-2,0,-2,2r3,0xm337,-235v-3,-7,-8,-1,-11,-1v1,9,4,0,11,1xm302,-205v-5,2,-10,5,-7,8v-2,-5,9,-1,7,-8xm324,-221v-2,0,-4,3,-1,2xm308,-199v0,0,-5,5,-1,4xm327,-208v-1,0,-5,4,-1,3xm322,-205v-3,-1,-7,3,-2,2xm277,-118v-1,1,-7,4,-2,4v-1,-2,3,-1,2,-4xm276,-141v1,4,-3,4,-4,6v13,2,-2,-15,4,-6xm268,-114v0,0,-3,2,-1,2xm271,-105v2,0,5,2,5,0r-5,0xm267,-102v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm285,-126v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm136,-70v0,0,-5,0,-3,1xm193,-134v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm219,-26v0,6,6,4,3,0r-3,0xm213,-55v1,-5,-8,-7,-8,-7v0,3,3,5,8,7xm221,-86v0,2,4,1,4,0r-4,0xm211,-122v-5,-3,-5,-10,-10,-3v0,1,3,2,10,3xm222,-83v-5,2,-9,7,-3,5v-1,-3,4,-2,3,-5xm204,-117v1,3,5,4,3,1xm230,-73v0,0,-4,-5,-3,-1xm220,-67v4,-4,7,8,9,2v-6,-1,-4,-6,-9,-5r0,3xm198,-95v0,5,4,7,4,1v-2,-6,8,-4,6,-8v-8,7,-6,-15,-9,-5v-6,-3,-9,2,-5,6v5,0,10,2,4,6xm228,-44v-6,3,-11,8,-4,11v-1,-4,4,-6,4,-11xm202,-83v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm197,-74v2,1,2,-1,2,-3v-1,0,-2,1,-2,3xm200,-151v1,-1,4,-2,2,-3v-1,0,-2,1,-2,3xm155,-118v3,10,9,14,8,-2v-3,2,-8,-2,-8,2xm163,-126v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm145,-102v-2,1,-4,2,-2,5v3,0,3,-2,2,-5xm150,-105v0,1,4,2,4,0r-4,0xm147,-114v-2,-1,-5,1,-2,2xm155,-135v4,-6,-6,-12,-1,-6v2,5,-7,6,1,6xm156,-118v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm201,-154v0,-2,-1,-7,-1,-2xm196,-164v1,1,5,7,4,1xm184,-161v0,1,1,4,1,1xm169,-174v-6,3,-1,9,-1,11v4,0,4,-2,6,-4v-4,0,-5,-3,-5,-7xm175,-160r-1,-1xm162,-153v-6,1,-4,7,-1,9v0,-3,6,-7,1,-9xm171,-107v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm142,-82v0,-4,-6,-2,-2,0r2,0xm131,-50v0,-5,-4,-2,-1,0r1,0xm109,-73v0,0,-5,-5,-4,-1xm189,-121v-1,-2,-1,-5,-3,-3v2,3,0,5,-1,8v1,0,3,-2,4,-5xm194,-121v0,2,2,1,3,1v0,-2,-2,-1,-3,-1xm190,-159v-1,1,3,10,5,8v-2,-5,-3,-7,-5,-8xm205,-175r28,76r0,99r-19,0r-36,-100r-37,100r-19,0r0,-14r7,3v-1,-4,-1,-7,1,-9r-8,0r0,-77r28,-78r55,0","w":356},"X":{"d":"64,0r-64,0r111,-253r64,0xm58,-68v0,0,-5,0,-3,1xm53,-49v0,-4,-7,-3,-3,0r3,0xm50,-19v-6,0,-13,0,-15,3r14,5v-1,-3,-2,-7,1,-8xm65,-80v-1,-4,-8,-2,-2,0r2,0xm95,-107v-1,3,4,6,3,2v0,-1,-1,-2,-3,-2xm133,-208v-4,3,-17,3,-10,6v6,-2,9,-4,10,-6xm94,-181v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm101,-173v0,-3,-4,-4,-3,0r3,0xm113,-178r11,6v-3,-5,-7,-16,-9,-6r-2,0xm127,-235v-2,-5,-7,-3,-11,-1v4,2,8,6,11,1xm99,-163v-3,-5,-7,-2,-6,3v1,1,4,1,3,4v-6,-1,-16,5,-8,8v7,3,22,-6,10,-10v0,0,-3,-6,1,-5xm125,-152v-3,-3,-6,6,-10,2v2,9,2,-1,10,-2xm126,-144v-2,1,-5,0,-4,3v3,-1,4,-2,4,-3xm103,-143v-3,2,-5,4,1,3xm112,-140v-1,0,-3,-1,-3,1v0,1,3,3,8,5v-1,-3,-3,-3,-5,-6xm107,-134v-15,0,-11,3,-5,7v0,-3,1,-5,5,-7xm120,-131v-1,-2,-4,-1,-5,0r5,0xm151,-228v-3,-6,-11,-1,-13,-1v0,4,3,4,5,6v0,-4,3,-5,8,-5xm110,-199v-6,2,-11,5,-8,8v-1,-5,10,-1,8,-8xm136,-214v-2,-1,-6,3,-2,2xm117,-193v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm139,-202v-1,1,-7,5,-1,4xm128,-197v2,0,7,-1,2,-1xm81,-114v-1,0,-8,3,-3,3v0,-2,4,0,3,-3xm81,-131v3,-7,-7,-14,-2,-3v1,3,-3,1,-4,3r6,0xm71,-111v-2,-1,-5,1,-2,2xm74,-102v0,1,5,4,5,0r-5,0xm69,-99v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm90,-123v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm57,-184r-4,-1v1,1,2,2,4,1xm49,-201v3,-1,3,-5,0,-2r0,2xm35,-237v2,4,9,4,15,4v-4,-1,1,-11,-3,-8xm65,-173v-4,0,-7,3,-1,2r-14,31r-50,-113r64,0r18,42xm95,-146v1,-1,5,-2,2,-3v-1,0,-2,1,-2,3xm120,-48v4,-1,10,4,13,3v0,-1,-10,-7,-13,-3xm91,-71v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm114,-35v-1,4,3,3,3,1v0,-2,-2,-1,-3,-1xm124,-81v-6,3,-14,7,-6,11v-1,-4,6,-5,6,-11xm123,-20v-7,2,-7,5,0,7v3,-3,6,-6,0,-7xm92,-92v0,6,5,6,5,1v-1,-5,8,-4,7,-8v-9,6,-9,-16,-11,-4v-6,-2,-10,1,-6,6v5,0,11,1,5,5xm121,-101v1,0,5,4,4,0v-7,0,-2,-5,-1,-8r2,0v-1,0,-3,-2,-1,-3r50,112r-64,0r-18,-40r8,-18v0,1,10,9,9,1v-4,0,-7,-1,-8,-3xm99,-113v2,3,7,3,3,0r-3,0xm109,-114v2,3,6,-1,7,-4v-5,2,-7,3,-7,4xm107,-118v-6,-4,-4,-10,-12,-3v0,1,4,2,12,3xm115,-122v1,3,3,1,5,0r-5,0xm144,-20v3,-1,11,-5,4,-5v-6,-1,-7,-6,-10,1v2,2,7,-3,6,4xm132,-40v1,1,2,2,4,2v-1,-1,-2,-2,-4,-2xm113,-63v0,6,6,4,3,0r-3,0xm138,-54r-3,0v0,2,6,4,3,0xm128,-56v1,1,2,2,5,2v-1,-1,-2,-2,-5,-2xm76,-142v0,2,6,6,5,2v-3,0,-2,-3,-5,-2xm77,-112v3,0,5,-6,3,-9v-2,0,-5,-1,-5,1v7,-1,3,5,2,8xm68,-143v1,3,2,0,1,0r-1,0xm74,-150v2,0,6,1,5,-2v-3,0,-4,1,-5,2xm32,-216v2,1,5,3,5,-1v-2,-1,-4,-1,-5,1xm86,-130v2,0,5,1,4,-2v-2,0,-5,-1,-4,2","w":181},"Y":{"d":"64,0r-64,0r111,-253r64,0xm58,-68v0,0,-5,0,-3,1xm53,-49v0,-4,-7,-3,-3,0r3,0xm50,-19v-6,0,-13,0,-15,3r14,5v-1,-3,-2,-7,1,-8xm65,-80v-1,-4,-8,-2,-2,0r2,0xm95,-107v-1,3,4,6,3,2v0,-1,-1,-2,-3,-2xm133,-208v-4,3,-17,3,-10,6v6,-2,9,-4,10,-6xm94,-181v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm101,-173v0,-3,-4,-4,-3,0r3,0xm113,-178r11,6v-3,-5,-7,-16,-9,-6r-2,0xm127,-235v-2,-5,-7,-3,-11,-1v4,2,8,6,11,1xm99,-163v-3,-5,-7,-2,-6,3v1,1,4,1,3,4v-6,-1,-16,5,-8,8v7,3,22,-6,10,-10v0,0,-3,-6,1,-5xm125,-152v-3,-3,-6,6,-10,2v2,9,2,-1,10,-2xm126,-144v-2,1,-5,0,-4,3v3,-1,4,-2,4,-3xm103,-143v-3,2,-5,4,1,3xm112,-140v-1,0,-3,-1,-3,1v0,1,3,3,8,5v-1,-3,-3,-3,-5,-6xm107,-134v-15,0,-11,3,-5,7v0,-3,1,-5,5,-7xm120,-131v-1,-2,-4,-1,-5,0r5,0xm151,-228v-3,-6,-11,-1,-13,-1v0,4,3,4,5,6v0,-4,3,-5,8,-5xm110,-199v-6,2,-11,5,-8,8v-1,-5,10,-1,8,-8xm136,-214v-2,-1,-6,3,-2,2xm117,-193v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm139,-202v-1,1,-7,5,-1,4xm128,-197v2,0,7,-1,2,-1xm81,-114v-1,0,-8,3,-3,3v0,-2,4,0,3,-3xm81,-131v3,-7,-7,-14,-2,-3v1,3,-3,1,-4,3r6,0xm71,-111v-2,-1,-5,1,-2,2xm74,-102v0,1,5,4,5,0r-5,0xm69,-99v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm90,-123v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm57,-184r-4,-1v1,1,2,2,4,1xm49,-201v3,-1,3,-5,0,-2r0,2xm35,-237v2,4,9,4,15,4v-4,-1,1,-11,-3,-8xm65,-173v-4,0,-7,3,-1,2r-14,31r-50,-113r64,0r18,42xm95,-146v1,-1,5,-2,2,-3v-1,0,-2,1,-2,3xm91,-71v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm92,-92v0,6,5,6,5,1v-1,-5,8,-4,7,-8v-9,6,-9,-16,-11,-4v-6,-2,-10,1,-6,6v5,0,11,1,5,5xm99,-113v2,3,7,3,3,0r-3,0xm109,-114v2,3,6,-1,7,-4v-5,2,-7,3,-7,4xm107,-118v-6,-4,-4,-10,-12,-3v0,1,4,2,12,3xm115,-122v1,3,3,1,5,0r-5,0xm76,-142v0,2,6,6,5,2v-3,0,-2,-3,-5,-2xm77,-112v3,0,5,-6,3,-9v-2,0,-5,-1,-5,1v7,-1,3,5,2,8xm68,-143v1,3,2,0,1,0r-1,0xm74,-150v2,0,6,1,5,-2v-3,0,-4,1,-5,2xm32,-216v2,1,5,3,5,-1v-2,-1,-4,-1,-5,1xm86,-130v2,0,5,1,4,-2v-2,0,-5,-1,-4,2","w":182},"Z":{"d":"174,-57v2,11,-2,15,-5,24r5,-5r0,38v-16,-1,-36,2,-50,-1v1,-1,1,-2,-1,-2v-1,3,-8,5,-11,2v3,-4,-11,-2,-9,-11v-8,0,-14,5,-2,8r1,4v-33,-3,-76,6,-103,-3v8,-11,-9,-45,5,-54v14,3,13,12,18,7v-5,-1,0,-5,-9,-7r90,0v-2,9,11,11,18,9v-1,-4,-17,-4,-12,-9r49,0v-1,4,2,5,4,2r-1,-2r13,0xm167,-1v2,0,3,-3,0,-2r0,2xm124,-13v-4,3,-4,-2,-7,-3v-1,5,3,5,7,5r0,-2xm122,-16v0,0,3,-9,-2,-8v2,2,-1,6,2,8xm117,-26v0,-4,-8,-3,-11,0v1,4,1,6,4,6v-3,-6,2,-8,7,-6xm104,-13v1,-7,-2,-6,-5,-2v0,1,0,1,1,1v0,0,0,-2,1,-2xm99,-44v2,-1,-2,-3,-2,-3xm92,-39v1,-5,-4,-1,-7,-1v3,3,-5,6,1,5xm80,-40v2,0,4,-3,0,-2r0,2xm77,-13v1,-1,2,-4,-1,-3v-1,2,-3,4,1,3xm78,-28v0,-2,1,-7,-2,-6v0,2,-1,7,2,6xm74,-18v-5,-5,-8,1,-1,1xm72,-37v0,-2,-3,-5,-3,-3v1,2,2,3,3,3xm61,-34v11,-5,2,-13,-2,-7xm63,-23v1,-1,3,-3,0,-3r0,3xm58,-8v5,0,0,-8,1,-12v-1,4,-5,10,-1,12xm41,-23v2,-4,3,-7,-1,-3xm35,-4v3,0,4,-5,0,-4v0,1,-2,3,0,4xm32,-11v-10,3,-3,-17,-10,-6v2,5,6,13,10,6xm27,-46v0,-2,-4,-4,-3,0r3,0xm16,-34v-6,-1,-7,10,-3,13v4,-2,1,-10,3,-13xm15,-10v-2,-1,-5,-1,-8,-1v2,2,5,2,8,1xm13,-6r-3,-2xm7,-40v0,-4,0,-7,-4,-5v1,3,3,5,4,5xm50,-253v0,1,-2,3,0,3v1,-2,10,-6,12,-1v-1,-1,-2,-2,-2,1v4,1,12,2,11,9v8,0,14,-5,2,-8r-1,-4v32,3,76,-6,102,3v-6,13,7,44,-4,54v-14,-3,-13,-12,-18,-7v5,0,0,5,9,7r-90,0v-1,-9,-8,-9,-18,-9v1,4,17,4,12,9r-50,0v1,-3,-1,-5,-3,-2r1,2r-13,0v-2,-12,2,-16,5,-24r-5,6r0,-39r50,0xm5,-250v1,0,1,-1,1,-2xm56,-237v4,-6,-12,-7,-1,-1xm51,-237v-3,7,3,12,3,3xm57,-227v0,4,8,3,11,0v-1,-4,-1,-6,-4,-6v3,6,-2,8,-7,6xm69,-240v-1,7,3,7,6,2v0,-1,0,-1,-1,-1v0,0,0,2,-1,2xm74,-209v0,1,2,4,2,2v-1,-1,0,-2,-2,-2xm82,-214v-1,5,4,1,7,1v-3,-2,6,-6,-1,-5xm94,-213v-2,0,-4,3,0,2r0,-2xm97,-240v-2,2,-2,4,1,3v1,-2,3,-4,-1,-3xm96,-224v0,2,-1,6,2,5v0,-2,1,-6,-2,-5xm100,-235v5,5,7,-1,1,-1xm102,-216v-1,2,2,5,2,3v-1,-2,-1,-3,-2,-3xm112,-219v-10,5,-2,13,2,7xm111,-230v-1,1,-3,3,0,3r0,-3xm116,-245v-6,-1,-1,8,-2,12v1,0,4,-4,4,-10xm132,-230v0,4,-6,5,0,5v2,-2,2,-4,0,-5xm136,-246v2,3,3,-3,3,-3v-3,-1,-2,2,-3,3xm142,-242v9,-3,3,17,10,6v-3,-4,-5,-13,-10,-6xm147,-207v0,2,1,3,2,3v0,-2,0,-4,-2,-3xm157,-219v8,2,7,-8,4,-13v-4,2,0,11,-4,13xm159,-243v1,1,4,1,7,1v-2,-2,-4,-2,-7,-1xm161,-247r3,2xm167,-213v-3,3,0,8,4,5v-1,-3,-3,-5,-4,-5xm105,-168v2,2,6,5,1,5v-2,-1,-2,-3,-1,-5xm66,-86v0,-4,-4,-2,-1,0r1,0xm56,-108v5,0,4,-1,1,-2xm60,-119v0,-2,-3,-6,-3,-2xm80,-131v0,-1,-4,-2,-4,0r4,0xm75,-132v-1,-3,-3,-5,-6,-5v2,2,2,6,6,5xm92,-136v-3,1,-3,1,-1,3xm95,-138v0,-3,-4,-2,-5,0v0,2,4,0,5,0xm105,-144v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm121,-174v-9,5,-34,2,-15,13v6,3,24,-3,14,-6xm122,-181v1,-5,-3,-4,-4,-1v0,2,2,2,4,1xm172,-188v-14,14,-13,22,-27,25v1,-2,-1,-2,-3,-2v-5,2,-22,11,-8,7v3,4,11,-1,12,1v-15,21,-45,2,-61,-5v-2,1,-1,2,-3,3v0,-9,14,-7,12,-16v4,-5,7,-9,11,-13r67,0xm68,-63r-68,0r73,-87v5,-1,2,4,3,4v5,-2,-2,-15,8,-11v17,2,34,10,50,9v-1,4,4,3,5,1","w":187},"[":{"d":"113,-292v4,10,3,35,0,46r-10,-2v2,2,-1,3,-3,3v-10,-4,-26,3,-41,1r0,243r26,1v-1,2,-1,4,2,3v6,-4,20,-2,28,-1v-1,15,3,35,-2,46r-113,0r1,-340r112,0xm100,-252v-2,0,-4,0,-2,2xm99,-245v1,1,4,4,0,3r0,-3xm53,-236v-6,-1,1,4,-2,6v3,1,2,-4,2,-6xm36,-229v-2,0,-4,0,-2,2xm27,-33v0,-2,-4,0,-6,0v0,0,0,2,1,2v-1,-3,3,-2,5,-2xm101,5v-3,-1,-6,4,-4,6v4,0,3,-4,4,-6xm113,11v0,-5,-5,-4,-7,-2v7,4,-5,9,-3,11v7,-1,6,-8,10,-9xm92,12v-2,-3,-4,1,-5,3v3,2,4,-1,5,-3xm98,21v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm98,25r0,1r0,-1xm98,28v-1,1,-2,3,-2,0r2,0"},"\\":{"d":"150,9r-55,0r-95,-261r55,0xm46,-183v1,3,5,2,1,0r-1,0xm42,-199v3,-1,3,-5,0,-2r0,2xm30,-236v2,4,7,4,13,4v-3,-1,0,-8,-2,-9v-2,3,-8,3,-11,5xm52,-168v2,1,7,-2,2,-2xm82,-142v2,0,3,-3,1,-4xm103,-41v4,-1,8,4,11,3v0,-1,-8,-7,-11,-3xm78,-65v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm84,-70v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm106,-75v-6,3,-11,7,-5,12v-1,-5,5,-7,5,-12xm106,-12v-7,2,-7,5,0,7v1,-3,3,-5,0,-7xm79,-87v-2,9,9,4,4,3v-1,-6,7,-6,6,-10v-8,6,-7,-16,-9,-4v-6,-3,-8,2,-5,6v4,0,10,2,4,5xm107,-96v-6,-1,-4,-6,-9,-5v-1,6,9,6,9,5xm108,-104r-4,-1xm85,-108v1,2,5,3,3,1xm100,-114v-5,2,-9,7,-3,5v-1,-3,4,-2,3,-5xm92,-114v-5,-5,-5,-9,-10,-2v0,1,3,1,10,2xm99,-117v1,3,3,2,4,0r-4,0xm124,-12v1,-1,7,-5,3,-5v-6,0,-4,-5,-9,-2v-1,7,6,0,6,7xm94,-47v1,-5,-8,-7,-8,-7v0,3,3,5,8,7xm113,-33v1,1,2,2,4,2v-1,-1,-2,-2,-4,-2xm97,-57v0,6,6,4,3,0r-3,0xm118,-44v2,0,0,-2,0,-3r-2,0v-1,1,3,1,2,3xm110,-49v0,2,2,2,4,2v-1,-1,-2,-2,-4,-2xm65,-138v0,2,6,6,5,2v-3,0,-2,-3,-5,-2xm66,-108v3,1,5,-6,3,-9v-2,0,-5,-1,-5,1v5,0,4,5,2,8xm58,-140v0,4,4,2,1,0r-1,0xm63,-147v2,0,6,1,5,-2v-3,0,-4,1,-5,2xm55,-152v3,2,5,2,5,-2v-3,-2,-4,0,-5,2xm74,-126v1,0,3,1,3,-1v-1,0,-3,-1,-3,1","w":148},"]":{"d":"20,1v5,-1,11,7,10,-1r26,0r0,-244v-21,-1,-43,2,-47,-4v-1,3,-7,5,-9,1v1,-14,-3,-34,2,-45r112,0r0,341v-37,-2,-81,4,-114,-2v1,-15,-3,-35,2,-46r18,0xm17,-250v-1,-3,-2,0,-1,0r1,0xm14,-242v1,-1,1,-3,1,0r-1,0xm65,-235v-5,-1,-4,2,-3,5v3,0,0,-4,3,-5xm82,-227v-2,-2,-3,0,-1,1xm91,-34v-2,0,-5,-1,-4,2v4,-2,6,4,6,0xm18,12v0,0,-4,-11,-4,-3xm3,7v-3,5,5,15,9,11v-9,-1,0,-12,-9,-11xm26,11v-5,-1,-5,2,-2,5v4,0,4,-2,2,-5xm18,22v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm16,25r0,1r0,-1xm16,28v5,0,3,4,0,1r0,-1"},"^":{"d":"8,-185v2,3,7,1,2,-1xm16,-199v0,-5,-6,-3,-2,0r2,0xm32,-252v3,33,-9,50,-16,72r-15,0r26,-72r5,0xm30,-243v0,0,0,5,1,3v-1,-1,-1,-2,-1,-3xm21,-226v4,5,-6,4,-2,8v6,1,6,-9,2,-8xm29,-233r2,-1xm31,-231v-1,0,-1,0,-1,1v1,0,1,-1,1,-1xm25,-220v0,0,-2,1,0,1r0,-1xm29,-228v0,-2,-1,-1,-2,-2xm23,-214v-9,0,-5,4,-2,6v0,-2,0,-4,2,-6xm30,-228v-1,0,-1,0,-1,1v1,0,1,0,1,-1xm27,-236v-3,2,-5,4,-5,7v-1,-4,6,-2,5,-7xm29,-246v0,0,-2,1,0,1r0,-1xm35,-248v-1,-5,2,-4,6,-4r26,72r-16,0v-6,-21,-22,-42,-14,-69xm47,-199v1,0,1,0,1,-1xm49,-200v1,0,1,0,1,-1v-1,0,-1,0,-1,1xm54,-212v-5,2,-8,6,-4,9v0,-4,4,-5,4,-9xm53,-183v0,2,2,0,3,0v-1,-2,-1,0,-3,0xm39,-237v-3,5,5,3,4,9v3,-7,4,-4,0,-10v-1,3,-2,1,-4,1xm49,-217v-5,-4,-1,-8,-8,-3v0,1,2,3,8,3xm60,-185r0,-1r0,1xm45,-213v-1,0,-1,1,-1,2xm46,-216v1,0,1,0,1,-1v-1,0,-1,0,-1,1","w":77},"_":{"d":"131,18v-1,2,1,6,2,5v0,-2,1,-6,-2,-5xm158,21v-6,0,-14,4,-17,-1v2,4,0,8,-2,10v5,-8,13,-4,19,-9xm130,9v-4,0,-4,0,-2,2xm134,5v0,-2,-2,0,-3,0r3,0xm145,5v-2,-1,-2,-1,-2,2v2,0,2,0,2,-2xm78,34v-1,-1,-1,-3,-1,0r1,0xm94,30v0,-3,1,-5,-1,-3v1,0,1,1,1,3xm73,23v1,0,1,-1,1,-2v-1,0,-1,1,-1,2xm30,20v5,4,16,9,19,8v-4,0,-3,-5,-2,-8v-4,6,-11,-1,-17,0xm114,22v0,0,2,-1,0,-1r0,1xm110,32v-1,1,-2,2,1,2xm112,18v-2,1,-3,2,1,2xm78,20v-1,-1,-3,-3,-3,0r3,0xm62,9v-4,0,-4,0,-2,2xm54,4v1,0,2,2,2,0r-2,0xm45,4v-1,0,-2,1,-2,3v2,1,2,-1,2,-3xm53,25v0,1,1,2,5,3v-1,-4,0,-4,-5,-3xm55,23v0,0,5,-4,0,-5r0,5xm130,29v9,-2,2,-7,0,-2r0,2xm0,15v-1,-4,1,-7,4,-3v1,3,-1,3,-4,3xm156,43v4,-1,9,3,5,4r-8,0xm134,38v3,3,-2,12,-8,8v0,-3,5,-8,8,-8xm188,10v0,3,0,6,-4,5v0,-3,1,-5,4,-5xm80,4r0,0r0,0xm108,4r0,-1r0,1xm67,34v2,-2,2,-4,0,-5r0,5xm67,28v1,-1,1,-1,0,-2r0,2xm151,0v2,3,6,6,5,0v15,-1,18,2,23,10v0,-2,1,-3,2,-3v-3,14,6,12,7,25v-3,-1,-3,1,-3,4v7,9,-4,12,-14,11v-1,-1,-2,0,-2,-2v6,0,1,-10,7,-12v-2,0,-4,0,-3,-2v11,-1,-2,-8,3,-15v-14,-4,-6,20,-11,28v-6,0,-3,-7,-10,-5v-1,3,-12,3,-5,8v-11,1,-17,-1,-11,-9v-6,-2,-7,-2,-16,0v2,4,2,7,-2,9v-19,-2,-44,4,-58,-3r2,-6v-9,-2,-9,-2,-16,0v6,8,0,10,-11,9v3,-5,-3,-8,-10,-8v1,3,-6,7,-7,3v1,-16,1,-28,-9,-26v5,6,-7,13,2,15v-3,4,3,6,1,14v3,0,6,1,2,2v-12,1,-20,-2,-14,-15v-7,-1,-2,-9,2,-12v0,-3,5,0,4,-4v-7,1,-2,-6,-2,-9v2,4,6,2,7,-2v-3,0,-2,-4,0,-5v8,3,10,-2,18,1v-1,1,-1,3,1,3v27,-10,77,-1,118,-4xm70,16v0,-1,-1,-4,-1,-1xm121,27r-1,0r1,0xm121,29v-2,1,-2,3,0,5r0,-5xm118,13v0,0,1,5,1,1xm25,46v2,-3,9,-4,10,1v-3,0,-8,1,-10,-1xm52,40v3,-5,8,1,10,6v-7,3,-6,-2,-10,-6xm102,20v-2,-1,-5,1,-1,1xm101,8v1,2,1,4,1,0r-1,0xm117,39v0,-2,-4,-1,-5,0r5,0xm97,2v-2,1,-2,3,0,4r0,-4xm110,42v-1,0,-4,1,-1,1xm102,11v1,2,8,2,6,-1xm102,38v3,0,7,-5,1,-4xm81,9v4,2,10,0,5,-3v0,2,-1,3,-4,3v0,-4,-2,-1,-4,-3v1,4,3,7,3,3xm103,23v0,0,16,3,9,0v-1,1,-1,1,-2,0v-1,-11,-2,4,-10,-1v0,3,-3,2,-2,5xm86,35v1,-7,-6,-14,0,-17v-5,4,-8,-4,-10,-2v8,5,4,13,10,19xm103,39v-1,-2,-5,-1,-1,0r1,0xm99,45v-4,-6,-11,-4,-18,-7v0,7,9,8,18,7xm99,30v-1,-3,-5,-3,-2,0r2,0xm97,21v2,-3,-7,-11,-5,-3v3,0,4,2,5,3xm96,34v0,-3,-6,-3,-7,0v1,2,4,-1,7,0","w":187},"a":{"d":"0,-37r16,-48v3,0,3,9,5,5v-4,-8,9,-11,2,-14v-3,-1,-2,7,-7,9v3,-6,0,-18,9,-18v-1,2,1,2,3,2v-3,-5,1,-10,-2,-12v0,5,0,8,-3,7v9,-17,10,-49,23,-58v-1,-26,20,-59,27,-88r66,0r89,252r-65,0v-10,-36,-16,-54,-17,-54r-70,0r13,-46v14,-1,31,2,43,-1v-13,-38,-19,-71,-27,-93v0,7,-11,51,-35,130r-20,64r-50,0v-1,-7,2,-15,0,-20v1,1,3,1,3,-1v-6,1,-2,-7,-3,-11v2,-3,10,-1,4,-5v-1,2,-3,0,-4,0xm60,-172v-1,-1,-5,-4,-4,0r4,0xm44,-145v-1,-2,-6,-2,-5,1xm40,-130v-4,5,-5,7,-7,11v6,-1,5,-6,7,-11xm31,-117v-3,-1,-2,2,-1,3xm56,-105v-1,0,-2,-2,-2,0r2,0xm45,-94v5,2,3,13,8,6v-2,-2,-4,-6,-8,-6xm35,-88v-1,1,-2,0,-2,2xm19,-76v-1,0,-4,-1,-4,1r5,2xm47,-73v-1,-2,-1,-4,-1,0r1,0xm30,-71v-2,0,-5,-1,-4,2v2,0,5,1,4,-2xm39,-67v2,-1,-2,-3,-2,-3xm38,-62v0,2,-5,-2,-4,2v3,0,9,0,4,-2xm26,-58v-2,-1,-8,3,-3,4v-1,-2,4,-1,3,-4xm12,-42v-1,-5,-3,0,-6,0v2,2,4,2,6,0xm16,-42v-2,2,-4,2,-5,5v3,0,7,-2,5,-5xm54,-27v4,-3,1,-10,-4,-6v2,2,4,4,4,6xm38,-30v3,-1,-1,-5,-1,-2xm35,-25v-8,1,2,16,-9,14v1,8,12,-10,14,7v4,-2,4,-16,2,-18v-4,1,-1,6,-1,10v-4,-3,-11,-6,-6,-13xm28,-16v-7,-6,-9,2,-3,3v-1,-2,3,-1,3,-3xm6,-12v-2,0,-4,0,-3,3v2,-1,3,-2,3,-3","w":234},"b":{"d":"0,-250v57,-8,135,-2,134,61v-6,0,0,0,0,4v-1,13,-5,21,-6,11v-11,5,-4,-10,-13,-7v-1,-2,0,-5,-3,-4v-1,10,11,12,7,24r-6,-1v3,3,6,6,-2,5v4,12,-6,25,-13,15v-3,0,-8,-2,-7,3v4,1,23,9,25,16v10,1,22,20,24,40v-7,1,3,6,1,9v-2,22,-5,18,-6,28v-11,4,-14,-6,-19,-2v-3,6,11,3,4,10v-4,0,-8,0,-7,4v2,0,6,2,11,7v-18,19,-16,13,-37,23v-1,-2,-12,-6,-8,-11v-3,1,-7,-3,-7,-1v4,5,6,9,6,14v-11,2,-17,2,-21,-9r0,6v-9,-1,-2,2,-5,5v-17,-1,-39,3,-52,-2v1,-14,-3,-35,2,-45v13,1,30,-2,40,2r-1,-1v11,-2,20,-2,31,-8v0,7,3,14,14,14v-3,-4,-1,-19,2,-9v8,-9,-20,-8,-6,-23v1,-11,0,-17,-4,-25v2,1,5,1,4,-2v-10,-11,-50,-10,-82,-13v1,-14,-3,-34,2,-44r44,0v10,6,42,-12,31,-40v-3,7,-13,-12,-29,-9v-15,-1,-36,3,-48,-2r0,-43xm24,-248v-2,-2,-5,-5,-4,1xm55,-244v-2,0,-4,0,-3,2v1,-1,3,0,3,-2xm50,-239v0,-2,-3,-4,-2,0r2,0xm72,-237v-2,-3,-4,-1,-5,2v3,1,2,-2,5,-2xm5,-238v-2,3,1,3,4,2v0,-2,-3,-1,-4,-2xm61,-232v-3,0,-11,-3,-11,-1v2,4,6,1,11,1xm85,-226v-1,-7,-4,-3,-1,0r1,0xm80,-221v-3,1,-7,-1,-7,3v2,-1,8,1,7,-3xm92,-210v0,-4,-4,-6,-3,0r3,0xm85,-207v0,-4,-9,-5,-9,-4v2,8,1,9,9,4xm56,-211v-3,1,-3,1,-1,3v3,1,1,-2,1,-3xm102,-208v2,2,5,10,7,6v-1,-4,-4,-5,-7,-6xm127,-207v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm81,-202v-2,2,1,5,3,4v1,-3,-2,-3,-3,-4xm98,-198v5,2,-3,8,0,10r11,-2v-3,-5,-7,-8,-11,-8xm112,-198v1,0,2,3,2,1xm84,-197v0,3,-3,10,3,8v2,-4,3,-8,-3,-8xm113,-190v-2,0,-1,3,-1,4v2,0,1,-3,1,-4xm123,-189v-2,0,-2,2,-2,4v3,1,2,-2,2,-4xm83,-178v-1,-2,-5,-1,-4,2xm95,-178v-4,-1,-7,2,-3,4v1,0,2,-2,3,-4xm104,-176v-3,1,-5,5,-1,5xm120,-167v0,-2,3,-4,2,0r-2,0xm124,-164v-1,-4,1,-5,5,-3v1,5,-5,8,-5,3xm71,-156v2,-1,-2,-7,-1,-2xm120,-151v-2,-4,3,-14,6,-7xm89,-158v-4,0,-6,3,-3,5v7,1,9,-3,16,0v0,-2,-5,-3,-13,-5xm57,-153v-2,-1,-5,-2,-4,2v5,1,4,3,6,4xm82,-146v-2,-2,-7,1,-2,2xm60,-139v-4,-3,-9,3,-2,2xm86,-133v0,-1,3,-2,1,-2xm78,-132v-2,2,0,7,3,6xm63,-122v0,0,-6,-6,-5,-2xm95,-62v1,3,3,6,0,8v9,1,3,6,14,8v1,-4,1,-10,7,-7v-5,-4,-13,-2,-8,-10v7,2,19,-4,6,-3v-7,-3,-6,-17,5,-14v-2,5,2,8,2,1r-1,-6v2,1,4,0,4,-2v5,-9,7,-20,2,-25v-5,-3,-20,3,-20,-10v8,-1,10,0,2,-4v-10,6,-10,14,-2,20v1,-10,16,-5,18,1v-12,7,3,15,-12,17v3,12,-13,2,-8,16v-6,3,6,14,-9,10xm36,-117r5,0v-1,-2,-4,-3,-5,0xm81,-110v-2,-1,-7,2,-2,2xm84,-108v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm120,-105v-1,-1,-2,-2,-2,1xm105,-92v-1,-5,-7,-1,-7,2v0,3,2,2,6,2v-2,-2,-2,-4,1,-4xm135,-87v-4,0,-4,0,-2,2xm136,-67v1,-3,-2,-4,-2,-2xm128,-64v-11,-4,-1,5,-4,10v8,1,1,-5,4,-10xm137,-62v-3,0,-4,4,0,3r0,-3xm77,-48v-5,-5,-7,-10,0,-12v-1,2,12,11,0,12xm46,-44v-6,2,-4,5,0,6v3,-1,1,-4,0,-6xm112,-44r-2,5v5,-2,5,-3,2,-5xm36,-42v-1,0,-3,-1,-3,1v0,2,4,3,8,3v-1,-2,-2,-4,-5,-4xm128,-34v-5,1,-5,-7,-1,-7v4,1,4,4,1,7xm26,-26v3,-8,0,-17,-7,-6v1,0,3,2,7,6xm58,-29v4,-5,-5,-11,-5,-3v3,0,5,1,5,3xm102,-36v0,2,3,4,2,0r-2,0xm50,-24v2,-6,-7,-6,-8,-3v0,4,2,2,8,3xm26,-21v-2,2,-1,3,1,1xm64,-15v-2,0,-4,0,-3,3v2,0,4,0,3,-3xm41,-12v-1,-1,-5,-3,-4,1v2,-2,4,0,4,-1xm41,-5v3,-4,-2,-6,-3,-3v1,1,0,4,3,3xm38,-4v-1,-3,-7,-3,-7,1v2,0,7,1,7,-1","w":152},"c":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-36,19r-7,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-4,5,-9,3v-2,9,-12,4,-7,13v7,-5,12,-13,22,-6v2,10,-8,5,-6,12v4,-3,7,3,5,7v-11,-6,-3,8,-11,9v0,-5,3,-10,4,-15v-5,11,-13,4,-8,17v0,0,-1,-2,-1,0v2,0,2,2,3,6v-4,1,-20,1,-16,-7v-23,-1,-30,-6,-51,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm140,-48v6,2,24,-21,32,-21v-6,-3,-2,-2,4,-10v-2,-5,0,-6,4,-6v3,-1,2,3,4,3v1,-6,-9,1,-6,-12r50,27v-14,34,-65,75,-102,65v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1xm186,-156v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76v-1,-5,1,-7,3,-1xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm46,-210v-2,0,-4,1,-4,4v3,-1,4,-2,4,-4xm225,-176v-2,1,-13,3,-5,3v2,-1,6,0,5,-3xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm14,-134v0,-2,-3,-4,-2,-1xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-4,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm21,-108v1,-1,4,-2,2,-2xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm186,-80r1,1xm64,-77v-2,0,-5,2,0,2r0,-2xm181,-72r0,5v3,0,2,-4,0,-5xm197,-72v-2,2,-3,5,1,4xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm176,-65r0,5v2,-2,2,-4,0,-5xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm43,-55v-3,0,-8,2,-2,4v1,-1,2,-2,2,-4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v4,-2,3,-4,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm160,-24v-2,0,-4,4,-1,3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-5,-1,-2,3,-1,5v5,0,2,-2,1,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-3,-3,-4,-4,-2v2,0,1,3,4,2xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm139,-9v1,-3,-3,-6,-2,-1xm103,-3v1,-8,12,-5,12,2v-6,3,-8,-3,-12,-2","w":241},"d":{"d":"103,-255v0,-4,2,-6,7,-5xm6,-229v0,-4,0,-8,-6,-7v1,-5,-2,-15,2,-17v15,1,34,-2,47,1v0,1,-2,3,0,3v3,-5,5,1,8,4r0,120v-1,-1,-3,-1,-3,1v2,2,5,9,2,12v1,-2,1,-2,-2,-2v-1,4,-2,12,-9,11v1,7,5,14,8,1r4,0v-2,33,3,73,-3,102v-12,-7,-45,9,-54,-5v3,-13,12,-14,7,-17v-2,2,-3,2,-7,8r0,-89v8,0,12,-11,9,-18v-3,0,-4,17,-9,11r0,-49v4,1,7,-1,3,-4r-3,1v3,-21,-7,-55,4,-69xm66,-252v43,-3,96,-2,115,27v24,36,16,89,16,143v0,21,-5,40,-18,51v2,4,-3,6,-7,8v0,0,0,-2,-1,-2v-2,24,-67,28,-105,23v1,-14,-3,-35,2,-45v15,-1,34,1,45,1r-1,-2v45,-12,21,-79,27,-128v-6,-41,-48,-28,-73,-32r0,-44xm15,-251v-2,0,-4,5,-1,4xm6,-237v0,0,10,3,9,-3v-4,0,-8,0,-9,3xm175,-235v2,-3,4,-5,7,-2v0,1,1,3,-1,3v-3,-2,-1,-3,-6,-1xm8,-218v-1,2,4,7,6,4v-1,-2,-2,-5,-6,-4xm5,-215v-4,-1,-1,4,-1,5xm91,-212v-2,-2,-3,0,-1,1xm22,-209v1,2,-4,-2,-2,1v-2,0,-1,2,-1,3v5,0,10,-3,3,-4xm87,-203v0,-2,3,-4,2,0r-2,0xm18,-203v-3,0,-3,3,-3,6v1,-1,2,-1,3,0v2,13,-8,0,-12,6v7,-2,8,9,17,10v-3,0,-5,-2,-6,-5v0,-4,2,-5,6,-5v0,-7,-4,-5,-5,-12xm144,-197v1,7,2,6,3,0r-3,0xm30,-189v-1,-6,-4,-3,-3,0r3,0xm164,-189v-2,0,-2,0,-1,1xm24,-170v-2,-1,-5,-7,-7,-4v2,2,2,5,7,4xm57,-168v-1,-1,-4,-3,-3,0r3,0xm173,-82v-1,0,-3,-1,-3,1v4,-2,6,4,6,0xm92,-37v-1,-4,-5,-10,-8,-2xm74,-41v-7,2,-8,5,0,4v-1,3,7,12,9,7v-9,-1,-2,-11,-9,-11xm46,-125v-3,0,1,4,-5,7v5,1,5,-3,5,-7xm111,-33v0,-3,-5,-6,-6,-3v1,3,2,5,6,3xm41,-123v-8,-3,-11,3,-2,3xm31,-118v-2,1,-1,8,0,11v4,-1,6,-1,6,-4v-5,2,-7,-1,-6,-7xm92,-27v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm99,-22v0,-1,-5,-2,-5,0r5,0xm94,-20v-2,0,-2,0,-2,2xm44,-105v-5,-1,-6,2,-2,5v1,0,1,0,1,-1v0,0,-2,0,-2,-1xm14,-100v-1,-2,-3,2,-3,2xm15,-92v2,4,2,6,7,9v0,-5,-2,-9,-7,-9xm17,-81v0,-2,-3,-3,-2,0r2,0xm44,-75v1,-3,-4,-6,-3,-1xm29,-78v-2,0,-7,-1,-6,2v2,0,7,1,6,-2xm40,-74v-2,0,-3,3,-3,6v2,-1,3,-4,3,-6xm21,-73v-3,-1,-6,3,-4,3v2,-1,4,-2,4,-3xm23,-62v-5,-9,-12,-3,-7,2xm34,-64v-1,-1,-3,-3,-3,0r3,0xm49,-58v1,-6,-7,-1,-11,-2v4,0,8,4,11,2xm34,-42v-5,-4,-5,0,-2,2xm53,-36v0,-3,-5,-4,-4,0v1,0,3,2,4,0xm46,-32v2,10,-17,1,-6,10v4,-3,14,-6,6,-10xm12,-28v-4,0,-5,4,0,3r0,-3xm23,-17v0,7,9,6,13,3v-3,-2,-11,0,-13,-3xm48,-15v-2,0,-3,6,-1,7v1,-2,3,-4,1,-7xm51,-13r-2,2xm17,-7v-2,-3,-6,1,-4,3v3,-1,4,-2,4,-3","w":208},"e":{"d":"18,-252v6,9,-13,8,-16,15v7,0,5,7,2,10v-9,1,-2,-18,-3,-25v9,-2,11,5,17,0xm10,-183v-2,-9,11,-20,9,-11v1,2,1,5,3,5v-1,-3,1,-3,3,-1r-1,1v2,-1,8,1,7,-3v-10,4,-11,-23,-17,-8v-1,-1,-3,-1,-5,-1v4,7,1,13,-9,14v1,-8,-1,-14,2,-17r0,3v6,2,8,-7,6,-3v-7,-1,-9,-6,-4,-9v9,-3,3,9,8,3v-2,-10,-1,-11,-8,-15v8,-2,1,-7,13,-6v0,7,3,5,7,3v-3,-6,-3,-11,-3,-19v2,0,5,3,6,1r-2,-6v10,1,25,-2,32,2v-1,7,3,20,-2,24v1,-8,-3,-7,-3,-2v6,3,5,20,5,31v-2,0,-6,-2,-7,0v6,1,8,6,7,14v-7,0,-1,2,0,3v-3,18,7,46,-8,52v-1,-6,-8,4,-11,-2v0,-4,4,-6,0,-9v-1,3,0,7,-4,6v-7,-5,-4,-13,0,-20v9,1,18,-7,8,-12v-1,9,-11,15,-22,14v3,-7,-2,-8,-2,-14v5,-1,6,9,10,5v-4,-3,-7,-6,-3,-8v5,4,5,-4,8,-8v-5,-5,-19,-3,-13,-12v-2,2,-6,1,-8,2v1,0,1,1,1,2xm67,-247v0,-9,20,-5,25,-3v-2,0,-3,4,-1,4v2,0,3,-2,3,-6v27,0,29,2,54,0r0,3v1,-2,4,2,4,-1r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,44r-116,-1v-1,-13,2,-33,0,-40xm38,-246v0,1,-4,5,0,4v1,-1,1,-3,0,-4xm52,-245v-5,4,1,12,3,5v-1,-2,-1,-5,-3,-5xm78,-242v-3,0,-4,3,0,3v1,-1,1,-2,0,-3xm35,-240v-2,0,-5,3,-3,3xm150,-239v-4,1,-8,1,-8,6v6,1,6,-3,8,-6xm108,-235v-2,-2,-4,-2,-3,2xm46,-235v-6,-2,-8,3,-10,3r1,-1v-3,-1,-6,7,-3,7v0,-4,12,-3,12,-9xm88,-232v-1,-3,-2,2,-2,2xm141,-232v-1,1,-4,4,0,3r0,-3xm80,-216v4,-3,-3,-12,-7,-10v3,2,6,3,7,10xm32,-224v-1,0,-3,2,-1,2xm21,-223v-2,1,-8,2,-5,4v2,-1,6,0,5,-4xm45,-221v-3,0,-2,6,-2,7v6,-1,13,-5,2,-5r0,-2xm23,-220v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm33,-218v-2,0,-4,3,-1,2v1,-1,3,-1,1,-2xm107,-217v-1,0,-5,0,-2,1xm81,-216v-2,-1,-7,2,-2,2xm127,-216v-3,-1,-5,6,-3,6v1,-2,4,-2,3,-6xm30,-213v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm84,-212v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm139,-210v-2,0,0,3,0,3r0,-3xm54,-205v-1,-8,-7,5,-16,2v0,-2,-2,-2,-4,-1v-1,8,8,3,14,6v-4,-3,0,-8,6,-7xm48,-183v-1,-4,-8,-7,-12,-6v3,4,9,2,12,6xm49,-183v4,0,4,0,2,-2xm0,-175v-1,-4,1,-14,3,-5v-1,3,0,9,-3,5xm40,-183v-3,1,1,2,1,5r2,0xm20,-136v4,-9,2,-7,2,-14v11,0,8,8,4,13v13,11,15,7,17,22v8,-2,0,-8,11,-7v1,-1,0,-4,3,-3v-2,33,4,74,-3,102v5,-1,1,3,3,6v5,11,-10,25,-11,12v-5,0,-5,3,-11,3v-2,-5,8,-5,2,-8v0,3,-6,8,-11,5v0,-12,14,-4,15,-16v-4,1,-3,-2,-3,-5v6,-2,6,7,10,4v-7,-1,-3,-8,1,-11v2,0,0,3,3,2v0,-5,-3,-15,-6,-5v-2,8,-11,9,-18,15v-1,-4,-11,-6,-3,-9v5,1,4,-3,5,-7r-4,0v1,2,1,4,-2,3v-1,-1,-1,-4,-3,-4v2,11,-7,1,-8,11v-1,-2,-2,0,-3,1v6,0,6,4,7,8v-6,0,-7,0,-6,8v7,0,5,2,5,7v-5,0,-7,2,-8,-5v-11,-3,-5,-9,-8,-27v3,-3,9,-6,0,-5v4,-16,-5,-49,3,-65v-6,-1,-5,-21,0,-23v0,0,1,2,1,0v-6,-5,-6,-31,-2,-39v3,1,0,3,3,4v6,-10,-4,-10,4,-18v0,0,7,15,7,4v-2,0,-3,-1,-3,-2v5,-3,13,3,8,7v-12,0,0,20,-11,12v-8,10,18,11,3,21v1,2,4,3,7,3xm45,-174v-1,-3,-3,-4,-2,0r2,0xm45,-172v1,10,-11,-1,-13,7v5,-1,17,0,13,-7xm68,-155v3,-3,6,2,8,7r-1,1v5,-13,74,-11,97,-7v-2,0,-6,-2,-6,1v5,2,6,1,10,-1r0,16v-9,-3,-16,-5,-24,-9v4,17,13,6,23,9v0,9,2,19,0,27r-87,1v-4,-9,-14,5,-19,-2v4,1,12,-8,5,-11v-1,1,-3,1,-4,0v1,4,2,10,-3,10v1,-10,-4,-42,5,-24v3,-9,-5,-12,-4,-18xm6,-155v-3,-1,-2,2,-2,4v2,0,4,-3,2,-4xm99,-155v-2,0,-1,2,-2,3v1,0,2,-1,2,-3xm104,-155v-2,0,-6,2,-3,3v1,-1,4,0,3,-3xm53,-153v-3,0,-3,3,-1,4v0,0,2,0,2,-1xm136,-151v6,3,9,2,15,4v-4,1,-9,-11,-15,-4xm43,-149v-2,0,0,2,0,3v1,0,3,1,3,-1xm101,-145v0,-2,-3,-3,-2,0r2,0xm82,-146v0,7,9,8,9,0v-5,4,-4,2,-9,0xm6,-139v2,-1,4,-4,0,-2r0,2xm125,-140v2,0,6,1,5,-2v-2,2,-6,-2,-5,2xm100,-139v-2,-2,-5,1,-2,2xm146,-139v-4,-1,-3,2,-2,4v3,1,3,-2,2,-4xm84,-127v3,-5,-7,-14,-6,-8v5,-2,2,7,6,8xm145,-133v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm165,-130v-3,-2,-5,0,-3,3xm98,-128v-1,2,-7,-5,-3,1v-3,1,-8,2,-1,4v4,0,6,-1,4,-5xm135,-129v-4,-1,-8,5,-2,6xm21,-128v-16,5,-2,19,-17,23v6,-2,13,3,11,-6r5,0v-3,-4,1,-7,6,-6v4,2,1,5,4,7v0,-1,-1,-3,1,-3v6,2,1,11,5,12v0,-8,4,-4,2,-12v-9,0,-2,-6,-1,-10v-3,-1,-3,4,-7,1v0,-2,1,-5,-1,-5v-1,5,-2,7,-10,7v1,3,-1,5,-4,4v1,-6,3,-5,6,-12xm82,-126v-5,0,-6,4,0,2r0,-2xm143,-125v-4,1,0,5,1,8v3,-1,1,-6,-1,-8xm118,-116v-1,3,2,2,4,2v0,-2,-3,-1,-4,-2xm145,-116v-2,0,-4,1,-4,4v1,-1,5,-1,4,-4xm26,-105v-2,-9,-5,2,-10,0v1,4,7,9,5,0v2,-1,3,-1,5,0xm51,-108v-2,0,-4,0,-3,3v1,0,2,-1,3,-3xm46,-100v1,-3,-2,-4,-2,-2xm9,-102v-4,0,-6,7,0,5r0,-5xm41,-94v-2,0,-4,0,-3,3v1,-1,4,0,3,-3xm50,-84v6,-4,1,-14,-4,-6v1,3,0,7,4,6xm14,-88v-5,-1,-6,1,-2,4v2,-1,6,-3,2,-4xm38,-88v-3,1,-7,-1,-7,3v4,1,5,-1,7,-3xm46,-82v0,1,-2,3,0,3r0,-3xm10,-76r-4,0r4,0xm13,-72v0,-2,-2,-5,-2,-3xm48,-70v2,-6,-11,-7,-11,-4v9,-1,0,8,4,9v2,-1,3,-6,7,-5xm22,-71v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm5,-59v1,-6,10,-4,12,-8v-7,2,-15,-1,-12,8xm54,-66v0,-2,-2,0,-3,0v0,4,2,5,5,6v-2,-3,-5,-6,-2,-6xm13,-54v-3,0,-4,2,-4,6xm52,-44v0,-10,-4,-3,-7,-1xm80,-43v2,-7,12,-4,19,-3v-1,0,-1,0,-1,1v8,-1,45,-6,45,2v2,0,7,6,7,2v-2,0,-3,-2,-4,-6v13,-2,20,3,29,3r-1,-3v17,-5,14,11,9,17r5,-3v-2,13,2,23,-2,33v-11,-1,-27,2,-36,-1v3,1,5,-4,2,-1v0,0,-28,7,-20,-7v-9,-2,-9,-4,-16,0v6,7,0,10,-11,9v3,-12,-11,-4,-17,-5v5,-13,-6,-18,-1,-24v0,-3,-6,-5,-8,-2v5,5,-8,13,2,15v-3,4,3,5,1,13v3,-1,5,1,2,3v-12,2,-19,-3,-14,-15v-7,-1,-2,-9,2,-12v0,-3,4,-2,4,-4v-7,1,-2,-6,-2,-9v2,3,9,0,6,-3xm11,-44v0,2,4,2,4,0r-4,0xm112,-44v-1,1,-4,4,0,4r0,-4xm121,-44v0,2,3,3,2,0r-2,0xm10,-41v0,0,-2,0,-2,1v2,2,5,2,2,-1xm140,-41v-2,0,-1,3,-1,4v2,0,2,-2,1,-4xm125,-38v1,1,3,1,4,0r-4,0xm67,-32v-1,-4,1,-9,4,-4v1,3,-1,5,-4,4xm14,-35v-1,0,-3,-2,-3,0v1,2,2,2,3,0xm139,-34v0,-2,-2,0,-3,0v0,1,-1,3,1,3v0,-2,1,-3,2,-3xm167,-27v4,-1,0,-10,-1,-4xm145,-31v-1,2,-5,1,-4,4v2,0,5,0,4,-4xm123,-30v-4,1,3,10,-3,8r5,2v-3,-3,1,-8,-2,-10xm180,-30v-6,5,3,13,-4,17v7,0,1,-12,9,-10v1,-7,-8,0,-5,-7xm114,-28v-2,7,-11,2,-17,1v5,4,16,9,19,8v-4,0,-3,-6,-2,-9xm140,-24v2,0,-1,-6,-1,-3xm9,-17v-2,-5,-2,-8,-5,-4v1,2,-1,5,5,4xm136,-24v-6,2,0,22,5,18v-3,-6,-3,-10,-5,-18xm152,-21v-1,-3,-5,-1,-2,0r2,0xm159,-22v-2,0,-2,0,-1,1v3,-1,5,10,7,2xm147,-21v-1,1,-4,12,0,6r0,-6xm20,-20v3,0,2,5,1,7v0,-2,-3,-5,-1,-7xm55,-12v0,0,-9,1,-5,2v4,-1,5,-1,5,-2xm119,-7v3,-4,9,0,10,5v-6,4,-6,0,-10,-5xm92,-2v4,-2,9,-3,10,2v-4,0,-9,1,-10,-2xm0,-1v0,-2,3,-4,3,-1v-1,1,-2,3,-3,1","w":198},"f":{"d":"18,-252v6,9,-13,8,-16,15v7,0,5,7,2,10v-9,1,-2,-18,-3,-25v9,-2,11,5,17,0xm10,-183v-2,-9,11,-20,9,-11v1,2,1,5,3,5v-1,-3,1,-3,3,-1r-1,1v2,-1,8,1,7,-3v-10,4,-11,-23,-17,-8v-1,-1,-3,-1,-5,-1v4,7,1,13,-9,14v1,-8,-1,-14,2,-17r0,3v6,2,8,-7,6,-3v-7,-1,-9,-6,-4,-9v9,-3,3,9,8,3v-2,-10,-1,-11,-8,-15v8,-2,1,-7,13,-6v0,7,3,5,7,3v-3,-6,-3,-11,-3,-19v2,0,5,3,6,1r-2,-6v10,1,25,-2,32,2v-1,7,3,20,-2,24v1,-8,-3,-7,-3,-2v6,3,5,20,5,31v-2,0,-6,-2,-7,0v6,1,8,6,7,14v-7,0,-1,2,0,3v-3,18,7,46,-8,52v-1,-6,-8,4,-11,-2v0,-4,4,-6,0,-9v-1,3,0,7,-4,6v-7,-5,-4,-13,0,-20v9,1,18,-7,8,-12v-1,9,-11,15,-22,14v3,-7,-2,-8,-2,-14v5,-1,6,9,10,5v-4,-3,-7,-6,-3,-8v5,4,5,-4,8,-8v-5,-5,-19,-3,-13,-12v-2,2,-6,1,-8,2v1,0,1,1,1,2xm67,-247v0,-9,20,-5,25,-3v-2,0,-3,4,-1,4v2,0,3,-2,3,-6v27,0,29,2,54,0r0,3v1,-2,4,2,4,-1r-1,-2v11,1,27,-3,34,2v-1,14,3,34,-2,44r-116,-1v-1,-13,2,-33,0,-40xm38,-246v0,1,-4,5,0,4v1,-1,1,-3,0,-4xm52,-245v-5,4,1,12,3,5v-1,-2,-1,-5,-3,-5xm78,-242v-3,0,-4,3,0,3v1,-1,1,-2,0,-3xm35,-240v-2,0,-5,3,-3,3xm150,-239v-4,1,-8,1,-8,6v6,1,6,-3,8,-6xm108,-235v-2,-2,-4,-2,-3,2xm46,-235v-6,-2,-8,3,-10,3r1,-1v-3,-1,-6,7,-3,7v0,-4,12,-3,12,-9xm88,-232v-1,-3,-2,2,-2,2xm141,-232v-1,1,-4,4,0,3r0,-3xm80,-216v4,-3,-3,-12,-7,-10v3,2,6,3,7,10xm32,-224v-1,0,-3,2,-1,2xm21,-223v-2,1,-8,2,-5,4v2,-1,6,0,5,-4xm45,-221v-3,0,-2,6,-2,7v6,-1,13,-5,2,-5r0,-2xm23,-220v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm33,-218v-2,0,-4,3,-1,2v1,-1,3,-1,1,-2xm107,-217v-1,0,-5,0,-2,1xm81,-216v-2,-1,-7,2,-2,2xm127,-216v-3,-1,-5,6,-3,6v1,-2,4,-2,3,-6xm30,-213v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm84,-212v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm139,-210v-2,0,0,3,0,3r0,-3xm54,-205v-1,-8,-7,5,-16,2v0,-2,-2,-2,-4,-1v-1,8,8,3,14,6v-4,-3,0,-8,6,-7xm48,-183v-1,-4,-8,-7,-12,-6v3,4,9,2,12,6xm49,-183v4,0,4,0,2,-2xm0,-175v-1,-4,1,-14,3,-5v-1,3,0,9,-3,5xm40,-183v-3,1,1,2,1,5r2,0xm20,-136v4,-9,2,-7,2,-14v11,0,8,8,4,13v13,11,15,7,17,22v8,-2,0,-8,11,-7v1,-1,0,-4,3,-3v-2,33,4,74,-3,102v5,-1,1,3,3,6v5,11,-10,25,-11,12v-5,0,-5,3,-11,3v-2,-5,8,-5,2,-8v0,3,-6,8,-11,5v0,-12,14,-4,15,-16v-4,1,-3,-2,-3,-5v6,-2,6,7,10,4v-7,-1,-3,-8,1,-11v2,0,0,3,3,2v0,-5,-3,-15,-6,-5v-2,8,-11,9,-18,15v-1,-4,-11,-6,-3,-9v5,1,4,-3,5,-7r-4,0v1,2,1,4,-2,3v-1,-1,-1,-4,-3,-4v2,11,-7,1,-8,11v-1,-2,-2,0,-3,1v6,0,6,4,7,8v-6,0,-7,0,-6,8v7,0,5,2,5,7v-5,0,-7,2,-8,-5v-11,-3,-5,-9,-8,-27v3,-3,9,-6,0,-5v4,-16,-5,-49,3,-65v-6,-1,-5,-21,0,-23v0,0,1,2,1,0v-6,-5,-6,-31,-2,-39v3,1,0,3,3,4v6,-10,-4,-10,4,-18v0,0,7,15,7,4v-2,0,-3,-1,-3,-2v5,-3,13,3,8,7v-12,0,0,20,-11,12v-8,10,18,11,3,21v1,2,4,3,7,3xm45,-174v-1,-3,-3,-4,-2,0r2,0xm45,-172v1,10,-11,-1,-13,7v5,-1,17,0,13,-7xm68,-155v3,-3,6,2,8,7r-1,1v5,-13,74,-11,97,-7v-2,0,-6,-2,-6,1v5,2,6,1,10,-1r0,16v-9,-3,-16,-5,-24,-9v4,17,13,6,23,9v0,9,2,19,0,27r-87,1v-4,-9,-14,5,-19,-2v4,1,12,-8,5,-11v-1,1,-3,1,-4,0v1,4,2,10,-3,10v1,-10,-4,-42,5,-24v3,-9,-5,-12,-4,-18xm6,-155v-3,-1,-2,2,-2,4v2,0,4,-3,2,-4xm99,-155v-2,0,-1,2,-2,3v1,0,2,-1,2,-3xm104,-155v-2,0,-6,2,-3,3v1,-1,4,0,3,-3xm53,-153v-3,0,-3,3,-1,4v0,0,2,0,2,-1xm136,-151v6,3,9,2,15,4v-4,1,-9,-11,-15,-4xm43,-149v-2,0,0,2,0,3v1,0,3,1,3,-1xm101,-145v0,-2,-3,-3,-2,0r2,0xm82,-146v0,7,9,8,9,0v-5,4,-4,2,-9,0xm6,-139v2,-1,4,-4,0,-2r0,2xm125,-140v2,0,6,1,5,-2v-2,2,-6,-2,-5,2xm100,-139v-2,-2,-5,1,-2,2xm146,-139v-4,-1,-3,2,-2,4v3,1,3,-2,2,-4xm84,-127v3,-5,-7,-14,-6,-8v5,-2,2,7,6,8xm145,-133v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm165,-130v-3,-2,-5,0,-3,3xm98,-128v-1,2,-7,-5,-3,1v-3,1,-8,2,-1,4v4,0,6,-1,4,-5xm135,-129v-4,-1,-8,5,-2,6xm21,-128v-16,5,-2,19,-17,23v6,-2,13,3,11,-6r5,0v-3,-4,1,-7,6,-6v4,2,1,5,4,7v0,-1,-1,-3,1,-3v6,2,1,11,5,12v0,-8,4,-4,2,-12v-9,0,-2,-6,-1,-10v-3,-1,-3,4,-7,1v0,-2,1,-5,-1,-5v-1,5,-2,7,-10,7v1,3,-1,5,-4,4v1,-6,3,-5,6,-12xm82,-126v-5,0,-6,4,0,2r0,-2xm143,-125v-4,1,0,5,1,8v3,-1,1,-6,-1,-8xm118,-116v-1,3,2,2,4,2v0,-2,-3,-1,-4,-2xm145,-116v-2,0,-4,1,-4,4v1,-1,5,-1,4,-4xm26,-105v-2,-9,-5,2,-10,0v1,4,7,9,5,0v2,-1,3,-1,5,0xm51,-108v-2,0,-4,0,-3,3v1,0,2,-1,3,-3xm46,-100v1,-3,-2,-4,-2,-2xm9,-102v-4,0,-6,7,0,5r0,-5xm41,-94v-2,0,-4,0,-3,3v1,-1,4,0,3,-3xm50,-84v6,-4,1,-14,-4,-6v1,3,0,7,4,6xm14,-88v-5,-1,-6,1,-2,4v2,-1,6,-3,2,-4xm38,-88v-3,1,-7,-1,-7,3v4,1,5,-1,7,-3xm46,-82v0,1,-2,3,0,3r0,-3xm10,-76r-4,0r4,0xm13,-72v0,-2,-2,-5,-2,-3xm48,-70v2,-6,-11,-7,-11,-4v9,-1,0,8,4,9v2,-1,3,-6,7,-5xm22,-71v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm5,-59v1,-6,10,-4,12,-8v-7,2,-15,-1,-12,8xm54,-66v0,-2,-2,0,-3,0v0,4,2,5,5,6v-2,-3,-5,-6,-2,-6xm13,-54v-3,0,-4,2,-4,6xm52,-44v0,-10,-4,-3,-7,-1xm11,-44v0,2,4,2,4,0r-4,0xm10,-41v0,0,-2,0,-2,1v2,2,5,2,2,-1xm14,-35v-1,0,-3,-2,-3,0v1,2,2,2,3,0xm9,-17v-2,-5,-2,-8,-5,-4v1,2,-1,5,5,4xm20,-20v3,0,2,5,1,7v0,-2,-3,-5,-1,-7xm55,-12v0,0,-9,1,-5,2v4,-1,5,-1,5,-2xm0,-1v0,-2,3,-4,3,-1v-1,1,-2,3,-3,1","w":198},"g":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-37,19r-6,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-3,5,-9,3v-2,9,-14,4,-7,13v7,-5,12,-13,22,-6v2,11,-6,3,-7,12v5,-3,9,2,6,7v-11,-6,-2,9,-12,9v-1,-3,2,-2,2,-5r-2,0v3,-4,5,-8,5,-10v0,8,-16,6,-8,10v-1,2,-1,5,0,7v-1,0,-2,-2,-2,0v1,1,5,5,2,7v-5,-3,-16,1,-15,-8v-22,-1,-30,-7,-50,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm237,-123v2,0,2,0,2,2v-1,0,-2,-1,-2,-2xm140,-48v6,2,24,-21,32,-21v-6,-3,-2,-2,4,-10v-2,-5,0,-6,4,-6v3,-1,2,3,4,3v1,-5,-11,-1,-5,-12r4,2v0,-5,-3,-9,-1,-16v2,2,6,-1,6,-5v-3,-1,-2,7,-6,3v-3,-11,3,-8,0,-13v16,2,40,-4,52,2v-1,7,-10,3,-3,7v2,0,5,-2,5,0r-1,2r4,0v0,23,-8,50,-29,74v-22,26,-57,43,-84,36v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1xm46,-210v-2,0,-4,1,-4,4v2,-1,4,-2,4,-4xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm14,-134v0,-2,-3,-4,-2,-1xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-5,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm197,-113v0,-3,-9,-10,-11,-6xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm219,-114v0,0,-2,0,-2,1r4,0xm205,-114v-2,1,-6,0,-6,4v4,-2,7,4,6,-4xm21,-108v1,-1,4,-2,2,-2xm202,-105v0,-2,-2,-6,-2,-3v2,2,-1,4,2,3xm208,-107v-1,2,4,5,4,1xm234,-107v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm187,-99v-3,-1,-2,2,-1,3v4,1,2,-1,1,-3xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm195,-91v-1,-1,-7,-2,-6,2v3,0,4,-1,6,-2xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm186,-80r1,1xm64,-77v-2,0,-5,2,0,2r0,-2xm181,-72r0,5v3,0,2,-4,0,-5xm197,-72v-2,2,-3,5,1,4xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm176,-65r0,5v2,-2,2,-4,0,-5xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm43,-55v-3,0,-8,2,-2,4v1,-1,2,-2,2,-4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v3,-1,4,-5,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm160,-24v-2,0,-4,4,-1,3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-4,-1,-2,3,-2,5v5,0,4,-1,2,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-4,-2,-3,-5,-3v2,1,0,3,5,3xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm139,-9v1,-3,-3,-6,-2,-1xm103,-3v1,-8,12,-5,12,2v-7,3,-8,-3,-12,-2xm186,-156v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76v-1,-5,1,-7,3,-1xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm225,-176v-2,1,-13,3,-5,3v2,-1,6,0,5,-3xm135,-118v7,3,8,2,15,4v-4,1,-9,-11,-15,-4xm129,-109v-6,2,-3,-8,-4,-14v13,1,40,-3,46,2v-2,0,-5,-2,-5,1v5,2,6,1,10,-1r0,16v-9,-3,-17,-5,-25,-9v5,17,13,6,24,9v0,9,2,19,0,27r-50,1v1,-11,-3,-30,4,-32xm147,-104v-2,-2,-7,-1,-4,2v2,0,3,-1,4,-2xm144,-100v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm164,-97v-3,-2,-5,0,-3,3xm134,-96v-3,0,-5,1,-4,5v4,2,4,-2,4,-5xm142,-92v-4,1,0,5,1,8v3,-2,0,-5,-1,-8xm144,-83v-2,0,-4,1,-4,4v1,-1,5,-1,4,-4","w":246},"h":{"d":"18,-252v6,9,-13,8,-16,15v7,0,5,7,2,10v-9,1,-2,-18,-3,-25v9,-2,11,5,17,0xm10,-183v-2,-9,11,-20,9,-11v1,2,1,5,3,5v-1,-3,1,-3,3,-1r-1,1v2,-1,8,1,7,-3v-10,4,-11,-23,-17,-8v-1,-1,-3,-1,-5,-1v4,7,1,13,-9,14v1,-8,-1,-14,2,-17r0,3v6,2,8,-7,6,-3v-7,-1,-9,-6,-4,-9v9,-3,3,9,8,3v-2,-10,-1,-11,-8,-15v8,-2,1,-7,13,-6v0,7,3,5,7,3v-3,-6,-3,-11,-3,-19v2,0,5,3,6,1r-2,-6v10,1,25,-2,32,2v-1,7,3,20,-2,24v1,-8,-3,-7,-3,-2v6,3,5,20,5,31v-2,0,-6,-2,-7,0v6,1,8,6,7,14v-7,0,-1,2,0,3v-3,18,7,46,-8,52v-1,-6,-8,4,-11,-2v0,-4,4,-6,0,-9v-1,3,0,7,-4,6v-7,-5,-4,-13,0,-20v9,1,18,-7,8,-12v-1,9,-11,15,-22,14v3,-7,-2,-8,-2,-14v5,-1,6,9,10,5v-4,-3,-7,-6,-3,-8v5,4,5,-4,8,-8v-5,-5,-19,-3,-13,-12v-2,2,-6,1,-8,2v1,0,1,1,1,2xm38,-246v0,1,-4,5,0,4v1,-1,1,-3,0,-4xm52,-245v-5,4,1,12,3,5v-1,-2,-1,-5,-3,-5xm35,-240v-2,0,-5,3,-3,3xm46,-235v-6,-2,-8,3,-10,3r1,-1v-3,-1,-6,7,-3,7v0,-4,12,-3,12,-9xm32,-224v-1,0,-3,2,-1,2xm21,-223v-2,1,-8,2,-5,4v2,-1,6,0,5,-4xm45,-221v-3,0,-2,6,-2,7v6,-1,13,-5,2,-5r0,-2xm23,-220v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm33,-218v-2,0,-4,3,-1,2v1,-1,3,-1,1,-2xm30,-213v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm54,-205v-1,-8,-7,5,-16,2v0,-2,-2,-2,-4,-1v-1,8,8,3,14,6v-4,-3,0,-8,6,-7xm48,-183v-1,-4,-8,-7,-12,-6v3,4,9,2,12,6xm49,-183v4,0,4,0,2,-2xm0,-175v-1,-4,1,-14,3,-5v-1,3,0,9,-3,5xm40,-183v-3,1,1,2,1,5r2,0xm20,-136v4,-9,2,-7,2,-14v11,0,8,8,4,13v13,11,15,7,17,22v8,-2,0,-8,11,-7v1,-1,0,-4,3,-3v-2,33,4,74,-3,102v5,-1,1,3,3,6v5,11,-10,25,-11,12v-5,0,-5,3,-11,3v-2,-5,8,-5,2,-8v0,3,-6,8,-11,5v0,-12,14,-4,15,-16v-4,1,-3,-2,-3,-5v6,-2,6,7,10,4v-7,-1,-3,-8,1,-11v2,0,0,3,3,2v0,-5,-3,-15,-6,-5v-2,8,-11,9,-18,15v-1,-4,-11,-6,-3,-9v5,1,4,-3,5,-7r-4,0v1,2,1,4,-2,3v-1,-1,-1,-4,-3,-4v2,11,-7,1,-8,11v-1,-2,-2,0,-3,1v6,0,6,4,7,8v-6,0,-7,0,-6,8v7,0,5,2,5,7v-5,0,-7,2,-8,-5v-11,-3,-5,-9,-8,-27v3,-3,9,-6,0,-5v4,-16,-5,-49,3,-65v-6,-1,-5,-21,0,-23v0,0,1,2,1,0v-6,-5,-6,-31,-2,-39v3,1,0,3,3,4v6,-10,-4,-10,4,-18v0,0,7,15,7,4v-2,0,-3,-1,-3,-2v5,-3,13,3,8,7v-12,0,0,20,-11,12v-8,10,18,11,3,21v1,2,4,3,7,3xm45,-174v-1,-3,-3,-4,-2,0r2,0xm45,-172v1,10,-11,-1,-13,7v5,-1,17,0,13,-7xm69,-110v2,-5,10,-7,4,-13v-1,2,-3,0,-4,0v0,3,3,10,-2,10v1,-10,-2,-23,1,-31r3,7v3,-9,-4,-12,-3,-19v7,0,7,16,12,6v-3,-4,-6,-7,3,-6v21,2,58,-4,71,2v-2,-1,-4,-2,-4,1v4,2,6,2,8,-1r0,16v-8,-3,-14,-5,-20,-9v4,16,9,7,20,9r0,27r-74,1v-4,-7,-8,1,-15,0xm6,-155v-3,-1,-2,2,-2,4v2,0,4,-3,2,-4xm94,-155v-2,0,-1,2,-2,3v1,0,2,-1,2,-3xm98,-155v-2,0,-3,1,-3,3v1,-1,4,0,3,-3xm53,-153v-3,0,-3,3,-1,4v0,0,2,0,2,-1xm131,-153v-8,0,-5,3,-1,6v1,-7,4,2,7,0v-2,0,-4,-2,-6,-6xm43,-149v-2,0,0,2,0,3v1,0,3,1,3,-1xm94,-147v0,1,1,3,1,1xm81,-146v-3,1,1,5,2,7v1,-2,5,-6,3,-7v-2,3,-3,4,-5,0xm6,-139v2,-1,4,-4,0,-2r0,2xm119,-142v-1,2,-4,-2,-3,2v2,0,4,0,3,-2xm95,-139v-2,-2,-5,1,-2,2xm133,-139v-3,-1,-2,2,-2,4v3,1,3,-2,2,-4xm80,-127v7,-4,-10,-14,-2,-8v1,2,3,4,2,8xm132,-133v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm149,-130v-3,-2,-5,0,-3,3xm93,-128v0,0,-10,2,-4,5v4,0,6,-1,4,-5xm124,-129v-4,-1,-6,5,-2,6xm21,-128v-16,5,-2,19,-17,23v6,-2,13,3,11,-6r5,0v-3,-4,1,-7,6,-6v4,2,1,5,4,7v0,-1,-1,-3,1,-3v6,2,1,11,5,12v0,-8,4,-4,2,-12v-9,0,-2,-6,-1,-10v-3,-1,-3,4,-7,1v0,-2,1,-5,-1,-5v-1,5,-2,7,-10,7v1,3,-1,5,-4,4v1,-6,3,-5,6,-12xm80,-126v-5,0,-6,4,0,2r0,-2xm131,-125v-4,0,0,5,0,8v3,-1,1,-5,0,-8xm113,-114v0,-2,-4,-3,-3,0r3,0xm132,-116v-1,1,-4,1,-3,4v1,-1,4,-1,3,-4xm26,-105v-2,-9,-5,2,-10,0v1,4,7,9,5,0v2,-1,3,-1,5,0xm51,-108v-2,0,-4,0,-3,3v1,0,2,-1,3,-3xm46,-100v1,-3,-2,-4,-2,-2xm9,-102v-4,0,-6,7,0,5r0,-5xm41,-94v-2,0,-4,0,-3,3v1,-1,4,0,3,-3xm50,-84v6,-4,1,-14,-4,-6v1,3,0,7,4,6xm14,-88v-5,-1,-6,1,-2,4v2,-1,6,-3,2,-4xm38,-88v-3,1,-7,-1,-7,3v4,1,5,-1,7,-3xm46,-82v0,1,-2,3,0,3r0,-3xm10,-76r-4,0r4,0xm13,-72v0,-2,-2,-5,-2,-3xm48,-70v2,-6,-11,-7,-11,-4v9,-1,0,8,4,9v2,-1,3,-6,7,-5xm22,-71v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm5,-59v1,-6,10,-4,12,-8v-7,2,-15,-1,-12,8xm54,-66v0,-2,-2,0,-3,0v0,4,2,5,5,6v-2,-3,-5,-6,-2,-6xm13,-54v-3,0,-4,2,-4,6xm52,-44v0,-10,-4,-3,-7,-1xm11,-44v0,2,4,2,4,0r-4,0xm10,-41v0,0,-2,0,-2,1v2,2,5,2,2,-1xm14,-35v-1,0,-3,-2,-3,0v1,2,2,2,3,0xm9,-17v-2,-5,-2,-8,-5,-4v1,2,-1,5,5,4xm20,-20v3,0,2,5,1,7v0,-2,-3,-5,-1,-7xm55,-12v0,0,-9,1,-5,2v4,-1,5,-1,5,-2xm0,-1v0,-2,3,-4,3,-1v-1,1,-2,3,-3,1xm169,-251v13,-4,43,-4,57,0v1,15,0,26,-10,16v5,5,3,10,1,12v3,-1,6,-6,9,-4r0,112v-13,-5,-11,7,-23,7v6,0,18,13,13,-2v13,0,0,8,10,12v1,9,-2,14,-6,18v4,1,3,-3,6,-3v-2,14,4,36,-4,43v1,1,3,1,4,0v-1,8,3,21,-2,25v1,-6,-6,-6,-7,-6v2,0,13,10,2,11v-2,-1,-4,-6,-5,-4v3,7,6,9,12,5v2,13,-8,7,-18,9v-4,-7,-15,5,-19,-5v2,7,-6,5,-11,5v1,-4,-3,-3,-6,-3v0,2,3,0,2,3v-11,-2,1,-22,-5,-33v2,-4,7,0,11,0v-5,-1,-6,-5,-9,-8v0,2,1,5,-2,4v2,-11,-6,-43,8,-33v4,0,17,-1,8,-3v1,-5,-11,1,-7,-7v0,-6,-11,-9,-9,-18r3,0v-8,-43,-1,-104,-3,-153xm189,-249v0,0,-5,0,-3,1xm199,-240v0,-5,-4,-2,-1,0r1,0xm210,-231v-6,0,-11,0,-13,4r12,5v-1,-4,-1,-7,1,-9xm214,-220v0,-4,-6,-2,-2,0r2,0xm176,-217v0,-2,-4,-4,-3,-1xm220,-149v-2,0,-3,9,1,8v2,-3,0,-5,-1,-8xm224,-128v-2,0,-5,6,0,5r0,-5xm178,-138v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm214,-122v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm188,-132v-2,0,-2,0,-2,2r2,2r0,-4xm173,-126v2,1,4,3,8,3v0,-2,-3,-2,-8,-3xm192,-121v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm224,-114v4,0,1,6,2,9v-3,1,-2,-5,-2,-9xm207,-123v-1,-8,-6,-15,-9,-7xm182,-109v-2,-6,-5,-4,-9,-1v3,1,6,4,9,1xm195,-101v-2,-5,-5,-2,-5,2v3,2,4,6,-2,6v-4,-1,-5,7,-1,7v4,-2,4,1,6,3v-3,-11,15,-8,1,-13v0,-2,-1,-5,1,-5xm224,-97v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm216,-88v-2,-2,-13,4,-7,6v0,-2,3,-5,7,-6xm170,-86v5,0,4,6,1,9v-4,1,-1,-5,-2,-8xm216,-79v-2,0,-4,0,-3,2v2,-1,3,-1,3,-2xm197,-79v-3,3,-5,5,1,3xm205,-75v-1,0,-3,-1,-3,1v0,1,2,2,6,4v0,-3,-2,-2,-3,-5xm200,-70v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm210,-68v-1,1,-3,0,-3,2r4,0xm183,-63v-5,-7,-14,1,-8,5v2,-2,2,-6,8,-5xm217,-61v-5,2,-10,6,-7,7v-1,-4,9,-1,7,-7xm189,-59v-2,-1,-6,3,-2,2xm224,-55v-4,-1,-6,4,-1,3xm191,-46v-1,0,-5,4,-1,3xm186,-43v-3,-1,-7,3,-2,2xm196,-27v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm204,-18v3,-3,-2,-11,-3,-8v6,4,-7,10,3,8xm187,-23v-2,-1,-5,1,-2,2xm189,-14v0,1,5,4,5,0r-5,0xm185,-11v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm212,-9v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":239},"i":{"d":"0,-251v13,-4,43,-4,57,0v1,12,1,32,-9,15v0,4,5,11,0,13r9,-4r0,112v-13,-7,-10,12,-21,5v0,1,-3,3,-1,3v8,-1,15,14,12,-3v13,0,0,8,10,12v1,9,-2,14,-6,18v4,1,5,-1,6,-3v-2,14,4,36,-4,43v7,1,5,19,3,26v0,-7,-4,-5,-8,-7v2,0,14,10,2,11v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v2,13,-8,7,-18,9v-4,-7,-13,4,-19,-4v2,7,-7,3,-11,4v1,-4,-2,-3,-5,-3v1,2,1,4,-2,3v-1,-11,-1,-26,0,-35r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4v2,-11,-6,-43,8,-33v6,-1,16,0,8,-4v-11,-1,-7,-4,-11,-16v-5,3,-6,-3,-5,-8r3,0v-8,-42,-1,-104,-3,-153xm20,-248v0,0,-5,0,-3,1xm30,-239v0,-5,-4,-2,-1,0r1,0xm28,-227r12,6v-1,-4,-1,-7,1,-9v-6,-1,-10,1,-13,3xm45,-219v0,-4,-6,-2,-2,0r2,0xm5,-219v-1,1,1,4,2,2v0,-2,-1,-1,-2,-2xm51,-149v-4,2,0,12,2,6xm56,-123v0,-5,-3,-4,-4,0v0,2,3,0,4,0xm9,-122v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm45,-121v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm20,-117v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm2,-114v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm25,-112v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm56,-113v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm27,-99r9,7v-1,-5,-6,-18,-7,-7r-2,0xm13,-97v-5,-6,-12,-1,-3,3v2,0,2,-2,3,-3xm21,-101v-6,3,6,13,-7,10v-3,5,-1,10,6,7r1,4v-4,-12,17,-9,2,-13xm56,-97v-2,1,-7,-1,-6,3v3,0,7,1,6,-3xm47,-89v-3,2,-12,5,-7,7v-1,-3,7,-3,7,-7xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm47,-79v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm28,-78v-3,3,-5,5,1,3xm36,-74v-1,0,-3,-1,-3,1v0,1,2,2,6,4v0,-3,-2,-2,-3,-5xm31,-69v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm41,-67v-1,1,-3,0,-3,2r4,0xm9,-66v-1,5,-9,2,-2,9v0,-4,3,-5,7,-5v-1,-2,-3,-3,-5,-4xm48,-60v-9,4,-12,8,0,4r0,-4xm20,-58v-2,-1,-6,3,-2,2xm55,-55v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,5,-7,9,3,8xm18,-22v-1,0,-5,0,-2,1xm21,-13v0,1,4,2,4,0r-4,0xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm56,-113v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8","w":69},"j":{"d":"60,-60v1,-1,2,0,2,-2v-1,0,-2,0,-2,2xm50,-252v11,-4,21,7,25,4v-3,-1,-5,-2,-6,-4v15,-6,23,14,10,19v4,2,5,11,-4,9v-1,-5,2,-7,1,-10v-5,5,-22,10,-5,8v4,5,4,10,14,6r0,142v-10,48,-29,76,-76,80v-1,-6,-4,2,-9,0v1,-8,-1,-18,5,-21v-1,2,-4,-2,-5,1v3,-11,-8,-39,8,-35v-1,-5,10,2,5,-5v10,-5,15,-14,15,-26r0,-144v7,-6,-4,-12,2,-18v5,2,4,-1,4,-6v4,1,13,-2,14,2v-6,-3,-8,1,-5,6v12,-4,-1,16,9,8v0,0,-2,0,-2,-1v-1,-6,8,-5,7,-9v-5,2,-7,-1,-7,-6xm78,-241v0,2,8,5,6,0r-6,0xm39,-241v-6,3,-7,6,0,8v1,-3,3,-6,0,-8xm64,-242v-5,3,-11,7,-5,11v-1,-4,5,-6,5,-11xm51,-226v-1,4,3,3,3,1v0,-2,-2,-1,-3,-1xm37,-224v-4,-1,-5,2,-7,3v5,-1,7,-1,7,-3xm46,-217v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm62,-217v4,-1,8,4,11,3v0,-1,-8,-7,-11,-3xm35,-213v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm80,-213v0,5,4,8,4,1xm78,-186v3,-1,5,-8,0,-8r0,8xm9,-9v-1,0,-4,-2,-4,0r4,0xm6,-18v7,-1,3,-3,0,-1r0,1xm15,-43v3,-6,-3,-7,-7,-5v-1,5,4,4,7,5xm16,-18r1,-1xm18,-34v-3,5,-9,-2,-11,0r3,11v5,-3,8,-7,8,-11xm22,-51v-1,-2,-7,2,-4,3v3,1,3,-2,4,-3xm30,-5v0,-2,1,-5,-2,-4v0,2,-1,5,2,4xm31,-30v0,0,-15,5,-9,7v6,-1,8,-4,9,-7xm34,-76v-1,-2,-1,-2,-3,-1v-1,3,2,1,3,1xm35,-55v-2,-2,-11,1,-13,3v7,-2,6,7,11,4v0,-3,1,-5,2,-7xm33,-40v4,0,6,-4,0,-3r0,3xm44,-52v-1,-3,1,-7,-3,-7v1,2,-1,8,3,7xm49,-47v7,-1,3,-4,0,-1r0,1xm54,-71v2,-3,4,-11,2,-11v-3,3,-2,5,-2,11xm67,-77v0,-2,0,-4,-2,-3v1,1,0,3,2,3xm60,-65v-2,-1,-2,1,-2,3v1,0,2,-1,2,-3xm82,-109r0,1r0,-1xm28,-252v7,-2,3,5,1,2v-1,0,-1,-1,-1,-2xm85,-222v-3,0,-2,-7,0,-9r0,9xm64,-82r-1,0r1,0","w":97},"k":{"d":"58,-252r-1,252r-57,0r0,-252r58,0xm146,-252v24,1,51,-2,73,1r-115,113r120,138r-69,0r-89,-105r0,-62","w":228},"l":{"d":"0,-251v16,-2,41,-2,57,0v1,15,1,27,-10,17v5,4,4,10,1,11v3,-1,7,-5,9,-3r0,112v-13,-8,-10,11,-21,4v-1,1,-3,3,-1,4v9,-1,15,12,12,-4v13,0,0,9,10,13v1,9,-2,13,-6,17v4,1,5,-1,6,-3v-2,14,4,36,-4,43v7,1,5,19,3,26v1,-6,-6,-7,-8,-6v0,0,13,9,2,10v-2,-1,-4,-5,-5,-3v3,2,3,6,4,8v6,0,4,-4,8,-4v1,18,-18,3,-31,9v-5,-6,-20,4,-26,-2v5,-5,-4,-16,4,-21v-1,-3,-8,-7,-2,-12r9,2v-5,-1,-5,-6,-9,-8v0,2,1,5,-2,4v2,-18,-9,-42,20,-34v-1,-3,-16,-2,-11,-9v-2,0,-4,-2,-4,-9v-5,3,-6,-3,-5,-8r3,0v-7,-42,-1,-104,-3,-154xm20,-248v0,0,-5,0,-3,1xm30,-239v0,-5,-4,-2,-1,0r1,0xm41,-230v-6,0,-11,0,-13,4r12,5v-1,-4,-1,-7,1,-9xm45,-219v0,-4,-6,-2,-2,0r2,0xm7,-217v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm51,-149v-2,0,-3,10,1,9v2,-3,0,-6,-1,-9xm56,-123v0,-5,-3,-4,-4,0v0,2,3,0,4,0xm9,-122v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm45,-121v-2,0,-13,4,-9,6v5,-2,8,-4,9,-6xm20,-117v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm2,-114v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm25,-112v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm56,-113v2,1,2,8,0,9v0,-3,-2,-7,0,-9xm36,-92v-2,-8,-6,-15,-9,-6xm13,-97v-6,-5,-12,0,-3,3v2,0,2,-2,3,-3xm19,-96v2,2,3,6,-2,6v-5,-1,-7,7,-2,7v9,3,5,-5,14,-6v-4,1,-7,-18,-10,-7xm56,-97v-2,1,-7,-1,-6,3v3,0,7,1,6,-3xm47,-87v-2,-2,-13,4,-7,6v0,-2,3,-5,7,-6xm1,-85v5,0,3,5,1,9v-4,1,-1,-5,-2,-8xm47,-79v-1,1,-4,0,-3,3v2,-1,3,-2,3,-3xm28,-78v-3,3,-5,5,1,3xm36,-74v-1,0,-3,-1,-3,1v0,1,2,2,6,4v0,-3,-2,-2,-3,-5xm31,-69v-13,1,-11,4,-4,7v0,-3,1,-5,4,-7xm41,-67v-1,1,-3,0,-3,2r4,0xm14,-62v-3,-6,-7,-1,-10,-1v1,10,3,1,10,1xm48,-60v-9,4,-12,8,0,4r0,-4xm20,-58v-2,-1,-6,3,-2,2xm55,-54v-4,-1,-6,4,-1,3xm22,-46v-1,0,-5,5,-1,4xm17,-42v-3,-1,-7,3,-2,2xm27,-26v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-17v3,-3,-2,-11,-3,-8v6,4,-7,10,3,8xm18,-22v-2,-1,-5,1,-2,2xm21,-13v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm16,-10v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,-8v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm178,-31v-10,-4,-10,10,-11,19v4,-1,1,5,2,7v-6,2,-13,-7,-20,2v2,0,3,1,3,3v-8,2,-21,-2,-12,-6v-2,-8,-7,-5,-16,-3v4,4,2,7,-2,9r-14,0v1,-4,-5,-3,-5,-2v1,1,3,0,3,2v-25,2,-44,4,-37,-33r5,3v-3,-4,-8,-11,-4,-17v7,0,12,-1,13,5v11,-8,15,-4,28,-5v-1,6,-5,4,-5,8v7,-14,41,-5,52,-7v-1,0,-1,0,-1,-1v9,1,14,0,21,1v-2,4,-1,10,4,6v-1,13,5,10,7,25v0,3,-5,25,-18,12v6,1,0,-10,7,-11v-2,0,-4,0,-3,-2v9,-2,-1,-9,3,-15xm145,-44v-1,2,1,6,1,2xm136,-43r-3,1xm117,-37v1,-5,-2,-4,-2,-1xm128,-38v1,1,2,1,3,0r-3,0xm188,-38v2,1,2,8,-2,6v0,-3,0,-5,2,-6xm118,-35v1,2,3,6,2,0r-2,0xm88,-27v3,-1,3,-8,-1,-5xm115,-27v1,-3,-5,-6,-4,-1xm135,-30v-7,1,1,7,-4,11v11,-3,1,-2,4,-11xm79,-28v0,-2,-3,-3,-2,0v1,1,1,1,0,2v-14,1,4,2,-1,11v3,0,1,3,4,2v-3,-6,-3,-6,-1,-15xm160,-27v-4,-2,-16,7,-17,-1v3,5,-3,9,-2,11v5,-8,14,-3,19,-10xm117,-27v-2,-1,-2,1,-2,3v2,0,1,-2,2,-3xm122,-24v-6,4,-2,13,-7,19v7,-1,8,-10,7,-19xm107,-23v-2,0,-4,3,0,2r0,-2xm99,-22v-4,0,-9,3,-6,6v3,-1,2,-5,6,-6xm111,-21v-2,0,-2,8,1,8xm136,-9v3,5,-6,14,-8,5v2,-4,5,-5,8,-5xm155,-1v1,-5,12,-3,7,1v-2,0,-7,1,-7,-1","w":202},"m":{"d":"1,-252r53,0v9,13,19,27,27,44r-2,0v5,7,19,16,14,27v5,1,14,8,9,14v-16,-1,-31,9,-44,5v-4,6,-10,-10,-10,-10v4,2,14,3,17,0v-7,0,-10,-11,-19,-6v-10,-10,-46,-74,-45,-74xm292,-2v-14,5,-39,0,-57,1r1,-59v4,-7,10,-1,8,-13r-8,-1v3,-57,-10,-67,26,-110v7,-9,17,-38,30,-49r0,153v-3,2,-4,2,0,5r0,63v1,2,-6,1,-5,4v5,-1,6,2,5,6xm271,-6v2,0,1,-3,0,-4r0,4xm38,-239r0,1r0,-1xm259,-12v2,-1,3,-2,-1,-2xm25,-174v-11,-4,-17,11,-25,2v2,-20,-4,-47,2,-63r30,52v-2,3,-8,3,-7,9xm273,-23v0,2,4,1,5,2v-2,-1,-2,-2,-5,-2xm259,-24v2,0,5,1,4,-2v-2,0,-5,-1,-4,2xm251,-28v3,-1,3,-1,1,-3xm279,-45v0,0,11,-3,4,-2v-2,-1,-1,3,-4,2xm265,-51r0,-4v-2,1,-2,3,0,4xm75,-194v0,-3,-4,-6,-3,0v1,2,2,2,3,0xm242,-69v0,6,-8,9,-6,0v0,-3,5,-2,6,0xm77,-173v8,4,10,-5,14,-8v-11,5,-21,-14,-19,1v-2,0,-4,1,-4,4v6,-2,5,6,9,5r0,-2xm282,-68r5,-1xm81,-176v2,-2,5,-6,4,0v-2,1,-3,3,-4,0xm33,-170v2,-3,6,-4,7,1v-3,1,-5,1,-7,-1xm17,-170v6,-2,7,3,4,7v2,-2,11,-7,13,-3v0,1,-4,5,0,4v4,-6,12,-4,12,6v-19,2,-33,10,-46,8v-1,-19,2,-8,14,-12v-4,-7,9,-3,3,-10xm141,-17r-73,-123v0,0,2,0,2,-1v-6,-1,-16,-16,-2,-12v7,6,20,-4,29,-2v2,-10,19,-5,17,4v-3,0,-3,5,0,5v0,-2,0,-4,3,-3r24,41r0,91xm255,-94v0,4,4,2,1,0r-1,0xm242,-98r4,0r-4,0xm42,-152v-1,4,2,5,5,3v2,11,10,4,8,19v-2,0,-4,0,-3,2r3,0r1,127r-56,0r0,-136v5,-12,28,-6,30,3v8,-9,-14,-7,-8,-14v6,-2,13,4,16,0v-2,-3,2,-3,4,-4xm54,-144v-3,0,-8,-6,-3,-6v2,1,3,3,3,6xm92,-146v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm43,-142v-3,-3,-4,-1,-4,3v0,1,-1,3,1,3v2,-1,3,-3,3,-6xm97,-139v2,0,5,2,5,0v-1,-1,-3,-1,-5,0xm102,-136v-1,-3,-2,2,-2,2xm119,-136v0,0,-8,6,-2,5v0,-2,4,-5,2,-5xm114,-130v0,-1,-4,-2,-4,0r4,0xm9,-130v2,8,7,7,10,2v-3,-1,-5,-3,-10,-2xm36,-127v-3,-3,-3,5,-11,3v0,2,-1,5,1,5v5,-3,7,-5,10,-8xm51,-123v0,0,-2,0,-2,1r3,2xm41,-121v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm129,-121v-3,-1,-4,3,-2,4v1,-1,2,-2,2,-4xm21,-118v-1,-1,-2,-1,-3,0r3,0xm34,-114v-2,-2,-9,4,-2,2xm128,-108v-2,0,-4,3,0,2r0,-2xm12,-102v-4,-1,-3,3,-1,4xm278,-157v1,0,3,-1,1,-1xm121,-87v-2,-1,-5,1,-2,2xm209,-180v2,1,6,4,2,5v-1,-1,-2,-2,-2,-5xm255,-233v1,-1,2,0,2,-2xm163,-47v0,-4,-4,-2,-1,0r1,0xm171,-94v-1,-1,-4,-4,-3,0r3,0xm180,-113v0,-5,-4,-2,-1,0r1,0xm184,-131v0,-1,-4,-2,-4,0r4,0xm179,-132v-1,-3,-2,-4,-5,-4v2,1,2,4,5,4xm194,-137v0,0,-2,0,-2,1v1,1,2,2,2,-1xm197,-139v0,-3,-4,-2,-5,0v0,2,4,0,5,0xm204,-146v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm213,-182v-14,-2,-7,7,-2,9v6,-3,8,7,10,-4v2,0,5,1,5,-1v-8,1,-10,-2,-13,-4xm231,-198v-1,-1,-5,0,-4,3v2,2,5,0,4,-3xm202,-168v-4,0,-9,1,-12,-1v0,-10,14,-8,9,-18v16,-23,24,-45,40,-66r54,0v-2,5,-13,21,-30,51v-11,19,-10,16,-19,28v1,-2,-1,-2,-3,-2v3,6,-19,1,-8,6v3,-2,11,-1,13,-2v-8,11,-8,22,-22,31r2,0r-73,123r0,-91v9,-13,14,-31,26,-41v-1,4,1,4,3,2v-10,-11,11,-19,20,-20xm232,-161v2,0,5,2,4,-1v-2,0,-3,0,-4,1xm228,-160v-4,-3,-11,-3,-20,-4v4,3,12,4,20,4xm207,-166v-1,0,-5,0,-2,1","w":307},"n":{"d":"1,-252r53,0v9,13,19,27,27,44r-2,0v5,7,19,16,14,27v5,1,14,8,9,14v-16,-1,-31,9,-44,5v-4,6,-10,-10,-10,-10v4,2,14,3,17,0v-7,0,-10,-11,-19,-6v-10,-10,-46,-74,-45,-74xm149,-227v-12,-35,31,-27,57,-23v2,8,-9,6,0,10r0,63v-3,2,-4,2,0,5v-2,49,4,107,-2,152r-27,-47r2,0v-36,-36,-28,-62,-29,-111v6,0,7,-4,9,-9v-16,1,-8,-26,-10,-40xm186,-246v-3,-1,-2,2,-2,4v1,-1,2,-2,2,-4xm38,-239r0,1r0,-1xm174,-239v-1,0,-2,-2,-2,0r2,0xm25,-173v-11,-4,-18,12,-25,1v2,-19,-4,-47,2,-62r30,52v-3,2,-8,3,-7,9xm192,-232v-3,-1,-7,3,-3,3xm177,-228v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm165,-221v4,-1,2,-4,0,-2r0,2xm194,-208v-1,0,-1,0,-1,1v3,-1,3,5,6,1xm179,-201v-1,1,-3,2,0,3r0,-3xm75,-194v0,-3,-4,-6,-3,0v1,2,2,2,3,0xm149,-188v2,-2,8,1,7,5v-3,5,-8,0,-7,-5xm77,-173v8,4,10,-5,14,-8v-11,5,-21,-14,-19,1v-2,0,-4,1,-4,4v6,-2,5,6,9,5r0,-2xm197,-185v-1,0,-1,0,-1,1v2,0,5,2,5,0xm81,-176v2,-2,5,-6,4,0v-2,1,-3,3,-4,0xm38,-167v-5,0,-6,-5,0,-5v2,2,2,4,0,5xm17,-170v6,-2,7,4,4,7v4,-1,10,-6,13,-2v-1,1,-4,4,0,3v5,-5,12,-3,12,6v-15,2,-32,10,-46,9v-1,-21,2,-7,14,-13v-2,-4,0,-6,5,-5xm78,-154v12,4,21,-5,30,-8v9,6,1,13,7,16v-1,-2,-1,-4,2,-3r88,149r-52,0r-85,-140v0,0,2,0,2,-1v-6,-1,-16,-16,-2,-12v0,1,10,6,10,-1xm172,-160v-2,-1,-5,1,-2,2xm160,-156v-1,0,-4,-1,-4,1v2,0,5,2,4,-1xm42,-152v-1,4,2,7,5,4v2,11,10,3,8,18v-2,0,-4,0,-3,2r3,0r1,128v-18,-1,-40,2,-56,-1r0,-136v6,-11,28,-6,30,4v9,-8,-14,-8,-8,-14v5,-1,12,2,16,0v-2,-3,2,-3,4,-5xm54,-143v-3,0,-8,-6,-3,-6v2,1,3,3,3,6xm92,-146v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm43,-141v-2,-2,-4,-2,-4,2v0,1,-1,3,1,3v2,-1,3,-2,3,-5xm97,-139v2,0,5,2,5,0v-1,-1,-3,-1,-5,0xm102,-136v-1,-3,-2,2,-2,2xm119,-136v0,0,-8,6,-2,5v0,-2,4,-5,2,-5xm114,-130v0,-1,-4,-2,-4,0r4,0xm9,-130v2,8,8,8,10,2v-3,-1,-5,-3,-10,-2xm36,-128v-4,1,-3,6,-11,5v0,1,-1,4,1,4v3,-3,9,-4,10,-9xm51,-123v0,0,-2,0,-2,1r3,2xm41,-121v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm129,-121v-3,-1,-4,3,-2,4v1,-1,2,-2,2,-4xm21,-117v0,-2,-2,-2,-3,-1v0,2,2,1,3,1xm29,-112v3,0,4,-1,5,-2v-4,1,-5,1,-5,2xm128,-108v-2,0,-4,3,0,2r0,-2xm12,-101v-4,-1,-3,3,-1,4xm194,-94v0,-4,-4,-2,-1,0r1,0xm121,-87v-2,-1,-5,1,-2,2xm186,-12v-1,-1,-2,-1,-3,0r3,0xm148,-8v1,2,6,4,7,1","w":219},"o":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-37,19r-6,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-3,5,-9,3v-2,9,-14,4,-7,13v7,-5,12,-13,22,-6v2,11,-6,3,-7,12v5,-3,9,2,6,7v-11,-6,-2,9,-12,9v-1,-3,2,-2,2,-5r-2,0v3,-4,5,-8,5,-10v0,8,-16,6,-8,10v-1,2,-1,5,0,7v-1,0,-2,-2,-2,0v1,1,5,5,2,7v-5,-3,-16,1,-15,-8v-22,-1,-30,-7,-50,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm140,-48v6,2,24,-21,32,-21v-6,-3,-2,-2,4,-10v-2,-5,0,-6,4,-6v3,-1,2,3,4,3v1,-5,-11,-1,-5,-12r4,2v0,-5,-3,-9,-1,-16v2,2,6,-1,6,-5v-3,-1,-2,7,-6,3v-3,-24,14,-23,30,-18v3,-6,7,-2,9,-4v-5,0,-1,-2,-4,-5v-1,4,-15,6,-16,2r2,-5v-9,2,-9,1,-20,0v-2,-6,-5,-15,3,-16v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76r0,-5v2,0,3,4,5,14v-3,-1,-3,-4,-4,3v-2,10,-17,4,-21,0v4,4,-2,8,-8,7v0,0,0,-2,-1,-2v-1,3,3,5,1,6v0,-1,0,-1,-1,-1r0,4v-3,0,-10,-5,-11,-1v9,2,23,10,29,3v-4,-2,-14,-7,-5,-12v3,2,0,5,2,7v0,-2,3,-2,7,-3v1,3,-6,7,-1,6v5,0,0,-8,5,-6v4,-1,9,-7,11,-1v-2,1,5,18,-4,15v1,4,-5,2,-5,5r6,-2r-1,2v10,0,6,8,6,16v-2,0,-1,-5,-5,-4v2,9,-8,5,-6,11v2,-2,5,0,8,0r-1,2r4,0v0,23,-8,50,-29,74v-22,26,-57,43,-84,36v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm46,-210v-2,0,-4,1,-4,4v2,-1,4,-2,4,-4xm224,-176v-2,1,-11,3,-5,3v2,-1,6,0,5,-3xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm207,-150v-1,0,-2,3,-2,1xm205,-144v0,0,-3,2,-1,2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm218,-138v2,1,7,4,10,5v1,-5,-4,-5,-10,-5xm14,-134v0,-2,-3,-4,-2,-1xm182,-137v4,-3,9,3,6,6v-4,0,-6,-2,-6,-6xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-5,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm237,-130v-1,8,-12,-7,-6,4v3,-2,7,2,6,-4xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm197,-113v0,-3,-9,-10,-11,-6xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm219,-114v0,0,-2,0,-2,1r4,0xm205,-114v-2,1,-6,0,-6,4v4,-2,7,4,6,-4xm21,-108v1,-1,4,-2,2,-2xm202,-105v0,-2,-2,-6,-2,-3v2,2,-1,4,2,3xm208,-107v-1,2,4,5,4,1xm234,-107v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm187,-99v-3,-1,-2,2,-1,3v4,1,2,-1,1,-3xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm195,-91v-1,-1,-7,-2,-6,2v3,0,4,-1,6,-2xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm186,-80r1,1xm64,-77v-2,0,-5,2,0,2r0,-2xm181,-72r0,5v3,0,2,-4,0,-5xm197,-72v-2,2,-3,5,1,4xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm176,-65r0,5v2,-2,2,-4,0,-5xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm43,-55v-3,0,-8,2,-2,4v1,-1,2,-2,2,-4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v3,-1,4,-5,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm160,-24v-2,0,-4,4,-1,3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-4,-1,-2,3,-2,5v5,0,4,-1,2,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-4,-2,-3,-5,-3v2,1,0,3,5,3xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm139,-9v1,-3,-3,-6,-2,-1xm103,-3v1,-8,12,-5,12,2v-7,3,-8,-3,-12,-2","w":249},"p":{"d":"103,-255v0,-4,2,-6,7,-5xm6,-229v0,-4,0,-8,-6,-7v1,-5,-2,-15,2,-17v15,1,34,-2,47,1v0,1,-2,3,0,3v3,-5,5,1,8,4r0,120v-1,-1,-3,-1,-3,1v2,2,5,9,2,12v1,-2,1,-2,-2,-2v-1,4,-2,12,-9,11v1,7,5,14,8,1r4,0v-2,33,3,73,-3,102v-12,-7,-45,9,-54,-5v3,-13,12,-14,7,-17v-2,2,-3,2,-7,8r0,-89v8,0,12,-11,9,-18v-3,0,-4,17,-9,11r0,-49v4,1,7,-1,3,-4r-3,1v3,-21,-7,-55,4,-69xm66,-252v43,-3,96,-2,115,27v20,31,23,82,-2,106v4,8,-13,5,-8,12v-10,15,-67,25,-105,18v1,-15,-3,-35,2,-46v15,-1,35,1,45,2r-1,-3v38,-6,33,-73,-5,-70v-5,-6,-22,3,-26,-2v1,0,1,0,1,-1v-4,2,-11,3,-16,1r0,-44xm15,-251v-2,0,-4,5,-1,4xm6,-237v0,0,10,3,9,-3v-4,0,-8,0,-9,3xm175,-235v2,-3,4,-5,7,-2v0,1,1,3,-1,3v-3,-2,-1,-3,-6,-1xm8,-218v-1,2,4,7,6,4v-1,-2,-2,-5,-6,-4xm5,-215v-4,-1,-1,4,-1,5xm91,-212v-2,-2,-3,0,-1,1xm22,-209v1,2,-4,-2,-2,1v-2,0,-1,2,-1,3v5,0,10,-3,3,-4xm87,-203v0,-2,3,-4,2,0r-2,0xm18,-203v-3,0,-3,3,-3,6v1,-1,2,-1,3,0v2,13,-8,0,-12,6v7,-2,8,9,17,10v-3,0,-5,-2,-6,-5v0,-4,2,-5,6,-5v0,-7,-4,-5,-5,-12xm144,-197v1,7,2,6,3,0r-3,0xm30,-189v-1,-6,-4,-3,-3,0r3,0xm164,-189v-2,0,-2,0,-1,1xm24,-170v-2,-1,-5,-7,-7,-4v2,2,2,5,7,4xm57,-168v-1,-1,-4,-3,-3,0r3,0xm173,-170v-2,0,-4,0,-3,2v4,-2,6,4,6,0xm92,-124v0,-5,-6,-9,-8,-3xm79,-126v-4,-5,-18,3,-5,2v-1,3,7,10,9,6v-5,1,-8,-6,-4,-8xm46,-125v-3,0,1,4,-5,7v5,1,5,-3,5,-7xm109,-125v-5,-1,-5,2,-2,5v5,1,3,-2,2,-5xm41,-123v-8,-3,-11,3,-2,3xm31,-118v-2,1,-1,8,0,11v4,-1,6,-1,6,-4v-5,2,-7,-1,-6,-7xm92,-114v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm99,-110v0,-1,-5,-2,-5,0r5,0xm94,-107v-1,-3,-2,2,-2,2xm44,-105v-5,-1,-6,2,-2,5v1,0,1,0,1,-1v0,0,-2,0,-2,-1xm14,-100v-1,-2,-3,2,-3,2xm15,-92v2,4,2,6,7,9v0,-5,-2,-9,-7,-9xm17,-81v0,-2,-3,-3,-2,0r2,0xm44,-75v1,-3,-4,-6,-3,-1xm29,-78v-2,0,-7,-1,-6,2v2,0,7,1,6,-2xm40,-74v-2,0,-3,3,-3,6v2,-1,3,-4,3,-6xm21,-73v-3,-1,-6,3,-4,3v2,-1,4,-2,4,-3xm23,-62v-5,-9,-12,-3,-7,2xm34,-64v-1,-1,-3,-3,-3,0r3,0xm49,-58v1,-6,-7,-1,-11,-2v4,0,8,4,11,2xm34,-42v-5,-4,-5,0,-2,2xm53,-36v0,-3,-5,-4,-4,0v1,0,3,2,4,0xm46,-32v2,10,-17,1,-6,10v4,-3,14,-6,6,-10xm12,-28v-4,0,-5,4,0,3r0,-3xm23,-17v0,7,9,6,13,3v-3,-2,-11,0,-13,-3xm48,-15v-2,0,-3,6,-1,7v1,-2,3,-4,1,-7xm51,-13r-2,2xm17,-7v-2,-3,-6,1,-4,3v3,-1,4,-2,4,-3","w":205},"q":{"d":"2,-108v-15,-76,45,-150,113,-143v-2,14,5,37,-5,43v3,3,4,-3,5,0v-14,4,-27,10,-37,19r-6,-2v12,6,-15,24,-14,48v-3,-3,-6,1,-1,1v5,14,-9,16,-5,19r2,-1v1,0,8,19,4,29v-1,0,-1,0,-1,1v4,-2,6,0,6,7v1,6,20,39,45,39v-1,7,-3,5,-9,3v-2,9,-14,4,-7,13v7,-5,12,-13,22,-6v2,11,-6,3,-7,12v5,-3,9,2,6,7v-11,-6,-2,9,-12,9v-1,-3,2,-2,2,-5r-2,0v3,-4,5,-8,5,-10v0,8,-16,6,-8,10v-1,2,-1,5,0,7v-1,0,-2,-2,-2,0v1,1,5,5,2,7v-5,-3,-16,1,-15,-8v-22,-1,-30,-7,-50,-26v-9,-18,-18,-18,-26,-46v-1,-8,8,-6,5,-12v5,2,9,-1,7,7r-2,-1v-5,11,12,3,12,13r2,0v0,-2,-4,-6,1,-5v4,0,5,3,7,0v-1,-6,0,-2,-5,0v-4,-9,-20,1,-10,-14v2,1,5,4,5,0v-2,-2,3,-8,-2,-5v-9,-3,-28,15,-25,-9v5,6,6,-1,8,-6v-4,2,-4,4,-6,-1r1,0r-3,-2v0,5,2,5,0,8xm46,-210v-2,0,-4,1,-4,4v2,-1,4,-2,4,-4xm20,-171v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm59,-154v-2,0,-6,2,-4,4xm43,-152v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm20,-140v1,-2,-2,-7,-2,-2xm28,-138v0,-2,-4,-3,-3,0r3,0xm14,-134v0,-2,-3,-4,-2,-1xm24,-129v0,0,-5,-5,-4,-1v6,-1,7,7,4,11v-5,2,-9,5,-6,5v8,-5,12,-9,19,-3r-1,1v6,2,2,-4,5,-4v2,3,10,2,8,-5v-11,0,-13,-3,-18,-9v0,4,-4,4,-7,5xm14,-126v-1,3,1,3,3,2r0,-2v-1,1,-2,1,-3,0xm15,-114v-1,0,-1,0,-1,1v3,0,1,-1,1,-1xm24,-111r1,-3xm21,-108v1,-1,4,-2,2,-2xm55,-104v-2,0,-6,1,-4,2v2,0,5,1,4,-2xm49,-102v-3,0,-5,0,-3,3xm38,-101v-7,3,-8,3,-1,6xm54,-81v-3,-14,-15,-14,-18,-6r1,3v5,-6,12,-1,17,3xm6,-86v-2,0,-3,-5,-1,-5v3,0,3,3,1,5xm35,-88v-5,-4,-6,7,-3,2v2,1,4,1,3,-2xm19,-73v1,-7,-6,-8,-9,-6xm64,-77v-2,0,-5,2,0,2r0,-2xm72,-68v-1,-1,-4,-3,-3,0v1,1,2,1,3,0xm40,-67v-3,-1,-7,2,-2,3xm67,-56v0,-3,0,-5,-2,-5v2,2,-2,6,2,5xm75,-55v-2,-3,-6,2,-8,3xm192,-31v1,-1,4,-1,3,-4v-3,1,-5,0,-3,4xm28,-48v-2,-2,-4,-2,-3,1xm58,-50v-3,-1,-2,2,-2,4v2,0,1,-3,2,-4xm94,-48r0,2v3,-1,4,-5,0,-2xm31,-44v0,-1,1,-4,-1,-4v0,2,0,3,1,4xm75,-38v-1,-11,-12,-7,-2,0r2,0xm40,-43v-3,-1,-5,2,-3,4v3,0,5,-1,3,-4xm52,-41v-3,0,-6,3,-1,3xm47,-38v0,1,-4,3,-2,3xm54,-38v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm55,-34v1,6,10,5,11,0v-3,2,-7,0,-11,0xm54,-22v1,-3,-5,-5,-5,-3v1,5,6,4,11,4v-2,0,-5,-2,-7,0xm66,-25v-1,1,-4,4,0,3r0,-3xm83,-18v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm92,-20v-4,-1,-2,3,-2,5v5,0,4,-1,2,-5xm62,-19v0,1,-3,4,-1,4v3,-1,5,-3,1,-4xm88,-12v1,-4,-2,-3,-5,-3v2,1,0,3,5,3xm114,-8v-3,-1,-1,-10,1,-8v0,3,0,6,-1,8xm103,-3v1,-8,12,-5,12,2v-7,3,-8,-3,-12,-2xm219,-45v-1,1,-5,4,0,3v1,-1,1,-2,0,-3xm139,-9v1,-3,-3,-6,-2,-1xm160,-24v-2,0,-4,4,-1,3xm140,-33v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm176,-65r0,5v2,-2,2,-4,0,-5xm188,-64v0,-2,-4,-3,-4,-1v1,1,2,1,4,1xm181,-72r0,5v3,0,2,-4,0,-5xm186,-80r1,1xm195,-91v-1,-1,-7,-2,-6,2v3,0,4,-1,6,-2xm187,-99v-3,-1,-2,2,-1,3v4,1,2,-1,1,-3xm234,-107v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm208,-107v-1,2,4,5,4,1xm202,-105v0,-2,-2,-6,-2,-3v2,2,-1,4,2,3xm207,-42v-2,1,-6,0,-6,4v3,-3,8,4,6,-4xm219,-114v0,0,-2,0,-2,1r4,0xm197,-113v0,-3,-9,-10,-11,-6xm237,-130v-1,8,-12,-7,-6,4v3,-2,7,2,6,-4xm218,-138v2,1,7,4,10,5v1,-5,-4,-5,-10,-5xm205,-144v0,0,-3,2,-1,2xm224,-176v-2,1,-11,3,-5,3v2,-1,6,0,5,-3xm188,-220v3,-2,-2,-6,-2,-3v1,0,2,1,2,3xm192,-15v1,1,4,2,3,-1v-1,0,-3,-1,-3,1xm197,-55v4,1,3,-2,2,-4v-2,1,-1,3,-2,4xm125,-21v1,-3,-1,-8,1,-9v0,3,1,7,-1,9xm126,-36v-1,-2,-1,-5,2,-4v-1,1,0,4,-2,4xm182,-137v4,-3,9,3,6,6v-4,0,-6,-2,-6,-6xm207,-150v-1,0,-2,3,-2,1xm216,-42v-3,-2,-4,0,-5,2xm223,-156v7,1,11,-7,14,-1v-2,1,5,18,-4,15v1,4,-5,2,-5,5r6,-2r-1,2v10,0,6,8,6,16v-2,0,-1,-5,-5,-4v2,9,-8,5,-6,11v2,-2,5,0,8,0r-1,2r4,0v2,20,-11,40,-20,64v2,-3,2,-8,5,-9r18,17r-41,41r-17,-18v-17,9,-41,21,-58,15v2,0,2,0,2,-1v-6,1,-2,-8,-3,-12v1,-6,4,-4,11,-6v-9,-6,-2,-17,1,-25v-2,1,-5,2,-4,-2v2,0,7,-3,8,-1v-1,1,-2,2,1,2v1,-5,30,-20,29,-24v-1,0,-3,2,-3,0v5,-1,9,-22,16,-11v1,-5,-11,-1,-5,-12r4,2v0,-5,-3,-9,-1,-16v2,2,6,-1,6,-5v-3,-1,-2,7,-6,3v-3,-24,14,-23,30,-18v3,-6,7,-2,9,-4v-5,0,-1,-2,-4,-5v-1,4,-15,6,-16,2r2,-5v-9,2,-9,1,-20,0v-2,-6,-5,-15,3,-16v-17,-20,-29,-47,-61,-52v1,-14,-2,-32,1,-44v41,-4,103,42,103,76r0,-5v2,0,3,4,5,14v-3,-1,-3,-4,-4,3v-2,10,-17,4,-21,0v4,4,-2,8,-8,7v0,0,0,-2,-1,-2v-1,3,3,5,1,6v0,-1,0,-1,-1,-1r0,4v-3,0,-10,-5,-11,-1v9,2,23,10,29,3v-4,-2,-14,-7,-5,-12v3,2,0,5,2,7v0,-2,3,-2,7,-3v1,3,-6,7,-1,6v2,0,5,-5,2,-6","w":251},"r":{"d":"0,-30v4,-1,4,11,12,9v3,-10,-7,-7,-7,-17v-4,0,-5,-1,-5,-2v-1,-15,0,-35,4,-41v-3,3,-5,-2,-4,-5v4,-2,12,-2,15,-4v-1,2,4,12,6,9v-7,-3,7,-11,-1,-12v-3,2,-4,-2,-7,-2v0,1,1,3,-1,3v0,-1,1,-3,-1,-3v-3,3,-6,2,-11,4v2,-11,-5,-29,5,-33v-7,0,-6,-7,-4,-11v2,1,4,3,3,-1v0,-2,2,-4,0,-5v0,3,-3,2,-4,1v2,-36,-4,-80,2,-112r19,0v-1,5,5,5,9,7v2,-2,-8,-2,-7,-7v10,2,39,-5,31,6v4,-1,4,6,2,8v-5,-1,-16,7,-2,5v0,-2,1,-3,3,-3r-2,190v-4,-2,-3,-6,-5,-7v3,5,-7,4,-3,11v-5,3,-5,4,-11,2v1,14,-6,1,-9,1v1,-5,-5,-6,-10,-9v3,1,3,-1,1,-3r-3,0v1,1,1,3,0,5v-7,-5,-11,7,-5,5v3,3,6,-7,11,-3v2,6,-3,9,-8,6v0,7,5,8,11,8v-2,7,2,7,6,4v0,-3,-4,-3,0,-6v11,4,2,18,-8,20v1,-7,-2,-8,-9,-10v7,2,6,10,0,13v-3,-2,-1,-7,-3,-11v-8,2,-3,7,-3,12v-9,0,-7,-13,-7,-22xm44,-237v7,-10,-9,-18,-10,-7v-1,0,-3,-2,-3,0v0,2,3,4,7,4r0,-4v6,2,8,5,1,4v1,2,2,4,5,3xm144,-180v6,-2,6,6,10,3r0,-3v-3,2,-3,-4,-11,-3v-6,-32,-60,-16,-76,-25v7,2,7,-10,12,-14v-4,0,-9,-1,-13,-4v0,-13,-1,-31,9,-23v6,-6,21,-3,13,9v2,0,7,2,8,0v-1,-1,-6,-1,-5,-5v0,-13,14,-5,23,-7v28,2,40,-2,34,10v3,3,7,4,6,10v8,1,5,-9,12,-5v5,-8,11,4,18,9v-3,6,-12,-7,-14,-5v-3,5,19,9,7,20r-11,-1v0,1,2,3,0,4v9,-3,11,6,15,4v-4,-7,3,-10,3,-18v9,3,11,15,12,17v-6,-2,-11,4,-8,11v4,-5,6,-7,10,-7v3,12,-14,10,-9,17v2,-2,2,3,5,2v-3,-3,-2,-9,4,-7v3,11,1,42,-11,32r0,3v2,-2,5,1,8,0v-5,20,-21,28,-39,35v7,0,17,6,22,16v-2,1,-6,0,-5,4v4,1,5,-5,7,-2v-3,2,-2,5,-3,8v8,-4,8,-1,11,13v-5,5,-4,-6,-9,-5v1,2,1,5,0,7v13,-3,8,8,9,11v0,-2,0,-2,2,-2v2,9,4,18,-8,15r0,-6v-3,3,-8,10,-13,5v0,-7,4,-10,12,-10v-7,-5,-9,-12,-9,-18v-5,3,-5,-2,-6,-7v1,-2,1,-2,-2,-2v-6,3,9,11,-8,11v-3,5,-2,9,-9,6v2,6,1,9,1,15v-9,2,-11,-4,-11,-10v3,1,4,0,8,0v-4,-7,5,-16,11,-13v0,-6,0,-4,-2,-12v3,1,4,-3,2,-4v-9,0,0,12,-12,16v-4,-10,-16,-5,-21,-2v-8,-2,-10,-11,-16,-9r2,4v-16,-3,-28,1,-43,-3v1,-14,-3,-34,2,-44v41,4,82,-4,76,-41xm102,-246r-2,2xm21,-240v-3,1,-3,1,-1,3xm142,-236v-1,-6,-4,-4,-4,0v8,14,-12,27,2,33v0,-7,3,-15,12,-16v-2,-8,-1,-2,-8,1v0,2,-2,2,-4,2v-2,-10,17,-16,2,-20xm30,-239v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm101,-237v-2,0,-5,-1,-4,2v2,-2,4,2,4,-2xm158,-234v-2,0,-3,-3,0,-2r0,2xm142,-231v0,0,2,-3,2,-1xm159,-231v-3,0,-3,2,-2,5v1,-1,2,-2,2,-5xm76,-223v3,-2,-2,-7,-3,-5xm88,-224v1,-2,-2,-7,-2,-2xm169,-227v-3,-3,-7,1,-8,4v4,-2,4,1,9,1v-2,-2,-4,-3,-1,-5xm101,-226v-10,1,-13,12,-1,10v-3,-4,-3,-7,1,-10xm54,-225v-3,3,-7,3,-10,6v6,-1,10,0,10,-6xm13,-223v0,0,-9,0,-5,3xm133,-223v-1,0,-3,-2,-3,0r3,0xm161,-222v-1,1,-2,2,-2,5v6,0,4,0,2,-5xm68,-211v-5,-1,-1,-10,1,-11v3,4,7,8,-1,11xm14,-219v-1,3,-4,6,2,5v3,-3,1,-4,-2,-5xm44,-208v0,-7,-5,-11,-8,-4v4,0,-2,8,8,4xm26,-216v-1,3,2,2,4,2v1,-3,-2,-2,-4,-2xm156,-216v-2,1,-2,3,0,5v1,-1,1,-3,0,-5xm97,-207v-1,-3,-3,-4,-2,0r2,0xm136,-209v1,-1,4,-4,3,0r-3,0xm48,-209v-4,0,-2,3,0,1r0,-1xm155,-207v3,1,5,-1,1,-2xm148,-208v0,0,7,4,6,1xm24,-203v0,3,1,5,5,5v-2,-3,-1,-4,-5,-5xm3,-201v4,4,9,9,8,-1xm41,-201v-6,1,-5,3,-5,8v2,0,2,-2,2,-5v1,0,3,3,3,1v-2,-1,0,-3,0,-4xm150,-199v-3,-1,-2,2,-1,3v3,1,1,-2,1,-3xm167,-199v-1,1,-3,1,0,1r0,-1xm176,-195v-2,-7,-2,3,-8,1r0,2xm142,-196v-1,-1,-4,-3,-3,0r3,0xm146,-196v-1,1,-3,3,0,3r0,-3xm154,-194v-3,-1,-2,2,-3,4v3,1,3,-1,3,-4xm146,-192v0,0,2,5,1,2xm179,-189v-2,-1,-2,-1,-2,2xm26,-187v-3,0,-6,-1,-6,3v2,-1,7,1,6,-3xm32,-177v11,-5,-5,-2,0,-10v-9,1,-3,5,0,10xm169,-187v1,4,5,8,4,2v-3,0,-1,-3,-4,-2xm165,-176v3,-1,-1,-6,-2,-4v1,2,1,4,2,4xm195,-179v-1,0,-4,2,-2,2xm30,-164v0,-2,-6,-7,-6,-3v0,1,2,2,6,3xm172,-169v0,10,7,6,9,4v-2,-3,-6,-1,-9,-4xm189,-163v1,-2,-3,-6,-2,-2xm39,-164v-15,3,-2,13,0,3r0,-3xm38,-147v-6,-1,-3,3,-10,4v2,-11,-9,0,-15,-5v-2,-6,9,-4,8,-12v-4,0,-12,-3,-9,4v-1,4,-9,10,0,9v-1,3,-3,5,0,7v0,-2,1,-3,3,-3v6,8,24,-2,23,-4xm150,-157v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm180,-156v-3,1,-3,5,0,2r0,-2xm172,-151v-2,0,0,2,0,3r0,-3xm164,-142v-1,-2,-8,-3,-7,0v2,1,5,1,7,0xm179,-139v-1,-7,-3,-3,-1,0r1,0xm130,-138v-2,0,-1,5,0,6r0,-6xm109,-137v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm145,-135v-2,0,-6,-2,-5,2v4,-2,5,6,7,3v-1,0,-2,-2,-2,-5xm171,-134v-2,-3,-19,5,-10,6v2,-6,5,-1,9,0v-1,-1,-6,-6,1,-6xm120,-134v-2,-1,-4,3,-2,4xm36,-123v-3,-2,-9,-11,-11,-7v4,2,6,6,11,7xm15,-126v-4,1,-10,-7,-9,1v3,0,8,2,9,-1xm19,-129v-1,1,-3,2,-1,3v3,1,3,-1,1,-3xm117,-123v1,0,6,-1,3,-3xm130,-124v-1,-1,-9,1,-3,2xm97,-124v1,1,4,4,3,0r-3,0xm145,-119v0,0,-2,0,-2,1v1,2,3,3,5,4xm20,-117v-1,1,-3,3,0,3r0,-3xm31,-117v-3,-1,-1,2,-1,4v5,1,4,-2,1,-4xm101,-114v0,-3,-4,-4,-3,0r3,0xm129,-112v-2,-6,-9,3,-12,2v2,2,-2,5,0,5xm157,-114v-2,0,-6,-1,-5,2v2,0,6,1,5,-2xm147,-104v3,-2,-3,-13,-2,-5v3,-1,2,3,2,5xm9,-108v0,-1,-2,-4,-2,-2xm30,-111v-1,1,-1,3,0,5r0,-5xm167,-111v-3,-1,-2,2,-1,3v1,-1,3,-2,1,-3xm134,-103v-2,-2,-5,-5,-4,1v3,1,8,5,8,-1v-1,-2,-3,-2,-4,0xm98,-105v1,0,2,3,2,1xm116,-105v-3,1,-5,6,0,6r0,-6xm20,-103v-2,-1,-2,1,-2,3v2,1,2,-1,2,-3xm104,-97v-1,-5,-5,-3,-3,0r3,0xm122,-97v0,0,-2,0,-2,1r3,0xm43,-95v-2,0,-4,0,-4,3v3,0,5,0,4,-3xm38,-79v-9,-8,-6,-6,0,-15v-9,-4,-5,8,-14,6v2,4,5,4,2,10v6,-4,8,3,12,-1xm177,-93v-2,1,-3,3,1,3xm41,-88v2,1,6,5,5,0v-2,0,-4,-2,-5,0xm131,-77v-4,-2,-5,-10,2,-9v0,4,-1,6,-2,9xm157,-76v3,-9,14,-6,9,2v0,0,-8,1,-9,-2xm44,-78v-4,-1,-1,5,-1,6v2,0,2,-2,1,-6xm12,-71v0,-4,-6,-7,-5,0v-4,0,-3,4,-2,6v5,-4,3,-5,11,-3r0,-3v-3,2,-3,-2,-4,0xm34,-76v-9,2,4,12,-6,16v12,-3,4,-9,6,-16xm166,-65v-2,-2,-1,-8,3,-7v1,4,2,7,-3,7xm134,-65v-2,-1,-1,-4,2,-3xm15,-60v2,0,7,4,7,0v-2,-2,-6,-3,-7,0xm185,-51v0,-2,0,-4,2,-3v0,2,0,4,-2,3xm189,-46v-3,-4,1,-11,4,-6v0,4,0,6,-4,6xm30,-51v-2,0,-3,2,-3,4v3,0,5,-1,3,-4xm192,-27v-2,18,7,21,6,27v-9,-1,-19,1,-14,-7v-5,-2,0,-8,0,-14v-5,0,0,6,-4,6v-4,-6,-12,-8,-18,-5v13,0,6,11,4,13v-16,2,-5,-13,-16,-10v-10,-16,17,-19,7,-25v-8,1,-8,-5,-5,-9v13,0,12,10,28,14r-1,6v6,0,12,-1,15,-1v-2,-9,-26,-3,-23,-19v8,2,14,-5,15,7r3,-2v7,-1,12,22,12,29v-9,3,-2,-7,-9,-10xm138,-41v1,-3,0,1,3,1v1,2,2,6,-2,5xm48,-30v-4,-4,0,-9,6,-6v0,4,-1,7,-6,6xm172,-26v3,-5,0,-4,-4,-3v0,4,3,2,4,3xm4,-27v-1,-4,4,-5,4,-1v-1,1,-2,1,-4,1xm139,-30v1,-2,3,0,5,0v-3,3,3,9,-3,8xm53,-16v-3,13,-13,-5,-13,-5v-3,-7,4,-12,10,-7v1,5,-3,2,-4,7v4,-1,9,2,7,5xm189,-28v-2,0,-5,2,0,2r0,-2xm38,-6v-1,-4,-8,-4,-2,-8v8,5,15,10,5,11r1,3v-7,2,-20,-2,-11,-8v-1,4,5,1,7,2xm199,-6v-3,-1,-3,-7,2,-6v5,3,6,6,-2,6xm18,0v-12,0,-6,-2,-3,-9v5,3,10,-6,12,2v-1,5,-9,1,-9,7xm152,-1v-5,-3,-3,-10,4,-8v1,4,1,8,-4,8xm7,0v-5,1,-8,-5,-2,-5v2,1,4,2,2,5xm54,0v-4,0,-4,-5,0,-5v1,2,1,4,0,5xm44,0v-1,-2,1,-2,3,-2v1,2,-1,2,-3,2xm164,0v-1,-3,3,-2,5,-2v1,3,-3,2,-5,2","w":210},"s":{"d":"185,-111v11,-1,20,14,15,19v-9,-1,-10,4,-19,3v5,7,14,-1,17,4v0,-4,4,-8,6,-5v0,5,2,9,-6,8v0,7,-10,7,-11,11v6,-4,16,2,17,-7v-3,10,2,22,-6,24r2,0v2,13,-13,10,-4,12v-2,3,-4,12,-9,10v0,4,-3,9,-6,7v3,-8,-4,-9,-8,-13v0,0,2,0,2,-1v-1,-2,-3,-2,-6,-1v-3,-9,9,-13,-4,-14v1,1,4,7,1,9r-3,-1v4,5,-2,10,-6,7v1,-7,8,-7,0,-10v-13,5,-18,-3,-6,-7v-9,-1,-1,-12,-2,-20v4,2,11,-4,6,-6v-6,4,-12,-3,-11,-7v11,2,20,-6,6,-8v-8,6,-37,0,-22,-7v-11,-6,-21,-3,-26,-14v-4,6,-8,7,-16,11v-53,-10,-78,-33,-78,-74v0,-43,38,-72,93,-70v-5,23,15,49,-21,45v1,-4,8,-3,11,-5v-6,1,-18,-2,-14,6v-35,25,-3,38,30,52r3,-3v40,9,59,13,78,33v-4,1,-4,-6,-9,-5v7,6,8,10,6,17xm147,-171v-3,-30,-16,-28,-38,-39v2,-12,-2,-30,1,-42v48,5,87,19,90,76xm134,-245v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm149,-239r3,-3xm51,-235v-4,1,-4,4,0,2r0,-2xm25,-218v0,-4,-4,-2,-1,0r1,0xm177,-220v-4,0,-8,0,-11,4v6,-2,17,3,11,-4xm48,-218v-2,0,-5,-1,-4,2r6,1xm163,-211v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm192,-199v-1,3,1,7,2,5xm58,-163v-3,-2,-8,-6,-10,-2xm67,-160v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm106,-148v1,-3,-1,-6,-2,-3v4,8,-8,8,-7,16v6,-4,9,-9,9,-13xm28,-150v-4,1,-2,2,0,4v0,-1,2,-3,0,-4xm39,-148v-4,0,-2,4,0,5r0,-5xm50,-138r-4,0r4,0xm73,-138v0,-2,-2,-2,-3,-1v0,2,2,1,3,1xm120,-134v1,0,5,0,2,-1xm31,-134v1,0,4,2,4,0r-4,0xm167,-133v6,9,-12,0,-5,14v-4,5,-8,0,-15,6v8,1,9,0,16,-3v1,5,-6,5,0,10v4,0,0,-12,7,-8v4,-8,-11,-5,-4,-11v6,1,8,-5,1,-8xm95,-131r0,4r0,-4xm130,-128v-2,0,-2,2,-2,4v3,1,2,-2,2,-4xm96,-123v-1,-6,-7,6,-13,0v2,7,10,5,13,0xm174,-122v-3,-1,-2,2,-3,3v2,0,4,0,3,-3xm193,-116v-5,1,-8,-4,-3,-5v2,1,3,3,3,5xm124,-118v-1,-1,-1,-1,-2,0r2,0xm182,-115v-1,-2,-6,-2,-5,1xm101,-111v-1,-5,4,-3,6,-1v0,1,1,3,-1,3xm176,-112v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm179,-109v1,1,0,2,2,2xm89,-107v9,1,11,-5,17,0r0,5v-11,-2,-17,-4,-17,-5xm146,-105v-2,-3,-3,2,-3,2v2,0,3,-1,3,-2xm170,-104v-3,-2,-9,3,-7,6xm188,-100v-1,-2,-7,-2,-6,-1xm175,-97v-2,0,-2,0,-2,2v4,0,4,0,2,-2xm180,-87v-7,2,-16,1,-21,5r8,0v0,3,1,5,3,5v-3,-4,1,-6,6,-5v2,1,4,3,3,-1v-1,-2,0,-3,1,-4xm74,-3v-15,0,-24,-4,-37,-11v1,-6,4,-4,4,-9v-21,10,-40,-23,-38,-48v-2,-1,-6,-13,0,-12v8,3,20,-3,27,2v2,-6,20,-4,24,-2v-2,5,6,20,11,26v-1,-1,-2,-2,-2,1v10,0,21,10,26,9v-1,5,1,0,6,1v7,-1,9,10,3,11v-1,0,-3,-2,-3,0v7,3,2,9,3,16v-1,-1,-2,-1,-3,0v-2,5,14,8,2,14v2,2,4,3,1,5v-7,2,-4,-7,-13,-8v1,5,-3,5,-7,5v-3,-5,-6,-10,-6,-5v2,0,2,2,2,5xm37,-82v-3,0,-3,3,-1,4xm191,-82v-2,-1,-5,1,-2,2xm185,-78v-3,0,-5,0,-3,3xm5,-78v-3,-1,-2,4,-2,6v4,0,4,-3,2,-6xm23,-74v0,-3,-4,-4,-3,0r3,0xm51,-70v0,-4,-5,-11,-6,-3v3,-1,3,3,6,3xm14,-72v1,0,4,1,4,-1v-2,0,-3,0,-4,1xm174,-73v-3,2,-8,6,0,5r0,-5xm37,-72v-4,1,-5,4,0,4r0,-4xm157,-72r1,2xm27,-70v-3,-1,-2,2,-2,4v3,1,2,-2,2,-4xm149,-66v1,2,8,7,11,5v-4,-2,-6,-5,-11,-5xm175,-66v-2,0,-1,2,-1,3v2,0,1,-2,1,-3xm14,-65v-1,1,-3,2,0,2r0,-2xm184,-65v-4,-1,-3,3,-1,4v2,0,1,-3,1,-4xm172,-58v0,-4,-6,-6,-5,-4v0,1,2,2,5,4xm187,-59v-2,-2,-5,1,-2,2xm166,-54v1,-3,-5,-6,-4,-2xm46,-51v1,-3,-3,-7,-3,-3v1,1,0,4,3,3xm176,-54v1,0,3,2,3,0r-3,0xm17,-53v-1,1,-4,4,0,3r0,-3xm181,-53r-6,12v4,-1,15,-8,6,-10r0,-2xm31,-49r1,5xm55,-49v-1,2,-4,1,-4,4xm116,-12v9,-10,-7,-19,-7,-31v6,-3,8,-2,17,-5v2,6,-3,5,-8,5v1,7,2,4,10,4v-1,-1,-2,-2,1,-2v3,1,3,3,5,6v3,-9,-8,-11,-2,-15v23,0,20,27,37,17v3,9,-11,16,-2,19v1,-9,6,-19,12,-7v-18,13,-20,13,-37,13v0,-1,2,-3,0,-3v1,9,-9,11,-33,10v0,-7,-2,-14,7,-11xm141,-45v-2,0,-2,3,-1,4xm60,-43v2,1,4,6,6,5v-1,-3,-1,-6,-6,-5xm95,-36v0,-2,-4,-3,-3,0r3,0xm145,-36v-2,0,-4,0,-3,2r4,0xm184,-36v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm175,-35v1,3,-1,5,-4,4v-1,-3,1,-5,4,-4xm57,-31v2,1,4,3,3,-1v-2,-1,-7,1,-3,1xm109,-28v-1,-3,1,-8,3,-3v-1,1,0,4,-3,3xm38,-31v-1,1,-2,0,-2,2r3,0xm82,-30v-2,3,1,3,4,2v0,-2,-3,-1,-4,-2xm72,-29v-2,5,8,6,4,2v-1,2,-4,1,-4,-2xm109,-20v-2,-6,3,-7,7,-5v2,6,-3,8,-7,5xm158,-25v-3,0,-7,4,-1,3xm148,-25v-3,-1,-2,3,-2,5v7,-1,5,-1,2,-5xm56,-24v1,1,0,2,2,2xm130,-22v-1,2,0,4,3,3v0,-2,-2,-2,-3,-3xm66,-15v-2,-2,-6,-7,-5,0v1,-1,3,-1,5,0xm95,-9v0,-3,-6,-8,-5,-3v1,3,5,-1,5,3xm152,-12v4,1,9,-2,3,-3xm49,-14v6,-1,3,6,7,6v3,-5,-4,-5,-7,-6xm78,-14v-1,2,2,7,2,2xm119,-9v-1,5,2,3,4,2v0,-1,-1,-2,-4,-2xm114,-3r6,1v0,-3,-4,-1,-6,-1xm78,-3v0,2,-4,2,-4,0r4,0xm81,-1v0,-2,2,-1,3,-1v1,3,-2,2,-3,1","w":212},"t":{"d":"188,-251v1,12,-7,8,-12,2v-1,-6,8,-2,12,-2xm156,-213v-7,-6,-16,-10,-14,-22v6,3,11,-4,14,1v-4,1,-8,6,-5,7v3,-6,8,-7,7,2v17,5,8,-14,19,-11v-5,1,2,-5,-2,-6v0,0,0,2,-1,2v-1,-2,-1,-4,3,-3v-1,2,1,2,3,2v3,-2,10,4,5,7v-2,-1,-8,-2,-7,2v5,-2,1,1,1,1v-3,0,0,5,0,7v5,0,2,-9,9,-11v0,14,-1,22,0,33v-6,1,0,-5,-3,-6v-5,13,-34,3,-56,6v-4,-2,-10,-1,-9,-7r5,-2v-7,2,-6,-6,-3,-8v4,-1,7,6,9,0v-2,2,-6,1,-5,-3v4,-7,12,-2,18,0v1,9,3,13,12,9xm173,-210v3,0,7,-8,5,-11v-4,3,-1,7,-5,11xm173,-209r0,3v1,-1,1,-2,0,-3xm165,-252v3,1,9,-2,9,2r-11,0xm172,-217v-2,1,-5,0,-4,3xm169,-240v-2,18,-9,-5,-19,2v-4,-2,4,-5,-1,-7v-9,1,-8,15,-18,5v-2,1,-3,2,-3,5v7,4,5,1,14,3v0,8,-8,6,-13,3v-10,12,-7,12,-20,15v2,7,6,-2,6,10v1,1,3,0,3,2v-32,-2,-70,4,-97,-3v0,1,2,4,-1,3v-11,4,-29,-7,-15,-10v-1,-3,-3,-4,-3,-9v5,-2,5,8,7,1v-3,1,-6,-5,-4,-9v11,0,3,11,14,13v-1,-4,2,-3,5,-3v2,5,-6,6,-3,9v1,-6,8,-2,10,2v-2,0,-2,0,-2,2v10,1,10,-9,3,-4v-5,-9,-15,-13,-8,-22v4,0,6,2,4,6v9,1,1,-4,8,-7v-11,1,-1,-7,-11,-7v1,-1,1,-3,-1,-3v0,7,-9,8,-8,0r-7,0v0,6,-2,5,-7,5v0,-5,-1,-6,5,-7v2,-10,10,-5,26,-7v3,3,6,9,5,0v14,4,45,-5,60,2v8,-8,24,5,27,-2v10,0,42,-1,28,3v5,7,29,-1,10,10v3,2,4,0,6,-1xm167,-213v0,-2,-2,-1,-3,-1v0,2,2,1,3,1xm163,-213v-10,3,0,-11,-8,-11v2,4,2,17,8,11xm142,-248v5,5,4,-1,1,-1xm144,-206v-1,-2,-3,-2,-3,1xm141,-214v0,-2,-3,0,-4,0v0,2,0,4,2,3xm131,-246v1,2,5,1,2,0r-2,0xm119,-225v2,-4,-8,0,-6,-10v-3,1,-5,-1,-4,-4v6,1,4,3,11,5v-5,-15,-19,0,-20,-15v-5,1,3,8,-2,10v7,-2,15,6,10,12v-5,1,-4,7,-13,6v10,6,11,-5,20,1v-1,-2,-1,-4,0,-6xm103,-234v-6,0,-5,-1,-4,-4v-2,2,-9,3,-1,6v3,2,-2,3,4,3xm102,-207v1,-3,-1,-3,-4,-3v0,1,2,2,4,3xm97,-212v0,-2,-2,0,-3,0r3,0xm96,-244v0,-3,-5,-4,-5,-1v1,1,3,1,5,1xm88,-216v1,-2,-1,-5,-2,-2v1,1,0,2,2,2xm83,-204v3,0,7,-6,2,-7v-7,1,-5,1,-2,7xm82,-243v0,0,2,-1,0,-1v-3,1,-3,5,0,6v2,-1,0,-3,0,-5xm82,-219v2,-1,1,-6,-2,-5v0,3,1,4,2,5xm78,-211v0,-2,-3,-1,-4,-2v-1,3,2,2,4,2xm71,-243v4,-1,0,-4,1,-3xm71,-243v0,1,-4,3,-2,3xm70,-220v1,7,-6,3,-9,4v4,7,13,5,9,-4xm67,-235v0,1,0,5,1,2xm63,-246v0,-2,0,-2,-2,-2r0,2v-3,1,-6,-6,-5,-1v6,1,3,8,7,10v-1,-3,-3,-7,0,-9xm62,-204v2,0,0,-2,0,-3v-2,1,-7,0,-6,5v3,-2,6,-7,6,-2xm50,-240v2,-2,-1,-5,-5,-4xm41,-206v10,0,3,-4,1,-7xm41,-243v0,1,-2,4,0,4r0,-4xm39,-245v-2,0,-4,3,0,2r0,-2xm33,-243v-2,1,-2,3,0,4r0,-4xm16,-244v7,-2,4,-5,0,-4r0,4xm18,-235v1,3,-1,3,-4,3r-2,-2xm12,-203v1,-3,-2,-8,-3,-5v0,3,2,5,3,5xm1,-252v1,0,3,2,1,2v-1,-1,-3,-1,-1,-2xm66,-1v2,-30,-5,-68,3,-92v1,-4,-8,-10,1,-13r2,1v2,-11,0,-15,10,-15v-1,-3,4,-2,4,-4v-8,-3,-16,4,-20,0v2,-10,-3,-27,2,-33v0,2,-1,5,2,4v1,-4,4,-6,7,-8v-16,5,-6,-9,-11,-23v5,-2,-4,-13,9,-7v0,-4,8,-1,11,-2v0,1,-1,4,1,4v8,-6,27,-4,36,-2v1,10,-1,5,-9,3v3,4,-2,5,-3,9v2,-3,9,-8,10,-1v1,5,-8,4,-7,8v4,-2,7,-2,9,-7v-2,8,4,23,-4,25v8,6,4,32,3,43v1,-4,-1,-5,-5,-4v6,3,9,20,0,22v1,1,5,6,1,8v-5,1,-6,-2,-5,-6v1,-1,3,-2,1,-4v-5,5,-22,10,-5,8v4,6,4,10,14,6r0,80r-57,0xm116,-47v2,-1,5,-9,0,-8r0,8xm118,-74v0,5,4,8,4,1xm73,-74v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm100,-78v4,-1,8,4,11,3v0,-1,-8,-7,-11,-3xm84,-78v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm68,-82v6,-1,10,-3,4,-3xm89,-87v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm122,-91v2,1,2,9,-1,8xm102,-103v-6,3,-11,7,-5,12v-1,-5,6,-6,5,-12xm77,-101v-7,2,-7,5,0,7v2,-2,2,-5,0,-7xm88,-102v-4,2,-2,11,2,6v-1,-1,-3,-1,-1,-6v4,-1,6,-1,6,-4v-8,7,-6,-15,-9,-5v-7,-2,-9,6,-3,7v2,0,6,-1,5,2xm116,-101v0,2,8,5,6,0r-6,0xm104,-113v0,3,8,8,9,5v-6,-1,-5,-5,-9,-5xm72,-114v1,4,-5,7,-6,3v-1,-8,1,-9,6,-3xm114,-116v0,0,-5,-5,-4,-1xm90,-120v2,3,7,3,3,0r-3,0xm99,-121v3,3,5,-2,6,-5v-4,2,-6,4,-6,5xm97,-126v-5,-4,-5,-10,-9,-2v0,1,2,1,9,2xm108,-129v-5,-1,-1,1,-1,1xm75,-128v2,-1,10,-6,3,-5v-6,0,-4,-6,-8,-1v-1,6,6,-1,5,6xm114,-134v1,-5,-8,-7,-8,-6v0,2,3,4,8,6xm82,-138v1,1,2,2,4,2v-1,-1,-2,-2,-4,-2xm117,-143v0,5,6,4,3,0r-3,0xm88,-149v0,-2,0,-4,-3,-3v-1,2,3,1,3,3xm79,-154v1,1,2,2,4,2v-1,-1,-2,-2,-4,-2xm88,-171v2,0,5,4,5,2v-3,0,-2,-3,-5,-2xm98,-168v2,1,5,-5,3,-8v-7,-1,2,3,-3,8xm81,-173v0,4,4,2,1,0r-1,0xm87,-180v3,1,6,-2,1,-2xm79,-185v2,1,4,1,4,-2v-2,-2,-3,0,-4,2xm106,-185v2,0,4,0,3,-2v-2,0,-4,0,-3,2","w":201},"u":{"d":"25,-62v0,-2,-1,-3,-1,-1xm0,-80r0,-142v13,5,11,-7,23,-7v-3,0,-19,-10,-12,-3v2,6,-4,6,-8,4v6,-8,-9,-14,0,-26r14,0v0,3,-6,2,-6,6v4,-5,18,-9,25,-4v-2,7,-15,4,-2,8v0,6,2,12,4,3v-7,-6,15,-5,4,-12v-2,0,-5,1,-5,-1v7,0,17,-3,15,7v5,-3,6,3,5,8r-3,0v8,43,1,104,3,153v-4,13,15,22,14,28r-1,-1v1,4,10,2,19,3v-1,11,2,26,-1,35v-2,0,-7,-1,-7,1v10,-1,8,10,8,19v-44,6,-89,-24,-89,-79xm2,-240v2,-1,6,0,5,-3v-3,0,-6,-1,-5,3xm44,-240v5,6,12,1,3,-3v-2,0,-2,2,-3,3xm21,-245v1,8,6,15,9,7xm32,-225v2,1,2,-1,2,-3v-3,-1,-4,1,-2,3xm55,-223v-2,-2,-3,-5,-7,-4v0,2,2,3,7,4xm37,-219v2,0,2,0,2,-2r-2,-2r0,4xm12,-216v2,0,14,-3,9,-5v-5,2,-8,3,-9,5xm48,-215v3,1,2,-2,2,-4v-3,-1,-2,2,-2,4xm2,-210v2,0,2,-3,3,-5v-2,0,-4,2,-3,5xm6,-188v4,-2,0,-12,-2,-6xm76,-11v2,0,5,1,5,-1xm75,-22v0,2,3,1,5,1xm77,-50v-3,-2,-10,0,-7,5v3,-1,8,0,7,-5xm69,-20r-1,-1xm75,-25r3,-12v-4,1,-8,5,-11,1v0,4,3,8,8,11xm68,-51v0,0,-6,-4,-3,-1v-1,2,2,3,3,1xm56,-12v0,2,-1,6,2,5v0,-2,1,-6,-2,-5xm64,-25v3,-4,-9,-6,-10,-8v0,5,4,6,10,8xm52,-81v-1,2,-1,4,2,4v0,-2,-1,-3,-2,-4xm51,-58v1,4,0,9,4,9v0,-6,7,-3,8,-7xm48,-45v0,1,1,3,4,3v1,-3,-1,-3,-4,-3xm44,-61v-4,-1,-2,5,-3,7v4,1,2,-5,3,-7xm33,-52v-1,3,2,5,3,2xm29,-84r2,11v1,-6,3,-9,-2,-11xm18,-82v0,1,-1,3,1,3v0,-1,2,-4,-1,-3xm25,-67v0,4,3,4,2,0r-2,0xm4,-111r0,1r0,-1xm52,-254v3,0,6,-1,4,3v-2,0,-3,-1,-4,-3xm2,-224v-4,0,-1,-6,-2,-9v4,-1,1,5,2,9xm22,-84r2,0r-2,0xm162,-73r1,-2v-1,0,-1,0,-1,2xm152,-253v29,2,12,3,32,0v7,2,4,20,-3,19v3,0,5,6,1,8v-5,1,-6,-2,-5,-6v2,-1,4,-2,1,-4v-2,6,-14,3,-12,10v10,-8,9,12,22,4r0,142v-9,52,-37,83,-89,80v1,-8,-3,-21,8,-19r0,-2v-1,2,-6,-2,-8,1v3,-13,-9,-42,12,-35v-1,-5,8,1,7,-4v-1,1,-3,1,-3,-1v10,-5,15,-13,15,-25r0,-145v7,-6,-4,-12,2,-18v5,1,4,0,4,-5v4,1,12,-2,14,1v-6,-3,-9,2,-5,6v12,-4,-1,16,10,8v0,0,-2,0,-2,-1v0,-5,7,-5,6,-9v-4,2,-6,-1,-7,-5xm181,-242v0,2,6,3,5,0r-5,0xm141,-242v-7,2,-6,5,0,7v2,-3,4,-6,0,-7xm142,-200v5,8,3,2,9,-3r0,-4v-3,3,-7,3,-9,7xm155,-214v-1,4,3,3,3,1v0,-2,-2,-1,-3,-1xm132,-223v5,-1,10,-3,5,-3xm148,-219v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm165,-219v4,-1,7,5,10,3v0,-1,-8,-7,-10,-3xm138,-215v2,0,1,-3,1,-4v-2,0,-1,3,-1,4xm182,-215v0,5,4,8,4,1xm181,-188v1,-2,4,-7,0,-8r0,8xm124,-23v-1,-1,-4,-4,-4,0r4,0xm145,-101v0,-2,-4,0,-5,0r5,0xm119,-36v3,-6,-3,-8,-7,-6v-1,6,4,5,7,6xm151,-100r1,-1xm153,-116v-3,5,-9,-2,-11,0r3,11v5,-3,8,-7,8,-11xm126,-44v-1,-2,-7,1,-4,2v2,0,3,0,4,-2xm144,-19v0,-2,1,-6,-2,-5v0,2,-1,6,2,5xm166,-112v0,0,-9,1,-11,7v6,0,10,-4,11,-7xm134,-77v0,0,1,-5,0,-1r0,1xm142,-53v4,0,5,-9,4,-9v-4,1,-10,0,-12,3v5,0,7,2,8,6xm145,-46v4,0,6,-4,0,-3r0,3xm156,-58v-1,-3,1,-7,-3,-7v1,2,-1,8,3,7xm161,-53v7,-1,3,-4,0,-1r0,1xm156,-84v2,-2,4,-11,2,-11v-5,2,-3,5,-2,11xm169,-90v0,-2,0,-4,-2,-3v1,1,0,3,2,3xm162,-78v-2,-1,-2,1,-2,3v1,0,2,-1,2,-3xm184,-111r0,1r0,-1xm130,-252v7,-4,5,4,1,1xm188,-233v-1,3,2,10,-3,9v1,-3,-1,-9,3,-9xm163,-95r2,0r-2,0","w":201},"v":{"d":"45,-189v2,-1,2,-3,-1,-3v-2,0,1,3,1,3xm40,-209v1,0,3,-1,1,-1xm27,-245v2,4,8,4,14,4v-3,-2,0,-11,-3,-8xm49,-176v2,1,7,-2,2,-2xm79,-151v1,-1,4,-2,2,-3v-1,0,-2,1,-2,3xm111,-99r0,99r-18,0r-92,-252r54,0xm76,-74v2,1,2,-1,2,-3v-1,0,-2,1,-2,3xm81,-83v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm107,-44v-5,2,-12,8,-5,11v-1,-4,5,-6,5,-11xm77,-95v0,5,3,6,3,1v-1,-5,7,-5,6,-8v-7,3,-6,-5,-8,-9v2,8,-13,-1,-6,10v4,0,10,2,5,6xm99,-70v0,3,8,8,9,5v-6,-1,-5,-5,-9,-5xm109,-73v0,0,-5,-5,-4,-1xm82,-117v2,3,6,5,3,0r-3,0xm101,-83v-6,2,-9,8,-3,5v-1,-3,4,-2,3,-5xm89,-122v-5,-4,-4,-10,-10,-3v0,1,3,2,10,3xm100,-86v0,2,2,0,3,0r-3,0xm92,-55v1,-5,-9,-7,-9,-7v0,3,4,5,9,7xm99,-22v3,1,1,-2,1,-4v-3,-1,-1,2,-1,4xm62,-146v2,0,5,4,5,2v-3,0,-2,-3,-5,-2xm63,-116v2,0,5,-6,3,-9v-1,0,-4,-1,-4,1v6,0,2,5,1,8xm55,-148v0,4,4,2,1,0r-1,0xm61,-155v3,1,6,-2,1,-2xm53,-161v2,2,4,2,4,-1v-2,-1,-4,-1,-4,1xm72,-134v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm136,-70v0,0,-5,0,-3,1xm131,-50v0,-5,-4,-2,-1,0r1,0xm122,-14r7,3v-1,-4,-1,-7,1,-9r-8,0r0,-77r56,-155r55,0r-92,252r-19,0r0,-14xm142,-82v0,-4,-6,-2,-2,0r2,0xm171,-107v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm200,-214v-2,0,-14,3,-9,5v5,-2,8,-3,9,-5xm166,-187v-2,0,-1,3,0,4r0,-4xm172,-182v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm188,-189v-7,5,-3,9,4,12v1,-6,-5,-7,-4,-12xm195,-242v-2,-6,-5,-4,-9,-1v3,1,6,4,9,1xm168,-171v-7,2,6,13,-7,11v-3,4,0,9,5,6v1,2,0,5,2,5v-4,-11,15,-8,2,-14v-1,-5,1,-6,-2,-8xm193,-158v-4,0,-5,6,-9,3v2,9,2,0,9,-1r0,-2xm194,-148v-1,1,-3,0,-3,2v2,-1,3,-1,3,-2xm175,-147v-3,1,-4,5,0,2r0,-2xm183,-144v-1,0,-3,-1,-3,1r6,3v-3,0,-1,-3,-3,-4xm178,-139v-14,1,-10,5,-4,8v0,-3,1,-6,4,-8xm188,-137v-1,1,-3,0,-3,2r4,0xm216,-235v-4,-7,-8,-2,-11,-1v1,8,4,0,11,1xm181,-205v-5,2,-11,5,-8,8v-1,-5,10,-1,8,-8xm203,-221v-2,-1,-4,2,-2,2xm187,-199v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm206,-208v-2,0,-6,4,-1,3xm200,-205v-3,-1,-6,3,-1,2xm156,-118v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm155,-135v4,-6,-6,-12,-1,-6v2,5,-7,6,1,6xm147,-114v-2,-1,-5,1,-2,2xm150,-105v0,1,4,2,4,0r-4,0xm145,-102v-2,1,-4,2,-2,5v3,0,3,-2,2,-5xm163,-126v-1,0,-3,-1,-3,1v1,0,3,1,3,-1","w":240},"w":{"d":"45,-189v2,-1,2,-3,-1,-3v-2,0,1,3,1,3xm40,-209v1,0,3,-1,1,-1xm27,-245v2,4,8,4,14,4v-3,-2,0,-11,-3,-8xm49,-176v2,1,7,-2,2,-2xm79,-151v1,-1,4,-2,2,-3v-1,0,-2,1,-2,3xm111,-99r0,99r-18,0r-92,-252r54,0xm76,-74v2,1,2,-1,2,-3v-1,0,-2,1,-2,3xm81,-83v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm107,-44v-5,2,-12,8,-5,11v-1,-4,5,-6,5,-11xm77,-95v0,5,3,6,3,1v-1,-5,7,-5,6,-8v-7,3,-6,-5,-8,-9v2,8,-13,-1,-6,10v4,0,10,2,5,6xm99,-70v0,3,8,8,9,5v-6,-1,-5,-5,-9,-5xm82,-117v2,3,6,5,3,0r-3,0xm101,-83v-6,2,-9,8,-3,5v-1,-3,4,-2,3,-5xm89,-122v-5,-4,-4,-10,-10,-3v0,1,3,2,10,3xm100,-86v0,2,2,0,3,0r-3,0xm92,-55v1,-5,-9,-7,-9,-7v0,3,4,5,9,7xm99,-22v3,1,1,-2,1,-4v-3,-1,-1,2,-1,4xm62,-146v2,0,5,4,5,2v-3,0,-2,-3,-5,-2xm63,-116v2,0,5,-6,3,-9v-1,0,-4,-1,-4,1v6,0,2,5,1,8xm55,-148v0,4,4,2,1,0r-1,0xm61,-155v3,1,6,-2,1,-2xm53,-161v2,2,4,2,4,-1v-2,-1,-4,-1,-4,1xm72,-134v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm257,-70v-1,-2,-3,-2,-3,1xm253,-50v0,-2,-4,-4,-3,-1xm243,-14r7,3v-1,-4,-1,-7,1,-9r-8,0r0,-77r57,-155r54,0r-92,252r-19,0r0,-14xm263,-82v0,-4,-4,-2,-1,0r1,0xm292,-107v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm322,-214v-2,0,-14,3,-9,5v5,-2,8,-3,9,-5xm288,-187v-2,0,-2,0,-2,2r2,2r0,-4xm293,-182v-3,-1,-2,2,-2,4v3,1,3,-1,2,-4xm314,-177v-2,-8,-6,-15,-9,-6xm316,-242v-1,-7,-5,-4,-9,-1v3,1,7,5,9,1xm287,-165v1,1,4,1,3,4v-6,-1,-13,6,-6,8v5,-3,4,2,6,4v-3,-11,15,-9,1,-14v2,-6,-4,-11,-4,-2xm315,-158v-4,3,-9,1,-9,7v3,-1,6,-3,9,-7xm316,-148v-1,1,-4,0,-4,2v2,-1,4,-1,4,-2xm296,-147v-3,1,-4,5,0,2r0,-2xm304,-144v-1,0,-3,-1,-3,1r7,3v-3,0,-2,-3,-4,-4xm300,-139v-13,1,-11,4,-5,8v0,-3,2,-6,5,-8xm309,-137v-1,1,-2,0,-2,2r3,0xm337,-235v-3,-7,-8,-1,-11,-1v1,9,4,0,11,1xm302,-205v-5,2,-10,5,-7,8v-2,-5,9,-1,7,-8xm324,-221v-2,0,-4,3,-1,2xm308,-199v0,0,-5,5,-1,4xm327,-208v-1,0,-5,4,-1,3xm322,-205v-3,-1,-7,3,-2,2xm277,-118v-1,1,-7,4,-2,4v-1,-2,3,-1,2,-4xm276,-141v1,4,-3,4,-4,6v13,2,-2,-15,4,-6xm268,-114v0,0,-3,2,-1,2xm271,-105v2,0,5,2,5,0r-5,0xm267,-102v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm285,-126v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm136,-70v0,0,-5,0,-3,1xm193,-134v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm219,-26v0,6,6,4,3,0r-3,0xm213,-55v1,-5,-8,-7,-8,-7v0,3,3,5,8,7xm221,-86v0,2,4,1,4,0r-4,0xm211,-122v-5,-3,-5,-10,-10,-3v0,1,3,2,10,3xm222,-83v-5,2,-9,7,-3,5v-1,-3,4,-2,3,-5xm204,-117v1,3,5,4,3,1xm230,-73v0,0,-4,-5,-3,-1xm220,-67v4,-4,7,8,9,2v-6,-1,-4,-6,-9,-5r0,3xm198,-95v0,5,4,7,4,1v-2,-6,8,-4,6,-8v-8,7,-6,-15,-9,-5v-6,-3,-9,2,-5,6v5,0,10,2,4,6xm228,-44v-6,3,-11,8,-4,11v-1,-4,4,-6,4,-11xm202,-83v-1,5,3,4,3,1v0,-2,-2,-1,-3,-1xm197,-74v2,1,2,-1,2,-3v-1,0,-2,1,-2,3xm200,-151v1,-1,4,-2,2,-3v-1,0,-2,1,-2,3xm155,-118v3,10,9,14,8,-2v-3,2,-8,-2,-8,2xm163,-126v-1,0,-3,-1,-3,1v1,0,3,1,3,-1xm145,-102v-2,1,-4,2,-2,5v3,0,3,-2,2,-5xm150,-105v0,1,4,2,4,0r-4,0xm147,-114v-2,-1,-5,1,-2,2xm155,-135v4,-6,-6,-12,-1,-6v2,5,-7,6,1,6xm156,-118v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm201,-154v0,-2,-1,-7,-1,-2xm196,-164v1,1,5,7,4,1xm184,-161v0,1,1,4,1,1xm169,-174v-6,3,-1,9,-1,11v4,0,4,-2,6,-4v-4,0,-5,-3,-5,-7xm175,-160r-1,-1xm162,-153v-6,1,-4,7,-1,9v0,-3,6,-7,1,-9xm171,-107v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm142,-82v0,-4,-6,-2,-2,0r2,0xm131,-50v0,-5,-4,-2,-1,0r1,0xm109,-73v0,0,-5,-5,-4,-1xm189,-121v-1,-2,-1,-5,-3,-3v2,3,0,5,-1,8v1,0,3,-2,4,-5xm194,-121v0,2,2,1,3,1v0,-2,-2,-1,-3,-1xm190,-159v-1,1,3,10,5,8v-2,-5,-3,-7,-5,-8xm205,-175r28,76r0,99r-19,0r-36,-100r-37,100r-19,0r0,-14r7,3v-1,-4,-1,-7,1,-9r-8,0r0,-77r28,-78r55,0","w":356},"x":{"d":"64,0r-64,0r111,-253r64,0xm58,-68v0,0,-5,0,-3,1xm53,-49v0,-4,-7,-3,-3,0r3,0xm50,-19v-6,0,-13,0,-15,3r14,5v-1,-3,-2,-7,1,-8xm65,-80v-1,-4,-8,-2,-2,0r2,0xm95,-107v-1,3,4,6,3,2v0,-1,-1,-2,-3,-2xm133,-208v-4,3,-17,3,-10,6v6,-2,9,-4,10,-6xm94,-181v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm101,-173v0,-3,-4,-4,-3,0r3,0xm113,-178r11,6v-3,-5,-7,-16,-9,-6r-2,0xm127,-235v-2,-5,-7,-3,-11,-1v4,2,8,6,11,1xm99,-163v-3,-5,-7,-2,-6,3v1,1,4,1,3,4v-6,-1,-16,5,-8,8v7,3,22,-6,10,-10v0,0,-3,-6,1,-5xm125,-152v-3,-3,-6,6,-10,2v2,9,2,-1,10,-2xm126,-144v-2,1,-5,0,-4,3v3,-1,4,-2,4,-3xm103,-143v-3,2,-5,4,1,3xm112,-140v-1,0,-3,-1,-3,1v0,1,3,3,8,5v-1,-3,-3,-3,-5,-6xm107,-134v-15,0,-11,3,-5,7v0,-3,1,-5,5,-7xm120,-131v-1,-2,-4,-1,-5,0r5,0xm151,-228v-3,-6,-11,-1,-13,-1v0,4,3,4,5,6v0,-4,3,-5,8,-5xm110,-199v-6,2,-11,5,-8,8v-1,-5,10,-1,8,-8xm136,-214v-2,-1,-6,3,-2,2xm117,-193v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm139,-202v-1,1,-7,5,-1,4xm128,-197v2,0,7,-1,2,-1xm81,-114v-1,0,-8,3,-3,3v0,-2,4,0,3,-3xm81,-131v3,-7,-7,-14,-2,-3v1,3,-3,1,-4,3r6,0xm71,-111v-2,-1,-5,1,-2,2xm74,-102v0,1,5,4,5,0r-5,0xm69,-99v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm90,-123v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm57,-184r-4,-1v1,1,2,2,4,1xm49,-201v3,-1,3,-5,0,-2r0,2xm35,-237v2,4,9,4,15,4v-4,-1,1,-11,-3,-8xm65,-173v-4,0,-7,3,-1,2r-14,31r-50,-113r64,0r18,42xm95,-146v1,-1,5,-2,2,-3v-1,0,-2,1,-2,3xm120,-48v4,-1,10,4,13,3v0,-1,-10,-7,-13,-3xm91,-71v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm114,-35v-1,4,3,3,3,1v0,-2,-2,-1,-3,-1xm124,-81v-6,3,-14,7,-6,11v-1,-4,6,-5,6,-11xm123,-20v-7,2,-7,5,0,7v3,-3,6,-6,0,-7xm92,-92v0,6,5,6,5,1v-1,-5,8,-4,7,-8v-9,6,-9,-16,-11,-4v-6,-2,-10,1,-6,6v5,0,11,1,5,5xm121,-101v1,0,5,4,4,0v-7,0,-2,-5,-1,-8r2,0v-1,0,-3,-2,-1,-3r50,112r-64,0r-18,-40r8,-18v0,1,10,9,9,1v-4,0,-7,-1,-8,-3xm99,-113v2,3,7,3,3,0r-3,0xm109,-114v2,3,6,-1,7,-4v-5,2,-7,3,-7,4xm107,-118v-6,-4,-4,-10,-12,-3v0,1,4,2,12,3xm115,-122v1,3,3,1,5,0r-5,0xm144,-20v3,-1,11,-5,4,-5v-6,-1,-7,-6,-10,1v2,2,7,-3,6,4xm132,-40v1,1,2,2,4,2v-1,-1,-2,-2,-4,-2xm113,-63v0,6,6,4,3,0r-3,0xm138,-54r-3,0v0,2,6,4,3,0xm128,-56v1,1,2,2,5,2v-1,-1,-2,-2,-5,-2xm76,-142v0,2,6,6,5,2v-3,0,-2,-3,-5,-2xm77,-112v3,0,5,-6,3,-9v-2,0,-5,-1,-5,1v7,-1,3,5,2,8xm68,-143v1,3,2,0,1,0r-1,0xm74,-150v2,0,6,1,5,-2v-3,0,-4,1,-5,2xm32,-216v2,1,5,3,5,-1v-2,-1,-4,-1,-5,1xm86,-130v2,0,5,1,4,-2v-2,0,-5,-1,-4,2","w":181},"y":{"d":"64,0r-64,0r111,-253r64,0xm58,-68v0,0,-5,0,-3,1xm53,-49v0,-4,-7,-3,-3,0r3,0xm50,-19v-6,0,-13,0,-15,3r14,5v-1,-3,-2,-7,1,-8xm65,-80v-1,-4,-8,-2,-2,0r2,0xm95,-107v-1,3,4,6,3,2v0,-1,-1,-2,-3,-2xm133,-208v-4,3,-17,3,-10,6v6,-2,9,-4,10,-6xm94,-181v-2,0,-2,0,-2,2v2,1,2,1,2,-2xm101,-173v0,-3,-4,-4,-3,0r3,0xm113,-178r11,6v-3,-5,-7,-16,-9,-6r-2,0xm127,-235v-2,-5,-7,-3,-11,-1v4,2,8,6,11,1xm99,-163v-3,-5,-7,-2,-6,3v1,1,4,1,3,4v-6,-1,-16,5,-8,8v7,3,22,-6,10,-10v0,0,-3,-6,1,-5xm125,-152v-3,-3,-6,6,-10,2v2,9,2,-1,10,-2xm126,-144v-2,1,-5,0,-4,3v3,-1,4,-2,4,-3xm103,-143v-3,2,-5,4,1,3xm112,-140v-1,0,-3,-1,-3,1v0,1,3,3,8,5v-1,-3,-3,-3,-5,-6xm107,-134v-15,0,-11,3,-5,7v0,-3,1,-5,5,-7xm120,-131v-1,-2,-4,-1,-5,0r5,0xm151,-228v-3,-6,-11,-1,-13,-1v0,4,3,4,5,6v0,-4,3,-5,8,-5xm110,-199v-6,2,-11,5,-8,8v-1,-5,10,-1,8,-8xm136,-214v-2,-1,-6,3,-2,2xm117,-193v-3,-1,-4,2,-4,4v3,1,4,-2,4,-4xm139,-202v-1,1,-7,5,-1,4xm128,-197v2,0,7,-1,2,-1xm81,-114v-1,0,-8,3,-3,3v0,-2,4,0,3,-3xm81,-131v3,-7,-7,-14,-2,-3v1,3,-3,1,-4,3r6,0xm71,-111v-2,-1,-5,1,-2,2xm74,-102v0,1,5,4,5,0r-5,0xm69,-99v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm90,-123v-2,0,-4,0,-3,2v2,0,4,0,3,-2xm57,-184r-4,-1v1,1,2,2,4,1xm49,-201v3,-1,3,-5,0,-2r0,2xm35,-237v2,4,9,4,15,4v-4,-1,1,-11,-3,-8xm65,-173v-4,0,-7,3,-1,2r-14,31r-50,-113r64,0r18,42xm95,-146v1,-1,5,-2,2,-3v-1,0,-2,1,-2,3xm91,-71v3,1,2,-2,2,-4v-1,1,-2,2,-2,4xm92,-92v0,6,5,6,5,1v-1,-5,8,-4,7,-8v-9,6,-9,-16,-11,-4v-6,-2,-10,1,-6,6v5,0,11,1,5,5xm99,-113v2,3,7,3,3,0r-3,0xm109,-114v2,3,6,-1,7,-4v-5,2,-7,3,-7,4xm107,-118v-6,-4,-4,-10,-12,-3v0,1,4,2,12,3xm115,-122v1,3,3,1,5,0r-5,0xm76,-142v0,2,6,6,5,2v-3,0,-2,-3,-5,-2xm77,-112v3,0,5,-6,3,-9v-2,0,-5,-1,-5,1v7,-1,3,5,2,8xm68,-143v1,3,2,0,1,0r-1,0xm74,-150v2,0,6,1,5,-2v-3,0,-4,1,-5,2xm32,-216v2,1,5,3,5,-1v-2,-1,-4,-1,-5,1xm86,-130v2,0,5,1,4,-2v-2,0,-5,-1,-4,2","w":182},"z":{"d":"174,-57v2,11,-2,15,-5,24r5,-5r0,38v-16,-1,-36,2,-50,-1v1,-1,1,-2,-1,-2v-1,3,-8,5,-11,2v3,-4,-11,-2,-9,-11v-8,0,-14,5,-2,8r1,4v-33,-3,-76,6,-103,-3v8,-11,-9,-45,5,-54v14,3,13,12,18,7v-5,-1,0,-5,-9,-7r90,0v-2,9,11,11,18,9v-1,-4,-17,-4,-12,-9r49,0v-1,4,2,5,4,2r-1,-2r13,0xm167,-1v2,0,3,-3,0,-2r0,2xm124,-13v-4,3,-4,-2,-7,-3v-1,5,3,5,7,5r0,-2xm122,-16v0,0,3,-9,-2,-8v2,2,-1,6,2,8xm117,-26v0,-4,-8,-3,-11,0v1,4,1,6,4,6v-3,-6,2,-8,7,-6xm104,-13v1,-7,-2,-6,-5,-2v0,1,0,1,1,1v0,0,0,-2,1,-2xm99,-44v2,-1,-2,-3,-2,-3xm92,-39v1,-5,-4,-1,-7,-1v3,3,-5,6,1,5xm80,-40v2,0,4,-3,0,-2r0,2xm77,-13v1,-1,2,-4,-1,-3v-1,2,-3,4,1,3xm78,-28v0,-2,1,-7,-2,-6v0,2,-1,7,2,6xm74,-18v-5,-5,-8,1,-1,1xm72,-37v0,-2,-3,-5,-3,-3v1,2,2,3,3,3xm61,-34v11,-5,2,-13,-2,-7xm63,-23v1,-1,3,-3,0,-3r0,3xm58,-8v5,0,0,-8,1,-12v-1,4,-5,10,-1,12xm41,-23v2,-4,3,-7,-1,-3xm35,-4v3,0,4,-5,0,-4v0,1,-2,3,0,4xm32,-11v-10,3,-3,-17,-10,-6v2,5,6,13,10,6xm27,-46v0,-2,-4,-4,-3,0r3,0xm16,-34v-6,-1,-7,10,-3,13v4,-2,1,-10,3,-13xm15,-10v-2,-1,-5,-1,-8,-1v2,2,5,2,8,1xm13,-6r-3,-2xm7,-40v0,-4,0,-7,-4,-5v1,3,3,5,4,5xm50,-253v0,1,-2,3,0,3v1,-2,10,-6,12,-1v-1,-1,-2,-2,-2,1v4,1,12,2,11,9v8,0,14,-5,2,-8r-1,-4v32,3,76,-6,102,3v-6,13,7,44,-4,54v-14,-3,-13,-12,-18,-7v5,0,0,5,9,7r-90,0v-1,-9,-8,-9,-18,-9v1,4,17,4,12,9r-50,0v1,-3,-1,-5,-3,-2r1,2r-13,0v-2,-12,2,-16,5,-24r-5,6r0,-39r50,0xm5,-250v1,0,1,-1,1,-2xm56,-237v4,-6,-12,-7,-1,-1xm51,-237v-3,7,3,12,3,3xm57,-227v0,4,8,3,11,0v-1,-4,-1,-6,-4,-6v3,6,-2,8,-7,6xm69,-240v-1,7,3,7,6,2v0,-1,0,-1,-1,-1v0,0,0,2,-1,2xm74,-209v0,1,2,4,2,2v-1,-1,0,-2,-2,-2xm82,-214v-1,5,4,1,7,1v-3,-2,6,-6,-1,-5xm94,-213v-2,0,-4,3,0,2r0,-2xm97,-240v-2,2,-2,4,1,3v1,-2,3,-4,-1,-3xm96,-224v0,2,-1,6,2,5v0,-2,1,-6,-2,-5xm100,-235v5,5,7,-1,1,-1xm102,-216v-1,2,2,5,2,3v-1,-2,-1,-3,-2,-3xm112,-219v-10,5,-2,13,2,7xm111,-230v-1,1,-3,3,0,3r0,-3xm116,-245v-6,-1,-1,8,-2,12v1,0,4,-4,4,-10xm132,-230v0,4,-6,5,0,5v2,-2,2,-4,0,-5xm136,-246v2,3,3,-3,3,-3v-3,-1,-2,2,-3,3xm142,-242v9,-3,3,17,10,6v-3,-4,-5,-13,-10,-6xm147,-207v0,2,1,3,2,3v0,-2,0,-4,-2,-3xm157,-219v8,2,7,-8,4,-13v-4,2,0,11,-4,13xm159,-243v1,1,4,1,7,1v-2,-2,-4,-2,-7,-1xm161,-247r3,2xm167,-213v-3,3,0,8,4,5v-1,-3,-3,-5,-4,-5xm105,-168v2,2,6,5,1,5v-2,-1,-2,-3,-1,-5xm66,-86v0,-4,-4,-2,-1,0r1,0xm56,-108v5,0,4,-1,1,-2xm60,-119v0,-2,-3,-6,-3,-2xm80,-131v0,-1,-4,-2,-4,0r4,0xm75,-132v-1,-3,-3,-5,-6,-5v2,2,2,6,6,5xm92,-136v-3,1,-3,1,-1,3xm95,-138v0,-3,-4,-2,-5,0v0,2,4,0,5,0xm105,-144v-1,0,-3,-1,-3,1v1,0,4,2,3,-1xm121,-174v-9,5,-34,2,-15,13v6,3,24,-3,14,-6xm122,-181v1,-5,-3,-4,-4,-1v0,2,2,2,4,1xm172,-188v-14,14,-13,22,-27,25v1,-2,-1,-2,-3,-2v-5,2,-22,11,-8,7v3,4,11,-1,12,1v-15,21,-45,2,-61,-5v-2,1,-1,2,-3,3v0,-9,14,-7,12,-16v4,-5,7,-9,11,-13r67,0xm68,-63r-68,0r73,-87v5,-1,2,4,3,4v5,-2,-2,-15,8,-11v17,2,34,10,50,9v-1,4,4,3,5,1","w":187},"{":{"d":"140,-299v4,-1,5,2,6,4xm165,-293v4,10,3,36,0,47v-31,-3,-48,2,-55,30r0,179v0,18,9,30,27,36v-1,2,-2,5,2,4v5,-5,21,-5,28,-1v-1,15,3,35,-2,46v-39,-1,-83,-2,-86,-26v-3,2,-5,1,-9,-3v0,-2,2,-5,-1,-4v-33,-50,-9,-152,-16,-228v-2,-19,10,-37,15,-53v18,-17,53,-32,97,-27xm67,-274v2,-7,11,-2,2,0r-2,0xm152,-252v0,0,-2,0,-2,1xm151,-245v1,1,3,2,0,2r0,-2xm106,-236v-7,-1,0,3,-3,5v3,1,2,-3,3,-5xm88,-229v-2,0,-4,0,-2,2xm80,-33v0,-4,-6,-1,-7,0v0,0,0,2,1,2v-1,-3,4,-2,6,-2xm149,11v4,-2,6,-7,1,-6v0,2,-3,5,-1,6xm165,11v0,-6,-5,-5,-7,-2v5,4,-1,7,-3,10v7,-1,6,-7,10,-8xm144,10v-5,-1,-7,5,-1,5xm150,21v-1,0,-1,1,-1,2v1,0,1,-1,1,-2xm150,24v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm148,30v-1,-3,2,-4,2,-2xm44,-103v-7,0,-17,2,-19,-3r0,3v-8,-1,-20,2,-25,-2v1,-14,-3,-34,2,-44r32,0v-1,1,-2,2,1,2v2,-1,3,-2,9,-2r0,46","w":175},"|":{"d":"0,-262v13,-4,43,-4,57,0v0,12,2,34,-9,17v0,4,5,12,0,14v3,-1,6,-6,9,-4r0,125v-13,-8,-10,12,-21,5v-1,1,-3,3,-1,4v9,-1,15,14,12,-4v13,0,-1,10,10,14v1,10,-2,16,-6,20v5,1,5,-2,6,-4v-2,15,5,40,-4,48v7,1,5,21,3,29v0,-6,-6,-8,-8,-7v2,0,13,11,2,12v-2,-1,-4,-6,-5,-4v3,2,3,7,4,9v6,1,4,-4,8,-4v2,14,-8,9,-18,10v-5,-6,-14,4,-19,-5v2,7,-6,5,-11,5v1,-4,-2,-3,-5,-3v1,2,1,4,-2,3v-2,-12,-1,-29,0,-39r9,2v-6,0,-5,-7,-9,-9v0,2,1,6,-2,5v2,-12,-6,-46,8,-37v4,0,17,-1,8,-3v-4,-5,-10,-1,-11,-19v-6,3,-5,-4,-5,-9r3,0v-8,-48,-1,-116,-3,-171xm20,-259v0,0,-5,0,-3,1xm30,-249v0,-5,-4,-2,-1,0r1,0xm45,-227v0,-4,-6,-2,-2,0r2,0xm7,-224v0,-2,-4,-4,-3,-1v1,1,2,3,3,1xm9,-118v-3,-1,-2,3,-2,5v3,1,2,-3,2,-5xm2,-109v2,2,3,5,7,4v0,-2,-2,-3,-7,-4xm13,-90v-1,-7,-5,-4,-9,-1v3,-1,7,7,9,1xm1,-77v5,0,3,7,1,10v-4,0,-1,-6,-2,-9xm9,-56v0,7,-10,2,-2,10v0,-4,3,-5,7,-5v-1,-2,-3,-4,-5,-5xm27,-11v-1,1,-8,4,-3,4v-1,-2,4,-1,3,-4xm35,-1v3,-4,-2,-12,-3,-9v7,4,-7,11,3,9xm18,-7v-2,-1,-5,1,-2,2xm21,3v0,2,2,2,4,2v1,-3,-2,-2,-4,-2xm16,7v-3,1,-5,2,-2,5v3,0,3,-2,2,-5xm43,9v-2,0,-4,0,-3,2v2,0,4,0,3,-2","w":70},"}":{"d":"20,-295v0,-4,3,-4,7,-4xm56,-37r0,-179v-2,-26,-25,-27,-38,-32v-1,2,-6,4,-8,1v1,-1,2,-2,-1,-2v-1,3,-7,5,-9,1v1,-14,-3,-34,2,-45v43,-2,79,4,96,28v0,0,1,-2,1,0v29,53,15,151,15,230v0,21,-5,40,-18,51v4,10,-13,3,-8,12v-11,14,-55,25,-88,18v1,-15,-3,-35,2,-46v32,5,54,-7,54,-37xm92,-275v1,-4,10,-3,6,1v-3,-2,-1,-3,-6,-1xm17,-252v-3,0,-1,1,-1,1xm13,-243v1,-1,2,-3,2,0r-2,0xm65,-236v-5,-1,-4,2,-3,5v3,0,0,-4,3,-5xm82,-228v-2,-2,-3,0,-1,1xm91,-35v-2,0,-5,-1,-4,2v4,-2,6,4,6,0xm13,5v1,1,4,9,6,4v-2,0,-2,-5,-6,-4xm3,6v-3,5,5,15,9,11v-9,0,-1,-12,-9,-11xm26,10v-5,-1,-5,2,-2,5v4,0,4,-2,2,-5xm18,21v-2,0,-2,0,-2,2v2,0,2,0,2,-2xm16,24r0,1r0,-1xm16,27v5,0,3,4,0,1r0,-1xm123,-149v6,-2,8,4,11,1r-1,-1v11,1,25,-1,34,1v-1,14,3,34,-2,45r-23,0r0,-3v-2,4,-12,3,-19,3r0,-46","w":175}}});;
Cufon.replace('h1#sitename a,.nodetitle a, #navbar > ul > li > a,#site-menu > ul > li > a,#footer-region a, ', { hover: true }); Cufon.replace('h1, h2, h3, h4, h5, h6, p.mission, p.slogan, .views-field-title, legend:not(.collapse-processed)'); 
;

