/*!
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		},

		strict: (function() {
			var doctype;
			// no doctype (doesn't always catch it though.. IE I'm looking at you)
			if (document.compatMode == 'BackCompat') return false;
			// WebKit, Gecko, Opera, IE9+
			doctype = document.doctype;
			if (doctype) {
				return !/frameset|transitional/i.test(doctype.publicId);
			}
			// IE<9, firstChild is the doctype even if there's an XML declaration
			doctype = document.firstChild;
			if (doctype.nodeType != 8 || /^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)) {
				return false;
			}
			return true;
		})()

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		var checkTypes = {
			'': 1,
			'text/css': 1
		};

		function isContainerReady(el) {
			if (!checkTypes[el.type.toLowerCase()]) return true;
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		// mouseover/mouseout (standards) mode
		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		// mouseenter/mouseleave (probably ie) mode
		function onEnterLeave(e) {
			if (!e) e = window.event;
			// ie model, we don't have access to "this", but
			// mouseenter/leave doesn't bubble so it's fine.
			trigger(e.target || e.srcElement, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				if (hoverState) {
					options = merge(options, options.hover);
					options._mediatorMode = 1;
				}
				api.replace(el, options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

		this.detach = function(el) {
			if (el.onmouseenter === undefined) {
				removeEvent(el, 'mouseover', onOverOut);
				removeEvent(el, 'mouseout', onOverOut);
			}
			else {
				removeEvent(el, 'mouseenter', onEnterLeave);
				removeEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			// we don't really need "this" right now, saves code
			el.attachEvent('on' + type, listener);
		}
	}

	function attach(el, options) {
		if (options._mediatorMode) return el;
		var storage = sharedStorage.get(el);
		var oldOptions = storage.options;
		if (oldOptions) {
			if (oldOptions === options) return el;
			if (oldOptions.hover) hoverHandler.detach(el);
		}
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function removeEvent(el, type, listener) {
		if (el.removeEventListener) {
			el.removeEventListener(type, listener, false);
		}
		else if (el.detachEvent) {
			el.detachEvent('on' + type, listener);
		}
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.ignoreClass && options.ignoreClass.test(el.className)) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		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,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		ignoreClass: null,
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.ignoreClass == 'string') {
			options.ignoreClass = new RegExp('(?:^|\\s)(?:' + options.ignoreClass.replace(/\s+/g, '|') + ')(?:\\s|$)');
		}
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (typeof elements == 'string') {
			if (!ignoreHistory) replaceHistory.add(elements, arguments);
			elements = [ elements ];
		}
		else if (elements.nodeType) elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;
		var pixelRatio = window.devicePixelRatio || 1;
		if (pixelRatio != 1) {
			canvas.width = canvasWidth * pixelRatio;
			canvas.height = canvasHeight * pixelRatio;
			g.scale(pixelRatio, pixelRatio);
		}

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					// the following moveTo is for Opera 9.2. if we don't
					// do this, it won't forget the previous path which
					// results in garbled text.
					g.moveTo(0, 0);
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1992, 1998 Adobe Systems Incorporated.  All Rights
 * Reserved.Eurostile is a trademark of Nebiolo.
 */
