diff options
Diffstat (limited to 'localfs/usr')
37 files changed, 555 insertions, 0 deletions
diff --git a/localfs/usr/local/bin/batman b/localfs/usr/local/bin/batman new file mode 100755 index 0000000..bfa00c0 --- /dev/null +++ b/localfs/usr/local/bin/batman @@ -0,0 +1,41 @@ +#!/bin/sh + +declare -x VOERBOOS +export RETVAL=0 +export BATVAL="$(echo "scale=0;$(cat /sys/class/power_supply/BAT0/charge_now)*100/$(cat /sys/class/power_supply/BAT0/charge_full)"|bc -l)" +export BATSTATE="$(cat /sys/class/power_supply/BAT0/status)" +function batmobile { + if [ "$BATVAL" -le 5 ];then + case "$BATSTATE" in + "Charging") + MSG="Battery charged at $BATVAL% with status \"$BATSTATE\", no shutdown." + [ ! -z "$VOERBOOS" ]&&[ "$VOERBOOS" -eq 1 ]&&echo "$MSG"||true + logger -p"info" -t"batman" "Battery charged at $BATVAL% with status \"$BATSTATE\", no shutdown."||RETVAL=$(("$RETVAL"+$?)) + ;; + *) + MSG="Battery charged at $BATVAL%, powering down." + [ ! -z "$VOERBOOS" ]&&[ "$VOERBOOS" -eq 1 ]&&echo "$MSG"||true + logger -pwarn -t"batman" "$MSG"||RETVAL=$(("$RETVAL"+$?)) + sudo shutdown -P +2 "$MSG"||RETVAL=$(("$RETVAL"+$?)) + ;; + esac + else + MSG="Battery charged at $BATVAL%, no shutdown." + [ ! -z "$VOERBOOS" ]&&[ "$VOERBOOS" -eq 1 ]&&echo "$MSG"||logger -p"info" -t"batman" "$MSG"||RETVAL=$(("$RETVAL"+$?)) + fi +} +function batarang { + MSG="$BATVAL% ($BATSTATE)";echo "$MSG"; +} + +while getopts :vnp SHOPT;do + case "$SHOPT" in + v)export VOERBOOS=1;; + p)batmobile;; + ""|n)batarang;; + *)echo "Not supported option: -""${OPTARG}" >&2;RETVAL=$(($RETVAL+1)) >&2;WRONGOPT=1;; + esac +done +shift $(( $OPTIND - 1 )) +[ ! -z "$WRONGOPT" ]&&[ "$WRONGOPT" -eq 1 ]&&exit 1||true +exit "$RETVAL" diff --git a/localfs/usr/local/bin/virtmc b/localfs/usr/local/bin/virtmc new file mode 100755 index 0000000..5fee1bb --- /dev/null +++ b/localfs/usr/local/bin/virtmc @@ -0,0 +1,22 @@ +#!/bin/bash + +[ -z "$LIBVIRT_DEFAULT_URI" ]&&CONNURI="qemu:///system"||CONNURI="$LIBVIRT_DEFAULT_URI" +[ -z "$1" ]&&echo "Viciously refusing to connect to the KVM console of the zero pointer." >&2&&exit 1 + +virtmhelp() { + echo -e "USAGE:\tvirtmc|virtme|virtmp" + echo + ( + echo ";virtmc:;Shows the domain's console screen" + echo ";virtme:;Shows the domain editor without going to the console screen" + echo ";virtmp:;Shows the domain's performance" + )|column -s\; -t --table-right 2 +} +[ "$1" == "-h" ]&&virtmhelp&&exit 0 + +case "$(basename $0)" in + virtmc) virt-manager -c "$CONNURI" --show-domain-console "$1";; + virtme) virt-manager -c "$CONNURI" --show-domain-editor "$1";; + virtmp) virt-manager -c "$CONNURI" --show-domain-performance "$1";; + *) echo "Fatal exception: do not simply symlink stuff without knowing what you do!" >&2;exit 1;; +esac diff --git a/localfs/usr/local/bin/virtme b/localfs/usr/local/bin/virtme new file mode 120000 index 0000000..3f2582b --- /dev/null +++ b/localfs/usr/local/bin/virtme @@ -0,0 +1 @@ +virtmc
\ No newline at end of file diff --git a/localfs/usr/local/bin/virtmp b/localfs/usr/local/bin/virtmp new file mode 120000 index 0000000..3f2582b --- /dev/null +++ b/localfs/usr/local/bin/virtmp @@ -0,0 +1 @@ +virtmc
\ No newline at end of file diff --git a/localfs/usr/local/sbin/brightness-down b/localfs/usr/local/sbin/brightness-down new file mode 100755 index 0000000..1c7c816 --- /dev/null +++ b/localfs/usr/local/sbin/brightness-down @@ -0,0 +1,10 @@ +#!/bin/sh + +MAXBN=$(cat /sys/class/backlight/intel_backlight/max_brightness) +CURBN=$(cat /sys/class/backlight/intel_backlight/brightness) + +if [ "$CURBN" -lt "$MAXBN" ]; then + CURBN=$(( $CURBN-78 )) + echo "$CURBN" > /sys/class/backlight/intel_backlight/brightness + notify-send Brightness "${CURBN}/${MAXBN}" -t 200 +fi diff --git a/localfs/usr/local/sbin/brightness-up b/localfs/usr/local/sbin/brightness-up new file mode 100755 index 0000000..b720682 --- /dev/null +++ b/localfs/usr/local/sbin/brightness-up @@ -0,0 +1,10 @@ +#!/bin/sh + +MAXBN=$(cat /sys/class/backlight/intel_backlight/max_brightness) +CURBN=$(cat /sys/class/backlight/intel_backlight/brightness) + +if [ "$CURBN" -lt "$MAXBN" ]; then + CURBN=$(( $CURBN+78 )) + echo "$CURBN" > /sys/class/backlight/intel_backlight/brightness + notify-send Brightness "${CURBN}/${MAXBN}" -t 200 +fi diff --git a/localfs/usr/local/share/fonts/lirion/eot/telex-regular-webfont.eot b/localfs/usr/local/share/fonts/lirion/eot/telex-regular-webfont.eot Binary files differnew file mode 100644 index 0000000..68c7ef1 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/eot/telex-regular-webfont.eot diff --git a/localfs/usr/local/share/fonts/lirion/opentype/HelveticaNeueLTStd-ThEx.otf b/localfs/usr/local/share/fonts/lirion/opentype/HelveticaNeueLTStd-ThEx.otf Binary files differnew file mode 100644 index 0000000..dbb78b8 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/opentype/HelveticaNeueLTStd-ThEx.otf diff --git a/localfs/usr/local/share/fonts/lirion/opentype/Minion Pro Italic Subhead.otf b/localfs/usr/local/share/fonts/lirion/opentype/Minion Pro Italic Subhead.otf Binary files differnew file mode 100644 index 0000000..f7a662f --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/opentype/Minion Pro Italic Subhead.otf diff --git a/localfs/usr/local/share/fonts/lirion/opentype/MinionPro-Subh.otf b/localfs/usr/local/share/fonts/lirion/opentype/MinionPro-Subh.otf Binary files differnew file mode 100644 index 0000000..ac38d61 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/opentype/MinionPro-Subh.otf diff --git a/localfs/usr/local/share/fonts/lirion/svg/telex-regular-webfont.svg b/localfs/usr/local/share/fonts/lirion/svg/telex-regular-webfont.svg new file mode 100644 index 0000000..8db66d1 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/svg/telex-regular-webfont.svg @@ -0,0 +1,396 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata></metadata> +<defs> +<font id="telexregular" horiz-adv-x="1220" > +<font-face units-per-em="2048" ascent="1638" descent="-410" /> +<missing-glyph horiz-adv-x="512" /> +<glyph horiz-adv-x="2048" /> +<glyph horiz-adv-x="2048" /> +<glyph unicode="
" horiz-adv-x="681" /> +<glyph unicode=" " horiz-adv-x="512" /> +<glyph unicode="	" horiz-adv-x="512" /> +<glyph unicode=" " horiz-adv-x="512" /> +<glyph unicode="!" horiz-adv-x="550" d="M176 1475h197l-27 -1098h-145zM180 0v188h191v-188h-191z" /> +<glyph unicode=""" horiz-adv-x="610" d="M82 1110v444h147v-444h-147zM381 1110v444h147v-444h-147z" /> +<glyph unicode="#" horiz-adv-x="1439" d="M43 383l23 147h288l64 371h-285l25 148h284l70 401h160l-70 -401h346l70 401h162l-70 -401h285l-25 -148h-285l-63 -371h281l-25 -147h-281l-63 -383h-164l66 383h-347l-63 -383h-162l66 383h-287zM514 530h346l64 371h-346z" /> +<glyph unicode="$" horiz-adv-x="1122" d="M123 145l59 166l39 -16q170 -72 295 -72t193.5 52.5t68.5 146.5q0 109 -114 160q-57 27 -147.5 51t-135.5 41.5t-107 58.5q-121 76 -120 256q0 137 84 232.5t251 121.5v242h173v-235q119 -8 280 -72l-49 -162q-156 63 -280 63.5t-189.5 -46t-65.5 -123.5q0 -102 113 -154 q59 -27 137 -50.5t115 -36.5t94 -44t88 -66q76 -94 76 -239.5t-85 -236.5t-234 -120v-235h-173v225q-156 8 -339 82z" /> +<glyph unicode="%" horiz-adv-x="1841" d="M143 1046.5q0 198.5 81 310t242 111.5t240.5 -111.5t79.5 -311t-79.5 -312t-240.5 -112.5t-242 113.5t-81 312zM307 1045.5q0 -277.5 158 -277.5t158 277.5t-158 277.5t-158 -277.5zM401 4l875 1514l143 -82l-874 -1514zM1055 407.5q0 198.5 81 310t241.5 111.5 t240.5 -111.5t80 -311t-80 -312t-240.5 -112.5t-241.5 113.5t-81 312zM1219 406.5q0 -277.5 157.5 -277.5t157.5 277.5t-157.5 277.5t-157.5 -277.5z" /> +<glyph unicode="&" horiz-adv-x="1464" d="M94 422q0 293 271 395q-168 82 -168 295q0 154 116.5 254t293.5 100t308 -71l-61 -144q-106 51 -220 51.5t-173.5 -50t-59.5 -146.5t66 -157.5t203 -61.5h243l33 338l144 -31v-307h321v-144h-321v-424q0 -178 153 -178q68 0 152 29l32 -135q-113 -47 -236.5 -47 t-207.5 84q-178 -96 -395 -96.5t-355.5 120.5t-138.5 326zM299 440.5q0 -143.5 92 -221.5t249 -78t273 47q-16 55 -16 121v434h-246q-172 0 -262 -79.5t-90 -223z" /> +<glyph unicode="'" horiz-adv-x="270" d="M61 1110v444h148v-444h-148z" /> +<glyph unicode="(" horiz-adv-x="604" d="M102 583q0 296 85 535.5t251 503.5l115 -74q-133 -244 -199.5 -464t-66.5 -498.5t66.5 -496.5t199.5 -470l-115 -74q-166 260 -251 501t-85 537z" /> +<glyph unicode=")" horiz-adv-x="604" d="M51 -381q133 252 199.5 470t66.5 496.5t-66.5 499t-199.5 463.5l115 74q166 -264 251 -503.5t85 -535.5t-85 -537t-251 -501z" /> +<glyph unicode="*" horiz-adv-x="808" d="M61 1174l43 145l261 -131l-37 287h153l-43 -285l264 123l46 -139l-287 -54l205 -219l-125 -90l-142 270l-143 -270l-125 88l213 217z" /> +<glyph unicode="+" horiz-adv-x="1310" d="M184 555v147h387v408h172v-408h398v-147h-398v-410h-172v410h-387z" /> +<glyph unicode="," horiz-adv-x="471" d="M133 0v205h205v-164l-39 -283h-74v242h-92z" /> +<glyph unicode="-" horiz-adv-x="956" d="M102 571v164h752v-164h-752z" /> +<glyph unicode="." horiz-adv-x="471" d="M133 0v205h205v-205h-205z" /> +<glyph unicode="/" horiz-adv-x="806" d="M45 -125l526 1645h168l-526 -1645h-168z" /> +<glyph unicode="0" horiz-adv-x="1318" d="M125 727q0 350 131 544.5t399.5 194.5t399.5 -194.5t131 -544.5t-132 -546.5t-398.5 -196.5t-398.5 196.5t-132 546.5zM330 726q0 -286 85 -432.5t241.5 -146.5t240.5 146.5t84 432.5t-84 431.5t-240.5 145.5t-241.5 -145.5t-85 -431.5z" /> +<glyph unicode="1" horiz-adv-x="1071" d="M111 1260l444 198l145 -24v-1270h285v-164h-795v164h318v1083l-350 -108z" /> +<glyph unicode="2" horiz-adv-x="1202" d="M102 0v137q403 287 575.5 481.5t172.5 389.5q0 139 -69.5 217t-188.5 78t-197 -47.5t-133 -151.5l-156 72q53 137 180.5 213.5t303.5 76.5q219 0 342 -118.5t123 -331.5t-159 -414t-486 -438h669v-164h-977z" /> +<glyph unicode="3" horiz-adv-x="1181" d="M86 199l117 118q90 -98 165.5 -136t201.5 -38t206 71t80 202q0 264 -344 264h-104v147h92q158 2 241.5 71t83.5 198q0 94 -69.5 150.5t-189.5 56.5t-194.5 -43t-131.5 -152l-142 76q51 121 174 201.5t315.5 80.5t317.5 -100t125 -270q0 -236 -248 -332q279 -84 279 -367 q0 -188 -136.5 -302.5t-359.5 -114.5q-295 0 -479 219z" /> +<glyph unicode="4" horiz-adv-x="1277" d="M61 334v129l635 987h308v-952h174v-164h-174v-334h-193v334h-750zM299 498h512v821z" /> +<glyph unicode="5" horiz-adv-x="1173" d="M94 176l123 127q137 -154 346 -153q129 0 218 79.5t89 229t-89 222.5t-223 72.5t-275 -55.5l-113 54l70 698h745l-20 -164h-557l-43 -430q129 51 256 51q197 0 325.5 -120.5t128.5 -335.5t-153.5 -341t-364.5 -126q-133 0 -256 49t-207 143z" /> +<glyph unicode="6" horiz-adv-x="1257" d="M139 682q0 385 161 584.5t470 199.5q174 0 317 -84l-79 -137q-106 57 -236 58q-205 0 -309.5 -132.5t-116.5 -404.5q152 139 353.5 139t323.5 -123t122 -325.5t-136.5 -337.5t-351.5 -135q-518 0 -518 698zM346 608q8 -240 83 -348t230 -108q119 0 200 90t81 221 t-71.5 204.5t-198.5 73.5q-88 0 -175 -35.5t-149 -97.5z" /> +<glyph unicode="7" horiz-adv-x="1058" d="M37 1286v164h962v-145l-585 -1305h-197l580 1286h-760z" /> +<glyph unicode="8" horiz-adv-x="1280" d="M127 397q0 233 252 365q-199 111 -199 334q0 170 124 270t335 100t335 -100t124 -270q0 -197 -232 -330q133 -57 209 -141t76 -228q0 -186 -139.5 -301.5t-372.5 -115.5t-372.5 111t-139.5 306zM332 399q0 -121 86 -193.5t225 -72.5t221 73t82 198.5t-137 191.5 q-66 31 -161 61.5t-124 40.5q-193 -119 -192 -299zM385 1104q0 -94 57.5 -148.5t180.5 -99.5q31 -12 106 -39q88 63 126 129t38 159t-66.5 150.5t-187.5 57.5t-187.5 -57.5t-66.5 -151.5z" /> +<glyph unicode="9" horiz-adv-x="1257" d="M113 993.5q0 202.5 136 337.5t351 135q518 0 518 -698q0 -385 -160.5 -584.5t-470.5 -199.5q-174 0 -317 84l80 137q106 -57 235 -58q203 0 307.5 131.5t118.5 403.5q-154 -137 -354.5 -137t-322 123t-121.5 325.5zM317 987q0 -131 72 -204.5t199 -73.5q88 0 175 34.5 t148 96.5q-8 240 -83.5 349t-229.5 109q-119 0 -200 -90t-81 -221z" /> +<glyph unicode=":" horiz-adv-x="512" d="M154 35v205h204v-205h-204zM154 739v205h204v-205h-204z" /> +<glyph unicode=";" horiz-adv-x="493" d="M143 0v205h205v-164l-39 -283h-73v242h-93zM145 655v205h205v-205h-205z" /> +<glyph unicode="<" horiz-adv-x="1310" d="M123 563v113l1012 442v-176l-738 -324l738 -321v-176z" /> +<glyph unicode="=" horiz-adv-x="1310" d="M186 305v148h938v-148h-938zM186 743v148h938v-148h-938z" /> +<glyph unicode=">" horiz-adv-x="1310" d="M176 121v176l737 321l-737 324v176l1012 -442v-113z" /> +<glyph unicode="?" horiz-adv-x="983" d="M133 1423q156 55 318 56q209 0 321.5 -112t112.5 -265q0 -100 -31 -172t-76 -108t-99 -80t-99 -87t-76 -130t-31 -210h-188q0 246 80 373q61 98 163 166q43 29 78 59q80 70 80 189q0 82 -60.5 140t-181 58t-284.5 -53zM285 0v182h188v-182h-188z" /> +<glyph unicode="@" horiz-adv-x="2050" d="M100 464q0 431 279.5 714.5t693.5 283.5t648.5 -221t234.5 -590q0 -274 -118 -435t-316 -161q-100 0 -177 53.5t-106 139.5q-106 -193 -319 -193q-141 0 -227.5 94.5t-86.5 253.5q0 252 151.5 400.5t385.5 148.5q127 0 262 -49l-43 -323q-6 -41 -6 -113q0 -252 176 -252 q94 0 158.5 102.5t64.5 327.5q0 303 -167 480.5t-502.5 177.5t-560 -248t-224.5 -593t199.5 -553t533.5 -208q190 0 344 57l49 -147q-170 -70 -393 -70q-436 0 -685 246t-249 677zM791 434q0 -104 41.5 -161.5t124.5 -57.5t150 83t87 218l39 268q-55 14 -115 15 q-143 0 -231 -97.5t-96 -267.5z" /> +<glyph unicode="A" horiz-adv-x="1308" d="M25 0l499 1450h242l518 -1450h-190l-152 426h-575l-146 -426h-196zM424 590h459l-234 657z" /> +<glyph unicode="B" horiz-adv-x="1253" d="M174 0v1450h428q248 0 373 -100.5t125 -284.5q0 -219 -221 -303q280 -76 280 -332q0 -203 -128 -316.5t-369 -113.5h-488zM369 164h293q141 0 216.5 67.5t75.5 197.5q0 239 -323 239h-262v-504zM369 831h233q293 0 293 234q0 221 -293 221h-233v-455z" /> +<glyph unicode="C" horiz-adv-x="1302" d="M102 727q0 360 169 549.5t479.5 189.5t470.5 -211l-136 -110q-117 154 -328 154l-1 -1q-212 0 -328.5 -146t-116.5 -429t120 -430.5t353 -147.5q160 0 346 97l58 -154q-166 -106 -432 -106q-315 0 -484.5 192.5t-169.5 552.5z" /> +<glyph unicode="D" horiz-adv-x="1400" d="M174 0v1450h469q322 0 494 -189.5t172 -532.5t-173 -535.5t-493 -192.5h-469zM371 164h272q221 0 341 141t120 423t-120 420t-341 138h-272v-1122z" /> +<glyph unicode="E" horiz-adv-x="1159" d="M174 0v1450h862v-166h-667v-440h600v-168h-600v-506h690v-170h-885z" /> +<glyph unicode="F" horiz-adv-x="1081" d="M174 0v1450h862v-166h-667v-440h594v-168h-594v-676h-195z" /> +<glyph unicode="G" horiz-adv-x="1421" d="M102 727q0 360 169 549.5t494 189.5t497 -211l-134 -110q-137 158 -361 158t-340 -147.5t-116 -431.5t120 -431.5t353 -147.5q150 0 287 48v518h197v-613q-206 -117 -515 -117q-1 0 -3 1q-310 0 -479 192.5t-169 552.5z" /> +<glyph unicode="H" horiz-adv-x="1482" d="M174 0v1450h197v-616h741v616h197v-1450h-197v670h-741v-670h-197z" /> +<glyph unicode="I" horiz-adv-x="555" d="M180 0v1456h195v-1456h-195z" /> +<glyph unicode="J" horiz-adv-x="737" d="M45 -131q12 6 34.5 16.5t78 46t98.5 75.5t78 105.5t35 135.5v1036h-285v166h477v-1202q0 -104 -44 -197.5t-107 -152.5q-131 -119 -238 -164l-43 -19z" /> +<glyph unicode="K" horiz-adv-x="1304" d="M174 0v1450h195v-1450h-195zM414 782l565 668h266l-573 -659l618 -791h-258z" /> +<glyph unicode="L" horiz-adv-x="1089" d="M174 0v1450h195v-1280h663v-170h-858z" /> +<glyph unicode="M" horiz-adv-x="1923" d="M133 0l184 1450h244l400 -1167l401 1167h244l184 -1450h-186l-152 1186l-391 -1186h-199l-393 1186l-150 -1186h-186z" /> +<glyph unicode="N" horiz-adv-x="1439" d="M170 0v1450h229l475 -768q35 -51 92.5 -156.5t84 -152.5t26.5 -49v1126h193v-1450h-199l-510 840l-203 358v-1198h-188z" /> +<glyph unicode="O" horiz-adv-x="1536" d="M102 726q0 351 172 545.5t494 194.5t494 -194.5t172 -544.5t-174.5 -550t-492.5 -200t-491.5 199t-173.5 550zM307 726q0 -290 120 -437.5t341 -147.5t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5t-120 -433.5z" /> +<glyph unicode="P" horiz-adv-x="1196" d="M174 0v1450h428q248 0 373 -111.5t125 -313.5t-128 -315.5t-370 -113.5h-231v-596h-197zM371 760h231q141 0 217 67.5t76 196.5t-75 195.5t-218 66.5h-231v-526z" /> +<glyph unicode="Q" horiz-adv-x="1536" d="M102 743.5q0 333.5 172 528t494 194.5t494 -194.5t172 -538.5t-161 -541.5t-456 -211.5q20 -113 97 -176.5t168.5 -63.5t168.5 27l58 -168q-113 -37 -219 -37q-180 0 -299 108.5t-140 315.5q-266 34 -407.5 229t-141.5 528.5zM307 726q0 -290 120 -437.5t341 -147.5 t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5t-120 -433.5z" /> +<glyph unicode="R" d="M174 0v1450h428q248 0 373 -111.5t125 -314.5q0 -154 -75 -257t-220 -144l366 -623h-215l-352 596h-233v-596h-197zM371 760h231q141 0 217 67.5t76 196.5t-75 195.5t-218 66.5h-231v-526z" /> +<glyph unicode="S" horiz-adv-x="1122" d="M96 63l56 162q35 -18 100 -41.5t89 -30t56 -14.5q57 -12 129 -12q137 0 217 66.5t80 183.5q0 119 -90 174q-72 45 -166 72.5t-116.5 35t-78 29t-80 37.5t-63.5 49t-57 68q-45 92 -45 196q0 182 124 295t370 113q168 0 358 -80l-47 -158q-174 72 -310.5 72t-213 -57.5 t-76.5 -159.5q0 -115 86 -170q63 -43 154.5 -70.5t110.5 -35t70.5 -26t74 -32.5t61.5 -39.5t57.5 -54.5t40.5 -66q39 -66 39 -192q0 -201 -134 -308.5t-344 -107.5t-452 102z" /> +<glyph unicode="T" horiz-adv-x="1069" d="M0 1286v164h1069v-164h-424v-1286h-196v1286h-449z" /> +<glyph unicode="U" horiz-adv-x="1452" d="M160 461v989h196v-979q0 -317 370 -317t370 307v989h196v-989q0 -227 -141 -352t-426 -125t-425 125t-140 352z" /> +<glyph unicode="V" horiz-adv-x="1292" d="M41 1450h197l403 -1239l420 1239h190l-493 -1450h-242z" /> +<glyph unicode="W" horiz-adv-x="2115" d="M57 1448h199l340 -1268l334 1268h256l334 -1272l342 1272h196l-387 -1448h-297l-317 1208l-316 -1208h-297z" /> +<glyph unicode="X" horiz-adv-x="1323" d="M8 0l537 758l-496 692h225l394 -549l393 549h223l-504 -707l535 -743h-225l-431 600l-428 -600h-223z" /> +<glyph unicode="Y" horiz-adv-x="1163" d="M4 1450h215l363 -649l364 649h213l-481 -840v-610h-195v610z" /> +<glyph unicode="Z" horiz-adv-x="1153" d="M88 0v154l731 1130h-706v166h952v-145l-735 -1135h725v-170h-967z" /> +<glyph unicode="[" horiz-adv-x="651" d="M174 -395v1980h436v-147h-264v-1686h264v-147h-436z" /> +<glyph unicode="\" horiz-adv-x="870" d="M-41 1645h186l766 -2040h-182z" /> +<glyph unicode="]" horiz-adv-x="651" d="M41 -248h264v1686h-264v147h436v-1980h-436v147z" /> +<glyph unicode="^" horiz-adv-x="1378" d="M180 743l453 705h110l455 -703h-174l-336 547l-336 -549h-172z" /> +<glyph unicode="_" horiz-adv-x="1044" d="M0 -102h1044v-168h-1044v168z" /> +<glyph unicode="`" horiz-adv-x="477" d="M41 1440l123 127l272 -336l-76 -70z" /> +<glyph unicode="a" horiz-adv-x="1114" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 397.5 94t306.5 -95t102 -302v-674h-149q-8 49 -27 123q-147 -147 -344 -148q-157 0 -251.5 84t-94.5 239zM283 289q0 -162 190 -162q82 0 160 38t131 103v226h-143 q-338 0 -338 -205z" /> +<glyph unicode="b" horiz-adv-x="1222" d="M174 68v1486h193v-616q111 133 314.5 133t325 -136t121.5 -395t-144 -407.5t-396 -148.5q-162 0 -316 59zM367 166q104 -31 219 -31q162 0 254 107.5t92 295t-73 285t-192.5 97.5t-195.5 -57.5t-104 -160.5v-536z" /> +<glyph unicode="c" horiz-adv-x="1011" d="M94 528q0 254 127 398.5t372 144.5t370 -174l-129 -96q-96 119 -238.5 119t-223.5 -99.5t-81 -293t83 -293t227 -99.5t288 72l53 -131q-152 -88 -346 -88q-248 0 -375 143t-127 397z" /> +<glyph unicode="d" horiz-adv-x="1214" d="M94 515q0 259 144.5 407.5t396.5 148.5q109 0 223 -29v512h193v-1552h-156l-27 129q-115 -147 -322.5 -147t-329.5 136t-122 395zM291 517.5q0 -187.5 72.5 -285t192.5 -97.5t196.5 59.5t105.5 163.5v531q-104 31 -221 31q-162 0 -254 -107.5t-92 -295z" /> +<glyph unicode="e" horiz-adv-x="1103" d="M94 528q0 258 129 400.5t365 142.5q438 0 438 -536v-33h-735q4 -178 84 -272.5t228.5 -94.5t326.5 80l55 -131q-195 -100 -391 -100q-238 0 -369 143t-131 401zM299 645h524q-14 141 -71.5 208t-163.5 67q-244 0 -289 -275z" /> +<glyph unicode="f" horiz-adv-x="772" d="M53 905v148h185v155q0 180 94 264t228 84t265 -55l-57 -135q-94 37 -173 37t-122 -47t-43 -133v-170h324v-148h-324v-1224h-192v1224h-185z" /> +<glyph unicode="g" d="M94 515q0 259 144.5 407.5t396.5 148.5q133 0 256 -39l6 23h154v-1116q0 -453 -480 -453q-231 0 -438 106l66 142q111 -55 190.5 -75.5t181.5 -20.5q154 0 220.5 68.5t66.5 227.5v185q-113 -135 -316.5 -135t-325.5 136t-122 395zM291 517.5q0 -187.5 72.5 -285 t192.5 -97.5t196.5 59.5t105.5 163.5v531q-104 31 -221 31q-162 0 -254 -107.5t-92 -295z" /> +<glyph unicode="h" horiz-adv-x="1226" d="M174 0v1554h193v-634q138 151 353 151h3q168 0 257 -96t89 -279v-696h-192v682q0 125 -48.5 181.5t-154.5 56.5q-201 0 -307 -166v-754h-193z" /> +<glyph unicode="i" horiz-adv-x="540" d="M176 0v1053h189v-1053h-189zM176 1272v178h189v-178h-189z" /> +<glyph unicode="j" horiz-adv-x="544" d="M-25 -297q207 264 207 471v879h189v-879q0 -145 -69 -276t-224 -281zM182 1272v178h189v-178h-189z" /> +<glyph unicode="k" horiz-adv-x="1075" d="M174 0v1554h193v-1554h-193zM399 598l379 455h217l-374 -445l450 -608h-227z" /> +<glyph unicode="l" horiz-adv-x="540" d="M176 0v1554h189v-1554h-189z" /> +<glyph unicode="m" horiz-adv-x="1900" d="M168 0v1053h158l20 -144q137 162 348 162q246 0 324 -184q141 184 366 184q178 0 268.5 -95t90.5 -280v-696h-193v682q0 125 -48 181.5t-154 56.5q-193 0 -299 -166q4 -37 4 -58v-696h-193v682q0 125 -48 181.5t-155 56.5q-193 0 -297 -164v-756h-192z" /> +<glyph unicode="n" d="M168 0v1053h158l20 -148q145 166 371 166q168 0 257 -96t89 -279v-696h-193v682q0 125 -48 181.5t-154 56.5q-201 0 -308 -166v-754h-192z" /> +<glyph unicode="o" horiz-adv-x="1187" d="M94 528q0 256 130 399.5t370 143.5t370 -143.5t130 -399.5t-130 -400t-370 -144t-370 144t-130 400zM291 528.5q0 -192.5 79 -293t224 -100.5t224 100.5t79 293t-79 292t-224 99.5t-224 -99.5t-79 -292z" /> +<glyph unicode="p" horiz-adv-x="1212" d="M168 -502v1555h156l24 -129q113 147 321 147t329.5 -136t121.5 -395t-144.5 -407.5t-395.5 -148.5q-115 0 -220 26v-512h-192zM360 164q104 -29 218 -29q162 0 254 107.5t92 295t-73 285t-191.5 97.5t-193.5 -55.5t-106 -153.5v-547z" /> +<glyph unicode="q" horiz-adv-x="1214" d="M98 498q0 258 145.5 415.5t383 157.5t413.5 -78v-1495h-192v611q-113 -125 -303.5 -125t-318.5 128t-128 386zM289 516q0 -182 77.5 -283.5t194.5 -101.5q197 0 287 209v553q-92 31 -203 31q-156 0 -256 -113t-100 -295z" /> +<glyph unicode="r" horiz-adv-x="808" d="M174 0v1053h156l22 -146q111 164 291 164q57 0 135 -20l-30 -172q-88 20 -156 20q-141 0 -225 -147v-752h-193z" /> +<glyph unicode="s" horiz-adv-x="956" d="M102 61l60 156q178 -76 284 -76q209 0 209 154q0 61 -45 90q-51 33 -103 51.5t-66.5 24.5t-52.5 19.5t-55.5 20.5t-49 23.5t-48 29.5t-39 35.5t-32.5 47.5q-27 63 -27 135q0 127 98.5 213t288.5 86q127 0 299 -67l-51 -152q-152 59 -248 59t-145 -37.5t-49 -99.5 q0 -43 17.5 -61.5t27.5 -27.5t33.5 -19.5t37.5 -16.5q41 -18 72 -28.5t75 -25.5t63.5 -23.5t56.5 -27t55 -39t39 -48.5q41 -53 41 -158q0 -152 -108 -235q-106 -82 -278 -82q-1 0 -3 -1q-170 0 -357 80z" /> +<glyph unicode="t" horiz-adv-x="825" d="M59 905v148h201l33 307h143v-307h322v-148h-322v-581q0 -182 154 -183q61 0 151 29l33 -135q-113 -47 -234.5 -47t-208.5 81.5t-87 243.5v592h-185z" /> +<glyph unicode="u" d="M158 356v697h192v-682q0 -125 48 -181.5t155 -56.5q197 0 307 164v756h193v-1053h-158l-23 145q-136 -163 -353 -163h-3q-178 0 -268 95t-90 279z" /> +<glyph unicode="v" horiz-adv-x="1028" d="M23 1053h198l301 -881l299 881h187l-369 -1053h-244z" /> +<glyph unicode="w" horiz-adv-x="1630" d="M57 1053h193l235 -869l230 869h192l236 -869l237 869h193l-295 -1053h-258l-209 788l-205 -788h-254z" /> +<glyph unicode="x" horiz-adv-x="1030" d="M18 0l383 545l-356 508h223l254 -359l252 359h207l-356 -506l387 -547h-226l-280 397l-279 -397h-209z" /> +<glyph unicode="y" horiz-adv-x="1040" d="M23 1053h198l307 -893l306 893h186l-543 -1557h-174l172 504h-80z" /> +<glyph unicode="z" horiz-adv-x="966" d="M86 0v123l553 778h-524v152h757v-117l-557 -784h580v-152h-809z" /> +<glyph unicode="{" horiz-adv-x="704" d="M82 567v92q166 68 166 318v256q0 184 83 268t267 84h86v-135h-92q-90 0 -131 -41t-41 -133v-356q0 -164 -156 -308v-14q156 -154 156 -301v-379q0 -94 41 -136t131 -42h92v-135h-94q-186 0 -264 79.5t-78 272.5v279q0 121 -46 213t-120 118z" /> +<glyph unicode="|" horiz-adv-x="520" d="M174 -395v1980h172v-1980h-172z" /> +<glyph unicode="}" horiz-adv-x="704" d="M20 -260h93q90 0 131 42t41 136v379q0 147 155 301v14q-156 143 -155 308v356q0 92 -41 133t-131 41h-93v135h86q184 0 267.5 -84t83.5 -268v-256q0 -250 166 -318v-92q-74 -27 -120 -118.5t-46 -212.5v-279q0 -193 -78 -272.5t-264 -79.5h-95v135z" /> +<glyph unicode="~" horiz-adv-x="1114" d="M37 598q0 152 81 243t214 91t217 -80q35 -33 65 -66q72 -80 140.5 -79.5t105.5 49.5t37 133h166q0 -152 -81 -243t-218 -91q-80 0 -143.5 35t-98.5 78q-92 113 -168 112q-152 0 -151 -182h-166z" /> +<glyph unicode="¡" horiz-adv-x="550" d="M176 -500l25 1098h145l27 -1098h-197zM180 786v189h191v-189h-191z" /> +<glyph unicode="¢" horiz-adv-x="1011" d="M109 703.5q0 214.5 98 341t285 155.5v248h172v-244q159 -18 251 -110l-81 -109q-102 72 -240.5 72t-213.5 -92.5t-75 -263.5t77 -261t215 -90t269 68l49 -137q-106 -61 -251 -78v-203h-172v205q-186 27 -284.5 155.5t-98.5 343z" /> +<glyph unicode="£" horiz-adv-x="1112" d="M125 649v148h180q-4 16 -22 75q-35 106 -35 199q0 182 122 288.5t326 106.5q135 0 229.5 -57.5t133.5 -159.5l-146 -71q-43 125 -217 125q-119 0 -187.5 -64.5t-68.5 -175.5q0 -76 30 -159t38 -107h326v-148h-304q2 -14 2 -41q0 -129 -59 -255t-139 -189h715v-164h-899 v152q178 180 178 456q0 27 -2 41h-201z" /> +<glyph unicode="¤" horiz-adv-x="1513" d="M180 209l260 260q-53 86 -53 188.5t57 188.5l-264 264l127 125l262 -264q90 57 188.5 57t188.5 -55l262 262l125 -121l-262 -266q57 -100 57 -193.5t-57 -185.5l262 -262l-123 -123l-264 262q-92 -57 -186 -57t-195 57l-262 -266zM557 658q0 -85 58.5 -148.5t140.5 -63.5 t142 63.5t60 147.5t-61 148.5t-141 64.5t-139.5 -63.5t-59.5 -148.5z" /> +<glyph unicode="¥" horiz-adv-x="1175" d="M72 1450h221l301 -608l303 608h207l-367 -696h305v-148h-358v-192h358v-148h-358v-266h-195v266h-362v148h362v192h-362v148h309z" /> +<glyph unicode="¦" horiz-adv-x="520" d="M174 -395v805h172v-805h-172zM174 813v772h172v-772h-172z" /> +<glyph unicode="§" horiz-adv-x="935" d="M102 627q0 225 193 348q-113 131 -113 272.5t90 237.5t273 96q96 0 196 -29q-8 -74 -20 -143q-78 18 -150 18q-184 0 -184 -174q0 -104 158 -245q66 -57 131 -121t111.5 -149t46.5 -177q0 -223 -193 -346q111 -131 111 -273.5t-90.5 -237.5t-270.5 -95q-85 0 -196 29 l20 145q68 -18 150 -19q182 0 182 175q0 109 -158 245q-66 55 -130 116.5t-110.5 145.5t-46.5 181zM274 678q0 -94 84 -189q70 -78 217 -208q86 111 86.5 216t-66.5 185t-235 227q-86 -113 -86 -231z" /> +<glyph unicode="¨" horiz-adv-x="643" d="M41 1276v190h190v-190h-190zM414 1276v190h188v-190h-188z" /> +<glyph unicode="©" horiz-adv-x="1251" d="M72 687.5q0 230.5 161.5 391t393 160.5t392.5 -158.5t161 -389t-162 -393.5t-393.5 -163t-392 161t-160.5 391.5zM203 691q0 -177 124 -305t300 -128t300 126t124 304t-124 305t-300 127t-300 -126t-124 -303zM362 690q0 131 76 204t200 73t196 -93l-74 -73 q-49 61 -119 61t-108.5 -44t-38.5 -128q0 -174 153 -174q66 0 139 39l33 -96q-74 -47 -189.5 -47t-191.5 73.5t-76 204.5z" /> +<glyph unicode="ª" horiz-adv-x="733" d="M57 975.5q0 105.5 89.5 167t252.5 61.5h78v10q0 76 -29.5 107t-106.5 31t-204 -54l-47 111q135 68 271.5 68t205 -63.5t68.5 -201.5v-438h-119l-20 60q-88 -76 -200 -76t-175.5 56t-63.5 161.5zM213 971q0 -88 98.5 -88t165.5 80v131h-71q-193 0 -193 -123z" /> +<glyph unicode="«" horiz-adv-x="1251" d="M141 535l314 487l143 -104l-254 -383l250 -377l-141 -109zM625 535l313 487l141 -104l-254 -383l252 -377l-141 -109z" /> +<glyph unicode="¬" horiz-adv-x="1310" d="M182 743v148h938v-502h-159v354h-779z" /> +<glyph unicode="­" horiz-adv-x="956" d="M102 571v164h752v-164h-752z" /> +<glyph unicode="®" horiz-adv-x="1251" d="M72 916.5q0 230.5 161.5 391t393 160.5t392.5 -158.5t161 -389t-162 -393t-393.5 -162.5t-392 160.5t-160.5 391zM203 920.5q0 -177.5 124 -305.5t300 -128t300 126t124 304.5t-124 305.5t-300 127t-300 -126t-124 -303.5zM444 645v572h191q102 0 153.5 -46.5 t51.5 -128.5q0 -121 -105 -159l123 -201l-90 -49l-139 233h-80v-221h-105zM549 958h86q96 0 96 83t-96 83h-86v-166z" /> +<glyph unicode="¯" horiz-adv-x="704" d="M41 1257v144h623v-144h-623z" /> +<glyph unicode="°" horiz-adv-x="987" d="M180 1114q0 141 99.5 238.5t241 97.5t238.5 -97.5t97 -238.5t-97 -240.5t-238.5 -99.5t-241 99.5t-99.5 240.5zM354 1114q0 -74 49.5 -126t117 -52t115.5 52t48 126t-48 125t-115.5 51t-117 -51t-49.5 -125z" /> +<glyph unicode="±" horiz-adv-x="1310" d="M176 0v147h957v-147h-957zM176 655v148h387v387h172v-387h398v-148h-398v-389h-172v389h-387z" /> +<glyph unicode="²" horiz-adv-x="753" d="M74 1466q35 94 115.5 145.5t203.5 51.5t200 -73.5t77 -200.5t-82 -241t-252 -241h354v-133h-614v107q233 168 331.5 278.5t98.5 218.5q0 72 -34 112t-93 40q-110 0 -178 -123z" /> +<glyph unicode="³" horiz-adv-x="757" d="M66 909l96 99q57 -63 101 -88t107.5 -25t104.5 36t41 101q0 137 -176 137h-84v123h76q78 2 122 38t44 90.5t-34 82t-94.5 27.5t-100.5 -26.5t-76 -94.5l-119 64q35 82 113.5 136t198.5 54t198 -63.5t78 -180t-115 -180.5q131 -57 131 -215q0 -119 -84 -190.5t-223 -71.5 q-180 0 -305 147z" /> +<glyph unicode="´" horiz-adv-x="477" d="M41 1231l272 336l123 -127l-319 -279z" /> +<glyph unicode="¶" horiz-adv-x="1058" d="M92 1074q0 175 105.5 275.5t294.5 100.5h393v-1843h-133v1730h-127v-1730h-133v1083q-180 0 -290 104.5t-110 279.5z" /> +<glyph unicode="·" horiz-adv-x="565" d="M180 514v205h205v-205h-205z" /> +<glyph unicode="¸" horiz-adv-x="475" d="M35 -365l53 64q51 -57 102 -57q100 0 101 82q0 43 -30 66.5t-83 23.5h-45l-24 41l67 145h86l-33 -106q86 -10 135.5 -56.5t49.5 -119t-56.5 -120t-150.5 -47.5q-74 0 -127 41q-18 14 -45 43z" /> +<glyph unicode="¹" horiz-adv-x="755" d="M117 1534l278 127l111 -21v-866h-156v717l-194 -61z" /> +<glyph unicode="º" horiz-adv-x="778" d="M59 1122q0 168 86 262.5t245 94.5t244 -93.5t85 -262.5t-86 -263t-244 -94t-244 94t-86 262zM217 1122.5q0 -112.5 45 -172t127 -59.5q172 0 172 231.5t-172 231.5q-82 0 -127 -59.5t-45 -172z" /> +<glyph unicode="»" horiz-adv-x="1249" d="M172 918l139 104l314 -487l-312 -486l-139 109l248 377zM651 918l144 104l313 -487l-311 -486l-144 109l252 377z" /> +<glyph unicode="¼" horiz-adv-x="1228" d="M166 526v148h956v-148h-956zM254 -172l387 588h207v-555h98v-131h-98v-195h-150v195h-444v98zM373 1534l278 127l111 -21v-866h-156v717l-194 -61zM436 -139h262v407z" /> +<glyph unicode="½" horiz-adv-x="1228" d="M160 526v148h956v-148h-956zM340 225q35 94 116 145.5t203.5 51.5t199.5 -74t77 -201t-82 -240.5t-252 -240.5h354v-133h-614v107q233 168 331.5 278.5t98.5 218.5q0 72 -33.5 112t-93.5 40q-110 0 -178 -123zM375 1534l278 127l111 -21v-866h-156v717l-194 -61z" /> +<glyph unicode="¾" horiz-adv-x="1228" d="M156 526v148h956v-148h-956zM240 -176l387 588h207v-555h98v-131h-98v-195h-150v195h-444v98zM338 909l96 99q57 -63 101.5 -88t108 -25t104 36t40.5 101q0 137 -176 137h-84v123h76q78 2 122 38t44 90.5t-34 82t-94 27.5t-100 -26.5t-77 -94.5l-119 64q35 82 114 136 t198.5 54t197.5 -63.5t78 -180t-115 -180.5q131 -57 131 -215q0 -119 -84 -190.5t-223 -71.5q-180 0 -305 147zM422 -143h262v407z" /> +<glyph unicode="¿" horiz-adv-x="956" d="M98 -43q0 160 82 246q37 39 80 71.5t87 68.5t81 83q82 102 82 307h190q0 -244 -79 -371q-61 -98 -164 -165q-43 -29 -78 -60q-80 -70 -80 -188q0 -82 59.5 -139.5t186.5 -57.5t276 51l29 -176q-147 -53 -337.5 -53t-302.5 111.5t-112 271.5zM510 868v183h190v-183h-190z " /> +<glyph unicode="À" horiz-adv-x="1308" d="M25 0l499 1450h242l518 -1450h-190l-152 426h-575l-146 -426h-196zM403 1808l123 127l273 -336l-76 -69zM424 590h459l-234 657z" /> +<glyph unicode="Á" horiz-adv-x="1308" d="M25 0l499 1450h242l518 -1450h-190l-152 426h-575l-146 -426h-196zM424 590h459l-234 657zM457 1599l272 336l123 -127l-320 -278z" /> +<glyph unicode="Â" horiz-adv-x="1308" d="M25 0l499 1450h242l518 -1450h-190l-152 426h-575l-146 -426h-196zM315 1628l314 260h45l313 -260l-61 -84l-275 189l-280 -189zM424 590h459l-234 657z" /> +<glyph unicode="Ã" horiz-adv-x="1308" d="M25 0l499 1450h242l518 -1450h-190l-152 426h-575l-146 -426h-196zM276 1595q0 111 62.5 177.5t169.5 66.5q98 0 162.5 -64.5t117.5 -64.5q104 0 105 111h121q0 -111 -60.5 -177.5t-160.5 -66.5q-66 0 -115 32.5t-89 65.5t-86 33t-76 -30.5t-30 -82.5h-121zM424 590h459 l-234 657z" /> +<glyph unicode="Ä" horiz-adv-x="1308" d="M25 0l499 1450h242l518 -1450h-190l-152 426h-575l-146 -426h-196zM371 1645v190h190v-190h-190zM424 590h459l-234 657zM743 1645v190h189v-190h-189z" /> +<glyph unicode="Å" horiz-adv-x="1308" d="M25 0l499 1450h242l518 -1450h-190l-152 426h-575l-146 -426h-196zM424 590h459l-234 657zM451 1712q0 84 59 143.5t143 59.5t143.5 -59.5t59.5 -143.5t-59.5 -143.5t-143.5 -59.5t-143 59.5t-59 143.5zM553 1713q0 -48 27.5 -79.5t72.5 -31.5t74 31.5t29 78.5t-29 80 t-74 33t-72.5 -32t-27.5 -80z" /> +<glyph unicode="Æ" horiz-adv-x="1966" d="M0 0l838 1450h1001v-166h-668v-440h601v-168h-601v-506h691v-170h-885v426h-522l-246 -426h-209zM549 590h428v741z" /> +<glyph unicode="Ç" horiz-adv-x="1306" d="M102 736q0 351 169 540.5t479.5 189.5t470.5 -211l-136 -110q-117 154 -329.5 153.5t-328.5 -146.5t-116 -429t120 -430.5t353 -147.5q160 0 346 97l58 -154q-154 -100 -414 -106l-26 -88q86 -10 135 -56.5t49 -119t-56.5 -120t-150.5 -47.5q-74 0 -127 41q-18 14 -45 43 l53 64q49 -57 103 -57q100 0 100 82q0 43 -30 66.5t-83 23.5h-45l-24 41l59 129q-285 20 -434.5 210.5t-149.5 541.5z" /> +<glyph unicode="È" horiz-adv-x="1163" d="M174 0v1450h862v-166h-667v-440h600v-168h-600v-506h690v-170h-885zM371 1808l123 127l272 -336l-76 -69z" /> +<glyph unicode="É" horiz-adv-x="1163" d="M174 0v1450h862v-166h-667v-440h600v-168h-600v-506h690v-170h-885zM424 1599l272 336l123 -127l-319 -278z" /> +<glyph unicode="Ê" horiz-adv-x="1163" d="M174 0v1450h862v-166h-667v-440h600v-168h-600v-506h690v-170h-885zM283 1628l313 260h45l313 -260l-61 -84l-275 189l-280 -189z" /> +<glyph unicode="Ë" horiz-adv-x="1163" d="M174 0v1450h862v-166h-667v-440h600v-168h-600v-506h690v-170h-885zM338 1645v190h190v-190h-190zM711 1645v190h188v-190h-188z" /> +<glyph unicode="Ì" horiz-adv-x="555" d="M31 1808l123 127l272 -336l-76 -69zM180 0v1456h195v-1456h-195z" /> +<glyph unicode="Í" horiz-adv-x="555" d="M84 1599l272 336l123 -127l-319 -278zM180 0v1456h195v-1456h-195z" /> +<glyph unicode="Î" horiz-adv-x="555" d="M-57 1628l313 260h45l313 -260l-61 -84l-274 189l-281 -189zM180 0v1456h195v-1456h-195z" /> +<glyph unicode="Ï" horiz-adv-x="555" d="M-2 1645v190h190v-190h-190zM180 0v1456h195v-1456h-195zM371 1645v190h188v-190h-188z" /> +<glyph unicode="Ð" horiz-adv-x="1400" d="M0 657v164h174v629h469q322 0 494 -189.5t172 -532.5t-173 -535.5t-493 -192.5h-469v657h-174zM371 164h272q221 0 341 141t120 423t-120 420t-341 138h-272v-465h315v-164h-315v-493z" /> +<glyph unicode="Ñ" horiz-adv-x="1439" d="M170 0v1450h229l475 -768q35 -51 92.5 -156.5t84 -152.5t26.5 -49v1126h193v-1450h-199l-510 840l-203 358v-1198h-188zM354 1595q0 111 62.5 177.5t169.5 66.5q98 0 162.5 -64.5t117.5 -64.5q104 0 105 111h121q0 -111 -60.5 -177.5t-161.5 -66.5q-66 0 -114.5 32.5 t-88.5 65.5t-86 33t-76 -30.5t-30 -82.5h-121z" /> +<glyph unicode="Ò" horiz-adv-x="1536" d="M102 726q0 351 172 545.5t494 194.5t494 -194.5t172 -544.5t-174.5 -550t-492.5 -200t-491.5 199t-173.5 550zM307 726q0 -290 120 -437.5t341 -147.5t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5t-120 -433.5zM514 1808l123 127l272 -336l-75 -69z" /> +<glyph unicode="Ó" horiz-adv-x="1536" d="M102 726q0 351 172 545.5t494 194.5t494 -194.5t172 -544.5t-174.5 -550t-492.5 -200t-491.5 199t-173.5 550zM307 726q0 -290 120 -437.5t341 -147.5t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5t-120 -433.5zM567 1599l273 336l123 -127l-320 -278z" /> +<glyph unicode="Ô" horiz-adv-x="1536" d="M102 726q0 351 172 545.5t494 194.5t494 -194.5t172 -544.5t-174.5 -550t-492.5 -200t-491.5 199t-173.5 550zM307 726q0 -290 120 -437.5t341 -147.5t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5t-120 -433.5zM426 1628l313 260h45l314 -260l-62 -84 l-274 189l-281 -189z" /> +<glyph unicode="Õ" horiz-adv-x="1536" d="M102 726q0 351 172 545.5t494 194.5t494 -194.5t172 -544.5t-174.5 -550t-492.5 -200t-491.5 199t-173.5 550zM307 726q0 -290 120 -437.5t341 -147.5t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5t-120 -433.5zM387 1595q0 111 62.5 177.5t168.5 66.5 q98 0 163 -64.5t118 -64.5q104 0 105 111h120q0 -111 -60 -177.5t-161 -66.5q-66 0 -115 32.5t-89 65.5t-86 33t-75.5 -30.5t-29.5 -82.5h-121z" /> +<glyph unicode="Ö" horiz-adv-x="1536" d="M102 726q0 351 172 545.5t494 194.5t494 -194.5t172 -544.5t-174.5 -550t-492.5 -200t-491.5 199t-173.5 550zM307 726q0 -290 120 -437.5t341 -147.5t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5t-120 -433.5zM481 1645v190h191v-190h-191zM854 1645v190 h188v-190h-188z" /> +<glyph unicode="×" horiz-adv-x="1310" d="M213 283l326 325l-326 328l115 115l325 -328l328 328l115 -115l-328 -328l328 -325l-115 -115l-328 326l-325 -326z" /> +<glyph unicode="Ø" horiz-adv-x="1536" d="M102 729q0 348 172 542.5t494 194.5q70 0 156 -14l22 68h168l-37 -115q174 -78 265.5 -251t91.5 -425q0 -352 -174.5 -552t-491.5 -200q-53 0 -143 13l-37 -115h-168l51 160q-180 78 -274.5 256t-94.5 438zM307 729q0 -397 217 -526l348 1089q-55 10 -104 11 q-221 0 -341 -143.5t-120 -430.5zM676 147q43 -6 92 -6q221 0 341 148.5t120 439.5q0 375 -207 506z" /> +<glyph unicode="Ù" horiz-adv-x="1452" d="M160 461v989h196v-979q0 -317 370 -317t370 307v989h196v-989q0 -227 -141 -352t-426 -125t-425 125t-140 352zM477 1808l123 127l272 -336l-75 -69z" /> +<glyph unicode="Ú" horiz-adv-x="1452" d="M160 461v989h196v-979q0 -317 370 -317t370 307v989h196v-989q0 -227 -141 -352t-426 -125t-425 125t-140 352zM530 1599l273 336l123 -127l-320 -278z" /> +<glyph unicode="Û" horiz-adv-x="1452" d="M160 461v989h196v-979q0 -317 370 -317t370 307v989h196v-989q0 -227 -141 -352t-426 -125t-425 125t-140 352zM389 1628l313 260h46l313 -260l-62 -84l-274 189l-281 -189z" /> +<glyph unicode="Ü" horiz-adv-x="1452" d="M160 461v989h196v-979q0 -317 370 -317t370 307v989h196v-989q0 -227 -141 -352t-426 -125t-425 125t-140 352zM444 1645v190h191v-190h-191zM817 1645v190h189v-190h-189z" /> +<glyph unicode="Ý" horiz-adv-x="1163" d="M4 1450h215l363 -649l364 649h213l-481 -840v-610h-195v610zM383 1599l272 336l123 -127l-319 -278z" /> +<glyph unicode="Þ" horiz-adv-x="1196" d="M174 0v1450h197v-258h231q248 0 373 -111.5t125 -313.5t-128 -315.5t-370 -113.5h-231v-338h-197zM371 502h231q141 0 217 67.5t76 196.5t-75 195.5t-218 66.5h-231v-526z" /> +<glyph unicode="ß" horiz-adv-x="1193" d="M174 0v1133q0 176 108.5 269t295 93t291 -87t104.5 -230q0 -74 -34 -137.5t-75 -98.5q-106 -98 -106 -160q0 -63 182 -151q68 -33 125 -107.5t57 -179.5q0 -164 -120.5 -254t-331.5 -90h-158v164h176q111 0 172.5 46t61.5 122t-38 115.5t-92.5 64.5t-108.5 51.5t-92 78.5 t-38 123t34 126t76 89t75.5 83t33.5 102q0 176 -188 176q-102 0 -159.5 -48t-57.5 -132v-1161h-193z" /> +<glyph unicode="à" horiz-adv-x="1114" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 397.5 94t306.5 -95t102 -302v-674h-149q-8 49 -27 123q-147 -147 -344 -148q-157 0 -251.5 84t-94.5 239zM283 289q0 -162 190 -162q82 0 160 38t131 103v226h-143 q-338 0 -338 -205zM307 1440l123 127l272 -336l-75 -70z" /> +<glyph unicode="á" horiz-adv-x="1114" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 397.5 94t306.5 -95t102 -302v-674h-149q-8 49 -27 123q-147 -147 -344 -148q-157 0 -251.5 84t-94.5 239zM283 289q0 -162 190 -162q82 0 160 38t131 103v226h-143 q-338 0 -338 -205zM360 1231l273 336l123 -127l-320 -279z" /> +<glyph unicode="â" horiz-adv-x="1114" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 397.5 94t306.5 -95t102 -302v-674h-149q-8 49 -27 123q-147 -147 -344 -148q-157 0 -251.5 84t-94.5 239zM219 1260l313 260h46l313 -260l-62 -84l-274 188l-281 -188z M283 289q0 -162 190 -162q82 0 160 38t131 103v226h-143q-338 0 -338 -205z" /> +<glyph unicode="ã" horiz-adv-x="1114" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 397.5 94t306.5 -95t102 -302v-674h-149q-8 49 -27 123q-147 -147 -344 -148q-157 0 -251.5 84t-94.5 239zM180 1227q0 111 62.5 177t169.5 66q98 0 162.5 -64.5t117.5 -64.5 q104 0 105 111h121q0 -111 -60.5 -177.5t-161.5 -66.5q-66 0 -115 33t-88.5 65.5t-86 32.5t-76 -30.5t-29.5 -81.5h-121zM283 289q0 -162 190 -162q82 0 160 38t131 103v226h-143q-338 0 -338 -205z" /> +<glyph unicode="ä" horiz-adv-x="1114" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 397.5 94t306.5 -95t102 -302v-674h-149q-8 49 -27 123q-147 -147 -344 -148q-157 0 -251.5 84t-94.5 239zM274 1276v190h191v-190h-191zM283 289q0 -162 190 -162 q82 0 160 38t131 103v226h-143q-338 0 -338 -205zM647 1276v190h189v-190h-189z" /> +<glyph unicode="å" horiz-adv-x="1114" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 397.5 94t306.5 -95t102 -302v-674h-149q-8 49 -27 123q-147 -147 -344 -148q-157 0 -251.5 84t-94.5 239zM283 289q0 -162 190 -162q82 0 160 38t131 103v226h-143 q-338 0 -338 -205zM354 1343.5q0 83.5 59.5 143t143.5 59.5t143.5 -59.5t59.5 -143t-59.5 -143t-143.5 -59.5t-143.5 59.5t-59.5 143zM457 1344.5q0 -48.5 27.5 -80t72.5 -31.5t73.5 31.5t28.5 79t-28.5 80t-73.5 32.5t-72.5 -31.5t-27.5 -80z" /> +<glyph unicode="æ" horiz-adv-x="1769" d="M90 298q0 155 135 247t383 92h156v41q0 131 -54.5 186.5t-191.5 55.5t-311 -76l-57 133q193 94 378 94q276 0 369 -149q127 150 356 149q438 0 439 -536v-33h-736q4 -178 84 -272.5t228.5 -94.5t326.5 80l56 -131q-195 -100 -391 -100q-264 0 -388 188 q-199 -197 -436 -197q-157 0 -251.5 84t-94.5 239zM283 289q0 -162 190 -162q82 0 160 38t131 103v226h-143q-338 0 -338 -205zM965 645h524q-14 141 -72 208t-164 67q-244 0 -288 -275z" /> +<glyph unicode="ç" horiz-adv-x="1011" d="M94 539.5q0 242.5 127 387t372 144.5t370 -174l-129 -96q-96 119 -238.5 119t-223.5 -99.5t-81 -293t83 -293t227 -99.5t288 72l53 -131q-147 -86 -340 -88l-29 -94q86 -10 135.5 -56.5t49.5 -119t-56.5 -120t-150.5 -47.5q-74 0 -127 41q-18 14 -45 43l53 64 q51 -57 103 -57q100 0 100 82q0 43 -30 66.5t-83 23.5h-45l-24 41l63 137q-211 23 -316.5 164t-105.5 383.5z" /> +<glyph unicode="è" horiz-adv-x="1103" d="M94 528q0 258 129 400.5t365 142.5q438 0 438 -536v-33h-735q4 -178 84 -272.5t228.5 -94.5t326.5 80l55 -131q-195 -100 -391 -100q-238 0 -369 143t-131 401zM299 645h524q-14 141 -71.5 208t-163.5 67q-244 0 -289 -275zM334 1440l123 127l272 -336l-76 -70z" /> +<glyph unicode="é" horiz-adv-x="1103" d="M94 528q0 258 129 400.5t365 142.5q438 0 438 -536v-33h-735q4 -178 84 -272.5t228.5 -94.5t326.5 80l55 -131q-195 -100 -391 -100q-238 0 -369 143t-131 401zM299 645h524q-14 141 -71.5 208t-163.5 67q-244 0 -289 -275zM387 1231l272 336l123 -127l-319 -279z" /> +<glyph unicode="ê" horiz-adv-x="1103" d="M94 528q0 258 129 400.5t365 142.5q438 0 438 -536v-33h-735q4 -178 84 -272.5t228.5 -94.5t326.5 80l55 -131q-195 -100 -391 -100q-238 0 -369 143t-131 401zM246 1260l313 260h45l314 -260l-62 -84l-274 188l-281 -188zM299 645h524q-14 141 -71.5 208t-163.5 67 q-244 0 -289 -275z" /> +<glyph unicode="ë" horiz-adv-x="1103" d="M94 528q0 258 129 400.5t365 142.5q438 0 438 -536v-33h-735q4 -178 84 -272.5t228.5 -94.5t326.5 80l55 -131q-195 -100 -391 -100q-238 0 -369 143t-131 401zM299 645h524q-14 141 -71.5 208t-163.5 67q-244 0 -289 -275zM301 1276v190h191v-190h-191zM674 1276v190 h188v-190h-188z" /> +<glyph unicode="ì" horiz-adv-x="540" d="M27 1440l123 127l272 -336l-76 -70zM176 0v1053h189v-1053h-189z" /> +<glyph unicode="í" horiz-adv-x="540" d="M80 1231l272 336l123 -127l-319 -279zM176 0v1053h189v-1053h-189z" /> +<glyph unicode="î" horiz-adv-x="540" d="M-61 1260l313 260h45l313 -260l-61 -84l-275 188l-280 -188zM176 0v1053h189v-1053h-189z" /> +<glyph unicode="ï" horiz-adv-x="540" d="M-6 1276v190h190v-190h-190zM176 0v1053h189v-1053h-189zM367 1276v190h188v-190h-188z" /> +<glyph unicode="ð" horiz-adv-x="1163" d="M57 451.5q0 203.5 131 328.5t335 125t329 -121q-23 266 -186 406l-117 -166l-111 70l115 163q-96 41 -221 46l22 163q168 -6 301 -63l72 102l111 -69l-68 -97q293 -207 293 -657q0 -698 -518 -698q-215 0 -351.5 132t-136.5 335.5zM262 457q0 -131 81 -218t200 -87 q154 0 229.5 109.5t83.5 348.5q-61 66 -126.5 98.5t-185.5 32.5t-201 -76.5t-81 -207.5z" /> +<glyph unicode="ñ" d="M168 0v1053h158l20 -148q145 166 371 166q168 0 257 -96t89 -279v-696h-193v682q0 125 -48 181.5t-154 56.5q-201 0 -308 -166v-754h-192zM262 1227q0 111 62.5 177t169.5 66q98 0 162.5 -64.5t117.5 -64.5q104 0 105 111h120q0 -111 -60 -177.5t-161 -66.5 q-66 0 -115 33t-88.5 65.5t-86 32.5t-76 -30.5t-29.5 -81.5h-121z" /> +<glyph unicode="ò" horiz-adv-x="1187" d="M94 528q0 256 130 399.5t370 143.5t370 -143.5t130 -399.5t-130 -400t-370 -144t-370 144t-130 400zM291 528.5q0 -192.5 79 -293t224 -100.5t224 100.5t79 293t-79 292t-224 99.5t-224 -99.5t-79 -292zM344 1440l123 127l272 -336l-75 -70z" /> +<glyph unicode="ó" horiz-adv-x="1187" d="M94 528q0 256 130 399.5t370 143.5t370 -143.5t130 -399.5t-130 -400t-370 -144t-370 144t-130 400zM291 528.5q0 -192.5 79 -293t224 -100.5t224 100.5t79 293t-79 292t-224 99.5t-224 -99.5t-79 -292zM397 1231l273 336l123 -127l-320 -279z" /> +<glyph unicode="ô" horiz-adv-x="1187" d="M94 528q0 256 130 399.5t370 143.5t370 -143.5t130 -399.5t-130 -400t-370 -144t-370 144t-130 400zM256 1260l313 260h45l314 -260l-62 -84l-274 188l-281 -188zM291 528.5q0 -192.5 79 -293t224 -100.5t224 100.5t79 293t-79 292t-224 99.5t-224 -99.5t-79 -292z" /> +<glyph unicode="õ" horiz-adv-x="1187" d="M94 528q0 256 130 399.5t370 143.5t370 -143.5t130 -399.5t-130 -400t-370 -144t-370 144t-130 400zM217 1227q0 111 62.5 177t169.5 66q98 0 162.5 -64.5t117.5 -64.5q104 0 105 111h120q0 -111 -60 -177.5t-161 -66.5q-66 0 -115 33t-89 65.5t-86 32.5t-75.5 -30.5 t-29.5 -81.5h-121zM291 528.5q0 -192.5 79 -293t224 -100.5t224 100.5t79 293t-79 292t-224 99.5t-224 -99.5t-79 -292z" /> +<glyph unicode="ö" horiz-adv-x="1187" d="M94 528q0 256 130 399.5t370 143.5t370 -143.5t130 -399.5t-130 -400t-370 -144t-370 144t-130 400zM291 528.5q0 -192.5 79 -293t224 -100.5t224 100.5t79 293t-79 292t-224 99.5t-224 -99.5t-79 -292zM311 1276v190h191v-190h-191zM684 1276v190h188v-190h-188z" /> +<glyph unicode="÷" horiz-adv-x="1310" d="M176 555v147h957v-147h-957zM561 176v172h180v-172h-180zM561 918v172h180v-172h-180z" /> +<glyph unicode="ø" horiz-adv-x="1187" d="M94 528q0 256 130 399.5t370 143.5q49 0 94 -6l31 96h139l-43 -131q135 -55 207 -184t72 -318q0 -256 -130 -400t-370 -144q-63 0 -111 8l-37 -117h-139l49 156q-262 120 -262 497zM291 528q0 -240 119 -333l231 720q-33 4 -47 5q-145 0 -224 -99.5t-79 -292.5zM530 139 q41 -4 64 -4q145 0 224 100t79 293q0 250 -133 342z" /> +<glyph unicode="ù" d="M158 356v697h192v-682q0 -125 48 -181.5t155 -56.5q197 0 307 164v756h193v-1053h-158l-23 145q-137 -164 -356 -163q-178 0 -268 95t-90 279zM360 1440l123 127l273 -336l-76 -70z" /> +<glyph unicode="ú" d="M158 356v697h192v-682q0 -125 48 -181.5t155 -56.5q197 0 307 164v756h193v-1053h-158l-23 145q-137 -164 -356 -163q-178 0 -268 95t-90 279zM414 1231l272 336l123 -127l-320 -279z" /> +<glyph unicode="û" d="M158 356v697h192v-682q0 -125 48 -181.5t155 -56.5q197 0 307 164v756h193v-1053h-158l-23 145q-137 -164 -356 -163q-178 0 -268 95t-90 279zM272 1260l314 260h45l313 -260l-61 -84l-275 188l-280 -188z" /> +<glyph unicode="ü" d="M158 356v697h192v-682q0 -125 48 -181.5t155 -56.5q197 0 307 164v756h193v-1053h-158l-23 145q-137 -164 -356 -163q-178 0 -268 95t-90 279zM328 1276v190h190v-190h-190zM700 1276v190h189v-190h-189z" /> +<glyph unicode="ý" horiz-adv-x="1040" d="M23 1053h198l307 -893l306 893h186l-543 -1557h-174l172 504h-80zM346 1231l272 336l123 -127l-319 -279z" /> +<glyph unicode="þ" horiz-adv-x="1212" d="M168 -502v2054h192v-612q113 131 315 131t323.5 -136t121.5 -395t-144.5 -407.5t-395.5 -148.5q-115 0 -220 26v-512h-192zM360 164q104 -29 218 -29q162 0 254 107.5t92 295t-73 285t-191.5 97.5t-193.5 -55.5t-106 -153.5v-547z" /> +<glyph unicode="ÿ" horiz-adv-x="1040" d="M23 1053h198l307 -893l306 893h186l-543 -1557h-174l172 504h-80zM260 1276v190h191v-190h-191zM633 1276v190h188v-190h-188z" /> +<glyph unicode="Œ" horiz-adv-x="2220" d="M102 726q0 351 172 545.5t481.5 194.5t475.5 -194v178h862v-166h-668v-440h600v-168h-600v-506h691v-170h-885v176q-164 -199 -473 -199t-482.5 199t-173.5 550zM307 726q0 -290 120 -437.5t341 -147.5t341 148.5t120 436.5t-120 432.5t-341 144.5t-341 -143.5 t-120 -433.5z" /> +<glyph unicode="œ" horiz-adv-x="1826" d="M94 528q0 256 124 399.5t355 143.5q262 0 377 -211q113 211 381 211q418 0 418 -536v-33h-694q4 -178 78.5 -272.5t214 -94.5t305.5 80l55 -131q-184 -100 -371 -100q-270 0 -387 213q-111 -213 -377 -213q-229 0 -354 144t-125 400zM291 528.5q0 -192.5 73.5 -293 t209 -100.5t209 100.5t73.5 293t-73.5 292t-209 99.5t-209 -99.5t-73.5 -292zM1063 645h483q-14 143 -66.5 209t-148.5 66q-227 0 -268 -275z" /> +<glyph unicode="ˆ" horiz-adv-x="753" d="M41 1260l313 260h45l314 -260l-62 -84l-274 188l-281 -188z" /> +<glyph unicode="˜" horiz-adv-x="1069" d="M182 1227q0 111 62.5 177t169.5 66q98 0 162.5 -64.5t117.5 -64.5q104 0 105 111h121q0 -111 -60.5 -177.5t-161.5 -66.5q-66 0 -114.5 33t-88.5 65.5t-86.5 32.5t-76 -30.5t-29.5 -81.5h-121z" /> +<glyph unicode=" " horiz-adv-x="967" /> +<glyph unicode=" " horiz-adv-x="1935" /> +<glyph unicode=" " horiz-adv-x="967" /> +<glyph unicode=" " horiz-adv-x="1935" /> +<glyph unicode=" " horiz-adv-x="645" /> +<glyph unicode=" " horiz-adv-x="483" /> +<glyph unicode=" " horiz-adv-x="322" /> +<glyph unicode=" " horiz-adv-x="322" /> +<glyph unicode=" " horiz-adv-x="241" /> +<glyph unicode=" " horiz-adv-x="387" /> +<glyph unicode=" " horiz-adv-x="107" /> +<glyph unicode="‐" horiz-adv-x="956" d="M102 571v164h752v-164h-752z" /> +<glyph unicode="‑" horiz-adv-x="956" d="M102 571v164h752v-164h-752z" /> +<glyph unicode="‒" horiz-adv-x="956" d="M102 571v164h752v-164h-752z" /> +<glyph unicode="–" horiz-adv-x="1024" d="M0 571v164h1024v-164h-1024z" /> +<glyph unicode="—" horiz-adv-x="1536" d="M0 571v164h1536v-164h-1536z" /> +<glyph unicode="‘" horiz-adv-x="405" d="M88 1110v164l121 280h92l-100 -239h92v-205h-205z" /> +<glyph unicode="’" horiz-adv-x="405" d="M88 1110l100 240h-92v204h205v-163l-121 -281h-92z" /> +<glyph unicode="‚" horiz-adv-x="573" d="M180 -209l35 428h178l-125 -450z" /> +<glyph unicode="“" horiz-adv-x="745" d="M88 1110v164l121 280h92l-100 -239h92v-205h-205zM428 1110v164l121 280h92l-100 -239h92v-205h-205z" /> +<glyph unicode="”" horiz-adv-x="745" d="M88 1110l100 240h-92v204h205v-163l-121 -281h-92zM428 1110l100 240h-92v204h205v-163l-121 -281h-92z" /> +<glyph unicode="„" horiz-adv-x="940" d="M180 -209l35 428h178l-125 -450zM514 -209l35 428h178l-125 -450z" /> +<glyph unicode="•" horiz-adv-x="921" d="M180 676q0 117 82 198.5t199 81.5t198.5 -81.5t81.5 -198.5t-81.5 -199t-198.5 -82t-199 82t-82 199z" /> +<glyph unicode=" " horiz-adv-x="387" /> +<glyph unicode="‹" horiz-adv-x="770" d="M141 535l314 487l143 -104l-254 -383l250 -377l-141 -109z" /> +<glyph unicode="›" horiz-adv-x="770" d="M172 918l143 104l314 -487l-312 -486l-141 109l250 377z" /> +<glyph unicode=" " horiz-adv-x="483" /> +<glyph unicode="€" horiz-adv-x="1392" d="M78 487l41 148h157q-4 57 -4 101t2 71h-190l41 147h172q55 238 225 375t425 137t394 -77l-63 -160q-47 31 -137 52.5t-172 21.5q-182 0 -299 -92.5t-164 -256.5h682l-53 -147h-656q-2 -27 -2 -71t4 -101h596l-51 -148h-516q49 -160 171 -250t314 -90q135 0 271 60 l75 -148q-156 -76 -374 -75q-266 0 -438.5 133t-229.5 370h-221z" /> +<glyph unicode="◼" horiz-adv-x="1054" d="M0 0v1055h1055v-1055h-1055z" /> +<hkern u1="+" u2="7" k="92" /> +<hkern u1="-" u2="x" k="61" /> +<hkern u1="-" u2="Z" k="82" /> +<hkern u1="-" u2="Y" k="143" /> +<hkern u1="-" u2="X" k="123" /> +<hkern u1="-" u2="W" k="61" /> +<hkern u1="-" u2="V" k="82" /> +<hkern u1="-" u2="T" k="123" /> +<hkern u1="-" u2="J" k="72" /> +<hkern u1="-" u2="A" k="51" /> +<hkern u1="." u2="*" k="125" /> +<hkern u1="/" u2="A" k="90" /> +<hkern u1="/" u2="4" k="92" /> +<hkern u1="0" u2="7" k="63" /> +<hkern u1="1" u2="7" k="47" /> +<hkern u1="1" u2="4" k="31" /> +<hkern u1="7" u2="4" k="51" /> +<hkern u1="7" u2="/" k="119" /> +<hkern u1="7" u2="." k="186" /> +<hkern u1=":" u2="*" k="53" /> +<hkern u1="A" u2="}" k="31" /> +<hkern u1="A" u2="y" k="41" /> +<hkern u1="A" u2="w" k="51" /> +<hkern u1="A" u2="v" k="51" /> +<hkern u1="A" u2="Y" k="143" /> +<hkern u1="A" u2="W" k="86" /> +<hkern u1="A" u2="V" k="109" /> +<hkern u1="A" u2="T" k="123" /> +<hkern u1="A" u2="O" k="31" /> +<hkern u1="A" u2="-" k="51" /> +<hkern u1="A" u2="*" k="162" /> +<hkern u1="C" u2="y" k="37" /> +<hkern u1="C" u2="w" k="25" /> +<hkern u1="C" u2="v" k="33" /> +<hkern u1="C" u2="o" k="27" /> +<hkern u1="C" u2="-" k="143" /> +<hkern u1="E" u2="y" k="12" /> +<hkern u1="E" u2="w" k="16" /> +<hkern u1="E" u2="v" k="14" /> +<hkern u1="E" u2="t" k="14" /> +<hkern u1="E" u2="o" k="18" /> +<hkern u1="E" u2="a" k="20" /> +<hkern u1="E" u2="-" k="41" /> +<hkern u1="F" u2="x" k="10" /> +<hkern u1="F" u2="s" k="23" /> +<hkern u1="F" u2="o" k="25" /> +<hkern u1="F" u2="a" k="33" /> +<hkern u1="F" u2="A" k="102" /> +<hkern u1="F" u2="." k="143" /> +<hkern u1="K" u2="y" k="88" /> +<hkern u1="K" u2="w" k="82" /> +<hkern u1="K" u2="v" k="88" /> +<hkern u1="K" u2="o" k="35" /> +<hkern u1="K" u2="-" k="197" /> +<hkern u1="K" u2="*" k="72" /> +<hkern u1="L" u2="y" k="109" /> +<hkern u1="L" u2="w" k="86" /> +<hkern u1="L" u2="v" k="102" /> +<hkern u1="L" u2="f" k="20" /> +<hkern u1="L" u2="]" k="78" /> +<hkern u1="L" u2="Y" k="246" /> +<hkern u1="L" u2="W" k="131" /> +<hkern u1="L" u2="V" k="201" /> +<hkern u1="L" u2="T" k="248" /> +<hkern u1="L" u2="O" k="68" /> +<hkern u1="L" u2="-" k="195" /> +<hkern u1="L" u2="*" k="252" /> +<hkern u1="M" u2="Y" k="61" /> +<hkern u1="M" u2="W" k="27" /> +<hkern u1="M" u2="V" k="41" /> +<hkern u1="M" u2="T" k="41" /> +<hkern u1="M" u2="*" k="31" /> +<hkern u1="O" u2="A" k="31" /> +<hkern u1="P" u2="s" k="68" /> +<hkern u1="P" u2="o" k="47" /> +<hkern u1="P" u2="a" k="57" /> +<hkern u1="P" u2="A" k="139" /> +<hkern u1="P" u2=":" k="41" /> +<hkern u1="P" u2="." k="262" /> +<hkern u1="P" u2="-" k="82" /> +<hkern u1="R" u2="-" k="41" /> +<hkern u1="T" u2="}" k="-47" /> +<hkern u1="T" u2="z" k="86" /> +<hkern u1="T" u2="y" k="84" /> +<hkern u1="T" u2="x" k="61" /> +<hkern u1="T" u2="w" k="72" /> +<hkern u1="T" u2="v" k="82" /> +<hkern u1="T" u2="u" k="66" /> +<hkern u1="T" u2="t" k="41" /> +<hkern u1="T" u2="s" k="88" /> +<hkern u1="T" u2="p" k="74" /> +<hkern u1="T" u2="o" k="141" /> +<hkern u1="T" u2="n" k="51" /> +<hkern u1="T" u2="a" k="109" /> +<hkern u1="T" u2="M" k="41" /> +<hkern u1="T" u2="A" k="117" /> +<hkern u1="T" u2=":" k="143" /> +<hkern u1="T" u2="/" k="90" /> +<hkern u1="T" u2="." k="180" /> +<hkern u1="T" u2="-" k="123" /> +<hkern u1="V" u2="z" k="27" /> +<hkern u1="V" u2="u" k="41" /> +<hkern u1="V" u2="s" k="66" /> +<hkern u1="V" u2="p" k="33" /> +<hkern u1="V" u2="o" k="68" /> +<hkern u1="V" u2="a" k="72" /> +<hkern u1="V" u2="M" k="41" /> +<hkern u1="V" u2="A" k="102" /> +<hkern u1="V" u2=":" k="106" /> +<hkern u1="V" u2="/" k="90" /> +<hkern u1="V" u2="." k="162" /> +<hkern u1="V" u2="-" k="82" /> +<hkern u1="W" u2="s" k="57" /> +<hkern u1="W" u2="M" k="27" /> +<hkern u1="W" u2="A" k="78" /> +<hkern u1="W" u2=":" k="41" /> +<hkern u1="W" u2="." k="143" /> +<hkern u1="W" u2="-" k="61" /> +<hkern u1="X" u2="-" k="123" /> +<hkern u1="Y" u2="z" k="63" /> +<hkern u1="Y" u2="y" k="31" /> +<hkern u1="Y" u2="x" k="29" /> +<hkern u1="Y" u2="w" k="25" /> +<hkern u1="Y" u2="v" k="31" /> +<hkern u1="Y" u2="u" k="41" /> +<hkern u1="Y" u2="s" k="119" /> +<hkern u1="Y" u2="o" k="98" /> +<hkern u1="Y" u2="n" k="31" /> +<hkern u1="Y" u2="a" k="109" /> +<hkern u1="Y" u2="M" k="61" /> +<hkern u1="Y" u2="A" k="143" /> +<hkern u1="Y" u2=":" k="109" /> +<hkern u1="Y" u2="/" k="137" /> +<hkern u1="Y" u2="." k="217" /> +<hkern u1="Y" u2="-" k="143" /> +<hkern u1="Z" u2="-" k="143" /> +<hkern u1="[" u2="y" k="16" /> +<hkern u1="[" u2="v" k="23" /> +<hkern u1="[" u2="o" k="20" /> +<hkern u1="[" u2="O" k="63" /> +<hkern u1="[" u2="A" k="78" /> +<hkern u1="f" u2="}" k="-109" /> +<hkern u1="f" u2="o" k="23" /> +<hkern u1="f" u2="a" k="31" /> +<hkern u1="f" u2="." k="88" /> +<hkern u1="k" u2="-" k="41" /> +<hkern u1="r" u2="a" k="20" /> +<hkern u1="r" u2="." k="172" /> +<hkern u1="t" u2="-" k="29" /> +<hkern u1="v" u2="]" k="43" /> +<hkern u1="v" u2="." k="82" /> +<hkern u1="w" u2="]" k="33" /> +<hkern u1="w" u2="." k="68" /> +<hkern u1="x" u2="]" k="33" /> +<hkern u1="x" u2="-" k="61" /> +<hkern u1="y" u2="]" k="41" /> +<hkern u1="y" u2="." k="127" /> +<hkern u1="{" u2="A" k="31" /> +<hkern u1="}" u2="T" k="14" /> +</font> +</defs></svg>
\ No newline at end of file diff --git a/localfs/usr/local/share/fonts/lirion/truetype/europlate.ttf b/localfs/usr/local/share/fonts/lirion/truetype/europlate.ttf Binary files differnew file mode 100644 index 0000000..0d24419 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/truetype/europlate.ttf diff --git a/localfs/usr/local/share/fonts/lirion/truetype/telex-regular-webfont.ttf b/localfs/usr/local/share/fonts/lirion/truetype/telex-regular-webfont.ttf Binary files differnew file mode 100644 index 0000000..0c174ba --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/truetype/telex-regular-webfont.ttf diff --git a/localfs/usr/local/share/fonts/lirion/ttf/Hack-Bold.ttf b/localfs/usr/local/share/fonts/lirion/ttf/Hack-Bold.ttf Binary files differnew file mode 100644 index 0000000..c47ad41 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/ttf/Hack-Bold.ttf diff --git a/localfs/usr/local/share/fonts/lirion/ttf/Hack-BoldItalic.ttf b/localfs/usr/local/share/fonts/lirion/ttf/Hack-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..df19813 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/ttf/Hack-BoldItalic.ttf diff --git a/localfs/usr/local/share/fonts/lirion/ttf/Hack-Italic.ttf b/localfs/usr/local/share/fonts/lirion/ttf/Hack-Italic.ttf Binary files differnew file mode 100644 index 0000000..7be2e0b --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/ttf/Hack-Italic.ttf diff --git a/localfs/usr/local/share/fonts/lirion/ttf/Hack-Regular.ttf b/localfs/usr/local/share/fonts/lirion/ttf/Hack-Regular.ttf Binary files differnew file mode 100644 index 0000000..f342700 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/ttf/Hack-Regular.ttf diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold-subset.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold-subset.woff Binary files differnew file mode 100644 index 0000000..4b578ba --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold-subset.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold-subset.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold-subset.woff2 Binary files differnew file mode 100644 index 0000000..0d4688c --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold-subset.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold.woff Binary files differnew file mode 100644 index 0000000..9aa08b2 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold.woff2 Binary files differnew file mode 100644 index 0000000..a771c69 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bold.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic-subset.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic-subset.woff Binary files differnew file mode 100644 index 0000000..cab10c6 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic-subset.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic-subset.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic-subset.woff2 Binary files differnew file mode 100644 index 0000000..928d3de --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic-subset.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic.woff Binary files differnew file mode 100644 index 0000000..bbe50ef --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic.woff2 Binary files differnew file mode 100644 index 0000000..2aa7970 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-bolditalic.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic-subset.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic-subset.woff Binary files differnew file mode 100644 index 0000000..a5708ad --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic-subset.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic-subset.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic-subset.woff2 Binary files differnew file mode 100644 index 0000000..31ff122 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic-subset.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic.woff Binary files differnew file mode 100644 index 0000000..d0ab459 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic.woff2 Binary files differnew file mode 100644 index 0000000..192b615 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-italic.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular-subset.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular-subset.woff Binary files differnew file mode 100644 index 0000000..67af60f --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular-subset.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular-subset.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular-subset.woff2 Binary files differnew file mode 100644 index 0000000..a265706 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular-subset.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular.woff b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular.woff Binary files differnew file mode 100644 index 0000000..19924b1 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular.woff diff --git a/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular.woff2 b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular.woff2 Binary files differnew file mode 100644 index 0000000..eacfd3a --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/fonts/hack-regular.woff2 diff --git a/localfs/usr/local/share/fonts/lirion/web/hack-subset.css b/localfs/usr/local/share/fonts/lirion/web/hack-subset.css new file mode 100644 index 0000000..38e7350 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/hack-subset.css @@ -0,0 +1,34 @@ +/*! + * Hack typeface https://github.com/source-foundry/Hack + * License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md + */ +/* FONT PATHS + * -------------------------- */ +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-regular-subset.woff2?sha=e700a30') format('woff2'), url('fonts/hack-regular-subset.woff?sha=e700a30') format('woff'); + font-weight: 400; + font-style: normal; +} + +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-bold-subset.woff2?sha=e700a30') format('woff2'), url('fonts/hack-bold-subset.woff?sha=e700a30') format('woff'); + font-weight: 700; + font-style: normal; +} + +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-italic-subset.woff2?sha=e700a30') format('woff2'), url('fonts/hack-italic-webfont.woff?sha=e700a30') format('woff'); + font-weight: 400; + font-style: italic; +} + +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-bolditalic-subset.woff2?sha=e700a30') format('woff2'), url('fonts/hack-bolditalic-subset.woff?sha=e700a30') format('woff'); + font-weight: 700; + font-style: italic; +} + diff --git a/localfs/usr/local/share/fonts/lirion/web/hack.css b/localfs/usr/local/share/fonts/lirion/web/hack.css new file mode 100644 index 0000000..c6db352 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/web/hack.css @@ -0,0 +1,34 @@ +/*! + * Hack typeface https://github.com/source-foundry/Hack + * License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md + */ +/* FONT PATHS + * -------------------------- */ +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-regular.woff2?sha=e700a30') format('woff2'), url('fonts/hack-regular.woff?sha=e700a30') format('woff'); + font-weight: 400; + font-style: normal; +} + +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-bold.woff2?sha=e700a30') format('woff2'), url('fonts/hack-bold.woff?sha=e700a30') format('woff'); + font-weight: 700; + font-style: normal; +} + +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-italic.woff2?sha=e700a30') format('woff2'), url('fonts/hack-italic.woff?sha=e700a30') format('woff'); + font-weight: 400; + font-style: italic; +} + +@font-face { + font-family: 'Hack'; + src: url('fonts/hack-bolditalic.woff2?sha=e700a30') format('woff2'), url('fonts/hack-bolditalic.woff?sha=e700a30') format('woff'); + font-weight: 700; + font-style: italic; +} + diff --git a/localfs/usr/local/share/fonts/lirion/woff/telex-regular-webfont.woff b/localfs/usr/local/share/fonts/lirion/woff/telex-regular-webfont.woff Binary files differnew file mode 100644 index 0000000..b67a931 --- /dev/null +++ b/localfs/usr/local/share/fonts/lirion/woff/telex-regular-webfont.woff diff --git a/localfs/usr/share/xfce4/terminal/colorschemes/archery.theme b/localfs/usr/share/xfce4/terminal/colorschemes/archery.theme new file mode 100644 index 0000000..50674e1 --- /dev/null +++ b/localfs/usr/share/xfce4/terminal/colorschemes/archery.theme @@ -0,0 +1,6 @@ +[Scheme] +Name=Archery +BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT +BackgroundDarkness=0.850000 +ColorPalette=rgb(37,39,44);rgb(186,42,42);rgb(0,133,66);rgb(240,125,48);rgb(0,136,204);rgb(141,72,136);rgb(0,101,150);rgb(83,88,111);rgb(53,65,81);rgb(201,95,95);rgb(115,186,37);rgb(234,192,110);rgb(129,163,207);rgb(181,137,194);rgb(37,184,165);rgb(246,249,252) + |