/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.72 (09-SEP-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
(function($){var ver="2.72";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;}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(opts2.currSlide,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);},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"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){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,1);}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 removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}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);});}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);}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=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var 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;}if(!h){h=e.offsetHeight;}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.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();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;}while((opts.timeout-opts.speed)<250){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){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}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){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){$.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){$(els).stop(true,true);opts.busy=false;}if(opts.busy){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.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){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]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}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];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(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){if(++opts.randomIndex==els.length){opts.randomIndex=0;}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;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(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);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);}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);});$a=$(arr);}else{$a.appendTo($p);}}$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;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!="click"){$a.click(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){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,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,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",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};})(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-2008 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);

jQuery.extend({easing:{easein:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeinout:function(x,t,b,c,d){if(t<d/2)return 2*c*t*t/(d*d)+b;var ts=t-d/2;return-2*c*ts*ts/(d*d)+2*c*ts/d+c/2+b;},easeout:function(x,t,b,c,d){return-c*t*t/(d*d)+2*c*t/d+b;},expoin:function(x,t,b,c,d){var flip=1;if(c<0){flip*=-1;c*=-1;}
return flip*(Math.exp(Math.log(c)/d*t))+b;},expoout:function(x,t,b,c,d){var flip=1;if(c<0){flip*=-1;c*=-1;}
return flip*(-Math.exp(-Math.log(c)/d*(t-d))+c+1)+b;},expoinout:function(x,t,b,c,d){var flip=1;if(c<0){flip*=-1;c*=-1;}
if(t<d/2)return flip*(Math.exp(Math.log(c/2)/(d/2)*t))+b;return flip*(-Math.exp(-2*Math.log(c/2)/d*(t-d))+c+1)+b;},bouncein:function(x,t,b,c,d){return c-jQuery.easing['bounceout'](x,d-t,0,c,d)+b;},bounceout:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},bounceinout:function(x,t,b,c,d){if(t<d/2)return jQuery.easing['bouncein'](x,t*2,0,c,d)*.5+b;return jQuery.easing['bounceout'](x,t*2-d,0,c,d)*.5+c*.5+b;},elasin:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},elasout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},elasinout:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},backin:function(x,t,b,c,d){var s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},backout:function(x,t,b,c,d){var s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},backinout:function(x,t,b,c,d){var s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},linear:function(x,t,b,c,d){return c*t/d+b;}}});

(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}
var validator=$.data(this[0],'validator');if(validator){return validator;}
validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true;});this.submit(function(event){if(validator.settings.debug)
event.preventDefault();function handle(){if(validator.settings.submitHandler){validator.settings.submitHandler.call(validator,validator.currentForm);return false;}
return true;}
if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}
if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}
return handle();}else{validator.focusInvalid();return false;}});}
return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=false;var validator=$(this[0].form).validate();this.each(function(){valid|=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)
settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}
var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}
var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}
return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(a.value);},filled:function(a){return!!$.trim(a.value);},unchecked:function(a){return!a.checked;}});$.format=function(source,params){if(arguments.length==1)
return function(){var args=$.makeArray(arguments);args.unshift(source);return $.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}
if(params.constructor!=Array){params=[params];}
$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.validator=function(options,form){this.settings=$.extend({},$.validator.defaults,options);this.currentForm=form;this.init();};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass);this.errorsFor(element).hide();}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element){if(element.name in this.submitted)
this.element(element);},highlight:function(element,errorClass){$(element).addClass(errorClass);},unhighlight:function(element,errorClass){$(element).removeClass(errorClass);}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",dateDE:"Bitte geben Sie ein gültiges Datum ein.",number:"Please enter a valid number.",numberDE:"Bitte geben Sie eine Nummer ein.",digits:"Please enter only digits",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.format("Please enter no more than {0} characters."),minlength:$.format("Please enter at least {0} characters."),rangelength:$.format("Please enter a value between {0} and {1} characters long."),range:$.format("Please enter a value between {0} and {1}."),max:$.format("Please enter a value less than or equal to {0}."),min:$.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator");validator.settings["on"+event.type]&&validator.settings["on"+event.type].call(validator,this[0]);}
$(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",delegate).delegate("click",":radio, :checkbox",delegate);if(this.settings.invalidHandler)
$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())
$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}
return this.valid();},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}
if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}
this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}
this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}
this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)
$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)
count++;return count;},hideErrors:function(){this.addWrapper(this.toHide).hide();},valid:function(){return this.size()==0;},size:function(){return this.errorList.length;},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus();}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))
return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.formSubmitted=false;this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name)[0];}
var rules=$(element).rules();var dependencyMismatch=false;for(method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}
dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}
if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method");throw e;}}
if(dependencyMismatch)
return;if(this.objectLength(rules))
this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)
return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)
return arguments[i];}
return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method);if(typeof message=="function")
message=message.call(this,rule.parameters,element);this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)
toToggle=toToggle.add(toToggle.parents(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass);this.showLabel(error.element,error.message);}
if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}
if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}
if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass);}}
this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show();},validElements:function(){return this.currentElements.not(this.invalidElements());},invalidElements:function(){return $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}
if(!this.labelContainer.append(label).length)
this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}
if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}
this.toShow=this.toShow.add(label);},errorsFor:function(element){return this.errors().filter("[for='"+this.idOrName(element)+"']");},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},checkable:function(element){return/radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))
return this.findByName(element.name).filter(':checked').length;}
return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)
this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",previous={old:null,valid:true,message:this.defaultMessage(element,"remote")});}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value;}}
if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}
return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}
return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}
if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}
if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}
if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}
if(rules.messages){delete rules.messages}
return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}
return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message;if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))
return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var options=$("option:selected",element);return options.length>0&&(element.type=="select-multiple"||($.browser.msie&&!(options[0].attributes['value'].specified)?options[0].text:options[0].value).length>0);case'input':if(this.checkable(element))
return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))
return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])
this.settings.messages[element.name]={};this.settings.messages[element.name].remote=typeof previous.message=="function"?previous.message(value):previous.message;param=typeof param=="string"&&{url:param}||param;if(previous.old!==value){previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){if(response){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};errors[element.name]=response||validator.defaultMessage(element,"remote");validator.showErrors(errors);}
previous.valid=response;validator.stopRequest(element,response);}},param));return"pending";}else if(this.pending[element.name]){return"pending";}
return previous.valid;},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},dateDE:function(value,element){return this.optional(element)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},numberDE:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))
return"dependency-mismatch";if(/[^0-9-]+/.test(value))
return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)
nDigit-=9;}
nCheck+=nDigit;bEven=!bEven;}
return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param:"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){return value==$(param).val();}}});})(jQuery);;(function($){var ajax=$.ajax;var pendingRequests={};$.ajax=function(settings){settings=$.extend(settings,$.extend({},$.ajaxSettings,settings));var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}
return(pendingRequests[port]=ajax.apply(this,arguments));}
return ajax.apply(this,arguments);};})(jQuery);;(function($){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){if($.browser.msie)return false;this.addEventListener(original,$.event.special[fix].handler,true);},teardown:function(){if($.browser.msie)return false;this.removeEventListener(original,$.event.special[fix].handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};});$.extend($.fn,{delegate:function(type,delegate,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});},triggerEvent:function(type,target){return this.triggerHandler(type,[$.event.fix({type:type,target:target})]);}})})(jQuery);

var ddsmoothmenu={transition:{overtime:300,outtime:300},shadow:{enable:false,offsetx:5,offsety:5},detectwebkit:navigator.userAgent.toLowerCase().indexOf("applewebkit")!=-1,detectie6:document.all&&!window.XMLHttpRequest,getajaxmenu:function($,setting){var $menucontainer=$('#'+setting.contentsource[0])
$menucontainer.html("Loading Menu...")
$.ajax({url:setting.contentsource[1],async:true,error:function(ajaxrequest){$menucontainer.html('Error fetching content. Server Response: '+ajaxrequest.responseText)},success:function(content){$menucontainer.html(content)
ddsmoothmenu.buildmenu($,setting)}})},buildmenu:function($,setting){var smoothmenu=ddsmoothmenu
var $mainmenu=$("#"+setting.mainmenuid+">ul")
$mainmenu.parent().get(0).className=setting.classname||"ddsmoothmenu"
var $headers=$mainmenu.find("ul").parent()
$headers.hover(function(e){$(this).children('a:eq(0)').addClass('selected')},function(e){$(this).children('a:eq(0)').removeClass('selected')})
$headers.each(function(i){var $curobj=$(this).css({zIndex:100-i})
var $subul=$(this).find('ul:eq(0)').css({display:'block'})
this._dimensions={w:this.offsetWidth,h:this.offsetHeight,subulw:$subul.outerWidth(),subulh:$subul.outerHeight()}
this.istopheader=$curobj.parents("ul").length==1?true:false
$subul.css({top:this.istopheader&&setting.orientation!='v'?this._dimensions.h+"px":0})
if(smoothmenu.shadow.enable){this._shadowoffset={x:(this.istopheader?$subul.offset().left+smoothmenu.shadow.offsetx:this._dimensions.w),y:(this.istopheader?$subul.offset().top+smoothmenu.shadow.offsety:$curobj.position().top)}
if(this.istopheader)
$parentshadow=$(document.body)
else{var $parentLi=$curobj.parents("li:eq(0)")
$parentshadow=$parentLi.get(0).$shadow}
this.$shadow=$('<div class="ddshadow'+(this.istopheader?' toplevelshadow':'')+'"></div>').prependTo($parentshadow).css({left:this._shadowoffset.x+'px',top:this._shadowoffset.y+'px'})}
$curobj.hover(function(e){var $targetul=$(this).children("ul:eq(0)")
this._offsets={left:$(this).offset().left,top:$(this).offset().top}
var menuleft=this.istopheader&&setting.orientation!='v'?0:this._dimensions.w
menuleft=(this._offsets.left+menuleft+this._dimensions.subulw>$(window).width())?(this.istopheader&&setting.orientation!='v'?-this._dimensions.subulw+this._dimensions.w:-this._dimensions.w):menuleft
if($targetul.queue().length<=1){$targetul.css({left:menuleft+"px",width:this._dimensions.subulw+'px'}).animate({height:'show',opacity:'show'},ddsmoothmenu.transition.overtime)
if(smoothmenu.shadow.enable){var shadowleft=this.istopheader?$targetul.offset().left+ddsmoothmenu.shadow.offsetx:menuleft
var shadowtop=this.istopheader?$targetul.offset().top+smoothmenu.shadow.offsety:this._shadowoffset.y
if(!this.istopheader&&ddsmoothmenu.detectwebkit){this.$shadow.css({opacity:1})}
this.$shadow.css({overflow:'',width:this._dimensions.subulw+'px',left:shadowleft+'px',top:shadowtop+'px'}).animate({height:this._dimensions.subulh+'px'},ddsmoothmenu.transition.overtime)}}},function(e){var $targetul=$(this).children("ul:eq(0)")
$targetul.animate({height:'hide',opacity:'hide'},ddsmoothmenu.transition.outtime)
if(smoothmenu.shadow.enable){if(ddsmoothmenu.detectwebkit){this.$shadow.children('div:eq(0)').css({opacity:0})}
this.$shadow.css({overflow:'hidden'}).animate({height:0},ddsmoothmenu.transition.outtime)}})})
$mainmenu.find("ul").css({display:'none',visibility:'visible'})},init:function(setting){if(typeof setting.customtheme=="object"&&setting.customtheme.length==2){var mainmenuid='#'+setting.mainmenuid
var mainselector=(setting.orientation=="v")?mainmenuid:mainmenuid+', '+mainmenuid
document.write('<style type="text/css">\n'
+mainselector+' ul li a {background:'+setting.customtheme[0]+';}\n'
+mainmenuid+' ul li a:hover {background:'+setting.customtheme[1]+';}\n'
+'</style>')}
this.shadow.enable=(document.all&&!window.XMLHttpRequest)?false:this.shadow.enable
jQuery(document).ready(function($){if(typeof setting.contentsource=="object"){ddsmoothmenu.getajaxmenu($,setting)}
else{ddsmoothmenu.buildmenu($,setting)}})}}

jQuery(document).ready(function(){var rttheme_effect_options=jQuery("meta[name=rttheme_effect_options]").attr('content');var rttheme_slider_time_out=jQuery("meta[name=rttheme_slider_time_out]").attr('content');var rttheme_slider_numbers=jQuery("meta[name=rttheme_slider_numbers]").attr('content');if(rttheme_slider_numbers=='true'){var numbers="#numbers";}
$('#slider_area').cycle({fx:rttheme_effect_options,easing:'backout',cleartype:1,timeout:rttheme_slider_time_out,pager:numbers,pagerAnchorBuilder:function(idx){return'<li><a href="#" title="">'+(idx+1)+'</a></li>';}});});var rttheme_disable_cufon=jQuery("meta[name=rttheme_disable_cufon]").attr('content');if(rttheme_disable_cufon!='true'){$(document).ready(function(){Cufon.replace('h1,h2,h3,h4,h5,h6',{hover:true});});}
$(document).ready(function(){ddsmoothmenu.init({mainmenuid:"dropdown_menu",orientation:'h',classname:'dropdown',contentsource:"markup"})});$(document).ready(function(){var image_e=$(".image.portfolio, .image.product_image");image_e.mouseover(function(){$(this).stop().animate({opacity:0.6},400);}).mouseout(function(){image_e.stop().animate({opacity:1},400);});});$(document).ready(function(){$("a[rel^='prettyPhoto']").prettyPhoto();});$(document).ready(function(){var tabs=$("#tabs ul li");var content=$("#tabs #content");var kids=content.children();kids.attr("style","display:none;");$("#tabs #content div:first").attr("style","display:block;");tabs.click(function(){var show=$(this).attr("title");$("#tabs ul li").removeClass("active");$(this).addClass("active");kids.attr("style","display:none;");content.slideUp(100);$(function(){content.slideDown(400);$("#"+show+"").attr("style","display:block;");});});});$(document).ready(function(){jQuery.validator.messages.required="";$("#validate_form").validate({});});

(function($){$.prettyPhoto={version:'2.5'};$.fn.prettyPhoto=function(settings){settings=jQuery.extend({animationSpeed:'normal',padding:40,opacity:0.80,showTitle:true,allowresize:true,counter_separator_label:'/',theme:'light_rounded',callback:function(){}},settings);if($.browser.msie&&$.browser.version==6){settings.theme="light_square";}
if($('.pp_overlay').size()==0){_buildOverlay();}else{$pp_pic_holder=$('.pp_pic_holder');$ppt=$('.ppt');}
var doresize=true,percentBased=false,correctSizes,$pp_pic_holder,$ppt,settings,pp_contentHeight,pp_contentWidth,pp_containerHeight,pp_containerWidth,pp_type='image',setPosition=0,$scrollPos=_getScroll();$(window).scroll(function(){$scrollPos=_getScroll();_centerOverlay();});$(window).resize(function(){_centerOverlay();_resizeOverlay();});$(document).keydown(function(e){switch(e.keyCode){case 37:$.prettyPhoto.changePage('previous');break;case 39:$.prettyPhoto.changePage('next');break;case 27:$.prettyPhoto.close();break;};});$(this).each(function(){$(this).bind('click',function(){link=this;theRel=$(this).attr('rel');galleryRegExp=/\[(?:.*)\]/;theGallery=galleryRegExp.exec(theRel);var images=new Array(),titles=new Array(),descriptions=new Array();if(theGallery){$('a[rel*='+theGallery+']').each(function(i){if($(this)[0]===$(link)[0])setPosition=i;images.push($(this).attr('href'));titles.push($(this).find('img').attr('alt'));descriptions.push($(this).attr('title'));});}else{images=$(this).attr('href');titles=($(this).find('img').attr('alt'))?$(this).find('img').attr('alt'):'';descriptions=($(this).attr('title'))?$(this).attr('title'):'';}
$.prettyPhoto.open(images,titles,descriptions);return false;});});$.prettyPhoto.open=function(gallery_images,gallery_titles,gallery_descriptions){if($.browser.msie&&$.browser.version==6){$('select').css('visibility','hidden');};$('object,embed').css('visibility','hidden');images=$.makeArray(gallery_images);titles=$.makeArray(gallery_titles);descriptions=$.makeArray(gallery_descriptions);if($('.pp_overlay').size()==0){_buildOverlay();}else{$pp_pic_holder=$('.pp_pic_holder');$ppt=$('.ppt');}
$pp_pic_holder.attr('class','pp_pic_holder '+settings.theme);isSet=($(images).size()>0)?true:false;_getFileType(images[setPosition]);_centerOverlay();_checkPosition($(images).size());$('.pp_loaderIcon').show();$('div.pp_overlay').show().fadeTo(settings.animationSpeed,settings.opacity,function(){$pp_pic_holder.fadeIn(settings.animationSpeed,function(){$pp_pic_holder.find('p.currentTextHolder').text((setPosition+1)+settings.counter_separator_label+$(images).size());if(descriptions[setPosition]){$pp_pic_holder.find('.pp_description').show().html(unescape(descriptions[setPosition]));}else{$pp_pic_holder.find('.pp_description').hide().text('');};if(titles[setPosition]&&settings.showTitle){hasTitle=true;$ppt.html(unescape(titles[setPosition]));}else{hasTitle=false;};if(pp_type=='image'){imgPreloader=new Image();nextImage=new Image();if(isSet&&setPosition>$(images).size())nextImage.src=images[setPosition+1];prevImage=new Image();if(isSet&&images[setPosition-1])prevImage.src=images[setPosition-1];pp_typeMarkup='<img id="fullResImage" src="" />';$pp_pic_holder.find('#pp_full_res')[0].innerHTML=pp_typeMarkup;$pp_pic_holder.find('.pp_content').css('overflow','hidden');$pp_pic_holder.find('#fullResImage').attr('src',images[setPosition]);imgPreloader.onload=function(){correctSizes=_fitToViewport(imgPreloader.width,imgPreloader.height);_showContent();};imgPreloader.src=images[setPosition];}else{movie_width=(parseFloat(grab_param('width',images[setPosition])))?grab_param('width',images[setPosition]):"425";movie_height=(parseFloat(grab_param('height',images[setPosition])))?grab_param('height',images[setPosition]):"344";if(movie_width.indexOf('%')!=-1||movie_height.indexOf('%')!=-1){movie_height=($(window).height()*parseFloat(movie_height)/100)-100;movie_width=($(window).width()*parseFloat(movie_width)/100)-100;percentBased=true;}
movie_height=parseFloat(movie_height);movie_width=parseFloat(movie_width);if(pp_type=='quicktime')movie_height+=13;correctSizes=_fitToViewport(movie_width,movie_height);if(pp_type=='youtube'){pp_typeMarkup='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.youtube.com/v/'+grab_param('v',images[setPosition])+'" /><embed src="http://www.youtube.com/v/'+grab_param('v',images[setPosition])+'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"></embed></object>';}else if(pp_type=='quicktime'){pp_typeMarkup='<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="'+correctSizes['height']+'" width="'+correctSizes['width']+'"><param name="src" value="'+images[setPosition]+'"><param name="autoplay" value="true"><param name="type" value="video/quicktime"><embed src="'+images[setPosition]+'" height="'+correctSizes['height']+'" width="'+correctSizes['width']+'" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>';}else if(pp_type=='flash'){flash_vars=images[setPosition];flash_vars=flash_vars.substring(images[setPosition].indexOf('flashvars')+10,images[setPosition].length);filename=images[setPosition];filename=filename.substring(0,filename.indexOf('?'));pp_typeMarkup='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="'+filename+'?'+flash_vars+'" /><embed src="'+filename+'?'+flash_vars+'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"></embed></object>';}else if(pp_type=='iframe'){movie_url=images[setPosition];movie_url=movie_url.substr(0,movie_url.indexOf('iframe')-1);pp_typeMarkup='<iframe src ="'+movie_url+'" width="'+(correctSizes['width']-10)+'" height="'+(correctSizes['height']-10)+'" frameborder="no"></iframe>';}
_showContent();}});});};$.prettyPhoto.changePage=function(direction){if(direction=='previous'){setPosition--;if(setPosition<0){setPosition=0;return;}}else{if($('.pp_arrow_next').is('.disabled'))return;setPosition++;};if(!doresize)doresize=true;_hideContent();$('a.pp_expand,a.pp_contract').fadeOut(settings.animationSpeed,function(){$(this).removeClass('pp_contract').addClass('pp_expand');$.prettyPhoto.open(images,titles,descriptions);});};$.prettyPhoto.close=function(){$pp_pic_holder.find('object,embed').css('visibility','hidden');$('div.pp_pic_holder,div.ppt').fadeOut(settings.animationSpeed);$('div.pp_overlay').fadeOut(settings.animationSpeed,function(){$('div.pp_overlay,div.pp_pic_holder,div.ppt').remove();if($.browser.msie&&$.browser.version==6){$('select').css('visibility','visible');};$('object,embed').css('visibility','visible');setPosition=0;settings.callback();});doresize=true;};_showContent=function(){$('.pp_loaderIcon').hide();if($.browser.opera){windowHeight=window.innerHeight;windowWidth=window.innerWidth;}else{windowHeight=$(window).height();windowWidth=$(window).width();};projectedTop=$scrollPos['scrollTop']+((windowHeight/2)-(correctSizes['containerHeight']/2));if(projectedTop<0)projectedTop=0+$pp_pic_holder.find('.ppt').height();$pp_pic_holder.find('.pp_content').animate({'height':correctSizes['contentHeight']},settings.animationSpeed);$pp_pic_holder.animate({'top':projectedTop,'left':((windowWidth/2)-(correctSizes['containerWidth']/2)),'width':correctSizes['containerWidth']},settings.animationSpeed,function(){$pp_pic_holder.width(correctSizes['containerWidth']);$pp_pic_holder.find('.pp_hoverContainer,#fullResImage').height(correctSizes['height']).width(correctSizes['width']);$pp_pic_holder.find('#pp_full_res').fadeIn(settings.animationSpeed);if(isSet&&pp_type=="image"){$pp_pic_holder.find('.pp_hoverContainer').fadeIn(settings.animationSpeed);}else{$pp_pic_holder.find('.pp_hoverContainer').hide();}
$pp_pic_holder.find('.pp_details').fadeIn(settings.animationSpeed);if(settings.showTitle&&hasTitle){$ppt.css({'top':$pp_pic_holder.offset().top-20,'left':$pp_pic_holder.offset().left+(settings.padding/2),'display':'none'});$ppt.fadeIn(settings.animationSpeed);};if(correctSizes['resized'])$('a.pp_expand,a.pp_contract').fadeIn(settings.animationSpeed);if(pp_type!='image')$pp_pic_holder.find('#pp_full_res')[0].innerHTML=pp_typeMarkup;});};function _hideContent(){$pp_pic_holder.find('.pp_hoverContainer,.pp_details').fadeOut(settings.animationSpeed);$pp_pic_holder.find('#pp_full_res object,#pp_full_res embed').css('visibility','hidden');$pp_pic_holder.find('#pp_full_res').fadeOut(settings.animationSpeed,function(){$('.pp_loaderIcon').show();});$ppt.fadeOut(settings.animationSpeed);}
function _checkPosition(setCount){if(setPosition==setCount-1){$pp_pic_holder.find('a.pp_next').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_next').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_next').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_next.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};if(setPosition==0){$pp_pic_holder.find('a.pp_previous').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_previous').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_previous').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_previous.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});};if(setCount>1){$('.pp_nav').show();}else{$('.pp_nav').hide();}};function _fitToViewport(width,height){hasBeenResized=false;_getDimensions(width,height);imageWidth=width;imageHeight=height;windowHeight=$(window).height();windowWidth=$(window).width();if(((pp_containerWidth>windowWidth)||(pp_containerHeight>windowHeight))&&doresize&&settings.allowresize&&!percentBased){hasBeenResized=true;notFitting=true;while(notFitting){if((pp_containerWidth>windowWidth)){imageWidth=(windowWidth-200);imageHeight=(height/width)*imageWidth;}else if((pp_containerHeight>windowHeight)){imageHeight=(windowHeight-200);imageWidth=(width/height)*imageHeight;}else{notFitting=false;};pp_containerHeight=imageHeight;pp_containerWidth=imageWidth;};_getDimensions(imageWidth,imageHeight);};return{width:imageWidth,height:imageHeight,containerHeight:pp_containerHeight,containerWidth:pp_containerWidth,contentHeight:pp_contentHeight,contentWidth:pp_contentWidth,resized:hasBeenResized};};function _getDimensions(width,height){$pp_pic_holder.find('.pp_details').width(width).find('.pp_description').width(width-parseFloat($pp_pic_holder.find('a.pp_close').css('width')));pp_contentHeight=height+$pp_pic_holder.find('.pp_details').height()+parseFloat($pp_pic_holder.find('.pp_details').css('marginTop'))+parseFloat($pp_pic_holder.find('.pp_details').css('marginBottom'));pp_contentWidth=width;pp_containerHeight=pp_contentHeight+$pp_pic_holder.find('.ppt').height()+$pp_pic_holder.find('.pp_top').height()+$pp_pic_holder.find('.pp_bottom').height();pp_containerWidth=width+settings.padding;}
function _getFileType(itemSrc){if(itemSrc.match(/youtube\.com\/watch/i)){pp_type='youtube';}else if(itemSrc.indexOf('.mov')!=-1){pp_type='quicktime';}else if(itemSrc.indexOf('.swf')!=-1){pp_type='flash';}else if(itemSrc.indexOf('iframe')!=-1){pp_type='iframe'}else{pp_type='image';};};function _centerOverlay(){if($.browser.opera){windowHeight=window.innerHeight;windowWidth=window.innerWidth;}else{windowHeight=$(window).height();windowWidth=$(window).width();};if(doresize){$pHeight=$pp_pic_holder.height();$pWidth=$pp_pic_holder.width();$tHeight=$ppt.height();projectedTop=(windowHeight/2)+$scrollPos['scrollTop']-($pHeight/2);if(projectedTop<0)projectedTop=0+$tHeight;$pp_pic_holder.css({'top':projectedTop,'left':(windowWidth/2)+$scrollPos['scrollLeft']-($pWidth/2)});$ppt.css({'top':projectedTop-$tHeight,'left':(windowWidth/2)+$scrollPos['scrollLeft']-($pWidth/2)+(settings.padding/2)});};};function _getScroll(){if(self.pageYOffset){scrollTop=self.pageYOffset;scrollLeft=self.pageXOffset;}else if(document.documentElement&&document.documentElement.scrollTop){scrollTop=document.documentElement.scrollTop;scrollLeft=document.documentElement.scrollLeft;}else if(document.body){scrollTop=document.body.scrollTop;scrollLeft=document.body.scrollLeft;}
return{scrollTop:scrollTop,scrollLeft:scrollLeft};};function _resizeOverlay(){$('div.pp_overlay').css({'height':$(document).height(),'width':$(window).width()});};function _buildOverlay(){toInject="";toInject+="<div class='pp_overlay'></div>";toInject+='<div class="pp_pic_holder"><div class="pp_top"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div><div class="pp_content"><a href="#" class="pp_expand" title="Expand the image">Expand</a><div class="pp_loaderIcon"></div><div class="pp_hoverContainer"><a class="pp_next" href="#">next</a><a class="pp_previous" href="#">previous</a></div><div id="pp_full_res"></div><div class="pp_details clearfix"><a class="pp_close" href="#">Close</a><p class="pp_description"></p><div class="pp_nav"><a href="#" class="pp_arrow_previous">Previous</a><p class="currentTextHolder">0'+settings.counter_separator_label+'0</p><a href="#" class="pp_arrow_next">Next</a></div></div></div><div class="pp_bottom"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div></div>';toInject+='<div class="ppt"></div>';$('body').append(toInject);$('div.pp_overlay').css('opacity',0);$pp_pic_holder=$('.pp_pic_holder');$ppt=$('.ppt');$('div.pp_overlay').css('height',$(document).height()).hide().bind('click',function(){$.prettyPhoto.close();});$('a.pp_close').bind('click',function(){$.prettyPhoto.close();return false;});$('a.pp_expand').bind('click',function(){$this=$(this);if($this.hasClass('pp_expand')){$this.removeClass('pp_expand').addClass('pp_contract');doresize=false;}else{$this.removeClass('pp_contract').addClass('pp_expand');doresize=true;};_hideContent();$pp_pic_holder.find('.pp_hoverContainer, #pp_full_res, .pp_details').fadeOut(settings.animationSpeed,function(){$.prettyPhoto.open(images,titles,descriptions);});return false;});$pp_pic_holder.find('.pp_previous, .pp_arrow_previous').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});$pp_pic_holder.find('.pp_next, .pp_arrow_next').bind('click',function(){$.prettyPhoto.changePage('next');return false;});$pp_pic_holder.find('.pp_hoverContainer').css({'margin-left':settings.padding/2});};};function grab_param(name,url){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)";var regex=new RegExp(regexS);var results=regex.exec(url);if(results==null)
return"";else
return results[1];}})(jQuery);

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2008 by Jos Buivenga. All rights reserved.
 * 
 * Trademark:
 * Anivers is a trademark of Jos Buivenga.
 * 
 * Full name:
 * Anivers-Regular
 * 
 * Description:
 * Spaced and kerned with iKern.
 * 
 * Manufacturer:
 * Jos Buivenga
 * 
 * Designer:
 * Jos Buivenga
 * 
 * Vendor URL:
 * http://www.josbuivenga.demon.nl
 */