Cufon.registerFont({"w":248,"face":{"font-family":"Eurostile","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-24 -348 454.416 90","underline-thickness":"18","underline-position":"-36","stemh":"23","stemv":"28","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":124},"!":{"d":"66,-37r0,37r-33,0r0,-37r33,0xm66,-270r-3,195r-27,0r-3,-195r33,0","w":97},"\"":{"d":"18,-270r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89xm76,-270r33,0v2,34,-3,62,-9,89r-15,0v-5,-27,-11,-54,-9,-89","w":127},"#":{"d":"98,-270r28,0r-13,73r45,0r12,-73r29,0r-13,73r33,0r0,29r-38,0r-10,59r36,0r0,29r-42,0r-13,80r-28,0r14,-80r-45,0r-14,80r-27,0r13,-80r-36,0r0,-29r42,0r9,-59r-38,0r0,-29r43,0xm108,-168r-9,59r44,0r10,-59r-45,0"},"$":{"d":"113,-150r0,-95v-48,0,-69,1,-69,47v0,50,27,48,69,48xm136,-125r0,100v53,0,72,-3,72,-50v0,-51,-23,-48,-72,-50xm136,-245r0,95v57,1,102,1,102,72v0,69,-31,78,-102,78r0,31r-23,0r0,-31v-71,2,-105,-9,-102,-84r30,0v0,47,-2,60,72,59r0,-100v-58,0,-100,-2,-100,-69v0,-70,35,-76,100,-76r0,-25r23,0r0,25v69,-2,99,7,96,76r-31,0v1,-45,-6,-53,-65,-51"},"%":{"d":"251,-135v59,0,61,32,59,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm263,-270r-183,272r-24,0r182,-272r25,0xm251,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-155v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-35,32,-35,67v0,30,5,30,35,30","w":318},"&":{"d":"203,-52r-106,-87v-40,9,-43,15,-43,58v0,53,8,56,72,56v29,0,71,3,77,-27xm266,0r-40,-33v-15,35,-57,35,-100,35v-60,0,-103,0,-103,-84v0,-66,20,-63,55,-73v-18,-15,-24,-23,-24,-53v0,-53,29,-64,82,-64v55,0,82,20,77,85r-31,0v0,-40,2,-58,-46,-58v-29,0,-52,1,-52,37v0,19,5,25,19,37r105,89v1,-12,1,-25,0,-37r29,0v0,21,1,41,-3,59r49,39","w":283},"\u2019":{"d":"36,-233r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24","w":72},"(":{"d":"90,-272r0,27v-38,-6,-40,31,-40,57r0,157v-1,25,2,64,40,58r0,27v-59,4,-70,-36,-70,-85r0,-157v-1,-49,11,-88,70,-84","w":112},")":{"d":"22,-245r0,-27v59,-4,71,35,71,84r0,157v1,49,-12,90,-71,85r0,-27v38,6,40,-32,40,-58r0,-157v1,-25,-2,-63,-40,-57","w":112},"*":{"d":"196,-212r-55,20r33,47r-16,12r-33,-48r-36,48r-16,-12r34,-47r-55,-21r7,-19r55,20r0,-58r20,0r0,58r55,-20"},"+":{"d":"92,-189r27,0r0,73r73,0r0,27r-73,0r0,74r-27,0r0,-74r-74,0r0,-27r74,0r0,-73","w":210},",":{"d":"57,0r-13,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,18,-8,17,-24","w":124},"-":{"d":"0,-112r94,0r0,27r-94,0r0,-27","w":93},".":{"d":"72,-37r0,37r-32,0r0,-37r32,0","w":124},"\/":{"d":"252,-270r-209,311r-33,0r208,-311r34,0","w":261},"0":{"d":"124,-245v-66,0,-84,0,-84,70r0,80v0,70,18,70,84,70v67,0,84,0,84,-70r0,-80v0,-70,-17,-70,-84,-70xm125,2v-84,0,-114,-11,-116,-97r0,-80v2,-86,31,-97,115,-97v84,0,113,11,115,97r0,80v-2,86,-30,97,-114,97"},"1":{"d":"161,-270r0,270r-30,0r0,-247r-69,76r-20,-18r75,-81r44,0"},"2":{"d":"220,-27r0,27r-194,0r0,-46v0,-70,30,-74,95,-81v57,-6,69,-4,69,-60v0,-56,-12,-58,-63,-58v-73,0,-71,11,-70,68r-31,0v0,-69,-1,-95,101,-95v72,0,94,17,94,85v0,72,-25,83,-93,87v-68,4,-73,17,-71,73r163,0"},"3":{"d":"99,-125r0,-27v47,-3,87,14,87,-45v0,-45,-6,-48,-70,-48v-58,0,-61,10,-61,58r-31,0v-4,-74,28,-85,96,-85v58,0,96,0,96,70v0,36,-7,58,-44,64v41,3,50,22,50,62v0,81,-40,78,-105,78v-70,0,-102,-16,-96,-89r30,0v-1,51,-2,62,66,62v66,0,74,-1,74,-55v0,-59,-44,-42,-92,-45"},"4":{"d":"193,-270r0,181r40,0r0,27r-40,0r0,62r-30,0r0,-62r-152,0r0,-36r136,-172r46,0xm163,-89r-1,-161r-126,161r127,0"},"5":{"d":"60,-243r0,81v13,-22,50,-23,73,-23v84,0,91,39,91,91v0,85,-17,96,-99,96v-77,0,-97,-12,-101,-79r31,0v-3,48,18,52,70,52v63,0,68,-10,68,-69v0,-58,-10,-64,-68,-64v-22,0,-60,-4,-65,25r-31,0r0,-137r184,0r0,27r-153,0"},"6":{"d":"131,-140v-59,0,-76,3,-76,47v0,59,5,68,69,68v67,0,70,-8,70,-57v0,-51,-5,-58,-63,-58xm24,-93r0,-107v1,-64,39,-72,102,-72v47,0,96,4,92,70r-30,0v2,-41,-19,-43,-62,-43v-49,0,-71,-1,-71,45r0,58v7,-17,28,-25,69,-25v75,0,100,9,100,85v0,73,-23,84,-100,84v-76,0,-100,-11,-100,-95"},"7":{"d":"220,-270r0,39r-131,231r-36,0r141,-245r-171,0r0,-25r197,0"},"8":{"d":"23,-75v0,-40,7,-57,47,-66v-37,-6,-43,-21,-43,-61v0,-67,30,-70,97,-70v64,0,98,2,98,70v0,35,-4,55,-43,62v37,6,46,21,46,65v0,69,-23,77,-101,77v-64,0,-101,0,-101,-77xm58,-202v0,41,4,49,66,49v62,0,67,-7,67,-49v0,-37,-5,-43,-67,-43v-62,0,-66,4,-66,43xm54,-75v0,44,3,49,70,50v60,1,70,-9,70,-50v0,-45,-8,-51,-70,-51v-60,0,-70,3,-70,51"},"9":{"d":"126,-132v62,0,69,-3,69,-54v0,-58,-15,-59,-69,-59v-62,0,-69,2,-69,59v0,51,10,54,69,54xm126,2v-67,0,-107,-5,-103,-71r30,0v-1,41,7,44,73,44v57,0,69,-2,69,-58v-1,-15,2,-33,-1,-46v-12,26,-57,24,-68,24v-75,0,-100,-9,-100,-81v0,-74,22,-86,100,-86v76,0,100,12,100,86r0,103v0,68,-14,85,-100,85"},":":{"d":"72,-37r0,37r-32,0r0,-37r32,0xm72,-189r0,37r-32,0r0,-37r32,0","w":124},";":{"d":"57,0r-13,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,18,-8,17,-24xm76,-189r0,37r-32,0r0,-37r32,0","w":124},"<":{"d":"192,-174r0,29r-142,58r142,58r0,29r-174,-75r0,-25","w":210},"=":{"d":"18,-144r174,0r0,27r-174,0r0,-27xm18,-88r174,0r0,27r-174,0r0,-27","w":210},">":{"d":"192,-100r0,25r-174,75r0,-29r141,-58r-141,-58r0,-29","w":210},"?":{"d":"108,-77r-31,0v-1,-43,6,-50,51,-67v30,-11,33,-15,33,-56v0,-40,-10,-45,-54,-45v-52,0,-60,11,-58,60r-28,0v-3,-71,22,-87,86,-87v59,0,83,13,83,72v0,44,-3,65,-47,80v-35,11,-36,13,-35,43xm108,-37r0,37r-32,0r0,-37r32,0","w":210},"@":{"d":"232,-198r25,0r-32,101v-3,10,4,16,20,16v34,0,50,-48,50,-81v0,-54,-60,-87,-111,-87v-64,0,-122,61,-121,125v2,83,97,124,175,92r9,21v-97,39,-213,-13,-211,-116v2,-78,70,-145,147,-145v63,0,137,38,137,107v0,48,-30,105,-83,105v-16,0,-33,-5,-36,-23v-12,12,-24,23,-43,23v-33,0,-53,-29,-51,-60v2,-41,33,-83,77,-85v17,-1,37,11,41,28xm166,-81v41,0,75,-103,20,-103v-32,0,-52,37,-52,65v0,18,12,38,32,38","w":356},"A":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0","w":246},"B":{"d":"53,-125r0,98r96,0v33,0,50,-4,50,-45v0,-36,-6,-53,-46,-53r-100,0xm166,0r-144,0r0,-270r137,0v51,0,62,24,62,71v0,29,-7,47,-33,58v36,6,41,33,41,66v0,49,-17,75,-63,75xm53,-243r0,91v60,-7,138,26,138,-51v0,-68,-85,-31,-138,-40","w":249},"C":{"d":"231,-67v1,79,-66,68,-136,69v-49,0,-79,-31,-79,-85r0,-104v0,-86,61,-85,138,-85v60,0,75,29,74,86r-31,0v4,-48,-14,-59,-65,-59v-63,0,-85,8,-85,57v0,68,-22,169,53,163v51,-4,110,8,101,-45r0,-22r30,0r0,25","w":239},"D":{"d":"23,0r0,-270r131,0v33,0,93,4,93,104r0,64v0,27,-4,102,-85,102r-139,0xm54,-27r100,0v80,3,58,-80,62,-151v0,-15,-6,-65,-57,-65r-105,0r0,216","w":264},"E":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0","w":201},"F":{"d":"54,-243r0,94r131,0r0,26r-131,0r0,123r-31,0r0,-270r166,0r0,27r-135,0","w":197},"G":{"d":"122,-135r117,0r0,59v3,75,-47,78,-119,78v-72,0,-104,-13,-104,-97r0,-83v0,-106,62,-94,150,-94v49,0,78,24,72,81r-31,0v13,-58,-37,-54,-94,-54v-58,0,-67,11,-67,70r0,87v-4,63,37,63,97,63v70,0,66,-25,65,-83r-86,0r0,-27","w":250},"H":{"d":"245,-270r0,270r-31,0r0,-124r-158,0r0,124r-30,0r0,-270r30,0r0,119r158,0r0,-119r31,0","w":270},"I":{"d":"57,-270r0,270r-31,0r0,-270r31,0","w":82},"J":{"d":"147,-270r30,0r0,205v0,54,-34,67,-82,67v-47,0,-85,-8,-85,-61r0,-39r31,0v1,45,-8,73,49,73v28,0,57,0,57,-36r0,-209","w":203},"K":{"d":"57,-270r0,118r26,0r110,-118r40,0r-123,131r138,139r-41,0r-124,-125r-26,0r0,125r-31,0r0,-270r31,0","w":244},"L":{"d":"58,-270r0,243r137,0r0,27r-168,0r0,-270r31,0","w":200},"M":{"d":"292,-247r-103,247r-30,0r-103,-247r0,247r-31,0r0,-270r53,0r96,231r95,-231r53,0r0,270r-30,0r0,-247","w":347},"N":{"d":"257,-270r0,270r-50,0r-152,-245r0,245r-31,0r0,-270r51,0r152,247r0,-247r30,0","w":281},"O":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96","w":241},"P":{"d":"21,0r0,-270r138,0v52,0,64,36,64,82v0,24,0,83,-66,83r-105,0r0,105r-31,0xm193,-184v0,-93,-76,-49,-141,-59r0,111v62,-9,141,31,141,-52","w":237},"Q":{"d":"264,-33r-12,21r-21,-14v-25,31,-69,28,-120,28v-109,0,-90,-84,-93,-179v-3,-83,49,-95,135,-95v69,0,94,25,94,95v0,43,4,95,-5,129xm137,-117r78,51v5,-37,2,-81,2,-122v0,-33,-9,-57,-58,-57v-60,-1,-110,-6,-110,61r0,88v-7,84,44,70,110,71v18,0,39,-4,48,-17r-84,-54","w":265},"R":{"d":"55,-108r0,108r-30,0r0,-270v91,7,208,-32,208,78v0,39,-6,65,-47,72v57,0,42,66,44,120r-31,0v-3,-51,14,-108,-45,-108r-99,0xm55,-135r95,0v47,-1,53,-15,53,-60v0,-71,-91,-43,-148,-48r0,108","w":252},"S":{"d":"112,-125v-53,-4,-99,2,-99,-69v0,-72,33,-78,100,-78v58,0,100,3,97,76r-31,0v-1,-47,-10,-49,-67,-49v-60,0,-68,8,-68,45v0,51,24,46,74,48v64,3,97,2,97,75v0,76,-36,79,-104,79v-69,0,-105,-8,-99,-86r31,0v-1,59,11,59,68,59v58,0,73,0,73,-53v0,-51,-23,-43,-72,-47","w":226},"T":{"d":"120,-243r0,243r-31,0r0,-243r-88,0r0,-27r206,0r0,27r-87,0","w":208},"U":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194","w":265},"V":{"d":"201,-270r33,0r-96,270r-44,0r-96,-270r33,0r86,247","w":231},"W":{"d":"404,-270r-85,270r-47,0r-71,-243r-72,243r-45,0r-83,-270r31,0r74,247r73,-247r45,0r73,247r75,-247r32,0","w":404},"X":{"d":"231,-270r-87,130r93,140r-36,0r-82,-124r-84,124r-37,0r96,-140r-88,-130r36,0r77,116r76,-116r36,0","w":235},"Y":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0","w":227},"Z":{"d":"216,-270r0,28r-170,215r174,0r0,27r-211,0r0,-27r170,-216r-165,0r0,-27r202,0","w":229},"[":{"d":"20,-272r70,0r0,27r-40,0r0,272r40,0r0,27r-70,0r0,-326","w":111},"\\":{"d":"85,41r-103,-311r33,0r103,311r-33,0","w":100},"]":{"d":"92,54r-70,0r0,-27r40,0r0,-272r-40,0r0,-27r70,0r0,326","w":111},"^":{"d":"93,-270r25,0r74,176r-29,0r-58,-141r-58,141r-29,0","w":210},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"\u2018":{"d":"37,-232r13,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-18,8,-17,24","w":72},"a":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129","w":205},"b":{"d":"159,-94v0,-62,-7,-74,-52,-74v-50,0,-53,20,-53,74v0,61,11,73,53,73v50,0,52,-21,52,-73xm24,0r0,-270r29,0r1,105v9,-24,38,-26,60,-26v65,0,74,38,74,97v0,62,-8,96,-74,96v-26,0,-50,-4,-60,-25v-3,5,0,16,-1,23r-29,0","w":206},"c":{"d":"153,-68r29,0v4,58,-31,70,-80,70v-78,0,-84,-30,-84,-100v0,-62,11,-93,79,-93v48,-1,84,7,82,64r-29,0v2,-37,-15,-41,-51,-41v-50,0,-52,18,-52,78v0,53,3,69,58,69v40,0,50,-9,48,-47","w":196},"d":{"d":"101,-21v44,0,52,-15,52,-73v0,-52,-6,-74,-52,-74v-44,0,-54,8,-54,74v0,66,13,73,54,73xm153,0r0,-24v-11,23,-35,26,-61,26v-67,0,-74,-38,-74,-96v0,-57,6,-97,74,-97v21,0,53,2,61,25r0,-104r29,0r0,270r-29,0","w":206},"e":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57","w":203},"f":{"d":"60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26","w":108},"g":{"d":"100,-21v55,0,54,-31,54,-73v0,-53,-3,-74,-54,-74v-53,0,-52,24,-52,74v0,45,-3,73,52,73xm183,-189r0,211v0,50,-37,62,-83,62v-44,0,-79,-7,-76,-62r29,0v0,36,17,39,47,39v34,0,54,-4,54,-41r0,-43v-8,23,-39,25,-61,25v-61,0,-75,-31,-75,-96v0,-63,10,-97,75,-97v26,0,50,3,61,26r0,-24r29,0","w":206},"h":{"d":"53,-270r1,104v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-270r28,0","w":208},"i":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm53,-270r0,31r-29,0r0,-31r29,0","w":77},"j":{"d":"53,-189r0,212v2,34,-16,60,-55,50r0,-22v25,6,26,-18,26,-38r0,-202r29,0xm53,-270r0,31r-29,0r0,-31r29,0","w":75},"k":{"d":"53,-270r0,156r11,0r68,-75r35,0r-81,87r96,102r-37,0r-81,-91r-11,0r0,91r-29,0r0,-270r29,0","w":175},"l":{"d":"53,-270r0,270r-29,0r0,-270r29,0","w":77},"m":{"d":"52,-189v1,9,-2,22,1,29v10,-24,39,-31,63,-31v23,0,52,6,58,31v30,-50,133,-45,133,35r0,125r-28,0r0,-122v0,-32,-5,-46,-42,-46v-86,0,-50,100,-57,168r-29,0r0,-127v-1,-25,-1,-41,-42,-41v-81,0,-52,99,-57,168r-28,0r0,-189r28,0","w":330},"n":{"d":"53,-189v1,7,-2,18,1,23v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-189r28,0","w":208},"o":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74","w":205},"p":{"d":"106,-168v-54,0,-54,24,-54,74v0,45,3,73,54,73v44,0,52,-12,52,-73v0,-57,-4,-74,-52,-74xm52,-189v1,8,-1,18,1,24v12,-22,37,-26,61,-26v69,0,74,40,74,97v0,75,-19,96,-74,96v-23,1,-49,-4,-62,-24r0,104r-28,0r0,-271r28,0","w":206},"q":{"d":"102,-21v48,0,52,-24,52,-73v0,-53,-2,-74,-56,-74v-38,0,-50,8,-50,74v0,53,1,73,54,73xm183,-189r0,271r-29,0r0,-104v-9,22,-38,24,-56,24v-57,0,-79,-15,-79,-96v0,-62,7,-97,79,-97v22,0,46,5,56,25r0,-23r29,0","w":207},"r":{"d":"21,-189r28,0v0,8,-3,18,-1,24v28,-47,123,-31,106,41r-27,0v1,-28,-2,-44,-32,-44v-76,0,-37,104,-46,168r-28,0r0,-189","w":159},"s":{"d":"100,-191v35,-1,78,3,74,51r-29,0v2,-26,-11,-26,-45,-26v-36,0,-52,0,-52,23v0,34,8,32,38,33v49,3,93,-5,93,57v0,53,-37,55,-79,55v-48,0,-92,-5,-83,-62r29,0v-2,34,2,36,54,37v19,0,50,4,50,-29v0,-35,-15,-29,-50,-31v-41,-3,-82,2,-82,-52v0,-55,31,-56,82,-56","w":193},"t":{"d":"125,-189r0,23r-74,0r0,120v0,21,6,25,27,25v33,0,26,-21,27,-46r27,0v3,45,-10,69,-55,69v-85,0,-45,-101,-54,-168r-25,0r0,-23r25,0r0,-46r28,0r0,46r74,0","w":131},"u":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0","w":205},"v":{"d":"165,-189r-64,189r-40,0r-62,-189r28,0r55,167r52,-167r31,0","w":163},"w":{"d":"270,-189r-53,189r-41,0r-41,-169r-41,169r-41,0r-52,-189r30,0r43,169r42,-169r40,0r42,169r43,-169r29,0","w":271},"x":{"d":"158,-189r-60,90r67,99r-34,0r-49,-76r-49,76r-34,0r68,-99r-61,-90r32,0r44,69r43,-69r33,0","w":163},"y":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0","w":157},"z":{"d":"155,-189r0,26r-113,140r113,0r0,23r-146,0r0,-26r113,-140r-104,0r0,-23r137,0","w":163},"{":{"d":"17,-96r0,-27v68,-3,-23,-170,88,-149r0,27v-44,-11,-29,46,-29,80v0,37,-23,54,-26,56v3,3,26,18,26,55v0,32,-18,90,29,81r0,27v-60,15,-60,-44,-60,-102v0,-28,-4,-45,-28,-48","w":120},"|":{"d":"60,-270r0,360r-27,0r0,-360r27,0","w":93},"}":{"d":"103,-122r0,27v-68,3,23,170,-88,149r0,-27v44,11,29,-47,29,-81v0,-37,23,-53,26,-55v-3,-3,-26,-19,-26,-56v0,-31,18,-89,-29,-80r0,-27v60,-15,60,44,60,102v0,28,4,45,28,48","w":120},"~":{"d":"43,-77r-25,0v-4,-35,29,-73,64,-54v23,11,41,30,69,36v14,0,17,-17,16,-31r25,0v4,38,-35,75,-74,48v-18,-12,-36,-27,-58,-33v-10,0,-18,17,-17,34","w":210},"\u00a1":{"d":"64,-189r0,37r-32,0r0,-37r32,0xm32,81r3,-195r26,0r3,195r-32,0","w":97},"\u00a2":{"d":"108,-51r0,-147v-42,2,-42,25,-42,73v0,53,3,72,42,74xm108,-247r23,0r0,26v39,1,67,14,66,64r-29,0v2,-31,-7,-40,-37,-41r0,147v32,2,43,-12,41,-47r29,0v2,52,-20,72,-70,70r0,30r-23,0r0,-30v-66,1,-72,-44,-72,-97v0,-55,6,-94,72,-96r0,-26"},"\u00a3":{"d":"159,-131r0,26r-77,0v-2,37,8,63,-22,81v55,3,118,-2,175,-2r0,26r-209,0r0,-23v35,-9,24,-47,26,-82r-33,0r0,-26r33,0r0,-60v0,-71,28,-81,87,-81v75,-1,92,17,91,83r-29,0v1,-45,-5,-56,-56,-56v-58,0,-63,4,-63,54r0,60r77,0"},"\u2044":{"d":"206,-270r-184,270r-24,0r182,-270r26,0","w":203},"\u00a5":{"d":"182,-184r37,0r0,25r-53,0r-24,40r77,0r0,25r-81,0r0,94r-30,0r0,-94r-78,0r0,-25r74,0r-24,-40r-50,0r0,-25r35,0r-51,-86r35,0r76,126r74,-126r36,0"},"\u0192":{"d":"149,-151r-31,173v-3,54,-35,69,-89,59r4,-23v32,6,50,-2,56,-34r31,-175r-37,0r4,-24r37,0v8,-60,17,-112,96,-96r-4,23v-34,-4,-52,2,-57,34r-6,39r50,0r-5,24r-49,0"},"\u00a7":{"d":"57,-109v0,46,57,33,87,49v36,10,46,2,46,-36v0,-39,-55,-34,-85,-46v-33,-14,-48,-5,-48,33xm150,-31v-47,-16,-120,-8,-120,-77v0,-25,6,-43,31,-50v-18,-9,-20,-28,-20,-46v0,-65,25,-68,85,-68v72,0,85,9,86,71r-27,0v0,-41,-5,-46,-59,-46v-40,0,-58,-2,-58,36v0,51,59,45,93,58v33,13,56,12,56,54v1,22,-5,46,-26,54v24,9,27,30,27,53v0,69,-34,70,-92,70v-67,0,-94,-4,-94,-75r27,0v1,39,0,50,67,50v40,0,65,3,65,-44v0,-31,-12,-30,-41,-40"},"\u00a4":{"d":"179,-156v12,10,12,59,-1,69r20,20r-21,20r-19,-20v-24,15,-42,16,-69,3r-20,19r-19,-22r17,-18v-14,-20,-14,-56,2,-72r-21,-22r20,-20r21,21v27,-12,43,-12,70,0r20,-20r21,22xm122,-78v18,0,43,-13,43,-44v0,-28,-25,-41,-43,-41v-18,0,-42,12,-42,42v0,30,24,43,42,43"},"'":{"d":"18,-270r33,0v2,34,-3,62,-9,89r-15,0v-5,-27,-11,-54,-9,-89","w":68},"\u201c":{"d":"93,-232r14,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-19,8,-18,24xm37,-232r13,0r0,37r-32,0v3,-37,-13,-82,36,-77r0,16v-16,-1,-18,8,-17,24","w":129},"\u00ab":{"d":"69,-207r21,13r-43,90r47,91r-19,13r-55,-104xm135,-207r21,13r-42,90r47,91r-20,13r-54,-104","w":181},"\u2039":{"d":"69,-207r21,13r-43,90r47,91r-19,13r-55,-104","w":114},"\u203a":{"d":"25,-194r21,-13r48,103r-54,104r-20,-13r47,-91","w":114},"\ufb01":{"d":"159,-189r0,189r-29,0r0,-189r29,0xm60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26xm159,-270r0,31r-29,0r0,-31r29,0","w":183},"\ufb02":{"d":"60,-189r50,0r0,23r-50,0r0,166r-28,0r0,-166r-29,0r0,-23r29,0v-6,-62,14,-92,78,-82r0,23v-30,-3,-55,1,-50,33r0,26xm160,-270r0,270r-28,0r0,-270r28,0","w":184},"\u2013":{"d":"0,-112r180,0r0,27r-180,0r0,-27","w":180},"\u2020":{"d":"139,-270r0,74r63,0r0,25r-63,0r0,246r-30,0r0,-246r-62,0r0,-25r62,0r0,-74r30,0"},"\u2021":{"d":"139,-270r0,85r63,0r0,25r-63,0r0,119r63,0r0,25r-63,0r0,91r-30,0r0,-91r-62,0r0,-25r62,0r0,-119r-62,0r0,-25r62,0r0,-85r30,0"},"\u00b7":{"d":"78,-121r0,37r-32,0r0,-37r32,0","w":124},"\u00b6":{"d":"236,75r-27,0r0,-320r-32,0r0,320r-27,0r0,-181v-77,-3,-139,19,-138,-81v0,-52,13,-83,75,-83r149,0r0,345xm150,-131r0,-114r-63,0v-42,0,-44,15,-44,58v0,80,49,50,107,56"},"\u2022":{"d":"161,-135v0,37,-30,67,-67,67v-37,0,-68,-29,-68,-67v0,-37,30,-68,68,-68v37,0,67,31,67,68","w":187},"\u201a":{"d":"41,0r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":82},"\u201e":{"d":"36,0r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24xm93,0r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":129},"\u201d":{"d":"36,-233r-14,0r0,-37r32,0v-3,36,14,83,-36,77r0,-16v16,1,19,-8,18,-24xm93,-233r-14,0r0,-37r32,0v-3,37,13,82,-36,77r0,-16v16,1,19,-8,18,-24","w":129},"\u00bb":{"d":"91,-194r21,-13r49,103r-54,104r-20,-13r47,-91xm25,-194r21,-13r48,103r-54,104r-20,-13r47,-91","w":181},"\u2026":{"d":"76,-37r0,37r-32,0r0,-37r32,0xm196,-37r0,37r-32,0r0,-37r32,0xm316,-37r0,37r-32,0r0,-37r32,0","w":360},"\u2030":{"d":"251,-135v59,0,61,32,59,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm262,-270r-183,272r-24,0r182,-272r25,0xm251,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm394,-135v59,0,62,32,60,88v-2,43,-18,49,-60,49v-60,0,-59,-34,-57,-88v1,-43,15,-49,57,-49xm394,-18v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-36,32,-36,67v0,30,6,30,36,30xm65,-272v60,0,62,32,60,88v-2,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm65,-155v49,0,38,-31,38,-69v0,-28,-6,-28,-38,-28v-49,0,-35,32,-35,67v0,30,5,30,35,30","w":461},"\u00bf":{"d":"103,-111r31,0v1,42,-7,50,-51,67v-30,11,-34,15,-34,56v0,40,10,45,54,45v53,0,60,-12,58,-61r29,0v3,71,-23,88,-87,88v-59,0,-82,-13,-82,-72v0,-44,3,-65,47,-80v34,-11,36,-14,35,-43xm134,-189r0,37r-32,0r0,-37r32,0","w":210},"`":{"d":"41,-267r54,40r-10,15r-58,-36","w":121},"\u00b4":{"d":"81,-267r14,19r-58,36r-10,-15","w":121},"\u02c6":{"d":"90,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":179},"\u02dc":{"d":"62,-248v24,0,59,33,72,0r15,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,18,-27,35,-27","w":176},"\u00af":{"d":"28,-233r100,0r0,23r-100,0r0,-23","w":156},"\u02d8":{"d":"27,-265r19,0v7,44,76,44,83,0r19,0v-3,31,-30,54,-61,54v-31,0,-57,-23,-60,-54","w":175},"\u02d9":{"d":"59,-235r0,27r-32,0r0,-27r32,0","w":85},"\u00a8":{"d":"59,-235r0,27r-32,0r0,-27r32,0xm131,-235r0,27r-32,0r0,-27r32,0","w":157},"\u02da":{"d":"27,-234v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm41,-234v0,10,7,18,17,18v10,0,18,-8,18,-18v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17","w":116},"\u00b8":{"d":"47,14r19,11r-27,39r-16,-9","w":97},"\u02dd":{"d":"76,-270r16,18r-54,42r-11,-14xm133,-270r16,18r-54,42r-11,-14","w":176},"\u02db":{"d":"27,38v0,-22,17,-42,48,-38v-22,5,-46,50,-6,51v5,0,11,0,15,-2r0,17v-25,8,-57,0,-57,-28","w":110},"\u02c7":{"d":"89,-211r-62,-38r9,-16r53,27r56,-27r8,16","w":179},"\u2014":{"d":"0,-112r360,0r0,27r-360,0r0,-27","w":360},"\u00c6":{"d":"221,-243r0,92r135,0r0,25r-135,0r0,99r142,0r0,27r-173,0r0,-56r-126,0r-31,56r-36,0r149,-270r217,0r0,27r-142,0xm190,-83r0,-160r-25,0r-87,160r112,0","w":375},"\u00aa":{"d":"112,-157v0,-3,1,-8,-1,-9v-25,22,-87,19,-87,-24v0,-45,56,-44,85,-28v0,-27,0,-37,-29,-37v-22,0,-31,2,-30,18r-21,0v0,-34,23,-35,49,-35v30,0,53,2,53,38r0,77r-19,0xm75,-172v18,0,34,0,34,-18v0,-18,-12,-20,-31,-20v-23,0,-31,1,-31,18v0,19,9,20,28,20","w":158},"\u0141":{"d":"58,-144r0,117r137,0r0,27r-168,0r0,-118r-30,29r0,-31r30,-28r0,-122r31,0r0,96r56,-56r0,31","w":200},"\u00d8":{"d":"215,-201r-161,156v22,31,63,18,105,20v87,5,47,-104,56,-176xm46,-69r161,-157v-14,-28,-59,-15,-97,-19v-97,-10,-55,101,-64,176xm255,-270r0,31r-17,13v15,39,5,92,7,141v4,87,-55,87,-135,87v-29,0,-59,-2,-78,-27r-26,25r0,-30r16,-15v-11,-27,-6,-89,-7,-129v0,-104,58,-99,144,-98v29,0,54,7,69,26","w":260},"\u0152":{"d":"127,-245v-66,0,-81,3,-81,75r-1,72v0,71,20,73,82,73v67,0,86,-3,86,-73r0,-72v0,-72,-16,-75,-86,-75xm243,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0v-1,-9,2,-21,-1,-28v-15,30,-52,30,-85,30v-81,0,-112,-10,-112,-100r0,-72v0,-80,25,-102,112,-102v27,-1,78,4,86,31r0,-29r173,0r0,27r-143,0","w":399},"\u00ba":{"d":"81,-272v42,0,51,12,51,58v0,44,-4,60,-51,60v-49,0,-55,-11,-55,-60v0,-42,5,-58,55,-58xm81,-255v-31,0,-33,5,-33,41v0,42,1,42,33,42v28,0,30,-7,30,-42v0,-33,-1,-41,-30,-41","w":158},"\u00e6":{"d":"182,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm95,-91v-34,0,-48,1,-48,32v0,36,15,38,48,38v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35xm153,-95r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v17,0,62,-1,69,24v12,-22,47,-24,70,-24v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36r29,0v3,54,-35,59,-80,59v-30,0,-62,-3,-73,-31v-9,28,-43,31,-75,31v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19","w":335},"\u0131":{"d":"53,-189r0,189r-29,0r0,-189r29,0","w":77},"\u0142":{"d":"53,-154r0,154r-29,0r0,-131r-23,23r0,-26r23,-22r0,-114r29,0r0,91r23,-23r0,25","w":77},"\u00f8":{"d":"192,-194r0,24r-13,13v8,18,7,37,7,63v-1,69,-9,96,-82,96v-20,0,-55,-1,-70,-18r-23,22r0,-24r15,-14v-8,-16,-7,-44,-7,-62v0,-73,8,-97,85,-97v20,0,49,-1,66,17xm156,-133r-101,96v4,16,37,16,49,16v49,0,51,-5,53,-73v0,-13,0,-26,-1,-39xm49,-56r101,-97v-6,-15,-36,-15,-46,-15v-49,0,-58,6,-56,74v0,13,0,26,1,38","w":205},"\u0153":{"d":"156,-94v0,-69,-3,-74,-58,-74v-50,0,-50,12,-50,74v0,62,4,73,54,73v52,0,54,-12,54,-73xm18,-94v0,-65,5,-97,79,-97v24,-1,66,0,74,26v9,-25,41,-26,69,-26v69,0,84,27,81,103r-136,0v0,60,4,67,55,67v43,0,54,-3,52,-36r29,0v3,54,-36,60,-81,59v-31,0,-59,-2,-70,-26v-10,28,-46,26,-71,26v-72,0,-81,-29,-81,-96xm185,-111r107,0v-1,-54,-9,-57,-52,-57v-51,0,-53,13,-55,57","w":339},"\u00df":{"d":"30,0r0,-211v0,-52,24,-61,74,-61v37,0,76,7,76,53v0,25,-13,39,-36,45v48,8,50,43,50,84v0,47,-4,92,-64,92v-35,0,-59,-18,-54,-59r27,0v-1,22,5,36,27,36v25,0,34,-7,34,-69v0,-54,-16,-78,-77,-72r0,-23v37,3,73,-8,63,-30v0,-32,-15,-34,-46,-34v-31,0,-46,4,-46,38r0,211r-28,0","w":212},"\u00b9":{"d":"97,-272r0,163r-24,0r0,-146r-45,46r-12,-15r48,-48r33,0","w":149},"\u2212":{"d":"18,-89r0,-27r174,0r0,27r-174,0","w":210},"\u00b0":{"d":"126,-218v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm108,-218v0,-19,-16,-36,-36,-36v-19,0,-36,17,-36,36v0,20,16,36,36,36v19,0,36,-16,36,-36","w":144},"\u00f3":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00d6":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm101,-316r0,27r-32,0r0,-27r32,0xm173,-316r0,27r-32,0r0,-27r32,0","w":241},"\u00f6":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00ca":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm102,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":201},"\u00fb":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00bc":{"d":"329,-162r0,108r24,0r0,21r-24,0r0,33r-23,0r0,-33r-97,0r0,-26r87,-103r33,0xm306,-54r-1,-93r-78,93r79,0xm289,-270r-183,270r-24,0r182,-270r25,0xm100,-270r0,162r-23,0r0,-145r-45,46r-12,-14r48,-49r32,0","w":372},"\u00ac":{"d":"165,-46r0,-71r-147,0r0,-27r174,0r0,98r-27,0","w":210},"\u00cb":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm81,-316r0,27r-32,0r0,-27r32,0xm153,-316r0,27r-32,0r0,-27r32,0","w":201},"\u00bd":{"d":"282,-270r-183,270r-24,0r182,-270r25,0xm65,-270r33,0r0,162r-24,0r0,-145r-45,46r-12,-14xm252,-22r103,0r0,22r-126,0v-4,-55,8,-78,62,-78v33,0,41,-2,41,-34v0,-28,-8,-30,-38,-30v-44,-1,-43,5,-42,35r-23,0v0,-42,0,-56,65,-56v47,0,62,10,62,51v0,44,-17,52,-61,55v-38,3,-44,7,-43,35","w":372},"\u00d5":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm94,-329v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":241},"\u00fa":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00e9":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm122,-267r14,19r-58,36r-10,-15","w":203},"\u00ed":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm59,-267r14,19r-58,36r-10,-15","w":77},"\u00d0":{"d":"25,-152r0,-118r132,0v33,0,92,4,92,104r0,64v0,27,-4,102,-85,102r-139,0r0,-126r-37,0r0,-26r37,0xm56,-243r0,91r74,0r0,26r-74,0r0,99r101,0v80,3,58,-80,62,-151v0,-15,-6,-65,-57,-65r-106,0","w":264},"\u00ee":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm39,-265r63,39r-9,15r-54,-27r-56,27r-7,-15","w":77},"\u00ae":{"d":"141,-272v76,0,137,61,137,137v0,76,-61,137,-137,137v-76,0,-138,-61,-138,-137v0,-76,62,-137,138,-137xm141,-251v-64,0,-116,52,-116,115v0,64,52,117,116,117v64,0,115,-53,115,-117v0,-63,-51,-115,-115,-115xm163,-127r46,69r-24,0r-44,-67r-30,0r0,67r-21,0r0,-154v52,3,119,-15,121,41v0,30,-21,43,-48,44xm111,-193r0,49v32,1,85,2,79,-27v-6,-32,-48,-19,-79,-22","w":280},"\u00a6":{"d":"60,63r-27,0r0,-126r27,0r0,126xm60,-243r0,126r-27,0r0,-126r27,0","w":93},"\u00fe":{"d":"106,-168v-54,0,-54,24,-54,74v0,45,3,73,54,73v44,0,52,-12,52,-73v0,-57,-4,-74,-52,-74xm53,-22v-4,31,0,70,-1,104r-28,0r0,-352r28,0r1,105v12,-22,37,-26,61,-26v69,0,74,40,74,97v0,75,-19,96,-74,96v-22,0,-50,-2,-61,-24","w":206},"\u00c3":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm97,-329v24,0,59,33,72,0r15,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,18,-27,35,-27","w":246},"\u00fd":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0xm105,-267r14,19r-58,36r-10,-15","w":157},"\u00c1":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm143,-348r14,19r-58,36r-9,-15","w":246},"\u00c7":{"d":"122,14r19,11r-27,39r-16,-9xm231,-67v1,79,-66,68,-136,69v-49,0,-79,-31,-79,-85r0,-104v0,-86,61,-85,138,-85v60,0,75,29,74,86r-31,0v4,-48,-14,-59,-65,-59v-63,0,-85,8,-85,57v0,68,-22,169,53,163v51,-4,110,8,101,-45r0,-22r30,0r0,25","w":239},"\u00f1":{"d":"53,-189v1,7,-2,18,1,23v9,-23,36,-25,58,-25v49,0,72,12,72,65r0,126r-29,0r0,-128v0,-35,-13,-40,-45,-40v-88,0,-48,99,-57,168r-28,0r0,-189r28,0xm78,-248v24,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":208},"\u00f0":{"d":"48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm67,-264r26,-8v13,8,25,16,35,26r38,-12r17,15r-40,12v28,31,43,70,43,117v0,105,-11,116,-83,116v-70,0,-84,-16,-84,-96v0,-80,14,-97,84,-97v24,0,31,3,42,11v-6,-14,-16,-28,-29,-42r-40,12r-16,-13r42,-14v-11,-9,-23,-19,-35,-27","w":205},"\u00c5":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm92,-315v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm106,-315v0,10,7,18,17,18v10,0,18,-8,18,-18v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17","w":246},"\u03bc":{"d":"152,0v-1,-8,2,-19,-1,-25v-13,33,-68,31,-98,20r0,87r-29,0r0,-271r29,0r0,121v0,31,2,47,39,47v40,0,60,-6,60,-51r0,-117r29,0r0,189r-29,0","w":205},"\u00d9":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm99,-348r53,40r-9,15r-58,-36","w":265},"\u00c8":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm81,-348r54,40r-10,15r-58,-36","w":201},"\u0160":{"d":"112,-125v-53,-4,-99,2,-99,-69v0,-72,33,-78,100,-78v58,0,100,3,97,76r-31,0v-1,-47,-10,-49,-67,-49v-60,0,-68,8,-68,45v0,51,24,46,74,48v64,3,97,2,97,75v0,76,-36,79,-104,79v-69,0,-105,-8,-99,-86r31,0v-1,59,11,59,68,59v58,0,73,0,73,-53v0,-51,-23,-43,-72,-47xm112,-292r-62,-38r9,-16r53,27r56,-27r8,16","w":226},"\u00f5":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm76,-248v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":205},"\u00d1":{"d":"257,-270r0,270r-50,0r-152,-245r0,245r-31,0r0,-270r51,0r152,247r0,-247r30,0xm114,-329v24,0,60,33,72,0r16,10v-8,14,-20,27,-37,27v-22,-1,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":281},"\u00da":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm153,-348r14,19r-58,36r-10,-15","w":265},"\u00c2":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm124,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":246},"\u00f4":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00ff":{"d":"159,-189r-55,202v-9,40,-25,80,-76,69r0,-22v38,9,43,-35,49,-60r-10,0r-68,-189r29,0r59,168r42,-168r30,0xm59,-235r0,27r-32,0r0,-27r32,0xm131,-235r0,27r-32,0r0,-27r32,0","w":157},"\u00c9":{"d":"45,-243r0,92r137,0r0,25r-137,0r0,99r143,0r0,27r-173,0r0,-270r173,0r0,27r-143,0xm121,-348r14,19r-58,36r-10,-15","w":201},"\u00d2":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm94,-348r54,40r-10,15r-58,-36","w":241},"\u00e2":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm103,-265r63,39r-9,15r-54,-27r-55,27r-8,-15","w":205},"\u00d7":{"d":"18,-157r18,-18r69,70r70,-70r17,18r-69,70r69,69r-17,18r-70,-70r-69,70r-18,-18r69,-69","w":210},"\u00f7":{"d":"192,-116r0,27r-174,0r0,-27r174,0xm124,-15r-38,0r0,-38r38,0r0,38xm124,-152r-38,0r0,-37r38,0r0,37","w":210},"\u00e7":{"d":"100,14r20,11r-28,39r-15,-9xm153,-68r29,0v4,58,-31,70,-80,70v-78,0,-84,-30,-84,-100v0,-62,11,-93,79,-93v48,-1,84,7,82,64r-29,0v2,-37,-15,-41,-51,-41v-50,0,-52,18,-52,78v0,53,3,69,58,69v40,0,50,-9,48,-47","w":196},"\u00b2":{"d":"38,-130r103,0r0,21r-127,0v-4,-55,8,-78,62,-78v33,0,42,-2,42,-34v0,-28,-8,-30,-38,-30v-44,-1,-43,6,-42,36r-24,0v0,-43,0,-57,66,-57v47,0,61,10,61,51v0,44,-16,53,-60,56v-39,3,-44,6,-43,35","w":149},"\u00f9":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm69,-267r53,40r-9,15r-59,-36","w":205},"\u00c0":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm104,-348r53,40r-9,15r-58,-36","w":246},"\u00db":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm133,-346r62,39r-8,15r-54,-27r-56,27r-7,-15","w":265},"\u017e":{"d":"155,-189r0,26r-113,140r113,0r0,23r-146,0r0,-26r113,-140r-104,0r0,-23r137,0xm81,-211r-62,-38r9,-16r53,27r56,-27r8,16","w":163},"\u0178":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0xm94,-316r0,27r-32,0r0,-27r32,0xm166,-316r0,27r-32,0r0,-27r32,0","w":227},"\u00c4":{"d":"192,-57r-137,0r-21,57r-32,0r98,-270r44,0r100,270r-31,0xm183,-82r-60,-163r-60,163r120,0xm103,-316r0,27r-31,0r0,-27r31,0xm175,-316r0,27r-31,0r0,-27r31,0","w":246},"\u00ce":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm42,-346r62,39r-9,15r-53,-27r-56,27r-8,-15","w":82},"\u00ef":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm19,-235r0,27r-32,0r0,-27r32,0xm91,-235r0,27r-32,0r0,-27r32,0","w":77},"\u00d3":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm141,-348r14,19r-58,36r-10,-15","w":241},"\u00e5":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm72,-234v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,32,-31,32v-17,0,-31,-15,-31,-32xm85,-234v0,10,8,18,18,18v10,0,17,-8,17,-18v0,-10,-7,-17,-17,-17v-10,0,-18,7,-18,17","w":205},"\u00dd":{"d":"230,-270r-103,157r0,113r-30,0r0,-113r-99,-157r35,0r80,126r80,-126r37,0xm140,-348r14,19r-58,36r-10,-15","w":227},"\u2122":{"d":"339,-270r0,152r-25,0r-1,-130r-52,130r-14,0r-51,-130r0,130r-25,0r0,-152r40,0r44,107r45,-107r39,0xm145,-270r0,22r-47,0r0,130r-27,0r0,-130r-48,0r0,-22r122,0","w":360},"\u00b3":{"d":"64,-183r0,-20v27,-2,53,9,53,-24v0,-23,-4,-25,-42,-25v-33,-1,-36,5,-36,31r-23,0v-2,-45,18,-51,62,-51v37,0,62,0,62,42v0,21,-2,37,-28,38v27,2,32,14,32,38v0,47,-26,47,-68,47v-45,0,-66,-9,-62,-54r23,0v-1,29,0,34,39,34v39,0,45,-1,45,-30v0,-35,-28,-24,-57,-26","w":149},"\u017d":{"d":"216,-270r0,28r-170,215r174,0r0,27r-211,0r0,-27r170,-216r-165,0r0,-27r202,0xm114,-292r-62,-38r8,-16r54,27r56,-27r7,16","w":229},"\u00be":{"d":"333,-162r0,108r24,0r0,21r-24,0r0,33r-23,0r0,-33r-97,0r0,-26r87,-103r33,0xm310,-54r-1,-93r-78,93r79,0xm306,-270r-183,270r-24,0r182,-270r25,0xm67,-183r0,-20v27,-2,53,9,53,-24v0,-23,-4,-25,-42,-25v-33,-1,-36,5,-36,31r-24,0v-2,-45,18,-51,62,-51v37,0,63,0,63,42v0,21,-3,37,-29,38v27,2,33,14,33,38v0,49,-27,47,-69,47v-45,0,-66,-9,-62,-54r24,0v0,29,-1,34,38,34v39,0,45,-1,45,-30v0,-36,-27,-24,-56,-26","w":372},"\u20ac":{"d":"246,-242r-11,33v-18,-39,-60,-36,-112,-36v-36,0,-59,20,-55,71r156,0r-7,24r-149,0r0,22r142,0r-7,24r-135,0v0,55,6,79,54,79v53,0,93,7,115,-34r0,36v-39,37,-69,23,-121,25v-56,2,-83,-41,-78,-106r-34,0r8,-24r26,0r0,-22r-34,0r8,-24r26,0v1,-93,52,-98,125,-98v18,0,55,-2,83,30"},"\u00f2":{"d":"19,-94v0,-80,14,-97,84,-97v70,0,83,17,83,97v0,80,-13,96,-83,96v-70,0,-84,-16,-84,-96xm48,-94v0,66,4,73,55,73v51,0,54,-7,54,-73v0,-66,-3,-74,-54,-74v-51,0,-55,8,-55,74xm76,-267r53,40r-9,15r-58,-36","w":205},"\u00fc":{"d":"151,0v-1,-8,2,-19,-1,-25v-10,23,-34,27,-59,27v-96,0,-60,-110,-67,-191r28,0r0,121v0,31,2,47,39,47v40,0,61,-6,61,-51r0,-117r28,0r0,189r-29,0xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00eb":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm82,-235r0,27r-32,0r0,-27r32,0xm154,-235r0,27r-32,0r0,-27r32,0","w":203},"\u00b1":{"d":"92,-189r27,0r0,55r73,0r0,27r-73,0r0,54r-27,0r0,-54r-74,0r0,-27r74,0r0,-55xm18,-4r0,-27r174,0r0,27r-174,0","w":210},"\u00e1":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm122,-267r14,19r-58,36r-9,-15","w":205},"\u00cf":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm21,-316r0,27r-32,0r0,-27r32,0xm93,-316r0,27r-32,0r0,-27r32,0","w":82},"\u00ec":{"d":"53,-189r0,189r-29,0r0,-189r29,0xm19,-267r54,40r-10,15r-58,-36","w":77},"\u00cd":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm61,-348r14,19r-58,36r-10,-15","w":82},"\u00a9":{"d":"141,-272v76,0,137,61,137,137v0,76,-61,137,-137,137v-76,0,-138,-61,-138,-137v0,-76,62,-137,138,-137xm141,-251v-64,0,-116,52,-116,115v0,64,52,117,116,117v64,0,115,-53,115,-117v0,-63,-51,-115,-115,-115xm189,-110r22,0v-17,89,-140,56,-140,-26v0,-45,28,-79,75,-79v33,0,60,19,65,52r-22,0v-19,-62,-104,-31,-97,27v-10,58,86,88,97,26","w":280},"\u00e4":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm82,-235r0,27r-31,0r0,-27r31,0xm154,-235r0,27r-31,0r0,-27r31,0","w":205},"\u00e0":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm76,-267r53,40r-9,15r-58,-36","w":205},"\u0161":{"d":"100,-191v35,-1,78,3,74,51r-29,0v2,-26,-11,-26,-45,-26v-36,0,-52,0,-52,23v0,34,8,32,38,33v49,3,93,-5,93,57v0,53,-37,55,-79,55v-48,0,-92,-5,-83,-62r29,0v-2,34,2,36,54,37v19,0,50,4,50,-29v0,-35,-15,-29,-50,-31v-41,-3,-82,2,-82,-52v0,-55,31,-56,82,-56xm96,-211r-62,-38r8,-16r54,27r56,-27r7,16","w":193},"\u00cc":{"d":"57,-270r0,270r-31,0r0,-270r31,0xm22,-348r53,40r-9,15r-59,-36","w":82},"\u00d4":{"d":"15,-181v-5,-83,42,-94,124,-91v67,2,88,23,88,91r0,96v4,78,-44,87,-124,87v-65,0,-88,-23,-88,-87r0,-96xm196,-181v5,-70,-34,-64,-93,-64v-82,0,-54,93,-58,160v-4,71,38,59,94,60v40,0,57,-6,57,-60r0,-96xm121,-346r63,39r-9,15r-54,-27r-55,27r-8,-15","w":241},"\u00de":{"d":"21,0r0,-270r31,0r0,53r107,0v52,0,64,35,64,81v0,24,0,83,-66,83r-105,0r0,53r-31,0xm193,-132v0,-93,-77,-47,-141,-58r0,110v62,-9,141,31,141,-52","w":237},"\u00e8":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm75,-267r54,40r-10,15r-58,-36","w":203},"\u00e3":{"d":"95,-21v28,0,57,0,57,-35v0,-36,-21,-35,-57,-35v-34,0,-48,1,-48,32v0,36,15,38,48,38xm181,0r-28,0v-1,-6,1,-15,-1,-20v-11,22,-38,22,-62,22v-42,0,-72,-8,-72,-57v0,-52,26,-59,73,-59v21,0,54,5,62,19r0,-35v0,-35,-19,-38,-51,-38v-24,-1,-53,1,-49,32r-30,0v-2,-51,33,-56,76,-55v48,0,82,4,82,62r0,129xm76,-248v25,0,59,33,72,0r16,10v-8,14,-20,27,-37,27v-22,0,-57,-32,-69,-1r-16,-9v7,-14,17,-27,34,-27","w":205},"\u00dc":{"d":"209,-270r31,0r0,194v0,72,-43,78,-107,78v-59,0,-107,-2,-107,-78r0,-194r31,0r0,194v0,44,10,51,76,51v54,0,76,-1,76,-51r0,-194xm113,-316r0,27r-32,0r0,-27r32,0xm185,-316r0,27r-32,0r0,-27r32,0","w":265},"\u00ea":{"d":"155,-57r29,0v3,54,-35,59,-80,59v-74,0,-85,-24,-85,-96v0,-78,17,-97,85,-97v69,0,83,28,80,103r-136,0v0,60,5,67,56,67v43,0,52,-3,51,-36xm48,-111r107,0v-1,-54,-8,-57,-51,-57v-51,0,-54,13,-56,57xm102,-265r63,39r-9,15r-54,-27r-56,27r-7,-15","w":203},"\u00a0":{"w":124}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1992, 1998 Adobe Systems Incorporated.  All Rights
 * Reserved.Eurostile is a trademark of Nebiolo.
 */
