@simonklee/opentui-tex-native-source 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
@@ -0,0 +1,1702 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="740pt" height="491pt" version="1.1" viewBox="0 0 740 491" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="is" overflow="visible">
|
|
5
|
+
<path d="m5.8594 31.562c-0.36719-0.375-0.66406-0.80859-0.89062-1.2969-0.21875-0.49219-0.32812-0.98438-0.32812-1.4844v-8.25c0-0.5625-0.12109-1.1055-0.35938-1.625-0.23047-0.51172-0.54688-0.96875-0.95312-1.375s-0.86719-0.74219-1.375-1c-0.085937-0.03125-0.125-0.070312-0.125-0.10938v-0.35938c0-0.054688 0.039063-0.09375 0.125-0.125 0.39453-0.21094 0.75391-0.45312 1.0781-0.73438 0.32031-0.28125 0.59766-0.58984 0.82812-0.92188 0.23828-0.33594 0.42578-0.71094 0.5625-1.125 0.14453-0.40625 0.21875-0.82031 0.21875-1.2344v-8.2344c0-0.51172 0.10938-1.0117 0.32812-1.5 0.22656-0.48047 0.52344-0.90625 0.89062-1.2812 0.28906-0.28125 0.67188-0.57812 1.1406-0.89062 0.47656-0.3125 0.86719-0.50391 1.1719-0.57812h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 0.03125 0.023438 0.046875 0.046875 0.046875 0.078125v0.375c0 0.054688-0.03125 0.09375-0.09375 0.125-0.78125 0.34375-1.4297 0.83594-1.9375 1.4844-0.51172 0.65625-0.76562 1.3828-0.76562 2.1875v8.2344c0 0.625-0.15234 1.2188-0.45312 1.7812-0.29297 0.5625-0.67969 1.0469-1.1562 1.4531-0.48047 0.41406-1.0234 0.76953-1.625 1.0625 0.45703 0.19531 0.875 0.4375 1.25 0.71875 0.38281 0.28125 0.72266 0.59766 1.0156 0.95312 0.28906 0.35156 0.52344 0.75 0.70312 1.1875 0.17578 0.44531 0.26562 0.91406 0.26562 1.4062v8.25c0 0.38281 0.066406 0.76562 0.20312 1.1406 0.14453 0.38281 0.33594 0.73438 0.57812 1.0469 0.25 0.3125 0.54688 0.59766 0.89062 0.85938 0.34375 0.25781 0.6875 0.46875 1.0312 0.625 0.0625 0.019531 0.09375 0.054688 0.09375 0.10938v0.375c0 0.019531-0.015625 0.039063-0.046875 0.0625-0.023437 0.03125-0.046875 0.046875-0.078125 0.046875h-0.35938c-0.29297-0.074219-0.68359-0.27344-1.1719-0.59375-0.48047-0.3125-0.85938-0.60547-1.1406-0.875z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="ir" overflow="visible">
|
|
8
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="iq" overflow="visible">
|
|
11
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="ip" overflow="visible">
|
|
14
|
+
<path d="m5.7188-3.2188v3.9219c0 0.28906-0.089844 0.44141-0.26562 0.45312-0.1875 0-0.28125-0.15234-0.28125-0.45312v-3.9219h-3.9219c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h3.9219v-3.9219c0-0.28906 0.09375-0.44141 0.28125-0.45312 0.17578 0 0.26562 0.15234 0.26562 0.45312v3.9219h3.9062c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="io" overflow="visible">
|
|
17
|
+
<path d="m2.2812-6.3906 1.7344 1.1094c0.92578-0.53906 1.3906-1.1914 1.3906-1.9531 0-0.61328-0.28125-1.0977-0.84375-1.4531-0.32422-0.1875-0.68359-0.28125-1.0781-0.28125-0.66797 0-1.1953 0.21094-1.5781 0.625l-0.015625 0.015625c-0.21094 0.24219-0.3125 0.50781-0.3125 0.79688 0 0.44922 0.23438 0.82812 0.70312 1.1406zm2.0469 1.3281c0.71875 0.44922 1.1562 0.75781 1.3125 0.92188 0.03125 0.023437 0.054687 0.042969 0.078125 0.0625 0.44531 0.51172 0.67188 1.0859 0.67188 1.7188 0 0.83594-0.34375 1.5117-1.0312 2.0312-0.54297 0.42578-1.168 0.64062-1.875 0.64062-0.88672 0-1.6211-0.27734-2.2031-0.82812-0.46094-0.44531-0.6875-0.97656-0.6875-1.5938 0-1.0508 0.67188-1.9102 2.0156-2.5781-0.58594-0.39453-0.92969-0.64844-1.0312-0.76562-0.40625-0.44531-0.60938-0.95703-0.60938-1.5312 0-0.75 0.3125-1.3594 0.9375-1.8281 0.46875-0.34375 1-0.51562 1.5938-0.51562 0.8125 0 1.4688 0.26172 1.9688 0.78125 0.36328 0.36719 0.54688 0.80469 0.54688 1.3125 0 0.86719-0.5625 1.5898-1.6875 2.1719zm-1.4062 0.57812c-1.043 0.65625-1.5898 1.4492-1.6406 2.375 0 0.67969 0.29688 1.2188 0.89062 1.625 0.39453 0.27344 0.83594 0.40625 1.3281 0.40625 0.72656 0 1.3125-0.22656 1.75-0.6875 0.30078-0.32031 0.45312-0.67969 0.45312-1.0781 0-0.53906-0.30469-1.0234-0.90625-1.4531-0.011719 0-0.0625-0.03125-0.15625-0.09375z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="in" overflow="visible">
|
|
20
|
+
<path d="m6.2812-2.8125c0 0.96094-0.35938 1.75-1.0781 2.375-0.57422 0.5-1.2305 0.75-1.9688 0.75-0.85547 0-1.5391-0.35938-2.0469-1.0781-0.32422-0.45703-0.48438-0.95312-0.48438-1.4844 0-0.42578 0.19141-0.67188 0.57812-0.73438 0.03125-0.007813 0.066406-0.015625 0.10938-0.015625 0.34375 0 0.56641 0.15625 0.67188 0.46875 0.019531 0.074219 0.03125 0.14844 0.03125 0.21875 0 0.30469-0.13672 0.51172-0.40625 0.625-0.09375 0.042969-0.19531 0.0625-0.29688 0.0625-0.10547 0-0.1875-0.007812-0.25-0.03125 0.17578 0.59375 0.53516 1.0312 1.0781 1.3125 0.3125 0.17969 0.64062 0.26562 0.98438 0.26562 0.625 0 1.125-0.30469 1.5-0.92188 0.22656-0.38281 0.34375-1.0195 0.34375-1.9062 0-0.78906-0.089844-1.3789-0.26562-1.7656-0.26172-0.60156-0.65625-0.90625-1.1875-0.90625-0.75 0-1.3516 0.32812-1.7969 0.98438-0.0625 0.085938-0.125 0.125-0.1875 0.125-0.125 0-0.19531-0.0625-0.20312-0.1875v-4.3125c0-0.21875 0.046875-0.33203 0.14062-0.34375 0.039063 0 0.097656 0.015625 0.17188 0.046875 0.59375 0.26172 1.2109 0.39062 1.8594 0.39062 0.67578 0 1.3125-0.13281 1.9062-0.40625 0.050781-0.03125 0.085937-0.046875 0.10938-0.046875 0.09375 0 0.14062 0.054687 0.14062 0.15625 0 0.125-0.14844 0.32422-0.4375 0.59375-0.63672 0.57422-1.3906 0.85938-2.2656 0.85938-0.38672 0-0.78125-0.054688-1.1875-0.17188v2.7188c0.48828-0.46875 1.082-0.70312 1.7812-0.70312 0.82031 0 1.5 0.35938 2.0312 1.0781 0.41406 0.5625 0.625 1.2266 0.625 1.9844z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="ah" overflow="visible">
|
|
23
|
+
<path d="m5.2188-5.2969c0.050781-0.3125 0.19531-0.50391 0.4375-0.57812 0.039062-0.019531 0.09375-0.03125 0.15625-0.03125 0.23828 0 0.375 0.125 0.40625 0.375 0 0.054688-0.03125 0.21484-0.09375 0.48438l-0.51562 1.9531c-0.13672 0.58594-0.23438 1.0078-0.29688 1.2656-0.125 0.48047-0.1875 0.82422-0.1875 1.0312 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.35156 0 0.64844-0.375 0.89062-1.125 0.050781-0.15625 0.10938-0.35938 0.17188-0.60938 0.070313-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085938 0.46484-0.25 0.98438-0.054688 0.15625-0.10938 0.29297-0.17188 0.40625-0.26172 0.51172-0.60547 0.76562-1.0312 0.76562-0.52344 0-0.90234-0.22266-1.1406-0.67188-0.0625-0.11328-0.10938-0.23828-0.14062-0.375-0.58594 0.69922-1.1875 1.0469-1.8125 1.0469-0.69922 0-1.2148-0.31641-1.5469-0.95312-0.21094-0.375-0.3125-0.80469-0.3125-1.2969 0-1 0.34766-1.9297 1.0469-2.7969 0.65625-0.78125 1.3633-1.207 2.125-1.2812 0.070313-0.007813 0.14062-0.015625 0.20312-0.015625 0.5625 0 0.98828 0.29688 1.2812 0.89062zm-0.90625 3.625 0.70312-2.7344c0.019531-0.14453 0.03125-0.22266 0.03125-0.23438 0-0.19531-0.085937-0.4375-0.25-0.71875-0.19922-0.34375-0.48047-0.51562-0.84375-0.51562-0.49219 0-0.95312 0.32031-1.3906 0.95312-0.085938 0.11719-0.16406 0.24609-0.23438 0.39062-0.27344 0.54297-0.5 1.3125-0.6875 2.3125-0.0625 0.3125-0.09375 0.5625-0.09375 0.75 0 0.63672 0.17969 1.0469 0.54688 1.2344 0.09375 0.054687 0.21094 0.078125 0.35938 0.078125 0.51953 0 1.0469-0.32812 1.5781-0.98438 0.13281-0.15625 0.22266-0.3125 0.26562-0.46875v-0.015625c0.007813-0.019531 0.015625-0.035156 0.015625-0.046875z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="fe" overflow="visible">
|
|
26
|
+
<path d="m9.4531-6.9688-7.3594 3.4688 7.3594 3.4688c0.17578 0.09375 0.26562 0.19531 0.26562 0.3125 0 0.14453-0.074219 0.23438-0.21875 0.26562-0.023438 0.007813-0.042969 0.015625-0.0625 0.015625-0.054688 0-0.13672-0.03125-0.25-0.09375l-7.7656-3.6562c-0.17969-0.082031-0.26562-0.1875-0.26562-0.3125s0.085938-0.22656 0.26562-0.3125l7.7656-3.6562c0.11328-0.0625 0.19531-0.09375 0.25-0.09375 0.14453 0 0.23438 0.074219 0.26562 0.21875 0.007813 0.023438 0.015625 0.042969 0.015625 0.0625 0 0.11719-0.089844 0.21875-0.26562 0.3125z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="ag" overflow="visible">
|
|
29
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="fd" overflow="visible">
|
|
32
|
+
<path d="m4.2344-4.4219-0.85938 3.5-0.046875 0.23438c0 0.15625 0.21094 0.24219 0.64062 0.25h0.26562c0.25 0 0.38281 0.054688 0.40625 0.15625 0 0.1875-0.09375 0.28125-0.28125 0.28125l-0.90625-0.03125h-0.015625l-0.85938-0.015625h-0.03125l-1.7656 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l1.8906-7.5156c0.03125-0.14453 0.046875-0.23438 0.046875-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.24219 0-0.37109-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h4.7188c1.125 0 1.9297 0.34375 2.4219 1.0312 0.22656 0.33594 0.34375 0.69531 0.34375 1.0781 0 0.76172-0.39062 1.4492-1.1719 2.0625-0.82422 0.64844-1.7461 0.96875-2.7656 0.96875zm1.0156-4.1719-0.95312 3.8125h1.9688c0.89453 0 1.6133-0.25 2.1562-0.75 0.38281-0.35156 0.64844-0.94531 0.79688-1.7812v-0.015625c0.019531-0.17578 0.03125-0.32812 0.03125-0.45312 0-0.89453-0.63672-1.3438-1.9062-1.3438h-1.3438c-0.33594 0-0.53906 0.046875-0.60938 0.14062v0.015625h-0.015625v0.015625c-0.042969 0.054687-0.085938 0.17188-0.125 0.35938z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="ek" overflow="visible">
|
|
35
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="ej" overflow="visible">
|
|
38
|
+
<path d="m9.4531-4.5469-7.7656 3.6719c-0.10547 0.054688-0.1875 0.078125-0.25 0.078125-0.14844 0-0.23438-0.070313-0.26562-0.21875-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.125 0.082031-0.22266 0.25-0.29688l7.375-3.4844-7.3594-3.4688c-0.15625-0.125-0.24609-0.22266-0.26562-0.29688 0-0.14453 0.070312-0.23438 0.21875-0.26562 0.019531-0.007813 0.039062-0.015625 0.0625-0.015625 0.050781 0 0.13281 0.03125 0.25 0.09375l7.7656 3.6562c0.15625 0.085938 0.24219 0.1875 0.26562 0.3125 0 0.125-0.089844 0.22656-0.26562 0.29688zm-0.20312 6.4688h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.5938c0.30078 0 0.46094 0.09375 0.48438 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="dr" overflow="visible">
|
|
41
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.054687-0.33594 0.17188-0.67188 0.050781-0.125 0.09375-0.22266 0.125-0.29688 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.375 0 0.64453 0.16406 0.8125 0.48438 0.03125 0.074219 0.054688 0.15234 0.078125 0.23438 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875 0.38281-0.47656 0.8125-0.73438 1.2812-0.76562 0.375 0 0.62891 0.13281 0.76562 0.39062 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562 0 0.26172-0.10938 0.4375-0.32812 0.53125-0.074219 0.03125-0.14844 0.046875-0.21875 0.046875-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.21875 0.10938-0.37891 0.32812-0.48438l0.015625-0.015625c0.050781-0.019531 0.10938-0.035156 0.17188-0.046875l-0.20312-0.09375c-0.085938-0.007813-0.15625-0.019531-0.21875-0.03125-0.28125 0-0.54688 0.10938-0.79688 0.32812-0.21094 0.1875-0.38672 0.4375-0.53125 0.75-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125l-0.32812 1.2969-0.39062 1.5781c-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="dd" overflow="visible">
|
|
44
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="co" overflow="visible">
|
|
47
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="cd" overflow="visible">
|
|
50
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="ca" overflow="visible">
|
|
53
|
+
<path d="m6.4375-4.4844c0 1.3672-0.17188 2.4219-0.51562 3.1719-0.55469 1.043-1.3672 1.582-2.4375 1.625-0.84375 0-1.5273-0.33594-2.0469-1.0156-0.10547-0.11328-0.19531-0.25-0.26562-0.40625-0.41797-0.76953-0.625-1.8945-0.625-3.375 0-1.3633 0.17188-2.4219 0.51562-3.1719 0.46875-1.0391 1.2227-1.5977 2.2656-1.6719h0.17188c0.83203 0 1.5078 0.33594 2.0312 1v0.015625c0.125 0.16797 0.23828 0.35547 0.34375 0.5625 0.375 0.79297 0.5625 1.8828 0.5625 3.2656zm-2.9531 4.4844c0.59375 0 1.0469-0.28516 1.3594-0.85938 0.13281-0.25 0.22656-0.54688 0.28125-0.89062 0.10156-0.59375 0.15625-1.5547 0.15625-2.8906 0-1.3008-0.046875-2.2109-0.14062-2.7344-0.16797-0.88281-0.60156-1.4141-1.2969-1.5938-0.11719-0.03125-0.23438-0.046875-0.35938-0.046875-0.65625 0-1.1328 0.32812-1.4219 0.98438-0.10547 0.21875-0.1875 0.49219-0.25 0.8125-0.074219 0.5-0.10938 1.3594-0.10938 2.5781 0 1.4062 0.050781 2.3906 0.15625 2.9531 0.16406 0.89844 0.57812 1.4375 1.2344 1.625 0.13281 0.042969 0.26562 0.0625 0.39062 0.0625z"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="w" overflow="visible">
|
|
56
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="bz" overflow="visible">
|
|
59
|
+
<path d="m2.4844-5.5938v4.5c0 0.29297 0.054687 0.46875 0.17188 0.53125l0.015625 0.015625c0.13281 0.074219 0.42969 0.10938 0.89062 0.10938h0.28125v0.4375c-0.36719-0.03125-0.95312-0.046875-1.7656-0.046875 0.019531 0-0.51562 0.015625-1.6094 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-4.5312h-1.0938v-0.4375h1.0938v-1.6094c0-0.86328 0.35156-1.5 1.0625-1.9062 0.35156-0.21875 0.72266-0.32812 1.1094-0.32812 0.51953 0 0.89844 0.18359 1.1406 0.54688 0.082031 0.13672 0.125 0.28125 0.125 0.4375 0 0.32422-0.14844 0.52734-0.4375 0.60938h-0.1875c-0.30469 0-0.49219-0.14062-0.5625-0.42188l-0.015625-0.015625v-0.015625c-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28125 0.14062-0.47656 0.42188-0.59375-0.14844-0.0625-0.30469-0.09375-0.46875-0.09375-0.40625 0-0.74219 0.23047-1 0.6875-0.1875 0.33594-0.28125 0.74219-0.28125 1.2188v1.625h1.6406v0.4375z"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="by" overflow="visible">
|
|
62
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="bx" overflow="visible">
|
|
65
|
+
<path d="m6.5938-3c0 0.96875-0.35547 1.7656-1.0625 2.3906-0.59375 0.51172-1.2773 0.76562-2.0469 0.76562-0.89844 0-1.6523-0.33594-2.2656-1.0156-0.55469-0.60156-0.82812-1.3164-0.82812-2.1406 0-0.94531 0.33594-1.75 1.0156-2.4062 0.59375-0.57031 1.2891-0.85938 2.0938-0.85938 0.90625 0 1.6641 0.35938 2.2812 1.0781 0.53906 0.625 0.8125 1.3555 0.8125 2.1875zm-3.0938 2.7969c0.625 0 1.1172-0.25781 1.4844-0.78125l0.14062-0.25c0.20703-0.40625 0.3125-1.0312 0.3125-1.875 0-0.89453-0.125-1.5391-0.375-1.9375-0.39844-0.58203-0.92188-0.89062-1.5781-0.92188-0.57422 0-1.0469 0.23438-1.4219 0.70312-0.074219 0.074219-0.13281 0.15234-0.17188 0.23438-0.23047 0.41797-0.34375 1.0586-0.34375 1.9219 0 0.90625 0.11719 1.5625 0.35938 1.9688 0.38281 0.61719 0.91406 0.92969 1.5938 0.9375z"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="v" overflow="visible">
|
|
68
|
+
<path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="bw" overflow="visible">
|
|
71
|
+
<path d="m2.6875-9.3125-0.54688 6.3906c-0.011719 0.19922-0.074219 0.29688-0.1875 0.29688-0.11719 0-0.17969-0.070312-0.1875-0.21875-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375l-0.54688-6.375c0-0.33203 0.16016-0.55469 0.48438-0.67188 0.082031-0.03125 0.17188-0.046875 0.26562-0.046875 0.32031 0 0.54688 0.13672 0.67188 0.40625 0.039062 0.09375 0.0625 0.19922 0.0625 0.3125zm0 8.5781c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="bv" overflow="visible">
|
|
74
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="cc" overflow="visible">
|
|
77
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="cb" overflow="visible">
|
|
80
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="bk" overflow="visible">
|
|
83
|
+
<path d="m6.6094 39.969c-0.52344-0.52344-0.93359-1.1172-1.2344-1.7812-0.30469-0.65625-0.45312-1.3398-0.45312-2.0469v-10.344c0-0.67969-0.11719-1.3398-0.34375-1.9844-0.21875-0.64844-0.54688-1.2344-0.98438-1.7656s-0.94531-0.96875-1.5156-1.3125c-0.042969-0.042969-0.0625-0.074219-0.0625-0.09375v-0.40625c0-0.042969 0.019531-0.074219 0.0625-0.09375 0.44531-0.26172 0.84375-0.57422 1.1875-0.9375 0.34375-0.36719 0.64062-0.77734 0.89062-1.2344 0.25781-0.44922 0.45312-0.91797 0.57812-1.4062 0.125-0.49219 0.1875-0.99219 0.1875-1.5v-10.328c0-1.1562 0.34766-2.1953 1.0469-3.1094 0.70703-0.90625 1.625-1.6328 2.75-2.1875h0.42188c0.03125 0 0.054687 0.011719 0.078125 0.03125 0.019531 0.023438 0.03125 0.046875 0.03125 0.078125v0.40625c0 0.042969-0.011719 0.078125-0.03125 0.10938-0.42969 0.22656-0.82031 0.50781-1.1719 0.84375-0.35547 0.33203-0.65625 0.70312-0.90625 1.1094s-0.44922 0.84375-0.59375 1.3125c-0.13672 0.47656-0.20312 0.95703-0.20312 1.4375v10.328c0 0.73828-0.15625 1.4531-0.46875 2.1406-0.30469 0.6875-0.71875 1.3008-1.25 1.8438-0.52344 0.53906-1.125 0.99219-1.8125 1.3594 0.5 0.25781 0.96875 0.57812 1.4062 0.95312 0.4375 0.38281 0.8125 0.80078 1.125 1.25 0.3125 0.45703 0.55469 0.95312 0.73438 1.4844 0.17578 0.53125 0.26562 1.0781 0.26562 1.6406v10.344c0 0.97656 0.25391 1.8828 0.76562 2.7188 0.51953 0.84375 1.2227 1.5039 2.1094 1.9844 0.019531 0.03125 0.03125 0.0625 0.03125 0.09375v0.40625c0 0.03125-0.011719 0.054688-0.03125 0.078125-0.023438 0.019531-0.046875 0.03125-0.078125 0.03125h-0.40625c-0.24219-0.054687-0.58594-0.24219-1.0312-0.5625-0.4375-0.3125-0.80469-0.60938-1.0938-0.89062z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="r" overflow="visible">
|
|
86
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="ay" overflow="visible">
|
|
89
|
+
<path d="m5.5625-8.75c0 0.26172-0.13281 0.46875-0.39062 0.625-0.125 0.074219-0.25 0.10938-0.375 0.10938-0.28125 0-0.44922-0.125-0.5-0.375v-0.015625c-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.28906 0.14453-0.50781 0.4375-0.65625 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.125 0.51562 0.375 0.007813 0.042969 0.015625 0.085938 0.015625 0.125zm-2.8125 9.4531 1.3125-5.2188c0.0625-0.28125 0.09375-0.51953 0.09375-0.71875 0-0.42578-0.15234-0.64062-0.45312-0.64062-0.5625 0-1.0742 0.41406-1.5312 1.2344-0.085937 0.14844-0.15625 0.30469-0.21875 0.46875-0.11719 0.17969-0.20312 0.27344-0.26562 0.28125-0.10547 0-0.15625-0.046875-0.15625-0.14062 0-0.125 0.11719-0.39062 0.35938-0.79688 0.53906-0.90625 1.1602-1.3594 1.8594-1.3594 0.51953 0 0.89844 0.21094 1.1406 0.625 0.10156 0.19922 0.15625 0.41797 0.15625 0.65625 0 0.16797-0.027344 0.34375-0.078125 0.53125l-1.2812 5.1094c-0.21094 0.8125-0.69922 1.4219-1.4688 1.8281-0.38672 0.20703-0.77734 0.3125-1.1719 0.3125-0.58594 0-0.96484-0.17969-1.1406-0.53125-0.0625-0.10547-0.09375-0.21875-0.09375-0.34375 0-0.35547 0.16406-0.60156 0.48438-0.73438 0.09375-0.042969 0.1875-0.0625 0.28125-0.0625 0.28906 0 0.46094 0.125 0.51562 0.375 0.007812 0.039063 0.015625 0.078125 0.015625 0.10938 0 0.28125-0.13281 0.5-0.39062 0.65625-0.074219 0.039062-0.15625 0.070312-0.25 0.09375 0.17578 0.082031 0.35938 0.125 0.54688 0.125 0.55078 0 1.0156-0.33984 1.3906-1.0156 0.14453-0.26172 0.25781-0.54297 0.34375-0.84375z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="ax" overflow="visible">
|
|
92
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="ak" overflow="visible">
|
|
95
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="ia" overflow="visible">
|
|
98
|
+
<path d="m3.3125 2.4062c0 0.0625-0.039062 0.09375-0.10938 0.09375-0.074219 0-0.24609-0.13672-0.51562-0.40625-0.41797-0.41797-0.76172-0.90625-1.0312-1.4688-0.44922-0.90625-0.67188-1.9453-0.67188-3.125 0-1.125 0.21094-2.1406 0.64062-3.0469 0.34375-0.73828 0.78125-1.332 1.3125-1.7812 0.14453-0.11328 0.23438-0.17188 0.26562-0.17188 0.070313 0 0.10938 0.03125 0.10938 0.09375 0 0.042969-0.042969 0.10156-0.125 0.17188-1.0859 1.0938-1.625 2.6719-1.625 4.7344 0 2.0547 0.52344 3.6133 1.5781 4.6875 0.11328 0.10156 0.17188 0.17578 0.17188 0.21875z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="ho" overflow="visible">
|
|
101
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.054687-0.33594 0.17188-0.67188 0.050781-0.125 0.09375-0.22266 0.125-0.29688 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.375 0 0.64453 0.16406 0.8125 0.48438 0.03125 0.074219 0.054688 0.15234 0.078125 0.23438 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875 0.38281-0.47656 0.8125-0.73438 1.2812-0.76562 0.375 0 0.62891 0.13281 0.76562 0.39062 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562 0 0.26172-0.10938 0.4375-0.32812 0.53125-0.074219 0.03125-0.14844 0.046875-0.21875 0.046875-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.21875 0.10938-0.37891 0.32812-0.48438l0.015625-0.015625c0.050781-0.019531 0.10938-0.035156 0.17188-0.046875l-0.20312-0.09375c-0.085938-0.007813-0.15625-0.019531-0.21875-0.03125-0.28125 0-0.54688 0.10938-0.79688 0.32812-0.21094 0.1875-0.38672 0.4375-0.53125 0.75-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125l-0.32812 1.2969-0.39062 1.5781c-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="gx" overflow="visible">
|
|
104
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="fz" overflow="visible">
|
|
107
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="fq" overflow="visible">
|
|
110
|
+
<path d="m2.8906-2.5c0 1.125-0.21094 2.1406-0.625 3.0469-0.35547 0.73828-0.79688 1.332-1.3281 1.7812-0.13672 0.11328-0.22656 0.17188-0.26562 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.042969 0.046875-0.10156 0.14062-0.17188 1.0703-1.0938 1.6094-2.6719 1.6094-4.7344 0-2.0312-0.5-3.5703-1.5-4.625l-0.046875-0.046875c-0.13672-0.11328-0.20312-0.19141-0.20312-0.23438 0-0.0625 0.035156-0.09375 0.10938-0.09375 0.082031 0 0.25781 0.13672 0.53125 0.40625 0.40625 0.41797 0.75 0.90625 1.0312 1.4688 0.4375 0.90625 0.65625 1.9492 0.65625 3.125z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="fp" overflow="visible">
|
|
113
|
+
<path d="m4.3906-7.125-3.4219 9.3906c-0.054688 0.13281-0.10547 0.20703-0.15625 0.21875l-0.015625 0.015625h-0.046875c-0.10547 0-0.16797-0.054688-0.1875-0.15625-0.011719-0.023438-0.015625-0.039062-0.015625-0.046875 0-0.03125 0.015625-0.089844 0.046875-0.17188l3.4688-9.5312c0.039062-0.0625 0.097656-0.09375 0.17188-0.09375 0.11328 0 0.17969 0.054688 0.20312 0.15625v0.046875c0 0.03125-0.015625 0.089844-0.046875 0.17188z"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="fo" overflow="visible">
|
|
116
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="ai" overflow="visible">
|
|
119
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="fn" overflow="visible">
|
|
122
|
+
<path d="m2.4844-5.5938v4.5c0 0.29297 0.054687 0.46875 0.17188 0.53125l0.015625 0.015625c0.13281 0.074219 0.42969 0.10938 0.89062 0.10938h0.28125v0.4375c-0.36719-0.03125-0.95312-0.046875-1.7656-0.046875 0.019531 0-0.51562 0.015625-1.6094 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-4.5312h-1.0938v-0.4375h1.0938v-1.6094c0-0.86328 0.35156-1.5 1.0625-1.9062 0.35156-0.21875 0.72266-0.32812 1.1094-0.32812 0.51953 0 0.89844 0.18359 1.1406 0.54688 0.082031 0.13672 0.125 0.28125 0.125 0.4375 0 0.32422-0.14844 0.52734-0.4375 0.60938h-0.1875c-0.30469 0-0.49219-0.14062-0.5625-0.42188l-0.015625-0.015625v-0.015625c-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28125 0.14062-0.47656 0.42188-0.59375-0.14844-0.0625-0.30469-0.09375-0.46875-0.09375-0.40625 0-0.74219 0.23047-1 0.6875-0.1875 0.33594-0.28125 0.74219-0.28125 1.2188v1.625h1.6406v0.4375z"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="q" overflow="visible">
|
|
125
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="p" overflow="visible">
|
|
128
|
+
<path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="fm" overflow="visible">
|
|
131
|
+
<path d="m5.8281-4.6562-1.8438 4.5469c-0.074219 0.17578-0.16797 0.26562-0.28125 0.26562-0.11719 0-0.20312-0.058594-0.26562-0.17188 0-0.019531-0.011719-0.050781-0.03125-0.09375l-2.0156-4.9688c-0.10547-0.25-0.21875-0.39453-0.34375-0.4375v-0.015625c-0.125-0.039062-0.38672-0.0625-0.78125-0.0625v-0.4375c0.41406 0.03125 0.86719 0.046875 1.3594 0.046875 0.17578 0 0.6875-0.015625 1.5312-0.046875v0.4375c-0.53125 0-0.79688 0.12109-0.79688 0.35938 0 0.03125 0.023437 0.10938 0.078125 0.23438l1.5625 3.9062 1.4375-3.5625c0.050781-0.16406 0.078125-0.28125 0.078125-0.34375 0-0.32031-0.16406-0.51953-0.48438-0.59375h-0.1875v-0.4375c0.47656 0.03125 0.88281 0.046875 1.2188 0.046875 0.38281 0 0.73438-0.015625 1.0469-0.046875v0.4375c-0.60547 0-1.0234 0.28125-1.25 0.84375v0.015625c-0.011719 0.023437-0.023437 0.046875-0.03125 0.078125z"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="fl" overflow="visible">
|
|
134
|
+
<path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="fk" overflow="visible">
|
|
137
|
+
<path d="m9.3125-9.5312v3.3125c0 0.19922-0.03125 0.30859-0.09375 0.32812-0.023438 0.011719-0.0625 0.015625-0.125 0.015625-0.125 0-0.19922-0.039062-0.21875-0.125 0-0.019531-0.007812-0.0625-0.015625-0.125-0.17969-1.2891-0.68359-2.2344-1.5156-2.8281-0.46094-0.32031-0.96875-0.48438-1.5312-0.48438-0.80469 0-1.5156 0.26172-2.1406 0.78125-0.15625 0.13672-0.29688 0.27734-0.42188 0.42188l-0.015625 0.015625c-0.67969 0.8125-1.0156 1.9609-1.0156 3.4375 0 2.1562 0.6875 3.5859 2.0625 4.2812 0.50781 0.25 1.0234 0.375 1.5469 0.375 0.90625 0 1.6602-0.33203 2.2656-1 0.53125-0.57031 0.81641-1.2891 0.85938-2.1562 0.007813-0.13281 0.066406-0.20703 0.17188-0.21875 0.125 0 0.1875 0.078125 0.1875 0.23438 0 0.875-0.3125 1.6641-0.9375 2.3594-0.71875 0.8125-1.625 1.2188-2.7188 1.2188-1.2617 0-2.3594-0.44531-3.2969-1.3438-0.98047-0.9375-1.5-2.0977-1.5625-3.4844-0.011719-0.082031-0.015625-0.17188-0.015625-0.26562 0-1.3828 0.46875-2.5703 1.4062-3.5625 0.88281-0.94531 1.9453-1.4531 3.1875-1.5156 0.09375-0.007813 0.1875-0.015625 0.28125-0.015625 0.85156 0 1.6328 0.32422 2.3438 0.96875l0.23438 0.23438 0.70312-1.0312c0.070312-0.11328 0.14453-0.17188 0.21875-0.17188 0.09375 0.085938 0.14453 0.19922 0.15625 0.34375z"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="fj" overflow="visible">
|
|
140
|
+
<path d="m4.6562-1.0625c-0.23047 0.57422-0.63672 0.94922-1.2188 1.125-0.1875 0.0625-0.39062 0.09375-0.60938 0.09375-0.79297 0-1.4023-0.19141-1.8281-0.57812-0.27344-0.23828-0.40625-0.53906-0.40625-0.90625 0-0.71875 0.39453-1.2891 1.1875-1.7188 0.0625-0.039063 0.12891-0.078125 0.20312-0.10938 0.57031-0.26953 1.4102-0.4375 2.5156-0.5h0.0625v-0.51562c0-0.78906-0.28906-1.3359-0.85938-1.6406-0.1875-0.10156-0.39844-0.15625-0.625-0.15625-0.61719 0-1.0898 0.18359-1.4219 0.54688-0.03125 0.042969-0.0625 0.078125-0.09375 0.10938 0.4375 0.054688 0.67578 0.26562 0.71875 0.64062 0 0.3125-0.14844 0.51562-0.4375 0.60938-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.33594 0-0.54297-0.15625-0.625-0.46875-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875 0-0.5625 0.28906-0.99219 0.875-1.2969 0.36328-0.1875 0.77344-0.28125 1.2344-0.28125 0.75781 0 1.3984 0.25781 1.9219 0.76562 0.32031 0.33594 0.48828 0.79688 0.5 1.3906v3.0625c0 0.27344 0.082031 0.46875 0.25 0.59375 0.070312 0.074219 0.16016 0.10938 0.26562 0.10938 0.32031 0 0.48828-0.30078 0.5-0.90625v-0.78125h0.35938v0.78125c0 0.6875-0.28125 1.1172-0.84375 1.2812-0.11719 0.03125-0.21875 0.046875-0.3125 0.046875-0.46094 0-0.78125-0.23828-0.96875-0.71875-0.0625-0.13281-0.10547-0.27344-0.125-0.42188zm-0.09375-2.2969c-1.4375 0.054687-2.3555 0.49219-2.75 1.3125-0.09375 0.23047-0.14062 0.46484-0.14062 0.70312 0 0.48047 0.21094 0.82812 0.64062 1.0469 0.1875 0.09375 0.39062 0.14062 0.60938 0.14062 0.48828 0 0.89453-0.19141 1.2188-0.57812 0.28125-0.3125 0.42188-0.71875 0.42188-1.2188z"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="fi" overflow="visible">
|
|
143
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="fh" overflow="visible">
|
|
146
|
+
<path d="m5.5625-8.75c0 0.26172-0.13281 0.46875-0.39062 0.625-0.125 0.074219-0.25 0.10938-0.375 0.10938-0.28125 0-0.44922-0.125-0.5-0.375v-0.015625c-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.28906 0.14453-0.50781 0.4375-0.65625 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.125 0.51562 0.375 0.007813 0.042969 0.015625 0.085938 0.015625 0.125zm-2.8125 9.4531 1.3125-5.2188c0.0625-0.28125 0.09375-0.51953 0.09375-0.71875 0-0.42578-0.15234-0.64062-0.45312-0.64062-0.5625 0-1.0742 0.41406-1.5312 1.2344-0.085937 0.14844-0.15625 0.30469-0.21875 0.46875-0.11719 0.17969-0.20312 0.27344-0.26562 0.28125-0.10547 0-0.15625-0.046875-0.15625-0.14062 0-0.125 0.11719-0.39062 0.35938-0.79688 0.53906-0.90625 1.1602-1.3594 1.8594-1.3594 0.51953 0 0.89844 0.21094 1.1406 0.625 0.10156 0.19922 0.15625 0.41797 0.15625 0.65625 0 0.16797-0.027344 0.34375-0.078125 0.53125l-1.2812 5.1094c-0.21094 0.8125-0.69922 1.4219-1.4688 1.8281-0.38672 0.20703-0.77734 0.3125-1.1719 0.3125-0.58594 0-0.96484-0.17969-1.1406-0.53125-0.0625-0.10547-0.09375-0.21875-0.09375-0.34375 0-0.35547 0.16406-0.60156 0.48438-0.73438 0.09375-0.042969 0.1875-0.0625 0.28125-0.0625 0.28906 0 0.46094 0.125 0.51562 0.375 0.007812 0.039063 0.015625 0.078125 0.015625 0.10938 0 0.28125-0.13281 0.5-0.39062 0.65625-0.074219 0.039062-0.15625 0.070312-0.25 0.09375 0.17578 0.082031 0.35938 0.125 0.54688 0.125 0.55078 0 1.0156-0.33984 1.3906-1.0156 0.14453-0.26172 0.25781-0.54297 0.34375-0.84375z"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="fg" overflow="visible">
|
|
149
|
+
<path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="ff" overflow="visible">
|
|
152
|
+
<path d="m4.2344-4.4219-0.85938 3.5-0.046875 0.23438c0 0.15625 0.21094 0.24219 0.64062 0.25h0.26562c0.25 0 0.38281 0.054688 0.40625 0.15625 0 0.1875-0.09375 0.28125-0.28125 0.28125l-0.90625-0.03125h-0.015625l-0.85938-0.015625h-0.03125l-1.7656 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l1.8906-7.5156c0.03125-0.14453 0.046875-0.23438 0.046875-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.24219 0-0.37109-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h4.7188c1.125 0 1.9297 0.34375 2.4219 1.0312 0.22656 0.33594 0.34375 0.69531 0.34375 1.0781 0 0.76172-0.39062 1.4492-1.1719 2.0625-0.82422 0.64844-1.7461 0.96875-2.7656 0.96875zm1.0156-4.1719-0.95312 3.8125h1.9688c0.89453 0 1.6133-0.25 2.1562-0.75 0.38281-0.35156 0.64844-0.94531 0.79688-1.7812v-0.015625c0.019531-0.17578 0.03125-0.32812 0.03125-0.45312 0-0.89453-0.63672-1.3438-1.9062-1.3438h-1.3438c-0.33594 0-0.53906 0.046875-0.60938 0.14062v0.015625h-0.015625v0.015625c-0.042969 0.054687-0.085938 0.17188-0.125 0.35938z"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="fc" overflow="visible">
|
|
155
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="fb" overflow="visible">
|
|
158
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.054687-0.33594 0.17188-0.67188 0.050781-0.125 0.09375-0.22266 0.125-0.29688 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.375 0 0.64453 0.16406 0.8125 0.48438 0.03125 0.074219 0.054688 0.15234 0.078125 0.23438 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875 0.38281-0.47656 0.8125-0.73438 1.2812-0.76562 0.375 0 0.62891 0.13281 0.76562 0.39062 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562 0 0.26172-0.10938 0.4375-0.32812 0.53125-0.074219 0.03125-0.14844 0.046875-0.21875 0.046875-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.21875 0.10938-0.37891 0.32812-0.48438l0.015625-0.015625c0.050781-0.019531 0.10938-0.035156 0.17188-0.046875l-0.20312-0.09375c-0.085938-0.007813-0.15625-0.019531-0.21875-0.03125-0.28125 0-0.54688 0.10938-0.79688 0.32812-0.21094 0.1875-0.38672 0.4375-0.53125 0.75-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125l-0.32812 1.2969-0.39062 1.5781c-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="fa" overflow="visible">
|
|
161
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="ez" overflow="visible">
|
|
164
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
<symbol id="ey" overflow="visible">
|
|
167
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
<symbol id="ev" overflow="visible">
|
|
170
|
+
<path d="m6.4375-4.4844c0 1.3672-0.17188 2.4219-0.51562 3.1719-0.55469 1.043-1.3672 1.582-2.4375 1.625-0.84375 0-1.5273-0.33594-2.0469-1.0156-0.10547-0.11328-0.19531-0.25-0.26562-0.40625-0.41797-0.76953-0.625-1.8945-0.625-3.375 0-1.3633 0.17188-2.4219 0.51562-3.1719 0.46875-1.0391 1.2227-1.5977 2.2656-1.6719h0.17188c0.83203 0 1.5078 0.33594 2.0312 1v0.015625c0.125 0.16797 0.23828 0.35547 0.34375 0.5625 0.375 0.79297 0.5625 1.8828 0.5625 3.2656zm-2.9531 4.4844c0.59375 0 1.0469-0.28516 1.3594-0.85938 0.13281-0.25 0.22656-0.54688 0.28125-0.89062 0.10156-0.59375 0.15625-1.5547 0.15625-2.8906 0-1.3008-0.046875-2.2109-0.14062-2.7344-0.16797-0.88281-0.60156-1.4141-1.2969-1.5938-0.11719-0.03125-0.23438-0.046875-0.35938-0.046875-0.65625 0-1.1328 0.32812-1.4219 0.98438-0.10547 0.21875-0.1875 0.49219-0.25 0.8125-0.074219 0.5-0.10938 1.3594-0.10938 2.5781 0 1.4062 0.050781 2.3906 0.15625 2.9531 0.16406 0.89844 0.57812 1.4375 1.2344 1.625 0.13281 0.042969 0.26562 0.0625 0.39062 0.0625z"/>
|
|
171
|
+
</symbol>
|
|
172
|
+
<symbol id="af" overflow="visible">
|
|
173
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
174
|
+
</symbol>
|
|
175
|
+
<symbol id="eu" overflow="visible">
|
|
176
|
+
<path d="m2.4844-5.5938v4.5c0 0.29297 0.054687 0.46875 0.17188 0.53125l0.015625 0.015625c0.13281 0.074219 0.42969 0.10938 0.89062 0.10938h0.28125v0.4375c-0.36719-0.03125-0.95312-0.046875-1.7656-0.046875 0.019531 0-0.51562 0.015625-1.6094 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-4.5312h-1.0938v-0.4375h1.0938v-1.6094c0-0.86328 0.35156-1.5 1.0625-1.9062 0.35156-0.21875 0.72266-0.32812 1.1094-0.32812 0.51953 0 0.89844 0.18359 1.1406 0.54688 0.082031 0.13672 0.125 0.28125 0.125 0.4375 0 0.32422-0.14844 0.52734-0.4375 0.60938h-0.1875c-0.30469 0-0.49219-0.14062-0.5625-0.42188l-0.015625-0.015625v-0.015625c-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28125 0.14062-0.47656 0.42188-0.59375-0.14844-0.0625-0.30469-0.09375-0.46875-0.09375-0.40625 0-0.74219 0.23047-1 0.6875-0.1875 0.33594-0.28125 0.74219-0.28125 1.2188v1.625h1.6406v0.4375z"/>
|
|
177
|
+
</symbol>
|
|
178
|
+
<symbol id="et" overflow="visible">
|
|
179
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol id="es" overflow="visible">
|
|
182
|
+
<path d="m6.5938-3c0 0.96875-0.35547 1.7656-1.0625 2.3906-0.59375 0.51172-1.2773 0.76562-2.0469 0.76562-0.89844 0-1.6523-0.33594-2.2656-1.0156-0.55469-0.60156-0.82812-1.3164-0.82812-2.1406 0-0.94531 0.33594-1.75 1.0156-2.4062 0.59375-0.57031 1.2891-0.85938 2.0938-0.85938 0.90625 0 1.6641 0.35938 2.2812 1.0781 0.53906 0.625 0.8125 1.3555 0.8125 2.1875zm-3.0938 2.7969c0.625 0 1.1172-0.25781 1.4844-0.78125l0.14062-0.25c0.20703-0.40625 0.3125-1.0312 0.3125-1.875 0-0.89453-0.125-1.5391-0.375-1.9375-0.39844-0.58203-0.92188-0.89062-1.5781-0.92188-0.57422 0-1.0469 0.23438-1.4219 0.70312-0.074219 0.074219-0.13281 0.15234-0.17188 0.23438-0.23047 0.41797-0.34375 1.0586-0.34375 1.9219 0 0.90625 0.11719 1.5625 0.35938 1.9688 0.38281 0.61719 0.91406 0.92969 1.5938 0.9375z"/>
|
|
183
|
+
</symbol>
|
|
184
|
+
<symbol id="ae" overflow="visible">
|
|
185
|
+
<path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
|
|
186
|
+
</symbol>
|
|
187
|
+
<symbol id="er" overflow="visible">
|
|
188
|
+
<path d="m2.6875-9.3125-0.54688 6.3906c-0.011719 0.19922-0.074219 0.29688-0.1875 0.29688-0.11719 0-0.17969-0.070312-0.1875-0.21875-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375l-0.54688-6.375c0-0.33203 0.16016-0.55469 0.48438-0.67188 0.082031-0.03125 0.17188-0.046875 0.26562-0.046875 0.32031 0 0.54688 0.13672 0.67188 0.40625 0.039062 0.09375 0.0625 0.19922 0.0625 0.3125zm0 8.5781c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
189
|
+
</symbol>
|
|
190
|
+
<symbol id="eq" overflow="visible">
|
|
191
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
192
|
+
</symbol>
|
|
193
|
+
<symbol id="ex" overflow="visible">
|
|
194
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
195
|
+
</symbol>
|
|
196
|
+
<symbol id="ew" overflow="visible">
|
|
197
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
198
|
+
</symbol>
|
|
199
|
+
<symbol id="ep" overflow="visible">
|
|
200
|
+
<path d="m6.6094 39.969c-0.52344-0.52344-0.93359-1.1172-1.2344-1.7812-0.30469-0.65625-0.45312-1.3398-0.45312-2.0469v-10.344c0-0.67969-0.11719-1.3398-0.34375-1.9844-0.21875-0.64844-0.54688-1.2344-0.98438-1.7656s-0.94531-0.96875-1.5156-1.3125c-0.042969-0.042969-0.0625-0.074219-0.0625-0.09375v-0.40625c0-0.042969 0.019531-0.074219 0.0625-0.09375 0.44531-0.26172 0.84375-0.57422 1.1875-0.9375 0.34375-0.36719 0.64062-0.77734 0.89062-1.2344 0.25781-0.44922 0.45312-0.91797 0.57812-1.4062 0.125-0.49219 0.1875-0.99219 0.1875-1.5v-10.328c0-1.1562 0.34766-2.1953 1.0469-3.1094 0.70703-0.90625 1.625-1.6328 2.75-2.1875h0.42188c0.03125 0 0.054687 0.011719 0.078125 0.03125 0.019531 0.023438 0.03125 0.046875 0.03125 0.078125v0.40625c0 0.042969-0.011719 0.078125-0.03125 0.10938-0.42969 0.22656-0.82031 0.50781-1.1719 0.84375-0.35547 0.33203-0.65625 0.70312-0.90625 1.1094s-0.44922 0.84375-0.59375 1.3125c-0.13672 0.47656-0.20312 0.95703-0.20312 1.4375v10.328c0 0.73828-0.15625 1.4531-0.46875 2.1406-0.30469 0.6875-0.71875 1.3008-1.25 1.8438-0.52344 0.53906-1.125 0.99219-1.8125 1.3594 0.5 0.25781 0.96875 0.57812 1.4062 0.95312 0.4375 0.38281 0.8125 0.80078 1.125 1.25 0.3125 0.45703 0.55469 0.95312 0.73438 1.4844 0.17578 0.53125 0.26562 1.0781 0.26562 1.6406v10.344c0 0.97656 0.25391 1.8828 0.76562 2.7188 0.51953 0.84375 1.2227 1.5039 2.1094 1.9844 0.019531 0.03125 0.03125 0.0625 0.03125 0.09375v0.40625c0 0.03125-0.011719 0.054688-0.03125 0.078125-0.023438 0.019531-0.046875 0.03125-0.078125 0.03125h-0.40625c-0.24219-0.054687-0.58594-0.24219-1.0312-0.5625-0.4375-0.3125-0.80469-0.60938-1.0938-0.89062z"/>
|
|
201
|
+
</symbol>
|
|
202
|
+
<symbol id="ad" overflow="visible">
|
|
203
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
204
|
+
</symbol>
|
|
205
|
+
<symbol id="eo" overflow="visible">
|
|
206
|
+
<path d="m5.5625-8.75c0 0.26172-0.13281 0.46875-0.39062 0.625-0.125 0.074219-0.25 0.10938-0.375 0.10938-0.28125 0-0.44922-0.125-0.5-0.375v-0.015625c-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.28906 0.14453-0.50781 0.4375-0.65625 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.125 0.51562 0.375 0.007813 0.042969 0.015625 0.085938 0.015625 0.125zm-2.8125 9.4531 1.3125-5.2188c0.0625-0.28125 0.09375-0.51953 0.09375-0.71875 0-0.42578-0.15234-0.64062-0.45312-0.64062-0.5625 0-1.0742 0.41406-1.5312 1.2344-0.085937 0.14844-0.15625 0.30469-0.21875 0.46875-0.11719 0.17969-0.20312 0.27344-0.26562 0.28125-0.10547 0-0.15625-0.046875-0.15625-0.14062 0-0.125 0.11719-0.39062 0.35938-0.79688 0.53906-0.90625 1.1602-1.3594 1.8594-1.3594 0.51953 0 0.89844 0.21094 1.1406 0.625 0.10156 0.19922 0.15625 0.41797 0.15625 0.65625 0 0.16797-0.027344 0.34375-0.078125 0.53125l-1.2812 5.1094c-0.21094 0.8125-0.69922 1.4219-1.4688 1.8281-0.38672 0.20703-0.77734 0.3125-1.1719 0.3125-0.58594 0-0.96484-0.17969-1.1406-0.53125-0.0625-0.10547-0.09375-0.21875-0.09375-0.34375 0-0.35547 0.16406-0.60156 0.48438-0.73438 0.09375-0.042969 0.1875-0.0625 0.28125-0.0625 0.28906 0 0.46094 0.125 0.51562 0.375 0.007812 0.039063 0.015625 0.078125 0.015625 0.10938 0 0.28125-0.13281 0.5-0.39062 0.65625-0.074219 0.039062-0.15625 0.070312-0.25 0.09375 0.17578 0.082031 0.35938 0.125 0.54688 0.125 0.55078 0 1.0156-0.33984 1.3906-1.0156 0.14453-0.26172 0.25781-0.54297 0.34375-0.84375z"/>
|
|
207
|
+
</symbol>
|
|
208
|
+
<symbol id="en" overflow="visible">
|
|
209
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
210
|
+
</symbol>
|
|
211
|
+
<symbol id="ac" overflow="visible">
|
|
212
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
213
|
+
</symbol>
|
|
214
|
+
<symbol id="em" overflow="visible">
|
|
215
|
+
<path d="m3.3125 2.4062c0 0.0625-0.039062 0.09375-0.10938 0.09375-0.074219 0-0.24609-0.13672-0.51562-0.40625-0.41797-0.41797-0.76172-0.90625-1.0312-1.4688-0.44922-0.90625-0.67188-1.9453-0.67188-3.125 0-1.125 0.21094-2.1406 0.64062-3.0469 0.34375-0.73828 0.78125-1.332 1.3125-1.7812 0.14453-0.11328 0.23438-0.17188 0.26562-0.17188 0.070313 0 0.10938 0.03125 0.10938 0.09375 0 0.042969-0.042969 0.10156-0.125 0.17188-1.0859 1.0938-1.625 2.6719-1.625 4.7344 0 2.0547 0.52344 3.6133 1.5781 4.6875 0.11328 0.10156 0.17188 0.17578 0.17188 0.21875z"/>
|
|
216
|
+
</symbol>
|
|
217
|
+
<symbol id="el" overflow="visible">
|
|
218
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.054687-0.33594 0.17188-0.67188 0.050781-0.125 0.09375-0.22266 0.125-0.29688 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.375 0 0.64453 0.16406 0.8125 0.48438 0.03125 0.074219 0.054688 0.15234 0.078125 0.23438 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875 0.38281-0.47656 0.8125-0.73438 1.2812-0.76562 0.375 0 0.62891 0.13281 0.76562 0.39062 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562 0 0.26172-0.10938 0.4375-0.32812 0.53125-0.074219 0.03125-0.14844 0.046875-0.21875 0.046875-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.21875 0.10938-0.37891 0.32812-0.48438l0.015625-0.015625c0.050781-0.019531 0.10938-0.035156 0.17188-0.046875l-0.20312-0.09375c-0.085938-0.007813-0.15625-0.019531-0.21875-0.03125-0.28125 0-0.54688 0.10938-0.79688 0.32812-0.21094 0.1875-0.38672 0.4375-0.53125 0.75-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125l-0.32812 1.2969-0.39062 1.5781c-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
219
|
+
</symbol>
|
|
220
|
+
<symbol id="ei" overflow="visible">
|
|
221
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
222
|
+
</symbol>
|
|
223
|
+
<symbol id="eh" overflow="visible">
|
|
224
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
225
|
+
</symbol>
|
|
226
|
+
<symbol id="eg" overflow="visible">
|
|
227
|
+
<path d="m2.8906-2.5c0 1.125-0.21094 2.1406-0.625 3.0469-0.35547 0.73828-0.79688 1.332-1.3281 1.7812-0.13672 0.11328-0.22656 0.17188-0.26562 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.042969 0.046875-0.10156 0.14062-0.17188 1.0703-1.0938 1.6094-2.6719 1.6094-4.7344 0-2.0312-0.5-3.5703-1.5-4.625l-0.046875-0.046875c-0.13672-0.11328-0.20312-0.19141-0.20312-0.23438 0-0.0625 0.035156-0.09375 0.10938-0.09375 0.082031 0 0.25781 0.13672 0.53125 0.40625 0.40625 0.41797 0.75 0.90625 1.0312 1.4688 0.4375 0.90625 0.65625 1.9492 0.65625 3.125z"/>
|
|
228
|
+
</symbol>
|
|
229
|
+
<symbol id="ef" overflow="visible">
|
|
230
|
+
<path d="m4.3906-7.125-3.4219 9.3906c-0.054688 0.13281-0.10547 0.20703-0.15625 0.21875l-0.015625 0.015625h-0.046875c-0.10547 0-0.16797-0.054688-0.1875-0.15625-0.011719-0.023438-0.015625-0.039062-0.015625-0.046875 0-0.03125 0.015625-0.089844 0.046875-0.17188l3.4688-9.5312c0.039062-0.0625 0.097656-0.09375 0.17188-0.09375 0.11328 0 0.17969 0.054688 0.20312 0.15625v0.046875c0 0.03125-0.015625 0.089844-0.046875 0.17188z"/>
|
|
231
|
+
</symbol>
|
|
232
|
+
<symbol id="ee" overflow="visible">
|
|
233
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
234
|
+
</symbol>
|
|
235
|
+
<symbol id="ab" overflow="visible">
|
|
236
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
237
|
+
</symbol>
|
|
238
|
+
<symbol id="ed" overflow="visible">
|
|
239
|
+
<path d="m2.4844-5.5938v4.5c0 0.29297 0.054687 0.46875 0.17188 0.53125l0.015625 0.015625c0.13281 0.074219 0.42969 0.10938 0.89062 0.10938h0.28125v0.4375c-0.36719-0.03125-0.95312-0.046875-1.7656-0.046875 0.019531 0-0.51562 0.015625-1.6094 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-4.5312h-1.0938v-0.4375h1.0938v-1.6094c0-0.86328 0.35156-1.5 1.0625-1.9062 0.35156-0.21875 0.72266-0.32812 1.1094-0.32812 0.51953 0 0.89844 0.18359 1.1406 0.54688 0.082031 0.13672 0.125 0.28125 0.125 0.4375 0 0.32422-0.14844 0.52734-0.4375 0.60938h-0.1875c-0.30469 0-0.49219-0.14062-0.5625-0.42188l-0.015625-0.015625v-0.015625c-0.011719-0.050781-0.015625-0.097656-0.015625-0.14062 0-0.28125 0.14062-0.47656 0.42188-0.59375-0.14844-0.0625-0.30469-0.09375-0.46875-0.09375-0.40625 0-0.74219 0.23047-1 0.6875-0.1875 0.33594-0.28125 0.74219-0.28125 1.2188v1.625h1.6406v0.4375z"/>
|
|
240
|
+
</symbol>
|
|
241
|
+
<symbol id="o" overflow="visible">
|
|
242
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
243
|
+
</symbol>
|
|
244
|
+
<symbol id="n" overflow="visible">
|
|
245
|
+
<path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
|
|
246
|
+
</symbol>
|
|
247
|
+
<symbol id="ec" overflow="visible">
|
|
248
|
+
<path d="m5.8281-4.6562-1.8438 4.5469c-0.074219 0.17578-0.16797 0.26562-0.28125 0.26562-0.11719 0-0.20312-0.058594-0.26562-0.17188 0-0.019531-0.011719-0.050781-0.03125-0.09375l-2.0156-4.9688c-0.10547-0.25-0.21875-0.39453-0.34375-0.4375v-0.015625c-0.125-0.039062-0.38672-0.0625-0.78125-0.0625v-0.4375c0.41406 0.03125 0.86719 0.046875 1.3594 0.046875 0.17578 0 0.6875-0.015625 1.5312-0.046875v0.4375c-0.53125 0-0.79688 0.12109-0.79688 0.35938 0 0.03125 0.023437 0.10938 0.078125 0.23438l1.5625 3.9062 1.4375-3.5625c0.050781-0.16406 0.078125-0.28125 0.078125-0.34375 0-0.32031-0.16406-0.51953-0.48438-0.59375h-0.1875v-0.4375c0.47656 0.03125 0.88281 0.046875 1.2188 0.046875 0.38281 0 0.73438-0.015625 1.0469-0.046875v0.4375c-0.60547 0-1.0234 0.28125-1.25 0.84375v0.015625c-0.011719 0.023437-0.023437 0.046875-0.03125 0.078125z"/>
|
|
249
|
+
</symbol>
|
|
250
|
+
<symbol id="eb" overflow="visible">
|
|
251
|
+
<path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
|
|
252
|
+
</symbol>
|
|
253
|
+
<symbol id="ea" overflow="visible">
|
|
254
|
+
<path d="m9.3125-9.5312v3.3125c0 0.19922-0.03125 0.30859-0.09375 0.32812-0.023438 0.011719-0.0625 0.015625-0.125 0.015625-0.125 0-0.19922-0.039062-0.21875-0.125 0-0.019531-0.007812-0.0625-0.015625-0.125-0.17969-1.2891-0.68359-2.2344-1.5156-2.8281-0.46094-0.32031-0.96875-0.48438-1.5312-0.48438-0.80469 0-1.5156 0.26172-2.1406 0.78125-0.15625 0.13672-0.29688 0.27734-0.42188 0.42188l-0.015625 0.015625c-0.67969 0.8125-1.0156 1.9609-1.0156 3.4375 0 2.1562 0.6875 3.5859 2.0625 4.2812 0.50781 0.25 1.0234 0.375 1.5469 0.375 0.90625 0 1.6602-0.33203 2.2656-1 0.53125-0.57031 0.81641-1.2891 0.85938-2.1562 0.007813-0.13281 0.066406-0.20703 0.17188-0.21875 0.125 0 0.1875 0.078125 0.1875 0.23438 0 0.875-0.3125 1.6641-0.9375 2.3594-0.71875 0.8125-1.625 1.2188-2.7188 1.2188-1.2617 0-2.3594-0.44531-3.2969-1.3438-0.98047-0.9375-1.5-2.0977-1.5625-3.4844-0.011719-0.082031-0.015625-0.17188-0.015625-0.26562 0-1.3828 0.46875-2.5703 1.4062-3.5625 0.88281-0.94531 1.9453-1.4531 3.1875-1.5156 0.09375-0.007813 0.1875-0.015625 0.28125-0.015625 0.85156 0 1.6328 0.32422 2.3438 0.96875l0.23438 0.23438 0.70312-1.0312c0.070312-0.11328 0.14453-0.17188 0.21875-0.17188 0.09375 0.085938 0.14453 0.19922 0.15625 0.34375z"/>
|
|
255
|
+
</symbol>
|
|
256
|
+
<symbol id="dz" overflow="visible">
|
|
257
|
+
<path d="m4.6562-1.0625c-0.23047 0.57422-0.63672 0.94922-1.2188 1.125-0.1875 0.0625-0.39062 0.09375-0.60938 0.09375-0.79297 0-1.4023-0.19141-1.8281-0.57812-0.27344-0.23828-0.40625-0.53906-0.40625-0.90625 0-0.71875 0.39453-1.2891 1.1875-1.7188 0.0625-0.039063 0.12891-0.078125 0.20312-0.10938 0.57031-0.26953 1.4102-0.4375 2.5156-0.5h0.0625v-0.51562c0-0.78906-0.28906-1.3359-0.85938-1.6406-0.1875-0.10156-0.39844-0.15625-0.625-0.15625-0.61719 0-1.0898 0.18359-1.4219 0.54688-0.03125 0.042969-0.0625 0.078125-0.09375 0.10938 0.4375 0.054688 0.67578 0.26562 0.71875 0.64062 0 0.3125-0.14844 0.51562-0.4375 0.60938-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.33594 0-0.54297-0.15625-0.625-0.46875-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875 0-0.5625 0.28906-0.99219 0.875-1.2969 0.36328-0.1875 0.77344-0.28125 1.2344-0.28125 0.75781 0 1.3984 0.25781 1.9219 0.76562 0.32031 0.33594 0.48828 0.79688 0.5 1.3906v3.0625c0 0.27344 0.082031 0.46875 0.25 0.59375 0.070312 0.074219 0.16016 0.10938 0.26562 0.10938 0.32031 0 0.48828-0.30078 0.5-0.90625v-0.78125h0.35938v0.78125c0 0.6875-0.28125 1.1172-0.84375 1.2812-0.11719 0.03125-0.21875 0.046875-0.3125 0.046875-0.46094 0-0.78125-0.23828-0.96875-0.71875-0.0625-0.13281-0.10547-0.27344-0.125-0.42188zm-0.09375-2.2969c-1.4375 0.054687-2.3555 0.49219-2.75 1.3125-0.09375 0.23047-0.14062 0.46484-0.14062 0.70312 0 0.48047 0.21094 0.82812 0.64062 1.0469 0.1875 0.09375 0.39062 0.14062 0.60938 0.14062 0.48828 0 0.89453-0.19141 1.2188-0.57812 0.28125-0.3125 0.42188-0.71875 0.42188-1.2188z"/>
|
|
258
|
+
</symbol>
|
|
259
|
+
<symbol id="dy" overflow="visible">
|
|
260
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.082031-0.45703 0.25-0.9375 0.0625-0.16406 0.125-0.30469 0.1875-0.42188 0.21875-0.45703 0.5-0.71875 0.84375-0.78125 0.0625-0.007813 0.125-0.015625 0.1875-0.015625 0.51953 0 0.89844 0.22656 1.1406 0.67188 0.050781 0.10547 0.09375 0.21484 0.125 0.32812 0.007813 0.023438 0.015625 0.046875 0.015625 0.078125 0.53906-0.67578 1.1328-1.0352 1.7812-1.0781 0.51953 0 0.875 0.18359 1.0625 0.54688 0.070312 0.11719 0.10938 0.23438 0.10938 0.35938 0 0.36719-0.15625 0.62109-0.46875 0.76562-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.28125 0-0.45312-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.3125 0.16016-0.53906 0.48438-0.6875l0.015625-0.015625c0.070313-0.03125 0.14844-0.054687 0.23438-0.078125l-0.28125-0.125c-0.125-0.007812-0.23047-0.019531-0.3125-0.03125-0.38672 0-0.75781 0.15234-1.1094 0.45312-0.29297 0.26172-0.54297 0.60938-0.75 1.0469-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938l-0.4375 1.8125-0.5625 2.2188c-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
261
|
+
</symbol>
|
|
262
|
+
<symbol id="dx" overflow="visible">
|
|
263
|
+
<path d="m5.5625-8.75c0 0.26172-0.13281 0.46875-0.39062 0.625-0.125 0.074219-0.25 0.10938-0.375 0.10938-0.28125 0-0.44922-0.125-0.5-0.375v-0.015625c-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.28906 0.14453-0.50781 0.4375-0.65625 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.125 0.51562 0.375 0.007813 0.042969 0.015625 0.085938 0.015625 0.125zm-2.8125 9.4531 1.3125-5.2188c0.0625-0.28125 0.09375-0.51953 0.09375-0.71875 0-0.42578-0.15234-0.64062-0.45312-0.64062-0.5625 0-1.0742 0.41406-1.5312 1.2344-0.085937 0.14844-0.15625 0.30469-0.21875 0.46875-0.11719 0.17969-0.20312 0.27344-0.26562 0.28125-0.10547 0-0.15625-0.046875-0.15625-0.14062 0-0.125 0.11719-0.39062 0.35938-0.79688 0.53906-0.90625 1.1602-1.3594 1.8594-1.3594 0.51953 0 0.89844 0.21094 1.1406 0.625 0.10156 0.19922 0.15625 0.41797 0.15625 0.65625 0 0.16797-0.027344 0.34375-0.078125 0.53125l-1.2812 5.1094c-0.21094 0.8125-0.69922 1.4219-1.4688 1.8281-0.38672 0.20703-0.77734 0.3125-1.1719 0.3125-0.58594 0-0.96484-0.17969-1.1406-0.53125-0.0625-0.10547-0.09375-0.21875-0.09375-0.34375 0-0.35547 0.16406-0.60156 0.48438-0.73438 0.09375-0.042969 0.1875-0.0625 0.28125-0.0625 0.28906 0 0.46094 0.125 0.51562 0.375 0.007812 0.039063 0.015625 0.078125 0.015625 0.10938 0 0.28125-0.13281 0.5-0.39062 0.65625-0.074219 0.039062-0.15625 0.070312-0.25 0.09375 0.17578 0.082031 0.35938 0.125 0.54688 0.125 0.55078 0 1.0156-0.33984 1.3906-1.0156 0.14453-0.26172 0.25781-0.54297 0.34375-0.84375z"/>
|
|
264
|
+
</symbol>
|
|
265
|
+
<symbol id="dw" overflow="visible">
|
|
266
|
+
<path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
267
|
+
</symbol>
|
|
268
|
+
<symbol id="dv" overflow="visible">
|
|
269
|
+
<path d="m4.2344-4.4219-0.85938 3.5-0.046875 0.23438c0 0.15625 0.21094 0.24219 0.64062 0.25h0.26562c0.25 0 0.38281 0.054688 0.40625 0.15625 0 0.1875-0.09375 0.28125-0.28125 0.28125l-0.90625-0.03125h-0.015625l-0.85938-0.015625h-0.03125l-1.7656 0.046875h-0.015625c-0.13672 0-0.20312-0.054688-0.20312-0.17188 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125l1.8906-7.5156c0.03125-0.14453 0.046875-0.23438 0.046875-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.24219 0-0.37109-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h4.7188c1.125 0 1.9297 0.34375 2.4219 1.0312 0.22656 0.33594 0.34375 0.69531 0.34375 1.0781 0 0.76172-0.39062 1.4492-1.1719 2.0625-0.82422 0.64844-1.7461 0.96875-2.7656 0.96875zm1.0156-4.1719-0.95312 3.8125h1.9688c0.89453 0 1.6133-0.25 2.1562-0.75 0.38281-0.35156 0.64844-0.94531 0.79688-1.7812v-0.015625c0.019531-0.17578 0.03125-0.32812 0.03125-0.45312 0-0.89453-0.63672-1.3438-1.9062-1.3438h-1.3438c-0.33594 0-0.53906 0.046875-0.60938 0.14062v0.015625h-0.015625v0.015625c-0.042969 0.054687-0.085938 0.17188-0.125 0.35938z"/>
|
|
270
|
+
</symbol>
|
|
271
|
+
<symbol id="du" overflow="visible">
|
|
272
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
273
|
+
</symbol>
|
|
274
|
+
<symbol id="dt" overflow="visible">
|
|
275
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.054687-0.33594 0.17188-0.67188 0.050781-0.125 0.09375-0.22266 0.125-0.29688 0.16406-0.33203 0.36719-0.51953 0.60938-0.5625 0.039063-0.007812 0.085937-0.015625 0.14062-0.015625 0.375 0 0.64453 0.16406 0.8125 0.48438 0.03125 0.074219 0.054688 0.15234 0.078125 0.23438 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875 0.38281-0.47656 0.8125-0.73438 1.2812-0.76562 0.375 0 0.62891 0.13281 0.76562 0.39062 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562 0 0.26172-0.10938 0.4375-0.32812 0.53125-0.074219 0.03125-0.14844 0.046875-0.21875 0.046875-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.078125c0-0.21875 0.10938-0.37891 0.32812-0.48438l0.015625-0.015625c0.050781-0.019531 0.10938-0.035156 0.17188-0.046875l-0.20312-0.09375c-0.085938-0.007813-0.15625-0.019531-0.21875-0.03125-0.28125 0-0.54688 0.10938-0.79688 0.32812-0.21094 0.1875-0.38672 0.4375-0.53125 0.75-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125l-0.32812 1.2969-0.39062 1.5781c-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
276
|
+
</symbol>
|
|
277
|
+
<symbol id="ds" overflow="visible">
|
|
278
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
279
|
+
</symbol>
|
|
280
|
+
<symbol id="dq" overflow="visible">
|
|
281
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
282
|
+
</symbol>
|
|
283
|
+
<symbol id="dp" overflow="visible">
|
|
284
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
285
|
+
</symbol>
|
|
286
|
+
<symbol id="e" overflow="visible">
|
|
287
|
+
<path d="m0.39062-2.3125v-0.4375l4.2969-6.5625c0.070312-0.11328 0.16406-0.17188 0.28125-0.17188 0.13281 0 0.20703 0.054687 0.21875 0.15625v6.5781h1.4062v0.4375h-1.4062v1.2188c0 0.29297 0.054688 0.46875 0.17188 0.53125 0.13281 0.085938 0.4375 0.125 0.90625 0.125h0.28125v0.4375c-0.375-0.03125-1.0117-0.046875-1.9062-0.046875-0.875 0-1.5 0.015625-1.875 0.046875v-0.4375h0.28125c0.58203 0 0.92188-0.078125 1.0156-0.23438 0.03125-0.0625 0.046875-0.20312 0.046875-0.42188v-1.2188zm3.8125-0.4375v-5.2188l-3.4219 5.2188z"/>
|
|
288
|
+
</symbol>
|
|
289
|
+
<symbol id="do" overflow="visible">
|
|
290
|
+
<path d="m6.4375-4.4844c0 1.3672-0.17188 2.4219-0.51562 3.1719-0.55469 1.043-1.3672 1.582-2.4375 1.625-0.84375 0-1.5273-0.33594-2.0469-1.0156-0.10547-0.11328-0.19531-0.25-0.26562-0.40625-0.41797-0.76953-0.625-1.8945-0.625-3.375 0-1.3633 0.17188-2.4219 0.51562-3.1719 0.46875-1.0391 1.2227-1.5977 2.2656-1.6719h0.17188c0.83203 0 1.5078 0.33594 2.0312 1v0.015625c0.125 0.16797 0.23828 0.35547 0.34375 0.5625 0.375 0.79297 0.5625 1.8828 0.5625 3.2656zm-2.9531 4.4844c0.59375 0 1.0469-0.28516 1.3594-0.85938 0.13281-0.25 0.22656-0.54688 0.28125-0.89062 0.10156-0.59375 0.15625-1.5547 0.15625-2.8906 0-1.3008-0.046875-2.2109-0.14062-2.7344-0.16797-0.88281-0.60156-1.4141-1.2969-1.5938-0.11719-0.03125-0.23438-0.046875-0.35938-0.046875-0.65625 0-1.1328 0.32812-1.4219 0.98438-0.10547 0.21875-0.1875 0.49219-0.25 0.8125-0.074219 0.5-0.10938 1.3594-0.10938 2.5781 0 1.4062 0.050781 2.3906 0.15625 2.9531 0.16406 0.89844 0.57812 1.4375 1.2344 1.625 0.13281 0.042969 0.26562 0.0625 0.39062 0.0625z"/>
|
|
291
|
+
</symbol>
|
|
292
|
+
<symbol id="d" overflow="visible">
|
|
293
|
+
<path d="m4.0625-4.9219c0.92578 0.1875 1.5977 0.64062 2.0156 1.3594 0.20703 0.36719 0.3125 0.75781 0.3125 1.1719 0 0.79297-0.32422 1.4609-0.96875 2-0.57422 0.46875-1.2422 0.70312-2 0.70312-0.92969 0-1.6719-0.27734-2.2344-0.82812-0.39844-0.39453-0.59375-0.85156-0.59375-1.375 0-0.4375 0.19141-0.69531 0.57812-0.78125 0.070313-0.019531 0.14062-0.03125 0.20312-0.03125 0.35156 0 0.59375 0.15234 0.71875 0.45312 0.03125 0.11719 0.050781 0.22656 0.0625 0.32812 0 0.375-0.16797 0.62109-0.5 0.73438-0.13672 0.042969-0.27734 0.058594-0.42188 0.046875 0.34375 0.57422 0.94141 0.91797 1.7969 1.0312 0.11328 0.023438 0.22656 0.03125 0.34375 0.03125 0.59375 0 1.0312-0.29688 1.3125-0.89062 0.17578-0.375 0.26562-0.84766 0.26562-1.4219 0-1.2383-0.37109-1.9883-1.1094-2.25-0.17969-0.050781-0.35938-0.078125-0.54688-0.078125h-0.625c-0.21094 0-0.32031-0.050781-0.32812-0.15625 0-0.09375 0.066406-0.14844 0.20312-0.17188 0.14453 0 0.32812-0.007813 0.54688-0.03125 0.47656-0.019531 0.85156-0.20312 1.125-0.54688v-0.015625l0.015625-0.015625v-0.015625h0.015625l0.09375-0.14062c0.25781-0.4375 0.39062-0.96875 0.39062-1.5938 0-0.86328-0.33984-1.375-1.0156-1.5312-0.10547-0.019531-0.21484-0.03125-0.32812-0.03125-0.65625 0-1.1875 0.1875-1.5938 0.5625-0.10547 0.085938-0.19531 0.18359-0.26562 0.29688 0.57031 0 0.85938 0.23438 0.85938 0.70312 0 0.33594-0.14844 0.55859-0.4375 0.67188-0.085937 0.03125-0.17188 0.046875-0.26562 0.046875-0.36719 0-0.59375-0.16406-0.6875-0.5v-0.015625c-0.023438-0.070313-0.03125-0.14453-0.03125-0.21875 0-0.625 0.30469-1.125 0.92188-1.5 0.44531-0.26953 0.96094-0.40625 1.5469-0.40625 0.85156 0 1.5391 0.25781 2.0625 0.76562l0.03125 0.015625c0.32031 0.34375 0.48438 0.73047 0.48438 1.1562 0 0.77344-0.32812 1.418-0.98438 1.9375-0.29297 0.23047-0.61719 0.40625-0.96875 0.53125z"/>
|
|
294
|
+
</symbol>
|
|
295
|
+
<symbol id="c" overflow="visible">
|
|
296
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
297
|
+
</symbol>
|
|
298
|
+
<symbol id="dn" overflow="visible">
|
|
299
|
+
<path d="m9.3125-9.5312v3.3125c0 0.19922-0.03125 0.30859-0.09375 0.32812-0.023438 0.011719-0.0625 0.015625-0.125 0.015625-0.125 0-0.19922-0.039062-0.21875-0.125 0-0.019531-0.007812-0.0625-0.015625-0.125-0.17969-1.2891-0.68359-2.2344-1.5156-2.8281-0.46094-0.32031-0.96875-0.48438-1.5312-0.48438-0.80469 0-1.5156 0.26172-2.1406 0.78125-0.15625 0.13672-0.29688 0.27734-0.42188 0.42188l-0.015625 0.015625c-0.67969 0.8125-1.0156 1.9609-1.0156 3.4375 0 2.1562 0.6875 3.5859 2.0625 4.2812 0.50781 0.25 1.0234 0.375 1.5469 0.375 0.90625 0 1.6602-0.33203 2.2656-1 0.53125-0.57031 0.81641-1.2891 0.85938-2.1562 0.007813-0.13281 0.066406-0.20703 0.17188-0.21875 0.125 0 0.1875 0.078125 0.1875 0.23438 0 0.875-0.3125 1.6641-0.9375 2.3594-0.71875 0.8125-1.625 1.2188-2.7188 1.2188-1.2617 0-2.3594-0.44531-3.2969-1.3438-0.98047-0.9375-1.5-2.0977-1.5625-3.4844-0.011719-0.082031-0.015625-0.17188-0.015625-0.26562 0-1.3828 0.46875-2.5703 1.4062-3.5625 0.88281-0.94531 1.9453-1.4531 3.1875-1.5156 0.09375-0.007813 0.1875-0.015625 0.28125-0.015625 0.85156 0 1.6328 0.32422 2.3438 0.96875l0.23438 0.23438 0.70312-1.0312c0.070312-0.11328 0.14453-0.17188 0.21875-0.17188 0.09375 0.085938 0.14453 0.19922 0.15625 0.34375z"/>
|
|
300
|
+
</symbol>
|
|
301
|
+
<symbol id="b" overflow="visible">
|
|
302
|
+
<path d="m4.6562-1.0625c-0.23047 0.57422-0.63672 0.94922-1.2188 1.125-0.1875 0.0625-0.39062 0.09375-0.60938 0.09375-0.79297 0-1.4023-0.19141-1.8281-0.57812-0.27344-0.23828-0.40625-0.53906-0.40625-0.90625 0-0.71875 0.39453-1.2891 1.1875-1.7188 0.0625-0.039063 0.12891-0.078125 0.20312-0.10938 0.57031-0.26953 1.4102-0.4375 2.5156-0.5h0.0625v-0.51562c0-0.78906-0.28906-1.3359-0.85938-1.6406-0.1875-0.10156-0.39844-0.15625-0.625-0.15625-0.61719 0-1.0898 0.18359-1.4219 0.54688-0.03125 0.042969-0.0625 0.078125-0.09375 0.10938 0.4375 0.054688 0.67578 0.26562 0.71875 0.64062 0 0.3125-0.14844 0.51562-0.4375 0.60938-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.33594 0-0.54297-0.15625-0.625-0.46875-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875 0-0.5625 0.28906-0.99219 0.875-1.2969 0.36328-0.1875 0.77344-0.28125 1.2344-0.28125 0.75781 0 1.3984 0.25781 1.9219 0.76562 0.32031 0.33594 0.48828 0.79688 0.5 1.3906v3.0625c0 0.27344 0.082031 0.46875 0.25 0.59375 0.070312 0.074219 0.16016 0.10938 0.26562 0.10938 0.32031 0 0.48828-0.30078 0.5-0.90625v-0.78125h0.35938v0.78125c0 0.6875-0.28125 1.1172-0.84375 1.2812-0.11719 0.03125-0.21875 0.046875-0.3125 0.046875-0.46094 0-0.78125-0.23828-0.96875-0.71875-0.0625-0.13281-0.10547-0.27344-0.125-0.42188zm-0.09375-2.2969c-1.4375 0.054687-2.3555 0.49219-2.75 1.3125-0.09375 0.23047-0.14062 0.46484-0.14062 0.70312 0 0.48047 0.21094 0.82812 0.64062 1.0469 0.1875 0.09375 0.39062 0.14062 0.60938 0.14062 0.48828 0 0.89453-0.19141 1.2188-0.57812 0.28125-0.3125 0.42188-0.71875 0.42188-1.2188z"/>
|
|
303
|
+
</symbol>
|
|
304
|
+
<symbol id="aa" overflow="visible">
|
|
305
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
306
|
+
</symbol>
|
|
307
|
+
<symbol id="dm" overflow="visible">
|
|
308
|
+
<path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
|
|
309
|
+
</symbol>
|
|
310
|
+
<symbol id="m" overflow="visible">
|
|
311
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
312
|
+
</symbol>
|
|
313
|
+
<symbol id="l" overflow="visible">
|
|
314
|
+
<path d="m9.125-3.6094-0.57812 3.6094h-8.0781v-0.4375h0.32812c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039062-0.0625 0.0625-0.20312 0.0625-0.42188v-7.3281c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.125-0.09375-0.4375-0.14062-0.9375-0.14062h-0.32812v-0.42188h7.875l0.39062 3.1406h-0.34375c-0.125-1.0195-0.34375-1.707-0.65625-2.0625-0.36719-0.4375-1.0625-0.65625-2.0938-0.65625h-1.7969c-0.36719 0-0.58594 0.058594-0.65625 0.17188v0.03125c-0.023438 0.054687-0.03125 0.17188-0.03125 0.35938v3.3594h1.25c0.71875 0 1.1641-0.15625 1.3438-0.46875 0.050781-0.082031 0.085938-0.1875 0.10938-0.3125 0.039063-0.1875 0.0625-0.46875 0.0625-0.84375h0.34375v3.7031h-0.34375c0-0.67578-0.10156-1.1133-0.29688-1.3125-0.21094-0.21875-0.61719-0.32812-1.2188-0.32812h-1.25v3.7344c0 0.28125 0.046875 0.44922 0.14062 0.5h0.015625c0.082031 0.042969 0.25781 0.0625 0.53125 0.0625h1.8594c1.1328 0 1.9102-0.26953 2.3281-0.8125 0.26953-0.35156 0.48828-0.96094 0.65625-1.8281l0.09375-0.53125z"/>
|
|
315
|
+
</symbol>
|
|
316
|
+
<symbol id="k" overflow="visible">
|
|
317
|
+
<path d="m5.3125-0.85938c-0.51172 0.67969-1.1328 1.0156-1.8594 1.0156-0.875 0-1.6094-0.34766-2.2031-1.0469-0.52344-0.61328-0.78125-1.3203-0.78125-2.125 0-0.97656 0.36719-1.7852 1.1094-2.4219 0.58203-0.5 1.2422-0.75 1.9844-0.75 0.75781 0 1.3477 0.35547 1.7656 1.0625 0.050781 0.074219 0.09375 0.14844 0.125 0.21875l0.53125-1.2812h0.29688v7.8438c0 0.3125 0.078125 0.5 0.23438 0.5625 0.09375 0.039062 0.37891 0.0625 0.85938 0.0625v0.4375c-0.98047-0.03125-1.5078-0.046875-1.5781-0.046875-0.09375 0-0.61719 0.015625-1.5625 0.046875v-0.4375c0.53906 0 0.85938-0.042969 0.95312-0.125l0.03125-0.03125c0.0625-0.085938 0.09375-0.24219 0.09375-0.46875zm0.046875-3.0156c0-0.50781-0.17969-0.97266-0.53125-1.3906-0.32422-0.38281-0.71484-0.57812-1.1719-0.57812-0.59375 0-1.0898 0.30859-1.4844 0.92188-0.35547 0.53125-0.53125 1.168-0.53125 1.9062 0 0.99219 0.26562 1.7734 0.79688 2.3438 0.3125 0.34375 0.67188 0.51562 1.0781 0.51562 0.5 0 0.92578-0.19141 1.2812-0.57812 0.375-0.40625 0.5625-0.79688 0.5625-1.1719z"/>
|
|
318
|
+
</symbol>
|
|
319
|
+
<symbol id="j" overflow="visible">
|
|
320
|
+
<path d="m5.4688-1.1094c-0.38672 0.84375-0.98438 1.2656-1.7969 1.2656-1.1484 0-1.8242-0.39844-2.0312-1.2031-0.0625-0.23828-0.09375-0.62891-0.09375-1.1719v-2.0938c0-0.60156-0.046875-0.96875-0.14062-1.0938l-0.078125-0.078125c-0.10547-0.070313-0.39844-0.10938-0.875-0.10938v-0.4375l2.0469-0.15625v4.6406c0 0.57422 0.10156 0.95312 0.3125 1.1406h0.015625c0.19531 0.16797 0.5 0.25 0.90625 0.25 0.63281 0 1.1094-0.3125 1.4219-0.9375 0.1875-0.35156 0.28125-0.76562 0.28125-1.2344v-2.4844c0-0.36328-0.074219-0.58594-0.21875-0.67188h-0.015625c-0.125-0.070313-0.41406-0.10938-0.85938-0.10938v-0.4375l2.0469-0.15625v4.9688c0 0.36719 0.070313 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0156 0.15625z"/>
|
|
321
|
+
</symbol>
|
|
322
|
+
<symbol id="i" overflow="visible">
|
|
323
|
+
<path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
|
|
324
|
+
</symbol>
|
|
325
|
+
<symbol id="h" overflow="visible">
|
|
326
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
327
|
+
</symbol>
|
|
328
|
+
<symbol id="g" overflow="visible">
|
|
329
|
+
<path d="m6.5938-3c0 0.96875-0.35547 1.7656-1.0625 2.3906-0.59375 0.51172-1.2773 0.76562-2.0469 0.76562-0.89844 0-1.6523-0.33594-2.2656-1.0156-0.55469-0.60156-0.82812-1.3164-0.82812-2.1406 0-0.94531 0.33594-1.75 1.0156-2.4062 0.59375-0.57031 1.2891-0.85938 2.0938-0.85938 0.90625 0 1.6641 0.35938 2.2812 1.0781 0.53906 0.625 0.8125 1.3555 0.8125 2.1875zm-3.0938 2.7969c0.625 0 1.1172-0.25781 1.4844-0.78125l0.14062-0.25c0.20703-0.40625 0.3125-1.0312 0.3125-1.875 0-0.89453-0.125-1.5391-0.375-1.9375-0.39844-0.58203-0.92188-0.89062-1.5781-0.92188-0.57422 0-1.0469 0.23438-1.4219 0.70312-0.074219 0.074219-0.13281 0.15234-0.17188 0.23438-0.23047 0.41797-0.34375 1.0586-0.34375 1.9219 0 0.90625 0.11719 1.5625 0.35938 1.9688 0.38281 0.61719 0.91406 0.92969 1.5938 0.9375z"/>
|
|
330
|
+
</symbol>
|
|
331
|
+
<symbol id="f" overflow="visible">
|
|
332
|
+
<path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
|
|
333
|
+
</symbol>
|
|
334
|
+
<symbol id="a" overflow="visible">
|
|
335
|
+
<path d="m5.8594 31.562c-0.36719-0.375-0.66406-0.80859-0.89062-1.2969-0.21875-0.49219-0.32812-0.98438-0.32812-1.4844v-8.25c0-0.5625-0.12109-1.1055-0.35938-1.625-0.23047-0.51172-0.54688-0.96875-0.95312-1.375s-0.86719-0.74219-1.375-1c-0.085937-0.03125-0.125-0.070312-0.125-0.10938v-0.35938c0-0.054688 0.039063-0.09375 0.125-0.125 0.39453-0.21094 0.75391-0.45312 1.0781-0.73438 0.32031-0.28125 0.59766-0.58984 0.82812-0.92188 0.23828-0.33594 0.42578-0.71094 0.5625-1.125 0.14453-0.40625 0.21875-0.82031 0.21875-1.2344v-8.2344c0-0.51172 0.10938-1.0117 0.32812-1.5 0.22656-0.48047 0.52344-0.90625 0.89062-1.2812 0.28906-0.28125 0.67188-0.57812 1.1406-0.89062 0.47656-0.3125 0.86719-0.50391 1.1719-0.57812h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 0.03125 0.023438 0.046875 0.046875 0.046875 0.078125v0.375c0 0.054688-0.03125 0.09375-0.09375 0.125-0.78125 0.34375-1.4297 0.83594-1.9375 1.4844-0.51172 0.65625-0.76562 1.3828-0.76562 2.1875v8.2344c0 0.625-0.15234 1.2188-0.45312 1.7812-0.29297 0.5625-0.67969 1.0469-1.1562 1.4531-0.48047 0.41406-1.0234 0.76953-1.625 1.0625 0.45703 0.19531 0.875 0.4375 1.25 0.71875 0.38281 0.28125 0.72266 0.59766 1.0156 0.95312 0.28906 0.35156 0.52344 0.75 0.70312 1.1875 0.17578 0.44531 0.26562 0.91406 0.26562 1.4062v8.25c0 0.38281 0.066406 0.76562 0.20312 1.1406 0.14453 0.38281 0.33594 0.73438 0.57812 1.0469 0.25 0.3125 0.54688 0.59766 0.89062 0.85938 0.34375 0.25781 0.6875 0.46875 1.0312 0.625 0.0625 0.019531 0.09375 0.054688 0.09375 0.10938v0.375c0 0.019531-0.015625 0.039063-0.046875 0.0625-0.023437 0.03125-0.046875 0.046875-0.078125 0.046875h-0.35938c-0.29297-0.074219-0.68359-0.27344-1.1719-0.59375-0.48047-0.3125-0.85938-0.60547-1.1406-0.875z"/>
|
|
336
|
+
</symbol>
|
|
337
|
+
<symbol id="z" overflow="visible">
|
|
338
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
339
|
+
</symbol>
|
|
340
|
+
<symbol id="y" overflow="visible">
|
|
341
|
+
<path d="m9.4531-4.5469-7.7656 3.6719c-0.10547 0.054688-0.1875 0.078125-0.25 0.078125-0.14844 0-0.23438-0.070313-0.26562-0.21875-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.125 0.082031-0.22266 0.25-0.29688l7.375-3.4844-7.3594-3.4688c-0.15625-0.125-0.24609-0.22266-0.26562-0.29688 0-0.14453 0.070312-0.23438 0.21875-0.26562 0.019531-0.007813 0.039062-0.015625 0.0625-0.015625 0.050781 0 0.13281 0.03125 0.25 0.09375l7.7656 3.6562c0.15625 0.085938 0.24219 0.1875 0.26562 0.3125 0 0.125-0.089844 0.22656-0.26562 0.29688zm-0.20312 6.4688h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.5938c0.30078 0 0.46094 0.09375 0.48438 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
342
|
+
</symbol>
|
|
343
|
+
<symbol id="x" overflow="visible">
|
|
344
|
+
<path d="m4.6719-4.2344-0.46875 1.9219c-0.15625 0.63672-0.23438 1.0469-0.23438 1.2344 0 0.49219 0.17188 0.78125 0.51562 0.875 0.070313 0.03125 0.15625 0.046875 0.25 0.046875 0.46875 0 0.89062-0.23438 1.2656-0.70312 0.25781-0.28906 0.45703-0.66406 0.59375-1.125 0.03125-0.10156 0.09375-0.15625 0.1875-0.15625 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.23047-0.14062 0.5625-0.42188 1-0.51172 0.77344-1.1172 1.1562-1.8125 1.1562-0.63672 0-1.1016-0.26562-1.3906-0.79688-0.054688-0.082031-0.09375-0.17188-0.125-0.26562-0.21875 0.44922-0.52734 0.76172-0.92188 0.9375-0.17969 0.082031-0.35938 0.125-0.54688 0.125-0.5625 0-0.95312-0.16406-1.1719-0.5-0.09375-0.11328-0.14062-0.25391-0.14062-0.42188 0-0.34375 0.14844-0.58594 0.45312-0.73438 0.10156-0.050781 0.20703-0.078125 0.3125-0.078125 0.28125 0 0.45312 0.11719 0.51562 0.34375v0.14062c0 0.32422-0.15625 0.55859-0.46875 0.70312-0.054688 0.03125-0.11719 0.046875-0.1875 0.046875 0.19531 0.125 0.42969 0.1875 0.70312 0.1875 0.5 0 0.89062-0.32812 1.1719-0.98438 0.0625-0.14453 0.11328-0.30078 0.15625-0.46875 0.50781-1.9062 0.76562-3.0156 0.76562-3.3281-0.0625-0.58203-0.32031-0.89453-0.76562-0.9375-0.48047 0-0.92188 0.24609-1.3281 0.73438v0.015625c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.13672 0.1875-0.26172 0.40234-0.375 0.64062-0.042969 0.11719-0.085938 0.23047-0.125 0.34375l-0.03125 0.078125c-0.023438 0.10547-0.078125 0.15625-0.17188 0.15625-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.22656 0.14453-0.56641 0.4375-1.0156 0.50781-0.75781 1.1133-1.1406 1.8125-1.1406 0.71875 0 1.2227 0.35547 1.5156 1.0625 0.28906-0.57031 0.6875-0.91406 1.1875-1.0312 0.09375-0.019531 0.1875-0.03125 0.28125-0.03125 0.55078 0 0.9375 0.15625 1.1562 0.46875 0.09375 0.125 0.14062 0.27734 0.14062 0.45312 0 0.38672-0.17188 0.64062-0.51562 0.76562-0.085937 0.03125-0.16406 0.046875-0.23438 0.046875-0.29297 0-0.46484-0.125-0.51562-0.375-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.28125 0.13281-0.5 0.40625-0.65625 0.082031-0.050781 0.17188-0.085938 0.26562-0.10938-0.19922-0.11328-0.43359-0.17188-0.70312-0.17188-0.63672 0-1.0859 0.49609-1.3438 1.4844-0.023438 0.054687-0.039062 0.10547-0.046875 0.15625z"/>
|
|
345
|
+
</symbol>
|
|
346
|
+
<symbol id="dl" overflow="visible">
|
|
347
|
+
<path d="m10.688-8.4844-1.8906 7.5625-0.046875 0.23438c0 0.15625 0.21875 0.24219 0.65625 0.25h0.25c0.25 0 0.37891 0.054688 0.39062 0.15625 0 0.1875-0.09375 0.28125-0.28125 0.28125l-0.89062-0.03125h-0.015625l-0.85938-0.015625h-0.03125l-1.7656 0.046875h-0.015625c-0.13672 0-0.20312-0.050781-0.20312-0.15625 0-0.16406 0.066406-0.25781 0.20312-0.28125h0.14062c0.58203 0 0.94141-0.046875 1.0781-0.14062l0.015625-0.015625c0.070313-0.0625 0.13281-0.16016 0.1875-0.29688l0.95312-3.875h-4.2656l-0.95312 3.8438-0.046875 0.23438c0 0.15625 0.21875 0.24219 0.65625 0.25h0.26562c0.23828 0 0.36719 0.054688 0.39062 0.15625 0 0.1875-0.09375 0.28125-0.28125 0.28125l-0.89062-0.03125h-0.015625l-0.875-0.015625h-0.03125l-1.7656 0.046875h-0.015625c-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.16406 0.066406-0.25781 0.20312-0.28125h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062 0-0.007813 0.003906-0.035156 0.015625-0.078125l1.875-7.5156c0.03125-0.14453 0.046875-0.23438 0.046875-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.03125-0.125c-0.15625-0.019531-0.33594-0.03125-0.53125-0.03125-0.24219 0-0.37109-0.050781-0.39062-0.15625 0-0.1875 0.085937-0.28125 0.26562-0.28125l1.7969 0.046875h0.015625l1.7656-0.046875h0.015625c0.13281 0 0.20312 0.054688 0.20312 0.15625 0 0.15625-0.070313 0.24609-0.20312 0.26562h-0.015625l-0.015625 0.015625h-0.25c-0.5625 0-0.90234 0.078125-1.0156 0.23438h-0.015625v0.015625c-0.042969 0.0625-0.089844 0.19531-0.14062 0.39062l-0.82812 3.2969h4.2812l0.82812-3.4219c0.039063-0.15625 0.0625-0.24219 0.0625-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.15625c-0.16797-0.019531-0.34375-0.03125-0.53125-0.03125-0.25 0-0.38281-0.050781-0.39062-0.15625 0-0.1875 0.085938-0.28125 0.26562-0.28125l1.7812 0.046875h0.015625l1.7812-0.046875h0.015625c0.125 0 0.1875 0.054688 0.1875 0.15625 0 0.15625-0.0625 0.24609-0.1875 0.26562h-0.015625c-0.054688 0.011719-0.14062 0.015625-0.26562 0.015625-0.57422 0-0.91406 0.074219-1.0156 0.21875-0.054688 0.0625-0.10547 0.20312-0.15625 0.42188z"/>
|
|
348
|
+
</symbol>
|
|
349
|
+
<symbol id="dk" overflow="visible">
|
|
350
|
+
<path d="m3.9531-3.7969c-0.17969-0.23828-0.46484-0.375-0.85938-0.40625-0.42969 0-0.82031 0.21875-1.1719 0.65625-0.085937 0.11719-0.16406 0.23047-0.23438 0.34375-0.26172 0.49219-0.43359 1.0625-0.51562 1.7188-0.011719 0.11719-0.015625 0.21094-0.015625 0.28125 0 0.55469 0.17969 0.89844 0.54688 1.0312 0.09375 0.042969 0.20703 0.0625 0.34375 0.0625 0.60156 0 1.1445-0.19531 1.625-0.59375 0.13281-0.11328 0.25781-0.24219 0.375-0.39062 0.050781-0.070312 0.097656-0.10938 0.14062-0.10938 0.050781 0 0.085938 0.046875 0.10938 0.14062 0 0.074219-0.11719 0.21484-0.34375 0.42188-0.55469 0.5-1.1953 0.75-1.9219 0.75-0.63672 0-1.0938-0.25391-1.375-0.76562-0.16797-0.26953-0.25-0.57812-0.25-0.92188 0-0.67578 0.25781-1.3047 0.78125-1.8906 0.50781-0.57031 1.082-0.88281 1.7188-0.9375 0.0625-0.007812 0.125-0.015625 0.1875-0.015625 0.50781 0 0.86328 0.15625 1.0625 0.46875 0.070312 0.125 0.10938 0.25781 0.10938 0.39062 0 0.29297-0.11719 0.49609-0.34375 0.60938-0.074219 0.023437-0.14844 0.03125-0.21875 0.03125-0.19922 0-0.32031-0.085937-0.35938-0.26562v-0.078125c0-0.14453 0.054688-0.27344 0.17188-0.39062 0.09375-0.09375 0.23828-0.14062 0.4375-0.14062z"/>
|
|
351
|
+
</symbol>
|
|
352
|
+
<symbol id="dj" overflow="visible">
|
|
353
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
354
|
+
</symbol>
|
|
355
|
+
<symbol id="di" overflow="visible">
|
|
356
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
357
|
+
</symbol>
|
|
358
|
+
<symbol id="dh" overflow="visible">
|
|
359
|
+
<path d="m6.2812-2.4375-0.39062 2.4375h-5.1875c0-0.22656 0.023437-0.37891 0.078125-0.45312l0.078125-0.0625 2.6875-3c0.97656-1.1016 1.4688-2.1328 1.4688-3.0938 0-0.83203-0.25781-1.4609-0.76562-1.8906l-0.015625-0.015625c-0.30469-0.25-0.66797-0.375-1.0938-0.375-0.67969 0-1.2148 0.29297-1.6094 0.875-0.11719 0.16797-0.21094 0.35156-0.28125 0.54688h0.17188c0.375 0 0.61328 0.16797 0.71875 0.5v0.015625c0.019531 0.0625 0.03125 0.13281 0.03125 0.20312 0 0.375-0.17969 0.61719-0.53125 0.71875-0.074219 0.023438-0.14062 0.03125-0.20312 0.03125-0.34375 0-0.57422-0.14453-0.6875-0.4375-0.03125-0.10156-0.046875-0.22266-0.046875-0.35938 0-0.71875 0.27344-1.332 0.82812-1.8438 0.48828-0.45703 1.082-0.6875 1.7812-0.6875 1.0312 0 1.832 0.35156 2.4062 1.0469 0.32031 0.39844 0.50391 0.87109 0.54688 1.4219 0.007813 0.085937 0.015625 0.16797 0.015625 0.25 0 0.67969-0.25781 1.3281-0.76562 1.9531-0.27344 0.3125-0.69531 0.73047-1.2656 1.25l-0.84375 0.76562-0.14062 0.125-1.4844 1.4375h2.5156c0.82031 0 1.2656-0.035156 1.3281-0.10938 0.09375-0.13281 0.19531-0.55078 0.3125-1.25z"/>
|
|
360
|
+
</symbol>
|
|
361
|
+
<symbol id="dg" overflow="visible">
|
|
362
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
363
|
+
</symbol>
|
|
364
|
+
<symbol id="df" overflow="visible">
|
|
365
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
366
|
+
</symbol>
|
|
367
|
+
<symbol id="de" overflow="visible">
|
|
368
|
+
<path d="m0.92188 19.594c-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.015625-0.078125 0.046875-0.10938l7.3906-8.6094-7.3906-10.125c-0.03125-0.023437-0.046875-0.042969-0.046875-0.0625v-0.42188c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h16.797l1.7031 3.9375h-0.40625c-0.4375-1-1.168-1.7422-2.1875-2.2188-1.0117-0.48047-2.0703-0.77734-3.1719-0.89062-1.1055-0.10547-2.3906-0.15625-3.8594-0.15625h-6.4688l6.6094 9.0312c0.019531 0.03125 0.03125 0.0625 0.03125 0.09375s-0.011719 0.066406-0.03125 0.10938l-7.2656 8.4531h7.2656c1.4375 0 2.707-0.058594 3.8125-0.17188 1.1133-0.11719 2.1719-0.41406 3.1719-0.89062 1.0078-0.48047 1.707-1.2148 2.0938-2.2031h0.40625l-1.7031 4.5z"/>
|
|
369
|
+
</symbol>
|
|
370
|
+
<symbol id="dc" overflow="visible">
|
|
371
|
+
<path d="m2.5781-6.8281-1.4375 5.7812c-0.042969 0.15625-0.0625 0.32031-0.0625 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47656-0.28516 0.65625-0.85938 0.03125-0.10156 0.066406-0.22656 0.10938-0.375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21094-0.125 0.28125-0.16797 0.375-0.41797 0.5625-0.75 0.5625-0.34375 0-0.60547-0.14062-0.78125-0.42188-0.085938-0.14453-0.125-0.3125-0.125-0.5 0-0.10156 0.015625-0.21875 0.046875-0.34375l1.2656-5 0.03125-0.1875c0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.19922-0.03125-0.34375-0.03125-0.15625 0-0.24219-0.035156-0.25-0.10938 0-0.125 0.0625-0.19531 0.1875-0.21875l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938z"/>
|
|
372
|
+
</symbol>
|
|
373
|
+
<symbol id="db" overflow="visible">
|
|
374
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
375
|
+
</symbol>
|
|
376
|
+
<symbol id="da" overflow="visible">
|
|
377
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
378
|
+
</symbol>
|
|
379
|
+
<symbol id="cz" overflow="visible">
|
|
380
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
381
|
+
</symbol>
|
|
382
|
+
<symbol id="cy" overflow="visible">
|
|
383
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
384
|
+
</symbol>
|
|
385
|
+
<symbol id="cx" overflow="visible">
|
|
386
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
387
|
+
</symbol>
|
|
388
|
+
<symbol id="cw" overflow="visible">
|
|
389
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
390
|
+
</symbol>
|
|
391
|
+
<symbol id="cv" overflow="visible">
|
|
392
|
+
<path d="m2.5781-6.8281-1.4375 5.7812c-0.042969 0.15625-0.0625 0.32031-0.0625 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47656-0.28516 0.65625-0.85938 0.03125-0.10156 0.066406-0.22656 0.10938-0.375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21094-0.125 0.28125-0.16797 0.375-0.41797 0.5625-0.75 0.5625-0.34375 0-0.60547-0.14062-0.78125-0.42188-0.085938-0.14453-0.125-0.3125-0.125-0.5 0-0.10156 0.015625-0.21875 0.046875-0.34375l1.2656-5 0.03125-0.1875c0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.19922-0.03125-0.34375-0.03125-0.15625 0-0.24219-0.035156-0.25-0.10938 0-0.125 0.0625-0.19531 0.1875-0.21875l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938z"/>
|
|
393
|
+
</symbol>
|
|
394
|
+
<symbol id="cu" overflow="visible">
|
|
395
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
396
|
+
</symbol>
|
|
397
|
+
<symbol id="ct" overflow="visible">
|
|
398
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
399
|
+
</symbol>
|
|
400
|
+
<symbol id="cs" overflow="visible">
|
|
401
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
402
|
+
</symbol>
|
|
403
|
+
<symbol id="cr" overflow="visible">
|
|
404
|
+
<path d="m3.6094-9.5625-2.0156 8.0938c-0.054688 0.21875-0.078125 0.44531-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.36328 0 0.66406-0.39844 0.90625-1.2031 0.039062-0.13281 0.09375-0.3125 0.15625-0.53125 0.070312-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085937 0.46094-0.25 0.96875-0.054687 0.15625-0.10938 0.29297-0.17188 0.40625-0.24219 0.52344-0.58984 0.78125-1.0469 0.78125-0.49219 0-0.85547-0.19531-1.0938-0.59375-0.125-0.19531-0.1875-0.42969-0.1875-0.70312 0-0.14453 0.023437-0.30078 0.078125-0.46875l1.7656-7 0.03125-0.28125c0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.27734-0.03125-0.48438-0.03125-0.21875 0-0.33984-0.050781-0.35938-0.15625 0-0.16406 0.085937-0.26562 0.26562-0.29688l1.7188-0.14062c0.11328 0 0.17188 0.054688 0.17188 0.15625z"/>
|
|
405
|
+
</symbol>
|
|
406
|
+
<symbol id="cq" overflow="visible">
|
|
407
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
408
|
+
</symbol>
|
|
409
|
+
<symbol id="cp" overflow="visible">
|
|
410
|
+
<path d="m0.45312 1.2188 1.1094-4.4531c0.050781-0.19531 0.078125-0.36328 0.078125-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023438 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.125 0.22656-0.15625 0.23438-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.11328 0.054688-0.33594 0.17188-0.67188 0.050781-0.125 0.097656-0.22266 0.14062-0.29688 0.15625-0.33203 0.35156-0.51953 0.59375-0.5625 0.050781-0.007812 0.097656-0.015625 0.14062-0.015625 0.36328 0 0.62891 0.14844 0.79688 0.4375v0.015625c0.050781 0.085938 0.085938 0.18359 0.10938 0.29688 0.41406-0.5 0.84766-0.75 1.2969-0.75 0.47656 0 0.84375 0.21484 1.0938 0.64062 0.14453 0.30469 0.22656 0.625 0.25 0.96875 0 0.71875-0.25781 1.3867-0.76562 2-0.46094 0.55469-0.96484 0.85156-1.5156 0.90625-0.042969 0.007812-0.089844 0.015625-0.14062 0.015625-0.41797 0-0.72656-0.21094-0.92188-0.64062-0.24219 0.88281-0.39844 1.5312-0.46875 1.9375-0.011719 0.03125-0.015625 0.050781-0.015625 0.0625 0 0.070312 0.039063 0.11719 0.125 0.14062h0.015625c0.082031 0.007813 0.20312 0.015625 0.35938 0.015625 0.14453 0 0.22266 0.035156 0.23438 0.10938 0 0.13281-0.058594 0.20312-0.17188 0.20312l-0.98438-0.03125-0.82812 0.03125h-0.015625c-0.082031 0-0.125-0.042969-0.125-0.125 0.03125-0.11719 0.10547-0.17969 0.21875-0.1875 0.25 0 0.39844-0.042969 0.45312-0.125l0.015625-0.015625c0.007812-0.023437 0.019531-0.058594 0.03125-0.10938 0.007812-0.03125 0.023438-0.085938 0.046875-0.15625zm1.75-4.3438-0.48438 1.9688c-0.023438 0.074219-0.03125 0.125-0.03125 0.15625 0 0.15625 0.0625 0.32812 0.1875 0.51562 0.070312 0.125 0.16406 0.22656 0.28125 0.29688 0.09375 0.054688 0.20312 0.078125 0.32812 0.078125 0.33203 0 0.64844-0.21094 0.95312-0.64062 0.082031-0.125 0.16016-0.25391 0.23438-0.39062 0.17578-0.375 0.32812-0.89062 0.45312-1.5469 0.039062-0.22656 0.0625-0.42188 0.0625-0.57812 0-0.51953-0.16406-0.82812-0.48438-0.92188-0.054687-0.007812-0.10547-0.015625-0.15625-0.015625-0.26172 0-0.53125 0.13281-0.8125 0.39062-0.29297 0.24219-0.46875 0.46875-0.53125 0.6875z"/>
|
|
411
|
+
</symbol>
|
|
412
|
+
<symbol id="cn" overflow="visible">
|
|
413
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
414
|
+
</symbol>
|
|
415
|
+
<symbol id="cm" overflow="visible">
|
|
416
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
417
|
+
</symbol>
|
|
418
|
+
<symbol id="cl" overflow="visible">
|
|
419
|
+
<path d="m0.92188 19.594c-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.015625-0.078125 0.046875-0.10938l7.3906-8.6094-7.3906-10.125c-0.03125-0.023437-0.046875-0.042969-0.046875-0.0625v-0.42188c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h16.797l1.7031 3.9375h-0.40625c-0.4375-1-1.168-1.7422-2.1875-2.2188-1.0117-0.48047-2.0703-0.77734-3.1719-0.89062-1.1055-0.10547-2.3906-0.15625-3.8594-0.15625h-6.4688l6.6094 9.0312c0.019531 0.03125 0.03125 0.0625 0.03125 0.09375s-0.011719 0.066406-0.03125 0.10938l-7.2656 8.4531h7.2656c1.4375 0 2.707-0.058594 3.8125-0.17188 1.1133-0.11719 2.1719-0.41406 3.1719-0.89062 1.0078-0.48047 1.707-1.2148 2.0938-2.2031h0.40625l-1.7031 4.5z"/>
|
|
420
|
+
</symbol>
|
|
421
|
+
<symbol id="ck" overflow="visible">
|
|
422
|
+
<path d="m2.5781-6.8281-1.4375 5.7812c-0.042969 0.15625-0.0625 0.32031-0.0625 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47656-0.28516 0.65625-0.85938 0.03125-0.10156 0.066406-0.22656 0.10938-0.375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21094-0.125 0.28125-0.16797 0.375-0.41797 0.5625-0.75 0.5625-0.34375 0-0.60547-0.14062-0.78125-0.42188-0.085938-0.14453-0.125-0.3125-0.125-0.5 0-0.10156 0.015625-0.21875 0.046875-0.34375l1.2656-5 0.03125-0.1875c0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.19922-0.03125-0.34375-0.03125-0.15625 0-0.24219-0.035156-0.25-0.10938 0-0.125 0.0625-0.19531 0.1875-0.21875l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938z"/>
|
|
423
|
+
</symbol>
|
|
424
|
+
<symbol id="cj" overflow="visible">
|
|
425
|
+
<path d="m2.0625-4.4844v3.9375c0 0.13672 0.023438 0.22656 0.078125 0.26562 0.082031 0.042969 0.26953 0.0625 0.5625 0.0625h0.23438v0.21875c-0.16797-0.0078125-0.54688-0.015625-1.1406-0.015625s-0.96875 0.0078125-1.125 0.015625v-0.21875h0.21875c0.35156 0 0.55469-0.039062 0.60938-0.125h0.015625c0.019531-0.039062 0.03125-0.10938 0.03125-0.20312v-3.625c-0.25 0.11719-0.55859 0.17188-0.92188 0.17188v-0.21875c0.5625 0 0.98438-0.14453 1.2656-0.4375 0.09375 0 0.14453 0.015625 0.15625 0.046875 0.007813 0.023437 0.015625 0.0625 0.015625 0.125z"/>
|
|
426
|
+
</symbol>
|
|
427
|
+
<symbol id="ci" overflow="visible">
|
|
428
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
429
|
+
</symbol>
|
|
430
|
+
<symbol id="ch" overflow="visible">
|
|
431
|
+
<path d="m1.9219-0.53125c0 0.21875-0.10156 0.38281-0.29688 0.48438-0.074219 0.03125-0.15234 0.046875-0.23438 0.046875-0.21875 0-0.38281-0.097656-0.48438-0.29688-0.03125-0.070313-0.046875-0.14844-0.046875-0.23438 0-0.21875 0.097656-0.37891 0.29688-0.48438 0.070312-0.03125 0.14844-0.046875 0.23438-0.046875 0.21875 0 0.37891 0.10156 0.48438 0.29688 0.03125 0.074219 0.046875 0.15234 0.046875 0.23438z"/>
|
|
432
|
+
</symbol>
|
|
433
|
+
<symbol id="cg" overflow="visible">
|
|
434
|
+
<path d="m1.9219-0.53125c0 0.21875-0.10156 0.38281-0.29688 0.48438-0.074219 0.03125-0.15234 0.046875-0.23438 0.046875-0.21875 0-0.38281-0.097656-0.48438-0.29688-0.03125-0.070313-0.046875-0.14844-0.046875-0.23438 0-0.21875 0.097656-0.37891 0.29688-0.48438 0.070312-0.03125 0.14844-0.046875 0.23438-0.046875 0.21875 0 0.37891 0.10156 0.48438 0.29688 0.03125 0.074219 0.046875 0.15234 0.046875 0.23438z"/>
|
|
435
|
+
</symbol>
|
|
436
|
+
<symbol id="cf" overflow="visible">
|
|
437
|
+
<path d="m1.9219-0.53125c0 0.21875-0.10156 0.38281-0.29688 0.48438-0.074219 0.03125-0.15234 0.046875-0.23438 0.046875-0.21875 0-0.38281-0.097656-0.48438-0.29688-0.03125-0.070313-0.046875-0.14844-0.046875-0.23438 0-0.21875 0.097656-0.37891 0.29688-0.48438 0.070312-0.03125 0.14844-0.046875 0.23438-0.046875 0.21875 0 0.37891 0.10156 0.48438 0.29688 0.03125 0.074219 0.046875 0.15234 0.046875 0.23438z"/>
|
|
438
|
+
</symbol>
|
|
439
|
+
<symbol id="ce" overflow="visible">
|
|
440
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
441
|
+
</symbol>
|
|
442
|
+
<symbol id="bu" overflow="visible">
|
|
443
|
+
<path d="m2.5781-6.8281-1.4375 5.7812c-0.042969 0.15625-0.0625 0.32031-0.0625 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47656-0.28516 0.65625-0.85938 0.03125-0.10156 0.066406-0.22656 0.10938-0.375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21094-0.125 0.28125-0.16797 0.375-0.41797 0.5625-0.75 0.5625-0.34375 0-0.60547-0.14062-0.78125-0.42188-0.085938-0.14453-0.125-0.3125-0.125-0.5 0-0.10156 0.015625-0.21875 0.046875-0.34375l1.2656-5 0.03125-0.1875c0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.19922-0.03125-0.34375-0.03125-0.15625 0-0.24219-0.035156-0.25-0.10938 0-0.125 0.0625-0.19531 0.1875-0.21875l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938z"/>
|
|
444
|
+
</symbol>
|
|
445
|
+
<symbol id="bt" overflow="visible">
|
|
446
|
+
<path d="m0.3125 0.85938 0.78125-3.125c0.03125-0.13281 0.046875-0.25391 0.046875-0.35938 0-0.20703-0.070313-0.3125-0.20312-0.3125-0.19922 0-0.35547 0.21875-0.46875 0.65625-0.023438 0.054688-0.039062 0.10938-0.046875 0.17188-0.054687 0.10547-0.09375 0.15625-0.125 0.15625-0.054687 0-0.078125-0.019531-0.078125-0.0625 0-0.070313 0.039062-0.22656 0.125-0.46875 0.03125-0.082031 0.0625-0.14844 0.09375-0.20312 0.11328-0.22656 0.25391-0.36328 0.42188-0.40625h0.09375c0.25 0 0.42969 0.10547 0.54688 0.3125 0.039062 0.0625 0.066406 0.13672 0.078125 0.21875 0.28906-0.35156 0.59766-0.53125 0.92188-0.53125 0.33203 0 0.58594 0.15234 0.76562 0.45312 0.10156 0.21094 0.16016 0.43359 0.17188 0.67188 0 0.5-0.18359 0.96484-0.54688 1.3906-0.3125 0.39844-0.66406 0.60938-1.0469 0.64062-0.03125 0.0078125-0.0625 0.015625-0.09375 0.015625-0.30469 0-0.52344-0.14844-0.65625-0.45312-0.16797 0.61328-0.27734 1.0664-0.32812 1.3594-0.011719 0.019531-0.015625 0.035156-0.015625 0.046875 0 0.050781 0.03125 0.082031 0.09375 0.09375h0.015625c0.050781 0.007812 0.13281 0.015625 0.25 0.015625 0.10156 0 0.16016 0.023437 0.17188 0.078125 0 0.09375-0.046875 0.14062-0.14062 0.14062l-0.67188-0.015625h-0.015625l-0.57812 0.015625h-0.015625c-0.050781 0-0.078125-0.027344-0.078125-0.078125 0.023438-0.09375 0.074219-0.14062 0.15625-0.14062 0.17578 0 0.28125-0.03125 0.3125-0.09375h0.015625c0-0.023437 0.003906-0.046875 0.015625-0.078125 0.007812-0.023438 0.019531-0.058594 0.03125-0.10938zm1.2344-3.0469-0.34375 1.375c-0.011719 0.054688-0.015625 0.089844-0.015625 0.10938 0 0.11719 0.039062 0.23438 0.125 0.35938 0.050781 0.09375 0.11328 0.16406 0.1875 0.20312 0.070312 0.042969 0.14844 0.0625 0.23438 0.0625 0.23828 0 0.46094-0.14844 0.67188-0.45312 0.0625-0.082031 0.11328-0.17188 0.15625-0.26562 0.13281-0.26953 0.24219-0.62891 0.32812-1.0781 0.019531-0.16406 0.03125-0.30078 0.03125-0.40625 0-0.36328-0.10938-0.57812-0.32812-0.64062-0.042969-0.007813-0.078125-0.015625-0.10938-0.015625-0.17969 0-0.37109 0.089844-0.57812 0.26562-0.19922 0.16797-0.32031 0.32812-0.35938 0.48438z"/>
|
|
447
|
+
</symbol>
|
|
448
|
+
<symbol id="bs" overflow="visible">
|
|
449
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
450
|
+
</symbol>
|
|
451
|
+
<symbol id="br" overflow="visible">
|
|
452
|
+
<path d="m2.5781-6.8281-1.4375 5.7812c-0.042969 0.15625-0.0625 0.32031-0.0625 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47656-0.28516 0.65625-0.85938 0.03125-0.10156 0.066406-0.22656 0.10938-0.375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21094-0.125 0.28125-0.16797 0.375-0.41797 0.5625-0.75 0.5625-0.34375 0-0.60547-0.14062-0.78125-0.42188-0.085938-0.14453-0.125-0.3125-0.125-0.5 0-0.10156 0.015625-0.21875 0.046875-0.34375l1.2656-5 0.03125-0.1875c0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.19922-0.03125-0.34375-0.03125-0.15625 0-0.24219-0.035156-0.25-0.10938 0-0.125 0.0625-0.19531 0.1875-0.21875l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938z"/>
|
|
453
|
+
</symbol>
|
|
454
|
+
<symbol id="bq" overflow="visible">
|
|
455
|
+
<path d="m0.45312 1.2188 1.1094-4.4531c0.050781-0.19531 0.078125-0.36328 0.078125-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023438 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.125 0.22656-0.15625 0.23438-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.11328 0.054688-0.33594 0.17188-0.67188 0.050781-0.125 0.097656-0.22266 0.14062-0.29688 0.15625-0.33203 0.35156-0.51953 0.59375-0.5625 0.050781-0.007812 0.097656-0.015625 0.14062-0.015625 0.36328 0 0.62891 0.14844 0.79688 0.4375v0.015625c0.050781 0.085938 0.085938 0.18359 0.10938 0.29688 0.41406-0.5 0.84766-0.75 1.2969-0.75 0.47656 0 0.84375 0.21484 1.0938 0.64062 0.14453 0.30469 0.22656 0.625 0.25 0.96875 0 0.71875-0.25781 1.3867-0.76562 2-0.46094 0.55469-0.96484 0.85156-1.5156 0.90625-0.042969 0.007812-0.089844 0.015625-0.14062 0.015625-0.41797 0-0.72656-0.21094-0.92188-0.64062-0.24219 0.88281-0.39844 1.5312-0.46875 1.9375-0.011719 0.03125-0.015625 0.050781-0.015625 0.0625 0 0.070312 0.039063 0.11719 0.125 0.14062h0.015625c0.082031 0.007813 0.20312 0.015625 0.35938 0.015625 0.14453 0 0.22266 0.035156 0.23438 0.10938 0 0.13281-0.058594 0.20312-0.17188 0.20312l-0.98438-0.03125-0.82812 0.03125h-0.015625c-0.082031 0-0.125-0.042969-0.125-0.125 0.03125-0.11719 0.10547-0.17969 0.21875-0.1875 0.25 0 0.39844-0.042969 0.45312-0.125l0.015625-0.015625c0.007812-0.023437 0.019531-0.058594 0.03125-0.10938 0.007812-0.03125 0.023438-0.085938 0.046875-0.15625zm1.75-4.3438-0.48438 1.9688c-0.023438 0.074219-0.03125 0.125-0.03125 0.15625 0 0.15625 0.0625 0.32812 0.1875 0.51562 0.070312 0.125 0.16406 0.22656 0.28125 0.29688 0.09375 0.054688 0.20312 0.078125 0.32812 0.078125 0.33203 0 0.64844-0.21094 0.95312-0.64062 0.082031-0.125 0.16016-0.25391 0.23438-0.39062 0.17578-0.375 0.32812-0.89062 0.45312-1.5469 0.039062-0.22656 0.0625-0.42188 0.0625-0.57812 0-0.51953-0.16406-0.82812-0.48438-0.92188-0.054687-0.007812-0.10547-0.015625-0.15625-0.015625-0.26172 0-0.53125 0.13281-0.8125 0.39062-0.29297 0.24219-0.46875 0.46875-0.53125 0.6875z"/>
|
|
456
|
+
</symbol>
|
|
457
|
+
<symbol id="bp" overflow="visible">
|
|
458
|
+
<path d="m0.78125 19.594v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-15.297c0-0.92969-0.76562-1.3906-2.2969-1.3906v-0.76562h16.312v0.76562c-1.5312 0-2.2969 0.46094-2.2969 1.3906v15.297c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75h-6.7969v-0.75c1.5312 0 2.2969-0.46484 2.2969-1.3906v-16.688h-7.3125v16.688c0 0.92578 0.76562 1.3906 2.2969 1.3906v0.75z"/>
|
|
459
|
+
</symbol>
|
|
460
|
+
<symbol id="bo" overflow="visible">
|
|
461
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
462
|
+
</symbol>
|
|
463
|
+
<symbol id="bn" overflow="visible">
|
|
464
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
465
|
+
</symbol>
|
|
466
|
+
<symbol id="bm" overflow="visible">
|
|
467
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
468
|
+
</symbol>
|
|
469
|
+
<symbol id="bl" overflow="visible">
|
|
470
|
+
<path d="m9.2656 33c-1.1484-1.0234-2.1328-2.1836-2.9531-3.4844-0.8125-1.293-1.4688-2.6641-1.9688-4.1094-0.5-1.4375-0.86719-2.9336-1.0938-4.4844-0.23047-1.543-0.34375-3.1016-0.34375-4.6719 0-1.5938 0.11328-3.168 0.34375-4.7188 0.22656-1.543 0.58594-3.0391 1.0781-4.4844 0.5-1.4375 1.1602-2.8086 1.9844-4.1094 0.82031-1.3047 1.8047-2.4609 2.9531-3.4688 0-0.019531 0.023437-0.03125 0.078125-0.03125h0.35938c0.019531 0 0.039063 0.015625 0.0625 0.046875 0.03125 0.023437 0.046875 0.046875 0.046875 0.078125 0 0.042969-0.007812 0.074219-0.015625 0.09375-1.0742 1.0508-1.9805 2.2188-2.7188 3.5-0.73047 1.2891-1.3125 2.6484-1.75 4.0781-0.42969 1.4258-0.73438 2.8906-0.92188 4.3906-0.1875 1.5078-0.28125 3.0508-0.28125 4.625 0 1.5625 0.085938 3.082 0.26562 4.5625 0.1875 1.4766 0.5 2.9414 0.9375 4.3906 0.4375 1.4453 1.0234 2.8125 1.7656 4.0938 0.73828 1.2891 1.6406 2.4609 2.7031 3.5156 0.007813 0.019531 0.015625 0.050781 0.015625 0.09375 0 0.019531-0.015625 0.046875-0.046875 0.078125-0.023437 0.03125-0.042969 0.046875-0.0625 0.046875h-0.35938c-0.054688 0-0.078125-0.011719-0.078125-0.03125z"/>
|
|
471
|
+
</symbol>
|
|
472
|
+
<symbol id="bj" overflow="visible">
|
|
473
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
474
|
+
</symbol>
|
|
475
|
+
<symbol id="bi" overflow="visible">
|
|
476
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
477
|
+
</symbol>
|
|
478
|
+
<symbol id="bh" overflow="visible">
|
|
479
|
+
<path d="m3.6094-9.5625-2.0156 8.0938c-0.054688 0.21875-0.078125 0.44531-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.36328 0 0.66406-0.39844 0.90625-1.2031 0.039062-0.13281 0.09375-0.3125 0.15625-0.53125 0.070312-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085937 0.46094-0.25 0.96875-0.054687 0.15625-0.10938 0.29297-0.17188 0.40625-0.24219 0.52344-0.58984 0.78125-1.0469 0.78125-0.49219 0-0.85547-0.19531-1.0938-0.59375-0.125-0.19531-0.1875-0.42969-0.1875-0.70312 0-0.14453 0.023437-0.30078 0.078125-0.46875l1.7656-7 0.03125-0.28125c0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.27734-0.03125-0.48438-0.03125-0.21875 0-0.33984-0.050781-0.35938-0.15625 0-0.16406 0.085937-0.26562 0.26562-0.29688l1.7188-0.14062c0.11328 0 0.17188 0.054688 0.17188 0.15625z"/>
|
|
480
|
+
</symbol>
|
|
481
|
+
<symbol id="bg" overflow="visible">
|
|
482
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
483
|
+
</symbol>
|
|
484
|
+
<symbol id="bf" overflow="visible">
|
|
485
|
+
<path d="m0.60938 33.031c-0.085937 0-0.125-0.042969-0.125-0.125 0-0.042969 0.003906-0.074219 0.015625-0.09375 1.0703-1.0547 1.9727-2.2266 2.7031-3.5156 0.73828-1.293 1.3203-2.6523 1.75-4.0781 0.4375-1.418 0.74219-2.8711 0.92188-4.3594 0.1875-1.4922 0.28125-3.0312 0.28125-4.625 0-1.625-0.09375-3.1797-0.28125-4.6562-0.17969-1.4688-0.48047-2.9141-0.90625-4.3281-0.42969-1.418-1.0156-2.7773-1.7656-4.0781-0.74219-1.3047-1.6406-2.4766-2.7031-3.5156-0.011719-0.019531-0.015625-0.050781-0.015625-0.09375 0-0.082031 0.039063-0.125 0.125-0.125h0.35938c0.03125 0 0.054688 0.011719 0.078125 0.03125 1.1445 1.0195 2.1289 2.1797 2.9531 3.4844 0.82031 1.3008 1.4766 2.6719 1.9688 4.1094 0.48828 1.4453 0.84375 2.9414 1.0625 4.4844 0.22656 1.5391 0.34375 3.1094 0.34375 4.7031 0 1.5703-0.11719 3.125-0.34375 4.6562-0.21875 1.5391-0.57422 3.0352-1.0625 4.4844-0.49219 1.4453-1.1484 2.8203-1.9688 4.125-0.82422 1.3008-1.8086 2.4609-2.9531 3.4844-0.023437 0.019531-0.046875 0.03125-0.078125 0.03125z"/>
|
|
486
|
+
</symbol>
|
|
487
|
+
<symbol id="be" overflow="visible">
|
|
488
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
489
|
+
</symbol>
|
|
490
|
+
<symbol id="u" overflow="visible">
|
|
491
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
492
|
+
</symbol>
|
|
493
|
+
<symbol id="bd" overflow="visible">
|
|
494
|
+
<path d="m3.5625 3.5h-1.9062v-14h1.9062v0.5625h-1.3438v12.875h1.3438z"/>
|
|
495
|
+
</symbol>
|
|
496
|
+
<symbol id="t" overflow="visible">
|
|
497
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
498
|
+
</symbol>
|
|
499
|
+
<symbol id="bc" overflow="visible">
|
|
500
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
501
|
+
</symbol>
|
|
502
|
+
<symbol id="s" overflow="visible">
|
|
503
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
504
|
+
</symbol>
|
|
505
|
+
<symbol id="bb" overflow="visible">
|
|
506
|
+
<path d="m3.6094-9.5625-2.0156 8.0938c-0.054688 0.21875-0.078125 0.44531-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.36328 0 0.66406-0.39844 0.90625-1.2031 0.039062-0.13281 0.09375-0.3125 0.15625-0.53125 0.070312-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085937 0.46094-0.25 0.96875-0.054687 0.15625-0.10938 0.29297-0.17188 0.40625-0.24219 0.52344-0.58984 0.78125-1.0469 0.78125-0.49219 0-0.85547-0.19531-1.0938-0.59375-0.125-0.19531-0.1875-0.42969-0.1875-0.70312 0-0.14453 0.023437-0.30078 0.078125-0.46875l1.7656-7 0.03125-0.28125c0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.27734-0.03125-0.48438-0.03125-0.21875 0-0.33984-0.050781-0.35938-0.15625 0-0.16406 0.085937-0.26562 0.26562-0.29688l1.7188-0.14062c0.11328 0 0.17188 0.054688 0.17188 0.15625z"/>
|
|
507
|
+
</symbol>
|
|
508
|
+
<symbol id="ba" overflow="visible">
|
|
509
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
510
|
+
</symbol>
|
|
511
|
+
<symbol id="az" overflow="visible">
|
|
512
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
513
|
+
</symbol>
|
|
514
|
+
<symbol id="aw" overflow="visible">
|
|
515
|
+
<path d="m3.6094-9.5625-2.0156 8.0938c-0.054688 0.21875-0.078125 0.44531-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.36328 0 0.66406-0.39844 0.90625-1.2031 0.039062-0.13281 0.09375-0.3125 0.15625-0.53125 0.070312-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085937 0.46094-0.25 0.96875-0.054687 0.15625-0.10938 0.29297-0.17188 0.40625-0.24219 0.52344-0.58984 0.78125-1.0469 0.78125-0.49219 0-0.85547-0.19531-1.0938-0.59375-0.125-0.19531-0.1875-0.42969-0.1875-0.70312 0-0.14453 0.023437-0.30078 0.078125-0.46875l1.7656-7 0.03125-0.28125c0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.27734-0.03125-0.48438-0.03125-0.21875 0-0.33984-0.050781-0.35938-0.15625 0-0.16406 0.085937-0.26562 0.26562-0.29688l1.7188-0.14062c0.11328 0 0.17188 0.054688 0.17188 0.15625z"/>
|
|
516
|
+
</symbol>
|
|
517
|
+
<symbol id="av" overflow="visible">
|
|
518
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
519
|
+
</symbol>
|
|
520
|
+
<symbol id="au" overflow="visible">
|
|
521
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
522
|
+
</symbol>
|
|
523
|
+
<symbol id="at" overflow="visible">
|
|
524
|
+
<path d="m2.2188-10.5v14h-1.9062v-0.5625h1.3594v-12.875h-1.3594v-0.5625z"/>
|
|
525
|
+
</symbol>
|
|
526
|
+
<symbol id="as" overflow="visible">
|
|
527
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
528
|
+
</symbol>
|
|
529
|
+
<symbol id="ar" overflow="visible">
|
|
530
|
+
<path d="m1.9844-4.375c0 0.14844-0.074219 0.25781-0.21875 0.32812-0.054687 0.03125-0.10547 0.046875-0.15625 0.046875-0.13672 0-0.21875-0.0625-0.25-0.1875-0.011719-0.03125-0.015625-0.050781-0.015625-0.0625 0-0.13281 0.066406-0.24219 0.20312-0.32812 0.0625-0.03125 0.125-0.046875 0.1875-0.046875 0.13281 0 0.21875 0.0625 0.25 0.1875v0.0625zm-0.53125 2.625-0.26562 0.73438c-0.13672 0.38672-0.20312 0.62109-0.20312 0.70312 0 0.15625 0.050781 0.23438 0.15625 0.23438 0.30078 0 0.53125-0.25781 0.6875-0.78125l0.03125-0.078125c0.019531-0.082031 0.046875-0.125 0.078125-0.125v-0.015625h0.03125c0.050781 0 0.078125 0.027344 0.078125 0.078125 0 0.085938-0.054687 0.23438-0.15625 0.45312-0.19922 0.41797-0.44922 0.625-0.75 0.625-0.25 0-0.42969-0.10156-0.53125-0.3125-0.03125-0.082031-0.046875-0.17188-0.046875-0.26562s0.050781-0.28125 0.15625-0.5625c0.33203-0.875 0.49219-1.3047 0.48438-1.2969 0.050781-0.125 0.078125-0.24219 0.078125-0.35938 0-0.14453-0.058594-0.21875-0.17188-0.21875-0.26172 0-0.47656 0.21484-0.64062 0.64062-0.023438 0.074219-0.042969 0.14844-0.0625 0.21875-0.054688 0.085937-0.09375 0.125-0.125 0.125-0.054688 0-0.078125-0.019531-0.078125-0.0625 0-0.082031 0.050781-0.22656 0.15625-0.4375 0.19531-0.42578 0.45312-0.64062 0.76562-0.64062 0.25 0 0.42188 0.10547 0.51562 0.3125 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562s-0.03125 0.21484-0.09375 0.35938c-0.085937 0.21875-0.13672 0.35547-0.15625 0.40625z"/>
|
|
531
|
+
</symbol>
|
|
532
|
+
<symbol id="aq" overflow="visible">
|
|
533
|
+
<path d="m6.6094-2.2969h-5.4531c-0.21094 0-0.32031-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.4531c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
534
|
+
</symbol>
|
|
535
|
+
<symbol id="ap" overflow="visible">
|
|
536
|
+
<path d="m2.5781-6.8281-1.4375 5.7812c-0.042969 0.15625-0.0625 0.32031-0.0625 0.48438 0 0.30469 0.097656 0.45312 0.29688 0.45312 0.25781 0 0.47656-0.28516 0.65625-0.85938 0.03125-0.10156 0.066406-0.22656 0.10938-0.375 0.050781-0.11328 0.097656-0.17578 0.14062-0.1875 0.082031 0 0.125 0.03125 0.125 0.09375 0 0.10547-0.0625 0.33984-0.1875 0.70312-0.042969 0.11719-0.085938 0.21094-0.125 0.28125-0.16797 0.375-0.41797 0.5625-0.75 0.5625-0.34375 0-0.60547-0.14062-0.78125-0.42188-0.085938-0.14453-0.125-0.3125-0.125-0.5 0-0.10156 0.015625-0.21875 0.046875-0.34375l1.2656-5 0.03125-0.1875c0-0.070312-0.046875-0.11719-0.14062-0.14062-0.085937-0.019531-0.19922-0.03125-0.34375-0.03125-0.15625 0-0.24219-0.035156-0.25-0.10938 0-0.125 0.0625-0.19531 0.1875-0.21875l1.2188-0.09375c0.082031 0 0.125 0.039062 0.125 0.10938z"/>
|
|
537
|
+
</symbol>
|
|
538
|
+
<symbol id="ao" overflow="visible">
|
|
539
|
+
<path d="m1.9844-4.375c0 0.14844-0.074219 0.25781-0.21875 0.32812-0.054687 0.03125-0.10547 0.046875-0.15625 0.046875-0.13672 0-0.21875-0.0625-0.25-0.1875-0.011719-0.03125-0.015625-0.050781-0.015625-0.0625 0-0.13281 0.066406-0.24219 0.20312-0.32812 0.0625-0.03125 0.125-0.046875 0.1875-0.046875 0.13281 0 0.21875 0.0625 0.25 0.1875v0.0625zm-0.53125 2.625-0.26562 0.73438c-0.13672 0.38672-0.20312 0.62109-0.20312 0.70312 0 0.15625 0.050781 0.23438 0.15625 0.23438 0.30078 0 0.53125-0.25781 0.6875-0.78125l0.03125-0.078125c0.019531-0.082031 0.046875-0.125 0.078125-0.125v-0.015625h0.03125c0.050781 0 0.078125 0.027344 0.078125 0.078125 0 0.085938-0.054687 0.23438-0.15625 0.45312-0.19922 0.41797-0.44922 0.625-0.75 0.625-0.25 0-0.42969-0.10156-0.53125-0.3125-0.03125-0.082031-0.046875-0.17188-0.046875-0.26562s0.050781-0.28125 0.15625-0.5625c0.33203-0.875 0.49219-1.3047 0.48438-1.2969 0.050781-0.125 0.078125-0.24219 0.078125-0.35938 0-0.14453-0.058594-0.21875-0.17188-0.21875-0.26172 0-0.47656 0.21484-0.64062 0.64062-0.023438 0.074219-0.042969 0.14844-0.0625 0.21875-0.054688 0.085937-0.09375 0.125-0.125 0.125-0.054688 0-0.078125-0.019531-0.078125-0.0625 0-0.082031 0.050781-0.22656 0.15625-0.4375 0.19531-0.42578 0.45312-0.64062 0.76562-0.64062 0.25 0 0.42188 0.10547 0.51562 0.3125 0.039063 0.085938 0.0625 0.17188 0.0625 0.26562s-0.03125 0.21484-0.09375 0.35938c-0.085937 0.21875-0.13672 0.35547-0.15625 0.40625z"/>
|
|
540
|
+
</symbol>
|
|
541
|
+
<symbol id="an" overflow="visible">
|
|
542
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
543
|
+
</symbol>
|
|
544
|
+
<symbol id="am" overflow="visible">
|
|
545
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
546
|
+
</symbol>
|
|
547
|
+
<symbol id="al" overflow="visible">
|
|
548
|
+
<path d="m3.1719 24.625v-25.188h3.1719v0.67188h-2.5156v23.844h2.5156v0.67188z"/>
|
|
549
|
+
</symbol>
|
|
550
|
+
<symbol id="im" overflow="visible">
|
|
551
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
552
|
+
</symbol>
|
|
553
|
+
<symbol id="il" overflow="visible">
|
|
554
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
555
|
+
</symbol>
|
|
556
|
+
<symbol id="ik" overflow="visible">
|
|
557
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
558
|
+
</symbol>
|
|
559
|
+
<symbol id="ij" overflow="visible">
|
|
560
|
+
<path d="m3.6094-9.5625-2.0156 8.0938c-0.054688 0.21875-0.078125 0.44531-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.36328 0 0.66406-0.39844 0.90625-1.2031 0.039062-0.13281 0.09375-0.3125 0.15625-0.53125 0.070312-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085937 0.46094-0.25 0.96875-0.054687 0.15625-0.10938 0.29297-0.17188 0.40625-0.24219 0.52344-0.58984 0.78125-1.0469 0.78125-0.49219 0-0.85547-0.19531-1.0938-0.59375-0.125-0.19531-0.1875-0.42969-0.1875-0.70312 0-0.14453 0.023437-0.30078 0.078125-0.46875l1.7656-7 0.03125-0.28125c0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.27734-0.03125-0.48438-0.03125-0.21875 0-0.33984-0.050781-0.35938-0.15625 0-0.16406 0.085937-0.26562 0.26562-0.29688l1.7188-0.14062c0.11328 0 0.17188 0.054688 0.17188 0.15625z"/>
|
|
561
|
+
</symbol>
|
|
562
|
+
<symbol id="ii" overflow="visible">
|
|
563
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
564
|
+
</symbol>
|
|
565
|
+
<symbol id="ih" overflow="visible">
|
|
566
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
567
|
+
</symbol>
|
|
568
|
+
<symbol id="ig" overflow="visible">
|
|
569
|
+
<path d="m0.45312 1.2188 1.1094-4.4531c0.050781-0.19531 0.078125-0.36328 0.078125-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023438 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.125 0.22656-0.15625 0.23438-0.085938 0-0.125-0.03125-0.125-0.09375 0-0.11328 0.054688-0.33594 0.17188-0.67188 0.050781-0.125 0.097656-0.22266 0.14062-0.29688 0.15625-0.33203 0.35156-0.51953 0.59375-0.5625 0.050781-0.007812 0.097656-0.015625 0.14062-0.015625 0.36328 0 0.62891 0.14844 0.79688 0.4375v0.015625c0.050781 0.085938 0.085938 0.18359 0.10938 0.29688 0.41406-0.5 0.84766-0.75 1.2969-0.75 0.47656 0 0.84375 0.21484 1.0938 0.64062 0.14453 0.30469 0.22656 0.625 0.25 0.96875 0 0.71875-0.25781 1.3867-0.76562 2-0.46094 0.55469-0.96484 0.85156-1.5156 0.90625-0.042969 0.007812-0.089844 0.015625-0.14062 0.015625-0.41797 0-0.72656-0.21094-0.92188-0.64062-0.24219 0.88281-0.39844 1.5312-0.46875 1.9375-0.011719 0.03125-0.015625 0.050781-0.015625 0.0625 0 0.070312 0.039063 0.11719 0.125 0.14062h0.015625c0.082031 0.007813 0.20312 0.015625 0.35938 0.015625 0.14453 0 0.22266 0.035156 0.23438 0.10938 0 0.13281-0.058594 0.20312-0.17188 0.20312l-0.98438-0.03125-0.82812 0.03125h-0.015625c-0.082031 0-0.125-0.042969-0.125-0.125 0.03125-0.11719 0.10547-0.17969 0.21875-0.1875 0.25 0 0.39844-0.042969 0.45312-0.125l0.015625-0.015625c0.007812-0.023437 0.019531-0.058594 0.03125-0.10938 0.007812-0.03125 0.023438-0.085938 0.046875-0.15625zm1.75-4.3438-0.48438 1.9688c-0.023438 0.074219-0.03125 0.125-0.03125 0.15625 0 0.15625 0.0625 0.32812 0.1875 0.51562 0.070312 0.125 0.16406 0.22656 0.28125 0.29688 0.09375 0.054688 0.20312 0.078125 0.32812 0.078125 0.33203 0 0.64844-0.21094 0.95312-0.64062 0.082031-0.125 0.16016-0.25391 0.23438-0.39062 0.17578-0.375 0.32812-0.89062 0.45312-1.5469 0.039062-0.22656 0.0625-0.42188 0.0625-0.57812 0-0.51953-0.16406-0.82812-0.48438-0.92188-0.054687-0.007812-0.10547-0.015625-0.15625-0.015625-0.26172 0-0.53125 0.13281-0.8125 0.39062-0.29297 0.24219-0.46875 0.46875-0.53125 0.6875z"/>
|
|
570
|
+
</symbol>
|
|
571
|
+
<symbol id="if" overflow="visible">
|
|
572
|
+
<path d="m0.92188 19.594c-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.015625-0.078125 0.046875-0.10938l7.3906-8.6094-7.3906-10.125c-0.03125-0.023437-0.046875-0.042969-0.046875-0.0625v-0.42188c0-0.03125 0.015625-0.0625 0.046875-0.09375 0.03125-0.023438 0.0625-0.03125 0.09375-0.03125h16.797l1.7031 3.9375h-0.40625c-0.4375-1-1.168-1.7422-2.1875-2.2188-1.0117-0.48047-2.0703-0.77734-3.1719-0.89062-1.1055-0.10547-2.3906-0.15625-3.8594-0.15625h-6.4688l6.6094 9.0312c0.019531 0.03125 0.03125 0.0625 0.03125 0.09375s-0.011719 0.066406-0.03125 0.10938l-7.2656 8.4531h7.2656c1.4375 0 2.707-0.058594 3.8125-0.17188 1.1133-0.11719 2.1719-0.41406 3.1719-0.89062 1.0078-0.48047 1.707-1.2148 2.0938-2.2031h0.40625l-1.7031 4.5z"/>
|
|
573
|
+
</symbol>
|
|
574
|
+
<symbol id="ie" overflow="visible">
|
|
575
|
+
<path d="m3.9688-6.25c0 0.1875-0.09375 0.33984-0.28125 0.45312-0.085938 0.054687-0.16797 0.078125-0.25 0.078125-0.21094 0-0.33594-0.085938-0.375-0.26562v-0.015625-0.078125c0-0.20703 0.10156-0.36328 0.3125-0.46875 0.070312-0.039063 0.14453-0.0625 0.21875-0.0625 0.19531 0 0.31641 0.089844 0.35938 0.26562 0.007813 0.03125 0.015625 0.0625 0.015625 0.09375zm-2.0156 6.75 0.95312-3.7344c0.039062-0.19531 0.0625-0.36328 0.0625-0.5 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.40625 0-0.77734 0.29688-1.1094 0.89062-0.0625 0.10547-0.11719 0.21484-0.15625 0.32812-0.085937 0.125-0.14844 0.19531-0.1875 0.20312-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.09375 0.082031-0.28516 0.25-0.57812 0.39453-0.64453 0.84375-0.96875 1.3438-0.96875 0.36328 0 0.62891 0.15234 0.79688 0.45312 0.070313 0.13672 0.10938 0.29297 0.10938 0.46875 0 0.11719-0.015625 0.24219-0.046875 0.375l-0.92188 3.6562c-0.14844 0.58203-0.49219 1.0156-1.0312 1.2969-0.28125 0.14453-0.5625 0.21875-0.84375 0.21875-0.41797 0-0.6875-0.125-0.8125-0.375-0.039062-0.074219-0.0625-0.15234-0.0625-0.23438 0-0.26172 0.10938-0.4375 0.32812-0.53125 0.070313-0.03125 0.14062-0.046875 0.20312-0.046875 0.20703 0 0.33203 0.085937 0.375 0.26562 0.007812 0.03125 0.015625 0.054688 0.015625 0.078125 0 0.20703-0.09375 0.36328-0.28125 0.46875-0.054687 0.03125-0.10938 0.050781-0.17188 0.0625 0.11328 0.0625 0.24219 0.09375 0.39062 0.09375 0.38281 0 0.71094-0.24219 0.98438-0.71875 0.10156-0.1875 0.17969-0.39062 0.23438-0.60938z"/>
|
|
576
|
+
</symbol>
|
|
577
|
+
<symbol id="id" overflow="visible">
|
|
578
|
+
<path d="m6.875-3.2656h-5.9688c-0.21875 0-0.33594-0.066406-0.34375-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h5.9844c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312zm0 1.9375h-5.9844c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.11328-0.20312 0.34375-0.20312h5.9688c0.20703 0 0.31641 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
579
|
+
</symbol>
|
|
580
|
+
<symbol id="ic" overflow="visible">
|
|
581
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
582
|
+
</symbol>
|
|
583
|
+
<symbol id="ib" overflow="visible">
|
|
584
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
585
|
+
</symbol>
|
|
586
|
+
<symbol id="hz" overflow="visible">
|
|
587
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
588
|
+
</symbol>
|
|
589
|
+
<symbol id="hy" overflow="visible">
|
|
590
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
591
|
+
</symbol>
|
|
592
|
+
<symbol id="hx" overflow="visible">
|
|
593
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
594
|
+
</symbol>
|
|
595
|
+
<symbol id="hw" overflow="visible">
|
|
596
|
+
<path d="m3.6094-9.5625-2.0156 8.0938c-0.054688 0.21875-0.078125 0.44531-0.078125 0.67188 0 0.42969 0.14062 0.64062 0.42188 0.64062 0.36328 0 0.66406-0.39844 0.90625-1.2031 0.039062-0.13281 0.09375-0.3125 0.15625-0.53125 0.070312-0.15625 0.13281-0.23828 0.1875-0.25 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.13672-0.085937 0.46094-0.25 0.96875-0.054687 0.15625-0.10938 0.29297-0.17188 0.40625-0.24219 0.52344-0.58984 0.78125-1.0469 0.78125-0.49219 0-0.85547-0.19531-1.0938-0.59375-0.125-0.19531-0.1875-0.42969-0.1875-0.70312 0-0.14453 0.023437-0.30078 0.078125-0.46875l1.7656-7 0.03125-0.28125c0-0.10156-0.0625-0.17188-0.1875-0.20312-0.11719-0.019531-0.27734-0.03125-0.48438-0.03125-0.21875 0-0.33984-0.050781-0.35938-0.15625 0-0.16406 0.085937-0.26562 0.26562-0.29688l1.7188-0.14062c0.11328 0 0.17188 0.054688 0.17188 0.15625z"/>
|
|
597
|
+
</symbol>
|
|
598
|
+
<symbol id="hv" overflow="visible">
|
|
599
|
+
<path d="m2.8438-6.25c0 0.21094-0.10547 0.36719-0.3125 0.46875-0.074219 0.042969-0.14844 0.0625-0.21875 0.0625-0.19922 0-0.32422-0.085938-0.375-0.26562v-0.09375c0-0.1875 0.085938-0.33594 0.26562-0.45312 0.09375-0.050781 0.17969-0.078125 0.26562-0.078125 0.19531 0 0.31641 0.089844 0.35938 0.26562v0.015625c0.007813 0.023437 0.015625 0.046875 0.015625 0.078125zm-0.76562 3.7656-0.39062 1.0469c-0.1875 0.54297-0.28125 0.875-0.28125 1 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.41406 0 0.74219-0.375 0.98438-1.125l0.03125-0.10938c0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.082031 0 0.125 0.03125 0.125 0.09375 0 0.125-0.078125 0.33984-0.23438 0.64062-0.28125 0.60547-0.64062 0.90625-1.0781 0.90625-0.35547 0-0.60547-0.14453-0.75-0.4375-0.054688-0.125-0.078125-0.25-0.078125-0.375 0-0.13281 0.078125-0.40625 0.23438-0.8125 0.46875-1.25 0.69531-1.8633 0.6875-1.8438 0.070312-0.1875 0.10938-0.35938 0.10938-0.51562 0-0.21875-0.085937-0.32812-0.25-0.32812-0.36719 0-0.66406 0.30469-0.89062 0.90625v0.015625c-0.042969 0.10547-0.085938 0.21484-0.125 0.32812-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.070313-0.33594 0.21875-0.64062 0.28125-0.60156 0.64453-0.90625 1.0938-0.90625 0.35156 0 0.59766 0.15234 0.73438 0.45312 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.125-0.046875 0.30469-0.14062 0.53125-0.11719 0.30469-0.1875 0.49609-0.21875 0.57812z"/>
|
|
600
|
+
</symbol>
|
|
601
|
+
<symbol id="hu" overflow="visible">
|
|
602
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
603
|
+
</symbol>
|
|
604
|
+
<symbol id="ht" overflow="visible">
|
|
605
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
606
|
+
</symbol>
|
|
607
|
+
<symbol id="hs" overflow="visible">
|
|
608
|
+
<path d="m0.25 24.625v-0.67188h2.5v-23.844h-2.5v-0.67188h3.1875v25.188z"/>
|
|
609
|
+
</symbol>
|
|
610
|
+
<symbol id="hr" overflow="visible">
|
|
611
|
+
<path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
612
|
+
</symbol>
|
|
613
|
+
<symbol id="hq" overflow="visible">
|
|
614
|
+
<path d="m2.5-1.6094 4.875-8.1719c0.09375-0.15625 0.21094-0.23828 0.35938-0.25 0.14453 0 0.22656 0.046875 0.25 0.14062 0.007813 0.03125 0.019531 0.10156 0.03125 0.20312l0.84375 8.75c0.03125 0.23047 0.085937 0.37109 0.17188 0.42188h0.015625v0.015625c0.11328 0.042969 0.35156 0.0625 0.71875 0.0625 0.20703 0 0.31641 0.054688 0.32812 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.5625-0.046875h-0.015625l-1.7344 0.046875h-0.015625c-0.13672 0-0.20312-0.050781-0.20312-0.15625 0.070312-0.17578 0.1875-0.26953 0.34375-0.28125 0.66406 0 1-0.14844 1-0.45312 0 0.011719-0.074219-0.76953-0.21875-2.3438h-3.5156l-1.0625 1.7969c-0.13672 0.23047-0.20312 0.40234-0.20312 0.51562 0 0.29297 0.21875 0.45312 0.65625 0.48438 0.15625 0 0.23438 0.058594 0.23438 0.17188 0 0.17969-0.089844 0.26562-0.26562 0.26562l-1.3438-0.046875h-0.0625l-1.1719 0.046875h-0.03125c-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.16406 0.070313-0.25391 0.21875-0.26562v-0.015625h0.078125c0.59375-0.03125 1.0703-0.28125 1.4375-0.75 0.09375-0.125 0.1875-0.26562 0.28125-0.42188zm1.6875-2.0625h3.2031l-0.45312-4.6094z"/>
|
|
615
|
+
</symbol>
|
|
616
|
+
<symbol id="hp" overflow="visible">
|
|
617
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
618
|
+
</symbol>
|
|
619
|
+
<symbol id="hn" overflow="visible">
|
|
620
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
621
|
+
</symbol>
|
|
622
|
+
<symbol id="hm" overflow="visible">
|
|
623
|
+
<path d="m10.578-8.0938-1.9531 7.7969c-0.054688 0.17969-0.10156 0.27344-0.14062 0.28125l-0.015625 0.015625h-0.0625c-0.09375 0-0.17188-0.054688-0.23438-0.17188-0.011719-0.019531-0.023437-0.050781-0.03125-0.09375l-3.5-8.25-0.125-0.25-1.8438 7.3906c-0.03125 0.14844-0.046875 0.25781-0.046875 0.32812 0 0.3125 0.19531 0.50781 0.59375 0.57812 0.09375 0.023438 0.20312 0.03125 0.32812 0.03125 0.1875 0 0.28125 0.054688 0.28125 0.15625 0 0.1875-0.089844 0.28125-0.26562 0.28125l-1.3906-0.046875h-0.046875l-1.3906 0.046875c-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.1875 0.078125-0.28125 0.23438-0.28125 0.73828-0.019531 1.207-0.25391 1.4062-0.70312 0.03125-0.09375 0.066406-0.20703 0.10938-0.34375l1.875-7.5156c0-0.082031-0.32031-0.125-0.95312-0.125-0.24219 0-0.37109-0.050781-0.39062-0.15625 0-0.16406 0.066406-0.25781 0.20312-0.28125h2.0781c0.19531 0 0.31641 0.03125 0.35938 0.09375 0.019531 0.03125 0.050781 0.089844 0.09375 0.17188l3.0938 7.3125 1.5625-6.2344c0.03125-0.082031 0.046875-0.17969 0.046875-0.29688 0-0.39453-0.32031-0.59766-0.95312-0.60938-0.16797 0-0.25-0.050781-0.25-0.15625 0-0.1875 0.082031-0.28125 0.25-0.28125l1.4062 0.046875h0.015625l1.4062-0.046875h0.015625c0.11328 0 0.17188 0.054688 0.17188 0.15625 0 0.1875-0.078125 0.28125-0.23438 0.28125-0.73047 0.023438-1.1953 0.25-1.3906 0.6875-0.042969 0.09375-0.085937 0.21094-0.125 0.34375z"/>
|
|
624
|
+
</symbol>
|
|
625
|
+
<symbol id="hl" overflow="visible">
|
|
626
|
+
<path d="m4.5938-3.2031c0 0.98047-0.12109 1.7344-0.35938 2.2656-0.39844 0.75-0.98047 1.1328-1.75 1.1562-0.60547 0-1.0898-0.23828-1.4531-0.71875-0.074219-0.082031-0.13672-0.17969-0.1875-0.29688-0.30469-0.55078-0.45312-1.3516-0.45312-2.4062 0-0.97656 0.125-1.7344 0.375-2.2656 0.33203-0.75 0.86719-1.1445 1.6094-1.1875h0.125c0.59375 0 1.0781 0.23438 1.4531 0.70312v0.015625c0.09375 0.11719 0.17578 0.24609 0.25 0.39062 0.25781 0.57422 0.39062 1.3555 0.39062 2.3438zm-2.1094 3.2031c0.42578 0 0.75-0.20312 0.96875-0.60938 0.09375-0.17578 0.16016-0.39062 0.20312-0.64062 0.070312-0.42578 0.10938-1.1133 0.10938-2.0625 0-0.92578-0.03125-1.5781-0.09375-1.9531-0.125-0.63281-0.43359-1.0156-0.92188-1.1406-0.085938-0.019531-0.17188-0.03125-0.26562-0.03125-0.46094 0-0.79688 0.23438-1.0156 0.70312-0.074219 0.15625-0.13281 0.35156-0.17188 0.57812-0.054687 0.35547-0.078125 0.96875-0.078125 1.8438 0 1 0.035156 1.7031 0.10938 2.1094 0.125 0.63672 0.41406 1.0234 0.875 1.1562 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
627
|
+
</symbol>
|
|
628
|
+
<symbol id="hk" overflow="visible">
|
|
629
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
630
|
+
</symbol>
|
|
631
|
+
<symbol id="hj" overflow="visible">
|
|
632
|
+
<path d="m2.6875-5.2969c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.054688-0.21094 0.078125-0.3125 0.078125-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.30078 0.14062-0.52344 0.42188-0.67188 0.10156-0.039062 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21094 0.0625 0.3125zm-0.26562 5.1406c-0.085937 0.074219-0.20312 0.12109-0.35938 0.14062-0.011719 0.011719-0.046875 0.015625-0.10938 0.015625-0.375 0-0.61719-0.17188-0.71875-0.51562-0.023437-0.070313-0.03125-0.14453-0.03125-0.21875 0-0.33203 0.14062-0.5625 0.42188-0.6875 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.51953 0 0.78125 0.48047 0.78125 1.4375 0 0.91406-0.27344 1.7227-0.8125 2.4219-0.16797 0.21875-0.28906 0.32812-0.35938 0.32812-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.035156-0.10547 0.10938-0.1875 0.59375-0.6875 0.89062-1.5273 0.89062-2.5156z"/>
|
|
633
|
+
</symbol>
|
|
634
|
+
<symbol id="hi" overflow="visible">
|
|
635
|
+
<path d="m9.4844-2.2656-0.46875 2.2656h-2.2188c-0.21094 0-0.32812-0.03125-0.35938-0.09375-0.011719-0.039062-0.015625-0.10938-0.015625-0.20312 0-0.64453 0.21875-1.582 0.65625-2.8125 0.45703-1.2891 0.71875-2.2383 0.78125-2.8438 0.007813-0.13281 0.015625-0.27344 0.015625-0.42188 0-1.2266-0.43359-2.1328-1.2969-2.7188-0.46875-0.3125-0.98047-0.46875-1.5312-0.46875-0.80469 0-1.4766 0.29297-2.0156 0.875v0.015625c-0.54297 0.58594-0.8125 1.3516-0.8125 2.2969 0 0.71875 0.22656 1.7109 0.6875 2.9688 0.50781 1.4062 0.76562 2.4453 0.76562 3.1094 0 0.15625-0.039063 0.25-0.10938 0.28125-0.042969 0.011719-0.125 0.015625-0.25 0.015625h-2.2344l-0.46875-2.2656h0.35938c0.09375 0.48047 0.17578 0.82422 0.25 1.0312 0.039062 0.14844 0.125 0.23438 0.25 0.26562 0.125 0.042969 0.34766 0.0625 0.67188 0.0625h1.125c-0.125-0.51953-0.47656-1.207-1.0469-2.0625l-0.078125-0.14062c-0.03125-0.03125-0.074219-0.09375-0.125-0.1875-0.66797-1-1.0586-1.8203-1.1719-2.4688-0.042969-0.19531-0.0625-0.39453-0.0625-0.59375 0-0.96875 0.41406-1.7891 1.25-2.4688 0.82031-0.69531 1.8281-1.0469 3.0156-1.0469 1.2578 0 2.3125 0.38672 3.1562 1.1562 0.73828 0.65625 1.1094 1.4453 1.1094 2.3594 0 0.76172-0.32812 1.6562-0.98438 2.6875l-0.03125 0.03125-0.21875 0.34375c-0.63672 0.9375-1.0273 1.6523-1.1719 2.1406-0.03125 0.085938-0.058594 0.16797-0.078125 0.25h1.125c0.50781 0 0.80078-0.070312 0.875-0.21875l0.046875-0.125c0.070312-0.19531 0.15625-0.53516 0.25-1.0156z"/>
|
|
636
|
+
</symbol>
|
|
637
|
+
<symbol id="hh" overflow="visible">
|
|
638
|
+
<path d="m5-4.0938-3.375 3.9844c-0.15625 0.19531-0.3125 0.29688-0.46875 0.29688-0.21094 0-0.34375-0.10156-0.40625-0.29688-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.125 0.085937-0.26953 0.26562-0.4375l3.8594-3.8438-1.3594-3.7969c-0.21094-0.5625-0.38281-0.89453-0.51562-1h-0.015625l-0.03125-0.03125h-0.015625c-0.074219-0.03125-0.18359-0.0625-0.32812-0.09375-0.074219 0-0.11719-0.046875-0.125-0.14062 0-0.10156 0.082031-0.15625 0.25-0.15625 0.89453 0 1.4609 0.33594 1.7031 1l2.8594 7.9688c0.11328 0.3125 0.22266 0.52734 0.32812 0.64062 0.039063 0.0625 0.0625 0.10547 0.0625 0.125 0 0.082031-0.054687 0.12891-0.15625 0.14062h-0.3125c-0.29297 0-0.49219-0.046875-0.59375-0.14062-0.054687-0.050781-0.10156-0.10938-0.14062-0.17188-0.074219-0.11328-0.40234-0.98438-0.98438-2.6094-0.19922-0.53906-0.35938-0.98438-0.48438-1.3281z"/>
|
|
639
|
+
</symbol>
|
|
640
|
+
<symbol id="hg" overflow="visible">
|
|
641
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
642
|
+
</symbol>
|
|
643
|
+
<symbol id="hf" overflow="visible">
|
|
644
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
645
|
+
</symbol>
|
|
646
|
+
<symbol id="he" overflow="visible">
|
|
647
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
648
|
+
</symbol>
|
|
649
|
+
<symbol id="hd" overflow="visible">
|
|
650
|
+
<path d="m2.6875-5.2969c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.054688-0.21094 0.078125-0.3125 0.078125-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.30078 0.14062-0.52344 0.42188-0.67188 0.10156-0.039062 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21094 0.0625 0.3125zm-0.26562 5.1406c-0.085937 0.074219-0.20312 0.12109-0.35938 0.14062-0.011719 0.011719-0.046875 0.015625-0.10938 0.015625-0.375 0-0.61719-0.17188-0.71875-0.51562-0.023437-0.070313-0.03125-0.14453-0.03125-0.21875 0-0.33203 0.14062-0.5625 0.42188-0.6875 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.51953 0 0.78125 0.48047 0.78125 1.4375 0 0.91406-0.27344 1.7227-0.8125 2.4219-0.16797 0.21875-0.28906 0.32812-0.35938 0.32812-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.035156-0.10547 0.10938-0.1875 0.59375-0.6875 0.89062-1.5273 0.89062-2.5156z"/>
|
|
651
|
+
</symbol>
|
|
652
|
+
<symbol id="hc" overflow="visible">
|
|
653
|
+
<path d="m9.4844-2.2656-0.46875 2.2656h-2.2188c-0.21094 0-0.32812-0.03125-0.35938-0.09375-0.011719-0.039062-0.015625-0.10938-0.015625-0.20312 0-0.64453 0.21875-1.582 0.65625-2.8125 0.45703-1.2891 0.71875-2.2383 0.78125-2.8438 0.007813-0.13281 0.015625-0.27344 0.015625-0.42188 0-1.2266-0.43359-2.1328-1.2969-2.7188-0.46875-0.3125-0.98047-0.46875-1.5312-0.46875-0.80469 0-1.4766 0.29297-2.0156 0.875v0.015625c-0.54297 0.58594-0.8125 1.3516-0.8125 2.2969 0 0.71875 0.22656 1.7109 0.6875 2.9688 0.50781 1.4062 0.76562 2.4453 0.76562 3.1094 0 0.15625-0.039063 0.25-0.10938 0.28125-0.042969 0.011719-0.125 0.015625-0.25 0.015625h-2.2344l-0.46875-2.2656h0.35938c0.09375 0.48047 0.17578 0.82422 0.25 1.0312 0.039062 0.14844 0.125 0.23438 0.25 0.26562 0.125 0.042969 0.34766 0.0625 0.67188 0.0625h1.125c-0.125-0.51953-0.47656-1.207-1.0469-2.0625l-0.078125-0.14062c-0.03125-0.03125-0.074219-0.09375-0.125-0.1875-0.66797-1-1.0586-1.8203-1.1719-2.4688-0.042969-0.19531-0.0625-0.39453-0.0625-0.59375 0-0.96875 0.41406-1.7891 1.25-2.4688 0.82031-0.69531 1.8281-1.0469 3.0156-1.0469 1.2578 0 2.3125 0.38672 3.1562 1.1562 0.73828 0.65625 1.1094 1.4453 1.1094 2.3594 0 0.76172-0.32812 1.6562-0.98438 2.6875l-0.03125 0.03125-0.21875 0.34375c-0.63672 0.9375-1.0273 1.6523-1.1719 2.1406-0.03125 0.085938-0.058594 0.16797-0.078125 0.25h1.125c0.50781 0 0.80078-0.070312 0.875-0.21875l0.046875-0.125c0.070312-0.19531 0.15625-0.53516 0.25-1.0156z"/>
|
|
654
|
+
</symbol>
|
|
655
|
+
<symbol id="hb" overflow="visible">
|
|
656
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
657
|
+
</symbol>
|
|
658
|
+
<symbol id="ha" overflow="visible">
|
|
659
|
+
<path d="m6.125-9.375-0.79688 3.1719c1.1875 0.085937 2 0.55859 2.4375 1.4219 0.16406 0.35547 0.25 0.72656 0.25 1.1094 0 0.89844-0.39844 1.7305-1.1875 2.5-0.82422 0.80469-1.7891 1.2422-2.8906 1.3281-0.0625 0.007812-0.13281 0.015625-0.20312 0.015625l-0.53125 2.0781c-0.074219 0.34375-0.125 0.53125-0.15625 0.5625-0.03125 0.039062-0.078125 0.0625-0.14062 0.0625-0.10547 0-0.15625-0.054688-0.15625-0.15625 0-0.023438 0.097656-0.43359 0.29688-1.2344l0.3125-1.2656c0-0.011719 0.003906-0.027344 0.015625-0.046875-1.0742-0.074219-1.8516-0.47656-2.3281-1.2188-0.24219-0.39453-0.35938-0.83203-0.35938-1.3125 0-0.91406 0.40625-1.7578 1.2188-2.5312 0.83203-0.78906 1.7969-1.2227 2.8906-1.2969 0.0625-0.007812 0.11719-0.015625 0.17188-0.015625l0.8125-3.2344c0.082031-0.17578 0.14844-0.26953 0.20312-0.28125 0.11328 0 0.17188 0.046875 0.17188 0.14062l-0.03125 0.1875zm-2.6875 9.2344 1.4531-5.75c-1.0859 0.09375-1.9492 0.61719-2.5938 1.5625-0.46875 0.69922-0.70312 1.4492-0.70312 2.25 0 0.91797 0.39062 1.5234 1.1719 1.8125 0.21875 0.074219 0.44141 0.11719 0.67188 0.125zm1.8125-5.75-1.4375 5.75c1.082-0.082031 1.9453-0.60938 2.5938-1.5781 0.46875-0.69531 0.70312-1.4453 0.70312-2.25 0-0.875-0.36719-1.457-1.0938-1.75-0.23047-0.09375-0.48438-0.14844-0.76562-0.17188z"/>
|
|
660
|
+
</symbol>
|
|
661
|
+
<symbol id="gz" overflow="visible">
|
|
662
|
+
<path d="m5-4.0938-3.375 3.9844c-0.15625 0.19531-0.3125 0.29688-0.46875 0.29688-0.21094 0-0.34375-0.10156-0.40625-0.29688-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.125 0.085937-0.26953 0.26562-0.4375l3.8594-3.8438-1.3594-3.7969c-0.21094-0.5625-0.38281-0.89453-0.51562-1h-0.015625l-0.03125-0.03125h-0.015625c-0.074219-0.03125-0.18359-0.0625-0.32812-0.09375-0.074219 0-0.11719-0.046875-0.125-0.14062 0-0.10156 0.082031-0.15625 0.25-0.15625 0.89453 0 1.4609 0.33594 1.7031 1l2.8594 7.9688c0.11328 0.3125 0.22266 0.52734 0.32812 0.64062 0.039063 0.0625 0.0625 0.10547 0.0625 0.125 0 0.082031-0.054687 0.12891-0.15625 0.14062h-0.3125c-0.29297 0-0.49219-0.046875-0.59375-0.14062-0.054687-0.050781-0.10156-0.10938-0.14062-0.17188-0.074219-0.11328-0.40234-0.98438-0.98438-2.6094-0.19922-0.53906-0.35938-0.98438-0.48438-1.3281z"/>
|
|
663
|
+
</symbol>
|
|
664
|
+
<symbol id="gy" overflow="visible">
|
|
665
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
666
|
+
</symbol>
|
|
667
|
+
<symbol id="gw" overflow="visible">
|
|
668
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
669
|
+
</symbol>
|
|
670
|
+
<symbol id="gv" overflow="visible">
|
|
671
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
672
|
+
</symbol>
|
|
673
|
+
<symbol id="gu" overflow="visible">
|
|
674
|
+
<path d="m2.5-1.6094 4.875-8.1719c0.09375-0.15625 0.21094-0.23828 0.35938-0.25 0.14453 0 0.22656 0.046875 0.25 0.14062 0.007813 0.03125 0.019531 0.10156 0.03125 0.20312l0.84375 8.75c0.03125 0.23047 0.085937 0.37109 0.17188 0.42188h0.015625v0.015625c0.11328 0.042969 0.35156 0.0625 0.71875 0.0625 0.20703 0 0.31641 0.054688 0.32812 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.5625-0.046875h-0.015625l-1.7344 0.046875h-0.015625c-0.13672 0-0.20312-0.050781-0.20312-0.15625 0.070312-0.17578 0.1875-0.26953 0.34375-0.28125 0.66406 0 1-0.14844 1-0.45312 0 0.011719-0.074219-0.76953-0.21875-2.3438h-3.5156l-1.0625 1.7969c-0.13672 0.23047-0.20312 0.40234-0.20312 0.51562 0 0.29297 0.21875 0.45312 0.65625 0.48438 0.15625 0 0.23438 0.058594 0.23438 0.17188 0 0.17969-0.089844 0.26562-0.26562 0.26562l-1.3438-0.046875h-0.0625l-1.1719 0.046875h-0.03125c-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.16406 0.070313-0.25391 0.21875-0.26562v-0.015625h0.078125c0.59375-0.03125 1.0703-0.28125 1.4375-0.75 0.09375-0.125 0.1875-0.26562 0.28125-0.42188zm1.6875-2.0625h3.2031l-0.45312-4.6094z"/>
|
|
675
|
+
</symbol>
|
|
676
|
+
<symbol id="gt" overflow="visible">
|
|
677
|
+
<path d="m4.4844-1.7344-0.28125 1.7344h-3.7031c0-0.16406 0.019531-0.26953 0.0625-0.3125l0.046875-0.0625 1.9219-2.1406c0.69531-0.78125 1.0469-1.5156 1.0469-2.2031 0-0.59375-0.17969-1.0391-0.53125-1.3438l-0.015625-0.015625h-0.015625c-0.21094-0.17578-0.46875-0.26562-0.78125-0.26562-0.48047 0-0.85938 0.20312-1.1406 0.60938-0.085938 0.125-0.15234 0.26172-0.20312 0.40625 0.019531-0.007813 0.0625-0.015625 0.125-0.015625 0.26953 0 0.44141 0.12109 0.51562 0.35938v0.015625c0.007812 0.042969 0.015625 0.09375 0.015625 0.15625 0 0.26172-0.125 0.42969-0.375 0.5-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.25 0-0.41406-0.097656-0.48438-0.29688-0.03125-0.070312-0.046875-0.15625-0.046875-0.25 0-0.51953 0.19531-0.96094 0.59375-1.3281 0.35156-0.32031 0.78125-0.48438 1.2812-0.48438 0.72656 0 1.2969 0.24609 1.7031 0.73438 0.23828 0.29297 0.375 0.63281 0.40625 1.0156v0.1875c0 0.49219-0.18359 0.95312-0.54688 1.3906-0.1875 0.23047-0.48438 0.52734-0.89062 0.89062l-0.60938 0.54688-0.10938 0.09375-1.0625 1.0312h1.7969c0.59375 0 0.91016-0.023437 0.95312-0.078125 0.070313-0.09375 0.14453-0.39062 0.21875-0.89062z"/>
|
|
678
|
+
</symbol>
|
|
679
|
+
<symbol id="gs" overflow="visible">
|
|
680
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
681
|
+
</symbol>
|
|
682
|
+
<symbol id="gr" overflow="visible">
|
|
683
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
684
|
+
</symbol>
|
|
685
|
+
<symbol id="gq" overflow="visible">
|
|
686
|
+
<path d="m2.6875-5.2969c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.054688-0.21094 0.078125-0.3125 0.078125-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.30078 0.14062-0.52344 0.42188-0.67188 0.10156-0.039062 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21094 0.0625 0.3125zm-0.26562 5.1406c-0.085937 0.074219-0.20312 0.12109-0.35938 0.14062-0.011719 0.011719-0.046875 0.015625-0.10938 0.015625-0.375 0-0.61719-0.17188-0.71875-0.51562-0.023437-0.070313-0.03125-0.14453-0.03125-0.21875 0-0.33203 0.14062-0.5625 0.42188-0.6875 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.51953 0 0.78125 0.48047 0.78125 1.4375 0 0.91406-0.27344 1.7227-0.8125 2.4219-0.16797 0.21875-0.28906 0.32812-0.35938 0.32812-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.035156-0.10547 0.10938-0.1875 0.59375-0.6875 0.89062-1.5273 0.89062-2.5156z"/>
|
|
687
|
+
</symbol>
|
|
688
|
+
<symbol id="gp" overflow="visible">
|
|
689
|
+
<path d="m9.4844-2.2656-0.46875 2.2656h-2.2188c-0.21094 0-0.32812-0.03125-0.35938-0.09375-0.011719-0.039062-0.015625-0.10938-0.015625-0.20312 0-0.64453 0.21875-1.582 0.65625-2.8125 0.45703-1.2891 0.71875-2.2383 0.78125-2.8438 0.007813-0.13281 0.015625-0.27344 0.015625-0.42188 0-1.2266-0.43359-2.1328-1.2969-2.7188-0.46875-0.3125-0.98047-0.46875-1.5312-0.46875-0.80469 0-1.4766 0.29297-2.0156 0.875v0.015625c-0.54297 0.58594-0.8125 1.3516-0.8125 2.2969 0 0.71875 0.22656 1.7109 0.6875 2.9688 0.50781 1.4062 0.76562 2.4453 0.76562 3.1094 0 0.15625-0.039063 0.25-0.10938 0.28125-0.042969 0.011719-0.125 0.015625-0.25 0.015625h-2.2344l-0.46875-2.2656h0.35938c0.09375 0.48047 0.17578 0.82422 0.25 1.0312 0.039062 0.14844 0.125 0.23438 0.25 0.26562 0.125 0.042969 0.34766 0.0625 0.67188 0.0625h1.125c-0.125-0.51953-0.47656-1.207-1.0469-2.0625l-0.078125-0.14062c-0.03125-0.03125-0.074219-0.09375-0.125-0.1875-0.66797-1-1.0586-1.8203-1.1719-2.4688-0.042969-0.19531-0.0625-0.39453-0.0625-0.59375 0-0.96875 0.41406-1.7891 1.25-2.4688 0.82031-0.69531 1.8281-1.0469 3.0156-1.0469 1.2578 0 2.3125 0.38672 3.1562 1.1562 0.73828 0.65625 1.1094 1.4453 1.1094 2.3594 0 0.76172-0.32812 1.6562-0.98438 2.6875l-0.03125 0.03125-0.21875 0.34375c-0.63672 0.9375-1.0273 1.6523-1.1719 2.1406-0.03125 0.085938-0.058594 0.16797-0.078125 0.25h1.125c0.50781 0 0.80078-0.070312 0.875-0.21875l0.046875-0.125c0.070312-0.19531 0.15625-0.53516 0.25-1.0156z"/>
|
|
690
|
+
</symbol>
|
|
691
|
+
<symbol id="go" overflow="visible">
|
|
692
|
+
<path d="m6.125-9.375-0.79688 3.1719c1.1875 0.085937 2 0.55859 2.4375 1.4219 0.16406 0.35547 0.25 0.72656 0.25 1.1094 0 0.89844-0.39844 1.7305-1.1875 2.5-0.82422 0.80469-1.7891 1.2422-2.8906 1.3281-0.0625 0.007812-0.13281 0.015625-0.20312 0.015625l-0.53125 2.0781c-0.074219 0.34375-0.125 0.53125-0.15625 0.5625-0.03125 0.039062-0.078125 0.0625-0.14062 0.0625-0.10547 0-0.15625-0.054688-0.15625-0.15625 0-0.023438 0.097656-0.43359 0.29688-1.2344l0.3125-1.2656c0-0.011719 0.003906-0.027344 0.015625-0.046875-1.0742-0.074219-1.8516-0.47656-2.3281-1.2188-0.24219-0.39453-0.35938-0.83203-0.35938-1.3125 0-0.91406 0.40625-1.7578 1.2188-2.5312 0.83203-0.78906 1.7969-1.2227 2.8906-1.2969 0.0625-0.007812 0.11719-0.015625 0.17188-0.015625l0.8125-3.2344c0.082031-0.17578 0.14844-0.26953 0.20312-0.28125 0.11328 0 0.17188 0.046875 0.17188 0.14062l-0.03125 0.1875zm-2.6875 9.2344 1.4531-5.75c-1.0859 0.09375-1.9492 0.61719-2.5938 1.5625-0.46875 0.69922-0.70312 1.4492-0.70312 2.25 0 0.91797 0.39062 1.5234 1.1719 1.8125 0.21875 0.074219 0.44141 0.11719 0.67188 0.125zm1.8125-5.75-1.4375 5.75c1.082-0.082031 1.9453-0.60938 2.5938-1.5781 0.46875-0.69531 0.70312-1.4453 0.70312-2.25 0-0.875-0.36719-1.457-1.0938-1.75-0.23047-0.09375-0.48438-0.14844-0.76562-0.17188z"/>
|
|
693
|
+
</symbol>
|
|
694
|
+
<symbol id="gn" overflow="visible">
|
|
695
|
+
<path d="m5-4.0938-3.375 3.9844c-0.15625 0.19531-0.3125 0.29688-0.46875 0.29688-0.21094 0-0.34375-0.10156-0.40625-0.29688-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.125 0.085937-0.26953 0.26562-0.4375l3.8594-3.8438-1.3594-3.7969c-0.21094-0.5625-0.38281-0.89453-0.51562-1h-0.015625l-0.03125-0.03125h-0.015625c-0.074219-0.03125-0.18359-0.0625-0.32812-0.09375-0.074219 0-0.11719-0.046875-0.125-0.14062 0-0.10156 0.082031-0.15625 0.25-0.15625 0.89453 0 1.4609 0.33594 1.7031 1l2.8594 7.9688c0.11328 0.3125 0.22266 0.52734 0.32812 0.64062 0.039063 0.0625 0.0625 0.10547 0.0625 0.125 0 0.082031-0.054687 0.12891-0.15625 0.14062h-0.3125c-0.29297 0-0.49219-0.046875-0.59375-0.14062-0.054687-0.050781-0.10156-0.10938-0.14062-0.17188-0.074219-0.11328-0.40234-0.98438-0.98438-2.6094-0.19922-0.53906-0.35938-0.98438-0.48438-1.3281z"/>
|
|
696
|
+
</symbol>
|
|
697
|
+
<symbol id="gm" overflow="visible">
|
|
698
|
+
<path d="m2.5469-4.7969-1.7812 4.2031c-0.042969 0.09375-0.089844 0.14062-0.14062 0.14062-0.11719 0-0.21484-0.035156-0.29688-0.10938-0.023437-0.019531-0.03125-0.039062-0.03125-0.0625 0-0.019531 0.003906-0.066406 0.015625-0.14062l1.2188-4.3594c0.082031-0.28125 0.22656-0.42969 0.4375-0.45312 0.03125-0.007813 0.0625-0.015625 0.09375-0.015625 0.22656 0 0.39453 0.10156 0.5 0.29688 0.039062 0.074219 0.0625 0.15234 0.0625 0.23438 0 0.085938-0.027344 0.17188-0.078125 0.26562z"/>
|
|
699
|
+
</symbol>
|
|
700
|
+
<symbol id="aj" overflow="visible">
|
|
701
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
702
|
+
</symbol>
|
|
703
|
+
<symbol id="gl" overflow="visible">
|
|
704
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
705
|
+
</symbol>
|
|
706
|
+
<symbol id="gk" overflow="visible">
|
|
707
|
+
<path d="m2.6875-5.2969c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.054688-0.21094 0.078125-0.3125 0.078125-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.30078 0.14062-0.52344 0.42188-0.67188 0.10156-0.039062 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21094 0.0625 0.3125zm-0.26562 5.1406c-0.085937 0.074219-0.20312 0.12109-0.35938 0.14062-0.011719 0.011719-0.046875 0.015625-0.10938 0.015625-0.375 0-0.61719-0.17188-0.71875-0.51562-0.023437-0.070313-0.03125-0.14453-0.03125-0.21875 0-0.33203 0.14062-0.5625 0.42188-0.6875 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.51953 0 0.78125 0.48047 0.78125 1.4375 0 0.91406-0.27344 1.7227-0.8125 2.4219-0.16797 0.21875-0.28906 0.32812-0.35938 0.32812-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.035156-0.10547 0.10938-0.1875 0.59375-0.6875 0.89062-1.5273 0.89062-2.5156z"/>
|
|
708
|
+
</symbol>
|
|
709
|
+
<symbol id="gj" overflow="visible">
|
|
710
|
+
<path d="m9.4844-2.2656-0.46875 2.2656h-2.2188c-0.21094 0-0.32812-0.03125-0.35938-0.09375-0.011719-0.039062-0.015625-0.10938-0.015625-0.20312 0-0.64453 0.21875-1.582 0.65625-2.8125 0.45703-1.2891 0.71875-2.2383 0.78125-2.8438 0.007813-0.13281 0.015625-0.27344 0.015625-0.42188 0-1.2266-0.43359-2.1328-1.2969-2.7188-0.46875-0.3125-0.98047-0.46875-1.5312-0.46875-0.80469 0-1.4766 0.29297-2.0156 0.875v0.015625c-0.54297 0.58594-0.8125 1.3516-0.8125 2.2969 0 0.71875 0.22656 1.7109 0.6875 2.9688 0.50781 1.4062 0.76562 2.4453 0.76562 3.1094 0 0.15625-0.039063 0.25-0.10938 0.28125-0.042969 0.011719-0.125 0.015625-0.25 0.015625h-2.2344l-0.46875-2.2656h0.35938c0.09375 0.48047 0.17578 0.82422 0.25 1.0312 0.039062 0.14844 0.125 0.23438 0.25 0.26562 0.125 0.042969 0.34766 0.0625 0.67188 0.0625h1.125c-0.125-0.51953-0.47656-1.207-1.0469-2.0625l-0.078125-0.14062c-0.03125-0.03125-0.074219-0.09375-0.125-0.1875-0.66797-1-1.0586-1.8203-1.1719-2.4688-0.042969-0.19531-0.0625-0.39453-0.0625-0.59375 0-0.96875 0.41406-1.7891 1.25-2.4688 0.82031-0.69531 1.8281-1.0469 3.0156-1.0469 1.2578 0 2.3125 0.38672 3.1562 1.1562 0.73828 0.65625 1.1094 1.4453 1.1094 2.3594 0 0.76172-0.32812 1.6562-0.98438 2.6875l-0.03125 0.03125-0.21875 0.34375c-0.63672 0.9375-1.0273 1.6523-1.1719 2.1406-0.03125 0.085938-0.058594 0.16797-0.078125 0.25h1.125c0.50781 0 0.80078-0.070312 0.875-0.21875l0.046875-0.125c0.070312-0.19531 0.15625-0.53516 0.25-1.0156z"/>
|
|
711
|
+
</symbol>
|
|
712
|
+
<symbol id="gi" overflow="visible">
|
|
713
|
+
<path d="m4.6562-1.0625c-0.23047 0.57422-0.63672 0.94922-1.2188 1.125-0.1875 0.0625-0.39062 0.09375-0.60938 0.09375-0.79297 0-1.4023-0.19141-1.8281-0.57812-0.27344-0.23828-0.40625-0.53906-0.40625-0.90625 0-0.71875 0.39453-1.2891 1.1875-1.7188 0.0625-0.039063 0.12891-0.078125 0.20312-0.10938 0.57031-0.26953 1.4102-0.4375 2.5156-0.5h0.0625v-0.51562c0-0.78906-0.28906-1.3359-0.85938-1.6406-0.1875-0.10156-0.39844-0.15625-0.625-0.15625-0.61719 0-1.0898 0.18359-1.4219 0.54688-0.03125 0.042969-0.0625 0.078125-0.09375 0.10938 0.4375 0.054688 0.67578 0.26562 0.71875 0.64062 0 0.3125-0.14844 0.51562-0.4375 0.60938-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.33594 0-0.54297-0.15625-0.625-0.46875-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875 0-0.5625 0.28906-0.99219 0.875-1.2969 0.36328-0.1875 0.77344-0.28125 1.2344-0.28125 0.75781 0 1.3984 0.25781 1.9219 0.76562 0.32031 0.33594 0.48828 0.79688 0.5 1.3906v3.0625c0 0.27344 0.082031 0.46875 0.25 0.59375 0.070312 0.074219 0.16016 0.10938 0.26562 0.10938 0.32031 0 0.48828-0.30078 0.5-0.90625v-0.78125h0.35938v0.78125c0 0.6875-0.28125 1.1172-0.84375 1.2812-0.11719 0.03125-0.21875 0.046875-0.3125 0.046875-0.46094 0-0.78125-0.23828-0.96875-0.71875-0.0625-0.13281-0.10547-0.27344-0.125-0.42188zm-0.09375-2.2969c-1.4375 0.054687-2.3555 0.49219-2.75 1.3125-0.09375 0.23047-0.14062 0.46484-0.14062 0.70312 0 0.48047 0.21094 0.82812 0.64062 1.0469 0.1875 0.09375 0.39062 0.14062 0.60938 0.14062 0.48828 0 0.89453-0.19141 1.2188-0.57812 0.28125-0.3125 0.42188-0.71875 0.42188-1.2188z"/>
|
|
714
|
+
</symbol>
|
|
715
|
+
<symbol id="gh" overflow="visible">
|
|
716
|
+
<path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
|
|
717
|
+
</symbol>
|
|
718
|
+
<symbol id="gg" overflow="visible">
|
|
719
|
+
<path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
|
|
720
|
+
</symbol>
|
|
721
|
+
<symbol id="gf" overflow="visible">
|
|
722
|
+
<path d="m9.25-3.2188h-7.625c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.625c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
723
|
+
</symbol>
|
|
724
|
+
<symbol id="ge" overflow="visible">
|
|
725
|
+
<path d="m6.125-9.375-0.79688 3.1719c1.1875 0.085937 2 0.55859 2.4375 1.4219 0.16406 0.35547 0.25 0.72656 0.25 1.1094 0 0.89844-0.39844 1.7305-1.1875 2.5-0.82422 0.80469-1.7891 1.2422-2.8906 1.3281-0.0625 0.007812-0.13281 0.015625-0.20312 0.015625l-0.53125 2.0781c-0.074219 0.34375-0.125 0.53125-0.15625 0.5625-0.03125 0.039062-0.078125 0.0625-0.14062 0.0625-0.10547 0-0.15625-0.054688-0.15625-0.15625 0-0.023438 0.097656-0.43359 0.29688-1.2344l0.3125-1.2656c0-0.011719 0.003906-0.027344 0.015625-0.046875-1.0742-0.074219-1.8516-0.47656-2.3281-1.2188-0.24219-0.39453-0.35938-0.83203-0.35938-1.3125 0-0.91406 0.40625-1.7578 1.2188-2.5312 0.83203-0.78906 1.7969-1.2227 2.8906-1.2969 0.0625-0.007812 0.11719-0.015625 0.17188-0.015625l0.8125-3.2344c0.082031-0.17578 0.14844-0.26953 0.20312-0.28125 0.11328 0 0.17188 0.046875 0.17188 0.14062l-0.03125 0.1875zm-2.6875 9.2344 1.4531-5.75c-1.0859 0.09375-1.9492 0.61719-2.5938 1.5625-0.46875 0.69922-0.70312 1.4492-0.70312 2.25 0 0.91797 0.39062 1.5234 1.1719 1.8125 0.21875 0.074219 0.44141 0.11719 0.67188 0.125zm1.8125-5.75-1.4375 5.75c1.082-0.082031 1.9453-0.60938 2.5938-1.5781 0.46875-0.69531 0.70312-1.4453 0.70312-2.25 0-0.875-0.36719-1.457-1.0938-1.75-0.23047-0.09375-0.48438-0.14844-0.76562-0.17188z"/>
|
|
726
|
+
</symbol>
|
|
727
|
+
<symbol id="gd" overflow="visible">
|
|
728
|
+
<path d="m5-4.0938-3.375 3.9844c-0.15625 0.19531-0.3125 0.29688-0.46875 0.29688-0.21094 0-0.34375-0.10156-0.40625-0.29688-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.125 0.085937-0.26953 0.26562-0.4375l3.8594-3.8438-1.3594-3.7969c-0.21094-0.5625-0.38281-0.89453-0.51562-1h-0.015625l-0.03125-0.03125h-0.015625c-0.074219-0.03125-0.18359-0.0625-0.32812-0.09375-0.074219 0-0.11719-0.046875-0.125-0.14062 0-0.10156 0.082031-0.15625 0.25-0.15625 0.89453 0 1.4609 0.33594 1.7031 1l2.8594 7.9688c0.11328 0.3125 0.22266 0.52734 0.32812 0.64062 0.039063 0.0625 0.0625 0.10547 0.0625 0.125 0 0.082031-0.054687 0.12891-0.15625 0.14062h-0.3125c-0.29297 0-0.49219-0.046875-0.59375-0.14062-0.054687-0.050781-0.10156-0.10938-0.14062-0.17188-0.074219-0.11328-0.40234-0.98438-0.98438-2.6094-0.19922-0.53906-0.35938-0.98438-0.48438-1.3281z"/>
|
|
729
|
+
</symbol>
|
|
730
|
+
<symbol id="gc" overflow="visible">
|
|
731
|
+
<path d="m2.8438-0.015625c0 0.90625-0.29688 1.6953-0.89062 2.375-0.15625 0.1875-0.28906 0.30078-0.39062 0.34375-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.050781-0.11719 0.15625-0.21875 0.5625-0.5625 0.875-1.25 0.9375-2.0625 0.007813-0.09375 0.015625-0.1875 0.015625-0.28125 0-0.13281-0.011719-0.20312-0.03125-0.20312-0.011719 0-0.03125 0.011719-0.0625 0.03125-0.13672 0.125-0.29688 0.1875-0.48438 0.1875-0.35547 0-0.58594-0.15625-0.6875-0.46875-0.042969-0.09375-0.0625-0.17969-0.0625-0.26562 0-0.34375 0.14453-0.57031 0.4375-0.6875 0.09375-0.039063 0.19531-0.0625 0.3125-0.0625 0.40625 0 0.67578 0.27344 0.8125 0.8125 0.050781 0.19922 0.078125 0.41797 0.078125 0.65625z"/>
|
|
732
|
+
</symbol>
|
|
733
|
+
<symbol id="gb" overflow="visible">
|
|
734
|
+
<path d="m2.5-1.6094 4.875-8.1719c0.09375-0.15625 0.21094-0.23828 0.35938-0.25 0.14453 0 0.22656 0.046875 0.25 0.14062 0.007813 0.03125 0.019531 0.10156 0.03125 0.20312l0.84375 8.75c0.03125 0.23047 0.085937 0.37109 0.17188 0.42188h0.015625v0.015625c0.11328 0.042969 0.35156 0.0625 0.71875 0.0625 0.20703 0 0.31641 0.054688 0.32812 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.5625-0.046875h-0.015625l-1.7344 0.046875h-0.015625c-0.13672 0-0.20312-0.050781-0.20312-0.15625 0.070312-0.17578 0.1875-0.26953 0.34375-0.28125 0.66406 0 1-0.14844 1-0.45312 0 0.011719-0.074219-0.76953-0.21875-2.3438h-3.5156l-1.0625 1.7969c-0.13672 0.23047-0.20312 0.40234-0.20312 0.51562 0 0.29297 0.21875 0.45312 0.65625 0.48438 0.15625 0 0.23438 0.058594 0.23438 0.17188 0 0.17969-0.089844 0.26562-0.26562 0.26562l-1.3438-0.046875h-0.0625l-1.1719 0.046875h-0.03125c-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.16406 0.070313-0.25391 0.21875-0.26562v-0.015625h0.078125c0.59375-0.03125 1.0703-0.28125 1.4375-0.75 0.09375-0.125 0.1875-0.26562 0.28125-0.42188zm1.6875-2.0625h3.2031l-0.45312-4.6094z"/>
|
|
735
|
+
</symbol>
|
|
736
|
+
<symbol id="ga" overflow="visible">
|
|
737
|
+
<path d="m2.9062-3.5156c0.66406 0.13672 1.1445 0.46094 1.4375 0.96875 0.14453 0.26172 0.21875 0.54297 0.21875 0.84375 0 0.5625-0.23047 1.0391-0.6875 1.4219-0.40625 0.33203-0.88672 0.5-1.4375 0.5-0.65625 0-1.1875-0.19922-1.5938-0.59375-0.28125-0.28125-0.42188-0.60156-0.42188-0.96875 0-0.3125 0.14062-0.5 0.42188-0.5625 0.039062-0.019531 0.085938-0.03125 0.14062-0.03125 0.25 0 0.41406 0.10938 0.5 0.32812 0.03125 0.085937 0.050781 0.16406 0.0625 0.23438 0 0.27344-0.12109 0.44922-0.35938 0.53125-0.09375 0.03125-0.19922 0.042969-0.3125 0.03125 0.25 0.40625 0.67578 0.65234 1.2812 0.73438 0.09375 0.011719 0.17578 0.015625 0.25 0.015625 0.42578 0 0.73828-0.20703 0.9375-0.625 0.13281-0.26953 0.20312-0.60938 0.20312-1.0156 0-0.89453-0.27344-1.4297-0.8125-1.6094-0.11719-0.039062-0.24609-0.0625-0.39062-0.0625h-0.4375c-0.14844 0-0.22656-0.035156-0.23438-0.10938 0-0.0625 0.046875-0.097656 0.14062-0.10938 0.10156 0 0.23438-0.007812 0.39062-0.03125 0.34375-0.019531 0.61328-0.14844 0.8125-0.39062v-0.03125h0.03125l0.046875-0.10938c0.1875-0.3125 0.28125-0.69141 0.28125-1.1406 0-0.61328-0.24219-0.97266-0.71875-1.0781-0.074219-0.019531-0.15234-0.03125-0.23438-0.03125-0.46875 0-0.85156 0.13281-1.1406 0.39062-0.074219 0.074219-0.13672 0.14844-0.1875 0.21875 0.40625 0 0.60938 0.16797 0.60938 0.5 0 0.24219-0.10156 0.40234-0.29688 0.48438-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.26172 0-0.42969-0.11328-0.5-0.34375v-0.015625c-0.011719-0.050781-0.015625-0.10156-0.015625-0.15625 0-0.44531 0.21875-0.80469 0.65625-1.0781 0.32031-0.1875 0.69141-0.28125 1.1094-0.28125 0.61328 0 1.1094 0.17969 1.4844 0.53125l0.015625 0.03125c0.22656 0.24219 0.34375 0.51172 0.34375 0.8125 0 0.55469-0.23438 1.0156-0.70312 1.3906-0.21094 0.15625-0.4375 0.28125-0.6875 0.375z"/>
|
|
738
|
+
</symbol>
|
|
739
|
+
<symbol id="fy" overflow="visible">
|
|
740
|
+
<path d="m9.625-4.5781h-8.3594c-0.30469 0-0.46484-0.09375-0.48438-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h8.375c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0 2.7188h-8.375c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h8.3594c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
741
|
+
</symbol>
|
|
742
|
+
<symbol id="fx" overflow="visible">
|
|
743
|
+
<path d="m4.6406 3.3594c0 0.09375-0.046875 0.14062-0.14062 0.14062-0.11719 0-0.36719-0.19531-0.75-0.57812-0.57422-0.57422-1.0547-1.2578-1.4375-2.0469-0.61719-1.2695-0.92188-2.7266-0.92188-4.375 0-1.5703 0.28906-2.9922 0.875-4.2656 0.48828-1.0391 1.1016-1.875 1.8438-2.5 0.19531-0.15625 0.32812-0.23438 0.39062-0.23438 0.09375 0 0.14062 0.046875 0.14062 0.14062 0 0.042969-0.0625 0.12109-0.1875 0.23438-1.5 1.5312-2.25 3.7422-2.25 6.625 0 2.875 0.72656 5.0547 2.1875 6.5469 0.16406 0.16406 0.25 0.26953 0.25 0.3125z"/>
|
|
744
|
+
</symbol>
|
|
745
|
+
<symbol id="fw" overflow="visible">
|
|
746
|
+
<path d="m2.6875-5.2969c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.054688-0.21094 0.078125-0.3125 0.078125-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.30078 0.14062-0.52344 0.42188-0.67188 0.10156-0.039062 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21094 0.0625 0.3125zm-0.26562 5.1406c-0.085937 0.074219-0.20312 0.12109-0.35938 0.14062-0.011719 0.011719-0.046875 0.015625-0.10938 0.015625-0.375 0-0.61719-0.17188-0.71875-0.51562-0.023437-0.070313-0.03125-0.14453-0.03125-0.21875 0-0.33203 0.14062-0.5625 0.42188-0.6875 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.51953 0 0.78125 0.48047 0.78125 1.4375 0 0.91406-0.27344 1.7227-0.8125 2.4219-0.16797 0.21875-0.28906 0.32812-0.35938 0.32812-0.09375 0-0.14062-0.054687-0.14062-0.15625 0-0.042969 0.035156-0.10547 0.10938-0.1875 0.59375-0.6875 0.89062-1.5273 0.89062-2.5156z"/>
|
|
747
|
+
</symbol>
|
|
748
|
+
<symbol id="fv" overflow="visible">
|
|
749
|
+
<path d="m4.0469-3.5c0 1.5742-0.29688 2.9961-0.89062 4.2656-0.48047 1.0391-1.0938 1.875-1.8438 2.5-0.19922 0.15625-0.32422 0.23438-0.375 0.23438-0.09375 0-0.14062-0.046875-0.14062-0.14062 0-0.042969 0.0625-0.12109 0.1875-0.23438 1.5-1.5312 2.25-3.7383 2.25-6.625 0-2.8438-0.69922-5-2.0938-6.4688l-0.078125-0.0625c-0.17969-0.17578-0.26562-0.28516-0.26562-0.32812 0-0.09375 0.046875-0.14062 0.14062-0.14062 0.11328 0 0.36328 0.19531 0.75 0.57812 0.57031 0.57422 1.0508 1.2578 1.4375 2.0469 0.61328 1.2734 0.92188 2.7305 0.92188 4.375z"/>
|
|
750
|
+
</symbol>
|
|
751
|
+
<symbol id="fu" overflow="visible">
|
|
752
|
+
<path d="m4.2812-8.0625-0.40625 2.0625c-0.21094 0.99219-0.57422 2.2461-1.0938 3.7656-0.13672 0.41797-0.26562 0.77344-0.39062 1.0625-0.51172 1.25-1.0273 1.875-1.5469 1.875-0.33594 0-0.64844-0.09375-0.9375-0.28125-0.20703-0.13672-0.3125-0.28125-0.3125-0.4375 0-0.30078 0.10547-0.58594 0.3125-0.85938 0.074219-0.11328 0.13281-0.17188 0.1875-0.17188 0.039062 0 0.085938 0.027344 0.14062 0.078125 0.28906 0.21875 0.63281 0.34375 1.0312 0.375 0.1875 0 0.35156-0.10938 0.5-0.32812 0.25-0.39453 0.57031-1.2344 0.96875-2.5156 0.5625-1.8828 0.94531-3.7344 1.1562-5.5469 0.03125-0.25 0.082031-0.41406 0.15625-0.5l0.015625-0.015625 0.078125-0.09375c0.23828-0.1875 0.45312-0.28125 0.64062-0.28125 0.10156 0 0.17188 0.042969 0.20312 0.125 0 0.011719 0.066406 0.24219 0.20312 0.6875l0.625 2c0.26953 0.875 0.69531 2.0547 1.2812 3.5312 0.5 1.2109 0.95703 2.125 1.375 2.75l0.75-3.0938c0.61328-2.4883 1.1094-4.2266 1.4844-5.2188l0.0625-0.14062c0.22656-0.55078 0.51953-0.94531 0.875-1.1875v-0.015625c0.44531-0.26953 1.0352-0.40625 1.7656-0.40625 0.16406 0 0.25391 0.03125 0.26562 0.09375v0.015625c0.007813 0.023437 0.015625 0.0625 0.015625 0.125 0 0.24219-0.074219 0.49219-0.21875 0.75-0.085938 0.14844-0.17188 0.23438-0.26562 0.26562-0.042969 0.023438-0.078125 0.03125-0.10938 0.03125-0.89844 0-1.5273 0.16797-1.8906 0.5-0.09375 0.085938-0.23047 0.44922-0.40625 1.0938l-0.45312 1.5781c-0.51172 1.8555-1.0117 3.8711-1.5 6.0469-0.074219 0.30469-0.29688 0.50781-0.67188 0.625-0.10547 0.039062-0.21875 0.0625-0.34375 0.0625-0.78125-1.0312-1.6406-2.875-2.5781-5.5312l-0.29688-0.82812c-0.011719-0.039063-0.027344-0.082031-0.046875-0.125z"/>
|
|
753
|
+
</symbol>
|
|
754
|
+
<symbol id="ft" overflow="visible">
|
|
755
|
+
<path d="m5-4.0938-3.375 3.9844c-0.15625 0.19531-0.3125 0.29688-0.46875 0.29688-0.21094 0-0.34375-0.10156-0.40625-0.29688-0.011719-0.039063-0.015625-0.078125-0.015625-0.10938 0-0.125 0.085937-0.26953 0.26562-0.4375l3.8594-3.8438-1.3594-3.7969c-0.21094-0.5625-0.38281-0.89453-0.51562-1h-0.015625l-0.03125-0.03125h-0.015625c-0.074219-0.03125-0.18359-0.0625-0.32812-0.09375-0.074219 0-0.11719-0.046875-0.125-0.14062 0-0.10156 0.082031-0.15625 0.25-0.15625 0.89453 0 1.4609 0.33594 1.7031 1l2.8594 7.9688c0.11328 0.3125 0.22266 0.52734 0.32812 0.64062 0.039063 0.0625 0.0625 0.10547 0.0625 0.125 0 0.082031-0.054687 0.12891-0.15625 0.14062h-0.3125c-0.29297 0-0.49219-0.046875-0.59375-0.14062-0.054687-0.050781-0.10156-0.10938-0.14062-0.17188-0.074219-0.11328-0.40234-0.98438-0.98438-2.6094-0.19922-0.53906-0.35938-0.98438-0.48438-1.3281z"/>
|
|
756
|
+
</symbol>
|
|
757
|
+
<symbol id="fs" overflow="visible">
|
|
758
|
+
<path d="m3.7031-1.1406c-0.59375 0.86719-1.2734 1.2969-2.0312 1.2969-0.8125 0-1.2969-0.46875-1.4531-1.4062-0.023438-0.1875-0.03125-0.37891-0.03125-0.57812 0-0.83203 0.17578-1.6758 0.53125-2.5312 0.28125-0.65625 0.5625-1.1562 0.84375-1.5 0.09375-0.11328 0.16406-0.17188 0.21875-0.17188 0.11328 0 0.17188 0.058594 0.17188 0.17188 0 0.042969-0.046875 0.13281-0.14062 0.26562-0.79297 1.1172-1.1875 2.1641-1.1875 3.1406 0 0.88672 0.30078 1.4062 0.90625 1.5625 0.10156 0.023437 0.21094 0.03125 0.32812 0.03125 0.63281 0 1.2109-0.35938 1.7344-1.0781 0.070312-0.0625 0.11328-0.1875 0.125-0.375 0.09375-0.67578 0.19141-1.1445 0.29688-1.4062 0.125-0.23828 0.25391-0.35938 0.39062-0.35938 0.17578 0 0.27344 0.10938 0.29688 0.32812 0 0.26172-0.13281 0.72656-0.39062 1.3906-0.023438 0.074219-0.046875 0.13672-0.078125 0.1875-0.054687 0.10547-0.078125 0.17969-0.078125 0.21875 0 0.27344 0.09375 0.53125 0.28125 0.78125 0.16406 0.21094 0.42188 0.3125 0.76562 0.3125 0.71875 0 1.3672-0.38281 1.9531-1.1562 0.47656-0.65625 0.71875-1.2891 0.71875-1.9062 0-0.47656-0.16797-0.88281-0.5-1.2188-0.13672-0.11328-0.20312-0.23828-0.20312-0.375 0-0.22656 0.125-0.42188 0.375-0.57812 0.10156-0.0625 0.21094-0.09375 0.32812-0.09375 0.34375 0 0.53516 0.25 0.57812 0.75 0.007813 0.10547 0.015625 0.1875 0.015625 0.25 0 0.59375-0.14062 1.3281-0.42188 2.2031-0.23047 0.71875-0.52734 1.3359-0.89062 1.8438-0.63672 0.86719-1.3516 1.2969-2.1406 1.2969-0.76172 0-1.1992-0.42969-1.3125-1.2969z"/>
|
|
759
|
+
</symbol>
|
|
760
|
+
<symbol id="fr" overflow="visible">
|
|
761
|
+
<path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
762
|
+
</symbol>
|
|
763
|
+
</defs>
|
|
764
|
+
<rect width="740" height="491" fill="#fff"/>
|
|
765
|
+
<g>
|
|
766
|
+
<use x="10" y="11.53125" xlink:href="#is"/>
|
|
767
|
+
</g>
|
|
768
|
+
<g>
|
|
769
|
+
<use x="27.5" y="22.035156" xlink:href="#ir"/>
|
|
770
|
+
</g>
|
|
771
|
+
<g>
|
|
772
|
+
<use x="34.5" y="22.035156" xlink:href="#ah"/>
|
|
773
|
+
</g>
|
|
774
|
+
<g>
|
|
775
|
+
<use x="45.789062" y="22.035156" xlink:href="#fe"/>
|
|
776
|
+
</g>
|
|
777
|
+
<g>
|
|
778
|
+
<use x="60.566406" y="22.035156" xlink:href="#ek"/>
|
|
779
|
+
</g>
|
|
780
|
+
<g>
|
|
781
|
+
<use x="71.457031" y="22.035156" xlink:href="#iq"/>
|
|
782
|
+
</g>
|
|
783
|
+
<g>
|
|
784
|
+
<use x="78.457031" y="22.035156" xlink:href="#ag"/>
|
|
785
|
+
</g>
|
|
786
|
+
<g>
|
|
787
|
+
<use x="27.5" y="39.808594" xlink:href="#ah"/>
|
|
788
|
+
</g>
|
|
789
|
+
<g>
|
|
790
|
+
<use x="38.011719" y="39.808594" xlink:href="#ip"/>
|
|
791
|
+
</g>
|
|
792
|
+
<g>
|
|
793
|
+
<use x="52.011719" y="39.808594" xlink:href="#io"/>
|
|
794
|
+
</g>
|
|
795
|
+
<g>
|
|
796
|
+
<use x="62.902344" y="39.808594" xlink:href="#ej"/>
|
|
797
|
+
</g>
|
|
798
|
+
<g>
|
|
799
|
+
<use x="77.679688" y="39.808594" xlink:href="#in"/>
|
|
800
|
+
</g>
|
|
801
|
+
<g>
|
|
802
|
+
<use x="84.679688" y="39.808594" xlink:href="#ag"/>
|
|
803
|
+
</g>
|
|
804
|
+
<g>
|
|
805
|
+
<use x="10" y="74.710938" xlink:href="#fd"/>
|
|
806
|
+
</g>
|
|
807
|
+
<g>
|
|
808
|
+
<use x="19.6875" y="76.8125" xlink:href="#dr"/>
|
|
809
|
+
</g>
|
|
810
|
+
<g>
|
|
811
|
+
<use x="24.382812" y="76.8125" xlink:href="#dd"/>
|
|
812
|
+
</g>
|
|
813
|
+
<g>
|
|
814
|
+
<use x="32.003906" y="76.8125" xlink:href="#co"/>
|
|
815
|
+
</g>
|
|
816
|
+
<g>
|
|
817
|
+
<use x="40.488281" y="74.710938" xlink:href="#cd"/>
|
|
818
|
+
</g>
|
|
819
|
+
<g>
|
|
820
|
+
<use x="55.265625" y="50.769531" xlink:href="#bk"/>
|
|
821
|
+
</g>
|
|
822
|
+
<g>
|
|
823
|
+
<use x="66.546875" y="63.382812" xlink:href="#ca"/>
|
|
824
|
+
</g>
|
|
825
|
+
<g>
|
|
826
|
+
<use x="157.085938" y="63.382812" xlink:href="#w"/>
|
|
827
|
+
</g>
|
|
828
|
+
<g>
|
|
829
|
+
<use x="160.972656" y="63.382812" xlink:href="#bz"/>
|
|
830
|
+
</g>
|
|
831
|
+
<g>
|
|
832
|
+
<use x="169.917969" y="63.382812" xlink:href="#r"/>
|
|
833
|
+
</g>
|
|
834
|
+
<g>
|
|
835
|
+
<use x="179.734375" y="63.382812" xlink:href="#ak"/>
|
|
836
|
+
</g>
|
|
837
|
+
<g>
|
|
838
|
+
<use x="193.734375" y="63.382812" xlink:href="#ay"/>
|
|
839
|
+
</g>
|
|
840
|
+
<g>
|
|
841
|
+
<use x="204.96875" y="63.382812" xlink:href="#w"/>
|
|
842
|
+
</g>
|
|
843
|
+
<g>
|
|
844
|
+
<use x="208.855469" y="63.382812" xlink:href="#by"/>
|
|
845
|
+
</g>
|
|
846
|
+
<g>
|
|
847
|
+
<use x="219.046875" y="63.382812" xlink:href="#bx"/>
|
|
848
|
+
</g>
|
|
849
|
+
<g>
|
|
850
|
+
<use x="226.433594" y="63.382812" xlink:href="#v"/>
|
|
851
|
+
</g>
|
|
852
|
+
<g>
|
|
853
|
+
<use x="234.214844" y="63.382812" xlink:href="#v"/>
|
|
854
|
+
</g>
|
|
855
|
+
<g>
|
|
856
|
+
<use x="241.992188" y="63.382812" xlink:href="#ax"/>
|
|
857
|
+
</g>
|
|
858
|
+
<g>
|
|
859
|
+
<use x="66.546875" y="85.261719" xlink:href="#r"/>
|
|
860
|
+
</g>
|
|
861
|
+
<g>
|
|
862
|
+
<use x="73.25" y="85.261719" xlink:href="#bw"/>
|
|
863
|
+
</g>
|
|
864
|
+
<g>
|
|
865
|
+
<use x="79.472656" y="85.261719" xlink:href="#bv"/>
|
|
866
|
+
</g>
|
|
867
|
+
<g>
|
|
868
|
+
<use x="84.917969" y="85.261719" xlink:href="#ak"/>
|
|
869
|
+
</g>
|
|
870
|
+
<g>
|
|
871
|
+
<use x="95.804687" y="85.261719" xlink:href="#cc"/>
|
|
872
|
+
</g>
|
|
873
|
+
<g>
|
|
874
|
+
<use x="102.804687" y="85.261719" xlink:href="#cb"/>
|
|
875
|
+
</g>
|
|
876
|
+
<g>
|
|
877
|
+
<use x="108.25" y="79.480469" xlink:href="#ia"/>
|
|
878
|
+
</g>
|
|
879
|
+
<g>
|
|
880
|
+
<use x="112.0625" y="79.480469" xlink:href="#ho"/>
|
|
881
|
+
</g>
|
|
882
|
+
<g>
|
|
883
|
+
<use x="116.753906" y="79.480469" xlink:href="#gx"/>
|
|
884
|
+
</g>
|
|
885
|
+
<g>
|
|
886
|
+
<use x="124.378906" y="79.480469" xlink:href="#fz"/>
|
|
887
|
+
</g>
|
|
888
|
+
<g>
|
|
889
|
+
<use x="128.972656" y="79.480469" xlink:href="#fq"/>
|
|
890
|
+
</g>
|
|
891
|
+
<g>
|
|
892
|
+
<use x="132.785156" y="79.480469" xlink:href="#fp"/>
|
|
893
|
+
</g>
|
|
894
|
+
<g>
|
|
895
|
+
<use x="137.683594" y="79.480469" xlink:href="#fo"/>
|
|
896
|
+
</g>
|
|
897
|
+
<g>
|
|
898
|
+
<use x="157.085938" y="85.261719" xlink:href="#ai"/>
|
|
899
|
+
</g>
|
|
900
|
+
<g>
|
|
901
|
+
<use x="160.972656" y="85.261719" xlink:href="#fn"/>
|
|
902
|
+
</g>
|
|
903
|
+
<g>
|
|
904
|
+
<use x="169.917969" y="85.261719" xlink:href="#fi"/>
|
|
905
|
+
</g>
|
|
906
|
+
<g>
|
|
907
|
+
<use x="179.734375" y="85.261719" xlink:href="#fc"/>
|
|
908
|
+
</g>
|
|
909
|
+
<g>
|
|
910
|
+
<use x="193.734375" y="85.261719" xlink:href="#fh"/>
|
|
911
|
+
</g>
|
|
912
|
+
<g>
|
|
913
|
+
<use x="204.96875" y="85.261719" xlink:href="#ai"/>
|
|
914
|
+
</g>
|
|
915
|
+
<g>
|
|
916
|
+
<use x="208.855469" y="85.261719" xlink:href="#q"/>
|
|
917
|
+
</g>
|
|
918
|
+
<g>
|
|
919
|
+
<use x="219.046875" y="85.261719" xlink:href="#p"/>
|
|
920
|
+
</g>
|
|
921
|
+
<g>
|
|
922
|
+
<use x="225.269531" y="85.261719" xlink:href="#fm"/>
|
|
923
|
+
</g>
|
|
924
|
+
<g>
|
|
925
|
+
<use x="232.269531" y="85.261719" xlink:href="#p"/>
|
|
926
|
+
</g>
|
|
927
|
+
<g>
|
|
928
|
+
<use x="238.492188" y="85.261719" xlink:href="#fl"/>
|
|
929
|
+
</g>
|
|
930
|
+
<g>
|
|
931
|
+
<use x="246.269531" y="85.261719" xlink:href="#fg"/>
|
|
932
|
+
</g>
|
|
933
|
+
<g>
|
|
934
|
+
<use x="254.824219" y="74.710938" xlink:href="#fk"/>
|
|
935
|
+
</g>
|
|
936
|
+
<g>
|
|
937
|
+
<use x="264.933594" y="74.710938" xlink:href="#fj"/>
|
|
938
|
+
</g>
|
|
939
|
+
<g>
|
|
940
|
+
<use x="271.933594" y="74.710938" xlink:href="#q"/>
|
|
941
|
+
</g>
|
|
942
|
+
<g>
|
|
943
|
+
<use x="277.457031" y="74.710938" xlink:href="#p"/>
|
|
944
|
+
</g>
|
|
945
|
+
<g>
|
|
946
|
+
<use x="283.679688" y="74.710938" xlink:href="#q"/>
|
|
947
|
+
</g>
|
|
948
|
+
<g>
|
|
949
|
+
<use x="10" y="121.378906" xlink:href="#ff"/>
|
|
950
|
+
</g>
|
|
951
|
+
<g>
|
|
952
|
+
<use x="19.6875" y="123.476563" xlink:href="#fb"/>
|
|
953
|
+
</g>
|
|
954
|
+
<g>
|
|
955
|
+
<use x="24.382812" y="123.476562" xlink:href="#fa"/>
|
|
956
|
+
</g>
|
|
957
|
+
<g>
|
|
958
|
+
<use x="32.003906" y="123.476563" xlink:href="#ez"/>
|
|
959
|
+
</g>
|
|
960
|
+
<g>
|
|
961
|
+
<use x="40.488281" y="121.378906" xlink:href="#ey"/>
|
|
962
|
+
</g>
|
|
963
|
+
<g>
|
|
964
|
+
<use x="55.265625" y="97.4375" xlink:href="#ep"/>
|
|
965
|
+
</g>
|
|
966
|
+
<g>
|
|
967
|
+
<use x="66.546875" y="110.050781" xlink:href="#ev"/>
|
|
968
|
+
</g>
|
|
969
|
+
<g>
|
|
970
|
+
<use x="157.085938" y="110.050781" xlink:href="#af"/>
|
|
971
|
+
</g>
|
|
972
|
+
<g>
|
|
973
|
+
<use x="160.972656" y="110.050781" xlink:href="#eu"/>
|
|
974
|
+
</g>
|
|
975
|
+
<g>
|
|
976
|
+
<use x="169.917969" y="110.050781" xlink:href="#ad"/>
|
|
977
|
+
</g>
|
|
978
|
+
<g>
|
|
979
|
+
<use x="179.734375" y="110.050781" xlink:href="#ac"/>
|
|
980
|
+
</g>
|
|
981
|
+
<g>
|
|
982
|
+
<use x="193.734375" y="110.050781" xlink:href="#eo"/>
|
|
983
|
+
</g>
|
|
984
|
+
<g>
|
|
985
|
+
<use x="204.96875" y="110.050781" xlink:href="#af"/>
|
|
986
|
+
</g>
|
|
987
|
+
<g>
|
|
988
|
+
<use x="208.855469" y="110.050781" xlink:href="#et"/>
|
|
989
|
+
</g>
|
|
990
|
+
<g>
|
|
991
|
+
<use x="219.046875" y="110.050781" xlink:href="#es"/>
|
|
992
|
+
</g>
|
|
993
|
+
<g>
|
|
994
|
+
<use x="226.433594" y="110.050781" xlink:href="#ae"/>
|
|
995
|
+
</g>
|
|
996
|
+
<g>
|
|
997
|
+
<use x="234.214844" y="110.050781" xlink:href="#ae"/>
|
|
998
|
+
</g>
|
|
999
|
+
<g>
|
|
1000
|
+
<use x="241.992188" y="110.050781" xlink:href="#en"/>
|
|
1001
|
+
</g>
|
|
1002
|
+
<g>
|
|
1003
|
+
<use x="66.546875" y="131.929688" xlink:href="#ad"/>
|
|
1004
|
+
</g>
|
|
1005
|
+
<g>
|
|
1006
|
+
<use x="73.25" y="131.929688" xlink:href="#er"/>
|
|
1007
|
+
</g>
|
|
1008
|
+
<g>
|
|
1009
|
+
<use x="79.472656" y="131.929688" xlink:href="#eq"/>
|
|
1010
|
+
</g>
|
|
1011
|
+
<g>
|
|
1012
|
+
<use x="84.917969" y="131.929688" xlink:href="#ac"/>
|
|
1013
|
+
</g>
|
|
1014
|
+
<g>
|
|
1015
|
+
<use x="95.804687" y="131.929688" xlink:href="#ex"/>
|
|
1016
|
+
</g>
|
|
1017
|
+
<g>
|
|
1018
|
+
<use x="102.804687" y="131.929688" xlink:href="#ew"/>
|
|
1019
|
+
</g>
|
|
1020
|
+
<g>
|
|
1021
|
+
<use x="108.25" y="126.148438" xlink:href="#em"/>
|
|
1022
|
+
</g>
|
|
1023
|
+
<g>
|
|
1024
|
+
<use x="112.0625" y="126.148438" xlink:href="#el"/>
|
|
1025
|
+
</g>
|
|
1026
|
+
<g>
|
|
1027
|
+
<use x="116.753906" y="126.148438" xlink:href="#ei"/>
|
|
1028
|
+
</g>
|
|
1029
|
+
<g>
|
|
1030
|
+
<use x="124.378906" y="126.148438" xlink:href="#eh"/>
|
|
1031
|
+
</g>
|
|
1032
|
+
<g>
|
|
1033
|
+
<use x="128.972656" y="126.148438" xlink:href="#eg"/>
|
|
1034
|
+
</g>
|
|
1035
|
+
<g>
|
|
1036
|
+
<use x="132.785156" y="126.148438" xlink:href="#ef"/>
|
|
1037
|
+
</g>
|
|
1038
|
+
<g>
|
|
1039
|
+
<use x="137.683594" y="126.148438" xlink:href="#ee"/>
|
|
1040
|
+
</g>
|
|
1041
|
+
<g>
|
|
1042
|
+
<use x="157.085938" y="131.929688" xlink:href="#ab"/>
|
|
1043
|
+
</g>
|
|
1044
|
+
<g>
|
|
1045
|
+
<use x="160.972656" y="131.929688" xlink:href="#ed"/>
|
|
1046
|
+
</g>
|
|
1047
|
+
<g>
|
|
1048
|
+
<use x="169.917969" y="131.929688" xlink:href="#dy"/>
|
|
1049
|
+
</g>
|
|
1050
|
+
<g>
|
|
1051
|
+
<use x="179.734375" y="131.929688" xlink:href="#du"/>
|
|
1052
|
+
</g>
|
|
1053
|
+
<g>
|
|
1054
|
+
<use x="193.734375" y="131.929688" xlink:href="#dx"/>
|
|
1055
|
+
</g>
|
|
1056
|
+
<g>
|
|
1057
|
+
<use x="204.96875" y="131.929688" xlink:href="#ab"/>
|
|
1058
|
+
</g>
|
|
1059
|
+
<g>
|
|
1060
|
+
<use x="208.855469" y="131.929688" xlink:href="#o"/>
|
|
1061
|
+
</g>
|
|
1062
|
+
<g>
|
|
1063
|
+
<use x="219.046875" y="131.929688" xlink:href="#n"/>
|
|
1064
|
+
</g>
|
|
1065
|
+
<g>
|
|
1066
|
+
<use x="225.269531" y="131.929688" xlink:href="#ec"/>
|
|
1067
|
+
</g>
|
|
1068
|
+
<g>
|
|
1069
|
+
<use x="232.269531" y="131.929688" xlink:href="#n"/>
|
|
1070
|
+
</g>
|
|
1071
|
+
<g>
|
|
1072
|
+
<use x="238.492188" y="131.929688" xlink:href="#eb"/>
|
|
1073
|
+
</g>
|
|
1074
|
+
<g>
|
|
1075
|
+
<use x="246.269531" y="131.929688" xlink:href="#dw"/>
|
|
1076
|
+
</g>
|
|
1077
|
+
<g>
|
|
1078
|
+
<use x="254.824219" y="121.378906" xlink:href="#ea"/>
|
|
1079
|
+
</g>
|
|
1080
|
+
<g>
|
|
1081
|
+
<use x="264.933594" y="121.378906" xlink:href="#dz"/>
|
|
1082
|
+
</g>
|
|
1083
|
+
<g>
|
|
1084
|
+
<use x="271.933594" y="121.378906" xlink:href="#o"/>
|
|
1085
|
+
</g>
|
|
1086
|
+
<g>
|
|
1087
|
+
<use x="277.457031" y="121.378906" xlink:href="#n"/>
|
|
1088
|
+
</g>
|
|
1089
|
+
<g>
|
|
1090
|
+
<use x="283.679688" y="121.378906" xlink:href="#o"/>
|
|
1091
|
+
</g>
|
|
1092
|
+
<g>
|
|
1093
|
+
<use x="10" y="164" xlink:href="#dv"/>
|
|
1094
|
+
</g>
|
|
1095
|
+
<g>
|
|
1096
|
+
<use x="19.6875" y="166.097656" xlink:href="#dt"/>
|
|
1097
|
+
</g>
|
|
1098
|
+
<g>
|
|
1099
|
+
<use x="24.382812" y="166.097656" xlink:href="#ds"/>
|
|
1100
|
+
</g>
|
|
1101
|
+
<g>
|
|
1102
|
+
<use x="32.003906" y="166.097656" xlink:href="#dq"/>
|
|
1103
|
+
</g>
|
|
1104
|
+
<g>
|
|
1105
|
+
<use x="40.488281" y="164" xlink:href="#dp"/>
|
|
1106
|
+
</g>
|
|
1107
|
+
<g>
|
|
1108
|
+
<use x="55.265625" y="144.257813" xlink:href="#a"/>
|
|
1109
|
+
</g>
|
|
1110
|
+
<g>
|
|
1111
|
+
<use x="65.765625" y="155.582031" xlink:href="#e"/>
|
|
1112
|
+
</g>
|
|
1113
|
+
<g>
|
|
1114
|
+
<use x="75.878906" y="155.582031" xlink:href="#z"/>
|
|
1115
|
+
</g>
|
|
1116
|
+
<g>
|
|
1117
|
+
<use x="89.878906" y="155.582031" xlink:href="#x"/>
|
|
1118
|
+
</g>
|
|
1119
|
+
<g>
|
|
1120
|
+
<use x="101.769531" y="155.582031" xlink:href="#y"/>
|
|
1121
|
+
</g>
|
|
1122
|
+
<g>
|
|
1123
|
+
<use x="116.546875" y="155.582031" xlink:href="#do"/>
|
|
1124
|
+
</g>
|
|
1125
|
+
<g>
|
|
1126
|
+
<use x="65.765625" y="172.535156" xlink:href="#d"/>
|
|
1127
|
+
</g>
|
|
1128
|
+
<g>
|
|
1129
|
+
<use x="75.878906" y="172.535156" xlink:href="#z"/>
|
|
1130
|
+
</g>
|
|
1131
|
+
<g>
|
|
1132
|
+
<use x="89.878906" y="172.535156" xlink:href="#x"/>
|
|
1133
|
+
</g>
|
|
1134
|
+
<g>
|
|
1135
|
+
<use x="101.769531" y="172.535156" xlink:href="#y"/>
|
|
1136
|
+
</g>
|
|
1137
|
+
<g>
|
|
1138
|
+
<use x="116.546875" y="172.535156" xlink:href="#c"/>
|
|
1139
|
+
</g>
|
|
1140
|
+
<g>
|
|
1141
|
+
<use x="128.214844" y="164" xlink:href="#dn"/>
|
|
1142
|
+
</g>
|
|
1143
|
+
<g>
|
|
1144
|
+
<use x="138.324219" y="164" xlink:href="#b"/>
|
|
1145
|
+
</g>
|
|
1146
|
+
<g>
|
|
1147
|
+
<use x="145.324219" y="164" xlink:href="#aa"/>
|
|
1148
|
+
</g>
|
|
1149
|
+
<g>
|
|
1150
|
+
<use x="150.847656" y="164" xlink:href="#dm"/>
|
|
1151
|
+
</g>
|
|
1152
|
+
<g>
|
|
1153
|
+
<use x="157.070313" y="164" xlink:href="#aa"/>
|
|
1154
|
+
</g>
|
|
1155
|
+
<g>
|
|
1156
|
+
<use x="10" y="182.679688" xlink:href="#a"/>
|
|
1157
|
+
</g>
|
|
1158
|
+
<g>
|
|
1159
|
+
<use x="20.5" y="195.90625" xlink:href="#c"/>
|
|
1160
|
+
</g>
|
|
1161
|
+
<g>
|
|
1162
|
+
<use x="41.5" y="195.90625" xlink:href="#m"/>
|
|
1163
|
+
</g>
|
|
1164
|
+
<g>
|
|
1165
|
+
<use x="20.5" y="210.957031" xlink:href="#d"/>
|
|
1166
|
+
</g>
|
|
1167
|
+
<g>
|
|
1168
|
+
<use x="41.5" y="210.957031" xlink:href="#e"/>
|
|
1169
|
+
</g>
|
|
1170
|
+
<g>
|
|
1171
|
+
<use x="57.832031" y="202.417969" xlink:href="#l"/>
|
|
1172
|
+
</g>
|
|
1173
|
+
<g>
|
|
1174
|
+
<use x="67.359375" y="202.417969" xlink:href="#k"/>
|
|
1175
|
+
</g>
|
|
1176
|
+
<g>
|
|
1177
|
+
<use x="74.75" y="202.417969" xlink:href="#j"/>
|
|
1178
|
+
</g>
|
|
1179
|
+
<g>
|
|
1180
|
+
<use x="82.527344" y="202.417969" xlink:href="#b"/>
|
|
1181
|
+
</g>
|
|
1182
|
+
<g>
|
|
1183
|
+
<use x="89.527344" y="202.417969" xlink:href="#i"/>
|
|
1184
|
+
</g>
|
|
1185
|
+
<g>
|
|
1186
|
+
<use x="94.972656" y="202.417969" xlink:href="#h"/>
|
|
1187
|
+
</g>
|
|
1188
|
+
<g>
|
|
1189
|
+
<use x="98.859375" y="202.417969" xlink:href="#g"/>
|
|
1190
|
+
</g>
|
|
1191
|
+
<g>
|
|
1192
|
+
<use x="105.863281" y="202.417969" xlink:href="#f"/>
|
|
1193
|
+
</g>
|
|
1194
|
+
<g>
|
|
1195
|
+
<use x="10" y="220.945313" xlink:href="#a"/>
|
|
1196
|
+
</g>
|
|
1197
|
+
<g>
|
|
1198
|
+
<use x="27.5" y="234.171875" xlink:href="#c"/>
|
|
1199
|
+
</g>
|
|
1200
|
+
<g>
|
|
1201
|
+
<use x="34.5" y="234.171875" xlink:href="#m"/>
|
|
1202
|
+
</g>
|
|
1203
|
+
<g>
|
|
1204
|
+
<use x="27.5" y="249.222656" xlink:href="#d"/>
|
|
1205
|
+
</g>
|
|
1206
|
+
<g>
|
|
1207
|
+
<use x="34.5" y="249.222656" xlink:href="#e"/>
|
|
1208
|
+
</g>
|
|
1209
|
+
<g>
|
|
1210
|
+
<use x="50.832031" y="240.6875" xlink:href="#l"/>
|
|
1211
|
+
</g>
|
|
1212
|
+
<g>
|
|
1213
|
+
<use x="60.359375" y="240.6875" xlink:href="#k"/>
|
|
1214
|
+
</g>
|
|
1215
|
+
<g>
|
|
1216
|
+
<use x="67.75" y="240.6875" xlink:href="#j"/>
|
|
1217
|
+
</g>
|
|
1218
|
+
<g>
|
|
1219
|
+
<use x="75.527344" y="240.6875" xlink:href="#b"/>
|
|
1220
|
+
</g>
|
|
1221
|
+
<g>
|
|
1222
|
+
<use x="82.527344" y="240.6875" xlink:href="#i"/>
|
|
1223
|
+
</g>
|
|
1224
|
+
<g>
|
|
1225
|
+
<use x="87.972656" y="240.6875" xlink:href="#h"/>
|
|
1226
|
+
</g>
|
|
1227
|
+
<g>
|
|
1228
|
+
<use x="91.863281" y="240.6875" xlink:href="#g"/>
|
|
1229
|
+
</g>
|
|
1230
|
+
<g>
|
|
1231
|
+
<use x="98.863281" y="240.6875" xlink:href="#f"/>
|
|
1232
|
+
</g>
|
|
1233
|
+
<g>
|
|
1234
|
+
<use x="10" y="259.214844" xlink:href="#a"/>
|
|
1235
|
+
</g>
|
|
1236
|
+
<g>
|
|
1237
|
+
<use x="27.5" y="272.4375" xlink:href="#c"/>
|
|
1238
|
+
</g>
|
|
1239
|
+
<g>
|
|
1240
|
+
<use x="48.5" y="272.4375" xlink:href="#m"/>
|
|
1241
|
+
</g>
|
|
1242
|
+
<g>
|
|
1243
|
+
<use x="27.5" y="287.488281" xlink:href="#d"/>
|
|
1244
|
+
</g>
|
|
1245
|
+
<g>
|
|
1246
|
+
<use x="48.5" y="287.488281" xlink:href="#e"/>
|
|
1247
|
+
</g>
|
|
1248
|
+
<g>
|
|
1249
|
+
<use x="57.832031" y="278.953125" xlink:href="#l"/>
|
|
1250
|
+
</g>
|
|
1251
|
+
<g>
|
|
1252
|
+
<use x="67.359375" y="278.953125" xlink:href="#k"/>
|
|
1253
|
+
</g>
|
|
1254
|
+
<g>
|
|
1255
|
+
<use x="74.75" y="278.953125" xlink:href="#j"/>
|
|
1256
|
+
</g>
|
|
1257
|
+
<g>
|
|
1258
|
+
<use x="82.527344" y="278.953125" xlink:href="#b"/>
|
|
1259
|
+
</g>
|
|
1260
|
+
<g>
|
|
1261
|
+
<use x="89.527344" y="278.953125" xlink:href="#i"/>
|
|
1262
|
+
</g>
|
|
1263
|
+
<g>
|
|
1264
|
+
<use x="94.972656" y="278.953125" xlink:href="#h"/>
|
|
1265
|
+
</g>
|
|
1266
|
+
<g>
|
|
1267
|
+
<use x="98.859375" y="278.953125" xlink:href="#g"/>
|
|
1268
|
+
</g>
|
|
1269
|
+
<g>
|
|
1270
|
+
<use x="105.863281" y="278.953125" xlink:href="#f"/>
|
|
1271
|
+
</g>
|
|
1272
|
+
<g>
|
|
1273
|
+
<use x="17" y="325.113281" xlink:href="#dl"/>
|
|
1274
|
+
</g>
|
|
1275
|
+
<g>
|
|
1276
|
+
<use x="28.636719" y="327.214844" xlink:href="#dk"/>
|
|
1277
|
+
</g>
|
|
1278
|
+
<g>
|
|
1279
|
+
<use x="36.765625" y="325.113281" xlink:href="#dj"/>
|
|
1280
|
+
</g>
|
|
1281
|
+
<g>
|
|
1282
|
+
<use x="57.425781" y="315.644531" xlink:href="#di"/>
|
|
1283
|
+
</g>
|
|
1284
|
+
<path transform="matrix(14 0 0 14 -1.3478e-5 -1.9522e-5)" d="m3.8019 22.972h1.1002" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
1285
|
+
<g>
|
|
1286
|
+
<use x="53.226562" y="334.71875" xlink:href="#dh"/>
|
|
1287
|
+
</g>
|
|
1288
|
+
<g>
|
|
1289
|
+
<use x="60.226562" y="334.71875" xlink:href="#dg"/>
|
|
1290
|
+
</g>
|
|
1291
|
+
<g>
|
|
1292
|
+
<use x="79.8125" y="306.214844" xlink:href="#df"/>
|
|
1293
|
+
</g>
|
|
1294
|
+
<g>
|
|
1295
|
+
<use x="72.640625" y="310.414063" xlink:href="#de"/>
|
|
1296
|
+
</g>
|
|
1297
|
+
<g>
|
|
1298
|
+
<use x="74.933594" y="340.554688" xlink:href="#dc"/>
|
|
1299
|
+
</g>
|
|
1300
|
+
<g>
|
|
1301
|
+
<use x="78.050781" y="340.554688" xlink:href="#db"/>
|
|
1302
|
+
</g>
|
|
1303
|
+
<g>
|
|
1304
|
+
<use x="85.671875" y="340.554688" xlink:href="#da"/>
|
|
1305
|
+
</g>
|
|
1306
|
+
<g>
|
|
1307
|
+
<use x="92.863281" y="325.113281" xlink:href="#cz"/>
|
|
1308
|
+
</g>
|
|
1309
|
+
<g>
|
|
1310
|
+
<use x="98.308594" y="325.113281" xlink:href="#cw"/>
|
|
1311
|
+
</g>
|
|
1312
|
+
<g>
|
|
1313
|
+
<use x="109.199219" y="325.113281" xlink:href="#cy"/>
|
|
1314
|
+
</g>
|
|
1315
|
+
<g>
|
|
1316
|
+
<use x="116.199219" y="325.113281" xlink:href="#cx"/>
|
|
1317
|
+
</g>
|
|
1318
|
+
<g>
|
|
1319
|
+
<use x="121.640625" y="319.335938" xlink:href="#cv"/>
|
|
1320
|
+
</g>
|
|
1321
|
+
<g>
|
|
1322
|
+
<use x="125.066406" y="325.113281" xlink:href="#cu"/>
|
|
1323
|
+
</g>
|
|
1324
|
+
<g>
|
|
1325
|
+
<use x="130.511719" y="325.113281" xlink:href="#cs"/>
|
|
1326
|
+
</g>
|
|
1327
|
+
<g>
|
|
1328
|
+
<use x="142.023438" y="325.113281" xlink:href="#cq"/>
|
|
1329
|
+
</g>
|
|
1330
|
+
<g>
|
|
1331
|
+
<use x="156.023438" y="325.113281" xlink:href="#cr"/>
|
|
1332
|
+
</g>
|
|
1333
|
+
<g>
|
|
1334
|
+
<use x="160.476563" y="325.113281" xlink:href="#ct"/>
|
|
1335
|
+
</g>
|
|
1336
|
+
<g>
|
|
1337
|
+
<use x="165.921875" y="319.335938" xlink:href="#cp"/>
|
|
1338
|
+
</g>
|
|
1339
|
+
<g>
|
|
1340
|
+
<use x="170.851563" y="319.335938" xlink:href="#cn"/>
|
|
1341
|
+
</g>
|
|
1342
|
+
<g>
|
|
1343
|
+
<use x="178.476563" y="319.335938" xlink:href="#cm"/>
|
|
1344
|
+
</g>
|
|
1345
|
+
<g>
|
|
1346
|
+
<use x="199.609375" y="310.414063" xlink:href="#cl"/>
|
|
1347
|
+
</g>
|
|
1348
|
+
<g>
|
|
1349
|
+
<use x="186.207031" y="340.554688" xlink:href="#ck"/>
|
|
1350
|
+
</g>
|
|
1351
|
+
<g>
|
|
1352
|
+
<use x="189.132813" y="342.023438" xlink:href="#cj"/>
|
|
1353
|
+
</g>
|
|
1354
|
+
<g>
|
|
1355
|
+
<use x="192.632813" y="340.554688" xlink:href="#ci"/>
|
|
1356
|
+
</g>
|
|
1357
|
+
<g>
|
|
1358
|
+
<use x="200.253906" y="340.554688" xlink:href="#ch"/>
|
|
1359
|
+
</g>
|
|
1360
|
+
<g>
|
|
1361
|
+
<use x="202.976563" y="340.554688" xlink:href="#cg"/>
|
|
1362
|
+
</g>
|
|
1363
|
+
<g>
|
|
1364
|
+
<use x="205.699219" y="340.554688" xlink:href="#cf"/>
|
|
1365
|
+
</g>
|
|
1366
|
+
<g>
|
|
1367
|
+
<use x="208.421875" y="340.554688" xlink:href="#ce"/>
|
|
1368
|
+
</g>
|
|
1369
|
+
<g>
|
|
1370
|
+
<use x="216.042969" y="340.554688" xlink:href="#bu"/>
|
|
1371
|
+
</g>
|
|
1372
|
+
<g>
|
|
1373
|
+
<use x="218.96875" y="342.023438" xlink:href="#bt"/>
|
|
1374
|
+
</g>
|
|
1375
|
+
<g>
|
|
1376
|
+
<use x="222.488281" y="340.554688" xlink:href="#bs"/>
|
|
1377
|
+
</g>
|
|
1378
|
+
<g>
|
|
1379
|
+
<use x="230.113281" y="340.554688" xlink:href="#br"/>
|
|
1380
|
+
</g>
|
|
1381
|
+
<g>
|
|
1382
|
+
<use x="242.042969" y="305.554688" xlink:href="#bq"/>
|
|
1383
|
+
</g>
|
|
1384
|
+
<g>
|
|
1385
|
+
<use x="235.5625" y="310.414063" xlink:href="#bp"/>
|
|
1386
|
+
</g>
|
|
1387
|
+
<g>
|
|
1388
|
+
<use x="236.558594" y="340.210938" xlink:href="#bo"/>
|
|
1389
|
+
</g>
|
|
1390
|
+
<g>
|
|
1391
|
+
<use x="239.933594" y="340.210938" xlink:href="#bn"/>
|
|
1392
|
+
</g>
|
|
1393
|
+
<g>
|
|
1394
|
+
<use x="247.554688" y="340.210938" xlink:href="#bm"/>
|
|
1395
|
+
</g>
|
|
1396
|
+
<g>
|
|
1397
|
+
<use x="255.785156" y="305.375" xlink:href="#bl"/>
|
|
1398
|
+
</g>
|
|
1399
|
+
<g>
|
|
1400
|
+
<use x="267.769531" y="315.644531" xlink:href="#bj"/>
|
|
1401
|
+
</g>
|
|
1402
|
+
<g>
|
|
1403
|
+
<use x="276.171875" y="317.742188" xlink:href="#bi"/>
|
|
1404
|
+
</g>
|
|
1405
|
+
<g>
|
|
1406
|
+
<use x="269.882813" y="334.71875" xlink:href="#bh"/>
|
|
1407
|
+
</g>
|
|
1408
|
+
<g>
|
|
1409
|
+
<use x="274.0625" y="336.816406" xlink:href="#bg"/>
|
|
1410
|
+
</g>
|
|
1411
|
+
<g>
|
|
1412
|
+
<use x="281.230469" y="305.375" xlink:href="#bf"/>
|
|
1413
|
+
</g>
|
|
1414
|
+
<g>
|
|
1415
|
+
<use x="50.765625" y="375.992188" xlink:href="#be"/>
|
|
1416
|
+
</g>
|
|
1417
|
+
<g>
|
|
1418
|
+
<use x="54.65625" y="375.992188" xlink:href="#bd"/>
|
|
1419
|
+
</g>
|
|
1420
|
+
<g>
|
|
1421
|
+
<use x="58.546875" y="375.992188" xlink:href="#t"/>
|
|
1422
|
+
</g>
|
|
1423
|
+
<g>
|
|
1424
|
+
<use x="63.988281" y="375.992188" xlink:href="#s"/>
|
|
1425
|
+
</g>
|
|
1426
|
+
<g>
|
|
1427
|
+
<use x="75.503906" y="375.992188" xlink:href="#u"/>
|
|
1428
|
+
</g>
|
|
1429
|
+
<g>
|
|
1430
|
+
<use x="89.503906" y="375.992188" xlink:href="#bb"/>
|
|
1431
|
+
</g>
|
|
1432
|
+
<g>
|
|
1433
|
+
<use x="93.957031" y="375.992188" xlink:href="#bc"/>
|
|
1434
|
+
</g>
|
|
1435
|
+
<g>
|
|
1436
|
+
<use x="102.511719" y="375.992188" xlink:href="#u"/>
|
|
1437
|
+
</g>
|
|
1438
|
+
<g>
|
|
1439
|
+
<use x="116.511719" y="375.992188" xlink:href="#t"/>
|
|
1440
|
+
</g>
|
|
1441
|
+
<g>
|
|
1442
|
+
<use x="121.957031" y="375.992188" xlink:href="#s"/>
|
|
1443
|
+
</g>
|
|
1444
|
+
<g>
|
|
1445
|
+
<use x="130.359375" y="378.09375" xlink:href="#ba"/>
|
|
1446
|
+
</g>
|
|
1447
|
+
<g>
|
|
1448
|
+
<use x="136.847656" y="375.992188" xlink:href="#az"/>
|
|
1449
|
+
</g>
|
|
1450
|
+
<g>
|
|
1451
|
+
<use x="150.847656" y="375.992188" xlink:href="#aw"/>
|
|
1452
|
+
</g>
|
|
1453
|
+
<g>
|
|
1454
|
+
<use x="155.023438" y="378.09375" xlink:href="#av"/>
|
|
1455
|
+
</g>
|
|
1456
|
+
<g>
|
|
1457
|
+
<use x="158.402344" y="375.992188" xlink:href="#au"/>
|
|
1458
|
+
</g>
|
|
1459
|
+
<g>
|
|
1460
|
+
<use x="163.847656" y="375.992188" xlink:href="#at"/>
|
|
1461
|
+
</g>
|
|
1462
|
+
<g>
|
|
1463
|
+
<use x="167.734375" y="370.210938" xlink:href="#as"/>
|
|
1464
|
+
</g>
|
|
1465
|
+
<g>
|
|
1466
|
+
<use x="173.617188" y="371.683594" xlink:href="#ar"/>
|
|
1467
|
+
</g>
|
|
1468
|
+
<g>
|
|
1469
|
+
<use x="176.027344" y="370.210938" xlink:href="#aq"/>
|
|
1470
|
+
</g>
|
|
1471
|
+
<g>
|
|
1472
|
+
<use x="183.652344" y="370.210938" xlink:href="#ap"/>
|
|
1473
|
+
</g>
|
|
1474
|
+
<g>
|
|
1475
|
+
<use x="186.574219" y="371.683594" xlink:href="#ao"/>
|
|
1476
|
+
</g>
|
|
1477
|
+
<g>
|
|
1478
|
+
<use x="192.597656" y="375.992188" xlink:href="#an"/>
|
|
1479
|
+
</g>
|
|
1480
|
+
<g>
|
|
1481
|
+
<use x="199.597656" y="360.453125" xlink:href="#al"/>
|
|
1482
|
+
</g>
|
|
1483
|
+
<g>
|
|
1484
|
+
<use x="206.207031" y="375.992188" xlink:href="#im"/>
|
|
1485
|
+
</g>
|
|
1486
|
+
<g>
|
|
1487
|
+
<use x="211.652344" y="375.992188" xlink:href="#ik"/>
|
|
1488
|
+
</g>
|
|
1489
|
+
<g>
|
|
1490
|
+
<use x="223.167969" y="375.992188" xlink:href="#am"/>
|
|
1491
|
+
</g>
|
|
1492
|
+
<g>
|
|
1493
|
+
<use x="237.167969" y="375.992188" xlink:href="#ij"/>
|
|
1494
|
+
</g>
|
|
1495
|
+
<g>
|
|
1496
|
+
<use x="241.621094" y="375.992188" xlink:href="#il"/>
|
|
1497
|
+
</g>
|
|
1498
|
+
<g>
|
|
1499
|
+
<use x="247.066406" y="370.210938" xlink:href="#ii"/>
|
|
1500
|
+
</g>
|
|
1501
|
+
<g>
|
|
1502
|
+
<use x="255.578125" y="375.992188" xlink:href="#ih"/>
|
|
1503
|
+
</g>
|
|
1504
|
+
<g>
|
|
1505
|
+
<use x="277.222656" y="356.433594" xlink:href="#ig"/>
|
|
1506
|
+
</g>
|
|
1507
|
+
<g>
|
|
1508
|
+
<use x="269.578125" y="361.292969" xlink:href="#if"/>
|
|
1509
|
+
</g>
|
|
1510
|
+
<g>
|
|
1511
|
+
<use x="271.128906" y="391.089844" xlink:href="#ie"/>
|
|
1512
|
+
</g>
|
|
1513
|
+
<g>
|
|
1514
|
+
<use x="275.726563" y="391.089844" xlink:href="#id"/>
|
|
1515
|
+
</g>
|
|
1516
|
+
<g>
|
|
1517
|
+
<use x="283.347656" y="391.089844" xlink:href="#ic"/>
|
|
1518
|
+
</g>
|
|
1519
|
+
<g>
|
|
1520
|
+
<use x="289.796875" y="375.992188" xlink:href="#ib"/>
|
|
1521
|
+
</g>
|
|
1522
|
+
<g>
|
|
1523
|
+
<use x="295.242188" y="375.992188" xlink:href="#hz"/>
|
|
1524
|
+
</g>
|
|
1525
|
+
<g>
|
|
1526
|
+
<use x="303.644531" y="378.09375" xlink:href="#hy"/>
|
|
1527
|
+
</g>
|
|
1528
|
+
<g>
|
|
1529
|
+
<use x="310.132813" y="375.992188" xlink:href="#hx"/>
|
|
1530
|
+
</g>
|
|
1531
|
+
<g>
|
|
1532
|
+
<use x="324.132813" y="375.992188" xlink:href="#hw"/>
|
|
1533
|
+
</g>
|
|
1534
|
+
<g>
|
|
1535
|
+
<use x="328.3125" y="378.09375" xlink:href="#hv"/>
|
|
1536
|
+
</g>
|
|
1537
|
+
<g>
|
|
1538
|
+
<use x="331.6875" y="375.992188" xlink:href="#hu"/>
|
|
1539
|
+
</g>
|
|
1540
|
+
<g>
|
|
1541
|
+
<use x="337.132813" y="370.210938" xlink:href="#ht"/>
|
|
1542
|
+
</g>
|
|
1543
|
+
<g>
|
|
1544
|
+
<use x="342.53125" y="360.453125" xlink:href="#hs"/>
|
|
1545
|
+
</g>
|
|
1546
|
+
<g>
|
|
1547
|
+
<use x="349.144531" y="375.992188" xlink:href="#hr"/>
|
|
1548
|
+
</g>
|
|
1549
|
+
<g>
|
|
1550
|
+
<use x="295.605469" y="416.316406" xlink:href="#hq"/>
|
|
1551
|
+
</g>
|
|
1552
|
+
<g>
|
|
1553
|
+
<use x="306.105469" y="418.414063" xlink:href="#hp"/>
|
|
1554
|
+
</g>
|
|
1555
|
+
<g>
|
|
1556
|
+
<use x="314.117188" y="416.316406" xlink:href="#hn"/>
|
|
1557
|
+
</g>
|
|
1558
|
+
<g>
|
|
1559
|
+
<use x="328.894531" y="416.316406" xlink:href="#hm"/>
|
|
1560
|
+
</g>
|
|
1561
|
+
<g>
|
|
1562
|
+
<use x="340.140625" y="418.414063" xlink:href="#hl"/>
|
|
1563
|
+
</g>
|
|
1564
|
+
<g>
|
|
1565
|
+
<use x="345.042969" y="416.316406" xlink:href="#hk"/>
|
|
1566
|
+
</g>
|
|
1567
|
+
<g>
|
|
1568
|
+
<use x="350.484375" y="416.316406" xlink:href="#hh"/>
|
|
1569
|
+
</g>
|
|
1570
|
+
<g>
|
|
1571
|
+
<use x="358.652344" y="416.316406" xlink:href="#hj"/>
|
|
1572
|
+
</g>
|
|
1573
|
+
<g>
|
|
1574
|
+
<use x="364.875" y="416.316406" xlink:href="#hi"/>
|
|
1575
|
+
</g>
|
|
1576
|
+
<g>
|
|
1577
|
+
<use x="374.988281" y="410.535156" xlink:href="#hg"/>
|
|
1578
|
+
</g>
|
|
1579
|
+
<g>
|
|
1580
|
+
<use x="378.179688" y="416.316406" xlink:href="#hf"/>
|
|
1581
|
+
</g>
|
|
1582
|
+
<g>
|
|
1583
|
+
<use x="386.738281" y="416.316406" xlink:href="#hb"/>
|
|
1584
|
+
</g>
|
|
1585
|
+
<g>
|
|
1586
|
+
<use x="400.738281" y="416.316406" xlink:href="#ha"/>
|
|
1587
|
+
</g>
|
|
1588
|
+
<g>
|
|
1589
|
+
<use x="409.078125" y="416.316406" xlink:href="#he"/>
|
|
1590
|
+
</g>
|
|
1591
|
+
<g>
|
|
1592
|
+
<use x="414.523438" y="416.316406" xlink:href="#gz"/>
|
|
1593
|
+
</g>
|
|
1594
|
+
<g>
|
|
1595
|
+
<use x="422.691406" y="416.316406" xlink:href="#hd"/>
|
|
1596
|
+
</g>
|
|
1597
|
+
<g>
|
|
1598
|
+
<use x="428.910156" y="416.316406" xlink:href="#hc"/>
|
|
1599
|
+
</g>
|
|
1600
|
+
<g>
|
|
1601
|
+
<use x="439.023438" y="410.535156" xlink:href="#gy"/>
|
|
1602
|
+
</g>
|
|
1603
|
+
<g>
|
|
1604
|
+
<use x="442.21875" y="416.316406" xlink:href="#gw"/>
|
|
1605
|
+
</g>
|
|
1606
|
+
<g>
|
|
1607
|
+
<use x="447.664063" y="416.316406" xlink:href="#gv"/>
|
|
1608
|
+
</g>
|
|
1609
|
+
<g>
|
|
1610
|
+
<use x="295.605469" y="437.066406" xlink:href="#gu"/>
|
|
1611
|
+
</g>
|
|
1612
|
+
<g>
|
|
1613
|
+
<use x="306.105469" y="439.167969" xlink:href="#gt"/>
|
|
1614
|
+
</g>
|
|
1615
|
+
<g>
|
|
1616
|
+
<use x="314.117188" y="437.066406" xlink:href="#gs"/>
|
|
1617
|
+
</g>
|
|
1618
|
+
<g>
|
|
1619
|
+
<use x="328.894531" y="437.066406" xlink:href="#go"/>
|
|
1620
|
+
</g>
|
|
1621
|
+
<g>
|
|
1622
|
+
<use x="337.234375" y="437.066406" xlink:href="#gr"/>
|
|
1623
|
+
</g>
|
|
1624
|
+
<g>
|
|
1625
|
+
<use x="342.679688" y="437.066406" xlink:href="#gn"/>
|
|
1626
|
+
</g>
|
|
1627
|
+
<g>
|
|
1628
|
+
<use x="350.847656" y="437.066406" xlink:href="#gq"/>
|
|
1629
|
+
</g>
|
|
1630
|
+
<g>
|
|
1631
|
+
<use x="357.066406" y="437.066406" xlink:href="#gp"/>
|
|
1632
|
+
</g>
|
|
1633
|
+
<g>
|
|
1634
|
+
<use x="367.179688" y="431.289063" xlink:href="#gm"/>
|
|
1635
|
+
</g>
|
|
1636
|
+
<g>
|
|
1637
|
+
<use x="370.375" y="437.066406" xlink:href="#aj"/>
|
|
1638
|
+
</g>
|
|
1639
|
+
<g>
|
|
1640
|
+
<use x="378.929688" y="437.066406" xlink:href="#gf"/>
|
|
1641
|
+
</g>
|
|
1642
|
+
<g>
|
|
1643
|
+
<use x="392.929688" y="437.066406" xlink:href="#ge"/>
|
|
1644
|
+
</g>
|
|
1645
|
+
<g>
|
|
1646
|
+
<use x="401.273438" y="437.066406" xlink:href="#gl"/>
|
|
1647
|
+
</g>
|
|
1648
|
+
<g>
|
|
1649
|
+
<use x="406.714844" y="437.066406" xlink:href="#gd"/>
|
|
1650
|
+
</g>
|
|
1651
|
+
<g>
|
|
1652
|
+
<use x="414.882813" y="437.066406" xlink:href="#gk"/>
|
|
1653
|
+
</g>
|
|
1654
|
+
<g>
|
|
1655
|
+
<use x="421.105469" y="437.066406" xlink:href="#gj"/>
|
|
1656
|
+
</g>
|
|
1657
|
+
<g>
|
|
1658
|
+
<use x="431.214844" y="437.066406" xlink:href="#aj"/>
|
|
1659
|
+
</g>
|
|
1660
|
+
<g>
|
|
1661
|
+
<use x="436.660156" y="437.066406" xlink:href="#gc"/>
|
|
1662
|
+
</g>
|
|
1663
|
+
<g>
|
|
1664
|
+
<use x="10" y="456.316406" xlink:href="#gi"/>
|
|
1665
|
+
</g>
|
|
1666
|
+
<g>
|
|
1667
|
+
<use x="17" y="456.316406" xlink:href="#gh"/>
|
|
1668
|
+
</g>
|
|
1669
|
+
<g>
|
|
1670
|
+
<use x="24.777344" y="456.316406" xlink:href="#gg"/>
|
|
1671
|
+
</g>
|
|
1672
|
+
<g>
|
|
1673
|
+
<use x="295.605469" y="472.84375" xlink:href="#gb"/>
|
|
1674
|
+
</g>
|
|
1675
|
+
<g>
|
|
1676
|
+
<use x="306.105469" y="474.945313" xlink:href="#ga"/>
|
|
1677
|
+
</g>
|
|
1678
|
+
<g>
|
|
1679
|
+
<use x="314.117188" y="472.84375" xlink:href="#fy"/>
|
|
1680
|
+
</g>
|
|
1681
|
+
<g>
|
|
1682
|
+
<use x="328.894531" y="472.84375" xlink:href="#fu"/>
|
|
1683
|
+
</g>
|
|
1684
|
+
<g>
|
|
1685
|
+
<use x="340.378906" y="472.84375" xlink:href="#fx"/>
|
|
1686
|
+
</g>
|
|
1687
|
+
<g>
|
|
1688
|
+
<use x="345.824219" y="472.84375" xlink:href="#ft"/>
|
|
1689
|
+
</g>
|
|
1690
|
+
<g>
|
|
1691
|
+
<use x="353.992188" y="472.84375" xlink:href="#fw"/>
|
|
1692
|
+
</g>
|
|
1693
|
+
<g>
|
|
1694
|
+
<use x="360.214844" y="472.84375" xlink:href="#fs"/>
|
|
1695
|
+
</g>
|
|
1696
|
+
<g>
|
|
1697
|
+
<use x="368.929688" y="472.84375" xlink:href="#fv"/>
|
|
1698
|
+
</g>
|
|
1699
|
+
<g>
|
|
1700
|
+
<use x="374.371094" y="472.84375" xlink:href="#fr"/>
|
|
1701
|
+
</g>
|
|
1702
|
+
</svg>
|