Cufon.registerFont({"w":502,"face":{"font-family":"Anivers","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"755","descent":"-245","x-height":"12","bbox":"-125 -882 951 231","underline-thickness":"54","underline-position":"-2","stemh":"72","stemv":"80","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":249},"!":{"d":"117,-186r-5,-5r-21,-516r5,-6r92,-12r6,4r-19,530r-5,5r-53,0xm94,-5r0,-91r5,-5r89,0r5,5r0,91r-5,5r-89,0","w":287},"\"":{"d":"222,-496r-5,-5r-11,-169r5,-5r78,0r5,5r-10,169r-5,5r-57,0xm68,-496r-5,-5r-11,-169r5,-5r78,0r5,5r-10,169r-5,5r-57,0","w":346,"k":{"\u0166":-1,"\u0129":-23,"\u0135":-12,"\u00ee":-12,"\u00ec":-7}},"#":{"d":"120,-5r32,-174r-102,0r-5,-5r0,-59r5,-5r115,0r33,-177r-99,0r-5,-5r0,-59r5,-5r112,0r32,-171r6,-6r64,-10r6,5r-34,182r151,0r32,-171r6,-6r64,-10r6,5r-34,182r121,0r4,5r-17,59r-7,5r-114,0r-33,177r118,0r4,5r-17,59r-7,5r-111,0r-32,174r-6,5r-64,0r-4,-5r32,-174r-151,0r-32,174r-6,5r-64,0xm239,-248r151,0r33,-177r-151,0","w":670},"$":{"d":"53,-47r-2,-5r34,-53r8,-1v0,0,47,38,126,41r0,-177v-76,-26,-154,-57,-154,-152v0,-82,72,-132,154,-144r0,-67r5,-6r48,-7r5,4r0,74v80,4,137,33,145,39r1,5r-31,55r-7,1v-23,-15,-66,-26,-108,-28r0,164v77,26,160,60,160,161v0,97,-81,136,-160,146r0,70r-5,5r-48,0r-5,-5r0,-66v-52,-2,-121,-22,-166,-54xm219,-324r0,-141v-46,8,-74,30,-74,69v0,37,32,56,74,72xm277,-68v44,-6,80,-25,80,-75v0,-41,-35,-62,-80,-79r0,154","w":491},"%":{"d":"177,-365v-69,0,-119,-37,-119,-107r0,-102v0,-70,50,-108,119,-108v69,0,118,38,118,108r0,102v0,70,-49,107,-118,107xm60,-5r504,-674r7,-2r62,19r2,5r-490,655r-6,2r-77,0xm177,-423v37,0,59,-20,59,-60r0,-82v0,-39,-22,-58,-59,-58v-38,0,-60,19,-60,58r0,82v0,40,22,60,60,60xm411,-97r0,-101v0,-71,50,-108,119,-108v69,0,120,37,120,108r0,101v0,70,-51,109,-120,109v-69,0,-119,-39,-119,-109xm470,-105v0,38,22,58,60,58v37,0,59,-20,59,-58r0,-83v0,-39,-22,-59,-59,-59v-38,0,-60,20,-60,59r0,83","w":705},"&":{"d":"57,-200v0,-74,35,-142,105,-155v-53,-24,-88,-78,-88,-145v0,-131,99,-175,220,-175r64,0r4,5r-11,62r-6,5r-51,0v-70,0,-140,22,-140,102v0,78,43,106,145,106r82,0r9,-101r5,-6r57,-8r5,4r0,111r101,0r5,5r-19,62r-7,5r-80,0r0,307r-5,6v0,0,-71,22,-165,22v-114,0,-230,-58,-230,-212xm137,-201v0,98,79,141,152,141v39,0,88,-11,88,-11r0,-252r-78,0v-102,0,-162,49,-162,122","w":598},"'":{"d":"68,-496r-5,-5r-11,-169r5,-5r78,0r5,5r-10,169r-5,5r-57,0","w":192,"k":{"\u0166":-1,"\u0129":-23,"\u0135":-12,"\u00ee":-12,"\u00ec":-7}},"(":{"d":"200,130v0,0,-136,-93,-136,-409v0,-314,136,-408,136,-408r7,0r40,44r-1,7v0,0,-102,101,-102,357v0,257,103,358,103,358r-1,7r-39,43","w":282,"k":{"\u0129":-31,"\u0127":-13,"\u012b":-20,"\u0135":-44,"\u00ef":-15,"\u00ee":-20,"j":-44,"V":-9,"T":-11,"\u0162":-11,"\u0164":-11,"\u0166":-11,"\u021a":-11,"W":-9,"\u0174":-9,"Y":-13,"\u00dd":-13,"\u0178":-13,"\u0176":-13}},")":{"d":"35,79v0,0,103,-101,103,-358v0,-256,-102,-357,-102,-357r-1,-7r40,-44r7,0v0,0,136,94,136,408v0,316,-136,409,-136,409r-7,-1r-39,-43","w":282},"*":{"d":"320,-446r0,-8v17,-29,39,-39,61,-39v17,0,37,7,53,16r58,34r2,7r-21,58r-6,3r-104,-60v-11,-6,-22,-12,-34,-12v-3,0,-6,0,-9,1xm257,-512v-61,0,-76,-47,-76,-87r0,-67r5,-6r61,-11r5,4r0,120v0,26,5,37,12,43xm312,-497r-6,-4v-9,-15,-12,-28,-12,-41v0,-32,24,-54,49,-69r58,-34r7,2r40,47r-1,7r-104,60v-22,13,-29,23,-31,32xm110,-453r-58,-34r-2,-7r21,-58r6,-3r104,60v16,9,26,13,34,13v3,0,6,-1,9,-2r0,8v-17,29,-39,39,-61,39v-18,0,-38,-7,-53,-16xm136,-287r-40,-47r1,-7r104,-60v22,-13,29,-23,31,-32r6,4v9,15,12,29,12,41v0,32,-24,54,-49,69r-58,34xm292,-251r0,-120v0,-26,-5,-37,-12,-43r7,-4v61,0,76,47,76,87r0,67r-5,6r-61,11","w":542},"+":{"d":"228,-61r0,-161r-129,0r-5,-5r0,-63r5,-5r129,0r0,-143r5,-6r70,-10r5,4r0,155r145,0r4,5r-16,63r-6,5r-127,0r0,161r-5,5r-70,0","w":550},",":{"d":"32,110r42,-209r6,-5r105,0r3,5r-106,224r-7,4r-39,-12","w":247,"k":{"V":45,"9":10,"7":19,"5":15,"4":-11,"T":43,"\u0162":43,"\u0164":43,"\u0166":43,"\u021a":43,"W":43,"\u0174":43,"Y":46,"\u00dd":46,"\u0178":46,"\u0176":46,"v":17,"w":17,"y":17,"\u00fd":17,"\u00ff":17,"\u0175":17,"\u0177":17,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"M":7,"N":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00cc":7,"\u00cd":7,"\u00ce":7,"\u00cf":7,"\u00d0":7,"\u00d1":7,"\u00de":7,"\u0116":7,"\u0118":7,"\u0124":7,"\u012e":7,"\u0141":7,"\u0143":7,"\u010e":7,"\u0112":7,"\u011a":7,"\u0136":7,"\u013b":7,"\u013d":7,"\u0139":7,"\u0145":7,"\u0154":7,"\u0158":7,"\u0156":7,"\u0147":7,"\u0110":7,"\u0130":7,"\u0114":7,"\u0126":7,"\u0128":7,"\u0132":7,"\u013f":7,"\u014a":7,"C":10,"G":10,"O":10,"Q":10,"\u00c7":10,"\u00d2":10,"\u00d3":10,"\u00d4":10,"\u00d5":10,"\u00d6":10,"\u00d8":10,"\u0106":10,"\u0108":10,"\u010c":10,"\u011c":10,"\u0150":10,"\u0152":10,"\u0122":10,"\u014c":10,"\u011e":10,"\u010a":10,"\u0120":10,"\u014e":10,"U":14,"\u00d9":14,"\u00da":14,"\u00db":14,"\u00dc":14,"\u016a":14,"\u016c":14,"\u0170":14,"\u0172":14,"\u016e":14,"\u0168":14}},"-":{"d":"88,-219r-5,-5r0,-70r5,-5r257,0r4,5r-18,70r-6,5r-237,0","w":425,"k":{"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0102":12,"\u0104":12,"\u0100":12,"J":45,"\u0134":45,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":32,"W":31,"\u0174":31,"Y":50,"\u00dd":50,"\u0178":50,"\u0176":50,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"M":10,"N":10,"P":10,"R":10,"\u00c8":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00cc":10,"\u00cd":10,"\u00ce":10,"\u00cf":10,"\u00d0":10,"\u00d1":10,"\u00de":10,"\u0116":10,"\u0118":10,"\u0124":10,"\u012e":10,"\u0141":10,"\u0143":10,"\u010e":10,"\u0112":10,"\u011a":10,"\u0136":10,"\u013b":10,"\u013d":10,"\u0139":10,"\u0145":10,"\u0154":10,"\u0158":10,"\u0156":10,"\u0147":10,"\u0110":10,"\u0130":10,"\u0114":10,"\u0126":10,"\u0128":10,"\u0132":10,"\u013f":10,"\u014a":10,"C":6,"G":6,"O":6,"Q":6,"\u00c7":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"\u00d6":6,"\u00d8":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u011c":6,"\u0150":6,"\u0152":6,"\u0122":6,"\u014c":6,"\u011e":6,"\u010a":6,"\u0120":6,"\u014e":6,"U":9,"\u00d9":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u016a":9,"\u016c":9,"\u0170":9,"\u0172":9,"\u016e":9,"\u0168":9,"S":49,"\u015a":49,"\u015c":49,"\u0160":49,"\u0218":49,"\u015e":49,"X":37,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"x":10,"z":15,"\u017a":15,"\u017c":15,"\u017e":15}},".":{"d":"67,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0","w":236,"k":{"V":45,"9":12,"7":16,"5":16,"J":-8,"\u0134":-8,"T":43,"\u0162":43,"\u0164":43,"\u0166":43,"\u021a":43,"W":44,"\u0174":44,"Y":46,"\u00dd":46,"\u0178":46,"\u0176":46,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0177":19,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"M":6,"N":6,"P":6,"R":6,"\u00c8":6,"\u00c9":6,"\u00ca":6,"\u00cb":6,"\u00cc":6,"\u00cd":6,"\u00ce":6,"\u00cf":6,"\u00d0":6,"\u00d1":6,"\u00de":6,"\u0116":6,"\u0118":6,"\u0124":6,"\u012e":6,"\u0141":6,"\u0143":6,"\u010e":6,"\u0112":6,"\u011a":6,"\u0136":6,"\u013b":6,"\u013d":6,"\u0139":6,"\u0145":6,"\u0154":6,"\u0158":6,"\u0156":6,"\u0147":6,"\u0110":6,"\u0130":6,"\u0114":6,"\u0126":6,"\u0128":6,"\u0132":6,"\u013f":6,"\u014a":6,"C":11,"G":11,"O":11,"Q":11,"\u00c7":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"\u00d6":11,"\u00d8":11,"\u0106":11,"\u0108":11,"\u010c":11,"\u011c":11,"\u0150":11,"\u0152":11,"\u0122":11,"\u014c":11,"\u011e":11,"\u010a":11,"\u0120":11,"\u014e":11,"U":16,"\u00d9":16,"\u00da":16,"\u00db":16,"\u00dc":16,"\u016a":16,"\u016c":16,"\u0170":16,"\u0172":16,"\u016e":16,"\u0168":16}},"\/":{"d":"35,70r195,-735r5,-6r70,-10r6,4r-199,746r-6,6r-68,0","w":346},"0":{"d":"67,-182r0,-160v0,-139,108,-194,218,-194v110,0,218,55,218,194r0,160v0,139,-108,194,-218,194v-110,0,-218,-55,-218,-194xm147,-199v0,95,60,139,138,139v78,0,138,-44,138,-139r0,-126v0,-95,-60,-139,-138,-139v-78,0,-138,44,-138,139r0,126","w":570},"1":{"d":"41,-5r0,-62r5,-5r140,0r0,-380r-95,0r-6,-5r-18,-62r4,-5r190,0r5,5r0,447r146,0r4,5r-18,62r-6,5r-346,0","w":438,"k":{"9":14,"7":13,"5":19,".":-6,",":-8}},"2":{"d":"77,-5r-9,-44v88,-47,289,-176,289,-311v0,-63,-42,-102,-113,-102v-91,0,-142,80,-142,80r-7,0r-53,-36r-1,-8v0,0,63,-110,211,-110v106,0,190,57,190,171v0,161,-181,266,-191,271r-42,22r253,0r4,5r-17,62r-6,5r-361,0","w":515},"3":{"d":"25,35r51,-36r7,0v0,0,52,87,156,87v73,0,142,-45,142,-125r0,-14v0,-75,-61,-118,-166,-118r-44,0r-4,-5r17,-62r6,-5r25,0v111,0,149,-45,149,-110v0,-79,-60,-111,-130,-111v-95,0,-141,73,-141,73r-8,0r-50,-36r-1,-7v0,0,61,-102,200,-102v122,0,210,66,210,183v0,59,-33,125,-90,148v66,21,107,78,107,138r0,38v0,119,-107,187,-219,187v-158,0,-218,-115,-218,-115","w":521},"4":{"d":"39,-35r-15,-49r311,-431r6,-4r58,-10r5,4r0,423r124,0r4,5r-18,62r-6,5r-104,0r0,176r-5,6r-70,10r-5,-4r0,-188r-280,0xm127,-102r197,0r0,-241r2,-35r-17,30r-167,228","w":537,"k":{"7":5,"\/":-8,".":-26,",":-22}},"5":{"d":"1,38r51,-36r7,0v0,0,52,87,158,87v70,0,141,-46,141,-124r0,-30v0,-78,-71,-123,-141,-123v-67,0,-116,27,-116,27r-5,0r-31,-43r0,-315r6,-5r331,0r4,5r-18,62r-6,5r-237,0r0,200v0,0,36,-8,74,-8v110,0,219,66,219,185r0,51v0,117,-109,185,-219,185v-157,0,-219,-115,-219,-115","w":488},"6":{"d":"79,-182r0,-307v0,-115,101,-196,222,-196v139,0,199,110,199,110r0,7r-52,37r-8,0v-1,-3,-51,-82,-139,-82v-68,0,-142,35,-142,139r0,75r-6,47v3,-9,34,-77,148,-77v102,0,210,53,210,196r0,51v0,139,-106,194,-216,194v-110,0,-216,-55,-216,-194xm159,-199v0,95,60,139,136,139v78,0,136,-44,136,-139r0,-16v0,-94,-60,-140,-134,-140v-78,0,-113,16,-138,32r0,124","w":564,"k":{"7":21,"3":5}},"7":{"d":"81,136r250,-588r-288,0r-6,-4r-20,-63r3,-5r395,0r4,5r9,39r-271,635r-6,3r-67,-17","w":455,"k":{"4":20,".":28,",":28}},"8":{"d":"61,-182v0,-68,39,-141,105,-163v-50,-19,-90,-80,-90,-148v0,-127,80,-192,202,-192v120,0,199,65,199,192v0,68,-39,129,-89,148v66,22,104,95,104,163v0,138,-104,194,-214,194v-110,0,-217,-56,-217,-194xm278,-377v76,0,120,-46,120,-116v0,-74,-44,-120,-120,-120v-78,0,-122,46,-122,120v0,70,44,116,122,116xm141,-183v0,79,59,123,137,123v76,0,134,-45,134,-123v0,-76,-58,-126,-134,-126v-78,0,-137,50,-137,126","w":554},"9":{"d":"64,41r52,-37r8,0v0,0,50,82,139,82v68,0,142,-35,142,-139r0,-72r6,-46v0,0,-31,76,-148,76v-102,0,-210,-53,-210,-196r0,-51v0,-139,106,-194,216,-194v110,0,216,55,216,194r0,304v0,115,-101,196,-222,196v-139,0,-199,-110,-199,-110r0,-7xm267,-169v78,0,113,-16,138,-32r0,-124v0,-95,-60,-139,-136,-139v-78,0,-136,44,-136,139r0,16v0,94,60,140,134,140","w":565},":":{"d":"72,-390r-5,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0xm67,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0","w":236},";":{"d":"78,-390r-5,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0xm32,110r42,-209r6,-5r105,0r3,5r-106,224r-7,4r-39,-12","w":247},"<":{"d":"59,-203r-3,-8r16,-77r6,-6r391,-204r5,4r0,71r-5,7r-331,172r331,164r5,7r0,71r-5,4","w":550},"=":{"d":"99,-310r-5,-5r0,-63r5,-5r354,0r4,5r-17,63r-6,5r-335,0xm99,-134r-5,-5r0,-63r5,-5r332,0r4,5r-17,63r-6,5r-313,0","w":550},">":{"d":"76,-1r0,-71r5,-7r331,-172r-331,-164r-5,-7r0,-71r5,-4r410,205r3,8r-16,77r-6,6r-391,204","w":550},"?":{"d":"189,-191r0,-150r5,-6r68,-11v54,-9,84,-54,84,-114r0,-71v0,-72,-42,-109,-113,-109v-71,0,-118,34,-118,109r-6,4r-69,-15r-5,-6v0,-112,88,-172,198,-172v110,0,197,60,197,172r0,105v0,101,-72,166,-169,176r-3,88r-5,5r-59,0xm174,-5r0,-91r5,-5r89,0r5,5r0,91r-5,5r-89,0","w":492},"@":{"d":"65,-157r0,-55v0,-282,123,-473,401,-473v252,0,376,113,376,359r0,64v0,189,-82,291,-271,307r-8,-4r-41,-108v0,0,-28,79,-143,79v-92,0,-135,-76,-135,-152v0,-258,103,-366,220,-366v80,0,173,38,173,38r5,7r-44,358r22,75v94,-29,142,-102,142,-242r0,-46v0,-217,-103,-297,-296,-297v-220,0,-321,160,-321,408r0,39v0,217,98,298,289,299r3,7r-13,62r-6,4v-230,0,-353,-119,-353,-363xm326,-159v0,54,18,99,83,99v41,0,110,-31,110,-31r37,-320v0,0,-38,-22,-93,-22v-51,0,-137,60,-137,274","w":902},"A":{"d":"12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"B":{"d":"93,-5r0,-665r5,-5r182,0v114,0,219,33,219,171v0,64,-32,119,-93,141v70,23,111,84,111,164v0,139,-106,199,-219,199r-200,0xm177,-399r104,0v69,0,134,-19,134,-100v0,-84,-65,-99,-134,-99r-104,0r0,199xm177,-77r110,0v72,0,145,-31,145,-122v0,-90,-72,-123,-145,-123r-110,0r0,245","w":581,"k":{",":8,";":8,"-":6,"\u2013":6,"\u2014":6,".":7,":":7,"\u2026":7}},"C":{"d":"71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v82,0,141,-33,169,-93r7,-2r65,25r3,6v-33,95,-121,144,-244,144v-157,0,-262,-84,-262,-245","w":627,"k":{"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,",":5,";":5,"-":55,"\u2013":55,"\u2014":55,".":5,":":5,"\u2026":5,"g":5,"\u011d":5,"\u0123":5,"\u011f":5,"\u0121":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u0219":4,"\u015f":4}},"D":{"d":"93,-5r0,-665r5,-5r224,0v157,0,263,86,263,248r0,182v0,161,-106,245,-263,245r-224,0xm177,-80r145,0v102,0,177,-55,177,-174r0,-166v0,-116,-75,-175,-177,-175r-145,0r0,515","w":656,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"E":{"d":"93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"F":{"d":"93,-5r0,-665r5,-5r337,0r5,5r0,70r-5,5r-258,0r0,210r243,0r4,5r-18,70r-6,5r-223,0r0,300r-5,5r-74,0","w":483,"k":{"\u0129":-11,"x":13,"A":16,"\u00c0":16,"\u00c1":16,"\u00c2":16,"\u00c3":16,"\u00c4":16,"\u00c5":16,"\u00c6":16,"\u0102":16,"\u0104":16,"\u0100":16,"J":46,"\u0134":46,"z":28,"\u017a":28,"\u017c":28,"\u017e":28,",":67,";":67,"-":16,"\u2013":16,"\u2014":16,".":67,":":67,"\u2026":67,"a":34,"\u00e0":34,"\u00e1":34,"\u00e2":34,"\u00e3":34,"\u00e4":34,"\u00e5":34,"\u00e6":34,"\u0103":34,"\u0105":34,"\u0101":34,"m":3,"n":3,"p":3,"r":3,"\u00f1":3,"\u0144":3,"\u0146":3,"\u0148":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0149":3,"\u014b":3}},"G":{"d":"71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v104,0,178,-55,178,-174r0,-23r-115,0r-6,-5r-10,-70r4,-5r206,0r5,5r0,107v0,161,-100,245,-262,245v-157,0,-262,-84,-262,-245","w":653,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"\"":5,"'":5,",":9,";":9,"-":5,"\u2013":5,"\u2014":5,".":8,":":8,"\u2026":8}},"H":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,283r356,0r0,-271r5,-6r74,-10r5,4r0,672r-5,5r-74,0r-5,-5r0,-309r-356,0r0,309r-5,5r-74,0","w":711,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"I":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"J":{"d":"5,-24r-1,-7r30,-62r8,-1v21,16,44,26,73,26v34,0,88,-25,88,-110r0,-487r5,-6r74,-10r5,4r0,507v0,111,-67,182,-167,182v-47,0,-86,-14,-115,-36","w":377,"k":{",":11,";":11,"-":10,"\u2013":10,"\u2014":10,".":11,":":11,"\u2026":11}},"K":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,283r47,0r8,-4r208,-266r8,-5r105,-12r4,5r-238,288r-29,29r29,32r158,210v9,12,35,42,79,42v4,0,8,0,12,-1r4,5r-11,68r-6,5v-6,1,-12,1,-18,1v-77,0,-124,-68,-134,-82r-175,-237r-8,-4r-43,0r0,315r-5,5r-74,0","w":594,"k":{"J":-3,"\u0134":-3,"v":55,"w":55,"y":55,"\u00fd":55,"\u00ff":55,"\u0175":55,"\u0177":55,"C":10,"G":10,"O":10,"Q":10,"\u00c7":10,"\u00d2":10,"\u00d3":10,"\u00d4":10,"\u00d5":10,"\u00d6":10,"\u00d8":10,"\u0106":10,"\u0108":10,"\u010c":10,"\u011c":10,"\u0150":10,"\u0152":10,"\u0122":10,"\u014c":10,"\u011e":10,"\u010a":10,"\u0120":10,"\u014e":10,"U":9,"\u00d9":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u016a":9,"\u016c":9,"\u0170":9,"\u0172":9,"\u016e":9,"\u0168":9,"-":45,"\u2013":45,"\u2014":45,"\u2019":6,"\u201d":6,"g":11,"\u011d":11,"\u0123":11,"\u011f":11,"\u0121":11,"s":5,"\u015b":5,"\u015d":5,"\u0161":5,"\u0219":5,"\u015f":5,"m":4,"n":4,"p":4,"r":4,"\u00f1":4,"\u0144":4,"\u0146":4,"\u0148":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u0149":4,"\u014b":4,"f":9,"\u00df":9,"\u017f":9,"c":8,"d":8,"e":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u0117":8,"\u0119":8,"\u0151":8,"\u0153":8,"\u0113":8,"\u011b":8,"\u014d":8,"\u010f":8,"\u0111":8,"\u010b":8,"\u0115":8,"\u014f":8,"t":12,"\u0163":12,"\u0165":12,"\u0167":12,"\u021b":12,"u":9,"\u00f9":9,"\u00fa":9,"\u00fb":9,"\u00fc":9,"\u016b":9,"\u016d":9,"\u0171":9,"\u0173":9,"\u016f":9,"\u0169":9,"\u00f0":7}},"L":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,597r288,0r4,5r-18,70r-6,5r-347,0","w":474,"k":{"\u00b7":61,"J":-16,"\u0134":-16,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":51,"W":48,"\u0174":48,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0177":19,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u0170":5,"\u0172":5,"\u016e":5,"\u0168":5,"\"":62,"'":62,",":-9,";":-9,"-":64,"\u2013":64,"\u2014":64,"\u2019":61,"\u201d":61,".":-8,":":-8,"\u2026":-8,"\u00bb":-10,"\u203a":-10}},"M":{"d":"93,-5r0,-660r5,-6r75,-10r6,4r225,409r219,-398r5,-6r82,-9r5,4r0,672r-5,5r-74,0r-3,-5r0,-528r-25,55r-162,290r-6,5r-72,0r-6,-5r-162,-290r-23,-55r0,528r-5,5r-74,0","w":809,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"N":{"d":"93,-5r0,-660r5,-6r74,-10r7,4r324,488r26,48r0,-524r5,-6r74,-10r5,4r0,672r-5,5r-71,0r-8,-5r-326,-492r-26,-48r0,540r-5,5r-74,0","w":707,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"O":{"d":"71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"P":{"d":"93,-5r0,-665r5,-5r176,0v63,0,117,9,158,33v53,31,84,86,84,168v0,117,-70,217,-223,217v-55,0,-103,-15,-121,-58r5,40r0,270r-5,5r-74,0xm177,-349v26,9,60,17,95,17v89,0,157,-43,157,-140v0,-102,-75,-126,-155,-126r-97,0r0,249","w":554,"k":{"X":3,";":52,":":84,",":84,"A":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00c6":17,"\u0102":17,"\u0104":17,"\u0100":17,"J":49,"\u0134":49,"-":24,"\u2013":24,"\u2014":24,".":84,"\u2026":84}},"Q":{"d":"71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,157,-101,240,-249,245v-5,4,-9,17,-9,38v0,39,22,65,59,65r80,0r5,5r0,79r-5,5r-80,0v-87,0,-125,-62,-125,-109v0,-36,17,-67,47,-83v-149,-5,-249,-89,-249,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"R":{"d":"93,-5r0,-665r5,-5r178,0v53,0,105,9,147,35v49,31,83,84,83,164v0,186,-195,195,-195,195r22,22r117,141v17,20,42,42,80,42v4,0,7,-1,11,-1r4,5r-11,68r-6,5v-7,1,-14,2,-21,2v-69,0,-115,-60,-133,-83r-156,-194r-7,-4r-34,0r0,273r-5,5r-74,0xm177,-355r98,0v73,0,147,-28,147,-121v0,-91,-74,-122,-147,-122r-98,0r0,243","w":583,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"-":33,"\u2013":33,"\u2014":33}},"S":{"d":"50,-48r-2,-7r41,-56r9,-1v29,25,93,44,137,44v71,0,131,-31,131,-115v0,-161,-299,-90,-299,-310v0,-120,92,-192,200,-192v100,0,163,41,172,50r1,7r-38,58r-8,1v-28,-21,-71,-36,-123,-36v-80,0,-118,46,-118,109v0,150,299,81,299,312v0,150,-119,196,-220,196v-47,0,-130,-19,-182,-60","w":508,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"x":3,",":5,";":5,"-":6,"\u2013":6,"\u2014":6}},"T":{"d":"207,-5r0,-590r-186,0r-5,-5r0,-70r5,-5r469,0r4,5r-18,70r-6,5r-179,0r0,590r-5,5r-74,0","w":497,"k":{"\u0166":-17,"\u0149":55,"\u0138":55,"\u0129":-40,"\u0127":-9,"\u0159":55,"\u012b":-23,"\u017e":62,"\u0161":71,"\u015d":71,"\u0135":-22,"\u0131":55,"\u00ef":-18,"\u00ee":-22,"\u00ec":-19,"\u00e3":62,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":53,"\u0134":53,"T":-17,"\u0162":-17,"\u0164":-17,"\u021a":-17,"V":-18,"W":-17,"\u0174":-17,"Y":-19,"\u00dd":-19,"\u0178":-19,"\u0176":-19,"v":64,"w":64,"y":64,"\u00fd":64,"\u00ff":64,"\u0175":64,"\u0177":64,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":68,"z":62,"\u017a":62,"\u017c":62,"\"":-15,"'":-15,",":41,";":41,"-":46,"\u2013":46,"\u2014":46,"\u2019":-9,"\u201d":-9,".":42,":":42,"\u2026":42,"g":57,"\u011d":57,"\u0123":57,"\u011f":57,"\u0121":57,"s":71,"\u015b":71,"\u0219":71,"\u015f":71,"a":62,"\u00e0":62,"\u00e1":62,"\u00e2":62,"\u00e4":62,"\u00e5":62,"\u00e6":62,"\u0103":62,"\u0105":62,"\u0101":62,"m":55,"n":55,"p":55,"r":55,"\u00f1":55,"\u0144":55,"\u0146":55,"\u0148":55,"\u0155":55,"\u0157":55,"\u014b":55,"c":56,"d":56,"e":56,"o":56,"q":56,"\u00e7":56,"\u00e8":56,"\u00e9":56,"\u00ea":56,"\u00eb":56,"\u00f2":56,"\u00f3":56,"\u00f4":56,"\u00f5":56,"\u00f6":56,"\u00f8":56,"\u0107":56,"\u0109":56,"\u010d":56,"\u0117":56,"\u0119":56,"\u0151":56,"\u0153":56,"\u0113":56,"\u011b":56,"\u014d":56,"\u010f":56,"\u0111":56,"\u010b":56,"\u0115":56,"\u014f":56,"t":6,"\u0163":6,"\u0165":6,"\u0167":6,"\u021b":6,"u":56,"\u00f9":56,"\u00fa":56,"\u00fb":56,"\u00fc":56,"\u016b":56,"\u016d":56,"\u0171":56,"\u0173":56,"\u016f":56,"\u0169":56,"\u00f0":38,")":-14,"?":-12,"]":-12,"}":-12,"\u1e9e":3}},"U":{"d":"86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"V":{"d":"243,-13r-230,-651r5,-6r79,-11r6,4r174,530r19,66r18,-66r172,-516r5,-6r87,-12r6,4r-241,679r-7,5r-87,-14","w":594,"k":{"\u0166":-10,"\u0138":8,"\u0129":-30,"\u012b":-16,"\u0135":-9,"\u0131":8,"\u00f0":16,"\u00ef":-11,"\u00ee":-9,"\u00ec":-21,"}":-8,"]":-8,"?":-9,")":-9,"A":21,"\u00c0":21,"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u00c4":21,"\u00c5":21,"\u00c6":21,"\u0102":21,"\u0104":21,"\u0100":21,"J":29,"\u0134":29,"T":-10,"\u0162":-10,"\u0164":-10,"\u021a":-10,"z":3,"\u017a":3,"\u017c":3,"\u017e":3,"\"":-8,"'":-8,",":46,";":46,"-":33,"\u2013":33,"\u2014":33,".":46,":":46,"\u2026":46,"g":8,"\u011d":8,"\u0123":8,"\u011f":8,"\u0121":8,"s":9,"\u015b":9,"\u015d":9,"\u0161":9,"\u0219":9,"\u015f":9,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"\u0103":13,"\u0105":13,"\u0101":13,"m":4,"n":4,"p":4,"r":4,"\u00f1":4,"\u0144":4,"\u0146":4,"\u0148":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u0149":4,"\u014b":4,"c":13,"d":13,"e":13,"o":13,"q":13,"\u00e7":13,"\u00e8":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00f2":13,"\u00f3":13,"\u00f4":13,"\u00f5":13,"\u00f6":13,"\u00f8":13,"\u0107":13,"\u0109":13,"\u010d":13,"\u0117":13,"\u0119":13,"\u0151":13,"\u0153":13,"\u0113":13,"\u011b":13,"\u014d":13,"\u010f":13,"\u0111":13,"\u010b":13,"\u0115":13,"\u014f":13,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u0171":7,"\u0173":7,"\u016f":7,"\u0169":7}},"W":{"d":"236,-13r-222,-651r5,-6r79,-11r6,4r155,499r20,74r15,-74r104,-371r0,-116r5,-6r74,-10r5,4r0,140r98,359r15,74r18,-74r143,-485r5,-6r88,-12r6,4r-225,679r-7,5r-72,-14r-6,-6r-94,-338r-14,-67r-14,67r-100,353r-7,5r-74,-14","w":870,"k":{"\u0138":7,"\u0129":-25,"\u012b":-12,"\u0135":-6,"\u0131":7,"\u00ef":-7,"\u00ee":-6,"\u00ec":-16,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0102":19,"\u0104":19,"\u0100":19,"J":27,"\u0134":27,"T":-5,"\u0162":-5,"\u0164":-5,"\u0166":-5,"\u021a":-5,"z":3,"\u017a":3,"\u017c":3,"\u017e":3,"\"":-6,"'":-6,",":44,";":44,"-":32,"\u2013":32,"\u2014":32,".":44,":":44,"\u2026":44,"g":7,"\u011d":7,"\u0123":7,"\u011f":7,"\u0121":7,"s":8,"\u015b":8,"\u015d":8,"\u0161":8,"\u0219":8,"\u015f":8,"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"\u0103":11,"\u0105":11,"\u0101":11,"m":3,"n":3,"p":3,"r":3,"\u00f1":3,"\u0144":3,"\u0146":3,"\u0148":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0149":3,"\u014b":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00e7":12,"\u00e8":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u0107":12,"\u0109":12,"\u010d":12,"\u0117":12,"\u0119":12,"\u0151":12,"\u0153":12,"\u0113":12,"\u011b":12,"\u014d":12,"\u010f":12,"\u0111":12,"\u010b":12,"\u0115":12,"\u014f":12,"u":6,"\u00f9":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u016b":6,"\u016d":6,"\u0171":6,"\u0173":6,"\u016f":6,"\u0169":6,"\u00f0":15,")":-8,"?":-8,"]":-7,"}":-6}},"X":{"d":"27,-5r208,-340r-189,-319r5,-6r76,-11r6,3r138,244r17,34r16,-34r129,-229r6,-6r91,-12r6,4r-195,332r206,340r-3,5r-90,0r-6,-5r-144,-252r-16,-34r-17,34r-143,252r-6,5r-91,0","w":575,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"\u0175":9,"\u0177":9,"-":36,"\u2013":36,"\u2014":36,"g":4,"\u011d":4,"\u0123":4,"\u011f":4,"\u0121":4,"t":3,"\u0163":3,"\u0165":3,"\u0167":3,"\u021b":3,"u":3,"\u00f9":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u016b":3,"\u016d":3,"\u0171":3,"\u0173":3,"\u016f":3,"\u0169":3}},"Y":{"d":"215,-5r0,-291r-203,-367r5,-7r84,-11r6,4r134,266r16,39r17,-39r127,-252r5,-6r91,-12r6,4r-204,381r0,291r-5,5r-74,0","w":514,"k":{"\u0166":-9,"\u0138":24,"\u0129":-25,"\u0159":13,"\u012b":-15,"\u0131":24,"\u00ef":-10,"\u00ec":-20,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":27,"\u0134":27,"T":-9,"\u0162":-9,"\u0164":-9,"\u021a":-9,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":4,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"\"":-5,"'":-5,",":46,";":46,"-":50,"\u2013":50,"\u2014":50,".":46,":":46,"\u2026":46,"g":31,"\u011d":31,"\u0123":31,"\u011f":31,"\u0121":31,"s":26,"\u015b":26,"\u015d":26,"\u0161":26,"\u0219":26,"\u015f":26,"a":24,"\u00e0":24,"\u00e1":24,"\u00e2":24,"\u00e3":24,"\u00e4":24,"\u00e5":24,"\u00e6":24,"\u0103":24,"\u0105":24,"\u0101":24,"m":13,"n":13,"p":13,"r":13,"\u00f1":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u0155":13,"\u0157":13,"\u0149":13,"\u014b":13,"c":37,"d":37,"e":37,"o":37,"q":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"\u0107":37,"\u0109":37,"\u010d":37,"\u0117":37,"\u0119":37,"\u0151":37,"\u0153":37,"\u0113":37,"\u011b":37,"\u014d":37,"\u010f":37,"\u0111":37,"\u010b":37,"\u0115":37,"\u014f":37,"u":21,"\u00f9":21,"\u00fa":21,"\u00fb":21,"\u00fc":21,"\u016b":21,"\u016d":21,"\u0171":21,"\u0173":21,"\u016f":21,"\u0169":21,"\u00f0":30,")":-11,"?":-9,"]":-11,"}":-11,"\u1e9e":4}},"Z":{"d":"55,-5r-10,-49r322,-541r-306,0r-4,-5r10,-70r6,-5r397,0r5,5r0,49r-321,541r314,0r5,5r0,70r-5,5r-407,0","w":526,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":57,"\u2013":57,"\u2014":57,"g":6,"\u011d":6,"\u0123":6,"\u011f":6,"\u0121":6,"u":3,"\u00f9":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u016b":3,"\u016d":3,"\u0171":3,"\u0173":3,"\u016f":3,"\u0169":3}},"[":{"d":"92,113r0,-783r5,-5r172,0r4,5r-19,58r-6,5r-79,0r0,657r79,0r6,5r19,58r-4,5r-172,0","w":308,"k":{"\u0129":-26,"\u012b":-17,"\u0135":-75,"\u00ef":-15,"\u00ee":-16,"\u00ec":-12,"V":-7,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"W":-8,"\u0174":-8,"Y":-12,"\u00dd":-12,"\u0178":-12,"\u0176":-12}},"\\":{"d":"231,69r-196,-735r5,-6r61,-9r5,4r201,747r-3,5r-67,0","w":342},"]":{"d":"54,55r6,-5r79,0r0,-657r-79,0r-6,-5r-19,-58r4,-5r172,0r5,5r0,783r-5,5r-172,0r-4,-5","w":308},"^":{"d":"5,-265r-3,-5r199,-394r7,-5r82,-12r5,4r206,407r-3,5r-75,0r-5,-5r-167,-333r-166,333r-5,5r-75,0","w":503},"_":{"d":"35,5r5,-5r476,0r5,5r0,63r-5,5r-476,0r-5,-5r0,-63","w":556},"`":{"d":"264,-569r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0"},"a":{"d":"40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474,"k":{"Y":34,"W":13,"V":15,"T":55}},"b":{"d":"76,-11r0,-700r5,-6r70,-10r5,4r0,251r-5,44v8,-18,38,-78,139,-78v88,0,154,59,154,175r0,170v0,112,-79,173,-182,173v-61,0,-117,-27,-117,-27r-64,9xm156,-78v0,0,48,18,98,18v66,0,110,-41,110,-118r0,-139v0,-86,-49,-117,-108,-117v-22,0,-82,18,-100,23r0,333","w":504,"k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"c":{"d":"59,-161r0,-171v0,-102,72,-174,195,-174v75,0,142,34,170,102r-3,6r-60,21r-7,-2v-18,-34,-55,-55,-105,-55v-67,0,-110,41,-110,118r0,138v0,77,43,118,110,118v62,0,93,-22,110,-53r7,-2r60,21r3,6v-25,65,-90,100,-175,100v-123,0,-195,-71,-195,-173","w":472,"k":{"Y":14,"W":6,"V":7,"T":54,"-":36,"\u2013":36,"\u2014":36}},"d":{"d":"60,-164r0,-169v0,-113,77,-173,182,-173v41,0,79,12,110,34r-4,-44r0,-195r5,-6r70,-10r5,4r0,625r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176xm140,-181v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-240v0,-70,-36,-106,-103,-106v-61,0,-105,40,-105,117r0,136","w":507},"e":{"d":"59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477,"k":{"Y":25,"W":7,"V":9,"T":70}},"f":{"d":"101,189r0,-611r-65,0r-5,-5r0,-62r5,-5r65,0r0,-105v0,-110,90,-164,181,-164v38,0,73,10,98,23r1,7r-38,55r-7,2v-15,-7,-32,-11,-54,-11v-53,0,-101,26,-101,84r0,109r157,0r5,5r-19,62r-7,5r-136,0r0,541r-20,101r-6,7r-49,-29","w":324,"k":{"\u0149":-7,"\u0129":-26,"\u0159":-10,"\u012b":-38,"\u0125":-12,"\u00ef":-48,"\u00ec":-63,"}":-24,"]":-24,"Y":-40,"X":-6,"W":-39,"V":-40,"T":-37,"J":9,"?":-16,")":-22,"!":-19,"\"":-46,"'":-46,",":12,";":12,"-":11,"\u2013":11,"\u2014":11,"\u2019":-46,"\u201d":-46,".":12,":":12,"\u2026":12,"\u00bb":-13,"\u203a":-13,"|":-24}},"g":{"d":"102,-61v0,-37,19,-67,45,-83v0,0,-107,-29,-107,-173v0,-116,71,-182,188,-182r99,0r110,-23r6,4r10,55r-4,7r-68,19v33,20,49,72,49,122v0,110,-72,185,-192,185v-35,0,-64,-5,-64,-5v0,0,-6,15,-6,30v0,40,22,64,60,64r62,0v97,0,147,56,147,132v0,95,-94,140,-188,140v-97,0,-178,-30,-210,-96r2,-7r60,-27r7,2v0,0,22,56,139,56v72,0,110,-34,110,-71v0,-29,-23,-57,-67,-57r-62,0v-83,0,-126,-46,-126,-92xm233,-201v78,0,118,-39,118,-116v0,-79,-40,-117,-118,-117v-68,0,-114,39,-114,117v0,76,40,116,114,116","w":486,"k":{"Z":6,"T":46}},"h":{"d":"76,-5r0,-706r5,-6r70,-10r5,4r0,251r-5,44v8,-18,43,-78,144,-78v88,0,154,59,154,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-49,-117,-108,-117v-22,0,-87,18,-105,23r0,406r-5,5r-70,0","w":522,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"i":{"d":"74,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231},"j":{"d":"74,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm75,39r0,-522r5,-6r70,-10r5,4r0,540v0,116,-63,186,-162,186v-50,0,-86,-17,-116,-39r-2,-6r32,-58r5,-1v0,0,31,32,77,32v37,0,86,-33,86,-120","w":231},"k":{"d":"76,-5r0,-706r5,-6r70,-10r5,4r0,409r8,0r143,-171r7,-4r105,-10r5,5r-161,176r-23,20r21,24r104,158v11,16,34,48,73,48v4,0,9,0,14,-1r5,5r-11,64r-5,5v-6,1,-11,1,-17,1v-77,0,-112,-55,-131,-84r-129,-201r-8,0r0,274r-4,5r-72,0","w":475,"k":{"Y":8,"W":7,"V":7,"U":5,"T":51,"J":-3,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0175":6,"\u0177":6,"C":6,"G":6,"O":6,"Q":6,"\u00c7":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"\u00d6":6,"\u00d8":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u011c":6,"\u0150":6,"\u0152":6,"\u0122":6,"\u014c":6,"\u011e":6,"\u010a":6,"\u0120":6,"\u014e":6,",":-12,";":-12,"-":7,"\u2013":7,"\u2014":7,".":-8,":":-8,"\u2026":-8,"g":6,"\u011d":6,"\u0123":6,"\u011f":6,"\u0121":6,"f":3,"\u00df":3,"\u017f":3,"c":6,"d":6,"e":6,"o":6,"q":6,"\u00e7":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00f2":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"\u00f6":6,"\u00f8":6,"\u0107":6,"\u0109":6,"\u010d":6,"\u0117":6,"\u0119":6,"\u0151":6,"\u0153":6,"\u0113":6,"\u011b":6,"\u014d":6,"\u010f":6,"\u0111":6,"\u010b":6,"\u0115":6,"\u014f":6,"t":5,"\u0163":5,"\u0165":5,"\u0167":5,"\u021b":5,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u016b":4,"\u016d":4,"\u0171":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u00f0":6}},"l":{"d":"74,-110r0,-601r5,-6r70,-10r5,4r0,608v0,39,30,45,45,45r4,0r4,5r-11,63r-5,5r-8,0v-27,0,-109,-8,-109,-113","w":247,"k":{"\u00b7":58}},"m":{"d":"79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v57,0,101,25,124,74v11,-20,50,-74,146,-74v88,0,153,59,153,173r0,328r-5,5r-71,0r-4,-5r0,-312v0,-86,-49,-116,-106,-116v-22,0,-81,15,-104,22v6,20,11,43,11,70r0,336r-5,5r-70,0r-5,-5r0,-312v0,-86,-40,-117,-97,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0","w":790,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"n":{"d":"79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,159,59,159,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-55,-117,-112,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0","w":525,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"o":{"d":"59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"p":{"d":"155,-23r4,46r0,187r-5,6r-70,10r-5,-4r0,-612r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,154,59,154,173r0,172v0,112,-78,173,-183,173v-41,0,-81,-13,-110,-35xm159,-166v0,71,35,106,103,106v61,0,106,-41,106,-118r0,-139v0,-86,-50,-117,-107,-117v-22,0,-83,18,-102,23r0,245","w":508,"k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"q":{"d":"60,-163r0,-170v0,-112,79,-173,182,-173v59,0,115,31,115,31r66,-18r5,5r0,698r-5,6r-70,10r-5,-4r0,-244r5,-44v-8,18,-38,78,-139,78v-88,0,-154,-59,-154,-175xm140,-177v0,86,49,117,108,117v22,0,82,-18,100,-23r0,-245v0,-70,-36,-106,-103,-106v-62,0,-105,41,-105,118r0,139","w":505,"k":{"Y":20,"W":6,"V":7,"T":58}},"r":{"d":"79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,137,-81r5,6r-15,84r-7,5v-14,-7,-31,-9,-52,-9v-22,0,-42,3,-63,9r0,406r-5,5r-70,0","w":309,"k":{"Z":31,"X":4,"T":48,"J":19,"A":5,"\"":-9,"'":-9,",":15,";":15,"-":13,"\u2013":13,"\u2014":13,"\u2019":-23,"\u201d":-23,".":15,":":15,"\u2026":15,"\u00f0":3}},"s":{"d":"48,-34r-1,-6r38,-53r8,-1v21,18,73,34,104,34v52,0,100,-16,100,-78v0,-102,-247,-47,-247,-221v0,-103,91,-147,180,-147v46,0,90,12,129,39r2,7r-39,53r-7,0v-22,-15,-55,-27,-83,-27v-59,0,-100,28,-100,75v0,111,247,45,247,221v0,116,-84,150,-179,150v-58,0,-114,-17,-152,-46","w":423,"k":{"Y":13,"W":6,"V":7,"T":63}},"t":{"d":"89,-175r0,-247r-54,0r-5,-5r0,-62r5,-5r58,0r9,-101r5,-6r57,-8r5,4r0,111r166,0r5,5r-19,62r-7,5r-145,0r0,241v0,68,33,119,88,119v38,0,74,-31,74,-31r7,1r31,57r-2,7v-33,23,-72,40,-117,40v-91,0,-161,-62,-161,-187","w":379,"k":{"T":42,"J":-16,",":-21,";":-21,".":-12,":":-12,"\u2026":-12}},"u":{"d":"71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518,"k":{"Y":18,"W":6,"V":7,"T":56}},"v":{"d":"192,-13r-178,-470r5,-6r77,-10r5,4r118,359r14,53r14,-53r114,-348r6,-5r80,-10r3,5r-183,497r-7,4r-61,-14","w":462,"k":{"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0102":4,"\u0104":4,"\u0100":4,"J":14,"\u0134":14,"T":60,"\u0162":60,"\u0164":60,"\u0166":60,"\u021a":60,"X":6,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"\"":-9,"'":-9,",":19,";":19,"\u2019":-23,"\u201d":-23,".":19,":":19,"\u2026":19}},"w":{"d":"191,-12r-177,-471r5,-6r75,-10r5,4r121,359r14,53r14,-53r81,-244r0,-103r5,-6r69,-10r5,4r0,128r75,231r14,53r14,-53r116,-348r6,-5r81,-10r3,5r-182,495r-7,6r-68,-14r-6,-6r-77,-234r-12,-49r-13,49r-81,248r-7,6r-67,-13","w":730,"k":{"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0102":4,"\u0104":4,"\u0100":4,"J":14,"\u0134":14,"T":60,"\u0162":60,"\u0164":60,"\u0166":60,"\u021a":60,"X":6,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"\"":-9,"'":-9,",":19,";":19,"\u2019":-23,"\u201d":-23,".":19,":":19,"\u2026":19}},"x":{"d":"27,-5r169,-245r-161,-233r5,-6r73,-10r7,4r107,166r15,27r14,-27r100,-155r8,-5r84,-10r6,4r-165,241r172,249r-4,5r-82,0r-8,-5r-111,-171r-14,-25r-13,25r-110,171r-8,5r-80,0","w":487,"k":{"T":60,"-":11,"\u2013":11,"\u2014":11}},"y":{"d":"4,128v0,0,32,31,78,31v40,0,71,-31,93,-91r31,-84r-11,-4r-8,-7r-172,-456r5,-6r78,-10r5,4r117,360r15,53r12,-44r114,-358r6,-5r80,-10r3,5r-209,595v-29,83,-83,130,-157,130v-48,0,-85,-17,-115,-39r-2,-8r30,-54","w":465,"k":{"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0102":4,"\u0104":4,"\u0100":4,"J":14,"\u0134":14,"T":60,"\u0162":60,"\u0164":60,"\u0166":60,"\u021a":60,"X":6,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"\"":-9,"'":-9,",":19,";":19,"\u2019":-23,"\u201d":-23,".":19,":":19,"\u2026":19}},"z":{"d":"51,-5r-10,-45r241,-372r-229,0r-5,-5r11,-62r7,-5r313,0r5,5r0,47r-244,370r238,0r5,5r0,62r-5,5r-320,0","w":431,"k":{"Y":4,"T":64,"-":11,"\u2013":11,"\u2014":11}},"{":{"d":"135,-47r0,-120v0,-55,-17,-98,-93,-108r-4,-5r18,-60r7,-5v60,-15,72,-52,72,-103r0,-67v0,-98,69,-164,187,-164r23,0r4,5r-18,58r-6,5v-68,0,-115,36,-115,114r0,47v0,66,-29,121,-86,144v55,24,86,73,86,135r0,106v0,80,47,116,115,116r6,5r18,58r-4,5r-23,0v-118,0,-187,-67,-187,-166","w":384,"k":{"\u0129":-25,"\u012b":-16,"\u0135":-75,"\u00ef":-14,"\u00ee":-13,"\u00ec":-12,"V":-7,"T":-7,"\u0162":-7,"\u0164":-7,"\u0166":-7,"\u021a":-7,"W":-7,"\u0174":-7,"Y":-12,"\u00dd":-12,"\u0178":-12,"\u0176":-12}},"|":{"d":"87,215r0,-925r5,-6r70,-10r5,4r0,937r-5,5r-70,0","w":256},"}":{"d":"53,56r6,-5v68,0,115,-36,115,-116r0,-106v0,-62,31,-111,86,-135v-57,-23,-86,-78,-86,-144r0,-47v0,-78,-47,-114,-115,-114r-6,-5r-18,-58r4,-5r23,0v118,0,187,66,187,164r0,67v0,67,18,91,91,108r4,7r-18,57r-7,5v-57,16,-70,56,-70,104r0,120v0,99,-69,166,-187,166r-23,0r-4,-5","w":383},"~":{"d":"66,-265r-5,-5v0,-116,63,-164,137,-164v105,0,128,97,192,97v56,0,67,-46,67,-88r5,-5r67,0r5,5v0,116,-63,164,-137,164v-105,0,-128,-97,-192,-97v-55,0,-67,47,-67,88r-5,5r-67,0","w":588},"\u00a1":{"d":"83,-393r-5,-5r0,-91r5,-5r89,0r5,5r0,91r-5,5r-89,0xm77,227r19,-530r5,-5r53,0r5,5r21,516r-5,6r-92,12","w":255,"k":{"\u0135":-73,"j":-73}},"\u00a2":{"d":"239,-5r0,-75v-98,-11,-183,-75,-183,-192r0,-31v0,-116,85,-179,183,-191r0,-76r5,-6r48,-7r5,4r0,84v71,6,138,36,171,98r-3,6r-61,25r-7,-2v-20,-31,-59,-49,-100,-54r0,271v41,-5,80,-23,100,-55r7,-2r60,25r3,6v-33,63,-100,93,-170,98r0,74r-5,5r-48,0xm239,-153r0,-267v-60,12,-103,57,-103,119r0,27v0,64,43,109,103,121","w":520},"\u00a3":{"d":"55,-48r3,-6v0,0,58,0,64,-44r23,-170r-83,0r-5,-5r0,-62r5,-5r90,0r10,-79v13,-104,81,-166,174,-166v83,0,128,36,128,36r1,7r-22,55r-7,2v0,0,-42,-28,-101,-28v-43,0,-83,30,-94,112r-8,61r162,0r4,5r-18,62r-6,5r-150,0r-19,149r-12,50r24,0v65,0,112,41,167,41v39,0,78,-23,78,-86v0,-28,-10,-51,-10,-51r4,-6r60,-12r7,3v7,22,13,43,13,69v0,106,-65,155,-143,155v-63,0,-122,-44,-185,-44v-44,0,-123,17,-123,17r-6,-3","w":583},"\u00a5":{"d":"80,-149r-5,-5r0,-60r5,-5r156,0r0,-29r-38,-67r-118,0r-5,-5r0,-60r5,-5r79,0r-100,-180r5,-7r82,-11r6,4r108,216r16,39r17,-39r102,-202r5,-6r89,-12r6,4r-105,194r104,0r4,5r-17,60r-6,5r-123,0r-36,67r0,29r156,0r4,5r-17,60r-6,5r-137,0r0,144r-5,5r-70,0r-5,-5r0,-144r-156,0","w":556},"\u00a6":{"d":"102,-340r-5,-5r0,-365r4,-6r70,-11r6,4r0,378r-5,5r-70,0xm97,-161r5,-5r70,0r5,5r0,376r-5,5r-70,0r-5,-5r0,-376","w":274},"\u00a7":{"d":"140,-3r-67,-480v-2,-14,-4,-32,-4,-44v0,-96,56,-158,164,-158v56,0,112,19,156,65r0,7r-47,47r-7,-2v-26,-29,-70,-43,-102,-43v-44,0,-88,25,-88,78v0,4,1,14,2,20r79,570r-4,10r-44,34r-6,-6xm284,-461r67,480v2,14,4,32,4,44v0,96,-56,158,-164,158v-56,0,-112,-19,-156,-65r0,-7r47,-47r7,2v26,29,70,43,102,43v44,0,88,-25,88,-78v0,-4,-1,-14,-2,-20r-79,-570r4,-10r44,-34r6,6","w":424},"\u00a8":{"d":"283,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm146,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0"},"\u00a9":{"d":"61,-276r0,-119v0,-199,172,-292,333,-292v164,0,333,93,333,292r0,119v0,200,-169,293,-333,293v-161,0,-333,-93,-333,-293xm126,-296v0,176,126,250,268,250v144,0,268,-74,268,-250r0,-78v0,-177,-124,-250,-268,-250v-142,0,-268,73,-268,250r0,78xm238,-276r0,-115v0,-99,60,-152,158,-152v70,0,127,34,147,91r-3,6r-51,20r-7,-2v-20,-29,-47,-49,-86,-49v-51,0,-90,30,-90,90r0,107v0,60,39,89,90,89v43,0,76,-20,92,-54r7,-2r50,18r3,6v-20,66,-76,98,-152,98v-98,0,-158,-52,-158,-151","w":788},"\u00aa":{"d":"139,-365v-48,0,-92,-32,-92,-91v0,-63,37,-92,92,-92r53,0v9,0,17,-4,17,-4r0,-25v0,-38,-26,-46,-53,-46v-21,0,-42,7,-60,19r-8,-1r-25,-38r2,-8v25,-19,56,-31,91,-31v65,0,115,28,115,97r0,147r12,59r-5,6r-45,6r-6,-4r-13,-42v0,0,-15,48,-75,48xm148,-420v22,0,61,-13,61,-13r0,-89v0,0,-16,28,-47,28r-22,0v-20,0,-31,17,-31,38v0,22,17,36,39,36","w":337},"\u00ab":{"d":"233,-244r0,-7r126,-190r9,-6r75,0r6,7r-130,192r130,192r-6,7r-75,0r-9,-6xm170,-55r-126,-189r0,-7r126,-190r9,-6r75,0r6,7r-130,192r130,192r-6,7r-75,0","w":500,"k":{"J":-8,"\u0134":-8}},"\u00ae":{"d":"236,-291v-91,0,-188,-53,-188,-165r0,-65v0,-111,97,-164,188,-164v92,0,188,53,188,164r0,65v0,112,-96,165,-188,165xm236,-332v76,0,142,-40,142,-135r0,-42v0,-96,-66,-135,-142,-135v-75,0,-142,39,-142,135r0,42v0,95,67,135,142,135xm172,-372r-5,-5r0,-221r5,-5r62,0v41,0,84,13,84,71v0,35,-25,58,-54,64r34,45v5,6,13,8,22,8r3,0r5,5r-5,33r-5,5r-12,0v-20,0,-35,-10,-47,-29r-42,-64r-2,0r0,88r-5,5r-38,0xm215,-502r19,0v18,0,36,-9,36,-30v0,-23,-18,-28,-36,-28r-19,0r0,58","w":472},"\u00af":{"d":"144,-608r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0","w":503},"\u00b0":{"d":"177,-431v-67,0,-133,-38,-133,-115r0,-25v0,-77,66,-114,133,-114v67,0,133,37,133,114r0,25v0,77,-66,115,-133,115xm177,-492v41,0,69,-17,69,-66v0,-46,-28,-66,-69,-66v-41,0,-69,20,-69,66v0,49,28,66,69,66","w":354},"\u00b1":{"d":"228,-61r0,-161r-129,0r-5,-5r0,-63r5,-5r129,0r0,-143r5,-6r70,-10r5,4r0,155r145,0r4,5r-16,63r-6,5r-127,0r0,161r-5,5r-70,0xm94,27r5,-5r358,0r4,5r-18,69r-6,5r-338,0r-5,-5r0,-69","w":550},"\u00b2":{"d":"62,-365r-6,-5r-7,-31v4,-80,184,-165,184,-253v0,-33,-24,-62,-59,-62v-29,0,-56,19,-78,50r-5,0r-43,-31r0,-5v0,0,43,-76,128,-76v64,0,126,43,126,121v0,104,-154,190,-169,230r179,0r4,5r-14,52r-6,5r-234,0","w":365},"\u00b3":{"d":"175,-361v-95,0,-137,-77,-137,-77r1,-6r45,-34r8,0v0,0,29,55,83,55v37,0,72,-21,72,-59r0,-10v0,-36,-32,-57,-88,-57r-37,0r-4,-5r18,-51r6,-5r17,0v57,0,79,-23,79,-53v0,-39,-30,-55,-67,-55v-43,0,-66,35,-77,44r-8,1r-43,-29r0,-7v0,0,43,-71,128,-71v76,0,132,42,132,116v0,31,-13,65,-47,83v41,16,56,50,56,81r0,23v0,76,-66,116,-137,116","w":361},"\u00b4":{"d":"232,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0"},"\u00b6":{"d":"270,-164v-110,0,-214,-55,-214,-194r0,-125v0,-139,104,-192,214,-192r272,0r4,5r-10,67r-6,5r-183,0r0,813r-4,4r-68,0r-5,-4r0,-379xm399,214r0,-754r5,-5r67,0r5,5r0,754r-5,5r-67,0","w":581},"\u00b7":{"d":"85,-211r-5,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0","w":262,"k":{"l":58,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"M":7,"N":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00cc":7,"\u00cd":7,"\u00ce":7,"\u00cf":7,"\u00d0":7,"\u00d1":7,"\u00de":7,"\u0116":7,"\u0118":7,"\u0124":7,"\u012e":7,"\u0141":7,"\u0143":7,"\u010e":7,"\u0112":7,"\u011a":7,"\u0136":7,"\u013b":7,"\u013d":7,"\u0139":7,"\u0145":7,"\u0154":7,"\u0158":7,"\u0156":7,"\u0147":7,"\u0110":7,"\u0130":7,"\u0114":7,"\u0126":7,"\u0128":7,"\u0132":7,"\u013f":7,"\u014a":7}},"\u00b8":{"d":"168,103r7,-3v14,10,29,16,44,16v51,0,68,-31,68,-67v0,-17,-17,-49,-17,-49r30,0v0,0,47,38,47,83v0,59,-46,93,-102,93v-29,0,-67,-10,-88,-32r-2,-7"},"\u00b9":{"d":"57,-365r-5,-5r0,-52r5,-5r93,0r0,-284r-68,0r-6,-5r-13,-52r4,-5r144,0r5,5r0,341r96,0r4,5r-13,52r-6,5r-240,0","w":362},"\u00ba":{"d":"173,-365v-68,0,-120,-37,-120,-107r0,-102v0,-70,52,-108,120,-108v68,0,120,38,120,108r0,102v0,70,-52,107,-120,107xm173,-423v36,0,58,-20,58,-60r0,-82v0,-39,-22,-58,-58,-58v-36,0,-58,19,-58,58r0,82v0,40,22,60,58,60","w":346},"\u00bb":{"d":"240,-56r130,-192r-130,-192r6,-7r75,0r9,6r126,190r0,7r-126,189r-9,6r-75,0xm57,-49r-6,-7r130,-192r-130,-192r6,-7r75,0r9,6r126,190r0,7r-126,189r-9,6r-75,0","w":500},"\u00bc":{"d":"48,-267r-5,-5r0,-52r5,-5r93,0r0,-284r-68,0r-6,-5r-13,-52r4,-5r144,0r5,5r0,341r96,0r4,5r-13,52r-6,5r-240,0xm261,-5r156,-489r7,-4r53,9r4,6r-152,478r-6,5r-59,0xm437,-107r-10,-40r181,-250r7,-5r46,-9r5,4r0,243r72,0r4,5r-14,51r-5,5r-57,0r0,95r-5,6r-56,8r-5,-4r0,-105r-156,0xm512,-164r89,0r0,-90r2,-38r-22,35r-53,75","w":779},"\u00bd":{"d":"48,-267r-5,-5r0,-52r5,-5r93,0r0,-284r-68,0r-6,-5r-13,-52r4,-5r144,0r5,5r0,341r96,0r4,5r-13,52r-6,5r-240,0xm261,-5r156,-489r7,-4r53,9r4,6r-152,478r-6,5r-59,0xm482,-36v4,-80,184,-165,184,-253v0,-33,-24,-62,-59,-62v-29,0,-56,19,-78,50r-5,0r-43,-31r0,-5v0,0,43,-76,128,-76v64,0,126,43,126,121v0,104,-154,190,-169,230r179,0r4,5r-14,52r-6,5r-234,0r-6,-5","w":797},"\u00be":{"d":"176,-263v-95,0,-137,-77,-137,-77r1,-6r45,-34r8,0v0,0,29,55,83,55v37,0,72,-21,72,-59r0,-10v0,-36,-32,-57,-88,-57r-37,0r-4,-5r18,-51r6,-5r17,0v57,0,79,-23,79,-53v0,-39,-30,-55,-67,-55v-43,0,-66,35,-77,44r-8,1r-43,-29r0,-7v0,0,43,-71,128,-71v76,0,132,42,132,116v0,31,-13,65,-47,83v41,16,56,50,56,81r0,23v0,76,-66,116,-137,116xm258,-5r156,-489r7,-4r53,9r4,6r-152,478r-6,5r-59,0xm432,-107r-10,-40r181,-250r7,-5r46,-9r5,4r0,243r72,0r4,5r-14,51r-5,5r-57,0r0,95r-5,6r-56,8r-5,-4r0,-105r-156,0xm507,-164r89,0r0,-90r2,-38r-22,35r-53,75","w":774},"\u00bf":{"d":"210,-393r-5,-5r0,-91r5,-5r89,0r5,5r0,91r-5,5r-89,0xm48,-46v0,-101,72,-166,169,-176r3,-81r5,-5r59,0r5,5r0,143r-5,6r-68,11v-54,9,-84,54,-84,114r0,71v0,72,42,109,113,109v71,0,118,-34,118,-109r6,-4r69,15r5,6v0,112,-88,172,-198,172v-110,0,-197,-60,-197,-172r0,-105","w":478,"k":{"\u0135":-68,"j":-67}},"\u00c0":{"d":"298,-733r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u00c1":{"d":"285,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u00c2":{"d":"220,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u00c3":{"d":"189,-756r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u00c4":{"d":"327,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm190,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u00c5":{"d":"291,-733v-41,0,-81,-22,-81,-66r0,-13v0,-44,40,-65,81,-65v41,0,81,21,81,65r0,13v0,44,-40,66,-81,66xm291,-772v21,0,37,-10,37,-33v0,-23,-16,-33,-37,-33v-21,0,-37,10,-37,33v0,23,16,33,37,33xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u00c6":{"d":"9,-5r258,-665r6,-5r404,0r5,5r0,70r-5,5r-278,0r41,200r233,0r5,5r-14,70r-6,5r-201,0r48,235r205,0r4,5r-10,70r-6,5r-257,0r-6,-5r-33,-159r-241,0r-58,159r-5,5r-86,0xm191,-244r195,0r-62,-306r-8,-45r-12,45","w":766,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u00c7":{"d":"215,103r7,-3v14,10,29,16,44,16v51,0,68,-31,68,-67v0,-10,-6,-26,-11,-37v-152,-4,-252,-87,-252,-245r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v82,0,141,-33,169,-93r7,-2r65,25r3,6v-31,88,-109,136,-218,143v14,14,35,40,35,72v0,59,-46,93,-102,93v-29,0,-67,-10,-88,-32r-2,-7","w":627,"k":{"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,",":5,";":5,"-":55,"\u2013":55,"\u2014":55,".":5,":":5,"\u2026":5,"g":5,"\u011d":5,"\u0123":5,"\u011f":5,"\u0121":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u0219":4,"\u015f":4}},"\u00c8":{"d":"284,-733r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u00c9":{"d":"274,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u00ca":{"d":"205,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u00cb":{"d":"312,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm175,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u00cc":{"d":"138,-733r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm93,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u00cd":{"d":"128,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm93,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u00ce":{"d":"61,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm93,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u00cf":{"d":"166,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm29,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm93,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u00d0":{"d":"107,-5r0,-291r-46,0r-5,-5r0,-70r5,-5r46,0r0,-294r5,-5r221,0v160,0,266,86,266,245r0,187v0,161,-106,243,-266,243r-221,0xm191,-80r142,0v102,0,180,-52,180,-172r0,-169v0,-117,-78,-174,-180,-174r-142,0r0,219r127,0r4,5r-18,70r-6,5r-107,0r0,216","w":670,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00d1":{"d":"255,-756r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm93,-5r0,-660r5,-6r74,-10r7,4r324,488r26,48r0,-524r5,-6r74,-10r5,4r0,672r-5,5r-71,0r-8,-5r-326,-492r-26,-48r0,540r-5,5r-74,0","w":707,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u00d2":{"d":"335,-733r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00d3":{"d":"280,-753r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00d4":{"d":"261,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00d5":{"d":"230,-756r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00d6":{"d":"368,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm231,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00d7":{"d":"95,-123r0,-7r129,-129r-131,-131r1,-7r57,-42r7,1r122,122r127,-128r7,0r43,58r-3,7r-118,119r127,127r0,7r-49,49r-7,0r-127,-126r-129,129r-7,0","w":550},"\u00d8":{"d":"108,10r35,-60v-46,-41,-72,-103,-72,-183r0,-204v0,-162,106,-248,263,-248v59,0,111,12,153,36r26,-45r7,-2r49,18r2,5r-36,62v39,42,62,100,62,174r0,204v0,161,-106,245,-263,245v-54,0,-102,-10,-141,-29r-32,55r-6,2r-45,-25xm189,-130r255,-444v-30,-21,-68,-31,-110,-31v-102,0,-177,59,-177,175r0,188v0,47,11,84,32,112xm235,-90v28,15,61,22,99,22v102,0,177,-55,177,-174r0,-188v0,-39,-9,-72,-24,-98","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00d9":{"d":"351,-733r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u00da":{"d":"296,-753r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u00db":{"d":"217,-751r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u00dc":{"d":"379,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm242,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u00dd":{"d":"247,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm215,-5r0,-291r-203,-367r5,-7r84,-11r6,4r134,266r16,39r17,-39r127,-252r5,-6r91,-12r6,4r-204,381r0,291r-5,5r-74,0","w":514,"k":{"\u0166":-9,"\u0138":24,"\u0129":-25,"\u0159":13,"\u012b":-15,"\u0131":24,"\u00ef":-10,"\u00ec":-20,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":27,"\u0134":27,"T":-9,"\u0162":-9,"\u0164":-9,"\u021a":-9,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":4,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"\"":-5,"'":-5,",":46,";":46,"-":50,"\u2013":50,"\u2014":50,".":46,":":46,"\u2026":46,"g":31,"\u011d":31,"\u0123":31,"\u011f":31,"\u0121":31,"s":26,"\u015b":26,"\u015d":26,"\u0161":26,"\u0219":26,"\u015f":26,"a":24,"\u00e0":24,"\u00e1":24,"\u00e2":24,"\u00e3":24,"\u00e4":24,"\u00e5":24,"\u00e6":24,"\u0103":24,"\u0105":24,"\u0101":24,"m":13,"n":13,"p":13,"r":13,"\u00f1":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u0155":13,"\u0157":13,"\u0149":13,"\u014b":13,"c":37,"d":37,"e":37,"o":37,"q":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"\u0107":37,"\u0109":37,"\u010d":37,"\u0117":37,"\u0119":37,"\u0151":37,"\u0153":37,"\u0113":37,"\u011b":37,"\u014d":37,"\u010f":37,"\u0111":37,"\u010b":37,"\u0115":37,"\u014f":37,"u":21,"\u00f9":21,"\u00fa":21,"\u00fb":21,"\u00fc":21,"\u016b":21,"\u016d":21,"\u0171":21,"\u0173":21,"\u016f":21,"\u0169":21,"\u00f0":30,")":-11,"?":-9,"]":-11,"}":-11,"\u1e9e":4}},"\u00de":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,141r97,0v63,0,117,9,158,33v53,31,84,86,84,168v0,117,-70,217,-223,217v-55,0,-103,-15,-121,-58r5,40r0,131r-5,5r-74,0xm177,-210v26,9,60,17,95,17v89,0,157,-43,157,-140v0,-102,-75,-126,-155,-126r-97,0r0,249","w":556,"k":{"X":14,"J":29,"\u0134":29,"T":45,"\u0162":45,"\u0164":45,"\u0166":45,"\u021a":45,"Y":9,"\u00dd":9,"\u0178":9,"\u0176":9,"Z":16,"\u0179":16,"\u017b":16,"\u017d":16,",":43,";":43,".":42,":":42,"\u2026":42}},"\u00df":{"d":"97,189r0,-611r-60,0r-5,-5r0,-62r5,-5r60,0r0,-73v0,-110,90,-160,181,-160v91,0,181,50,181,160v0,112,-111,124,-111,221v0,96,218,35,218,208v0,116,-83,150,-179,150v-57,0,-113,-17,-151,-46r-1,-6r38,-53r8,-1v21,18,73,34,104,34v52,0,101,-16,101,-78v0,-104,-211,-51,-211,-208v0,-117,104,-135,104,-221v0,-59,-49,-88,-101,-88v-53,0,-101,26,-101,84r0,690r-20,101r-6,7r-49,-29","w":598,"k":{"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0177":11,"\"":15,"'":15,"\u2019":11,"\u201d":11}},"\u00e0":{"d":"238,-569r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u00e1":{"d":"233,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u00e2":{"d":"164,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u00e3":{"d":"133,-592r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u00e4":{"d":"271,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm134,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u00e5":{"d":"239,-569v-41,0,-81,-22,-81,-66r0,-13v0,-44,40,-65,81,-65v41,0,81,21,81,65r0,13v0,44,-40,66,-81,66xm239,-608v21,0,37,-10,37,-33v0,-23,-16,-33,-37,-33v-21,0,-37,10,-37,33v0,23,16,33,37,33xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u00e6":{"d":"40,-138v0,-111,84,-147,187,-147r50,0v22,0,36,-5,44,-10r0,-44v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v62,0,115,15,148,62v33,-44,81,-62,141,-62v128,0,171,79,171,149v0,103,-69,150,-161,150v-98,0,-119,-49,-122,-56r5,37r0,48v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-86,0,-147,-28,-177,-84v-8,15,-49,84,-150,84v-82,0,-150,-56,-150,-150xm401,-296v17,13,63,16,105,16v47,0,93,-19,93,-81v0,-35,-25,-72,-94,-72v-68,0,-104,38,-104,115r0,22xm122,-138v0,43,30,78,81,78v69,0,118,-33,126,-39v-5,-19,-8,-39,-8,-62r0,-100v-12,39,-54,50,-88,50r-24,0v-35,0,-87,12,-87,73","w":739},"\u00e7":{"d":"133,103r7,-3v14,10,29,16,44,16v51,0,68,-31,68,-67v0,-10,-6,-26,-11,-37v-115,-5,-182,-74,-182,-173r0,-171v0,-102,72,-174,195,-174v75,0,142,34,170,102r-3,6r-60,21r-7,-2v-18,-34,-55,-55,-105,-55v-67,0,-110,41,-110,118r0,138v0,77,43,118,110,118v62,0,93,-22,110,-53r7,-2r60,21r3,6v-23,59,-79,93,-152,99v14,14,35,40,35,72v0,59,-46,93,-102,93v-29,0,-67,-10,-88,-32r-2,-7","w":472,"k":{"-":36,"\u2013":36,"\u2014":36}},"\u00e8":{"d":"246,-569r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u00e9":{"d":"241,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u00ea":{"d":"172,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u00eb":{"d":"279,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm142,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u00ec":{"d":"114,-569r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231},"\u00ed":{"d":"109,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231,"k":{"}":-11,"]":-11}},"\u00ee":{"d":"40,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231,"k":{"}":-12,"]":-14,"?":-25,")":-17,"'":-8,"\"":-8}},"\u00ef":{"d":"147,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm10,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231,"k":{"}":-13,"]":-13,"?":-8,")":-13}},"\u00f0":{"d":"60,-161r0,-142v0,-113,77,-173,182,-173v41,0,79,12,110,34r0,-27v0,-51,-15,-88,-35,-116r-108,55r-6,-2r-23,-46r1,-7r89,-45v-25,-18,-54,-33,-86,-48r-4,-7r22,-53r8,-4v47,19,93,43,131,75r72,-37r6,1r24,47r-2,6r-56,30v26,36,43,79,43,131r0,328v0,112,-75,173,-186,173v-105,0,-182,-61,-182,-173xm140,-178v0,77,44,118,105,118v61,0,103,-41,103,-118r0,-120v0,-70,-36,-106,-103,-106v-61,0,-105,40,-105,117r0,109","w":500},"\u00f1":{"d":"168,-592r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,159,59,159,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-55,-117,-112,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0","w":525,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u00f2":{"d":"253,-569r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u00f3":{"d":"248,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u00f4":{"d":"179,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u00f5":{"d":"148,-592r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u00f6":{"d":"286,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm149,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u00f7":{"d":"227,-360r-5,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0xm99,-207r-5,-5r0,-69r5,-5r358,0r4,5r-18,69r-6,5r-338,0xm222,-35r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0","w":550},"\u00f8":{"d":"73,10r31,-54v-27,-28,-43,-68,-43,-117r0,-172v0,-112,82,-173,192,-173v39,0,74,8,104,23r27,-47r7,-2r45,17r2,5r-35,61v26,29,42,68,42,116r0,172v0,112,-82,173,-192,173v-39,0,-74,-8,-104,-22r-27,47r-6,2r-41,-24xm149,-123r170,-294v-18,-11,-40,-17,-66,-17v-72,0,-112,40,-112,117r0,139v0,21,3,39,8,55xm187,-76v18,11,40,16,66,16v70,0,112,-41,112,-118r0,-139v0,-20,-3,-37,-8,-52","w":507,"k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u00f9":{"d":"264,-569r-123,-128r5,-4r108,0r7,4r60,102r-1,6r-50,20r-6,0xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u00fa":{"d":"209,-589r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u00fb":{"d":"190,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u00fc":{"d":"297,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm160,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u00fd":{"d":"220,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm4,128v0,0,32,31,78,31v40,0,71,-31,93,-91r31,-84r-11,-4r-8,-7r-172,-456r5,-6r78,-10r5,4r117,360r15,53r12,-44r114,-358r6,-5r80,-10r3,5r-209,595v-29,83,-83,130,-157,130v-48,0,-85,-17,-115,-39r-2,-8r30,-54","w":465,"k":{"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0102":4,"\u0104":4,"\u0100":4,"J":14,"\u0134":14,"T":60,"\u0162":60,"\u0164":60,"\u0166":60,"\u021a":60,"X":6,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"\"":-9,"'":-9,",":19,";":19,"\u2019":-23,"\u201d":-23,".":19,":":19,"\u2026":19}},"\u00fe":{"d":"152,-23r4,46r0,187r-5,6r-70,10r-5,-4r0,-933r5,-6r70,-10r5,4r0,249r-4,41v11,-22,48,-73,137,-73v89,0,155,61,155,175r0,170v0,112,-79,173,-182,173v-42,0,-82,-13,-110,-35xm156,-166v0,71,33,106,103,106v61,0,105,-41,105,-118r0,-136v0,-87,-49,-120,-108,-120v-22,0,-82,17,-100,23r0,245","w":504,"k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u00ff":{"d":"258,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm121,-610r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm4,128v0,0,32,31,78,31v40,0,71,-31,93,-91r31,-84r-11,-4r-8,-7r-172,-456r5,-6r78,-10r5,4r117,360r15,53r12,-44r114,-358r6,-5r80,-10r3,5r-209,595v-29,83,-83,130,-157,130v-48,0,-85,-17,-115,-39r-2,-8r30,-54","w":465,"k":{"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0102":4,"\u0104":4,"\u0100":4,"J":14,"\u0134":14,"T":60,"\u0162":60,"\u0164":60,"\u0166":60,"\u021a":60,"X":6,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"\"":-9,"'":-9,",":19,";":19,"\u2019":-23,"\u201d":-23,".":19,":":19,"\u2026":19}},"\u0102":{"d":"295,-733v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u0103":{"d":"239,-569v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u0104":{"d":"12,-5r231,-660r6,-5r88,-11r6,4r235,672r-3,5v0,0,-107,30,-107,107v0,32,16,53,71,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-60,55,-106,99,-129r-52,-157r-278,0r-52,159r-5,5r-84,0xm182,-244r226,0r-103,-306r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u0105":{"d":"40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r24,86r-4,8v-33,31,-76,72,-76,111v0,32,16,53,71,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-58,48,-100,88,-124r-27,-69v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u0106":{"d":"280,-753r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v82,0,141,-33,169,-93r7,-2r65,25r3,6v-33,95,-121,144,-244,144v-157,0,-262,-84,-262,-245","w":627,"k":{"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,",":5,";":5,"-":55,"\u2013":55,"\u2014":55,".":5,":":5,"\u2026":5,"g":5,"\u011d":5,"\u0123":5,"\u011f":5,"\u0121":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u0219":4,"\u015f":4}},"\u0107":{"d":"248,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm59,-161r0,-171v0,-102,72,-174,195,-174v75,0,142,34,170,102r-3,6r-60,21r-7,-2v-18,-34,-55,-55,-105,-55v-67,0,-110,41,-110,118r0,138v0,77,43,118,110,118v62,0,93,-22,110,-53r7,-2r60,21r3,6v-25,65,-90,100,-175,100v-123,0,-195,-71,-195,-173","w":472,"k":{"-":36,"\u2013":36,"\u2014":36}},"\u0108":{"d":"261,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v82,0,141,-33,169,-93r7,-2r65,25r3,6v-33,95,-121,144,-244,144v-157,0,-262,-84,-262,-245","w":627,"k":{"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,",":5,";":5,"-":55,"\u2013":55,"\u2014":55,".":5,":":5,"\u2026":5,"g":5,"\u011d":5,"\u0123":5,"\u011f":5,"\u0121":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u0219":4,"\u015f":4}},"\u0109":{"d":"179,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm59,-161r0,-171v0,-102,72,-174,195,-174v75,0,142,34,170,102r-3,6r-60,21r-7,-2v-18,-34,-55,-55,-105,-55v-67,0,-110,41,-110,118r0,138v0,77,43,118,110,118v62,0,93,-22,110,-53r7,-2r60,21r3,6v-25,65,-90,100,-175,100v-123,0,-195,-71,-195,-173","w":472,"k":{"-":36,"\u2013":36,"\u2014":36}},"\u010c":{"d":"306,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v82,0,141,-33,169,-93r7,-2r65,25r3,6v-33,95,-121,144,-244,144v-157,0,-262,-84,-262,-245","w":627,"k":{"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,",":5,";":5,"-":55,"\u2013":55,"\u2014":55,".":5,":":5,"\u2026":5,"g":5,"\u011d":5,"\u0123":5,"\u011f":5,"\u0121":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u0219":4,"\u015f":4}},"\u010d":{"d":"224,-576r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm59,-161r0,-171v0,-102,72,-174,195,-174v75,0,142,34,170,102r-3,6r-60,21r-7,-2v-18,-34,-55,-55,-105,-55v-67,0,-110,41,-110,118r0,138v0,77,43,118,110,118v62,0,93,-22,110,-53r7,-2r60,21r3,6v-25,65,-90,100,-175,100v-123,0,-195,-71,-195,-173","w":472,"k":{"-":36,"\u2013":36,"\u2014":36}},"\u0116":{"d":"236,-772r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u0117":{"d":"203,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u0118":{"d":"93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70v-33,31,-77,73,-77,112v0,32,16,53,71,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-56,44,-97,85,-122r-269,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u0119":{"d":"59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-27,70,-145,120,-145,195v0,32,16,53,71,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-52,37,-88,75,-111v0,0,-16,1,-24,1v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u011c":{"d":"256,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v104,0,178,-55,178,-174r0,-23r-115,0r-6,-5r-10,-70r4,-5r206,0r5,5r0,107v0,161,-100,245,-262,245v-157,0,-262,-84,-262,-245","w":653,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"\"":5,"'":5,",":9,";":9,"-":5,"\u2013":5,"\u2014":5,".":8,":":8,"\u2026":8}},"\u011d":{"d":"159,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm102,-61v0,-37,19,-67,45,-83v0,0,-107,-29,-107,-173v0,-116,71,-182,188,-182r99,0r110,-23r6,4r10,55r-4,7r-68,19v33,20,49,72,49,122v0,110,-72,185,-192,185v-35,0,-64,-5,-64,-5v0,0,-6,15,-6,30v0,40,22,64,60,64r62,0v97,0,147,56,147,132v0,95,-94,140,-188,140v-97,0,-178,-30,-210,-96r2,-7r60,-27r7,2v0,0,22,56,139,56v72,0,110,-34,110,-71v0,-29,-23,-57,-67,-57r-62,0v-83,0,-126,-46,-126,-92xm233,-201v78,0,118,-39,118,-116v0,-79,-40,-117,-118,-117v-68,0,-114,39,-114,117v0,76,40,116,114,116","w":486},"\u0124":{"d":"224,-751r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm93,-5r0,-660r5,-6r74,-10r5,4r0,283r356,0r0,-271r5,-6r74,-10r5,4r0,672r-5,5r-74,0r-5,-5r0,-309r-356,0r0,309r-5,5r-74,0","w":711,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u0125":{"d":"43,-750r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm76,-5r0,-660r5,-6r70,-10r5,4r0,205r-5,44v8,-18,43,-78,144,-78v88,0,154,59,154,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-49,-117,-108,-117v-22,0,-87,18,-105,23r0,406r-5,5r-70,0","w":522,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u012e":{"d":"93,0r0,-665r5,-6r74,-10r5,4r0,668r-5,9v-33,30,-72,70,-72,107v0,32,16,53,71,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-66,74,-122,74,-122","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u012f":{"d":"74,-609r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm75,-5r0,-478r5,-6r70,-10r5,4r0,487r-5,8v-33,30,-72,70,-72,107v0,32,16,53,71,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-56,44,-97,83,-122","w":231},"\u0131":{"d":"75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231},"\u0134":{"d":"170,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm5,-24r-1,-7r30,-62r8,-1v21,16,44,26,73,26v34,0,88,-25,88,-110r0,-487r5,-6r74,-10r5,4r0,507v0,111,-67,182,-167,182v-47,0,-86,-14,-115,-36","w":377,"k":{",":11,";":11,"-":10,"\u2013":10,"\u2014":10,".":11,":":11,"\u2026":11}},"\u0135":{"d":"40,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm75,38r0,-521r5,-6r70,-10r5,4r0,539v0,116,-63,186,-162,186v-50,0,-86,-17,-116,-39r-2,-6r32,-58r5,-1v0,0,31,32,77,32v37,0,86,-33,86,-120","w":231,"k":{"}":-12,"]":-14,"?":-25,")":-17,"'":-8,"\"":-8}},"\u0141":{"d":"106,-5r0,-364r-34,9r-6,-3r-17,-61r3,-6r54,-14r0,-221r5,-6r74,-10r5,4r0,210r109,-29r5,3r0,64r-4,7r-110,30r0,312r288,0r4,5r-18,70r-6,5r-347,0","w":487,"k":{"J":-16,"\u0134":-16,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":51,"W":48,"\u0174":48,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0177":19,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u0170":5,"\u0172":5,"\u016e":5,"\u0168":5,"\"":62,"'":62,",":-9,";":-9,"-":64,"\u2013":64,"\u2014":64,"\u2019":61,"\u201d":61,".":-8,":":-8,"\u2026":-8,"\u00bb":-10,"\u203a":-10}},"\u0142":{"d":"95,-110r0,-269r-43,11r-6,-3r-17,-61r3,-6r63,-17r0,-256r5,-6r70,-10r5,4r0,247r70,-19r5,3r0,64r-4,7r-71,20r0,286v0,39,30,45,45,45r4,0r4,5r-11,63r-5,5r-8,0v-27,0,-109,-8,-109,-113","w":289},"\u0143":{"d":"305,-753r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm93,-5r0,-660r5,-6r74,-10r7,4r324,488r26,48r0,-524r5,-6r74,-10r5,4r0,672r-5,5r-71,0r-8,-5r-326,-492r-26,-48r0,540r-5,5r-74,0","w":707,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u0144":{"d":"218,-589r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,159,59,159,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-55,-117,-112,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0","w":525,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u0150":{"d":"334,-750r-1,-6r61,-105r7,-4r101,0r5,4r-123,128r-6,0xm261,-737r-48,-18r-1,-6r51,-100r7,-4r65,0r5,4r-72,124r-7,0xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u0151":{"d":"252,-586r-1,-6r61,-105r7,-4r101,0r5,4r-123,128r-6,0xm179,-573r-48,-18r-1,-6r51,-100r7,-4r65,0r5,4r-72,124r-7,0xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u0152":{"d":"71,-233r0,-204v0,-162,107,-248,259,-248v77,0,139,25,183,69r0,-54r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0r-5,-5r0,-50v-44,43,-106,67,-183,67v-152,0,-259,-84,-259,-245xm157,-242v0,119,76,174,178,174v102,0,178,-47,178,-186r0,-174v0,-128,-79,-177,-178,-177v-102,0,-178,59,-178,175r0,188","w":933,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u0153":{"d":"59,-161r0,-172v0,-112,82,-173,192,-173v63,0,117,21,152,69v32,-45,83,-69,147,-69v128,0,171,78,171,148v0,103,-69,147,-161,147v-98,0,-119,-49,-122,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-70,0,-124,-22,-158,-67v-34,47,-88,67,-150,67v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139xm443,-300v17,13,63,16,105,16v47,0,93,-16,93,-78v0,-35,-25,-71,-94,-71v-68,0,-104,38,-104,115r0,18","w":781},"\u015a":{"d":"257,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm50,-48r-2,-7r41,-56r9,-1v29,25,93,44,137,44v71,0,131,-31,131,-115v0,-161,-299,-90,-299,-310v0,-120,92,-192,200,-192v100,0,163,41,172,50r1,7r-38,58r-8,1v-28,-21,-71,-36,-123,-36v-80,0,-118,46,-118,109v0,150,299,81,299,312v0,150,-119,196,-220,196v-47,0,-130,-19,-182,-60","w":508,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"x":3,",":5,";":5,"-":6,"\u2013":6,"\u2014":6}},"\u015b":{"d":"205,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm48,-34r-1,-6r38,-53r8,-1v21,18,73,34,104,34v52,0,100,-16,100,-78v0,-102,-247,-47,-247,-221v0,-103,91,-147,180,-147v46,0,90,12,129,39r2,7r-39,53r-7,0v-22,-15,-55,-27,-83,-27v-59,0,-100,28,-100,75v0,111,247,45,247,221v0,116,-84,150,-179,150v-58,0,-114,-17,-152,-46","w":423},"\u015c":{"d":"188,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm50,-48r-2,-7r41,-56r9,-1v29,25,93,44,137,44v71,0,131,-31,131,-115v0,-161,-299,-90,-299,-310v0,-120,92,-192,200,-192v100,0,163,41,172,50r1,7r-38,58r-8,1v-28,-21,-71,-36,-123,-36v-80,0,-118,46,-118,109v0,150,299,81,299,312v0,150,-119,196,-220,196v-47,0,-130,-19,-182,-60","w":508,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"x":3,",":5,";":5,"-":6,"\u2013":6,"\u2014":6}},"\u015d":{"d":"136,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm48,-34r-1,-6r38,-53r8,-1v21,18,73,34,104,34v52,0,100,-16,100,-78v0,-102,-247,-47,-247,-221v0,-103,91,-147,180,-147v46,0,90,12,129,39r2,7r-39,53r-7,0v-22,-15,-55,-27,-83,-27v-59,0,-100,28,-100,75v0,111,247,45,247,221v0,116,-84,150,-179,150v-58,0,-114,-17,-152,-46","w":423},"\u0160":{"d":"228,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm50,-48r-2,-7r41,-56r9,-1v29,25,93,44,137,44v71,0,131,-31,131,-115v0,-161,-299,-90,-299,-310v0,-120,92,-192,200,-192v100,0,163,41,172,50r1,7r-38,58r-8,1v-28,-21,-71,-36,-123,-36v-80,0,-118,46,-118,109v0,150,299,81,299,312v0,150,-119,196,-220,196v-47,0,-130,-19,-182,-60","w":508,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"x":3,",":5,";":5,"-":6,"\u2013":6,"\u2014":6}},"\u0161":{"d":"181,-576r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm48,-34r-1,-6r38,-53r8,-1v21,18,73,34,104,34v52,0,100,-16,100,-78v0,-102,-247,-47,-247,-221v0,-103,91,-147,180,-147v46,0,90,12,129,39r2,7r-39,53r-7,0v-22,-15,-55,-27,-83,-27v-59,0,-100,28,-100,75v0,111,247,45,247,221v0,116,-84,150,-179,150v-58,0,-114,-17,-152,-46","w":423},"\u0162":{"d":"130,103r7,-3v14,10,29,16,44,16v51,0,68,-31,68,-67v0,-17,-17,-49,-17,-49r-20,0r-5,-5r0,-590r-186,0r-5,-5r0,-70r5,-5r469,0r4,5r-18,70r-6,5r-179,0r0,590r-5,5r-24,0v0,0,47,38,47,83v0,59,-46,93,-102,93v-29,0,-67,-10,-88,-32r-2,-7","w":497,"k":{"\u0166":-17,"\u0149":55,"\u0138":55,"\u0129":-40,"\u0127":-9,"\u0159":55,"\u012b":-23,"\u017e":62,"\u0161":71,"\u015d":71,"\u0135":-22,"\u0131":55,"\u00ef":-18,"\u00ee":-22,"\u00ec":-19,"\u00e3":62,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":53,"\u0134":53,"T":-17,"\u0162":-17,"\u0164":-17,"\u021a":-17,"V":-18,"W":-17,"\u0174":-17,"Y":-19,"\u00dd":-19,"\u0178":-19,"\u0176":-19,"v":64,"w":64,"y":64,"\u00fd":64,"\u00ff":64,"\u0175":64,"\u0177":64,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":68,"z":62,"\u017a":62,"\u017c":62,"\"":-15,"'":-15,",":41,";":41,"-":46,"\u2013":46,"\u2014":46,"\u2019":-9,"\u201d":-9,".":42,":":42,"\u2026":42,"g":57,"\u011d":57,"\u0123":57,"\u011f":57,"\u0121":57,"s":71,"\u015b":71,"\u0219":71,"\u015f":71,"a":62,"\u00e0":62,"\u00e1":62,"\u00e2":62,"\u00e4":62,"\u00e5":62,"\u00e6":62,"\u0103":62,"\u0105":62,"\u0101":62,"m":55,"n":55,"p":55,"r":55,"\u00f1":55,"\u0144":55,"\u0146":55,"\u0148":55,"\u0155":55,"\u0157":55,"\u014b":55,"c":56,"d":56,"e":56,"o":56,"q":56,"\u00e7":56,"\u00e8":56,"\u00e9":56,"\u00ea":56,"\u00eb":56,"\u00f2":56,"\u00f3":56,"\u00f4":56,"\u00f5":56,"\u00f6":56,"\u00f8":56,"\u0107":56,"\u0109":56,"\u010d":56,"\u0117":56,"\u0119":56,"\u0151":56,"\u0153":56,"\u0113":56,"\u011b":56,"\u014d":56,"\u010f":56,"\u0111":56,"\u010b":56,"\u0115":56,"\u014f":56,"t":6,"\u0163":6,"\u0165":6,"\u0167":6,"\u021b":6,"u":56,"\u00f9":56,"\u00fa":56,"\u00fb":56,"\u00fc":56,"\u016b":56,"\u016d":56,"\u0171":56,"\u0173":56,"\u016f":56,"\u0169":56,"\u00f0":38,")":-14,"?":-12,"]":-12,"}":-12,"\u1e9e":3}},"\u0163":{"d":"108,103r7,-3v14,10,29,16,44,16v51,0,68,-31,68,-67v0,-12,-8,-30,-13,-41v-73,-14,-125,-75,-125,-183r0,-247r-54,0r-5,-5r0,-62r5,-5r58,0r9,-101r5,-6r57,-8r5,4r0,111r166,0r5,5r-19,62r-7,5r-145,0r0,241v0,68,33,119,88,119v38,0,74,-31,74,-31r7,1r31,57r-2,7v-32,23,-71,39,-114,40v14,14,34,40,34,71v0,59,-46,93,-102,93v-29,0,-67,-10,-88,-32r-2,-7","w":379,"k":{",":-21,";":-21,".":-12,":":-12,"\u2026":-12}},"\u016a":{"d":"242,-772r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u016b":{"d":"155,-608r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u016c":{"d":"347,-733v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u016d":{"d":"265,-569v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u0170":{"d":"350,-750r-1,-6r61,-105r7,-4r101,0r5,4r-123,128r-6,0xm277,-737r-48,-18r-1,-6r51,-100r7,-4r65,0r5,4r-72,124r-7,0xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u0171":{"d":"263,-586r-1,-6r61,-105r7,-4r101,0r5,4r-123,128r-6,0xm190,-573r-48,-18r-1,-6r51,-100r7,-4r65,0r5,4r-72,124r-7,0xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u0172":{"d":"86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,222,-202,215,-202,340v0,32,13,53,68,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-49,34,-87,70,-113v-15,2,-30,3,-45,3v-159,0,-261,-84,-261,-245","w":696,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u0173":{"d":"71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,86r-4,8v-33,31,-76,72,-76,111v0,32,16,53,71,56r5,7r-11,44r-9,5v-74,0,-137,-36,-137,-97v0,-58,48,-100,88,-124r-28,-69v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u0178":{"d":"289,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm152,-774r-5,-5r0,-78r5,-5r73,0r5,5r0,78r-5,5r-73,0xm215,-5r0,-291r-203,-367r5,-7r84,-11r6,4r134,266r16,39r17,-39r127,-252r5,-6r91,-12r6,4r-204,381r0,291r-5,5r-74,0","w":514,"k":{"\u0166":-9,"\u0138":24,"\u0129":-25,"\u0159":13,"\u012b":-15,"\u0131":24,"\u00ef":-10,"\u00ec":-20,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":27,"\u0134":27,"T":-9,"\u0162":-9,"\u0164":-9,"\u021a":-9,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":4,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"\"":-5,"'":-5,",":46,";":46,"-":50,"\u2013":50,"\u2014":50,".":46,":":46,"\u2026":46,"g":31,"\u011d":31,"\u0123":31,"\u011f":31,"\u0121":31,"s":26,"\u015b":26,"\u015d":26,"\u0161":26,"\u0219":26,"\u015f":26,"a":24,"\u00e0":24,"\u00e1":24,"\u00e2":24,"\u00e3":24,"\u00e4":24,"\u00e5":24,"\u00e6":24,"\u0103":24,"\u0105":24,"\u0101":24,"m":13,"n":13,"p":13,"r":13,"\u00f1":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u0155":13,"\u0157":13,"\u0149":13,"\u014b":13,"c":37,"d":37,"e":37,"o":37,"q":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"\u0107":37,"\u0109":37,"\u010d":37,"\u0117":37,"\u0119":37,"\u0151":37,"\u0153":37,"\u0113":37,"\u011b":37,"\u014d":37,"\u010f":37,"\u0111":37,"\u010b":37,"\u0115":37,"\u014f":37,"u":21,"\u00f9":21,"\u00fa":21,"\u00fb":21,"\u00fc":21,"\u016b":21,"\u016d":21,"\u0171":21,"\u0173":21,"\u016f":21,"\u0169":21,"\u00f0":30,")":-11,"?":-9,"]":-11,"}":-11,"\u1e9e":4}},"\u0179":{"d":"264,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm55,-5r-10,-49r322,-541r-306,0r-4,-5r10,-70r6,-5r397,0r5,5r0,49r-321,541r314,0r5,5r0,70r-5,5r-407,0","w":526,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":57,"\u2013":57,"\u2014":57,"g":6,"\u011d":6,"\u0123":6,"\u011f":6,"\u0121":6,"u":3,"\u00f9":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u016b":3,"\u016d":3,"\u0171":3,"\u0173":3,"\u016f":3,"\u0169":3}},"\u017a":{"d":"213,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm51,-5r-10,-45r241,-372r-229,0r-5,-5r11,-62r7,-5r313,0r5,5r0,47r-244,370r238,0r5,5r0,62r-5,5r-320,0","w":431,"k":{"-":11,"\u2013":11,"\u2014":11}},"\u017b":{"d":"226,-772r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm55,-5r-10,-49r322,-541r-306,0r-4,-5r10,-70r6,-5r397,0r5,5r0,49r-321,541r314,0r5,5r0,70r-5,5r-407,0","w":526,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":57,"\u2013":57,"\u2014":57,"g":6,"\u011d":6,"\u0123":6,"\u011f":6,"\u0121":6,"u":3,"\u00f9":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u016b":3,"\u016d":3,"\u0171":3,"\u0173":3,"\u016f":3,"\u0169":3}},"\u017c":{"d":"175,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm51,-5r-10,-45r241,-372r-229,0r-5,-5r11,-62r7,-5r313,0r5,5r0,47r-244,370r238,0r5,5r0,62r-5,5r-320,0","w":431,"k":{"-":11,"\u2013":11,"\u2014":11}},"\u017d":{"d":"240,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm55,-5r-10,-49r322,-541r-306,0r-4,-5r10,-70r6,-5r397,0r5,5r0,49r-321,541r314,0r5,5r0,70r-5,5r-407,0","w":526,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":57,"\u2013":57,"\u2014":57,"g":6,"\u011d":6,"\u0123":6,"\u011f":6,"\u0121":6,"u":3,"\u00f9":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u016b":3,"\u016d":3,"\u0171":3,"\u0173":3,"\u016f":3,"\u0169":3}},"\u017e":{"d":"189,-576r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm51,-5r-10,-45r241,-372r-229,0r-5,-5r11,-62r7,-5r313,0r5,5r0,47r-244,370r238,0r5,5r0,62r-5,5r-320,0","w":431,"k":{"-":11,"\u2013":11,"\u2014":11}},"\u0192":{"d":"46,40r6,-5r63,9r3,6v0,0,-11,24,-11,49v0,28,13,60,65,60v42,0,54,-39,58,-73r48,-403r-98,0r-5,-5r0,-62r5,-5r108,0r25,-203v10,-83,59,-138,138,-138v91,0,136,48,136,122v0,20,-3,43,-10,67r-7,4r-63,-9r-3,-7v5,-14,8,-29,8,-44v0,-32,-16,-61,-61,-61v-38,0,-56,38,-60,71r-23,198r169,0r4,5r-18,62r-6,5r-158,0r-50,409v-10,80,-54,139,-136,139v-116,0,-138,-75,-138,-125v0,-36,11,-66,11,-66","w":622},"\u0218":{"d":"50,-48r-2,-7r41,-56r9,-1v29,25,93,44,137,44v71,0,131,-31,131,-115v0,-161,-299,-90,-299,-310v0,-120,92,-192,200,-192v100,0,163,41,172,50r1,7r-38,58r-8,1v-28,-21,-71,-36,-123,-36v-80,0,-118,46,-118,109v0,150,299,81,299,312v0,150,-119,196,-220,196v-47,0,-130,-19,-182,-60xm202,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":508,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"x":3,",":5,";":5,"-":6,"\u2013":6,"\u2014":6}},"\u0219":{"d":"48,-34r-1,-6r38,-53r8,-1v21,18,73,34,104,34v52,0,100,-16,100,-78v0,-102,-247,-47,-247,-221v0,-103,91,-147,180,-147v46,0,90,12,129,39r2,7r-39,53r-7,0v-22,-15,-55,-27,-83,-27v-59,0,-100,28,-100,75v0,111,247,45,247,221v0,116,-84,150,-179,150v-58,0,-114,-17,-152,-46xm169,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":423},"\u02c6":{"d":"177,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0"},"\u02c7":{"d":"221,-576r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0"},"\u02d8":{"d":"251,-569v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106"},"\u02d9":{"d":"210,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0","w":503},"\u02da":{"d":"251,-569v-41,0,-81,-22,-81,-66r0,-13v0,-44,40,-65,81,-65v41,0,81,21,81,65r0,13v0,44,-40,66,-81,66xm251,-608v21,0,37,-10,37,-33v0,-23,-16,-33,-37,-33v-21,0,-37,10,-37,33v0,23,16,33,37,33"},"\u02db":{"d":"165,122v0,-105,155,-156,155,-156r19,14v-33,32,-93,81,-93,127v0,32,16,53,71,56r5,5r-11,46r-5,5v-81,0,-141,-36,-141,-97","w":504},"\u02dc":{"d":"147,-592r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32"},"\u02dd":{"d":"246,-586r-1,-6r61,-105r7,-4r101,0r5,4r-123,128r-6,0xm173,-573r-48,-18r-1,-6r51,-100r7,-4r65,0r5,4r-72,124r-7,0","w":503},"\u2013":{"d":"88,-222r-5,-5r0,-63r5,-5r492,0r4,5r-12,63r-6,5r-478,0","w":664,"k":{"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0102":12,"\u0104":12,"\u0100":12,"J":45,"\u0134":45,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":32,"W":31,"\u0174":31,"Y":50,"\u00dd":50,"\u0178":50,"\u0176":50,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"M":10,"N":10,"P":10,"R":10,"\u00c8":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00cc":10,"\u00cd":10,"\u00ce":10,"\u00cf":10,"\u00d0":10,"\u00d1":10,"\u00de":10,"\u0116":10,"\u0118":10,"\u0124":10,"\u012e":10,"\u0141":10,"\u0143":10,"\u010e":10,"\u0112":10,"\u011a":10,"\u0136":10,"\u013b":10,"\u013d":10,"\u0139":10,"\u0145":10,"\u0154":10,"\u0158":10,"\u0156":10,"\u0147":10,"\u0110":10,"\u0130":10,"\u0114":10,"\u0126":10,"\u0128":10,"\u0132":10,"\u013f":10,"\u014a":10,"C":6,"G":6,"O":6,"Q":6,"\u00c7":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"\u00d6":6,"\u00d8":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u011c":6,"\u0150":6,"\u0152":6,"\u0122":6,"\u014c":6,"\u011e":6,"\u010a":6,"\u0120":6,"\u014e":6,"U":9,"\u00d9":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u016a":9,"\u016c":9,"\u0170":9,"\u0172":9,"\u016e":9,"\u0168":9,"S":49,"\u015a":49,"\u015c":49,"\u0160":49,"\u0218":49,"\u015e":49,"X":37,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"x":10,"z":15,"\u017a":15,"\u017c":15,"\u017e":15}},"\u2014":{"d":"88,-222r-5,-5r0,-63r5,-5r690,0r4,5r-12,63r-6,5r-676,0","w":862,"k":{"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u0102":12,"\u0104":12,"\u0100":12,"J":45,"\u0134":45,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":32,"W":31,"\u0174":31,"Y":50,"\u00dd":50,"\u0178":50,"\u0176":50,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"M":10,"N":10,"P":10,"R":10,"\u00c8":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00cc":10,"\u00cd":10,"\u00ce":10,"\u00cf":10,"\u00d0":10,"\u00d1":10,"\u00de":10,"\u0116":10,"\u0118":10,"\u0124":10,"\u012e":10,"\u0141":10,"\u0143":10,"\u010e":10,"\u0112":10,"\u011a":10,"\u0136":10,"\u013b":10,"\u013d":10,"\u0139":10,"\u0145":10,"\u0154":10,"\u0158":10,"\u0156":10,"\u0147":10,"\u0110":10,"\u0130":10,"\u0114":10,"\u0126":10,"\u0128":10,"\u0132":10,"\u013f":10,"\u014a":10,"C":6,"G":6,"O":6,"Q":6,"\u00c7":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"\u00d6":6,"\u00d8":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u011c":6,"\u0150":6,"\u0152":6,"\u0122":6,"\u014c":6,"\u011e":6,"\u010a":6,"\u0120":6,"\u014e":6,"U":9,"\u00d9":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u016a":9,"\u016c":9,"\u0170":9,"\u0172":9,"\u016e":9,"\u0168":9,"S":49,"\u015a":49,"\u015c":49,"\u0160":49,"\u0218":49,"\u015e":49,"X":37,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"x":10,"z":15,"\u017a":15,"\u017c":15,"\u017e":15}},"\u2018":{"d":"43,-494r-3,-5r86,-177r7,-4r38,10r4,7r-29,164r-7,5r-96,0","w":218,"k":{"\u0129":-29,"\u012b":-7,"\u0135":-14,"\u00ee":-14,"\u00ec":-12,"A":35,"\u00c0":35,"\u00c1":35,"\u00c2":35,"\u00c3":35,"\u00c4":35,"\u00c5":35,"\u00c6":35,"\u0102":35,"\u0104":35,"\u0100":35,"J":39,"\u0134":39,"T":-12,"\u0162":-12,"\u0164":-12,"\u0166":-12,"\u021a":-12,"V":-10,"W":-10,"\u0174":-10,"Y":-9,"\u00dd":-9,"\u0178":-9,"\u0176":-9,"\u00f0":6}},"\u2019":{"d":"88,-489r-38,-10r-4,-7r29,-164r7,-5r96,0r3,5r-86,177","w":203},"\u201a":{"d":"42,75r29,-164r7,-5r96,0r3,5r-86,177r-7,4r-38,-10","w":237,"k":{"T":44,"\u0162":44,"\u0164":44,"\u0166":44,"\u021a":44,"V":47,"W":45,"\u0174":45,"Y":47,"\u00dd":47,"\u0178":47,"\u0176":47,"v":18,"w":18,"y":18,"\u00fd":18,"\u00ff":18,"\u0175":18,"\u0177":18,"B":8,"D":8,"E":8,"F":8,"H":8,"I":8,"K":8,"L":8,"M":8,"N":8,"P":8,"R":8,"\u00c8":8,"\u00c9":8,"\u00ca":8,"\u00cb":8,"\u00cc":8,"\u00cd":8,"\u00ce":8,"\u00cf":8,"\u00d0":8,"\u00d1":8,"\u00de":8,"\u0116":8,"\u0118":8,"\u0124":8,"\u012e":8,"\u0141":8,"\u0143":8,"\u010e":8,"\u0112":8,"\u011a":8,"\u0136":8,"\u013b":8,"\u013d":8,"\u0139":8,"\u0145":8,"\u0154":8,"\u0158":8,"\u0156":8,"\u0147":8,"\u0110":8,"\u0130":8,"\u0114":8,"\u0126":8,"\u0128":8,"\u0132":8,"\u013f":8,"\u014a":8,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u0108":13,"\u010c":13,"\u011c":13,"\u0150":13,"\u0152":13,"\u0122":13,"\u014c":13,"\u011e":13,"\u010a":13,"\u0120":13,"\u014e":13,"U":17,"\u00d9":17,"\u00da":17,"\u00db":17,"\u00dc":17,"\u016a":17,"\u016c":17,"\u0170":17,"\u0172":17,"\u016e":17,"\u0168":17}},"\u201c":{"d":"197,-494r-3,-5r86,-177r7,-4r38,10r4,7r-29,169r-103,0xm43,-494r-3,-5r86,-177r7,-4r38,10r4,7r-29,164r-7,5r-96,0","w":372,"k":{"\u0129":-29,"\u012b":-7,"\u0135":-15,"\u00ee":-15,"\u00ec":-12,"A":35,"\u00c0":35,"\u00c1":35,"\u00c2":35,"\u00c3":35,"\u00c4":35,"\u00c5":35,"\u00c6":35,"\u0102":35,"\u0104":35,"\u0100":35,"J":39,"\u0134":39,"T":-12,"\u0162":-12,"\u0164":-12,"\u0166":-12,"\u021a":-12,"V":-10,"W":-10,"\u0174":-10,"Y":-9,"\u00dd":-9,"\u0178":-9,"\u0176":-9,"\u00f0":6}},"\u201d":{"d":"204,-499r-4,-7r29,-164r7,-5r96,0r3,5r-86,177r-7,4xm88,-489r-38,-10r-4,-7r29,-164r7,-5r96,0r3,5r-86,177","w":357},"\u201e":{"d":"197,74r29,-164r7,-5r96,0r3,5r-86,177r-7,4r-38,-10xm43,74r29,-164r7,-5r96,0r3,5r-86,177r-7,4r-38,-10","w":391,"k":{"T":44,"\u0162":44,"\u0164":44,"\u0166":44,"\u021a":44,"V":47,"W":45,"\u0174":45,"Y":47,"\u00dd":47,"\u0178":47,"\u0176":47,"v":18,"w":18,"y":18,"\u00fd":18,"\u00ff":18,"\u0175":18,"\u0177":18,"B":8,"D":8,"E":8,"F":8,"H":8,"I":8,"K":8,"L":8,"M":8,"N":8,"P":8,"R":8,"\u00c8":8,"\u00c9":8,"\u00ca":8,"\u00cb":8,"\u00cc":8,"\u00cd":8,"\u00ce":8,"\u00cf":8,"\u00d0":8,"\u00d1":8,"\u00de":8,"\u0116":8,"\u0118":8,"\u0124":8,"\u012e":8,"\u0141":8,"\u0143":8,"\u010e":8,"\u0112":8,"\u011a":8,"\u0136":8,"\u013b":8,"\u013d":8,"\u0139":8,"\u0145":8,"\u0154":8,"\u0158":8,"\u0156":8,"\u0147":8,"\u0110":8,"\u0130":8,"\u0114":8,"\u0126":8,"\u0128":8,"\u0132":8,"\u013f":8,"\u014a":8,"C":13,"G":13,"O":13,"Q":13,"\u00c7":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u0106":13,"\u0108":13,"\u010c":13,"\u011c":13,"\u0150":13,"\u0152":13,"\u0122":13,"\u014c":13,"\u011e":13,"\u010a":13,"\u0120":13,"\u014e":13,"U":17,"\u00d9":17,"\u00da":17,"\u00db":17,"\u00dc":17,"\u016a":17,"\u016c":17,"\u0170":17,"\u0172":17,"\u016e":17,"\u0168":17}},"\u2020":{"d":"175,189r0,-596r-130,0r-5,-5r0,-62r5,-5r130,0r0,-186r5,-6r70,-10r5,4r0,198r147,0r5,5r-19,62r-7,5r-126,0r0,526r-20,101r-6,7r-49,-29","w":442},"\u2021":{"d":"59,-20r0,-62r5,-5r130,0r0,-320r-130,0r-5,-5r0,-62r5,-5r130,0r0,-186r5,-6r70,-10r5,4r0,198r147,0r5,5r-19,62r-7,5r-126,0r0,320r147,0r5,5r-19,62r-7,5r-126,0r0,134r-20,101r-6,7r-49,-29r-5,-9r0,-204r-130,0","w":481},"\u2022":{"d":"74,-230r0,-36v0,-101,88,-151,169,-151v83,0,171,50,171,151r0,36v0,103,-88,149,-171,149v-81,0,-169,-46,-169,-149","w":488},"\u2026":{"d":"621,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0xm344,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0xm67,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0","w":790},"\u2030":{"d":"177,-365v-69,0,-119,-37,-119,-107r0,-102v0,-70,50,-108,119,-108v69,0,118,38,118,108r0,102v0,70,-49,107,-118,107xm60,-5r504,-674r7,-2r62,19r2,5r-490,655r-6,2r-77,0xm177,-423v37,0,59,-20,59,-60r0,-82v0,-39,-22,-58,-59,-58v-38,0,-60,19,-60,58r0,82v0,40,22,60,60,60xm712,-97r0,-101v0,-71,50,-108,119,-108v69,0,120,37,120,108r0,101v0,70,-51,109,-120,109v-69,0,-119,-39,-119,-109xm411,-97r0,-101v0,-71,50,-108,119,-108v69,0,120,37,120,108r0,101v0,70,-51,109,-120,109v-69,0,-119,-39,-119,-109xm771,-105v0,38,22,58,60,58v37,0,59,-20,59,-58r0,-83v0,-39,-22,-59,-59,-59v-38,0,-60,20,-60,59r0,83xm470,-105v0,38,22,58,60,58v37,0,59,-20,59,-58r0,-83v0,-39,-22,-59,-59,-59v-38,0,-60,20,-60,59r0,83","w":1005},"\u2039":{"d":"170,-55r-126,-189r0,-7r126,-190r9,-6r75,0r6,7r-130,192r130,192r-6,7r-75,0","w":311,"k":{"J":-8,"\u0134":-8}},"\u203a":{"d":"57,-49r-6,-7r130,-192r-130,-192r6,-7r75,0r9,6r126,190r0,7r-126,189r-9,6r-75,0","w":311},"\u2044":{"d":"35,-5r504,-674r7,-2r62,19r2,5r-490,655r-6,2r-77,0","w":645},"\u20ac":{"d":"58,-178r-5,-5r0,-60r5,-5r63,0r0,-68r-63,0r-5,-5r0,-60r5,-5r66,0v19,-130,117,-199,254,-199v95,0,151,37,160,46r1,7r-22,56r-8,1v0,0,-45,-38,-127,-38v-91,0,-155,46,-175,127r284,0r4,5r-16,60r-6,5r-272,0r0,68r256,0r4,5r-15,60r-6,5r-231,0v23,78,89,118,174,118v56,0,108,-22,136,-43r8,1r20,56r-1,7v-9,9,-68,51,-163,51v-136,0,-236,-65,-258,-190r-67,0","w":593},"\u2122":{"d":"352,-352r-5,-5r0,-313r5,-5r48,-6r7,5r126,226r124,-220r5,-5r49,-6r7,5r0,319r-5,5r-53,0r-4,-5r0,-195r-95,167r-7,5r-45,0r-6,-5r-94,-171r0,199r-5,5r-52,0xm137,-352r-5,-5r0,-261r-105,0r-5,-5r0,-47r5,-5r279,0r4,5r-13,47r-6,5r-97,0r0,261r-5,5r-52,0","w":785},"\u2211":{"d":"64,-343r-3,-7r0,-30r3,-7r398,-227r6,2r32,56r-2,7r-14,13r-65,129r354,0r5,5r0,74r-5,5r-354,0r65,129r14,13r2,7r-32,56r-6,2","w":835},"\u2212":{"d":"99,-219r-5,-5r0,-69r5,-5r358,0r4,5r-18,69r-6,5r-338,0","w":550},"\u221e":{"d":"194,-191r-10,-346r5,-6r78,-12r5,4r-8,193v53,-10,82,-55,82,-114r0,-71v0,-72,-42,-109,-113,-109v-71,0,-118,34,-118,109r-7,3r-68,-14r-5,-6v0,-112,88,-172,198,-172v110,0,197,60,197,172r0,105v0,101,-72,166,-169,176r-3,88r-5,5r-54,0xm177,-5r0,-91r5,-5r89,0r5,5r0,91r-5,5r-89,0","w":492},"\u2248":{"d":"96,-304r-34,-52r1,-7v34,-32,85,-62,140,-62v94,0,127,70,198,70v37,0,73,-22,100,-46r7,1r34,52r-1,7v-34,32,-85,62,-140,62v-94,0,-127,-70,-198,-70v-37,0,-73,22,-100,46xm96,-105r-34,-52r1,-7v34,-32,85,-62,140,-62v94,0,127,70,198,70v37,0,73,-22,100,-46r7,1r34,52r-1,7v-34,32,-85,62,-140,62v-94,0,-127,-70,-198,-70v-37,0,-73,22,-100,46","w":605},"\u2260":{"d":"117,-49r-2,-5r47,-80r-63,0r-5,-5r0,-63r5,-5r107,0r61,-103r-168,0r-5,-5r0,-63r5,-5r211,0r59,-99r7,-2r57,9r2,5r-52,87r70,0r4,5r-17,63r-6,5r-94,0r-61,103r152,0r4,5r-17,63r-6,5r-177,0r-56,95r-6,2","w":550},"\u2264":{"d":"59,-248r-3,-8r16,-77r6,-6r391,-204r5,4r0,71r-5,7r-331,172r331,164r5,7r0,71r-5,4xm112,31r5,-5r352,0r5,5r0,63r-5,5r-352,0r-5,-5r0,-63","w":550},"\u2265":{"d":"76,-46r0,-71r5,-7r331,-172r-331,-164r-5,-7r0,-71r5,-4r410,205r3,8r-16,77r-6,6r-391,204xm76,31r5,-5r349,0r5,5r-1,63r-5,5r-348,0r-5,-5r0,-63","w":550},"\u1e9e":{"d":"76,-5r0,-489v0,-113,66,-181,164,-181r242,0r5,5r0,49r-132,224v105,7,200,67,200,198v0,139,-104,199,-215,199r-90,0r-5,-5r12,-69r6,-5r65,0v71,0,145,-32,145,-120v0,-88,-74,-119,-145,-119r-66,0r-5,-5r-12,-50r137,-224r-137,0v-32,0,-87,24,-87,110r0,482r-5,5r-72,0","w":593,"k":{"x":4,"V":3,"T":4,"\u0162":4,"\u0164":4,"\u0166":4,"\u021a":4,"W":3,"\u0174":3,"Y":3,"\u00dd":3,"\u0178":3,"\u0176":3,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4}},"\u0122":{"d":"71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v104,0,178,-55,178,-174r0,-23r-115,0r-6,-5r-10,-70r4,-5r206,0r5,5r0,107v0,161,-100,245,-262,245v-157,0,-262,-84,-262,-245xm290,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":653,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"\"":5,"'":5,",":9,";":9,"-":5,"\u2013":5,"\u2014":5,".":8,":":8,"\u2026":8}},"\u0137":{"d":"203,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6xm76,-5r0,-706r5,-6r70,-10r5,4r0,409r8,0r143,-171r7,-4r105,-10r5,5r-161,176r-23,20r21,24r104,158v11,16,34,48,73,48v4,0,9,0,14,-1r5,5r-11,64r-5,5v-6,1,-11,1,-17,1v-77,0,-112,-55,-131,-84r-129,-201r-8,0r0,274r-4,5r-72,0","w":475,"k":{"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0175":6,"\u0177":6,"C":6,"G":6,"O":6,"Q":6,"\u00c7":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"\u00d6":6,"\u00d8":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u011c":6,"\u0150":6,"\u0152":6,"\u0122":6,"\u014c":6,"\u011e":6,"\u010a":6,"\u0120":6,"\u014e":6,",":-12,";":-12,"-":7,"\u2013":7,"\u2014":7,".":-8,":":-8,"\u2026":-8,"g":6,"\u011d":6,"\u0123":6,"\u011f":6,"\u0121":6,"f":3,"\u00df":3,"\u017f":3,"c":6,"d":6,"e":6,"o":6,"q":6,"\u00e7":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00f2":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"\u00f6":6,"\u00f8":6,"\u0107":6,"\u0109":6,"\u010d":6,"\u0117":6,"\u0119":6,"\u0151":6,"\u0153":6,"\u0113":6,"\u011b":6,"\u014d":6,"\u010f":6,"\u0111":6,"\u010b":6,"\u0115":6,"\u014f":6,"t":5,"\u0163":5,"\u0165":5,"\u0167":5,"\u021b":5,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u016b":4,"\u016d":4,"\u0171":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u00f0":6}},"\u0100":{"d":"186,-772r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm12,-5r233,-660r6,-5r84,-11r6,4r237,672r-3,5r-80,0r-6,-5r-55,-161r-279,0r-54,161r-5,5r-81,0xm181,-242r228,0r-104,-308r-10,-43r-10,43","w":590,"k":{"J":-15,"\u0134":-15,"T":30,"\u0162":30,"\u0164":30,"\u0166":30,"\u021a":30,"V":20,"W":18,"\u0174":18,"Y":29,"\u00dd":29,"\u0178":29,"\u0176":29,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,"\"":35,"'":35,",":-7,";":-7,"-":11,"\u2013":11,"\u2014":11,"\u2019":28,"\u201d":28}},"\u0101":{"d":"129,-608r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm40,-135v0,-50,20,-86,48,-109v37,-30,91,-38,156,-38r35,0v22,0,36,-5,44,-10r0,-47v0,-77,-47,-95,-103,-95v-39,0,-74,10,-99,30r-8,-1r-34,-50r2,-8v36,-28,86,-43,140,-43v102,0,182,41,182,152r0,256r25,88r-5,6r-61,9r-6,-4r-29,-72v0,0,-24,83,-135,83v-71,0,-152,-37,-152,-147xm124,-134v0,44,31,74,81,74v50,0,118,-29,118,-29r0,-169v-12,39,-54,50,-88,50r-24,0v-35,0,-87,13,-87,74","w":474},"\u010e":{"d":"293,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm93,-5r0,-665r5,-5r224,0v157,0,263,86,263,248r0,182v0,161,-106,245,-263,245r-224,0xm177,-80r145,0v102,0,177,-55,177,-174r0,-166v0,-116,-75,-175,-177,-175r-145,0r0,515","w":656,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u0112":{"d":"170,-772r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u0113":{"d":"137,-608r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u011a":{"d":"255,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u011b":{"d":"217,-576r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u0123":{"d":"194,-567r-5,-4r72,-152r7,-3r34,7r5,6r-29,142r-6,4r-78,0xm102,-61v0,-37,19,-67,45,-83v0,0,-107,-29,-107,-173v0,-116,71,-182,188,-182r99,0r110,-23r6,4r10,55r-4,7r-68,19v33,20,49,72,49,122v0,110,-72,185,-192,185v-35,0,-64,-5,-64,-5v0,0,-6,15,-6,30v0,40,22,64,60,64r62,0v97,0,147,56,147,132v0,95,-94,140,-188,140v-97,0,-178,-30,-210,-96r2,-7r60,-27r7,2v0,0,22,56,139,56v72,0,110,-34,110,-71v0,-29,-23,-57,-67,-57r-62,0v-83,0,-126,-46,-126,-92xm233,-201v78,0,118,-39,118,-116v0,-79,-40,-117,-118,-117v-68,0,-114,39,-114,117v0,76,40,116,114,116","w":486},"\u012b":{"d":"5,-608r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231,"k":{"}":-15,"]":-16,")":-17}},"\u0136":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,283r47,0r8,-4r208,-266r8,-5r105,-12r4,5r-238,288r-29,29r29,32r158,210v9,12,35,42,79,42v4,0,8,0,12,-1r4,5r-11,68r-6,5v-6,1,-12,1,-18,1v-77,0,-124,-68,-134,-82r-175,-237r-8,-4r-43,0r0,315r-5,5r-74,0xm265,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":594,"k":{"J":-3,"\u0134":-3,"v":55,"w":55,"y":55,"\u00fd":55,"\u00ff":55,"\u0175":55,"\u0177":55,"C":10,"G":10,"O":10,"Q":10,"\u00c7":10,"\u00d2":10,"\u00d3":10,"\u00d4":10,"\u00d5":10,"\u00d6":10,"\u00d8":10,"\u0106":10,"\u0108":10,"\u010c":10,"\u011c":10,"\u0150":10,"\u0152":10,"\u0122":10,"\u014c":10,"\u011e":10,"\u010a":10,"\u0120":10,"\u014e":10,"U":9,"\u00d9":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u016a":9,"\u016c":9,"\u0170":9,"\u0172":9,"\u016e":9,"\u0168":9,"-":45,"\u2013":45,"\u2014":45,"\u2019":6,"\u201d":6,"g":11,"\u011d":11,"\u0123":11,"\u011f":11,"\u0121":11,"s":5,"\u015b":5,"\u015d":5,"\u0161":5,"\u0219":5,"\u015f":5,"m":4,"n":4,"p":4,"r":4,"\u00f1":4,"\u0144":4,"\u0146":4,"\u0148":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u0149":4,"\u014b":4,"f":9,"\u00df":9,"\u017f":9,"c":8,"d":8,"e":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"\u0107":8,"\u0109":8,"\u010d":8,"\u0117":8,"\u0119":8,"\u0151":8,"\u0153":8,"\u0113":8,"\u011b":8,"\u014d":8,"\u010f":8,"\u0111":8,"\u010b":8,"\u0115":8,"\u014f":8,"t":12,"\u0163":12,"\u0165":12,"\u0167":12,"\u021b":12,"u":9,"\u00f9":9,"\u00fa":9,"\u00fb":9,"\u00fc":9,"\u016b":9,"\u016d":9,"\u0171":9,"\u0173":9,"\u016f":9,"\u0169":9,"\u00f0":7}},"\u013b":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,597r288,0r4,5r-18,70r-6,5r-347,0xm241,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":474,"k":{"J":-16,"\u0134":-16,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":51,"W":48,"\u0174":48,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0177":19,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u0170":5,"\u0172":5,"\u016e":5,"\u0168":5,"\"":62,"'":62,",":-9,";":-9,"-":64,"\u2013":64,"\u2014":64,"\u2019":61,"\u201d":61,".":-8,":":-8,"\u2026":-8,"\u00bb":-10,"\u203a":-10}},"\u013c":{"d":"74,-110r0,-601r5,-6r70,-10r5,4r0,608v0,39,30,45,45,45r4,0r4,5r-11,63r-5,5r-8,0v-27,0,-109,-8,-109,-113xm101,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":247},"\u013d":{"d":"267,-533r-5,-6r29,-142r6,-4r78,0r5,4r-72,152r-7,3xm93,-5r0,-660r5,-6r74,-10r5,4r0,597r288,0r4,5r-18,70r-6,5r-347,0","w":474,"k":{"J":-16,"\u0134":-16,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":51,"W":48,"\u0174":48,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0177":19,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u0170":5,"\u0172":5,"\u016e":5,"\u0168":5,"\"":62,"'":62,",":-9,";":-9,"-":64,"\u2013":64,"\u2014":64,"\u2019":61,"\u201d":61,".":-8,":":-8,"\u2026":-8,"\u00bb":-10,"\u203a":-10}},"\u013e":{"d":"74,-110r0,-601r5,-6r70,-10r5,4r0,608v0,39,30,45,45,45r4,0r4,5r-11,63r-5,5r-8,0v-27,0,-109,-8,-109,-113xm220,-567r-5,-6r29,-142r6,-4r78,0r5,4r-72,152r-7,3","w":277,"k":{"\u0149":-12,"\u0129":-61,"\u0127":-31,"\u0159":-20,"\u012b":-55,"\u201d":-19,"\u2019":-19,"\u0135":-37,"\u00ef":-61,"\u00ee":-37,"\u00ec":-75,"}":-48,"]":-48,"?":-28,")":-45,"'":-39,"\"":-39,"!":-21}},"\u0139":{"d":"139,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm104,-5r0,-660r5,-6r74,-10r5,4r0,597r288,0r4,5r-18,70r-6,5r-347,0","w":474,"k":{"J":-16,"\u0134":-16,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":51,"W":48,"\u0174":48,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0177":19,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u0170":5,"\u0172":5,"\u016e":5,"\u0168":5,"\"":62,"'":62,",":-9,";":-9,"-":64,"\u2013":64,"\u2014":64,"\u2019":61,"\u201d":61,".":-8,":":-8,"\u2026":-8,"\u00bb":-10,"\u203a":-10}},"\u013a":{"d":"114,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm74,-110r0,-555r5,-6r70,-10r5,4r0,562v0,39,30,45,45,45r4,0r4,5r-11,63r-5,5r-8,0v-27,0,-109,-8,-109,-113","w":247},"\u0145":{"d":"93,-5r0,-660r5,-6r74,-10r7,4r324,488r26,48r0,-524r5,-6r74,-10r5,4r0,672r-5,5r-71,0r-8,-5r-326,-492r-26,-48r0,540r-5,5r-74,0xm316,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":707,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u0146":{"d":"79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,159,59,159,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-55,-117,-112,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0xm224,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":525,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u0148":{"d":"244,-576r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,159,59,159,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-55,-117,-112,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0","w":525,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u014c":{"d":"226,-772r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u014d":{"d":"144,-608r-5,-5r0,-58r5,-5r224,0r4,5r-12,58r-6,5r-210,0xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u0154":{"d":"266,-733r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm93,-5r0,-665r5,-5r178,0v53,0,105,9,147,35v49,31,83,84,83,164v0,186,-195,195,-195,195r22,22r117,141v17,20,42,42,80,42v4,0,7,-1,11,-1r4,5r-11,68r-6,5v-7,1,-14,2,-21,2v-69,0,-115,-60,-133,-83r-156,-194r-7,-4r-34,0r0,273r-5,5r-74,0xm177,-355r98,0v73,0,147,-28,147,-121v0,-91,-74,-122,-147,-122r-98,0r0,243","w":583,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"-":33,"\u2013":33,"\u2014":33}},"\u0155":{"d":"152,-569r-50,-20r-1,-6r60,-102r7,-4r108,0r5,4r-123,128r-6,0xm79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,137,-81r5,6r-15,84r-7,5v-14,-7,-31,-9,-52,-9v-22,0,-42,3,-63,9r0,406r-5,5r-70,0","w":309,"k":{"\"":-9,"'":-9,",":15,";":15,"-":13,"\u2013":13,"\u2014":13,"\u2019":-23,"\u201d":-23,".":15,":":15,"\u2026":15,"\u00f0":3}},"\u0158":{"d":"251,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm93,-5r0,-665r5,-5r178,0v53,0,105,9,147,35v49,31,83,84,83,164v0,186,-195,195,-195,195r22,22r117,141v17,20,42,42,80,42v4,0,7,-1,11,-1r4,5r-11,68r-6,5v-7,1,-14,2,-21,2v-69,0,-115,-60,-133,-83r-156,-194r-7,-4r-34,0r0,273r-5,5r-74,0xm177,-355r98,0v73,0,147,-28,147,-121v0,-91,-74,-122,-147,-122r-98,0r0,243","w":583,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"-":33,"\u2013":33,"\u2014":33}},"\u0159":{"d":"145,-576r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,137,-81r5,6r-15,84r-7,5v-14,-7,-31,-9,-52,-9v-22,0,-42,3,-63,9r0,406r-5,5r-70,0","w":309,"k":{"'":-9,"\"":-9,",":15,";":15,"-":13,"\u2013":13,"\u2014":13,"\u2019":-23,"\u201d":-23,".":15,":":15,"\u2026":15,"\u00f0":3}},"\u0156":{"d":"93,-5r0,-665r5,-5r178,0v53,0,105,9,147,35v49,31,83,84,83,164v0,186,-195,195,-195,195r22,22r117,141v17,20,42,42,80,42v4,0,7,-1,11,-1r4,5r-11,68r-6,5v-7,1,-14,2,-21,2v-69,0,-115,-60,-133,-83r-156,-194r-7,-4r-34,0r0,273r-5,5r-74,0xm177,-355r98,0v73,0,147,-28,147,-121v0,-91,-74,-122,-147,-122r-98,0r0,243xm256,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":583,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"-":33,"\u2013":33,"\u2014":33}},"\u0157":{"d":"79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,137,-81r5,6r-15,84r-7,5v-14,-7,-31,-9,-52,-9v-22,0,-42,3,-63,9r0,406r-5,5r-70,0xm76,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":309,"k":{"\"":-9,"'":-9,",":15,";":15,"-":13,"\u2013":13,"\u2014":13,"\u2019":-23,"\u201d":-23,".":15,":":15,"\u2026":15,"\u00f0":3}},"\u0164":{"d":"217,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm207,-5r0,-590r-186,0r-5,-5r0,-70r5,-5r469,0r4,5r-18,70r-6,5r-179,0r0,590r-5,5r-74,0","w":497,"k":{"\u0166":-17,"\u0149":55,"\u0138":55,"\u0129":-40,"\u0127":-9,"\u0159":55,"\u012b":-23,"\u017e":62,"\u0161":71,"\u015d":71,"\u0135":-22,"\u0131":55,"\u00ef":-18,"\u00ee":-22,"\u00ec":-19,"\u00e3":62,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":53,"\u0134":53,"T":-17,"\u0162":-17,"\u0164":-17,"\u021a":-17,"V":-18,"W":-17,"\u0174":-17,"Y":-19,"\u00dd":-19,"\u0178":-19,"\u0176":-19,"v":64,"w":64,"y":64,"\u00fd":64,"\u00ff":64,"\u0175":64,"\u0177":64,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":68,"z":62,"\u017a":62,"\u017c":62,"\"":-15,"'":-15,",":41,";":41,"-":46,"\u2013":46,"\u2014":46,"\u2019":-9,"\u201d":-9,".":42,":":42,"\u2026":42,"g":57,"\u011d":57,"\u0123":57,"\u011f":57,"\u0121":57,"s":71,"\u015b":71,"\u0219":71,"\u015f":71,"a":62,"\u00e0":62,"\u00e1":62,"\u00e2":62,"\u00e4":62,"\u00e5":62,"\u00e6":62,"\u0103":62,"\u0105":62,"\u0101":62,"m":55,"n":55,"p":55,"r":55,"\u00f1":55,"\u0144":55,"\u0146":55,"\u0148":55,"\u0155":55,"\u0157":55,"\u014b":55,"c":56,"d":56,"e":56,"o":56,"q":56,"\u00e7":56,"\u00e8":56,"\u00e9":56,"\u00ea":56,"\u00eb":56,"\u00f2":56,"\u00f3":56,"\u00f4":56,"\u00f5":56,"\u00f6":56,"\u00f8":56,"\u0107":56,"\u0109":56,"\u010d":56,"\u0117":56,"\u0119":56,"\u0151":56,"\u0153":56,"\u0113":56,"\u011b":56,"\u014d":56,"\u010f":56,"\u0111":56,"\u010b":56,"\u0115":56,"\u014f":56,"t":6,"\u0163":6,"\u0165":6,"\u0167":6,"\u021b":6,"u":56,"\u00f9":56,"\u00fa":56,"\u00fb":56,"\u00fc":56,"\u016b":56,"\u016d":56,"\u0171":56,"\u0173":56,"\u016f":56,"\u0169":56,"\u00f0":38,")":-14,"?":-12,"]":-12,"}":-12,"\u1e9e":3}},"\u0165":{"d":"240,-567r-5,-6r29,-142r6,-4r78,0r5,4r-72,152r-7,3xm89,-175r0,-247r-54,0r-5,-5r0,-62r5,-5r58,0r9,-101r5,-6r57,-8r5,4r0,111r166,0r5,5r-19,62r-7,5r-145,0r0,241v0,68,33,119,88,119v38,0,74,-31,74,-31r7,1r31,57r-2,7v-33,23,-72,40,-117,40v-91,0,-161,-62,-161,-187","w":379,"k":{",":-21,";":-21,".":-12,":":-12,"\u2026":-12}},"\u016e":{"d":"347,-733v-41,0,-81,-22,-81,-66r0,-13v0,-44,40,-65,81,-65v41,0,81,21,81,65r0,13v0,44,-40,66,-81,66xm347,-772v21,0,37,-10,37,-33v0,-23,-16,-33,-37,-33v-21,0,-37,10,-37,33v0,23,16,33,37,33xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u016f":{"d":"265,-569v-41,0,-81,-22,-81,-66r0,-13v0,-44,40,-65,81,-65v41,0,81,21,81,65r0,13v0,44,-40,66,-81,66xm265,-608v21,0,37,-10,37,-33v0,-23,-16,-33,-37,-33v-21,0,-37,10,-37,33v0,23,16,33,37,33xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u010f":{"d":"60,-164r0,-169v0,-113,77,-173,182,-173v41,0,79,12,110,34r-4,-44r0,-195r5,-6r70,-10r5,4r0,625r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176xm496,-567r-5,-6r29,-142r6,-4r78,0r5,4r-72,152r-7,3xm140,-181v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-240v0,-70,-36,-106,-103,-106v-61,0,-105,40,-105,117r0,136","w":537,"k":{"\u0149":-25,"\u0140":-16,"\u0133":-13,"\u0129":-74,"\u0127":-45,"\u0159":-33,"\u013e":-16,"\u013c":-16,"\u012b":-68,"\u0137":-13,"\u201d":-32,"\u2019":-32,"\u0135":-50,"\u012f":-13,"\u00fe":-13,"\u00ef":-74,"\u00ee":-50,"\u00ec":-88,"}":-58,"l":-16,"k":-13,"j":-13,"i":-13,"h":-13,"b":-13,"]":-57,"?":-40,")":-55,"'":-50,"\"":-50,"!":-34}},"\u0111":{"d":"60,-164r0,-169v0,-113,77,-173,182,-173v41,0,79,12,110,34r-4,-44r0,-56r-172,0r-5,-5r0,-58r5,-5r172,0r0,-71r5,-6r70,-10r5,4r0,83r77,0r4,5r-12,58r-6,5r-63,0r0,474r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176xm140,-181v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-240v0,-70,-36,-106,-103,-106v-61,0,-105,40,-105,117r0,136","w":507,"k":{"}":-12,"]":-13,"?":-13,")":-19}},"\u0147":{"d":"331,-740r-9,-5r-92,-102r2,-7r55,-18r7,0r67,78r67,-78r7,0r55,18r2,7r-92,102r-9,5r-60,0xm93,-5r0,-660r5,-6r74,-10r7,4r324,488r26,48r0,-524r5,-6r74,-10r5,4r0,672r-5,5r-71,0r-8,-5r-326,-492r-26,-48r0,540r-5,5r-74,0","w":707,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u0110":{"d":"107,-5r0,-291r-46,0r-5,-5r0,-70r5,-5r46,0r0,-294r5,-5r221,0v160,0,266,86,266,245r0,187v0,161,-106,243,-266,243r-221,0xm191,-80r142,0v102,0,180,-52,180,-172r0,-169v0,-117,-78,-174,-180,-174r-142,0r0,219r127,0r4,5r-18,70r-6,5r-107,0r0,216","w":670,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u00b5":{"d":"38,-233r-3,-7r0,-30r3,-7r398,-227r6,2r32,56r-2,7r-14,13r-65,129r354,0r5,5r0,74r-5,5r-354,0r65,129r14,13r2,7r-32,56r-6,2","w":787},"\u03bc":{"d":"38,-233r-3,-7r0,-30r3,-7r398,-227r6,2r32,56r-2,7r-14,13r-65,129r354,0r5,5r0,74r-5,5r-354,0r65,129r14,13r2,7r-32,56r-6,2","w":787},"\u2202":{"d":"40,-213r-5,-5r0,-74r5,-5r354,0r-65,-129r-14,-13r-2,-7r32,-56r6,-2r398,227r3,7r0,30r-3,7r-398,227r-6,-2r-32,-56r2,-7r14,-13r65,-129r-354,0","w":787},"\u220f":{"d":"62,-323r-5,-5r0,-74r5,-5r354,0r-65,-129r-14,-13r-2,-7r32,-56r6,-2r398,227r3,7r0,30r-3,7r-398,227r-6,-2r-32,-56r2,-7r14,-13r65,-129r-354,0","w":835},"\u03c0":{"d":"52,-276r0,-119v0,-199,172,-292,333,-292v164,0,333,93,333,292r0,119v0,200,-169,293,-333,293v-161,0,-333,-93,-333,-293xm117,-296v0,176,126,250,268,250v144,0,268,-74,268,-250r0,-78v0,-177,-124,-250,-268,-250v-142,0,-268,73,-268,250r0,78xm278,-135r0,-398r5,-5r111,0v90,0,152,35,152,125v0,71,-52,132,-128,132v-58,0,-74,-34,-74,-34r3,33r0,147r-5,5r-59,0xm347,-343v13,4,33,6,49,6v41,0,79,-21,79,-75v0,-51,-38,-66,-81,-66r-47,0r0,135","w":770},"\u222b":{"d":"242,-5r0,-354r-129,65r-13,14r-7,2r-56,-32r-2,-6r227,-398r7,-3r30,0r7,3r227,398r-2,6r-56,32r-7,-2r-13,-14r-129,-65r0,354r-5,5r-74,0","w":568},"\u03a9":{"d":"242,39r-227,-398r2,-6r56,-32r7,2r13,14r129,65r0,-354r5,-5r74,0r5,5r0,354r129,-65r13,-14r7,-2r56,32r2,6r-227,398r-7,3r-30,0","w":528},"\u2126":{"d":"242,39r-227,-398r2,-6r56,-32r7,2r13,14r129,65r0,-354r5,-5r74,0r5,5r0,354r129,-65r13,-14r7,-2r56,32r2,6r-227,398r-7,3r-30,0","w":528},"\u00ac":{"d":"38,-233r-3,-7r0,-30r3,-7r398,-227r6,2r32,56r-2,7r-14,13r-65,171r65,171r14,13r2,7r-32,56r-6,2","w":523},"\u221a":{"d":"49,-64r2,-7r14,-13r65,-171r-65,-171r-14,-13r-2,-7r32,-56r6,-2r398,227r3,7r0,30r-3,7r-398,227r-6,-2","w":523},"\u0394":{"d":"81,-343r-3,-7r0,-30r3,-7r398,-227r6,2r32,56r-2,7r-14,13r-65,171r65,171r14,13r2,7r-32,56r-6,2","w":603},"\u2206":{"d":"81,-343r-3,-7r0,-30r3,-7r398,-227r6,2r32,56r-2,7r-14,13r-65,171r65,171r14,13r2,7r-32,56r-6,2","w":603},"\u25ca":{"d":"116,-118r-32,-56r2,-7r14,-13r65,-171r-65,-171r-14,-13r-2,-7r32,-56r6,-2r398,227r3,7r0,30r-3,7r-398,227","w":584},"\u011e":{"d":"334,-733v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v104,0,178,-55,178,-174r0,-23r-115,0r-6,-5r-10,-70r4,-5r206,0r5,5r0,107v0,161,-100,245,-262,245v-157,0,-262,-84,-262,-245","w":653,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"\"":5,"'":5,",":9,";":9,"-":5,"\u2013":5,"\u2014":5,".":8,":":8,"\u2026":8}},"\u011f":{"d":"234,-569v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm102,-61v0,-37,19,-67,45,-83v0,0,-107,-29,-107,-173v0,-116,71,-182,188,-182r99,0r110,-23r6,4r10,55r-4,7r-68,19v33,20,49,72,49,122v0,110,-72,185,-192,185v-35,0,-64,-5,-64,-5v0,0,-6,15,-6,30v0,40,22,64,60,64r62,0v97,0,147,56,147,132v0,95,-94,140,-188,140v-97,0,-178,-30,-210,-96r2,-7r60,-27r7,2v0,0,22,56,139,56v72,0,110,-34,110,-71v0,-29,-23,-57,-67,-57r-62,0v-83,0,-126,-46,-126,-92xm233,-201v78,0,118,-39,118,-116v0,-79,-40,-117,-118,-117v-68,0,-114,39,-114,117v0,76,40,116,114,116","w":486},"\u0130":{"d":"95,-772r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm93,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u015e":{"d":"50,-48r-2,-7r41,-56r9,-1v29,25,93,44,137,44v71,0,131,-31,131,-115v0,-161,-299,-90,-299,-310v0,-120,92,-192,200,-192v100,0,163,41,172,50r1,7r-38,58r-8,1v-28,-21,-71,-36,-123,-36v-80,0,-118,46,-118,109v0,150,299,81,299,312v0,132,-93,183,-184,193v14,14,37,41,37,74v0,59,-46,93,-102,93v-29,0,-67,-10,-88,-32r-2,-7r13,-34r7,-3v14,10,29,16,44,16v51,0,68,-31,68,-67v0,-10,-6,-26,-11,-37r-2,0v-47,0,-130,-19,-182,-60","w":508,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"x":3,",":5,";":5,"-":6,"\u2013":6,"\u2014":6}},"\u015f":{"d":"48,-34r-1,-6r38,-53r8,-1v21,18,73,34,104,34v52,0,100,-16,100,-78v0,-102,-247,-47,-247,-221v0,-103,91,-147,180,-147v46,0,90,12,129,39r2,7r-39,53r-7,0v-22,-15,-55,-27,-83,-27v-59,0,-100,28,-100,75v0,111,247,45,247,221v0,99,-60,138,-137,147v14,14,37,41,37,74v0,59,-46,93,-102,93v-29,0,-67,-10,-88,-32r-2,-7r13,-34r7,-3v14,10,29,16,44,16v51,0,68,-31,68,-67v0,-10,-6,-26,-11,-37r-8,0v-58,0,-114,-17,-152,-46","w":423},"\u010a":{"d":"290,-772r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v82,0,141,-33,169,-93r7,-2r65,25r3,6v-33,95,-121,144,-244,144v-157,0,-262,-84,-262,-245","w":627,"k":{"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0177":4,",":5,";":5,"-":55,"\u2013":55,"\u2014":55,".":5,":":5,"\u2026":5,"g":5,"\u011d":5,"\u0123":5,"\u011f":5,"\u0121":5,"s":4,"\u015b":4,"\u015d":4,"\u0161":4,"\u0219":4,"\u015f":4}},"\u010b":{"d":"210,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm59,-161r0,-171v0,-102,72,-174,195,-174v75,0,142,34,170,102r-3,6r-60,21r-7,-2v-18,-34,-55,-55,-105,-55v-67,0,-110,41,-110,118r0,138v0,77,43,118,110,118v62,0,93,-22,110,-53r7,-2r60,21r3,6v-25,65,-90,100,-175,100v-123,0,-195,-71,-195,-173","w":472,"k":{"-":36,"\u2013":36,"\u2014":36}},"\u0114":{"d":"280,-733v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm93,-5r0,-665r5,-5r347,0r5,5r0,70r-5,5r-268,0r0,200r233,0r4,5r-18,70r-6,5r-213,0r0,235r269,0r4,5r-10,70r-6,5r-336,0","w":513,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0177":5,"-":34,"\u2013":34,"\u2014":34}},"\u0115":{"d":"247,-569v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm59,-161r0,-168v0,-112,77,-177,190,-177v128,0,175,78,175,148v0,99,-70,147,-165,147v-98,0,-122,-49,-125,-56r5,37r0,52v0,77,44,118,112,118v60,0,90,-20,109,-53r7,-2r60,21r3,6v-24,64,-90,100,-175,100v-123,0,-196,-59,-196,-173xm139,-300v0,0,43,18,97,18v55,0,104,-18,104,-80v0,-35,-27,-72,-94,-72v-68,0,-107,39,-107,116r0,18","w":477},"\u0120":{"d":"290,-772r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm71,-233r0,-204v0,-162,105,-248,262,-248v110,0,198,50,234,138r-3,6r-67,28r-7,-2v-27,-55,-85,-90,-157,-90v-102,0,-176,59,-176,175r0,188v0,119,74,174,176,174v104,0,178,-55,178,-174r0,-23r-115,0r-6,-5r-10,-70r4,-5r206,0r5,5r0,107v0,161,-100,245,-262,245v-157,0,-262,-84,-262,-245","w":653,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,"\"":5,"'":5,",":9,";":9,"-":5,"\u2013":5,"\u2014":5,".":8,":":8,"\u2026":8}},"\u0121":{"d":"190,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm102,-61v0,-37,19,-67,45,-83v0,0,-107,-29,-107,-173v0,-116,71,-182,188,-182r99,0r110,-23r6,4r10,55r-4,7r-68,19v33,20,49,72,49,122v0,110,-72,185,-192,185v-35,0,-64,-5,-64,-5v0,0,-6,15,-6,30v0,40,22,64,60,64r62,0v97,0,147,56,147,132v0,95,-94,140,-188,140v-97,0,-178,-30,-210,-96r2,-7r60,-27r7,2v0,0,22,56,139,56v72,0,110,-34,110,-71v0,-29,-23,-57,-67,-57r-62,0v-83,0,-126,-46,-126,-92xm233,-201v78,0,118,-39,118,-116v0,-79,-40,-117,-118,-117v-68,0,-114,39,-114,117v0,76,40,116,114,116","w":486},"\u0126":{"d":"119,-5r0,-501r-73,0r-5,-5r0,-63r5,-5r73,0r0,-86r5,-6r74,-10r5,4r0,98r356,0r0,-86r5,-6r74,-10r5,4r0,98r94,0r5,5r-14,63r-7,5r-78,0r0,501r-5,5r-74,0r-5,-5r0,-309r-356,0r0,309r-5,5r-74,0xm203,-394r356,0r0,-112r-356,0r0,112","w":772,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u0127":{"d":"76,-5r0,-564r-66,0r-5,-5r0,-58r5,-5r66,0r0,-74r5,-6r70,-10r5,4r0,86r198,0r5,5r-14,58r-7,5r-182,0r0,97r-5,44v8,-18,43,-78,144,-78v88,0,154,59,154,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-49,-117,-108,-117v-22,0,-87,18,-105,23r0,406r-5,5r-70,0","w":522,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u0128":{"d":"33,-756r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm98,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":271,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u0129":{"d":"9,-592r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":231,"k":{"\u201d":-6,"\u2019":-6,"}":-26,"]":-27,"?":-25,")":-30,"'":-23,"\"":-23}},"\u0132":{"d":"264,-31r30,-62r8,-1v21,16,44,26,73,26v34,0,88,-25,88,-110r0,-487r5,-6r74,-10r5,4r0,507v0,111,-67,182,-167,182v-47,0,-86,-14,-115,-36xm93,-5r0,-660r5,-6r74,-10r5,4r0,672r-5,5r-74,0","w":637,"k":{",":11,";":11,"-":10,"\u2013":10,"\u2014":10,".":11,":":11,"\u2026":11}},"\u0133":{"d":"324,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm74,-608r-5,-5r0,-83r5,-5r83,0r5,5r0,83r-5,5r-83,0xm157,128r5,-1v0,0,31,32,77,32v37,0,86,-33,86,-120r0,-522r5,-6r70,-10r5,4r0,540v0,116,-63,186,-162,186v-50,0,-86,-17,-116,-39r-2,-6xm75,-5r0,-478r5,-6r70,-10r5,4r0,490r-5,5r-70,0","w":481},"\u0138":{"d":"75,-5r0,-478r5,-6r70,-10r5,4r0,221r8,0r172,-211r7,-4r98,-10r5,5r-183,214r-21,20r21,24r87,117v9,13,40,48,78,48v4,0,13,0,18,-1r5,5r-11,64r-5,5v-6,1,-15,1,-21,1v-80,0,-127,-71,-136,-84r-114,-158r-8,0r0,234r-4,5r-72,0","w":477,"k":{"\u2026":-8,"\u201d":-7,"\u2019":-7,";":-12,":":-8,".":-8,",":-12,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0175":6,"\u0177":6,"C":6,"G":6,"O":6,"Q":6,"\u00c7":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"\u00d6":6,"\u00d8":6,"\u0106":6,"\u0108":6,"\u010c":6,"\u011c":6,"\u0150":6,"\u0152":6,"\u0122":6,"\u014c":6,"\u011e":6,"\u010a":6,"\u0120":6,"\u014e":6,"-":7,"\u2013":7,"\u2014":7,"g":6,"\u011d":6,"\u0123":6,"\u011f":6,"\u0121":6,"f":3,"\u00df":3,"\u017f":3,"c":6,"d":6,"e":6,"o":6,"q":6,"\u00e7":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00f2":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"\u00f6":6,"\u00f8":6,"\u0107":6,"\u0109":6,"\u010d":6,"\u0117":6,"\u0119":6,"\u0151":6,"\u0153":6,"\u0113":6,"\u011b":6,"\u014d":6,"\u010f":6,"\u0111":6,"\u010b":6,"\u0115":6,"\u014f":6,"t":5,"\u0163":5,"\u0165":5,"\u0167":5,"\u021b":5,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u016b":4,"\u016d":4,"\u0171":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u00f0":6}},"\u013f":{"d":"93,-5r0,-660r5,-6r74,-10r5,4r0,597r288,0r4,5r-18,70r-6,5r-347,0xm318,-307r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0","w":474,"k":{"J":-16,"\u0134":-16,"T":47,"\u0162":47,"\u0164":47,"\u0166":47,"\u021a":47,"V":51,"W":48,"\u0174":48,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0177":19,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u016a":5,"\u016c":5,"\u0170":5,"\u0172":5,"\u016e":5,"\u0168":5,"\"":62,"'":62,",":-9,";":-9,"-":64,"\u2013":64,"\u2014":64,"\u2019":61,"\u201d":61,".":-8,":":-8,"\u2026":-8,"\u00bb":-10,"\u203a":-10}},"\u0140":{"d":"74,-110r0,-601r5,-6r70,-10r5,4r0,608v0,39,30,45,45,45r4,0r4,5r-11,63r-5,5r-8,0v-27,0,-109,-8,-109,-113xm283,-302r-5,-5r0,-94r5,-5r92,0r5,5r0,94r-5,5r-92,0","w":411},"\u0149":{"d":"76,-560r-34,-7r-5,-6r29,-142r6,-4r78,0r5,4r-72,152xm79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,159,59,159,173r0,328r-5,5r-70,0r-5,-5r0,-312v0,-86,-55,-117,-112,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0","w":525,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u014a":{"d":"93,-5r0,-660r5,-6r74,-10r7,4r314,473r36,68r0,-529r5,-6r74,-10r5,4r0,717v0,94,-46,158,-114,179v-16,5,-33,7,-52,7r-5,-4r-12,-64r4,-4v10,0,29,-2,39,-7v29,-14,60,-49,60,-113r0,-33r-330,-498r-26,-48r0,540r-5,5r-74,0","w":707,"k":{",":6,";":6,"-":10,"\u2013":10,"\u2014":10,".":7,":":7,"\u2026":7}},"\u014b":{"d":"79,-5r0,-385r-25,-94r5,-6r61,-9r6,4r28,70v4,-13,33,-81,140,-81v88,0,159,59,159,173r0,339v0,94,-42,158,-110,179v-16,5,-33,7,-52,7r-5,-4r-12,-64r4,-4v10,0,29,-2,39,-7v29,-14,56,-49,56,-113r0,-317v0,-86,-55,-117,-112,-117v-22,0,-83,18,-102,23r0,406r-5,5r-70,0","w":525,"k":{"T":58,"\u0162":58,"\u0164":58,"\u0166":58,"\u021a":58,"V":19,"W":17,"\u0174":17,"Y":39,"\u00dd":39,"\u0178":39,"\u0176":39}},"\u014e":{"d":"334,-733v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm71,-233r0,-204v0,-162,106,-248,263,-248v157,0,263,86,263,248r0,204v0,161,-106,245,-263,245v-157,0,-263,-84,-263,-245xm157,-242v0,119,75,174,177,174v102,0,177,-55,177,-174r0,-188v0,-116,-75,-175,-177,-175v-102,0,-177,59,-177,175r0,188","w":668,"k":{"T":3,"\u0162":3,"\u0164":3,"\u0166":3,"\u021a":3,",":12,";":12,"-":6,"\u2013":6,"\u2014":6,".":11,":":11,"\u2026":11}},"\u014f":{"d":"254,-569v-64,0,-119,-41,-119,-106v0,-7,1,-14,2,-21r6,-5r48,0r5,5r0,9v0,32,18,58,58,58v40,0,58,-26,58,-58r0,-9r5,-5r48,0r6,5v1,7,2,14,2,21v0,65,-55,106,-119,106xm59,-161r0,-172v0,-112,82,-173,192,-173v110,0,192,61,192,173r0,172v0,112,-82,173,-192,173v-110,0,-192,-61,-192,-173xm139,-178v0,77,40,118,112,118v70,0,112,-41,112,-118r0,-139v0,-77,-42,-117,-112,-117v-72,0,-112,40,-112,117r0,139","k":{"T":57,"\u0162":57,"\u0164":57,"\u0166":57,"\u021a":57,"V":12,"W":11,"\u0174":11,"Y":36,"\u00dd":36,"\u0178":36,"\u0176":36}},"\u0166":{"d":"226,-5r0,-333r-144,0r-5,-5r0,-63r5,-5r144,0r0,-184r-186,0r-5,-5r0,-70r5,-5r469,0r4,5r-18,70r-6,5r-179,0r0,184r156,0r5,5r-12,63r-7,5r-142,0r0,333r-5,5r-74,0","w":536,"k":{"\u021a":-17,"\u0177":64,"\u0176":-19,"\u0175":64,"\u0174":-17,"\u0166":-17,"\u0149":55,"\u0129":-21,"\u0164":-17,"\u0159":55,"\u201d":-9,"\u2019":-9,"\u017e":62,"\u0178":-19,"\u0162":-17,"\u0161":71,"\u015d":71,"\u015b":71,"\u00ff":64,"\u00fd":64,"\u00dd":-19,"y":64,"w":64,"v":64,"Y":-19,"W":-17,"V":-18,"T":-17,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":53,"\u0134":53,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":68,"z":62,"\u017a":62,"\u017c":62,"\"":-15,"'":-15,",":41,";":41,"-":46,"\u2013":46,"\u2014":46,".":42,":":42,"\u2026":42,"g":57,"\u011d":57,"\u0123":57,"\u011f":57,"\u0121":57,"s":71,"\u0219":71,"\u015f":71,"a":62,"\u00e0":62,"\u00e1":62,"\u00e2":62,"\u00e3":62,"\u00e4":62,"\u00e5":62,"\u00e6":62,"\u0103":62,"\u0105":62,"\u0101":62,"m":55,"n":55,"p":55,"r":55,"\u00f1":55,"\u0144":55,"\u0146":55,"\u0148":55,"\u0155":55,"\u0157":55,"\u014b":55,"c":56,"d":56,"e":56,"o":56,"q":56,"\u00e7":56,"\u00e8":56,"\u00e9":56,"\u00ea":56,"\u00eb":56,"\u00f2":56,"\u00f3":56,"\u00f4":56,"\u00f5":56,"\u00f6":56,"\u00f8":56,"\u0107":56,"\u0109":56,"\u010d":56,"\u0117":56,"\u0119":56,"\u0151":56,"\u0153":56,"\u0113":56,"\u011b":56,"\u014d":56,"\u010f":56,"\u0111":56,"\u010b":56,"\u0115":56,"\u014f":56,"t":6,"\u0163":6,"\u0165":6,"\u0167":6,"\u021b":6,"u":56,"\u00f9":56,"\u00fa":56,"\u00fb":56,"\u00fc":56,"\u016b":56,"\u016d":56,"\u0171":56,"\u0173":56,"\u016f":56,"\u0169":56,"\u00f0":38,")":-14,"?":-12,"]":-12,"}":-12,"\u1e9e":3}},"\u0167":{"d":"102,-175r0,-92r-49,0r-5,-5r0,-58r5,-5r49,0r0,-87r-54,0r-5,-5r0,-62r5,-5r58,0r9,-101r5,-6r57,-8r5,4r0,111r166,0r5,5r-19,62r-7,5r-145,0r0,87r151,0r5,5r-14,58r-7,5r-135,0r0,86v0,68,33,119,88,119v38,0,74,-31,74,-31r7,1r31,57r-2,7v-33,23,-72,40,-117,40v-91,0,-161,-62,-161,-187","w":401,"k":{"\u2026":-12,";":-21,":":-12,".":-12,",":-21}},"\u0168":{"d":"241,-756r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm86,-233r0,-432r5,-6r74,-10r5,4r0,435v0,119,77,174,177,174v105,0,177,-55,177,-174r0,-423r5,-6r74,-10r5,4r0,444v0,161,-99,245,-261,245v-159,0,-261,-84,-261,-245","w":695,"k":{"J":5,"\u0134":5,",":17,";":17,"-":10,"\u2013":10,"\u2014":10,".":16,":":16,"\u2026":16}},"\u0169":{"d":"159,-592r-36,-27r0,-7v27,-44,51,-66,95,-66v54,0,65,46,98,46v12,0,27,-12,48,-33r7,-2r36,27r0,7v-25,44,-53,66,-97,66v-52,0,-65,-45,-97,-45v-13,0,-28,11,-47,32xm71,-164r0,-319r5,-6r70,-10r5,4r0,314v0,88,49,121,106,121v27,0,102,-28,102,-28r0,-395r5,-6r70,-10r5,4r0,397r25,88r-5,6r-61,9r-6,-4r-29,-72v-12,37,-49,83,-139,83v-89,0,-153,-61,-153,-176","w":518},"\u0174":{"d":"307,-751r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm236,-13r-222,-651r5,-6r79,-11r6,4r155,499r20,74r15,-74r104,-371r0,-116r5,-6r74,-10r5,4r0,140r98,359r15,74r18,-74r143,-485r5,-6r88,-12r6,4r-225,679r-7,5r-72,-14r-6,-6r-94,-338r-14,-67r-14,67r-100,353r-7,5r-74,-14","w":870,"k":{"\u0138":7,"\u0129":-25,"\u012b":-12,"\u0135":-6,"\u0131":7,"\u00ef":-7,"\u00ee":-6,"\u00ec":-16,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0102":19,"\u0104":19,"\u0100":19,"J":27,"\u0134":27,"T":-5,"\u0162":-5,"\u0164":-5,"\u0166":-5,"\u021a":-5,"z":3,"\u017a":3,"\u017c":3,"\u017e":3,"\"":-6,"'":-6,",":44,";":44,"-":32,"\u2013":32,"\u2014":32,".":44,":":44,"\u2026":44,"g":7,"\u011d":7,"\u0123":7,"\u011f":7,"\u0121":7,"s":8,"\u015b":8,"\u015d":8,"\u0161":8,"\u0219":8,"\u015f":8,"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"\u0103":11,"\u0105":11,"\u0101":11,"m":3,"n":3,"p":3,"r":3,"\u00f1":3,"\u0144":3,"\u0146":3,"\u0148":3,"\u0155":3,"\u0159":3,"\u0157":3,"\u0149":3,"\u014b":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00e7":12,"\u00e8":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u0107":12,"\u0109":12,"\u010d":12,"\u0117":12,"\u0119":12,"\u0151":12,"\u0153":12,"\u0113":12,"\u011b":12,"\u014d":12,"\u010f":12,"\u0111":12,"\u010b":12,"\u0115":12,"\u014f":12,"u":6,"\u00f9":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u016b":6,"\u016d":6,"\u0171":6,"\u0173":6,"\u016f":6,"\u0169":6,"\u00f0":15,")":-8,"?":-8,"]":-7,"}":-6}},"\u0175":{"d":"236,-587r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm191,-12r-177,-471r5,-6r75,-10r5,4r121,359r14,53r14,-53r81,-244r0,-103r5,-6r69,-10r5,4r0,128r75,231r14,53r14,-53r116,-348r6,-5r81,-10r3,5r-182,495r-7,6r-68,-14r-6,-6r-77,-234r-12,-49r-13,49r-81,248r-7,6r-67,-13","w":730,"k":{"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0102":4,"\u0104":4,"\u0100":4,"J":14,"\u0134":14,"T":60,"\u0162":60,"\u0164":60,"\u0166":60,"\u021a":60,"X":6,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"\"":-9,"'":-9,",":19,";":19,"\u2019":-23,"\u201d":-23,".":19,":":19,"\u2026":19}},"\u0176":{"d":"182,-733r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm215,-5r0,-291r-203,-367r5,-7r84,-11r6,4r134,266r16,39r17,-39r127,-252r5,-6r91,-12r6,4r-204,381r0,291r-5,5r-74,0","w":514,"k":{"\u0166":-9,"\u0138":24,"\u0129":-25,"\u0159":13,"\u012b":-15,"\u0131":24,"\u00ef":-10,"\u00ec":-20,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":27,"\u0134":27,"T":-9,"\u0162":-9,"\u0164":-9,"\u021a":-9,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":4,"z":6,"\u017a":6,"\u017c":6,"\u017e":6,"\"":-5,"'":-5,",":46,";":46,"-":50,"\u2013":50,"\u2014":50,".":46,":":46,"\u2026":46,"g":31,"\u011d":31,"\u0123":31,"\u011f":31,"\u0121":31,"s":26,"\u015b":26,"\u015d":26,"\u0161":26,"\u0219":26,"\u015f":26,"a":24,"\u00e0":24,"\u00e1":24,"\u00e2":24,"\u00e3":24,"\u00e4":24,"\u00e5":24,"\u00e6":24,"\u0103":24,"\u0105":24,"\u0101":24,"m":13,"n":13,"p":13,"r":13,"\u00f1":13,"\u0144":13,"\u0146":13,"\u0148":13,"\u0155":13,"\u0157":13,"\u0149":13,"\u014b":13,"c":37,"d":37,"e":37,"o":37,"q":37,"\u00e7":37,"\u00e8":37,"\u00e9":37,"\u00ea":37,"\u00eb":37,"\u00f2":37,"\u00f3":37,"\u00f4":37,"\u00f5":37,"\u00f6":37,"\u00f8":37,"\u0107":37,"\u0109":37,"\u010d":37,"\u0117":37,"\u0119":37,"\u0151":37,"\u0153":37,"\u0113":37,"\u011b":37,"\u014d":37,"\u010f":37,"\u0111":37,"\u010b":37,"\u0115":37,"\u014f":37,"u":21,"\u00f9":21,"\u00fa":21,"\u00fb":21,"\u00fc":21,"\u016b":21,"\u016d":21,"\u0171":21,"\u0173":21,"\u016f":21,"\u0169":21,"\u00f0":30,")":-11,"?":-9,"]":-11,"}":-11,"\u1e9e":4}},"\u0177":{"d":"160,-569r-55,-18r-2,-7r92,-102r9,-5r60,0r9,5r92,102r-2,7r-55,18r-7,0r-67,-78r-67,78r-7,0xm4,128v0,0,32,31,78,31v40,0,71,-31,93,-91r31,-84r-11,-4r-8,-7r-172,-456r5,-6r78,-10r5,4r117,360r15,53r12,-44r114,-358r6,-5r80,-10r3,5r-209,595v-29,83,-83,130,-157,130v-48,0,-85,-17,-115,-39r-2,-8r30,-54","w":465,"k":{"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u0102":4,"\u0104":4,"\u0100":4,"J":14,"\u0134":14,"T":60,"\u0162":60,"\u0164":60,"\u0166":60,"\u021a":60,"X":6,"Z":34,"\u0179":34,"\u017b":34,"\u017d":34,"\"":-9,"'":-9,",":19,";":19,"\u2019":-23,"\u201d":-23,".":19,":":19,"\u2026":19}},"\u021a":{"d":"207,-5r0,-590r-186,0r-5,-5r0,-70r5,-5r469,0r4,5r-18,70r-6,5r-179,0r0,590r-5,5r-74,0xm204,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":497,"k":{"\u0166":-17,"\u0149":55,"\u0138":55,"\u0129":-40,"\u0127":-9,"\u0159":55,"\u012b":-23,"\u017e":62,"\u0161":71,"\u015d":71,"\u0135":-22,"\u0131":55,"\u00ef":-18,"\u00ee":-22,"\u00ec":-19,"\u00e3":62,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"\u0102":31,"\u0104":31,"\u0100":31,"J":53,"\u0134":53,"T":-17,"\u0162":-17,"\u0164":-17,"\u021a":-17,"V":-18,"W":-17,"\u0174":-17,"Y":-19,"\u00dd":-19,"\u0178":-19,"\u0176":-19,"v":64,"w":64,"y":64,"\u00fd":64,"\u00ff":64,"\u0175":64,"\u0177":64,"C":3,"G":3,"O":3,"Q":3,"\u00c7":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u00d8":3,"\u0106":3,"\u0108":3,"\u010c":3,"\u011c":3,"\u0150":3,"\u0152":3,"\u0122":3,"\u014c":3,"\u011e":3,"\u010a":3,"\u0120":3,"\u014e":3,"x":68,"z":62,"\u017a":62,"\u017c":62,"\"":-15,"'":-15,",":41,";":41,"-":46,"\u2013":46,"\u2014":46,"\u2019":-9,"\u201d":-9,".":42,":":42,"\u2026":42,"g":57,"\u011d":57,"\u0123":57,"\u011f":57,"\u0121":57,"s":71,"\u015b":71,"\u0219":71,"\u015f":71,"a":62,"\u00e0":62,"\u00e1":62,"\u00e2":62,"\u00e4":62,"\u00e5":62,"\u00e6":62,"\u0103":62,"\u0105":62,"\u0101":62,"m":55,"n":55,"p":55,"r":55,"\u00f1":55,"\u0144":55,"\u0146":55,"\u0148":55,"\u0155":55,"\u0157":55,"\u014b":55,"c":56,"d":56,"e":56,"o":56,"q":56,"\u00e7":56,"\u00e8":56,"\u00e9":56,"\u00ea":56,"\u00eb":56,"\u00f2":56,"\u00f3":56,"\u00f4":56,"\u00f5":56,"\u00f6":56,"\u00f8":56,"\u0107":56,"\u0109":56,"\u010d":56,"\u0117":56,"\u0119":56,"\u0151":56,"\u0153":56,"\u0113":56,"\u011b":56,"\u014d":56,"\u010f":56,"\u0111":56,"\u010b":56,"\u0115":56,"\u014f":56,"t":6,"\u0163":6,"\u0165":6,"\u0167":6,"\u021b":6,"u":56,"\u00f9":56,"\u00fa":56,"\u00fb":56,"\u00fc":56,"\u016b":56,"\u016d":56,"\u0171":56,"\u0173":56,"\u016f":56,"\u0169":56,"\u00f0":38,")":-14,"?":-12,"]":-12,"}":-12,"\u1e9e":3}},"\u021b":{"d":"89,-175r0,-247r-54,0r-5,-5r0,-62r5,-5r58,0r9,-101r5,-6r57,-8r5,4r0,111r166,0r5,5r-19,62r-7,5r-145,0r0,241v0,68,33,119,88,119v38,0,74,-31,74,-31r7,1r31,57r-2,7v-33,23,-72,40,-117,40v-91,0,-161,-62,-161,-187xm183,51r6,-4r78,0r5,4r-72,152r-7,3r-34,-7r-5,-6","w":379,"k":{",":-21,";":-21,".":-12,":":-12,"\u2026":-12}},"\u017f":{"d":"101,189r0,-611r-65,0r-5,-5r0,-62r5,-5r65,0r0,-105v0,-110,90,-164,181,-164v38,0,73,10,98,23r1,7r-38,55r-7,2v-15,-7,-32,-11,-54,-11v-53,0,-101,26,-101,84r0,722r-20,101r-6,7r-49,-29","w":257,"k":{"\u0149":-63}},"\u00ad":{"d":"88,-219r-5,-5r0,-70r5,-5r257,0r4,5r-18,70r-6,5r-237,0","w":425},"\u00a0":{"w":249}}});


(function($){$.fn.tweet=function(o){var s={username:["LifestyleKungFu"],list:null,avatar_size:null,count:3,intro_text:null,outro_text:null,join_text:null,auto_join_text_default:"i said,",auto_join_text_ed:"i",auto_join_text_ing:"i am",auto_join_text_reply:"i replied to",auto_join_text_url:"i was looking at",loading_text:null,query:null};if(o)$.extend(s,o);$.fn.extend({linkUrl:function(){var returning=[];var regexp=/((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi;this.each(function(){returning.push(this.replace(regexp,"<a href=\"$1\">$1</a>"));});return $(returning);},linkUser:function(){var returning=[];var regexp=/[\@]+([A-Za-z0-9-_]+)/gi;this.each(function(){returning.push(this.replace(regexp,"<a href=\"http://twitter.com/$1\">@$1</a>"));});return $(returning);},linkHash:function(){var returning=[];var regexp=/ [\#]+([A-Za-z0-9-_]+)/gi;this.each(function(){returning.push(this.replace(regexp,' <a href="http://search.twitter.com/search?q=&tag=$1〈=all&from='+s.username.join("%2BOR%2B")+'">#$1</a>'));});return $(returning);},capAwesome:function(){var returning=[];this.each(function(){returning.push(this.replace(/\b(awesome)\b/gi,'<span class="awesome">$1</span>'));});return $(returning);},capEpic:function(){var returning=[];this.each(function(){returning.push(this.replace(/\b(epic)\b/gi,'<span class="epic">$1</span>'));});return $(returning);},makeHeart:function(){var returning=[];this.each(function(){returning.push(this.replace(/(<)+[3]/gi,"<tt class='heart'>♥</tt>"));});return $(returning);}});function parse_date(date_str){return Date.parse(date_str.replace(/^([a-z]{3})( [a-z]{3} \d\d?)(.*)( \d{4})$/i,'$1,$2$4$3'));}
function relative_time(time_value){var parsed_date=parse_date(time_value);var relative_to=(arguments.length>1)?arguments[1]:new Date();var delta=parseInt((relative_to.getTime()-parsed_date)/1000);var pluralize=function(singular,n){return''+n+' '+singular+(n==1?'':'s');};if(delta<60){return'less than a minute ago';}else if(delta<(60*60)){return'about '+pluralize("minute",parseInt(delta/60))+' ago';}else if(delta<(24*60*60)){return'about '+pluralize("hour",parseInt(delta/3600))+' ago';}else{return'about '+pluralize("day",parseInt(delta/86400))+' ago';}}
function build_url(){var proto=('https:'==document.location.protocol?'https:':'http:');if(s.list){return proto+"//api.twitter.com/1/"+s.username[0]+"/lists/"+s.list+"/statuses.json?per_page="+s.count+"&callback=?";}else if(s.query==null&&s.username.length==1){return proto+'//api.twitter.com/1/statuses/user_timeline.json?screen_name='+s.username[0]+'&count='+s.count+'&callback=?';}else{var query=(s.query||'from:'+s.username.join(' OR from:'));return proto+'//search.twitter.com/search.json?&q='+escape(query)+'&rpp='+s.count+'&callback=?';}}
return this.each(function(i,widget){var list=$('<ul class="tweet_list">').appendTo(widget);var intro='<p class="tweet_intro">'+s.intro_text+'</p>';var outro='<p class="tweet_outro">'+s.outro_text+'</p>';var loading=$('<p class="loading">'+s.loading_text+'</p>');if(typeof(s.username)=="string"){s.username=[s.username];}
if(s.loading_text)$(widget).append(loading);$.getJSON(build_url(),function(data){if(s.loading_text)loading.remove();if(s.intro_text)list.before(intro);var tweets=(data.results||data);$.each(tweets,function(i,item){if(s.join_text=="auto"){if(item.text.match(/^(@([A-Za-z0-9-_]+)) .*/i)){var join_text=s.auto_join_text_reply;}else if(item.text.match(/(^\w+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+) .*/i)){var join_text=s.auto_join_text_url;}else if(item.text.match(/^((\w+ed)|just) .*/im)){var join_text=s.auto_join_text_ed;}else if(item.text.match(/^(\w*ing) .*/i)){var join_text=s.auto_join_text_ing;}else{var join_text=s.auto_join_text_default;}}else{var join_text=s.join_text;};var from_user=item.from_user||item.user.screen_name;var profile_image_url=item.profile_image_url||item.user.profile_image_url;var join_template='<span class="tweet_join"> '+join_text+' </span>';var join=((s.join_text)?join_template:' ');var avatar_template='<a class="tweet_avatar" href="http://twitter.com/'+from_user+'"><img src="'+profile_image_url+'" height="'+s.avatar_size+'" width="'+s.avatar_size+'" alt="'+from_user+'\'s avatar" title="'+from_user+'\'s avatar" border="0"/></a>';var avatar=(s.avatar_size?avatar_template:'');var date='<span class="tweet_time"><a href="http://twitter.com/'+from_user+'/statuses/'+item.id+'" title="view tweet on twitter">'+relative_time(item.created_at)+'</a></span>';var text='<span class="tweet_text">'+$([item.text]).linkUrl().linkUser().linkHash().makeHeart().capAwesome().capEpic()[0]+'</span>';list.append('<li>'+avatar+date+join+text+'</li>');list.children('li:first').addClass('tweet_first');list.children('li:odd').addClass('tweet_even');list.children('li:even').addClass('tweet_odd');});if(s.outro_text)list.after(outro);$(widget).trigger("loaded").trigger((tweets.length==0?"empty":"full"));});});};})(jQuery);