Cufon.registerFont({"w":259,"face":{"font-family":"Eurostile","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-62 -355 456.416 90","underline-thickness":"18","underline-position":"-36","stemh":"45","stemv":"62","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":129},"!":{"d":"92,-63r0,63r-58,0r0,-63r58,0xm96,-270r-2,164r-62,0r-2,-164r66,0","w":125},"\"":{"d":"15,-270r49,0v3,39,-5,67,-15,93r-19,0v-10,-26,-18,-54,-15,-93xm95,-270r49,0v3,39,-5,67,-15,93r-19,0v-10,-26,-18,-54,-15,-93","w":159},"#":{"d":"102,-270r38,0r-14,76r36,0r14,-76r38,0r-14,76r29,0r0,41r-36,0r-8,47r34,0r0,41r-43,0r-12,65r-38,0r12,-65r-36,0r-12,65r-39,0r12,-65r-32,0r0,-41r40,0r9,-47r-35,0r0,-41r42,0xm118,-153r-9,47r37,0r10,-47r-38,0"},"$":{"d":"77,-189v-6,31,44,23,69,26v65,7,105,8,105,79v0,66,-30,86,-105,86r0,33r-35,0r0,-33v-66,0,-103,-13,-103,-91r65,0v-4,48,36,35,73,35v26,0,40,0,40,-28v8,-30,-47,-26,-75,-29v-87,-8,-99,-23,-99,-78v0,-69,24,-83,99,-83r0,-30r35,0r0,30v57,3,96,9,96,83r-63,0v4,-37,-37,-27,-68,-27v-22,0,-34,3,-34,27"},"%":{"d":"267,-270r-159,270r-44,0r160,-270r43,0xm258,-135v59,0,62,32,60,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm258,-29v31,8,23,-28,24,-53v0,-21,-5,-22,-24,-22v-30,-7,-21,29,-21,52v0,23,3,23,21,23xm66,-272v60,0,62,32,59,88v-1,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm66,-166v30,8,23,-29,23,-53v0,-21,-4,-22,-23,-22v-30,-7,-22,28,-22,52v0,23,4,23,22,23","w":326},"&":{"d":"174,-61r-72,-62v-17,2,-16,19,-16,32v-3,49,53,38,88,30xm168,-185v0,-30,-1,-32,-31,-34v-33,-2,-26,37,-10,51r67,59r0,-36r57,0v-1,28,4,60,-7,79r30,27r-32,39r-25,-22v-18,24,-50,24,-80,24v-69,0,-118,-8,-118,-86v0,-34,7,-69,48,-70v-17,-15,-20,-24,-20,-46v0,-62,30,-72,90,-72v66,0,98,15,93,87r-62,0","w":278},"\u2019":{"d":"20,-270r58,0v-2,61,16,118,-61,112r0,-27v21,0,25,-7,25,-25r-22,0r0,-60","w":95},"(":{"d":"21,-60v0,-106,-39,-221,97,-212r0,59v-27,0,-29,16,-29,46r0,116v0,23,0,46,29,46r0,59v-94,0,-97,-30,-97,-114","w":138},")":{"d":"21,-272v137,-8,97,105,97,212v0,84,-3,114,-97,114r0,-59v29,0,29,-23,29,-46r0,-116v0,-30,-2,-46,-29,-46r0,-59","w":138},"*":{"d":"203,-203r-45,14r27,39r-26,20r-28,-41r-30,40r-28,-19r29,-39r-46,-17r11,-32r46,17r0,-49r33,0r0,49r47,-17"},"+":{"d":"87,-120r0,-69r42,0r0,69r69,0r0,41r-69,0r0,72r-42,0r0,-72r-69,0r0,-41r69,0","w":216},",":{"d":"34,-60r59,0v-2,62,15,117,-62,111r0,-27v21,0,26,-6,26,-24r-23,0r0,-60","w":129},"-":{"d":"0,-129r98,0r0,59r-98,0r0,-59","w":97},".":{"d":"91,-63r0,63r-59,0r0,-63r59,0","w":129},"\/":{"d":"219,-270r-159,311r-49,0r159,-311r49,0","w":229},"0":{"d":"130,-272v57,0,112,4,112,95r0,84v0,91,-55,95,-112,95v-57,0,-113,-4,-113,-95r0,-84v0,-91,56,-95,113,-95xm130,-213v-36,0,-44,1,-44,47r0,62v0,46,8,47,44,47v36,0,44,-1,44,-47r0,-62v0,-46,-8,-47,-44,-47"},"1":{"d":"201,-270r0,270r-72,0r0,-206r-70,63r-41,-46r99,-81r84,0"},"2":{"d":"235,-56r0,56r-213,0v1,-94,-12,-129,95,-148v47,-8,50,-10,50,-38v0,-27,-9,-30,-38,-30v-40,0,-38,11,-38,45r-69,0v-4,-80,32,-101,107,-101v63,0,106,9,106,85v0,60,-17,72,-74,87v-55,15,-70,8,-70,44r144,0"},"3":{"d":"112,-112r0,-52v29,0,63,1,55,-22v0,-22,-1,-30,-38,-30v-29,0,-40,4,-38,37r-68,0v-3,-81,36,-93,109,-93v44,0,103,4,103,73v0,30,-8,56,-41,60r0,3v35,1,45,27,45,58v0,70,-46,80,-107,80v-69,0,-118,-12,-112,-97r68,0v-3,33,12,41,41,41v30,0,41,-2,41,-33v8,-23,-25,-26,-58,-25"},"4":{"d":"222,-270r0,165r24,0r0,52r-24,0r0,53r-68,0r0,-53r-141,0r0,-77r103,-140r106,0xm154,-105v-2,-35,4,-79,-2,-110r-83,110r85,0"},"5":{"d":"23,-78r69,0v1,23,14,24,34,24v31,0,41,-1,41,-36v0,-35,-1,-42,-41,-42v-23,0,-30,0,-34,13r-62,0r0,-151r195,0r0,52r-133,0r0,52v18,-19,25,-20,59,-20v66,0,85,26,85,89v0,86,-32,99,-110,99v-67,0,-101,-13,-103,-80"},"6":{"d":"123,-108v-27,0,-34,3,-34,24v0,25,4,30,34,30v39,0,44,-1,44,-31v0,-23,-12,-23,-44,-23xm238,-188r-69,0v0,-27,-10,-28,-37,-28v-51,-12,-44,40,-42,80v9,-28,26,-28,49,-28v63,0,96,8,96,78v0,75,-34,88,-103,88v-89,0,-111,-18,-111,-109r0,-68v0,-84,33,-97,111,-97v60,0,111,8,106,84"},"7":{"d":"225,-270r0,60r-90,210r-76,0r92,-210r-130,0r0,-60r204,0"},"8":{"d":"129,-111v-33,0,-41,3,-41,29v0,23,10,28,41,28v40,0,42,-6,42,-30v0,-25,-5,-27,-42,-27xm130,2v-58,0,-110,-7,-110,-77v0,-34,19,-58,49,-64v-33,-8,-44,-28,-44,-62v0,-66,52,-71,105,-71v58,0,105,5,105,74v0,38,-12,47,-41,61v35,5,45,30,45,62v0,71,-49,77,-109,77xm130,-163v31,0,37,-4,37,-29v0,-19,-2,-24,-37,-24v-30,0,-37,3,-37,27v0,23,11,26,37,26"},"9":{"d":"135,-162v27,0,34,-3,34,-24v0,-25,-4,-30,-34,-30v-39,0,-44,1,-44,31v0,23,12,23,44,23xm21,-82r68,0v0,27,10,28,37,28v51,12,44,-40,42,-80v-9,28,-26,28,-49,28v-63,0,-96,-8,-96,-78v0,-75,34,-88,103,-88v89,0,111,18,111,109r0,68v0,84,-33,97,-111,97v-60,0,-110,-8,-105,-84"},":":{"d":"91,-63r0,63r-59,0r0,-63r59,0xm91,-189r0,63r-59,0r0,-63r59,0","w":129},";":{"d":"31,51r0,-27v21,0,26,-6,26,-24r-23,0r0,-60r59,0v-2,62,15,117,-62,111xm93,-189r0,63r-59,0r0,-63r59,0","w":129},"<":{"d":"198,-189r0,46r-122,44r122,42r0,47r-180,-68r0,-43","w":216},"=":{"d":"18,-162r180,0r0,42r-180,0r0,-42xm18,-79r180,0r0,42r-180,0r0,-42","w":216},">":{"d":"18,-189r180,68r0,43r-180,68r0,-47r122,-43r-122,-43r0,-46","w":216},"?":{"d":"130,-95r-62,0v-5,-45,12,-62,50,-77v13,-6,22,-11,22,-31v0,-19,-10,-22,-29,-22v-23,0,-37,7,-33,33r-61,0v-3,-68,32,-80,94,-80v55,0,91,8,91,69v0,47,-15,57,-53,74v-19,8,-20,14,-19,34xm128,-63r0,63r-58,0r0,-63r58,0","w":217},"@":{"d":"140,-165v-38,-2,-50,68,-8,70v40,4,53,-70,8,-70xm179,-182r4,-19r34,0r-18,106v-1,7,-3,13,5,13v15,0,35,-27,35,-66v0,-58,-42,-92,-97,-92v-60,0,-100,46,-100,106v0,94,111,133,175,80r36,0v-66,104,-247,51,-247,-80v0,-77,60,-138,137,-138v60,0,125,48,125,112v0,54,-41,105,-90,105v-12,0,-22,-6,-21,-19v-34,39,-95,4,-95,-47v0,-61,75,-112,117,-61","w":273},"A":{"d":"181,-46r-97,0r-13,46r-75,0r81,-270r109,0r82,270r-73,0xm166,-99r-34,-117r-33,117r67,0","w":263},"B":{"d":"22,0r0,-270r141,0v54,0,86,10,86,69v0,34,-7,56,-43,62r0,3v40,3,47,27,47,61v0,66,-31,75,-88,75r-143,0xm94,-211r0,49v33,-4,88,14,83,-26v5,-36,-53,-19,-83,-23xm94,-112r0,53v35,-4,87,14,87,-27v0,-41,-53,-22,-87,-26","w":265},"C":{"d":"176,-102r74,0v0,35,1,61,-25,84v-24,20,-54,20,-85,20v-73,0,-127,-3,-127,-102r0,-70v0,-89,48,-102,127,-102v78,0,113,13,110,99r-74,0v2,-31,-16,-37,-44,-37v-59,0,-45,46,-45,94v0,40,2,56,45,56v33,0,46,-6,44,-42","w":262},"D":{"d":"19,0r0,-270r137,0v98,-6,108,61,108,161v0,74,-24,109,-99,109r-146,0xm91,-207r0,144v48,0,104,10,99,-46v-3,-41,11,-98,-36,-98r-63,0","w":279},"E":{"d":"95,-211r0,49r115,0r0,50r-115,0r0,53r125,0r0,59r-197,0r0,-270r195,0r0,59r-123,0","w":244},"F":{"d":"92,-211r0,53r110,0r0,59r-110,0r0,99r-72,0r0,-270r191,0r0,59r-119,0","w":221},"G":{"d":"259,-186r-73,0v-1,-27,-24,-27,-46,-27v-71,0,-54,47,-54,103v0,48,17,53,54,53v37,0,46,-9,46,-46r-50,0r0,-50r123,0r0,48v0,91,-23,107,-119,107v-85,0,-128,-15,-128,-102r0,-70v0,-89,49,-102,128,-102v70,0,119,0,119,86","w":272},"H":{"d":"261,-270r0,270r-72,0r0,-106r-94,0r0,106r-72,0r0,-270r72,0r0,102r94,0r0,-102r72,0","w":283},"I":{"d":"94,-270r0,270r-72,0r0,-270r72,0","w":116},"J":{"d":"123,-270r72,0r0,187v0,72,-21,85,-97,85v-84,0,-92,-33,-90,-115r68,0v1,25,-5,53,22,53v22,0,25,-6,25,-23r0,-187","w":216},"K":{"d":"95,-270r0,102r22,0r69,-102r87,0r-95,132r103,138r-89,0r-75,-106r-22,0r0,106r-72,0r0,-270r72,0","w":270},"L":{"d":"93,-270r0,207r113,0r0,63r-185,0r0,-270r72,0","w":210},"M":{"d":"87,-207r7,207r-72,0r0,-270r114,0r52,170r2,0r49,-170r117,0r0,270r-72,0r7,-207r-2,0r-69,207r-62,0r-69,-207r-2,0","w":377},"N":{"d":"90,-207r4,207r-72,0r0,-270r122,0r77,207r3,0r-4,-207r72,0r0,270r-123,0r-76,-207r-3,0","w":313},"O":{"d":"137,2v-73,0,-125,-16,-125,-99r0,-76v0,-83,52,-99,125,-99v73,0,125,16,125,99r0,76v0,83,-52,99,-125,99xm137,-60v64,0,50,-53,51,-106v0,-40,-14,-44,-51,-44v-64,0,-51,53,-51,105v0,40,14,45,51,45","w":273},"P":{"d":"93,0r-72,0r0,-270r136,0v67,0,92,28,92,99v0,76,-17,102,-92,102r-64,0r0,69xm93,-132v40,-4,90,17,82,-39v8,-49,-43,-34,-82,-36r0,75","w":255},"Q":{"d":"156,-136r38,27v-2,-53,12,-112,-51,-101v-65,-10,-47,52,-51,106v-4,55,45,46,83,40r-48,-32xm263,0r-26,-21v-25,22,-64,23,-94,23v-84,0,-125,-19,-125,-109r0,-56v0,-89,43,-109,125,-109v82,0,126,20,126,109v-1,34,3,80,-6,103r30,20","w":286},"R":{"d":"93,-134v42,-2,98,14,85,-42v6,-46,-49,-27,-85,-31r0,73xm21,0r0,-270v99,8,231,-36,231,82v0,45,0,71,-51,83r0,3v52,-2,52,50,49,102r-72,0v0,-35,7,-73,-30,-72r-55,0r0,72r-72,0","w":267},"S":{"d":"86,-190v-2,34,33,23,59,26v80,8,100,16,100,78v0,45,2,88,-117,88v-69,0,-115,-1,-115,-90r69,0v0,28,11,31,46,31v34,0,45,-2,45,-25v7,-29,-25,-23,-54,-26v-67,-5,-105,-5,-105,-82v0,-77,43,-82,114,-82v63,0,114,6,109,87r-69,0v0,-28,-11,-28,-40,-28v-39,0,-42,8,-42,23","w":257},"T":{"d":"141,-207r0,207r-72,0r0,-207r-69,0r0,-63r214,0r0,63r-73,0","w":214},"U":{"d":"183,-270r72,0r0,180v0,72,-34,92,-113,92v-108,0,-119,-27,-119,-92r0,-180r72,0r0,179v0,31,17,31,47,31v31,0,41,-3,41,-35r0,-175","w":277},"V":{"d":"128,-62r59,-208r75,0r-79,270r-112,0r-77,-270r73,0r59,208r2,0","w":255},"W":{"d":"288,-62r40,-208r73,0r-60,270r-104,0r-37,-169r-3,0r-39,169r-103,0r-58,-270r73,0r39,208r2,0r51,-208r75,0r48,208r3,0","w":397},"X":{"d":"264,-270r-75,131r81,139r-84,0r-54,-104r-53,104r-85,0r81,-139r-76,-131r85,0r48,99r49,-99r83,0","w":263},"Y":{"d":"261,-270r-99,175r0,95r-72,0r0,-95r-96,-175r83,0v18,34,29,73,50,104r50,-104r84,0","w":254},"Z":{"d":"229,-270r0,60r-129,147r129,0r0,63r-221,0r0,-61r128,-146r-119,0r0,-63r212,0","w":237},"[":{"d":"21,-272r97,0r0,59r-29,0r0,208r29,0r0,59r-97,0r0,-326","w":138},"\\":{"d":"170,41r-159,-311r49,0r159,311r-49,0","w":230},"]":{"d":"118,54r-97,0r0,-59r29,0r0,-208r-29,0r0,-59r97,0r0,326","w":138},"^":{"d":"65,-90r-47,0r68,-180r44,0r68,180r-47,0r-43,-122","w":216},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"\u2018":{"d":"75,-161r-58,0v2,-61,-16,-117,61,-111r0,27v-21,0,-25,6,-25,24r22,0r0,60","w":95},"a":{"d":"104,-78v-15,0,-27,3,-27,20v0,21,18,20,27,20v26,0,34,-3,34,-23v0,-16,-14,-17,-34,-17xm138,0v-1,-9,5,-23,0,-28v-5,26,-33,30,-55,30v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,-1,52,21r3,0v-3,-30,11,-60,-29,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v63,0,90,8,90,73r0,118r-61,0","w":219},"b":{"d":"20,-270r62,0r0,108r3,0v10,-24,29,-29,52,-29v69,0,72,52,72,124v0,50,-26,69,-72,69v-27,0,-47,-7,-54,-35r-3,0r2,33r-62,0r0,-270xm116,-45v26,0,31,-10,31,-50v0,-32,-2,-49,-31,-49v-26,0,-34,6,-34,49v0,37,1,50,34,50","w":220},"c":{"d":"131,-118v0,-22,-6,-25,-29,-26v-22,0,-29,7,-29,50v0,44,6,49,29,49v28,0,29,-8,29,-31r62,0v0,69,-22,78,-91,78v-73,0,-91,-21,-91,-96v0,-64,14,-97,91,-97v54,0,91,6,91,73r-62,0","w":200},"d":{"d":"201,-270r0,270r-62,0v-1,-10,4,-27,-1,-33v-7,28,-27,35,-54,35v-64,0,-72,-45,-72,-113v0,-58,20,-80,72,-80v23,0,42,5,52,29r3,0r0,-108r62,0xm74,-94v0,46,5,49,31,49v26,0,34,-6,34,-49v0,-37,-1,-50,-34,-50v-31,0,-31,13,-31,50","w":220},"e":{"d":"73,-118r61,0v0,-28,-11,-30,-32,-30v-22,0,-28,5,-29,30xm195,-63v1,56,-36,65,-92,65v-75,0,-92,-25,-92,-96v0,-73,16,-97,92,-97v75,0,94,27,92,107r-122,0v0,33,4,43,30,43v19,0,32,-2,32,-22r60,0","w":206},"f":{"d":"136,-189r0,45r-42,0r0,144r-62,0r0,-144r-25,0r0,-45r25,0v-3,-65,11,-82,102,-81r0,47v-28,-6,-46,1,-40,34r42,0","w":141},"g":{"d":"106,-48v30,0,33,-14,33,-46v0,-43,-7,-50,-33,-50v-29,0,-31,6,-31,50v0,39,4,46,31,46xm79,17v-1,19,11,23,28,22v42,8,34,-41,30,-70v-8,23,-28,31,-52,31v-67,0,-72,-40,-72,-94v0,-61,7,-97,72,-97v29,0,44,10,56,35r-2,-33r62,0r0,181v0,71,-19,92,-92,92v-67,0,-87,-7,-89,-67r59,0","w":221},"h":{"d":"82,-270r0,116r3,0v9,-30,27,-37,56,-37v91,0,53,114,61,191r-62,0r0,-116v0,-18,-5,-28,-25,-28v-28,0,-33,17,-33,40r0,104r-61,0r0,-270r61,0","w":222},"i":{"d":"77,-189r0,189r-62,0r0,-189r62,0xm77,-270r0,48r-62,0r0,-48r62,0","w":92},"j":{"d":"73,-189r0,192v3,49,-34,61,-80,54r0,-43v15,0,18,-9,18,-18r0,-185r62,0xm73,-270r0,48r-62,0r0,-48r62,0","w":87},"k":{"d":"82,-270r0,152r11,0r37,-71r68,0r-53,91r65,98r-72,0r-45,-77r-11,0r0,77r-62,0r0,-270r62,0","w":213},"l":{"d":"83,-270r0,270r-62,0r0,-270r62,0","w":104},"m":{"d":"21,-189r60,0r0,27r3,0v19,-44,100,-39,111,8v3,-27,29,-37,53,-37v94,0,60,111,66,191r-62,0r0,-109v-1,-20,-1,-35,-25,-35v-24,0,-29,17,-29,37r0,107r-62,0r0,-114v-1,-17,-1,-30,-23,-30v-26,0,-30,14,-30,37r0,107r-62,0r0,-189","w":334},"n":{"d":"21,-189r61,0r0,35r3,0v9,-30,27,-37,56,-37v91,0,53,114,61,191r-62,0r0,-116v0,-18,-5,-28,-25,-28v-28,0,-33,17,-33,40r0,104r-61,0r0,-189","w":222},"o":{"d":"107,-191v79,0,94,17,94,97v0,78,-16,96,-94,96v-77,0,-95,-20,-95,-96v0,-77,16,-97,95,-97xm108,-144v-30,0,-34,9,-34,50v0,41,4,49,34,49v29,0,31,-8,31,-49v0,-41,-2,-50,-31,-50","w":213},"p":{"d":"20,82r0,-271r62,0r-2,30r3,0v7,-26,27,-32,54,-32v64,0,72,45,72,113v0,58,-20,80,-72,80v-23,0,-42,-4,-52,-30r-3,0r0,110r-62,0xm113,-144v-26,0,-31,10,-31,50v0,32,2,49,31,49v26,0,34,-6,34,-49v0,-37,-1,-50,-34,-50","w":222},"q":{"d":"202,82r-62,0v-2,-35,4,-79,-2,-110v-10,26,-30,30,-53,30v-69,0,-72,-52,-72,-124v0,-50,26,-69,72,-69v27,0,47,6,54,32r3,0r-2,-30r62,0r0,271xm106,-144v-26,0,-31,10,-31,50v0,32,2,49,31,49v26,0,34,-6,34,-49v0,-37,-1,-50,-34,-50","w":222},"r":{"d":"121,-107v0,-17,3,-36,-17,-37v-19,0,-23,16,-23,31r0,113r-62,0r0,-189r61,0v1,9,-3,23,2,28v8,-22,25,-30,48,-30v48,1,46,42,46,84r-55,0","w":180},"s":{"d":"188,-135r-59,0v0,-28,-68,-17,-57,-1v0,9,0,15,32,16v64,1,93,5,93,58v0,55,-43,64,-93,64v-49,0,-92,1,-92,-61r61,0v0,21,16,21,31,21v28,0,32,-1,32,-16v0,-19,-10,-19,-32,-19v-78,0,-92,-17,-92,-56v0,-61,39,-62,92,-62v38,-1,90,3,84,56","w":208},"t":{"d":"162,-189r0,45r-72,0r0,85v0,11,2,16,14,16v20,0,14,-19,17,-35r49,0v3,58,-13,80,-70,80v-40,0,-72,-4,-72,-52r0,-94r-23,0r0,-45r23,0r0,-40r62,0r0,40r72,0","w":174},"u":{"d":"200,0r-60,0r2,-36r-3,0v-19,60,-121,51,-121,-24r0,-129r62,0r0,113v0,17,2,31,23,31v17,0,35,-9,35,-28r0,-116r62,0r0,189","w":221},"v":{"d":"193,-189r-46,189r-97,0r-53,-189r65,0v13,48,19,103,36,148r31,-148r64,0","w":190},"w":{"d":"301,-189r-33,189r-89,0r-26,-135r-3,0r-25,135r-90,0r-35,-189r60,0r21,148r3,0r31,-148r72,0v13,48,18,103,34,148r22,-148r58,0","w":301},"x":{"d":"193,-189r-49,89r54,100r-72,0r-27,-62r-27,62r-74,0r56,-100r-49,-89r72,0r22,52r22,-52r72,0","w":196},"y":{"d":"194,-189r-47,206v-9,58,-41,71,-103,66r0,-43v30,6,44,-14,43,-40r-33,0r-57,-189r65,0r38,154r31,-154r63,0","w":191},"z":{"d":"14,-189r157,0r0,49r-91,97r91,0r0,43r-163,0r0,-51r89,-95r-83,0r0,-43","w":178},"{":{"d":"9,-87r0,-48v7,0,29,1,29,-15r0,-74v7,-55,42,-49,92,-48r0,47v-46,-9,-28,42,-30,80v-2,28,-25,31,-34,35v11,1,34,4,34,37r0,61v-4,14,12,21,30,18r0,48v-50,0,-92,8,-92,-48r0,-74v0,-20,-22,-19,-29,-19","w":138},"|":{"d":"129,-270r0,360r-42,0r0,-360r42,0","w":216},"}":{"d":"130,-135r0,48v-7,0,-30,-1,-30,19r0,74v-6,56,-41,49,-91,48r0,-48v46,9,28,-41,30,-79v2,-34,25,-34,34,-38v-11,-1,-34,-7,-34,-34r0,-61v4,-14,-11,-22,-30,-19r0,-47v50,0,91,-8,91,48r0,74v0,16,23,15,30,15","w":138},"~":{"d":"163,-129r35,0v0,31,-9,74,-46,74v-33,0,-57,-40,-89,-47v-9,0,-9,21,-10,32r-35,0v-5,-41,28,-96,72,-66v18,12,39,37,61,37v9,0,13,-18,12,-30","w":216},"\u00a1":{"d":"92,-189r0,63r-58,0r0,-63r58,0xm30,82r2,-164r62,0r2,164r-66,0","w":125},"\u00a2":{"d":"142,4r-27,0r0,-32v-66,0,-77,-34,-77,-101v0,-61,9,-95,77,-95r0,-27r27,0r0,27v54,0,75,20,74,74r-58,0v-1,-16,-6,-26,-29,-26v-24,0,-28,7,-28,47v0,48,2,53,28,53v24,0,29,-8,29,-32r58,0v0,57,-9,80,-74,80r0,32"},"\u00a3":{"d":"182,-180v0,-25,-4,-32,-29,-32v-38,0,-32,27,-32,60r68,0r0,53r-68,0v1,24,-4,31,-17,41r149,0r0,58r-228,0r0,-58v25,0,24,-19,24,-41r-32,0r0,-53r32,0v-2,-82,2,-120,104,-120v87,0,102,23,100,92r-71,0"},"\u2044":{"d":"140,-270r-159,270r-43,0r159,-270r43,0","w":78},"\u00a5":{"d":"219,-201r33,0r0,48r-59,0r-16,28r75,0r0,47r-88,0r0,78r-72,0r0,-78r-85,0r0,-47r72,0r-15,-28r-57,0r0,-48r33,0r-37,-69r78,0r46,104r3,0r47,-104r79,0"},"\u0192":{"d":"215,-176r-8,45r-37,0r-25,141v-13,72,-19,74,-117,74r8,-47v26,7,41,-5,45,-29r24,-139r-27,0r8,-45r27,0v13,-78,23,-104,118,-96r-7,47v-25,-4,-40,-5,-43,30r-3,19r37,0"},"\u00a7":{"d":"97,-77r73,12v16,0,18,-14,18,-27v0,-34,-66,-30,-98,-39v-15,0,-19,13,-19,26v0,25,9,25,26,28xm171,-186v0,-31,-10,-29,-44,-30v-35,0,-38,6,-38,18v0,18,8,16,29,21v56,15,131,0,131,78v0,23,1,44,-21,55v21,7,22,27,22,50v0,53,-14,78,-123,78v-81,0,-110,-9,-110,-91r67,0v1,31,8,35,43,35v44,0,51,-6,51,-22v0,-19,-11,-18,-32,-24v-54,-15,-137,3,-137,-76v0,-21,1,-47,26,-54v-18,-13,-18,-34,-18,-54v0,-41,11,-70,110,-70v68,0,117,9,111,86r-67,0"},"\u00a4":{"d":"90,-195v15,-16,62,-15,79,-1r30,-29r26,25r-30,30v15,12,12,68,-1,79r29,29r-26,25r-29,-29v-16,13,-58,17,-77,-1r-30,30r-26,-25r30,-30v-21,-26,-15,-64,-1,-78r-30,-29r26,-26xm95,-129v1,19,16,33,34,33v50,0,42,-68,0,-69v-21,0,-35,18,-34,36"},"'":{"d":"15,-270r49,0v3,39,-5,67,-15,93r-19,0v-10,-26,-18,-54,-15,-93","w":79},"\u201c":{"d":"156,-161r-58,0v2,-61,-16,-117,61,-111r0,27v-21,0,-25,6,-25,24r22,0r0,60xm75,-161r-58,0v2,-61,-16,-117,61,-111r0,27v-21,0,-25,6,-25,24r22,0r0,60","w":176},"\u00ab":{"d":"63,-185r40,22r-34,65r34,61r-38,24r-48,-85xm143,-185r41,22r-35,65r35,61r-39,24r-48,-85","w":200},"\u2039":{"d":"62,-185r41,22r-35,65r35,61r-39,24r-48,-85","w":119},"\u203a":{"d":"55,-13r-41,-22r35,-66r-35,-61r39,-23r48,84","w":118},"\ufb01":{"d":"219,-189r0,189r-62,0r0,-189r62,0xm219,-270r0,48r-62,0r0,-48r62,0xm134,-270r0,47v-28,-6,-46,1,-40,34r42,0r0,45r-42,0r0,144r-62,0r0,-144r-25,0r0,-45r25,0v-3,-65,11,-82,102,-81","w":234},"\ufb02":{"d":"219,-270r0,270r-62,0r0,-270r62,0xm136,-189r0,45r-42,0r0,144r-62,0r0,-144r-25,0r0,-45r25,0v-3,-65,11,-82,102,-81r0,47v-28,-6,-46,1,-40,34r42,0","w":239},"\u2013":{"d":"0,-129r180,0r0,59r-180,0r0,-59","w":180},"\u2020":{"d":"161,-270r0,79r65,0r0,47r-65,0r0,226r-62,0r0,-226r-66,0r0,-47r66,0r0,-79r62,0"},"\u2021":{"d":"161,-270r0,81r65,0r0,48r-65,0r0,93r65,0r0,48r-65,0r0,82r-62,0r0,-82r-66,0r0,-48r66,0r0,-93r-66,0r0,-48r66,0r0,-81r62,0"},"\u00b7":{"d":"94,-131r0,63r-58,0r0,-63r58,0","w":129},"\u00b6":{"d":"257,82r-44,0r0,-300r-27,0r0,300r-43,0r0,-152r-47,0v-79,0,-96,-21,-96,-100v0,-71,25,-100,92,-100r165,0r0,352xm143,-122r0,-96v-45,0,-87,-6,-76,48v-10,56,30,48,76,48"},"\u2022":{"d":"176,-135v0,37,-31,67,-68,67v-37,0,-67,-29,-67,-67v0,-37,29,-68,67,-68v37,0,68,31,68,68","w":216},"\u201a":{"d":"20,-60r58,0v-2,61,16,117,-61,111r0,-27v21,0,25,-6,25,-24r-22,0r0,-60","w":95},"\u201e":{"d":"19,-60r59,0v-2,62,15,117,-62,111r0,-27v21,0,26,-6,26,-24r-23,0r0,-60xm100,-60r59,0v-2,62,15,117,-62,111r0,-27v21,0,26,-6,26,-24r-23,0r0,-60","w":176},"\u201d":{"d":"20,-270r58,0v-2,61,16,118,-61,112r0,-27v21,0,25,-7,25,-25r-22,0r0,-60xm101,-270r58,0v-2,61,16,118,-61,112r0,-27v21,0,25,-7,25,-25r-22,0r0,-60","w":176},"\u00bb":{"d":"135,-13r-41,-22r35,-66r-35,-61r39,-23r48,84xm55,-13r-41,-22r35,-66r-35,-61r39,-23r48,84","w":200},"\u2026":{"d":"89,-63r0,63r-58,0r0,-63r58,0xm209,-63r0,63r-58,0r0,-63r58,0xm329,-63r0,63r-58,0r0,-63r58,0","w":360},"\u2030":{"d":"396,-135v59,0,62,32,60,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm396,-29v31,8,23,-28,24,-53v0,-21,-5,-22,-24,-22v-30,-7,-21,29,-21,52v0,23,3,23,21,23xm267,-270r-159,270r-44,0r160,-270r43,0xm258,-135v59,0,62,32,60,88v-2,43,-17,49,-59,49v-60,0,-60,-33,-58,-88v1,-43,15,-49,57,-49xm258,-29v31,8,23,-28,24,-53v0,-21,-5,-22,-24,-22v-30,-7,-21,29,-21,52v0,23,3,23,21,23xm66,-272v60,0,62,32,59,88v-1,43,-17,49,-59,49v-59,0,-60,-33,-58,-88v1,-43,16,-49,58,-49xm66,-166v30,8,23,-29,23,-53v0,-21,-4,-22,-23,-22v-30,-7,-22,28,-22,52v0,23,4,23,22,23","w":464},"\u00bf":{"d":"88,-93r62,0v5,45,-12,62,-50,77v-13,6,-22,10,-22,30v0,19,10,22,29,22v23,0,37,-7,33,-33r62,0v3,68,-33,81,-95,81v-55,0,-90,-9,-90,-70v0,-47,14,-57,52,-74v19,-8,20,-13,19,-33xm148,-189r0,63r-58,0r0,-63r58,0","w":217},"`":{"d":"45,-272r73,43r-10,22r-81,-25","w":145},"\u00b4":{"d":"100,-272r18,40r-81,25r-10,-22","w":145},"\u02c6":{"d":"91,-272r66,39r-9,21r-57,-23r-54,23r-10,-21","w":184},"\u02dc":{"d":"74,-272v31,-1,63,48,80,8r30,15v-9,18,-23,36,-45,36v-31,1,-63,-48,-82,-9r-30,-16v10,-18,25,-34,47,-34","w":210},"\u00af":{"d":"27,-254r113,0r0,34r-113,0r0,-34","w":167},"\u02d8":{"d":"27,-264r34,0v3,17,12,27,30,27v18,0,27,-10,30,-27r34,0v-4,34,-29,58,-64,58v-33,0,-60,-25,-64,-58","w":182},"\u02d9":{"d":"66,-256r0,37r-39,0r0,-37r39,0","w":93},"\u00a8":{"d":"66,-256r0,37r-39,0r0,-37r39,0xm142,-256r0,37r-39,0r0,-37r39,0","w":168},"\u02da":{"d":"27,-239v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm46,-239v0,9,7,17,16,17v9,0,16,-8,16,-17v0,-9,-7,-16,-16,-16v-9,0,-16,7,-16,16","w":124},"\u00b8":{"d":"73,15r16,29r-52,19r-10,-19","w":115},"\u02dd":{"d":"79,-289r29,30r-64,50r-17,-17xm158,-289r29,30r-65,50r-16,-17","w":214},"\u02db":{"d":"27,36v0,-27,24,-41,59,-36v-10,6,-31,17,-31,30v1,15,20,12,30,7r0,28v-25,11,-58,0,-58,-29","w":113},"\u02c7":{"d":"91,-212r-64,-40r10,-20r54,22r57,-22r9,20","w":184},"\u2014":{"d":"0,-129r360,0r0,59r-360,0r0,-59","w":360},"\u00c6":{"d":"180,-98r0,-113r-31,0r-43,113r74,0xm180,0r0,-48r-93,0r-18,48r-78,0r105,-270r276,0r0,59r-124,0r0,50r114,0r0,50r-114,0r0,52r124,0r0,59r-192,0","w":386},"\u00aa":{"d":"102,-174v-10,31,-74,29,-74,-17v0,-28,13,-36,40,-36v14,0,26,2,34,12v0,-18,4,-39,-17,-34v-10,0,-15,2,-15,12r-37,0v0,-35,26,-35,52,-35v31,0,54,2,54,37r0,79r-37,0r0,-18xm102,-193v-2,-16,-37,-18,-36,2v0,8,1,11,20,11v15,0,16,-5,16,-13","w":172},"\u0141":{"d":"97,-160r0,97r114,0r0,63r-186,0r0,-110r-26,22r0,-51r26,-22r0,-109r72,0r0,60r46,-38r0,50","w":214},"\u00d8":{"d":"277,-281r0,51r-20,17v6,23,6,48,6,72v0,103,-12,143,-124,143v-33,0,-77,0,-102,-26r-40,35r0,-50r20,-17v-8,-15,-6,-51,-6,-76v0,-107,17,-140,128,-140v36,0,71,0,98,25xm189,-153r-95,81v25,23,103,14,95,-24r0,-57xm85,-115r96,-83v-12,-12,-25,-12,-42,-12v-42,0,-54,4,-54,63r0,32","w":273},"\u0152":{"d":"193,0v-1,-9,5,-24,0,-30v-15,26,-36,32,-64,32v-81,0,-115,-20,-115,-105v0,-97,-4,-169,103,-169v28,0,64,2,76,34r2,0r-2,-32r189,0r0,59r-122,0r0,50r114,0r0,50r-114,0r0,52r124,0r0,59r-191,0xm134,-57v77,0,57,-50,57,-108v0,-44,-15,-48,-57,-48v-62,0,-48,50,-48,101v0,47,9,55,48,55","w":396},"\u00ba":{"d":"86,-272v50,0,57,14,57,59v0,45,-7,59,-57,59v-50,0,-56,-14,-56,-59v0,-45,6,-59,56,-59xm86,-244v-15,0,-19,4,-19,31v0,27,4,31,19,31v15,0,19,-4,19,-31v0,-27,-4,-31,-19,-31","w":172},"\u00e6":{"d":"198,-118r61,0v0,-28,-10,-34,-31,-34v-22,0,-29,9,-30,34xm103,-78v-15,0,-27,2,-27,19v0,21,18,21,27,21v26,0,33,-3,33,-23v0,-16,-13,-17,-33,-17xm321,-63v1,56,-37,65,-92,65v-22,0,-58,-2,-67,-28r-3,0v-10,28,-44,28,-77,28v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,0,52,21r2,0v-3,-29,12,-60,-28,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v15,0,54,-1,61,25r2,0v5,-24,42,-25,58,-25v75,-2,94,27,92,107r-123,0v0,33,5,43,31,43v19,0,31,-2,31,-22r61,0","w":333},"\u0131":{"d":"77,-189r0,189r-62,0r0,-189r62,0","w":92},"\u0142":{"d":"87,-157r0,157r-61,0r0,-121r-26,18r0,-33r26,-18r0,-116r61,0r0,78r25,-18r0,34","w":112},"\u00f8":{"d":"143,-103r-62,45v18,24,73,17,62,-28r0,-17xm78,-86r62,-44v-9,-25,-69,-16,-62,10r0,34xm-1,0r0,-30r21,-15v-4,-19,-4,-39,-4,-59v0,-73,24,-87,95,-87v28,0,63,0,80,23r27,-20r0,31r-16,12v4,13,3,26,3,40v0,84,-9,107,-94,107v-28,0,-62,0,-80,-24","w":221},"\u0153":{"d":"196,-118r61,0v0,-28,-10,-35,-31,-35v-22,0,-29,10,-30,35xm134,-94v0,-42,0,-50,-30,-50v-29,0,-31,8,-31,50v0,44,6,49,31,49v28,0,30,-10,30,-49xm319,-63v0,55,-36,65,-92,65v-22,0,-52,-1,-60,-28r-2,0v-14,26,-30,28,-65,28v-76,0,-88,-23,-88,-96v0,-72,11,-97,88,-97v24,-1,54,3,67,25v10,-25,40,-25,60,-25v75,-2,94,27,92,107r-123,0v0,33,5,43,31,43v19,0,31,-2,31,-22r61,0","w":331},"\u00df":{"d":"82,0r-61,0r0,-203v0,-57,34,-69,89,-69v44,0,89,3,89,57v0,31,-20,41,-43,49v49,1,54,37,54,78v0,56,-12,90,-75,90v-11,0,-22,-1,-33,-2r0,-44v30,8,46,3,46,-44v0,-35,-2,-62,-39,-60r0,-41v17,0,32,1,32,-19v0,-18,-12,-23,-31,-23v-18,0,-28,6,-28,28r0,203","w":222},"\u00b9":{"d":"123,-272r0,163r-47,0r0,-125r-45,38r-27,-27r64,-49r55,0","w":155},"\u2212":{"d":"18,-79r0,-41r180,0r0,41r-180,0","w":216},"\u00b0":{"d":"126,-218v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm101,-218v0,-16,-13,-29,-29,-29v-16,0,-29,13,-29,29v0,16,13,29,29,29v16,0,29,-13,29,-29","w":144},"\u00f3":{"d":"107,-191v79,0,94,17,94,97v0,78,-16,96,-94,96v-77,0,-95,-20,-95,-96v0,-77,16,-97,95,-97xm108,-144v-30,0,-34,9,-34,50v0,41,4,49,34,49v29,0,31,-8,31,-49v0,-41,-2,-50,-31,-50xm135,-272r18,40r-82,25r-10,-22","w":213},"\u00d6":{"d":"137,2v-73,0,-125,-16,-125,-99r0,-76v0,-83,52,-99,125,-99v73,0,125,16,125,99r0,76v0,83,-52,99,-125,99xm137,-60v64,0,50,-53,51,-106v0,-40,-14,-44,-51,-44v-64,0,-51,53,-51,105v0,40,14,45,51,45xm119,-337r0,37r-39,0r0,-37r39,0xm194,-337r0,37r-39,0r0,-37r39,0","w":273},"\u00f6":{"d":"107,-191v79,0,94,17,94,97v0,78,-16,96,-94,96v-77,0,-95,-20,-95,-96v0,-77,16,-97,95,-97xm108,-144v-30,0,-34,9,-34,50v0,41,4,49,34,49v29,0,31,-8,31,-49v0,-41,-2,-50,-31,-50xm89,-256r0,37r-40,0r0,-37r40,0xm164,-256r0,37r-39,0r0,-37r39,0","w":213},"\u00ca":{"d":"95,-211r0,49r115,0r0,50r-115,0r0,53r125,0r0,59r-197,0r0,-270r195,0r0,59r-123,0xm121,-353r66,39r-9,21r-57,-23r-54,23r-10,-21","w":244},"\u00fb":{"d":"200,0r-60,0r2,-36r-3,0v-19,60,-121,51,-121,-24r0,-129r62,0r0,113v0,17,2,31,23,31v17,0,35,-9,35,-28r0,-116r62,0r0,189xm110,-272r66,39r-9,21r-57,-23r-55,23r-9,-21","w":221},"\u00bc":{"d":"352,-162r0,99r14,0r0,31r-14,0r0,32r-45,0r0,-32r-92,0r0,-46r68,-84r69,0xm307,-63v-2,-21,4,-49,-2,-66r-53,66r55,0xm285,-270r-160,270r-43,0r160,-270r43,0xm105,-270r0,161r-47,0r0,-123r-45,38r-27,-27r64,-49r55,0","w":388},"\u00ac":{"d":"157,-57r0,-63r-139,0r0,-42r180,0r0,105r-41,0","w":216},"\u00cb":{"d":"95,-211r0,49r115,0r0,50r-115,0r0,53r125,0r0,59r-197,0r0,-270r195,0r0,59r-123,0xm104,-337r0,37r-39,0r0,-37r39,0xm180,-337r0,37r-40,0r0,-37r40,0","w":244},"\u00bd":{"d":"285,-270r-159,270r-43,0r159,-270r43,0xm106,-270r0,161r-47,0r0,-123r-45,38r-27,-27r64,-49r55,0xm373,-34r0,34r-138,0v0,-58,-7,-77,62,-89v29,-5,31,-6,31,-23v0,-16,-5,-18,-24,-18v-25,0,-25,6,-25,27r-44,0v-2,-49,21,-61,69,-60v41,0,69,5,69,51v0,36,-11,43,-48,52v-36,9,-46,4,-46,26r94,0","w":388},"\u00d5":{"d":"137,2v-73,0,-125,-16,-125,-99r0,-76v0,-83,52,-99,125,-99v73,0,125,16,125,99r0,76v0,83,-52,99,-125,99xm137,-60v64,0,50,-53,51,-106v0,-40,-14,-44,-51,-44v-64,0,-51,53,-51,105v0,40,14,45,51,45xm105,-353v31,-1,63,48,81,8r29,15v-9,18,-22,36,-44,36v-32,1,-63,-48,-83,-9r-29,-16v10,-18,24,-34,46,-34","w":273},"\u00fa":{"d":"200,0r-60,0r2,-36r-3,0v-19,60,-121,51,-121,-24r0,-129r62,0r0,113v0,17,2,31,23,31v17,0,35,-9,35,-28r0,-116r62,0r0,189xm139,-272r18,40r-82,25r-10,-22","w":221},"\u00e9":{"d":"73,-118r61,0v0,-28,-11,-30,-32,-30v-22,0,-28,5,-29,30xm195,-63v1,56,-36,65,-92,65v-75,0,-92,-25,-92,-96v0,-73,16,-97,92,-97v75,0,94,27,92,107r-122,0v0,33,4,43,30,43v19,0,32,-2,32,-22r60,0xm131,-272r18,40r-81,25r-10,-22","w":206},"\u00ed":{"d":"77,-189r0,189r-62,0r0,-189r62,0xm74,-272r18,40r-81,25r-10,-22","w":92},"\u00d0":{"d":"19,-163r0,-107r137,0v98,-6,108,61,108,161v0,74,-24,109,-99,109r-146,0r0,-113r-31,0r0,-50r31,0xm91,-207r0,44r49,0r0,50r-49,0r0,50v48,0,104,10,99,-46v-3,-41,11,-98,-36,-98r-63,0","w":279},"\u00ee":{"d":"77,-189r0,189r-62,0r0,-189r62,0xm46,-272r66,39r-9,21r-57,-23r-55,23r-10,-21","w":92},"\u00ae":{"d":"144,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v76,0,137,61,137,137v0,76,-61,137,-137,137xm144,-29v58,0,106,-47,106,-106v0,-59,-48,-106,-106,-106v-59,0,-106,47,-106,106v0,59,47,106,106,106xm176,-122r36,62r-35,0r-33,-61r-28,0r0,61r-31,0r0,-148v56,5,133,-20,132,45v0,27,-15,39,-41,41xm116,-144v29,-3,72,12,69,-23v-3,-28,-42,-13,-69,-17r0,40","w":288},"\u00a6":{"d":"129,-63r0,126r-42,0r0,-126r42,0xm129,-243r0,126r-42,0r0,-126r42,0","w":216},"\u00fe":{"d":"80,-270v2,35,-4,79,2,110v6,-25,27,-31,54,-31v64,0,71,46,71,113v0,58,-19,80,-71,80v-23,0,-43,-4,-53,-30r-3,0r0,110r-62,0r0,-352r62,0xm111,-144v-26,0,-31,10,-31,50v0,32,2,49,31,49v26,0,34,-6,34,-49v0,-37,-1,-50,-34,-50","w":222},"\u00c3":{"d":"181,-46r-97,0r-13,46r-75,0r81,-270r109,0r82,270r-73,0xm166,-99r-34,-117r-33,117r67,0xm100,-353v31,-1,63,48,81,8r29,15v-9,18,-22,36,-44,36v-32,1,-63,-48,-83,-9r-29,-16v10,-18,24,-34,46,-34","w":263},"\u00fd":{"d":"194,-189r-47,206v-9,58,-41,71,-103,66r0,-43v30,6,44,-14,43,-40r-33,0r-57,-189r65,0r38,154r31,-154r63,0xm124,-272r18,40r-82,25r-10,-22","w":191},"\u00c1":{"d":"181,-46r-97,0r-13,46r-75,0r81,-270r109,0r82,270r-73,0xm166,-99r-34,-117r-33,117r67,0xm160,-353r18,40r-82,25r-10,-22","w":263},"\u00c7":{"d":"146,15r16,29r-52,19r-10,-19xm176,-102r74,0v0,35,1,61,-25,84v-24,20,-54,20,-85,20v-73,0,-127,-3,-127,-102r0,-70v0,-89,48,-102,127,-102v78,0,113,13,110,99r-74,0v2,-31,-16,-37,-44,-37v-59,0,-45,46,-45,94v0,40,2,56,45,56v33,0,46,-6,44,-42","w":262},"\u00f1":{"d":"85,-154v9,-27,23,-37,56,-37v91,0,53,114,61,191r-62,0r0,-116v0,-18,-5,-28,-25,-28v-28,0,-33,17,-33,40r0,104r-61,0r0,-189r61,0r0,35r3,0xm80,-272v31,-1,63,48,80,8r30,15v-9,18,-23,36,-45,36v-31,1,-63,-48,-82,-9r-30,-16v10,-18,25,-34,47,-34","w":222},"\u00f0":{"d":"108,-144v-30,0,-34,9,-34,50v0,41,4,49,34,49v29,0,31,-8,31,-49v0,-41,-2,-50,-31,-50xm64,-257r48,-15v8,5,17,10,27,19r41,-13r22,23r-41,13v25,28,40,73,40,130v0,84,-16,102,-94,102v-77,0,-95,-20,-95,-96v0,-51,8,-96,67,-96v29,0,38,4,52,18v-4,-14,-11,-30,-21,-42r-41,13r-24,-23r44,-13v-6,-6,-14,-12,-25,-20","w":213},"\u00c5":{"d":"181,-46r-97,0r-13,46r-75,0r81,-270r109,0r82,270r-73,0xm166,-99r-34,-117r-33,117r67,0xm97,-320v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm116,-320v0,9,7,17,16,17v9,0,16,-8,16,-17v0,-9,-7,-16,-16,-16v-9,0,-16,7,-16,16","w":263},"\u03bc":{"d":"201,0r-60,0r2,-36r-3,0v-9,29,-31,38,-59,38r0,80r-62,0r0,-271r62,0r0,113v0,17,2,31,23,31v17,0,35,-9,35,-28r0,-116r62,0r0,189","w":221},"\u00d9":{"d":"183,-270r72,0r0,180v0,72,-34,92,-113,92v-108,0,-119,-27,-119,-92r0,-180r72,0r0,179v0,31,17,31,47,31v31,0,41,-3,41,-35r0,-175xm111,-353r74,43r-10,22r-82,-25","w":277},"\u00c8":{"d":"95,-211r0,49r115,0r0,50r-115,0r0,53r125,0r0,59r-197,0r0,-270r195,0r0,59r-123,0xm94,-353r74,43r-10,22r-82,-25","w":244},"\u0160":{"d":"86,-190v-2,34,33,23,59,26v80,8,100,16,100,78v0,45,2,88,-117,88v-69,0,-115,-1,-115,-90r69,0v0,28,11,31,46,31v34,0,45,-2,45,-25v7,-29,-25,-23,-54,-26v-67,-5,-105,-5,-105,-82v0,-77,43,-82,114,-82v63,0,114,6,109,87r-69,0v0,-28,-11,-28,-40,-28v-39,0,-42,8,-42,23xm128,-293r-64,-40r9,-20r55,22r57,-22r9,20","w":257},"\u00f5":{"d":"107,-191v79,0,94,17,94,97v0,78,-16,96,-94,96v-77,0,-95,-20,-95,-96v0,-77,16,-97,95,-97xm108,-144v-30,0,-34,9,-34,50v0,41,4,49,34,49v29,0,31,-8,31,-49v0,-41,-2,-50,-31,-50xm75,-272v31,-1,63,48,81,8r29,15v-9,18,-22,36,-44,36v-32,1,-63,-48,-83,-9r-30,-16v10,-18,25,-34,47,-34","w":213},"\u00d1":{"d":"90,-207r4,207r-72,0r0,-270r122,0r77,207r3,0r-4,-207r72,0r0,270r-123,0r-76,-207r-3,0xm125,-353v31,-1,63,48,81,8r29,15v-9,18,-22,36,-44,36v-32,1,-63,-48,-83,-9r-30,-16v10,-18,25,-34,47,-34","w":313},"\u00da":{"d":"183,-270r72,0r0,180v0,72,-34,92,-113,92v-108,0,-119,-27,-119,-92r0,-180r72,0r0,179v0,31,17,31,47,31v31,0,41,-3,41,-35r0,-175xm167,-353r18,40r-82,25r-10,-22","w":277},"\u00c2":{"d":"181,-46r-97,0r-13,46r-75,0r81,-270r109,0r82,270r-73,0xm166,-99r-34,-117r-33,117r67,0xm131,-353r66,39r-9,21r-57,-23r-54,23r-10,-21","w":263},"\u00f4":{"d":"107,-191v79,0,94,17,94,97v0,78,-16,96,-94,96v-77,0,-95,-20,-95,-96v0,-77,16,-97,95,-97xm108,-144v-30,0,-34,9,-34,50v0,41,4,49,34,49v29,0,31,-8,31,-49v0,-41,-2,-50,-31,-50xm106,-272r66,39r-9,21r-57,-23r-55,23r-9,-21","w":213},"\u00ff":{"d":"194,-189r-47,206v-9,58,-41,71,-103,66r0,-43v30,6,44,-14,43,-40r-33,0r-57,-189r65,0r38,154r31,-154r63,0xm78,-256r0,37r-39,0r0,-37r39,0xm153,-256r0,37r-39,0r0,-37r39,0","w":191},"\u00c9":{"d":"95,-211r0,49r115,0r0,50r-115,0r0,53r125,0r0,59r-197,0r0,-270r195,0r0,59r-123,0xm150,-353r18,40r-82,25r-10,-22","w":244},"\u00d2":{"d":"137,2v-73,0,-125,-16,-125,-99r0,-76v0,-83,52,-99,125,-99v73,0,125,16,125,99r0,76v0,83,-52,99,-125,99xm137,-60v64,0,50,-53,51,-106v0,-40,-14,-44,-51,-44v-64,0,-51,53,-51,105v0,40,14,45,51,45xm109,-353r74,43r-11,22r-81,-25","w":273},"\u00e2":{"d":"104,-78v-15,0,-27,3,-27,20v0,21,18,20,27,20v26,0,34,-3,34,-23v0,-16,-14,-17,-34,-17xm138,0v-1,-9,5,-23,0,-28v-5,26,-33,30,-55,30v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,-1,52,21r3,0v-3,-30,11,-60,-29,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v63,0,90,8,90,73r0,118r-61,0xm109,-272r66,39r-9,21r-57,-23r-55,23r-9,-21","w":219},"\u00d7":{"d":"18,-158r32,-31r58,58r58,-58r32,31r-58,59r58,58r-32,32r-58,-59r-58,59r-32,-32r58,-58","w":216},"\u00f7":{"d":"18,-79r0,-41r180,0r0,41r-180,0xm129,-10r-42,0r0,-41r42,0r0,41xm129,-148r-42,0r0,-41r42,0r0,41","w":216},"\u00e7":{"d":"116,15r15,29r-51,19r-11,-19xm131,-118v0,-22,-6,-25,-29,-26v-22,0,-29,7,-29,50v0,44,6,49,29,49v28,0,29,-8,29,-31r62,0v0,69,-22,78,-91,78v-73,0,-91,-21,-91,-96v0,-64,14,-97,91,-97v54,0,91,6,91,73r-62,0","w":200},"\u00b2":{"d":"146,-143r0,34r-139,0v0,-58,-7,-77,62,-89v29,-5,32,-5,32,-22v0,-16,-6,-18,-25,-18v-25,0,-24,6,-24,26r-45,0v-2,-49,21,-61,69,-60v41,0,69,5,69,51v0,36,-11,44,-48,53v-36,9,-45,3,-45,25r94,0","w":155},"\u00f9":{"d":"200,0r-60,0r2,-36r-3,0v-19,60,-121,51,-121,-24r0,-129r62,0r0,113v0,17,2,31,23,31v17,0,35,-9,35,-28r0,-116r62,0r0,189xm83,-272r74,43r-10,22r-82,-25","w":221},"\u00c0":{"d":"181,-46r-97,0r-13,46r-75,0r81,-270r109,0r82,270r-73,0xm166,-99r-34,-117r-33,117r67,0xm104,-353r74,43r-10,22r-82,-25","w":263},"\u00db":{"d":"183,-270r72,0r0,180v0,72,-34,92,-113,92v-108,0,-119,-27,-119,-92r0,-180r72,0r0,179v0,31,17,31,47,31v31,0,41,-3,41,-35r0,-175xm138,-353r66,39r-9,21r-57,-23r-54,23r-10,-21","w":277},"\u017e":{"d":"14,-189r157,0r0,49r-91,97r91,0r0,43r-163,0r0,-51r89,-95r-83,0r0,-43xm89,-212r-65,-40r10,-20r55,22r56,-22r9,20","w":178},"\u0178":{"d":"261,-270r-99,175r0,95r-72,0r0,-95r-96,-175r83,0v18,34,29,73,50,104r50,-104r84,0xm109,-337r0,37r-39,0r0,-37r39,0xm185,-337r0,37r-39,0r0,-37r39,0","w":254},"\u00c4":{"d":"181,-46r-97,0r-13,46r-75,0r81,-270r109,0r82,270r-73,0xm166,-99r-34,-117r-33,117r67,0xm114,-337r0,37r-39,0r0,-37r39,0xm189,-337r0,37r-39,0r0,-37r39,0","w":263},"\u00ce":{"d":"94,-270r0,270r-72,0r0,-270r72,0xm58,-353r65,39r-9,21r-56,-23r-55,23r-10,-21","w":116},"\u00ef":{"d":"77,-189r0,189r-62,0r0,-189r62,0xm28,-256r0,37r-39,0r0,-37r39,0xm104,-256r0,37r-40,0r0,-37r40,0","w":92},"\u00d3":{"d":"137,2v-73,0,-125,-16,-125,-99r0,-76v0,-83,52,-99,125,-99v73,0,125,16,125,99r0,76v0,83,-52,99,-125,99xm137,-60v64,0,50,-53,51,-106v0,-40,-14,-44,-51,-44v-64,0,-51,53,-51,105v0,40,14,45,51,45xm165,-353r18,40r-82,25r-10,-22","w":273},"\u00e5":{"d":"104,-78v-15,0,-27,3,-27,20v0,21,18,20,27,20v26,0,34,-3,34,-23v0,-16,-14,-17,-34,-17xm138,0v-1,-9,5,-23,0,-28v-5,26,-33,30,-55,30v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,-1,52,21r3,0v-3,-30,11,-60,-29,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v63,0,90,8,90,73r0,118r-61,0xm75,-239v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm93,-239v0,9,7,17,16,17v9,0,17,-8,17,-17v0,-9,-8,-16,-17,-16v-9,0,-16,7,-16,16","w":219},"\u00dd":{"d":"261,-270r-99,175r0,95r-72,0r0,-95r-96,-175r83,0v18,34,29,73,50,104r50,-104r84,0xm155,-353r18,40r-81,25r-10,-22","w":254},"\u2122":{"d":"311,-270r0,145r-33,0r-1,-116r-42,116r-19,0r-43,-116r0,116r-33,0r0,-145r53,0r32,86r33,-86r53,0xm124,-270r0,30r-44,0r0,115r-37,0r0,-115r-44,0r0,-30r125,0","w":309},"\u00b3":{"d":"70,-176r0,-31v19,0,41,0,36,-14v0,-13,-1,-17,-25,-17v-19,0,-25,2,-24,22r-45,0v-2,-49,24,-56,67,-56v33,0,71,2,71,43v0,20,-9,32,-27,39v23,1,30,15,30,34v0,42,-30,49,-74,49v-39,0,-73,-8,-69,-59r45,0v-2,21,7,25,26,25v19,0,27,-1,27,-20v5,-14,-17,-16,-38,-15","w":155},"\u017d":{"d":"229,-270r0,60r-129,147r129,0r0,63r-221,0r0,-61r128,-146r-119,0r0,-63r212,0xm118,-293r-64,-40r9,-20r55,22r57,-22r9,20","w":237},"\u00be":{"d":"365,-162r0,99r15,0r0,31r-15,0r0,32r-45,0r0,-32r-91,0r0,-46r67,-84r69,0xm320,-63v-1,-21,2,-47,-1,-66r-54,66r55,0xm305,-270r-159,270r-43,0r159,-270r43,0xm69,-176r0,-31v19,0,41,0,36,-14v0,-13,-1,-17,-25,-17v-19,0,-25,2,-24,22r-45,0v-2,-49,24,-56,67,-56v33,0,71,2,71,43v0,20,-9,32,-27,39v23,1,30,15,30,34v0,42,-30,49,-74,49v-39,0,-73,-8,-69,-59r45,0v-2,21,7,25,26,25v19,0,27,-1,27,-20v5,-14,-17,-16,-38,-15","w":388},"\u20ac":{"d":"256,-247r-23,57v-30,-36,-119,-32,-123,9r119,0r-14,37r-106,0r0,14r100,0r-15,37r-84,0v3,26,15,36,57,36v38,0,59,-15,69,-25r0,67v-17,11,-47,17,-68,17v-72,0,-126,-4,-128,-95r-37,0r15,-37r22,0r0,-14r-38,0r15,-37r24,0v4,-79,58,-91,127,-91v17,0,60,-2,88,25"},"\u00f2":{"d":"107,-191v79,0,94,17,94,97v0,78,-16,96,-94,96v-77,0,-95,-20,-95,-96v0,-77,16,-97,95,-97xm108,-144v-30,0,-34,9,-34,50v0,41,4,49,34,49v29,0,31,-8,31,-49v0,-41,-2,-50,-31,-50xm79,-272r74,43r-10,22r-82,-25","w":213},"\u00fc":{"d":"200,0r-60,0r2,-36r-3,0v-19,60,-121,51,-121,-24r0,-129r62,0r0,113v0,17,2,31,23,31v17,0,35,-9,35,-28r0,-116r62,0r0,189xm93,-256r0,37r-40,0r0,-37r40,0xm168,-256r0,37r-39,0r0,-37r39,0","w":221},"\u00eb":{"d":"73,-118r61,0v0,-28,-11,-30,-32,-30v-22,0,-28,5,-29,30xm195,-63v1,56,-36,65,-92,65v-75,0,-92,-25,-92,-96v0,-73,16,-97,92,-97v75,0,94,27,92,107r-122,0v0,33,4,43,30,43v19,0,32,-2,32,-22r60,0xm85,-256r0,37r-39,0r0,-37r39,0xm161,-256r0,37r-39,0r0,-37r39,0","w":206},"\u00b1":{"d":"87,-189r42,0r0,42r69,0r0,42r-69,0r0,44r-42,0r0,-44r-69,0r0,-42r69,0r0,-42xm18,0r0,-41r180,0r0,41r-180,0","w":216},"\u00e1":{"d":"104,-78v-15,0,-27,3,-27,20v0,21,18,20,27,20v26,0,34,-3,34,-23v0,-16,-14,-17,-34,-17xm138,0v-1,-9,5,-23,0,-28v-5,26,-33,30,-55,30v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,-1,52,21r3,0v-3,-30,11,-60,-29,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v63,0,90,8,90,73r0,118r-61,0xm138,-272r18,40r-82,25r-10,-22","w":219},"\u00cf":{"d":"94,-270r0,270r-72,0r0,-270r72,0xm40,-337r0,37r-39,0r0,-37r39,0xm116,-337r0,37r-39,0r0,-37r39,0","w":116},"\u00ec":{"d":"77,-189r0,189r-62,0r0,-189r62,0xm19,-272r73,43r-10,22r-81,-25","w":92},"\u00cd":{"d":"94,-270r0,270r-72,0r0,-270r72,0xm86,-353r18,40r-81,25r-10,-22","w":116},"\u00a9":{"d":"144,2v-76,0,-137,-61,-137,-137v0,-76,61,-137,137,-137v76,0,137,61,137,137v0,76,-61,137,-137,137xm144,-29v58,0,106,-47,106,-106v0,-59,-48,-106,-106,-106v-59,0,-106,47,-106,106v0,59,47,106,106,106xm185,-109r32,0v-4,35,-33,56,-67,56v-48,0,-79,-37,-79,-83v0,-48,29,-83,78,-83v35,0,62,20,68,54r-32,0v-19,-55,-83,-21,-83,28v0,27,18,58,48,58v17,0,34,-12,35,-30","w":288},"\u00e4":{"d":"104,-78v-15,0,-27,3,-27,20v0,21,18,20,27,20v26,0,34,-3,34,-23v0,-16,-14,-17,-34,-17xm138,0v-1,-9,5,-23,0,-28v-5,26,-33,30,-55,30v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,-1,52,21r3,0v-3,-30,11,-60,-29,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v63,0,90,8,90,73r0,118r-61,0xm91,-256r0,37r-39,0r0,-37r39,0xm167,-256r0,37r-39,0r0,-37r39,0","w":219},"\u00e0":{"d":"104,-78v-15,0,-27,3,-27,20v0,21,18,20,27,20v26,0,34,-3,34,-23v0,-16,-14,-17,-34,-17xm138,0v-1,-9,5,-23,0,-28v-5,26,-33,30,-55,30v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,-1,52,21r3,0v-3,-30,11,-60,-29,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v63,0,90,8,90,73r0,118r-61,0xm82,-272r74,43r-11,22r-81,-25","w":219},"\u0161":{"d":"129,-135v-1,-14,-12,-16,-25,-16v-32,0,-32,4,-32,15v0,9,0,15,32,16v64,1,93,5,93,58v0,55,-43,64,-93,64v-49,0,-92,1,-92,-61r61,0v0,21,16,21,31,21v28,0,32,-1,32,-16v0,-19,-10,-19,-32,-19v-78,0,-92,-17,-92,-56v0,-61,39,-62,92,-62v38,-1,90,3,84,56r-59,0xm103,-212r-64,-40r10,-20r54,22r57,-22r9,20","w":208},"\u00cc":{"d":"94,-270r0,270r-72,0r0,-270r72,0xm31,-353r73,43r-10,22r-81,-25","w":116},"\u00d4":{"d":"137,2v-73,0,-125,-16,-125,-99r0,-76v0,-83,52,-99,125,-99v73,0,125,16,125,99r0,76v0,83,-52,99,-125,99xm137,-60v64,0,50,-53,51,-106v0,-40,-14,-44,-51,-44v-64,0,-51,53,-51,105v0,40,14,45,51,45xm136,-353r66,39r-9,21r-57,-23r-55,23r-9,-21","w":273},"\u00de":{"d":"93,0r-72,0r0,-270r72,0r0,35v92,-4,156,0,156,99v0,76,-17,101,-92,101r-64,0r0,35xm93,-97v40,-4,90,17,82,-39v8,-49,-43,-35,-82,-37r0,76","w":255},"\u00e8":{"d":"73,-118r61,0v0,-28,-11,-30,-32,-30v-22,0,-28,5,-29,30xm195,-63v1,56,-36,65,-92,65v-75,0,-92,-25,-92,-96v0,-73,16,-97,92,-97v75,0,94,27,92,107r-122,0v0,33,4,43,30,43v19,0,32,-2,32,-22r60,0xm76,-272r73,43r-10,22r-81,-25","w":206},"\u00e3":{"d":"104,-78v-15,0,-27,3,-27,20v0,21,18,20,27,20v26,0,34,-3,34,-23v0,-16,-14,-17,-34,-17xm138,0v-1,-9,5,-23,0,-28v-5,26,-33,30,-55,30v-43,0,-68,-11,-68,-59v0,-45,23,-59,68,-59v18,0,45,-1,52,21r3,0v-3,-30,11,-60,-29,-58v-15,0,-25,3,-25,20r-62,0v0,-59,43,-58,87,-58v63,0,90,8,90,73r0,118r-61,0xm78,-272v31,0,63,49,80,8r30,15v-9,18,-22,36,-44,36v-32,1,-64,-48,-83,-9r-30,-16v10,-18,25,-34,47,-34","w":219},"\u00dc":{"d":"183,-270r72,0r0,180v0,72,-34,92,-113,92v-108,0,-119,-27,-119,-92r0,-180r72,0r0,179v0,31,17,31,47,31v31,0,41,-3,41,-35r0,-175xm121,-337r0,37r-40,0r0,-37r40,0xm196,-337r0,37r-39,0r0,-37r39,0","w":277},"\u00ea":{"d":"73,-118r61,0v0,-28,-11,-30,-32,-30v-22,0,-28,5,-29,30xm195,-63v1,56,-36,65,-92,65v-75,0,-92,-25,-92,-96v0,-73,16,-97,92,-97v75,0,94,27,92,107r-122,0v0,33,4,43,30,43v19,0,32,-2,32,-22r60,0xm103,-272r65,39r-9,21r-56,-23r-55,23r-10,-21","w":206},"\u00a0":{"w":129}}});


