(function(window,undefined){var document=window.document,navigator=window.navigator,location=window.location;var jQuery=(function(){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context,rootjQuery);},_jQuery=window.jQuery,_$=window.$,rootjQuery,quickExpr=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,rnotwhite=/\S/,trimLeft=/^\s+/,trimRight=/\s+$/,rdigit=/\d/,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,rvalidchars=/^[\],:{}\s]*$/,rvalidescape=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,rvalidtokens=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,rvalidbraces=/(?:^|:|,)(?:\s*\[)+/g,rwebkit=/(webkit)[ \/]([\w.]+)/,ropera=/(opera)(?:.*version)?[ \/]([\w.]+)/,rmsie=/(msie) ([\w.]+)/,rmozilla=/(mozilla)(?:.*? rv:([\w.]+))?/,rdashAlpha=/-([a-z])/ig,fcamelCase=function(all,letter){return letter.toUpperCase();},userAgent=navigator.userAgent,browserMatch,readyList,DOMContentLoaded,toString=Object.prototype.toString,hasOwn=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,trim=String.prototype.trim,indexOf=Array.prototype.indexOf,class2type={};jQuery.fn=jQuery.prototype={constructor:jQuery,init:function(selector,context,rootjQuery){var match,elem,ret,doc;if(!selector){return this;}
if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}
if(selector==="body"&&!context&&document.body){this.context=document;this[0]=document.body;this.selector=selector;this.length=1;return this;}
if(typeof selector==="string"){if(selector.charAt(0)==="<"&&selector.charAt(selector.length-1)===">"&&selector.length>=3){match=[null,selector,null];}else{match=quickExpr.exec(selector);}
if(match&&(match[1]||!context)){if(match[1]){context=context instanceof jQuery?context[0]:context;doc=(context?context.ownerDocument||context:document);ret=rsingleTag.exec(selector);if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];jQuery.fn.attr.call(selector,context,true);}else{selector=[doc.createElement(ret[1])];}}else{ret=jQuery.buildFragment([match[1]],[doc]);selector=(ret.cacheable?jQuery.clone(ret.fragment):ret.fragment).childNodes;}
return jQuery.merge(this,selector);}else{elem=document.getElementById(match[2]);if(elem&&elem.parentNode){if(elem.id!==match[2]){return rootjQuery.find(selector);}
this.length=1;this[0]=elem;}
this.context=document;this.selector=selector;return this;}}else if(!context||context.jquery){return(context||rootjQuery).find(selector);}else{return this.constructor(context).find(selector);}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}
if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}
return jQuery.makeArray(selector,this);},selector:"",jquery:"1.6.2",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this[this.length+num]:this[num]);},pushStack:function(elems,name,selector){var ret=this.constructor();if(jQuery.isArray(elems)){push.apply(ret,elems);}else{jQuery.merge(ret,elems);}
ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector;}else if(name){ret.selector=this.selector+"."+name+"("+selector+")";}
return ret;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();readyList.done(fn);return this;},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1);},first:function(){return this.eq(0);},last:function(){return this.eq(-1);},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},end:function(){return this.prevObject||this.constructor(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=false;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target)){target={};}
if(length===i){target=this;--i;}
for(;i<length;i++){if((options=arguments[i])!=null){for(name in options){src=target[name];copy=options[name];if(target===copy){continue;}
if(deep&&copy&&(jQuery.isPlainObject(copy)||(copyIsArray=jQuery.isArray(copy)))){if(copyIsArray){copyIsArray=false;clone=src&&jQuery.isArray(src)?src:[];}else{clone=src&&jQuery.isPlainObject(src)?src:{};}
target[name]=jQuery.extend(deep,clone,copy);}else if(copy!==undefined){target[name]=copy;}}}}
return target;};jQuery.extend({noConflict:function(deep){if(window.$===jQuery){window.$=_$;}
if(deep&&window.jQuery===jQuery){window.jQuery=_jQuery;}
return jQuery;},isReady:false,readyWait:1,holdReady:function(hold){if(hold){jQuery.readyWait++;}else{jQuery.ready(true);}},ready:function(wait){if((wait===true&&!--jQuery.readyWait)||(wait!==true&&!jQuery.isReady)){if(!document.body){return setTimeout(jQuery.ready,1);}
jQuery.isReady=true;if(wait!==true&&--jQuery.readyWait>0){return;}
readyList.resolveWith(document,[jQuery]);if(jQuery.fn.trigger){jQuery(document).trigger("ready").unbind("ready");}}},bindReady:function(){if(readyList){return;}
readyList=jQuery._Deferred();if(document.readyState==="complete"){return setTimeout(jQuery.ready,1);}
if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",jQuery.ready,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",jQuery.ready);var toplevel=false;try{toplevel=window.frameElement==null;}catch(e){}
if(document.documentElement.doScroll&&toplevel){doScrollCheck();}}},isFunction:function(obj){return jQuery.type(obj)==="function";},isArray:Array.isArray||function(obj){return jQuery.type(obj)==="array";},isWindow:function(obj){return obj&&typeof obj==="object"&&"setInterval"in obj;},isNaN:function(obj){return obj==null||!rdigit.test(obj)||isNaN(obj);},type:function(obj){return obj==null?String(obj):class2type[toString.call(obj)]||"object";},isPlainObject:function(obj){if(!obj||jQuery.type(obj)!=="object"||obj.nodeType||jQuery.isWindow(obj)){return false;}
if(obj.constructor&&!hasOwn.call(obj,"constructor")&&!hasOwn.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwn.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},error:function(msg){throw msg;},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}
data=jQuery.trim(data);if(window.JSON&&window.JSON.parse){return window.JSON.parse(data);}
if(rvalidchars.test(data.replace(rvalidescape,"@").replace(rvalidtokens,"]").replace(rvalidbraces,""))){return(new Function("return "+data))();}
jQuery.error("Invalid JSON: "+data);},parseXML:function(data,xml,tmp){if(window.DOMParser){tmp=new DOMParser();xml=tmp.parseFromString(data,"text/xml");}else{xml=new ActiveXObject("Microsoft.XMLDOM");xml.async="false";xml.loadXML(data);}
tmp=xml.documentElement;if(!tmp||!tmp.nodeName||tmp.nodeName==="parsererror"){jQuery.error("Invalid XML: "+data);}
return xml;},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){(window.execScript||function(data){window["eval"].call(window,data);})(data);}},camelCase:function(string){return string.replace(rdashAlpha,fcamelCase);},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()===name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length,isObj=length===undefined||jQuery.isFunction(object);if(args){if(isObj){for(name in object){if(callback.apply(object[name],args)===false){break;}}}else{for(;i<length;){if(callback.apply(object[i++],args)===false){break;}}}}else{if(isObj){for(name in object){if(callback.call(object[name],name,object[name])===false){break;}}}else{for(;i<length;){if(callback.call(object[i],i,object[i++])===false){break;}}}}
return object;},trim:trim?function(text){return text==null?"":trim.call(text);}:function(text){return text==null?"":text.toString().replace(trimLeft,"").replace(trimRight,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){var type=jQuery.type(array);if(array.length==null||type==="string"||type==="function"||type==="regexp"||jQuery.isWindow(array)){push.call(ret,array);}else{jQuery.merge(ret,array);}}
return ret;},inArray:function(elem,array){if(indexOf){return indexOf.call(array,elem);}
for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i;}}
return-1;},merge:function(first,second){var i=first.length,j=0;if(typeof second.length==="number"){for(var l=second.length;j<l;j++){first[i++]=second[j];}}else{while(second[j]!==undefined){first[i++]=second[j++];}}
first.length=i;return first;},grep:function(elems,callback,inv){var ret=[],retVal;inv=!!inv;for(var i=0,length=elems.length;i<length;i++){retVal=!!callback(elems[i],i);if(inv!==retVal){ret.push(elems[i]);}}
return ret;},map:function(elems,callback,arg){var value,key,ret=[],i=0,length=elems.length,isArray=elems instanceof jQuery||length!==undefined&&typeof length==="number"&&((length>0&&elems[0]&&elems[length-1])||length===0||jQuery.isArray(elems));if(isArray){for(;i<length;i++){value=callback(elems[i],i,arg);if(value!=null){ret[ret.length]=value;}}}else{for(key in elems){value=callback(elems[key],key,arg);if(value!=null){ret[ret.length]=value;}}}
return ret.concat.apply([],ret);},guid:1,proxy:function(fn,context){if(typeof context==="string"){var tmp=fn[context];context=fn;fn=tmp;}
if(!jQuery.isFunction(fn)){return undefined;}
var args=slice.call(arguments,2),proxy=function(){return fn.apply(context,args.concat(slice.call(arguments)));};proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++;return proxy;},access:function(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){jQuery.access(elems,k,key[k],exec,fn,value);}
return elems;}
if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}
return elems;}
return length?fn(elems[0],key):undefined;},now:function(){return(new Date()).getTime();},uaMatch:function(ua){ua=ua.toLowerCase();var match=rwebkit.exec(ua)||ropera.exec(ua)||rmsie.exec(ua)||ua.indexOf("compatible")<0&&rmozilla.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},sub:function(){function jQuerySub(selector,context){return new jQuerySub.fn.init(selector,context);}
jQuery.extend(true,jQuerySub,this);jQuerySub.superclass=this;jQuerySub.fn=jQuerySub.prototype=this();jQuerySub.fn.constructor=jQuerySub;jQuerySub.sub=this.sub;jQuerySub.fn.init=function init(selector,context){if(context&&context instanceof jQuery&&!(context instanceof jQuerySub)){context=jQuerySub(context);}
return jQuery.fn.init.call(this,selector,context,rootjQuerySub);};jQuerySub.fn.init.prototype=jQuerySub.fn;var rootjQuerySub=jQuerySub(document);return jQuerySub;},browser:{}});jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(i,name){class2type["[object "+name+"]"]=name.toLowerCase();});browserMatch=jQuery.uaMatch(userAgent);if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;jQuery.browser.version=browserMatch.version;}
if(jQuery.browser.webkit){jQuery.browser.safari=true;}
if(rnotwhite.test("\xA0")){trimLeft=/^[\s\xA0]+/;trimRight=/[\s\xA0]+$/;}
rootjQuery=jQuery(document);if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready();};}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready();}};}
function doScrollCheck(){if(jQuery.isReady){return;}
try{document.documentElement.doScroll("left");}catch(e){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
return jQuery;})();var
promiseMethods="done fail isResolved isRejected promise then always pipe".split(" "),sliceDeferred=[].slice;jQuery.extend({_Deferred:function(){var
callbacks=[],fired,firing,cancelled,deferred={done:function(){if(!cancelled){var args=arguments,i,length,elem,type,_fired;if(fired){_fired=fired;fired=0;}
for(i=0,length=args.length;i<length;i++){elem=args[i];type=jQuery.type(elem);if(type==="array"){deferred.done.apply(deferred,elem);}else if(type==="function"){callbacks.push(elem);}}
if(_fired){deferred.resolveWith(_fired[0],_fired[1]);}}
return this;},resolveWith:function(context,args){if(!cancelled&&!fired&&!firing){args=args||[];firing=1;try{while(callbacks[0]){callbacks.shift().apply(context,args);}}
finally{fired=[context,args];firing=0;}}
return this;},resolve:function(){deferred.resolveWith(this,arguments);return this;},isResolved:function(){return!!(firing||fired);},cancel:function(){cancelled=1;callbacks=[];return this;}};return deferred;},Deferred:function(func){var deferred=jQuery._Deferred(),failDeferred=jQuery._Deferred(),promise;jQuery.extend(deferred,{then:function(doneCallbacks,failCallbacks){deferred.done(doneCallbacks).fail(failCallbacks);return this;},always:function(){return deferred.done.apply(deferred,arguments).fail.apply(this,arguments);},fail:failDeferred.done,rejectWith:failDeferred.resolveWith,reject:failDeferred.resolve,isRejected:failDeferred.isResolved,pipe:function(fnDone,fnFail){return jQuery.Deferred(function(newDefer){jQuery.each({done:[fnDone,"resolve"],fail:[fnFail,"reject"]},function(handler,data){var fn=data[0],action=data[1],returned;if(jQuery.isFunction(fn)){deferred[handler](function(){returned=fn.apply(this,arguments);if(returned&&jQuery.isFunction(returned.promise)){returned.promise().then(newDefer.resolve,newDefer.reject);}else{newDefer[action](returned);}});}else{deferred[handler](newDefer[action]);}});}).promise();},promise:function(obj){if(obj==null){if(promise){return promise;}
promise=obj={};}
var i=promiseMethods.length;while(i--){obj[promiseMethods[i]]=deferred[promiseMethods[i]];}
return obj;}});deferred.done(failDeferred.cancel).fail(deferred.cancel);delete deferred.cancel;if(func){func.call(deferred,deferred);}
return deferred;},when:function(firstParam){var args=arguments,i=0,length=args.length,count=length,deferred=length<=1&&firstParam&&jQuery.isFunction(firstParam.promise)?firstParam:jQuery.Deferred();function resolveFunc(i){return function(value){args[i]=arguments.length>1?sliceDeferred.call(arguments,0):value;if(!(--count)){deferred.resolveWith(deferred,sliceDeferred.call(args,0));}};}
if(length>1){for(;i<length;i++){if(args[i]&&jQuery.isFunction(args[i].promise)){args[i].promise().then(resolveFunc(i),deferred.reject);}else{--count;}}
if(!count){deferred.resolveWith(deferred,args);}}else if(deferred!==firstParam){deferred.resolveWith(deferred,length?[firstParam]:[]);}
return deferred.promise();}});jQuery.support=(function(){var div=document.createElement("div"),documentElement=document.documentElement,all,a,select,opt,input,marginDiv,support,fragment,body,testElementParent,testElement,testElementStyle,tds,events,eventName,i,isSupported;div.setAttribute("className","t");div.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>";all=div.getElementsByTagName("*");a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return{};}
select=document.createElement("select");opt=select.appendChild(document.createElement("option"));input=div.getElementsByTagName("input")[0];support={leadingWhitespace:(div.firstChild.nodeType===3),tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/top/.test(a.getAttribute("style")),hrefNormalized:(a.getAttribute("href")==="/a"),opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:(input.value==="on"),optSelected:opt.selected,getSetAttribute:div.className!=="t",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};input.checked=true;support.noCloneChecked=input.cloneNode(true).checked;select.disabled=true;support.optDisabled=!opt.disabled;try{delete div.test;}catch(e){support.deleteExpando=false;}
if(!div.addEventListener&&div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){support.noCloneEvent=false;});div.cloneNode(true).fireEvent("onclick");}
input=document.createElement("input");input.value="t";input.setAttribute("type","radio");support.radioValue=input.value==="t";input.setAttribute("checked","checked");div.appendChild(input);fragment=document.createDocumentFragment();fragment.appendChild(div.firstChild);support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;div.innerHTML="";div.style.width=div.style.paddingLeft="1px";body=document.getElementsByTagName("body")[0];testElement=document.createElement(body?"div":"body");testElementStyle={visibility:"hidden",width:0,height:0,border:0,margin:0};if(body){jQuery.extend(testElementStyle,{position:"absolute",left:-1000,top:-1000});}
for(i in testElementStyle){testElement.style[i]=testElementStyle[i];}
testElement.appendChild(div);testElementParent=body||documentElement;testElementParent.insertBefore(testElement,testElementParent.firstChild);support.appendChecked=input.checked;support.boxModel=div.offsetWidth===2;if("zoom"in div.style){div.style.display="inline";div.style.zoom=1;support.inlineBlockNeedsLayout=(div.offsetWidth===2);div.style.display="";div.innerHTML="<div style='width:4px;'></div>";support.shrinkWrapBlocks=(div.offsetWidth!==2);}
div.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";tds=div.getElementsByTagName("td");isSupported=(tds[0].offsetHeight===0);tds[0].style.display="";tds[1].style.display="none";support.reliableHiddenOffsets=isSupported&&(tds[0].offsetHeight===0);div.innerHTML="";if(document.defaultView&&document.defaultView.getComputedStyle){marginDiv=document.createElement("div");marginDiv.style.width="0";marginDiv.style.marginRight="0";div.appendChild(marginDiv);support.reliableMarginRight=(parseInt((document.defaultView.getComputedStyle(marginDiv,null)||{marginRight:0}).marginRight,10)||0)===0;}
testElement.innerHTML="";testElementParent.removeChild(testElement);if(div.attachEvent){for(i in{submit:1,change:1,focusin:1}){eventName="on"+i;isSupported=(eventName in div);if(!isSupported){div.setAttribute(eventName,"return;");isSupported=(typeof div[eventName]==="function");}
support[i+"Bubbles"]=isSupported;}}
testElement=fragment=select=opt=body=marginDiv=div=input=null;return support;})();jQuery.boxModel=jQuery.support.boxModel;var rbrace=/^(?:\{.*\}|\[.*\])$/,rmultiDash=/([a-z])([A-Z])/g;jQuery.extend({cache:{},uuid:0,expando:"jQuery"+(jQuery.fn.jquery+Math.random()).replace(/\D/g,""),noData:{"embed":true,"object":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000","applet":true},hasData:function(elem){elem=elem.nodeType?jQuery.cache[elem[jQuery.expando]]:elem[jQuery.expando];return!!elem&&!isEmptyDataObject(elem);},data:function(elem,name,data,pvt){if(!jQuery.acceptData(elem)){return;}
var internalKey=jQuery.expando,getByName=typeof name==="string",thisCache,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[jQuery.expando]:elem[jQuery.expando]&&jQuery.expando;if((!id||(pvt&&id&&!cache[id][internalKey]))&&getByName&&data===undefined){return;}
if(!id){if(isNode){elem[jQuery.expando]=id=++jQuery.uuid;}else{id=jQuery.expando;}}
if(!cache[id]){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop;}}
if(typeof name==="object"||typeof name==="function"){if(pvt){cache[id][internalKey]=jQuery.extend(cache[id][internalKey],name);}else{cache[id]=jQuery.extend(cache[id],name);}}
thisCache=cache[id];if(pvt){if(!thisCache[internalKey]){thisCache[internalKey]={};}
thisCache=thisCache[internalKey];}
if(data!==undefined){thisCache[jQuery.camelCase(name)]=data;}
if(name==="events"&&!thisCache[name]){return thisCache[internalKey]&&thisCache[internalKey].events;}
return getByName?thisCache[jQuery.camelCase(name)]||thisCache[name]:thisCache;},removeData:function(elem,name,pvt){if(!jQuery.acceptData(elem)){return;}
var internalKey=jQuery.expando,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[jQuery.expando]:jQuery.expando;if(!cache[id]){return;}
if(name){var thisCache=pvt?cache[id][internalKey]:cache[id];if(thisCache){delete thisCache[name];if(!isEmptyDataObject(thisCache)){return;}}}
if(pvt){delete cache[id][internalKey];if(!isEmptyDataObject(cache[id])){return;}}
var internalCache=cache[id][internalKey];if(jQuery.support.deleteExpando||cache!=window){delete cache[id];}else{cache[id]=null;}
if(internalCache){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop;}
cache[id][internalKey]=internalCache;}else if(isNode){if(jQuery.support.deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}else{elem[jQuery.expando]=null;}}},_data:function(elem,name,data){return jQuery.data(elem,name,data,true);},acceptData:function(elem){if(elem.nodeName){var match=jQuery.noData[elem.nodeName.toLowerCase()];if(match){return!(match===true||elem.getAttribute("classid")!==match);}}
return true;}});jQuery.fn.extend({data:function(key,value){var data=null;if(typeof key==="undefined"){if(this.length){data=jQuery.data(this[0]);if(this[0].nodeType===1){var attr=this[0].attributes,name;for(var i=0,l=attr.length;i<l;i++){name=attr[i].name;if(name.indexOf("data-")===0){name=jQuery.camelCase(name.substring(5));dataAttr(this[0],name,data[name]);}}}}
return data;}else if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}
var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);data=dataAttr(this[0],key,data);}
return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.each(function(){var $this=jQuery(this),args=[parts[0],value];$this.triggerHandler("setData"+parts[1]+"!",args);jQuery.data(this,key,value);$this.triggerHandler("changeData"+parts[1]+"!",args);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});function dataAttr(elem,key,data){if(data===undefined&&elem.nodeType===1){var name="data-"+key.replace(rmultiDash,"$1-$2").toLowerCase();data=elem.getAttribute(name);if(typeof data==="string"){try{data=data==="true"?true:data==="false"?false:data==="null"?null:!jQuery.isNaN(data)?parseFloat(data):rbrace.test(data)?jQuery.parseJSON(data):data;}catch(e){}
jQuery.data(elem,key,data);}else{data=undefined;}}
return data;}
function isEmptyDataObject(obj){for(var name in obj){if(name!=="toJSON"){return false;}}
return true;}
function handleQueueMarkDefer(elem,type,src){var deferDataKey=type+"defer",queueDataKey=type+"queue",markDataKey=type+"mark",defer=jQuery.data(elem,deferDataKey,undefined,true);if(defer&&(src==="queue"||!jQuery.data(elem,queueDataKey,undefined,true))&&(src==="mark"||!jQuery.data(elem,markDataKey,undefined,true))){setTimeout(function(){if(!jQuery.data(elem,queueDataKey,undefined,true)&&!jQuery.data(elem,markDataKey,undefined,true)){jQuery.removeData(elem,deferDataKey,true);defer.resolve();}},0);}}
jQuery.extend({_mark:function(elem,type){if(elem){type=(type||"fx")+"mark";jQuery.data(elem,type,(jQuery.data(elem,type,undefined,true)||0)+1,true);}},_unmark:function(force,elem,type){if(force!==true){type=elem;elem=force;force=false;}
if(elem){type=type||"fx";var key=type+"mark",count=force?0:((jQuery.data(elem,key,undefined,true)||1)-1);if(count){jQuery.data(elem,key,count,true);}else{jQuery.removeData(elem,key,true);handleQueueMarkDefer(elem,type,"mark");}}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type,undefined,true);if(data){if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data),true);}else{q.push(data);}}
return q||[];}},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),fn=queue.shift(),defer;if(fn==="inprogress"){fn=queue.shift();}
if(fn){if(type==="fx"){queue.unshift("inprogress");}
fn.call(elem,function(){jQuery.dequeue(elem,type);});}
if(!queue.length){jQuery.removeData(elem,type+"queue",true);handleQueueMarkDefer(elem,type,"queue");}}});jQuery.fn.extend({queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined){return jQuery.queue(this[0],type);}
return this.each(function(){var queue=jQuery.queue(this,type,data);if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type);}});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;type=type||"fx";return this.queue(type,function(){var elem=this;setTimeout(function(){jQuery.dequeue(elem,type);},time);});},clearQueue:function(type){return this.queue(type||"fx",[]);},promise:function(type,object){if(typeof type!=="string"){object=type;type=undefined;}
type=type||"fx";var defer=jQuery.Deferred(),elements=this,i=elements.length,count=1,deferDataKey=type+"defer",queueDataKey=type+"queue",markDataKey=type+"mark",tmp;function resolve(){if(!(--count)){defer.resolveWith(elements,[elements]);}}
while(i--){if((tmp=jQuery.data(elements[i],deferDataKey,undefined,true)||(jQuery.data(elements[i],queueDataKey,undefined,true)||jQuery.data(elements[i],markDataKey,undefined,true))&&jQuery.data(elements[i],deferDataKey,jQuery._Deferred(),true))){count++;tmp.done(resolve);}}
resolve();return defer.promise();}});var rclass=/[\n\t\r]/g,rspace=/\s+/,rreturn=/\r/g,rtype=/^(?:button|input)$/i,rfocusable=/^(?:button|input|object|select|textarea)$/i,rclickable=/^a(?:rea)?$/i,rboolean=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,rinvalidChar=/\:|^on/,formHook,boolHook;jQuery.fn.extend({attr:function(name,value){return jQuery.access(this,name,value,true,jQuery.attr);},removeAttr:function(name){return this.each(function(){jQuery.removeAttr(this,name);});},prop:function(name,value){return jQuery.access(this,name,value,true,jQuery.prop);},removeProp:function(name){name=jQuery.propFix[name]||name;return this.each(function(){try{this[name]=undefined;delete this[name];}catch(e){}});},addClass:function(value){var classNames,i,l,elem,setClass,c,cl;if(jQuery.isFunction(value)){return this.each(function(j){jQuery(this).addClass(value.call(this,j,this.className));});}
if(value&&typeof value==="string"){classNames=value.split(rspace);for(i=0,l=this.length;i<l;i++){elem=this[i];if(elem.nodeType===1){if(!elem.className&&classNames.length===1){elem.className=value;}else{setClass=" "+elem.className+" ";for(c=0,cl=classNames.length;c<cl;c++){if(!~setClass.indexOf(" "+classNames[c]+" ")){setClass+=classNames[c]+" ";}}
elem.className=jQuery.trim(setClass);}}}}
return this;},removeClass:function(value){var classNames,i,l,elem,className,c,cl;if(jQuery.isFunction(value)){return this.each(function(j){jQuery(this).removeClass(value.call(this,j,this.className));});}
if((value&&typeof value==="string")||value===undefined){classNames=(value||"").split(rspace);for(i=0,l=this.length;i<l;i++){elem=this[i];if(elem.nodeType===1&&elem.className){if(value){className=(" "+elem.className+" ").replace(rclass," ");for(c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}
elem.className=jQuery.trim(className);}else{elem.className="";}}}}
return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){jQuery(this).toggleClass(value.call(this,i,this.className,stateVal),stateVal);});}
return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className);}}else if(type==="undefined"||type==="boolean"){if(this.className){jQuery._data(this,"__className__",this.className);}
this.className=this.className||value===false?"":jQuery._data(this,"__className__")||"";}});},hasClass:function(selector){var className=" "+selector+" ";for(var i=0,l=this.length;i<l;i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}
return false;},val:function(value){var hooks,ret,elem=this[0];if(!arguments.length){if(elem){hooks=jQuery.valHooks[elem.nodeName.toLowerCase()]||jQuery.valHooks[elem.type];if(hooks&&"get"in hooks&&(ret=hooks.get(elem,"value"))!==undefined){return ret;}
ret=elem.value;return typeof ret==="string"?ret.replace(rreturn,""):ret==null?"":ret;}
return undefined;}
var isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val;if(this.nodeType!==1){return;}
if(isFunction){val=value.call(this,i,self.val());}else{val=value;}
if(val==null){val="";}else if(typeof val==="number"){val+="";}else if(jQuery.isArray(val)){val=jQuery.map(val,function(value){return value==null?"":value+"";});}
hooks=jQuery.valHooks[this.nodeName.toLowerCase()]||jQuery.valHooks[this.type];if(!hooks||!("set"in hooks)||hooks.set(this,val,"value")===undefined){this.value=val;}});}});jQuery.extend({valHooks:{option:{get:function(elem){var val=elem.attributes.value;return!val||val.specified?elem.value:elem.text;}},select:{get:function(elem){var value,index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";if(index<0){return null;}
for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected&&(jQuery.support.optDisabled?!option.disabled:option.getAttribute("disabled")===null)&&(!option.parentNode.disabled||!jQuery.nodeName(option.parentNode,"optgroup"))){value=jQuery(option).val();if(one){return value;}
values.push(value);}}
if(one&&!values.length&&options.length){return jQuery(options[index]).val();}
return values;},set:function(elem,value){var values=jQuery.makeArray(value);jQuery(elem).find("option").each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){elem.selectedIndex=-1;}
return values;}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attrFix:{tabindex:"tabIndex"},attr:function(elem,name,value,pass){var nType=elem.nodeType;if(!elem||nType===3||nType===8||nType===2){return undefined;}
if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}
if(!("getAttribute"in elem)){return jQuery.prop(elem,name,value);}
var ret,hooks,notxml=nType!==1||!jQuery.isXMLDoc(elem);if(notxml){name=jQuery.attrFix[name]||name;hooks=jQuery.attrHooks[name];if(!hooks){if(rboolean.test(name)){hooks=boolHook;}else if(formHook&&name!=="className"&&(jQuery.nodeName(elem,"form")||rinvalidChar.test(name))){hooks=formHook;}}}
if(value!==undefined){if(value===null){jQuery.removeAttr(elem,name);return undefined;}else if(hooks&&"set"in hooks&&notxml&&(ret=hooks.set(elem,value,name))!==undefined){return ret;}else{elem.setAttribute(name,""+value);return value;}}else if(hooks&&"get"in hooks&&notxml&&(ret=hooks.get(elem,name))!==null){return ret;}else{ret=elem.getAttribute(name);return ret===null?undefined:ret;}},removeAttr:function(elem,name){var propName;if(elem.nodeType===1){name=jQuery.attrFix[name]||name;if(jQuery.support.getSetAttribute){elem.removeAttribute(name);}else{jQuery.attr(elem,name,"");elem.removeAttributeNode(elem.getAttributeNode(name));}
if(rboolean.test(name)&&(propName=jQuery.propFix[name]||name)in elem){elem[propName]=false;}}},attrHooks:{type:{set:function(elem,value){if(rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}else if(!jQuery.support.radioValue&&value==="radio"&&jQuery.nodeName(elem,"input")){var val=elem.value;elem.setAttribute("type",value);if(val){elem.value=val;}
return value;}}},tabIndex:{get:function(elem){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?parseInt(attributeNode.value,10):rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}},value:{get:function(elem,name){if(formHook&&jQuery.nodeName(elem,"button")){return formHook.get(elem,name);}
return name in elem?elem.value:null;},set:function(elem,value,name){if(formHook&&jQuery.nodeName(elem,"button")){return formHook.set(elem,value,name);}
elem.value=value;}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(elem,name,value){var nType=elem.nodeType;if(!elem||nType===3||nType===8||nType===2){return undefined;}
var ret,hooks,notxml=nType!==1||!jQuery.isXMLDoc(elem);if(notxml){name=jQuery.propFix[name]||name;hooks=jQuery.propHooks[name];}
if(value!==undefined){if(hooks&&"set"in hooks&&(ret=hooks.set(elem,value,name))!==undefined){return ret;}else{return(elem[name]=value);}}else{if(hooks&&"get"in hooks&&(ret=hooks.get(elem,name))!==undefined){return ret;}else{return elem[name];}}},propHooks:{}});boolHook={get:function(elem,name){return jQuery.prop(elem,name)?name.toLowerCase():undefined;},set:function(elem,value,name){var propName;if(value===false){jQuery.removeAttr(elem,name);}else{propName=jQuery.propFix[name]||name;if(propName in elem){elem[propName]=true;}
elem.setAttribute(name,name.toLowerCase());}
return name;}};if(!jQuery.support.getSetAttribute){jQuery.attrFix=jQuery.propFix;formHook=jQuery.attrHooks.name=jQuery.attrHooks.title=jQuery.valHooks.button={get:function(elem,name){var ret;ret=elem.getAttributeNode(name);return ret&&ret.nodeValue!==""?ret.nodeValue:undefined;},set:function(elem,value,name){var ret=elem.getAttributeNode(name);if(ret){ret.nodeValue=value;return value;}}};jQuery.each(["width","height"],function(i,name){jQuery.attrHooks[name]=jQuery.extend(jQuery.attrHooks[name],{set:function(elem,value){if(value===""){elem.setAttribute(name,"auto");return value;}}});});}
if(!jQuery.support.hrefNormalized){jQuery.each(["href","src","width","height"],function(i,name){jQuery.attrHooks[name]=jQuery.extend(jQuery.attrHooks[name],{get:function(elem){var ret=elem.getAttribute(name,2);return ret===null?undefined:ret;}});});}
if(!jQuery.support.style){jQuery.attrHooks.style={get:function(elem){return elem.style.cssText.toLowerCase()||undefined;},set:function(elem,value){return(elem.style.cssText=""+value);}};}
if(!jQuery.support.optSelected){jQuery.propHooks.selected=jQuery.extend(jQuery.propHooks.selected,{get:function(elem){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}}});}
if(!jQuery.support.checkOn){jQuery.each(["radio","checkbox"],function(){jQuery.valHooks[this]={get:function(elem){return elem.getAttribute("value")===null?"on":elem.value;}};});}
jQuery.each(["radio","checkbox"],function(){jQuery.valHooks[this]=jQuery.extend(jQuery.valHooks[this],{set:function(elem,value){if(jQuery.isArray(value)){return(elem.checked=jQuery.inArray(jQuery(elem).val(),value)>=0);}}});});var rnamespaces=/\.(.*)$/,rformElems=/^(?:textarea|input|select)$/i,rperiod=/\./g,rspaces=/ /g,rescape=/[^\w\s.|`]/g,fcleanup=function(nm){return nm.replace(rescape,"\\$&");};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
if(handler===false){handler=returnFalse;}else if(!handler){return;}
var handleObjIn,handleObj;if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;}
if(!handler.guid){handler.guid=jQuery.guid++;}
var elemData=jQuery._data(elem);if(!elemData){return;}
var events=elemData.events,eventHandle=elemData.handle;if(!events){elemData.events=events={};}
if(!eventHandle){elemData.handle=eventHandle=function(e){return typeof jQuery!=="undefined"&&(!e||jQuery.event.triggered!==e.type)?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};}
eventHandle.elem=elem;types=types.split(" ");var type,i=0,namespaces;while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};if(type.indexOf(".")>-1){namespaces=type.split(".");type=namespaces.shift();handleObj.namespace=namespaces.slice(0).sort().join(".");}else{namespaces=[];handleObj.namespace="";}
handleObj.type=type;if(!handleObj.guid){handleObj.guid=handler.guid;}
var handlers=events[type],special=jQuery.event.special[type]||{};if(!handlers){handlers=events[type]=[];if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle);}}}
if(special.add){special.add.call(elem,handleObj);if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid;}}
handlers.push(handleObj);jQuery.event.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return;}
if(handler===false){handler=returnFalse;}
var ret,type,fn,j,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.hasData(elem)&&jQuery._data(elem),events=elemData&&elemData.events;if(!elemData||!events){return;}
if(types&&types.type){handler=types.handler;types=types.type;}
if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";for(type in events){jQuery.event.remove(elem,type+types);}
return;}
types=types.split(" ");while((type=types[i++])){origType=type;handleObj=null;all=type.indexOf(".")<0;namespaces=[];if(!all){namespaces=type.split(".");type=namespaces.shift();namespace=new RegExp("(^|\\.)"+
jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)");}
eventType=events[type];if(!eventType){continue;}
if(!handler){for(j=0;j<eventType.length;j++){handleObj=eventType[j];if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);eventType.splice(j--,1);}}
continue;}
special=jQuery.event.special[type]||{};for(j=pos||0;j<eventType.length;j++){handleObj=eventType[j];if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1);}
if(special.remove){special.remove.call(elem,handleObj);}}
if(pos!=null){break;}}}
if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){jQuery.removeEvent(elem,type,elemData.handle);}
ret=null;delete events[type];}}
if(jQuery.isEmptyObject(events)){var handle=elemData.handle;if(handle){handle.elem=null;}
delete elemData.events;delete elemData.handle;if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem,undefined,true);}}},customEvent:{"getData":true,"setData":true,"changeData":true},trigger:function(event,data,elem,onlyHandlers){var type=event.type||event,namespaces=[],exclusive;if(type.indexOf("!")>=0){type=type.slice(0,-1);exclusive=true;}
if(type.indexOf(".")>=0){namespaces=type.split(".");type=namespaces.shift();namespaces.sort();}
if((!elem||jQuery.event.customEvent[type])&&!jQuery.event.global[type]){return;}
event=typeof event==="object"?event[jQuery.expando]?event:new jQuery.Event(type,event):new jQuery.Event(type);event.type=type;event.exclusive=exclusive;event.namespace=namespaces.join(".");event.namespace_re=new RegExp("(^|\\.)"+namespaces.join("\\.(?:.*\\.)?")+"(\\.|$)");if(onlyHandlers||!elem){event.preventDefault();event.stopPropagation();}
if(!elem){jQuery.each(jQuery.cache,function(){var internalKey=jQuery.expando,internalCache=this[internalKey];if(internalCache&&internalCache.events&&internalCache.events[type]){jQuery.event.trigger(event,data,internalCache.handle.elem);}});return;}
if(elem.nodeType===3||elem.nodeType===8){return;}
event.result=undefined;event.target=elem;data=data!=null?jQuery.makeArray(data):[];data.unshift(event);var cur=elem,ontype=type.indexOf(":")<0?"on"+type:"";do{var handle=jQuery._data(cur,"handle");event.currentTarget=cur;if(handle){handle.apply(cur,data);}
if(ontype&&jQuery.acceptData(cur)&&cur[ontype]&&cur[ontype].apply(cur,data)===false){event.result=false;event.preventDefault();}
cur=cur.parentNode||cur.ownerDocument||cur===event.target.ownerDocument&&window;}while(cur&&!event.isPropagationStopped());if(!event.isDefaultPrevented()){var old,special=jQuery.event.special[type]||{};if((!special._default||special._default.call(elem.ownerDocument,event)===false)&&!(type==="click"&&jQuery.nodeName(elem,"a"))&&jQuery.acceptData(elem)){try{if(ontype&&elem[type]){old=elem[ontype];if(old){elem[ontype]=null;}
jQuery.event.triggered=type;elem[type]();}}catch(ieError){}
if(old){elem[ontype]=old;}
jQuery.event.triggered=undefined;}}
return event.result;},handle:function(event){event=jQuery.event.fix(event||window.event);var handlers=((jQuery._data(this,"events")||{})[event.type]||[]).slice(0),run_all=!event.exclusive&&!event.namespace,args=Array.prototype.slice.call(arguments,0);args[0]=event;event.currentTarget=this;for(var j=0,l=handlers.length;j<l;j++){var handleObj=handlers[j];if(run_all||event.namespace_re.test(handleObj.namespace)){event.handler=handleObj.handler;event.data=handleObj.data;event.handleObj=handleObj;var ret=handleObj.handler.apply(this,args);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped()){break;}}}
return event.result;},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[jQuery.expando]){return event;}
var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target){event.target=event.srcElement||document;}
if(event.target.nodeType===3){event.target=event.target.parentNode;}
if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement===event.target?event.toElement:event.fromElement;}
if(event.pageX==null&&event.clientX!=null){var eventDocument=event.target.ownerDocument||document,doc=eventDocument.documentElement,body=eventDocument.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0);}
if(event.which==null&&(event.charCode!=null||event.keyCode!=null)){event.which=event.charCode!=null?event.charCode:event.keyCode;}
if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey;}
if(!event.which&&event.button!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}
return event;},guid:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,liveConvert(handleObj.origType,handleObj.selector),jQuery.extend({},handleObj,{handler:liveHandler,guid:handleObj.handler.guid}));},remove:function(handleObj){jQuery.event.remove(this,liveConvert(handleObj.origType,handleObj.selector),handleObj);}},beforeunload:{setup:function(data,namespaces,eventHandle){if(jQuery.isWindow(this)){this.onbeforeunload=eventHandle;}},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}}};jQuery.removeEvent=document.removeEventListener?function(elem,type,handle){if(elem.removeEventListener){elem.removeEventListener(type,handle,false);}}:function(elem,type,handle){if(elem.detachEvent){elem.detachEvent("on"+type,handle);}};jQuery.Event=function(src,props){if(!this.preventDefault){return new jQuery.Event(src,props);}
if(src&&src.type){this.originalEvent=src;this.type=src.type;this.isDefaultPrevented=(src.defaultPrevented||src.returnValue===false||src.getPreventDefault&&src.getPreventDefault())?returnTrue:returnFalse;}else{this.type=src;}
if(props){jQuery.extend(this,props);}
this.timeStamp=jQuery.now();this[jQuery.expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.preventDefault){e.preventDefault();}else{e.returnValue=false;}},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.stopPropagation){e.stopPropagation();}
e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var related=event.relatedTarget,inside=false,eventType=event.type;event.type=event.data;if(related!==this){if(related){inside=jQuery.contains(this,related);}
if(!inside){jQuery.event.handle.apply(this,arguments);event.type=eventType;}}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces){if(!jQuery.nodeName(this,"form")){jQuery.event.add(this,"click.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){trigger("submit",this,arguments);}});}else{return false;}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit");}};}
if(!jQuery.support.changeBubbles){var changeFilters,getVal=function(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else if(jQuery.nodeName(elem,"select")){val=elem.selectedIndex;}
return val;},testChange=function testChange(e){var elem=e.target,data,val;if(!rformElems.test(elem.nodeName)||elem.readOnly){return;}
data=jQuery._data(elem,"_change_data");val=getVal(elem);if(e.type!=="focusout"||elem.type!=="radio"){jQuery._data(elem,"_change_data",val);}
if(data===undefined||val===data){return;}
if(data!=null||val){e.type="change";e.liveFired=undefined;jQuery.event.trigger(e,arguments[1],elem);}};jQuery.event.special.change={filters:{focusout:testChange,beforedeactivate:testChange,click:function(e){var elem=e.target,type=jQuery.nodeName(elem,"input")?elem.type:"";if(type==="radio"||type==="checkbox"||jQuery.nodeName(elem,"select")){testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=jQuery.nodeName(elem,"input")?elem.type:"";if((e.keyCode===13&&!jQuery.nodeName(elem,"textarea"))||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;jQuery._data(elem,"_change_data",getVal(elem));}},setup:function(data,namespaces){if(this.type==="file"){return false;}
for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type]);}
return rformElems.test(this.nodeName);},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");return rformElems.test(this.nodeName);}};changeFilters=jQuery.event.special.change.filters;changeFilters.focus=changeFilters.beforeactivate;}
function trigger(type,elem,args){var event=jQuery.extend({},args[0]);event.type=type;event.originalEvent={};event.liveFired=undefined;jQuery.event.handle.call(elem,event);if(event.isDefaultPrevented()){args[0].preventDefault();}}
if(!jQuery.support.focusinBubbles){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){var attaches=0;jQuery.event.special[fix]={setup:function(){if(attaches++===0){document.addEventListener(orig,handler,true);}},teardown:function(){if(--attaches===0){document.removeEventListener(orig,handler,true);}}};function handler(donor){var e=jQuery.event.fix(donor);e.type=fix;e.originalEvent={};jQuery.event.trigger(e,null,e.target);if(e.isDefaultPrevented()){donor.preventDefault();}}});}
jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){var handler;if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn);}
return this;}
if(arguments.length===2||data===false){fn=data;data=undefined;}
if(name==="one"){handler=function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);};handler.guid=fn.guid||jQuery.guid++;}else{handler=fn;}
if(type==="unload"&&name!=="one"){this.one(type,data,fn);}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.add(this[i],type,handler,data);}}
return this;};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.remove(this[i],type,fn);}}
return this;},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector);},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live");}else{return this.die(types,null,fn,selector);}},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){return jQuery.event.trigger(type,data,this[0],true);}},toggle:function(fn){var args=arguments,guid=fn.guid||jQuery.guid++,i=0,toggler=function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;};toggler.guid=guid;while(i<args.length){args[i++].guid=guid;}
return this.click(toggler);},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);if(typeof types==="object"&&!types.preventDefault){for(var key in types){context[name](key,data,types[key],selector);}
return this;}
if(name==="die"&&!types&&origSelector&&origSelector.charAt(0)==="."){context.unbind(origSelector);return this;}
if(data===false||jQuery.isFunction(data)){fn=data||returnFalse;data=undefined;}
types=(types||"").split(" ");while((type=types[i++])!=null){match=rnamespaces.exec(type);namespaces="";if(match){namespaces=match[0];type=type.replace(rnamespaces,"");}
if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);continue;}
preType=type;if(liveMap[type]){types.push(liveMap[type]+namespaces);type=type+namespaces;}else{type=(liveMap[type]||type)+namespaces;}
if(name==="live"){for(var j=0,l=context.length;j<l;j++){jQuery.event.add(context[j],"live."+liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType});}}else{context.unbind("live."+liveConvert(type,selector),fn);}}
return this;};});function liveHandler(event){var stop,maxLevel,related,match,handleObj,elem,j,i,l,data,close,namespace,ret,elems=[],selectors=[],events=jQuery._data(this,"events");if(event.liveFired===this||!events||!events.live||event.target.disabled||event.button&&event.type==="click"){return;}
if(event.namespace){namespace=new RegExp("(^|\\.)"+event.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");}
event.liveFired=this;var live=events.live.slice(0);for(j=0;j<live.length;j++){handleObj=live[j];if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector);}else{live.splice(j--,1);}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){close=match[i];for(j=0;j<live.length;j++){handleObj=live[j];if(close.selector===handleObj.selector&&(!namespace||namespace.test(handleObj.namespace))&&!close.elem.disabled){elem=close.elem;related=null;if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){event.type=handleObj.preType;related=jQuery(event.relatedTarget).closest(handleObj.selector)[0];if(related&&jQuery.contains(elem,related)){related=elem;}}
if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj,level:close.level});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];if(maxLevel&&match.level>maxLevel){break;}
event.currentTarget=match.elem;event.data=match.handleObj.data;event.handleObj=match.handleObj;ret=match.handleObj.origHandler.apply(match.elem,arguments);if(ret===false||event.isPropagationStopped()){maxLevel=match.level;if(ret===false){stop=false;}
if(event.isImmediatePropagationStopped()){break;}}}
return stop;}
function liveConvert(type,selector){return(type&&type!=="*"?type+".":"")+selector.replace(rperiod,"`").replace(rspaces,"&");}
jQuery.each(("blur focus focusin focusout load resize scroll unload click dblclick "+"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave "+"change select submit keydown keypress keyup error").split(" "),function(i,name){jQuery.fn[name]=function(data,fn){if(fn==null){fn=data;data=null;}
return arguments.length>0?this.bind(name,data,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true,rBackslash=/\\/g,rNonWord=/\W/;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;var origContext=context;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var m,set,checkSet,extra,ret,cur,pop,i,prune=true,contextXML=Sizzle.isXML(context),parts=[],soFar=selector;do{chunker.exec("");m=chunker.exec(soFar);if(m){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}}while(m);if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift();}
set=posProcess(selector,set);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){cur=parts.pop();pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){Sizzle.error(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&context.nodeType===1){for(i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&Sizzle.contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results);}
return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.matchesSelector=function(node,expr){return Sizzle(expr,null,null,[node]).length>0;};Sizzle.find=function(expr,context,isXML){var set;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var match,type=Expr.order[i];if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(rBackslash,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=typeof context.getElementsByTagName!=="undefined"?context.getElementsByTagName("*"):[];}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var match,anyFound,old=expr,result=[],curLoop=set,isXMLFilter=set&&set[0]&&Sizzle.isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var found,item,filter=Expr.filter[type],left=match[1];anyFound=false;match.splice(1,1);if(left.substr(left.length-1)==="\\"){continue;}
if(curLoop===result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr===old){if(anyFound==null){Sizzle.error(expr);}else{break;}}
old=expr;}
return curLoop;};Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");},type:function(elem){return elem.getAttribute("type");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!rNonWord.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part){var elem,isPartStr=typeof part==="string",i=0,l=checkSet.length;if(isPartStr&&!rNonWord.test(part)){part=part.toLowerCase();for(;i<l;i++){elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(;i<l;i++){elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m&&m.parentNode?[m]:[];}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){if(typeof context.getElementsByTagName!=="undefined"){return context.getElementsByTagName(match[1]);}}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(rBackslash,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n\r]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(rBackslash,"");},TAG:function(match,curLoop){return match[1].replace(rBackslash,"").toLowerCase();},CHILD:function(match){if(match[1]==="nth"){if(!match[2]){Sizzle.error(match[0]);}
match[2]=match[2].replace(/^\+|\s*/g,'');var test=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
else if(match[2]){Sizzle.error(match[0]);}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1]=match[1].replace(rBackslash,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
match[4]=(match[4]||match[5]||"").replace(rBackslash,"");if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){if(elem.parentNode){elem.parentNode.selectedIndex;}
return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return(/h\d/i).test(elem.nodeName);},text:function(elem){var attr=elem.getAttribute("type"),type=elem.type;return elem.nodeName.toLowerCase()==="input"&&"text"===type&&(attr===type||attr===null);},radio:function(elem){return elem.nodeName.toLowerCase()==="input"&&"radio"===elem.type;},checkbox:function(elem){return elem.nodeName.toLowerCase()==="input"&&"checkbox"===elem.type;},file:function(elem){return elem.nodeName.toLowerCase()==="input"&&"file"===elem.type;},password:function(elem){return elem.nodeName.toLowerCase()==="input"&&"password"===elem.type;},submit:function(elem){var name=elem.nodeName.toLowerCase();return(name==="input"||name==="button")&&"submit"===elem.type;},image:function(elem){return elem.nodeName.toLowerCase()==="input"&&"image"===elem.type;},reset:function(elem){var name=elem.nodeName.toLowerCase();return(name==="input"||name==="button")&&"reset"===elem.type;},button:function(elem){var name=elem.nodeName.toLowerCase();return name==="input"&&"button"===elem.type||name==="button";},input:function(elem){return(/input|select|textarea|button/i).test(elem.nodeName);},focus:function(elem){return elem===elem.ownerDocument.activeElement;}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0===i;},eq:function(elem,i,match){return match[3]-0===i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||Sizzle.getText([elem])||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var j=0,l=not.length;j<l;j++){if(not[j]===elem){return false;}}
return true;}else{Sizzle.error(name);}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case"only":case"first":while((node=node.previousSibling)){if(node.nodeType===1){return false;}}
if(type==="first"){return true;}
node=elem;case"last":while((node=node.nextSibling)){if(node.nodeType===1){return false;}}
return true;case"nth":var first=match[2],last=match[3];if(first===1&&last===0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first===0){return diff===0;}else{return(diff%first===0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS,fescape=function(all,num){return"\\"+(num-0+1);};for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+(/(?![^\[]*\])(?![^\(]*\))/.source));Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,fescape));}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType;}catch(e){makeArray=function(array,results){var i=0,ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var l=array.length;i<l;i++){ret.push(array[i]);}}else{for(;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder,siblingCheck;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(a===b){hasDuplicate=true;return 0;}
if(!a.compareDocumentPosition||!b.compareDocumentPosition){return a.compareDocumentPosition?-1:1;}
return a.compareDocumentPosition(b)&4?-1:1;};}else{sortOrder=function(a,b){if(a===b){hasDuplicate=true;return 0;}else if(a.sourceIndex&&b.sourceIndex){return a.sourceIndex-b.sourceIndex;}
var al,bl,ap=[],bp=[],aup=a.parentNode,bup=b.parentNode,cur=aup;if(aup===bup){return siblingCheck(a,b);}else if(!aup){return-1;}else if(!bup){return 1;}
while(cur){ap.unshift(cur);cur=cur.parentNode;}
cur=bup;while(cur){bp.unshift(cur);cur=cur.parentNode;}
al=ap.length;bl=bp.length;for(var i=0;i<al&&i<bl;i++){if(ap[i]!==bp[i]){return siblingCheck(ap[i],bp[i]);}}
return i===al?siblingCheck(a,bp[i],-1):siblingCheck(ap[i],b,1);};siblingCheck=function(a,b,ret){if(a===b){return ret;}
var cur=a.nextSibling;while(cur){if(cur===b){return-1;}
cur=cur.nextSibling;}
return 1;};}
Sizzle.getText=function(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else if(elem.nodeType!==8){ret+=Sizzle.getText(elem.childNodes);}}
return ret;};(function(){var form=document.createElement("div"),id="script"+(new Date()).getTime(),root=document.documentElement;form.innerHTML="<a name='"+id+"'/>";root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}
div=null;})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div"),id="__sizzle__";div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&!Sizzle.isXML(context)){var match=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(query);if(match&&(context.nodeType===1||context.nodeType===9)){if(match[1]){return makeArray(context.getElementsByTagName(query),extra);}else if(match[2]&&Expr.find.CLASS&&context.getElementsByClassName){return makeArray(context.getElementsByClassName(match[2]),extra);}}
if(context.nodeType===9){if(query==="body"&&context.body){return makeArray([context.body],extra);}else if(match&&match[3]){var elem=context.getElementById(match[3]);if(elem&&elem.parentNode){if(elem.id===match[3]){return makeArray([elem],extra);}}else{return makeArray([],extra);}}
try{return makeArray(context.querySelectorAll(query),extra);}catch(qsaError){}}else if(context.nodeType===1&&context.nodeName.toLowerCase()!=="object"){var oldContext=context,old=context.getAttribute("id"),nid=old||id,hasParent=context.parentNode,relativeHierarchySelector=/^\s*[+~]/.test(query);if(!old){context.setAttribute("id",nid);}else{nid=nid.replace(/'/g,"\\$&");}
if(relativeHierarchySelector&&hasParent){context=context.parentNode;}
try{if(!relativeHierarchySelector||hasParent){return makeArray(context.querySelectorAll("[id='"+nid+"'] "+query),extra);}}catch(pseudoError){}finally{if(!old){oldContext.removeAttribute("id");}}}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var html=document.documentElement,matches=html.matchesSelector||html.mozMatchesSelector||html.webkitMatchesSelector||html.msMatchesSelector;if(matches){var disconnectedMatch=!matches.call(document.createElement("div"),"div"),pseudoWorks=false;try{matches.call(document.documentElement,"[test!='']:sizzle");}catch(pseudoError){pseudoWorks=true;}
Sizzle.matchesSelector=function(node,expr){expr=expr.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!Sizzle.isXML(node)){try{if(pseudoWorks||!Expr.match.PSEUDO.test(expr)&&!/!=/.test(expr)){var ret=matches.call(node,expr);if(ret||!disconnectedMatch||node.document&&node.document.nodeType!==11){return ret;}}}catch(e){}}
return Sizzle(expr,null,null,[node]).length>0;};}})();(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return;}
div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return;}
Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var match=false;elem=elem[dir];while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName.toLowerCase()===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var match=false;elem=elem[dir];while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
if(document.documentElement.contains){Sizzle.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):true);};}else if(document.documentElement.compareDocumentPosition){Sizzle.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16);};}else{Sizzle.contains=function(){return false;};}
Sizzle.isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var match,tmpSet=[],later="",root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.text=Sizzle.getText;jQuery.isXMLDoc=Sizzle.isXML;jQuery.contains=Sizzle.contains;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,isSimple=/^.[^:#\[\.,]*$/,slice=Array.prototype.slice,POS=jQuery.expr.match.POS,guaranteedUnique={children:true,contents:true,next:true,prev:true};jQuery.fn.extend({find:function(selector){var self=this,i,l;if(typeof selector!=="string"){return jQuery(selector).filter(function(){for(i=0,l=self.length;i<l;i++){if(jQuery.contains(self[i],this)){return true;}}});}
var ret=this.pushStack("","find",selector),length,n,r;for(i=0,l=this.length;i<l;i++){length=ret.length;jQuery.find(selector,this[i],ret);if(i>0){for(n=length;n<ret.length;n++){for(r=0;r<length;r++){if(ret[r]===ret[n]){ret.splice(n--,1);break;}}}}}
return ret;},has:function(target){var targets=jQuery(target);return this.filter(function(){for(var i=0,l=targets.length;i<l;i++){if(jQuery.contains(this,targets[i])){return true;}}});},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector);},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector);},is:function(selector){return!!selector&&(typeof selector==="string"?jQuery.filter(selector,this).length>0:this.filter(selector).length>0);},closest:function(selectors,context){var ret=[],i,l,cur=this[0];if(jQuery.isArray(selectors)){var match,selector,matches={},level=1;if(cur&&selectors.length){for(i=0,l=selectors.length;i<l;i++){selector=selectors[i];if(!matches[selector]){matches[selector]=POS.test(selector)?jQuery(selector,context||this.context):selector;}}
while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur,level:level});}}
cur=cur.parentNode;level++;}}
return ret;}
var pos=POS.test(selectors)||typeof selectors!=="string"?jQuery(selectors,context||this.context):0;for(i=0,l=this.length;i<l;i++){cur=this[i];while(cur){if(pos?pos.index(cur)>-1:jQuery.find.matchesSelector(cur,selectors)){ret.push(cur);break;}else{cur=cur.parentNode;if(!cur||!cur.ownerDocument||cur===context||cur.nodeType===11){break;}}}}
ret=ret.length>1?jQuery.unique(ret):ret;return this.pushStack(ret,"closest",selectors);},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children());}
return jQuery.inArray(elem.jquery?elem[0]:elem,this);},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context):jQuery.makeArray(selector&&selector.nodeType?[selector]:selector),all=jQuery.merge(this.get(),set);return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all));},andSelf:function(){return this.add(this.prevObject);}});function isDisconnected(node){return!node||!node.parentNode||node.parentNode.nodeType===11;}
jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&parent.nodeType!==11?parent:null;},parents:function(elem){return jQuery.dir(elem,"parentNode");},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until);},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until);},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until);},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(until,selector){var ret=jQuery.map(this,fn,until),args=slice.call(arguments);if(!runtil.test(name)){selector=until;}
if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret);}
ret=this.length>1&&!guaranteedUnique[name]?jQuery.unique(ret):ret;if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse();}
return this.pushStack(ret,name,args.join(","));};});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")";}
return elems.length===1?jQuery.find.matchesSelector(elems[0],expr)?[elems[0]]:[]:jQuery.find.matches(expr,elems);},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur);}
cur=cur[dir];}
return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType===1&&++num===result){break;}}
return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n);}}
return r;}});function winnow(elements,qualifier,keep){qualifier=qualifier||0;if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){var retVal=!!qualifier.call(elem,i,elem);return retVal===keep;});}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,filtered);}}
return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep;});}
var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<(?:script|object|embed|option|style)/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,rscriptType=/\/(java|ecma)script/i,rcleanScript=/^\s*<!(?:\[CDATA\[|\-\-)/,wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"];}
jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);self.text(text.call(this,i,self.text()));});}
if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}
return jQuery.text(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}
if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}
wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}
return elem;}).append(this);}
return this;},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i));});}
return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem);}});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild);}});},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}},remove:function(selector,keepData){for(var i=0,elem;(elem=this[i])!=null;i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));jQuery.cleanData([elem]);}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}}
return this;},empty:function(){for(var i=0,elem;(elem=this[i])!=null;i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));}
while(elem.firstChild){elem.removeChild(elem.firstChild);}}
return this;},clone:function(dataAndEvents,deepDataAndEvents){dataAndEvents=dataAndEvents==null?false:dataAndEvents;deepDataAndEvents=deepDataAndEvents==null?dataAndEvents:deepDataAndEvents;return this.map(function(){return jQuery.clone(this,dataAndEvents,deepDataAndEvents);});},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!rnocache.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,"<$1></$2>");try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this);self.html(value.call(this,i,self.html()));});}else{this.empty().append(value);}
return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}
if(typeof value!=="string"){value=jQuery(value).detach();}
return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.length?this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value):this;}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,fragment,parent,value=args[0],scripts=[];if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true);});}
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback);});}
if(this[0]){parent=value&&value.parentNode;if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent};}else{results=jQuery.buildFragment(args,this,scripts);}
fragment=results.fragment;if(fragment.childNodes.length===1){first=fragment=fragment.firstChild;}else{first=fragment.firstChild;}
if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length,lastIndex=l-1;i<l;i++){callback.call(table?root(this[i],first):this[i],results.cacheable||(l>1&&i<lastIndex)?jQuery.clone(fragment,true,true):fragment);}}
if(scripts.length){jQuery.each(scripts,evalScript);}}
return this;}});function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}
function cloneCopyEvent(src,dest){if(dest.nodeType!==1||!jQuery.hasData(src)){return;}
var internalKey=jQuery.expando,oldData=jQuery.data(src),curData=jQuery.data(dest,oldData);if((oldData=oldData[internalKey])){var events=oldData.events;curData=curData[internalKey]=jQuery.extend({},oldData);if(events){delete curData.handle;curData.events={};for(var type in events){for(var i=0,l=events[type].length;i<l;i++){jQuery.event.add(dest,type+(events[type][i].namespace?".":"")+events[type][i].namespace,events[type][i],events[type][i].data);}}}}}
function cloneFixAttributes(src,dest){var nodeName;if(dest.nodeType!==1){return;}
if(dest.clearAttributes){dest.clearAttributes();}
if(dest.mergeAttributes){dest.mergeAttributes(src);}
nodeName=dest.nodeName.toLowerCase();if(nodeName==="object"){dest.outerHTML=src.outerHTML;}else if(nodeName==="input"&&(src.type==="checkbox"||src.type==="radio")){if(src.checked){dest.defaultChecked=dest.checked=src.checked;}
if(dest.value!==src.value){dest.value=src.value;}}else if(nodeName==="option"){dest.selected=src.defaultSelected;}else if(nodeName==="input"||nodeName==="textarea"){dest.defaultValue=src.defaultValue;}
dest.removeAttribute(jQuery.expando);}
jQuery.buildFragment=function(args,nodes,scripts){var fragment,cacheable,cacheresults,doc;if(nodes&&nodes[0]){doc=nodes[0].ownerDocument||nodes[0];}
if(!doc.createDocumentFragment){doc=document;}
if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&args[0].charAt(0)==="<"&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults&&cacheresults!==1){fragment=cacheresults;}}
if(!fragment){fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}
return{fragment:fragment,cacheable:cacheable};};jQuery.fragments={};jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector),parent=this.length===1&&this[0].parentNode;if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);return this;}else{for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery(insert[i])[original](elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,insert.selector);}};});function getAll(elem){if("getElementsByTagName"in elem){return elem.getElementsByTagName("*");}else if("querySelectorAll"in elem){return elem.querySelectorAll("*");}else{return[];}}
function fixDefaultChecked(elem){if(elem.type==="checkbox"||elem.type==="radio"){elem.defaultChecked=elem.checked;}}
function findInputs(elem){if(jQuery.nodeName(elem,"input")){fixDefaultChecked(elem);}else if("getElementsByTagName"in elem){jQuery.grep(elem.getElementsByTagName("input"),fixDefaultChecked);}}
jQuery.extend({clone:function(elem,dataAndEvents,deepDataAndEvents){var clone=elem.cloneNode(true),srcElements,destElements,i;if((!jQuery.support.noCloneEvent||!jQuery.support.noCloneChecked)&&(elem.nodeType===1||elem.nodeType===11)&&!jQuery.isXMLDoc(elem)){cloneFixAttributes(elem,clone);srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneFixAttributes(srcElements[i],destElements[i]);}}
if(dataAndEvents){cloneCopyEvent(elem,clone);if(deepDataAndEvents){srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneCopyEvent(srcElements[i],destElements[i]);}}}
srcElements=destElements=null;return clone;},clean:function(elems,context,fragment,scripts){var checkScriptType;context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[],j;for(var i=0,elem;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+="";}
if(!elem){continue;}
if(typeof elem==="string"){if(!rhtml.test(elem)){elem=context.createTextNode(elem);}else{elem=elem.replace(rxhtmlTag,"<$1></$2>");var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}
if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];for(j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j]);}}}
if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}
elem=div.childNodes;}}
var len;if(!jQuery.support.appendChecked){if(elem[0]&&typeof(len=elem.length)==="number"){for(j=0;j<len;j++){findInputs(elem[j]);}}else{findInputs(elem);}}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}}
if(fragment){checkScriptType=function(elem){return!elem.type||rscriptType.test(elem.type);};for(i=0;ret[i];i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1){var jsTags=jQuery.grep(ret[i].getElementsByTagName("script"),checkScriptType);ret.splice.apply(ret,[i+1,0].concat(jsTags));}
fragment.appendChild(ret[i]);}}}
return ret;},cleanData:function(elems){var data,id,cache=jQuery.cache,internalKey=jQuery.expando,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;for(var i=0,elem;(elem=elems[i])!=null;i++){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){continue;}
id=elem[jQuery.expando];if(id){data=cache[id]&&cache[id][internalKey];if(data&&data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{jQuery.removeEvent(elem,type,data.handle);}}
if(data.handle){data.handle.elem=null;}}
if(deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}}});function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"});}else{jQuery.globalEval((elem.text||elem.textContent||elem.innerHTML||"").replace(rcleanScript,"/*$0*/"));}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}
var ralpha=/alpha\([^)]*\)/i,ropacity=/opacity=([^)]*)/,rupper=/([A-Z]|^ms)/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,rrelNum=/^[+\-]=/,rrelNumFilter=/[^+\-\.\de]+/g,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],curCSS,getComputedStyle,currentStyle;jQuery.fn.css=function(name,value){if(arguments.length===2&&value===undefined){return this;}
return jQuery.access(this,name,value,true,function(elem,name,value){return value!==undefined?jQuery.style(elem,name,value):jQuery.css(elem,name);});};jQuery.extend({cssHooks:{opacity:{get:function(elem,computed){if(computed){var ret=curCSS(elem,"opacity","opacity");return ret===""?"1":ret;}else{return elem.style.opacity;}}}},cssNumber:{"fillOpacity":true,"fontWeight":true,"lineHeight":true,"opacity":true,"orphans":true,"widows":true,"zIndex":true,"zoom":true},cssProps:{"float":jQuery.support.cssFloat?"cssFloat":"styleFloat"},style:function(elem,name,value,extra){if(!elem||elem.nodeType===3||elem.nodeType===8||!elem.style){return;}
var ret,type,origName=jQuery.camelCase(name),style=elem.style,hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(value!==undefined){type=typeof value;if(type==="number"&&isNaN(value)||value==null){return;}
if(type==="string"&&rrelNum.test(value)){value=+value.replace(rrelNumFilter,"")+parseFloat(jQuery.css(elem,name));type="number";}
if(type==="number"&&!jQuery.cssNumber[origName]){value+="px";}
if(!hooks||!("set"in hooks)||(value=hooks.set(elem,value))!==undefined){try{style[name]=value;}catch(e){}}}else{if(hooks&&"get"in hooks&&(ret=hooks.get(elem,false,extra))!==undefined){return ret;}
return style[name];}},css:function(elem,name,extra){var ret,hooks;name=jQuery.camelCase(name);hooks=jQuery.cssHooks[name];name=jQuery.cssProps[name]||name;if(name==="cssFloat"){name="float";}
if(hooks&&"get"in hooks&&(ret=hooks.get(elem,true,extra))!==undefined){return ret;}else if(curCSS){return curCSS(elem,name);}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(name in options){elem.style[name]=old[name];}}});jQuery.curCSS=jQuery.css;jQuery.each(["height","width"],function(i,name){jQuery.cssHooks[name]={get:function(elem,computed,extra){var val;if(computed){if(elem.offsetWidth!==0){return getWH(elem,name,extra);}else{jQuery.swap(elem,cssShow,function(){val=getWH(elem,name,extra);});}
return val;}},set:function(elem,value){if(rnumpx.test(value)){value=parseFloat(value);if(value>=0){return value+"px";}}else{return value;}}};});if(!jQuery.support.opacity){jQuery.cssHooks.opacity={get:function(elem,computed){return ropacity.test((computed&&elem.currentStyle?elem.currentStyle.filter:elem.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":computed?"1":"";},set:function(elem,value){var style=elem.style,currentStyle=elem.currentStyle;style.zoom=1;var opacity=jQuery.isNaN(value)?"":"alpha(opacity="+value*100+")",filter=currentStyle&&currentStyle.filter||style.filter||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):filter+" "+opacity;}};}
jQuery(function(){if(!jQuery.support.reliableMarginRight){jQuery.cssHooks.marginRight={get:function(elem,computed){var ret;jQuery.swap(elem,{"display":"inline-block"},function(){if(computed){ret=curCSS(elem,"margin-right","marginRight");}else{ret=elem.style.marginRight;}});return ret;}};}});if(document.defaultView&&document.defaultView.getComputedStyle){getComputedStyle=function(elem,name){var ret,defaultView,computedStyle;name=name.replace(rupper,"-$1").toLowerCase();if(!(defaultView=elem.ownerDocument.defaultView)){return undefined;}
if((computedStyle=defaultView.getComputedStyle(elem,null))){ret=computedStyle.getPropertyValue(name);if(ret===""&&!jQuery.contains(elem.ownerDocument.documentElement,elem)){ret=jQuery.style(elem,name);}}
return ret;};}
if(document.documentElement.currentStyle){currentStyle=function(elem,name){var left,ret=elem.currentStyle&&elem.currentStyle[name],rsLeft=elem.runtimeStyle&&elem.runtimeStyle[name],style=elem.style;if(!rnumpx.test(ret)&&rnum.test(ret)){left=style.left;if(rsLeft){elem.runtimeStyle.left=elem.currentStyle.left;}
style.left=name==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;if(rsLeft){elem.runtimeStyle.left=rsLeft;}}
return ret===""?"auto":ret;};}
curCSS=getComputedStyle||currentStyle;function getWH(elem,name,extra){var val=name==="width"?elem.offsetWidth:elem.offsetHeight,which=name==="width"?cssWidth:cssHeight;if(val>0){if(extra!=="border"){jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.css(elem,"padding"+this))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.css(elem,extra+this))||0;}else{val-=parseFloat(jQuery.css(elem,"border"+this+"Width"))||0;}});}
return val+"px";}
val=curCSS(elem,name,name);if(val<0||val==null){val=elem.style[name]||0;}
val=parseFloat(val)||0;if(extra){jQuery.each(which,function(){val+=parseFloat(jQuery.css(elem,"padding"+this))||0;if(extra!=="padding"){val+=parseFloat(jQuery.css(elem,"border"+this+"Width"))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.css(elem,extra+this))||0;}});}
return val+"px";}
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight;return(width===0&&height===0)||(!jQuery.support.reliableHiddenOffsets&&(elem.style.display||jQuery.css(elem,"display"))==="none");};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rhash=/#.*$/,rheaders=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,rinput=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,rlocalProtocol=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,rquery=/\?/,rscript=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,rselectTextarea=/^(?:select|textarea)/i,rspacesAjax=/\s+/,rts=/([?&])_=[^&]*/,rurl=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,_load=jQuery.fn.load,prefilters={},transports={},ajaxLocation,ajaxLocParts;try{ajaxLocation=location.href;}catch(e){ajaxLocation=document.createElement("a");ajaxLocation.href="";ajaxLocation=ajaxLocation.href;}
ajaxLocParts=rurl.exec(ajaxLocation.toLowerCase())||[];function addToPrefiltersOrTransports(structure){return function(dataTypeExpression,func){if(typeof dataTypeExpression!=="string"){func=dataTypeExpression;dataTypeExpression="*";}
if(jQuery.isFunction(func)){var dataTypes=dataTypeExpression.toLowerCase().split(rspacesAjax),i=0,length=dataTypes.length,dataType,list,placeBefore;for(;i<length;i++){dataType=dataTypes[i];placeBefore=/^\+/.test(dataType);if(placeBefore){dataType=dataType.substr(1)||"*";}
list=structure[dataType]=structure[dataType]||[];list[placeBefore?"unshift":"push"](func);}}};}
function inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,dataType,inspected){dataType=dataType||options.dataTypes[0];inspected=inspected||{};inspected[dataType]=true;var list=structure[dataType],i=0,length=list?list.length:0,executeOnly=(structure===prefilters),selection;for(;i<length&&(executeOnly||!selection);i++){selection=list[i](options,originalOptions,jqXHR);if(typeof selection==="string"){if(!executeOnly||inspected[selection]){selection=undefined;}else{options.dataTypes.unshift(selection);selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,selection,inspected);}}}
if((executeOnly||!selection)&&!inspected["*"]){selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,"*",inspected);}
return selection;}
jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"&&_load){return _load.apply(this,arguments);}else if(!this.length){return this;}
var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=undefined;}else if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);type="POST";}}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(jqXHR,status,responseText){responseText=jqXHR.responseText;if(jqXHR.isResolved()){jqXHR.done(function(r){responseText=r;});self.html(selector?jQuery("<div>").append(responseText.replace(rscript,"")).find(selector):responseText);}
if(callback){self.each(callback,[responseText,status,jqXHR]);}}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||rselectTextarea.test(this.nodeName)||rinput.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val.replace(rCRLF,"\r\n")};}):{name:elem.name,value:val.replace(rCRLF,"\r\n")};}).get();}});jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});jQuery.each(["get","post"],function(i,method){jQuery[method]=function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data=undefined;}
return jQuery.ajax({type:method,url:url,data:data,success:callback,dataType:type});};});jQuery.extend({getScript:function(url,callback){return jQuery.get(url,undefined,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},ajaxSetup:function(target,settings){if(!settings){settings=target;target=jQuery.extend(true,jQuery.ajaxSettings,settings);}else{jQuery.extend(true,target,jQuery.ajaxSettings,settings);}
for(var field in{context:1,url:1}){if(field in settings){target[field]=settings[field];}else if(field in jQuery.ajaxSettings){target[field]=jQuery.ajaxSettings[field];}}
return target;},ajaxSettings:{url:ajaxLocation,isLocal:rlocalProtocol.test(ajaxLocParts[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":window.String,"text html":true,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML}},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(url,options){if(typeof url==="object"){options=url;url=undefined;}
options=options||{};var
s=jQuery.ajaxSetup({},options),callbackContext=s.context||s,globalEventContext=callbackContext!==s&&(callbackContext.nodeType||callbackContext instanceof jQuery)?jQuery(callbackContext):jQuery.event,deferred=jQuery.Deferred(),completeDeferred=jQuery._Deferred(),statusCode=s.statusCode||{},ifModifiedKey,requestHeaders={},requestHeadersNames={},responseHeadersString,responseHeaders,transport,timeoutTimer,parts,state=0,fireGlobals,i,jqXHR={readyState:0,setRequestHeader:function(name,value){if(!state){var lname=name.toLowerCase();name=requestHeadersNames[lname]=requestHeadersNames[lname]||name;requestHeaders[name]=value;}
return this;},getAllResponseHeaders:function(){return state===2?responseHeadersString:null;},getResponseHeader:function(key){var match;if(state===2){if(!responseHeaders){responseHeaders={};while((match=rheaders.exec(responseHeadersString))){responseHeaders[match[1].toLowerCase()]=match[2];}}
match=responseHeaders[key.toLowerCase()];}
return match===undefined?null:match;},overrideMimeType:function(type){if(!state){s.mimeType=type;}
return this;},abort:function(statusText){statusText=statusText||"abort";if(transport){transport.abort(statusText);}
done(0,statusText);return this;}};function done(status,statusText,responses,headers){if(state===2){return;}
state=2;if(timeoutTimer){clearTimeout(timeoutTimer);}
transport=undefined;responseHeadersString=headers||"";jqXHR.readyState=status?4:0;var isSuccess,success,error,response=responses?ajaxHandleResponses(s,jqXHR,responses):undefined,lastModified,etag;if(status>=200&&status<300||status===304){if(s.ifModified){if((lastModified=jqXHR.getResponseHeader("Last-Modified"))){jQuery.lastModified[ifModifiedKey]=lastModified;}
if((etag=jqXHR.getResponseHeader("Etag"))){jQuery.etag[ifModifiedKey]=etag;}}
if(status===304){statusText="notmodified";isSuccess=true;}else{try{success=ajaxConvert(s,response);statusText="success";isSuccess=true;}catch(e){statusText="parsererror";error=e;}}}else{error=statusText;if(!statusText||status){statusText="error";if(status<0){status=0;}}}
jqXHR.status=status;jqXHR.statusText=statusText;if(isSuccess){deferred.resolveWith(callbackContext,[success,statusText,jqXHR]);}else{deferred.rejectWith(callbackContext,[jqXHR,statusText,error]);}
jqXHR.statusCode(statusCode);statusCode=undefined;if(fireGlobals){globalEventContext.trigger("ajax"+(isSuccess?"Success":"Error"),[jqXHR,s,isSuccess?success:error]);}
completeDeferred.resolveWith(callbackContext,[jqXHR,statusText]);if(fireGlobals){globalEventContext.trigger("ajaxComplete",[jqXHR,s]);if(!(--jQuery.active)){jQuery.event.trigger("ajaxStop");}}}
deferred.promise(jqXHR);jqXHR.success=jqXHR.done;jqXHR.error=jqXHR.fail;jqXHR.complete=completeDeferred.done;jqXHR.statusCode=function(map){if(map){var tmp;if(state<2){for(tmp in map){statusCode[tmp]=[statusCode[tmp],map[tmp]];}}else{tmp=map[jqXHR.status];jqXHR.then(tmp,tmp);}}
return this;};s.url=((url||s.url)+"").replace(rhash,"").replace(rprotocol,ajaxLocParts[1]+"//");s.dataTypes=jQuery.trim(s.dataType||"*").toLowerCase().split(rspacesAjax);if(s.crossDomain==null){parts=rurl.exec(s.url.toLowerCase());s.crossDomain=!!(parts&&(parts[1]!=ajaxLocParts[1]||parts[2]!=ajaxLocParts[2]||(parts[3]||(parts[1]==="http:"?80:443))!=(ajaxLocParts[3]||(ajaxLocParts[1]==="http:"?80:443))));}
if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}
inspectPrefiltersOrTransports(prefilters,s,options,jqXHR);if(state===2){return false;}
fireGlobals=s.global;s.type=s.type.toUpperCase();s.hasContent=!rnoContent.test(s.type);if(fireGlobals&&jQuery.active++===0){jQuery.event.trigger("ajaxStart");}
if(!s.hasContent){if(s.data){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}
ifModifiedKey=s.url;if(s.cache===false){var ts=jQuery.now(),ret=s.url.replace(rts,"$1_="+ts);s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}}
if(s.data&&s.hasContent&&s.contentType!==false||options.contentType){jqXHR.setRequestHeader("Content-Type",s.contentType);}
if(s.ifModified){ifModifiedKey=ifModifiedKey||s.url;if(jQuery.lastModified[ifModifiedKey]){jqXHR.setRequestHeader("If-Modified-Since",jQuery.lastModified[ifModifiedKey]);}
if(jQuery.etag[ifModifiedKey]){jqXHR.setRequestHeader("If-None-Match",jQuery.etag[ifModifiedKey]);}}
jqXHR.setRequestHeader("Accept",s.dataTypes[0]&&s.accepts[s.dataTypes[0]]?s.accepts[s.dataTypes[0]]+(s.dataTypes[0]!=="*"?", */*; q=0.01":""):s.accepts["*"]);for(i in s.headers){jqXHR.setRequestHeader(i,s.headers[i]);}
if(s.beforeSend&&(s.beforeSend.call(callbackContext,jqXHR,s)===false||state===2)){jqXHR.abort();return false;}
for(i in{success:1,error:1,complete:1}){jqXHR[i](s[i]);}
transport=inspectPrefiltersOrTransports(transports,s,options,jqXHR);if(!transport){done(-1,"No Transport");}else{jqXHR.readyState=1;if(fireGlobals){globalEventContext.trigger("ajaxSend",[jqXHR,s]);}
if(s.async&&s.timeout>0){timeoutTimer=setTimeout(function(){jqXHR.abort("timeout");},s.timeout);}
try{state=1;transport.send(requestHeaders,done);}catch(e){if(status<2){done(-1,e);}else{jQuery.error(e);}}}
return jqXHR;},param:function(a,traditional){var s=[],add=function(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);};if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}
if(jQuery.isArray(a)||(a.jquery&&!jQuery.isPlainObject(a))){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix],traditional,add);}}
return s.join("&").replace(r20,"+");}});function buildParams(prefix,obj,traditional,add){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional||rbracket.test(prefix)){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v,traditional,add);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){for(var name in obj){buildParams(prefix+"["+name+"]",obj[name],traditional,add);}}else{add(prefix,obj);}}
jQuery.extend({active:0,lastModified:{},etag:{}});function ajaxHandleResponses(s,jqXHR,responses){var contents=s.contents,dataTypes=s.dataTypes,responseFields=s.responseFields,ct,type,finalDataType,firstDataType;for(type in responseFields){if(type in responses){jqXHR[responseFields[type]]=responses[type];}}
while(dataTypes[0]==="*"){dataTypes.shift();if(ct===undefined){ct=s.mimeType||jqXHR.getResponseHeader("content-type");}}
if(ct){for(type in contents){if(contents[type]&&contents[type].test(ct)){dataTypes.unshift(type);break;}}}
if(dataTypes[0]in responses){finalDataType=dataTypes[0];}else{for(type in responses){if(!dataTypes[0]||s.converters[type+" "+dataTypes[0]]){finalDataType=type;break;}
if(!firstDataType){firstDataType=type;}}
finalDataType=finalDataType||firstDataType;}
if(finalDataType){if(finalDataType!==dataTypes[0]){dataTypes.unshift(finalDataType);}
return responses[finalDataType];}}
function ajaxConvert(s,response){if(s.dataFilter){response=s.dataFilter(response,s.dataType);}
var dataTypes=s.dataTypes,converters={},i,key,length=dataTypes.length,tmp,current=dataTypes[0],prev,conversion,conv,conv1,conv2;for(i=1;i<length;i++){if(i===1){for(key in s.converters){if(typeof key==="string"){converters[key.toLowerCase()]=s.converters[key];}}}
prev=current;current=dataTypes[i];if(current==="*"){current=prev;}else if(prev!=="*"&&prev!==current){conversion=prev+" "+current;conv=converters[conversion]||converters["* "+current];if(!conv){conv2=undefined;for(conv1 in converters){tmp=conv1.split(" ");if(tmp[0]===prev||tmp[0]==="*"){conv2=converters[tmp[1]+" "+current];if(conv2){conv1=converters[conv1];if(conv1===true){conv=conv2;}else if(conv2===true){conv=conv1;}
break;}}}}
if(!(conv||conv2)){jQuery.error("No conversion from "+conversion.replace(" "," to "));}
if(conv!==true){response=conv?conv(response):conv2(conv1(response));}}}
return response;}
var jsc=jQuery.now(),jsre=/(\=)\?(&|$)|\?\?/i;jQuery.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return jQuery.expando+"_"+(jsc++);}});jQuery.ajaxPrefilter("json jsonp",function(s,originalSettings,jqXHR){var inspectData=s.contentType==="application/x-www-form-urlencoded"&&(typeof s.data==="string");if(s.dataTypes[0]==="jsonp"||s.jsonp!==false&&(jsre.test(s.url)||inspectData&&jsre.test(s.data))){var responseContainer,jsonpCallback=s.jsonpCallback=jQuery.isFunction(s.jsonpCallback)?s.jsonpCallback():s.jsonpCallback,previous=window[jsonpCallback],url=s.url,data=s.data,replace="$1"+jsonpCallback+"$2";if(s.jsonp!==false){url=url.replace(jsre,replace);if(s.url===url){if(inspectData){data=data.replace(jsre,replace);}
if(s.data===data){url+=(/\?/.test(url)?"&":"?")+s.jsonp+"="+jsonpCallback;}}}
s.url=url;s.data=data;window[jsonpCallback]=function(response){responseContainer=[response];};jqXHR.always(function(){window[jsonpCallback]=previous;if(responseContainer&&jQuery.isFunction(previous)){window[jsonpCallback](responseContainer[0]);}});s.converters["script json"]=function(){if(!responseContainer){jQuery.error(jsonpCallback+" was not called");}
return responseContainer[0];};s.dataTypes[0]="json";return"script";}});jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(text){jQuery.globalEval(text);return text;}}});jQuery.ajaxPrefilter("script",function(s){if(s.cache===undefined){s.cache=false;}
if(s.crossDomain){s.type="GET";s.global=false;}});jQuery.ajaxTransport("script",function(s){if(s.crossDomain){var script,head=document.head||document.getElementsByTagName("head")[0]||document.documentElement;return{send:function(_,callback){script=document.createElement("script");script.async="async";if(s.scriptCharset){script.charset=s.scriptCharset;}
script.src=s.url;script.onload=script.onreadystatechange=function(_,isAbort){if(isAbort||!script.readyState||/loaded|complete/.test(script.readyState)){script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script);}
script=undefined;if(!isAbort){callback(200,"success");}}};head.insertBefore(script,head.firstChild);},abort:function(){if(script){script.onload(0,1);}}};}});var
xhrOnUnloadAbort=window.ActiveXObject?function(){for(var key in xhrCallbacks){xhrCallbacks[key](0,1);}}:false,xhrId=0,xhrCallbacks;function createStandardXHR(){try{return new window.XMLHttpRequest();}catch(e){}}
function createActiveXHR(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}
jQuery.ajaxSettings.xhr=window.ActiveXObject?function(){return!this.isLocal&&createStandardXHR()||createActiveXHR();}:createStandardXHR;(function(xhr){jQuery.extend(jQuery.support,{ajax:!!xhr,cors:!!xhr&&("withCredentials"in xhr)});})(jQuery.ajaxSettings.xhr());if(jQuery.support.ajax){jQuery.ajaxTransport(function(s){if(!s.crossDomain||jQuery.support.cors){var callback;return{send:function(headers,complete){var xhr=s.xhr(),handle,i;if(s.username){xhr.open(s.type,s.url,s.async,s.username,s.password);}else{xhr.open(s.type,s.url,s.async);}
if(s.xhrFields){for(i in s.xhrFields){xhr[i]=s.xhrFields[i];}}
if(s.mimeType&&xhr.overrideMimeType){xhr.overrideMimeType(s.mimeType);}
if(!s.crossDomain&&!headers["X-Requested-With"]){headers["X-Requested-With"]="XMLHttpRequest";}
try{for(i in headers){xhr.setRequestHeader(i,headers[i]);}}catch(_){}
xhr.send((s.hasContent&&s.data)||null);callback=function(_,isAbort){var status,statusText,responseHeaders,responses,xml;try{if(callback&&(isAbort||xhr.readyState===4)){callback=undefined;if(handle){xhr.onreadystatechange=jQuery.noop;if(xhrOnUnloadAbort){delete xhrCallbacks[handle];}}
if(isAbort){if(xhr.readyState!==4){xhr.abort();}}else{status=xhr.status;responseHeaders=xhr.getAllResponseHeaders();responses={};xml=xhr.responseXML;if(xml&&xml.documentElement){responses.xml=xml;}
responses.text=xhr.responseText;try{statusText=xhr.statusText;}catch(e){statusText="";}
if(!status&&s.isLocal&&!s.crossDomain){status=responses.text?200:404;}else if(status===1223){status=204;}}}}catch(firefoxAccessException){if(!isAbort){complete(-1,firefoxAccessException);}}
if(responses){complete(status,statusText,responses,responseHeaders);}};if(!s.async||xhr.readyState===4){callback();}else{handle=++xhrId;if(xhrOnUnloadAbort){if(!xhrCallbacks){xhrCallbacks={};jQuery(window).unload(xhrOnUnloadAbort);}
xhrCallbacks[handle]=callback;}
xhr.onreadystatechange=callback;}},abort:function(){if(callback){callback(0,1);}}};}});}
var elemdisplay={},iframe,iframeDoc,rfxtypes=/^(?:toggle|show|hide)$/,rfxnum=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],fxNow,requestAnimationFrame=window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame;jQuery.fn.extend({show:function(speed,easing,callback){var elem,display;if(speed||speed===0){return this.animate(genFx("show",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){elem=this[i];if(elem.style){display=elem.style.display;if(!jQuery._data(elem,"olddisplay")&&display==="none"){display=elem.style.display="";}
if(display===""&&jQuery.css(elem,"display")==="none"){jQuery._data(elem,"olddisplay",defaultDisplay(elem.nodeName));}}}
for(i=0;i<j;i++){elem=this[i];if(elem.style){display=elem.style.display;if(display===""||display==="none"){elem.style.display=jQuery._data(elem,"olddisplay")||"";}}}
return this;}},hide:function(speed,easing,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){if(this[i].style){var display=jQuery.css(this[i],"display");if(display!=="none"&&!jQuery._data(this[i],"olddisplay")){jQuery._data(this[i],"olddisplay",display);}}}
for(i=0;i<j;i++){if(this[i].style){this[i].style.display="none";}}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2,callback){var bool=typeof fn==="boolean";if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments);}else if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();});}else{this.animate(genFx("toggle",3),fn,fn2,callback);}
return this;},fadeTo:function(speed,to,easing,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,easing,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);if(jQuery.isEmptyObject(prop)){return this.each(optall.complete,[false]);}
prop=jQuery.extend({},prop);return this[optall.queue===false?"each":"queue"](function(){if(optall.queue===false){jQuery._mark(this);}
var opt=jQuery.extend({},optall),isElement=this.nodeType===1,hidden=isElement&&jQuery(this).is(":hidden"),name,val,p,display,e,parts,start,end,unit;opt.animatedProperties={};for(p in prop){name=jQuery.camelCase(p);if(p!==name){prop[name]=prop[p];delete prop[p];}
val=prop[name];if(jQuery.isArray(val)){opt.animatedProperties[name]=val[1];val=prop[name]=val[0];}else{opt.animatedProperties[name]=opt.specialEasing&&opt.specialEasing[name]||opt.easing||'swing';}
if(val==="hide"&&hidden||val==="show"&&!hidden){return opt.complete.call(this);}
if(isElement&&(name==="height"||name==="width")){opt.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(jQuery.css(this,"display")==="inline"&&jQuery.css(this,"float")==="none"){if(!jQuery.support.inlineBlockNeedsLayout){this.style.display="inline-block";}else{display=defaultDisplay(this.nodeName);if(display==="inline"){this.style.display="inline-block";}else{this.style.display="inline";this.style.zoom=1;}}}}}
if(opt.overflow!=null){this.style.overflow="hidden";}
for(p in prop){e=new jQuery.fx(this,opt,p);val=prop[p];if(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val]();}else{parts=rfxnum.exec(val);start=e.cur();if(parts){end=parseFloat(parts[2]);unit=parts[3]||(jQuery.cssNumber[p]?"":"px");if(unit!=="px"){jQuery.style(this,p,(end||1)+unit);start=((end||1)/e.cur())*start;jQuery.style(this,p,start+unit);}
if(parts[1]){end=((parts[1]==="-="?-1:1)*end)+start;}
e.custom(start,end,unit);}else{e.custom(start,val,"");}}}
return true;});},stop:function(clearQueue,gotoEnd){if(clearQueue){this.queue([]);}
this.each(function(){var timers=jQuery.timers,i=timers.length;if(!gotoEnd){jQuery._unmark(true,this);}
while(i--){if(timers[i].elem===this){if(gotoEnd){timers[i](true);}
timers.splice(i,1);}}});if(!gotoEnd){this.dequeue();}
return this;}});function createFxNow(){setTimeout(clearFxNow,0);return(fxNow=jQuery.now());}
function clearFxNow(){fxNow=undefined;}
function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(name,props){jQuery.fn[name]=function(speed,easing,callback){return this.animate(props,speed,easing,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?jQuery.extend({},speed):{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:opt.duration in jQuery.fx.speeds?jQuery.fx.speeds[opt.duration]:jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(noUnmark){if(jQuery.isFunction(opt.old)){opt.old.call(this);}
if(opt.queue!==false){jQuery.dequeue(this);}else if(noUnmark!==false){jQuery._unmark(this);}};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;options.orig=options.orig||{};}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}
(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}
var parsed,r=jQuery.css(this.elem,this.prop);return isNaN(parsed=parseFloat(r))?!r||r==="auto"?0:r:parsed;},custom:function(from,to,unit){var self=this,fx=jQuery.fx,raf;this.startTime=fxNow||createFxNow();this.start=from;this.end=to;this.unit=unit||this.unit||(jQuery.cssNumber[this.prop]?"":"px");this.now=this.start;this.pos=this.state=0;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){if(requestAnimationFrame){timerId=true;raf=function(){if(timerId){requestAnimationFrame(raf);fx.tick();}};requestAnimationFrame(raf);}else{timerId=setInterval(fx.tick,fx.interval);}}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=fxNow||createFxNow(),done=true,elem=this.elem,options=this.options,i,n;if(gotoEnd||t>=options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();options.animatedProperties[this.prop]=true;for(i in options.animatedProperties){if(options.animatedProperties[i]!==true){done=false;}}
if(done){if(options.overflow!=null&&!jQuery.support.shrinkWrapBlocks){jQuery.each(["","X","Y"],function(index,value){elem.style["overflow"+value]=options.overflow[index];});}
if(options.hide){jQuery(elem).hide();}
if(options.hide||options.show){for(var p in options.animatedProperties){jQuery.style(elem,p,options.orig[p]);}}
options.complete.call(elem);}
return false;}else{if(options.duration==Infinity){this.now=t;}else{n=t-this.startTime;this.state=n/options.duration;this.pos=jQuery.easing[options.animatedProperties[this.prop]](this.state,n,0,1,options.duration);this.now=this.start+((this.end-this.start)*this.pos);}
this.update();}
return true;}};jQuery.extend(jQuery.fx,{tick:function(){for(var timers=jQuery.timers,i=0;i<timers.length;++i){if(!timers[i]()){timers.splice(i--,1);}}
if(!timers.length){jQuery.fx.stop();}},interval:13,stop:function(){clearInterval(timerId);timerId=null;},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit;}else{fx.elem[fx.prop]=fx.now;}}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};}
function defaultDisplay(nodeName){if(!elemdisplay[nodeName]){var body=document.body,elem=jQuery("<"+nodeName+">").appendTo(body),display=elem.css("display");elem.remove();if(display==="none"||display===""){if(!iframe){iframe=document.createElement("iframe");iframe.frameBorder=iframe.width=iframe.height=0;}
body.appendChild(iframe);if(!iframeDoc||!iframe.createElement){iframeDoc=(iframe.contentWindow||iframe.contentDocument).document;iframeDoc.write((document.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>");iframeDoc.close();}
elem=iframeDoc.createElement(nodeName);iframeDoc.body.appendChild(elem);display=jQuery.css(elem,"display");body.removeChild(iframe);}
elemdisplay[nodeName]=display;}
return elemdisplay[nodeName];}
var rtable=/^t(?:able|d|h)$/i,rroot=/^(?:body|html)$/i;if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0],box;if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
try{box=elem.getBoundingClientRect();}catch(e){}
var doc=elem.ownerDocument,docElem=doc.documentElement;if(!box||!jQuery.contains(docElem,elem)){return box?{top:box.top,left:box.left}:{top:0,left:0};}
var body=doc.body,win=getWindow(doc),clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,scrollTop=win.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop,scrollLeft=win.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft,top=box.top+scrollTop-clientTop,left=box.left+scrollLeft-clientLeft;return{top:top,left:left};};}else{jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
jQuery.offset.initialize();var computedStyle,offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break;}
computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;top-=elem.scrollTop;left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop;left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&rtable.test(elem.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevOffsetParent=offsetParent;offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;left+=body.offsetLeft;}
if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop);left+=Math.max(docElem.scrollLeft,body.scrollLeft);}
return{top:top,left:left};};}
jQuery.offset={initialize:function(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.css(body,"marginTop"))||0,html="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild;checkDiv=innerDiv.firstChild;td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);checkDiv.style.position="fixed";checkDiv.style.top="20px";this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);checkDiv.style.position=checkDiv.style.top="";innerDiv.style.overflow="hidden";innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);body.removeChild(container);jQuery.offset.initialize=jQuery.noop;},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;jQuery.offset.initialize();if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.css(body,"marginTop"))||0;left+=parseFloat(jQuery.css(body,"marginLeft"))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){var position=jQuery.css(elem,"position");if(position==="static"){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curCSSTop=jQuery.css(elem,"top"),curCSSLeft=jQuery.css(elem,"left"),calculatePosition=(position==="absolute"||position==="fixed")&&jQuery.inArray("auto",[curCSSTop,curCSSLeft])>-1,props={},curPosition={},curTop,curLeft;if(calculatePosition){curPosition=curElem.position();curTop=curPosition.top;curLeft=curPosition.left;}else{curTop=parseFloat(curCSSTop)||0;curLeft=parseFloat(curCSSLeft)||0;}
if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
if(options.top!=null){props.top=(options.top-curOffset.top)+curTop;}
if(options.left!=null){props.left=(options.left-curOffset.left)+curLeft;}
if("using"in options){options.using.call(elem,props);}else{curElem.css(props);}}};jQuery.fn.extend({position:function(){if(!this[0]){return null;}
var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=rroot.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.css(elem,"marginTop"))||0;offset.left-=parseFloat(jQuery.css(elem,"marginLeft"))||0;parentOffset.top+=parseFloat(jQuery.css(offsetParent[0],"borderTopWidth"))||0;parentOffset.left+=parseFloat(jQuery.css(offsetParent[0],"borderLeftWidth"))||0;return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;while(offsetParent&&(!rroot.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent;}
return offsetParent;});}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){var elem,win;if(val===undefined){elem=this[0];if(!elem){return null;}
win=getWindow(elem);return win?("pageXOffset"in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method];}
return this.each(function(){win=getWindow(this);if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop());}else{this[method]=val;}});};});function getWindow(elem){return jQuery.isWindow(elem)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false;}
jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn["inner"+name]=function(){var elem=this[0];return elem&&elem.style?parseFloat(jQuery.css(elem,type,"padding")):null;};jQuery.fn["outer"+name]=function(margin){var elem=this[0];return elem&&elem.style?parseFloat(jQuery.css(elem,type,margin?"margin":"border")):null;};jQuery.fn[type]=function(size){var elem=this[0];if(!elem){return size==null?null:this;}
if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);self[type](size.call(this,i,self[type]()));});}
if(jQuery.isWindow(elem)){var docElemProp=elem.document.documentElement["client"+name];return elem.document.compatMode==="CSS1Compat"&&docElemProp||elem.document.body["client"+name]||docElemProp;}else if(elem.nodeType===9){return Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]);}else if(size===undefined){var orig=jQuery.css(elem,type),ret=parseFloat(orig);return jQuery.isNaN(ret)?orig:ret;}else{return this.css(type,typeof size==="string"?size:size+"px");}};});window.jQuery=window.$=jQuery;})(window);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("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}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerFont({"w":223,"face":{"font-family":"agis-klavika-regular","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 4 0 0 2 0 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-4 -305 320 76","underline-thickness":"18","underline-position":"-18","stemh":"26","stemv":"30","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":77},"!":{"d":"57,-68r-18,0v-8,-54,-6,-117,-6,-179r30,0r0,117xm32,0r0,-41r31,0r0,41r-31,0","w":95},"\"":{"d":"50,-159r-25,0r0,-88r25,0r0,88xm110,-159r-25,0r0,-88r25,0r0,88","w":135},"#":{"d":"229,-62r-47,0r-3,62r-24,0r3,-62r-65,0r-4,62r-25,0r4,-62r-46,0r1,-23r47,0r3,-67r-47,0r1,-23r48,0r3,-58r25,0r-4,58r65,0r3,-58r25,0r-4,58r47,0r-2,23r-46,0r-4,67r47,0xm98,-152r-4,67r65,0r3,-67r-64,0","w":254,"k":{"7":-5,"4":-5,"1":-5,")":4}},"$":{"d":"105,41r-26,0r0,-38v-18,-1,-39,-6,-57,-12r4,-24v38,10,107,27,107,-27v0,-27,-2,-31,-46,-45v-54,-17,-61,-27,-61,-69v0,-40,13,-59,60,-62r0,-37r27,0r0,38v16,1,32,2,46,6r-2,25v-35,-3,-101,-25,-101,30v0,26,3,31,41,43v59,19,66,29,66,71v0,42,-15,59,-58,63r0,38","w":186,"k":{"7":-5,"4":-5,"1":-5}},"%":{"d":"209,-234r-97,238r-21,-10r97,-237xm124,-194v2,48,2,83,-53,82v-54,0,-53,-34,-53,-82v0,-30,13,-49,53,-49v40,0,53,19,53,49xm71,-222v-37,-2,-28,31,-29,62v0,17,7,26,29,26v37,0,26,-31,28,-61v0,-17,-6,-27,-28,-27xm283,-78v2,48,2,83,-53,82v-54,0,-53,-34,-53,-82v0,-30,13,-49,53,-49v40,0,53,19,53,49xm230,-106v-37,0,-26,32,-28,62v0,17,6,26,28,26v37,0,26,-32,28,-62v0,-17,-6,-26,-28,-26","w":302,"k":{"}":4,"]":4,"4":-7,"1":7,")":9}},"&":{"d":"211,-107r-35,0r0,101v-57,18,-159,17,-149,-48v-2,-35,4,-60,32,-68v-28,-11,-28,-34,-27,-67v-12,-57,85,-61,138,-48r-3,25v-34,-4,-105,-19,-105,26v0,31,-1,53,33,53r116,0r0,26xm57,-57v-8,41,55,36,90,30r0,-80v-46,1,-103,-11,-90,50","w":221},"'":{"d":"50,-159r-25,0r0,-88r25,0r0,88","w":75},"(":{"d":"81,-274r21,14v-64,102,-64,200,0,301r-21,14v-74,-91,-74,-238,0,-329","w":109,"k":{"\u00fa":4,"\u00f8":5,"\u00f3":5,"\u00e9":5,"\u00e7":5,"\u00e6":5,"\u00e1":5,"\u00dd":-5,"\u00d8":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d3":5,"\u00d2":5,"\u00c7":5,"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u00c0":5,"z":4,"w":2,"u":4,"t":4,"s":7,"q":4,"o":5,"n":4,"f":5,"e":5,"c":5,"a":5,"Z":-5,"Y":-5,"W":-5,"T":-5,"S":2,"O":5,"J":-16,"G":5,"C":5,"A":5,";":9,":":9,".":7,"-":13,",":7,"x":-2,"v":4,"m":4,"j":-14,"g":2,"d":7,"X":-5,"V":-7,"Q":5,"@":14,"?":-2,"9":4,"8":4,"7":-7,"6":4,"5":-2,"4":7,"3":-4,"2":-4,"1":4,"0":7,"+":11,"*":4,"%":4,"$":4,"#":7}},")":{"d":"7,-260r22,-14v73,91,73,238,0,329r-22,-14v64,-101,64,-199,0,-301","w":109},"*":{"d":"41,-138r28,-43r-51,0r0,-17r52,0r-28,-44r13,-9r30,46r29,-46r14,9r-28,44r52,0r0,17r-52,0r29,43r-15,9r-29,-46r-30,46","w":170,"k":{";":23,":":23,".":54,",":54,"}":4,")":4}},"+":{"d":"22,-75r0,-25r59,0r0,-61r27,0r0,61r60,0r0,25r-60,0r0,61r-27,0r0,-61r-59,0","w":189,"k":{"}":14,"]":4,")":11}},",":{"d":"30,0r0,-41r31,0r0,41r-22,43r-14,-7r15,-36r-10,0","w":91,"k":{"}":7,"x":-2,"v":22,"]":4,"V":32,"Q":5,"@":11,"7":2,"4":16,"1":25,"*":36,")":7,"%":29,"C":5,"\u00c7":5,"O":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"\u00d6":5,"\u00d8":5,"T":40,"U":7,"\u00d9":7,"\u00da":7,"\u00db":7,"\u00dc":7,"W":32,"Y":47,"\u00dd":47,"o":5,"\u00f3":5,"\u00f8":5,"y":16,"\u00fd":16,"f":16,"G":5,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"t":13,"w":11,"J":5}},"-":{"d":"22,-88r0,-25r90,0r0,25r-90,0","w":133,"k":{"}":11,"x":9,"j":2,"]":11,"X":23,"V":18,"M":3,"9":5,"7":20,"5":5,"4":-2,"3":5,"2":9,"1":18,")":13,"T":38,"W":13,"Y":31,"\u00dd":31,"f":11,"z":2,"A":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"c":-4,"\u00e7":-4,"t":7,"a":2,"\u00e1":2,"\u00e6":2,"Z":9,"S":11,"J":5}},".":{"d":"31,0r0,-41r31,0r0,41r-31,0","w":92,"k":{"}":7,"x":-2,"v":22,"]":4,"V":32,"Q":5,"@":11,"7":2,"4":16,"1":25,"*":36,")":7,"%":29,"C":5,"\u00c7":5,"O":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"\u00d6":5,"\u00d8":5,"T":40,"U":7,"\u00d9":7,"\u00da":7,"\u00db":7,"\u00dc":7,"W":32,"Y":47,"\u00dd":47,"o":5,"\u00f3":5,"\u00f8":5,"y":16,"\u00fd":16,"f":16,"G":5,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"t":13,"w":11,"J":5}},"\/":{"d":"139,-243r-89,285r-28,0r88,-285r29,0","w":160,"k":{"\u00fd":2,"\u00fa":9,"\u00f8":14,"\u00f3":14,"\u00e9":13,"\u00e7":11,"\u00e6":14,"\u00e1":14,"\u00dd":-4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":5,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"z":5,"y":2,"w":5,"u":9,"t":4,"s":14,"r":11,"q":11,"o":14,"n":11,"f":2,"e":13,"c":11,"a":14,"Y":-4,"W":-5,"T":-7,"S":5,"O":4,"G":5,"C":5,"A":22,"x":4,"p":11,"m":11,"g":13,"d":13,"V":-5,"Q":4,"M":4,"9":5,"8":9,"7":-5,"6":5,"4":11,"1":-2,"0":9}},"0":{"d":"99,-236v105,0,75,92,75,177v0,36,-19,63,-75,63v-105,0,-74,-93,-74,-178v0,-36,18,-62,74,-62xm143,-171v0,-26,-11,-39,-44,-39v-33,0,-44,13,-44,39r0,109v0,26,11,39,44,39v33,0,44,-13,44,-39r0,-109","w":198,"k":{"}":2,"7":1,"2":1,"\/":7,")":7}},"1":{"d":"63,-198r-46,26r-13,-24r63,-37r27,0r0,233r-31,0r0,-198","w":126,"k":{"\\":-9,"7":-5}},"2":{"d":"18,0r0,-28v28,-40,110,-102,101,-152v9,-42,-69,-28,-96,-21r-4,-26v15,-5,39,-9,60,-9v59,1,70,20,70,64v0,45,-67,109,-94,145r97,0r0,27r-134,0","w":174,"k":{"-":7,"}":-4,"\\":2,"7":-3,"4":12,"3":-2,"\/":-2}},"3":{"d":"18,-4r3,-25v33,8,105,16,99,-25v3,-31,-5,-49,-36,-49r-50,0r0,-27v35,0,88,6,82,-30v1,-33,0,-52,-39,-50v-16,0,-34,3,-51,6r-3,-26v15,-4,35,-6,54,-6v61,1,69,22,69,72v0,22,-6,36,-28,47v28,5,35,30,32,66v10,57,-81,64,-132,47","w":175,"k":{"7":1,"5":2,"1":3,"\/":7}},"4":{"d":"183,-57r-34,0r0,57r-30,0r0,-57r-111,0r0,-30r100,-146r41,0r0,150r34,0r0,26xm38,-83r81,0r0,-119","w":193,"k":{"\u00ab":-7,".":5,",":5,"]":-4,"9":2,"5":2,"1":5}},"5":{"d":"125,-74v9,-42,-63,-30,-95,-32r0,-127r122,0r0,27r-92,0r0,74v52,-4,102,10,95,55v3,54,-7,80,-74,81v-18,0,-42,-3,-60,-9r3,-24v37,7,109,18,101,-29r0,-16","w":178,"k":{"]":-5,"\\":-4,"9":1,"7":-1,"1":3,"\/":5}},"6":{"d":"124,-210v-70,-3,-71,27,-69,85v51,-18,125,-8,110,61v0,42,-12,68,-70,68v-97,0,-63,-81,-70,-159v-6,-74,61,-90,134,-77r-3,25v-9,-2,-23,-3,-32,-3xm135,-76v0,-42,-56,-33,-80,-21v-1,40,-6,74,40,74v40,0,40,-18,40,-53","w":184,"k":{"}":-7,"]":-4,"\\":-2,"9":3,"5":1,"2":1,"1":2,"\/":7,")":-4}},"7":{"d":"9,-206r0,-27r143,0r0,26r-96,207r-30,0r95,-206r-112,0","w":158,"k":{"\u00bb":9,"\u00ab":13,";":16,":":16,".":38,"-":14,",":38,"}":-7,"]":-7,"\\":-9,"@":4,"?":-9,"9":2,"8":7,"7":-2,"6":3,"4":14,"1":-4,"0":2,"\/":27,")":-7}},"8":{"d":"166,-180v1,32,-3,44,-37,61v37,18,43,31,43,65v0,40,-21,58,-74,58v-91,0,-102,-96,-32,-123v-32,-17,-37,-29,-36,-61v0,-33,16,-56,68,-56v52,0,68,23,68,56xm143,-55v1,-31,-6,-32,-45,-50v-39,18,-46,19,-45,50v0,24,12,33,45,33v33,0,45,-9,45,-33xm59,-181v-1,30,3,34,39,50v36,-16,40,-20,39,-50v0,-19,-9,-30,-39,-30v-30,0,-39,11,-39,30","w":195,"k":{"}":2,"\\":7,"9":1,"3":2,"1":4,"\/":7,")":4}},"9":{"d":"60,-23v70,4,71,-26,69,-85v-50,19,-124,9,-109,-60v0,-42,12,-68,69,-68v97,0,63,81,70,158v7,75,-62,92,-134,77r3,-25v9,2,23,3,32,3xm50,-157v0,42,54,33,79,22v1,-40,6,-75,-40,-75v-40,0,-39,19,-39,53","w":184,"k":{".":7,",":7,"}":2,"\\":2,"9":2,"7":2,"6":2,"5":2,"3":2,"2":2,"\/":9,")":4}},":":{"d":"31,-110r0,-42r31,0r0,42r-31,0xm31,0r0,-41r31,0r0,41r-31,0","w":92,"k":{"\u00dd":31,"\u00dc":2,"\u00db":2,"\u00da":2,"\u00d9":2,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c5":-2,"\u00c4":-2,"\u00c3":-2,"\u00c2":-2,"\u00c1":-2,"\u00c0":-2,"w":4,"Y":31,"W":20,"U":2,"T":36,"O":4,"A":-2,"}":7,"v":5,"V":23,"Q":4,"M":4,"7":2,"4":-4,"1":7,"*":11,")":9}},";":{"d":"30,0r0,-41r31,0r0,41r-22,43r-14,-7r15,-36r-10,0xm30,-110r0,-42r31,0r0,42r-31,0","w":91},"<":{"d":"18,-97r149,-82r10,20r-131,71r131,72r-10,20r-149,-82r0,-19","w":200},"=":{"d":"25,-108r0,-22r133,0r0,22r-133,0xm25,-44r0,-22r133,0r0,22r-133,0","w":183},">":{"d":"34,-179r149,82r0,19r-149,82r-11,-20r132,-72r-132,-71","w":200},"?":{"d":"55,-104v22,-22,70,-35,63,-80v10,-52,-56,-42,-94,-34r-4,-26v14,-4,40,-7,58,-7v58,0,70,21,70,65v0,60,-45,77,-76,105xm54,0r0,-41r31,0r0,41r-31,0","w":171},"@":{"d":"151,-102r10,-54v-16,-5,-41,-8,-43,11r-6,39v-2,9,0,12,11,12v8,0,21,-3,28,-8xm116,-75v-40,1,-21,-43,-18,-70v5,-41,54,-38,86,-23r-14,76v35,10,56,-20,56,-52v0,-48,-31,-79,-87,-79v-53,0,-94,41,-94,103v0,87,91,126,169,89r7,18v-90,46,-199,-5,-199,-107v0,-72,47,-123,117,-123v71,0,109,40,109,99v0,54,-56,94,-95,59v-12,6,-24,10,-37,10","w":267,"k":{"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u00c0":5,"A":5,".":14,",":14,"}":7,"]":4,")":7}},"A":{"d":"133,-240r81,240r-31,0r-20,-58r-102,0r-20,58r-31,0r81,-240r42,0xm155,-85r-43,-132r-43,132r86,0","k":{"\u00ae":22,"}":4,"x":-4,"v":6,"g":1,"d":1,"]":2,"\\":7,"X":-2,"V":20,"Q":4,"@":5,"?":13,"\/":-2,"*":36,")":5,"!":-4}},"B":{"d":"188,-80v0,101,-80,79,-157,80r0,-240v61,2,149,-16,149,49v0,35,3,57,-28,68v21,4,36,17,36,43xm124,-27v33,1,33,-21,33,-52v0,-40,-57,-28,-95,-30r0,82r62,0xm116,-135v35,0,33,-23,33,-55v0,-34,-55,-20,-87,-23r0,78r54,0","w":205,"k":{"\u00fd":-1,"\u00dd":6,"\u00ab":-5,"y":-1,"Y":6,"T":4,"v":-1,"]":-4,"\\":-4,"V":4,"\/":4}},"C":{"d":"108,-215v-81,0,-45,84,-52,146v-7,56,62,47,109,39r3,27v-17,4,-43,7,-61,7v-105,5,-75,-89,-82,-177v-5,-68,77,-80,143,-64r-3,27v-18,-3,-43,-5,-57,-5","w":185,"k":{"\u00fd":7,"\u00fa":4,"\u00f8":6,"\u00f3":6,"\u00e9":6,"\u00e7":6,"\u00e6":4,"\u00e1":4,"\u00d8":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d3":5,"\u00d2":5,"\u00c7":5,"\u00c5":-4,"\u00c4":-4,"\u00c3":-4,"\u00c2":-4,"\u00c1":-4,"\u00c0":-4,"y":7,"w":2,"u":4,"t":2,"q":5,"o":6,"e":6,"c":6,"a":4,"O":5,"G":5,"C":5,"A":-4,"-":16,"\u00ae":-5,"}":-13,"x":-2,"v":9,"d":5,"]":-11,"\\":-7,"X":-4,"V":-2,"Q":5,"?":-7,"\/":2,"*":-7,")":-9}},"D":{"d":"31,-240r83,0v103,-1,78,85,78,171v0,38,-19,69,-78,69r-83,0r0,-240xm62,-212r0,184v47,1,105,5,99,-43v-8,-59,26,-145,-48,-141r-51,0","w":214,"k":{"\u00dd":6,"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u00c0":5,"w":-2,"Y":6,"W":2,"T":4,"A":5,".":7,",":7,"x":-1,"v":-3,"X":4,"V":4,"\/":7,")":4}},"E":{"d":"31,0r0,-240r141,0r0,28r-110,0r0,75r102,0r0,28r-102,0r0,81r110,0r0,28r-141,0","w":194,"k":{"\u00f8":2,"\u00f3":2,"\u00e6":2,"\u00e1":2,"\u00dd":-2,"\u00d8":3,"\u00d6":3,"\u00d5":3,"\u00d4":3,"\u00d3":3,"\u00d2":3,"\u00c7":3,"\u00c5":-4,"\u00c4":-4,"\u00c3":-4,"\u00c2":-4,"\u00c1":-4,"\u00c0":-4,"o":2,"a":2,"Y":-2,"O":3,"G":3,"C":3,"A":-4,"-":-2,"}":-7,"x":-2,"]":-4,"\\":-4,"X":-4,"Q":4,"\/":-4,")":-5}},"F":{"d":"62,0r-31,0r0,-240r142,0r0,28r-111,0r0,80r104,0r0,28r-104,0r0,104","w":187,"k":{"\u00fa":2,"\u00f8":2,"\u00f3":2,"\u00e9":2,"\u00e7":2,"\u00e6":3,"\u00e1":3,"\u00dd":-9,"\u00d8":2,"\u00d6":2,"\u00d5":2,"\u00d4":2,"\u00d3":2,"\u00d2":2,"\u00c7":2,"\u00c5":16,"\u00c4":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u00c0":16,"\u00ab":-5,"w":-2,"u":2,"s":2,"o":2,"e":2,"c":2,"a":3,"Y":-9,"W":-5,"O":2,"G":2,"C":2,"A":16,";":4,":":4,".":34,"-":-2,",":34,"\u00ae":-7,"}":-9,"d":3,"]":-9,"\\":-9,"V":-4,"Q":2,"?":-7,"\/":14,"*":-9,")":-7}},"G":{"d":"108,-215v-82,0,-43,84,-52,146v-7,49,50,50,95,40r0,-81r30,0r0,103v-23,7,-51,11,-76,11v-106,0,-73,-89,-80,-176v-6,-75,83,-80,151,-64r-4,27v-23,-4,-44,-6,-64,-6","w":208,"k":{"\u00dd":3,"\u00c5":-2,"\u00c4":-2,"\u00c3":-2,"\u00c2":-2,"\u00c1":-2,"\u00c0":-2,"Y":3,"A":-2,"-":-2,"}":-11,"]":-9,"\\":-5,")":-4}},"H":{"d":"199,0r-31,0r0,-109r-106,0r0,109r-31,0r0,-240r31,0r0,104r106,0r0,-104r31,0r0,240","w":229},"I":{"d":"63,-240r0,240r-31,0r0,-240r31,0","w":95},"J":{"d":"31,-240r31,0r0,241v0,28,-5,31,-46,70r-19,-22v33,-32,34,-32,34,-49r0,-240","w":92},"K":{"d":"62,-240r0,240r-31,0r0,-240r31,0xm192,-240r-88,118r95,122r-37,0r-93,-122r87,-118r36,0","w":211,"k":{"\u00fd":11,"\u00fa":9,"\u00f8":10,"\u00f3":10,"\u00e9":10,"\u00e7":9,"\u00e6":9,"\u00e1":9,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":10,"\u00c5":-4,"\u00c4":-4,"\u00c3":-4,"\u00c2":-4,"\u00c1":-4,"\u00c0":-4,"\u00bb":4,"\u00ab":9,"y":11,"w":5,"u":9,"t":5,"s":5,"q":9,"o":10,"n":2,"e":10,"c":9,"a":9,"U":4,"O":11,"G":10,"C":10,"A":-4,";":4,":":4,".":-2,"-":36,",":-2,"}":-5,"x":-2,"v":13,"p":2,"m":2,"g":8,"d":9,"]":-5,"X":-2,"Q":11,"@":16,"\/":-2,")":-2}},"L":{"d":"62,-240r0,212r104,0r0,28r-135,0r0,-240r31,0","w":180,"k":{"\u00fd":16,"\u00fa":2,"\u00f8":3,"\u00f3":3,"\u00e9":2,"\u00e7":2,"\u00e6":2,"\u00e1":2,"\u00dd":38,"\u00dc":9,"\u00db":9,"\u00da":9,"\u00d9":9,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":5,"\u00c5":-8,"\u00c4":-8,"\u00c3":-8,"\u00c2":-8,"\u00c1":-8,"\u00c0":-8,"\u00bb":2,"\u00ab":4,"y":16,"w":11,"u":2,"t":8,"q":1,"o":3,"f":11,"e":2,"c":2,"a":2,"Y":38,"W":22,"U":9,"T":40,"O":9,"G":5,"C":5,"A":-8,";":4,":":4,".":-4,"-":50,",":-4,"\u00ae":54,"}":-5,"x":-5,"v":16,"d":2,"\\":18,"X":-2,"V":28,"Q":9,"@":7,"?":13,"\/":-5,"*":61,"!":-4}},"M":{"d":"123,-31r-61,-163r-5,194r-30,0r8,-240r40,0r69,186r69,-186r39,0r8,240r-30,0r-4,-194r-61,163r-42,0","w":287,"k":{"\u00f8":1,"\u00f3":1,"\u00e9":1,"\u00e6":2,"\u00e1":2,"\u00c5":-2,"\u00c4":-2,"\u00c3":-2,"\u00c2":-2,"\u00c1":-2,"\u00c0":-2,"\u00bb":5,"\u00ab":2,"o":1,"e":1,"a":2,"A":-2,";":4,":":4,"-":3,"x":-2,"\\":-2,"\/":4}},"N":{"d":"165,0r-105,-204r0,204r-29,0r0,-240r42,0r104,205r0,-205r30,0r0,240r-42,0","w":237},"O":{"d":"112,-243v107,-1,85,82,87,174v0,40,-25,73,-87,73v-107,0,-86,-83,-87,-175v0,-40,25,-72,87,-72xm112,-216v-80,0,-56,80,-56,146v0,30,18,46,56,46v80,0,56,-80,56,-146v0,-30,-18,-46,-56,-46","k":{"}":4,"]":4,"\\":-2,"X":4,"V":5,"\/":9,")":5,"T":6,"W":2,"Y":5,"\u00dd":5,",":5,".":5,":":4,";":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"Z":2}},"P":{"d":"31,0r0,-240r86,0v67,0,70,35,70,95v0,58,-62,63,-125,59r0,86r-31,0xm156,-145v-3,-38,7,-67,-40,-67r-54,0r0,99v39,-2,97,10,94,-32","w":200,"k":{"\u00fd":-7,"\u00e6":2,"\u00e1":2,"\u00c5":16,"\u00c4":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u00c0":16,"y":-7,"w":-7,"t":-5,"f":-4,"a":2,"Z":4,"W":-2,"A":16,";":5,":":5,".":49,"-":2,",":49,"}":-4,"x":-5,"v":-9,"]":-4,"\\":-9,"X":5,"V":-1,"\/":18,"*":-14,"!":-4}},"Q":{"d":"112,-243v107,-1,85,82,87,174v0,34,-19,63,-63,70r20,46r-27,13r-25,-57v-99,-4,-77,-85,-79,-174v0,-40,25,-72,87,-72xm112,-216v-80,0,-56,80,-56,146v0,30,18,46,56,46v80,0,56,-80,56,-146v0,-30,-18,-46,-56,-46","k":{"\u00dd":5,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":5,"W":2,"T":6,"A":4,";":4,":":4,".":5,",":5,"}":4,"]":4,"\\":2,"X":4,"V":5,"\/":9,")":5}},"R":{"d":"180,0r-60,-87r-58,0r0,87r-31,0r0,-240r91,0v67,0,70,35,70,94v0,28,-11,48,-39,56r63,90r-36,0xm161,-146v0,-38,6,-66,-40,-66r-59,0r0,98v40,-2,99,12,99,-32","w":227,"k":{"\u00fd":4,"\u00fa":2,"\u00f8":3,"\u00f3":3,"\u00e9":3,"\u00e7":2,"\u00e6":3,"\u00e1":3,"\u00dd":14,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":4,"\u00c5":-3,"\u00c4":-3,"\u00c3":-3,"\u00c2":-3,"\u00c1":-3,"\u00c0":-3,"\u00ab":4,"y":4,"u":2,"q":2,"o":3,"e":3,"c":2,"a":3,"Y":14,"W":5,"U":4,"T":11,"O":6,"G":4,"C":4,"A":-3,";":2,":":2,".":-2,"-":13,",":-2,"}":-4,"x":-5,"v":2,"d":1,"\\":2,"V":12,"Q":6,"!":-4}},"S":{"d":"171,-62v0,42,-12,66,-78,66v-23,0,-50,-5,-71,-13r5,-25v38,11,113,26,113,-27v0,-32,-1,-36,-50,-47v-58,-13,-64,-23,-64,-73v0,-42,17,-62,76,-62v21,0,46,3,65,8r-2,26v-37,-6,-108,-23,-108,29v0,33,-1,34,47,46v64,16,67,25,67,72","w":194,"k":{"\u00fd":2,"\u00fa":2,"\u00e9":2,"\u00e6":1,"\u00e1":1,"\u00c5":1,"\u00c4":1,"\u00c3":1,"\u00c2":1,"\u00c1":1,"\u00c0":1,"\u00ab":-7,"y":2,"u":2,"t":1,"e":2,"a":1,"A":1,"}":-5,"\\":-5,"\/":5}},"T":{"d":"79,0r0,-212r-72,0r0,-28r174,0r0,28r-71,0r0,212r-31,0","w":188,"k":{"\u00ae":-11,"}":-4,"x":25,"v":27,"p":27,"m":27,"g":27,"d":25,"]":-5,"\\":-9,"V":-4,"Q":6,"M":2,"?":-11,"\/":27,"*":-11,")":-5,"!":-5,"C":6,"\u00c7":6,"O":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"\u00d6":6,"\u00d8":6,"W":-4,"Y":-5,"\u00dd":-5,"e":26,"\u00e9":26,"o":26,"\u00f3":26,"\u00f8":26,"y":27,"\u00fd":27,"f":7,"z":27,"G":6,",":40,".":40,":":36,";":36,"\u00ab":18,"\u00bb":22,"-":38,"A":20,"\u00c0":20,"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u00c4":20,"\u00c5":20,"c":25,"\u00e7":25,"q":27,"t":11,"u":27,"\u00fa":27,"a":25,"\u00e1":25,"\u00e6":25,"w":25,"n":27,"r":31,"s":29,"S":1}},"U":{"d":"168,-240r31,0r0,173v0,39,-23,71,-85,71v-62,0,-85,-32,-85,-71r0,-173r31,0r0,171v0,30,16,45,54,45v38,0,54,-15,54,-45r0,-171","w":227,"k":{"\\":-5,"\/":11,"Y":-1,"\u00dd":-1,",":7,".":7,":":2,";":2,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4}},"V":{"d":"86,0r-80,-240r30,0r71,213r70,-213r30,0r-80,240r-41,0","w":213,"k":{"\u00fa":10,"\u00f8":14,"\u00f3":14,"\u00e9":14,"\u00e7":11,"\u00e6":14,"\u00e1":14,"\u00dd":-7,"\u00d8":5,"\u00d6":5,"\u00d5":5,"\u00d4":5,"\u00d3":5,"\u00d2":5,"\u00c7":4,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"\u00bb":14,"\u00ab":11,"z":7,"u":10,"t":2,"s":14,"r":13,"q":13,"o":14,"n":11,"e":14,"c":11,"a":14,"Y":-7,"W":-7,"T":-5,"S":1,"O":5,"G":4,"C":4,"A":20,";":23,":":23,".":32,"-":18,",":32,"\u00ae":-11,"}":-5,"x":2,"p":11,"m":11,"g":11,"d":13,"]":-4,"\\":-9,"V":-5,"Q":5,"?":-9,"\/":25,"*":-11,")":-7,"!":-4}},"W":{"d":"185,-240r50,210r54,-210r31,0r-63,240r-44,0r-50,-214r-49,214r-44,0r-63,-240r30,0r55,210r50,-210r43,0","w":326,"k":{"}":-5,"x":2,"p":7,"m":7,"g":9,"d":9,"]":-5,"\\":-7,"V":-4,"Q":2,"?":-4,"\/":22,"*":-9,")":-5,"!":-5,"C":2,"\u00c7":2,"O":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"T":-7,"W":-5,"Y":-9,"\u00dd":-9,"e":12,"\u00e9":12,"o":12,"\u00f3":12,"\u00f8":12,"y":1,"\u00fd":1,"z":5,"G":2,",":32,".":32,":":20,";":20,"\u00ab":9,"\u00bb":11,"-":13,"A":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"c":8,"\u00e7":8,"q":9,"u":6,"\u00fa":6,"a":11,"\u00e1":11,"\u00e6":11,"n":7,"r":8,"s":13}},"X":{"d":"11,0r78,-122r-76,-118r33,0r60,94r60,-94r33,0r-76,118r78,122r-33,0r-62,-97r-62,97r-33,0","w":212,"k":{"\u00fd":7,"\u00fa":2,"\u00f8":6,"\u00f3":6,"\u00e9":5,"\u00e7":4,"\u00e6":4,"\u00e1":4,"\u00dd":-4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c5":-2,"\u00c4":-2,"\u00c3":-2,"\u00c2":-2,"\u00c1":-2,"\u00c0":-2,"\u00bb":9,"\u00ab":7,"y":7,"u":2,"q":4,"o":6,"e":5,"c":4,"a":4,"Y":-4,"W":-2,"T":-1,"O":4,"G":4,"C":4,"A":-2,"-":23,"}":-5,"x":-4,"v":7,"g":4,"d":4,"]":-5,"\\":-4,"V":-2,"Q":4,"?":-4,"\/":2,")":-5,"!":-9}},"Y":{"d":"99,-106r62,-134r33,0r-80,168r0,72r-31,0r0,-72r-79,-168r32,0","w":197,"k":{"}":-5,"x":13,"v":9,"p":20,"m":20,"g":25,"d":23,"]":-2,"\\":-5,"V":-2,"Q":5,"M":2,"?":-5,"\/":31,"*":-5,")":-5,"C":9,"\u00c7":9,"O":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"\u00d6":5,"\u00d8":5,"T":-4,"W":-4,"Y":-5,"\u00dd":-5,"e":27,"\u00e9":27,"o":27,"\u00f3":27,"\u00f8":27,"y":9,"\u00fd":9,"f":5,"z":22,"G":8,",":47,".":47,":":31,";":31,"\u00ab":16,"\u00bb":22,"-":31,"A":21,"\u00c0":21,"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u00c4":21,"\u00c5":21,"c":25,"\u00e7":25,"q":23,"t":5,"u":20,"\u00fa":20,"a":23,"\u00e1":23,"\u00e6":23,"w":9,"Z":4,"n":20,"r":22,"s":26,"S":3}},"Z":{"d":"183,-213r-124,186r126,0r0,27r-160,0r0,-27r124,-186r-122,0r0,-27r156,0r0,27","w":208,"k":{"\u00fd":5,"\u00fa":4,"\u00f8":7,"\u00f3":7,"\u00e9":7,"\u00e7":5,"\u00e6":4,"\u00e1":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":3,"\u00ab":4,"y":5,"w":2,"u":4,"t":4,"q":5,"o":7,"e":7,"c":5,"a":4,"O":4,"G":3,"C":3,"-":25,"v":4,"g":4,"d":5,"Q":4,")":-5}},"[":{"d":"104,45r-70,0r0,-329r70,0r0,26r-40,0r0,277r40,0r0,26","w":111,"k":{"\u00f8":2,"\u00f3":2,"\u00dd":-2,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c5":2,"\u00c4":2,"\u00c3":2,"\u00c2":2,"\u00c1":2,"\u00c0":2,"z":-4,"o":2,"Y":-2,"W":-5,"T":-5,"S":2,"O":4,"J":-14,"G":4,"C":4,"A":2,".":4,"-":11,",":4,"x":-4,"p":-7,"j":-20,"g":-5,"X":-5,"V":-4,"Q":4,"@":5,"7":-5,"6":4,"4":5,"3":-4,"2":-4,"1":2,"+":4,"*":2,"%":2,"#":4}},"\\":{"d":"111,42r-89,-285r28,0r89,285r-28,0","w":158,"k":{"\u00fd":4,"\u00fa":2,"\u00f8":4,"\u00f3":4,"\u00e9":4,"\u00e7":4,"\u00e6":2,"\u00e1":2,"\u00dd":31,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":4,"w":5,"u":2,"t":4,"s":2,"o":4,"f":7,"e":4,"c":4,"a":2,"Y":31,"W":23,"U":11,"T":27,"S":7,"O":7,"J":-14,"G":7,"C":7,"v":9,"p":-4,"j":-11,"g":-7,"d":4,"X":5,"V":27,"Q":7,"M":4,"9":7,"8":7,"7":11,"6":11,"5":5,"4":13,"3":4,"2":5,"1":20,"0":11}},"]":{"d":"77,45r-70,0r0,-26r40,0r0,-277r-40,0r0,-26r70,0r0,329","w":111},"^":{"d":"149,-147r-21,11r-45,-85r-45,85r-22,-11r54,-100r26,0","w":165},"_":{"d":"160,45r-160,0r0,-18r160,0r0,18","w":159},"`":{"d":"87,-215r-12,18v-18,-10,-33,-19,-50,-31r13,-20v13,10,31,23,49,33","w":112},"a":{"d":"86,-179v100,0,58,100,67,179r-26,0r-1,-13v-34,27,-104,25,-104,-34v0,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v17,-4,38,-8,57,-8xm123,-37r0,-34v-28,3,-74,-11,-70,23v-5,41,51,26,70,11","w":177,"k":{"w":-3,"x":-4,"\\":2,")":4}},"b":{"d":"114,-179v60,-2,53,60,52,117v0,40,-15,66,-75,66v-16,0,-42,-2,-62,-7r0,-244r30,-4r0,84v12,-6,33,-12,55,-12xm59,-139r0,113v37,8,83,2,77,-35v-6,-37,16,-93,-29,-91v-15,0,-36,7,-48,13","w":186,"k":{"-":-4,"\/":5,")":4}},"c":{"d":"88,4v-81,2,-70,-52,-70,-119v0,-40,15,-64,70,-64v15,0,33,2,42,5r-3,26v-36,-7,-82,-10,-79,32v3,44,-14,93,41,93v12,0,24,-1,38,-4r3,25v-9,3,-27,6,-42,6","w":147,"k":{"\u00fd":-1,"\u00f8":1,"\u00f3":1,"\u00e9":1,"\u00bb":-4,"y":-1,"w":-1,"o":1,"e":1,"-":2,"}":-7,"x":-2,"v":-1,"]":-7,"\/":-2,")":-2}},"d":{"d":"73,4v-63,0,-47,-68,-51,-126v-4,-56,56,-65,107,-52r0,-73r30,-4r0,251r-25,0r-3,-16v-14,12,-35,20,-58,20xm129,-44r0,-103v-34,-5,-80,-16,-76,25v4,38,-19,100,27,99v17,0,36,-9,49,-21","w":188,"k":{"}":-9,"]":-9,"\\":-5,")":-4}},"e":{"d":"50,-76v-1,35,1,55,42,54v17,0,36,-4,55,-9r4,25v-17,6,-40,10,-62,10v-75,1,-70,-51,-69,-117v0,-36,17,-66,69,-66v68,0,67,45,65,103r-104,0xm89,-154v-34,0,-41,20,-39,53r75,0v1,-32,-2,-54,-36,-53","w":173,"k":{"\u00fd":1,"\u00e6":1,"\u00e1":1,"y":1,"a":1,"-":-2,"}":-2,"x":-1,"v":1,"]":-9,"\\":2}},"f":{"d":"127,-249r-2,23v-23,-4,-58,-10,-53,21r0,30r50,0r-2,25r-48,0r0,150r-30,0r0,-150r-31,0r0,-25r31,0v-3,-46,3,-81,49,-79v12,0,24,1,36,5","w":127,"k":{"\u00ae":-14,"}":-16,"x":-4,"v":-4,"g":2,"d":2,"]":-22,"\\":-16,"@":-7,"?":-13,"\/":14,"*":-18,")":-13,"!":-7,"e":4,"\u00e9":4,"o":4,"\u00f3":4,"\u00f8":4,"y":-4,"\u00fd":-4,",":31,".":31,":":4,";":4,"\u00ab":2,"-":9,"c":3,"\u00e7":3,"q":2,"a":4,"\u00e1":4,"\u00e6":4,"w":-5,"s":4}},"g":{"d":"165,-175r0,17r-21,4v26,51,-2,118,-77,102v-11,6,-22,27,-1,29v38,4,100,1,93,47v13,60,-86,57,-140,42r4,-24v29,8,118,18,108,-17v0,-41,-107,1,-107,-55v0,-13,8,-24,17,-31v-43,-29,-36,-128,44,-118v24,2,52,6,80,4xm125,-111v0,-30,-8,-44,-40,-43v-32,0,-40,13,-40,43v0,27,11,35,40,35v29,0,40,-12,40,-35","w":176,"k":{"\u00fd":-5,"\u00bb":-2,"\u00ab":-2,"y":-5,"w":-4,".":4,",":4,"}":-11,"x":-5,"v":-5,"j":-9,"]":-13,"\\":-4,"\/":-5,"*":-9,")":-4}},"h":{"d":"165,0r-30,0r0,-134v0,-12,-6,-16,-17,-16v-13,0,-40,8,-59,18r0,132r-30,0r0,-247r30,-4r0,90v36,-19,106,-36,106,27r0,134","w":191,"k":{"}":4,"\\":2}},"i":{"d":"59,0r-30,0r0,-175r30,0r0,175xm59,-203r-30,0r0,-44r30,0r0,44","w":87},"j":{"d":"29,-175r30,0r0,186v0,25,-3,29,-41,62r-18,-22v29,-26,29,-27,29,-42r0,-184xm59,-203r-30,0r0,-44r30,0r0,44","w":86,"k":{"\/":2}},"k":{"d":"59,0r-30,0r0,-247r30,-4r0,251xm129,-175r34,0r-62,86r65,89r-35,0r-64,-89","w":174,"k":{"\u00fd":-2,"\u00f8":3,"\u00f3":3,"\u00e9":3,"\u00e7":2,"\u00e6":1,"\u00e1":1,"\u00ab":5,"y":-2,"w":-2,"o":3,"e":3,"c":2,"a":1,"-":16,"x":-4,"v":-2,"d":1,"\\":4}},"l":{"d":"59,0r-30,0r0,-247r30,-4r0,251","w":87},"m":{"d":"271,0r-31,0r0,-134v0,-12,-5,-16,-16,-16v-14,0,-40,8,-59,18r0,132r-30,0r0,-134v0,-12,-6,-16,-17,-16v-13,0,-40,8,-59,18r0,132r-30,0r0,-175r24,0r3,15v29,-13,88,-35,104,0v38,-19,111,-38,111,26r0,134","w":297,"k":{"\\":2}},"n":{"d":"165,0r-30,0r0,-134v0,-12,-6,-16,-17,-16v-13,0,-40,8,-59,18r0,132r-30,0r0,-175r24,0r3,15v36,-19,109,-38,109,26r0,134","w":191,"k":{"\\":2}},"o":{"d":"162,-113v0,67,2,117,-71,117v-73,0,-71,-50,-71,-117v0,-37,20,-66,71,-66v51,0,71,29,71,66xm132,-61v0,-45,8,-92,-41,-92v-49,0,-41,47,-41,92v0,26,14,38,41,38v27,0,41,-12,41,-38","w":182,"k":{"}":4,"v":2,"]":2,"\\":2,"\/":5,")":5,",":4,".":4}},"p":{"d":"115,-179v63,0,47,67,51,125v4,56,-57,67,-107,52r0,73r-30,4r0,-250r25,0r3,16v14,-12,35,-20,58,-20xm59,-131r0,103v35,5,81,16,77,-26v-3,-37,18,-99,-27,-98v-17,0,-37,9,-50,21","w":188,"k":{"}":2,"\\":5,"\/":5,")":4}},"q":{"d":"72,4v-60,2,-51,-60,-51,-117v0,-40,14,-66,74,-66v16,0,43,2,63,7r0,243r-30,4r0,-84v-12,6,-34,13,-56,13xm128,-36r0,-114v-38,-7,-83,-1,-77,36v6,37,-16,93,29,91v15,0,36,-7,48,-13","w":186,"k":{"}":-5,"]":-7,"\\":2}},"r":{"d":"105,-179r4,28v-17,8,-36,20,-50,30r0,121r-30,0r0,-175r26,0r2,24v13,-10,31,-21,48,-28","w":110,"k":{"\u00fd":-8,"\u00e9":-1,"\u00e7":-1,"\u00e6":1,"\u00e1":1,"\u00bb":-7,"y":-8,"w":-7,"t":-3,"f":-2,"e":-1,"c":-1,"a":1,";":2,":":2,".":18,"-":2,",":18,"}":-9,"x":-4,"v":-8,"]":-11,"\\":-4,"\/":4,"*":-9,")":-4}},"s":{"d":"138,-47v0,34,-11,51,-61,51v-18,0,-41,-5,-55,-10r4,-24v25,6,82,22,82,-16v0,-19,-2,-21,-37,-30v-44,-11,-47,-20,-47,-56v-10,-50,67,-53,110,-41r-2,25v-25,-4,-78,-17,-78,17v0,19,0,23,30,30v50,13,54,19,54,54","w":158,"k":{";":2,":":2,"-":2,"]":-5,"\/":4,")":4}},"t":{"d":"116,-26r4,23v-32,13,-80,12,-80,-33r0,-114r-31,0r0,-25r31,0r0,-44r30,-4r0,48r50,0r-3,25r-47,0r0,109v-3,25,26,20,46,15","w":132,"k":{"\u00fd":-2,"\u00f8":1,"\u00f3":1,"\u00bb":-4,"y":-2,"w":-3,"o":1,"-":7,"}":-7,"x":-4,"v":-2,"]":-4,"\\":-5,"\/":-5}},"u":{"d":"27,-175r30,0r0,134v0,12,6,16,17,16v13,0,40,-8,59,-18r0,-132r30,0r0,175r-24,0r-3,-15v-36,19,-109,38,-109,-26r0,-134","w":191},"v":{"d":"81,-25r48,-150r30,0r-58,175r-40,0r-58,-175r30,0","w":162,"k":{"\u00fd":-2,"\u00f8":2,"\u00f3":2,"\u00e6":3,"\u00e1":3,"y":-2,"w":-2,"t":-4,"o":2,"f":-2,"a":3,";":5,":":5,".":22,",":22,"x":-4,"v":-2,"\/":11,"*":-7,")":4}},"w":{"d":"207,0r-39,0r-43,-149r-42,149r-39,0r-38,-175r29,0r29,145r43,-145r37,0r42,145r29,-145r29,0","w":250,"k":{"x":-2,"v":-4,"\\":-2,"\/":5,"*":-7,")":2,"y":-4,"\u00fd":-4,"f":-1,",":11,".":11,":":4,";":4,"t":-2,"a":2,"\u00e1":2,"\u00e6":2,"w":-4}},"x":{"d":"39,0r-33,0r58,-88r-56,-87r31,0r42,64r41,-64r32,0r-57,87r58,88r-32,0r-42,-65","w":161,"k":{"\u00fd":-3,"y":-3,"w":-3,".":-2,"-":8,",":-2,"}":-5,"x":-2,"v":-3,"]":-4,"\\":-2,"*":-7,")":-2}},"y":{"d":"48,71r24,-71r-12,0r-57,-175r30,0r48,151r48,-151r30,0r-83,246r-28,0","w":161,"k":{"\u00fd":-2,"\u00e9":1,"\u00e6":3,"\u00e1":3,"y":-2,"w":-2,"t":-4,"f":-2,"e":1,"a":3,".":20,",":20,"x":-4,"v":-2,"\\":-5,"\/":9,"*":-14}},"z":{"d":"23,-151r0,-24r121,0r0,24r-89,127r90,0r0,24r-123,0r0,-24r89,-127r-88,0","w":165,"k":{"\u00e6":1,"\u00e1":1,"a":1,"-":4,"]":-4}},"{":{"d":"43,-89v1,-13,-9,-16,-23,-15r0,-25v14,1,25,-2,23,-15v6,-55,-23,-145,43,-140r23,0r0,25v-17,0,-36,-4,-36,15r0,86v0,11,2,40,-24,41v26,1,24,30,24,41r0,87v-2,19,19,15,36,15r0,25v-42,3,-66,-4,-66,-47r0,-93","w":112,"k":{"\u00f8":4,"\u00f3":4,"\u00e9":4,"\u00e7":2,"\u00e6":4,"\u00e1":4,"\u00dd":-5,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"r":2,"q":2,"o":4,"n":2,"f":4,"e":4,"c":2,"a":4,"Y":-5,"W":-5,"T":-4,"O":4,"J":-14,"G":4,"C":4,"A":4,";":7,":":7,".":7,"-":11,",":7,"x":-5,"p":-7,"m":2,"j":-18,"d":4,"X":-5,"V":-5,"Q":4,"@":11,"9":2,"8":2,"7":-9,"4":4,"3":-4,"2":-5,"0":2,"+":14,"*":4}},"|":{"d":"57,-284r0,360r-21,0r0,-360r21,0","w":92},"}":{"d":"93,-104v-14,-1,-25,2,-24,15v-6,55,23,144,-42,140r-23,0r0,-25v17,0,35,4,35,-15r0,-87v0,-11,-2,-40,24,-41v-26,-1,-24,-30,-24,-41r0,-86v2,-19,-18,-15,-35,-15r0,-25v42,-3,65,4,65,47r0,93v-1,13,9,16,24,15r0,25","w":112},"~":{"d":"145,-124r19,8v-7,22,-20,43,-46,43v-26,0,-39,-26,-56,-26v-14,0,-20,11,-27,27r-19,-9v10,-25,22,-42,46,-42v24,0,38,26,56,26v16,0,22,-13,27,-27","w":180},"\u00a0":{"w":77},"\u00a1":{"d":"39,-107r18,0v8,54,6,117,6,178r-30,0r0,-117xm32,-134r0,-41r31,0r0,41r-31,0","w":95},"\u00a2":{"d":"72,4r0,-33v-63,-5,-51,-58,-52,-118v0,-36,11,-58,52,-63r0,-33r24,0r0,32v12,1,26,3,35,5r-2,25v-37,-6,-83,-9,-79,33v4,43,-14,93,40,93v10,0,24,0,39,-3r2,25v-11,3,-22,5,-35,5r0,32r-24,0","w":152,"k":{"7":-7,"4":-4,"1":-7}},"\u00a3":{"d":"25,-108r0,-23r32,0v-28,-49,-22,-105,54,-105v18,0,41,3,57,7r-3,25v-31,-6,-93,-20,-93,24v0,17,6,32,16,49r69,0r-1,23r-62,0v8,33,-2,54,-27,82r101,0r0,26r-138,0r0,-26v27,-23,44,-47,34,-82r-39,0","w":191,"k":{"7":-9,"3":-5,"2":-5,"1":-4}},"\u00a4":{"d":"175,-194r-23,23v10,24,10,74,0,101r23,23r-19,19r-25,-25v-14,7,-48,6,-62,0r-25,25r-19,-19r23,-23v-10,-24,-10,-74,0,-101r-23,-23r19,-19r25,25v14,-7,48,-6,62,0r25,-25xm100,-169v-43,0,-31,35,-31,69v0,19,6,28,31,28v42,0,31,-35,31,-69v0,-19,-7,-28,-31,-28","w":200},"\u00a5":{"d":"21,-51r0,-21r63,0r-17,-34r-46,0r0,-21r36,0r-50,-106r33,0r59,127r59,-127r33,0r-51,106r37,0r0,21r-47,0r-16,34r63,0r0,21r-63,0r0,51r-30,0r0,-51r-63,0","w":198,"k":{"7":-14,"3":-5,"2":-5,"1":-11}},"\u00a6":{"d":"57,-284r0,150r-21,0r0,-150r21,0xm57,76r-21,0r0,-151r21,0r0,151","w":92},"\u00a7":{"d":"96,-8r-25,8v-25,-72,-46,-149,-46,-203v0,-49,69,-44,105,-31r-4,21v-26,-4,-73,-20,-73,14v0,50,20,122,43,191xm104,-168r26,-8v25,72,45,148,45,202v0,49,-68,46,-104,32r4,-22v26,5,72,22,72,-13v0,-50,-20,-122,-43,-191","w":198},"\u00a8":{"d":"25,-202r0,-30r28,0r0,30r-28,0xm87,-202r0,-30r29,0r0,30r-29,0","w":140},"\u00a9":{"d":"22,-120v0,-68,49,-123,123,-123v75,0,123,55,123,123v0,68,-48,124,-123,124v-74,0,-123,-56,-123,-124xm44,-120v0,57,39,102,101,102v62,0,101,-45,101,-102v0,-57,-39,-102,-101,-102v-62,0,-101,45,-101,102xm183,-62v-34,11,-84,6,-81,-34v4,-47,-10,-93,47,-89v11,0,24,2,34,5r-2,19v-20,-4,-62,-12,-57,17v5,29,-16,67,25,67v10,0,22,-2,32,-4","w":289},"\u00aa":{"d":"67,-251v61,-3,36,62,41,111v-8,0,-19,2,-17,-8v-20,15,-69,15,-64,-21v-2,-35,30,-30,62,-30v0,-21,3,-38,-23,-36v-10,0,-25,2,-33,4r-2,-15v9,-3,24,-5,36,-5xm89,-163r0,-21v-17,2,-45,-7,-43,14v-2,25,31,16,43,7","w":136},"\u00ab":{"d":"60,-18r-46,-70r46,-69r21,13r-37,56r37,56xm130,-18r-46,-70r46,-69r21,13r-37,56r37,56","w":174,"k":{"X":9,"V":14,"M":5,"7":2,"1":9,"T":22,"W":11,"Y":22,"\u00dd":22,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"t":-2,"S":5,"J":4}},"\u00ac":{"d":"22,-82r0,-26r146,0r0,86r-27,0r0,-60r-119,0","w":198},"\u00ae":{"d":"20,-185v0,-36,25,-66,65,-66v40,0,65,30,65,66v0,36,-25,65,-65,65v-40,0,-65,-29,-65,-65xm35,-185v0,28,17,50,50,50v33,0,50,-22,50,-50v0,-28,-17,-51,-50,-51v-33,0,-50,23,-50,51xm114,-157v-24,4,-14,-24,-39,-20r0,20r-10,0r0,-60v22,0,48,-3,42,24v0,6,-2,10,-9,14xm96,-193v3,-15,-7,-15,-21,-14r0,21v9,0,22,2,21,-7","w":169},"\u00af":{"d":"23,-200r0,-21r87,0r0,21r-87,0","w":133},"\u00b0":{"d":"104,-195v0,23,-14,41,-41,41v-27,0,-41,-18,-41,-41v0,-23,14,-41,41,-41v27,0,41,18,41,41xm85,-195v0,-14,-7,-25,-22,-25v-15,0,-23,11,-23,25v0,14,8,25,23,25v15,0,22,-11,22,-25","w":125},"\u00b1":{"d":"171,-24r0,24r-146,0r0,-24r146,0xm25,-108r0,-25r60,0r0,-61r27,0r0,61r59,0r0,25r-59,0r0,61r-27,0r0,-61r-60,0","w":196},"\u00b2":{"d":"25,-146r0,-19v16,-23,68,-65,61,-91v4,-25,-41,-16,-56,-12r-4,-21v35,-11,95,-10,85,38v3,26,-38,62,-53,84r53,0r0,21r-86,0","w":139},"\u00b3":{"d":"27,-148r3,-19v26,3,69,12,59,-26v1,-22,-33,-15,-54,-16r0,-21v26,-1,61,8,51,-29v2,-22,-37,-14,-55,-13r-2,-19v31,-7,85,-8,80,30v-3,20,3,32,-15,41v16,4,19,18,18,39v9,39,-51,44,-85,33","w":138},"\u00b4":{"d":"37,-197r-12,-18v18,-10,37,-23,50,-33r12,20v-17,12,-32,21,-50,31","w":112},"\u00b5":{"d":"27,71r0,-246r30,0r0,135v0,10,6,15,17,15v13,0,40,-8,59,-18r0,-132r30,0r0,175r-24,0r-3,-15v-22,9,-53,22,-79,18r0,68r-30,0","w":191},"\u00b6":{"d":"125,-240r26,0r0,254v0,17,-2,19,-46,61r-16,-18v35,-33,36,-35,36,-44r0,-253xm23,-165v0,-43,33,-75,75,-75r0,150v-42,0,-75,-33,-75,-75","w":185},"\u00b7":{"d":"31,-95r0,-42r31,0r0,42r-31,0","w":92},"\u00b8":{"d":"88,43v0,27,-40,34,-65,23r4,-15v12,4,43,6,42,-8v-1,-18,-28,-3,-37,-13r8,-35r17,0r-5,25v19,-4,36,3,36,23","w":111},"\u00b9":{"d":"29,-249r-9,-18v20,-9,31,-27,62,-25r0,146r-24,0r0,-118","w":119},"\u00ba":{"d":"115,-210v0,41,0,72,-44,72v-45,0,-46,-31,-44,-72v0,-23,12,-41,44,-41v31,0,44,18,44,41xm96,-178v0,-27,6,-56,-25,-56v-31,0,-26,28,-26,56v0,16,9,24,26,24v17,0,25,-8,25,-24","w":141},"\u00bb":{"d":"160,-88r-46,70r-21,-14r37,-56r-37,-56r21,-13xm90,-88r-46,70r-21,-14r37,-56r-37,-56r21,-13","w":174,"k":{"X":7,"V":11,"M":2,"9":4,"7":5,"4":-7,"1":7,"*":7,"%":4,"T":18,"W":9,"Y":16,"\u00dd":16,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"Z":4,"S":4}},"\u00bc":{"d":"275,-31r-21,0r0,31r-23,0r0,-31r-67,0r0,-20r57,-95r33,0r0,95r21,0r0,20xm189,-51r42,0r0,-73xm200,-236r-100,248r-20,-8r100,-248xm31,-190r-9,-18v20,-9,30,-28,62,-25r0,146r-24,0r0,-117","w":300},"\u00bd":{"d":"200,-236r-100,248r-20,-8r100,-248xm31,-190r-9,-18v20,-9,30,-28,62,-25r0,146r-24,0r0,-117xm192,0r0,-19v15,-23,67,-65,61,-90v5,-26,-40,-17,-56,-13r-4,-21v34,-11,94,-10,84,38v4,26,-37,62,-52,84r53,0r0,21r-86,0","w":306},"\u00be":{"d":"27,-89r3,-19v26,3,69,12,59,-26v1,-22,-33,-15,-54,-16r0,-21v26,0,60,7,51,-29v2,-23,-37,-15,-55,-13r-2,-19v31,-7,85,-8,80,30v-3,20,3,32,-15,41v16,4,19,18,18,39v8,39,-50,42,-85,33xm288,-31r-21,0r0,31r-23,0r0,-31r-67,0r0,-20r57,-95r33,0r0,95r21,0r0,20xm202,-51r42,0r0,-73xm213,-236r-99,248r-20,-8r100,-248","w":313},"\u00bf":{"d":"117,-72v-22,22,-70,35,-63,80v-10,52,56,41,94,34r4,26v-14,4,-41,7,-59,7v-58,0,-70,-21,-70,-65v0,-60,45,-77,76,-105xm117,-175r0,41r-31,0r0,-41r31,0","w":171},"\u00c0":{"d":"133,-240r81,240r-31,0r-20,-58r-102,0r-20,58r-31,0r81,-240r42,0xm155,-85r-43,-132r-43,132r86,0xm128,-276r-12,20v-17,-8,-32,-17,-47,-28r14,-21v15,11,29,20,45,29","k":{"\u00ae":22,"}":4,"x":-4,"v":6,"g":1,"d":1,"]":2,"\\":7,"X":-2,"V":20,"Q":4,"@":5,"?":13,"\/":-2,"*":36,")":5,"!":-4}},"\u00c1":{"d":"133,-240r81,240r-31,0r-20,-58r-102,0r-20,58r-31,0r81,-240r42,0xm155,-85r-43,-132r-43,132r86,0xm111,-256r-12,-20v16,-9,30,-18,45,-29r13,21v-15,11,-29,20,-46,28","k":{"\u00ae":22,"}":4,"x":-4,"v":6,"g":1,"d":1,"]":2,"\\":7,"X":-2,"V":20,"Q":4,"@":5,"?":13,"\/":-2,"*":36,")":5,"!":-4}},"\u00c2":{"d":"133,-240r81,240r-31,0r-20,-58r-102,0r-20,58r-31,0r81,-240r42,0xm155,-85r-43,-132r-43,132r86,0xm157,-273r-9,17v-14,-6,-24,-12,-36,-20v-12,8,-22,14,-36,20r-9,-17v15,-9,28,-17,45,-30v17,13,30,21,45,30","k":{"\u00ae":22,"}":4,"x":-4,"v":6,"g":1,"d":1,"]":2,"\\":7,"X":-2,"V":20,"Q":4,"@":5,"?":13,"\/":-2,"*":36,")":5,"!":-4}},"\u00c3":{"d":"133,-240r81,240r-31,0r-20,-58r-102,0r-20,58r-31,0r81,-240r42,0xm155,-85r-43,-132r-43,132r86,0xm166,-283v-11,33,-48,21,-72,10v-8,0,-14,6,-19,12r-13,-13v14,-32,51,-17,73,-8v7,0,11,-3,16,-11","k":{"\u00ae":22,"}":4,"x":-4,"v":6,"g":1,"d":1,"]":2,"\\":7,"X":-2,"V":20,"Q":4,"@":5,"?":13,"\/":-2,"*":36,")":5,"!":-4}},"\u00c4":{"d":"133,-240r81,240r-31,0r-20,-58r-102,0r-20,58r-31,0r81,-240r42,0xm155,-85r-43,-132r-43,132r86,0xm66,-261r0,-28r29,0r0,28r-29,0xm130,-261r0,-28r28,0r0,28r-28,0","k":{"\u00ae":22,"}":4,"x":-4,"v":6,"g":1,"d":1,"]":2,"\\":7,"X":-2,"V":20,"Q":4,"@":5,"?":13,"\/":-2,"*":36,")":5,"!":-4}},"\u00c5":{"d":"133,-240r81,240r-31,0r-20,-58r-102,0r-20,58r-31,0r81,-240r42,0xm155,-85r-43,-132r-43,132r86,0xm137,-275v0,13,-8,24,-25,24v-17,0,-25,-11,-25,-24v0,-14,8,-25,25,-25v17,0,25,11,25,25xm123,-275v0,-7,-4,-12,-11,-12v-7,0,-11,5,-11,12v0,7,4,11,11,11v7,0,11,-4,11,-11","k":{"\u00ae":22,"}":4,"x":-4,"v":6,"g":1,"d":1,"]":2,"\\":7,"X":-2,"V":20,"Q":4,"@":5,"?":13,"\/":-2,"*":36,")":5,"!":-4}},"\u00c6":{"d":"183,0r-20,-58r-102,0r-20,58r-31,0r81,-240r187,0r0,28r-136,0r25,75r103,0r0,28r-93,0r27,81r75,0r0,28r-96,0xm155,-85r-43,-132r-43,132r86,0","w":302},"\u00c7":{"d":"143,45v0,27,-40,34,-65,23r3,-15v11,5,42,8,42,-7v0,-19,-28,-4,-36,-14r6,-29v-90,-1,-61,-94,-68,-176v-6,-68,77,-80,143,-64r-3,27v-47,-7,-115,-16,-109,39v7,62,-28,147,52,147v14,0,39,-3,57,-6r3,27v-16,4,-39,7,-57,7r-4,19v19,-4,36,3,36,22","w":185},"\u00c8":{"d":"31,0r0,-240r141,0r0,28r-110,0r0,75r102,0r0,28r-102,0r0,81r110,0r0,28r-141,0xm121,-276r-12,20v-17,-8,-31,-17,-46,-28r13,-21v15,11,29,20,45,29","w":194},"\u00c9":{"d":"31,0r0,-240r141,0r0,28r-110,0r0,75r102,0r0,28r-102,0r0,81r110,0r0,28r-141,0xm95,-256r-13,-20v16,-9,30,-18,45,-29r14,21v-15,11,-29,20,-46,28","w":194},"\u00ca":{"d":"31,0r0,-240r141,0r0,28r-110,0r0,75r102,0r0,28r-102,0r0,81r110,0r0,28r-141,0xm149,-273r-9,17v-14,-6,-24,-12,-36,-20v-12,8,-21,14,-35,20r-10,-17v15,-9,28,-17,45,-30v17,13,30,21,45,30","w":194},"\u00cb":{"d":"31,0r0,-240r141,0r0,28r-110,0r0,75r102,0r0,28r-102,0r0,81r110,0r0,28r-141,0xm55,-261r0,-28r29,0r0,28r-29,0xm118,-261r0,-28r29,0r0,28r-29,0","w":194},"\u00cc":{"d":"63,-240r0,240r-31,0r0,-240r31,0xm63,-276r-13,20v-17,-8,-31,-17,-46,-28r14,-21v15,11,29,20,45,29","w":95},"\u00cd":{"d":"63,-240r0,240r-31,0r0,-240r31,0xm47,-256r-12,-20v16,-9,30,-18,45,-29r13,21v-15,11,-29,20,-46,28","w":95},"\u00ce":{"d":"63,-240r0,240r-31,0r0,-240r31,0xm93,-273r-9,17v-14,-6,-24,-12,-36,-20v-12,8,-22,14,-36,20r-9,-17v15,-9,28,-17,45,-30v17,13,30,21,45,30","w":95},"\u00cf":{"d":"63,-240r0,240r-31,0r0,-240r31,0xm2,-261r0,-28r29,0r0,28r-29,0xm66,-261r0,-28r28,0r0,28r-28,0","w":95},"\u00d0":{"d":"14,-109r0,-25r29,0r0,-106r84,0v103,-1,77,86,77,171v0,38,-18,69,-77,69r-84,0r0,-109r-29,0xm74,-212r0,78r47,0r0,25r-47,0r0,81v47,1,106,5,99,-43v-8,-59,27,-145,-47,-141r-52,0","w":227},"\u00d1":{"d":"165,0r-105,-204r0,204r-29,0r0,-240r42,0r104,205r0,-205r30,0r0,240r-42,0xm174,-283v-11,33,-48,21,-72,10v-8,0,-14,6,-19,12r-13,-13v14,-32,51,-17,73,-8v7,0,11,-3,16,-11","w":237},"\u00d2":{"d":"112,-243v107,-1,85,82,87,174v0,40,-25,73,-87,73v-107,0,-86,-83,-87,-175v0,-40,25,-72,87,-72xm112,-216v-80,0,-56,80,-56,146v0,30,18,46,56,46v80,0,56,-80,56,-146v0,-30,-18,-46,-56,-46xm129,-276r-12,20v-17,-8,-32,-17,-47,-28r14,-21v15,11,29,20,45,29","k":{"}":4,"]":4,"\\":-2,"X":4,"V":5,"\/":9,")":5,"T":6,"W":2,"Y":5,"\u00dd":5,",":5,".":5,":":4,";":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"Z":2}},"\u00d3":{"d":"112,-243v107,-1,85,82,87,174v0,40,-25,73,-87,73v-107,0,-86,-83,-87,-175v0,-40,25,-72,87,-72xm112,-216v-80,0,-56,80,-56,146v0,30,18,46,56,46v80,0,56,-80,56,-146v0,-30,-18,-46,-56,-46xm108,-256r-13,-20v16,-9,30,-18,45,-29r14,21v-15,11,-29,20,-46,28","k":{"}":4,"]":4,"\\":-2,"X":4,"V":5,"\/":9,")":5,"T":6,"W":2,"Y":5,"\u00dd":5,",":5,".":5,":":4,";":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"Z":2}},"\u00d4":{"d":"112,-243v107,-1,85,82,87,174v0,40,-25,73,-87,73v-107,0,-86,-83,-87,-175v0,-40,25,-72,87,-72xm112,-216v-80,0,-56,80,-56,146v0,30,18,46,56,46v80,0,56,-80,56,-146v0,-30,-18,-46,-56,-46xm157,-273r-9,17v-14,-6,-24,-12,-36,-20v-12,8,-22,14,-36,20r-9,-17v15,-9,28,-17,45,-30v17,13,30,21,45,30","k":{"}":4,"]":4,"\\":-2,"X":4,"V":5,"\/":9,")":5,"T":6,"W":2,"Y":5,"\u00dd":5,",":5,".":5,":":4,";":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"Z":2}},"\u00d5":{"d":"112,-243v107,-1,85,82,87,174v0,40,-25,73,-87,73v-107,0,-86,-83,-87,-175v0,-40,25,-72,87,-72xm112,-216v-80,0,-56,80,-56,146v0,30,18,46,56,46v80,0,56,-80,56,-146v0,-30,-18,-46,-56,-46xm164,-283v-11,33,-48,21,-72,10v-8,0,-14,6,-19,12r-13,-13v7,-12,20,-21,33,-21v20,0,43,28,56,2","k":{"}":4,"]":4,"\\":-2,"X":4,"V":5,"\/":9,")":5,"T":6,"W":2,"Y":5,"\u00dd":5,",":5,".":5,":":4,";":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"Z":2}},"\u00d6":{"d":"112,-243v107,-1,85,82,87,174v0,40,-25,73,-87,73v-107,0,-86,-83,-87,-175v0,-40,25,-72,87,-72xm112,-216v-80,0,-56,80,-56,146v0,30,18,46,56,46v80,0,56,-80,56,-146v0,-30,-18,-46,-56,-46xm66,-261r0,-28r29,0r0,28r-29,0xm130,-261r0,-28r28,0r0,28r-28,0","k":{"}":4,"]":4,"\\":-2,"X":4,"V":5,"\/":9,")":5,"T":6,"W":2,"Y":5,"\u00dd":5,",":5,".":5,":":4,";":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"Z":2}},"\u00d7":{"d":"145,-156r18,18r-51,51r51,51r-18,18r-51,-51r-51,51r-18,-18r51,-51r-51,-51r18,-18r51,51","w":188},"\u00d8":{"d":"25,12r19,-31v-32,-31,-19,-96,-19,-152v0,-40,25,-72,87,-72v23,0,41,4,54,12r17,-30r16,9r-19,32v32,30,19,95,19,151v0,40,-25,73,-87,73v-23,0,-41,-4,-54,-12r-17,30xm112,-216v-80,0,-51,81,-56,146v0,8,1,15,4,21r91,-157v-9,-6,-22,-10,-39,-10xm168,-70v-5,-40,6,-89,-5,-121r-90,158v32,19,101,8,95,-37","k":{"}":4,"]":4,"\\":-2,"X":4,"V":5,"\/":9,")":5,"T":6,"W":2,"Y":5,"\u00dd":5,",":5,".":5,":":4,";":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"Z":2}},"\u00d9":{"d":"168,-240r31,0r0,173v0,39,-23,71,-85,71v-62,0,-85,-32,-85,-71r0,-173r31,0r0,171v0,30,16,45,54,45v38,0,54,-15,54,-45r0,-171xm134,-276r-12,20v-17,-8,-31,-17,-46,-28r13,-21v15,11,29,20,45,29","w":227,"k":{"\\":-5,"\/":11,"Y":-1,"\u00dd":-1,",":7,".":7,":":2,";":2,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4}},"\u00da":{"d":"168,-240r31,0r0,173v0,39,-23,71,-85,71v-62,0,-85,-32,-85,-71r0,-173r31,0r0,171v0,30,16,45,54,45v38,0,54,-15,54,-45r0,-171xm108,-256r-13,-20v16,-9,30,-18,45,-29r14,21v-15,11,-29,20,-46,28","w":227,"k":{"\\":-5,"\/":11,"Y":-1,"\u00dd":-1,",":7,".":7,":":2,";":2,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4}},"\u00db":{"d":"168,-240r31,0r0,173v0,39,-23,71,-85,71v-62,0,-85,-32,-85,-71r0,-173r31,0r0,171v0,30,16,45,54,45v38,0,54,-15,54,-45r0,-171xm159,-273r-10,17v-14,-6,-23,-12,-35,-20v-12,8,-22,14,-36,20r-9,-17v15,-9,28,-17,45,-30v17,13,30,21,45,30","w":227,"k":{"\\":-5,"\/":11,"Y":-1,"\u00dd":-1,",":7,".":7,":":2,";":2,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4}},"\u00dc":{"d":"168,-240r31,0r0,173v0,39,-23,71,-85,71v-62,0,-85,-32,-85,-71r0,-173r31,0r0,171v0,30,16,45,54,45v38,0,54,-15,54,-45r0,-171xm68,-261r0,-28r28,0r0,28r-28,0xm131,-261r0,-28r29,0r0,28r-29,0","w":227,"k":{"\\":-5,"\/":11,"Y":-1,"\u00dd":-1,",":7,".":7,":":2,";":2,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4}},"\u00dd":{"d":"99,-106r62,-134r33,0r-80,168r0,72r-31,0r0,-72r-79,-168r32,0xm97,-256r-12,-20v16,-9,30,-18,45,-29r13,21v-15,11,-29,20,-46,28","w":197,"k":{"}":-5,"x":13,"v":9,"p":20,"m":20,"g":25,"d":23,"]":-2,"\\":-5,"V":-2,"Q":5,"M":2,"?":-5,"\/":31,"*":-5,")":-5,"C":9,"\u00c7":9,"O":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"\u00d6":5,"\u00d8":5,"T":-4,"W":-4,"Y":-5,"\u00dd":-5,"e":27,"\u00e9":27,"o":27,"\u00f3":27,"\u00f8":27,"y":9,"\u00fd":9,"f":5,"z":22,"G":8,",":47,".":47,":":31,";":31,"\u00ab":16,"\u00bb":22,"-":31,"A":21,"\u00c0":21,"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u00c4":21,"\u00c5":21,"c":25,"\u00e7":25,"q":23,"t":5,"u":20,"\u00fa":20,"a":23,"\u00e1":23,"\u00e6":23,"w":9,"Z":4,"n":20,"r":22,"s":26,"S":3}},"\u00de":{"d":"31,0r0,-240r31,0r0,42v63,-4,125,1,125,59v0,59,-3,95,-70,95r-55,0r0,44r-31,0xm156,-104v-3,-38,7,-67,-40,-67r-54,0r0,99v39,-2,97,10,94,-32","w":199},"\u00df":{"d":"166,-199v6,19,-27,63,-27,79v0,6,1,12,25,29v29,21,32,25,32,49v9,45,-52,54,-94,39r4,-23v21,5,60,10,60,-15v0,-15,-1,-16,-28,-35v-26,-18,-29,-28,-29,-44v0,-22,34,-62,27,-79v0,-18,-11,-30,-37,-30v-25,0,-38,11,-38,41r0,188r-30,0r0,-188v0,-41,24,-66,68,-66v46,0,67,24,67,55","w":213},"\u00e0":{"d":"86,-179v100,0,58,100,67,179r-26,0r-1,-13v-34,27,-104,25,-104,-34v0,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v17,-4,38,-8,57,-8xm123,-37r0,-34v-28,3,-74,-11,-70,23v-5,41,51,26,70,11xm114,-215r-12,18v-18,-10,-34,-19,-51,-31r13,-20v13,10,32,23,50,33","w":177},"\u00e1":{"d":"86,-179v100,0,58,100,67,179r-26,0r-1,-13v-34,27,-104,25,-104,-34v0,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v17,-4,38,-8,57,-8xm123,-37r0,-34v-28,3,-74,-11,-70,23v-5,41,51,26,70,11xm77,-197r-12,-18v18,-10,36,-23,49,-33r13,20v-17,12,-32,21,-50,31","w":177},"\u00e2":{"d":"86,-179v100,0,58,100,67,179r-26,0r-1,-13v-34,27,-104,25,-104,-34v0,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v17,-4,38,-8,57,-8xm123,-37r0,-34v-28,3,-74,-11,-70,23v-5,41,51,26,70,11xm137,-211r-11,17v-17,-9,-25,-14,-37,-24v-12,10,-20,15,-37,24r-11,-17v17,-10,30,-20,48,-34v18,14,31,24,48,34","w":177},"\u00e3":{"d":"86,-179v100,0,58,100,67,179r-26,0r-1,-13v-34,27,-104,25,-104,-34v0,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v17,-4,38,-8,57,-8xm123,-37r0,-34v-28,3,-74,-11,-70,23v-5,41,51,26,70,11xm144,-221v-11,33,-47,21,-71,10v-8,0,-14,6,-19,12r-13,-13v14,-31,50,-18,72,-8v7,0,12,-3,17,-11","w":177},"\u00e4":{"d":"86,-179v100,0,58,100,67,179r-26,0r-1,-13v-34,27,-104,25,-104,-34v0,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v17,-4,38,-8,57,-8xm123,-37r0,-34v-28,3,-74,-11,-70,23v-5,41,51,26,70,11xm47,-202r0,-30r28,0r0,30r-28,0xm109,-202r0,-30r28,0r0,30r-28,0","w":177},"\u00e5":{"d":"86,-179v100,0,58,100,67,179r-26,0r-1,-13v-34,27,-104,25,-104,-34v0,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v17,-4,38,-8,57,-8xm123,-37r0,-34v-28,3,-74,-11,-70,23v-5,41,51,26,70,11xm116,-220v0,14,-9,26,-27,26v-18,0,-26,-12,-26,-26v0,-14,8,-26,26,-26v18,0,27,12,27,26xm101,-220v0,-8,-4,-13,-12,-13v-8,0,-12,5,-12,13v0,8,4,13,12,13v8,0,12,-5,12,-13","w":177},"\u00e6":{"d":"153,-76v-1,35,1,55,42,54v17,0,36,-4,55,-9r4,25v-34,13,-102,16,-119,-11v-32,30,-122,33,-113,-30v-3,-55,49,-50,101,-49v1,-35,3,-57,-38,-57v-17,0,-39,3,-53,6r-3,-24v35,-9,92,-14,111,10v12,-12,28,-18,52,-18v68,2,67,45,65,103r-104,0xm192,-154v-34,0,-41,20,-39,53r75,0v1,-32,-2,-54,-36,-53xm53,-48v-4,41,50,25,73,12v-3,-10,-3,-22,-3,-35v-28,3,-74,-11,-70,23","w":276},"\u00e7":{"d":"88,4r-4,19v19,-4,36,2,36,22v0,27,-40,34,-65,23r4,-15v11,5,42,7,41,-7v-1,-18,-27,-4,-36,-14r7,-29v-63,-4,-52,-58,-53,-118v0,-40,15,-64,70,-64v15,0,33,2,42,5r-3,26v-36,-7,-82,-10,-79,32v3,44,-14,93,41,93v12,0,24,-1,38,-4r3,25v-9,3,-27,6,-42,6","w":147},"\u00e8":{"d":"50,-76v-1,35,1,55,42,54v17,0,36,-4,55,-9r4,25v-17,6,-40,10,-62,10v-75,1,-70,-51,-69,-117v0,-36,17,-66,69,-66v68,0,67,45,65,103r-104,0xm89,-154v-34,0,-41,20,-39,53r75,0v1,-32,-2,-54,-36,-53xm111,-215r-12,18v-18,-10,-33,-19,-50,-31r13,-20v13,10,31,23,49,33","w":173},"\u00e9":{"d":"50,-76v-1,35,1,55,42,54v17,0,36,-4,55,-9r4,25v-17,6,-40,10,-62,10v-75,1,-70,-51,-69,-117v0,-36,17,-66,69,-66v68,0,67,45,65,103r-104,0xm89,-154v-34,0,-41,20,-39,53r75,0v1,-32,-2,-54,-36,-53xm78,-197r-12,-18v18,-10,36,-23,49,-33r13,20v-17,12,-32,21,-50,31","w":173},"\u00ea":{"d":"50,-76v-1,35,1,55,42,54v17,0,36,-4,55,-9r4,25v-17,6,-40,10,-62,10v-75,1,-70,-51,-69,-117v0,-36,17,-66,69,-66v68,0,67,45,65,103r-104,0xm89,-154v-34,0,-41,20,-39,53r75,0v1,-32,-2,-54,-36,-53xm139,-211r-11,17v-17,-9,-25,-14,-37,-24v-12,10,-20,15,-37,24r-11,-17v17,-10,30,-20,48,-34v18,14,31,24,48,34","w":173},"\u00eb":{"d":"50,-76v-1,35,1,55,42,54v17,0,36,-4,55,-9r4,25v-17,6,-40,10,-62,10v-75,1,-70,-51,-69,-117v0,-36,17,-66,69,-66v68,0,67,45,65,103r-104,0xm89,-154v-34,0,-41,20,-39,53r75,0v1,-32,-2,-54,-36,-53xm45,-202r0,-30r28,0r0,30r-28,0xm108,-202r0,-30r28,0r0,30r-28,0","w":173},"\u00ec":{"d":"59,0r-30,0r0,-175r30,0r0,175xm63,-215r-12,18v-18,-10,-33,-19,-50,-31r13,-20v13,10,31,23,49,33","w":87},"\u00ed":{"d":"59,0r-30,0r0,-175r30,0r0,175xm41,-197r-12,-18v18,-10,36,-23,49,-33r13,20v-17,12,-32,21,-50,31","w":87},"\u00ee":{"d":"59,0r-30,0r0,-175r30,0r0,175xm92,-211r-11,17v-17,-9,-25,-14,-37,-24v-12,10,-20,15,-37,24r-11,-17v17,-10,30,-20,48,-34v18,14,31,24,48,34","w":87},"\u00ef":{"d":"59,0r-30,0r0,-175r30,0r0,175xm-1,-202r0,-30r28,0r0,30r-28,0xm61,-202r0,-30r28,0r0,30r-28,0","w":87},"\u00f0":{"d":"63,-195r26,-19v-11,-6,-23,-10,-37,-15r7,-23v18,5,36,12,52,22r24,-17r10,14r-19,13v39,25,37,94,37,161v0,36,-19,63,-70,63v-71,-1,-72,-42,-70,-103v-11,-64,62,-82,110,-55v-2,-21,-12,-38,-29,-50r-31,23xm93,-23v61,0,34,-56,40,-103v-26,-20,-83,-24,-79,22v3,41,-14,81,39,81","w":186},"\u00f1":{"d":"165,0r-30,0r0,-134v0,-12,-6,-16,-17,-16v-13,0,-40,8,-59,18r0,132r-30,0r0,-175r24,0r3,15v36,-19,109,-38,109,26r0,134xm149,-221v-11,33,-47,21,-71,10v-8,0,-14,6,-19,12r-13,-13v14,-31,50,-18,72,-8v7,0,12,-3,17,-11","w":191},"\u00f2":{"d":"162,-113v0,67,2,117,-71,117v-73,0,-71,-50,-71,-117v0,-37,20,-66,71,-66v51,0,71,29,71,66xm132,-61v0,-45,8,-92,-41,-92v-49,0,-41,47,-41,92v0,26,14,38,41,38v27,0,41,-12,41,-38xm108,-215r-12,18v-18,-10,-33,-19,-50,-31r13,-20v13,10,31,23,49,33","w":182},"\u00f3":{"d":"162,-113v0,67,2,117,-71,117v-73,0,-71,-50,-71,-117v0,-37,20,-66,71,-66v51,0,71,29,71,66xm132,-61v0,-45,8,-92,-41,-92v-49,0,-41,47,-41,92v0,26,14,38,41,38v27,0,41,-12,41,-38xm81,-197r-13,-18v18,-10,37,-23,50,-33r13,20v-17,12,-32,21,-50,31","w":182,"k":{"}":4,"v":2,"]":2,"\\":2,"\/":5,")":5,",":4,".":4}},"\u00f4":{"d":"162,-113v0,67,2,117,-71,117v-73,0,-71,-50,-71,-117v0,-37,20,-66,71,-66v51,0,71,29,71,66xm132,-61v0,-45,8,-92,-41,-92v-49,0,-41,47,-41,92v0,26,14,38,41,38v27,0,41,-12,41,-38xm139,-211r-11,17v-17,-9,-25,-14,-37,-24v-12,10,-20,15,-37,24r-11,-17v17,-10,30,-20,48,-34v18,14,31,24,48,34","w":182},"\u00f5":{"d":"162,-113v0,67,2,117,-71,117v-73,0,-71,-50,-71,-117v0,-37,20,-66,71,-66v51,0,71,29,71,66xm132,-61v0,-45,8,-92,-41,-92v-49,0,-41,47,-41,92v0,26,14,38,41,38v27,0,41,-12,41,-38xm145,-221v-11,33,-48,21,-72,10v-8,0,-14,6,-19,12r-13,-13v14,-32,51,-17,73,-8v7,0,11,-3,16,-11","w":182},"\u00f6":{"d":"162,-113v0,67,2,117,-71,117v-73,0,-71,-50,-71,-117v0,-37,20,-66,71,-66v51,0,71,29,71,66xm132,-61v0,-45,8,-92,-41,-92v-49,0,-41,47,-41,92v0,26,14,38,41,38v27,0,41,-12,41,-38xm46,-202r0,-30r28,0r0,30r-28,0xm108,-202r0,-30r28,0r0,30r-28,0","w":182},"\u00f7":{"d":"170,-100r0,25r-147,0r0,-25r147,0xm82,-11r0,-34r30,0r0,34r-30,0xm82,-130r0,-34r30,0r0,34r-30,0","w":193},"\u00f8":{"d":"20,10r16,-26v-22,-21,-11,-59,-16,-97v-7,-54,67,-82,114,-56r15,-24r13,8r-16,26v21,21,11,59,16,97v7,54,-67,82,-114,56r-15,24xm91,-23v56,0,42,-70,38,-109r-66,102v7,5,16,7,28,7xm91,-153v-56,0,-42,71,-38,110r65,-102v-6,-5,-15,-8,-27,-8","w":182,"k":{"}":4,"v":2,"]":2,"\\":2,"\/":5,")":5,",":4,".":4}},"\u00f9":{"d":"27,-175r30,0r0,134v0,12,6,16,17,16v13,0,40,-8,59,-18r0,-132r30,0r0,175r-24,0r-3,-15v-36,19,-109,38,-109,-26r0,-134xm118,-215r-12,18v-18,-10,-33,-19,-50,-31r13,-20v13,10,31,23,49,33","w":191},"\u00fa":{"d":"27,-175r30,0r0,134v0,12,6,16,17,16v13,0,40,-8,59,-18r0,-132r30,0r0,175r-24,0r-3,-15v-36,19,-109,38,-109,-26r0,-134xm85,-197r-13,-18v18,-10,37,-23,50,-33r13,20v-17,12,-32,21,-50,31","w":191},"\u00fb":{"d":"27,-175r30,0r0,134v0,12,6,16,17,16v13,0,40,-8,59,-18r0,-132r30,0r0,175r-24,0r-3,-15v-36,19,-109,38,-109,-26r0,-134xm144,-211r-11,17v-17,-9,-25,-14,-37,-24v-12,10,-20,15,-37,24r-11,-17v17,-10,30,-20,48,-34v18,14,31,24,48,34","w":191},"\u00fc":{"d":"27,-175r30,0r0,134v0,12,6,16,17,16v13,0,40,-8,59,-18r0,-132r30,0r0,175r-24,0r-3,-15v-36,19,-109,38,-109,-26r0,-134xm51,-202r0,-30r29,0r0,30r-29,0xm114,-202r0,-30r28,0r0,30r-28,0","w":191},"\u00fd":{"d":"48,71r24,-71r-12,0r-57,-175r30,0r48,151r48,-151r30,0r-83,246r-28,0xm71,-197r-13,-18v18,-10,37,-23,50,-33r13,20v-17,12,-32,21,-50,31","w":161},"\u00fe":{"d":"115,-179v63,0,47,67,51,125v4,56,-57,67,-107,52r0,73r-30,4r0,-322r30,-4r0,90v14,-11,34,-18,56,-18xm59,-131r0,103v35,5,81,16,77,-26v-3,-37,18,-99,-27,-98v-17,0,-37,9,-50,21","w":188},"\u00ff":{"d":"48,71r24,-71r-12,0r-57,-175r30,0r48,151r48,-151r30,0r-83,246r-28,0xm37,-202r0,-30r28,0r0,30r-28,0xm99,-202r0,-30r28,0r0,30r-28,0","w":161}}});Cufon.registerFont({"w":142,"face":{"font-family":"agis-script","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"3 5 5 0 4 3 5 0 11 4","ascent":"270","descent":"-90","x-height":"7","bbox":"-30 -333 282.029 136","underline-thickness":"18","underline-position":"-18","stemv":"31","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":98},"0":{"d":"19,-68v0,-24,-1,-65,22,-65v8,0,16,4,16,13v31,-43,75,-7,75,51v0,41,-19,74,-56,74v-37,0,-57,-33,-57,-73xm89,-108v-11,2,-9,21,-25,21v-9,0,-12,-6,-12,-13v-9,29,-1,77,24,79v29,2,34,-78,13,-87","w":147,"k":{"F":7,"T":25}},"1":{"d":"44,-81v-7,14,-31,40,-43,15v7,-19,28,-35,39,-52v-7,-24,34,-41,37,-14v0,7,-3,15,-7,23v3,33,8,67,15,99v2,10,-4,17,-16,17v-8,0,-13,-4,-14,-11v-4,-22,-9,-54,-11,-77","w":100,"k":{"T":7}},"2":{"d":"86,-28v28,3,69,-6,75,18v-12,29,-55,1,-95,7v-11,11,-44,19,-44,-3v0,-12,15,-18,29,-21v22,-17,38,-43,38,-67v0,-13,-5,-27,-17,-27v-22,-1,-15,46,-39,46v-12,0,-18,-8,-15,-18v6,-23,25,-53,55,-53v68,0,49,91,13,118","w":150,"k":{"T":25,"4":4,"X":-18,"7":7}},"3":{"d":"66,-121v-14,0,-14,17,-27,17v-12,0,-21,-10,-14,-21v20,-29,79,-28,81,14v0,15,-7,32,-16,45v27,8,46,34,46,58v-2,71,-87,72,-114,23v-5,-9,0,-21,13,-21v21,0,23,32,45,30v43,-5,23,-68,-6,-70v-12,12,-48,21,-48,-2v0,-12,17,-20,36,-22v9,-13,15,-26,15,-38v0,-8,-4,-13,-11,-13","w":139,"k":{"F":4,"T":14,"7":11}},"4":{"d":"104,49v-10,0,-15,-5,-16,-14v-2,-28,-3,-67,-3,-96v-6,14,-17,25,-31,25v-34,0,-44,-63,-44,-98v0,-12,7,-14,15,-14v8,0,16,2,16,14v0,25,5,71,17,71v13,0,20,-29,24,-50v-1,-18,1,-38,18,-38v21,1,19,26,13,48v0,45,2,92,5,138v1,10,-4,14,-14,14","k":{"T":11,"9":7}},"5":{"d":"75,49v-34,0,-50,-31,-50,-52v0,-12,5,-16,15,-16v26,-1,10,42,35,42v17,0,29,-30,29,-52v0,-39,-37,-48,-68,-48v-33,0,-6,-37,-1,-54v8,-26,77,-8,96,-23v8,-3,19,-2,21,10v-5,30,-59,23,-90,24r-9,21v35,3,81,17,81,67v0,29,-15,81,-59,81","w":156,"k":{"T":18,"V":-11}},"6":{"d":"84,9v-49,0,-62,-44,-62,-87v0,-46,15,-95,49,-132v14,-14,35,4,21,20v-28,31,-46,71,-41,121v6,-14,19,-32,43,-32v26,0,44,21,44,53v0,29,-17,57,-54,57xm83,-17v18,0,24,-14,24,-31v0,-15,-6,-26,-18,-26v-19,-1,-22,27,-31,38v4,11,14,19,25,19","w":150,"k":{"7":7}},"7":{"d":"74,-41v-15,-3,-42,1,-41,-17v1,-22,30,-9,47,-9v4,-15,11,-33,13,-50v-26,1,-50,3,-73,7v-11,2,-19,-2,-19,-14v0,-7,5,-11,13,-12v25,-4,56,-7,85,-8v2,-19,34,-20,33,3v0,8,-4,16,-9,20v-1,16,-9,40,-14,57v15,2,35,-1,35,17v0,19,-27,10,-41,9v-6,27,-11,58,-11,82v0,9,-6,14,-16,14v-10,0,-14,-5,-14,-13v0,-27,6,-59,12,-86","w":151,"k":{"_":8,".":8,",":8}},"8":{"d":"70,6v-60,0,-63,-82,-34,-118v-36,-28,-20,-90,27,-90v61,0,65,80,36,117v29,30,23,91,-29,91xm78,-105v13,-22,15,-71,-15,-71v-9,0,-17,5,-17,19v0,17,16,34,32,52xm80,-62v-20,3,-14,-20,-24,-28v-12,21,-13,65,14,70v21,-2,20,-28,10,-42","w":136,"k":{"T":-11,"9":7,"V":-4}},"9":{"d":"73,68v-22,0,-57,-8,-60,-28v8,-33,37,2,58,2v56,0,45,-85,30,-115v-8,27,-24,52,-47,52v-21,0,-30,-21,-30,-35v0,-36,22,-65,42,-88v5,-11,34,-8,29,6v17,-2,25,13,21,27v36,66,49,179,-43,179xm60,-46v16,-2,33,-52,22,-74v-15,15,-30,36,-30,58v0,9,3,16,8,16","w":153,"k":{"T":18,"1":-7}},"\u00b9":{"d":"-3,-155v6,-19,22,-29,22,-53v0,-11,2,-20,17,-20v19,0,14,18,14,33v0,24,3,49,12,73v4,10,-3,18,-15,18v-20,0,-20,-33,-21,-57v-1,17,-26,27,-29,6","w":92},"\u00b2":{"d":"39,-203v-10,1,-4,28,-23,28v-10,0,-14,-6,-14,-14v0,-10,13,-40,39,-40v40,1,36,57,19,83v19,0,44,3,45,19v-5,27,-34,2,-57,7v-9,13,-45,20,-45,-2v0,-14,17,-21,32,-23v9,-18,16,-46,4,-58","w":132},"\u00b3":{"d":"40,-203v-8,0,-10,20,-23,20v-9,0,-14,-7,-14,-13v0,-13,18,-33,38,-33v26,0,35,30,22,48v14,3,27,15,27,35v0,44,-88,57,-88,13v0,-7,6,-15,15,-15v14,1,12,18,27,18v20,0,23,-29,6,-32v-5,13,-38,13,-37,-3v0,-12,13,-15,26,-16v3,-7,9,-18,1,-22","w":118},"\u00bd":{"d":"181,-91v-10,1,-4,27,-23,27v-10,0,-14,-5,-14,-13v0,-10,13,-40,39,-40v39,1,36,56,19,82v19,0,44,3,45,19v-5,27,-34,2,-57,7v-9,13,-45,20,-45,-2v0,-14,16,-20,31,-22v8,-18,16,-46,5,-58xm-3,-155v6,-19,22,-29,22,-53v0,-11,2,-20,17,-20v19,0,14,18,14,33v0,24,3,49,12,73v4,10,-3,18,-15,18v-20,0,-20,-33,-21,-57v-1,17,-26,27,-29,6xm86,18v-5,18,-36,10,-30,-8r78,-241v2,-7,7,-11,15,-11v12,0,18,8,15,18","w":249},"\u00bc":{"d":"224,22v-23,-1,-15,-35,-20,-53v-36,33,-53,-28,-50,-54v0,-9,7,-13,15,-13v28,-7,7,83,33,41v-1,-23,2,-48,18,-46v20,-2,18,34,10,48v2,21,5,38,10,59v2,9,-1,18,-16,18xm-3,-155v6,-19,22,-29,22,-53v0,-11,2,-20,17,-20v19,0,14,18,14,33v0,24,3,49,12,73v4,10,-3,18,-15,18v-20,0,-20,-33,-21,-57v-1,17,-26,27,-29,6xm87,17v-5,18,-36,11,-30,-8r78,-242v5,-18,36,-10,30,8","w":262},"\u00be":{"d":"239,22v-22,-1,-15,-35,-20,-53v-36,33,-53,-28,-50,-54v0,-9,7,-13,15,-13v28,-7,7,83,33,41v-1,-23,2,-48,18,-46v19,-2,19,34,9,48v2,21,6,38,11,59v2,9,-1,18,-16,18xm40,-203v-8,0,-10,20,-23,20v-9,0,-14,-7,-14,-13v0,-13,18,-33,38,-33v26,0,35,30,22,48v14,3,27,15,27,35v0,44,-88,57,-88,13v0,-7,6,-15,15,-15v14,1,12,18,27,18v20,0,23,-29,6,-32v-5,13,-38,13,-37,-3v0,-12,13,-15,26,-16v3,-7,9,-18,1,-22xm103,17v-5,18,-36,11,-30,-8r77,-242v5,-18,37,-11,31,8","w":277},"A":{"d":"178,15v-9,0,-13,-4,-15,-11v-7,-22,-15,-45,-24,-67v-23,8,-51,10,-74,11v-8,19,4,51,-23,52v-26,0,-11,-33,-9,-51v-9,-1,-14,-6,-14,-14v0,-10,8,-15,20,-14r27,-125v2,-17,22,-16,29,-4v22,38,44,74,62,113v9,1,15,12,10,20v10,23,19,48,26,72v3,10,-1,18,-15,18xm69,-79v19,-1,40,-3,58,-8v-12,-26,-28,-57,-41,-82v-5,30,-11,59,-17,90","w":196,"k":{"F":7,"T":11,"J":-4,"7":11,"9":4}},"\u00c4":{"d":"178,15v-9,0,-13,-4,-15,-11v-7,-22,-15,-45,-24,-67v-23,8,-51,10,-74,11v-8,19,4,51,-23,52v-26,0,-11,-33,-9,-51v-9,-1,-14,-6,-14,-14v0,-10,8,-15,20,-14r27,-125v2,-17,22,-16,29,-4v22,38,44,74,62,113v9,1,15,12,10,20v10,23,19,48,26,72v3,10,-1,18,-15,18xm69,-79v19,-1,40,-3,58,-8v-12,-26,-28,-57,-41,-82v-5,30,-11,59,-17,90xm64,-258v0,28,-36,22,-37,1v0,-11,7,-20,20,-20v9,0,17,6,17,19xm136,-259v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20","w":196,"k":{"F":7,"T":11,"J":-4,"7":11,"9":4}},"\u00c5":{"d":"178,15v-9,0,-13,-4,-15,-11v-7,-22,-15,-45,-24,-67v-23,8,-51,10,-74,11v-8,19,4,51,-23,52v-26,0,-11,-33,-9,-51v-9,-1,-14,-6,-14,-14v0,-10,8,-15,20,-14r27,-125v2,-17,22,-16,29,-4v22,38,44,74,62,113v9,1,15,12,10,20v10,23,19,48,26,72v3,10,-1,18,-15,18xm69,-79v19,-1,40,-3,58,-8v-12,-26,-28,-57,-41,-82v-5,30,-11,59,-17,90xm79,-231v-24,0,-40,-17,-40,-38v0,-21,16,-38,40,-38v24,0,41,17,41,38v0,21,-17,38,-41,38xm80,-252v10,0,16,-8,16,-17v0,-9,-6,-16,-16,-16v-10,0,-17,7,-17,16v0,9,7,17,17,17","w":196,"k":{"F":7,"T":11,"J":-4,"7":11,"9":4}},"\u00c0":{"d":"178,15v-9,0,-13,-4,-15,-11v-7,-22,-15,-45,-24,-67v-23,8,-51,10,-74,11v-8,19,4,51,-23,52v-26,0,-11,-33,-9,-51v-9,-1,-14,-6,-14,-14v0,-10,8,-15,20,-14r27,-125v2,-17,22,-16,29,-4v22,38,44,74,62,113v9,1,15,12,10,20v10,23,19,48,26,72v3,10,-1,18,-15,18xm69,-79v19,-1,40,-3,58,-8v-12,-26,-28,-57,-41,-82v-5,30,-11,59,-17,90xm87,-238v-1,10,-17,13,-25,5v-18,-19,-45,-49,-62,-73v-7,-10,-3,-21,14,-21v5,0,10,2,13,7v16,23,39,54,57,73v3,3,3,6,3,9","w":196,"k":{"F":7,"T":11,"J":-4,"7":11,"9":4}},"\u00c3":{"d":"178,15v-9,0,-13,-4,-15,-11v-7,-22,-15,-45,-24,-67v-23,8,-51,10,-74,11v-8,19,4,51,-23,52v-26,0,-11,-33,-9,-51v-9,-1,-14,-6,-14,-14v0,-10,8,-15,20,-14r27,-125v2,-17,22,-16,29,-4v22,38,44,74,62,113v9,1,15,12,10,20v10,23,19,48,26,72v3,10,-1,18,-15,18xm69,-79v19,-1,40,-3,58,-8v-12,-26,-28,-57,-41,-82v-5,30,-11,59,-17,90xm37,-274v24,-35,53,28,78,21v21,0,18,-18,11,-30v0,-14,21,-17,29,-5v19,28,-3,62,-37,62v-26,0,-43,-12,-60,-27v-9,10,-12,28,-29,29v-35,-8,-3,-35,8,-50","w":196,"k":{"F":7,"T":11,"J":-4,"7":11,"9":4}},"\u00c2":{"d":"178,15v-9,0,-13,-4,-15,-11v-7,-22,-15,-45,-24,-67v-23,8,-51,10,-74,11v-8,19,4,51,-23,52v-26,0,-11,-33,-9,-51v-9,-1,-14,-6,-14,-14v0,-10,8,-15,20,-14r27,-125v2,-17,22,-16,29,-4v22,38,44,74,62,113v9,1,15,12,10,20v10,23,19,48,26,72v3,10,-1,18,-15,18xm69,-79v19,-1,40,-3,58,-8v-12,-26,-28,-57,-41,-82v-5,30,-11,59,-17,90xm81,-268v-14,20,-16,49,-41,49v-12,0,-20,-12,-11,-22v14,-17,28,-36,38,-57v1,-10,20,-12,26,-3v14,23,31,52,50,75v7,9,0,20,-13,20v-26,-9,-32,-41,-49,-62","w":196,"k":{"F":7,"T":11,"J":-4,"7":11,"9":4}},"\u00c1":{"d":"178,15v-9,0,-13,-4,-15,-11v-7,-22,-15,-45,-24,-67v-23,8,-51,10,-74,11v-8,19,4,51,-23,52v-26,0,-11,-33,-9,-51v-9,-1,-14,-6,-14,-14v0,-10,8,-15,20,-14r27,-125v2,-17,22,-16,29,-4v22,38,44,74,62,113v9,1,15,12,10,20v10,23,19,48,26,72v3,10,-1,18,-15,18xm69,-79v19,-1,40,-3,58,-8v-12,-26,-28,-57,-41,-82v-5,30,-11,59,-17,90xm63,-221v-10,0,-18,-9,-13,-18v12,-21,27,-48,35,-70v6,-16,41,-11,31,8v-11,21,-29,51,-40,71v-3,6,-7,9,-13,9","w":196,"k":{"F":7,"T":11,"J":-4,"7":11,"9":4}},"\u00c6":{"d":"282,-78v-11,34,-56,79,-95,79v-40,0,-55,-34,-65,-92r-55,-1v-6,26,-11,52,-15,78v-1,9,-5,14,-17,14v-10,0,-15,-5,-14,-15v1,-26,13,-56,12,-76v-11,0,-17,-5,-17,-14v-1,-13,13,-15,26,-15v5,-22,11,-43,14,-66v3,-24,33,-17,55,-23v1,-11,26,-12,30,-2r101,2v10,1,16,5,16,14v0,10,-6,14,-16,14r-99,-3v1,18,3,42,6,64v28,-1,51,-5,75,-12v12,-3,20,1,20,14v0,9,-6,12,-23,16v-19,5,-45,9,-68,10v8,105,71,60,98,8v7,-13,32,-8,31,6xm73,-120r45,1v-2,-17,-5,-44,-6,-62v-8,1,-18,2,-28,5v-3,19,-7,37,-11,56","w":298,"k":{"J":18,"_":20,".":20,",":20}},"B":{"d":"143,5v-23,0,-63,-6,-67,-28v6,-30,44,0,68,0v24,0,50,-12,50,-41v-1,-35,-44,-43,-78,-35v-12,13,-24,17,-33,17v-13,0,-18,-4,-19,-15v-1,-10,7,-22,32,-25v13,-11,31,-31,31,-50v0,-10,-5,-16,-15,-16v-29,0,-50,54,-59,82v7,23,16,55,16,79v0,17,-3,30,-18,30v-26,0,-29,-58,-26,-98r-20,-68v-3,-11,4,-20,15,-20v20,1,15,27,22,41v11,-35,37,-72,75,-72v60,0,40,75,15,89v47,-5,94,12,94,60v0,46,-40,70,-83,70","w":236,"k":{"F":7,"T":22,"Y":7,"\u00dd":7,"7":4,"_":11,".":11,",":11}},"C":{"d":"82,-216v22,1,49,11,54,32v0,13,-18,19,-27,9v-41,-39,-68,17,-68,69v0,42,14,82,50,82v36,0,48,-38,53,-67v1,-8,7,-14,16,-14v10,0,16,6,15,16v-5,45,-31,93,-84,93v-51,0,-81,-41,-81,-104v0,-46,16,-116,72,-116","w":194,"k":{"J":25,"y":7,"\u00fd":7,"\u00ff":7,"Y":4,"\u00dd":4,"7":7,"s":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"_":18,".":18,",":18,"z":7}},"\u00c7":{"d":"82,-216v22,1,49,11,54,32v0,13,-18,19,-27,9v-41,-39,-68,17,-68,69v0,42,14,82,50,82v36,0,48,-38,53,-67v1,-8,7,-14,16,-14v10,0,16,6,15,16v-5,41,-26,84,-70,91r-13,29v26,-9,57,2,57,33v0,20,-20,55,-43,55v-39,-12,14,-35,14,-55v0,-33,-68,10,-56,-27r16,-34v-44,-5,-70,-45,-70,-103v0,-46,16,-116,72,-116","w":194,"k":{"J":25,"y":7,"\u00fd":7,"\u00ff":7,"Y":4,"\u00dd":4,"7":7,"s":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"_":18,".":18,",":18,"z":7}},"D":{"d":"112,3v-21,0,-40,-11,-48,-28v-22,28,-40,-1,-40,-30v0,-12,1,-23,4,-34r-29,-117v-3,-10,4,-18,16,-18v8,0,13,3,15,12r17,76v15,-43,40,-76,83,-76v45,0,67,41,67,91v0,55,-27,125,-85,124xm67,-40v19,-18,28,16,46,16v37,0,53,-56,53,-97v0,-33,-11,-64,-40,-64v-39,0,-59,53,-66,97v3,17,8,31,7,48","w":221,"k":{"F":-7,"T":-4,"J":22,"d":7,"q":7,"A":11,"\u00c4":11,"\u00c5":11,"\u00c0":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c6":11,"g":11,"a":7,"\u00e1":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e3":7,"\u00e5":7,"c":7,"\u00e7":7,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":7,"\u00f3":7,"\u00f2":7,"\u00f4":7,"\u00f6":7,"\u00f5":7,"\u00f8":7,"_":22,".":22,",":22,"3":7,"9":14,"5":14,"2":4,"\u00ab":14}},"E":{"d":"24,-176v-13,4,-38,16,-39,-7v-2,-14,23,-17,37,-20v-1,-10,4,-15,15,-15v9,0,15,3,15,11v38,-2,73,0,111,1v10,0,16,4,16,14v0,10,-7,13,-16,13r-108,-1v1,17,2,39,5,59v27,-1,51,-3,75,-10v12,-4,21,0,21,13v-7,23,-62,21,-92,24v8,44,16,67,34,67v21,0,53,-33,64,-57v6,-13,32,-8,31,6v-11,34,-56,79,-95,79v-40,0,-55,-36,-65,-94v-14,0,-29,1,-29,-13v0,-13,12,-15,25,-15v-2,-15,-4,-38,-5,-55","w":209,"k":{"J":18,"_":20,".":20,",":20}},"\u00c9":{"d":"105,-224v-10,0,-17,-9,-12,-18v12,-21,26,-47,34,-69v6,-16,41,-11,31,8v-11,21,-29,50,-40,70v-3,6,-7,9,-13,9xm24,-176v-13,4,-38,16,-39,-7v-2,-14,23,-17,37,-20v-1,-10,4,-15,15,-15v9,0,15,3,15,11v38,-2,73,0,111,1v10,0,16,4,16,14v0,10,-7,13,-16,13r-108,-1v1,17,2,39,5,59v27,-1,51,-3,75,-10v12,-4,21,0,21,13v-7,23,-62,21,-92,24v8,44,16,67,34,67v21,0,53,-33,64,-57v6,-13,32,-8,31,6v-11,34,-56,79,-95,79v-40,0,-55,-36,-65,-94v-14,0,-29,1,-29,-13v0,-13,12,-15,25,-15v-2,-15,-4,-38,-5,-55","w":209,"k":{"J":18,"_":20,".":20,",":20}},"\u00ca":{"d":"94,-280v-14,19,-17,44,-41,49v-12,0,-21,-12,-12,-22v14,-17,28,-36,38,-57v1,-9,20,-13,26,-3v14,24,31,52,50,75v7,9,0,20,-13,20v-26,-9,-31,-41,-48,-62xm24,-176v-13,4,-38,16,-39,-7v-2,-14,23,-17,37,-20v-1,-10,4,-15,15,-15v9,0,15,3,15,11v38,-2,73,0,111,1v10,0,16,4,16,14v0,10,-7,13,-16,13r-108,-1v1,17,2,39,5,59v27,-1,51,-3,75,-10v12,-4,21,0,21,13v-7,23,-62,21,-92,24v8,44,16,67,34,67v21,0,53,-33,64,-57v6,-13,32,-8,31,6v-11,34,-56,79,-95,79v-40,0,-55,-36,-65,-94v-14,0,-29,1,-29,-13v0,-13,12,-15,25,-15v-2,-15,-4,-38,-5,-55","w":209,"k":{"J":18,"_":20,".":20,",":20}},"\u00cb":{"d":"80,-260v0,28,-37,24,-38,2v0,-11,7,-20,20,-20v9,0,18,5,18,18xm151,-260v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20xm24,-176v-13,4,-38,16,-39,-7v-2,-14,23,-17,37,-20v-1,-10,4,-15,15,-15v9,0,15,3,15,11v38,-2,73,0,111,1v10,0,16,4,16,14v0,10,-7,13,-16,13r-108,-1v1,17,2,39,5,59v27,-1,51,-3,75,-10v12,-4,21,0,21,13v-7,23,-62,21,-92,24v8,44,16,67,34,67v21,0,53,-33,64,-57v6,-13,32,-8,31,6v-11,34,-56,79,-95,79v-40,0,-55,-36,-65,-94v-14,0,-29,1,-29,-13v0,-13,12,-15,25,-15v-2,-15,-4,-38,-5,-55","w":209,"k":{"J":18,"_":20,".":20,",":20}},"\u00c8":{"d":"24,-176v-13,4,-38,16,-39,-7v-2,-14,23,-17,37,-20v-1,-10,4,-15,15,-15v9,0,15,3,15,11v38,-2,73,0,111,1v10,0,16,4,16,14v0,10,-7,13,-16,13r-108,-1v1,17,2,39,5,59v27,-1,51,-3,75,-10v12,-4,21,0,21,13v-7,23,-62,21,-92,24v8,44,16,67,34,67v21,0,53,-33,64,-57v6,-13,32,-8,31,6v-11,34,-56,79,-95,79v-40,0,-55,-36,-65,-94v-14,0,-29,1,-29,-13v0,-13,12,-15,25,-15v-2,-15,-4,-38,-5,-55xm120,-234v-1,10,-18,13,-26,5v-18,-19,-45,-49,-62,-73v-7,-10,-3,-21,14,-21v5,0,10,2,13,7v17,28,45,55,61,82","w":209,"k":{"J":18,"_":20,".":20,",":20}},"F":{"d":"60,-90v-12,2,-24,3,-24,-13v0,-10,7,-15,19,-14v-4,-17,-8,-36,-11,-54v-17,4,-33,8,-48,12v-11,3,-19,-2,-19,-15v0,-8,5,-11,13,-13v54,-13,109,-30,167,-30v11,0,15,5,15,14v0,7,-3,14,-15,14v-28,0,-56,5,-83,11v5,5,11,50,13,58v22,-2,43,-5,65,-8v10,-1,18,2,19,13v-4,27,-53,16,-79,23v5,27,8,51,10,78v1,9,-4,15,-16,15v-11,0,-15,-5,-16,-14v-2,-24,-5,-50,-10,-77","w":198,"k":{"\/":25,"0":4,"T":-11,"J":44,"d":14,"f":7,"q":4,"y":7,"\u00fd":7,"\u00ff":7,"A":22,"\u00c4":22,"\u00c5":22,"\u00c0":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c6":22,"g":11,"s":11,"O":7,"\u00d6":7,"\u00d5":7,"\u00d3":7,"\u00d4":7,"\u00d2":7,"\u00d8":7,"Q":4,"a":14,"\u00e1":14,"\u00e0":14,"\u00e2":14,"\u00e4":14,"\u00e3":14,"\u00e5":14,"\u00e6":14,"c":11,"\u00e7":11,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":11,"\u00f3":11,"\u00f2":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f8":11,"_":30,".":30,",":30,")":4,"}":4,"]":4,"3":11,"9":29,"5":14,"2":4,"\u00ab":29,"S":11,"6":4}},"G":{"d":"129,-163v-18,0,-20,-26,-42,-26v-30,0,-41,51,-41,86v0,32,10,79,41,79v25,0,41,-33,49,-57v-19,-1,-52,9,-52,-12v0,-28,39,-7,71,-15v19,-5,26,16,14,25v0,26,3,47,16,67v6,10,-1,21,-14,21v-21,0,-24,-30,-28,-46v-12,24,-33,44,-59,44v-55,0,-69,-67,-69,-104v0,-49,18,-115,73,-115v26,1,51,14,57,39v0,8,-8,14,-16,14","w":196,"k":{"_":7,".":7,",":7,")":7,"}":7,"]":7}},"H":{"d":"23,-95v-21,2,-16,-27,-3,-28v-2,-25,-4,-49,-5,-73v-1,-12,6,-15,15,-15v30,0,11,35,21,81v25,-5,51,-7,79,-8v-3,-29,-4,-45,-5,-66v-1,-10,6,-15,16,-15v9,0,15,4,15,14v3,66,11,130,27,187v3,10,-3,19,-16,19v-9,0,-12,-4,-15,-11v-6,-17,-14,-66,-18,-100v-27,1,-53,3,-80,8v3,26,8,58,14,86v2,10,-4,17,-17,17v-6,0,-10,-2,-13,-11v-4,-13,-12,-57,-15,-85","w":201},"I":{"d":"78,-9v0,9,-24,10,-27,3v-16,0,-40,9,-40,-11v-3,-15,20,-17,35,-18v-6,-50,-12,-99,-19,-150v-16,3,-43,14,-43,-10v0,-7,4,-12,12,-13v27,-5,55,-10,83,-10v10,0,16,4,16,14v3,14,-21,16,-37,16v7,50,13,102,19,151v17,-1,41,-8,41,12v1,18,-23,15,-40,16","w":119,"k":{"4":7,"7":7,"t":7}},"\u00cd":{"d":"78,-9v0,9,-24,10,-27,3v-16,0,-40,9,-40,-11v-3,-15,20,-17,35,-18v-6,-50,-12,-99,-19,-150v-16,3,-43,14,-43,-10v0,-7,4,-12,12,-13v27,-5,55,-10,83,-10v10,0,16,4,16,14v3,14,-21,16,-37,16v7,50,13,102,19,151v17,-1,41,-8,41,12v1,18,-23,15,-40,16xm21,-225v-10,0,-17,-9,-12,-18v12,-21,25,-48,35,-69v3,-6,7,-11,15,-11v14,0,20,8,15,18v-10,22,-29,51,-40,71v-3,6,-7,9,-13,9","w":119,"k":{"4":7,"7":7,"t":7}},"\u00ce":{"d":"78,-9v0,9,-24,10,-27,3v-16,0,-40,9,-40,-11v-3,-15,20,-17,35,-18v-6,-50,-12,-99,-19,-150v-16,3,-43,14,-43,-10v0,-7,4,-12,12,-13v27,-5,55,-10,83,-10v10,0,16,4,16,14v3,14,-21,16,-37,16v7,50,13,102,19,151v17,-1,41,-8,41,12v1,18,-23,15,-40,16xm28,-285v-14,19,-17,44,-41,49v-12,0,-21,-12,-12,-22v14,-17,28,-36,38,-57v1,-9,21,-12,27,-3v14,23,30,52,49,75v7,9,0,20,-13,20v-26,-9,-31,-41,-48,-62","w":119,"k":{"4":7,"7":7,"t":7}},"\u00cf":{"d":"78,-9v0,9,-24,10,-27,3v-16,0,-40,9,-40,-11v-3,-15,20,-17,35,-18v-6,-50,-12,-99,-19,-150v-16,3,-43,14,-43,-10v0,-7,4,-12,12,-13v27,-5,55,-10,83,-10v10,0,16,4,16,14v3,14,-21,16,-37,16v7,50,13,102,19,151v17,-1,41,-8,41,12v1,18,-23,15,-40,16xm15,-261v1,27,-36,23,-37,2v0,-11,7,-20,20,-20v9,0,17,5,17,18xm87,-261v1,28,-39,27,-40,2v0,-12,7,-23,21,-23v9,0,19,7,19,21","w":119,"k":{"4":7,"7":7,"t":7}},"\u00cc":{"d":"78,-9v0,9,-24,10,-27,3v-16,0,-40,9,-40,-11v-3,-15,20,-17,35,-18v-6,-50,-12,-99,-19,-150v-16,3,-43,14,-43,-10v0,-7,4,-12,12,-13v27,-5,55,-10,83,-10v10,0,16,4,16,14v3,14,-21,16,-37,16v7,50,13,102,19,151v17,-1,41,-8,41,12v1,18,-23,15,-40,16xm73,-239v-1,10,-17,15,-25,6v-18,-19,-46,-49,-63,-73v-7,-10,-2,-21,15,-21v5,0,10,2,13,7v17,28,44,54,60,81","w":119,"k":{"4":7,"7":7,"t":7}},"J":{"d":"81,122v-84,0,-100,-150,-35,-189v13,0,21,13,11,24v-32,36,-22,134,23,136v28,0,44,-43,44,-113v0,-58,-16,-114,-34,-165v-15,4,-42,16,-42,-8v0,-18,25,-13,38,-19v5,-11,21,-4,30,-10v10,-3,20,2,20,14v1,11,-7,13,-16,15v18,54,36,117,36,177v0,63,-16,138,-75,138","w":173},"K":{"d":"24,-12v-2,-25,2,-52,-5,-72v4,-38,-11,-80,-17,-118v-2,-11,6,-18,16,-18v6,0,12,1,14,11v6,31,13,63,17,95v32,-31,63,-57,99,-91v13,-13,37,8,22,21r-68,59v31,34,67,69,100,104v10,10,-1,25,-13,25v-4,0,-7,-2,-10,-5r-99,-105r-27,27v2,18,3,37,3,56v7,28,-30,34,-32,11","w":206,"k":{"4":11,"7":14,"t":7,"O":11,"\u00d6":11,"\u00d5":11,"\u00d3":11,"\u00d4":11,"\u00d2":11,"\u00d8":11,"_":-7,".":-7,",":-7,"-":18,"\u00ad":18,"9":7,"\u00ab":7,"S":4,"C":7,"\u00c7":7}},"L":{"d":"87,2v-81,3,-62,-137,-79,-207v-1,-8,4,-15,15,-15v10,0,16,4,17,13r16,125v6,87,51,53,107,43v9,-2,20,1,20,13v0,6,-3,11,-12,14v-22,7,-62,14,-84,14","w":185,"k":{"*":29,"\\":29,"F":22,"T":33,"4":7,"f":4,"Y":14,"\u00dd":14,"7":18,"t":7,"-":7,"\u00ad":7,"V":14,"W":14}},"M":{"d":"94,-76r-48,-72v8,40,10,88,15,131v1,11,-4,18,-14,18v-14,0,-16,-7,-17,-17r-17,-148v-2,-18,2,-32,20,-32v13,0,21,6,34,26r51,77v10,-24,30,-68,40,-96v13,-34,42,-34,51,-3v16,56,26,115,36,178v2,10,-4,18,-17,18v-8,0,-13,-4,-14,-12v-8,-50,-18,-112,-32,-164v-13,27,-26,59,-36,91v-9,27,-36,29,-52,5","w":262},"N":{"d":"210,-13v5,25,-26,28,-38,11v-40,-39,-85,-91,-124,-134v6,37,16,75,24,112v3,11,-4,18,-17,18v-8,0,-12,-4,-14,-11v-12,-50,-30,-134,-30,-157v0,-28,35,-13,43,2v36,39,75,85,118,130v-12,-56,-24,-118,-24,-164v0,-10,5,-14,15,-14v11,0,17,4,17,14v1,56,15,120,30,193","w":227},"\u00d1":{"d":"210,-13v5,25,-26,28,-38,11v-40,-39,-85,-91,-124,-134v6,37,16,75,24,112v3,11,-4,18,-17,18v-8,0,-12,-4,-14,-11v-12,-50,-30,-134,-30,-157v0,-28,35,-13,43,2v36,39,75,85,118,130v-12,-56,-24,-118,-24,-164v0,-10,5,-14,15,-14v11,0,17,4,17,14v1,56,15,120,30,193xm24,-267v25,-36,54,28,79,21v22,0,17,-18,10,-30v0,-14,22,-17,30,-5v18,28,-3,61,-37,61v-26,0,-43,-11,-60,-26v-9,10,-12,28,-29,29v-35,-5,-3,-37,7,-50","w":227},"O":{"d":"12,-114v0,-59,21,-100,69,-105v119,-12,114,224,16,224v-56,0,-85,-53,-85,-119xm95,-23v26,0,44,-32,44,-76v-1,-55,-21,-101,-68,-86v-46,26,-35,162,24,162","w":190,"k":{"T":-4,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"_":14,".":14,",":14}},"\u00d6":{"d":"56,-260v0,27,-36,25,-37,2v0,-11,7,-20,20,-20v9,0,17,5,17,18xm128,-260v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20xm12,-114v0,-59,21,-100,69,-105v119,-12,114,224,16,224v-56,0,-85,-53,-85,-119xm95,-23v26,0,44,-32,44,-76v-1,-55,-21,-101,-68,-86v-46,26,-35,162,24,162","w":190,"k":{"T":-4,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"_":14,".":14,",":14}},"\u00d5":{"d":"12,-114v0,-59,21,-100,69,-105v119,-12,114,224,16,224v-56,0,-85,-53,-85,-119xm95,-23v26,0,44,-32,44,-76v-1,-55,-21,-101,-68,-86v-46,26,-35,162,24,162xm28,-276v25,-34,54,28,79,21v21,0,16,-18,10,-30v0,-14,22,-16,30,-4v17,29,-4,61,-37,61v-26,0,-44,-12,-61,-27v-9,10,-13,28,-29,30v-34,-6,-1,-38,8,-51","w":190,"k":{"T":-4,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"_":14,".":14,",":14}},"\u00d3":{"d":"55,-225v-10,0,-18,-9,-13,-18v12,-21,25,-48,35,-69v4,-17,41,-12,31,7v-11,21,-29,51,-40,71v-3,6,-7,9,-13,9xm12,-114v0,-59,21,-100,69,-105v119,-12,114,224,16,224v-56,0,-85,-53,-85,-119xm95,-23v26,0,44,-32,44,-76v-1,-55,-21,-101,-68,-86v-46,26,-35,162,24,162","w":190,"k":{"T":-4,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"_":14,".":14,",":14}},"\u00d4":{"d":"76,-283v-14,19,-16,49,-41,49v-12,0,-20,-12,-11,-22v14,-17,28,-35,38,-56v1,-10,20,-12,26,-3v14,23,31,51,50,74v7,9,0,20,-13,20v-27,-8,-32,-41,-49,-62xm12,-114v0,-59,21,-100,69,-105v119,-12,114,224,16,224v-56,0,-85,-53,-85,-119xm95,-23v26,0,44,-32,44,-76v-1,-55,-21,-101,-68,-86v-46,26,-35,162,24,162","w":190,"k":{"T":-4,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"_":14,".":14,",":14}},"\u00d2":{"d":"12,-114v0,-59,21,-100,69,-105v119,-12,114,224,16,224v-56,0,-85,-53,-85,-119xm95,-23v26,0,44,-32,44,-76v-1,-55,-21,-101,-68,-86v-46,26,-35,162,24,162xm106,-244v-1,10,-17,13,-25,5v-18,-19,-46,-49,-63,-73v-7,-10,-2,-21,15,-21v5,0,10,2,13,7v16,23,39,54,57,73v3,3,3,6,3,9","w":190,"k":{"T":-4,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"_":14,".":14,",":14}},"\u00d8":{"d":"41,-20v-56,-59,-29,-237,75,-192v6,-13,6,-38,24,-36v32,3,7,32,1,54v57,60,29,238,-74,193v-8,15,-7,34,-26,36v-29,-4,-5,-38,0,-55xm54,-54r51,-130v-65,-24,-75,80,-51,130xm77,-28v38,19,62,-19,62,-71v0,-22,-4,-43,-12,-59","w":190,"k":{"T":-4,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"_":14,".":14,",":14}},"P":{"d":"24,-216v26,0,15,40,22,64v10,-36,31,-65,61,-65v36,0,53,30,53,62v0,53,-39,95,-97,96v3,19,13,66,-13,63v-31,-5,-24,-61,-22,-95v-3,-13,-18,-94,-20,-107v-2,-10,3,-18,16,-18xm103,-188v-30,1,-52,62,-43,102v40,0,69,-28,69,-67v0,-19,-9,-35,-26,-35","w":179,"k":{"*":-18,"\/":14,"\u00ef":-5,"\u00ee":-11,"F":-22,"0":11,"T":-14,"J":48,"d":14,"q":11,"y":7,"\u00fd":7,"\u00ff":7,"A":22,"\u00c4":22,"\u00c5":22,"\u00c0":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c6":22,"g":14,"s":7,"a":19,"\u00e1":19,"\u00e0":19,"\u00e2":19,"\u00e4":19,"\u00e3":19,"\u00e5":19,"\u00e6":11,"c":14,"\u00e7":14,"e":14,"\u00e9":14,"\u00e8":14,"\u00ea":14,"\u00eb":14,"o":14,"\u00f3":14,"\u00f2":14,"\u00f4":14,"\u00f6":14,"\u00f5":14,"\u00f8":14,"_":27,".":27,",":27,"1":14,"9":25,"5":14,"2":7,"\u00ab":25,"6":4}},"Q":{"d":"158,-26v9,10,27,15,31,32v-7,32,-44,-3,-53,-12v-12,8,-26,12,-45,12v-56,0,-82,-57,-82,-107v0,-30,11,-89,43,-64v13,-29,34,-55,65,-55v80,0,80,135,41,194xm91,-87v18,6,30,31,45,41v12,-19,15,-48,15,-71v0,-30,-8,-76,-35,-76v-25,0,-39,42,-44,62v0,13,-25,14,-29,4v-13,56,17,128,74,100v-13,-16,-32,-27,-40,-48v0,-7,6,-12,14,-12","w":207,"k":{"F":-7,"A":4,"\u00c4":4,"\u00c5":4,"\u00c0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c6":4,"_":12,".":12,",":12}},"R":{"d":"19,-204v24,0,17,36,26,59v9,-42,30,-76,70,-76v28,0,52,17,52,53v0,34,-22,63,-47,77v19,33,41,69,79,69v8,0,12,5,12,13v0,10,-6,17,-23,17v-43,0,-72,-44,-94,-86v-11,2,-22,1,-30,-4v5,24,9,47,9,62v0,21,-8,26,-19,26v-33,-2,-18,-56,-23,-90v-5,-34,-19,-68,-28,-101v-3,-12,5,-19,16,-19xm112,-194v-30,0,-46,42,-52,85v8,-9,32,-9,44,-2v19,-10,33,-33,33,-55v0,-17,-9,-28,-25,-28","w":214,"k":{"\\":7,"\/":-18,"\u00d0":7,"0":4,"I":-11,"\u00cd":-11,"\u00ce":-11,"\u00cf":-11,"\u00cc":-11,"J":-14,"4":7,"b":7,"X":-14,"y":-11,"\u00fd":-11,"\u00ff":-11,"7":16,"A":4,"\u00c4":4,"\u00c5":4,"\u00c0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c6":4,"a":4,"\u00e1":4,"\u00e0":4,"\u00e2":4,"\u00e4":4,"\u00e3":4,"\u00e5":4,"c":4,"\u00e7":4,"o":11,"\u00f3":11,"\u00f2":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f8":11,"_":-17,".":-17,",":-17,"-":14,"\u00ad":14,"C":11,"\u00c7":11}},"S":{"d":"120,-205v0,26,-68,11,-68,37v0,14,29,22,58,32v41,14,67,31,67,74v0,36,-28,66,-82,66v-47,0,-82,-31,-83,-79v0,-9,3,-15,15,-15v12,0,17,5,17,15v0,28,17,52,51,52v35,0,52,-17,52,-38v0,-67,-127,-42,-127,-105v0,-35,53,-50,84,-53v10,-1,16,4,16,14","w":189,"k":{"_":7,".":7,",":7}},"T":{"d":"205,-208v0,24,-67,24,-98,24v16,51,18,116,29,172v1,9,-1,18,-16,18v-8,0,-13,-4,-14,-11r-27,-169v0,-3,0,-7,1,-9v-30,2,-60,6,-88,11v-10,2,-20,0,-20,-14v0,-8,5,-12,13,-13v66,-15,134,-7,200,-22v11,-3,20,0,20,13","w":213,"k":{":":11,"\\":-19,"\/":30,"}":-14,"\u00f9":14,"r":9,"p":11,"n":11,"m":14,"j":-11,"\u00ef":-25,"\u00ec":-7,"\u00ed":22,"\u00e8":22,"\u00e0":22,"D":-4,"0":18,"T":-25,"I":-11,"\u00cd":-11,"\u00ce":-11,"\u00cf":-11,"\u00cc":-11,"J":32,"d":22,"4":18,"q":22,"y":32,"\u00fd":32,"\u00ff":32,"Y":-11,"\u00dd":-11,"7":22,"A":25,"\u00c4":25,"\u00c5":25,"\u00c0":25,"\u00c3":25,"\u00c2":25,"\u00c1":25,"\u00c6":25,"g":15,"s":12,"O":7,"\u00d6":7,"\u00d5":7,"\u00d3":7,"\u00d4":7,"\u00d2":7,"\u00d8":7,"Q":14,"a":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e3":22,"\u00e5":22,"c":18,"\u00e7":18,"e":22,"\u00e9":22,"\u00ea":22,"\u00eb":22,"o":22,"\u00f3":22,"\u00f2":22,"\u00f4":22,"\u00f6":22,"\u00f5":22,"\u00f8":22,"u":14,"\u00fa":14,"\u00fb":14,"\u00fc":14,"w":14,"_":15,".":15,",":15,"z":9,"1":14,"3":22,"9":43,"5":32,"2":14,"\u00ab":32,"6":14,"C":14,"\u00c7":14,"x":14,"G":11,"8":11,"\u00bb":29,"v":14}},"U":{"d":"114,6v-85,0,-104,-120,-104,-189v0,-20,32,-20,32,0v0,44,11,163,74,163v29,0,40,-27,40,-57v0,-45,-12,-93,-31,-136v-5,-10,3,-18,14,-18v9,0,13,3,16,9v21,44,32,96,32,141v0,45,-16,87,-73,87","w":210,"k":{"_":14,".":14,",":14}},"\u00dc":{"d":"48,-258v0,28,-36,22,-37,1v0,-11,7,-20,20,-20v9,0,17,6,17,19xm120,-259v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20xm114,6v-85,0,-104,-120,-104,-189v0,-20,32,-20,32,0v0,44,11,163,74,163v29,0,40,-27,40,-57v0,-45,-12,-93,-31,-136v-5,-10,3,-18,14,-18v9,0,13,3,16,9v21,44,32,96,32,141v0,45,-16,87,-73,87","w":210,"k":{"_":14,".":14,",":14}},"\u00da":{"d":"59,-225v-10,0,-17,-9,-12,-18v12,-21,25,-48,35,-69v3,-6,8,-11,16,-11v14,0,19,8,14,18v-10,22,-29,51,-40,71v-3,6,-7,9,-13,9xm114,6v-85,0,-104,-120,-104,-189v0,-20,32,-20,32,0v0,44,11,163,74,163v29,0,40,-27,40,-57v0,-45,-12,-93,-31,-136v-5,-10,3,-18,14,-18v9,0,13,3,16,9v21,44,32,96,32,141v0,45,-16,87,-73,87","w":210,"k":{"_":14,".":14,",":14}},"\u00db":{"d":"61,-280v-14,19,-17,44,-41,49v-12,0,-20,-12,-11,-22v14,-17,27,-36,37,-57v1,-9,21,-12,27,-3v14,23,30,52,49,75v7,9,1,20,-12,20v-26,-9,-32,-41,-49,-62xm114,6v-85,0,-104,-120,-104,-189v0,-20,32,-20,32,0v0,44,11,163,74,163v29,0,40,-27,40,-57v0,-45,-12,-93,-31,-136v-5,-10,3,-18,14,-18v9,0,13,3,16,9v21,44,32,96,32,141v0,45,-16,87,-73,87","w":210,"k":{"_":14,".":14,",":14}},"\u00d9":{"d":"114,6v-85,0,-104,-120,-104,-189v0,-20,32,-20,32,0v0,44,11,163,74,163v29,0,40,-27,40,-57v0,-45,-12,-93,-31,-136v-5,-10,3,-18,14,-18v9,0,13,3,16,9v21,44,32,96,32,141v0,45,-16,87,-73,87xm96,-234v-1,10,-17,13,-25,5v-18,-19,-46,-49,-63,-73v-7,-10,-2,-21,15,-21v5,0,10,2,13,7v16,23,39,54,57,73v3,3,3,6,3,9","w":210,"k":{"_":14,".":14,",":14}},"V":{"d":"107,-6v-6,15,-23,20,-31,5r-90,-173v-5,-11,2,-22,15,-22v6,0,10,3,13,8r74,148v17,-54,24,-109,24,-168v0,-9,4,-17,15,-17v18,0,18,16,18,45v0,60,-17,120,-38,174","w":172,"k":{"\/":18,"F":-7,"T":-15,"J":22,"d":7,"q":7,"A":11,"\u00c4":11,"\u00c5":11,"\u00c0":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c6":11,"g":11,"s":4,"a":11,"\u00e1":11,"\u00e0":11,"\u00e2":11,"\u00e4":11,"\u00e3":11,"\u00e5":11,"\u00e6":11,"c":11,"\u00e7":11,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":7,"\u00f3":7,"\u00f2":7,"\u00f4":7,"\u00f6":7,"\u00f5":7,"\u00f8":7,"_":26,".":26,",":26,"9":22,"5":7,"\u00ab":22,"\u00bb":7}},"W":{"d":"236,-149v0,35,5,151,-35,153v-17,0,-25,-13,-34,-27v-16,-24,-30,-57,-45,-83r-20,93v-5,24,-31,25,-42,3v-25,-52,-45,-106,-65,-161v-4,-10,5,-18,15,-18v7,0,12,3,15,10v16,46,33,96,54,141r14,-73v4,-21,10,-37,25,-37v14,0,22,17,30,31v10,19,30,61,48,82v7,-29,8,-71,8,-107v6,-27,-19,-75,12,-79v26,4,20,42,20,72","w":268,"k":{"n":4,"m":11,"0":7,"J":22,"d":11,"f":7,"q":4,"y":7,"\u00fd":7,"\u00ff":7,"7":7,"A":7,"\u00c4":7,"\u00c5":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c6":7,"g":7,"s":7,"a":11,"\u00e1":11,"\u00e0":11,"\u00e2":11,"\u00e4":11,"\u00e3":11,"\u00e5":11,"\u00e6":7,"c":7,"\u00e7":7,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":7,"\u00f3":7,"\u00f2":7,"\u00f4":7,"\u00f6":7,"\u00f5":7,"\u00f8":7,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"_":14,".":14,",":14,"3":7,"9":11,"5":11,"\u00ab":14,"8":4,"\u00bb":7}},"X":{"d":"180,5v-35,-26,-67,-58,-95,-91r-50,81v-9,14,-40,4,-28,-14r57,-90v-21,-25,-41,-50,-60,-76v-8,-10,1,-23,13,-23v6,0,11,3,14,7v18,21,33,45,51,67r47,-80v9,-17,39,-4,28,14r-54,89v30,35,60,67,98,95v4,3,6,6,6,11v0,13,-17,18,-27,10","w":189,"k":{"\/":-32,"K":-4,"0":-4,"I":-22,"\u00cd":-22,"\u00ce":-22,"\u00cf":-22,"\u00cc":-22,"J":-29,"d":-7,"q":-4,"X":-29,"A":-16,"\u00c4":-16,"\u00c5":-16,"\u00c0":-16,"\u00c3":-16,"\u00c2":-16,"\u00c1":-16,"\u00c6":-16,"g":-4,"s":-4,"a":-7,"\u00e1":-7,"\u00e0":-7,"\u00e2":-7,"\u00e4":-7,"\u00e3":-7,"\u00e5":-7,"\u00e6":-7,"c":-4,"\u00e7":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"o":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"\u00f8":-4,"_":-29,".":-29,",":-29,"z":-7,"3":-7,"5":-4,"2":-11,"x":-14}},"Y":{"d":"66,-90v-34,-28,-67,-65,-81,-107v-2,-15,23,-20,30,-6v13,28,35,61,61,83r25,-91v2,-7,6,-12,15,-12v13,0,19,7,15,19v-20,67,-36,132,-60,207v-5,18,-37,9,-31,-8v10,-28,18,-57,26,-85","w":152,"k":{"\/":22,"r":11,"p":18,"\u00f1":1,"n":12,"m":15,"j":-7,"\u00ef":4,"0":14,"T":-11,"J":28,"d":24,"4":11,"f":17,"q":17,"y":14,"\u00fd":14,"\u00ff":14,"7":11,"t":7,"i":4,"\u00ed":4,"\u00ec":4,"\u00ee":4,"A":15,"\u00c4":15,"\u00c5":15,"\u00c0":15,"\u00c3":15,"\u00c2":15,"\u00c1":15,"\u00c6":15,"g":25,"s":18,"a":20,"\u00e1":20,"\u00e0":20,"\u00e2":20,"\u00e4":20,"\u00e3":20,"\u00e5":20,"\u00e6":18,"c":18,"\u00e7":18,"e":20,"\u00e9":20,"\u00e8":20,"\u00ea":20,"\u00eb":20,"o":15,"\u00f3":15,"\u00f2":15,"\u00f4":15,"\u00f6":15,"\u00f5":15,"\u00f8":15,"\u00df":7,"u":14,"\u00fa":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"w":11,"_":26,".":26,",":26,"z":11,"1":11,"3":22,"9":22,"5":22,"2":11,"\u00ab":36,"6":11,"C":5,"\u00c7":5,"x":11,"G":11,"8":4,"\u00bb":14,"v":11}},"\u00dd":{"d":"66,-90v-34,-28,-67,-65,-81,-107v-2,-15,23,-20,30,-6v13,28,35,61,61,83r25,-91v2,-7,6,-12,15,-12v13,0,19,7,15,19v-20,67,-36,132,-60,207v-5,18,-37,9,-31,-8v10,-28,18,-57,26,-85xm67,-222v-8,16,-34,5,-25,-10v12,-21,27,-47,35,-69v7,-18,40,-10,30,8v-11,21,-30,51,-40,71","w":152,"k":{"\/":22,"r":11,"p":18,"\u00f1":1,"n":12,"m":15,"j":-7,"\u00ef":4,"0":14,"T":-11,"J":28,"d":24,"4":11,"f":17,"q":17,"y":14,"\u00fd":14,"\u00ff":14,"7":11,"t":7,"i":4,"\u00ed":4,"\u00ec":4,"\u00ee":4,"A":15,"\u00c4":15,"\u00c5":15,"\u00c0":15,"\u00c3":15,"\u00c2":15,"\u00c1":15,"\u00c6":15,"g":25,"s":18,"a":20,"\u00e1":20,"\u00e0":20,"\u00e2":20,"\u00e4":20,"\u00e3":20,"\u00e5":20,"\u00e6":18,"c":18,"\u00e7":18,"e":20,"\u00e9":20,"\u00e8":20,"\u00ea":20,"\u00eb":20,"o":15,"\u00f3":15,"\u00f2":15,"\u00f4":15,"\u00f6":15,"\u00f5":15,"\u00f8":15,"\u00df":7,"u":14,"\u00fa":14,"\u00f9":14,"\u00fb":14,"\u00fc":14,"w":11,"_":26,".":26,",":26,"z":11,"1":11,"3":22,"9":22,"5":22,"2":11,"\u00ab":36,"6":11,"C":5,"\u00c7":5,"x":11,"G":11,"8":4,"\u00bb":14,"v":11}},"Z":{"d":"157,-196v-20,65,-67,102,-93,161v0,4,2,6,6,7v31,6,65,4,97,-2v11,-2,21,3,21,15v0,8,-4,13,-13,14v-37,6,-79,7,-118,1v-51,-8,-28,-41,-10,-69r76,-123v-37,7,-67,14,-102,22v-10,3,-21,-3,-21,-14v0,-6,4,-11,13,-13v40,-9,79,-18,118,-24v5,-15,43,-16,41,7v0,9,-7,15,-15,18","w":199,"k":{"n":4,"0":7,"4":11,"7":11,"O":4,"\u00d6":4,"\u00d5":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u00d8":4,"Q":4,"\u00e6":7,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00e8":4,"\u00ea":4,"\u00eb":4,"o":4,"\u00f3":4,"\u00f2":4,"\u00f4":4,"\u00f6":4,"\u00f5":4,"\u00f8":4,"-":25,"\u00ad":25,"1":4,"9":7,"5":4,"6":4}},"\u00d0":{"d":"124,3v-21,0,-40,-11,-48,-28v-22,28,-44,-1,-40,-30v0,-7,0,-14,1,-21v-14,0,-30,2,-30,-13v0,-13,16,-12,30,-12r-26,-105v-3,-10,4,-18,16,-18v8,0,13,3,15,12r17,76v15,-43,40,-76,83,-76v45,0,67,41,67,91v0,55,-27,125,-85,124xm138,-95v0,22,-35,16,-63,19v2,13,3,24,3,36v20,-18,29,16,47,16v37,0,52,-56,52,-97v0,-33,-10,-64,-39,-64v-35,0,-55,44,-63,84v18,-1,34,-3,45,-6v12,-3,18,0,18,12","w":232,"k":{"F":-7,"T":-4,"J":22,"d":7,"q":7,"A":11,"\u00c4":11,"\u00c5":11,"\u00c0":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c6":11,"g":11,"a":7,"\u00e1":7,"\u00e0":7,"\u00e2":7,"\u00e4":7,"\u00e3":7,"\u00e5":7,"c":7,"\u00e7":7,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":7,"\u00f3":7,"\u00f2":7,"\u00f4":7,"\u00f6":7,"\u00f5":7,"\u00f8":7,"_":22,".":22,",":22,"3":7,"9":14,"5":14,"2":4,"\u00ab":14}},"\u00de":{"d":"26,-215v21,1,16,29,22,44v29,-41,110,-41,109,31v0,52,-38,89,-91,97v0,18,10,49,-13,47v-25,3,-12,-31,-21,-45v-8,0,-13,-4,-13,-13v0,-8,5,-13,13,-13v-3,-24,-4,-50,-13,-68v4,-22,-6,-42,-10,-62v-2,-11,4,-18,17,-18xm63,-70v37,-6,62,-33,62,-68v0,-52,-54,-35,-71,-5v4,26,7,51,9,73","w":180,"k":{",":22,".":22,"_":22,"z":4,"\u00ff":4,"\u00fd":4,"y":4,"s":4,"q":4,"\u00f8":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"o":7,"g":11,"f":11,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"e":7,"d":7,"\u00e7":11,"c":11,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"a":11,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c0":7,"\u00c5":7,"\u00c4":7,"A":7,"9":14,"6":7,"5":7,"3":7,"2":7,";":4,":":4,"\u00f0":7,"\u00c6":11}},"\u00a0":{"w":98},"a":{"d":"62,-21v27,-7,20,-62,21,-96v-3,-3,-5,-5,-9,-5v-25,1,-39,89,-12,101xm133,9v-19,0,-31,-16,-36,-42v-7,22,-20,41,-42,41v-63,0,-37,-159,17,-155v6,0,13,2,18,6v10,-12,29,-6,27,15v-3,30,-10,124,30,101v18,8,6,34,-14,34","w":148,"k":{"@":-7,"b":4,"y":4,"\u00fd":4,"\u00ff":4,"t":4,"_":-18,".":-18,",":-18}},"\u00e1":{"d":"62,-21v27,-7,20,-62,21,-96v-3,-3,-5,-5,-9,-5v-25,1,-39,89,-12,101xm133,9v-19,0,-31,-16,-36,-42v-7,22,-20,41,-42,41v-63,0,-37,-159,17,-155v6,0,13,2,18,6v10,-12,29,-6,27,15v-3,30,-10,124,30,101v18,8,6,34,-14,34xm90,-161v-8,16,-35,5,-26,-10v12,-21,27,-47,35,-69v6,-16,41,-11,31,8v-11,21,-30,50,-40,71","w":148,"k":{"@":-7,"b":4,"y":4,"\u00fd":4,"\u00ff":4,"t":4,"_":-18,".":-18,",":-18}},"\u00e0":{"d":"62,-21v27,-7,20,-62,21,-96v-3,-3,-5,-5,-9,-5v-25,1,-39,89,-12,101xm133,9v-19,0,-31,-16,-36,-42v-7,22,-20,41,-42,41v-63,0,-37,-159,17,-155v6,0,13,2,18,6v10,-12,29,-6,27,15v-3,30,-10,124,30,101v18,8,6,34,-14,34xm90,-166v-1,10,-17,15,-25,6v-18,-19,-46,-49,-63,-73v-7,-10,-2,-21,15,-21v5,0,10,2,13,7v17,28,44,54,60,81","w":148,"k":{"@":-7,"b":4,"y":4,"\u00fd":4,"\u00ff":4,"t":4,"_":-18,".":-18,",":-18}},"\u00e2":{"d":"62,-21v27,-7,20,-62,21,-96v-3,-3,-5,-5,-9,-5v-25,1,-39,89,-12,101xm133,9v-19,0,-31,-16,-36,-42v-7,22,-20,41,-42,41v-63,0,-37,-159,17,-155v6,0,13,2,18,6v10,-12,29,-6,27,15v-3,30,-10,124,30,101v18,8,6,34,-14,34xm86,-209v-14,19,-16,49,-41,49v-12,0,-21,-12,-12,-22v14,-17,28,-36,38,-57v1,-9,21,-12,27,-3v14,23,30,52,49,75v7,9,0,20,-13,20v-27,-8,-32,-41,-48,-62","w":148,"k":{"@":-7,"b":4,"y":4,"\u00fd":4,"\u00ff":4,"t":4,"_":-18,".":-18,",":-18}},"\u00e4":{"d":"62,-21v27,-7,20,-62,21,-96v-3,-3,-5,-5,-9,-5v-25,1,-39,89,-12,101xm133,9v-19,0,-31,-16,-36,-42v-7,22,-20,41,-42,41v-63,0,-37,-159,17,-155v6,0,13,2,18,6v10,-12,29,-6,27,15v-3,30,-10,124,30,101v18,8,6,34,-14,34xm68,-197v0,26,-36,24,-37,2v0,-11,6,-21,19,-21v9,0,18,6,18,19xm139,-198v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20","w":148,"k":{"@":-7,"b":4,"y":4,"\u00fd":4,"\u00ff":4,"t":4,"_":-18,".":-18,",":-18}},"\u00e3":{"d":"62,-21v27,-7,20,-62,21,-96v-3,-3,-5,-5,-9,-5v-25,1,-39,89,-12,101xm133,9v-19,0,-31,-16,-36,-42v-7,22,-20,41,-42,41v-63,0,-37,-159,17,-155v6,0,13,2,18,6v10,-12,29,-6,27,15v-3,30,-10,124,30,101v18,8,6,34,-14,34xm33,-210v25,-34,54,28,79,21v22,0,17,-18,10,-30v0,-14,22,-17,30,-5v17,29,-3,62,-37,62v-26,0,-44,-12,-61,-27v-9,10,-13,28,-29,30v-34,-6,-1,-38,8,-51","w":148,"k":{"*":-17,"@":-7,"b":4,"y":4,"\u00fd":4,"\u00ff":4,"t":4,"_":-18,".":-18,",":-18}},"\u00e5":{"d":"62,-21v27,-7,20,-62,21,-96v-3,-3,-5,-5,-9,-5v-25,1,-39,89,-12,101xm133,9v-19,0,-31,-16,-36,-42v-7,22,-20,41,-42,41v-63,0,-37,-159,17,-155v6,0,13,2,18,6v10,-12,29,-6,27,15v-3,30,-10,124,30,101v18,8,6,34,-14,34xm81,-170v-24,0,-40,-17,-40,-38v0,-21,16,-38,40,-38v24,0,41,17,41,38v0,21,-17,38,-41,38xm81,-191v10,0,17,-8,17,-17v0,-9,-7,-16,-17,-16v-10,0,-16,7,-16,16v0,9,6,17,16,17","w":148,"k":{"@":-7,"b":4,"y":4,"\u00fd":4,"\u00ff":4,"t":4,"_":-18,".":-18,",":-18}},"\u00e6":{"d":"69,-119v-19,0,-20,26,-36,26v-8,0,-14,-7,-14,-17v-1,-37,81,-50,90,-6v10,-37,87,-38,86,8v0,28,-28,47,-68,51v3,45,61,45,68,6v2,-7,4,-10,9,-11v11,-2,22,8,17,26v-5,17,-24,41,-60,41v-26,0,-43,-13,-52,-32v-7,36,-86,47,-84,-4v0,-30,29,-46,68,-51v-3,-20,-7,-37,-24,-37xm69,-19v16,0,26,-17,26,-44v-25,4,-41,14,-41,29v0,10,6,15,15,15xm125,-77v24,-2,41,-12,41,-28v0,-10,-8,-15,-16,-15v-14,0,-25,14,-25,43","w":227,"k":{"T":40,"f":4,"b":7,"t":4,"z":7}},"b":{"d":"92,8v-24,-1,-33,-13,-32,-32v-7,4,-21,2,-21,-7v-14,-72,-31,-143,-48,-215v-3,-12,4,-18,16,-18v10,0,13,4,15,11v12,53,24,112,36,171v8,-33,22,-62,53,-62v31,0,46,25,46,59v0,48,-31,93,-65,93xm107,-120v-22,0,-33,49,-37,76v4,-4,7,-5,11,-5v15,1,-3,28,14,29v26,0,48,-92,12,-100","w":172,"k":{"_":11,".":11,",":11,")":4,"}":4,"]":4}},"c":{"d":"100,-101v-11,0,-17,-20,-27,-17v-14,0,-24,26,-24,54v0,30,11,44,24,44v16,0,27,-22,34,-41v2,-5,4,-12,14,-12v15,0,18,17,13,28v-9,23,-28,52,-62,52v-33,0,-54,-29,-54,-70v0,-45,25,-82,58,-82v21,0,40,15,40,28v0,7,-6,16,-16,16","w":143,"k":{"_":4,".":4,",":4}},"\u00e7":{"d":"73,-26v30,10,22,-47,48,-47v15,0,18,17,13,28v-9,22,-27,51,-58,52r-10,21v28,-10,57,5,57,32v0,23,-20,56,-43,56v-40,-12,14,-33,14,-55v0,-30,-67,9,-56,-26r15,-32v-60,-21,-35,-148,23,-148v21,0,40,15,40,28v0,7,-6,16,-16,16v-11,0,-17,-20,-27,-17v-14,0,-24,25,-24,54v1,26,8,48,24,38","w":143,"k":{"_":4,".":4,",":4}},"d":{"d":"102,-251v13,46,20,101,19,147v9,44,11,91,46,76v18,9,6,33,-15,33v-27,0,-39,-29,-45,-62v-5,40,-26,61,-49,61v-25,0,-39,-24,-39,-59v1,-49,25,-102,68,-84v-9,-40,-17,-83,-17,-110v0,-8,3,-16,15,-16v11,0,15,6,17,14xm64,-23v21,0,35,-60,29,-87v-4,-3,-9,-7,-15,-7v-28,-2,-41,84,-14,94","w":164,"k":{"@":-7,"q":-4,"_":-18,".":-18,",":-18,"-":7,"\u00ad":7}},"e":{"d":"85,5v-37,1,-55,-28,-64,-59v-8,0,-12,-4,-12,-12v0,-8,4,-10,11,-10v1,-35,18,-68,57,-68v25,0,42,13,42,36v0,28,-28,47,-68,51v3,45,61,45,68,6v2,-7,5,-10,10,-11v11,-2,21,8,16,26v-5,18,-24,41,-60,41xm49,-77v24,-2,41,-12,41,-28v0,-10,-7,-15,-15,-15v-14,0,-26,14,-26,43","w":151,"k":{"T":40,"f":4,"b":7,"t":4,"z":7}},"\u00e9":{"d":"96,-161v-8,16,-34,5,-25,-10v12,-21,27,-47,35,-69v7,-18,40,-10,30,8v-11,21,-30,51,-40,71xm85,5v-37,1,-55,-28,-64,-59v-8,0,-12,-4,-12,-12v0,-8,4,-10,11,-10v1,-35,18,-68,57,-68v25,0,42,13,42,36v0,28,-28,47,-68,51v3,45,61,45,68,6v2,-7,5,-10,10,-11v11,-2,21,8,16,26v-5,18,-24,41,-60,41xm49,-77v24,-2,41,-12,41,-28v0,-10,-7,-15,-15,-15v-14,0,-26,14,-26,43","w":151,"k":{"T":40,"f":4,"b":7,"t":4,"z":7}},"\u00e8":{"d":"85,5v-37,1,-55,-28,-64,-59v-8,0,-12,-4,-12,-12v0,-8,4,-10,11,-10v1,-35,18,-68,57,-68v25,0,42,13,42,36v0,28,-28,47,-68,51v3,45,61,45,68,6v2,-7,5,-10,10,-11v11,-2,21,8,16,26v-5,18,-24,41,-60,41xm49,-77v24,-2,41,-12,41,-28v0,-10,-7,-15,-15,-15v-14,0,-26,14,-26,43xm91,-165v-1,10,-17,15,-25,6v-18,-19,-45,-49,-62,-73v-7,-10,-3,-21,14,-21v5,0,10,2,13,7v16,23,39,53,57,72v3,3,3,6,3,9","w":151,"k":{"T":40,"f":4,"b":7,"t":4,"z":7}},"\u00ea":{"d":"75,-208v-14,19,-17,44,-41,49v-12,0,-20,-12,-11,-22v14,-17,27,-36,37,-57v1,-9,21,-12,27,-3v14,23,30,51,49,74v7,9,1,20,-12,20v-27,-8,-33,-40,-49,-61xm85,5v-37,1,-55,-28,-64,-59v-8,0,-12,-4,-12,-12v0,-8,4,-10,11,-10v1,-35,18,-68,57,-68v25,0,42,13,42,36v0,28,-28,47,-68,51v3,45,61,45,68,6v2,-7,5,-10,10,-11v11,-2,21,8,16,26v-5,18,-24,41,-60,41xm49,-77v24,-2,41,-12,41,-28v0,-10,-7,-15,-15,-15v-14,0,-26,14,-26,43","w":151,"k":{"T":40,"f":4,"b":7,"t":4,"z":7}},"\u00eb":{"d":"57,-197v1,27,-36,23,-37,2v0,-11,7,-21,20,-21v9,0,17,6,17,19xm129,-198v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20xm85,5v-37,1,-55,-28,-64,-59v-8,0,-12,-4,-12,-12v0,-8,4,-10,11,-10v1,-35,18,-68,57,-68v25,0,42,13,42,36v0,28,-28,47,-68,51v3,45,61,45,68,6v2,-7,5,-10,10,-11v11,-2,21,8,16,26v-5,18,-24,41,-60,41xm49,-77v24,-2,41,-12,41,-28v0,-10,-7,-15,-15,-15v-14,0,-26,14,-26,43","w":151,"k":{"T":40,"f":4,"b":7,"t":4,"z":7}},"f":{"d":"75,-261v62,0,55,123,-3,123v-11,0,-18,-11,-6,-21v21,-9,31,-67,7,-77v-40,26,-15,145,-8,195v11,-11,39,-11,39,7v0,17,-27,7,-33,21v7,37,17,77,27,126v2,9,-3,18,-15,18v-9,0,-12,-4,-15,-10v-14,-31,-42,-90,-28,-135v-7,-49,-18,-89,-19,-148v0,-41,7,-99,54,-99","w":108,"k":{"\"":-19,"'":-19,"*":-22,"?":-14,"\u00f0":-18,"\u00f1":-24,"\u00ec":-26,"\u00b3":-9,"\u00b2":-9,"y":4,"\u00fd":4,"\u00ff":4,"\u00e6":7,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,")":-23,"}":-23,"]":-23}},"g":{"d":"45,15v35,0,-6,40,0,63v0,18,6,31,23,31v33,0,39,-50,39,-81v0,-33,-7,-64,-13,-90v-2,53,-77,74,-76,8v0,-32,18,-91,58,-91v15,0,23,9,28,23v16,49,34,100,34,150v0,50,-17,108,-70,108v-36,0,-54,-24,-54,-59v0,-15,4,-62,31,-62xm56,-40v19,1,29,-53,21,-76v-20,-6,-30,34,-31,57v0,8,3,19,10,19"},"h":{"d":"161,-5v2,10,-5,16,-17,16v-8,0,-13,-4,-14,-11v-5,-20,-23,-117,-45,-117v-16,0,-19,89,-19,107v0,9,-6,13,-16,13v-10,0,-14,-4,-15,-13v-11,-80,-27,-161,-48,-238v0,-9,6,-15,17,-15v9,0,13,4,15,11v13,51,24,120,33,173v3,-36,14,-65,38,-65v31,0,44,42,52,67v7,22,13,43,19,72","w":164},"i":{"d":"97,-19v0,15,-12,27,-27,27v-34,0,-54,-58,-54,-132v0,-8,5,-13,16,-13v10,0,15,4,16,14v3,26,11,101,23,101v5,-3,2,-15,11,-15v8,0,15,7,15,18xm24,-178v-16,0,-18,-22,-28,-37v0,-9,8,-14,15,-14v20,1,47,49,13,51","w":89,"k":{"t":4,"_":-11,".":-11,",":-11}},"\u00ed":{"d":"32,-161v-8,16,-34,5,-25,-10v12,-21,27,-47,35,-69v7,-18,40,-10,30,8v-11,21,-30,51,-40,71xm97,-19v0,15,-12,27,-27,27v-34,0,-54,-58,-54,-132v0,-8,5,-13,16,-13v10,0,15,4,16,14v3,26,11,101,23,101v5,-3,2,-15,11,-15v8,0,15,7,15,18","w":89,"k":{"\u00ec":-7,"t":4,"_":-11,".":-11,",":-11}},"\u00ec":{"d":"97,-19v0,15,-12,27,-27,27v-34,0,-54,-58,-54,-132v0,-8,5,-13,16,-13v10,0,15,4,16,14v3,26,11,101,23,101v5,-3,2,-15,11,-15v8,0,15,7,15,18xm71,-163v-1,10,-17,13,-25,5v-18,-19,-46,-49,-63,-73v-7,-10,-2,-21,15,-21v5,0,10,2,13,7v17,28,44,55,60,82","w":89,"k":{"\u00ee":-14,"t":4,"_":-11,".":-11,",":-11}},"\u00ee":{"d":"28,-206v-14,19,-17,44,-41,49v-12,0,-21,-12,-12,-22v14,-17,28,-36,38,-57v1,-9,21,-12,27,-3v14,23,30,52,49,75v7,9,0,20,-13,20v-27,-8,-32,-41,-48,-62xm97,-19v0,15,-12,27,-27,27v-34,0,-54,-58,-54,-132v0,-8,5,-13,16,-13v10,0,15,4,16,14v3,26,11,101,23,101v5,-3,2,-15,11,-15v8,0,15,7,15,18","w":89,"k":{"\u00ef":-18,"\u00ee":-32,"t":4,"_":-11,".":-11,",":-11}},"\u00ef":{"d":"8,-197v0,27,-37,23,-38,2v0,-11,7,-21,20,-21v9,0,18,6,18,19xm79,-198v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20xm97,-19v0,15,-12,27,-27,27v-34,0,-54,-58,-54,-132v0,-8,5,-13,16,-13v10,0,15,4,16,14v3,26,11,101,23,101v5,-3,2,-15,11,-15v8,0,15,7,15,18","w":89,"k":{"\u00ef":-29,"\u00ee":-11,"t":4,"_":-11,".":-11,",":-11}},"j":{"d":"2,-185v-18,0,-16,-14,-19,-26v0,-7,6,-12,16,-12v22,1,29,38,3,38xm13,100v36,-54,27,-174,-5,-232v-1,-15,26,-16,32,-4v33,70,42,203,-4,258v-8,10,-21,16,-30,8v-9,-8,-2,-18,7,-30","w":79},"k":{"d":"130,-129v-11,21,-30,25,-30,63v0,28,7,53,16,53v9,0,7,-28,24,-28v9,0,16,10,11,25v-3,10,-13,30,-34,30v-25,0,-38,-29,-39,-56v-7,15,-3,41,-23,43v-8,0,-13,-5,-14,-13r-53,-233v-1,-15,28,-18,31,-3v18,80,30,128,43,195v13,-29,13,-86,50,-89v12,0,18,7,18,13","w":149,"k":{"_":-22,".":-22,",":-22}},"l":{"d":"81,6v-67,0,-75,-175,-77,-243v-6,-27,31,-29,31,-8v0,71,15,223,48,223v9,-3,29,-8,28,8v0,14,-16,20,-30,20","w":98,"k":{"*":12,"@":-7,"j":7,"b":7,"y":4,"\u00fd":4,"\u00ff":4,"_":-14,".":-14,",":-14}},"m":{"d":"211,12v-10,0,-14,-4,-16,-11v-6,-25,-24,-104,-40,-104v-15,0,-12,64,-12,85v0,18,-2,24,-16,24v-14,0,-15,-14,-15,-38v0,-23,-16,-79,-26,-79v-12,0,-15,64,-18,96v-1,17,-28,17,-31,2v-9,-43,-17,-77,-22,-119v-1,-10,5,-15,16,-15v11,0,14,5,15,13v2,20,4,40,7,66v3,-42,14,-71,36,-71v21,0,31,26,38,52v3,-23,11,-45,32,-45v39,0,53,76,66,126v2,9,-2,18,-14,18","w":232},"n":{"d":"137,8v-43,-1,-32,-115,-58,-115v-13,0,-13,55,-13,96v0,10,-6,14,-15,14v-9,0,-16,-4,-16,-14v1,-43,-17,-77,-23,-119v0,-6,6,-12,16,-12v24,6,13,19,23,58v2,-24,9,-52,32,-52v39,0,44,83,69,132v0,6,-5,12,-15,12","w":152,"k":{"@":-7,"_":-18,".":-18,",":-18}},"\u00f1":{"d":"137,8v-43,-1,-32,-115,-58,-115v-13,0,-13,55,-13,96v0,10,-6,14,-15,14v-9,0,-16,-4,-16,-14v1,-43,-17,-77,-23,-119v0,-6,6,-12,16,-12v24,6,13,19,23,58v2,-24,9,-52,32,-52v39,0,44,83,69,132v0,6,-5,12,-15,12xm10,-208v25,-35,54,29,79,22v21,0,16,-19,10,-31v0,-14,22,-16,30,-4v17,29,-3,61,-37,61v-26,0,-44,-11,-61,-26v-9,10,-12,28,-29,29v-34,-6,-1,-38,8,-51","w":152,"k":{"@":-7,"_":-18,".":-18,",":-18}},"o":{"d":"76,7v-40,0,-59,-38,-59,-80v0,-37,17,-71,50,-71v40,0,60,39,60,81v0,37,-17,70,-51,70xm75,-20v33,-2,24,-102,-7,-97v-31,3,-24,103,7,97","k":{"f":7,"_":11,".":11,",":11,")":4,"}":4,"]":4}},"\u00f3":{"d":"82,-161v-8,16,-34,5,-25,-10v12,-21,27,-47,35,-69v7,-18,40,-10,30,8v-11,21,-30,51,-40,71xm76,7v-40,0,-59,-38,-59,-80v0,-37,17,-71,50,-71v40,0,60,39,60,81v0,37,-17,70,-51,70xm75,-20v33,-2,24,-102,-7,-97v-31,3,-24,103,7,97","k":{"f":7,"_":11,".":11,",":11,")":4,"}":4,"]":4}},"\u00f2":{"d":"76,7v-40,0,-59,-38,-59,-80v0,-37,17,-71,50,-71v40,0,60,39,60,81v0,37,-17,70,-51,70xm75,-20v33,-2,24,-102,-7,-97v-31,3,-24,103,7,97xm102,-165v-1,10,-17,15,-26,6v-18,-19,-45,-49,-62,-73v-7,-10,-3,-21,14,-21v5,0,10,2,13,7v17,28,46,54,61,81","k":{"f":7,"_":11,".":11,",":11,")":4,"}":4,"]":4}},"\u00f4":{"d":"70,-207v-14,19,-17,44,-41,49v-12,0,-21,-12,-12,-22v14,-17,28,-36,38,-57v1,-9,21,-12,27,-3v14,23,30,51,49,74v7,9,0,21,-13,21v-26,-9,-31,-41,-48,-62xm76,7v-40,0,-59,-38,-59,-80v0,-37,17,-71,50,-71v40,0,60,39,60,81v0,37,-17,70,-51,70xm75,-20v33,-2,24,-102,-7,-97v-31,3,-24,103,7,97","k":{"f":7,"_":11,".":11,",":11,")":4,"}":4,"]":4}},"\u00f6":{"d":"51,-197v0,26,-36,24,-37,2v0,-11,6,-21,19,-21v9,0,18,6,18,19xm122,-198v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20xm76,7v-40,0,-59,-38,-59,-80v0,-37,17,-71,50,-71v40,0,60,39,60,81v0,37,-17,70,-51,70xm75,-20v33,-2,24,-102,-7,-97v-31,3,-24,103,7,97","k":{"f":7,"_":11,".":11,",":11,")":4,"}":4,"]":4}},"\u00f5":{"d":"76,7v-40,0,-59,-38,-59,-80v0,-37,17,-71,50,-71v40,0,60,39,60,81v0,37,-17,70,-51,70xm75,-20v33,-2,24,-102,-7,-97v-31,3,-24,103,7,97xm20,-208v24,-36,53,29,78,21v21,0,18,-18,11,-30v0,-14,21,-17,29,-5v18,28,-2,61,-36,61v-26,0,-44,-11,-61,-26v-9,10,-12,28,-29,29v-35,-8,-2,-34,8,-50","k":{"]":4,"}":4,")":4,"*":-29,"f":7,"_":11,".":11,",":11}},"\u00f8":{"d":"109,-123v35,45,19,148,-50,128v-5,11,-4,28,-21,27v-27,-1,-8,-30,-3,-45v-36,-40,-17,-154,50,-127v4,-11,6,-27,21,-27v27,2,9,30,3,44xm51,-48r26,-66v-21,-11,-29,13,-29,42v0,9,1,17,3,24xm68,-21v27,10,31,-36,26,-65","k":{"f":7,"_":11,".":11,",":11,")":4,"}":4,"]":4}},"p":{"d":"76,-1r14,104v0,9,-3,16,-14,16v-25,0,-31,-65,-31,-107v0,-50,-20,-95,-30,-141v-3,-11,6,-18,17,-18v9,0,13,4,14,11v4,21,8,46,11,67v3,-39,16,-70,47,-70v26,0,45,24,45,67v0,54,-30,89,-73,71xm75,-27v21,14,45,-6,45,-37v0,-27,-7,-49,-21,-49v-22,0,-24,62,-24,86","w":162,"k":{")":6,"}":6,"]":6}},"q":{"d":"124,124v-9,0,-13,-3,-14,-11v-9,-50,-12,-106,-15,-164v-8,24,-21,44,-45,44v-21,0,-37,-19,-37,-55v0,-53,44,-108,83,-68v6,-8,25,-7,25,8v0,68,7,156,20,229v2,11,-5,17,-17,17xm89,-100v-9,-2,-11,-19,-22,-19v-14,0,-25,29,-25,54v0,17,5,31,14,31v20,0,29,-39,33,-66","w":144},"r":{"d":"25,-144v22,0,15,23,21,42v5,-18,16,-41,39,-41v29,0,35,44,8,44v-10,0,-11,-8,-18,-8v-10,0,-17,16,-20,34v5,26,9,50,9,64v0,9,-6,14,-16,14v-26,0,-20,-42,-23,-67v-4,-25,-10,-46,-16,-69v0,-9,8,-13,16,-13","w":120,"k":{"d":18,"q":11,"t":-11,"g":18,"s":11,"a":11,"\u00e1":11,"\u00e0":11,"\u00e2":11,"\u00e4":11,"\u00e3":11,"\u00e5":11,"c":11,"\u00e7":11,"e":11,"\u00e9":11,"\u00e8":11,"\u00ea":11,"\u00eb":11,"o":11,"\u00f3":11,"\u00f2":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f8":11,"_":25,".":25,",":25,")":11,"}":11,"]":11,"1":-7,"3":7}},"s":{"d":"61,-111v12,23,66,28,66,70v0,26,-21,47,-53,47v-38,0,-56,-24,-56,-54v-1,-15,8,-33,23,-32v18,0,7,19,7,33v0,15,7,29,25,29v15,0,24,-10,24,-22v-2,-32,-70,-37,-70,-72v0,-29,31,-36,51,-36v19,0,22,26,3,27v-9,0,-20,1,-20,10","w":134,"k":{"f":7}},"\u00df":{"d":"94,-43v17,0,16,25,31,24v12,0,19,-14,19,-30v0,-26,-21,-46,-46,-45v-7,15,-39,14,-37,-5v0,-9,8,-17,22,-19v14,-29,20,-84,-10,-94v-21,0,-25,44,-25,69v0,43,11,111,25,242v1,9,-4,14,-14,14v-11,0,-16,-5,-17,-13v-17,-134,-24,-206,-24,-243v0,-41,11,-96,57,-96v56,1,58,83,36,121v37,5,63,31,63,67v1,62,-66,75,-92,30v-7,-12,2,-22,12,-22","w":177},"t":{"d":"92,-17v24,-1,8,-51,35,-50v13,0,18,8,15,20v-7,32,-18,59,-51,59v-41,0,-53,-38,-63,-116v-25,8,-40,-25,-12,-28r10,-1v-4,-36,-6,-63,-7,-109v0,-9,6,-14,16,-14v11,0,15,5,15,14v1,46,3,72,6,109v25,3,71,-14,75,12v-3,25,-48,11,-72,16v6,52,14,88,33,88","w":156},"u":{"d":"136,5v-24,0,-23,-27,-32,-51v-3,18,-13,45,-34,45v-46,0,-51,-108,-51,-122v0,-10,7,-16,16,-16v9,0,15,6,15,16v0,21,6,95,23,95v17,0,15,-64,10,-86v0,-19,4,-30,19,-30v24,1,21,36,15,57v7,31,24,54,34,81v0,6,-5,11,-15,11","w":150,"k":{"\/":-15,"_":-22,".":-22,",":-22}},"\u00fa":{"d":"76,-161v-8,16,-34,5,-25,-10v12,-21,27,-47,35,-69v6,-16,40,-11,30,8v-11,21,-30,51,-40,71xm136,5v-24,0,-23,-27,-32,-51v-3,18,-13,45,-34,45v-46,0,-51,-108,-51,-122v0,-10,7,-16,16,-16v9,0,15,6,15,16v0,21,6,95,23,95v17,0,15,-64,10,-86v0,-19,4,-30,19,-30v24,1,21,36,15,57v7,31,24,54,34,81v0,6,-5,11,-15,11","w":150,"k":{"\/":-15,"_":-22,".":-22,",":-22}},"\u00f9":{"d":"136,5v-24,0,-23,-27,-32,-51v-3,18,-13,45,-34,45v-46,0,-51,-108,-51,-122v0,-10,7,-16,16,-16v9,0,15,6,15,16v0,21,6,95,23,95v17,0,15,-64,10,-86v0,-19,4,-30,19,-30v24,1,21,36,15,57v7,31,24,54,34,81v0,6,-5,11,-15,11xm88,-163v-1,10,-17,13,-25,5v-18,-19,-46,-49,-63,-73v-7,-10,-2,-21,15,-21v5,0,10,2,13,7v17,28,44,55,60,82","w":150,"k":{"\/":-15,"_":-22,".":-22,",":-22}},"\u00fb":{"d":"70,-206v-14,19,-17,44,-41,49v-12,0,-20,-12,-11,-22v14,-17,27,-36,37,-57v1,-9,21,-12,27,-3v14,23,30,52,49,75v7,9,1,20,-12,20v-27,-8,-32,-41,-49,-62xm136,5v-24,0,-23,-27,-32,-51v-3,18,-13,45,-34,45v-46,0,-51,-108,-51,-122v0,-10,7,-16,16,-16v9,0,15,6,15,16v0,21,6,95,23,95v17,0,15,-64,10,-86v0,-19,4,-30,19,-30v24,1,21,36,15,57v7,31,24,54,34,81v0,6,-5,11,-15,11","w":150,"k":{"\/":-15,"_":-22,".":-22,",":-22}},"\u00fc":{"d":"48,-197v1,27,-36,23,-37,2v0,-11,7,-21,20,-21v9,0,17,6,17,19xm120,-198v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20xm136,5v-24,0,-23,-27,-32,-51v-3,18,-13,45,-34,45v-46,0,-51,-108,-51,-122v0,-10,7,-16,16,-16v9,0,15,6,15,16v0,21,6,95,23,95v17,0,15,-64,10,-86v0,-19,4,-30,19,-30v24,1,21,36,15,57v7,31,24,54,34,81v0,6,-5,11,-15,11","w":150,"k":{"\/":-15,"_":-22,".":-22,",":-22}},"v":{"d":"98,-145v28,0,25,45,25,78v0,29,-9,74,-45,74v-46,0,-62,-96,-67,-123v-1,-10,5,-18,17,-18v9,0,13,5,14,12v7,40,23,101,37,101v23,-10,12,-84,4,-105v-3,-10,4,-19,15,-19","w":141},"w":{"d":"131,8v-25,0,-37,-20,-42,-45v-5,17,-15,31,-30,31v-40,0,-42,-81,-42,-115v0,-9,5,-14,15,-14v11,0,16,4,16,14v0,31,1,88,15,88v20,0,2,-72,28,-71v8,0,15,4,15,16v0,24,2,68,21,68v13,0,20,-22,20,-54v0,-31,-13,-59,-32,-78v-5,-5,-5,-10,-2,-15v6,-10,17,-9,25,-1v30,28,39,62,39,97v0,38,-14,79,-46,79","w":193,"k":{"_":13,".":13,",":13,"-":-11,"\u00ad":-11}},"x":{"d":"113,-144v-8,30,-21,53,-33,81v10,15,24,37,41,40v9,1,12,5,12,12v0,7,-4,15,-16,15v-22,0,-42,-25,-53,-40v-9,13,-10,35,-29,37v-36,-7,4,-43,9,-62v-15,-21,-32,-43,-40,-62v-4,-9,6,-17,16,-17v22,6,26,35,40,50v15,-25,10,-60,38,-67v8,0,15,4,15,13","w":127,"k":{"g":4,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00e8":4,"\u00ea":4,"\u00eb":4,"o":4,"\u00f3":4,"\u00f2":4,"\u00f4":4,"\u00f6":4,"\u00f5":4,"\u00f8":4,"_":-6,".":-6,",":-6}},"y":{"d":"45,14v35,0,-7,40,-1,63v0,19,8,31,24,31v34,0,39,-61,39,-94v0,-27,-3,-56,-6,-77v-3,28,-12,52,-34,52v-34,0,-45,-57,-51,-112v-1,-10,4,-16,16,-16v9,0,13,3,14,11v2,16,11,90,25,90v15,-8,20,-70,15,-91v-4,-16,28,-22,31,-5v14,73,60,269,-50,269v-35,0,-53,-24,-53,-59v0,-15,4,-62,31,-62","w":147},"\u00fd":{"d":"45,14v35,0,-7,40,-1,63v0,19,8,31,24,31v34,0,39,-61,39,-94v0,-27,-3,-56,-6,-77v-3,28,-12,52,-34,52v-34,0,-45,-57,-51,-112v-1,-10,4,-16,16,-16v9,0,13,3,14,11v2,16,11,90,25,90v15,-8,20,-70,15,-91v-4,-16,28,-22,31,-5v14,73,60,269,-50,269v-35,0,-53,-24,-53,-59v0,-15,4,-62,31,-62xm76,-161v-8,16,-34,5,-25,-10v12,-21,27,-47,35,-69v6,-16,40,-11,30,8v-11,21,-30,51,-40,71","w":147},"\u00ff":{"d":"45,14v35,0,-7,40,-1,63v0,19,8,31,24,31v34,0,39,-61,39,-94v0,-27,-3,-56,-6,-77v-3,28,-12,52,-34,52v-34,0,-45,-57,-51,-112v-1,-10,4,-16,16,-16v9,0,13,3,14,11v2,16,11,90,25,90v15,-8,20,-70,15,-91v-4,-16,28,-22,31,-5v14,73,60,269,-50,269v-35,0,-53,-24,-53,-59v0,-15,4,-62,31,-62xm42,-197v0,26,-36,24,-37,2v0,-11,6,-21,19,-21v9,0,18,6,18,19xm114,-198v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20","w":147},"z":{"d":"1,-125v8,-21,42,-23,76,-23v26,0,45,7,45,32v0,31,-33,67,-56,90v20,2,54,0,75,-3v22,-3,22,25,3,28v-36,6,-70,3,-105,-1v-9,-1,-14,-5,-14,-12v13,-30,65,-63,66,-96v-9,-25,-47,-5,-69,-1v-11,2,-21,-2,-21,-14","w":155},"\u00f0":{"d":"112,-229v0,19,-27,15,-37,22v13,15,25,31,36,47v14,-6,24,13,14,23v28,51,34,146,-45,146v-33,0,-59,-20,-59,-60v0,-39,31,-72,65,-94v-11,-17,-26,-34,-41,-50v-11,4,-23,16,-35,18v-14,1,-21,-21,-5,-29r18,-9v-13,-7,-31,-37,-1,-37v14,0,21,17,31,24v13,-5,24,-10,38,-14v9,-3,21,1,21,13xm80,-18v45,0,36,-73,19,-105v-23,16,-47,41,-47,75v0,19,13,30,28,30","w":163},"\u00fe":{"d":"76,119v-24,0,-31,-62,-31,-105v0,-72,-43,-205,-54,-255v-3,-12,6,-19,17,-19v10,0,13,4,15,12v5,23,26,138,34,179v3,-39,16,-70,47,-70v26,0,45,24,45,67v0,54,-30,89,-73,71r14,104v0,9,-3,16,-14,16xm75,-27v21,14,45,-6,45,-37v0,-27,-7,-49,-21,-49v-22,0,-24,62,-24,86","w":162,"k":{"_":11,".":11,",":11,")":4,"}":4,"]":4}},"<":{"d":"147,-14v-43,-7,-87,-19,-127,-43v-13,-9,-12,-22,4,-27r123,-39v10,-3,20,1,20,13v0,6,-3,11,-11,14v-29,10,-67,20,-97,29v27,13,66,21,95,26v9,1,12,7,12,13v0,11,-9,16,-19,14","w":185},">":{"d":"51,-4v-10,7,-24,0,-24,-12v0,-6,3,-9,8,-12r85,-45v-22,-8,-75,-24,-97,-32v-8,-3,-11,-8,-11,-14v0,-10,9,-16,19,-13v39,13,78,28,117,42v17,6,19,20,4,28","w":180},"\u00ab":{"d":"139,-12v1,11,-12,18,-23,13r-90,-41v-10,-4,-12,-14,-5,-22r84,-80v13,-13,36,8,21,21r-72,64r77,34v6,3,8,6,8,11xm245,-22v0,10,-12,19,-24,14r-88,-40v-12,-4,-13,-16,-4,-24r74,-73v13,-11,37,7,22,21r-65,58r77,33v5,2,8,6,8,11","w":255},"\u00bb":{"d":"49,4v-8,11,-26,2,-26,-10v0,-4,1,-7,5,-10r71,-64r-76,-34v-14,-6,-8,-27,7,-27v36,12,65,30,99,44v10,4,10,15,4,22xm153,-13v-14,11,-37,-12,-20,-23r71,-50r-71,-42v-13,-7,-6,-25,9,-25v34,14,61,35,92,52v12,7,12,17,1,25","w":259,"k":{"F":11,"T":32,"I":7,"\u00cd":7,"\u00ce":7,"\u00cf":7,"\u00cc":7,"J":25}},"(":{"d":"81,70v16,0,13,-20,29,-20v9,0,16,6,16,15v0,19,-22,31,-43,31v-50,0,-70,-59,-70,-145v0,-55,20,-161,79,-183v15,0,21,15,9,25v-32,25,-57,96,-57,154v0,70,14,123,37,123","w":113,"k":{"n":7,"m":18,"k":-7,"j":-14,"\u00ef":-4,"\u00ec":-4,"h":-7,"d":22,"q":4,"y":-7,"\u00fd":-7,"\u00ff":-7,"i":-4,"\u00ed":-4,"\u00ee":-4,"g":-12,"s":7,"a":18,"\u00e1":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e3":18,"\u00e5":18,"c":11,"\u00e7":11,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":11,"\u00f3":11,"\u00f2":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f8":11,"w":4}},")":{"d":"89,-77v0,43,-21,153,-80,172v-14,0,-21,-14,-9,-24v70,-55,81,-231,3,-273v-13,-7,-6,-28,7,-27v50,22,79,79,79,152","w":121},"{":{"d":"124,75v15,1,12,-19,28,-18v8,0,16,5,16,14v0,20,-24,30,-43,30v-60,0,-66,-62,-66,-116v0,-20,1,-48,-16,-53v-7,18,-45,22,-44,-3v0,-18,16,-24,31,-24v20,-32,-10,-61,-10,-100v0,-27,17,-51,47,-51v15,0,41,10,41,26v0,26,-30,8,-40,2v-11,0,-17,9,-17,23v2,37,34,74,7,106v63,16,4,156,66,164","w":132,"k":{"n":7,"m":18,"k":-7,"j":-14,"\u00ef":-4,"\u00ec":-4,"h":-7,"d":22,"q":4,"y":-7,"\u00fd":-7,"\u00ff":-7,"i":-4,"\u00ed":-4,"\u00ee":-4,"g":-12,"s":7,"a":18,"\u00e1":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e3":18,"\u00e5":18,"c":11,"\u00e7":11,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":11,"\u00f3":11,"\u00f2":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f8":11,"w":4}},"}":{"d":"34,-211v-15,-1,-15,20,-31,20v-12,0,-19,-11,-13,-22v9,-17,28,-24,44,-24v52,-2,50,59,50,113v0,10,4,17,10,21v15,-11,46,-6,46,12v0,17,-23,24,-41,18v-28,39,27,81,27,132v0,23,-15,36,-39,36v-44,0,-68,-59,-33,-59v18,0,14,32,34,34v4,0,7,-6,7,-11v-1,-41,-61,-104,-21,-143v-43,-16,4,-112,-40,-127","w":144},"[":{"d":"147,81v0,24,-54,14,-80,14v-12,0,-16,-5,-16,-14v0,-61,-35,-240,-54,-300v-9,-28,51,-17,78,-17v10,0,15,5,15,14v-1,23,-36,11,-57,14v19,66,45,210,49,275v22,3,65,-9,65,14","w":132,"k":{"n":7,"m":18,"k":-7,"j":-14,"\u00ef":-4,"\u00ec":-4,"h":-7,"d":22,"q":4,"y":-7,"\u00fd":-7,"\u00ff":-7,"i":-4,"\u00ed":-4,"\u00ee":-4,"g":-12,"s":7,"a":18,"\u00e1":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e3":18,"\u00e5":18,"c":11,"\u00e7":11,"e":7,"\u00e9":7,"\u00e8":7,"\u00ea":7,"\u00eb":7,"o":11,"\u00f3":11,"\u00f2":11,"\u00f4":11,"\u00f6":11,"\u00f5":11,"\u00f8":11,"w":4}},"]":{"d":"40,95v-11,0,-15,-5,-15,-14v2,-25,45,-10,68,-14r-48,-275v-18,-2,-50,7,-50,-13v0,-25,43,-15,65,-15v11,0,14,5,15,13r54,301v2,11,-5,17,-15,17r-74,0","w":137},"|":{"d":"87,127v-9,0,-14,-4,-16,-12r-70,-340v-2,-9,5,-17,16,-17v9,0,14,4,16,12r70,341v2,9,-5,16,-16,16","w":92},"\u00a6":{"d":"77,79v-10,0,-16,-4,-17,-13v-4,-30,-9,-58,-15,-88v-2,-10,5,-18,17,-18v9,0,13,4,14,11r15,94v1,9,-4,14,-14,14xm45,-113v-10,0,-16,-5,-17,-14v-3,-31,-8,-59,-13,-90v-1,-10,4,-17,17,-17v9,0,13,2,14,10v6,32,11,64,14,97v1,10,-5,14,-15,14","w":105},"\/":{"d":"38,3v-5,18,-37,10,-30,-8r81,-210v5,-17,37,-9,30,9","w":135,"k":{",":38,".":38,"_":38,"z":14,"\u00ff":22,"\u00fd":22,"y":22,"x":22,"w":18,"v":18,"\u00fc":18,"\u00fb":18,"\u00f9":18,"\u00fa":18,"u":18,"s":22,"\u00f8":22,"\u00f5":22,"\u00f6":22,"\u00f4":22,"\u00f2":22,"\u00f3":22,"o":22,"g":25,"f":14,"\u00eb":22,"\u00ea":22,"\u00e8":22,"\u00e9":22,"e":22,"d":22,"\u00e7":22,"c":22,"\u00e5":22,"\u00e3":22,"\u00e4":22,"\u00e2":22,"\u00e0":22,"\u00e1":22,"a":22,"\u00dd":-7,"Y":-7,"T":-18,"S":18,"\u00d8":7,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d6":7,"O":7,"J":37,"G":17,"\u00c7":7,"C":7,"\u00c6":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c0":19,"\u00c5":19,"\u00c4":19,"A":19,"9":36,"8":14,"7":11,"6":14,"5":25,"4":14,"3":25,"2":25,"1":19,"r":11,"p":18,"n":14,"m":7,"\u00ef":-14,"0":26}},"\\":{"d":"131,11v-6,0,-10,-3,-13,-8r-139,-212v-6,-9,2,-21,14,-21v6,0,10,2,13,6r139,213v7,10,-1,22,-14,22","w":147,"k":{"\u00dd":18,"Y":18}},"@":{"d":"144,92v-93,0,-130,-71,-130,-138v0,-74,40,-159,135,-159v74,0,131,53,131,129v0,71,-80,99,-103,42v-5,15,-18,33,-38,33v-61,0,-44,-137,11,-132v12,-2,21,11,29,12v26,1,20,44,12,62v4,17,14,32,29,32v21,0,32,-24,32,-50v0,-62,-47,-103,-102,-103v-69,0,-108,64,-108,133v0,129,151,144,203,60v6,-9,17,-10,24,-3v7,7,4,17,-3,25v-28,33,-74,57,-122,57xm166,-58v-7,-18,5,-50,-16,-52v-21,-2,-31,77,-8,84v12,0,20,-15,24,-32","w":292},"&":{"d":"113,-66v21,-23,35,-54,67,-69v14,0,23,14,11,24v-21,17,-38,39,-55,61v23,15,49,25,70,29v8,1,12,6,12,13v0,13,-10,17,-20,15v-25,-5,-54,-18,-80,-35v-15,19,-33,38,-58,38v-60,-1,-48,-76,-16,-110v-15,-22,-25,-47,-25,-77v0,-23,11,-62,50,-62v30,0,47,17,47,46v0,27,-16,58,-38,91v10,13,22,26,35,36xm46,-36v0,36,35,14,50,-9v-12,-10,-24,-21,-34,-33v-9,15,-16,30,-16,42xm61,-123v14,-24,24,-48,24,-67v0,-12,-4,-22,-16,-22v-30,7,-23,64,-8,89","w":225},"~":{"d":"31,-63v-8,0,-16,-5,-16,-14v0,-24,16,-45,40,-45v30,0,46,30,79,30v37,0,-6,-46,30,-44v14,0,21,15,21,29v0,25,-21,44,-49,44v-42,0,-62,-31,-77,-31v-19,0,-5,31,-28,31","w":209},"^":{"d":"78,-181v-13,28,-28,61,-57,74v-12,1,-21,-14,-13,-24v19,-21,47,-52,50,-82v1,-14,23,-13,29,-4v22,35,49,63,81,89v12,9,2,24,-12,24v-36,-17,-56,-51,-78,-77","w":193},"\u00b0":{"d":"36,-125v-55,0,-64,-99,-5,-101v54,-1,63,101,5,101xm17,-179v-4,30,32,40,32,8v4,-33,-33,-42,-32,-8","w":106},"\u00a7":{"d":"150,-150v0,12,-8,32,-21,31v-20,-2,-9,-18,-9,-34v0,-15,-8,-28,-30,-28v-38,-1,-38,38,-26,64v52,-12,93,36,71,82v36,37,22,117,-45,117v-31,0,-62,-17,-66,-50v-1,-10,5,-17,17,-17v8,0,13,5,14,11v5,18,15,31,35,31v40,1,40,-46,24,-70v-56,40,-130,-44,-77,-91v-28,-43,-5,-103,53,-103v42,0,60,25,60,57xm95,-34v-1,-12,4,-19,15,-19v5,-21,-13,-39,-32,-39v-14,0,-28,10,-28,29v-1,22,24,42,45,29","w":165},"\u00b6":{"d":"180,-210v-2,79,5,153,39,208v1,13,-22,19,-29,7v-38,-61,-41,-140,-41,-215v0,-10,5,-14,16,-14v9,0,15,5,15,14xm121,3v-11,0,-16,-5,-17,-13r-12,-79v-39,19,-89,-2,-89,-50v0,-44,39,-84,87,-84v9,0,14,1,16,13r30,198v1,8,-5,15,-15,15xm34,-141v0,34,32,36,55,28r-12,-82v-27,6,-43,30,-43,54","w":225},"\u00ae":{"d":"144,21v-105,0,-135,-70,-135,-137v0,-69,44,-117,111,-117v141,0,176,196,65,241v-5,8,-24,13,-41,13xm38,-115v0,71,49,125,130,106v10,-2,27,-16,27,-22v-32,0,-55,-29,-76,-59v-4,2,-12,3,-17,1v6,23,13,57,-11,57v-25,0,-16,-38,-19,-64v-3,-21,-13,-41,-20,-67v-3,-9,4,-16,14,-16v20,1,13,27,19,42v4,-29,21,-53,49,-53v49,0,43,76,9,88v23,26,36,47,61,45v4,0,6,1,8,3v29,-70,-10,-157,-92,-155v-51,0,-82,37,-82,94xm130,-166v-17,0,-27,24,-31,48v7,-3,19,-3,25,2v17,-8,32,-50,6,-50","w":268},"\u00a9":{"d":"123,-157v16,0,36,9,41,24v-3,27,-30,5,-42,1v-32,3,-42,111,9,109v20,0,43,-16,53,-31v3,-5,7,-8,13,-8v9,0,18,10,12,20v-15,25,-47,45,-78,45v-43,0,-63,-33,-63,-75v0,-35,11,-85,55,-85xm147,51v-105,0,-135,-69,-135,-137v0,-69,43,-116,110,-116v141,0,175,196,65,241v-5,8,-23,12,-40,12xm40,-85v0,71,51,131,130,106v89,-29,65,-200,-47,-200v-51,0,-83,37,-83,94","w":266},"\u00b5":{"d":"57,114v-10,0,-16,-4,-16,-13v-3,-66,-6,-130,-11,-194v-8,-28,-16,-59,10,-63v18,-3,21,21,18,40v8,37,24,97,46,97v10,0,14,-13,14,-34v0,-28,-9,-60,-23,-87v-6,-10,1,-21,14,-21v9,0,15,5,22,22v18,41,43,149,-21,149v-22,0,-37,-20,-46,-41r9,131v1,9,-7,14,-16,14","w":173},"\u00aa":{"d":"119,-93v-22,0,-34,-29,-41,-50v-5,21,-15,39,-31,39v-55,0,-34,-121,8,-121v5,0,9,2,11,4v14,-16,33,-2,33,22v0,11,-2,22,-4,31v5,22,14,45,23,45v6,0,5,-13,18,-13v8,0,14,4,14,13v0,15,-14,30,-31,30xm50,-132v8,0,14,-17,17,-34v-3,-10,-5,-20,-5,-32v-14,-6,-20,25,-21,43v0,12,3,23,9,23xm16,-51v-8,1,-16,-3,-16,-13v0,-9,4,-13,16,-14r125,-8v9,0,16,5,16,14v0,8,-5,13,-16,14","w":170},"\u00ba":{"d":"112,-62r-96,-4v-10,0,-15,-6,-15,-15v0,-9,6,-13,16,-13r96,4v10,0,15,6,15,15v0,9,-6,13,-16,13xm67,-104v-34,0,-46,-34,-46,-60v0,-24,7,-63,42,-63v33,0,43,36,43,61v0,27,-8,62,-39,62xm65,-131v17,-1,16,-70,-2,-70v-18,1,-17,71,2,70","w":143},"!":{"d":"32,-8v1,-12,7,-22,22,-22v10,0,18,7,18,18v0,12,-9,20,-22,20v-9,0,-18,-6,-18,-16xm46,-54v-12,0,-16,-6,-16,-14v0,-53,-15,-111,-24,-166v-2,-10,6,-17,17,-17v9,0,14,4,15,12v9,57,22,114,22,169v0,10,-4,16,-14,16","w":99},"\u00a1":{"d":"66,-157v1,24,-39,33,-40,4v0,-12,9,-19,22,-19v9,0,18,5,18,15xm51,-111v12,0,17,6,17,14v0,53,15,111,24,166v2,10,-6,17,-17,17v-9,0,-14,-3,-15,-11v-9,-57,-23,-115,-23,-170v0,-10,4,-16,14,-16","w":91},"?":{"d":"100,-178v2,45,-60,78,-36,124v0,6,-5,12,-15,12v-15,0,-22,-20,-22,-30v2,-38,38,-68,42,-104v0,-8,-6,-16,-14,-16v-24,-1,-16,38,-40,37v-11,0,-18,-8,-14,-18v4,-49,96,-68,99,-5xm34,-10v-1,-11,10,-20,21,-20v23,0,29,39,0,39v-12,0,-21,-7,-21,-19","w":118,"k":{"T":-18}},"\u00bf":{"d":"15,19v0,-44,60,-78,36,-124v0,-6,6,-11,16,-11v15,0,21,19,21,29v-1,39,-42,69,-42,105v0,8,6,15,14,15v24,1,16,-38,40,-37v11,0,18,8,14,18v-4,49,-99,68,-99,5xm81,-149v1,11,-9,20,-21,20v-22,-1,-28,-39,0,-39v12,0,21,7,21,19","w":100},"\u00ac":{"d":"184,-20v-27,0,-17,-41,-26,-61r-127,1v-11,0,-16,-5,-16,-14v0,-9,5,-14,16,-14r135,-1v34,1,22,48,33,72v2,10,-4,17,-15,17","w":214},"*":{"d":"55,-140v-10,9,-17,41,-36,32v-19,-15,9,-32,16,-43v-13,-5,-52,-4,-44,-26v8,-25,38,11,51,0v0,-18,-8,-47,12,-47v22,0,10,32,12,50v14,-6,38,-32,51,-12v7,23,-31,23,-43,33v8,12,41,26,26,46v-25,10,-28,-21,-45,-33","w":140,"k":{"T":-12}},"#":{"d":"138,43v-11,0,-15,-5,-14,-15r8,-55v-14,0,-27,1,-42,1v-7,20,4,51,-23,52v-27,0,-7,-34,-8,-52v-18,-2,-49,7,-49,-13v-1,-22,33,-12,53,-14r4,-30v-20,-1,-54,11,-54,-11v0,-23,39,-12,59,-16v8,-21,-3,-60,24,-63v27,3,7,41,7,61r42,-2v7,-20,-4,-56,22,-56v28,0,8,35,9,54v16,0,40,-7,40,11v0,22,-26,14,-44,17r-5,33v18,1,53,-14,53,10v0,24,-36,12,-57,17v-8,25,5,71,-25,71xm99,-84r-5,31v11,0,31,-1,42,-1r5,-33","w":232},"+":{"d":"86,-13v-26,1,-16,-36,-23,-56v-20,0,-52,9,-53,-12v-1,-18,32,-14,50,-16v0,-19,-17,-52,9,-52v24,0,17,31,22,50v19,2,54,-12,54,12v0,23,-31,13,-50,16v-1,20,20,57,-9,58","w":167},"\u00b1":{"d":"153,6r-108,-1v-10,0,-15,-6,-15,-14v0,-8,4,-14,14,-14r108,1v10,0,15,5,15,13v0,8,-5,15,-14,15xm92,-37v-27,1,-16,-37,-23,-57v-19,-1,-51,10,-53,-11v-1,-19,31,-15,50,-16v0,-19,-18,-52,9,-52v24,0,16,31,21,50v19,2,55,-12,55,11v0,23,-32,13,-51,17v0,20,21,57,-8,58","w":177},"\u00d7":{"d":"127,4v-24,-9,-33,-37,-50,-53v-14,17,-19,46,-42,53v-12,0,-20,-11,-13,-22r33,-54v-13,-18,-30,-32,-40,-54v0,-14,21,-18,29,-8r29,35v11,-13,13,-38,34,-41v37,8,-5,47,-13,65r46,57v8,10,2,22,-13,22","w":151},"=":{"d":"145,-32v-39,-7,-76,-6,-115,-11v-9,-1,-12,-6,-12,-13v0,-10,8,-15,19,-14v38,4,76,4,115,11v9,2,12,5,12,13v0,11,-9,16,-19,14xm32,-87v-11,0,-15,-5,-15,-13v0,-9,5,-14,15,-14v36,0,75,2,111,-4v10,-2,21,1,21,14v0,8,-6,12,-14,13v-38,6,-77,4,-118,4","w":186},"-":{"d":"130,-71r-107,-10v-11,-1,-15,-6,-15,-15v0,-9,6,-14,16,-13r107,10v10,1,16,5,16,14v0,9,-7,15,-17,14","w":170,"k":{"F":14,"d":11}},"\u00ad":{"d":"131,-71r-107,-10v-11,-1,-15,-6,-15,-15v0,-9,6,-14,16,-13r107,10v10,1,16,5,16,14v0,9,-7,15,-17,14","w":170,"k":{"F":14,"d":11}},"_":{"d":"207,50r-153,0v-10,0,-16,-6,-16,-14v0,-8,5,-14,14,-14r154,0v10,0,16,6,16,14v0,9,-5,14,-15,14","w":215,"k":{"\/":-28,"\u00de":-11,"T":14,"I":-11,"\u00cd":-11,"\u00ce":-11,"\u00cf":-11,"\u00cc":-11,"J":-18,"4":5,"f":2,"q":-7,"l":6,"b":4,"X":-39,"y":-8,"\u00fd":-8,"\u00ff":-8,"Y":4,"\u00dd":4,"7":12,"t":17,"U":9,"\u00dc":9,"\u00da":9,"\u00db":9,"\u00d9":9,"i":4,"\u00ed":4,"\u00ec":4,"\u00ee":4,"\u00ef":4}},".":{"d":"38,-39v27,1,35,44,1,45v-14,0,-24,-10,-24,-22v0,-13,10,-23,23,-23","w":57,"k":{"\/":-28,"\u00de":-11,"T":14,"I":-11,"\u00cd":-11,"\u00ce":-11,"\u00cf":-11,"\u00cc":-11,"J":-18,"4":5,"f":2,"q":-7,"l":6,"b":4,"X":-39,"y":-8,"\u00fd":-8,"\u00ff":-8,"Y":4,"\u00dd":4,"7":12,"t":17,"U":9,"\u00dc":9,"\u00da":9,"\u00db":9,"\u00d9":9,"i":4,"\u00ed":4,"\u00ec":4,"\u00ee":4,"\u00ef":4}},",":{"d":"25,54v6,-21,47,-21,44,-51v4,-42,-51,1,-52,-33v0,-15,21,-18,34,-18v28,0,47,17,47,45v0,35,-29,62,-59,67v-7,1,-14,-2,-14,-10","w":104,"k":{"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"i":4,"\/":-28,"\u00de":-11,"T":14,"I":-11,"\u00cd":-11,"\u00ce":-11,"\u00cf":-11,"\u00cc":-11,"J":-18,"4":5,"f":2,"q":-7,"l":6,"b":4,"X":-39,"y":-8,"\u00fd":-8,"\u00ff":-8,"Y":4,"\u00dd":4,"7":12,"t":17,"U":9,"\u00dc":9,"\u00da":9,"\u00db":9,"\u00d9":9}},":":{"d":"59,-39v27,1,32,45,0,45v-14,0,-23,-10,-23,-22v0,-13,9,-23,23,-23xm37,-113v-12,0,-24,-10,-24,-22v0,-13,10,-22,24,-22v14,0,23,9,23,22v0,12,-10,22,-23,22","w":99},";":{"d":"35,54v6,-21,46,-21,43,-51v4,-42,-51,1,-51,-33v0,-15,20,-18,33,-18v28,0,48,17,48,45v0,35,-29,62,-59,67v-7,1,-14,-2,-14,-10xm34,-157v12,0,24,8,24,22v0,12,-8,22,-23,22v-14,0,-23,-10,-23,-22v0,-13,9,-22,22,-22","w":103},"\u00b7":{"d":"32,-128v13,0,24,9,24,23v0,12,-9,21,-24,21v-14,0,-23,-9,-23,-21v0,-13,10,-23,23,-23","w":76},"'":{"d":"21,-132v-11,0,-15,-4,-16,-13r-8,-72v-1,-9,5,-14,15,-14v10,0,15,5,16,14r8,71v1,9,-5,14,-15,14","w":66},"\"":{"d":"69,-135v-26,-7,-21,-53,-21,-79v0,-9,6,-14,15,-14v30,3,10,51,22,74v2,10,-5,19,-16,19xm21,-132v-11,0,-15,-4,-16,-13r-8,-71v-1,-9,5,-15,15,-15v10,0,15,5,16,14r8,71v1,9,-5,14,-15,14","w":115},"\u00f7":{"d":"170,-58r-142,-3v-10,0,-16,-5,-16,-14v0,-9,6,-14,16,-14r143,3v10,0,15,6,15,15v0,9,-6,13,-16,13xm98,15v-15,0,-23,-12,-23,-23v0,-13,12,-22,24,-22v13,0,24,14,24,26v0,12,-12,19,-25,19xm86,-115v-15,0,-26,-9,-26,-23v0,-14,10,-24,25,-24v19,0,26,11,26,24v0,12,-11,23,-25,23","w":201},"%":{"d":"103,8v-5,16,-37,13,-30,-7v25,-71,43,-142,56,-216v3,-17,34,-14,30,6v-15,75,-32,146,-56,217xm37,-115v-60,0,-51,-94,3,-96v25,0,45,19,45,45v0,25,-20,51,-48,51xm37,-140v10,0,17,-12,17,-26v0,-9,-4,-20,-14,-20v-18,-1,-21,46,-3,46xm209,13v-33,0,-46,-22,-46,-43v0,-27,22,-46,49,-46v21,0,42,16,42,43v0,25,-18,46,-45,46xm208,-11v21,0,23,-41,2,-40v-21,-1,-26,39,-2,40","w":265},"$":{"d":"59,-113v11,26,66,29,66,72v0,21,-13,39,-34,45v0,17,12,45,-11,45v-22,1,-17,-26,-21,-43v-30,-4,-44,-25,-44,-52v-1,-21,31,-22,31,-2v0,11,2,21,11,25v6,-12,23,-12,29,-1v36,-44,-69,-52,-61,-90v0,-16,9,-24,21,-29v-2,-17,-12,-43,12,-43v19,0,16,22,18,38v19,1,34,-1,35,14v3,26,-46,2,-52,21","w":136},"\u00a2":{"d":"109,-89v-8,-1,-11,-11,-18,-13v0,12,-27,14,-30,3v-9,7,-15,20,-15,33v0,53,64,37,75,4v3,-7,7,-10,15,-10v10,0,18,9,13,21v-8,18,-22,36,-47,43v1,17,11,43,-12,43v-21,0,-17,-24,-20,-41v-31,-4,-55,-24,-55,-59v0,-29,19,-55,41,-65v-1,-17,-10,-43,11,-44v23,-1,16,23,20,40v23,3,38,17,38,29v0,8,-6,16,-16,16","w":158},"\u00a3":{"d":"120,-24v34,0,-7,-48,26,-48v40,12,23,76,-23,76v-17,0,-30,-6,-41,-14v-5,10,-15,19,-34,19v-48,0,-45,-63,-4,-61v6,0,11,1,16,3v-1,-13,-5,-33,-7,-42v-16,0,-38,3,-38,-14v0,-16,16,-14,32,-14v-15,-42,-6,-93,43,-92v27,0,43,16,43,41v0,8,-2,22,-17,22v-28,0,-2,-36,-27,-36v-25,0,-18,41,-12,65v18,1,49,-6,47,14v-1,20,-22,12,-40,14v4,17,7,36,7,55v10,6,19,12,29,12xm38,-21v2,11,21,7,21,-3v-7,-5,-21,-6,-21,3","w":176},"\u00a5":{"d":"53,-79v-24,-24,-43,-52,-56,-82v-1,-14,24,-19,31,-6v14,28,34,61,60,83r26,-91v2,-6,5,-11,14,-11v13,0,20,6,16,18r-23,82v0,0,46,-5,45,14v0,22,-35,10,-53,15r-9,26v19,2,50,-7,50,14v-1,23,-37,12,-58,14v-9,18,-5,49,-28,52v-28,-2,-9,-34,-5,-52v-17,0,-40,4,-40,-14v0,-21,30,-12,49,-14v1,-2,7,-21,7,-23v-23,-1,-66,21,-66,-7v0,-17,26,-15,40,-18","w":175},"\u00a4":{"d":"39,4v-12,15,-37,-4,-24,-20r27,-33v-10,-14,-12,-38,-4,-54v-13,-10,-40,-12,-43,-31v8,-30,44,-1,62,7v16,-12,36,-17,56,-9v11,-11,17,-32,35,-36v33,6,2,39,-9,52v16,14,21,46,8,66v11,11,31,18,36,34v-9,31,-45,-1,-58,-12v-16,11,-40,12,-59,3xm63,-81v-1,25,28,41,43,25v0,-8,7,-14,16,-13v11,-21,-9,-43,-28,-43v-17,0,-31,13,-31,31","w":181},"`":{"d":"95,-163v-1,10,-18,13,-26,5v-18,-19,-45,-49,-62,-73v-7,-10,-2,-21,15,-21v5,0,10,2,13,7v17,28,44,55,60,82","w":98},"\u00b4":{"d":"31,-161v-8,16,-34,5,-25,-10v12,-21,27,-47,35,-69v7,-18,40,-10,30,8v-11,21,-30,51,-40,71","w":76},"\u00a8":{"d":"41,-197v0,26,-36,24,-37,2v0,-11,6,-21,19,-21v9,0,18,6,18,19xm112,-198v1,28,-39,27,-40,2v0,-12,7,-22,21,-22v9,0,19,6,19,20","w":115},"\u00af":{"d":"126,-197v-8,29,-69,20,-108,20v-9,0,-14,-4,-14,-13v0,-17,19,-14,35,-14v23,0,47,-1,67,-6v10,-3,20,0,20,13","w":129},"\u00b8":{"d":"48,119v-39,-12,14,-35,14,-55v0,-33,-68,10,-56,-27v12,-16,11,-45,34,-51v24,5,-4,32,-6,45v26,-9,57,2,57,33v0,20,-20,55,-43,55","w":94}}});
