@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,1259 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="244pt" height="293pt" version="1.1" viewBox="0 0 244 293" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="fd" overflow="visible">
|
|
5
|
+
<path d="m3.1406-4.9375h1.5469c1.5625-0.09375 2.3633-0.79688 2.4062-2.1094 0-1.1133-0.50781-1.7734-1.5156-1.9844-0.30469-0.0625-0.74219-0.09375-1.3125-0.09375-0.46094 0-0.73438 0.011719-0.82812 0.03125-0.17969 0.023438-0.27344 0.11719-0.28125 0.28125l-0.015625 0.015625zm2.9531 0.17188c0.91406 0.32422 1.4844 0.86719 1.7031 1.625l0.1875 1.125c0.13281 0.9375 0.27344 1.5117 0.42188 1.7188 0.0625 0.085937 0.12891 0.15234 0.20312 0.20312 0.10156 0.0625 0.22266 0.09375 0.35938 0.09375 0.40625 0 0.6875-0.25 0.84375-0.75 0.039062-0.14453 0.066406-0.3125 0.078125-0.5 0.019531-0.13281 0.078125-0.20703 0.17188-0.21875 0.125 0 0.1875 0.078125 0.1875 0.23438 0 0.4375-0.13672 0.82031-0.40625 1.1406-0.042969 0.042969-0.085938 0.085938-0.125 0.125-0.21875 0.1875-0.48438 0.28125-0.79688 0.28125-0.73047 0-1.3203-0.19922-1.7656-0.59375-0.34375-0.3125-0.53125-0.75391-0.5625-1.3281-0.011719-0.20703-0.015625-0.42969-0.015625-0.67188 0-0.6875-0.058594-1.1484-0.17188-1.3906-0.074219-0.16406-0.19531-0.32812-0.35938-0.48438-0.32422-0.32031-0.75781-0.48438-1.2969-0.48438h-1.6094v3.5469c0 0.28125 0.050781 0.46094 0.15625 0.53125 0.13281 0.085938 0.44531 0.125 0.9375 0.125h0.34375v0.4375c-0.33594-0.03125-1.0156-0.046875-2.0469-0.046875-1.0234 0-1.7031 0.015625-2.0469 0.046875v-0.4375h0.34375c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039062-0.0625 0.0625-0.20312 0.0625-0.42188v-7.375c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.13672-0.082031-0.44922-0.125-0.9375-0.125h-0.34375v-0.4375h4.4062c1.1641 0 2.1133 0.32031 2.8438 0.95312 0.53906 0.46875 0.8125 0.99219 0.8125 1.5625 0 0.71875-0.42188 1.3242-1.2656 1.8125-0.35547 0.21094-0.75 0.36719-1.1875 0.46875z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="o" overflow="visible">
|
|
8
|
+
<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"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="l" overflow="visible">
|
|
11
|
+
<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"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="e" overflow="visible">
|
|
14
|
+
<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"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="d" overflow="visible">
|
|
17
|
+
<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"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="g" overflow="visible">
|
|
20
|
+
<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"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="ex" overflow="visible">
|
|
23
|
+
<path d="m8.2969-0.875c-0.36719 0.625-1.0312 1.0039-2 1.1406-0.21094 0.03125-0.41406 0.046875-0.60938 0.046875-1.293 0-2.4062-0.45703-3.3438-1.375-0.96875-0.9375-1.4922-2.0859-1.5625-3.4531v-0.26562c0-1.3945 0.47266-2.5859 1.4219-3.5781 0.88281-0.9375 1.9453-1.4375 3.1875-1.5 0.082031-0.007813 0.17188-0.015625 0.26562-0.015625 0.90625 0 1.7266 0.35938 2.4688 1.0781l0.015625 0.015625v0.015625l0.10938 0.09375 0.70312-1.0312c0.070313-0.11328 0.14453-0.17188 0.21875-0.17188 0.09375 0.085938 0.14453 0.19922 0.15625 0.34375v3.3125c0 0.19922-0.03125 0.30859-0.09375 0.32812-0.023437 0.011719-0.070313 0.015625-0.14062 0.015625-0.11719 0-0.18359-0.039062-0.20312-0.125 0-0.019531-0.007813-0.0625-0.015625-0.125-0.17969-1.2812-0.68359-2.2188-1.5156-2.8125-0.46875-0.33203-0.98047-0.5-1.5312-0.5-0.80469 0-1.5156 0.26172-2.1406 0.78125-0.16797 0.13672-0.32031 0.28906-0.45312 0.45312-0.67969 0.8125-1.0156 1.9531-1.0156 3.4219 0 2.1562 0.70312 3.5859 2.1094 4.2812 0.50781 0.25 1.0352 0.375 1.5781 0.375 0.69531 0 1.2539-0.17578 1.6719-0.53125 0.33203-0.28906 0.5-0.67578 0.5-1.1562v-0.90625c0-0.28125-0.0625-0.45703-0.1875-0.53125h-0.015625c-0.14844-0.09375-0.51172-0.14062-1.0938-0.14062h-0.45312v-0.4375c0.33203 0.03125 1.082 0.046875 2.25 0.046875 0.10156 0 0.67578-0.015625 1.7188-0.046875v0.4375c-0.52344 0-0.82422 0.058594-0.90625 0.17188v0.015625c-0.042969 0.0625-0.0625 0.21094-0.0625 0.4375v2.4219c0 0.21094-0.042969 0.32031-0.125 0.32812-0.125 0-0.35156-0.1875-0.67188-0.5625-0.10547-0.11328-0.18359-0.21094-0.23438-0.29688z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="i" overflow="visible">
|
|
26
|
+
<path d="m2.4062-1.0938c0 0.29297 0.054688 0.46875 0.17188 0.53125l0.015625 0.015625c0.125 0.074219 0.41406 0.10938 0.875 0.10938h0.29688v0.4375c-0.375-0.03125-0.96875-0.046875-1.7812-0.046875 0.03125 0-0.5 0.015625-1.5938 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-3.75c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.11719-0.070313-0.32031-0.10938-0.60938-0.10938h-0.28125v-0.4375l1.9531-0.15625v1.5469c0.25-0.78906 0.66016-1.2852 1.2344-1.4844 0.15625-0.039062 0.31641-0.0625 0.48438-0.0625 0.4375 0 0.75 0.16406 0.9375 0.48438 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.32422-0.15234 0.52344-0.45312 0.59375-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.29297 0-0.48047-0.125-0.5625-0.375-0.03125-0.0625-0.046875-0.13281-0.046875-0.21875 0-0.25781 0.10938-0.44141 0.32812-0.54688-0.023438-0.007813-0.074219-0.015625-0.15625-0.015625-0.625 0-1.0898 0.38281-1.3906 1.1406-0.17969 0.4375-0.26562 0.93359-0.26562 1.4844z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="k" overflow="visible">
|
|
29
|
+
<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"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="au" overflow="visible">
|
|
32
|
+
<path d="m4.0156-3.6875 1.7812 2.5156c0.3125 0.4375 0.63281 0.67969 0.96875 0.71875 0.082031 0.011719 0.21094 0.015625 0.39062 0.015625v0.4375c-0.40625-0.03125-0.8125-0.046875-1.2188-0.046875-0.23047 0-0.73438 0.015625-1.5156 0.046875v-0.4375c0.33203 0 0.5-0.10156 0.5-0.3125 0-0.15625-0.375-0.75391-1.125-1.7969 0.28906 0.41797 0.125 0.1875-0.5-0.6875l-0.03125-0.046875-0.90625 0.78125v1.4375c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.55469-0.03125-1.0625-0.046875-1.5312-0.046875-0.09375 0-0.60547 0.015625-1.5312 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-7.2812c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.10547-0.050781-0.28906-0.085937-0.54688-0.10938h-0.34375v-0.4375l2.0156-0.15625v6.7188l1.9688-1.7031c0.20703-0.17578 0.3125-0.35938 0.3125-0.54688s-0.10547-0.30078-0.3125-0.34375h-0.09375v-0.4375c0.39453 0.03125 0.92188 0.046875 1.5781 0.046875 0.375 0 0.69531-0.015625 0.96875-0.046875v0.4375c-0.58594 0.023438-1.1719 0.27344-1.7656 0.75-0.53125 0.41797-0.89844 0.74219-1.0938 0.96875l-0.03125 0.03125z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="at" overflow="visible">
|
|
35
|
+
<path d="m3.1094-5.125h2.0312c0.90625 0 1.5547-0.34766 1.9531-1.0469 0.1875-0.32031 0.28125-0.66406 0.28125-1.0312 0-0.5625-0.19531-1.0391-0.57812-1.4375-0.33594-0.32031-0.75781-0.48438-1.2656-0.48438h-1.7344c-0.36719 0-0.57812 0.058594-0.64062 0.17188v0.015625c-0.03125 0.0625-0.046875 0.1875-0.046875 0.375zm3.2969 0.125c0.95703 0.10547 1.6953 0.48047 2.2188 1.125 0.32031 0.39844 0.48438 0.83594 0.48438 1.3125 0 0.74219-0.32422 1.3594-0.96875 1.8594-0.59375 0.46875-1.3125 0.70312-2.1562 0.70312h-5.4844v-0.4375h0.34375c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039063-0.0625 0.0625-0.20312 0.0625-0.42188v-7.375c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.13672-0.082031-0.44922-0.125-0.9375-0.125h-0.34375v-0.4375h5.125c1.0391 0 1.875 0.32031 2.5 0.95312 0.40625 0.42969 0.60938 0.89844 0.60938 1.4062 0 0.6875-0.35156 1.2578-1.0469 1.7031-0.375 0.24219-0.80469 0.40625-1.2812 0.5zm-0.85938 4.5625c0.83203 0 1.4531-0.34375 1.8594-1.0312 0.20703-0.34375 0.3125-0.71094 0.3125-1.1094 0-0.66406-0.21875-1.2227-0.65625-1.6719-0.34375-0.375-0.78906-0.5625-1.3281-0.5625h-2.625v3.8125c0 0.28125 0.050781 0.44922 0.15625 0.5h0.015625c0.082031 0.042969 0.25391 0.0625 0.51562 0.0625z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="as" overflow="visible">
|
|
38
|
+
<path d="m2.4844-9.7188v8.6562c0 0.3125 0.070313 0.5 0.21875 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375l-1.5469-0.046875c-0.11719 0-0.63281 0.015625-1.5469 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-7.2812c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.10547-0.050781-0.28125-0.085937-0.53125-0.10938h-0.34375v-0.4375z"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="fc" overflow="visible">
|
|
41
|
+
<path d="m3.1094-2.4062c0.40625 0 0.73828-0.1875 1-0.5625 0.14453-0.25 0.21875-0.64062 0.21875-1.1719-0.042969-1.125-0.44922-1.6953-1.2188-1.7188-0.41797 0-0.75 0.18359-1 0.54688-0.14844 0.26172-0.21875 0.65625-0.21875 1.1875 0.039063 1.1172 0.44531 1.6875 1.2188 1.7188zm-1.3906-0.10938c-0.15625 0.1875-0.23438 0.40625-0.23438 0.65625 0 0.38672 0.14844 0.66797 0.45312 0.84375 0.09375 0.054687 0.1875 0.085937 0.28125 0.09375 0.070312 0.011719 0.42578 0.015625 1.0625 0.015625 0.95703 0 1.6562 0.085938 2.0938 0.25 0.10156 0.03125 0.20703 0.078125 0.3125 0.14062 0.5625 0.375 0.86328 0.90625 0.90625 1.5938 0 0.60156-0.39062 1.0781-1.1719 1.4219-0.5625 0.25781-1.2109 0.39062-1.9375 0.39062-1.0859 0-1.9297-0.25781-2.5312-0.76562-0.375-0.29297-0.5625-0.63281-0.5625-1.0156 0-0.46875 0.23828-0.85547 0.71875-1.1562 0.16406-0.10156 0.35938-0.1875 0.57812-0.25-0.38672-0.28906-0.59375-0.70703-0.625-1.25 0-0.4375 0.14453-0.82031 0.4375-1.1562-0.41797-0.39453-0.63672-0.875-0.65625-1.4375 0-0.64453 0.28125-1.1719 0.84375-1.5781 0.40625-0.3125 0.87891-0.46875 1.4219-0.46875 0.5625 0 1.0547 0.16797 1.4844 0.5 0.44531-0.4375 0.94141-0.65625 1.4844-0.65625 0.36328 0 0.59375 0.16797 0.6875 0.5 0.019531 0.0625 0.03125 0.125 0.03125 0.1875-0.042969 0.24219-0.17969 0.38281-0.40625 0.42188-0.21094 0-0.34375-0.097656-0.40625-0.29688v-0.10938c0-0.19531 0.070313-0.32031 0.21875-0.375-0.03125-0.007813-0.078125-0.015625-0.14062-0.015625-0.46094 0-0.88281 0.18359-1.2656 0.54688 0.38281 0.35547 0.57812 0.80859 0.57812 1.3594 0 0.64844-0.28125 1.1719-0.84375 1.5781-0.40625 0.30469-0.88281 0.45312-1.4219 0.45312-0.52344 0-0.98438-0.14062-1.3906-0.42188zm1.7812 5.0781c0.88281 0 1.5547-0.23438 2.0156-0.70312 0.22656-0.23047 0.34375-0.48047 0.34375-0.75 0-0.69922-0.54688-1.0898-1.6406-1.1719h-0.015625c-0.24219-0.019531-0.60938-0.03125-1.1094-0.03125h-0.82812c-0.4375 0.023438-0.76562 0.22656-0.98438 0.625-0.10547 0.17578-0.15625 0.36719-0.15625 0.57812 0 0.4375 0.26953 0.80078 0.8125 1.0938 0.4375 0.23828 0.95703 0.35938 1.5625 0.35938z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="fb" overflow="visible">
|
|
44
|
+
<path d="m4.8906-5.4375c0.72656 0.17969 1.2969 0.62109 1.7031 1.3281 0.25781 0.46094 0.39062 0.96094 0.39062 1.5 0 0.88672-0.30859 1.6211-0.92188 2.2031-0.51172 0.47656-1.1211 0.71875-1.8281 0.71875-1.0117 0-1.8242-0.28125-2.4375-0.84375l-0.14062-0.14062c-0.34375 0.54297-0.51562 0.80469-0.51562 0.79688-0.074219 0.125-0.14062 0.1875-0.20312 0.1875-0.09375-0.085938-0.14844-0.19922-0.15625-0.34375v-2.7969c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.078125c0.10156 0 0.16016 0.046875 0.17188 0.14062 0.019531 0.89844 0.28906 1.5938 0.8125 2.0938l0.046875 0.0625c0.53906 0.5 1.2812 0.75 2.2188 0.75 0.69531 0 1.2227-0.30469 1.5781-0.92188 0.19531-0.33203 0.29688-0.69141 0.29688-1.0781 0-0.50781-0.14844-0.94141-0.4375-1.2969-0.25-0.33203-0.61719-0.5625-1.0938-0.6875h-0.015625s-0.027344-0.003906-0.078125-0.015625c-1.1562-0.28125-1.7734-0.4375-1.8438-0.46875-0.74219-0.25-1.2773-0.72656-1.6094-1.4375-0.15625-0.35156-0.23438-0.72656-0.23438-1.125 0-0.84375 0.32031-1.5352 0.96875-2.0781 0.5-0.42578 1.0859-0.64062 1.7656-0.64062 0.78906 0 1.4766 0.26562 2.0625 0.79688l0.17188 0.1875 0.5-0.79688c0.0625-0.125 0.12891-0.1875 0.20312-0.1875 0.09375 0.085938 0.14453 0.19922 0.15625 0.34375v2.8125c0 0.19922-0.027344 0.30859-0.078125 0.32812h-0.10938c-0.09375 0-0.14844-0.050781-0.15625-0.15625-0.27344-1.9375-1.1836-2.9141-2.7344-2.9375-0.67969 0-1.1953 0.27344-1.5469 0.8125l-0.015625 0.015625c-0.1875 0.3125-0.28125 0.65234-0.28125 1.0156 0 0.61719 0.24219 1.1055 0.73438 1.4688 0.19531 0.14844 0.42188 0.25 0.67188 0.3125z"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="fa" overflow="visible">
|
|
47
|
+
<path d="m2.4062-5.2812c0.53906-0.60156 1.1797-0.90625 1.9219-0.90625 0.85156 0 1.582 0.33984 2.1875 1.0156 0.51953 0.61719 0.78125 1.3281 0.78125 2.1406 0 0.98047-0.35938 1.7891-1.0781 2.4219-0.60547 0.51172-1.2891 0.76562-2.0469 0.76562-0.75 0-1.3516-0.32031-1.7969-0.96875-0.011719-0.019531-0.023438-0.039062-0.03125-0.0625l-0.51562 0.875h-0.34375v-8.3438c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.10547-0.050781-0.28906-0.085937-0.54688-0.10938h-0.34375v-0.4375l2.0156-0.15625zm0.046875 3.6875c0 0.1875 0.046875 0.35156 0.14062 0.48438v0.015625l0.046875 0.078125c0.375 0.57422 0.86328 0.85938 1.4688 0.85938 0.65625 0 1.1875-0.29688 1.5938-0.89062 0.28125-0.44531 0.42188-1.1094 0.42188-1.9844s-0.13672-1.5234-0.40625-1.9531c-0.36719-0.59375-0.85547-0.89062-1.4688-0.89062-0.64844 0-1.1797 0.27344-1.5938 0.8125l-0.046875 0.078125c-0.10547 0.21094-0.15625 0.375-0.15625 0.5z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="ez" overflow="visible">
|
|
50
|
+
<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"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="ey" overflow="visible">
|
|
53
|
+
<path d="m8.1406-3.2344v-4.8594c0-0.39453-0.125-0.67188-0.375-0.82812-0.24219-0.13281-0.59375-0.20312-1.0625-0.20312v-0.4375c1.0078 0.03125 1.5664 0.046875 1.6719 0.046875 0.09375 0 0.64453-0.015625 1.6562-0.046875v0.4375c-0.875 0-1.3555 0.25-1.4375 0.75-0.011719 0.074219-0.015625 0.1875-0.015625 0.34375v4.4688c0 0.46094-0.011719 0.78125-0.03125 0.96875-0.14844 0.96094-0.58594 1.7148-1.3125 2.2656l-0.015625 0.015625c-0.53125 0.41406-1.125 0.625-1.7812 0.625-1.0117 0-1.8672-0.36719-2.5625-1.1094-0.64844-0.67578-0.96875-1.4727-0.96875-2.3906v-5.2812c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.125-0.082031-0.4375-0.125-0.9375-0.125h-0.32812v-0.4375c0.32031 0.03125 1.0078 0.046875 2.0625 0.046875 1.0508 0 1.7383-0.015625 2.0625-0.046875v0.4375h-0.34375c-0.60547 0-0.95312 0.078125-1.0469 0.23438-0.03125 0.0625-0.046875 0.20312-0.046875 0.42188v5.3281c0 1.5234 0.5 2.4766 1.5 2.8594 0.25781 0.10547 0.52344 0.15625 0.79688 0.15625 0.78125 0 1.4297-0.30469 1.9531-0.92188 0.48828-0.58203 0.73438-1.3125 0.73438-2.1875z"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="j" overflow="visible">
|
|
56
|
+
<path d="m0.35938-6.0312h7.0469v0.3125c-0.3125 0-0.55469 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.22656-0.078125 0.42188v4.1719c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.96875l-0.78125 0.03125-0.28125 0.015625v-0.32812c0.30078 0 0.52344-0.003906 0.67188-0.015625 0.16406-0.050781 0.26562-0.09375 0.29688-0.125 0.0625-0.070312 0.097656-0.1875 0.10938-0.34375v-4.3281c0-0.125-0.007813-0.22266-0.015625-0.29688-0.011719-0.082031-0.03125-0.13281-0.0625-0.15625-0.042969-0.070312-0.15625-0.11328-0.34375-0.125h-1.75-0.4375c-0.09375 0.023438-0.16797 0.058594-0.21875 0.10938-0.042969 0.0625-0.0625 0.17188-0.0625 0.32812-0.011719 0.0625-0.015625 0.16797-0.015625 0.3125v4.0312c0 0.19922 0.023437 0.33984 0.078125 0.42188 0.070312 0.085937 0.17969 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.98438l-0.35938 0.015625-0.40625 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1719c0-0.19531-0.027344-0.33594-0.078125-0.42188-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125z"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="b" overflow="visible">
|
|
59
|
+
<path d="m0.375-6.0312 0.48438-0.046875 1-0.0625 0.35938-0.03125 0.1875-0.015625v0.90625l0.0625-0.046875c0.007812-0.019531 0.050781-0.066406 0.125-0.14062 0.1875-0.1875 0.39062-0.33594 0.60938-0.45312 0.17578-0.082031 0.39062-0.15625 0.64062-0.21875 0.57031-0.125 1.1562-0.039063 1.75 0.25 0.35156 0.17969 0.66016 0.41406 0.92188 0.70312 0.3125 0.36719 0.53125 0.79297 0.65625 1.2812 0.13281 0.49219 0.16016 0.96875 0.078125 1.4375-0.085938 0.44922-0.25781 0.87109-0.51562 1.2656-0.51172 0.74219-1.2266 1.1797-2.1406 1.3125-0.23047 0.03125-0.43359 0.039063-0.60938 0.03125-0.21875-0.011719-0.45312-0.074219-0.70312-0.1875-0.21875-0.10156-0.40625-0.22656-0.5625-0.375l-0.28125-0.29688v2.0781c0 0.21875 0.003906 0.38281 0.015625 0.5 0 0.125 0.03125 0.21875 0.09375 0.28125 0.050781 0.050781 0.14844 0.085937 0.29688 0.10938 0.15625 0.019531 0.38281 0.03125 0.6875 0.03125v0.4375l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.98438l-0.35938 0.015625-0.40625 0.015625-0.28125 0.015625v-0.4375c0.33203 0 0.57812-0.015625 0.73438-0.046875 0.14453-0.011719 0.24219-0.0625 0.29688-0.15625 0.039062-0.085937 0.0625-0.19531 0.0625-0.32812v-6.4688c0-0.125-0.007812-0.22266-0.015625-0.29688 0-0.11328-0.015625-0.21094-0.046875-0.29688-0.03125-0.0625-0.054688-0.097656-0.0625-0.10938-0.054688-0.0625-0.16406-0.11328-0.32812-0.15625-0.13672-0.007813-0.35156-0.015625-0.64062-0.015625zm5.75 3.1406v-0.10938-0.17188-0.078125c0-0.070312-0.011719-0.17969-0.03125-0.32812-0.074219-0.50781-0.22656-0.95312-0.45312-1.3281-0.21094-0.36328-0.49609-0.63281-0.85938-0.8125-0.19922-0.09375-0.42969-0.12891-0.6875-0.10938-0.53125 0.054687-0.97656 0.26562-1.3281 0.64062l-0.25 0.34375c-0.023437 0.042969-0.039063 0.070312-0.046875 0.078125 0 0.011719-0.011719 0.039063-0.03125 0.078125v3.2188c0 0.042969 0.003906 0.074219 0.015625 0.09375 0 0.023438 0.003906 0.042969 0.015625 0.0625 0.007812 0.023438 0.015625 0.039062 0.015625 0.046875 0.0625 0.11719 0.10938 0.19922 0.14062 0.25 0.26953 0.38672 0.59766 0.64062 0.98438 0.76562 0.15625 0.042969 0.28906 0.0625 0.40625 0.0625 0.125 0.023438 0.23828 0.015625 0.34375-0.015625 0.125-0.019531 0.25391-0.0625 0.39062-0.125 0.25781-0.11328 0.48828-0.29688 0.6875-0.54688 0.32031-0.39453 0.53516-0.88281 0.64062-1.4688l0.046875-0.39062z"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="h" overflow="visible">
|
|
62
|
+
<path d="m0.35938-6.0312 0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.98438-0.015625h0.35938l0.40625-0.015625 0.28125-0.015625v0.3125h-0.42188c-0.054688 0-0.14844 0.011719-0.28125 0.03125-0.125 0.023438-0.21875 0.0625-0.28125 0.125-0.074219 0.085938-0.10938 0.23047-0.10938 0.4375v3.6562c0.0625-0.0625 0.14844-0.17188 0.26562-0.32812l0.46875-0.57812 1.3906-1.75 0.57812-0.70312 0.15625-0.20312c0-0.007812 0.003906-0.019531 0.015625-0.03125 0.019531-0.019531 0.03125-0.035156 0.03125-0.046875v-0.1875c-0.011719-0.125-0.046875-0.21875-0.10938-0.28125-0.0625-0.050781-0.16797-0.085937-0.3125-0.10938-0.13672-0.019531-0.35547-0.03125-0.65625-0.03125v-0.3125l0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.96875-0.015625h0.375l0.40625-0.015625 0.28125-0.015625v0.3125c-0.3125 0-0.55469 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.22656-0.078125 0.42188v4.1719c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.96875l-0.78125 0.03125-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.13281-0.019531 0.23438-0.0625 0.29688-0.125 0.050781-0.0625 0.082031-0.17188 0.09375-0.32812v-3.75l-0.25 0.3125-0.46875 0.59375-1.4062 1.7344-0.5625 0.71875-0.15625 0.1875c-0.023437 0.011719-0.042969 0.042969-0.0625 0.09375 0 0.074219 0.003906 0.13281 0.015625 0.17188 0.019531 0.125 0.054688 0.21875 0.10938 0.28125 0.039063 0.03125 0.14062 0.074219 0.29688 0.125 0.14453 0.011719 0.36719 0.015625 0.67188 0.015625v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.98438l-0.35938 0.015625-0.40625 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1719c0-0.19531-0.027344-0.33594-0.078125-0.42188-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="a" overflow="visible">
|
|
65
|
+
<path d="m0.375-6.0312h3.625c0.36328 0.023438 0.67578 0.074219 0.9375 0.15625l0.34375 0.125c0.039062 0.023438 0.10938 0.058594 0.20312 0.10938 0.44531 0.27344 0.6875 0.59375 0.71875 0.96875v0.15625c-0.023437 0.10547-0.042969 0.17969-0.0625 0.21875-0.03125 0.085937-0.085937 0.17188-0.15625 0.26562-0.11719 0.11719-0.25781 0.21875-0.42188 0.3125-0.17969 0.10547-0.42188 0.21094-0.73438 0.3125-0.011719 0-0.042969 0.011719-0.09375 0.03125-0.042969 0.011719-0.074219 0.023438-0.09375 0.03125-0.011719 0-0.03125 0.007812-0.0625 0.015625-0.03125 0-0.054687 0.007813-0.0625 0.015625 0.039063 0 0.085937 0.011719 0.14062 0.03125 0.0625 0.011719 0.097656 0.015625 0.10938 0.015625 0.21875 0.074219 0.37891 0.13672 0.48438 0.1875 0.33203 0.125 0.625 0.29688 0.875 0.51562 0.21875 0.21094 0.34766 0.43359 0.39062 0.67188 0.007813 0.10547 0.007813 0.21484 0 0.32812-0.023437 0.14844-0.0625 0.28125-0.125 0.40625-0.054687 0.11719-0.14844 0.25781-0.28125 0.42188-0.15625 0.17969-0.35547 0.32422-0.59375 0.4375-0.27344 0.15625-0.60156 0.25-0.98438 0.28125-0.09375 0.011719-0.23438 0.015625-0.42188 0.015625h-3.7344v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.14453-0.019531 0.25391-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1562c0-0.20703-0.027344-0.35156-0.078125-0.4375-0.054687-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125zm2.0625 2.5625h0.76562c0.34375 0 0.55078-0.003906 0.625-0.015625 0.26953-0.050781 0.5-0.12891 0.6875-0.23438 0.23828-0.14453 0.41016-0.31641 0.51562-0.51562 0.039062-0.082031 0.066406-0.16406 0.078125-0.25 0.03125-0.19531-0.007813-0.39062-0.10938-0.57812-0.09375-0.1875-0.22656-0.33203-0.39062-0.4375-0.15625-0.11328-0.32812-0.1875-0.51562-0.21875h-0.34375-0.35938-0.5625c-0.14844 0-0.25 0.039062-0.3125 0.10938-0.023437 0.03125-0.042969 0.10156-0.0625 0.20312-0.011719 0.09375-0.015625 0.23438-0.015625 0.42188zm0 0.3125v1.9531c0 0.23047 0.003906 0.40234 0.015625 0.51562 0.019531 0.14844 0.039063 0.23047 0.0625 0.25 0.0625 0.0625 0.16406 0.10156 0.3125 0.10938h0.65625c0.34375 0 0.55078-0.003906 0.625-0.015625 0.42578-0.0625 0.75781-0.25391 1-0.57812 0.15625-0.21875 0.25-0.46094 0.28125-0.73438 0.019531-0.28125-0.042969-0.55078-0.1875-0.8125-0.13672-0.25781-0.32422-0.44531-0.5625-0.5625-0.125-0.070312-0.25-0.11328-0.375-0.125h-0.3125z"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="f" overflow="visible">
|
|
68
|
+
<path d="m1.5469-3.2344c0 0.96094 0.14062 1.6562 0.42188 2.0938 0.070312 0.11719 0.14453 0.21094 0.21875 0.28125 0.09375 0.11719 0.19141 0.21094 0.29688 0.28125 0.125 0.09375 0.26953 0.17969 0.4375 0.25 0.20703 0.085937 0.41016 0.125 0.60938 0.125 0.25 0 0.46875-0.039063 0.65625-0.125 0.47656-0.16406 0.84766-0.48438 1.1094-0.95312 0.050781-0.09375 0.09375-0.19141 0.125-0.29688 0.007813-0.019531 0.015625-0.039063 0.015625-0.0625 0.007812-0.019531 0.015625-0.035156 0.015625-0.046875 0-0.03125 0.007813-0.054688 0.03125-0.078125 0.03125-0.050781 0.078125-0.078125 0.14062-0.078125 0.0625-0.007812 0.11328 0.007812 0.15625 0.046875 0.050781 0.054687 0.050781 0.13672 0 0.25-0.054688 0.1875-0.13672 0.375-0.25 0.5625-0.33594 0.54297-0.80859 0.89062-1.4219 1.0469-0.21875 0.0625-0.43359 0.09375-0.64062 0.09375-0.35547 0-0.69922-0.070312-1.0312-0.20312-0.30469-0.10156-0.58984-0.25781-0.85938-0.46875-0.25-0.21875-0.46094-0.44531-0.625-0.6875-0.3125-0.4375-0.5-0.92969-0.5625-1.4844-0.054687-0.55078 0.015625-1.0703 0.20312-1.5625 0.13281-0.36328 0.30469-0.67578 0.51562-0.9375 0.22656-0.28125 0.48828-0.50781 0.78125-0.6875 0.64453-0.38281 1.3477-0.48828 2.1094-0.3125 0.42578 0.11719 0.76562 0.29297 1.0156 0.53125 0.17578 0.16797 0.33203 0.38281 0.46875 0.64062 0.14453 0.30469 0.23438 0.58594 0.26562 0.84375 0.019531 0.09375 0.039062 0.23438 0.0625 0.42188v0.15625c0.007812 0.0625 0.015625 0.11719 0.015625 0.15625 0 0.074219-0.015625 0.12109-0.046875 0.14062-0.03125 0.042969-0.089844 0.0625-0.17188 0.0625zm0-0.29688h3.3438c0-0.070312-0.011719-0.19141-0.03125-0.35938-0.042969-0.48828-0.14062-0.89062-0.29688-1.2031-0.042969-0.11328-0.10938-0.23438-0.20312-0.35938-0.15625-0.14453-0.27734-0.24219-0.35938-0.29688-0.125-0.070312-0.24609-0.125-0.35938-0.15625-0.13672-0.03125-0.26562-0.046875-0.39062-0.046875-0.53125 0.03125-0.96484 0.32031-1.2969 0.85938-0.16797 0.28125-0.28125 0.63672-0.34375 1.0625-0.023437 0.11719-0.042969 0.28125-0.0625 0.5z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="c" overflow="visible">
|
|
71
|
+
<path d="m0.5-6.0312h6l0.015625 0.17188 0.015625 0.42188 0.078125 1.1406 0.03125 0.32812 0.015625 0.20312h-0.375c0-0.09375-0.007812-0.21094-0.015625-0.35938-0.023437-0.25781-0.058594-0.5-0.10938-0.71875-0.054688-0.23828-0.125-0.41016-0.21875-0.51562-0.0625-0.070313-0.15625-0.14062-0.28125-0.20312-0.21094-0.10156-0.48047-0.15625-0.8125-0.15625h-0.53125c-0.125 0.023438-0.20312 0.058594-0.23438 0.10938-0.042969 0.03125-0.074219 0.14062-0.09375 0.32812v4.25c0 0.25 0.039063 0.42188 0.125 0.51562 0.082031 0.085937 0.21875 0.13672 0.40625 0.15625 0.082031 0.011719 0.21875 0.015625 0.40625 0.015625 0.13281 0.011719 0.33594 0.015625 0.60938 0.015625v0.32812l-0.21875-0.015625h-0.26562l-0.40625-0.015625h-0.17188l-1.5781-0.015625h-0.0625l-0.53125 0.015625-0.48438 0.015625-0.34375 0.015625v-0.32812c0.25781 0 0.46094-0.003906 0.60938-0.015625 0.17578 0 0.3125-0.003906 0.40625-0.015625 0.1875-0.019531 0.32031-0.070313 0.40625-0.15625 0.082031-0.09375 0.125-0.26562 0.125-0.51562v-4.25c-0.023437-0.17578-0.054687-0.28516-0.09375-0.32812-0.03125-0.050781-0.10938-0.085937-0.23438-0.10938h-0.53125c-0.34375 0-0.62109 0.054688-0.82812 0.15625-0.10547 0.054688-0.19531 0.12109-0.26562 0.20312-0.10547 0.11719-0.18359 0.28906-0.23438 0.51562-0.03125 0.15625-0.0625 0.39844-0.09375 0.71875-0.011719 0.03125-0.023437 0.089844-0.03125 0.17188v0.1875h-0.35938l0.015625-0.20312 0.03125-0.32812 0.078125-1.1406 0.015625-0.42188z"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="an" overflow="visible">
|
|
74
|
+
<path d="m0.42188-6.0312h1.875c0.11328 0 0.19141 0.015625 0.23438 0.046875 0.050781 0.023437 0.085938 0.074219 0.10938 0.15625 0.019531 0.03125 0.054687 0.10938 0.10938 0.23438 0.019531 0.074219 0.078125 0.21875 0.17188 0.4375 0.09375 0.21094 0.16406 0.375 0.21875 0.5l1.0625 2.5c0.070313 0.15625 0.17578 0.39844 0.3125 0.71875 0.007813 0.023438 0.023437 0.0625 0.046875 0.125 0.019531 0.0625 0.039062 0.10938 0.0625 0.14062 0.007812 0.011719 0.019531 0.039063 0.03125 0.078125 0.007812 0.03125 0.019531 0.058594 0.03125 0.078125l0.375-0.89062 0.79688-1.9062 0.375-0.82812c0.082031-0.21875 0.21875-0.53906 0.40625-0.96875 0.007813-0.019531 0.019531-0.050781 0.03125-0.09375 0.019531-0.039063 0.035156-0.078125 0.046875-0.10938 0.039062-0.09375 0.082031-0.14844 0.125-0.17188 0.050781-0.03125 0.12891-0.046875 0.23438-0.046875h1.8281v0.3125c-0.32422 0-0.5625 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.23047-0.078125 0.4375v4.1562c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.375-0.015625h-0.125l-0.25-0.015625h-1l-0.34375 0.015625-0.40625 0.015625-0.26562 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.25781-0.066406 0.3125-0.14062 0.0625-0.09375 0.09375-0.25781 0.09375-0.5v-4.7031h-0.015625c-0.023438 0.074219-0.039062 0.12109-0.046875 0.14062l-0.125 0.3125-0.4375 1.0156-1.2188 2.875-0.4375 1.0156c-0.023437 0.054688-0.042969 0.10547-0.0625 0.15625-0.011719 0.042969-0.039063 0.085938-0.078125 0.125-0.03125 0.03125-0.074219 0.046875-0.125 0.046875h-0.0625c-0.074219-0.03125-0.14062-0.11719-0.20312-0.26562l-0.42188-0.98438c-0.1875-0.44531-0.32812-0.78125-0.42188-1l-0.8125-1.9219c-0.085937-0.20703-0.21484-0.51562-0.39062-0.92188l-0.125-0.29688c-0.03125-0.070312-0.054688-0.12891-0.0625-0.17188v4c0 0.3125 0.015625 0.53125 0.046875 0.65625 0.007813 0.042969 0.046875 0.10938 0.10938 0.20312 0.007812 0.011719 0.019531 0.03125 0.03125 0.0625 0.019531 0.03125 0.035156 0.046875 0.046875 0.046875 0.1875 0.1875 0.46875 0.28125 0.84375 0.28125v0.32812l-0.21875-0.015625-0.34375-0.015625-0.29688-0.015625h-0.84375l-0.625 0.03125-0.23438 0.015625v-0.32812c0.39453 0 0.6875-0.10156 0.875-0.3125 0.0625-0.070313 0.097656-0.13281 0.10938-0.1875 0.070312-0.14453 0.10938-0.34766 0.10938-0.60938v-3.6094c0-0.23828-0.039063-0.40625-0.10938-0.5-0.042969-0.050781-0.13672-0.097656-0.28125-0.14062-0.15625-0.019531-0.39062-0.03125-0.70312-0.03125z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="ep" overflow="visible">
|
|
77
|
+
<path d="m3.75-3.3438c0.039062 0.011719 0.09375 0.023438 0.15625 0.03125 0.0625 0.011719 0.10938 0.023438 0.14062 0.03125 0.33203 0.09375 0.61328 0.20312 0.84375 0.32812 0.34375 0.19922 0.58203 0.4375 0.71875 0.71875 0.0625 0.10547 0.097656 0.19922 0.10938 0.28125 0 0 0.007812 0.074219 0.03125 0.21875 0.019531 0.55469-0.20312 0.99219-0.67188 1.3125-0.21875 0.17969-0.50781 0.3125-0.85938 0.40625-0.26172 0.070312-0.54688 0.11719-0.85938 0.14062-0.76172 0.050781-1.3594 0.003906-1.7969-0.14062-0.34375-0.10156-0.625-0.28125-0.84375-0.53125-0.16797-0.20703-0.28125-0.42578-0.34375-0.65625-0.023438-0.0625-0.039062-0.16016-0.046875-0.29688-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.10156 0.015625-0.17188 0.046875-0.20312h0.015625 0.03125c0.019531-0.007812 0.046875-0.015625 0.078125-0.015625 0.039063 0 0.070313 0.007813 0.09375 0.015625h0.015625 0.015625c0.019531 0.011719 0.039063 0.089844 0.0625 0.23438v0.09375c0.007813 0.03125 0.015625 0.058594 0.015625 0.078125 0.050781 0.28125 0.1875 0.52344 0.40625 0.71875 0.1875 0.17969 0.44531 0.30859 0.78125 0.39062 0.14453 0.042969 0.36719 0.074219 0.67188 0.09375 0.50781 0.011719 0.92578-0.054687 1.25-0.20312 0.1875-0.070312 0.33203-0.17578 0.4375-0.3125 0.082031-0.070312 0.15625-0.16406 0.21875-0.28125 0.21875-0.41406 0.23438-0.84766 0.046875-1.2969-0.085938-0.15625-0.18359-0.28906-0.29688-0.40625-0.26172-0.25-0.64062-0.39844-1.1406-0.45312h-0.84375c-0.14844 0-0.23438-0.023438-0.26562-0.078125v-0.046875c-0.023437-0.10156 0.003906-0.16016 0.078125-0.17188 0.03125-0.007813 0.078125-0.015625 0.14062-0.015625h0.26562c0.40625 0 0.64453-0.003906 0.71875-0.015625 0.46875-0.0625 0.83594-0.25391 1.1094-0.57812 0.11328-0.16406 0.1875-0.31641 0.21875-0.45312 0.050781-0.32031-0.015625-0.61328-0.20312-0.875-0.09375-0.13281-0.24219-0.25-0.4375-0.34375-0.27344-0.125-0.58984-0.19531-0.95312-0.21875-0.27344-0.007813-0.57031 0.015625-0.89062 0.078125-0.21094 0.042969-0.40625 0.12109-0.59375 0.23438-0.26172 0.16797-0.45312 0.39844-0.57812 0.6875-0.042969 0.085937-0.070313 0.16406-0.078125 0.23438-0.023438 0.085938-0.039062 0.13281-0.046875 0.14062-0.03125 0.03125-0.09375 0.046875-0.1875 0.046875-0.074219-0.019531-0.11719-0.054688-0.125-0.10938v-1.4375c0-0.082031 0.015625-0.14062 0.046875-0.17188 0.0625-0.019531 0.11719-0.019531 0.17188 0 0.03125 0.011719 0.070313 0.046875 0.125 0.10938l0.25 0.17188 0.09375 0.09375c0.019531 0.011719 0.035156 0.015625 0.046875 0.015625 0.007812 0 0.03125-0.015625 0.0625-0.046875 0.070312-0.039062 0.125-0.066406 0.15625-0.078125 0.19531-0.09375 0.35938-0.15625 0.48438-0.1875 0.21875-0.050781 0.46875-0.082031 0.75-0.09375h0.40625c0.51953 0 0.96875 0.0625 1.3438 0.1875 0.25 0.074219 0.47266 0.17969 0.67188 0.3125 0.25781 0.1875 0.4375 0.41406 0.53125 0.67188 0.039062 0.125 0.0625 0.22656 0.0625 0.29688 0.007812 0.14844-0.011719 0.28125-0.0625 0.40625-0.03125 0.074219-0.10156 0.16797-0.20312 0.28125-0.085937 0.09375-0.21094 0.19531-0.375 0.29688-0.21094 0.125-0.49219 0.25-0.84375 0.375-0.125 0.03125-0.21094 0.054688-0.25 0.0625-0.011719 0-0.03125 0.007812-0.0625 0.015625-0.023437 0-0.039063 0.007813-0.046875 0.015625z"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="am" overflow="visible">
|
|
80
|
+
<path d="m1.7031-6.0312h5.6875v0.3125c-0.3125 0-0.54688 0.011719-0.70312 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.23047-0.078125 0.4375v4.1406c0 0.21875 0.03125 0.37109 0.09375 0.45312 0.070312 0.074219 0.1875 0.12109 0.34375 0.14062 0.16406 0.023437 0.41406 0.03125 0.75 0.03125l0.03125 0.25 0.046875 0.42188 0.10938 1.3125 0.046875 0.42188v0.1875h-0.34375l-0.046875-0.42188c-0.03125-0.34375-0.078125-0.63281-0.14062-0.85938-0.074219-0.28125-0.18359-0.49219-0.32812-0.625-0.13672-0.11719-0.30859-0.20312-0.51562-0.26562-0.19922-0.054688-0.35938-0.085938-0.48438-0.09375h-0.57812-3.0156c-0.66797 0-1.1367 0.11719-1.4062 0.35938-0.15625 0.14453-0.26562 0.36328-0.32812 0.65625-0.0625 0.23828-0.10938 0.51562-0.14062 0.82812l-0.046875 0.42188h-0.34375l0.015625-0.1875 0.03125-0.42188 0.125-1.3125 0.03125-0.42188 0.03125-0.25c0.33203 0 0.58594-0.03125 0.76562-0.09375 0.09375-0.03125 0.26562-0.14453 0.51562-0.34375l0.15625-0.125c0.039062-0.019531 0.070312-0.039063 0.09375-0.0625 0.039062-0.039063 0.097656-0.11719 0.17188-0.23438 0.17578-0.28125 0.26953-0.44531 0.28125-0.5 0.26953-0.59375 0.44141-1.3516 0.51562-2.2812 0.019531-0.36328 0.03125-0.72266 0.03125-1.0781 0-0.25-0.027344-0.41016-0.078125-0.48438-0.054687-0.0625-0.15234-0.11328-0.29688-0.15625-0.125-0.019531-0.21875-0.03125-0.28125-0.03125h-0.42188zm3.625 5.2656v-4.5312c-0.023437-0.1875-0.058594-0.30078-0.10938-0.34375-0.0625-0.050781-0.15625-0.078125-0.28125-0.078125h-0.23438-0.875-0.28125c-0.13672 0-0.23438 0.03125-0.29688 0.09375s-0.09375 0.17188-0.09375 0.32812v0.17188l-0.015625 0.015625v0.03125 0.14062 0.15625c0 0.074219-0.007813 0.125-0.015625 0.15625 0 0.14844-0.007812 0.25781-0.015625 0.32812 0 0.09375-0.011719 0.23438-0.03125 0.42188-0.023437 0.26172-0.039063 0.45312-0.046875 0.57812-0.074219 0.48047-0.16406 0.87109-0.26562 1.1719-0.13672 0.44922-0.32031 0.83594-0.54688 1.1562-0.0625 0.11719-0.14062 0.22656-0.23438 0.32812-0.074219 0.054687-0.11719 0.10938-0.125 0.17188 0 0.085938 0.039063 0.13281 0.125 0.14062h2.9531c0.13281-0.007813 0.21875-0.023437 0.25-0.046875 0.082031-0.050781 0.12891-0.16406 0.14062-0.34375z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="ar" overflow="visible">
|
|
83
|
+
<path d="m1.5469-5.3125c0.082031-0.007812 0.17188-0.003906 0.26562 0.015625 0.125 0.03125 0.22656 0.10156 0.3125 0.20312 0.11328 0.125 0.16016 0.28125 0.14062 0.46875-0.011719 0.17969-0.078125 0.32422-0.20312 0.4375-0.11719 0.09375-0.25781 0.14844-0.42188 0.15625-0.15625 0-0.29297-0.039062-0.40625-0.125-0.085937-0.050781-0.15234-0.12891-0.20312-0.23438-0.042969-0.09375-0.058594-0.21875-0.046875-0.375 0.019531-0.16406 0.054687-0.3125 0.10938-0.4375 0.1875-0.4375 0.57031-0.75 1.1562-0.9375 0.73828-0.22656 1.4453-0.17578 2.125 0.15625 0.25 0.125 0.46875 0.28906 0.65625 0.48438 0.09375 0.10547 0.17188 0.21094 0.23438 0.3125 0.14453 0.21875 0.23438 0.48047 0.26562 0.78125v3.1406c0 0.21875 0.019531 0.38281 0.0625 0.48438 0.0625 0.17969 0.15625 0.30469 0.28125 0.375 0.039062 0.023438 0.078125 0.03125 0.10938 0.03125h0.14062c0.16406-0.03125 0.28125-0.14062 0.34375-0.32812 0.050781-0.125 0.078125-0.25 0.078125-0.375v-0.95312h0.375v0.625c0 0.17969-0.007813 0.30859-0.015625 0.39062-0.011719 0.25-0.10938 0.48047-0.29688 0.6875-0.15625 0.1875-0.35938 0.3125-0.60938 0.375-0.24219 0.0625-0.46875 0.035156-0.6875-0.078125-0.09375-0.039062-0.19531-0.11328-0.29688-0.21875-0.14844-0.15625-0.25-0.35156-0.3125-0.59375 0-0.019531-0.007813-0.050781-0.015625-0.09375 0-0.050781-0.007812-0.09375-0.015625-0.125-0.023437 0.054688-0.039063 0.085938-0.046875 0.09375l-0.10938 0.20312c-0.21875 0.34375-0.5 0.58984-0.84375 0.73438-0.21875 0.10156-0.43359 0.16016-0.64062 0.17188-0.15625 0.019531-0.33984 0.015625-0.54688-0.015625-0.41797-0.03125-0.79688-0.12891-1.1406-0.29688-0.16797-0.09375-0.3125-0.19531-0.4375-0.3125-0.0625-0.070313-0.14062-0.19141-0.23438-0.35938-0.11719-0.22656-0.13672-0.49219-0.0625-0.79688 0.019531-0.16406 0.082031-0.33594 0.1875-0.51562 0.13281-0.23828 0.32812-0.46094 0.57812-0.67188 0.28906-0.21875 0.6875-0.40625 1.1875-0.5625 0.39453-0.11328 0.85938-0.19141 1.3906-0.23438 0.16406-0.019531 0.28516-0.03125 0.35938-0.03125 0.11328 0 0.19531-0.003906 0.25-0.015625v-0.4375c0-0.16406-0.007812-0.28516-0.015625-0.35938-0.023437-0.28906-0.11719-0.55469-0.28125-0.79688-0.1875-0.30078-0.4375-0.50391-0.75-0.60938-0.21875-0.070312-0.4375-0.09375-0.65625-0.0625-0.42969 0.054688-0.78125 0.18359-1.0625 0.39062l-0.125 0.125c-0.054687 0.042969-0.09375 0.078125-0.125 0.10938zm3.0156 1.9375-0.42188 0.046875c-0.32422 0.023437-0.67188 0.09375-1.0469 0.21875-0.38672 0.14844-0.67969 0.32422-0.875 0.53125-0.1875 0.17969-0.32422 0.375-0.40625 0.59375-0.14844 0.3125-0.1875 0.61719-0.125 0.90625 0.070312 0.26172 0.21875 0.47656 0.4375 0.64062 0.21875 0.15625 0.46094 0.24609 0.73438 0.26562 0.46875 0.023437 0.86719-0.13281 1.2031-0.46875 0.25781-0.25781 0.41406-0.56641 0.46875-0.92188 0.019531-0.10156 0.03125-0.34375 0.03125-0.71875z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="ew" overflow="visible">
|
|
86
|
+
<path d="m5.0312-7.2188c-0.11719-0.050781-0.20312-0.10156-0.26562-0.15625-0.074219-0.0625-0.13281-0.14062-0.17188-0.23438-0.13672-0.35156-0.070312-0.62891 0.20312-0.82812 0.039063-0.039062 0.10938-0.078125 0.20312-0.10938 0.0625-0.03125 0.12891-0.046875 0.20312-0.046875 0.125 0 0.21094 0.011719 0.26562 0.03125 0.082031 0.023438 0.16016 0.0625 0.23438 0.125 0.0625 0.0625 0.10938 0.11719 0.14062 0.15625 0.16406 0.26172 0.16016 0.54688-0.015625 0.85938-0.054687 0.09375-0.15234 0.21094-0.29688 0.34375-0.19922 0.13672-0.44922 0.24219-0.75 0.3125-0.21094 0.054687-0.45312 0.089844-0.73438 0.10938-0.32422 0.011719-0.62109-0.007812-0.89062-0.0625-0.03125 0-0.074219-0.007812-0.125-0.03125-0.054688-0.019531-0.09375-0.03125-0.125-0.03125-0.011719-0.007812-0.042969-0.019531-0.09375-0.03125-0.042969-0.007812-0.078125-0.019531-0.10938-0.03125-0.46875-0.16406-0.75-0.41406-0.84375-0.75-0.0625-0.22656-0.058594-0.42578 0.015625-0.59375 0.039062-0.070312 0.078125-0.12891 0.10938-0.17188 0.25-0.28125 0.53906-0.33203 0.875-0.15625 0.070313 0.042969 0.14062 0.09375 0.20312 0.15625 0.125 0.14844 0.17578 0.32031 0.15625 0.51562-0.023438 0.1875-0.10156 0.35156-0.23438 0.48438-0.085937 0.074219-0.16797 0.12109-0.25 0.14062 0.019531 0.011719 0.050781 0.023438 0.09375 0.03125h0.09375c0.09375 0.023438 0.23438 0.042969 0.42188 0.0625 0.34375 0.023438 0.59766 0.027344 0.76562 0.015625 0.16406 0 0.28906-0.003906 0.375-0.015625 0.16406-0.019531 0.30078-0.039062 0.40625-0.0625 0.007813-0.007812 0.03125-0.015625 0.0625-0.015625 0.039063-0.007813 0.066406-0.015625 0.078125-0.015625zm-4.6719 1.1875 0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.98438-0.015625h0.35938l0.40625-0.015625 0.28125-0.015625v0.3125h-0.42188c-0.054688 0-0.14844 0.011719-0.28125 0.03125-0.125 0.023438-0.21875 0.0625-0.28125 0.125-0.074219 0.085938-0.10938 0.23047-0.10938 0.4375v3.6562c0.0625-0.0625 0.14844-0.17188 0.26562-0.32812l0.46875-0.57812 1.3906-1.75 0.57812-0.70312 0.15625-0.20312c0-0.007812 0.003906-0.019531 0.015625-0.03125 0.019531-0.019531 0.03125-0.035156 0.03125-0.046875v-0.1875c-0.011719-0.125-0.046875-0.21875-0.10938-0.28125-0.0625-0.050781-0.16797-0.085937-0.3125-0.10938-0.13672-0.019531-0.35547-0.03125-0.65625-0.03125v-0.3125l0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.96875-0.015625h0.375l0.40625-0.015625 0.28125-0.015625v0.3125c-0.3125 0-0.55469 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.22656-0.078125 0.42188v4.1719c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.96875l-0.78125 0.03125-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.13281-0.019531 0.23438-0.0625 0.29688-0.125 0.050781-0.0625 0.082031-0.17188 0.09375-0.32812v-3.75l-0.25 0.3125-0.46875 0.59375-1.4062 1.7344-0.5625 0.71875-0.15625 0.1875c-0.023437 0.011719-0.042969 0.042969-0.0625 0.09375 0 0.074219 0.003906 0.13281 0.015625 0.17188 0.019531 0.125 0.054688 0.21875 0.10938 0.28125 0.039063 0.03125 0.14062 0.074219 0.29688 0.125 0.14453 0.011719 0.36719 0.015625 0.67188 0.015625v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.98438l-0.35938 0.015625-0.40625 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1719c0-0.19531-0.027344-0.33594-0.078125-0.42188-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="aq" overflow="visible">
|
|
89
|
+
<path d="m5.0469-5.3906c-0.29297-0.28906-0.74219-0.46094-1.3438-0.51562h-0.26562c-0.125 0-0.26172 0.023438-0.40625 0.0625-0.30469 0.10547-0.57422 0.3125-0.8125 0.625-0.36719 0.46875-0.55859 1.1523-0.57812 2.0469v0.32812l0.046875 0.5c0.082031 0.67969 0.3125 1.2109 0.6875 1.5938 0.019531 0.011719 0.054688 0.042969 0.10938 0.09375 0.050781 0.042969 0.09375 0.078125 0.125 0.10938 0.125 0.085937 0.25 0.15234 0.375 0.20312 0.17578 0.09375 0.36328 0.14062 0.5625 0.14062 0.41406 0.011719 0.78516-0.09375 1.1094-0.3125 0.22656-0.14453 0.41016-0.33594 0.54688-0.57812 0.070313-0.09375 0.14062-0.23438 0.20312-0.42188 0-0.007813 0.003906-0.03125 0.015625-0.0625 0.019531-0.039063 0.03125-0.070313 0.03125-0.09375 0-0.019531 0.007813-0.050781 0.03125-0.09375 0.039063-0.039063 0.09375-0.0625 0.15625-0.0625h0.078125c0.03125 0.011719 0.066406 0.042969 0.10938 0.09375 0.007813 0.023437 0.007813 0.046875 0 0.078125-0.011719 0.03125-0.015625 0.054688-0.015625 0.0625-0.011719 0.023438-0.027344 0.058594-0.046875 0.10938-0.023437 0.054687-0.039063 0.089844-0.046875 0.10938-0.14844 0.39844-0.36719 0.71875-0.65625 0.96875-0.125 0.125-0.27344 0.22656-0.4375 0.29688-0.75 0.38281-1.5547 0.375-2.4062-0.03125-0.27344-0.13281-0.53906-0.32031-0.79688-0.5625-0.1875-0.1875-0.35547-0.39453-0.5-0.625-0.28125-0.47656-0.43359-1.0039-0.45312-1.5781v-0.26562c0.039062-0.86328 0.34375-1.582 0.90625-2.1562 0.1875-0.19531 0.39453-0.375 0.625-0.53125 0.3125-0.17578 0.59766-0.28516 0.85938-0.32812 0.34375-0.09375 0.72656-0.10938 1.1562-0.046875 0.03125 0.011719 0.070313 0.023437 0.125 0.03125 0.0625 0.011719 0.10938 0.023437 0.14062 0.03125 0.61328 0.15625 1.0312 0.44531 1.25 0.85938 0.039062 0.0625 0.066406 0.13281 0.078125 0.20312 0.019531 0.0625 0.039063 0.16406 0.0625 0.29688 0 0.19922-0.046875 0.35547-0.14062 0.46875-0.11719 0.14844-0.27344 0.22656-0.46875 0.23438-0.1875 0.011719-0.35156-0.035156-0.48438-0.14062-0.125-0.11328-0.19531-0.26562-0.20312-0.45312-0.011719-0.1875 0.035156-0.34766 0.14062-0.48438 0.14453-0.13281 0.32031-0.20312 0.53125-0.20312z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="ev" overflow="visible">
|
|
92
|
+
<path d="m3.1406-3.0312c-0.054687 0-0.125-0.007812-0.21875-0.03125-0.125-0.019531-0.22656-0.039062-0.29688-0.0625-0.17969-0.03125-0.40234-0.097656-0.67188-0.20312-0.25-0.10156-0.46484-0.24219-0.64062-0.42188-0.11719-0.125-0.19922-0.24219-0.25-0.35938-0.042969-0.082031-0.070312-0.17188-0.078125-0.26562-0.023437-0.10156-0.027344-0.1875-0.015625-0.25 0.03125-0.4375 0.27344-0.76953 0.73438-1 0.48828-0.25 1.1641-0.38281 2.0312-0.40625h3.4531v0.3125c-0.32422 0-0.55859 0.011719-0.70312 0.03125-0.15625 0.042969-0.26172 0.09375-0.3125 0.15625-0.054687 0.085938-0.078125 0.23047-0.078125 0.4375v4.1562c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.39062-0.015625h-0.14062l-0.23438-0.015625h-1.0312l-0.35938 0.015625-0.40625 0.015625-0.26562 0.015625v-0.32812c0.28906 0 0.50781-0.003906 0.65625-0.015625 0.15625-0.039062 0.25391-0.082031 0.29688-0.125 0.050781-0.050781 0.085938-0.13281 0.10938-0.25 0.007813-0.050781 0.015625-0.20312 0.015625-0.45312v-1.8281h-0.9375l-0.09375 0.015625-0.015625 0.046875-0.078125 0.078125-0.21875 0.29688-0.625 0.79688-0.21875 0.29688-0.10938 0.14062h0.015625l-0.125 0.17188c-0.1875 0.25-0.29688 0.40234-0.32812 0.45312-0.0625 0.14844-0.070313 0.24219-0.015625 0.28125l0.046875 0.046875c0.007813 0.011719 0.019531 0.015625 0.03125 0.015625 0.019531 0 0.035156 0.007813 0.046875 0.015625h0.09375c0.039062 0 0.078125 0.007812 0.10938 0.015625h0.26562v0.32812l-0.28125-0.015625-0.54688-0.015625-0.3125-0.015625h-0.98438l-0.65625 0.046875v-0.32812c0.41406 0 0.83203-0.22656 1.25-0.6875 0.019531-0.007813 0.046875-0.035156 0.078125-0.078125 0.039063-0.039062 0.070313-0.070312 0.09375-0.09375 0.007813-0.007812 0.023437-0.023438 0.046875-0.046875 0.019531-0.03125 0.035156-0.054687 0.046875-0.078125 0.007813 0 0.019531-0.003906 0.03125-0.015625l0.03125-0.015625c0.007813-0.007812 0.039063-0.054688 0.09375-0.14062 0.11328-0.13281 0.19141-0.23438 0.23438-0.29688l0.64062-0.78125c0.019531-0.03125 0.070313-0.10156 0.15625-0.21875 0.082031-0.11328 0.15625-0.19531 0.21875-0.25zm2.0156-0.26562v-1.6562c0-0.25-0.007812-0.39844-0.015625-0.45312 0-0.09375-0.027344-0.16016-0.078125-0.20312-0.054688-0.070313-0.16406-0.10938-0.32812-0.10938h-0.6875c-0.27344 0-0.47656 0.007812-0.60938 0.015625-0.26172 0.023437-0.46875 0.058594-0.625 0.10938-0.21875 0.09375-0.36719 0.17188-0.4375 0.23438-0.13672 0.13672-0.21484 0.35938-0.23438 0.67188-0.011719 0.085938-0.011719 0.16406 0 0.23438 0 0.15625 0.023437 0.28906 0.078125 0.39062 0.039062 0.15625 0.10938 0.27734 0.20312 0.35938 0.050781 0.0625 0.15625 0.13281 0.3125 0.20312 0.23828 0.10547 0.50781 0.16797 0.8125 0.1875 0.22656 0.011719 0.76562 0.015625 1.6094 0.015625z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="eu" overflow="visible">
|
|
95
|
+
<path d="m0.51562-9.5781 0.3125 0.015625 0.64062 0.03125h1.4844l0.5625-0.015625 0.48438-0.015625 0.375-0.015625v0.4375c-0.27344 0-0.50781 0.0625-0.70312 0.1875-0.13672 0.0625-0.21094 0.13672-0.21875 0.21875 0 0.03125 0.019531 0.078125 0.0625 0.14062l0.0625 0.09375c0.09375 0.15625 0.21094 0.33594 0.35938 0.53125l0.96875 1.4688c0.13281 0.21094 0.23828 0.36719 0.3125 0.46875l0.09375 0.15625c0.019531 0.03125 0.039062 0.058594 0.0625 0.078125l0.046875-0.078125c0.007813-0.007812 0.039063-0.054688 0.09375-0.14062l0.32812-0.46875 0.8125-1.2188c0.03125-0.039063 0.078125-0.10938 0.14062-0.20312 0.070313-0.10156 0.11719-0.17188 0.14062-0.20312 0-0.007813 0.019531-0.039063 0.0625-0.09375 0.039062-0.050781 0.0625-0.09375 0.0625-0.125 0.082031-0.20703 0.039062-0.38281-0.125-0.53125-0.1875-0.1875-0.42188-0.28125-0.70312-0.28125v-0.4375l0.3125 0.015625 0.64062 0.015625 0.28125 0.015625h1.2812l0.5625-0.03125 0.26562-0.015625v0.4375c-0.6875 0-1.2266 0.15234-1.6094 0.45312-0.13672 0.09375-0.25781 0.21094-0.35938 0.34375-0.042969 0.054688-0.10156 0.13672-0.17188 0.25-0.0625 0.10547-0.10547 0.17188-0.125 0.20312l-0.54688 0.8125c-0.13672 0.19922-0.23438 0.34375-0.29688 0.4375-0.23047 0.32422-0.43359 0.63281-0.60938 0.92188-0.023437 0.023438-0.054687 0.058594-0.09375 0.10938-0.03125 0.054687-0.058594 0.089844-0.078125 0.10938l-0.03125 0.0625c-0.03125 0-0.039062 0.011719-0.015625 0.03125l0.015625 0.015625v0.03125c0 0.011719 0.007812 0.023437 0.03125 0.03125 0.019531 0.011719 0.03125 0.023437 0.03125 0.03125l0.1875 0.29688 0.71875 1.0938 1.5312 2.3281 0.39062 0.54688c0.14453 0.23047 0.28125 0.38281 0.40625 0.45312 0.09375 0.0625 0.25 0.10156 0.46875 0.10938 0.15625 0.023438 0.39844 0.03125 0.73438 0.03125v0.4375l-0.3125-0.015625-0.64062-0.03125h-1.4844l-0.5625 0.015625-0.5 0.015625-0.35938 0.015625v-0.4375c0.25781 0 0.5-0.054688 0.71875-0.17188 0.125-0.070313 0.1875-0.15625 0.1875-0.25 0-0.007813-0.011719-0.046875-0.03125-0.10938l-0.10938-0.15625-0.42188-0.64062-0.32812-0.48438-0.85938-1.2812-0.34375-0.54688-0.125-0.15625c0-0.019531-0.011719-0.039063-0.03125-0.0625-0.023437-0.019531-0.03125-0.039063-0.03125-0.0625h-0.015625c0 0.011719-0.007812 0.027344-0.015625 0.046875-0.011719 0.023438-0.023437 0.039062-0.03125 0.046875-0.03125 0.042969-0.074219 0.10156-0.125 0.17188-0.16797 0.26172-0.29688 0.45312-0.39062 0.57812-0.54297 0.8125-0.88672 1.3203-1.0312 1.5156-0.125 0.21094-0.22656 0.35938-0.29688 0.45312-0.023437 0.023437-0.042969 0.054687-0.0625 0.09375-0.023437 0.03125-0.039063 0.054687-0.046875 0.0625-0.042969 0.054687-0.070312 0.10156-0.078125 0.14062-0.085937 0.17969-0.046875 0.35156 0.10938 0.51562 0.1875 0.19922 0.42969 0.29688 0.73438 0.29688v0.4375l-0.32812-0.015625-0.64062-0.015625-0.28125-0.015625h-1.2812l-0.54688 0.03125-0.26562 0.015625v-0.4375c0.625 0 1.125-0.12891 1.5-0.39062 0.14453-0.10156 0.27344-0.21094 0.39062-0.32812 0.070312-0.09375 0.14453-0.19531 0.21875-0.3125l0.20312-0.32812c0.17578-0.23828 0.4375-0.60938 0.78125-1.1094l0.28125-0.45312 0.70312-1.0156c0.10156-0.16406 0.16406-0.25391 0.1875-0.26562l0.046875-0.078125v-0.03125-0.03125l-0.046875-0.078125-0.1875-0.26562c-0.24219-0.34375-0.46094-0.67578-0.65625-1l-1.3281-2-0.29688-0.42188c-0.13672-0.22656-0.28125-0.38281-0.4375-0.46875-0.085938-0.050781-0.23047-0.082031-0.4375-0.09375-0.15625-0.019531-0.40234-0.03125-0.73438-0.03125z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="n" overflow="visible">
|
|
98
|
+
<path d="m1.6562-6.0312h5.75v0.3125c-0.375 0-0.61719 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.10156-0.29688 0.17188-0.054687 0.074219-0.078125 0.21484-0.078125 0.42188v4.1562c0 0.21094 0.023438 0.35547 0.078125 0.4375 0.050781 0.0625 0.16016 0.11719 0.32812 0.15625 0.10156 0.011719 0.33203 0.015625 0.6875 0.015625v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625-0.96875 0.015625h-0.39062l-0.39062 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.003906 0.6875-0.015625 0.16406-0.039062 0.26953-0.097656 0.3125-0.17188 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.3438c-0.011719-0.1875-0.039063-0.29688-0.078125-0.32812-0.054688-0.050781-0.11719-0.082031-0.1875-0.09375-0.0625-0.007813-0.16406-0.015625-0.29688-0.015625h-1.2656c-0.11719 0.023438-0.1875 0.046875-0.21875 0.078125-0.054688 0.03125-0.089844 0.089844-0.10938 0.17188-0.011719 0.074219-0.015625 0.17188-0.015625 0.29688 0 0.085937-0.007812 0.14062-0.015625 0.17188v0.23438c0 0.15625-0.007813 0.27344-0.015625 0.34375v0.32812c-0.011719 0.0625-0.015625 0.15625-0.015625 0.28125s-0.007813 0.21484-0.015625 0.26562c-0.074219 0.96094-0.16406 1.6641-0.26562 2.1094-0.085937 0.35547-0.17969 0.63672-0.28125 0.84375-0.0625 0.15625-0.15234 0.30469-0.26562 0.4375-0.125 0.13672-0.24609 0.22656-0.35938 0.28125-0.15625 0.082031-0.33984 0.11328-0.54688 0.09375-0.32422 0-0.58984-0.10156-0.79688-0.29688-0.17969-0.17578-0.28125-0.40625-0.3125-0.6875-0.023437-0.1875 0.003906-0.34375 0.078125-0.46875 0.082031-0.125 0.20312-0.20703 0.35938-0.25 0.16406-0.039063 0.3125-0.019531 0.4375 0.0625 0.16406 0.085937 0.26562 0.21875 0.29688 0.40625s-0.011719 0.35156-0.125 0.48438c-0.125 0.13672-0.28125 0.20312-0.46875 0.20312 0.019531 0.011719 0.046875 0.039063 0.078125 0.078125 0.082031 0.03125 0.13281 0.054688 0.15625 0.0625 0.10156 0.042969 0.21094 0.0625 0.32812 0.0625 0.14453 0 0.26562-0.023438 0.35938-0.078125 0.11328-0.0625 0.21875-0.14844 0.3125-0.26562 0.09375-0.15625 0.17578-0.32812 0.25-0.51562 0.0625-0.1875 0.12891-0.45703 0.20312-0.8125 0.082031-0.45703 0.14844-1.0156 0.20312-1.6719l0.03125-0.82812c0-0.15625 0.003906-0.26953 0.015625-0.34375v-0.39062c0.019531-0.23828-0.007812-0.40625-0.078125-0.5-0.054687-0.0625-0.15625-0.11328-0.3125-0.15625-0.03125 0-0.085937-0.003906-0.15625-0.015625-0.0625-0.007813-0.10938-0.015625-0.14062-0.015625h-0.4375z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="ap" overflow="visible">
|
|
101
|
+
<path d="m3.375-6.2656h0.25c0.22656 0 0.45312 0.042969 0.67188 0.125 0.88281 0.25 1.5352 0.79297 1.9531 1.625 0.20703 0.44922 0.32031 0.92188 0.34375 1.4219v0.25c-0.03125 0.83594-0.35156 1.543-0.95312 2.125-0.5 0.48047-1.0898 0.75781-1.7656 0.84375-0.38672 0.050781-0.74609 0.03125-1.0781-0.0625-0.3125-0.0625-0.61719-0.17969-0.90625-0.35938-0.28125-0.16406-0.53125-0.36719-0.75-0.60938-0.17969-0.22656-0.32422-0.45312-0.4375-0.67188-0.21094-0.42578-0.32031-0.86328-0.32812-1.3125v-0.25c0.050781-0.8125 0.32031-1.4922 0.8125-2.0469 0.42578-0.48828 0.94141-0.81641 1.5469-0.98438 0.1875-0.039063 0.32812-0.066406 0.42188-0.078125 0.019531-0.007812 0.050781-0.015625 0.09375-0.015625h0.125zm-1.8281 3.4375v0.15625c0 0.085937 0.007813 0.21094 0.03125 0.375 0.050781 0.55469 0.1875 0.98047 0.40625 1.2812 0.11328 0.1875 0.26562 0.34375 0.45312 0.46875 0.34375 0.25 0.71875 0.36719 1.125 0.34375 0.36328-0.019531 0.6875-0.13281 0.96875-0.34375 0.16406-0.11328 0.30469-0.25391 0.42188-0.42188 0.25781-0.36328 0.41016-0.84375 0.45312-1.4375 0.007812-0.0625 0.015625-0.14844 0.015625-0.26562v-0.125c0.019531-0.21875 0.019531-0.42969 0-0.64062v-0.125c0-0.16406-0.015625-0.34375-0.046875-0.53125-0.042969-0.35156-0.125-0.64062-0.25-0.85938-0.10547-0.17578-0.21875-0.32812-0.34375-0.45312l-0.28125-0.25c-0.35547-0.20703-0.71484-0.30469-1.0781-0.29688-0.44922 0.023437-0.83594 0.18359-1.1562 0.48438-0.11719 0.09375-0.19922 0.1875-0.25 0.28125-0.29297 0.375-0.44922 0.96094-0.46875 1.75z"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="et" overflow="visible">
|
|
104
|
+
<path d="m0.26562-6.0312 0.23438 0.015625 0.48438 0.015625h1.3594l0.53125-0.015625 0.28125-0.015625v0.3125c-0.26172 0-0.45312 0.027344-0.57812 0.078125-0.11719 0.054687-0.1875 0.13281-0.21875 0.23438-0.011719 0.085938 0.023437 0.23047 0.10938 0.4375 0.10156 0.26172 0.20312 0.50781 0.29688 0.73438l0.84375 2.0625 0.25 0.59375c0.007813 0.023437 0.023437 0.058594 0.046875 0.10938 0.019531 0.054688 0.035156 0.089844 0.046875 0.10938 0 0.023437 0.003906 0.046875 0.015625 0.078125 0.019531 0.023438 0.03125 0.039062 0.03125 0.046875l0.046875-0.125c0.0625-0.15625 0.097656-0.24219 0.10938-0.26562l0.3125-0.73438 0.95312-2.3125c0.0625-0.15625 0.09375-0.28125 0.09375-0.375 0-0.17578-0.042969-0.31641-0.125-0.42188l-0.125-0.125c-0.054687-0.050781-0.11719-0.082031-0.1875-0.09375-0.0625-0.019531-0.14062-0.03125-0.23438-0.03125v-0.3125l0.21875 0.015625 0.625 0.015625h0.85938l0.39062-0.015625 0.17188-0.015625v0.3125c-0.11719 0-0.22656 0.011719-0.32812 0.03125-0.09375 0.03125-0.19531 0.074219-0.29688 0.125-0.23047 0.13672-0.41406 0.33984-0.54688 0.60938-0.054688 0.11719-0.125 0.28125-0.21875 0.5-0.03125 0.074219-0.078125 0.18359-0.14062 0.32812-0.0625 0.14844-0.10547 0.25781-0.125 0.32812-0.14844 0.32422-0.35156 0.80859-0.60938 1.4531l-0.96875 2.3438-0.42188 1.0156c-0.042969 0.10156-0.10938 0.26953-0.20312 0.5-0.15625 0.28906-0.29688 0.50781-0.42188 0.65625-0.26172 0.33203-0.55469 0.53906-0.875 0.625-0.29297 0.09375-0.58984 0.085937-0.89062-0.015625-0.30469-0.10547-0.52734-0.29297-0.67188-0.5625-0.054687-0.125-0.078125-0.19922-0.078125-0.21875-0.074219-0.21094-0.070312-0.40234 0.015625-0.57812 0.070313-0.13672 0.1875-0.22656 0.34375-0.26562 0.16406-0.042969 0.32031-0.03125 0.46875 0.03125 0.14453 0.070312 0.23828 0.19141 0.28125 0.35938 0.039063 0.17578 0.023437 0.33203-0.046875 0.46875-0.074219 0.125-0.17969 0.20703-0.3125 0.25-0.074219 0.019531-0.13281 0.03125-0.17188 0.03125 0.082031 0.070313 0.16406 0.12891 0.25 0.17188 0.26953 0.10156 0.53906 0.10938 0.8125 0.015625 0.11328-0.0625 0.22656-0.14062 0.34375-0.23438 0.25-0.21094 0.45312-0.49609 0.60938-0.85938 0.039062-0.074219 0.11719-0.24609 0.23438-0.51562 0.019531-0.074219 0.054687-0.17969 0.10938-0.3125 0.050781-0.125 0.09375-0.21875 0.125-0.28125 0.039062-0.09375 0.078125-0.18359 0.10938-0.26562 0.007813-0.019531 0-0.054688-0.03125-0.10938-0.054687-0.13281-0.089844-0.22656-0.10938-0.28125l-0.45312-1.1094-0.5625-1.3594-0.64062-1.5312-0.28125-0.70312c-0.09375-0.25-0.19531-0.41406-0.29688-0.5-0.0625-0.039063-0.15625-0.082031-0.28125-0.125-0.125-0.007813-0.3125-0.015625-0.5625-0.015625z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="es" overflow="visible">
|
|
107
|
+
<path d="m0.35938-6.0312 0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.98438-0.015625h0.35938l0.40625-0.015625 0.28125-0.015625v0.3125c-0.30469 0-0.52344 0.011719-0.65625 0.03125-0.14844 0.023438-0.25 0.058594-0.3125 0.10938-0.042969 0.042969-0.074219 0.10547-0.09375 0.1875-0.023437 0.09375-0.03125 0.23438-0.03125 0.42188v1.5h1.2344c0.30078 0 0.52344 0.007812 0.67188 0.015625 0.45703 0.023437 0.87891 0.13672 1.2656 0.34375 0.22656 0.125 0.42188 0.28125 0.57812 0.46875 0.10156 0.11719 0.17969 0.24219 0.23438 0.375 0.0625 0.10547 0.097656 0.21094 0.10938 0.3125 0.007813 0.074219 0.015625 0.16797 0.015625 0.28125-0.042969 0.53125-0.35547 0.96484-0.9375 1.2969-0.35547 0.19922-0.76562 0.32031-1.2344 0.35938-0.09375 0.011719-0.23438 0.015625-0.42188 0.015625h-3.5781v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1562c0-0.20703-0.027344-0.35156-0.078125-0.4375-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125zm6.2188 0 0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.98438-0.015625h0.375l0.39062-0.015625 0.28125-0.015625v0.3125c-0.32422 0-0.55859 0.011719-0.70312 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.0625 0.085938-0.09375 0.23047-0.09375 0.4375v4.1562c0 0.21094 0.03125 0.35156 0.09375 0.42188 0.050781 0.085937 0.15625 0.13672 0.3125 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.39062-0.015625-0.375-0.015625h-0.98438l-0.3125 0.015625-0.53125 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.14453-0.019531 0.25-0.066406 0.3125-0.14062 0.0625-0.082031 0.09375-0.22656 0.09375-0.4375v-4.1562c0-0.20703-0.027344-0.35156-0.078125-0.4375-0.074219-0.082031-0.18359-0.13281-0.32812-0.15625-0.14844-0.019531-0.375-0.03125-0.6875-0.03125zm-4.1562 2.875v1.9531c0 0.23047 0.003906 0.40234 0.015625 0.51562 0.019531 0.14844 0.039062 0.23438 0.0625 0.26562 0.03125 0.023437 0.070312 0.042969 0.125 0.0625h0.85938c0.3125 0 0.5-0.003906 0.5625-0.015625 0.39453-0.0625 0.72656-0.24219 1-0.54688 0.10156-0.14453 0.17578-0.27344 0.21875-0.39062 0.03125-0.070312 0.054687-0.19531 0.078125-0.375 0.007812-0.0625 0.003906-0.16016-0.015625-0.29688-0.054687-0.3125-0.20312-0.57031-0.45312-0.78125-0.24219-0.20703-0.51562-0.33594-0.82812-0.39062h-0.625z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="m" overflow="visible">
|
|
110
|
+
<path d="m1.7344-9.3594c0.070313 0 0.15625 0.007813 0.25 0.015625 0.11328 0.042969 0.19141 0.085938 0.23438 0.125 0.070312 0.03125 0.12891 0.078125 0.17188 0.14062 0.19531 0.26172 0.21094 0.54297 0.046875 0.84375-0.054688 0.10547-0.13281 0.18359-0.23438 0.23438-0.09375 0.0625-0.19531 0.10547-0.29688 0.125-0.074219 0-0.17188-0.003906-0.29688-0.015625-0.10547-0.03125-0.1875-0.070313-0.25-0.125-0.09375-0.082031-0.16797-0.16406-0.21875-0.25-0.13672-0.23828-0.13672-0.47656 0-0.71875 0.0625-0.09375 0.14062-0.17188 0.23438-0.23438 0.070312-0.0625 0.19141-0.10938 0.35938-0.14062zm-1.2188 3.3281 0.21875-0.015625 0.29688-0.03125 0.39062-0.03125 0.59375-0.03125 0.35938-0.03125 0.10938-0.015625v5.4062c0 0.11719 0.023437 0.20312 0.078125 0.26562 0.039062 0.074219 0.14453 0.13281 0.3125 0.17188 0.125 0.011719 0.32031 0.015625 0.59375 0.015625v0.32812l-0.26562-0.015625-0.35938-0.015625h-0.125l-0.21875-0.015625h-1l-0.35938 0.015625-0.40625 0.015625-0.26562 0.015625v-0.32812c0.30078 0 0.52344-0.007813 0.67188-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-3.8906-0.3125c0-0.14453-0.03125-0.26562-0.09375-0.35938-0.054687-0.082031-0.15625-0.14453-0.3125-0.1875-0.13672-0.019531-0.34375-0.03125-0.625-0.03125z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="ao" overflow="visible">
|
|
113
|
+
<path d="m0.35938-6.0312 0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.98438-0.015625h0.35938l0.40625-0.015625 0.28125-0.015625v0.3125c-0.30469 0-0.52734 0.011719-0.67188 0.03125-0.13672 0.023438-0.23438 0.058594-0.29688 0.10938-0.042969 0.042969-0.074219 0.10938-0.09375 0.20312-0.023437 0.085938-0.03125 0.21875-0.03125 0.40625v1.5h2.9062v-1.5c0-0.22656-0.007813-0.36328-0.015625-0.40625-0.042969-0.10156-0.078125-0.17188-0.10938-0.20312-0.054687-0.050781-0.15234-0.085937-0.29688-0.10938-0.13672-0.019531-0.35547-0.03125-0.65625-0.03125v-0.3125l0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.96875-0.015625h0.375l0.40625-0.015625 0.28125-0.015625v0.3125c-0.3125 0-0.55469 0.011719-0.71875 0.03125-0.14844 0.042969-0.24609 0.09375-0.29688 0.15625-0.054687 0.085938-0.078125 0.22656-0.078125 0.42188v4.1719c0 0.21094 0.023438 0.35156 0.078125 0.42188 0.0625 0.085937 0.17188 0.13672 0.32812 0.15625 0.14453 0.023437 0.375 0.03125 0.6875 0.03125v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.96875l-0.78125 0.03125-0.28125 0.015625v-0.32812c0.30078 0 0.51953-0.003906 0.65625-0.015625 0.16406-0.039062 0.26953-0.082031 0.3125-0.125 0.050781-0.050781 0.082031-0.13281 0.09375-0.25 0.007812-0.050781 0.015625-0.21875 0.015625-0.5v-1.9375h-2.9062v1.9375c0 0.28125 0.003906 0.44922 0.015625 0.5 0.019531 0.11719 0.054688 0.19922 0.10938 0.25 0.039063 0.03125 0.14062 0.074219 0.29688 0.125 0.14453 0.011719 0.36719 0.015625 0.67188 0.015625v0.32812l-0.28125-0.015625-0.53125-0.015625-0.3125-0.015625h-0.98438l-0.35938 0.015625-0.40625 0.015625-0.28125 0.015625v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1719c0-0.19531-0.027344-0.33594-0.078125-0.42188-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125z"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="er" overflow="visible">
|
|
116
|
+
<path d="m0.35938-6.0312 0.28125 0.015625 0.53125 0.015625 0.3125 0.015625 0.98438-0.015625h0.35938l0.40625-0.015625 0.28125-0.015625v0.3125c-0.30469 0-0.52344 0.011719-0.65625 0.03125-0.14844 0.023438-0.25 0.058594-0.3125 0.10938-0.042969 0.042969-0.074219 0.10547-0.09375 0.1875-0.023437 0.09375-0.03125 0.23438-0.03125 0.42188v1.5h1.2344c0.30078 0 0.52344 0.007812 0.67188 0.015625 0.45703 0.023437 0.87891 0.13672 1.2656 0.34375 0.22656 0.125 0.42188 0.28125 0.57812 0.46875 0.10156 0.11719 0.17969 0.24219 0.23438 0.375 0.0625 0.10547 0.097656 0.21094 0.10938 0.3125 0.007813 0.074219 0.015625 0.16797 0.015625 0.28125-0.042969 0.53125-0.35547 0.96484-0.9375 1.2969-0.35547 0.19922-0.76562 0.32031-1.2344 0.35938-0.09375 0.011719-0.23438 0.015625-0.42188 0.015625h-3.5781v-0.32812c0.3125 0 0.53906-0.007813 0.6875-0.03125 0.15625-0.019531 0.26562-0.070313 0.32812-0.15625 0.050781-0.070313 0.078125-0.21094 0.078125-0.42188v-4.1562c0-0.20703-0.027344-0.35156-0.078125-0.4375-0.054688-0.0625-0.15625-0.11328-0.3125-0.15625-0.14844-0.019531-0.38281-0.03125-0.70312-0.03125zm2.0625 2.875v1.9531c0 0.23047 0.003906 0.40234 0.015625 0.51562 0.019531 0.14844 0.039062 0.23438 0.0625 0.26562 0.03125 0.023437 0.070312 0.042969 0.125 0.0625h0.85938c0.3125 0 0.5-0.003906 0.5625-0.015625 0.39453-0.0625 0.72656-0.24219 1-0.54688 0.10156-0.14453 0.17578-0.27344 0.21875-0.39062 0.03125-0.070312 0.054687-0.19531 0.078125-0.375 0.007812-0.0625 0.003906-0.16016-0.015625-0.29688-0.054687-0.3125-0.20312-0.57031-0.45312-0.78125-0.24219-0.20703-0.51562-0.33594-0.82812-0.39062h-0.625z"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="eq" overflow="visible">
|
|
119
|
+
<path d="m8.2344-8.6719c0.019531-0.039063 0.039063-0.078125 0.0625-0.10938 0.09375-0.13281 0.14453-0.21094 0.15625-0.23438l0.51562-0.75c0.03125-0.050781 0.0625-0.082031 0.09375-0.09375 0.019531-0.019531 0.050781-0.03125 0.09375-0.03125 0.070312 0 0.11719 0.023437 0.14062 0.0625 0.019531 0.023437 0.03125 0.058594 0.03125 0.10938v3.5469c0 0.16797-0.03125 0.26172-0.09375 0.28125-0.011719 0.011719-0.046875 0.015625-0.10938 0.015625-0.11719 0-0.1875-0.019531-0.21875-0.0625 0-0.019531-0.007812-0.039062-0.015625-0.0625-0.011719-0.03125-0.015625-0.050781-0.015625-0.0625 0-0.019531-0.007812-0.046875-0.015625-0.078125v-0.078125c-0.023437-0.15625-0.058594-0.34766-0.10938-0.57812-0.042969-0.16406-0.10938-0.35156-0.20312-0.5625-0.375-0.90625-0.91797-1.5234-1.625-1.8594-0.074219-0.019531-0.18359-0.0625-0.32812-0.125-0.27344-0.09375-0.57422-0.12891-0.90625-0.10938-0.32422 0.023437-0.60938 0.074219-0.85938 0.15625-0.51172 0.14844-0.96484 0.41797-1.3594 0.8125-0.24219 0.23047-0.47656 0.54688-0.70312 0.95312-0.085937 0.125-0.15625 0.29297-0.21875 0.5-0.125 0.34375-0.21875 0.74609-0.28125 1.2031-0.03125 0.375-0.046875 0.79688-0.046875 1.2656 0.03125 1.168 0.25781 2.0938 0.6875 2.7812 0.26953 0.41797 0.60156 0.76562 1 1.0469 0.38281 0.26172 0.80469 0.4375 1.2656 0.53125 0.45703 0.09375 0.91016 0.09375 1.3594 0 0.30078-0.082031 0.5625-0.1875 0.78125-0.3125 0.28125-0.15625 0.51562-0.33594 0.70312-0.54688 0.44531-0.46875 0.73828-1.0156 0.875-1.6406 0.03125-0.10156 0.050781-0.26562 0.0625-0.48438v-0.23438c0.019531-0.050781 0.0625-0.085937 0.125-0.10938h0.14062c0.0625 0.023438 0.09375 0.058594 0.09375 0.10938 0.007812 0.023437 0.015625 0.058594 0.015625 0.10938 0 0.023438-0.007813 0.0625-0.015625 0.125v0.10938c-0.03125 0.30469-0.09375 0.59375-0.1875 0.875-0.17969 0.53125-0.46094 0.99609-0.84375 1.3906-0.51172 0.54297-1.1406 0.89062-1.8906 1.0469-0.21094 0.039063-0.375 0.0625-0.5 0.0625-0.375 0.03125-0.77734 0-1.2031-0.09375-0.98047-0.21875-1.8086-0.67969-2.4844-1.3906-0.49219-0.50781-0.86719-1.1172-1.125-1.8281-0.49219-1.3516-0.42188-2.7031 0.20312-4.0469 0.21875-0.45703 0.52344-0.89844 0.92188-1.3281 0.125-0.13281 0.29688-0.28516 0.51562-0.45312 0.67578-0.5625 1.4688-0.89844 2.375-1.0156 0.25-0.019531 0.48438-0.03125 0.70312-0.03125 0.34375 0.023437 0.67188 0.085937 0.98438 0.1875 0.55078 0.21094 1.0352 0.55469 1.4531 1.0312z"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="af" overflow="visible">
|
|
122
|
+
<path d="m3.9062-1.875c0.039062-0.28125 0.21094-0.82031 0.51562-1.625 0.375-1.0078 0.71094-1.6953 1.0156-2.0625 0.1875-0.25 0.39453-0.42188 0.625-0.51562 0.22656-0.09375 0.41016-0.12891 0.54688-0.10938 0.13281 0.023438 0.24219 0.058594 0.32812 0.10938 0.15625 0.125 0.22656 0.29688 0.21875 0.51562 0 0.21094-0.089844 0.36719-0.26562 0.46875-0.0625 0.03125-0.17188 0.058594-0.32812 0.078125-0.14844 0.023437-0.28125 0.046875-0.40625 0.078125-0.11719 0.03125-0.27344 0.15234-0.46875 0.35938-0.19922 0.21094-0.39062 0.5-0.57812 0.875-0.16797 0.32422-0.375 0.82422-0.625 1.5-0.25 0.66797-0.375 1.0859-0.375 1.25 0 0.042969 0.046875 0.33984 0.14062 0.89062s0.14062 1.2109 0.14062 1.9844v0.45312c-0.023437 0.13281-0.085937 0.23828-0.1875 0.3125-0.10547 0.070312-0.22656 0.10156-0.35938 0.09375-0.0625 0-0.12109-0.011719-0.17188-0.03125-0.125-0.054688-0.21484-0.13672-0.26562-0.25-0.042969-0.10547-0.0625-0.21875-0.0625-0.34375 0.007812-0.125 0.015625-0.24609 0.015625-0.35938 0-0.46094 0.035156-0.95312 0.10938-1.4844 0.070312-0.53125 0.125-0.86328 0.15625-1 0-0.007812 0.003906-0.046875 0.015625-0.10938 0.019531-0.070313 0.03125-0.12891 0.03125-0.17188 0-0.15625-0.10547-0.52344-0.3125-1.1094-0.19922-0.59375-0.37109-1.0664-0.51562-1.4219-0.14844-0.32031-0.27344-0.57812-0.375-0.76562-0.10547-0.19531-0.27344-0.375-0.5-0.53125-0.23047-0.16406-0.49219-0.23438-0.78125-0.20312-0.14844 0.023438-0.25781 0.054688-0.32812 0.09375-0.0625 0.03125-0.10547 0.078125-0.125 0.14062-0.023437 0.0625-0.039063 0.10156-0.046875 0.10938-0.042969 0.03125-0.09375 0.042969-0.15625 0.03125-0.0625-0.007812-0.10547-0.039062-0.125-0.09375-0.011719-0.03125-0.015625-0.097656-0.015625-0.20312 0.0625-0.55078 0.25391-0.92969 0.57812-1.1406 0.39453-0.23828 0.81641-0.16406 1.2656 0.21875 0.16406 0.16797 0.33203 0.40625 0.5 0.71875 0.17578 0.3125 0.32812 0.64844 0.45312 1 0.13281 0.35547 0.25 0.68359 0.34375 0.98438 0.10156 0.30469 0.1875 0.58594 0.25 0.84375 0.070312 0.26172 0.11328 0.40234 0.125 0.42188z"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="ae" overflow="visible">
|
|
125
|
+
<path d="m4.9062-4.7812c-0.0625 0-0.1875-0.054688-0.375-0.17188-0.1875-0.11328-0.43359-0.22266-0.73438-0.32812-0.29297-0.11328-0.60156-0.17188-0.92188-0.17188-0.9375 0-1.4961 0.32031-1.6719 0.95312-0.0625 0.35547 0.007813 0.66797 0.21875 0.9375 0.09375 0.09375 0.14844 0.14062 0.17188 0.14062 0.007812 0 0.11719-0.046875 0.32812-0.14062 0.21875-0.10156 0.48828-0.17578 0.8125-0.21875 0.20703-0.019531 0.36328-0.007812 0.46875 0.03125 0.16406 0.042969 0.28125 0.15234 0.34375 0.32812 0.070313 0.17969 0.066406 0.33984-0.015625 0.48438-0.074219 0.16797-0.22656 0.26562-0.45312 0.29688-0.23047 0.03125-0.4375 0.027344-0.625-0.015625-0.1875-0.050781-0.35547-0.10156-0.5-0.15625-0.1875-0.11328-0.30859-0.17188-0.35938-0.17188-0.054688 0.011719-0.12109 0.074219-0.20312 0.1875-0.074219 0.11719-0.13672 0.28125-0.1875 0.5-0.042969 0.21094-0.015625 0.46094 0.078125 0.75 0.14453 0.38672 0.41406 0.65234 0.8125 0.79688 0.39453 0.14844 0.78516 0.19531 1.1719 0.14062 0.38281-0.050781 0.72266-0.14453 1.0156-0.28125 0.15625-0.082031 0.28906-0.16406 0.40625-0.25 0.11328-0.09375 0.22266-0.17969 0.32812-0.26562 0.10156-0.09375 0.16016-0.14453 0.17188-0.15625 0.039062-0.0625 0.09375-0.078125 0.15625-0.046875s0.082031 0.085937 0.0625 0.15625c-0.023438 0.0625-0.10547 0.21875-0.25 0.46875-0.13672 0.25-0.24609 0.42188-0.32812 0.51562-0.33594 0.35547-0.75 0.58203-1.25 0.6875-0.5 0.11328-0.98047 0.097656-1.4375-0.046875-0.40625-0.125-0.76172-0.33594-1.0625-0.64062-0.30469-0.3125-0.46484-0.67188-0.48438-1.0781-0.03125-0.44531 0.10938-0.89062 0.42188-1.3281 0.03125-0.039062 0.082031-0.097656 0.15625-0.17188 0.070313-0.070313 0.125-0.12891 0.15625-0.17188-0.15625-0.09375-0.30859-0.26562-0.45312-0.51562-0.14844-0.25-0.24219-0.52344-0.28125-0.82812-0.03125-0.3125 0.039062-0.60156 0.21875-0.875 0.082031-0.10156 0.20703-0.22656 0.375-0.375 0.53125-0.36328 1.1406-0.53906 1.8281-0.53125 0.6875 0.011719 1.375 0.17188 2.0625 0.48438 0.16406 0.085937 0.26562 0.15234 0.29688 0.20312 0.039062 0.042969 0.035156 0.12109-0.015625 0.23438-0.054687 0.11719-0.14844 0.28125-0.28125 0.5-0.0625 0.09375-0.12109 0.14062-0.17188 0.14062z"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="ad" overflow="visible">
|
|
128
|
+
<path d="m0.78125-5.2969c0-0.125-0.007812-0.25781-0.015625-0.40625v-0.28125c0-0.039063 0.003906-0.078125 0.015625-0.10938 0.007812-0.039062 0.035156-0.066406 0.078125-0.078125 0.007813-0.007813 0.09375-0.015625 0.25-0.015625h0.5c0.13281 0 0.20312 0.058594 0.20312 0.17188 0 0.11719-0.03125 0.43359-0.09375 0.95312l-0.25 2.5781c-0.074219 0.64844-0.09375 1.0273-0.0625 1.1406 0.09375 0.16797 0.22656 0.26562 0.40625 0.29688 0.17578 0.023437 0.31641-0.039063 0.42188-0.1875 0.039063-0.050781 0.070313-0.11719 0.09375-0.20312 0.019531-0.082031 0.050781-0.14062 0.09375-0.17188 0.11328-0.050781 0.22656 0.027344 0.34375 0.23438 0.15625 0.24219 0.19141 0.50781 0.10938 0.79688-0.074219 0.29297-0.24219 0.50781-0.5 0.64062-0.16797 0.082031-0.35547 0.10938-0.5625 0.078125-0.21094-0.03125-0.38672-0.11719-0.53125-0.25-0.21094-0.23828-0.33984-0.61328-0.39062-1.125-0.042969-0.51953-0.046875-0.88281-0.015625-1.0938-0.011719-0.25-0.027344-0.61719-0.046875-1.1094-0.011719-0.5-0.015625-0.86719-0.015625-1.1094 0-0.15625-0.011719-0.40625-0.03125-0.75z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="ac" overflow="visible">
|
|
131
|
+
<path d="m3-6.8125c0.019531-0.070312 0.050781-0.16406 0.09375-0.28125 0.039062-0.11328 0.12891-0.33594 0.26562-0.67188 0.14453-0.34375 0.30469-0.74219 0.48438-1.2031l0.15625-0.40625c0.070312-0.1875 0.14844-0.3125 0.23438-0.375 0.16406-0.09375 0.34766-0.085938 0.54688 0.015625 0.19531 0.10547 0.29688 0.25781 0.29688 0.45312-0.011719 0.11719-0.0625 0.24219-0.15625 0.375-0.085937 0.125-0.16406 0.22656-0.23438 0.29688l-1.375 1.7188c-0.03125 0.054687-0.0625 0.089844-0.09375 0.10938-0.03125 0.011719-0.058594 0.015625-0.078125 0.015625-0.023437 0-0.070313-0.015625-0.14062-0.046875zm2.1562 4.8906c0.019531 0.17969 0.12891 0.41797 0.32812 0.71875 0.20703 0.29297 0.44141 0.44531 0.70312 0.45312 0.15625 0 0.26953-0.015625 0.34375-0.046875 0.070312-0.039063 0.11328-0.085937 0.125-0.14062 0.019531-0.050781 0.046875-0.082031 0.078125-0.09375 0.039063-0.019531 0.085937-0.019531 0.14062 0 0.0625 0.011719 0.097656 0.039062 0.10938 0.078125 0.03125 0.074219 0.019531 0.21094-0.03125 0.40625-0.074219 0.27344-0.20312 0.46484-0.39062 0.57812-0.1875 0.125-0.41797 0.13281-0.6875 0.03125-0.17969-0.082031-0.33594-0.21875-0.46875-0.40625-0.125-0.19531-0.24609-0.42969-0.35938-0.70312-0.10547-0.26953-0.15625-0.41016-0.15625-0.42188-0.0625 0.125-0.17969 0.29688-0.34375 0.51562-0.35547 0.48047-0.74609 0.80469-1.1719 0.96875-0.42969 0.16406-0.82031 0.17578-1.1719 0.03125-0.34375-0.125-0.66406-0.37891-0.95312-0.76562-0.38672-0.53125-0.60547-1.1797-0.65625-1.9531-0.054688-0.78125 0.054688-1.4766 0.32812-2.0938 0.20703-0.42578 0.47656-0.78125 0.8125-1.0625 0.34375-0.28906 0.72656-0.40625 1.1562-0.34375 0.48828 0.054687 0.88281 0.37109 1.1875 0.95312 0.11328 0.21094 0.21094 0.43359 0.29688 0.67188 0.09375 0.23047 0.16406 0.45312 0.21875 0.67188 0.050781 0.21094 0.09375 0.35547 0.125 0.4375l0.75-2.3906c0.019531-0.11328 0.046875-0.19531 0.078125-0.25 0.03125-0.050781 0.054687-0.082031 0.078125-0.09375 0.019531-0.007813 0.082031-0.015625 0.1875-0.015625h0.59375c0.11328 0 0.17188 0.042969 0.17188 0.125 0.007813 0.085938-0.125 0.55469-0.40625 1.4062-0.27344 0.85547-0.47656 1.4609-0.60938 1.8125-0.074219 0.16797-0.14062 0.3125-0.20312 0.4375-0.054687 0.125-0.09375 0.21094-0.125 0.25-0.03125 0.042969-0.054687 0.085938-0.0625 0.125-0.011719 0.042969-0.015625 0.078125-0.015625 0.10938zm-0.79688-0.65625c0.09375-0.13281 0.13281-0.25391 0.125-0.35938-0.011719-0.10156-0.09375-0.37891-0.25-0.82812-0.26172-0.70703-0.57812-1.1719-0.95312-1.3906-0.28125-0.14453-0.58984-0.17969-0.92188-0.10938-0.32422 0.074219-0.59375 0.22656-0.8125 0.45312-0.29297 0.3125-0.48047 0.73047-0.5625 1.25-0.14844 0.90625 0.007813 1.6484 0.46875 2.2188 0.17578 0.21875 0.41016 0.38672 0.70312 0.5 0.28906 0.10547 0.54688 0.125 0.76562 0.0625 0.50781-0.14453 0.98828-0.74219 1.4375-1.7969z"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="ab" overflow="visible">
|
|
134
|
+
<path d="m5-3.5312c-0.13672 1-0.09375 1.7188 0.125 2.1562 0.21875 0.42969 0.48828 0.65234 0.8125 0.67188 0.03125 0 0.066406-0.03125 0.10938-0.09375 0.050781-0.0625 0.11719-0.11719 0.20312-0.17188 0.09375-0.0625 0.20703-0.078125 0.34375-0.046875 0.20703 0.054687 0.33594 0.17188 0.39062 0.35938 0.050781 0.1875-0.011719 0.40625-0.1875 0.65625-0.25 0.25-0.58594 0.33594-1 0.26562-0.40625-0.074219-0.70312-0.26953-0.89062-0.59375-0.42969-0.63281-0.52734-1.6641-0.29688-3.0938-0.4375 0.4375-0.91797 0.96484-1.4375 1.5781-0.80469 0.96094-1.2969 1.5547-1.4844 1.7812-0.17969 0.17578-0.30859 0.28516-0.39062 0.32812-0.19922 0.070313-0.38281 0.023437-0.54688-0.14062-0.16797-0.15625-0.21484-0.33594-0.14062-0.54688 0.039063-0.09375 0.19141-0.26953 0.45312-0.53125l0.79688-0.79688c0.070313-0.070312 0.15625-0.14844 0.25-0.23438 0.09375-0.09375 0.14453-0.14062 0.15625-0.14062 0.019531-0.007812 0.046875-0.070312 0.078125-0.1875 0.039062-0.11328 0.0625-0.20703 0.0625-0.28125 0-0.082031 0.007812-0.26562 0.03125-0.54688v-0.17188c0.007812-0.082031 0.015625-0.14062 0.015625-0.17188-0.023437-0.90625-0.25-1.5039-0.6875-1.7969-0.074219-0.039062-0.23438-0.097656-0.48438-0.17188-0.0625 0.11719-0.11719 0.19531-0.15625 0.23438-0.09375 0.074219-0.21094 0.10156-0.34375 0.078125-0.13672-0.019531-0.24219-0.078125-0.3125-0.17188-0.11719-0.17578-0.11719-0.37891 0-0.60938 0.09375-0.17578 0.25-0.30078 0.46875-0.375 0.22656-0.070313 0.47656-0.0625 0.75 0.03125 0.26953 0.09375 0.50391 0.27344 0.70312 0.53125 0.38281 0.55469 0.53516 1.3711 0.45312 2.4531-0.042969 0.27344-0.070312 0.49219-0.078125 0.65625 0.41406-0.41406 0.96094-1.0234 1.6406-1.8281 0.67578-0.8125 1.1172-1.3359 1.3281-1.5781 0.15625-0.16406 0.28516-0.26562 0.39062-0.29688 0.16406-0.039063 0.31641-0.007813 0.45312 0.09375 0.14453 0.10547 0.21875 0.24609 0.21875 0.42188 0 0.14844-0.089844 0.3125-0.26562 0.5l-0.54688 0.54688-0.79688 0.78125c-0.125 0.125-0.1875 0.27734-0.1875 0.45312z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="aa" overflow="visible">
|
|
137
|
+
<path d="m3.1406-6.8125c0.007813-0.09375 0.085937-0.30469 0.23438-0.64062l0.70312-1.7656c0.050781-0.17578 0.10156-0.30078 0.15625-0.375 0.125-0.1875 0.30078-0.25 0.53125-0.1875 0.23828 0.054688 0.37891 0.1875 0.42188 0.40625 0.019531 0.09375 0.003906 0.19531-0.046875 0.29688-0.042969 0.10547-0.10156 0.19922-0.17188 0.28125-0.0625 0.074219-0.125 0.15625-0.1875 0.25l-1.4688 1.8281zm-1.125 1.1094c0.80078-0.50781 1.6602-0.625 2.5781-0.34375 0.73828 0.23047 1.3008 0.65234 1.6875 1.2656 0.38281 0.61719 0.55078 1.2734 0.5 1.9688-0.042969 0.6875-0.27734 1.293-0.70312 1.8125-0.55469 0.65625-1.2812 1.0352-2.1875 1.1406-0.54297 0.039063-1.0781-0.074219-1.6094-0.34375-0.53125-0.28125-0.9375-0.66016-1.2188-1.1406-0.35547-0.57031-0.51172-1.1953-0.46875-1.875 0.039062-0.6875 0.26953-1.2891 0.6875-1.8125 0.1875-0.25 0.42969-0.47266 0.73438-0.67188zm3 4.3906c0.28125-0.42578 0.48828-0.92578 0.625-1.5 0.13281-0.58203 0.12891-1.1484-0.015625-1.7031-0.13672-0.5625-0.44531-0.95312-0.92188-1.1719-0.4375-0.19531-0.91406-0.17188-1.4219 0.078125-0.34375 0.19922-0.67969 0.53906-1 1.0156-0.3125 0.48047-0.51562 1.1016-0.60938 1.8594-0.074219 0.67969 0.023437 1.25 0.29688 1.7188 0.26953 0.46875 0.66406 0.73047 1.1875 0.78125 0.70703 0.054687 1.3281-0.30469 1.8594-1.0781z"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="z" overflow="visible">
|
|
140
|
+
<path d="m7.25-6.0312c0.125 0 0.20312 0.011719 0.23438 0.03125 0.039063 0.023438 0.0625 0.078125 0.0625 0.17188v0.59375c0 0.09375-0.015625 0.16406-0.046875 0.20312-0.023438 0.03125-0.085938 0.046875-0.1875 0.046875-0.09375 0-0.20312-0.007813-0.32812-0.03125-0.125-0.019531-0.32422-0.035156-0.59375-0.046875-0.27344-0.019531-0.55859-0.03125-0.85938-0.03125h-0.28125c0.50781 0.21094 0.92578 0.625 1.25 1.25 0.21875 0.46094 0.30078 0.94531 0.25 1.4531-0.054688 0.51172-0.22656 0.96875-0.51562 1.375-0.55469 0.71875-1.3125 1.0977-2.2812 1.1406-0.96094 0.050781-1.7773-0.25391-2.4531-0.92188-0.4375-0.42578-0.71875-0.94141-0.84375-1.5469-0.125-0.60156-0.074219-1.1875 0.15625-1.75 0.15625-0.36328 0.36328-0.67969 0.625-0.95312 0.25781-0.26953 0.53516-0.46875 0.82812-0.59375 0.28906-0.13281 0.54688-0.22656 0.76562-0.28125 0.21875-0.0625 0.42578-0.097656 0.625-0.10938zm-5.6719 2.4688c-0.14844 0.46875-0.13281 1.0273 0.046875 1.6719 0.17578 0.63672 0.46094 1.0898 0.85938 1.3594 0.20703 0.15625 0.45312 0.26172 0.73438 0.3125 0.28125 0.042969 0.58594 0.011719 0.92188-0.09375 0.33203-0.10156 0.64062-0.28906 0.92188-0.5625 0.6875-0.6875 0.97266-1.4609 0.85938-2.3281-0.11719-0.86328-0.55859-1.4609-1.3281-1.7969-0.59375-0.22656-1.1992-0.19531-1.8125 0.09375-0.60547 0.29297-1.0078 0.74219-1.2031 1.3438z"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="y" overflow="visible">
|
|
143
|
+
<path d="m6.1719 0.14062c-0.26172 0-0.47656-0.074219-0.64062-0.21875-0.15625-0.14453-0.25781-0.29688-0.29688-0.45312-0.03125-0.16406-0.078125-0.3125-0.14062-0.4375-0.054688 0.15625-0.17188 0.32422-0.35938 0.5-0.30469 0.30469-0.66797 0.48828-1.0938 0.5625-0.41797 0.082031-0.8125 0.03125-1.1875-0.15625-0.32422-0.1875-0.60156-0.47656-0.82812-0.875-0.23047-0.40625-0.38281-0.74219-0.45312-1.0156h-0.015625c-0.19922 1.9492 0.019531 3.4141 0.65625 4.4062 0 0.019531 0.046875 0.082031 0.14062 0.1875 0.09375 0.11328 0.14844 0.20703 0.17188 0.28125 0.0625 0.15625 0.050781 0.30469-0.03125 0.45312-0.085938 0.14453-0.20312 0.22656-0.35938 0.25-0.24219 0.050781-0.46094-0.074219-0.65625-0.375-0.25-0.38672-0.40625-0.91797-0.46875-1.5938-0.054687-0.66797-0.011719-1.7344 0.125-3.2031l0.09375-0.85938 0.046875-0.5c0-0.0625-0.027344-0.19531-0.078125-0.40625-0.042969-0.21875-0.089844-0.51953-0.14062-0.90625-0.042969-0.38281-0.0625-0.82812-0.0625-1.3281 0-0.32031 0.078125-0.55469 0.23438-0.70312 0.10156-0.082031 0.22266-0.10938 0.35938-0.078125 0.13281 0.023437 0.23828 0.089844 0.3125 0.20312 0.125 0.28125 0.16406 0.53125 0.125 0.75-0.03125 0.21875-0.10156 0.55469-0.20312 1-0.09375 0.44922-0.13281 0.80859-0.10938 1.0781 0.019531 0.80469 0.19531 1.4531 0.53125 1.9531 0.33203 0.5 0.77344 0.75 1.3281 0.75 1.0703 0 1.6094-1.4102 1.6094-4.2344v-0.8125c0-0.46875 0.17578-0.70312 0.53125-0.70312 0.35156 0 0.53125 0.24609 0.53125 0.73438v0.39062c0 1.3242-0.11719 2.4062-0.34375 3.25-0.011719 0.042969-0.027344 0.10156-0.046875 0.17188-0.023437 0.074219-0.039063 0.125-0.046875 0.15625v0.14062c0.007812 0.0625 0.03125 0.13672 0.0625 0.21875 0.16406 0.4375 0.46094 0.60547 0.89062 0.5 0.050781 0 0.09375-0.015625 0.125-0.046875s0.054687-0.0625 0.078125-0.09375c0.019531-0.039063 0.035156-0.066406 0.046875-0.078125 0.03125-0.039062 0.082031-0.054688 0.15625-0.046875 0.070313 0.011719 0.11719 0.039063 0.14062 0.078125 0.039062 0.14844-0.007812 0.36719-0.14062 0.65625-0.125 0.28125-0.32422 0.42969-0.59375 0.45312z"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="x" overflow="visible">
|
|
146
|
+
<path d="m2.0156-5.7031c0.80078-0.50781 1.6602-0.625 2.5781-0.34375 0.73828 0.23047 1.3008 0.65234 1.6875 1.2656 0.38281 0.61719 0.55078 1.2734 0.5 1.9688-0.042969 0.6875-0.27734 1.293-0.70312 1.8125-0.55469 0.65625-1.2812 1.0352-2.1875 1.1406-0.54297 0.039063-1.0781-0.074219-1.6094-0.34375-0.53125-0.28125-0.9375-0.66016-1.2188-1.1406-0.35547-0.57031-0.51172-1.1953-0.46875-1.875 0.039062-0.6875 0.26953-1.2891 0.6875-1.8125 0.1875-0.25 0.42969-0.47266 0.73438-0.67188zm3 4.3906c0.28125-0.42578 0.48828-0.92578 0.625-1.5 0.13281-0.58203 0.12891-1.1484-0.015625-1.7031-0.13672-0.5625-0.44531-0.95312-0.92188-1.1719-0.4375-0.19531-0.91406-0.17188-1.4219 0.078125-0.34375 0.19922-0.67969 0.53906-1 1.0156-0.3125 0.48047-0.51562 1.1016-0.60938 1.8594-0.074219 0.67969 0.023437 1.25 0.29688 1.7188 0.26953 0.46875 0.66406 0.73047 1.1875 0.78125 0.70703 0.054687 1.3281-0.30469 1.8594-1.0781z"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="cp" overflow="visible">
|
|
149
|
+
<path d="m0.46875-6.2344h8v0.51562h-0.21875-0.23438c-0.11719 0-0.20312 0.007812-0.26562 0.015625-0.125 0-0.20312 0.027344-0.23438 0.078125-0.011719 0.011719-0.015625 0.042969-0.015625 0.09375v4.8281c0 0.0625 0.003906 0.09375 0.015625 0.09375 0.019531 0.03125 0.097656 0.058594 0.23438 0.078125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.53125-0.03125h-1.4844l-0.34375 0.015625-0.48438 0.015625-0.35938 0.015625v-0.51562h0.40625 0.125c0.0625-0.007813 0.10938-0.015625 0.14062-0.015625 0.070312 0 0.12891-0.003906 0.17188-0.015625 0.050781 0 0.085937-0.015625 0.10938-0.046875 0.019531-0.007812 0.03125-0.039062 0.03125-0.09375v-4.8281c0-0.050781-0.011719-0.09375-0.03125-0.125-0.023438-0.050781-0.09375-0.078125-0.21875-0.078125h-0.0625-0.625-1.2656-0.375-0.0625c-0.11719 0-0.1875 0.023438-0.21875 0.0625-0.011719 0.03125-0.015625 0.074219-0.015625 0.125v4.8281 0.09375c0.019531 0.023437 0.10156 0.046875 0.25 0.078125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.5-0.015625-0.32812-0.015625h-1.4844l-0.53125 0.03125-0.34375 0.015625v-0.51562h0.45312c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.14453-0.03125 0.22266-0.054688 0.23438-0.078125 0.007812 0 0.015625-0.03125 0.015625-0.09375v-4.8281c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.050781-0.10156-0.078125-0.23438-0.078125-0.054687-0.007813-0.13672-0.015625-0.25-0.015625h-0.23438-0.21875z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="w" overflow="visible">
|
|
152
|
+
<path d="m0.5-6.2031h0.1875l0.34375-0.015625 1.3125-0.0625 0.45312-0.015625 0.20312-0.015625v0.6875c0.1875-0.14453 0.35156-0.25 0.5-0.3125 0.45703-0.21875 0.92969-0.33594 1.4219-0.35938 0.625-0.03125 1.1914 0.0625 1.7031 0.28125 0.42578 0.17969 0.79688 0.45312 1.1094 0.82812 0.3125 0.38672 0.51562 0.86719 0.60938 1.4375 0.17578 1.0742-0.042969 1.9648-0.65625 2.6719-0.19922 0.25-0.45312 0.46484-0.76562 0.64062-0.26172 0.14844-0.5 0.25-0.71875 0.3125-0.30469 0.09375-0.625 0.15625-0.96875 0.1875-0.19922 0.0078125-0.39844 0.0078125-0.59375 0-0.3125-0.011719-0.64062-0.097656-0.98438-0.26562-0.17969-0.09375-0.32031-0.17578-0.42188-0.25-0.042969-0.007813-0.10156-0.046875-0.17188-0.10938v2.6094h0.98438v0.67188l-0.34375-0.015625-0.5-0.015625-0.32812-0.015625h-1.4844l-0.53125 0.03125-0.35938 0.015625v-0.67188h0.96875v-7.1094c0-0.13281-0.015625-0.23438-0.046875-0.29688-0.042969-0.070313-0.13281-0.11719-0.26562-0.14062-0.13672-0.019531-0.35547-0.03125-0.65625-0.03125zm6.1094 3.25v-0.20312c0-0.050781-0.007813-0.125-0.015625-0.21875v-0.20312l-0.046875-0.28125c-0.10547-0.73828-0.375-1.2695-0.8125-1.5938-0.011719-0.019531-0.10547-0.078125-0.28125-0.17188-0.23047-0.09375-0.47656-0.125-0.73438-0.09375-0.46875 0.042969-0.87109 0.18359-1.2031 0.42188-0.14844 0.11719-0.26172 0.21875-0.34375 0.3125-0.011719 0.011719-0.023437 0.027344-0.03125 0.046875-0.011719 0.023438-0.023437 0.03125-0.03125 0.03125-0.023437 0.023438-0.039063 0.042969-0.046875 0.0625v3.3438c0 0.054688 0.007812 0.089844 0.03125 0.10938 0.039062 0.0625 0.10938 0.15625 0.20312 0.28125 0.23828 0.25 0.51562 0.4375 0.82812 0.5625 0.32031 0.11719 0.64062 0.13672 0.95312 0.0625 0.19531-0.050781 0.36719-0.125 0.51562-0.21875 0.15625-0.09375 0.29688-0.21875 0.42188-0.375 0.30078-0.36328 0.48438-0.83203 0.54688-1.4062 0.019531-0.15625 0.03125-0.28125 0.03125-0.375 0.007812-0.007813 0.015625-0.023437 0.015625-0.046875v-0.046875z"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="v" overflow="visible">
|
|
155
|
+
<path d="m0.46875-6.2344 0.34375 0.015625 0.46875 0.015625 0.34375 0.015625 1.4844-0.015625 0.54688-0.015625 0.34375-0.015625v0.51562h-0.40625-0.25c-0.03125 0-0.054688 0.007812-0.0625 0.015625-0.11719 0-0.19531 0.023437-0.23438 0.0625-0.011719 0.03125-0.015625 0.0625-0.015625 0.09375v3.9531c0.007812-0.050781 0.035156-0.085938 0.078125-0.10938 0.03125-0.050781 0.082031-0.125 0.15625-0.21875 0.050781-0.070313 0.19531-0.28516 0.4375-0.64062l1.5-2.0781 0.53125-0.71875c0.0625-0.070313 0.10156-0.13281 0.125-0.1875 0.03125-0.03125 0.039063-0.050781 0.03125-0.0625-0.023437-0.0625-0.10156-0.09375-0.23438-0.09375-0.0625-0.007813-0.15234-0.015625-0.26562-0.015625h-0.23438-0.23438v-0.51562l0.35938 0.015625 0.54688 0.015625 1.4844 0.015625 0.32812-0.015625 0.48438-0.015625 0.34375-0.015625v0.51562h-0.21875-0.23438c-0.11719 0-0.20312 0.007812-0.26562 0.015625-0.125 0-0.20312 0.027344-0.23438 0.078125-0.011719 0.011719-0.015625 0.042969-0.015625 0.09375v4.8281c0 0.0625 0.003906 0.09375 0.015625 0.09375 0.019531 0.03125 0.097656 0.058594 0.23438 0.078125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.53125-0.03125h-1.4844l-0.34375 0.015625-0.48438 0.015625-0.35938 0.015625v-0.51562h0.40625 0.125c0.0625-0.007813 0.10938-0.015625 0.14062-0.015625h0.0625c0.10156 0 0.17578-0.023438 0.21875-0.078125 0.019531-0.007813 0.03125-0.039063 0.03125-0.09375v-3.9375h-0.015625c-0.011719 0.054687-0.03125 0.09375-0.0625 0.125-0.023437 0.023437-0.046875 0.054687-0.078125 0.09375-0.03125 0.042969-0.058594 0.078125-0.078125 0.10938l-0.46875 0.625-0.9375 1.3125c-0.10547 0.16797-0.28125 0.41797-0.53125 0.75l-0.54688 0.75c-0.011719 0.011719-0.03125 0.039062-0.0625 0.078125-0.023438 0.042969-0.042969 0.074219-0.0625 0.09375-0.023438 0.054687-0.03125 0.085937-0.03125 0.09375 0.007812 0.011719 0.035156 0.027344 0.078125 0.046875 0.050781 0.023438 0.10938 0.03125 0.17188 0.03125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.45312v0.51562l-0.34375-0.015625-0.5-0.015625-0.32812-0.015625h-1.4844l-0.53125 0.03125-0.34375 0.015625v-0.51562h0.45312c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.14453-0.03125 0.22266-0.054688 0.23438-0.078125 0.007812 0 0.015625-0.03125 0.015625-0.09375v-4.8281c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.050781-0.10156-0.078125-0.23438-0.078125-0.054687-0.007813-0.13672-0.015625-0.25-0.015625h-0.23438-0.21875z"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="co" overflow="visible">
|
|
158
|
+
<path d="m0.48438-6.2344h3.2188 0.73438c0.22656-0.007813 0.47266 0.007813 0.73438 0.046875 0.26953 0.03125 0.50781 0.085938 0.71875 0.15625 0.63281 0.21094 1.0234 0.52734 1.1719 0.95312 0.039062 0.125 0.066406 0.22656 0.078125 0.29688 0 0.13672-0.011719 0.23438-0.03125 0.29688-0.042969 0.13672-0.09375 0.23438-0.15625 0.29688-0.15625 0.24219-0.4375 0.44531-0.84375 0.60938-0.10547 0.054687-0.19531 0.085937-0.26562 0.09375-0.042969 0.023437-0.074219 0.03125-0.09375 0.03125-0.011719 0.011719-0.023438 0.015625-0.03125 0.015625h-0.03125l0.17188 0.046875c0.13281 0.042969 0.27344 0.10156 0.42188 0.17188 0.34375 0.13672 0.61719 0.30859 0.82812 0.51562 0.20703 0.21094 0.32812 0.42969 0.35938 0.65625 0.03125 0.14844 0.03125 0.29297 0 0.4375 0 0.125-0.039062 0.25781-0.10938 0.39062-0.074219 0.16797-0.16797 0.32031-0.28125 0.45312-0.15625 0.1875-0.36719 0.33984-0.625 0.45312-0.21875 0.11719-0.46875 0.19922-0.75 0.25-0.27344 0.054688-0.53125 0.070312-0.78125 0.0625h-0.78125-3.6562v-0.51562h0.46875c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.13281-0.03125 0.21094-0.054688 0.23438-0.078125 0.007812 0 0.015625-0.03125 0.015625-0.09375v-4.8281c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.050781-0.10156-0.078125-0.23438-0.078125-0.054687-0.007813-0.13672-0.015625-0.25-0.015625h-0.23438-0.23438zm2.5625 2.5781h0.76562c0.23828 0 0.42188-0.007812 0.54688-0.03125 0.40625-0.050781 0.70703-0.19141 0.90625-0.42188 0.21875-0.23828 0.28125-0.53516 0.1875-0.89062-0.042969-0.20703-0.13281-0.35938-0.26562-0.45312-0.14844-0.14453-0.32812-0.23438-0.54688-0.26562h-0.3125-0.39062-0.64062c-0.11719 0-0.1875 0.023438-0.21875 0.0625-0.023437 0.03125-0.03125 0.089844-0.03125 0.17188zm0 0.46875v2.4062c0 0.11719 0.007813 0.18359 0.03125 0.20312 0.007813 0.011719 0.082031 0.03125 0.21875 0.0625h1.3281c0.28125-0.03125 0.51562-0.125 0.70312-0.28125 0.050781-0.039063 0.11328-0.10938 0.1875-0.20312 0.09375-0.11328 0.16016-0.25781 0.20312-0.4375 0.03125-0.10156 0.046875-0.20312 0.046875-0.29688 0.0625-0.57031-0.089844-0.98828-0.45312-1.25-0.074219-0.050781-0.13281-0.085937-0.17188-0.10938-0.085937-0.039062-0.16797-0.066406-0.25-0.078125-0.074219-0.007813-0.18359-0.015625-0.32812-0.015625z"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="cn" overflow="visible">
|
|
161
|
+
<path d="m2.2188-3.0469c0 0.16797 0.003906 0.29297 0.015625 0.375 0.019531 0.57422 0.13281 1.0273 0.34375 1.3594 0.070313 0.11719 0.13281 0.19922 0.1875 0.25 0.082031 0.09375 0.17969 0.17969 0.29688 0.25 0.34375 0.23047 0.77344 0.33984 1.2969 0.32812 0.375-0.03125 0.71875-0.11719 1.0312-0.26562 0.3125-0.16406 0.55078-0.38281 0.71875-0.65625 0.050781-0.070312 0.09375-0.15625 0.125-0.25l0.078125-0.15625c0.050781-0.0625 0.13281-0.09375 0.25-0.09375 0.070312 0 0.12891 0.007812 0.17188 0.015625 0.10156 0.03125 0.16406 0.10547 0.1875 0.21875 0 0.074219-0.015625 0.13672-0.046875 0.1875-0.054688 0.125-0.10938 0.23438-0.17188 0.32812-0.27344 0.46094-0.6875 0.79297-1.25 1-0.48047 0.17578-0.99219 0.25-1.5312 0.21875-0.21094 0-0.44531-0.023438-0.70312-0.0625-0.55469-0.082031-1.043-0.26953-1.4688-0.5625-0.19922-0.13281-0.37109-0.28516-0.51562-0.45312-0.13672-0.14453-0.23047-0.25781-0.28125-0.34375-0.27344-0.41406-0.4375-0.87891-0.5-1.3906-0.0625-0.51953-0.011719-1.0156 0.15625-1.4844 0.15625-0.5 0.41016-0.90625 0.76562-1.2188 0.19531-0.1875 0.39844-0.33203 0.60938-0.4375 0.60156-0.33203 1.3125-0.48438 2.125-0.45312 0.53125 0.042969 0.97656 0.14062 1.3438 0.29688 0.26953 0.125 0.48438 0.27344 0.64062 0.4375 0.41406 0.375 0.67578 0.92188 0.78125 1.6406 0.03125 0.19922 0.046875 0.39844 0.046875 0.59375 0 0.13672-0.039063 0.22656-0.10938 0.26562-0.042969 0.042969-0.125 0.0625-0.25 0.0625zm0-0.46875h3.375c0-0.44531-0.058594-0.83594-0.17188-1.1719-0.10547-0.25781-0.21875-0.46875-0.34375-0.625-0.19922-0.23828-0.46875-0.39453-0.8125-0.46875-0.33594-0.082031-0.65234-0.0625-0.95312 0.0625-0.25 0.09375-0.46484 0.25-0.64062 0.46875-0.21875 0.27344-0.35938 0.69922-0.42188 1.2812-0.011719 0.054688-0.015625 0.13281-0.015625 0.23438 0 0.10547-0.007813 0.17969-0.015625 0.21875z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="cm" overflow="visible">
|
|
164
|
+
<path d="m0.5625-6.2344h6.4688l0.015625 0.21875 0.015625 0.51562 0.09375 1.2344 0.03125 0.35938 0.015625 0.14062h-0.67188c0-0.082031-0.011719-0.19141-0.03125-0.32812-0.023438-0.25-0.058594-0.47656-0.10938-0.6875-0.023437-0.1875-0.089844-0.35938-0.20312-0.51562-0.1875-0.20703-0.46875-0.34375-0.84375-0.40625-0.0625-0.007813-0.23438-0.015625-0.51562-0.015625-0.11719 0-0.18359 0.023438-0.20312 0.0625-0.023438 0.023438-0.03125 0.058594-0.03125 0.10938v4.8438c0 0.054687 0.003906 0.085937 0.015625 0.09375 0.019531 0.023437 0.054687 0.042969 0.10938 0.0625 0.10156 0 0.17578 0.007813 0.21875 0.015625h0.20312c0.082031 0 0.14062 0.007812 0.17188 0.015625h0.65625v0.51562l-0.42188-0.015625-0.60938-0.015625-0.32812-0.015625h-1.9062l-0.51562 0.03125h-0.14062l-0.42188 0.015625v-0.51562h0.64062c0.039063-0.007813 0.10156-0.015625 0.1875-0.015625h0.1875c0.050781-0.007812 0.12891-0.015625 0.23438-0.015625 0.050781-0.019531 0.085938-0.039063 0.10938-0.0625 0.007813-0.007813 0.015625-0.039063 0.015625-0.09375v-4.8438c0-0.050781-0.011719-0.085937-0.03125-0.10938-0.042969-0.039062-0.10938-0.0625-0.20312-0.0625-0.29297 0-0.46875 0.007812-0.53125 0.015625-0.36719 0.0625-0.64062 0.19922-0.82812 0.40625-0.10547 0.14844-0.18359 0.32031-0.23438 0.51562-0.042969 0.23047-0.070313 0.46094-0.078125 0.6875-0.023438 0.13672-0.03125 0.24609-0.03125 0.32812h-0.67188l0.015625-0.14062 0.03125-0.35938 0.078125-1.2344 0.03125-0.51562z"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
<symbol id="cl" overflow="visible">
|
|
167
|
+
<path d="m0.57812-6.2344h2.3125c0.14453 0 0.25391 0.023437 0.32812 0.0625 0.09375 0.054687 0.17969 0.19531 0.26562 0.42188 0.050781 0.10547 0.17969 0.38672 0.39062 0.84375l1.0312 2.2969c0.15625 0.34375 0.27344 0.60156 0.35938 0.76562 0.050781 0.14844 0.10156 0.25 0.15625 0.3125 0.007813-0.019531 0.03125-0.070312 0.0625-0.15625 0.039063-0.082031 0.070313-0.14844 0.09375-0.20312 0.039063-0.10156 0.17188-0.39062 0.39062-0.85938l0.98438-2.1875 0.39062-0.82812c0.082031-0.21875 0.16406-0.34766 0.25-0.39062 0.082031-0.050781 0.20312-0.078125 0.35938-0.078125h2.1875v0.51562h-0.25-0.21875c-0.11719 0-0.20312 0.007812-0.26562 0.015625-0.125 0-0.20312 0.027344-0.23438 0.078125-0.011719 0.023438-0.015625 0.054688-0.015625 0.09375v4.8281c0 0.054687 0.007812 0.085937 0.03125 0.09375 0.007812 0.023437 0.082031 0.046875 0.21875 0.078125h0.125c0.0625 0 0.10938 0.007812 0.14062 0.015625h0.46875v0.51562l-0.34375-0.015625-0.4375-0.015625-0.25-0.015625h-1.4531l-0.625 0.03125-0.20312 0.015625v-0.51562h0.46875c0.03125-0.007813 0.070313-0.015625 0.125-0.015625h0.125c0.13281-0.03125 0.21094-0.054688 0.23438-0.078125 0.007812-0.007813 0.015625-0.046875 0.015625-0.10938v-4.9375l-0.09375 0.20312c-0.023437 0.042969-0.054687 0.10547-0.09375 0.1875-0.03125 0.074219-0.046875 0.11719-0.046875 0.125l-0.42188 0.92188-0.9375 2.1094-0.35938 0.79688c-0.13672 0.28125-0.26562 0.57031-0.39062 0.85938-0.0625 0.13672-0.10938 0.22656-0.14062 0.26562-0.074219 0.085938-0.17188 0.14844-0.29688 0.1875-0.13672 0.0078125-0.26172-0.054688-0.375-0.20312-0.023437-0.039063-0.042969-0.085937-0.0625-0.14062-0.03125-0.050781-0.0625-0.125-0.09375-0.21875-0.13672-0.28125-0.23047-0.48438-0.28125-0.60938-0.23047-0.50781-0.40234-0.89062-0.51562-1.1406l-0.79688-1.75-0.40625-0.92188c-0.0625-0.11328-0.10547-0.19531-0.125-0.25-0.03125-0.070313-0.054687-0.12891-0.0625-0.17188v4.5c0 0.085938 0.007813 0.14062 0.03125 0.17188 0.03125 0.0625 0.11719 0.10938 0.26562 0.14062 0.14453 0.054688 0.36719 0.078125 0.67188 0.078125v0.51562l-0.26562-0.015625-0.40625-0.03125h-1.1875l-0.5625 0.03125-0.26562 0.015625v-0.51562c0.30078 0 0.53125-0.023437 0.6875-0.078125 0.13281-0.03125 0.22266-0.082031 0.26562-0.15625 0.007812-0.03125 0.015625-0.078125 0.015625-0.14062v-4.6406c0-0.050781-0.007813-0.082031-0.015625-0.09375-0.023438-0.03125-0.10547-0.0625-0.25-0.09375h-0.25-0.23438-0.21875z"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
<symbol id="ck" overflow="visible">
|
|
170
|
+
<path d="m4.9219-1.4531c0 0.023437 0.023437 0.16797 0.078125 0.4375 0.050781 0.26172 0.10156 0.64062 0.15625 1.1406 0.050781 0.50781 0.078125 1.0664 0.078125 1.6719 0 0.35156-0.0625 0.59766-0.1875 0.73438-0.054687 0.0625-0.125 0.11719-0.21875 0.17188-0.085937 0.050781-0.21094 0.078125-0.375 0.078125-0.16797 0-0.33594-0.058594-0.5-0.17188-0.074219-0.054687-0.13281-0.10938-0.17188-0.17188-0.03125-0.0625-0.054688-0.14062-0.0625-0.23438-0.011719-0.09375-0.023438-0.17188-0.03125-0.23438v-0.25c0.007812-0.11719 0.015625-0.19531 0.015625-0.23438 0-0.8125 0.097656-1.7031 0.29688-2.6719 0.050781-0.1875 0.078125-0.30078 0.078125-0.34375 0-0.125-0.11719-0.47266-0.34375-1.0469-0.21875-0.58203-0.40234-0.98828-0.54688-1.2188-0.1875-0.3125-0.39844-0.53906-0.625-0.6875-0.21875-0.14453-0.52344-0.1875-0.90625-0.125-0.16797 0.042969-0.29297 0.09375-0.375 0.15625-0.03125 0.03125-0.0625 0.09375-0.09375 0.1875-0.03125 0.085937-0.070312 0.13672-0.10938 0.15625-0.042969 0.023437-0.10938 0.03125-0.20312 0.03125-0.21875 0-0.34375-0.015625-0.375-0.046875-0.03125-0.039062-0.046875-0.16016-0.046875-0.35938 0.03125-0.21875 0.0625-0.38281 0.09375-0.5 0.09375-0.34375 0.25391-0.64062 0.48438-0.89062 0.22656-0.25781 0.50781-0.40625 0.84375-0.4375 0.25781-0.03125 0.53125 0.015625 0.8125 0.14062 0.25781 0.125 0.50391 0.35156 0.73438 0.67188 0.23828 0.32422 0.41406 0.63672 0.53125 0.9375 0.125 0.29297 0.25 0.61719 0.375 0.96875 0.125 0.34375 0.19141 0.53906 0.20312 0.57812 0.050781-0.1875 0.17188-0.48438 0.35938-0.89062 0.47656-1.0938 0.98828-1.8008 1.5312-2.125 0.16406-0.10156 0.34375-0.17969 0.53125-0.23438 0.1875-0.050781 0.38281-0.0625 0.59375-0.03125 0.20703 0.03125 0.375 0.12109 0.5 0.26562 0.16406 0.19922 0.22656 0.42969 0.1875 0.6875-0.03125 0.26172-0.15625 0.45312-0.375 0.57812-0.085937 0.0625-0.24219 0.10938-0.46875 0.14062-0.23047 0.03125-0.44531 0.085938-0.64062 0.15625-0.1875 0.0625-0.42969 0.28125-0.71875 0.65625-0.29297 0.375-0.57422 0.90234-0.84375 1.5781-0.17969 0.38672-0.26562 0.64844-0.26562 0.78125z"/>
|
|
171
|
+
</symbol>
|
|
172
|
+
<symbol id="cj" overflow="visible">
|
|
173
|
+
<path d="m1.625-2.9688c-0.03125 0.09375-0.054688 0.20312-0.0625 0.32812-0.011719 0.11719-0.007812 0.26172 0.015625 0.4375 0.019531 0.17969 0.09375 0.35156 0.21875 0.51562 0.13281 0.16797 0.32031 0.29297 0.5625 0.375 0.20703 0.0625 0.48438 0.10547 0.82812 0.125 0.35156 0.011719 0.76562-0.035156 1.2344-0.14062 0.46875-0.11328 0.86719-0.28906 1.2031-0.53125 0.17578-0.125 0.28125-0.19531 0.3125-0.21875 0.125-0.070313 0.21875-0.046875 0.28125 0.078125 0.03125 0.042969-0.011719 0.28125-0.125 0.71875-0.11719 0.42969-0.19531 0.66797-0.23438 0.71875-0.14844 0.1875-0.51172 0.35938-1.0938 0.51562-0.57422 0.15625-1.1328 0.21094-1.6719 0.17188-1.2422-0.09375-2.0234-0.5625-2.3438-1.4062-0.19922-0.625-0.089844-1.2383 0.32812-1.8438 0.070313-0.10156 0.10938-0.16406 0.10938-0.1875 0-0.03125-0.011719-0.054688-0.03125-0.078125-0.011719-0.03125-0.046875-0.085937-0.10938-0.17188-0.0625-0.09375-0.125-0.20703-0.1875-0.34375-0.14844-0.28125-0.21094-0.59766-0.1875-0.95312 0.03125-0.35156 0.16016-0.64062 0.39062-0.85938 0.22656-0.1875 0.50391-0.33203 0.82812-0.4375 0.33203-0.11328 0.625-0.17969 0.875-0.20312 0.25-0.019531 0.56641-0.03125 0.95312-0.03125 0.55078 0 1.0859 0.03125 1.6094 0.09375 0.53125 0.054687 0.82812 0.13672 0.89062 0.25 0.019531 0.042969 0.003906 0.16797-0.046875 0.375l-0.23438 0.875c-0.042969 0.17969-0.11719 0.27344-0.21875 0.28125-0.054688 0-0.39844-0.09375-1.0312-0.28125-0.63672-0.1875-1.2344-0.26562-1.7969-0.23438-0.44922 0.042969-0.75 0.10547-0.90625 0.1875-0.29297 0.16797-0.4375 0.4375-0.4375 0.8125 0 0.074219 0.023437 0.19531 0.078125 0.35938 0.5-0.28125 1-0.4375 1.5-0.46875 0.22656-0.019531 0.40625-0.019531 0.53125 0 0.30078 0.0625 0.5 0.24609 0.59375 0.54688 0.09375 0.30469 0.050781 0.57422-0.125 0.8125-0.125 0.17969-0.34375 0.27734-0.65625 0.29688-0.30469 0.011719-0.5625-0.007813-0.78125-0.0625-0.21875-0.050781-0.40625-0.10938-0.5625-0.17188z"/>
|
|
174
|
+
</symbol>
|
|
175
|
+
<symbol id="ci" overflow="visible">
|
|
176
|
+
<path d="m0.90625-5.8594c-0.011719-0.125-0.011719-0.21875 0-0.28125 0.007812-0.070313 0.035156-0.11719 0.078125-0.14062 0.039063-0.019531 0.097656-0.03125 0.17188-0.03125h0.25 0.79688c0.1875 0 0.29688 0.03125 0.32812 0.09375 0.03125 0.054688 0.03125 0.17188 0 0.35938l-0.125 0.73438c-0.0625 0.40625-0.18359 1.1328-0.35938 2.1719-0.011719 0.042969-0.03125 0.13281-0.0625 0.26562-0.023437 0.125-0.039063 0.21875-0.046875 0.28125v0.26562c0 0.10547 0.007812 0.19531 0.03125 0.26562 0.03125 0.125 0.097656 0.21484 0.20312 0.26562 0.11328 0.042969 0.21875 0.027344 0.3125-0.046875 0.13281-0.10156 0.17969-0.23828 0.14062-0.40625-0.042969-0.17578-0.042969-0.28906 0-0.34375 0.039062-0.019531 0.066406-0.03125 0.078125-0.03125 0.125-0.03125 0.28125 0.042969 0.46875 0.21875 0.19531 0.16797 0.33203 0.34375 0.40625 0.53125 0.125 0.34375 0.11328 0.68359-0.03125 1.0156-0.14844 0.33594-0.38672 0.5625-0.71875 0.6875-0.52344 0.1875-0.94922 0.10156-1.2812-0.25-0.14844-0.16406-0.26172-0.41016-0.34375-0.73438-0.085937-0.32031-0.125-0.61328-0.125-0.875 0-0.25781-0.011719-0.48828-0.03125-0.6875l-0.078125-2c-0.023438-0.28125-0.042969-0.72266-0.0625-1.3281z"/>
|
|
177
|
+
</symbol>
|
|
178
|
+
<symbol id="ch" overflow="visible">
|
|
179
|
+
<path d="m4.7344-9.9375c0.28125-0.050781 0.53516 0.027344 0.76562 0.23438 0.23828 0.19922 0.32031 0.4375 0.25 0.71875-0.042969 0.16797-0.19531 0.38281-0.45312 0.64062l-1.3438 1.3438c-0.074219 0.074219-0.13281 0.11719-0.17188 0.125-0.042969 0-0.089844-0.015625-0.14062-0.046875-0.054687-0.039063-0.085937-0.082031-0.09375-0.125l0.03125-0.20312 0.125-0.40625c0.0625-0.23828 0.13281-0.52344 0.21875-0.85938 0.09375-0.34375 0.15625-0.56641 0.1875-0.67188 0.03125-0.10156 0.078125-0.22656 0.14062-0.375 0.070312-0.14453 0.14062-0.23828 0.20312-0.28125 0.070313-0.039062 0.16406-0.070312 0.28125-0.09375zm0.82812 8.5312c-0.09375 0.15625-0.26172 0.35547-0.5 0.59375-0.23047 0.24219-0.52344 0.45312-0.875 0.64062-0.59375 0.30078-1.2031 0.34375-1.8281 0.125-0.625-0.22656-1.0742-0.66406-1.3438-1.3125-0.26172-0.53125-0.375-1.1875-0.34375-1.9688 0.039063-0.78125 0.21875-1.4219 0.53125-1.9219 0.375-0.58203 0.89453-0.92578 1.5625-1.0312 0.66406-0.11328 1.2656 0.10547 1.7969 0.65625 0.28125 0.32422 0.53906 0.78906 0.78125 1.3906 0.15625-0.33203 0.32812-0.8125 0.51562-1.4375l0.14062-0.39062c0.007812-0.070312 0.03125-0.125 0.0625-0.15625 0.03125-0.039062 0.0625-0.066406 0.09375-0.078125 0.039062-0.007813 0.085938-0.015625 0.14062-0.015625h0.17188 0.60938c0.20703 0 0.34375 0.011719 0.40625 0.03125 0.070313 0.023438 0.10938 0.078125 0.10938 0.17188-0.011719 0.054687-0.03125 0.12109-0.0625 0.20312-0.03125 0.074219-0.046875 0.11719-0.046875 0.125l-0.1875 0.57812c-0.48047 1.3438-0.84375 2.25-1.0938 2.7188-0.042969 0.085937-0.078125 0.15234-0.10938 0.20312-0.023438 0.042969-0.023438 0.09375 0 0.15625 0.019531 0.0625 0.078125 0.16406 0.17188 0.29688 0.16406 0.24219 0.35156 0.40234 0.5625 0.48438 0.21875 0.085938 0.39844 0.10547 0.54688 0.0625 0.15625-0.039062 0.25391-0.10156 0.29688-0.1875 0.03125-0.082031 0.0625-0.14453 0.09375-0.1875 0.03125-0.039062 0.11328-0.0625 0.25-0.0625 0.25 0 0.39062 0.054688 0.42188 0.15625 0.039062 0.10547 0.023438 0.28125-0.046875 0.53125-0.074219 0.29297-0.20312 0.53906-0.39062 0.73438-0.21875 0.23047-0.46875 0.35938-0.75 0.39062s-0.57812-0.078125-0.89062-0.32812-0.57812-0.64062-0.79688-1.1719zm-0.78125-1.5312c0.082031-0.14453 0.125-0.23828 0.125-0.28125 0-0.050781-0.03125-0.12891-0.09375-0.23438-0.46875-1.1016-1.1172-1.6016-1.9375-1.5-0.30469 0.03125-0.55469 0.09375-0.75 0.1875-0.19922 0.09375-0.34375 0.23047-0.4375 0.40625-0.09375 0.16797-0.15625 0.32031-0.1875 0.45312-0.03125 0.13672-0.058594 0.3125-0.078125 0.53125-0.074219 0.80469 0.097656 1.3906 0.51562 1.7656 0.17578 0.16797 0.44141 0.27344 0.79688 0.3125 0.36328 0.042969 0.66016 0 0.89062-0.125 0.40625-0.25781 0.78906-0.76562 1.1562-1.5156z"/>
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol id="cg" overflow="visible">
|
|
182
|
+
<path d="m1.8125-5.0156c-0.011719 0-0.070312 0.074219-0.17188 0.21875-0.10547 0.13672-0.25781 0.21484-0.45312 0.23438-0.21094 0-0.35938-0.035156-0.45312-0.10938-0.21094-0.17578-0.30469-0.39844-0.28125-0.67188 0.019531-0.26953 0.11328-0.48828 0.28125-0.65625 0.28125-0.28906 0.63281-0.41406 1.0625-0.375 0.42578 0.042969 0.76953 0.21484 1.0312 0.51562 0.41406 0.46094 0.63281 1.1328 0.65625 2.0156 0 0.0625-0.007813 0.15625-0.015625 0.28125v0.28125c0.35156-0.28906 0.85938-0.76562 1.5156-1.4219l0.9375-0.9375c0.45703-0.45703 0.78516-0.70703 0.98438-0.75 0.28906-0.050781 0.53125 0.046875 0.71875 0.29688 0.19531 0.25 0.24219 0.51172 0.14062 0.78125-0.042969 0.10547-0.14844 0.23438-0.3125 0.39062l-1.2188 0.98438c-0.125 0.085938-0.21875 0.15234-0.28125 0.20312-0.0625 0.054687-0.10547 0.125-0.125 0.21875-0.023437 0.09375-0.03125 0.26172-0.03125 0.5v0.35938c0 0.054688 0.007813 0.13672 0.03125 0.25 0.03125 0.27344 0.10938 0.51172 0.23438 0.71875 0.13281 0.21094 0.32031 0.32812 0.5625 0.35938 0.050781-0.25781 0.21875-0.42188 0.5-0.48438 0.28906-0.0625 0.52344-0.003906 0.70312 0.17188 0.050781 0.0625 0.10156 0.15234 0.15625 0.26562 0.050781 0.10547 0.0625 0.26562 0.03125 0.48438-0.023437 0.21094-0.12109 0.41797-0.29688 0.625-0.3125 0.3125-0.6875 0.44141-1.125 0.39062-0.4375-0.042969-0.79297-0.22656-1.0625-0.5625-0.32422-0.39453-0.50781-0.96094-0.54688-1.7031-0.011719-0.10156-0.011719-0.25 0-0.4375 0.007813-0.19531 0.015625-0.32031 0.015625-0.375-0.32422 0.27344-1.0234 0.9375-2.0938 2l-0.5625 0.5625c-0.13672 0.125-0.24609 0.23047-0.32812 0.3125-0.085937 0.074219-0.17188 0.12891-0.26562 0.17188-0.09375 0.039062-0.20312 0.0625-0.32812 0.0625-0.23047-0.011719-0.42188-0.10938-0.57812-0.29688-0.15625-0.19531-0.21484-0.41016-0.17188-0.64062 0.039063-0.16406 0.14062-0.32031 0.29688-0.46875 0.16406-0.15625 0.55078-0.47656 1.1562-0.96875l0.3125-0.23438c0.11328-0.082031 0.17969-0.16406 0.20312-0.25 0.03125-0.09375 0.046875-0.33594 0.046875-0.73438 0-0.53125-0.10938-0.92578-0.32812-1.1875-0.21094-0.25781-0.39062-0.39062-0.54688-0.39062z"/>
|
|
183
|
+
</symbol>
|
|
184
|
+
<symbol id="cf" overflow="visible">
|
|
185
|
+
<path d="m4.9219-9.9375c0.28125-0.050781 0.53516 0.027344 0.76562 0.23438 0.23828 0.19922 0.32812 0.4375 0.26562 0.71875-0.042969 0.14844-0.19531 0.35156-0.45312 0.60938l-1.3594 1.375c-0.074219 0.074219-0.13281 0.11719-0.17188 0.125-0.03125 0-0.078125-0.015625-0.14062-0.046875-0.054687-0.039063-0.085937-0.082031-0.09375-0.125l0.046875-0.20312 0.5625-2.0469c0.10156-0.38281 0.29688-0.59766 0.57812-0.64062zm-4 5.5c0.33203-0.75 0.89844-1.2812 1.7031-1.5938 0.8125-0.3125 1.625-0.39062 2.4375-0.23438s1.457 0.48047 1.9375 0.96875c0.5 0.54297 0.76953 1.2148 0.8125 2.0156 0.039062 0.80469-0.16406 1.5-0.60938 2.0938-0.51172 0.71094-1.3398 1.125-2.4844 1.25-1.3984 0.11328-2.4648-0.21094-3.2031-0.98438-0.42969-0.4375-0.69922-0.98828-0.8125-1.6562-0.10547-0.67578-0.03125-1.2969 0.21875-1.8594zm5.3438 0.73438c0.070313-0.71875-0.078125-1.2734-0.45312-1.6719-0.3125-0.25781-0.65625-0.38281-1.0312-0.375-0.36719 0.011719-0.71484 0.11719-1.0469 0.3125-0.34375 0.21094-0.64062 0.51172-0.89062 0.90625-0.24219 0.39844-0.41406 0.80859-0.51562 1.2344-0.09375 0.41797-0.125 0.83594-0.09375 1.25 0.03125 0.41797 0.13281 0.75 0.3125 1 0.1875 0.29297 0.44531 0.46484 0.78125 0.51562 0.34375 0.042969 0.63281 0.027344 0.875-0.046875 0.23828-0.070313 0.4375-0.16016 0.59375-0.26562 0.85156-0.5625 1.3438-1.5156 1.4688-2.8594z"/>
|
|
186
|
+
</symbol>
|
|
187
|
+
<symbol id="ce" overflow="visible">
|
|
188
|
+
<path d="m8.7031-5.0469c0 0.16797-0.027344 0.27734-0.078125 0.32812-0.054688 0.042969-0.13672 0.054688-0.25 0.03125-0.074219 0-0.375-0.019531-0.90625-0.0625-0.53125-0.050781-0.84375-0.066406-0.9375-0.046875 0.19531 0.09375 0.41406 0.27734 0.65625 0.54688 0.23828 0.27344 0.40625 0.55859 0.5 0.85938 0.14453 0.4375 0.16016 0.90234 0.046875 1.3906-0.10547 0.48047-0.32812 0.88281-0.67188 1.2031-0.44922 0.42969-1.0586 0.69922-1.8281 0.8125-0.77344 0.125-1.4922 0.082031-2.1562-0.125-0.71094-0.19531-1.2656-0.52344-1.6719-0.98438-0.28125-0.32031-0.48438-0.70312-0.60938-1.1406-0.125-0.44531-0.16406-0.89453-0.10938-1.3438 0.0625-0.44531 0.24219-0.87891 0.54688-1.2969 0.3125-0.41406 0.73438-0.74219 1.2656-0.98438 0.28906-0.125 0.61328-0.21875 0.96875-0.28125 0.35156-0.070313 0.64453-0.10156 0.875-0.09375 0.22656 0.011719 0.44141 0.011719 0.64062 0h3.3594c0.14453 0 0.23828 0.023437 0.28125 0.0625 0.050781 0.03125 0.078125 0.11719 0.078125 0.25zm-6.6719 2.1562c0.039062 0.32422 0.085938 0.60547 0.14062 0.84375 0.0625 0.24219 0.16016 0.49609 0.29688 0.76562 0.13281 0.26172 0.33203 0.46484 0.59375 0.60938 0.25781 0.13672 0.58203 0.20312 0.96875 0.20312 0.47656 0 0.88281-0.09375 1.2188-0.28125 0.38281-0.22656 0.70703-0.57812 0.96875-1.0469 0.25781-0.46875 0.36328-0.89453 0.3125-1.2812-0.03125-0.40625-0.1875-0.76562-0.46875-1.0781-0.27344-0.32031-0.60547-0.54688-1-0.67188-0.36719-0.10156-0.79688-0.11328-1.2969-0.03125-0.41797 0.0625-0.78906 0.21875-1.1094 0.46875-0.3125 0.24219-0.51172 0.55859-0.59375 0.95312-0.042969 0.14844-0.054688 0.32812-0.03125 0.54688z"/>
|
|
189
|
+
</symbol>
|
|
190
|
+
<symbol id="cd" overflow="visible">
|
|
191
|
+
<path d="m1.5781-1.2812c0 1.3438 0.35156 2.4609 1.0625 3.3594 0.20703 0.23828 0.32812 0.42188 0.35938 0.54688 0.050781 0.22656 0 0.44141-0.15625 0.64062-0.14844 0.19531-0.33984 0.30078-0.57812 0.3125-0.27344 0.019531-0.54688-0.14844-0.82812-0.5-0.27344-0.35547-0.46875-0.8125-0.59375-1.375-0.19922-0.74219-0.21484-1.7969-0.046875-3.1719l0.125-0.875c0.039063-0.21875 0.066406-0.38281 0.078125-0.5 0-0.03125-0.042969-0.19141-0.125-0.48438-0.074219-0.30078-0.12109-0.60156-0.14062-0.90625l-0.046875-0.57812c-0.054688-0.53906 0-0.9375 0.15625-1.1875 0.15625-0.25781 0.36328-0.39062 0.625-0.39062 0.21875 0.011719 0.39453 0.10547 0.53125 0.28125 0.14453 0.17969 0.21875 0.38281 0.21875 0.60938 0.007812 0.23047-0.0625 0.55469-0.21875 0.96875-0.15625 0.40625-0.21875 0.82031-0.1875 1.2344 0 0.30469 0.046875 0.62109 0.14062 0.95312 0.10156 0.32422 0.20312 0.55859 0.29688 0.70312 0.20703 0.33594 0.5 0.54688 0.875 0.64062 0.38281 0.09375 0.71094 0.042969 0.98438-0.15625 0.60156-0.45703 0.90625-1.75 0.90625-3.875-0.023437-0.16406-0.023437-0.36328 0-0.59375 0.019531-0.23828 0.085937-0.41406 0.20312-0.53125l0.17188-0.125c0.1875-0.11328 0.39844-0.13281 0.64062-0.0625 0.23828 0.074219 0.39844 0.21875 0.48438 0.4375 0.03125 0.10547 0.046875 0.3125 0.046875 0.625 0 0.57422-0.046875 1.2109-0.14062 1.9062l-0.078125 0.46875c-0.11719 0.49219-0.042969 0.90625 0.21875 1.25 0.14453 0.21094 0.34375 0.33594 0.59375 0.375 0.25 0.03125 0.42578 0 0.53125-0.09375 0.03125-0.019531 0.054688-0.050781 0.078125-0.09375 0.019531-0.050781 0.035156-0.09375 0.046875-0.125 0.007812-0.039062 0.035156-0.070312 0.078125-0.09375 0.050781-0.019531 0.125-0.03125 0.21875-0.03125 0.25 0 0.39062 0.054688 0.42188 0.15625 0.050781 0.1875-0.023438 0.49609-0.21875 0.92188-0.19922 0.41797-0.51562 0.64844-0.95312 0.70312-0.11719 0.0078125-0.25781 0.0039062-0.42188-0.015625-0.25-0.050781-0.46875-0.16016-0.65625-0.32812-0.17969-0.17578-0.29688-0.34375-0.35938-0.5-0.0625-0.16406-0.13281-0.30469-0.20312-0.42188-0.125 0.29297-0.32812 0.54688-0.60938 0.76562-0.27344 0.21094-0.57422 0.35938-0.90625 0.45312-0.33594 0.09375-0.69922 0.085937-1.0938-0.015625-0.38672-0.09375-0.73438-0.29688-1.0469-0.60938-0.24219-0.25-0.39844-0.47266-0.46875-0.67188z"/>
|
|
192
|
+
</symbol>
|
|
193
|
+
<symbol id="cc" overflow="visible">
|
|
194
|
+
<path d="m0.92188-4.4375c0.33203-0.75 0.89844-1.2812 1.7031-1.5938 0.8125-0.3125 1.625-0.39062 2.4375-0.23438s1.457 0.48047 1.9375 0.96875c0.5 0.54297 0.76953 1.2148 0.8125 2.0156 0.039062 0.80469-0.16406 1.5-0.60938 2.0938-0.51172 0.71094-1.3398 1.125-2.4844 1.25-1.3984 0.11328-2.4648-0.21094-3.2031-0.98438-0.42969-0.4375-0.69922-0.98828-0.8125-1.6562-0.10547-0.67578-0.03125-1.2969 0.21875-1.8594zm5.3438 0.73438c0.070313-0.71875-0.078125-1.2734-0.45312-1.6719-0.3125-0.25781-0.65625-0.38281-1.0312-0.375-0.36719 0.011719-0.71484 0.11719-1.0469 0.3125-0.34375 0.21094-0.64062 0.51172-0.89062 0.90625-0.24219 0.39844-0.41406 0.80859-0.51562 1.2344-0.09375 0.41797-0.125 0.83594-0.09375 1.25 0.03125 0.41797 0.13281 0.75 0.3125 1 0.1875 0.29297 0.44531 0.46484 0.78125 0.51562 0.34375 0.042969 0.63281 0.027344 0.875-0.046875 0.23828-0.070313 0.4375-0.16016 0.59375-0.26562 0.85156-0.5625 1.3438-1.5156 1.4688-2.8594z"/>
|
|
195
|
+
</symbol>
|
|
196
|
+
<symbol id="cb" overflow="visible">
|
|
197
|
+
<path d="m3.7812-5.0625c0.019531-0.039062 0.035156-0.066406 0.046875-0.078125 0.03125-0.03125 0.054687-0.0625 0.078125-0.09375 0.13281-0.14453 0.23828-0.25391 0.3125-0.32812 0.16406-0.15625 0.34766-0.28125 0.54688-0.375 0.070313-0.03125 0.17969-0.078125 0.32812-0.14062 0.019531-0.007813 0.12891-0.035156 0.32812-0.078125 0.019531 0 0.054687-0.003906 0.10938-0.015625 0.0625-0.007813 0.10938-0.015625 0.14062-0.015625 0.57031-0.039062 0.99219 0.10938 1.2656 0.45312 0.082031 0.074219 0.14453 0.16797 0.1875 0.28125 0.09375 0.19922 0.14062 0.43359 0.14062 0.70312 0 0.25-0.042969 0.55469-0.125 0.90625-0.13672 0.5-0.3125 1.0742-0.53125 1.7188l-0.21875 0.5625c-0.085937 0.25-0.13281 0.41406-0.14062 0.48438-0.074219 0.24219-0.10547 0.44922-0.09375 0.625 0.019531 0.14844 0.078125 0.23438 0.17188 0.26562 0.039063 0.011719 0.10938 0.015625 0.20312 0.015625 0.09375-0.019531 0.15625-0.035156 0.1875-0.046875 0.070312-0.03125 0.14453-0.070312 0.21875-0.125 0.125-0.082031 0.23438-0.20703 0.32812-0.375 0.14453-0.20703 0.28125-0.50391 0.40625-0.89062 0.039063-0.09375 0.070313-0.20312 0.09375-0.32812 0-0.007812 0.003906-0.03125 0.015625-0.0625 0.007812-0.039062 0.019531-0.070312 0.03125-0.09375 0.019531-0.039062 0.097656-0.0625 0.23438-0.0625 0.0625 0 0.10938 0.015625 0.14062 0.046875 0.050781 0.042969 0.050781 0.13672 0 0.28125-0.0625 0.23047-0.14844 0.46484-0.25 0.70312-0.023438 0.03125-0.046875 0.074219-0.078125 0.125-0.023437 0.042969-0.039063 0.078125-0.046875 0.10938-0.32422 0.58594-0.71094 0.92188-1.1562 1.0156-0.085938 0.019531-0.15234 0.03125-0.20312 0.03125-0.074219 0-0.16797-0.011719-0.28125-0.03125-0.10547-0.023438-0.21484-0.070312-0.32812-0.14062-0.41797-0.26953-0.5625-0.69141-0.4375-1.2656 0.019531-0.13281 0.078125-0.3125 0.17188-0.53125 0.070313-0.21875 0.12891-0.38281 0.17188-0.5 0.15625-0.44531 0.27344-0.81641 0.35938-1.1094 0.10156-0.34375 0.17969-0.64844 0.23438-0.92188 0.019531-0.125 0.035156-0.21875 0.046875-0.28125 0.007813-0.09375 0.015625-0.16016 0.015625-0.20312v-0.125c-0.011719-0.42578-0.10938-0.70312-0.29688-0.82812-0.03125-0.019531-0.078125-0.035156-0.14062-0.046875-0.054688-0.019531-0.10156-0.03125-0.14062-0.03125-0.074219-0.007813-0.17969-0.007813-0.3125 0-0.10547 0.011719-0.21094 0.042969-0.3125 0.09375-0.41797 0.13672-0.80469 0.46484-1.1562 0.98438-0.125 0.17969-0.24219 0.37109-0.34375 0.57812-0.054687 0.09375-0.089844 0.17188-0.10938 0.23438-0.023438 0.054688-0.03125 0.09375-0.03125 0.125l-0.046875 0.23438-0.1875 0.70312-0.40625 1.6406-0.1875 0.76562c-0.074219 0.25-0.125 0.39844-0.15625 0.4375-0.085937 0.10156-0.19531 0.17188-0.32812 0.20312-0.125 0.03125-0.24609 0.003906-0.35938-0.078125-0.10547-0.082031-0.14844-0.17578-0.125-0.28125 0-0.082031 0.015625-0.14844 0.046875-0.20312l0.21875-0.95312 0.64062-2.5625 0.17188-0.64062c0.082031-0.40625 0.11328-0.69531 0.09375-0.875-0.023438-0.13281-0.046875-0.22656-0.078125-0.28125-0.11719-0.14453-0.27344-0.17578-0.46875-0.09375-0.074219 0.054687-0.13672 0.10938-0.1875 0.17188-0.074219 0.085938-0.15625 0.21875-0.25 0.40625-0.0625 0.15625-0.15234 0.4375-0.26562 0.84375-0.011719 0.03125-0.027344 0.085938-0.046875 0.15625-0.011719 0.074219-0.023437 0.12109-0.03125 0.14062 0 0.011719-0.007813 0.027344-0.015625 0.046875-0.011719 0.054688-0.023438 0.085938-0.03125 0.09375-0.023438 0.054688-0.078125 0.078125-0.17188 0.078125-0.125 0-0.20312-0.019531-0.23438-0.0625 0-0.007813-0.007812-0.019531-0.015625-0.03125 0-0.050781 0.003906-0.09375 0.015625-0.125 0.019531-0.03125 0.03125-0.066406 0.03125-0.10938 0.0625-0.21875 0.10938-0.38281 0.14062-0.5 0.125-0.41406 0.25781-0.73828 0.40625-0.96875 0.16406-0.22656 0.35156-0.37891 0.5625-0.45312 0.11328-0.03125 0.22656-0.046875 0.34375-0.046875 0.11328 0 0.23438 0.023438 0.35938 0.0625 0.13281 0.054688 0.25781 0.125 0.375 0.21875 0.15625 0.14844 0.26953 0.32812 0.34375 0.54688 0 0.023437 0.003906 0.054687 0.015625 0.09375 0.007813 0.042969 0.019531 0.070313 0.03125 0.078125 0 0.054688 0.003906 0.09375 0.015625 0.125z"/>
|
|
198
|
+
</symbol>
|
|
199
|
+
<symbol id="u" overflow="visible">
|
|
200
|
+
<path d="m2.7656-0.71875c0 0.054688-0.015625 0.13672-0.046875 0.25l-0.10938 0.4375-0.34375 1.3594-0.10938 0.45312c-0.042969 0.14453-0.0625 0.25391-0.0625 0.32812 0 0.019531 0.007812 0.039063 0.03125 0.0625 0.007812 0.007813 0.039062 0.023437 0.09375 0.046875 0.007812 0.007812 0.03125 0.015625 0.0625 0.015625s0.054688 0.003906 0.078125 0.015625c0.19531 0.019531 0.34375 0.03125 0.4375 0.03125h0.25c0 0.007812 0.003906 0.015625 0.015625 0.015625 0.007812 0 0.019531 0.003906 0.03125 0.015625 0.039062 0.03125 0.054688 0.10156 0.046875 0.21875 0 0.007812-0.007813 0.023438-0.015625 0.046875-0.011719 0.03125-0.015625 0.046875-0.015625 0.046875-0.054687 0.070312-0.13281 0.097656-0.23438 0.078125h-0.15625c-0.023438 0-0.058594-0.007813-0.10938-0.015625h-0.09375-0.32812c-0.0625-0.011719-0.15234-0.015625-0.26562-0.015625h-0.375c-0.34375 0-0.60547 0.003906-0.78125 0.015625h-0.17188c-0.074219 0.007812-0.125 0.015625-0.15625 0.015625h-0.125c-0.085938-0.023437-0.125-0.074219-0.125-0.15625v-0.046875c0.007812-0.011719 0.015625-0.023438 0.015625-0.03125 0.03125-0.10547 0.078125-0.16797 0.14062-0.1875h0.23438l0.32812-0.046875c0.0625-0.011719 0.10938-0.027344 0.14062-0.046875 0.050781-0.042969 0.09375-0.10938 0.125-0.20312 0.03125-0.0625 0.066406-0.16406 0.10938-0.29688l0.078125-0.39062 0.3125-1.2188 0.9375-3.7344 0.17188-0.71875c0.082031-0.375 0.12891-0.61328 0.14062-0.71875 0.019531-0.14453 0.023437-0.25781 0.015625-0.34375 0-0.10156-0.027344-0.19531-0.078125-0.28125-0.042969-0.082031-0.11719-0.12891-0.21875-0.14062-0.09375-0.019531-0.17969-0.015625-0.25 0.015625-0.10547 0.074219-0.17969 0.14844-0.21875 0.21875-0.085937 0.10547-0.15625 0.25-0.21875 0.4375-0.09375 0.21875-0.18359 0.48047-0.26562 0.78125-0.011719 0.042969-0.039062 0.13672-0.078125 0.28125-0.011719 0.011719-0.023437 0.039062-0.03125 0.078125v0.078125c-0.023437 0.054688-0.10156 0.078125-0.23438 0.078125-0.09375 0-0.15625-0.023437-0.1875-0.078125-0.023438-0.03125-0.011719-0.10156 0.03125-0.21875 0.039062-0.15625 0.09375-0.34766 0.15625-0.57812 0.13281-0.42578 0.26562-0.72656 0.39062-0.90625 0.10156-0.17578 0.23438-0.3125 0.39062-0.40625 0.16406-0.09375 0.35156-0.12891 0.5625-0.10938 0.22656 0.011719 0.44531 0.089844 0.65625 0.23438 0.16406 0.15625 0.28516 0.32422 0.35938 0.5 0.03125 0.11719 0.050781 0.20312 0.0625 0.26562 0.13281-0.14453 0.23828-0.25391 0.3125-0.32812 0.35156-0.3125 0.71094-0.51953 1.0781-0.625 0.15625-0.050781 0.32031-0.066406 0.5-0.046875 0.039062 0 0.10938 0.011719 0.20312 0.03125 0.13281 0.023438 0.26953 0.0625 0.40625 0.125 0.5625 0.26172 0.90625 0.76562 1.0312 1.5156 0.0625 0.51172 0.03125 1.0312-0.09375 1.5625-0.29297 1.0547-0.82812 1.8828-1.6094 2.4844-0.42969 0.33594-0.86719 0.53125-1.3125 0.59375-0.28125 0.039062-0.51172 0.019531-0.6875-0.0625-0.26172-0.082031-0.46875-0.23828-0.625-0.46875-0.054688-0.070312-0.09375-0.13281-0.125-0.1875-0.023438-0.050781-0.046875-0.09375-0.078125-0.125zm3.6094-3.7969c0.007812-0.050781 0.003906-0.14062-0.015625-0.26562 0-0.082031-0.007813-0.14453-0.015625-0.1875-0.074219-0.48828-0.27734-0.78516-0.60938-0.89062h-0.078125c-0.042969-0.007813-0.074219-0.015625-0.09375-0.015625-0.21094 0-0.40625 0.054688-0.59375 0.15625-0.17969 0.085938-0.38672 0.23438-0.625 0.45312-0.15625 0.14844-0.3125 0.33594-0.46875 0.5625-0.011719 0.011719-0.027344 0.039063-0.046875 0.078125-0.023437 0.03125-0.042969 0.058594-0.0625 0.078125l-0.046875 0.078125c-0.011719 0.03125-0.027344 0.09375-0.046875 0.1875l-0.09375 0.35938-0.28125 1.1406-0.20312 0.82812-0.0625 0.28125c-0.023438 0.0625-0.039062 0.10938-0.046875 0.14062 0 0.042969 0.007813 0.089844 0.03125 0.14062 0.007813 0.11719 0.023437 0.21094 0.046875 0.28125 0.125 0.44922 0.33594 0.74219 0.64062 0.875 0 0 0.019531 0.007813 0.0625 0.015625 0.039063 0.011719 0.066406 0.015625 0.078125 0.015625 0.09375 0.023437 0.17188 0.03125 0.23438 0.03125 0.33203-0.019531 0.65625-0.20703 0.96875-0.5625 0.375-0.375 0.67188-0.92969 0.89062-1.6719 0.09375-0.32031 0.15625-0.56641 0.1875-0.73438 0.09375-0.34375 0.15625-0.61719 0.1875-0.82812l0.046875-0.375v-0.078125c0-0.039063 0.003906-0.070313 0.015625-0.09375z"/>
|
|
201
|
+
</symbol>
|
|
202
|
+
<symbol id="t" overflow="visible">
|
|
203
|
+
<path d="m5.625-0.78125c-0.011719 0.023438-0.054688 0.070312-0.125 0.14062-0.03125 0.03125-0.125 0.13281-0.28125 0.29688-0.25 0.19922-0.52344 0.33984-0.8125 0.42188-0.19922 0.0625-0.40234 0.082031-0.60938 0.0625-0.59375-0.023437-1.0312-0.22266-1.3125-0.60938-0.042969-0.039062-0.089844-0.11719-0.14062-0.23438-0.1875-0.39453-0.21484-0.91406-0.078125-1.5625 0.039063-0.1875 0.11328-0.45703 0.21875-0.8125 0.082031-0.23828 0.20703-0.59375 0.375-1.0625 0.14453-0.41406 0.23828-0.69141 0.28125-0.82812v-0.078125c0.007813-0.03125 0.019531-0.054687 0.03125-0.078125 0.007813-0.019531 0.015625-0.039062 0.015625-0.0625 0-0.03125 0.003906-0.054688 0.015625-0.078125v-0.046875c0.007813-0.019531 0.015625-0.039062 0.015625-0.0625 0.019531-0.25-0.03125-0.41016-0.15625-0.48438h-0.078125-0.09375c-0.054687 0-0.11719 0.007813-0.1875 0.015625-0.054687 0.023438-0.125 0.0625-0.21875 0.125-0.13672 0.085938-0.26172 0.21875-0.375 0.40625-0.13672 0.1875-0.27344 0.48438-0.40625 0.89062-0.011719 0.042969-0.042969 0.14844-0.09375 0.3125l-0.046875 0.14062c-0.011719 0.054688-0.089844 0.078125-0.23438 0.078125-0.0625 0-0.10938-0.007813-0.14062-0.03125-0.042969-0.03125-0.042969-0.125 0-0.28125 0.082031-0.28906 0.17188-0.52344 0.26562-0.70312l0.125-0.28125c0.33203-0.5625 0.71094-0.88281 1.1406-0.96875 0.070312-0.019531 0.13281-0.03125 0.1875-0.03125 0.13281 0 0.23828 0.011719 0.3125 0.03125 0.10156 0.023438 0.21875 0.074219 0.34375 0.15625 0.082031 0.054688 0.13281 0.10156 0.15625 0.14062 0.16406 0.17969 0.25781 0.40625 0.28125 0.6875 0.007812 0.13672 0 0.28125-0.03125 0.4375-0.011719 0.074219-0.058594 0.22656-0.14062 0.45312-0.10547 0.29297-0.17188 0.48438-0.20312 0.57812-0.30469 0.8125-0.49219 1.4766-0.5625 1.9844-0.011719 0.042969-0.015625 0.11719-0.015625 0.21875-0.011719 0.0625-0.015625 0.14062-0.015625 0.23438 0.019531 0.48047 0.16016 0.80469 0.42188 0.96875 0.019531 0.011719 0.050781 0.027344 0.09375 0.046875 0.039063 0.023438 0.070313 0.039062 0.09375 0.046875 0.082031 0.023437 0.17188 0.03125 0.26562 0.03125 0.125 0 0.21875-0.003906 0.28125-0.015625 0.5-0.09375 0.92188-0.42188 1.2656-0.98438 0.09375-0.13281 0.14844-0.22656 0.17188-0.28125 0.019531-0.039063 0.03125-0.078125 0.03125-0.10938 0-0.019531 0.003906-0.054688 0.015625-0.10938 0.019531-0.050781 0.035156-0.09375 0.046875-0.125l0.15625-0.6875 0.5625-2.1875 0.1875-0.71875c0.03125-0.20703 0.082031-0.35156 0.15625-0.4375 0.070312-0.10156 0.17578-0.16406 0.3125-0.1875 0.13281-0.03125 0.25781-0.007813 0.375 0.0625 0.09375 0.074219 0.12891 0.1875 0.10938 0.34375 0 0.011719-0.011719 0.058594-0.03125 0.14062-0.054687 0.19922-0.13281 0.50781-0.23438 0.92188l-0.625 2.4688c-0.023438 0.10547-0.074219 0.3125-0.15625 0.625-0.085938 0.40625-0.11719 0.69531-0.09375 0.85938 0.019531 0.14844 0.050781 0.24609 0.09375 0.29688 0.10156 0.14844 0.25391 0.17969 0.45312 0.09375 0.0625-0.039063 0.12891-0.10156 0.20312-0.1875 0.0625-0.070313 0.14062-0.20312 0.23438-0.39062 0.0625-0.15625 0.15625-0.4375 0.28125-0.84375 0.007813-0.03125 0.019531-0.078125 0.03125-0.14062 0.007813-0.070313 0.019531-0.12891 0.03125-0.17188 0-0.007812 0.003906-0.03125 0.015625-0.0625 0.007812-0.039062 0.019531-0.070312 0.03125-0.09375 0.03125-0.039062 0.09375-0.0625 0.1875-0.0625 0.11328 0 0.1875 0.023438 0.21875 0.0625 0 0.011719 0.003906 0.015625 0.015625 0.015625v0.03125c0 0.054687-0.007813 0.085937-0.015625 0.09375-0.011719 0.042969-0.027344 0.089844-0.046875 0.14062-0.042969 0.21875-0.089844 0.39844-0.14062 0.53125-0.10547 0.33594-0.21094 0.60547-0.3125 0.8125-0.09375 0.17969-0.21094 0.3125-0.34375 0.40625-0.09375 0.082031-0.19531 0.13281-0.29688 0.15625-0.125 0.050781-0.25781 0.066406-0.39062 0.046875-0.32422-0.023437-0.58594-0.14062-0.78125-0.35938-0.11719-0.125-0.1875-0.25391-0.21875-0.39062-0.011719-0.019531-0.023438-0.046875-0.03125-0.078125-0.011719-0.039062-0.023438-0.070312-0.03125-0.09375z"/>
|
|
204
|
+
</symbol>
|
|
205
|
+
<symbol id="ca" overflow="visible">
|
|
206
|
+
<path d="m5.4219-3.4375c0.007813 0 0.054687 0.015625 0.14062 0.046875 0.039062 0.011719 0.14453 0.054687 0.3125 0.125 0.44531 0.23047 0.72656 0.55469 0.84375 0.96875 0.03125 0.085937 0.046875 0.16797 0.046875 0.25v0.17188c-0.011719 0.125-0.046875 0.27344-0.10938 0.4375-0.10547 0.25-0.27734 0.48438-0.51562 0.70312-0.3125 0.27344-0.6875 0.49219-1.125 0.65625-0.35547 0.125-0.75781 0.20312-1.2031 0.23438-0.34375 0.019531-0.65234-0.027344-0.92188-0.14062-0.14844-0.050781-0.32031-0.13281-0.51562-0.25-0.10547-0.082031-0.20312-0.17188-0.29688-0.26562-0.58594-0.5625-0.8125-1.3438-0.6875-2.3438 0.007813-0.19531 0.03125-0.34375 0.0625-0.4375 0.050781-0.25 0.125-0.47266 0.21875-0.67188 0.25781-0.53906 0.64453-1.0078 1.1562-1.4062 0.13281-0.10156 0.28516-0.20312 0.45312-0.29688 0.57031-0.32031 1.1602-0.5 1.7656-0.53125 0.26953-0.019531 0.54688 0.007812 0.82812 0.078125 0.21875 0.054687 0.41016 0.13672 0.57812 0.25l0.20312 0.15625c0.09375 0.11719 0.15625 0.20312 0.1875 0.26562 0.10156 0.25 0.125 0.50781 0.0625 0.76562-0.0625 0.26172-0.1875 0.48438-0.375 0.67188-0.19922 0.19922-0.44531 0.34375-0.73438 0.4375l-0.25 0.09375zm-2.7969-0.10938c0.375 0 0.66016-0.003906 0.85938-0.015625h0.25 0.26562c0.22656-0.019531 0.39844-0.039062 0.51562-0.0625 0.22656-0.019531 0.45312-0.0625 0.67188-0.125 0.20703-0.0625 0.35938-0.11328 0.45312-0.15625 0.20703-0.11328 0.34766-0.20312 0.42188-0.26562 0.3125-0.3125 0.42188-0.64453 0.32812-1 0-0.03125-0.023437-0.082031-0.0625-0.15625-0.15625-0.30078-0.48047-0.47656-0.96875-0.53125h-0.23438c-0.054688 0-0.14844 0.007813-0.28125 0.015625-0.39844 0.074219-0.76172 0.24219-1.0938 0.5-0.32422 0.25-0.58594 0.55859-0.78125 0.92188-0.11719 0.21094-0.19531 0.39062-0.23438 0.54688-0.042969 0.09375-0.070313 0.15625-0.078125 0.1875 0 0.011719-0.007812 0.039062-0.015625 0.078125-0.011719 0.03125-0.015625 0.054687-0.015625 0.0625zm-0.09375 0.3125c-0.011719 0.03125-0.023438 0.078125-0.03125 0.14062-0.011719 0.054688-0.015625 0.09375-0.015625 0.125-0.074219 0.30469-0.11719 0.5625-0.125 0.78125v0.20312 0.25 0.10938 0.09375c0.050781 0.3125 0.14062 0.5625 0.26562 0.75 0.039062 0.085938 0.11328 0.17969 0.21875 0.28125 0.15625 0.14844 0.34375 0.24609 0.5625 0.29688 0.10156 0.023437 0.17969 0.03125 0.23438 0.03125 0.125 0 0.21875-0.003906 0.28125-0.015625 0.45703-0.039062 0.84766-0.21875 1.1719-0.53125 0.21875-0.19531 0.38281-0.47656 0.5-0.84375 0.082031-0.3125 0.125-0.57812 0.125-0.79688-0.023438-0.16406-0.0625-0.29688-0.125-0.39062-0.03125-0.050781-0.058594-0.085938-0.078125-0.10938-0.03125-0.03125-0.085937-0.078125-0.15625-0.14062-0.1875-0.125-0.41797-0.19531-0.6875-0.21875-0.10547-0.007812-0.27734-0.015625-0.51562-0.015625z"/>
|
|
207
|
+
</symbol>
|
|
208
|
+
<symbol id="bz" overflow="visible">
|
|
209
|
+
<path d="m2.5312-3.2344c-0.011719 0.042969-0.027344 0.10547-0.046875 0.1875-0.023437 0.085937-0.039063 0.14844-0.046875 0.1875-0.0625 0.39844-0.10156 0.64844-0.10938 0.75-0.023437 0.09375-0.03125 0.16406-0.03125 0.20312v0.3125c0.019531 0.33594 0.082031 0.62109 0.1875 0.85938 0.09375 0.17969 0.20312 0.30859 0.32812 0.39062 0.13281 0.10547 0.26953 0.16406 0.40625 0.17188 0.15625 0 0.26953-0.003906 0.34375-0.015625 0.53906-0.050781 1.0625-0.25 1.5625-0.59375 0.25-0.1875 0.45312-0.375 0.60938-0.5625l0.1875-0.21875c0.039063-0.070312 0.078125-0.11328 0.10938-0.125 0.0625-0.019531 0.13281 0.011719 0.21875 0.09375l0.046875 0.046875c0.03125 0.054687 0.019531 0.125-0.03125 0.21875-0.042969 0.054687-0.078125 0.09375-0.10938 0.125-0.19922 0.25-0.44531 0.48047-0.73438 0.6875-0.17969 0.11719-0.35156 0.21875-0.51562 0.3125-0.49219 0.21875-0.96875 0.33203-1.4375 0.34375-0.11719 0.007813-0.21875 0.007813-0.3125 0-0.375-0.03125-0.69531-0.14844-0.95312-0.35938-0.53125-0.41406-0.82422-1.0508-0.875-1.9062-0.011719-0.33203 0.015625-0.67188 0.078125-1.0156 0.0625-0.28906 0.15625-0.59375 0.28125-0.90625 0.33203-0.69531 0.84375-1.2539 1.5312-1.6719 0.48828-0.28125 0.97656-0.4375 1.4688-0.46875 0.33203-0.019531 0.61328 0.027344 0.84375 0.14062 0.14453 0.074219 0.26953 0.16406 0.375 0.26562 0.13281 0.125 0.22266 0.26562 0.26562 0.42188 0.13281 0.39844 0.066406 0.78906-0.20312 1.1719-0.0625 0.10547-0.13672 0.1875-0.21875 0.25-0.25 0.23047-0.57422 0.39844-0.96875 0.5-0.38672 0.10547-0.85938 0.16797-1.4219 0.1875-0.13672 0.011719-0.32812 0.015625-0.57812 0.015625zm0.078125-0.3125c0.65625 0 1.2188-0.046875 1.6875-0.14062 0.375-0.082031 0.66406-0.19531 0.875-0.34375 0.11328-0.082031 0.21875-0.1875 0.3125-0.3125 0.28125-0.42578 0.30469-0.8125 0.078125-1.1562-0.023438-0.039062-0.0625-0.09375-0.125-0.15625-0.33594-0.28906-0.75781-0.3125-1.2656-0.0625-0.52344 0.25-0.92969 0.66406-1.2188 1.2344-0.09375 0.1875-0.17969 0.39844-0.25 0.625-0.054687 0.16797-0.085937 0.27344-0.09375 0.3125z"/>
|
|
210
|
+
</symbol>
|
|
211
|
+
<symbol id="by" overflow="visible">
|
|
212
|
+
<path d="m7.25-4.9375 0.09375-0.125c0.007812-0.019531 0.035156-0.050781 0.078125-0.09375 0.039063-0.050781 0.070313-0.09375 0.09375-0.125 0.26953-0.28906 0.52344-0.50391 0.76562-0.64062 0.3125-0.15625 0.60938-0.23828 0.89062-0.25 0.20703-0.03125 0.42188-0.019531 0.64062 0.03125 0.1875 0.054687 0.32031 0.10547 0.40625 0.15625 0.11328 0.074219 0.19531 0.14062 0.25 0.20312 0.30078 0.28125 0.42578 0.70312 0.375 1.2656l-0.046875 0.26562c-0.023437 0.125-0.042969 0.21875-0.0625 0.28125-0.03125 0.17969-0.0625 0.30859-0.09375 0.39062l-0.125 0.45312c-0.03125 0.0625-0.070313 0.16406-0.10938 0.29688-0.03125 0.13672-0.0625 0.23438-0.09375 0.29688-0.023438 0.085938-0.0625 0.21094-0.125 0.375-0.0625 0.16797-0.10938 0.29297-0.14062 0.375-0.17969 0.51172-0.27734 0.86719-0.29688 1.0625-0.023438 0.10547-0.023438 0.21094 0 0.3125 0.007812 0.054688 0.023438 0.10156 0.046875 0.14062 0.0625 0.085937 0.15625 0.11719 0.28125 0.09375 0.019531 0 0.046875-0.003906 0.078125-0.015625 0.03125-0.007812 0.054688-0.015625 0.078125-0.015625 0.13281-0.039063 0.25-0.10938 0.34375-0.20312 0.16406-0.14453 0.29688-0.32812 0.39062-0.54688 0.082031-0.13281 0.17578-0.35156 0.28125-0.65625 0.019531-0.0625 0.050781-0.17188 0.09375-0.32812 0.007812-0.019531 0.019531-0.070312 0.03125-0.15625 0.03125-0.039062 0.11328-0.0625 0.25-0.0625 0.070312 0 0.125 0.015625 0.15625 0.046875 0.019531 0.03125 0.019531 0.089844 0 0.17188-0.03125 0.15625-0.0625 0.27344-0.09375 0.34375-0.11719 0.375-0.26562 0.69531-0.45312 0.95312-0.09375 0.16797-0.20312 0.30469-0.32812 0.40625-0.14844 0.14844-0.32812 0.25391-0.54688 0.32812-0.19922 0.070312-0.40625 0.082031-0.625 0.03125-0.21094-0.054688-0.38281-0.16016-0.51562-0.32812-0.085938-0.09375-0.14844-0.1875-0.1875-0.28125-0.054688-0.15625-0.078125-0.28516-0.078125-0.39062 0-0.19531 0.007813-0.34766 0.03125-0.45312 0-0.019531 0.039063-0.14844 0.125-0.39062 0.019531-0.050781 0.050781-0.13281 0.09375-0.25 0.039063-0.11328 0.070313-0.20312 0.09375-0.26562 0.1875-0.53125 0.34375-1.0078 0.46875-1.4375 0.082031-0.3125 0.14453-0.61328 0.1875-0.90625v-0.125c0.007813-0.050781 0.019531-0.085937 0.03125-0.10938v-0.1875c0-0.36328-0.089844-0.61328-0.26562-0.75-0.011719-0.007812-0.03125-0.019531-0.0625-0.03125-0.023438-0.019531-0.039062-0.035156-0.046875-0.046875-0.085937-0.019531-0.13672-0.03125-0.15625-0.03125h-0.25c-0.53125 0.03125-1.0117 0.32422-1.4375 0.875-0.15625 0.19922-0.29688 0.42188-0.42188 0.67188l-0.17188 0.34375s-0.007813 0.011719-0.015625 0.03125v0.046875l-0.046875 0.17188-0.14062 0.53125-0.40625 1.6406-0.21875 0.90625-0.078125 0.28125c-0.011719 0.09375-0.027344 0.15625-0.046875 0.1875-0.085938 0.17578-0.22656 0.28125-0.42188 0.3125-0.21875 0.039063-0.36719-0.03125-0.4375-0.21875-0.023437-0.039063-0.03125-0.082031-0.03125-0.125 0-0.039063 0.007813-0.097656 0.03125-0.17188l0.046875-0.1875 0.17188-0.67188 0.51562-2.0625 0.15625-0.64062c0.070312-0.30078 0.11719-0.51953 0.14062-0.65625 0.03125-0.34375 0.019531-0.61328-0.03125-0.8125-0.054687-0.17578-0.14844-0.30469-0.28125-0.39062-0.125-0.070313-0.30469-0.09375-0.53125-0.0625-0.4375 0.0625-0.82812 0.28906-1.1719 0.67188-0.23047 0.24219-0.43359 0.53125-0.60938 0.875-0.0625 0.11719-0.11719 0.22656-0.15625 0.32812 0 0.011719-0.015625 0.046875-0.046875 0.10938l-0.03125 0.1875-0.15625 0.59375-0.45312 1.8125-0.17188 0.73438-0.0625 0.20312c-0.011719 0.054688-0.03125 0.125-0.0625 0.21875-0.09375 0.16406-0.24609 0.25781-0.45312 0.28125-0.21094 0-0.33984-0.078125-0.39062-0.23438-0.011719-0.03125-0.015625-0.070313-0.015625-0.125 0-0.050781 0.007813-0.10156 0.03125-0.15625l0.03125-0.20312 0.98438-3.9375c0.082031-0.33203 0.125-0.61328 0.125-0.84375 0-0.19531-0.03125-0.33594-0.09375-0.42188-0.125-0.13281-0.27344-0.15625-0.4375-0.0625-0.085938 0.042969-0.16797 0.12109-0.25 0.23438-0.085938 0.11719-0.17188 0.29297-0.26562 0.53125l-0.20312 0.67188c-0.011719 0.074219-0.039062 0.16406-0.078125 0.26562-0.011719 0.011719-0.015625 0.039062-0.015625 0.078125 0 0.03125-0.007812 0.058594-0.015625 0.078125-0.023437 0.054688-0.10156 0.078125-0.23438 0.078125-0.09375 0-0.15625-0.023437-0.1875-0.078125-0.011719-0.007812-0.007812-0.066406 0.015625-0.17188 0.007813-0.007813 0.015625-0.023437 0.015625-0.046875 0.007812-0.03125 0.015625-0.050781 0.015625-0.0625 0.050781-0.22656 0.11719-0.47656 0.20312-0.75 0.09375-0.23828 0.1875-0.4375 0.28125-0.59375 0.10156-0.17578 0.19141-0.29688 0.26562-0.35938 0.082031-0.0625 0.17578-0.11328 0.28125-0.15625 0.11328-0.050781 0.26562-0.078125 0.45312-0.078125 0.32031 0.03125 0.58594 0.15625 0.79688 0.375 0.10156 0.13672 0.1875 0.30469 0.25 0.5 0.007813 0.011719 0.015625 0.039062 0.015625 0.078125 0 0.03125 0.003906 0.054687 0.015625 0.0625 0 0.054687 0.003906 0.089844 0.015625 0.10938 0.007812-0.050781 0.039062-0.09375 0.09375-0.125 0.0625-0.082031 0.14844-0.17969 0.26562-0.29688 0.5625-0.5625 1.207-0.78906 1.9375-0.6875 0.28125 0.042969 0.50391 0.125 0.67188 0.25 0.23828 0.17969 0.39453 0.42969 0.46875 0.75 0.019531 0.09375 0.03125 0.17188 0.03125 0.23438z"/>
|
|
213
|
+
</symbol>
|
|
214
|
+
<symbol id="bx" overflow="visible">
|
|
215
|
+
<path d="m4.1406-6.0312h0.59375c0.125 0 0.20703 0.015625 0.25 0.046875 0.03125 0.03125 0.050781 0.078125 0.0625 0.14062 0.019531 0.11719 0.03125 0.19922 0.03125 0.25l0.17188 0.92188 0.45312 2.5c0.050781 0.35547 0.097656 0.62109 0.14062 0.79688 0 0.0625 0.003906 0.14062 0.015625 0.23438 0.007813 0 0.015625 0.015625 0.015625 0.046875s0.003906 0.058594 0.015625 0.078125c0.007813-0.019531 0.023437-0.046875 0.046875-0.078125 0.03125-0.03125 0.046875-0.054688 0.046875-0.078125l0.21875-0.3125 0.70312-1.0312 1.3438-2 0.57812-0.85938 0.29688-0.4375c0.050781-0.0625 0.082031-0.097656 0.09375-0.10938l0.03125-0.046875c0.03125-0.019531 0.054688-0.035156 0.078125-0.046875 0.019531-0.007813 0.066406-0.015625 0.14062-0.015625h0.46875c0.09375 0 0.15625 0.015625 0.1875 0.046875 0.007812 0.011719 0.015625 0.027344 0.015625 0.046875 0.007813 0.03125 0.003906 0.074219-0.015625 0.125l-0.046875 0.21875-0.20312 0.8125-0.75 2.9688c-0.125 0.54297-0.1875 0.90234-0.1875 1.0781 0 0.21094 0.03125 0.35938 0.09375 0.45312 0.11328 0.14844 0.26562 0.17188 0.45312 0.078125 0.070313-0.03125 0.14844-0.10938 0.23438-0.23438 0.03125-0.039062 0.10156-0.17578 0.21875-0.40625 0.09375-0.25781 0.17578-0.52344 0.25-0.79688 0.007812-0.03125 0.019531-0.078125 0.03125-0.14062 0.019531-0.0625 0.035156-0.10938 0.046875-0.14062 0.007813-0.019531 0.015625-0.046875 0.015625-0.078125 0.007812-0.03125 0.015625-0.054688 0.015625-0.078125 0.019531-0.050781 0.085937-0.078125 0.20312-0.078125 0.11328 0 0.17969 0.027344 0.20312 0.078125 0.007813 0.011719 0.015625 0.027344 0.015625 0.046875 0 0.023438-0.007812 0.078125-0.015625 0.17188-0.03125 0.13672-0.070313 0.25781-0.10938 0.35938-0.10547 0.39844-0.21484 0.71094-0.32812 0.9375-0.14844 0.25-0.29297 0.42969-0.4375 0.53125-0.17969 0.125-0.38281 0.17969-0.60938 0.17188-0.21875 0-0.41797-0.0625-0.59375-0.1875-0.15625-0.10156-0.27734-0.22656-0.35938-0.375-0.13672-0.23828-0.1875-0.52344-0.15625-0.85938 0.007813-0.0625 0.03125-0.19141 0.0625-0.39062l0.10938-0.35938 0.5-2.0312 0.17188-0.67188 0.078125-0.34375c-0.03125 0.054687-0.0625 0.10156-0.09375 0.14062-0.042969 0.0625-0.10938 0.16406-0.20312 0.29688l-0.59375 0.89062-0.96875 1.4219-0.84375 1.25-0.42188 0.60938c-0.054688 0.09375-0.10156 0.16797-0.14062 0.21875l-0.078125 0.125c-0.085938 0.085938-0.17969 0.125-0.28125 0.125-0.054688 0-0.09375-0.0078125-0.125-0.03125-0.0625-0.019531-0.10547-0.125-0.125-0.3125l-0.17188-0.92188-0.46875-2.6562c-0.023437-0.125-0.054687-0.30078-0.09375-0.53125-0.03125-0.23828-0.0625-0.42188-0.09375-0.54688l-0.046875 0.17188-0.078125 0.3125-0.23438 0.98438-0.26562 1c-0.09375 0.42969-0.17188 0.71094-0.23438 0.84375-0.11719 0.36719-0.29688 0.71484-0.54688 1.0469-0.074219 0.09375-0.13672 0.16797-0.1875 0.21875-0.40625 0.41797-0.79297 0.60156-1.1562 0.5625-0.042969 0-0.10938-0.011719-0.20312-0.03125-0.09375-0.03125-0.16406-0.070312-0.20312-0.10938-0.30469-0.19531-0.42969-0.53125-0.375-1 0.019531-0.17578 0.046875-0.29688 0.078125-0.35938 0.125-0.25 0.33203-0.375 0.625-0.375 0.125 0 0.22656 0.027344 0.3125 0.078125 0.15625 0.11719 0.20312 0.28906 0.14062 0.51562-0.074219 0.26172-0.23047 0.42969-0.46875 0.5-0.085937 0.03125-0.16797 0.042969-0.25 0.03125 0.019531 0.19922 0.10156 0.33594 0.25 0.40625 0.13281 0.054687 0.26953 0.054687 0.40625 0 0.11328-0.03125 0.23828-0.11328 0.375-0.25 0.14453-0.11328 0.29688-0.29688 0.45312-0.54688 0.11328-0.19531 0.23438-0.46875 0.35938-0.8125 0.050781-0.1875 0.125-0.47266 0.21875-0.85938l0.51562-2.0156 0.23438-0.96875c0.007813-0.03125 0.019531-0.070312 0.03125-0.125 0.019531-0.0625 0.03125-0.10938 0.03125-0.14062v-0.015625l0.015625-0.03125 0.03125-0.015625-0.015625-0.015625v-0.03125z"/>
|
|
216
|
+
</symbol>
|
|
217
|
+
<symbol id="bw" overflow="visible">
|
|
218
|
+
<path d="m4.0156-0.96875c0.28125-0.1875 0.61719-0.45312 1.0156-0.79688 1-0.84375 1.6133-1.6133 1.8438-2.3125 0.15625-0.47656 0.17188-0.95703 0.046875-1.4375-0.085937-0.21875-0.078125-0.375 0.015625-0.46875 0.10156-0.13281 0.23828-0.21875 0.40625-0.25 0.17578-0.039063 0.32812-0.003906 0.45312 0.10938 0.13281 0.09375 0.17578 0.30469 0.125 0.625-0.054687 0.32422-0.12109 0.61719-0.20312 0.875-0.085938 0.26172-0.17188 0.49219-0.26562 0.6875-0.17969 0.375-0.42188 0.75781-0.73438 1.1406-0.30469 0.38672-0.60547 0.71484-0.90625 0.98438-0.29297 0.27344-0.58984 0.53125-0.89062 0.78125-0.29297 0.24219-0.52344 0.41797-0.6875 0.53125-0.1875 0.13672-0.30859 0.23047-0.35938 0.28125-0.042969 0.042969-0.078125 0.125-0.10938 0.25l-0.125 0.45312c-0.32422 1.1875-0.80859 1.9883-1.4531 2.4062-0.25 0.15625-0.46094 0.17969-0.625 0.078125-0.10547-0.0625-0.15625-0.19922-0.15625-0.40625 0-0.19922 0.019531-0.375 0.0625-0.53125 0.050781-0.15625 0.10938-0.30469 0.17188-0.4375 0.22656-0.57422 0.71094-1.1953 1.4531-1.8594 0.03125-0.019531 0.0625-0.046875 0.09375-0.078125 0.082031-0.0625 0.13281-0.10938 0.15625-0.14062 0.019531-0.03125 0.039062-0.097656 0.0625-0.20312 0.007812-0.050781 0.019531-0.097656 0.03125-0.14062 0.070312-0.17578 0.16406-0.60938 0.28125-1.2969 0.125-0.69531 0.14844-1.3164 0.078125-1.8594-0.054687-0.40625-0.15625-0.70312-0.3125-0.89062-0.15625-0.19531-0.33594-0.28906-0.53125-0.28125-0.1875 0.011719-0.36719 0.058594-0.53125 0.14062-0.16797 0.085937-0.30859 0.1875-0.42188 0.3125-0.10547 0.125-0.17188 0.22656-0.20312 0.29688-0.023437 0.074219-0.039063 0.11719-0.046875 0.125-0.054688 0.0625-0.10547 0.058594-0.15625-0.015625-0.023438-0.019531-0.03125-0.039063-0.03125-0.0625 0-0.17578 0.097656-0.42969 0.29688-0.76562 0.20703-0.33203 0.42969-0.57812 0.67188-0.73438 0.11328-0.082031 0.23828-0.15625 0.375-0.21875 0.13281-0.070313 0.31641-0.10156 0.54688-0.09375 0.23828 0 0.44531 0.089844 0.625 0.26562 0.125 0.13672 0.21094 0.34375 0.26562 0.625 0.0625 0.27344 0.085938 0.52344 0.078125 0.75-0.011719 0.23047-0.011719 0.43359 0 0.60938-0.054687 1.168-0.1875 2.1523-0.40625 2.9531z"/>
|
|
219
|
+
</symbol>
|
|
220
|
+
<symbol id="bv" overflow="visible">
|
|
221
|
+
<path d="m2.7969-3.2031c-0.17969-0.03125-0.39062-0.11719-0.64062-0.26562-0.25-0.14453-0.41797-0.31641-0.5-0.51562-0.1875-0.41406-0.0625-0.86328 0.375-1.3438 0.4375-0.48828 1.1172-0.76953 2.0469-0.84375 0.34375-0.03125 0.64844-0.003906 0.92188 0.078125 0.26953 0.074219 0.47656 0.1875 0.625 0.34375 0.15625 0.14844 0.26953 0.28125 0.34375 0.40625 0.070312 0.125 0.125 0.25 0.15625 0.375 0.039062 0.21875 0.046875 0.36719 0.015625 0.4375-0.011719 0.10547-0.070313 0.19531-0.17188 0.26562-0.10547 0.074219-0.21484 0.10547-0.32812 0.09375-0.125-0.019531-0.1875-0.082031-0.1875-0.1875 0-0.03125 0.003906-0.078125 0.015625-0.14062 0.007812-0.070312 0.015625-0.11719 0.015625-0.14062 0.019531-0.4375-0.14844-0.78516-0.5-1.0469-0.3125-0.17578-0.63281-0.23438-0.95312-0.17188-0.32422 0.0625-0.62109 0.22656-0.89062 0.48438-0.27344 0.25-0.4375 0.53906-0.5 0.85938-0.054687 0.32422 0.023437 0.58984 0.23438 0.79688 0.21875 0.19922 0.42188 0.30859 0.60938 0.32812 0.039063 0 0.17969-0.023437 0.42188-0.078125 0.25-0.0625 0.42969-0.09375 0.54688-0.09375 0.125-0.007812 0.21094 0.03125 0.26562 0.125 0.0625 0.09375 0.070312 0.19531 0.03125 0.29688l-0.09375 0.125c-0.14844 0.125-0.28906 0.18359-0.42188 0.17188-0.13672-0.007812-0.30469-0.039062-0.5-0.09375-0.19922-0.0625-0.32031-0.085938-0.35938-0.078125-0.35547 0.03125-0.72656 0.26172-1.1094 0.6875-0.38672 0.41797-0.53125 0.85938-0.4375 1.3281 0.039063 0.35547 0.23438 0.59375 0.57812 0.71875s0.83594 0.0625 1.4844-0.1875c0.375-0.14453 0.76562-0.45703 1.1719-0.9375 0.007812 0 0.03125-0.019531 0.0625-0.0625 0.03125-0.050781 0.054688-0.09375 0.078125-0.125 0.019531-0.03125 0.046875-0.050781 0.078125-0.0625 0.070312-0.019531 0.11719 0 0.14062 0.0625 0.03125 0.0625 0.035156 0.125 0.015625 0.1875-0.16797 0.35547-0.50781 0.6875-1.0156 1-0.51172 0.3125-1.0625 0.49219-1.6562 0.54688-0.59375 0.050781-1.1367-0.11719-1.625-0.5-0.24219-0.23828-0.36719-0.5-0.375-0.78125-0.011719-0.28906 0.046875-0.55078 0.17188-0.78125 0.13281-0.22656 0.29688-0.42578 0.48438-0.59375 0.17578-0.13281 0.35156-0.25 0.53125-0.34375 0.1875-0.09375 0.36719-0.17188 0.54688-0.23438 0.17578-0.0625 0.27344-0.097656 0.29688-0.10938z"/>
|
|
222
|
+
</symbol>
|
|
223
|
+
<symbol id="bu" overflow="visible">
|
|
224
|
+
<path d="m2.1875-6.0312h1.0469c-0.042969 0.13672-0.17969 0.57031-0.40625 1.2969l-0.79688 2.5625-0.17188 0.5c-0.074219 0.25-0.10938 0.4375-0.10938 0.5625 0 0.21875 0.046875 0.38281 0.14062 0.48438 0.10156 0.09375 0.20703 0.14062 0.3125 0.14062 0.11328-0.007813 0.21875-0.050781 0.3125-0.125 0.13281-0.09375 0.25391-0.23828 0.35938-0.4375 0.11328-0.20703 0.20703-0.38281 0.28125-0.53125 0.0625-0.13281 0.13281-0.20312 0.21875-0.20312 0.082031 0 0.12891 0.03125 0.14062 0.09375 0.03125 0.0625-0.085937 0.29688-0.34375 0.70312-0.44922 0.77344-0.92969 1.1445-1.4375 1.125-0.21875 0-0.41406-0.085938-0.57812-0.25-0.13672-0.15625-0.21875-0.34766-0.25-0.57812-0.023438-0.22656-0.015625-0.41406 0.015625-0.5625 0.03125-0.15625 0.082031-0.36719 0.15625-0.64062l0.71875-2.6875c0.11328-0.40625 0.24219-0.89062 0.39062-1.4531z"/>
|
|
225
|
+
</symbol>
|
|
226
|
+
<symbol id="bt" overflow="visible">
|
|
227
|
+
<path d="m4.9844-6.7969c0.007813-0.03125 0.09375-0.21875 0.25-0.5625l0.46875-1.0156c0.21875-0.53906 0.37891-0.89453 0.48438-1.0625 0.11328-0.17578 0.22656-0.28516 0.34375-0.32812 0.11328-0.0625 0.24219-0.070313 0.39062-0.03125 0.14453 0.03125 0.23828 0.11719 0.28125 0.25 0.0625 0.16797-0.03125 0.39844-0.28125 0.6875l-1.1094 1.3438c-0.38672 0.46094-0.60156 0.71875-0.64062 0.78125zm-0.046875 5.6562c-0.085938 0.16797-0.24609 0.37109-0.48438 0.60938-0.23047 0.24219-0.48438 0.41797-0.76562 0.53125-0.52344 0.21875-1.0156 0.20703-1.4844-0.03125-0.46875-0.25-0.77344-0.69531-0.90625-1.3438-0.13672-0.80078-0.011719-1.6133 0.375-2.4375 0.38281-0.83203 0.92188-1.4727 1.6094-1.9219 0.22656-0.15625 0.47266-0.27344 0.73438-0.35938 0.25781-0.082031 0.53516-0.10938 0.82812-0.078125 0.28906 0.03125 0.53125 0.14062 0.71875 0.32812 0.125 0.15625 0.21094 0.35156 0.26562 0.57812 0.0625 0.21875 0.09375 0.35938 0.09375 0.42188 0.070313-0.60156 0.20312-1 0.39062-1.1875 0.09375-0.10156 0.22656-0.15625 0.40625-0.15625 0.17578 0 0.28906 0.078125 0.34375 0.23438 0.007812 0.054687 0.007812 0.09375 0 0.125 0 0.03125-0.027344 0.14062-0.078125 0.32812l-0.17188 0.57812c-0.23047 0.79297-0.44531 1.3984-0.64062 1.8125-0.19922 0.40625-0.33594 0.77734-0.40625 1.1094-0.085937 0.42969-0.058594 0.74609 0.078125 0.95312 0.09375 0.125 0.22656 0.19922 0.40625 0.21875 0.1875 0.023437 0.38281-0.039063 0.59375-0.1875 0.21875-0.15625 0.38281-0.39062 0.5-0.70312 0.0625-0.125 0.097656-0.1875 0.10938-0.1875 0.03125-0.03125 0.0625-0.023438 0.09375 0.015625 0.039063 0.042969 0.0625 0.085937 0.0625 0.125 0 0.24219-0.13672 0.57422-0.40625 1-0.26172 0.42969-0.57422 0.70312-0.9375 0.82812-0.41797 0.14453-0.75 0.10938-1-0.10938-0.24219-0.21875-0.34375-0.58203-0.3125-1.0938zm0.5-1.9844c0.16406-0.57031 0.23438-1.0508 0.20312-1.4375-0.03125-0.38281-0.089844-0.66016-0.17188-0.82812-0.074219-0.16406-0.16797-0.28125-0.28125-0.34375-0.28125-0.16406-0.57031-0.21094-0.85938-0.14062-0.29297 0.074219-0.55469 0.21875-0.78125 0.4375-0.46094 0.44922-0.80859 1.043-1.0469 1.7812-0.24219 0.73047-0.375 1.3867-0.40625 1.9688-0.023438 0.26172 0.003906 0.52344 0.078125 0.78125 0.082031 0.25 0.21094 0.42969 0.39062 0.53125 0.30078 0.14844 0.58594 0.18359 0.85938 0.10938 0.28125-0.070313 0.53906-0.21875 0.78125-0.4375 0.48828-0.44531 0.89844-1.2539 1.2344-2.4219z"/>
|
|
228
|
+
</symbol>
|
|
229
|
+
<symbol id="bs" overflow="visible">
|
|
230
|
+
<path d="m4-3.2344c0.4375-0.16406 0.78125-0.27344 1.0312-0.32812 0.050781 0 0.085938-0.003906 0.10938-0.015625 0.019531-0.007813 0.039063-0.03125 0.0625-0.0625 0.03125-0.039063 0.054687-0.082031 0.078125-0.125 0.019531-0.050781 0.0625-0.13281 0.125-0.25 0.070312-0.125 0.15625-0.25391 0.25-0.39062 0.44531-0.66406 0.96875-1.207 1.5625-1.625 0.26953-0.16406 0.47266-0.23438 0.60938-0.20312 0.13281 0.023437 0.21875 0.09375 0.25 0.21875 0.0625 0.13672 0.0625 0.28125 0 0.4375-0.0625 0.14844-0.21094 0.35938-0.4375 0.64062-0.46875 0.55469-1.0234 1.0273-1.6562 1.4219-0.17969 0.125-0.26172 0.17969-0.25 0.15625 0.019531-0.019531-0.007813 0.046875-0.078125 0.20312-0.35547 0.9375-0.39062 1.6094-0.10938 2.0156 0.070313 0.10547 0.17969 0.17969 0.32812 0.21875 0.14453 0.03125 0.32812 0.007813 0.54688-0.078125 0.21875-0.09375 0.42578-0.25781 0.625-0.5 0.0625-0.09375 0.10938-0.19141 0.14062-0.29688 0.039062-0.10156 0.078125-0.16406 0.10938-0.1875 0.09375-0.070313 0.16406-0.050781 0.21875 0.0625 0.09375 0.14844 0.035156 0.42969-0.17188 0.84375-0.19922 0.41797-0.46484 0.73047-0.79688 0.9375-0.33594 0.20703-0.64844 0.30078-0.9375 0.28125-0.28125-0.023437-0.5-0.125-0.65625-0.3125-0.16797-0.19531-0.25781-0.50781-0.26562-0.9375-0.011719-0.4375 0.007812-0.80078 0.0625-1.0938 0.0625-0.28906 0.125-0.53516 0.1875-0.73438-0.19922 0.09375-0.38672 0.17969-0.5625 0.25-0.17969 0.0625-0.29688 0.10938-0.35938 0.14062-0.0625 0.023437-0.13281 0.046875-0.20312 0.078125-0.074219 0.03125-0.10938 0.054688-0.10938 0.0625 0 0.011719-0.027344 0.042969-0.078125 0.09375-0.042969 0.054688-0.074219 0.10938-0.09375 0.17188l-0.17188 0.34375c-0.27344 0.5-0.57031 0.96875-0.89062 1.4062l-0.25 0.32812c-0.0625 0.082031-0.11719 0.13281-0.15625 0.15625-0.03125 0.03125-0.12109 0.046875-0.26562 0.046875h-0.40625c-0.125 0-0.20312-0.007813-0.23438-0.015625-0.09375-0.042969-0.10156-0.17188-0.015625-0.39062 0.30078-0.88281 0.88281-1.6562 1.75-2.3125 0.09375-0.0625 0.15625-0.10938 0.1875-0.14062 0.039063-0.03125 0.10156-0.14453 0.1875-0.34375 0.17578-0.4375 0.28906-0.78516 0.34375-1.0469 0.050781-0.26953 0.066406-0.4375 0.046875-0.5-0.023438-0.0625-0.0625-0.16016-0.125-0.29688-0.1875-0.20703-0.4375-0.27344-0.75-0.20312-0.3125 0.0625-0.5625 0.21484-0.75 0.45312l-0.078125 0.078125c-0.03125 0.042969-0.058594 0.070313-0.078125 0.078125-0.0625 0.042969-0.125 0.042969-0.1875 0-0.054688-0.039062-0.070312-0.097656-0.046875-0.17188 0.007813-0.0625 0.11328-0.23438 0.3125-0.51562 0.53906-0.76953 1.0938-1.0938 1.6562-0.96875 0.1875 0.023438 0.34766 0.11719 0.48438 0.28125 0.13281 0.16797 0.22266 0.42188 0.26562 0.76562 0.050781 0.34375-0.007813 0.78125-0.17188 1.3125-0.023438 0.0625-0.054688 0.16406-0.09375 0.29688-0.042969 0.125-0.074219 0.21484-0.09375 0.26562z"/>
|
|
231
|
+
</symbol>
|
|
232
|
+
<symbol id="br" overflow="visible">
|
|
233
|
+
<path d="m4.7344-6.7969c0.007813-0.019531 0.078125-0.17969 0.20312-0.48438l0.78125-1.6719c0.039062-0.10156 0.078125-0.20312 0.10938-0.29688 0.039063-0.10156 0.097656-0.20312 0.17188-0.29688 0.070312-0.09375 0.15625-0.16406 0.25-0.21875 0.13281-0.082031 0.28906-0.085937 0.46875-0.015625 0.17578 0.074219 0.25781 0.19922 0.25 0.375-0.011719 0.125-0.070312 0.25781-0.17188 0.39062-0.09375 0.13672-0.18359 0.24219-0.26562 0.3125l-1.4844 1.7812c-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.03125 0-0.085937-0.015625-0.15625-0.046875zm0.03125 0.60938c0.40625-0.03125 0.78125 0.039062 1.125 0.20312 0.4375 0.23047 0.73438 0.58594 0.89062 1.0625 0.16406 0.46875 0.20703 0.96875 0.125 1.5-0.17969 1.0625-0.68359 1.9609-1.5156 2.6875-0.46875 0.40625-0.94531 0.66406-1.4219 0.76562-0.48047 0.11328-0.88281 0.12891-1.2031 0.046875-0.54297-0.09375-0.94922-0.39453-1.2188-0.90625-0.27344-0.50781-0.35156-1.125-0.23438-1.8438 0.050781-0.32031 0.15625-0.66016 0.3125-1.0156 0.30078-0.65625 0.72656-1.2188 1.2812-1.6875 0.55078-0.47656 1.1719-0.75 1.8594-0.8125zm1.2031 2c0.10156-0.69531-0.070312-1.2227-0.51562-1.5781-0.29297-0.14453-0.58984-0.17969-0.89062-0.10938-0.29297 0.0625-0.5625 0.20312-0.8125 0.42188-0.48047 0.41797-0.84375 0.99609-1.0938 1.7344-0.25 0.73047-0.39844 1.3828-0.4375 1.9531-0.0625 0.96094 0.25 1.5 0.9375 1.625 0.64453 0.09375 1.25-0.25781 1.8125-1.0625 0.57031-0.80078 0.90625-1.7969 1-2.9844z"/>
|
|
234
|
+
</symbol>
|
|
235
|
+
<symbol id="bq" overflow="visible">
|
|
236
|
+
<path d="m6.5938-5.1562c0.1875 0.28125 0.28906 0.64062 0.3125 1.0781 0.019531 0.42969-0.03125 0.87109-0.15625 1.3281-0.11719 0.46094-0.33984 0.91797-0.67188 1.375-0.33594 0.44922-0.75 0.8125-1.25 1.0938-0.40625 0.23047-0.82812 0.36328-1.2656 0.40625-0.42969 0.050781-0.85156-0.027344-1.2656-0.23438-0.75-0.42578-1.0859-1.1914-1-2.2969 0.09375-1.1133 0.56641-2.082 1.4219-2.9062 0.33203-0.32031 0.67969-0.55078 1.0469-0.6875 0.375-0.13281 0.6875-0.19531 0.9375-0.1875 0.25781 0.011719 0.60938 0.042969 1.0469 0.09375 0.4375 0.054688 0.78516 0.078125 1.0469 0.078125 0.21875 0 0.5-0.050781 0.84375-0.15625l0.25-0.09375c0.09375-0.019531 0.14453-0.03125 0.15625-0.03125 0.03125 0.011719 0.050781 0.042969 0.0625 0.09375 0.019531 0.054687 0.007813 0.13281-0.03125 0.23438-0.03125 0.10547-0.10547 0.21875-0.21875 0.34375-0.33594 0.34375-0.75781 0.5-1.2656 0.46875zm-0.73438 1.3125c0-0.625-0.13281-1.0781-0.39062-1.3594-0.26172-0.28125-0.54688-0.42188-0.85938-0.42188-0.42969 0-0.82031 0.19531-1.1719 0.57812-0.34375 0.38672-0.60938 0.82812-0.79688 1.3281-0.17969 0.5-0.28906 1-0.32812 1.5-0.074219 0.86719 0.078125 1.4609 0.45312 1.7812 0.28906 0.21094 0.59766 0.28906 0.92188 0.23438 0.32031-0.0625 0.61328-0.19531 0.875-0.40625 0.72656-0.58203 1.1562-1.5469 1.2812-2.8906 0.007812-0.070312 0.015625-0.1875 0.015625-0.34375z"/>
|
|
237
|
+
</symbol>
|
|
238
|
+
<symbol id="bp" overflow="visible">
|
|
239
|
+
<path d="m1.7344-1.6562c-0.011719 0.13672-0.074219 0.41406-0.1875 0.82812-0.10547 0.41797-0.19922 0.82422-0.28125 1.2188-0.11719 0.47656-0.16797 0.89062-0.15625 1.2344 0.007813 0.34375 0.039063 0.55078 0.09375 0.625 0.050781 0.082031 0.046875 0.21875-0.015625 0.40625-0.054688 0.13281-0.15625 0.24219-0.3125 0.32812-0.14844 0.082031-0.29688 0.125-0.45312 0.125-0.42578 0-0.56641-0.29688-0.42188-0.89062 0.125-0.48047 0.27344-1.0469 0.45312-1.7031l1.2656-4.75c0.13281-0.48828 0.25391-0.91406 0.35938-1.2812l0.078125-0.34375c0.03125-0.082031 0.050781-0.12891 0.0625-0.14062 0.007812-0.019531 0.10156-0.03125 0.28125-0.03125h0.76562l-1.0312 3.8125c-0.27344 0.99219-0.17188 1.6211 0.29688 1.8906 0.28906 0.125 0.5625 0.14062 0.8125 0.046875 0.25-0.10156 0.47656-0.26562 0.6875-0.48438 0.11328-0.13281 0.21094-0.26562 0.29688-0.39062 0.082031-0.13281 0.16016-0.3125 0.23438-0.53125 0.082031-0.21875 0.12891-0.35938 0.14062-0.42188 0.019531-0.070313 0.070313-0.25 0.15625-0.53125l0.79688-2.9844c0.019531-0.125 0.035156-0.20703 0.046875-0.25 0.007813-0.050781 0.035156-0.085938 0.078125-0.10938 0.039062-0.03125 0.070312-0.046875 0.09375-0.046875h0.20312 0.73438c-0.054688 0.16797-0.12109 0.40625-0.20312 0.71875-0.074219 0.3125-0.125 0.52344-0.15625 0.625l-0.67188 2.5156c-0.24219 0.78125-0.29297 1.2656-0.15625 1.4531 0.070312 0.10547 0.17188 0.15625 0.29688 0.15625s0.23438-0.039062 0.32812-0.125c0.09375-0.070312 0.17188-0.16406 0.23438-0.28125 0.0625-0.11328 0.125-0.25 0.1875-0.40625s0.10938-0.26562 0.14062-0.32812c0.03125-0.050781 0.070312-0.070313 0.125-0.0625 0.050781 0 0.082031 0.027344 0.09375 0.078125 0.03125 0.10547-0.074219 0.36719-0.3125 0.78125-0.21094 0.375-0.44922 0.65234-0.71875 0.82812-0.27344 0.17578-0.51562 0.25-0.73438 0.21875-0.21875-0.023437-0.38672-0.10547-0.5-0.25-0.125-0.14453-0.20312-0.39844-0.23438-0.76562h-0.015625c-0.11719 0.21094-0.32031 0.41797-0.60938 0.625-0.28125 0.19922-0.58984 0.32031-0.92188 0.375-0.33594 0.050781-0.64062-0.054688-0.92188-0.3125-0.28125-0.30078-0.38672-0.78906-0.3125-1.4688z"/>
|
|
240
|
+
</symbol>
|
|
241
|
+
<symbol id="bo" overflow="visible">
|
|
242
|
+
<path d="m4.7656-6.1875c0.40625-0.03125 0.78125 0.039062 1.125 0.20312 0.4375 0.23047 0.73438 0.58594 0.89062 1.0625 0.16406 0.46875 0.20703 0.96875 0.125 1.5-0.17969 1.0625-0.68359 1.9609-1.5156 2.6875-0.46875 0.40625-0.94531 0.66406-1.4219 0.76562-0.48047 0.11328-0.88281 0.12891-1.2031 0.046875-0.54297-0.09375-0.94922-0.39453-1.2188-0.90625-0.27344-0.50781-0.35156-1.125-0.23438-1.8438 0.050781-0.32031 0.15625-0.66016 0.3125-1.0156 0.30078-0.65625 0.72656-1.2188 1.2812-1.6875 0.55078-0.47656 1.1719-0.75 1.8594-0.8125zm1.2031 2c0.10156-0.69531-0.070312-1.2227-0.51562-1.5781-0.29297-0.14453-0.58984-0.17969-0.89062-0.10938-0.29297 0.0625-0.5625 0.20312-0.8125 0.42188-0.48047 0.41797-0.84375 0.99609-1.0938 1.7344-0.25 0.73047-0.39844 1.3828-0.4375 1.9531-0.0625 0.96094 0.25 1.5 0.9375 1.625 0.64453 0.09375 1.25-0.25781 1.8125-1.0625 0.57031-0.80078 0.90625-1.7969 1-2.9844z"/>
|
|
243
|
+
</symbol>
|
|
244
|
+
<symbol id="bn" overflow="visible">
|
|
245
|
+
<path d="m1.1406-6.2344h4.9375v6.2344h-1.0469v-5.3594h-2.8281v5.3594h-1.0625z"/>
|
|
246
|
+
</symbol>
|
|
247
|
+
<symbol id="s" overflow="visible">
|
|
248
|
+
<path d="m2.1875-5.5625c0.019531-0.019531 0.070312-0.0625 0.15625-0.125 0.09375-0.070312 0.17188-0.125 0.23438-0.15625 0.34375-0.19531 0.69531-0.33594 1.0625-0.42188 0.19531-0.0625 0.44141-0.10156 0.73438-0.125 0.15625 0 0.26953 0.007813 0.34375 0.015625 0.36328 0.042969 0.70312 0.21875 1.0156 0.53125 0.35156 0.35547 0.61719 0.8125 0.79688 1.375 0.082031 0.26172 0.13281 0.53125 0.15625 0.8125 0.03125 0.35547 0.035156 0.65234 0.015625 0.89062-0.074219 0.82422-0.34375 1.5-0.8125 2.0312-0.13672 0.16797-0.26172 0.29297-0.375 0.375-0.19922 0.14844-0.39062 0.25781-0.57812 0.32812-0.25 0.11328-0.52344 0.17188-0.8125 0.17188-0.28125 0-0.55859-0.042969-0.82812-0.125-0.375-0.13281-0.73438-0.35938-1.0781-0.67188v3.375h-1.0781v-8.9531h1.0469zm3.4219 2.5469c0.019531-0.082031 0.019531-0.16016 0-0.23438 0-0.09375-0.007813-0.21094-0.015625-0.35938-0.0625-0.36328-0.19531-0.69531-0.39062-1-0.19922-0.30078-0.45312-0.53516-0.76562-0.70312-0.10547-0.050781-0.21484-0.09375-0.32812-0.125-0.10547-0.03125-0.27344-0.046875-0.5-0.046875-0.38672 0.023437-0.74219 0.16797-1.0625 0.4375-0.11719 0.11719-0.19922 0.20312-0.25 0.26562 0 0.011719-0.015625 0.03125-0.046875 0.0625-0.023438 0.03125-0.03125 0.054688-0.03125 0.0625v3.0312c0.007812 0.011719 0.019531 0.027344 0.03125 0.046875 0.007812 0.011719 0.015625 0.023437 0.015625 0.03125 0.007813 0.011719 0.023437 0.03125 0.046875 0.0625 0.019531 0.03125 0.035156 0.058594 0.046875 0.078125 0.14453 0.24219 0.33203 0.41797 0.5625 0.53125 0.28906 0.14844 0.59375 0.19531 0.90625 0.14062 0.3125-0.050781 0.59375-0.17578 0.84375-0.375 0.082031-0.050781 0.16016-0.11328 0.23438-0.1875 0.34375-0.35156 0.56641-0.76953 0.67188-1.25 0.007813-0.14453 0.019531-0.25391 0.03125-0.32812z"/>
|
|
249
|
+
</symbol>
|
|
250
|
+
<symbol id="r" overflow="visible">
|
|
251
|
+
<path d="m1.1406-6.2344h1.0625v5.25l0.0625-0.125 0.125-0.26562 0.42188-0.84375 1.3281-2.6406 0.5-1 0.14062-0.26562 0.03125-0.0625 0.03125-0.03125 0.03125-0.015625h1.5v6.2344h-1.0625v-5.25l-0.0625 0.125-0.125 0.26562-0.42188 0.84375-1.3281 2.6406-0.5 1-0.125 0.26562-0.046875 0.0625-0.015625 0.03125-0.046875 0.015625h-1.5z"/>
|
|
252
|
+
</symbol>
|
|
253
|
+
<symbol id="bm" overflow="visible">
|
|
254
|
+
<path d="m1.1406-6.2344h2.25c0.76953 0 1.2969 0.054687 1.5781 0.15625 0.23828 0.085937 0.42969 0.20312 0.57812 0.35938 0.20703 0.21094 0.33203 0.51562 0.375 0.92188 0.007813 0.042969 0.015625 0.12109 0.015625 0.23438-0.011719 0.13672-0.0625 0.28125-0.15625 0.4375-0.15625 0.21094-0.40625 0.39844-0.75 0.5625-0.09375 0.03125-0.16797 0.0625-0.21875 0.09375l-0.125 0.03125c0.007812 0.011719 0.03125 0.027344 0.0625 0.046875 0.039062 0.011719 0.066406 0.015625 0.078125 0.015625 0.0625 0.03125 0.14844 0.074219 0.26562 0.125 0.32031 0.14844 0.58203 0.3125 0.78125 0.5 0.11328 0.13672 0.19531 0.24219 0.25 0.3125 0.070312 0.13672 0.11328 0.26562 0.125 0.39062 0.007812 0.085937 0.003906 0.21094-0.015625 0.375-0.03125 0.4375-0.16797 0.78906-0.40625 1.0469-0.11719 0.11719-0.24219 0.21094-0.375 0.28125-0.375 0.23047-1.0078 0.34375-1.8906 0.34375h-2.4219zm1.0469 2.4062h0.6875c0.61328-0.007813 1.1133-0.09375 1.5-0.25 0.20703-0.070313 0.35938-0.14453 0.45312-0.21875 0.082031-0.0625 0.14062-0.14453 0.17188-0.25v-0.125c-0.03125-0.21875-0.14844-0.39062-0.34375-0.51562-0.09375-0.0625-0.21484-0.10156-0.35938-0.125-0.21875-0.0625-0.55469-0.09375-1-0.09375h-1.1094zm0 2.9531h1.0469c0.44531 0 0.73438-0.003906 0.85938-0.015625 0.39453-0.0625 0.69531-0.17969 0.90625-0.35938 0.007812-0.007812 0.054688-0.066406 0.14062-0.17188 0.16406-0.28906 0.1875-0.55469 0.0625-0.79688-0.085937-0.16406-0.23047-0.3125-0.4375-0.4375-0.35547-0.21875-0.77344-0.34375-1.25-0.375h-0.59375-0.73438z"/>
|
|
255
|
+
</symbol>
|
|
256
|
+
<symbol id="bl" overflow="visible">
|
|
257
|
+
<path d="m5.6562-1.4844c0 0.03125 0.003906 0.074219 0.015625 0.125 0.007813 0.054687 0.015625 0.09375 0.015625 0.125 0.007812 0.054687 0.015625 0.125 0.015625 0.21875 0.007813 0.085937 0.015625 0.14844 0.015625 0.1875v0.09375c0.007812 0.03125 0.015625 0.058594 0.015625 0.078125v0.078125c0 0.011719-0.007813 0.015625-0.015625 0.015625-0.011719 0.023438-0.023438 0.03125-0.03125 0.03125-0.023438 0.011719-0.058594 0.03125-0.10938 0.0625-0.1875 0.125-0.35547 0.21484-0.5 0.26562-0.44922 0.20703-0.92969 0.32031-1.4375 0.34375-0.32422 0.019531-0.625-0.011719-0.90625-0.09375-0.23047-0.070312-0.42188-0.14844-0.57812-0.23438-0.875-0.47656-1.418-1.25-1.625-2.3125-0.042969-0.25-0.0625-0.42969-0.0625-0.54688 0-0.33203 0.023438-0.61328 0.078125-0.84375 0.125-0.66406 0.41016-1.2344 0.85938-1.7031 0.48828-0.53906 1.0859-0.82812 1.7969-0.85938 0.23828-0.007813 0.50781 0.023437 0.8125 0.09375 0.1875 0.0625 0.35156 0.14062 0.5 0.23438 0.17578 0.09375 0.34375 0.22656 0.5 0.39062 0.13281 0.16797 0.26562 0.35938 0.39062 0.57812 0.25781 0.52344 0.39062 1.2148 0.39062 2.0781h-4.3438c0 0.30469 0.0625 0.61719 0.1875 0.9375 0.082031 0.25 0.21094 0.48047 0.39062 0.6875 0.13281 0.16797 0.27344 0.30469 0.42188 0.40625 0.20703 0.14844 0.42969 0.25 0.67188 0.3125 0.15625 0.03125 0.35156 0.039063 0.59375 0.015625 0.39453-0.019531 0.76953-0.11328 1.125-0.28125 0.19531-0.09375 0.375-0.1875 0.53125-0.28125 0.050781-0.03125 0.11328-0.070312 0.1875-0.125 0.007812-0.007812 0.023438-0.019531 0.046875-0.03125l0.046875-0.046875zm-4.125-2.375h3.4688c0-0.082031-0.03125-0.20703-0.09375-0.375-0.10547-0.41406-0.28125-0.73438-0.53125-0.95312-0.24219-0.21875-0.52344-0.34766-0.84375-0.39062-0.3125-0.050781-0.60938-0.007813-0.89062 0.125-0.16797 0.10547-0.32031 0.21875-0.45312 0.34375-0.19922 0.19922-0.37109 0.46094-0.51562 0.78125-0.042969 0.09375-0.078125 0.20312-0.10938 0.32812 0 0.023438-0.007812 0.046875-0.015625 0.078125 0 0.03125-0.007813 0.054687-0.015625 0.0625z"/>
|
|
258
|
+
</symbol>
|
|
259
|
+
<symbol id="bk" overflow="visible">
|
|
260
|
+
<path d="m0.34375-6.2344h5.7188v0.89062l-2.3125-0.015625v5.3594h-1.0938v-5.3594l-2.3125 0.015625z"/>
|
|
261
|
+
</symbol>
|
|
262
|
+
<symbol id="bj" overflow="visible">
|
|
263
|
+
<path d="m1.125-6.2344h1.4375l0.03125 0.015625 0.03125 0.03125 0.015625 0.0625 0.10938 0.26562 0.40625 0.96875 0.53125 1.2812 0.45312 1.1406 0.3125 0.71875 0.1875 0.46875 0.0625-0.17188 0.09375-0.23438 0.32812-0.79688 1-2.4219 0.40625-0.95312 0.10938-0.26562 0.015625-0.0625 0.015625-0.03125 0.03125-0.015625h1.5312v6.2344h-1.0938v-5.5156c0 0.023437-0.011719 0.058594-0.03125 0.10938-0.011719 0.054688-0.015625 0.085938-0.015625 0.09375-0.011719 0.023438-0.039062 0.10938-0.078125 0.26562-0.054687 0.17969-0.14844 0.44922-0.28125 0.8125-0.15625 0.4375-0.32422 0.87109-0.5 1.2969-0.17969 0.48047-0.375 0.96875-0.59375 1.4688-0.21094 0.5-0.33984 0.8125-0.39062 0.9375-0.011719 0.03125-0.027344 0.074219-0.046875 0.125-0.023437 0.054688-0.039063 0.09375-0.046875 0.125 0 0.011719-0.007812 0.027344-0.015625 0.046875 0 0.011719-0.007813 0.023437-0.015625 0.03125l-0.03125 0.03125c-0.011719 0.011719-0.027344 0.015625-0.046875 0.015625h-0.875c0-0.007812-0.007813-0.019531-0.015625-0.03125-0.011719-0.019531-0.023438-0.035156-0.03125-0.046875-0.011719-0.019531-0.027344-0.054687-0.046875-0.10938-0.011719-0.0625-0.023437-0.10156-0.03125-0.125-0.054687-0.11328-0.125-0.27344-0.21875-0.48438-0.085937-0.21875-0.14062-0.36719-0.17188-0.45312-0.51172-1.2812-0.85938-2.1797-1.0469-2.7031-0.10547-0.26953-0.20312-0.57031-0.29688-0.90625-0.0625-0.25781-0.09375-0.42578-0.09375-0.5v5.5156h-1.0938z"/>
|
|
264
|
+
</symbol>
|
|
265
|
+
<symbol id="bi" overflow="visible">
|
|
266
|
+
<path d="m4.4375-0.51562c0.007812 0.0625 0.03125 0.21484 0.0625 0.45312 0.039062 0.23828 0.070312 0.51562 0.09375 0.82812 0.03125 0.32031 0.046875 0.66406 0.046875 1.0312 0.019531 0.125 0.023437 0.28125 0.015625 0.46875-0.011719 0.1875-0.058594 0.33594-0.14062 0.45312-0.17969 0.22656-0.42969 0.32031-0.75 0.28125-0.3125-0.042969-0.51562-0.19531-0.60938-0.45312-0.03125-0.09375-0.046875-0.23438-0.046875-0.42188 0-0.63672 0.046875-1.2773 0.14062-1.9219l0.078125-0.53125c0-0.019531 0.007813-0.054687 0.03125-0.10938 0.019531-0.0625 0.03125-0.10938 0.03125-0.14062 0-0.26953-0.10547-0.87891-0.3125-1.8281-0.21094-0.94531-0.39062-1.6016-0.54688-1.9688-0.21094-0.44531-0.41797-0.67969-0.625-0.70312-0.11719-0.019531-0.21484 0.007813-0.29688 0.078125-0.074219 0.0625-0.11719 0.15234-0.125 0.26562h-1.0938c0-0.34375 0.10938-0.64844 0.32812-0.92188 0.22656-0.26953 0.51562-0.4375 0.85938-0.5 0.63281-0.13281 1.1602 0.27344 1.5781 1.2188 0.1875 0.40625 0.35938 0.86719 0.51562 1.375 0.16406 0.5 0.26562 0.79688 0.29688 0.89062 0.019531-0.09375 0.066406-0.22266 0.14062-0.39062l0.26562-0.64062c0.51953-1.2266 1.0078-1.9766 1.4688-2.25 0.30078-0.20703 0.55078-0.28906 0.75-0.25 0.19531 0.042969 0.33594 0.10938 0.42188 0.20312 0.09375 0.09375 0.14062 0.1875 0.14062 0.28125 0.03125 0.11719 0.007812 0.23438-0.0625 0.35938-0.0625 0.11719-0.16406 0.19531-0.29688 0.23438-0.023437 0.011719-0.09375 0.027344-0.21875 0.046875-0.125 0.023437-0.23438 0.046875-0.32812 0.078125-0.085938 0.03125-0.19922 0.125-0.34375 0.28125-0.13672 0.14844-0.27344 0.35156-0.40625 0.60938-0.3125 0.67969-0.59375 1.5117-0.84375 2.5l-0.15625 0.71875c0 0.023437-0.011719 0.078125-0.03125 0.17188-0.023438 0.085938-0.03125 0.15234-0.03125 0.20312z"/>
|
|
267
|
+
</symbol>
|
|
268
|
+
<symbol id="bh" overflow="visible">
|
|
269
|
+
<path d="m2.8906-2.6562c-0.17969 0-0.35547-0.023438-0.53125-0.078125-0.17969-0.050781-0.27734-0.078125-0.29688-0.078125-0.10547-0.007812-0.27344 0.023438-0.5 0.09375-0.23047 0.074219-0.37109 0.16797-0.42188 0.28125-0.042969 0.10547-0.03125 0.26562 0.03125 0.48438 0.16406 0.625 0.61328 1.0117 1.3438 1.1562 0.72656 0.13672 1.457 0 2.1875-0.40625 0.050781-0.03125 0.28906-0.20703 0.71875-0.53125-0.054687 0.10547-0.125 0.24609-0.21875 0.42188-0.09375 0.16797-0.17969 0.3125-0.25 0.4375l-0.09375 0.20312c-0.29297 0.41797-0.6875 0.70312-1.1875 0.85938s-1.0625 0.14062-1.6875-0.046875c-0.51172-0.1875-0.88281-0.44531-1.1094-0.78125-0.23047-0.33203-0.32422-0.66406-0.28125-1 0.039062-0.34375 0.14062-0.65625 0.29688-0.9375 0.16406-0.28906 0.34766-0.49219 0.54688-0.60938-0.46875-0.4375-0.74609-0.91406-0.82812-1.4375-0.042969-0.28125-0.023437-0.51562 0.0625-0.70312 0.21875-0.42578 0.66016-0.72656 1.3281-0.90625 0.66406-0.17578 1.4727-0.11719 2.4219 0.17188 0.14453 0.054688 0.33203 0.14062 0.5625 0.26562 0.23828 0.11719 0.38281 0.18359 0.4375 0.20312l-0.48438 0.9375c-0.023438-0.007812-0.16797-0.078125-0.4375-0.20312-0.26172-0.13281-0.46875-0.22656-0.625-0.28125-0.67969-0.22656-1.3242-0.22266-1.9375 0.015625-0.39844 0.15625-0.65234 0.41406-0.76562 0.76562-0.0625 0.21094-0.070313 0.35547-0.015625 0.4375 0.0625 0.085937 0.19531 0.15625 0.40625 0.21875 0.23828 0.09375 0.40625 0.13672 0.5 0.125 0.019531 0 0.10938-0.019531 0.26562-0.0625 0.15625-0.050781 0.34375-0.085937 0.5625-0.10938 0.16406-0.019531 0.3125 0.015625 0.4375 0.10938 0.13281 0.085937 0.20703 0.20312 0.21875 0.35938 0.007813 0.41797-0.21094 0.625-0.65625 0.625z"/>
|
|
270
|
+
</symbol>
|
|
271
|
+
<symbol id="bg" overflow="visible">
|
|
272
|
+
<path d="m0.76562-6.1875h1.0469v4.5c0 0.28125 0.023438 0.47656 0.078125 0.57812 0.0625 0.15625 0.17578 0.24219 0.34375 0.25 0.16406 0.011719 0.29688-0.046875 0.39062-0.17188s0.11719-0.28125 0.078125-0.46875c0.1875 0.1875 0.26953 0.42188 0.25 0.70312-0.023437 0.27344-0.125 0.49609-0.3125 0.67188-0.125 0.125-0.28906 0.20312-0.48438 0.23438-0.1875 0.039063-0.37109 0.023437-0.54688-0.046875-0.5625-0.20703-0.84375-0.75-0.84375-1.625z"/>
|
|
273
|
+
</symbol>
|
|
274
|
+
<symbol id="bf" overflow="visible">
|
|
275
|
+
<path d="m2.625-6.7812 1.25-2.7031 0.125-0.21875 0.3125-0.03125h0.76562l-1.4531 2.6875-0.15625 0.25-0.25 0.015625zm2.0156 5.6406c-0.17969 0.36719-0.47656 0.68359-0.89062 0.95312-0.40625 0.25781-0.78906 0.36719-1.1406 0.32812-0.41797-0.042969-0.78125-0.21875-1.0938-0.53125-0.30469-0.32031-0.53125-0.70703-0.6875-1.1562-0.21875-0.57031-0.29688-1.1953-0.23438-1.875 0.0625-0.67578 0.25391-1.2734 0.57812-1.7969 0.4375-0.67578 0.98438-1 1.6406-0.96875 0.28906 0 0.5625 0.085938 0.8125 0.25 0.25 0.15625 0.45703 0.36719 0.625 0.625 0.17578 0.26172 0.30469 0.48438 0.39062 0.67188 0.09375 0.17969 0.17188 0.35547 0.23438 0.53125l0.45312-1.5156 0.125-0.39062 0.078125-0.15625 0.3125-0.015625h0.75c-0.27344 1.1055-0.63281 2.2266-1.0781 3.3594-0.09375 0.1875-0.14062 0.3125-0.14062 0.375 0 0.11719 0.066406 0.34375 0.20312 0.6875 0.14453 0.34375 0.26562 0.57422 0.35938 0.6875 0.19531 0.14844 0.34375 0.1875 0.4375 0.125 0.10156-0.070313 0.15625-0.17578 0.15625-0.3125h1.0938c0 0.52344-0.21484 0.91797-0.64062 1.1875-0.41797 0.26953-0.85547 0.30469-1.3125 0.10938-0.38672-0.15625-0.72656-0.54688-1.0156-1.1719zm-2.6562-3.5c-0.11719 0.23047-0.20312 0.55859-0.26562 0.98438-0.0625 0.42969-0.070312 0.85938-0.015625 1.2969 0.082031 0.73047 0.33203 1.1953 0.75 1.3906 0.28125 0.125 0.56641 0.070312 0.85938-0.17188 0.28906-0.23828 0.56641-0.61719 0.82812-1.1406 0.050781-0.125 0.078125-0.19141 0.078125-0.20312-0.074219-0.34375-0.18359-0.73438-0.32812-1.1719-0.14844-0.4375-0.28125-0.75391-0.40625-0.95312-0.16797-0.26953-0.35547-0.42969-0.5625-0.48438-0.19922-0.0625-0.38281-0.046875-0.54688 0.046875-0.15625 0.09375-0.28906 0.23047-0.39062 0.40625z"/>
|
|
276
|
+
</symbol>
|
|
277
|
+
<symbol id="be" overflow="visible">
|
|
278
|
+
<path d="m6.2812-0.015625c-0.44922 0-0.90234-0.097656-1.3594-0.29688-0.44922-0.20703-0.95312-0.49219-1.5156-0.85938-0.55469-0.375-0.99219-0.63281-1.3125-0.78125-0.125 0.41797-0.19922 0.83594-0.21875 1.25-0.011719 0.41797-0.054688 0.67969-0.125 0.78125-0.14844 0.21875-0.37109 0.30078-0.67188 0.25-0.30469-0.054687-0.47656-0.21094-0.51562-0.46875-0.011719-0.039063 0-0.1875 0.03125-0.4375l0.078125-0.57812c0.039063-0.36328 0.070313-0.91406 0.09375-1.6562v-0.10938c0.007813-0.050781 0.015625-0.082031 0.015625-0.09375 0-0.019531-0.007812-0.050781-0.015625-0.09375v-0.125c-0.03125-1.1133-0.089844-1.8594-0.17188-2.2344-0.03125-0.33203-0.027344-0.53906 0.015625-0.625 0.13281-0.22656 0.34766-0.32812 0.64062-0.29688 0.28906 0.03125 0.47656 0.16797 0.5625 0.40625 0.03125 0.085937 0.046875 0.30469 0.046875 0.65625v1.0938c0 0.34375 0.003906 0.53125 0.015625 0.5625 0.03125-0.082031 0.11328-0.22266 0.25-0.42188 0.14453-0.20703 0.26562-0.35938 0.35938-0.45312 0.35156-0.42578 0.73828-0.76562 1.1562-1.0156 0.42578-0.25 0.82812-0.40625 1.2031-0.46875s0.69531-0.085938 0.96875-0.078125c0.26953 0 0.50781 0.03125 0.71875 0.09375 0.14453 0.03125 0.25 0.10938 0.3125 0.23438s0.078125 0.26562 0.046875 0.42188c-0.054687 0.21875-0.1875 0.35547-0.40625 0.40625-0.023437 0-0.23438-0.019531-0.64062-0.0625-0.40625-0.039063-0.75781-0.007813-1.0469 0.09375-0.53125 0.14844-1.0078 0.42188-1.4219 0.82812-0.41797 0.40625-0.75781 0.88281-1.0156 1.4219 0.17578 0.0625 0.50781 0.24219 1 0.53125 0.48828 0.29297 0.98438 0.55859 1.4844 0.79688 0.5 0.23047 0.92578 0.34375 1.2812 0.34375 0.17578 0 0.3125 0.015625 0.40625 0.046875 0.13281 0.054687 0.22266 0.15625 0.26562 0.3125 0.039063 0.14844 0.023437 0.28125-0.046875 0.40625-0.085938 0.14844-0.24219 0.21875-0.46875 0.21875z"/>
|
|
279
|
+
</symbol>
|
|
280
|
+
<symbol id="bd" overflow="visible">
|
|
281
|
+
<path d="m2.7656-6.7812 1.25-2.7031 0.125-0.21875 0.3125-0.03125h0.76562l-1.4531 2.6875-0.15625 0.25-0.25 0.015625zm-0.65625 1.0312c0.19531-0.11328 0.4375-0.20703 0.71875-0.28125 0.28125-0.082031 0.61719-0.13281 1.0156-0.15625 0.39453-0.019531 0.8125 0.085938 1.25 0.3125 0.4375 0.23047 0.82812 0.58984 1.1719 1.0781 0.3125 0.46875 0.47656 0.99219 0.5 1.5625 0.03125 0.5625-0.0625 1.0781-0.28125 1.5469s-0.54688 0.875-0.98438 1.2188-0.93359 0.53906-1.4844 0.59375c-1.2109 0.125-2.1719-0.33203-2.8906-1.375-0.5-0.75-0.65234-1.5664-0.45312-2.4531 0.19531-0.89453 0.67578-1.5781 1.4375-2.0469zm3.6094 2.7188c0.039062-0.40625-0.03125-0.79688-0.21875-1.1719-0.1875-0.38281-0.46094-0.67578-0.8125-0.875-0.24219-0.13281-0.52344-0.21094-0.84375-0.23438-0.49219 0-0.96094 0.19922-1.4062 0.59375-0.4375 0.38672-0.69531 0.91406-0.76562 1.5781-0.054687 0.46094 0.019531 0.89844 0.21875 1.3125 0.19531 0.40625 0.48828 0.71094 0.875 0.90625 0.25781 0.125 0.53906 0.1875 0.84375 0.1875 0.30078-0.007813 0.57031-0.078125 0.8125-0.20312 0.75781-0.39453 1.1914-1.0938 1.2969-2.0938z"/>
|
|
282
|
+
</symbol>
|
|
283
|
+
<symbol id="bc" overflow="visible">
|
|
284
|
+
<path d="m5.8906-4.9688c0.59375 0.58594 0.89062 1.2578 0.89062 2.0156 0 0.88672-0.32422 1.6367-0.96875 2.25-0.3125 0.29297-0.68359 0.51562-1.1094 0.67188-0.42969 0.15625-0.91406 0.20312-1.4531 0.14062-0.54297-0.0625-1.043-0.27344-1.5-0.64062-0.23047-0.19531-0.4375-0.42188-0.625-0.67188-0.35547-0.51953-0.53125-1.0977-0.53125-1.7344 0-0.63281 0.17578-1.2109 0.53125-1.7344 0.48828-0.75 1.2188-1.1953 2.1875-1.3438 0.09375-0.007813 0.50391-0.015625 1.2344-0.015625h3v1.0938zm-1.8594 4.1875c0.60156-0.14453 1.0547-0.48438 1.3594-1.0156 0.30078-0.53906 0.41016-1.0547 0.32812-1.5469-0.085938-0.5-0.33984-0.90625-0.76562-1.2188-0.42969-0.32031-0.89062-0.46094-1.3906-0.42188-0.46094 0.042969-0.88281 0.22656-1.2656 0.54688-0.375 0.3125-0.58984 0.74219-0.64062 1.2812-0.085938 0.71094 0.10938 1.3242 0.57812 1.8438 0.47656 0.52344 1.0781 0.69922 1.7969 0.53125z"/>
|
|
285
|
+
</symbol>
|
|
286
|
+
<symbol id="bb" overflow="visible">
|
|
287
|
+
<path d="m1.6406-0.60938c0 0.46094 0.03125 1.0352 0.09375 1.7344 0.070313 0.69531 0.17969 1.1719 0.32812 1.4219 0.019531 0.039063 0.050781 0.09375 0.09375 0.15625 0.050781 0.070313 0.085938 0.13281 0.10938 0.1875 0.03125 0.050781 0.046875 0.10938 0.046875 0.17188 0.007812 0.20703-0.074219 0.37891-0.25 0.51562-0.16797 0.14453-0.35156 0.1875-0.54688 0.125-0.46875-0.11719-0.74609-1.0391-0.82812-2.7656-0.0625-0.9375-0.09375-2.5352-0.09375-4.7969v-1.5156c0-0.40625 0.078125-0.6875 0.23438-0.84375 0.11328-0.09375 0.23438-0.12891 0.35938-0.10938 0.125 0.011719 0.22656 0.074219 0.3125 0.1875 0.125 0.15625 0.1875 0.35938 0.1875 0.60938 0 0.1875-0.023438 0.52344-0.0625 1-0.042969 0.46875-0.042969 0.89062 0 1.2656 0.050781 0.375 0.17578 0.77344 0.375 1.1875 0.13281 0.3125 0.32812 0.57031 0.57812 0.76562 0.25781 0.19922 0.54688 0.26562 0.85938 0.20312 0.78125-0.11328 1.1719-1.3984 1.1719-3.8594v-0.65625c0-0.26953 0.050781-0.45703 0.15625-0.5625 0.11328-0.125 0.26562-0.17188 0.45312-0.14062 0.1875 0.023437 0.32031 0.10547 0.40625 0.25 0.050781 0.074219 0.078125 0.25 0.078125 0.53125 0 1.4492-0.085937 2.5117-0.25 3.1875-0.11719 0.67969-0.0625 1.125 0.15625 1.3438 0.13281 0.10547 0.25781 0.13281 0.375 0.078125 0.11328-0.050781 0.1875-0.16016 0.21875-0.32812h1.0938c0 0.34375-0.09375 0.625-0.28125 0.84375-0.17969 0.21094-0.35938 0.35547-0.54688 0.4375-0.32422 0.14453-0.65625 0.16406-1 0.0625-0.33594-0.10156-0.59375-0.30469-0.78125-0.60938h-0.015625c-0.23047 0.30469-0.55469 0.50781-0.96875 0.60938-0.40625 0.10156-0.78906 0.09375-1.1406-0.03125-0.29297-0.10156-0.60156-0.32031-0.92188-0.65625z"/>
|
|
288
|
+
</symbol>
|
|
289
|
+
<symbol id="ba" overflow="visible">
|
|
290
|
+
<path d="m2.1094-5.75c0.19531-0.11328 0.4375-0.20703 0.71875-0.28125 0.28125-0.082031 0.61719-0.13281 1.0156-0.15625 0.39453-0.019531 0.8125 0.085938 1.25 0.3125 0.4375 0.23047 0.82812 0.58984 1.1719 1.0781 0.3125 0.46875 0.47656 0.99219 0.5 1.5625 0.03125 0.5625-0.0625 1.0781-0.28125 1.5469s-0.54688 0.875-0.98438 1.2188-0.93359 0.53906-1.4844 0.59375c-1.2109 0.125-2.1719-0.33203-2.8906-1.375-0.5-0.75-0.65234-1.5664-0.45312-2.4531 0.19531-0.89453 0.67578-1.5781 1.4375-2.0469zm3.6094 2.7188c0.039062-0.40625-0.03125-0.79688-0.21875-1.1719-0.1875-0.38281-0.46094-0.67578-0.8125-0.875-0.24219-0.13281-0.52344-0.21094-0.84375-0.23438-0.49219 0-0.96094 0.19922-1.4062 0.59375-0.4375 0.38672-0.69531 0.91406-0.76562 1.5781-0.054687 0.46094 0.019531 0.89844 0.21875 1.3125 0.19531 0.40625 0.48828 0.71094 0.875 0.90625 0.25781 0.125 0.53906 0.1875 0.84375 0.1875 0.30078-0.007813 0.57031-0.078125 0.8125-0.20312 0.75781-0.39453 1.1914-1.0938 1.2969-2.0938z"/>
|
|
291
|
+
</symbol>
|
|
292
|
+
<symbol id="az" overflow="visible">
|
|
293
|
+
<path d="m1.4219-5.1875h-0.625c-0.1875 0-0.30859-0.015625-0.35938-0.046875-0.13672-0.070313-0.21094-0.19141-0.21875-0.35938 0-0.17578 0.066406-0.30469 0.20312-0.39062 0.019531 0 0.054687-0.007813 0.10938-0.03125 0.050781-0.007813 0.11719-0.015625 0.20312-0.015625h5.875c0.125 0 0.21094 0.015625 0.26562 0.046875 0.14453 0.074219 0.21875 0.20312 0.21875 0.39062 0 0.17969-0.070312 0.30469-0.20312 0.375-0.0625 0.023438-0.18359 0.03125-0.35938 0.03125h-0.64062v4.3125h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.09375 0.09375 0.14062 0.21094 0.14062 0.34375 0 0.09375-0.007813 0.16797-0.015625 0.21875-0.074219 0.09375-0.15234 0.15625-0.23438 0.1875-0.054687 0.023438-0.09375 0.03125-0.125 0.03125h-2.2188c-0.14844 0-0.25-0.0078125-0.3125-0.03125-0.09375-0.039062-0.16797-0.10156-0.21875-0.1875-0.023437-0.050781-0.03125-0.125-0.03125-0.21875 0-0.0625 0.003906-0.10938 0.015625-0.14062 0.019531-0.10156 0.078125-0.17969 0.17188-0.23438 0.0625-0.039062 0.17969-0.0625 0.35938-0.0625h0.64062v-4.3125h-2.8906v4.3125h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.10156 0.09375 0.15625 0.21094 0.15625 0.34375 0 0.0625-0.015625 0.13672-0.046875 0.21875-0.054688 0.085938-0.125 0.14844-0.21875 0.1875-0.042969 0.023438-0.085938 0.03125-0.125 0.03125h-2.2344c-0.13672 0-0.23438-0.0078125-0.29688-0.03125-0.10547-0.039062-0.17969-0.10156-0.21875-0.1875-0.03125-0.082031-0.046875-0.15625-0.046875-0.21875s0.003906-0.10938 0.015625-0.14062c0.03125-0.09375 0.09375-0.17188 0.1875-0.23438 0.050781-0.039062 0.17188-0.0625 0.35938-0.0625h0.625z"/>
|
|
294
|
+
</symbol>
|
|
295
|
+
<symbol id="q" overflow="visible">
|
|
296
|
+
<path d="m2.3281-5.4375c0.42578-0.39453 0.94531-0.61719 1.5625-0.67188 0.0625-0.007813 0.16406-0.015625 0.3125-0.015625 0.38281 0.011719 0.78125 0.13672 1.1875 0.375 0.17578 0.10547 0.34766 0.24219 0.51562 0.40625 0.50781 0.51172 0.80469 1.1523 0.89062 1.9219 0.09375 0.76172-0.042969 1.4492-0.40625 2.0625-0.085937 0.13672-0.16797 0.25-0.25 0.34375-0.38672 0.46875-0.83984 0.78906-1.3594 0.95312-0.23047 0.070312-0.46484 0.11328-0.70312 0.125-0.3125 0.019531-0.60938-0.023438-0.89062-0.125-0.125-0.039062-0.27344-0.11328-0.4375-0.21875-0.21094-0.14453-0.35156-0.26562-0.42188-0.35938v2.875h0.60938c0.1875 0 0.30469 0.019531 0.35938 0.0625 0.14453 0.070313 0.21875 0.19531 0.21875 0.375 0 0.17578-0.074219 0.30078-0.21875 0.375-0.0625 0.039063-0.16797 0.0625-0.3125 0.0625h-2.3125c-0.13672 0-0.23047-0.015625-0.28125-0.046875-0.14844-0.0625-0.22656-0.1875-0.23438-0.375-0.011719-0.1875 0.050781-0.32031 0.1875-0.39062 0.0625-0.042969 0.1875-0.0625 0.375-0.0625h0.625v-7.4219h-0.60938c-0.19922 0-0.32812-0.015625-0.39062-0.046875-0.125-0.070313-0.19531-0.1875-0.20312-0.34375 0-0.16406 0.054687-0.28906 0.17188-0.375 0.050781-0.050781 0.11719-0.078125 0.20312-0.078125h1.4375c0.15625 0.023438 0.25781 0.085938 0.3125 0.1875 0.039063 0.074219 0.0625 0.21094 0.0625 0.40625zm3.5312 2.5156v-0.23438c0-0.0625-0.011719-0.16406-0.03125-0.3125-0.0625-0.375-0.21094-0.71875-0.4375-1.0312-0.21875-0.3125-0.49609-0.53516-0.82812-0.67188-0.13672-0.039063-0.29297-0.070313-0.46875-0.09375-0.074219 0-0.125 0.007813-0.15625 0.015625-0.57422 0.023438-1.0312 0.28125-1.375 0.78125-0.09375 0.13672-0.16406 0.27344-0.20312 0.40625-0.023437 0.085938-0.03125 0.13281-0.03125 0.14062v1.4531c0.007813 0.085938 0.03125 0.1875 0.0625 0.3125 0.125 0.41797 0.32812 0.75781 0.60938 1.0156 0.10156 0.10547 0.23438 0.1875 0.39062 0.25 0.17578 0.085937 0.375 0.11719 0.59375 0.09375 0.11328 0 0.22656-0.015625 0.34375-0.046875 0.44531-0.125 0.80469-0.375 1.0781-0.75 0.20703-0.28906 0.34375-0.59766 0.40625-0.92188 0.007812-0.0625 0.023438-0.15625 0.046875-0.28125z"/>
|
|
297
|
+
</symbol>
|
|
298
|
+
<symbol id="p" overflow="visible">
|
|
299
|
+
<path d="m1.4219-5.1875h-0.64062c-0.19922 0-0.32812-0.023438-0.39062-0.078125-0.10547-0.070313-0.15625-0.1875-0.15625-0.34375 0-0.070313 0.015625-0.14062 0.046875-0.20312 0.039062-0.10156 0.10938-0.16406 0.20312-0.1875 0.0625-0.019531 0.10156-0.03125 0.125-0.03125h2.25c0.14453 0 0.24219 0.011719 0.29688 0.03125 0.09375 0.023438 0.16406 0.085938 0.21875 0.1875 0.03125 0.0625 0.046875 0.13281 0.046875 0.20312 0 0.0625-0.007813 0.11719-0.015625 0.15625-0.03125 0.09375-0.09375 0.17188-0.1875 0.23438-0.054688 0.023438-0.17188 0.03125-0.35938 0.03125h-0.64062v3.3594c0-0.019531 0.007812-0.050781 0.03125-0.09375 0.03125-0.050781 0.066406-0.10156 0.10938-0.15625 0.082031-0.11328 0.21875-0.28516 0.40625-0.51562 0.23828-0.28125 0.79688-0.89844 1.6719-1.8594 0.050781-0.050781 0.12891-0.13281 0.23438-0.25l0.17188-0.17188c0.039062-0.019531 0.097656-0.050781 0.17188-0.09375l0.078125-0.046875c0.007812-0.007813 0.015625-0.019531 0.015625-0.03125v-0.14062h-0.65625c-0.1875 0-0.3125-0.023438-0.375-0.078125-0.10547-0.070313-0.15625-0.1875-0.15625-0.34375 0-0.082031 0.007813-0.14844 0.03125-0.20312 0.070313-0.11328 0.14453-0.17578 0.21875-0.1875 0.050781-0.019531 0.09375-0.03125 0.125-0.03125h2.2344c0.15625 0 0.25391 0.011719 0.29688 0.03125 0.09375 0.023438 0.17188 0.085938 0.23438 0.1875 0.007812 0.054688 0.015625 0.12109 0.015625 0.20312 0 0.0625-0.007813 0.11719-0.015625 0.15625-0.023438 0.09375-0.078125 0.17188-0.17188 0.23438-0.0625 0.023438-0.18359 0.03125-0.35938 0.03125h-0.64062v4.3125h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.09375 0.09375 0.14062 0.21094 0.14062 0.34375 0 0.09375-0.007813 0.16797-0.015625 0.21875-0.074219 0.09375-0.15234 0.15625-0.23438 0.1875-0.054687 0.023438-0.09375 0.03125-0.125 0.03125h-2.2188c-0.14844 0-0.25-0.0078125-0.3125-0.03125-0.09375-0.039062-0.16797-0.10156-0.21875-0.1875-0.023437-0.050781-0.03125-0.125-0.03125-0.21875 0-0.0625 0.003906-0.10938 0.015625-0.14062 0.019531-0.10156 0.078125-0.17969 0.17188-0.23438 0.0625-0.039062 0.17969-0.0625 0.35938-0.0625h0.64062v-3.3281h-0.015625c0 0.03125-0.011719 0.058594-0.03125 0.078125-0.011719 0.011719-0.027344 0.039062-0.046875 0.078125-0.023437 0.042969-0.039063 0.070313-0.046875 0.078125-0.085938 0.125-0.22656 0.29688-0.42188 0.51562-0.15625 0.1875-0.32812 0.38672-0.51562 0.59375-0.17969 0.21094-0.38281 0.4375-0.60938 0.6875-0.23047 0.24219-0.40625 0.43359-0.53125 0.57812-0.0625 0.0625-0.14062 0.15234-0.23438 0.26562-0.074219 0.074219-0.13281 0.13281-0.17188 0.17188-0.023437 0.011719-0.078125 0.042969-0.17188 0.09375-0.011719 0-0.027344 0.007812-0.046875 0.015625-0.023437 0-0.039063 0.007813-0.046875 0.015625v0.15625h0.65625c0.17578 0 0.30469 0.03125 0.39062 0.09375 0.10156 0.09375 0.15625 0.21094 0.15625 0.34375 0 0.0625-0.015625 0.13672-0.046875 0.21875-0.054688 0.085938-0.125 0.14844-0.21875 0.1875-0.042969 0.023438-0.085938 0.03125-0.125 0.03125h-2.2344c-0.13672 0-0.23438-0.0078125-0.29688-0.03125-0.10547-0.039062-0.17969-0.10156-0.21875-0.1875-0.03125-0.082031-0.046875-0.15625-0.046875-0.21875s0.003906-0.10938 0.015625-0.14062c0.03125-0.09375 0.09375-0.17188 0.1875-0.23438 0.050781-0.039062 0.17188-0.0625 0.35938-0.0625h0.625z"/>
|
|
300
|
+
</symbol>
|
|
301
|
+
<symbol id="ay" overflow="visible">
|
|
302
|
+
<path d="m1.4375-5.1875h-0.67188c-0.19922 0-0.32812-0.015625-0.39062-0.046875-0.09375-0.050781-0.15234-0.13281-0.17188-0.25v-0.23438c0.019531-0.11328 0.082031-0.20312 0.1875-0.26562 0.070313-0.03125 0.1875-0.046875 0.34375-0.046875h2.5312c0.46875 0 0.75 0.007812 0.84375 0.015625 0.35156 0.023437 0.6875 0.10156 1 0.23438 0.53906 0.24219 0.87891 0.57031 1.0156 0.98438 0.03125 0.085937 0.046875 0.16797 0.046875 0.25 0.019531 0.11719 0.015625 0.21875-0.015625 0.3125-0.023438 0.09375-0.0625 0.18359-0.125 0.26562-0.125 0.19922-0.32422 0.375-0.59375 0.53125-0.03125 0.011719-0.074219 0.027344-0.125 0.046875-0.054688 0.023437-0.089844 0.042969-0.10938 0.0625 0.019531 0 0.082031 0.027344 0.1875 0.078125 0.16406 0.09375 0.28906 0.16797 0.375 0.21875 0.20703 0.13672 0.37891 0.30469 0.51562 0.5 0.070312 0.10547 0.125 0.21094 0.15625 0.3125 0.0625 0.19922 0.070312 0.41797 0.03125 0.65625-0.0625 0.32422-0.21875 0.60938-0.46875 0.85938s-0.54297 0.43359-0.875 0.54688c-0.28125 0.085938-0.52734 0.13281-0.73438 0.14062-0.074219 0.011719-0.17969 0.015625-0.3125 0.015625h-3.4219c-0.10547 0-0.17969-0.015625-0.21875-0.046875-0.10547-0.039062-0.17969-0.10938-0.21875-0.20312-0.011719-0.039062-0.015625-0.10156-0.015625-0.1875v-0.10938c0.019531-0.125 0.082031-0.21094 0.1875-0.26562 0.0625-0.039062 0.19141-0.0625 0.39062-0.0625h0.65625zm0.79688 1.4531h0.95312c0.22656 0 0.39844-0.003906 0.51562-0.015625 0.3125-0.019531 0.59375-0.070312 0.84375-0.15625 0.019531-0.007812 0.046875-0.019531 0.078125-0.03125 0.03125-0.007812 0.050781-0.015625 0.0625-0.015625 0.0625-0.019531 0.09375-0.035156 0.09375-0.046875 0.28906-0.125 0.42969-0.28516 0.42188-0.48438 0-0.10156-0.054687-0.20312-0.15625-0.29688-0.11719-0.125-0.28906-0.21875-0.51562-0.28125-0.21875-0.082031-0.5625-0.125-1.0312-0.125h-1.2656zm0 2.8594h1.7812c0.25781-0.007812 0.50781-0.0625 0.75-0.15625 0.03125-0.007812 0.082031-0.035156 0.15625-0.078125 0.38281-0.19531 0.58203-0.44141 0.59375-0.73438 0.007813-0.20703-0.0625-0.39062-0.21875-0.54688-0.14844-0.15625-0.32031-0.28125-0.51562-0.375-0.21094-0.070313-0.43359-0.11328-0.67188-0.125h-1.875z"/>
|
|
303
|
+
</symbol>
|
|
304
|
+
<symbol id="ax" overflow="visible">
|
|
305
|
+
<path d="m1.7812-2.6719c0 0.054687 0.015625 0.13672 0.046875 0.25 0.050781 0.17969 0.14062 0.37109 0.26562 0.57812 0.20703 0.3125 0.47656 0.57031 0.8125 0.76562 0.34375 0.1875 0.69531 0.28906 1.0625 0.29688 0.3125 0.023438 0.59766-0.023438 0.85938-0.14062 0.25781-0.11328 0.46875-0.28125 0.625-0.5l0.078125-0.17188v-0.046875c0.007812-0.03125 0.019531-0.046875 0.03125-0.046875 0.039062-0.082031 0.09375-0.14062 0.15625-0.17188 0.070312-0.050781 0.16406-0.078125 0.28125-0.078125 0.09375 0 0.16406 0.007812 0.21875 0.015625 0.17578 0.054687 0.27344 0.17188 0.29688 0.35938 0 0.074219-0.015625 0.14844-0.046875 0.21875-0.03125 0.074219-0.085938 0.17969-0.15625 0.3125-0.1875 0.3125-0.46875 0.57031-0.84375 0.76562-0.074219 0.042969-0.18359 0.09375-0.32812 0.15625-0.26172 0.09375-0.54297 0.14844-0.84375 0.17188-0.96094 0.09375-1.7891-0.17188-2.4844-0.79688-0.25-0.22656-0.44922-0.46094-0.59375-0.70312-0.27344-0.45703-0.42188-0.95312-0.45312-1.4844v-0.26562c0.03125-0.625 0.22266-1.1875 0.57812-1.6875 0.20703-0.28906 0.45703-0.53906 0.75-0.75 0.26953-0.17578 0.53906-0.30469 0.8125-0.39062 0.36328-0.11328 0.73438-0.15625 1.1094-0.125 0.34375 0.023437 0.67578 0.10547 1 0.25 0.19531 0.085937 0.38281 0.19922 0.5625 0.34375 0.5 0.44922 0.79688 1.0703 0.89062 1.8594 0.019531 0.15625 0.03125 0.27344 0.03125 0.34375v0.078125c0.019531 0.25-0.023438 0.41797-0.125 0.5-0.074219 0.042969-0.15234 0.074219-0.23438 0.09375zm0.015625-0.84375h3.7031c0-0.050781-0.007812-0.09375-0.015625-0.125 0-0.039063-0.007813-0.09375-0.015625-0.15625-0.011719-0.070313-0.015625-0.11328-0.015625-0.125-0.125-0.47656-0.33594-0.82812-0.625-1.0469-0.21094-0.14453-0.42969-0.23828-0.65625-0.28125-0.375-0.082031-0.74609-0.050781-1.1094 0.09375-0.49219 0.21875-0.85547 0.57812-1.0938 1.0781-0.023438 0.054687-0.070312 0.17188-0.14062 0.35938z"/>
|
|
306
|
+
</symbol>
|
|
307
|
+
<symbol id="aw" overflow="visible">
|
|
308
|
+
<path d="m1.3438-5.1875v0.40625c0 0.09375-0.007812 0.16406-0.015625 0.20312-0.023437 0.17969-0.12109 0.29297-0.29688 0.34375h-0.20312-0.09375c-0.09375 0-0.18359-0.035156-0.26562-0.10938-0.0625-0.070312-0.10156-0.15625-0.10938-0.25v-0.90625c0-0.17578 0.03125-0.30078 0.09375-0.375 0.070313-0.082031 0.16406-0.13281 0.28125-0.15625h5.8906c0.13281 0.023438 0.23828 0.089844 0.3125 0.20312 0.019531 0.0625 0.03125 0.1875 0.03125 0.375v0.85938c-0.023438 0.10547-0.054688 0.17969-0.09375 0.21875-0.0625 0.085938-0.14844 0.13281-0.25 0.14062h-0.10938-0.21875c-0.14844-0.050781-0.24609-0.14844-0.29688-0.29688-0.011719-0.050781-0.015625-0.13281-0.015625-0.25v-0.40625h-1.8281v4.3125h1.3906c0.11328 0 0.19531 0.015625 0.25 0.046875 0.125 0.0625 0.19531 0.15234 0.21875 0.26562v0.14062c0 0.09375-0.011719 0.16797-0.03125 0.21875-0.054687 0.085937-0.11719 0.13672-0.1875 0.15625-0.011719 0.011719-0.058594 0.027344-0.14062 0.046875h-3.875c-0.10547 0-0.18359-0.0078125-0.23438-0.03125-0.11719-0.050781-0.1875-0.14453-0.21875-0.28125-0.011719-0.019531-0.015625-0.066406-0.015625-0.14062 0-0.070313 0.015625-0.14062 0.046875-0.20312 0.03125-0.070312 0.097656-0.13281 0.20312-0.1875 0.050781-0.019531 0.12891-0.03125 0.23438-0.03125h1.375v-4.3125z"/>
|
|
309
|
+
</symbol>
|
|
310
|
+
<symbol id="av" overflow="visible">
|
|
311
|
+
<path d="m1.1406-5.1875h-0.46875-0.26562c-0.13672-0.050781-0.21875-0.14453-0.25-0.28125-0.011719-0.039062-0.015625-0.085938-0.015625-0.14062 0-0.10156 0.023437-0.19531 0.078125-0.28125 0.070312-0.070313 0.16406-0.11719 0.28125-0.14062h1.4375c0.125 0.023438 0.22656 0.058594 0.3125 0.10938 0.09375 0.074219 0.15625 0.13672 0.1875 0.1875l0.125 0.25c0.070312 0.1875 0.12891 0.32422 0.17188 0.40625l0.625 1.4375 0.20312 0.46875c0.050781 0.10547 0.085938 0.18359 0.10938 0.23438 0.019531-0.050781 0.054687-0.12891 0.10938-0.23438l0.1875-0.46875 0.64062-1.4375c0.03125-0.082031 0.085937-0.21875 0.17188-0.40625l0.125-0.25c0.019531-0.050781 0.078125-0.11328 0.17188-0.1875 0.082031-0.050781 0.19141-0.085937 0.32812-0.10938h1.4219c0.125 0.023438 0.21875 0.070312 0.28125 0.14062 0.0625 0.085937 0.09375 0.17969 0.09375 0.28125 0 0.054687-0.007813 0.10156-0.015625 0.14062-0.03125 0.13672-0.11719 0.23047-0.25 0.28125h-0.28125-0.45312v4.3125h0.45312c0.16406 0 0.28516 0.023438 0.35938 0.0625 0.09375 0.0625 0.15625 0.15234 0.1875 0.26562v0.10938c0 0.085938-0.015625 0.16406-0.046875 0.23438-0.0625 0.085937-0.13281 0.13672-0.20312 0.15625-0.042969 0.03125-0.12109 0.046875-0.23438 0.046875h-1.7969c-0.13672 0-0.23438-0.019531-0.29688-0.0625-0.10547-0.050781-0.17188-0.14062-0.20312-0.26562v-0.21875c0.03125-0.11328 0.09375-0.20312 0.1875-0.26562 0.070313-0.039062 0.1875-0.0625 0.34375-0.0625h0.46875v-4.2344h-0.015625c0 0.023437-0.015625 0.058594-0.046875 0.10938-0.011719 0.023438-0.023437 0.046875-0.03125 0.078125-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125-0.03125 0.0625-0.11719 0.24219-0.25 0.53125-0.0625 0.15625-0.17188 0.42188-0.32812 0.79688-0.15625 0.36719-0.27734 0.65234-0.35938 0.85938-0.03125 0.03125-0.070313 0.09375-0.10938 0.1875-0.011719 0.0625-0.03125 0.11719-0.0625 0.15625-0.13672 0.19922-0.3125 0.29688-0.53125 0.29688-0.21094 0-0.375-0.097656-0.5-0.29688-0.042969-0.039062-0.070312-0.09375-0.078125-0.15625-0.03125-0.09375-0.0625-0.15625-0.09375-0.1875-0.085937-0.20703-0.32031-0.75-0.70312-1.625-0.03125-0.0625-0.074219-0.15625-0.125-0.28125-0.042969-0.13281-0.078125-0.22656-0.10938-0.28125-0.011719-0.019531-0.027344-0.046875-0.046875-0.078125-0.011719-0.03125-0.023438-0.054687-0.03125-0.078125-0.023438-0.050781-0.03125-0.085938-0.03125-0.10938h-0.015625v4.2344h0.45312c0.16406 0 0.28516 0.023438 0.35938 0.0625 0.09375 0.0625 0.14844 0.15234 0.17188 0.26562v0.10938c0 0.085938-0.011719 0.16406-0.03125 0.23438-0.054688 0.085937-0.12109 0.13672-0.20312 0.15625-0.042969 0.03125-0.12109 0.046875-0.23438 0.046875h-1.7969c-0.13672 0-0.23438-0.019531-0.29688-0.0625-0.10547-0.050781-0.17188-0.14062-0.20312-0.26562v-0.21875c0.03125-0.11328 0.09375-0.20312 0.1875-0.26562 0.070313-0.039062 0.1875-0.0625 0.34375-0.0625h0.46875z"/>
|
|
312
|
+
</symbol>
|
|
313
|
+
<symbol id="eo" overflow="visible">
|
|
314
|
+
<path d="m3.6719 2.4844c-0.32422 0-0.48438-0.22656-0.48438-0.67188v-1.4375c0-0.84375-0.058594-1.5664-0.17188-2.1719-0.10547-0.61328-0.32422-1.2969-0.65625-2.0469-0.10547-0.25781-0.19531-0.45703-0.26562-0.59375-0.0625-0.13281-0.16797-0.28125-0.3125-0.4375-0.14844-0.15625-0.29688-0.25781-0.45312-0.3125-0.03125 0.21094-0.1875 0.3125-0.46875 0.3125-0.17969 0-0.30859-0.046875-0.39062-0.14062-0.074219-0.10156-0.09375-0.22656-0.0625-0.375 0.039062-0.14453 0.11719-0.30078 0.23438-0.46875 0.22656-0.1875 0.47266-0.26953 0.73438-0.25 0.26953 0.011719 0.51953 0.10156 0.75 0.26562 0.53125 0.38672 1.0508 1.3438 1.5625 2.875 0.35156-0.89453 0.62891-1.5195 0.82812-1.875 0.25-0.41406 0.49219-0.72266 0.73438-0.92188 0.34375-0.25781 0.67969-0.37891 1.0156-0.35938 0.14453 0.011719 0.25781 0.074219 0.34375 0.1875 0.09375 0.10547 0.125 0.22656 0.09375 0.35938 0 0.09375-0.042969 0.17969-0.125 0.25-0.074219 0.074219-0.14062 0.12109-0.20312 0.14062-0.023438 0-0.078125 0.007812-0.17188 0.015625-0.085937 0.011719-0.15234 0.03125-0.20312 0.0625-0.054688 0.023437-0.125 0.0625-0.21875 0.125-0.085938 0.054687-0.17188 0.13672-0.26562 0.25-0.085937 0.11719-0.16797 0.26172-0.25 0.4375-0.21875 0.42969-0.40625 0.85938-0.5625 1.2969-0.14844 0.42969-0.26172 0.79688-0.34375 1.1094-0.085937 0.30469-0.14844 0.64844-0.1875 1.0312-0.03125 0.38672-0.054687 0.66797-0.0625 0.84375 0 0.17578 0.003906 0.4375 0.015625 0.78125 0.007812 0.34375 0.015625 0.55469 0.015625 0.64062v0.28125c0 0.26953-0.03125 0.46875-0.09375 0.59375-0.054687 0.13281-0.17969 0.20312-0.375 0.20312z"/>
|
|
315
|
+
</symbol>
|
|
316
|
+
<symbol id="en" overflow="visible">
|
|
317
|
+
<path d="m1.6094-3.0781c-0.33594-0.22656-0.5625-0.41406-0.6875-0.5625-0.48047-0.59375-0.4375-1.1758 0.125-1.75 0.21875-0.19531 0.51953-0.36719 0.90625-0.51562 0.38281-0.14453 0.88281-0.23828 1.5-0.28125 0.625-0.050781 1.2891 0.042969 2 0.28125 0.64453 0.1875 1.0352 0.35547 1.1719 0.5 0.11328 0.14844 0.11719 0.32422 0.015625 0.53125-0.10547 0.19922-0.24609 0.28125-0.42188 0.25-0.054688-0.007812-0.10156-0.019531-0.14062-0.03125-0.03125-0.007812-0.074219-0.023438-0.125-0.046875-0.042969-0.03125-0.13672-0.070313-0.28125-0.125-0.14844-0.0625-0.33594-0.13281-0.5625-0.21875-0.63672-0.17578-1.2266-0.24219-1.7656-0.20312-0.53125 0.042969-0.97656 0.15234-1.3281 0.32812-0.35547 0.17969-0.54297 0.36719-0.5625 0.5625-0.011719 0.1875 0.125 0.35156 0.40625 0.48438 0.28125 0.13672 0.55469 0.24219 0.82812 0.3125 0.0625 0.011719 0.16016 0.027344 0.29688 0.046875 0.019531 0 0.15625-0.007813 0.40625-0.03125 0.25781-0.019531 0.39844-0.015625 0.42188 0.015625 0.11328 0.042969 0.19531 0.11719 0.25 0.21875 0.0625 0.10547 0.082031 0.21484 0.0625 0.32812-0.023438 0.13672-0.085938 0.23047-0.1875 0.28125-0.10547 0.054687-0.21094 0.085937-0.3125 0.09375-0.09375 0-0.21875-0.003906-0.375-0.015625-0.14844-0.007812-0.24219-0.015625-0.28125-0.015625-0.25 0.011719-0.57031 0.10156-0.95312 0.26562-0.375 0.15625-0.5625 0.34375-0.5625 0.5625 0.03125 0.24219 0.22656 0.46094 0.59375 0.65625 0.36328 0.19922 0.81641 0.32031 1.3594 0.35938 0.55078 0.042969 1.1562-0.039063 1.8125-0.25 0.26953-0.10156 0.5-0.21094 0.6875-0.32812 0.1875-0.11328 0.30469-0.17188 0.35938-0.17188 0.125-0.019531 0.22656 0.007813 0.3125 0.078125 0.09375 0.074219 0.14062 0.17188 0.14062 0.29688 0 0.34375-0.44531 0.68359-1.3281 1.0156-0.67969 0.25-1.3984 0.34375-2.1562 0.28125-0.76172-0.054688-1.3906-0.25391-1.8906-0.60938-0.40625-0.28906-0.64062-0.61328-0.70312-0.96875-0.0625-0.36328 0-0.6875 0.1875-0.96875 0.19531-0.28125 0.45703-0.5 0.78125-0.65625z"/>
|
|
318
|
+
</symbol>
|
|
319
|
+
<symbol id="em" overflow="visible">
|
|
320
|
+
<path d="m2.3281-5.3125c0-0.35156 0.023437-0.57812 0.078125-0.67188 0.050781-0.09375 0.19531-0.14062 0.4375-0.14062 0.20703 0 0.33594 0.089844 0.39062 0.26562 0.019531 0.042969 0.03125 0.14844 0.03125 0.3125v3.0312c-0.011719 0.1875-0.015625 0.41797-0.015625 0.6875 0.007812 0.26172 0.050781 0.47656 0.125 0.64062 0.039062 0.11719 0.10156 0.20312 0.1875 0.26562 0.09375 0.0625 0.1875 0.070313 0.28125 0.015625 0.10156-0.0625 0.17578-0.20312 0.21875-0.42188 0.050781-0.21875 0.14844-0.33594 0.29688-0.35938 0.10156-0.050781 0.22266-0.054688 0.35938-0.015625 0.14453 0.042969 0.23828 0.125 0.28125 0.25 0.03125 0.125 0.019531 0.28125-0.03125 0.46875-0.042969 0.25-0.15234 0.46875-0.32812 0.65625-0.17969 0.17969-0.38672 0.30469-0.625 0.375-0.36719 0.082031-0.69531 0.015625-0.98438-0.20312-0.29297-0.21875-0.48047-0.48438-0.5625-0.79688-0.09375-0.25781-0.14062-0.74219-0.14062-1.4531z"/>
|
|
321
|
+
</symbol>
|
|
322
|
+
<symbol id="el" overflow="visible">
|
|
323
|
+
<path d="m4.25-8.5625c0.1875-0.039062 0.34375 0.007812 0.46875 0.14062 0.125 0.13672 0.14844 0.29297 0.078125 0.46875-0.011719 0.054687-0.11719 0.1875-0.3125 0.40625l-0.59375 0.625c-0.042969 0.0625-0.10156 0.125-0.17188 0.1875-0.0625 0.054687-0.13281 0.085937-0.20312 0.09375-0.14844 0.03125-0.26562-0.007813-0.35938-0.125-0.085938-0.11328-0.10547-0.23438-0.0625-0.35938 0.007812-0.019531 0.09375-0.14844 0.25-0.39062l0.53125-0.73438c0.14453-0.19531 0.26953-0.30078 0.375-0.3125zm2.1875 2.4375c0.33203 0 0.5 0.13672 0.5 0.40625 0 0.0625-0.03125 0.15625-0.09375 0.28125l-0.17188 0.51562c-0.25 0.75-0.48047 1.3711-0.6875 1.8594l-0.26562 0.57812c-0.03125 0.074219-0.0625 0.13281-0.09375 0.17188-0.023438 0.042969-0.027344 0.10156-0.015625 0.17188 0.019531 0.0625 0.0625 0.16406 0.125 0.29688 0.050781 0.09375 0.10156 0.21094 0.15625 0.34375 0.050781 0.125 0.12891 0.25781 0.23438 0.39062 0.10156 0.13672 0.21094 0.21484 0.32812 0.23438 0.050781-0.1875 0.21094-0.28125 0.48438-0.28125 0.21875 0 0.35156 0.078125 0.40625 0.23438 0.0625 0.14844 0.03125 0.33984-0.09375 0.57812-0.13672 0.24219-0.35156 0.375-0.64062 0.40625-0.28125 0.039062-0.57812-0.046875-0.89062-0.26562-0.3125-0.22656-0.55859-0.56641-0.73438-1.0156-0.10547 0.11719-0.20312 0.23438-0.29688 0.35938-0.09375 0.11719-0.22656 0.24609-0.39062 0.39062-0.16797 0.13672-0.34375 0.24609-0.53125 0.32812-0.58594 0.25-1.1211 0.26953-1.6094 0.0625-0.49219-0.21875-0.88281-0.62891-1.1719-1.2344-0.27344-0.50781-0.39844-1.1328-0.375-1.875 0.03125-0.73828 0.22266-1.3789 0.57812-1.9219 0.40625-0.625 0.92969-0.95703 1.5781-1 0.64453-0.050781 1.207 0.24219 1.6875 0.875 0.17578 0.23047 0.33203 0.52344 0.46875 0.875 0.14453 0.34375 0.23438 0.59375 0.26562 0.75 0.1875-0.42578 0.34375-0.83594 0.46875-1.2344 0.13281-0.40625 0.22266-0.67578 0.26562-0.8125 0.050781-0.13281 0.11328-0.24219 0.1875-0.32812 0.082031-0.09375 0.19141-0.14062 0.32812-0.14062zm-4.875 2.8281c-0.074219 0.76172 0.085938 1.4062 0.48438 1.9375 0.22656 0.35547 0.51953 0.52734 0.875 0.51562 0.36328-0.019531 0.74219-0.25391 1.1406-0.70312 0.33203-0.40625 0.5-0.67578 0.5-0.8125-0.011719-0.0625-0.03125-0.14844-0.0625-0.26562l-0.125-0.4375c-0.33594-1.1445-0.69922-1.8203-1.0938-2.0312-0.41797-0.22656-0.80859-0.125-1.1719 0.3125-0.33594 0.375-0.51562 0.87109-0.54688 1.4844z"/>
|
|
324
|
+
</symbol>
|
|
325
|
+
<symbol id="ek" overflow="visible">
|
|
326
|
+
<path d="m1.9844-2.0938c-0.011719 0.03125-0.03125 0.10547-0.0625 0.21875-0.023437 0.11719-0.046875 0.25781-0.078125 0.42188-0.023438 0.15625-0.046875 0.35547-0.078125 0.59375 0 0.042969-0.007813 0.10156-0.015625 0.17188v0.17188c0 0.19922-0.023438 0.33984-0.0625 0.42188-0.10547 0.1875-0.27734 0.28125-0.51562 0.28125-0.24219 0-0.40625-0.10156-0.5-0.29688-0.054687-0.10156-0.0625-0.28125-0.03125-0.53125 0.039063-0.25 0.085937-0.65625 0.14062-1.2188 0.0625-0.57031 0.050781-1.457-0.03125-2.6562l-0.078125-0.79688c-0.042969-0.1875-0.0625-0.32812-0.0625-0.42188 0.007813-0.1875 0.10156-0.32812 0.28125-0.42188 0.1875-0.09375 0.36719-0.097656 0.54688-0.015625 0.125 0.054687 0.20703 0.13672 0.25 0.25 0.050781 0.10547 0.070312 0.21484 0.0625 0.32812v0.375 0.95312c0 0.32422 0.003906 0.50781 0.015625 0.54688 0.10156-0.21875 0.28906-0.48828 0.5625-0.8125 0.10156-0.14453 0.22656-0.28516 0.375-0.42188 0.14453-0.13281 0.34375-0.29688 0.59375-0.48438 0.25781-0.1875 0.52344-0.32812 0.79688-0.42188 0.28125-0.09375 0.61328-0.17188 1-0.23438 0.38281-0.070312 0.77344-0.054688 1.1719 0.046875 0.1875 0.042969 0.3125 0.13672 0.375 0.28125 0.0625 0.14844 0.023437 0.32812-0.10938 0.54688-0.085938 0.074219-0.16797 0.10938-0.25 0.10938-0.085938 0-0.23438-0.007813-0.45312-0.03125-0.21875-0.03125-0.46094-0.039063-0.71875-0.03125-0.89844 0.10547-1.6719 0.59375-2.3281 1.4688-0.38672 0.5625-0.5625 0.88281-0.53125 0.95312 0.007812 0.023438 0.085938 0.070312 0.23438 0.14062l0.625 0.375c0.40625 0.25 0.75391 0.46875 1.0469 0.65625 0.30078 0.17969 0.60938 0.32422 0.92188 0.4375 0.32031 0.11719 0.66406 0.19531 1.0312 0.23438 0.25781 0.023438 0.41406 0.0625 0.46875 0.125 0.10156 0.11719 0.14062 0.25781 0.10938 0.42188-0.023438 0.16797-0.10938 0.27344-0.26562 0.3125-0.21875 0.070312-0.54297 0.046875-0.96875-0.078125-0.49219-0.14453-1.1211-0.47656-1.8906-1-0.77344-0.51953-1.2969-0.84375-1.5781-0.96875z"/>
|
|
327
|
+
</symbol>
|
|
328
|
+
<symbol id="ej" overflow="visible">
|
|
329
|
+
<path d="m4.1562-8.5625c0.17578-0.050781 0.32812-0.007812 0.45312 0.125 0.13281 0.13672 0.17188 0.29297 0.10938 0.46875-0.03125 0.085938-0.33594 0.43359-0.90625 1.0469-0.17969 0.17969-0.30469 0.27344-0.375 0.28125-0.14844 0.03125-0.26562-0.007813-0.35938-0.125-0.09375-0.11328-0.11719-0.23438-0.0625-0.35938 0.007813-0.019531 0.09375-0.14844 0.25-0.39062l0.51562-0.71875c0.13281-0.19531 0.25781-0.30469 0.375-0.32812zm-3.5781 5.5312c0-0.14453 0.015625-0.31641 0.046875-0.51562 0.03125-0.19531 0.10156-0.4375 0.21875-0.71875 0.125-0.28906 0.28516-0.55469 0.48438-0.79688 0.19531-0.25 0.47656-0.47266 0.84375-0.67188 0.375-0.19531 0.80078-0.32812 1.2812-0.39062 0.4375-0.03125 0.86719 0.039062 1.2969 0.20312 0.42578 0.15625 0.79688 0.39062 1.1094 0.70312s0.55078 0.69531 0.71875 1.1406c0.16406 0.44922 0.21094 0.94922 0.14062 1.5-0.0625 0.54297-0.27734 1.043-0.64062 1.5-0.53125 0.65625-1.2188 1.0312-2.0625 1.125-0.83594 0.10156-1.6211-0.13281-2.3594-0.71875-0.71875-0.625-1.0781-1.4102-1.0781-2.3594zm3.0156-2.1562c-0.39844 0.011719-0.76172 0.125-1.0938 0.34375-0.32422 0.21875-0.57031 0.49219-0.73438 0.8125-0.16797 0.3125-0.24609 0.67188-0.23438 1.0781 0.007812 0.39844 0.125 0.77344 0.34375 1.125 0.33203 0.48047 0.75391 0.78125 1.2656 0.90625 0.51953 0.125 1.0039 0.078125 1.4531-0.14062 0.45703-0.22656 0.78906-0.57031 1-1.0312 0.35156-0.70703 0.30469-1.4062-0.14062-2.0938-0.4375-0.6875-1.0586-1.0195-1.8594-1z"/>
|
|
330
|
+
</symbol>
|
|
331
|
+
<symbol id="ei" overflow="visible">
|
|
332
|
+
<path d="m5.125-5.0312c0.35156 0.44922 0.55078 1.0312 0.59375 1.75 0.039062 0.71875-0.09375 1.3828-0.40625 1.9844-0.30469 0.54297-0.69531 0.92188-1.1719 1.1406-0.46875 0.20703-0.91406 0.27344-1.3281 0.20312-0.40625-0.0625-0.76562-0.20703-1.0781-0.4375-0.52344-0.38281-0.875-0.91406-1.0625-1.5938-0.1875-0.67578-0.19531-1.3477-0.015625-2.0156 0.1875-0.66406 0.51953-1.1953 1-1.5938 0.32031-0.25781 0.64844-0.42188 0.98438-0.48438 0.34375-0.0625 0.78125-0.054687 1.3125 0.015625 0.53125 0.0625 0.89844 0.09375 1.1094 0.09375 0.30078 0 0.56641-0.023438 0.79688-0.078125 0.22656-0.050781 0.37891-0.066406 0.45312-0.046875 0.16406 0.074219 0.25391 0.20312 0.26562 0.39062 0.007813 0.17969-0.054687 0.3125-0.1875 0.40625-0.23047 0.17969-0.65234 0.26562-1.2656 0.26562zm-2.2656-0.125c-0.32422 0.074219-0.60156 0.24609-0.82812 0.51562-0.21875 0.27344-0.375 0.57422-0.46875 0.90625-0.085938 0.33594-0.10547 0.6875-0.0625 1.0625 0.039062 0.375 0.14844 0.70312 0.32812 0.98438 0.32031 0.54297 0.76953 0.8125 1.3438 0.8125 0.082031 0 0.19531-0.015625 0.34375-0.046875 0.44531-0.13281 0.78906-0.44531 1.0312-0.9375 0.23828-0.5 0.3125-1.0352 0.21875-1.6094-0.085937-0.57031-0.32422-1.0234-0.71875-1.3594-0.25-0.19531-0.52734-0.31641-0.82812-0.35938-0.16797 0-0.28906 0.011719-0.35938 0.03125z"/>
|
|
333
|
+
</symbol>
|
|
334
|
+
<symbol id="eh" overflow="visible">
|
|
335
|
+
<path d="m5.2188-0.875c-0.53125 0.59375-1.1406 0.90625-1.8281 0.9375-0.6875 0.039062-1.3125-0.20312-1.875-0.73438v3.1094c0 0.21875-0.011719 0.35938-0.03125 0.42188-0.042969 0.11328-0.12109 0.20312-0.23438 0.26562-0.11719 0.0625-0.23438 0.070312-0.35938 0.03125-0.11719-0.03125-0.20312-0.10938-0.26562-0.23438-0.054688-0.11719-0.074219-0.23047-0.0625-0.34375 0.019531-0.11719 0.023438-0.21094 0.015625-0.28125v-7.5781c0-0.32031 0.003906-0.50391 0.015625-0.54688 0.039062-0.21875 0.17969-0.33594 0.42188-0.35938 0.25 0 0.41016 0.10938 0.48438 0.32812 0.007812 0.054687 0.015625 0.20312 0.015625 0.45312v1.8906c-0.023437 0.10547-0.023437 0.26562 0 0.48438 0.019531 0.21094 0.046875 0.42188 0.078125 0.64062 0.03125 0.21094 0.11719 0.43359 0.26562 0.67188 0.15625 0.24219 0.35938 0.44531 0.60938 0.60938 0.55078 0.375 1.1328 0.35156 1.75-0.078125 0.21875-0.16406 0.39062-0.375 0.51562-0.625 0.13281-0.25 0.21875-0.47656 0.25-0.6875 0.03125-0.21875 0.050781-0.42578 0.0625-0.625 0.007813-0.20703 0.007813-0.36328 0-0.46875v-1.875c0-0.21875 0.003906-0.35156 0.015625-0.40625 0.050781-0.13281 0.14062-0.22656 0.26562-0.28125 0.125-0.050781 0.25391-0.046875 0.39062 0.015625 0.17578 0.085937 0.26562 0.28906 0.26562 0.60938v2.8906c0 0.0625-0.007813 0.15625-0.015625 0.28125v0.26562c0 0.49219 0.023438 0.8125 0.078125 0.96875 0.0625 0.14844 0.17188 0.23438 0.32812 0.26562 0.03125-0.19531 0.1875-0.29688 0.46875-0.29688 0.21875 0 0.35156 0.078125 0.40625 0.23438 0.0625 0.14844 0.035156 0.33984-0.078125 0.57812-0.125 0.19922-0.30859 0.32422-0.54688 0.375-0.24219 0.0625-0.46094 0.046875-0.65625-0.046875-0.17969-0.0625-0.33594-0.17188-0.46875-0.32812-0.13672-0.16406-0.23047-0.34375-0.28125-0.53125z"/>
|
|
336
|
+
</symbol>
|
|
337
|
+
<symbol id="eg" overflow="visible">
|
|
338
|
+
<path d="m0.57812-3.0312c0-0.14453 0.015625-0.31641 0.046875-0.51562 0.03125-0.19531 0.10156-0.4375 0.21875-0.71875 0.125-0.28906 0.28516-0.55469 0.48438-0.79688 0.19531-0.25 0.47656-0.47266 0.84375-0.67188 0.375-0.19531 0.80078-0.32812 1.2812-0.39062 0.4375-0.03125 0.86719 0.039062 1.2969 0.20312 0.42578 0.15625 0.79688 0.39062 1.1094 0.70312s0.55078 0.69531 0.71875 1.1406c0.16406 0.44922 0.21094 0.94922 0.14062 1.5-0.0625 0.54297-0.27734 1.043-0.64062 1.5-0.53125 0.65625-1.2188 1.0312-2.0625 1.125-0.83594 0.10156-1.6211-0.13281-2.3594-0.71875-0.71875-0.625-1.0781-1.4102-1.0781-2.3594zm3.0156-2.1562c-0.39844 0.011719-0.76172 0.125-1.0938 0.34375-0.32422 0.21875-0.57031 0.49219-0.73438 0.8125-0.16797 0.3125-0.24609 0.67188-0.23438 1.0781 0.007812 0.39844 0.125 0.77344 0.34375 1.125 0.33203 0.48047 0.75391 0.78125 1.2656 0.90625 0.51953 0.125 1.0039 0.078125 1.4531-0.14062 0.45703-0.22656 0.78906-0.57031 1-1.0312 0.35156-0.70703 0.30469-1.4062-0.14062-2.0938-0.4375-0.6875-1.0586-1.0195-1.8594-1z"/>
|
|
339
|
+
</symbol>
|
|
340
|
+
<symbol id="ef" overflow="visible">
|
|
341
|
+
<path d="m4.375-5.375 0.21875-0.21875c0.1875-0.17578 0.40625-0.32812 0.65625-0.45312 0.17578-0.082031 0.34766-0.15625 0.51562-0.21875 0.16406-0.039063 0.33203-0.066406 0.5-0.078125h0.39062c0.70703 0.042969 1.2031 0.23438 1.4844 0.57812 0.070313 0.09375 0.11719 0.16797 0.14062 0.21875 0.082031 0.1875 0.12891 0.32812 0.14062 0.42188 0.0625 0.36719 0.003906 0.85547-0.17188 1.4688-0.0625 0.24219-0.22656 0.73438-0.48438 1.4844l-0.34375 0.92188c-0.074219 0.25-0.10938 0.45312-0.10938 0.60938 0 0.11719 0.019531 0.1875 0.0625 0.21875 0.039062 0.03125 0.11719 0.03125 0.23438 0l0.17188-0.046875c0.1875-0.09375 0.33594-0.22656 0.45312-0.40625 0.15625-0.1875 0.28906-0.44141 0.40625-0.76562 0.050781-0.125 0.09375-0.25391 0.125-0.39062 0.050781-0.125 0.082031-0.19141 0.09375-0.20312 0.039063-0.03125 0.11719-0.046875 0.23438-0.046875h0.125c0.17578 0 0.28516 0.03125 0.32812 0.09375v0.03125c0.007813 0.011719 0.015625 0.023438 0.015625 0.03125 0.007812 0.011719 0.015625 0.03125 0.015625 0.0625 0 0.011719-0.007813 0.03125-0.015625 0.0625-0.011719 0.023438-0.015625 0.039062-0.015625 0.046875l-0.046875 0.125c-0.023438 0.09375-0.070312 0.23438-0.14062 0.42188-0.085937 0.14844-0.14844 0.25781-0.1875 0.32812-0.41797 0.69922-0.92188 1.0859-1.5156 1.1719-0.1875 0.019531-0.35547 0.015625-0.5-0.015625-0.15625-0.023438-0.3125-0.0625-0.46875-0.125-0.19922-0.10156-0.36719-0.23438-0.5-0.39062-0.21875-0.28906-0.28906-0.61328-0.20312-0.96875 0.019531-0.11328 0.09375-0.32031 0.21875-0.625 0.36328-0.96875 0.61328-1.7695 0.75-2.4062 0.019531-0.11328 0.035156-0.19141 0.046875-0.23438v-0.09375c0.007812-0.050781 0.015625-0.085937 0.015625-0.10938 0.007813-0.039062 0.015625-0.11719 0.015625-0.23438-0.023438-0.3125-0.10156-0.51562-0.23438-0.60938-0.042969-0.039062-0.089844-0.066406-0.14062-0.078125-0.054688-0.03125-0.10547-0.046875-0.15625-0.046875-0.14844 0-0.25 0.007812-0.3125 0.015625-0.0625 0.011719-0.16406 0.039063-0.29688 0.078125-0.52344 0.14844-0.98047 0.51562-1.375 1.1094l-0.14062 0.21875c-0.023438 0.03125-0.042969 0.070313-0.0625 0.10938l-0.046875 0.125-0.046875 0.23438-0.1875 0.76562-0.45312 1.75-0.20312 0.875c-0.0625 0.1875-0.15234 0.33594-0.26562 0.4375-0.14844 0.125-0.32422 0.19531-0.53125 0.21875-0.21094 0.03125-0.38672-0.023438-0.53125-0.15625-0.13672-0.11328-0.19531-0.26562-0.17188-0.45312 0.007812-0.09375 0.035156-0.20312 0.078125-0.32812l0.17188-0.73438 0.6875-2.7812c0.11328-0.38281 0.17969-0.67578 0.20312-0.875 0.007813-0.16406 0-0.3125-0.03125-0.4375l-0.046875-0.078125c-0.03125-0.039062-0.078125-0.070312-0.14062-0.09375-0.125-0.007812-0.23438 0.039062-0.32812 0.14062l-0.09375 0.09375c-0.074219 0.11719-0.14844 0.25781-0.21875 0.42188-0.085938 0.24219-0.15234 0.44922-0.20312 0.625l-0.078125 0.34375c-0.023438 0.085938-0.042969 0.14062-0.0625 0.17188-0.042969 0.054687-0.12109 0.078125-0.23438 0.078125h-0.23438-0.17188c-0.054687-0.03125-0.089844-0.078125-0.10938-0.14062l0.046875-0.26562 0.17188-0.5c0.14453-0.38281 0.3125-0.69531 0.5-0.9375 0.11328-0.16406 0.25781-0.29688 0.4375-0.39062 0.14453-0.070313 0.3125-0.11719 0.5-0.14062 0.070312-0.007812 0.17578-0.003906 0.3125 0.015625 0.375 0.03125 0.6875 0.15234 0.9375 0.35938 0.13281 0.11719 0.23828 0.24219 0.3125 0.375 0.0625 0.125 0.09375 0.19922 0.09375 0.21875z"/>
|
|
342
|
+
</symbol>
|
|
343
|
+
<symbol id="al" overflow="visible">
|
|
344
|
+
<path d="m2.7344 2.0312c0.09375 0 0.16016 0.003906 0.20312 0.015625h0.46875c0.0625 0 0.11328 0.007813 0.15625 0.03125h0.015625c0.019531 0.007813 0.035156 0.019531 0.046875 0.03125 0.0625 0.070313 0.085938 0.14844 0.078125 0.23438 0 0.019531-0.011719 0.0625-0.03125 0.125-0.042969 0.10156-0.085937 0.17188-0.125 0.20312-0.0625 0.039063-0.15234 0.050781-0.26562 0.03125h-0.28125c-0.042969-0.011719-0.10547-0.015625-0.1875-0.015625-0.0625 0-0.15625-0.007812-0.28125-0.015625h-0.26562-1.0312c-0.0625 0.007813-0.16797 0.015625-0.3125 0.015625-0.054687 0.007812-0.13672 0.015625-0.25 0.015625h-0.14062c-0.14844-0.042969-0.21094-0.13672-0.1875-0.28125v-0.0625c0.007812-0.023437 0.015625-0.039063 0.015625-0.046875 0.039063-0.13672 0.09375-0.21484 0.15625-0.23438 0.039063-0.023437 0.097656-0.03125 0.17188-0.03125h0.15625c0.03125 0 0.078125-0.007813 0.14062-0.015625h0.15625c0.050781 0 0.082031-0.011719 0.09375-0.03125 0.007813-0.03125 0.019531-0.074219 0.03125-0.125 0.007813-0.042969 0.015625-0.070312 0.015625-0.078125l0.10938-0.42188 0.3125-1.2656 0.96875-3.8906 0.20312-0.78125c0.070312-0.28125 0.11328-0.48828 0.125-0.625 0.019531-0.17578 0.019531-0.3125 0-0.40625 0-0.050781-0.023438-0.10156-0.0625-0.15625-0.03125-0.039062-0.078125-0.070312-0.14062-0.09375-0.11719-0.007812-0.23047 0.039062-0.34375 0.14062-0.042969 0.0625-0.074219 0.10156-0.09375 0.10938-0.0625 0.09375-0.12109 0.21484-0.17188 0.35938-0.0625 0.125-0.14062 0.36719-0.23438 0.71875-0.023437 0.074219-0.054687 0.17188-0.09375 0.29688-0.03125 0.10547-0.046875 0.16406-0.046875 0.17188-0.042969 0.054687-0.12109 0.078125-0.23438 0.078125h-0.23438-0.17188c-0.054687-0.03125-0.089844-0.078125-0.10938-0.14062 0-0.0625 0.003906-0.10156 0.015625-0.125l0.046875-0.14062c0.039062-0.1875 0.09375-0.36328 0.15625-0.53125 0.15625-0.38281 0.32812-0.69141 0.51562-0.92188 0.1875-0.22656 0.39062-0.37891 0.60938-0.45312 0.13281-0.039062 0.23828-0.0625 0.3125-0.0625h0.1875c0.1875 0.023438 0.31641 0.042969 0.39062 0.0625 0.3125 0.074219 0.57031 0.21484 0.78125 0.42188 0.019531 0.023437 0.0625 0.070313 0.125 0.14062 0.03125 0.042969 0.050781 0.085938 0.0625 0.125l0.078125-0.078125c0.03125-0.03125 0.054688-0.046875 0.078125-0.046875 0.03125-0.019531 0.070313-0.050781 0.125-0.09375 0.0625-0.039062 0.10156-0.070312 0.125-0.09375 0.34375-0.20703 0.70703-0.34375 1.0938-0.40625 0.20703-0.03125 0.39844-0.039062 0.57812-0.03125 0.72656 0.042969 1.2852 0.28125 1.6719 0.71875 0.11328 0.11719 0.20703 0.24609 0.28125 0.39062 0.20703 0.39844 0.28906 0.87109 0.25 1.4219-0.011719 0.25-0.058594 0.52734-0.14062 0.82812-0.24219 0.85547-0.63281 1.5391-1.1719 2.0469-0.48047 0.46094-1.0391 0.77344-1.6719 0.9375-0.28125 0.0625-0.52734 0.09375-0.73438 0.09375-0.39844 0.019531-0.74609-0.03125-1.0469-0.15625-0.125-0.0625-0.23047-0.125-0.3125-0.1875-0.023438-0.007812-0.046875-0.023438-0.078125-0.046875-0.03125-0.03125-0.058594-0.054687-0.078125-0.078125l-0.015625 0.09375-0.03125 0.15625-0.10938 0.46875-0.28125 1.1094zm4.3125-6.7969v-0.078125c0-0.11328-0.015625-0.21875-0.046875-0.3125-0.03125-0.10156-0.074219-0.20312-0.125-0.29688-0.0625-0.09375-0.11719-0.14844-0.15625-0.17188-0.03125-0.03125-0.074219-0.0625-0.125-0.09375-0.15625-0.09375-0.33594-0.13281-0.53125-0.125-0.26172 0.03125-0.51562 0.11719-0.76562 0.25-0.074219 0.023438-0.14844 0.070312-0.21875 0.14062-0.125 0.09375-0.21875 0.16797-0.28125 0.21875-0.0625 0.054687-0.15234 0.14844-0.26562 0.28125-0.03125 0.03125-0.070312 0.078125-0.10938 0.14062-0.011719 0.023438-0.015625 0.046875-0.015625 0.078125-0.011719 0.023437-0.015625 0.046875-0.015625 0.078125 0 0.023438-0.007813 0.039062-0.015625 0.046875-0.054688 0.23047-0.09375 0.39844-0.125 0.5l-0.39062 1.6094-0.20312 0.79688-0.0625 0.25c-0.023438 0.054687-0.03125 0.09375-0.03125 0.125v0.046875c0.019531 0.042969 0.03125 0.078125 0.03125 0.10938 0.070312 0.16797 0.14844 0.29688 0.23438 0.39062 0.0625 0.085938 0.14453 0.15234 0.25 0.20312 0.070313 0.054687 0.16016 0.09375 0.26562 0.125 0.16406 0.042969 0.29688 0.058594 0.39062 0.046875 0.36328-0.007812 0.71094-0.17578 1.0469-0.5 0.15625-0.15625 0.29688-0.34766 0.42188-0.57812 0.09375-0.17578 0.20312-0.46094 0.32812-0.85938 0.10156-0.35156 0.1875-0.65625 0.25-0.90625 0.10156-0.44531 0.17578-0.78125 0.21875-1 0.019531-0.15625 0.03125-0.26562 0.03125-0.32812v-0.09375c0-0.039063 0.003906-0.070313 0.015625-0.09375z"/>
|
|
345
|
+
</symbol>
|
|
346
|
+
<symbol id="ak" overflow="visible">
|
|
347
|
+
<path d="m6.3438-0.6875c-0.30469 0.30469-0.64062 0.52344-1.0156 0.65625-0.1875 0.070312-0.38672 0.11328-0.59375 0.125-0.15625 0.019531-0.32031 0.019531-0.48438 0-0.625-0.03125-1.1094-0.1875-1.4531-0.46875-0.085937-0.082031-0.14062-0.14844-0.17188-0.20312-0.0625-0.050781-0.13281-0.14844-0.20312-0.29688-0.042969-0.11328-0.085937-0.25391-0.125-0.42188-0.074219-0.42578-0.015625-0.95703 0.17188-1.5938 0.09375-0.32031 0.25781-0.80078 0.5-1.4375 0.14453-0.40625 0.23828-0.66406 0.28125-0.78125 0.050781-0.16406 0.078125-0.33203 0.078125-0.5 0-0.10156-0.015625-0.17188-0.046875-0.20312-0.042969-0.019531-0.070312-0.03125-0.078125-0.03125-0.085937 0-0.14844 0.007812-0.1875 0.015625-0.085937 0.023437-0.14062 0.042969-0.17188 0.0625-0.125 0.054687-0.25781 0.15625-0.39062 0.3125-0.17969 0.21094-0.33594 0.5-0.46875 0.875-0.0625 0.1875-0.10156 0.30859-0.10938 0.35938-0.042969 0.125-0.078125 0.19922-0.10938 0.21875-0.03125 0.023438-0.10547 0.03125-0.21875 0.03125h-0.21875-0.125c-0.09375-0.019531-0.14062-0.085938-0.14062-0.20312 0-0.03125 0.007812-0.070313 0.03125-0.125 0.019531-0.050781 0.03125-0.082031 0.03125-0.09375 0.082031-0.25 0.14062-0.40625 0.17188-0.46875 0.082031-0.15625 0.14062-0.25781 0.17188-0.3125 0.40625-0.6875 0.90625-1.0703 1.5-1.1562 0.11328-0.019531 0.27344-0.019531 0.48438 0 0.11328 0.011719 0.27344 0.054687 0.48438 0.125 0.19531 0.09375 0.36719 0.23047 0.51562 0.40625 0.20703 0.28125 0.26953 0.60547 0.1875 0.96875-0.023437 0.15625-0.089844 0.35547-0.20312 0.59375-0.26172 0.71875-0.40234 1.1172-0.42188 1.1875-0.14844 0.44922-0.24609 0.83984-0.29688 1.1719-0.042969 0.3125-0.042969 0.58594 0 0.8125 0.050781 0.21875 0.15625 0.38672 0.3125 0.5 0.039062 0.03125 0.097656 0.0625 0.17188 0.09375 0.14453 0.042969 0.25391 0.0625 0.32812 0.0625h0.14062c0.11328 0 0.21875-0.015625 0.3125-0.046875 0.375-0.11328 0.71094-0.35156 1.0156-0.71875l0.21875-0.29688c0-0.007812 0.003906-0.023438 0.015625-0.046875 0.007813-0.03125 0.015625-0.050781 0.015625-0.0625 0.007812-0.03125 0.019531-0.070313 0.03125-0.125 0.007812-0.0625 0.015625-0.097656 0.015625-0.10938l0.21875-0.8125 0.65625-2.6406c0.082031-0.32031 0.15625-0.51953 0.21875-0.59375 0.070313-0.09375 0.14062-0.16016 0.20312-0.20312 0.14453-0.10156 0.30469-0.16016 0.48438-0.17188 0.1875-0.007813 0.34766 0.046875 0.48438 0.17188 0.11328 0.11719 0.17188 0.27344 0.17188 0.46875-0.011719 0.054688-0.03125 0.15625-0.0625 0.3125l-0.1875 0.71875-0.67188 2.7188c-0.10547 0.42969-0.16797 0.71484-0.1875 0.85938-0.011719 0.16797 0 0.30859 0.03125 0.42188l0.046875 0.09375c0.03125 0.042969 0.085937 0.0625 0.17188 0.0625 0.14453 0 0.26953-0.070312 0.375-0.21875 0.082031-0.11328 0.15625-0.25 0.21875-0.40625 0.0625-0.1875 0.13281-0.41406 0.21875-0.6875 0.007812-0.039062 0.019531-0.09375 0.03125-0.15625 0.019531-0.070312 0.035156-0.125 0.046875-0.15625 0.019531-0.082031 0.039063-0.14062 0.0625-0.17188 0.03125-0.050781 0.10156-0.078125 0.21875-0.078125h0.25c0.070313 0 0.12891 0.011719 0.17188 0.03125 0.039062 0.011719 0.070312 0.054688 0.09375 0.125 0.007812 0.023438 0 0.089844-0.03125 0.20312-0.054688 0.21094-0.10156 0.35938-0.14062 0.45312-0.03125 0.125-0.0625 0.21875-0.09375 0.28125-0.011719 0.03125-0.027344 0.070312-0.046875 0.10938-0.023438 0.042969-0.039062 0.078125-0.046875 0.10938-0.30469 0.60547-0.67188 0.95312-1.1094 1.0469-0.11719 0.03125-0.24219 0.035156-0.375 0.015625-0.41797-0.023438-0.77344-0.14453-1.0625-0.375-0.10547-0.09375-0.1875-0.1875-0.25-0.28125-0.03125-0.03125-0.054688-0.070312-0.0625-0.125z"/>
|
|
348
|
+
</symbol>
|
|
349
|
+
<symbol id="ee" overflow="visible">
|
|
350
|
+
<path d="m6.6094-3.4062c0.11328 0.03125 0.20312 0.070312 0.26562 0.10938 0.11328 0.03125 0.25 0.089844 0.40625 0.17188 0.17578 0.10547 0.32031 0.22656 0.4375 0.35938 0.10156 0.11719 0.17188 0.24609 0.20312 0.39062 0.050781 0.13672 0.078125 0.26172 0.078125 0.375 0 0.0625-0.011719 0.16406-0.03125 0.29688-0.0625 0.26172-0.20312 0.50781-0.42188 0.73438-0.28125 0.32422-0.69531 0.57812-1.2344 0.76562-0.38672 0.14844-0.82031 0.23828-1.2969 0.28125h-0.1875c-0.085937 0.0078125-0.14844 0.015625-0.1875 0.015625h-0.125c-0.13672 0.019531-0.27734 0.019531-0.42188 0-0.82422-0.03125-1.4688-0.22266-1.9375-0.57812-0.15625-0.11328-0.28125-0.23828-0.375-0.375-0.11719-0.11328-0.19922-0.23438-0.25-0.35938-0.29297-0.51953-0.36719-1.1641-0.21875-1.9375 0.019531-0.125 0.054688-0.26953 0.10938-0.4375 0.082031-0.20703 0.16016-0.37891 0.23438-0.51562 0.09375-0.19531 0.21094-0.39062 0.35938-0.57812 0.22656-0.3125 0.52344-0.59766 0.89062-0.85938 0.5625-0.375 1.2188-0.61719 1.9688-0.73438 0.15625-0.019531 0.39453-0.039062 0.71875-0.0625 0.53125-0.03125 1.0195 0.042969 1.4688 0.21875 0.30078 0.10547 0.53125 0.26172 0.6875 0.46875 0.11328 0.125 0.1875 0.27734 0.21875 0.45312 0.007812 0.042969 0.015625 0.11719 0.015625 0.21875 0 0.32422-0.10156 0.61719-0.29688 0.875-0.14844 0.21094-0.375 0.39062-0.6875 0.54688-0.10547 0.054688-0.19922 0.09375-0.28125 0.125-0.023438 0-0.058594 0.011719-0.10938 0.03125zm-3.5-0.15625c0.78125 0 1.3672-0.019531 1.7656-0.0625 0.53906-0.050781 0.95703-0.13281 1.25-0.25 0.25781-0.09375 0.46094-0.21094 0.60938-0.35938 0.13281-0.13281 0.22656-0.29688 0.28125-0.48438 0.050781-0.1875 0.039063-0.375-0.03125-0.5625 0-0.019531-0.027344-0.066406-0.078125-0.14062-0.10547-0.11328-0.21875-0.19531-0.34375-0.25-0.27344-0.125-0.58594-0.17969-0.9375-0.17188-0.67969 0.03125-1.25 0.27734-1.7188 0.73438-0.125 0.125-0.21484 0.23438-0.26562 0.32812-0.19922 0.27344-0.375 0.67969-0.53125 1.2188zm-0.125 0.5c-0.023437 0.054688-0.039063 0.10156-0.046875 0.14062 0 0.03125-0.011719 0.085937-0.03125 0.15625-0.011719 0.0625-0.015625 0.10938-0.015625 0.14062-0.0625 0.29297-0.09375 0.52344-0.09375 0.6875 0 0.14844 0.003906 0.25781 0.015625 0.32812 0.007812 0.15625 0.050781 0.3125 0.125 0.46875 0.0625 0.11719 0.10938 0.19922 0.14062 0.25 0.25781 0.30469 0.64453 0.46484 1.1562 0.48438h0.23438c0.070312 0 0.19141-0.007812 0.35938-0.03125 0.57031-0.082031 0.96094-0.29688 1.1719-0.64062 0.039062-0.039063 0.09375-0.14453 0.15625-0.3125 0.039062-0.082031 0.078125-0.17578 0.10938-0.28125 0.0625-0.20703 0.097656-0.39844 0.10938-0.57812 0-0.16406-0.03125-0.30078-0.09375-0.40625-0.042969-0.070312-0.09375-0.12891-0.15625-0.17188-0.17969-0.11328-0.41797-0.1875-0.71875-0.21875h-0.21875-0.1875c-0.085938 0-0.15234-0.003906-0.20312-0.015625h-0.25c-0.10547-0.007812-0.18359-0.015625-0.23438-0.015625-0.03125 0-0.074219 0.007813-0.125 0.015625h-0.10938z"/>
|
|
351
|
+
</symbol>
|
|
352
|
+
<symbol id="ed" overflow="visible">
|
|
353
|
+
<path d="m2.9844-3.0625c-0.042969 0.11719-0.070313 0.21484-0.078125 0.29688-0.054688 0.19922-0.09375 0.41797-0.125 0.65625-0.011719 0.125-0.015625 0.22656-0.015625 0.29688v0.17188c0 0.21094 0.03125 0.39844 0.09375 0.5625 0.019531 0.085937 0.066406 0.16797 0.14062 0.25 0.03125 0.0625 0.082031 0.12109 0.15625 0.17188 0.17578 0.14844 0.40625 0.23047 0.6875 0.25h0.29688c0.25-0.03125 0.50781-0.070312 0.78125-0.125 0.15625-0.050781 0.28906-0.097656 0.40625-0.14062 0.25781-0.125 0.42188-0.19531 0.48438-0.21875 0.1875-0.125 0.39062-0.28125 0.60938-0.46875l0.17188-0.17188c0.039062-0.0625 0.078125-0.097656 0.10938-0.10938 0.007813-0.007813 0.019531-0.015625 0.03125-0.015625 0.007813 0 0.019531-0.003906 0.03125-0.015625 0.050781-0.007813 0.14844 0.0625 0.29688 0.21875l0.09375 0.078125c0.007812 0.011719 0.019531 0.027344 0.03125 0.046875 0.007812 0.011719 0.015625 0.023437 0.015625 0.03125 0.039063 0.074219 0.039063 0.13281 0 0.17188-0.023437 0.042969-0.0625 0.089844-0.125 0.14062l-0.10938 0.10938c-0.16797 0.15625-0.27344 0.24609-0.3125 0.26562-0.25 0.17969-0.50781 0.3125-0.76562 0.40625-0.41797 0.16797-0.96094 0.26562-1.625 0.29688-0.21094 0.007812-0.41797 0.007812-0.625 0-0.5625-0.023438-1.0312-0.15625-1.4062-0.40625-0.15625-0.10156-0.29297-0.21094-0.40625-0.32812-0.10547-0.13281-0.18359-0.23828-0.23438-0.3125-0.34375-0.55078-0.44531-1.2422-0.29688-2.0781 0.070313-0.4375 0.20703-0.84375 0.40625-1.2188 0.21875-0.39453 0.46094-0.71875 0.73438-0.96875 0.65625-0.625 1.4531-0.98828 2.3906-1.0938 0.23828-0.03125 0.45703-0.039062 0.65625-0.03125 0.44531 0.023438 0.82812 0.13672 1.1406 0.34375 0.13281 0.09375 0.23828 0.19531 0.3125 0.29688 0.019531 0.023437 0.066406 0.10156 0.14062 0.23438 0.11328 0.27344 0.125 0.55859 0.03125 0.85938-0.10547 0.36719-0.29688 0.66406-0.57812 0.89062-0.26172 0.1875-0.58984 0.33984-0.98438 0.45312-0.33594 0.085937-0.77734 0.14844-1.3281 0.1875h-0.15625c-0.074219 0-0.13281 0.007813-0.17188 0.015625zm0.125-0.5c0.625 0 1.1328-0.035156 1.5312-0.10938 0.42578-0.0625 0.77344-0.17969 1.0469-0.35938 0.070312-0.039062 0.14844-0.10156 0.23438-0.1875 0.14453-0.15625 0.24219-0.34375 0.29688-0.5625 0.050781-0.21875 0.023438-0.42969-0.078125-0.64062-0.023437-0.050781-0.054687-0.097656-0.09375-0.14062-0.042969-0.0625-0.11719-0.11328-0.21875-0.15625-0.25-0.13281-0.57031-0.14844-0.95312-0.046875-0.375 0.085937-0.69531 0.26562-0.95312 0.54688-0.19922 0.19922-0.375 0.46484-0.53125 0.79688-0.09375 0.24219-0.16406 0.42188-0.20312 0.54688-0.023438 0.074219-0.03125 0.13281-0.03125 0.17188z"/>
|
|
354
|
+
</symbol>
|
|
355
|
+
<symbol id="ec" overflow="visible">
|
|
356
|
+
<path d="m8.3906-5.2656c0.17578-0.1875 0.28516-0.29688 0.32812-0.32812 0.30078-0.25781 0.61719-0.45703 0.95312-0.59375 0.375-0.13281 0.77344-0.1875 1.2031-0.15625 0.33203 0.042969 0.57812 0.089844 0.73438 0.14062 0.15625 0.054687 0.30078 0.13281 0.4375 0.23438 0.070313 0.0625 0.14844 0.14062 0.23438 0.23438 0.03125 0.042969 0.078125 0.10938 0.14062 0.20312 0.082031 0.1875 0.13281 0.41406 0.15625 0.67188 0.007813 0.3125-0.058594 0.71484-0.20312 1.2031l-0.125 0.42188c-0.054688 0.19922-0.11719 0.375-0.1875 0.53125-0.074219 0.23047-0.15625 0.46875-0.25 0.71875l-0.17188 0.45312c-0.10547 0.28125-0.16797 0.5-0.1875 0.65625-0.03125 0.11719-0.042969 0.21875-0.03125 0.3125 0.019531 0.0625 0.035156 0.10156 0.046875 0.10938 0.03125 0.0625 0.10938 0.078125 0.23438 0.046875 0.20703-0.039062 0.39844-0.15625 0.57812-0.34375 0.20703-0.25781 0.375-0.57031 0.5-0.9375 0.039062-0.09375 0.070312-0.20312 0.09375-0.32812 0.007812-0.007813 0.019531-0.039063 0.03125-0.09375 0.007812-0.050781 0.023438-0.085937 0.046875-0.10938 0.03125-0.039062 0.097656-0.0625 0.20312-0.0625h0.28125c0.082031 0 0.14062 0.015625 0.17188 0.046875l0.046875 0.03125c0.03125 0.054687 0.03125 0.14844 0 0.28125-0.023438 0.074219-0.042969 0.13281-0.0625 0.17188-0.054688 0.16797-0.10156 0.28906-0.14062 0.35938-0.15625 0.34375-0.33984 0.62109-0.54688 0.82812-0.3125 0.35547-0.66406 0.56641-1.0469 0.64062-0.125 0.03125-0.26562 0.035156-0.42188 0.015625-0.53125-0.03125-0.91797-0.22266-1.1562-0.57812-0.042969-0.0625-0.089844-0.14453-0.14062-0.25-0.023437-0.0625-0.042969-0.15625-0.0625-0.28125-0.011719-0.15625 0.007813-0.33203 0.0625-0.53125 0.007813-0.03125 0.023437-0.070313 0.046875-0.125 0.03125-0.0625 0.046875-0.097656 0.046875-0.10938 0.039063-0.11328 0.10938-0.29688 0.20312-0.54688 0.21875-0.63281 0.375-1.1133 0.46875-1.4375 0.082031-0.3125 0.14844-0.57812 0.20312-0.79688 0-0.050781 0.003906-0.125 0.015625-0.21875 0.007812-0.039062 0.015625-0.11719 0.015625-0.23438v-0.046875c0-0.32031-0.074219-0.53906-0.21875-0.65625-0.054687-0.039062-0.10156-0.066406-0.14062-0.078125-0.054688-0.03125-0.10938-0.046875-0.17188-0.046875-0.13672 0-0.24219 0.007812-0.3125 0.015625-0.33594 0.042969-0.65234 0.17969-0.95312 0.40625-0.23047 0.16797-0.44531 0.39062-0.64062 0.67188-0.09375 0.13672-0.16406 0.24219-0.20312 0.3125-0.023438 0.03125-0.054688 0.085938-0.09375 0.15625v0.078125l-0.046875 0.17188-0.14062 0.57812-0.46875 1.8125-0.17188 0.71875c-0.074219 0.30469-0.12109 0.47656-0.14062 0.51562-0.13672 0.28125-0.35938 0.44531-0.67188 0.5-0.085937 0.019531-0.17969 0.019531-0.28125 0-0.03125-0.011719-0.10156-0.03125-0.20312-0.0625-0.054688-0.03125-0.10156-0.0625-0.14062-0.09375l-0.078125-0.14062c-0.054688-0.082031-0.078125-0.1875-0.078125-0.3125 0.007813-0.039063 0.019531-0.085937 0.03125-0.14062 0.019531-0.050781 0.03125-0.09375 0.03125-0.125l0.0625-0.23438 0.046875-0.23438 0.53125-2.0938 0.15625-0.65625c0.039062-0.125 0.085938-0.31641 0.14062-0.57812 0.050781-0.3125 0.0625-0.55469 0.03125-0.73438-0.03125-0.1875-0.10156-0.32031-0.20312-0.40625-0.011719 0-0.042969-0.019531-0.09375-0.0625-0.074219-0.039062-0.19531-0.0625-0.35938-0.0625-0.03125 0.011719-0.074219 0.015625-0.125 0.015625-0.042969 0-0.074219 0.007813-0.09375 0.015625-0.51172 0.0625-0.98047 0.35547-1.4062 0.875-0.10547 0.125-0.21094 0.26562-0.3125 0.42188-0.042969 0.074219-0.078125 0.14062-0.10938 0.20312l-0.046875 0.125-0.046875 0.23438-0.1875 0.71875-0.48438 1.9844-0.125 0.51562c-0.042969 0.16797-0.085937 0.28125-0.125 0.34375-0.09375 0.21094-0.25 0.35547-0.46875 0.4375-0.042969 0.019531-0.13281 0.039062-0.26562 0.0625-0.0625 0-0.15234-0.011719-0.26562-0.03125-0.054687-0.011719-0.11719-0.039062-0.1875-0.078125l-0.10938-0.10938c-0.03125-0.039063-0.054688-0.078125-0.0625-0.10938-0.0625-0.125-0.054688-0.375 0.03125-0.75l0.09375-0.3125 0.78125-3.1875c0.03125-0.11328 0.078125-0.29688 0.14062-0.54688 0.007813-0.019531 0.015625-0.0625 0.015625-0.125 0-0.070313 0.003906-0.12891 0.015625-0.17188v-0.20312c0-0.082031-0.023437-0.15625-0.0625-0.21875-0.042969-0.050781-0.09375-0.085937-0.15625-0.10938-0.11719-0.007812-0.22656 0.039062-0.32812 0.14062-0.03125 0.023437-0.070312 0.058594-0.10938 0.10938-0.085937 0.125-0.15234 0.26172-0.20312 0.40625-0.085938 0.24219-0.15234 0.44922-0.20312 0.625l-0.078125 0.34375c-0.023438 0.085938-0.042969 0.14062-0.0625 0.17188-0.042969 0.054687-0.12109 0.078125-0.23438 0.078125h-0.23438-0.17188c-0.054687-0.03125-0.089844-0.078125-0.10938-0.14062l0.046875-0.26562 0.17188-0.5c0.14453-0.38281 0.3125-0.69531 0.5-0.9375 0.11328-0.16406 0.25781-0.29688 0.4375-0.39062 0.14453-0.070313 0.3125-0.11719 0.5-0.14062 0.070312-0.007812 0.17578-0.003906 0.3125 0.015625 0.375 0.03125 0.6875 0.15234 0.9375 0.35938 0.13281 0.11719 0.23828 0.24219 0.3125 0.375 0.0625 0.125 0.09375 0.19922 0.09375 0.21875 0.26953-0.26953 0.54688-0.48438 0.82812-0.64062 0.34375-0.1875 0.70703-0.29688 1.0938-0.32812h0.35938c0.28906 0.023438 0.50781 0.046875 0.65625 0.078125 0.4375 0.11719 0.75391 0.33984 0.95312 0.67188 0.03125 0.0625 0.0625 0.14062 0.09375 0.23438 0.019531 0.03125 0.03125 0.0625 0.03125 0.09375z"/>
|
|
357
|
+
</symbol>
|
|
358
|
+
<symbol id="eb" overflow="visible">
|
|
359
|
+
<path d="m4.4844-6.2344h0.92188c0.21875 0 0.36328 0.03125 0.4375 0.09375 0.050781 0.042969 0.085938 0.12109 0.10938 0.23438 0.019531 0.054688 0.03125 0.10156 0.03125 0.14062 0.039063 0.23047 0.10156 0.51562 0.1875 0.85938 0.0625 0.32422 0.125 0.59375 0.1875 0.8125l0.32812 1.6094c0.070312 0.3125 0.125 0.54297 0.15625 0.6875 0.039062 0.14844 0.066406 0.24219 0.078125 0.28125l0.09375-0.14062c0.050781-0.0625 0.10156-0.13281 0.15625-0.21875l0.45312-0.625 1.7188-2.375 0.54688-0.78125c0.019531-0.03125 0.046875-0.070312 0.078125-0.125 0.039062-0.050781 0.066406-0.082031 0.078125-0.09375 0.0625-0.082031 0.097656-0.12891 0.10938-0.14062 0.007812-0.019531 0.03125-0.039063 0.0625-0.0625 0.03125-0.03125 0.050781-0.046875 0.0625-0.046875 0.050781-0.0625 0.082031-0.09375 0.09375-0.09375 0.03125-0.007812 0.070312-0.015625 0.125-0.015625h1.0781c0.082031 0.023437 0.13281 0.074219 0.15625 0.15625 0.007813 0.03125 0.003906 0.085937-0.015625 0.15625l-0.0625 0.20312-0.1875 0.8125-0.73438 2.9375c-0.125 0.46094-0.19922 0.80859-0.21875 1.0469 0 0.125 0.003906 0.22656 0.015625 0.29688 0.019531 0.074219 0.039062 0.125 0.0625 0.15625 0.039062 0.042969 0.10156 0.0625 0.1875 0.0625 0.125 0 0.25391-0.082031 0.39062-0.25 0.15625-0.23828 0.28516-0.58203 0.39062-1.0312 0.03125-0.070312 0.0625-0.17969 0.09375-0.32812 0.03125-0.11328 0.050781-0.17578 0.0625-0.1875 0.039062-0.050781 0.11719-0.078125 0.23438-0.078125h0.10938c0.21875 0 0.34766 0.039062 0.39062 0.10938v0.0625c0.007813 0.03125 0.007813 0.070313 0 0.10938 0 0.023438-0.007813 0.046875-0.015625 0.078125 0 0.023437-0.007812 0.042969-0.015625 0.0625-0.042969 0.11719-0.10156 0.28906-0.17188 0.51562-0.23047 0.61719-0.52734 1.043-0.89062 1.2812-0.15625 0.09375-0.33984 0.14844-0.54688 0.17188-0.085938 0-0.15234-0.007813-0.20312-0.015625-0.59375-0.023438-1.0312-0.24219-1.3125-0.67188-0.14844-0.20703-0.21484-0.46094-0.20312-0.76562 0.007812-0.082031 0.035156-0.20703 0.078125-0.375l0.078125-0.35938 0.45312-1.75 0.14062-0.5625c0.03125-0.16406 0.050781-0.26953 0.0625-0.3125l-0.078125 0.125c-0.10547 0.13672-0.17188 0.22656-0.20312 0.26562l-0.5 0.70312-1.7031 2.3594c-0.125 0.1875-0.32031 0.46094-0.57812 0.8125-0.074219 0.11719-0.13281 0.19531-0.17188 0.23438-0.085937 0.09375-0.1875 0.15625-0.3125 0.1875h-0.28125c-0.085937 0-0.16406-0.035156-0.23438-0.10938-0.042969-0.050781-0.074219-0.14453-0.09375-0.28125l-0.125-0.53125c-0.074219-0.375-0.13281-0.65625-0.17188-0.84375-0.15625-0.70703-0.27734-1.2383-0.35938-1.5938-0.074219-0.33203-0.125-0.58203-0.15625-0.75l-0.046875-0.25c0-0.007812-0.011719-0.035156-0.03125-0.078125-0.011719-0.039063-0.015625-0.066406-0.015625-0.078125 0 0.011719-0.007812 0.039062-0.015625 0.078125-0.011719 0.03125-0.023437 0.058594-0.03125 0.078125l-0.0625 0.26562-0.21875 0.875-0.20312 0.82812c-0.13672 0.46094-0.20312 0.70312-0.20312 0.73438-0.15625 0.46094-0.37109 0.84375-0.64062 1.1562-0.24219 0.27344-0.50781 0.46094-0.79688 0.5625-0.28125 0.10156-0.57422 0.097656-0.875-0.015625-0.19922-0.0625-0.35547-0.14844-0.46875-0.26562-0.085937-0.082031-0.16406-0.1875-0.23438-0.3125-0.17969-0.34375-0.19531-0.70703-0.046875-1.0938 0.0625-0.1875 0.17969-0.33594 0.35938-0.45312 0.17578-0.11328 0.36328-0.17188 0.5625-0.17188 0.11328 0 0.23438 0.023437 0.35938 0.0625 0.050781 0.042969 0.085937 0.074219 0.10938 0.09375 0.16406 0.14844 0.23438 0.35156 0.20312 0.60938-0.042969 0.35547-0.22656 0.60938-0.54688 0.76562-0.09375 0.054687-0.17969 0.078125-0.25 0.078125 0.019531 0.03125 0.054688 0.078125 0.10938 0.14062 0.1875 0.13672 0.37891 0.15234 0.57812 0.046875 0.23828-0.10156 0.44531-0.36719 0.625-0.79688 0.0625-0.09375 0.14453-0.32031 0.25-0.6875 0.019531-0.082031 0.050781-0.20312 0.09375-0.35938 0.039062-0.15625 0.066406-0.27344 0.078125-0.35938l0.54688-2.2188 0.25-0.96875c0.03125-0.125 0.050781-0.20703 0.0625-0.25 0-0.007813 0.007812-0.019531 0.03125-0.03125v-0.015625c0.007812 0 0.015625-0.003906 0.015625-0.015625z"/>
|
|
360
|
+
</symbol>
|
|
361
|
+
<symbol id="ea" overflow="visible">
|
|
362
|
+
<path d="m4.7031-1.1719c1.6016-0.96875 2.5234-1.9922 2.7656-3.0781 0.0625-0.28906 0.0625-0.5625 0-0.8125-0.0625-0.25781-0.125-0.42969-0.1875-0.51562-0.054688-0.082031-0.042969-0.21094 0.03125-0.39062 0.13281-0.21875 0.34766-0.36328 0.64062-0.4375 0.30078-0.070312 0.54688-0.003906 0.73438 0.20312 0.13281 0.14844 0.1875 0.38281 0.15625 0.70312-0.023438 0.32422-0.0625 0.59375-0.125 0.8125-0.0625 0.21094-0.125 0.39844-0.1875 0.5625-0.55469 1.375-1.7617 2.6562-3.625 3.8438l-0.34375 0.21875c-0.14844 0.09375-0.23438 0.16406-0.26562 0.21875-0.023437 0.050781-0.085937 0.24219-0.1875 0.57812-0.17969 0.40625-0.42969 0.83594-0.75 1.2969-0.3125 0.45703-0.67969 0.78906-1.0938 1-0.30469 0.15625-0.5625 0.15625-0.78125 0-0.35547-0.28125-0.25781-0.86719 0.29688-1.75 0.36328-0.59375 0.84766-1.1055 1.4531-1.5312 0.14453-0.10156 0.22656-0.17578 0.25-0.21875 0.03125-0.050781 0.12891-0.29688 0.29688-0.73438 0.39453-0.90625 0.62891-1.5508 0.70312-1.9375 0.082031-0.38281 0.066406-0.66406-0.046875-0.84375-0.17969-0.45703-0.54297-0.71094-1.0938-0.76562-0.55469-0.0625-1.0156 0.15234-1.3906 0.64062-0.03125 0.054687-0.070313 0.13281-0.10938 0.23438-0.042969 0.09375-0.078125 0.15234-0.10938 0.17188-0.054687 0.054687-0.10938 0.054687-0.17188 0-0.054688-0.050781-0.074219-0.11328-0.0625-0.1875 0-0.082031 0.078125-0.32031 0.23438-0.71875 0.20703-0.42578 0.45312-0.77344 0.73438-1.0469 0.28906-0.28125 0.57031-0.46094 0.84375-0.54688 0.28125-0.082031 0.54688-0.10938 0.79688-0.078125 0.25781 0.03125 0.47656 0.12109 0.65625 0.26562 0.15625 0.10547 0.30078 0.3125 0.4375 0.625 0.13281 0.3125 0.20312 0.69531 0.20312 1.1406 0 0.36719-0.054688 0.76562-0.15625 1.2031-0.09375 0.4375-0.21094 0.85547-0.34375 1.25-0.125 0.38672-0.19531 0.59375-0.20312 0.625z"/>
|
|
363
|
+
</symbol>
|
|
364
|
+
<symbol id="dz" overflow="visible">
|
|
365
|
+
<path d="m2.9844-3.2969c-0.60547-0.23828-0.98438-0.46094-1.1406-0.67188-0.19922-0.33203-0.21484-0.67188-0.046875-1.0156 0.16406-0.35156 0.39453-0.61328 0.6875-0.78125 0.47656-0.3125 1.1289-0.48828 1.9531-0.53125 0.8125-0.050781 1.4258 0.10547 1.8438 0.46875 0.070312 0.0625 0.14844 0.14844 0.23438 0.25 0.09375 0.10547 0.1875 0.24609 0.28125 0.42188 0.10156 0.16797 0.15625 0.33594 0.15625 0.5 0 0.15625-0.054687 0.3125-0.15625 0.46875-0.19922 0.21094-0.42188 0.3125-0.67188 0.3125-0.15625 0-0.26562-0.050781-0.32812-0.15625-0.023437-0.039062-0.023437-0.20703 0-0.5 0.019531-0.28906-0.046875-0.55078-0.20312-0.78125-0.19922-0.26953-0.49609-0.41016-0.89062-0.42188-0.38672-0.007813-0.70312 0.089844-0.95312 0.29688-0.21094 0.16797-0.35938 0.36719-0.45312 0.59375-0.085937 0.21875-0.054687 0.44531 0.09375 0.67188 0.0625 0.085937 0.16406 0.18359 0.3125 0.29688 0.14453 0.11719 0.25 0.17188 0.3125 0.17188 0.019531 0 0.078125-0.019531 0.17188-0.0625 0.10156-0.039063 0.19141-0.070313 0.26562-0.09375 0.082031-0.019531 0.17188-0.019531 0.26562 0 0.09375 0.011719 0.16406 0.054687 0.21875 0.125 0.11328 0.11719 0.125 0.29297 0.03125 0.53125-0.09375 0.23047-0.26172 0.375-0.5 0.4375-0.14844 0.042969-0.29297 0.027344-0.4375-0.046875-0.14844-0.082031-0.23438-0.11719-0.26562-0.10938-0.042969 0.011719-0.10156 0.03125-0.17188 0.0625l-0.29688 0.17188c-0.375 0.25-0.63672 0.52344-0.78125 0.8125-0.14844 0.32422-0.14062 0.60547 0.015625 0.84375 0.16406 0.24219 0.42188 0.35938 0.76562 0.35938 0.95703 0 1.7227-0.28516 2.2969-0.85938 0.15625-0.15625 0.24219-0.23828 0.26562-0.25 0.082031-0.019531 0.16406-0.007812 0.25 0.03125 0.082031 0.03125 0.12891 0.089844 0.14062 0.17188 0.03125 0.16797-0.058594 0.35938-0.26562 0.57812-0.19922 0.21875-0.44531 0.40625-0.73438 0.5625-0.69922 0.41797-1.5234 0.58203-2.4688 0.5-0.9375-0.070312-1.5469-0.35938-1.8281-0.85938-0.15625-0.22656-0.17969-0.53516-0.0625-0.92188 0.125-0.38281 0.38281-0.70703 0.78125-0.96875 0.20703-0.13281 0.64453-0.33594 1.3125-0.60938z"/>
|
|
366
|
+
</symbol>
|
|
367
|
+
<symbol id="dy" overflow="visible">
|
|
368
|
+
<path d="m3.8906-6.2344-1.2031 3.7812c-0.0625 0.17969-0.12109 0.33984-0.17188 0.48438-0.042969 0.14844-0.078125 0.27734-0.10938 0.39062-0.03125 0.10547-0.042969 0.19922-0.03125 0.28125 0.007812 0.074219 0.046875 0.13672 0.10938 0.1875 0.16406 0.16797 0.34375 0.16406 0.53125-0.015625 0.09375-0.070312 0.1875-0.19531 0.28125-0.375 0.10156-0.1875 0.19141-0.3125 0.26562-0.375 0.09375-0.082031 0.19531-0.12891 0.3125-0.14062 0.11328-0.019531 0.20703 0.027344 0.28125 0.14062 0.0625 0.13672-0.078125 0.42188-0.42188 0.85938-0.60547 0.88672-1.2578 1.2266-1.9531 1.0312-0.23047-0.070312-0.41797-0.20703-0.5625-0.40625-0.13672-0.19531-0.20312-0.44141-0.20312-0.73438 0-0.13281 0.039063-0.33203 0.125-0.59375 0.55078-2.0391 0.91016-3.4141 1.0781-4.125l0.078125-0.25c0-0.007812 0.003906-0.019531 0.015625-0.03125 0.03125-0.070312 0.085938-0.10938 0.17188-0.10938z"/>
|
|
369
|
+
</symbol>
|
|
370
|
+
<symbol id="dx" overflow="visible">
|
|
371
|
+
<path d="m5.6406-6.9844c0.019531-0.070313 0.050781-0.17578 0.09375-0.3125 0.050781-0.13281 0.085937-0.23438 0.10938-0.29688l0.375-1.125c0.03125-0.15625 0.082031-0.32812 0.15625-0.51562 0.082031-0.19531 0.17578-0.35156 0.28125-0.46875 0.1875-0.17578 0.41016-0.26953 0.67188-0.28125 0.26953-0.007813 0.48828 0.09375 0.65625 0.3125 0.039063 0.074219 0.0625 0.14062 0.0625 0.20312 0.039063 0.25-0.089844 0.53125-0.39062 0.84375l-1.5781 1.5781c-0.074219 0.074219-0.125 0.12109-0.15625 0.14062-0.03125 0.011719-0.070313 0.011719-0.10938 0-0.042969-0.019531-0.10156-0.046875-0.17188-0.078125zm0.015625 5.9375c-0.10547 0.15625-0.30469 0.34375-0.59375 0.5625-0.28125 0.21875-0.57031 0.375-0.85938 0.46875-0.51172 0.14453-1 0.125-1.4688-0.0625-0.46094-0.1875-0.79688-0.47656-1.0156-0.875-0.125-0.21875-0.22656-0.5-0.29688-0.84375-0.11719-0.78906 0.039063-1.5625 0.46875-2.3125 0.42578-0.75781 1.0039-1.3438 1.7344-1.75 0.14453-0.09375 0.35938-0.1875 0.64062-0.28125 0.28125-0.10156 0.61328-0.15625 1-0.15625 0.39453 0 0.70312 0.10938 0.92188 0.32812 0.11328 0.11719 0.23828 0.37109 0.375 0.76562 0.019531-0.09375 0.039062-0.1875 0.0625-0.28125 0.03125-0.10156 0.0625-0.19141 0.09375-0.26562 0.039062-0.082031 0.09375-0.16406 0.15625-0.25 0.0625-0.082031 0.13281-0.14453 0.21875-0.1875 0.14453-0.10156 0.32031-0.14062 0.53125-0.10938 0.21875 0.023437 0.35156 0.12109 0.40625 0.29688 0.019531 0.03125 0.03125 0.089844 0.03125 0.17188 0 0.15625-0.10547 0.54688-0.3125 1.1719-0.21094 0.61719-0.38672 1.0781-0.53125 1.3906-0.25 0.625-0.37109 1.0742-0.35938 1.3438 0.007813 0.26172 0.09375 0.43359 0.25 0.51562 0.21875 0.11719 0.44141 0.089844 0.67188-0.078125 0.23828-0.17578 0.40625-0.37891 0.5-0.60938 0.039062-0.125 0.070312-0.19531 0.09375-0.21875 0.050781-0.039062 0.125-0.03125 0.21875 0.03125 0.09375 0.054688 0.14062 0.15625 0.14062 0.3125 0.019531 0.34375-0.13281 0.72656-0.45312 1.1406-0.3125 0.40625-0.67188 0.67969-1.0781 0.8125-0.41797 0.14453-0.77734 0.11719-1.0781-0.078125-0.30469-0.19531-0.45312-0.51562-0.45312-0.95312zm-0.85938-0.046875c0.28125-0.22656 0.53516-0.5625 0.76562-1 0.23828-0.44531 0.41406-0.89844 0.53125-1.3594 0.11328-0.46875 0.14844-0.91406 0.10938-1.3438-0.042969-0.42578-0.17969-0.73438-0.40625-0.92188-0.26172-0.16406-0.53125-0.22266-0.8125-0.17188-0.28125 0.042969-0.53906 0.15625-0.76562 0.34375-0.4375 0.34375-0.78906 0.83984-1.0469 1.4844-0.25 0.64844-0.39844 1.2188-0.4375 1.7188-0.042969 0.60547 0.0625 1.0547 0.3125 1.3438 0.15625 0.17969 0.34375 0.28125 0.5625 0.3125 0.22656 0.03125 0.44141 0.011719 0.64062-0.0625 0.19531-0.082031 0.37891-0.19531 0.54688-0.34375z"/>
|
|
372
|
+
</symbol>
|
|
373
|
+
<symbol id="dw" overflow="visible">
|
|
374
|
+
<path d="m4.6719-3.5938c0.26953-0.10156 0.5-0.17578 0.6875-0.21875 0.19531-0.050781 0.32031-0.082031 0.375-0.09375 0.050781-0.007812 0.09375-0.03125 0.125-0.0625 0.039063-0.039062 0.10156-0.13281 0.1875-0.28125 0.61328-0.85156 1.3516-1.5234 2.2188-2.0156 0.23828-0.125 0.45312-0.16406 0.64062-0.125 0.20703 0.0625 0.34766 0.19531 0.42188 0.39062 0.070313 0.19922 0.066406 0.38672-0.015625 0.5625-0.11719 0.28125-0.41797 0.63672-0.90625 1.0625-0.49219 0.42969-0.99609 0.76172-1.5156 1-0.13672 0.0625-0.21875 0.10938-0.25 0.14062-0.023437 0.023437-0.046875 0.058594-0.078125 0.10938-0.03125 0.054688-0.0625 0.125-0.09375 0.21875-0.11719 0.30469-0.14844 0.55859-0.09375 0.76562 0.0625 0.19922 0.125 0.33984 0.1875 0.42188 0.070312 0.085938 0.14844 0.14062 0.23438 0.17188 0.3125 0.14844 0.61719 0.078125 0.92188-0.20312 0.30078-0.28906 0.51953-0.63281 0.65625-1.0312 0-0.007812 0.007812-0.050781 0.03125-0.125 0.03125-0.070312 0.0625-0.11719 0.09375-0.14062 0.039062-0.050781 0.097656-0.070313 0.17188-0.0625 0.082031 0 0.14062 0.03125 0.17188 0.09375 0.039062 0.054687 0.070312 0.15625 0.09375 0.3125 0 0.32422-0.15625 0.76562-0.46875 1.3281-0.30469 0.5625-0.67969 0.96875-1.125 1.2188-0.24219 0.14844-0.5 0.21875-0.78125 0.21875-0.28125 0.0078125-0.53906-0.070312-0.76562-0.25-0.51172-0.44531-0.64062-1.2969-0.39062-2.5469l-0.79688 0.29688c-0.1875 0.074219-0.29688 0.11719-0.32812 0.125-0.03125 0.011719-0.089844 0.058594-0.17188 0.14062-0.074219 0.085937-0.125 0.16797-0.15625 0.25-0.03125 0.074219-0.13281 0.24609-0.29688 0.51562-0.15625 0.27344-0.35156 0.57812-0.57812 0.92188l-0.26562 0.34375c-0.085938 0.10547-0.14844 0.16016-0.1875 0.17188-0.03125 0.019531-0.12109 0.03125-0.26562 0.03125h-0.82812c-0.16797 0-0.27344-0.027344-0.3125-0.078125-0.042969-0.0625-0.039062-0.16016 0.015625-0.29688 0.10156-0.38281 0.28906-0.75781 0.5625-1.125 0.28125-0.375 0.55078-0.67578 0.8125-0.90625l0.375-0.29688c0.0625-0.050781 0.10938-0.085937 0.14062-0.10938 0.039062-0.019531 0.082031-0.066406 0.125-0.14062 0.050781-0.082031 0.10938-0.20312 0.17188-0.35938 0.070313-0.15625 0.16406-0.39453 0.28125-0.71875l0.078125-0.32812c0.019531-0.20703-0.078125-0.34766-0.29688-0.42188-0.21875-0.082031-0.41406-0.078125-0.57812 0.015625-0.24219 0.125-0.47656 0.40625-0.70312 0.84375-0.011719 0.023437-0.03125 0.070313-0.0625 0.14062-0.03125 0.074219-0.0625 0.13672-0.09375 0.1875-0.023437 0.054688-0.054687 0.089844-0.09375 0.10938-0.11719 0.10547-0.23438 0.12109-0.35938 0.046875-0.125-0.082031-0.18359-0.19531-0.17188-0.34375 0.007813-0.082031 0.03125-0.16016 0.0625-0.23438 0.03125-0.070313 0.066406-0.14844 0.10938-0.23438 0.050781-0.09375 0.082031-0.16016 0.09375-0.20312 0.42578-0.89453 0.875-1.4766 1.3438-1.75 0.32031-0.1875 0.66016-0.22656 1.0156-0.125 0.36328 0.10547 0.60938 0.32031 0.73438 0.64062 0.082031 0.1875 0.12891 0.39844 0.14062 0.625 0.007813 0.23047 0 0.41797-0.03125 0.5625-0.023437 0.13672-0.0625 0.30469-0.125 0.5-0.054687 0.1875-0.085937 0.30469-0.09375 0.34375z"/>
|
|
375
|
+
</symbol>
|
|
376
|
+
<symbol id="dv" overflow="visible">
|
|
377
|
+
<path d="m5.2812-6.9688c0.019531-0.10156 0.066406-0.25781 0.14062-0.46875l0.29688-0.84375c0.039062-0.17578 0.09375-0.35156 0.15625-0.53125 0.0625-0.17578 0.11719-0.33203 0.17188-0.46875 0.050781-0.13281 0.125-0.25391 0.21875-0.35938 0.09375-0.11328 0.19531-0.19531 0.3125-0.25 0.1875-0.10156 0.40625-0.11719 0.65625-0.046875 0.25 0.0625 0.39453 0.21094 0.4375 0.4375 0.0625 0.26172-0.0625 0.54688-0.375 0.85938l-1.2344 1.2344c-0.085938 0.085938-0.16406 0.16797-0.23438 0.25l-0.15625 0.15625c-0.023437 0.03125-0.042969 0.054688-0.0625 0.0625-0.023437 0.011719-0.046875 0.023438-0.078125 0.03125-0.042969 0.011719-0.125-0.007812-0.25-0.0625zm-0.015625 0.65625c0.92578-0.050781 1.6289 0.23438 2.1094 0.85938 0.47656 0.625 0.60938 1.3906 0.39062 2.2969-0.14844 0.59375-0.43359 1.1406-0.85938 1.6406-0.42969 0.5-0.91797 0.89062-1.4688 1.1719-0.48047 0.24219-0.95312 0.375-1.4219 0.40625s-0.875-0.023438-1.2188-0.15625c-0.33594-0.13281-0.61719-0.32812-0.84375-0.57812-0.30469-0.32031-0.48438-0.73438-0.54688-1.2344s-0.015625-0.95703 0.14062-1.375c0.25781-0.8125 0.72656-1.5 1.4062-2.0625 0.6875-0.5625 1.457-0.88281 2.3125-0.96875zm-0.32812 5.5469c0.26953-0.25 0.52344-0.61328 0.76562-1.0938 0.23828-0.47656 0.42188-0.96875 0.54688-1.4688 0.13281-0.5 0.17969-0.97656 0.14062-1.4375-0.042969-0.45703-0.1875-0.78516-0.4375-0.98438-0.27344-0.15625-0.55469-0.20312-0.84375-0.14062-0.29297 0.054687-0.54688 0.18359-0.76562 0.39062-0.375 0.34375-0.71484 0.86719-1.0156 1.5625-0.29297 0.69922-0.46094 1.3672-0.5 2-0.03125 0.625 0.125 1.1094 0.46875 1.4531 0.26953 0.15625 0.55469 0.20312 0.85938 0.14062 0.30078-0.070312 0.5625-0.21094 0.78125-0.42188z"/>
|
|
378
|
+
</symbol>
|
|
379
|
+
<symbol id="du" overflow="visible">
|
|
380
|
+
<path d="m7.7031-4.75c0.25781 0.65625 0.22266 1.3828-0.10938 2.1719-0.3125 0.75-0.82031 1.3828-1.5156 1.8906-0.6875 0.5-1.4219 0.75-2.2031 0.75-0.90625 0-1.5703-0.29688-1.9844-0.89062-0.41797-0.60156-0.5625-1.2969-0.4375-2.0781 0.070313-0.40625 0.22266-0.8125 0.45312-1.2188 0.22656-0.41406 0.51562-0.79688 0.85938-1.1406s0.76562-0.61328 1.2656-0.8125c0.5-0.19531 1.0195-0.26953 1.5625-0.21875 0.070312 0.011719 0.33203 0.054687 0.78125 0.125 0.45703 0.0625 0.80078 0.085937 1.0312 0.0625 0.28906-0.019531 0.53906-0.066406 0.75-0.14062 0.21875-0.070312 0.36328-0.14062 0.4375-0.20312 0.082031-0.0625 0.15625-0.10938 0.21875-0.14062 0.070312-0.039062 0.13281-0.0625 0.1875-0.0625 0.11328 0.03125 0.13281 0.29297 0.0625 0.78125-0.042969 0.21094-0.15234 0.41406-0.32812 0.60938-0.16797 0.1875-0.35938 0.32422-0.57812 0.40625-0.0625 0.03125-0.21484 0.070313-0.45312 0.10938zm-1.5625 2.1406c0.070313-0.28125 0.10938-0.64453 0.10938-1.0938-0.011719-0.125-0.03125-0.25-0.0625-0.375-0.023438-0.13281-0.070312-0.30078-0.14062-0.5-0.074219-0.19531-0.19922-0.36328-0.375-0.5-0.16797-0.13281-0.375-0.21094-0.625-0.23438-0.60547-0.070312-1.1484 0.33984-1.625 1.2344-0.38672 0.74219-0.55859 1.4844-0.51562 2.2344 0.039062 0.75 0.30469 1.2031 0.79688 1.3594 0.09375 0.03125 0.20312 0.046875 0.32812 0.046875 0.4375 0 0.85938-0.1875 1.2656-0.5625 0.41406-0.38281 0.69531-0.92188 0.84375-1.6094z"/>
|
|
381
|
+
</symbol>
|
|
382
|
+
<symbol id="dt" overflow="visible">
|
|
383
|
+
<path d="m1.9531-1.1406c0 0.23047-0.03125 0.53125-0.09375 0.90625-0.054687 0.36328-0.074219 0.69141-0.0625 0.98438 0.007813 0.30078 0.078125 0.61719 0.20312 0.95312 0.007812 0.03125 0.035156 0.082031 0.078125 0.15625 0.039063 0.082031 0.066406 0.14062 0.078125 0.17188 0.007812 0.039062 0.019531 0.09375 0.03125 0.15625 0.019531 0.0625 0.03125 0.11719 0.03125 0.17188 0 0.0625-0.015625 0.11719-0.046875 0.17188-0.09375 0.22656-0.27344 0.41016-0.53125 0.54688-0.25 0.14453-0.50781 0.21875-0.76562 0.21875-0.71875 0-0.95312-0.48047-0.70312-1.4375 0.03125-0.16797 0.125-0.51172 0.28125-1.0312l1.3281-4.9844c0.13281-0.50781 0.23438-0.89453 0.29688-1.1562 0.070313-0.25781 0.14062-0.49219 0.20312-0.70312 0.007812-0.019531 0.015625-0.050781 0.015625-0.09375 0.019531-0.082031 0.078125-0.125 0.17188-0.125h1.4219l-0.57812 2.1562c-0.14844 0.53125-0.24609 0.88281-0.29688 1.0469-0.042969 0.16797-0.10156 0.40234-0.17188 0.70312-0.074219 0.30469-0.10938 0.50781-0.10938 0.60938v0.35938c0.007813 0.13672 0.035156 0.25 0.078125 0.34375 0.10156 0.1875 0.25391 0.30469 0.45312 0.34375 0.19531 0.042969 0.41016-0.007813 0.64062-0.15625 0.22656-0.15625 0.42969-0.39453 0.60938-0.71875 0.09375-0.1875 0.22656-0.625 0.40625-1.3125l0.5625-2.0469c0.03125-0.14453 0.09375-0.39453 0.1875-0.75 0.10156-0.35156 0.16016-0.53516 0.17188-0.54688 0.019531-0.019531 0.0625-0.03125 0.125-0.03125h1.4219c-0.09375 0.38672-0.24609 0.96484-0.45312 1.7344-0.21094 0.76172-0.36719 1.3398-0.46875 1.7344-0.10547 0.34375-0.17188 0.58594-0.20312 0.71875-0.023437 0.13672-0.027344 0.29297-0.015625 0.46875 0.007812 0.16797 0.054688 0.29688 0.14062 0.39062 0.15625 0.11719 0.33594 0.12109 0.54688 0.015625 0.20703-0.10156 0.375-0.27344 0.5-0.51562 0.11328-0.17578 0.17188-0.27344 0.17188-0.29688 0.09375-0.082031 0.1875-0.09375 0.28125-0.03125 0.10156 0.054687 0.16016 0.13672 0.17188 0.25 0 0.1875-0.10938 0.4375-0.32812 0.75-0.46875 0.65625-1.0547 1.0156-1.75 1.0781-0.28125 0.019531-0.54688-0.042969-0.79688-0.1875-0.24219-0.14453-0.38672-0.34766-0.4375-0.60938-0.23047 0.21875-0.41406 0.375-0.54688 0.46875-0.21875 0.13672-0.44922 0.23438-0.6875 0.29688-0.23047 0.070312-0.48047 0.0625-0.75-0.03125-0.27344-0.082031-0.49219-0.27344-0.65625-0.57812-0.0625-0.14453-0.11719-0.33203-0.15625-0.5625z"/>
|
|
384
|
+
</symbol>
|
|
385
|
+
<symbol id="ds" overflow="visible">
|
|
386
|
+
<path d="m5.2656-6.3125c0.92578-0.050781 1.6289 0.23438 2.1094 0.85938 0.47656 0.625 0.60938 1.3906 0.39062 2.2969-0.14844 0.59375-0.43359 1.1406-0.85938 1.6406-0.42969 0.5-0.91797 0.89062-1.4688 1.1719-0.48047 0.24219-0.95312 0.375-1.4219 0.40625s-0.875-0.023438-1.2188-0.15625c-0.33594-0.13281-0.61719-0.32812-0.84375-0.57812-0.30469-0.32031-0.48438-0.73438-0.54688-1.2344s-0.015625-0.95703 0.14062-1.375c0.25781-0.8125 0.72656-1.5 1.4062-2.0625 0.6875-0.5625 1.457-0.88281 2.3125-0.96875zm-0.32812 5.5469c0.26953-0.25 0.52344-0.61328 0.76562-1.0938 0.23828-0.47656 0.42188-0.96875 0.54688-1.4688 0.13281-0.5 0.17969-0.97656 0.14062-1.4375-0.042969-0.45703-0.1875-0.78516-0.4375-0.98438-0.27344-0.15625-0.55469-0.20312-0.84375-0.14062-0.29297 0.054687-0.54688 0.18359-0.76562 0.39062-0.375 0.34375-0.71484 0.86719-1.0156 1.5625-0.29297 0.69922-0.46094 1.3672-0.5 2-0.03125 0.625 0.125 1.1094 0.46875 1.4531 0.26953 0.15625 0.55469 0.20312 0.85938 0.14062 0.30078-0.070312 0.5625-0.21094 0.78125-0.42188z"/>
|
|
387
|
+
</symbol>
|
|
388
|
+
<symbol id="dr" overflow="visible">
|
|
389
|
+
<path d="m2.625-5.4062v4.9375c-0.023438 0.085938-0.054688 0.16406-0.09375 0.23438-0.074219 0.125-0.19922 0.20312-0.375 0.23438h-0.48438c-0.21094 0-0.35156-0.015625-0.42188-0.046875-0.09375-0.03125-0.17188-0.10156-0.23438-0.21875-0.054687-0.070313-0.078125-0.22656-0.078125-0.46875v-5.2188c0.019531-0.125 0.066406-0.22656 0.14062-0.3125 0.082031-0.082031 0.19141-0.13281 0.32812-0.15625h4.8594c0.15625 0 0.26953 0.015625 0.34375 0.046875 0.03125 0.011719 0.066406 0.039062 0.10938 0.078125 0.09375 0.085937 0.14844 0.19531 0.17188 0.32812v5.2344c0 0.21094-0.007813 0.33594-0.015625 0.375-0.054688 0.17969-0.16797 0.28906-0.34375 0.32812-0.0625 0.023438-0.19922 0.03125-0.40625 0.03125h-0.45312c-0.13672-0.019531-0.24609-0.070312-0.32812-0.15625-0.042969-0.0625-0.0625-0.097656-0.0625-0.10938-0.054688-0.082031-0.078125-0.25391-0.078125-0.51562v-4.625z"/>
|
|
390
|
+
</symbol>
|
|
391
|
+
<symbol id="aj" overflow="visible">
|
|
392
|
+
<path d="m2.7188-5.7656c0.11328-0.11328 0.21875-0.20312 0.3125-0.26562 0.35156-0.23828 0.75-0.40625 1.1875-0.5 0.082031-0.007812 0.22266-0.023438 0.42188-0.046875h0.26562c0.71875 0.03125 1.2695 0.26562 1.6562 0.70312 0.40625 0.4375 0.64844 1.0625 0.73438 1.875 0.019531 0.1875 0.03125 0.32422 0.03125 0.40625v0.10938c0.007813 0.46875-0.015625 0.88672-0.078125 1.25-0.074219 0.46094-0.21875 0.86719-0.4375 1.2188-0.16797 0.21875-0.30469 0.375-0.40625 0.46875-0.4375 0.40625-1.0234 0.62891-1.75 0.67188-0.1875 0.019531-0.33594 0.023438-0.4375 0.015625-0.19922 0-0.39844-0.039063-0.59375-0.10938-0.21875-0.0625-0.45312-0.19531-0.70312-0.40625l-0.17188-0.1875v2.8125c0 0.070312-0.027344 0.14844-0.078125 0.23438-0.023437 0.019531-0.046875 0.050781-0.078125 0.09375-0.09375 0.082031-0.19922 0.12891-0.3125 0.14062h-0.98438c-0.10547-0.023438-0.19922-0.0625-0.28125-0.125l-0.078125-0.09375c-0.023438-0.011719-0.042969-0.046875-0.0625-0.10938-0.023438-0.054687-0.03125-0.10547-0.03125-0.15625v-7.9688c0-0.1875 0.003906-0.29688 0.015625-0.32812l0.0625-0.14062c0.019531-0.03125 0.050781-0.0625 0.09375-0.09375 0.039063-0.039063 0.10938-0.078125 0.20312-0.10938 0.039062-0.007812 0.10938-0.015625 0.20312-0.015625h0.82812c0.16406 0.023437 0.28906 0.10156 0.375 0.23438 0.019531 0.023438 0.039062 0.0625 0.0625 0.125 0.019531 0.0625 0.03125 0.16406 0.03125 0.29688zm2.7031 2.7344v-0.1875c0-0.15625-0.007813-0.27344-0.015625-0.35938 0-0.039063-0.007812-0.097656-0.015625-0.17188v-0.17188c-0.054687-0.33203-0.125-0.59766-0.21875-0.79688-0.085937-0.17578-0.18359-0.32031-0.29688-0.4375-0.0625-0.0625-0.14062-0.11328-0.23438-0.15625-0.24219-0.13281-0.49219-0.1875-0.75-0.15625-0.29297 0.011719-0.53906 0.074219-0.73438 0.1875-0.085938 0.03125-0.1875 0.09375-0.3125 0.1875l-0.09375 0.09375v3.4844 0.09375c0.007812 0.011719 0.019531 0.027344 0.03125 0.046875 0.007812 0.011719 0.019531 0.023438 0.03125 0.03125 0.09375 0.09375 0.16406 0.16406 0.21875 0.20312 0.17578 0.125 0.34766 0.21094 0.51562 0.25 0.16406 0.011719 0.28906 0.015625 0.375 0.015625 0.45703-0.03125 0.80469-0.19531 1.0469-0.5 0.22656-0.28906 0.36719-0.69141 0.42188-1.2031 0.007813-0.03125 0.015625-0.082031 0.015625-0.15625 0-0.070313 0.003906-0.125 0.015625-0.15625z"/>
|
|
393
|
+
</symbol>
|
|
394
|
+
<symbol id="ai" overflow="visible">
|
|
395
|
+
<path d="m5.6406-4.6562c0 0.011719-0.011719 0.039062-0.03125 0.078125-0.011719 0.042969-0.015625 0.0625-0.015625 0.0625-0.011719 0.03125-0.03125 0.074219-0.0625 0.125-0.023438 0.054687-0.039062 0.09375-0.046875 0.125-0.054687 0.125-0.19922 0.38672-0.4375 0.78125-0.32422 0.57422-0.77344 1.3086-1.3438 2.2031l-0.34375 0.5625c-0.14844 0.25-0.27734 0.41797-0.39062 0.5-0.125 0.09375-0.25781 0.15234-0.39062 0.17188-0.09375 0.03125-0.23438 0.046875-0.42188 0.046875h-0.84375l-0.03125-0.03125-0.078125-0.03125c-0.085937-0.050781-0.14844-0.11719-0.1875-0.20312-0.054687-0.070313-0.078125-0.23828-0.078125-0.5v-5.0781c0-0.09375 0.003906-0.16016 0.015625-0.20312 0-0.019531 0.019531-0.070313 0.0625-0.15625 0.09375-0.125 0.22266-0.19531 0.39062-0.21875h0.75c0.13281 0.023437 0.24219 0.074219 0.32812 0.15625 0.082031 0.09375 0.12891 0.19531 0.14062 0.29688v4.2031c0-0.019531 0.003906-0.046875 0.015625-0.078125 0.007813-0.039062 0.015625-0.066406 0.015625-0.078125 0.019531-0.019531 0.039062-0.054687 0.0625-0.10938 0.03125-0.050781 0.046875-0.09375 0.046875-0.125 0.0625-0.13281 0.20703-0.39453 0.4375-0.78125 0.33203-0.58203 0.78125-1.3203 1.3438-2.2188l0.35938-0.5625c0.14453-0.23828 0.26953-0.39453 0.375-0.46875 0.13281-0.10156 0.26953-0.17188 0.40625-0.20312 0.082031-0.019531 0.21094-0.03125 0.39062-0.03125h0.85938l0.03125 0.03125c0.019531 0 0.039062 0.007813 0.0625 0.015625 0.03125 0.011719 0.050781 0.023438 0.0625 0.03125 0.10156 0.074219 0.17188 0.16406 0.20312 0.26562 0.019531 0.0625 0.03125 0.14844 0.03125 0.25v5.2344c0 0.10547-0.007813 0.18359-0.015625 0.23438-0.011719 0.023437-0.039062 0.0625-0.078125 0.125-0.074219 0.125-0.19922 0.20312-0.375 0.23438h-0.75c-0.11719-0.019531-0.21484-0.0625-0.29688-0.125-0.09375-0.082031-0.15234-0.19531-0.17188-0.34375z"/>
|
|
396
|
+
</symbol>
|
|
397
|
+
<symbol id="dq" overflow="visible">
|
|
398
|
+
<path d="m5.4531-3.5469 0.15625 0.0625c0.10156 0.03125 0.21094 0.085937 0.32812 0.15625 0.39453 0.19922 0.66406 0.48047 0.8125 0.84375 0.03125 0.11719 0.054688 0.24609 0.078125 0.39062 0 0.14844-0.007813 0.25781-0.015625 0.32812-0.03125 0.54297-0.18359 0.94531-0.45312 1.2031-0.10547 0.11719-0.24609 0.21484-0.42188 0.29688-0.36719 0.17969-0.94922 0.26562-1.75 0.26562h-2.875c-0.15625-0.019531-0.27734-0.085938-0.35938-0.20312-0.054687-0.082031-0.085937-0.17188-0.09375-0.26562v-5.4844c0.007813-0.13281 0.0625-0.24219 0.15625-0.32812 0.082031-0.070312 0.17969-0.11719 0.29688-0.14062h2.875c0.67578 0 1.1797 0.074219 1.5156 0.21875 0.14453 0.0625 0.26562 0.13672 0.35938 0.21875 0.23828 0.24219 0.37891 0.58594 0.42188 1.0312v0.14062c0.007813 0.0625 0.015625 0.10938 0.015625 0.14062-0.023438 0.16797-0.074219 0.32422-0.15625 0.46875-0.13672 0.21094-0.34375 0.39062-0.625 0.54688l-0.09375 0.046875c-0.042969 0.023437-0.074219 0.039063-0.09375 0.046875-0.023438 0-0.046875 0.007812-0.078125 0.015625zm-2.9219-0.35938c0.58203 0 1.0156-0.023438 1.2969-0.078125 0.22656-0.039063 0.42188-0.11328 0.57812-0.21875 0.13281-0.070313 0.22656-0.17578 0.28125-0.3125 0.050781-0.082031 0.066406-0.19531 0.046875-0.34375-0.042969-0.16406-0.10938-0.28906-0.20312-0.375-0.085938-0.070313-0.25-0.12891-0.5-0.17188h-1.5zm0 2.8906h1.1719c0.46875 0 0.80078-0.0625 1-0.1875 0.19531-0.13281 0.30469-0.34766 0.32812-0.64062 0.039062-0.36328-0.042969-0.66406-0.25-0.90625-0.054688-0.0625-0.11719-0.11328-0.1875-0.15625-0.26172-0.16406-0.67188-0.25-1.2344-0.25h-0.82812z"/>
|
|
399
|
+
</symbol>
|
|
400
|
+
<symbol id="dp" overflow="visible">
|
|
401
|
+
<path d="m2.2188-3c0 0.074219 0.003906 0.20312 0.015625 0.39062 0.082031 0.61719 0.26953 1.0625 0.5625 1.3438 0.20703 0.17969 0.47266 0.30469 0.79688 0.375 0.44531 0.074219 0.94141 0.023437 1.4844-0.15625 0.32031-0.10156 0.62891-0.27344 0.92188-0.51562 0.007812-0.007812 0.09375-0.078125 0.25-0.20312 0.10156-0.09375 0.19141-0.082031 0.26562 0.03125 0.019531 0.03125 0.03125 0.09375 0.03125 0.1875v0.17188c0.007813 0.0625 0.019531 0.10938 0.03125 0.14062l0.046875 0.42188c0 0.11719-0.007812 0.18359-0.015625 0.20312-0.03125 0.042969-0.09375 0.085937-0.1875 0.125-0.11719 0.074219-0.26172 0.14844-0.4375 0.21875-0.65625 0.28125-1.3125 0.42188-1.9688 0.42188-1.0742 0-1.9062-0.23828-2.5-0.71875-0.03125-0.03125-0.078125-0.066406-0.14062-0.10938-0.0625-0.050781-0.10547-0.09375-0.125-0.125-0.27344-0.30078-0.48438-0.66016-0.64062-1.0781-0.09375-0.30078-0.15625-0.69141-0.1875-1.1719v-0.40625c0-0.039063 0.003906-0.097656 0.015625-0.17188 0.007812-0.070312 0.015625-0.12891 0.015625-0.17188 0.0625-0.66406 0.25-1.2227 0.5625-1.6719 0.13281-0.16406 0.24219-0.28906 0.32812-0.375 0.13281-0.125 0.26953-0.22656 0.40625-0.3125 0.28906-0.17578 0.58203-0.30078 0.875-0.375 0.25-0.0625 0.56641-0.10156 0.95312-0.125 0.73828-0.03125 1.3633 0.09375 1.875 0.375 0.125 0.0625 0.27344 0.17188 0.45312 0.32812 0.03125 0.023437 0.066406 0.058594 0.10938 0.10938 0.039063 0.054688 0.070313 0.089844 0.09375 0.10938 0.34375 0.4375 0.53516 1.0312 0.57812 1.7812 0.007812 0.054687 0.015625 0.125 0.015625 0.21875 0.007813 0.10547 0.007813 0.21094 0 0.3125-0.011719 0.09375-0.0625 0.1875-0.15625 0.28125-0.09375 0.085937-0.19531 0.13281-0.29688 0.14062zm0-0.75h2.9375c0-0.36328-0.046875-0.70312-0.14062-1.0156-0.074219-0.1875-0.15234-0.34766-0.23438-0.48438-0.15625-0.19531-0.38672-0.31641-0.6875-0.35938-0.58594-0.10156-1.0469 0.03125-1.3906 0.40625-0.074219 0.09375-0.14844 0.19922-0.21875 0.3125-0.13672 0.27344-0.22656 0.65234-0.26562 1.1406z"/>
|
|
402
|
+
</symbol>
|
|
403
|
+
<symbol id="do" overflow="visible">
|
|
404
|
+
<path d="m2.4688-5.3906h-0.28125c-0.13672 0.011719-0.33984 0.015625-0.60938 0.015625h-0.23438-0.14062c-0.054687 0-0.10156 0.007812-0.14062 0.015625-0.1875 0-0.3125-0.015625-0.375-0.046875-0.14844-0.050781-0.24219-0.15625-0.28125-0.3125-0.023438-0.039062-0.03125-0.097656-0.03125-0.17188 0-0.082031 0.015625-0.16016 0.046875-0.23438 0.03125-0.082031 0.09375-0.15625 0.1875-0.21875 0.082031-0.050781 0.25-0.078125 0.5-0.078125h4.75c0.10156 0 0.17969 0.011719 0.23438 0.03125 0.019531 0 0.070312 0.023437 0.15625 0.0625 0.10156 0.085937 0.16406 0.20312 0.1875 0.35938 0.03125 0.14844 0.003906 0.27344-0.078125 0.375-0.042969 0.085938-0.10938 0.14844-0.20312 0.1875-0.0625 0.03125-0.19531 0.046875-0.39062 0.046875h-0.14062-0.21875c-0.09375-0.007813-0.16797-0.015625-0.21875-0.015625h-0.3125-0.15625c-0.0625-0.007812-0.10938-0.015625-0.14062-0.015625h-0.20312v4.9219c-0.023438 0.13672-0.078125 0.24609-0.17188 0.32812-0.074219 0.074219-0.17188 0.12109-0.29688 0.14062h-0.76562c-0.13672 0-0.23438-0.0039062-0.29688-0.015625-0.19922-0.0625-0.32031-0.17969-0.35938-0.35938-0.011719-0.03125-0.015625-0.10938-0.015625-0.23438z"/>
|
|
405
|
+
</symbol>
|
|
406
|
+
<symbol id="dn" overflow="visible">
|
|
407
|
+
<path d="m2.6406-4.5156v4.0469c-0.011719 0.09375-0.042969 0.17969-0.09375 0.25-0.011719 0.03125-0.039063 0.0625-0.078125 0.09375-0.074219 0.0625-0.15625 0.10156-0.25 0.10938-0.074219 0.011719-0.18359 0.015625-0.32812 0.015625h-0.5c-0.14844-0.019531-0.26172-0.078125-0.34375-0.17188l-0.078125-0.125-0.046875-0.17188v-5.3594c0-0.13281 0.015625-0.23438 0.046875-0.29688 0.007812-0.019531 0.03125-0.0625 0.0625-0.125 0.09375-0.09375 0.21094-0.14844 0.35938-0.17188h1.4531c0.10156 0.011719 0.20703 0.039063 0.3125 0.078125 0.15625 0.074219 0.28125 0.19531 0.375 0.35938 0.019531 0.042969 0.039062 0.10547 0.0625 0.1875 0.03125 0.074219 0.050781 0.11719 0.0625 0.125 0.11328 0.25 0.26953 0.63281 0.46875 1.1406l0.71875 1.7031c0.09375 0.24219 0.16406 0.42188 0.21875 0.54688 0.039062 0.11719 0.078125 0.19531 0.10938 0.23438 0.007813-0.03125 0.023437-0.066406 0.046875-0.10938 0.019531-0.050781 0.035156-0.09375 0.046875-0.125l0.17188-0.42188 0.64062-1.5469 0.57812-1.3906c0.070312-0.1875 0.125-0.3125 0.15625-0.375 0.082031-0.14453 0.20312-0.25391 0.35938-0.32812 0.09375-0.03125 0.19531-0.054688 0.3125-0.078125h1.2969c0.125 0 0.21875 0.007813 0.28125 0.015625 0.15625 0.023438 0.28125 0.10938 0.375 0.26562 0.03125 0.074219 0.046875 0.17969 0.046875 0.3125v5.3594c0 0.0625-0.015625 0.12109-0.046875 0.17188l-0.078125 0.125c-0.09375 0.09375-0.21094 0.15234-0.34375 0.17188h-0.5c-0.15625 0-0.26562-0.0039062-0.32812-0.015625-0.09375-0.0078125-0.17969-0.046875-0.25-0.10938-0.042969-0.039062-0.070312-0.070312-0.078125-0.09375-0.0625-0.070312-0.09375-0.15625-0.09375-0.25v-4.0625h-0.015625c-0.011719 0.054688-0.027344 0.10156-0.046875 0.14062-0.042969 0.10547-0.074219 0.1875-0.09375 0.25-0.042969 0.085937-0.10156 0.21094-0.17188 0.375-0.0625 0.16797-0.10156 0.27344-0.10938 0.3125l-0.875 2.0469c-0.11719 0.30469-0.1875 0.49219-0.21875 0.5625l-0.125 0.29688c-0.074219 0.10547-0.17188 0.19922-0.29688 0.28125-0.125 0.0625-0.24609 0.10156-0.35938 0.10938h-0.25c-0.1875 0-0.32812-0.003906-0.42188-0.015625-0.14844-0.019531-0.28906-0.09375-0.42188-0.21875-0.074219-0.0625-0.15625-0.19531-0.25-0.40625-0.03125-0.082031-0.12109-0.29688-0.26562-0.64062l-0.84375-2.0938c-0.03125-0.070312-0.078125-0.17578-0.14062-0.3125-0.054687-0.14453-0.085937-0.24219-0.09375-0.29688-0.054687-0.13281-0.078125-0.21094-0.078125-0.23438-0.03125-0.082031-0.046875-0.12891-0.046875-0.14062z"/>
|
|
408
|
+
</symbol>
|
|
409
|
+
<symbol id="dm" overflow="visible">
|
|
410
|
+
<path d="m0.4375-4.7812c0-0.65625 0.26953-1.1562 0.8125-1.5 0.55078-0.34375 1.0977-0.39453 1.6406-0.15625 0.46875 0.21875 0.88281 0.74219 1.25 1.5625 0.13281 0.28125 0.21875 0.49609 0.25 0.64062 0.03125-0.019531 0.10156-0.14062 0.21875-0.35938 0.125-0.22656 0.25391-0.44531 0.39062-0.65625 0.13281-0.21875 0.33203-0.44141 0.59375-0.67188 0.25781-0.22656 0.53906-0.39844 0.84375-0.51562 0.375-0.13281 0.6875-0.17578 0.9375-0.125 0.23828 0.054688 0.39844 0.19531 0.48438 0.42188 0.082031 0.23047 0.046875 0.44922-0.10938 0.65625-0.125 0.15625-0.34375 0.25-0.65625 0.28125-0.30469 0.023437-0.5625 0.13281-0.78125 0.32812-0.23047 0.1875-0.47656 0.52734-0.73438 1.0156-0.25 0.49219-0.4375 1.0312-0.5625 1.625-0.023437 0.074219-0.015625 0.18359 0.015625 0.32812 0.03125 0.13672 0.078125 0.43359 0.14062 0.89062 0.070313 0.44922 0.11719 0.99609 0.14062 1.6406 0.019531 0.67578 0.03125 1.1094 0.03125 1.2969 0 0.25-0.015625 0.4375-0.046875 0.5625-0.11719 0.35156-0.36719 0.57812-0.75 0.67188-0.38672 0.09375-0.71484 0.019531-0.98438-0.21875-0.21875-0.16797-0.34375-0.42188-0.375-0.76562-0.023438-0.34375-0.015625-0.64062 0.015625-0.89062 0-1.1367 0.125-2.1641 0.375-3.0938 0-0.019531 0.015625-0.085938 0.046875-0.20312 0.039062-0.11328 0.0625-0.19531 0.0625-0.25l-0.046875-0.29688-0.125-0.5625c-0.24219-0.97656-0.48438-1.5938-0.73438-1.8438-0.19922-0.1875-0.39062-0.26562-0.57812-0.23438-0.1875 0.023437-0.30859 0.10156-0.35938 0.23438-0.03125 0.042969-0.046875 0.10547-0.046875 0.1875z"/>
|
|
411
|
+
</symbol>
|
|
412
|
+
<symbol id="dl" overflow="visible">
|
|
413
|
+
<path d="m5.9688-2.125c-0.26172 0.69922-0.4375 1.1172-0.53125 1.25-0.10547 0.1875-0.26172 0.37109-0.46875 0.54688-0.61719 0.47656-1.3398 0.67969-2.1719 0.60938-0.82422-0.0625-1.4141-0.3125-1.7656-0.75-0.27344-0.35156-0.40234-0.8125-0.39062-1.375 0.007813-0.57031 0.14453-1.0469 0.40625-1.4219 0.03125-0.050781 0.066406-0.10938 0.10938-0.17188 0.050781-0.0625 0.039062-0.14062-0.03125-0.23438-0.011719-0.007813-0.023438-0.019531-0.03125-0.03125-0.19922-0.25-0.32812-0.57812-0.39062-0.98438s-0.070313-0.70703-0.015625-0.90625c0.13281-0.5625 0.625-0.91406 1.4688-1.0625 0.32031-0.050781 0.63281-0.078125 0.9375-0.078125 0.3125 0 0.57812 0.015625 0.79688 0.046875 0.22656 0.023438 0.45703 0.058594 0.6875 0.10938 0.22656 0.054687 0.41016 0.10547 0.54688 0.15625 0.13281 0.042969 0.28906 0.09375 0.46875 0.15625 0.17578 0.0625 0.30078 0.10938 0.375 0.14062-0.011719 0.054688-0.039062 0.125-0.078125 0.21875-0.042969 0.09375-0.10547 0.23047-0.1875 0.40625-0.074219 0.17969-0.14062 0.34375-0.20312 0.5-0.03125 0.054688-0.054688 0.078125-0.0625 0.078125-0.042969 0.011719-0.1875-0.039063-0.4375-0.15625-0.24219-0.125-0.60156-0.23438-1.0781-0.32812-0.46875-0.10156-0.98438-0.11719-1.5469-0.046875-0.52344 0.09375-0.85547 0.32031-1 0.67188-0.16797 0.40625-0.13672 0.6875 0.09375 0.84375 0.070312 0.0625 0.14062 0.09375 0.20312 0.09375 0.019531 0 0.078125-0.023438 0.17188-0.078125 0.10156-0.050781 0.20703-0.09375 0.3125-0.125l0.32812-0.078125c0.20703-0.039062 0.4375-0.0625 0.6875-0.0625 0.17578 0 0.28516 0.007812 0.32812 0.015625 0.23828 0.0625 0.39453 0.21875 0.46875 0.46875v0.26562c0 0.16797-0.070312 0.3125-0.20312 0.4375-0.13672 0.125-0.35547 0.17969-0.65625 0.15625-0.52344 0-0.9375-0.082031-1.25-0.25-0.09375-0.039062-0.15234-0.0625-0.17188-0.0625-0.074219-0.007812-0.15234 0.015625-0.23438 0.078125-0.074219 0.054687-0.125 0.11719-0.15625 0.1875-0.085937 0.17969-0.0625 0.47656 0.0625 0.89062 0.125 0.41797 0.36328 0.70312 0.71875 0.85938 0.13281 0.074219 0.28906 0.12109 0.46875 0.14062 1.1445 0.19922 2.1875-0.082031 3.125-0.84375 0.15625-0.16406 0.25391-0.25781 0.29688-0.28125z"/>
|
|
414
|
+
</symbol>
|
|
415
|
+
<symbol id="dk" overflow="visible">
|
|
416
|
+
<path d="m0.85938-6.5781h1.3281v4.9062c0 0.24219 0.03125 0.39844 0.09375 0.46875 0.125 0.14844 0.28125 0.19531 0.46875 0.14062 0.1875-0.050781 0.30469-0.16406 0.35938-0.34375 0.03125-0.09375-0.015625-0.25781-0.14062-0.5 0.22656 0.1875 0.35938 0.40625 0.39062 0.65625 0.070313 0.34375-0.007813 0.66406-0.23438 0.95312-0.21875 0.28125-0.5 0.42578-0.84375 0.4375-0.28125 0-0.52344-0.070312-0.71875-0.20312-0.1875-0.13281-0.32812-0.30469-0.42188-0.51562-0.085937-0.20703-0.14844-0.37891-0.1875-0.51562-0.042969-0.14453-0.070313-0.28125-0.078125-0.40625-0.011719-0.16406-0.015625-0.42188-0.015625-0.76562z"/>
|
|
417
|
+
</symbol>
|
|
418
|
+
<symbol id="dj" overflow="visible">
|
|
419
|
+
<path d="m3.0312-7.0781 0.96875-2.4531 0.10938-0.1875 0.125-0.015625h1.2188l-1.4688 2.4219-0.14062 0.21875-0.25 0.015625zm2.0781 5.9062-0.375 0.45312c-0.33594 0.35547-0.68359 0.60156-1.0469 0.73438-0.35547 0.13281-0.68359 0.17188-0.98438 0.10938-0.29297-0.054688-0.53125-0.12109-0.71875-0.20312-0.1875-0.082031-0.33594-0.17578-0.4375-0.28125-0.66797-0.55078-0.96484-1.6641-0.89062-3.3438 0.050781-1.1562 0.34766-1.9531 0.89062-2.3906 0.23828-0.19531 0.50781-0.33594 0.8125-0.42188 0.3125-0.082031 0.65625-0.082031 1.0312 0 0.375 0.074219 0.71094 0.24609 1.0156 0.51562 0.32031 0.29297 0.625 0.73438 0.90625 1.3281l0.54688-1.75 0.0625-0.14062 0.125-0.015625h1.2031c-0.042969 0.19922-0.17188 0.63281-0.39062 1.2969-0.21094 0.66797-0.35938 1.125-0.45312 1.375l-0.28125 0.79688c-0.10547 0.21094-0.15625 0.33984-0.15625 0.39062 0 0.03125 0.039062 0.17188 0.125 0.42188 0.21875 0.69922 0.44531 1.0898 0.6875 1.1719 0.10156 0.03125 0.19531 0 0.28125-0.09375 0.082031-0.09375 0.12891-0.19531 0.14062-0.3125h1.3438c0 0.5625-0.23047 1.0117-0.6875 1.3438-0.46094 0.32031-0.94531 0.41016-1.4531 0.26562-0.28125-0.074219-0.54688-0.23438-0.79688-0.48438-0.25-0.25781-0.41797-0.51562-0.5-0.76562zm-0.84375-1.0156c0.039063-0.0625 0.082031-0.13281 0.125-0.21875 0.050781-0.082031 0.082031-0.13281 0.09375-0.15625 0.019531-0.019531 0.03125-0.066406 0.03125-0.14062 0-0.070313-0.011719-0.14844-0.03125-0.23438-0.023437-0.082031-0.058594-0.21094-0.10938-0.39062-0.1875-0.59375-0.34375-1.0078-0.46875-1.25-0.125-0.25-0.27344-0.4375-0.4375-0.5625-0.16797-0.13281-0.36719-0.19141-0.59375-0.17188-0.21875 0.011719-0.40234 0.10156-0.54688 0.26562-0.21875 0.24219-0.32812 0.80859-0.32812 1.7031 0 0.6875 0.023438 1.1797 0.078125 1.4688 0.0625 0.29297 0.21094 0.50781 0.45312 0.64062 0.0625 0.054687 0.14062 0.085937 0.23438 0.09375 0.51953 0.125 1.0195-0.22266 1.5-1.0469z"/>
|
|
420
|
+
</symbol>
|
|
421
|
+
<symbol id="di" overflow="visible">
|
|
422
|
+
<path d="m6.9062-0.015625c-0.48047 0-0.96875-0.11328-1.4688-0.34375-0.5-0.22656-1.0547-0.53125-1.6562-0.90625-0.59375-0.375-1.0469-0.64062-1.3594-0.79688 0 0.03125-0.023437 0.125-0.0625 0.28125-0.042969 0.14844-0.089844 0.41797-0.14062 0.8125 0.007812 0.15625 0.003906 0.33984-0.015625 0.54688-0.011719 0.21094-0.070313 0.37109-0.17188 0.48438-0.17969 0.25781-0.44922 0.35938-0.8125 0.29688-0.35547-0.054687-0.5625-0.24219-0.625-0.5625-0.03125-0.13281-0.027344-0.30078 0.015625-0.5 0.050781-0.20703 0.10938-0.55469 0.17188-1.0469 0.0625-0.48828 0.085938-1.0938 0.078125-1.8125-0.011719-0.53906-0.0625-1.1172-0.15625-1.7344l-0.09375-0.45312c-0.054687-0.20703-0.058594-0.37891-0.015625-0.51562 0.050781-0.22656 0.20312-0.39062 0.45312-0.48438 0.25781-0.09375 0.49219-0.085938 0.70312 0.015625 0.11328 0.054687 0.20312 0.12109 0.26562 0.20312 0.070313 0.074219 0.11719 0.17969 0.14062 0.3125 0.03125 0.125 0.046875 0.21875 0.046875 0.28125 0.007813 0.054688 0.015625 0.16797 0.015625 0.34375v1.1094 0.60938c0.09375-0.20703 0.28906-0.50781 0.59375-0.90625 0.26953-0.34375 0.5625-0.62891 0.875-0.85938 0.3125-0.23828 0.60156-0.41016 0.875-0.51562 0.26953-0.11328 0.54688-0.20312 0.82812-0.26562 0.28125-0.070313 0.51953-0.10156 0.71875-0.09375 0.20703 0.011719 0.39453 0.023437 0.5625 0.03125 0.17578 0.023437 0.33203 0.054687 0.46875 0.09375 0.22656 0.085937 0.36328 0.25 0.40625 0.5 0.039063 0.25-0.027344 0.46875-0.20312 0.65625-0.11719 0.10547-0.26172 0.15625-0.4375 0.15625-0.17969-0.007813-0.375-0.035156-0.59375-0.078125-0.21875-0.039062-0.50781-0.023438-0.85938 0.046875-0.65625 0.125-1.2344 0.43359-1.7344 0.92188-0.49219 0.48047-0.80469 0.90234-0.9375 1.2656 0.1875 0.054687 0.53125 0.24219 1.0312 0.5625 0.50781 0.3125 1.0352 0.60156 1.5781 0.85938 0.55078 0.26172 1.0391 0.39062 1.4688 0.39062 0.17578 0 0.30469 0.027344 0.39062 0.078125 0.14453 0.074219 0.23438 0.21094 0.26562 0.40625 0.03125 0.1875-0.015625 0.33984-0.14062 0.45312-0.10547 0.10547-0.26172 0.15625-0.46875 0.15625z"/>
|
|
423
|
+
</symbol>
|
|
424
|
+
<symbol id="dh" overflow="visible">
|
|
425
|
+
<path d="m3.1875-7.0781 0.98438-2.4375 0.10938-0.20312 0.125-0.015625h1.2031l-1.4531 2.4219-0.15625 0.21875-0.25 0.015625zm-1.625 1.2656c0.35156-0.32031 0.85938-0.55078 1.5156-0.6875 0.66406-0.13281 1.3477-0.12891 2.0469 0.015625 0.70703 0.14844 1.25 0.44531 1.625 0.89062 0.55078 0.64844 0.78516 1.5547 0.70312 2.7188-0.085937 1.8125-1.0469 2.8125-2.8906 3-0.46875 0.050781-0.99609 0.023438-1.5781-0.078125-0.57422-0.09375-1.043-0.3125-1.4062-0.65625-0.55469-0.50781-0.85938-1.2656-0.92188-2.2656-0.085938-1.3125 0.21875-2.2891 0.90625-2.9375zm4.3125 3.8281c0.10156-0.21875 0.1875-0.51953 0.25-0.90625 0.0625-0.38281 0.0625-0.81641 0-1.2969-0.0625-0.47656-0.21875-0.85156-0.46875-1.125-0.23047-0.22656-0.55469-0.36328-0.96875-0.40625-0.46875-0.039062-0.89844 0.027344-1.2812 0.20312-0.375 0.16797-0.64844 0.34375-0.8125 0.53125-0.15625 0.1875-0.28125 0.37109-0.375 0.54688-0.09375 0.19922-0.17969 0.48438-0.25 0.85938-0.0625 0.36719-0.070312 0.78125-0.015625 1.25 0.0625 0.46875 0.21094 0.84375 0.45312 1.125 0.23828 0.27344 0.58594 0.42969 1.0469 0.46875 0.625 0.074219 1.1445-0.035156 1.5625-0.32812 0.42578-0.30078 0.71094-0.60938 0.85938-0.92188z"/>
|
|
426
|
+
</symbol>
|
|
427
|
+
<symbol id="dg" overflow="visible">
|
|
428
|
+
<path d="m6.5156-5.1562c0.67578 0.60547 0.98828 1.3984 0.9375 2.375-0.074219 1.0742-0.44531 1.8516-1.1094 2.3281-0.60547 0.44922-1.4453 0.64453-2.5156 0.59375-1.0625-0.054688-1.8555-0.33594-2.375-0.85938-0.60547-0.61328-0.87109-1.5391-0.79688-2.7812 0.0625-1.0938 0.44141-1.8789 1.1406-2.3594 0.25-0.17578 0.55078-0.30469 0.90625-0.39062 0.35156-0.09375 0.64844-0.14453 0.89062-0.15625 0.25-0.007812 0.58594-0.015625 1.0156-0.015625h3.7031v1.3594l-0.48438-0.03125zm-0.71875 3.5156c0.22656-0.30078 0.36719-0.69141 0.42188-1.1719 0.0625-0.47656 0-0.91016-0.1875-1.2969-0.26172-0.46875-0.66797-0.78516-1.2188-0.95312-0.54297-0.16406-1.0703-0.17969-1.5781-0.046875-0.5 0.13672-0.86719 0.38281-1.0938 0.73438-0.25 0.41797-0.32812 0.99609-0.23438 1.7344 0.09375 0.74219 0.31641 1.2773 0.67188 1.6094 0.20703 0.17969 0.51562 0.28906 0.92188 0.32812 0.40625 0.042969 0.82812-0.015625 1.2656-0.17188 0.4375-0.16406 0.78125-0.42188 1.0312-0.76562z"/>
|
|
429
|
+
</symbol>
|
|
430
|
+
<symbol id="df" overflow="visible">
|
|
431
|
+
<path d="m4.5781-2.3594c0.11328-0.10156 0.19531-0.51562 0.25-1.2344 0.050781-0.72656 0.078125-1.3906 0.078125-1.9844 0-0.11328-0.007812-0.22656-0.015625-0.34375 0-0.125 0.015625-0.24219 0.046875-0.35938 0.03125-0.11328 0.09375-0.20703 0.1875-0.28125 0.13281-0.125 0.30469-0.17578 0.51562-0.15625 0.20703 0.011719 0.36719 0.089844 0.48438 0.23438 0.09375 0.11719 0.14062 0.27344 0.14062 0.46875 0 1-0.042969 1.8047-0.125 2.4062l-0.078125 0.6875c-0.023438 0.085937-0.046875 0.18359-0.078125 0.29688-0.023437 0.11719-0.039063 0.19531-0.046875 0.23438v0.17188c0 0.085938 0.003906 0.17969 0.015625 0.28125 0.03125 0.34375 0.10938 0.57812 0.23438 0.70312 0.13281 0.125 0.25391 0.17188 0.35938 0.14062 0.10156-0.039062 0.1875-0.10156 0.25-0.1875 0.039063-0.070312 0.0625-0.15625 0.0625-0.25h1.3594c0 0.26172-0.054688 0.49609-0.15625 0.70312-0.21875 0.46875-0.58594 0.77344-1.0938 0.90625-0.51172 0.13281-0.97656 0.054687-1.3906-0.23438-0.21094-0.13281-0.35547-0.28125-0.4375-0.4375-0.0625 0.074219-0.16406 0.16797-0.29688 0.28125-0.13672 0.10547-0.29297 0.19531-0.46875 0.26562-0.41797 0.17578-0.85547 0.23438-1.3125 0.17188-0.44922-0.0625-0.85547-0.22266-1.2188-0.48438 0 0.46875 0.066406 0.98828 0.20312 1.5625 0.14453 0.57031 0.28906 0.95703 0.4375 1.1562 0.11328 0.17578 0.17969 0.27344 0.20312 0.29688 0.125 0.26953 0.082031 0.53125-0.125 0.78125-0.21094 0.25-0.46094 0.33594-0.75 0.26562-0.35547-0.09375-0.61719-0.46875-0.78125-1.125-0.15625-0.65625-0.26562-1.6328-0.32812-2.9219-0.042969-0.64453-0.0625-1.6172-0.0625-2.9219 0-0.019531-0.007813-0.0625-0.015625-0.125v-0.14062-1.1094-0.32812c0.007812-0.14453 0.015625-0.25391 0.015625-0.32812 0-0.65625 0.10156-1.0859 0.3125-1.2969 0.13281-0.13281 0.30078-0.17578 0.5-0.125 0.19531 0.054688 0.34766 0.19922 0.45312 0.4375 0.070312 0.28125 0.097656 0.50781 0.078125 0.67188-0.011719 0.15625-0.054687 0.39062-0.125 0.70312-0.0625 0.3125-0.10156 0.5625-0.10938 0.75 0 0.33594 0.070312 0.76562 0.21875 1.2969 0.15625 0.53125 0.3125 0.90625 0.46875 1.125 0.16406 0.23047 0.39062 0.39062 0.67188 0.48438 0.28906 0.085938 0.57031 0.0625 0.84375-0.0625 0.125-0.070312 0.25781-0.21094 0.40625-0.42188 0.14453-0.21875 0.21875-0.42578 0.21875-0.625z"/>
|
|
432
|
+
</symbol>
|
|
433
|
+
<symbol id="de" overflow="visible">
|
|
434
|
+
<path d="m1.5625-5.8125c0.35156-0.32031 0.85938-0.55078 1.5156-0.6875 0.66406-0.13281 1.3477-0.12891 2.0469 0.015625 0.70703 0.14844 1.25 0.44531 1.625 0.89062 0.55078 0.64844 0.78516 1.5547 0.70312 2.7188-0.085937 1.8125-1.0469 2.8125-2.8906 3-0.46875 0.050781-0.99609 0.023438-1.5781-0.078125-0.57422-0.09375-1.043-0.3125-1.4062-0.65625-0.55469-0.50781-0.85938-1.2656-0.92188-2.2656-0.085938-1.3125 0.21875-2.2891 0.90625-2.9375zm4.3125 3.8281c0.10156-0.21875 0.1875-0.51953 0.25-0.90625 0.0625-0.38281 0.0625-0.81641 0-1.2969-0.0625-0.47656-0.21875-0.85156-0.46875-1.125-0.23047-0.22656-0.55469-0.36328-0.96875-0.40625-0.46875-0.039062-0.89844 0.027344-1.2812 0.20312-0.375 0.16797-0.64844 0.34375-0.8125 0.53125-0.15625 0.1875-0.28125 0.37109-0.375 0.54688-0.09375 0.19922-0.17969 0.48438-0.25 0.85938-0.0625 0.36719-0.070312 0.78125-0.015625 1.25 0.0625 0.46875 0.21094 0.84375 0.45312 1.125 0.23828 0.27344 0.58594 0.42969 1.0469 0.46875 0.625 0.074219 1.1445-0.035156 1.5625-0.32812 0.42578-0.30078 0.71094-0.60938 0.85938-0.92188z"/>
|
|
435
|
+
</symbol>
|
|
436
|
+
<symbol id="dd" overflow="visible">
|
|
437
|
+
<path d="m2.4688-6.2344h4.9375l-0.046875 0.15625-0.0625 0.35938-0.23438 1.1094-0.65625 3.0625-0.23438 1.125-0.0625 0.3125-0.015625 0.0625-0.015625 0.03125-0.078125 0.015625h-0.96875l0.21875-1.0469 0.59375-2.75 0.1875-0.96875 0.14062-0.59375h-2.8438l-0.078125 0.39062-0.17188 0.8125-0.375 1.7656-0.21875 1-0.21875 1.0312-0.046875 0.26562v0.046875l-0.015625 0.03125-0.09375 0.015625h-0.96875l0.3125-1.4219 0.625-2.9531 0.25-1.2031 0.09375-0.42188z"/>
|
|
438
|
+
</symbol>
|
|
439
|
+
<symbol id="ah" overflow="visible">
|
|
440
|
+
<path d="m3.375-5.5625c0.070312-0.050781 0.19141-0.125 0.35938-0.21875 0.25781-0.15625 0.55469-0.28516 0.89062-0.39062 0.35156-0.125 0.69531-0.19141 1.0312-0.20312 0.28906-0.007812 0.50391 0.007812 0.64062 0.046875 0.0625 0.023437 0.14453 0.058594 0.25 0.10938 0.44531 0.25 0.74219 0.73047 0.89062 1.4375 0.019531 0.10547 0.03125 0.21875 0.03125 0.34375 0.019531 0.17969 0.023438 0.30859 0.015625 0.39062-0.011719 0.66797-0.15625 1.3086-0.4375 1.9219-0.28125 0.61719-0.67188 1.1328-1.1719 1.5469-0.55469 0.44922-1.1172 0.6875-1.6875 0.71875-0.14844 0.007813-0.30859 0-0.48438-0.03125-0.38672-0.054688-0.71875-0.19531-1-0.4375-0.10547-0.09375-0.17969-0.16016-0.21875-0.20312-0.023437-0.03125-0.0625-0.070312-0.125-0.125l-0.015625 0.125-0.03125 0.17188-0.125 0.57812-0.35938 1.6562-0.14062 0.60938-0.015625 0.15625-0.015625 0.0625-0.09375 0.015625h-1l0.14062-0.65625 0.32812-1.5625 0.85938-4.0625 0.375-1.7812 0.125-0.60938 0.078125-0.28125h1.0469l-0.03125 0.14062-0.0625 0.34375zm2.9844 1.9531v-0.25c-0.023437-0.1875-0.042969-0.32031-0.0625-0.40625-0.054687-0.21875-0.13672-0.41406-0.25-0.59375-0.074219-0.11328-0.16797-0.22266-0.28125-0.32812-0.085937-0.0625-0.1875-0.11719-0.3125-0.17188-0.21094-0.10156-0.43359-0.14453-0.67188-0.125-0.46094 0.042969-0.875 0.21484-1.25 0.51562-0.085938 0.0625-0.16406 0.13672-0.23438 0.21875 0 0.011719-0.011719 0.027344-0.03125 0.046875-0.023437 0.011719-0.039063 0.023437-0.046875 0.03125-0.011719 0.023437-0.015625 0.054687-0.015625 0.09375-0.023437 0.074219-0.039063 0.125-0.046875 0.15625-0.011719 0.125-0.046875 0.30859-0.10938 0.54688-0.054687 0.26172-0.15234 0.75781-0.29688 1.4844l-0.125 0.5c-0.011719 0.074219-0.015625 0.125-0.015625 0.15625-0.023437 0.054687-0.03125 0.085937-0.03125 0.09375l0.046875 0.125c0.039062 0.13672 0.085938 0.24219 0.14062 0.3125 0.070313 0.09375 0.14453 0.17188 0.21875 0.23438 0.38281 0.33594 0.90625 0.35938 1.5625 0.078125 0.30078-0.13281 0.58203-0.33203 0.84375-0.59375 0.39453-0.39453 0.67188-0.85156 0.82812-1.375 0.0625-0.1875 0.097656-0.35156 0.10938-0.5 0-0.019531 0.003906-0.050781 0.015625-0.09375 0.007812-0.039063 0.015625-0.078125 0.015625-0.10938z"/>
|
|
441
|
+
</symbol>
|
|
442
|
+
<symbol id="ag" overflow="visible">
|
|
443
|
+
<path d="m2.4688-6.2344h1.0469l-0.03125 0.14062-0.046875 0.23438-0.14062 0.73438-0.59375 2.75-0.20312 0.95312-0.0625 0.28125-0.03125 0.15625 0.09375-0.125 0.1875-0.26562 0.59375-0.82812 1.875-2.6094 0.70312-1.0156 0.21875-0.28125 0.046875-0.078125 0.03125-0.03125 0.046875-0.015625h1.5l-0.046875 0.15625-0.0625 0.35938-0.25 1.1094-0.64062 3.0625-0.23438 1.125-0.078125 0.3125v0.0625l-0.015625 0.03125-0.078125 0.015625h-0.98438l0.3125-1.4219 0.57812-2.7344 0.23438-1.0938-0.28125 0.375-0.5625 0.79688-1.8906 2.6562-0.71875 1-0.21875 0.29688-0.046875 0.0625-0.03125 0.046875-0.046875 0.015625h-1.5l0.3125-1.4219 0.625-2.9531 0.25-1.2031 0.09375-0.42188z"/>
|
|
444
|
+
</symbol>
|
|
445
|
+
<symbol id="dc" overflow="visible">
|
|
446
|
+
<path d="m2.4531-6.2344h2.2969c0.36328 0 0.63281 0.007813 0.8125 0.015625 0.25781 0.023438 0.49219 0.070312 0.70312 0.14062 0.23828 0.09375 0.41406 0.22656 0.53125 0.39062 0.10156 0.17969 0.15625 0.39062 0.15625 0.64062s-0.027344 0.44922-0.078125 0.59375c-0.074219 0.13672-0.13672 0.23047-0.1875 0.28125-0.19922 0.24219-0.52734 0.44922-0.98438 0.625-0.03125 0.011719-0.085937 0.03125-0.15625 0.0625-0.0625 0.023437-0.10938 0.039063-0.14062 0.046875 0.03125 0.011719 0.085938 0.039062 0.17188 0.078125 0.1875 0.10547 0.30078 0.16797 0.34375 0.1875 0.39453 0.23047 0.64062 0.49219 0.73438 0.78125 0.039062 0.15625 0.023438 0.38281-0.046875 0.67188-0.15625 0.5625-0.44922 0.98047-0.875 1.25-0.38672 0.26172-0.86719 0.41406-1.4375 0.45312-0.1875 0.011719-0.46875 0.015625-0.84375 0.015625h-2.3125l0.29688-1.4219 0.625-2.9531 0.25-1.2031 0.09375-0.42188zm0.54688 2.4062h0.6875c0.10156 0 0.26953-0.003906 0.5-0.015625 0.38281-0.039062 0.76562-0.12891 1.1406-0.26562 0.35156-0.11328 0.56641-0.26562 0.64062-0.45312 0.007812-0.070312 0.015625-0.12891 0.015625-0.17188v-0.15625c-0.03125-0.125-0.10938-0.22266-0.23438-0.29688-0.074219-0.0625-0.17188-0.10156-0.29688-0.125-0.13672-0.039062-0.34375-0.070312-0.625-0.09375h-1.5c0 0.023438-0.007813 0.039062-0.015625 0.046875 0 0.03125-0.007812 0.054687-0.015625 0.0625 0 0.03125-0.011719 0.085937-0.03125 0.15625-0.011719 0.0625-0.015625 0.10938-0.015625 0.14062-0.085938 0.36719-0.13672 0.61719-0.15625 0.75-0.042969 0.11719-0.0625 0.21484-0.0625 0.29688-0.023438 0.0625-0.03125 0.10547-0.03125 0.125zm-0.64062 2.9531h1.1406c0.46875 0 0.81641-0.019531 1.0469-0.0625 0.20703-0.050781 0.35938-0.10156 0.45312-0.15625 0.3125-0.14453 0.52344-0.375 0.64062-0.6875 0.050781-0.15625 0.066406-0.28516 0.046875-0.39062-0.054688-0.22656-0.23438-0.42578-0.54688-0.59375-0.27344-0.14453-0.60156-0.23438-0.98438-0.26562h-0.59375-0.67188-0.0625v0.015625c-0.011719 0.011719-0.015625 0.023437-0.015625 0.03125 0 0.011719-0.007812 0.03125-0.015625 0.0625v0.046875c-0.023437 0.16797-0.054687 0.30469-0.09375 0.40625l-0.25 1.2031z"/>
|
|
447
|
+
</symbol>
|
|
448
|
+
<symbol id="db" overflow="visible">
|
|
449
|
+
<path d="m5.9844-1.4844c0 0.023437-0.007813 0.0625-0.015625 0.125-0.011719 0.054687-0.015625 0.085937-0.015625 0.09375-0.023437 0.09375-0.042969 0.23438-0.0625 0.42188 0 0.054688-0.011719 0.11719-0.03125 0.1875v0.078125c0 0.023437-0.015625 0.03125-0.046875 0.03125-0.0625 0.042969-0.10547 0.070313-0.125 0.078125-0.074219 0.054688-0.23047 0.13281-0.46875 0.23438-0.46875 0.19922-0.97656 0.32031-1.5156 0.375-0.34375 0.019531-0.61719 0-0.8125-0.0625-0.17969-0.03125-0.38672-0.10156-0.625-0.21875-0.11719-0.070313-0.21875-0.14453-0.3125-0.21875-0.34375-0.26953-0.58984-0.625-0.73438-1.0625-0.14844-0.44531-0.19531-0.89453-0.14062-1.3438 0.11328-0.94531 0.50391-1.7852 1.1719-2.5156 0.39453-0.41406 0.83203-0.72656 1.3125-0.9375 0.34375-0.16406 0.73828-0.24219 1.1875-0.23438 0.44531 0.011719 0.82812 0.13281 1.1406 0.35938 0.082031 0.074219 0.16016 0.15234 0.23438 0.23438 0.10156 0.125 0.17969 0.24219 0.23438 0.34375 0.125 0.27344 0.20312 0.5625 0.23438 0.875v0.20312c0.007812 0.085938 0.015625 0.14844 0.015625 0.1875-0.011719 0.26172-0.0625 0.65234-0.15625 1.1719h-4.3594l-0.03125 0.375c-0.011719 0.16797 0 0.35938 0.03125 0.57812 0.039062 0.23047 0.11328 0.4375 0.21875 0.625 0.0625 0.125 0.14453 0.24219 0.25 0.34375 0.25 0.27344 0.5625 0.41797 0.9375 0.4375 0.11328 0.011719 0.26953 0.007812 0.46875-0.015625 0.4375-0.03125 0.89062-0.15625 1.3594-0.375 0.019531-0.007813 0.15625-0.082031 0.40625-0.21875 0.14453-0.09375 0.22656-0.14453 0.25-0.15625zm-0.15625-2.375v-0.25c0-0.1875-0.039063-0.39453-0.10938-0.625-0.042969-0.13281-0.09375-0.25-0.15625-0.34375-0.074219-0.09375-0.12109-0.14844-0.14062-0.17188-0.41797-0.375-0.90234-0.45703-1.4531-0.25-0.5 0.1875-0.93359 0.53906-1.2969 1.0469-0.125 0.17969-0.23047 0.375-0.3125 0.59375z"/>
|
|
450
|
+
</symbol>
|
|
451
|
+
<symbol id="da" overflow="visible">
|
|
452
|
+
<path d="m1.6719-6.2344h5.7031l-0.03125 0.23438-0.09375 0.40625-0.046875 0.25h-0.45312l-0.078125-0.015625h-1.75l-0.03125 0.015625-0.015625 0.0625-0.046875 0.21875-0.1875 0.8125-0.42188 2.0781-0.21875 0.9375-0.17188 0.90625-0.0625 0.23438-0.015625 0.046875-0.015625 0.03125-0.0625 0.015625h-1.0156l0.23438-1.0469 0.42188-2.0938 0.32812-1.5 0.09375-0.42188 0.0625-0.29688-2.3125 0.015625 0.0625-0.25 0.078125-0.40625z"/>
|
|
453
|
+
</symbol>
|
|
454
|
+
<symbol id="cz" overflow="visible">
|
|
455
|
+
<path d="m2.4375-6.2344h1.4844l0.67188 3.3594 0.20312 1.0625 0.078125 0.34375 0.03125 0.1875 0.23438-0.375 0.48438-0.79688 1.5781-2.5 0.5625-0.90625 0.15625-0.26562 0.046875-0.0625 0.03125-0.03125 0.03125-0.015625h1.5156l-0.03125 0.15625-0.078125 0.35938-0.23438 1.1094-0.65625 3.0625-0.23438 1.125-0.0625 0.3125-0.015625 0.0625-0.015625 0.03125-0.078125 0.015625h-1l0.3125-1.4219 0.48438-2.375 0.25-1.1719 0.09375-0.375 0.015625-0.15625-0.046875 0.14062-0.125 0.25-0.46875 0.82812-0.95312 1.6094-0.78125 1.25-0.5625 0.90625-0.15625 0.25-0.03125 0.0625-0.03125 0.03125-0.078125 0.015625h-0.85938c0-0.03125-0.011719-0.085938-0.03125-0.17188-0.023437-0.09375-0.039063-0.16016-0.046875-0.20312-0.074219-0.33203-0.125-0.58203-0.15625-0.75-0.27344-1.4688-0.41797-2.3008-0.4375-2.5-0.0625-0.34375-0.10547-0.67188-0.125-0.98438-0.023438-0.1875-0.03125-0.31641-0.03125-0.39062-0.011719-0.039062-0.015625-0.097656-0.015625-0.17188v-0.09375c0.007813-0.039063 0.019531-0.070313 0.03125-0.09375h-0.015625l-0.03125 0.17188-0.25 1.1875-0.59375 2.75-0.21875 1.0469-0.0625 0.26562v0.046875l-0.015625 0.03125-0.078125 0.015625h-1l0.29688-1.4219 0.625-2.9531 0.25-1.2031 0.09375-0.42188z"/>
|
|
456
|
+
</symbol>
|
|
457
|
+
<symbol id="cy" overflow="visible">
|
|
458
|
+
<path d="m1.4062-4.7344c0.007812-0.20703 0.125-0.45703 0.34375-0.75 0.22656-0.30078 0.55078-0.51562 0.96875-0.64062 0.32031-0.09375 0.58594-0.082031 0.79688 0.03125 0.21875 0.10547 0.40625 0.375 0.5625 0.8125 0.16406 0.4375 0.29688 1.0781 0.39062 1.9219 0.007812 0.054687 0.019531 0.16406 0.03125 0.32812 0.007812 0.16797 0.019531 0.29297 0.03125 0.375 0.03125-0.070312 0.097656-0.19531 0.20312-0.375l0.39062-0.625c0.20703-0.33203 0.39453-0.61328 0.5625-0.84375 0.16406-0.23828 0.375-0.5 0.625-0.78125 0.25-0.28906 0.50391-0.51562 0.76562-0.67188 0.26953-0.15625 0.53906-0.23438 0.8125-0.23438 0.125 0 0.23438 0.039062 0.32812 0.10938 0.09375 0.0625 0.14453 0.15625 0.15625 0.28125 0.007812 0.15625-0.046875 0.3125-0.17188 0.46875s-0.32422 0.23438-0.59375 0.23438c-0.25 0.0625-0.46094 0.16406-0.625 0.29688-0.15625 0.125-0.33594 0.32422-0.53125 0.59375-0.44922 0.59375-0.92188 1.4453-1.4219 2.5469l-0.34375 0.75c-0.042969 0.11719-0.085938 0.22656-0.125 0.32812-0.03125 0.10547-0.046875 0.24609-0.046875 0.42188l-0.03125 0.5c-0.0625 0.45703-0.13672 0.92188-0.21875 1.3906-0.085937 0.5-0.19922 0.83203-0.34375 1-0.1875 0.1875-0.42188 0.28125-0.70312 0.28125s-0.48047-0.13281-0.59375-0.39062c-0.011719-0.042969-0.015625-0.11719-0.015625-0.21875 0-0.32422 0.20703-1.0859 0.625-2.2812l0.17188-0.45312c0.039062-0.11328 0.070312-0.20703 0.09375-0.28125 0.03125-0.082031 0.046875-0.21875 0.046875-0.40625 0.007813-0.23828 0.015625-0.41406 0.015625-0.53125 0-0.4375 0.003906-0.89844 0.015625-1.3906 0.007813-0.48828-0.03125-0.94531-0.125-1.375-0.085937-0.42578-0.22656-0.67578-0.42188-0.75-0.10547-0.050781-0.21484-0.035156-0.32812 0.046875-0.10547 0.074219-0.17969 0.16797-0.21875 0.28125z"/>
|
|
459
|
+
</symbol>
|
|
460
|
+
<symbol id="cx" overflow="visible">
|
|
461
|
+
<path d="m3.75-2.6875c-0.042969 0.023438-0.15234 0.03125-0.32812 0.03125-0.17969 0-0.34375-0.023438-0.5-0.078125-0.14844-0.050781-0.23438-0.078125-0.26562-0.078125-0.085938-0.019531-0.25781 0.011719-0.51562 0.09375-0.25 0.074219-0.40625 0.16797-0.46875 0.28125-0.0625 0.085938-0.09375 0.23047-0.09375 0.4375 0 0.42969 0.17188 0.75781 0.51562 0.98438 0.1875 0.11719 0.44531 0.19531 0.78125 0.23438 0.33203 0.042969 0.73828 0.011719 1.2188-0.09375 0.48828-0.11328 0.94141-0.32031 1.3594-0.625 0.14453-0.11328 0.25391-0.19141 0.32812-0.23438-0.40625 0.65625-0.80859 1.1367-1.2031 1.4375-0.35547 0.27344-0.74609 0.44531-1.1719 0.53125-0.41797 0.082031-0.79688 0.082031-1.1406 0-0.33594-0.085937-0.63281-0.23047-0.89062-0.4375-0.25-0.20703-0.41406-0.44531-0.48438-0.71875-0.042969-0.23828-0.011719-0.53125 0.09375-0.875 0.10156-0.34375 0.32812-0.67969 0.67188-1.0156 0.19531-0.20703 0.34766-0.33203 0.45312-0.375-0.03125-0.0625-0.070313-0.11328-0.10938-0.15625-0.042969-0.050781-0.085938-0.10938-0.125-0.17188-0.042969-0.070313-0.085938-0.14453-0.125-0.21875-0.042969-0.070313-0.078125-0.16406-0.10938-0.28125-0.023437-0.11328-0.039063-0.23438-0.046875-0.35938-0.03125-0.60156 0.1875-1.0625 0.65625-1.375 0.44531-0.3125 0.97656-0.5 1.5938-0.5625 0.625-0.0625 1.2109 0.011719 1.7656 0.21875 0.039063 0.011719 0.375 0.17969 1 0.5-0.042969 0.054688-0.20312 0.27734-0.48438 0.67188-0.085938 0.11719-0.14844 0.18359-0.1875 0.20312-0.042969 0.023438-0.089844 0.015625-0.14062-0.015625-0.042969-0.03125-0.14844-0.085937-0.3125-0.17188-0.16797-0.09375-0.35938-0.17578-0.57812-0.25-0.14844-0.050781-0.34375-0.085938-0.59375-0.10938-0.25-0.019531-0.53125-0.007813-0.84375 0.03125-0.3125 0.03125-0.60938 0.14062-0.89062 0.32812-0.27344 0.17969-0.46484 0.4375-0.57812 0.78125-0.03125 0.16797 0.023438 0.28906 0.17188 0.35938 0.25 0.13672 0.45312 0.19922 0.60938 0.1875 0.16406-0.007813 0.33203-0.050781 0.5-0.125 0.36328-0.050781 0.59766-0.054687 0.70312-0.015625 0.11328 0.042969 0.19531 0.15234 0.25 0.32812 0 0.19922-0.046875 0.35938-0.14062 0.48438-0.09375 0.11719-0.21094 0.1875-0.34375 0.21875z"/>
|
|
462
|
+
</symbol>
|
|
463
|
+
<symbol id="cw" overflow="visible">
|
|
464
|
+
<path d="m3.0156-1.5c0.19531 0.21875 0.20312 0.52344 0.015625 0.90625-0.15625 0.34375-0.41406 0.57422-0.76562 0.6875-0.34375 0.11328-0.65625 0.046875-0.9375-0.20312-0.30469-0.33203-0.37109-0.84766-0.20312-1.5469l0.85938-4.1094c0.019531-0.050781 0.035156-0.125 0.046875-0.21875 0.019531-0.09375 0.035156-0.14844 0.046875-0.17188 0.019531-0.019531 0.11328-0.03125 0.28125-0.03125h0.78125c-0.042969 0.17969-0.21094 0.96484-0.5 2.3594-0.29297 1.3867-0.45312 2.1367-0.48438 2.25-0.054688 0.24219-0.058594 0.41406-0.015625 0.51562 0.082031 0.21875 0.25391 0.27344 0.51562 0.15625 0.11328-0.050781 0.20312-0.12891 0.26562-0.23438 0.070313-0.11328 0.10156-0.23438 0.09375-0.35938z"/>
|
|
465
|
+
</symbol>
|
|
466
|
+
<symbol id="cv" overflow="visible">
|
|
467
|
+
<path d="m4.0781-6.7812 1.8125-2.7188 0.1875-0.21875 0.3125-0.015625h0.75l-0.57812 0.78125-1.4688 1.9375-0.1875 0.21875-0.26562 0.015625zm0.82812 5.6406c-0.074219 0.054687-0.17188 0.14844-0.29688 0.28125-0.11719 0.13672-0.25 0.26562-0.40625 0.39062-0.14844 0.125-0.32812 0.24609-0.54688 0.35938-0.59375 0.32031-1.1406 0.34375-1.6406 0.0625-0.49219-0.28125-0.78125-0.78906-0.875-1.5312-0.085937-0.67578 0.007813-1.3906 0.28125-2.1406 0.26953-0.75781 0.67188-1.375 1.2031-1.8438 0.25-0.20703 0.50781-0.375 0.78125-0.5 0.28125-0.125 0.59375-0.15625 0.9375-0.09375s0.64453 0.26172 0.90625 0.59375c0.11328 0.16797 0.20312 0.35156 0.26562 0.54688 0.070313 0.1875 0.125 0.375 0.15625 0.5625 0.039063 0.1875 0.066406 0.30469 0.078125 0.34375l0.98438-1.9062 0.09375-0.15625 0.34375-0.015625h0.73438c-0.26172 0.61719-0.71094 1.4805-1.3438 2.5938l-0.45312 0.76562c-0.13672 0.21094-0.21094 0.32422-0.21875 0.34375 0 0.023437 0.003906 0.15234 0.015625 0.39062 0.019531 0.10547 0.035156 0.23438 0.046875 0.39062 0.019531 0.15625 0.0625 0.3125 0.125 0.46875 0.070313 0.15625 0.15625 0.26172 0.25 0.3125 0.13281 0.054687 0.26562-0.003906 0.39062-0.17188 0.019531-0.03125 0.046875-0.0625 0.078125-0.09375 0.019531-0.050781 0.085937-0.078125 0.20312-0.078125h0.17188 0.71875c-0.074219 0.3125-0.21484 0.58594-0.42188 0.8125-0.21094 0.23047-0.4375 0.38672-0.6875 0.46875-0.25 0.09375-0.50781 0.125-0.76562 0.09375-0.25-0.023438-0.46094-0.10938-0.625-0.26562-0.27344-0.26953-0.43359-0.59766-0.48438-0.98438zm-0.5-0.85938c0.15625-0.1875 0.25-0.30469 0.28125-0.35938 0.03125-0.050781 0.046875-0.14453 0.046875-0.28125 0-0.0625-0.007813-0.14453-0.015625-0.25-0.011719-0.11328-0.015625-0.20312-0.015625-0.26562-0.042969-0.92578-0.19922-1.5234-0.46875-1.7969-0.14844-0.125-0.30469-0.17969-0.46875-0.17188-0.15625 0.011719-0.3125 0.070312-0.46875 0.17188-0.36719 0.29297-0.64062 0.74219-0.82812 1.3438-0.17969 0.59375-0.26562 1.1094-0.26562 1.5469 0 0.51172 0.11328 0.85547 0.34375 1.0312 0.375 0.27344 0.84375 0.125 1.4062-0.4375 0.019531-0.03125 0.050781-0.070312 0.09375-0.125 0.050781-0.050781 0.085937-0.082031 0.10938-0.09375z"/>
|
|
468
|
+
</symbol>
|
|
469
|
+
<symbol id="cu" overflow="visible">
|
|
470
|
+
<path d="m2.5-1.9531-0.15625 0.39062c-0.11719 0.25-0.20312 0.48047-0.26562 0.6875-0.03125 0.15625-0.078125 0.33594-0.14062 0.53125-0.0625 0.19922-0.14844 0.34766-0.25 0.45312-0.21875 0.19531-0.44531 0.27344-0.67188 0.23438-0.23047-0.042969-0.36719-0.15234-0.40625-0.32812-0.042969-0.011719-0.054687-0.070312-0.03125-0.1875 0.03125-0.125 0.054687-0.21094 0.078125-0.26562 0.019531-0.050781 0.070312-0.20312 0.15625-0.45312 0.09375-0.25781 0.17969-0.52344 0.26562-0.79688 0.17578-0.63281 0.3125-1.1953 0.40625-1.6875 0.09375-0.48828 0.14844-0.85938 0.17188-1.1094 0.019531-0.25 0.050781-0.53516 0.09375-0.85938 0.03125-0.32031 0.050781-0.5 0.0625-0.53125 0.082031-0.3125 0.31641-0.48438 0.70312-0.51562 0.30078-0.019531 0.48828 0.10156 0.5625 0.35938 0.03125 0.11719 0 0.38672-0.09375 0.8125-0.21875 0.99219-0.33594 1.5-0.34375 1.5312l0.67188-0.75c0.65625-0.63281 1.3633-1.0977 2.125-1.3906 0.75781-0.28906 1.5195-0.36328 2.2812-0.21875 0.19531 0.042969 0.31641 0.14844 0.35938 0.3125 0.039063 0.16797-0.027344 0.36719-0.20312 0.59375-0.14844 0.14844-0.3125 0.21094-0.5 0.1875l-0.25-0.046875-0.40625-0.046875c-0.23047 0-0.51562 0.042969-0.85938 0.125-0.65625 0.17969-1.2422 0.49219-1.75 0.9375-0.51172 0.44922-0.90234 0.88672-1.1719 1.3125 0.125 0.042969 0.55078 0.30859 1.2812 0.79688 0.72656 0.49219 1.3672 0.77734 1.9219 0.85938 0.019531 0 0.10938 0.007813 0.26562 0.015625 0.16406 0 0.28516 0.023438 0.35938 0.0625 0.11328 0.085938 0.17188 0.19531 0.17188 0.32812 0 0.125-0.046875 0.24609-0.14062 0.35938-0.09375 0.13672-0.24609 0.21484-0.45312 0.23438-0.19922 0.011719-0.48047-0.023438-0.84375-0.10938-0.44922-0.13281-1.0078-0.44531-1.6719-0.9375-0.66797-0.5-1.1094-0.79688-1.3281-0.89062z"/>
|
|
471
|
+
</symbol>
|
|
472
|
+
<symbol id="ct" overflow="visible">
|
|
473
|
+
<path d="m4.2188-6.7812 1.8125-2.7031 0.1875-0.23438 0.3125-0.015625h0.75l-0.53125 0.73438-1.5 1.9688-0.20312 0.23438-0.26562 0.015625zm-0.375 0.79688c0.25-0.082031 0.50391-0.14453 0.76562-0.1875 0.26953-0.050781 0.625-0.03125 1.0625 0.0625s0.8125 0.30469 1.125 0.625c0.32031 0.3125 0.53516 0.71094 0.64062 1.1875 0.10156 0.46875 0.097656 0.91797-0.015625 1.3438-0.21094 0.83594-0.65234 1.543-1.3281 2.125-0.66797 0.58594-1.418 0.90625-2.25 0.96875-0.96875 0.039063-1.7031-0.26953-2.2031-0.9375-0.49219-0.67578-0.61719-1.4609-0.375-2.3594 0.15625-0.63281 0.46875-1.207 0.9375-1.7188 0.46875-0.50781 1.0156-0.87891 1.6406-1.1094zm2.5938 2.4688c0.070312-0.55078-0.078125-1.0156-0.45312-1.3906-0.44922-0.42578-1.0156-0.52344-1.7031-0.29688-0.54297 0.19922-1.0117 0.54688-1.4062 1.0469-0.38672 0.49219-0.60547 1.0156-0.65625 1.5781-0.074219 0.69922 0.125 1.2188 0.59375 1.5625s1.0195 0.39062 1.6562 0.14062c0.53125-0.20703 0.97656-0.55469 1.3438-1.0469 0.36328-0.48828 0.57031-1.0195 0.625-1.5938z"/>
|
|
474
|
+
</symbol>
|
|
475
|
+
<symbol id="cs" overflow="visible">
|
|
476
|
+
<path d="m6.9375-4.9688c0.34375 0.375 0.51562 0.83984 0.51562 1.3906 0.007813 0.54297-0.10547 1.0312-0.34375 1.4688-0.48047 0.91797-1.1406 1.5586-1.9844 1.9219s-1.6328 0.42578-2.3594 0.1875c-0.49219-0.14453-0.88281-0.42578-1.1719-0.84375-0.29297-0.41406-0.44922-0.875-0.46875-1.375-0.011719-0.50781 0.11719-1.0391 0.39062-1.5938 0.26953-0.55078 0.67578-1.0312 1.2188-1.4375 0.57031-0.42578 1.1914-0.67969 1.8594-0.76562 0.14453-0.007813 0.36328-0.015625 0.65625-0.015625h3.5625l-0.21875 1.0938zm-0.79688 2.5781c0.36328-0.6875 0.39453-1.2852 0.09375-1.7969-0.17969-0.3125-0.44531-0.53125-0.79688-0.65625-0.35547-0.13281-0.71484-0.16406-1.0781-0.09375-0.55469 0.10547-1.0312 0.37109-1.4375 0.79688-0.40625 0.41797-0.64062 0.90625-0.70312 1.4688-0.03125 0.28125-0.027344 0.54688 0.015625 0.79688 0.050781 0.25 0.19531 0.49609 0.4375 0.73438 0.23828 0.24219 0.57031 0.375 1 0.40625 0.19531 0.011719 0.42578-0.019531 0.6875-0.09375 0.78906-0.23828 1.3828-0.75781 1.7812-1.5625z"/>
|
|
477
|
+
</symbol>
|
|
478
|
+
<symbol id="cr" overflow="visible">
|
|
479
|
+
<path d="m1.7656-0.60938c-0.21875 1.0938-0.32812 1.9727-0.32812 2.6406 0 0.25781 0.039062 0.46875 0.125 0.625 0.082031 0.16406 0.11328 0.30469 0.09375 0.42188-0.042969 0.20703-0.16797 0.37891-0.375 0.51562-0.19922 0.14453-0.39844 0.17969-0.59375 0.10938-0.33594-0.14844-0.43359-0.82031-0.29688-2.0156 0.13281-1.2617 0.50391-3.2656 1.1094-6.0156l0.17188-0.78125c0.16406-0.82031 0.4375-1.2344 0.8125-1.2344 0.41406 0 0.5 0.43359 0.25 1.2969-0.023437 0.085937-0.0625 0.22656-0.125 0.42188-0.054687 0.19922-0.089844 0.33594-0.10938 0.40625-0.011719 0.074219-0.039062 0.19531-0.078125 0.35938-0.03125 0.16797-0.054687 0.29688-0.0625 0.39062 0 0.09375-0.011719 0.21484-0.03125 0.35938-0.011719 0.13672-0.011719 0.27344 0 0.40625 0.007813 0.125 0.023437 0.25781 0.046875 0.39062 0.0625 0.33594 0.16406 0.60156 0.3125 0.79688 0.14453 0.1875 0.26562 0.30469 0.35938 0.34375 0.10156 0.03125 0.22266 0.058594 0.35938 0.078125 0.125 0 0.21875-0.003906 0.28125-0.015625 0.20703-0.03125 0.40625-0.14062 0.59375-0.32812 0.1875-0.19531 0.34375-0.41406 0.46875-0.65625 0.13281-0.23828 0.26562-0.55078 0.39062-0.9375 0.125-0.38281 0.22266-0.71875 0.29688-1 0.070312-0.28125 0.15625-0.63281 0.25-1.0625l0.078125-0.42188c0.039063-0.19531 0.085937-0.35156 0.14062-0.46875 0.050781-0.11328 0.11719-0.19531 0.20312-0.25 0.082031-0.050781 0.14844-0.082031 0.20312-0.09375 0.0625-0.007813 0.14453-0.015625 0.25-0.015625 0.23828 0.03125 0.36328 0.16406 0.375 0.39062 0 0.09375-0.015625 0.21484-0.046875 0.35938l-0.125 0.5625c-0.15625 0.6875-0.32031 1.2812-0.48438 1.7812-0.16797 0.49219-0.29297 0.82422-0.375 1-0.074219 0.16797-0.13281 0.32812-0.17188 0.48438-0.03125 0.14844-0.039063 0.30859-0.015625 0.48438 0.03125 0.17969 0.085938 0.29297 0.17188 0.34375 0.09375 0.042969 0.17969 0.046875 0.26562 0.015625 0.082031-0.039063 0.14844-0.085937 0.20312-0.14062 0.007813-0.007812 0.03125-0.039062 0.0625-0.09375 0.03125-0.0625 0.0625-0.097656 0.09375-0.10938h1.0469c-0.0625 0.28125-0.19922 0.54297-0.40625 0.78125-0.19922 0.23047-0.4375 0.40234-0.71875 0.51562-0.60547 0.22656-1.0938 0.13281-1.4688-0.28125-0.0625-0.070312-0.12109-0.16406-0.17188-0.28125-0.29297 0.27344-0.61719 0.46094-0.96875 0.5625-0.35547 0.11328-0.68359 0.14062-0.98438 0.078125-0.29297-0.054688-0.54297-0.16406-0.75-0.34375-0.14844-0.125-0.25-0.25-0.3125-0.375z"/>
|
|
480
|
+
</symbol>
|
|
481
|
+
<symbol id="cq" overflow="visible">
|
|
482
|
+
<path d="m3.8438-5.9844c0.25-0.082031 0.50391-0.14453 0.76562-0.1875 0.26953-0.050781 0.625-0.03125 1.0625 0.0625s0.8125 0.30469 1.125 0.625c0.32031 0.3125 0.53516 0.71094 0.64062 1.1875 0.10156 0.46875 0.097656 0.91797-0.015625 1.3438-0.21094 0.83594-0.65234 1.543-1.3281 2.125-0.66797 0.58594-1.418 0.90625-2.25 0.96875-0.96875 0.039063-1.7031-0.26953-2.2031-0.9375-0.49219-0.67578-0.61719-1.4609-0.375-2.3594 0.15625-0.63281 0.46875-1.207 0.9375-1.7188 0.46875-0.50781 1.0156-0.87891 1.6406-1.1094zm2.5938 2.4688c0.070312-0.55078-0.078125-1.0156-0.45312-1.3906-0.44922-0.42578-1.0156-0.52344-1.7031-0.29688-0.54297 0.19922-1.0117 0.54688-1.4062 1.0469-0.38672 0.49219-0.60547 1.0156-0.65625 1.5781-0.074219 0.69922 0.125 1.2188 0.59375 1.5625s1.0195 0.39062 1.6562 0.14062c0.53125-0.20703 0.97656-0.55469 1.3438-1.0469 0.36328-0.48828 0.57031-1.0195 0.625-1.5938z"/>
|
|
483
|
+
</symbol>
|
|
484
|
+
</defs>
|
|
485
|
+
<g>
|
|
486
|
+
<rect width="244" height="293" fill="#fff"/>
|
|
487
|
+
<g fill="#00f">
|
|
488
|
+
<use x="17" y="22.734375" xlink:href="#fd"/>
|
|
489
|
+
</g>
|
|
490
|
+
<g fill="#00f">
|
|
491
|
+
<use x="27.304688" y="22.734375" xlink:href="#o"/>
|
|
492
|
+
</g>
|
|
493
|
+
<g fill="#00f">
|
|
494
|
+
<use x="35.082031" y="22.734375" xlink:href="#l"/>
|
|
495
|
+
</g>
|
|
496
|
+
<g fill="#00f">
|
|
497
|
+
<use x="40.605469" y="22.734375" xlink:href="#l"/>
|
|
498
|
+
</g>
|
|
499
|
+
<g fill="#00f">
|
|
500
|
+
<use x="46.128906" y="22.734375" xlink:href="#e"/>
|
|
501
|
+
</g>
|
|
502
|
+
<g fill="#00f">
|
|
503
|
+
<use x="50.015625" y="22.734375" xlink:href="#d"/>
|
|
504
|
+
</g>
|
|
505
|
+
<g fill="#00f">
|
|
506
|
+
<use x="57.015625" y="22.734375" xlink:href="#g"/>
|
|
507
|
+
</g>
|
|
508
|
+
<g fill="#ff887f">
|
|
509
|
+
<use x="189.917969" y="22.734375" xlink:href="#ex"/>
|
|
510
|
+
</g>
|
|
511
|
+
<g fill="#ff887f">
|
|
512
|
+
<use x="200.90625" y="22.734375" xlink:href="#i"/>
|
|
513
|
+
</g>
|
|
514
|
+
<g fill="#ff887f">
|
|
515
|
+
<use x="206.390625" y="22.734375" xlink:href="#k"/>
|
|
516
|
+
</g>
|
|
517
|
+
<g fill="#ff887f">
|
|
518
|
+
<use x="212.613281" y="22.734375" xlink:href="#k"/>
|
|
519
|
+
</g>
|
|
520
|
+
<g fill="#ff887f">
|
|
521
|
+
<use x="218.832031" y="22.734375" xlink:href="#au"/>
|
|
522
|
+
</g>
|
|
523
|
+
<g>
|
|
524
|
+
<use x="17" y="38.59375" xlink:href="#j"/>
|
|
525
|
+
</g>
|
|
526
|
+
<g>
|
|
527
|
+
<use x="24.777344" y="38.59375" xlink:href="#b"/>
|
|
528
|
+
</g>
|
|
529
|
+
<g>
|
|
530
|
+
<use x="32.554688" y="38.59375" xlink:href="#h"/>
|
|
531
|
+
</g>
|
|
532
|
+
<g>
|
|
533
|
+
<use x="40.332031" y="38.59375" xlink:href="#a"/>
|
|
534
|
+
</g>
|
|
535
|
+
<g>
|
|
536
|
+
<use x="47.332031" y="38.59375" xlink:href="#f"/>
|
|
537
|
+
</g>
|
|
538
|
+
<g>
|
|
539
|
+
<use x="53.554688" y="38.59375" xlink:href="#c"/>
|
|
540
|
+
</g>
|
|
541
|
+
<g>
|
|
542
|
+
<use x="65.222656" y="38.59375" xlink:href="#an"/>
|
|
543
|
+
</g>
|
|
544
|
+
<g>
|
|
545
|
+
<use x="74.554688" y="38.59375" xlink:href="#h"/>
|
|
546
|
+
</g>
|
|
547
|
+
<g>
|
|
548
|
+
<use x="82.332031" y="38.59375" xlink:href="#b"/>
|
|
549
|
+
</g>
|
|
550
|
+
<g>
|
|
551
|
+
<use x="159.859375" y="38.59375" xlink:href="#af"/>
|
|
552
|
+
</g>
|
|
553
|
+
<g>
|
|
554
|
+
<use x="167.628906" y="38.59375" xlink:href="#ae"/>
|
|
555
|
+
</g>
|
|
556
|
+
<g>
|
|
557
|
+
<use x="173.648438" y="38.59375" xlink:href="#ad"/>
|
|
558
|
+
</g>
|
|
559
|
+
<g>
|
|
560
|
+
<use x="177.148438" y="38.59375" xlink:href="#ac"/>
|
|
561
|
+
</g>
|
|
562
|
+
<g>
|
|
563
|
+
<use x="188.816406" y="38.59375" xlink:href="#ab"/>
|
|
564
|
+
</g>
|
|
565
|
+
<g>
|
|
566
|
+
<use x="196.207031" y="38.59375" xlink:href="#aa"/>
|
|
567
|
+
</g>
|
|
568
|
+
<g>
|
|
569
|
+
<use x="203.597656" y="38.59375" xlink:href="#z"/>
|
|
570
|
+
</g>
|
|
571
|
+
<g>
|
|
572
|
+
<use x="211.566406" y="38.59375" xlink:href="#y"/>
|
|
573
|
+
</g>
|
|
574
|
+
<g>
|
|
575
|
+
<use x="218.832031" y="38.59375" xlink:href="#x"/>
|
|
576
|
+
</g>
|
|
577
|
+
<g>
|
|
578
|
+
<use x="17" y="58.085938" xlink:href="#j"/>
|
|
579
|
+
</g>
|
|
580
|
+
<g>
|
|
581
|
+
<use x="24.777344" y="58.085938" xlink:href="#b"/>
|
|
582
|
+
</g>
|
|
583
|
+
<g>
|
|
584
|
+
<use x="32.554688" y="58.085938" xlink:href="#h"/>
|
|
585
|
+
</g>
|
|
586
|
+
<g>
|
|
587
|
+
<use x="40.332031" y="58.085938" xlink:href="#a"/>
|
|
588
|
+
</g>
|
|
589
|
+
<g>
|
|
590
|
+
<use x="47.332031" y="58.085938" xlink:href="#f"/>
|
|
591
|
+
</g>
|
|
592
|
+
<g>
|
|
593
|
+
<use x="53.554688" y="58.085938" xlink:href="#c"/>
|
|
594
|
+
</g>
|
|
595
|
+
<g>
|
|
596
|
+
<use x="65.222656" y="58.085938" xlink:href="#an"/>
|
|
597
|
+
</g>
|
|
598
|
+
<g>
|
|
599
|
+
<use x="74.554688" y="58.085938" xlink:href="#h"/>
|
|
600
|
+
</g>
|
|
601
|
+
<g>
|
|
602
|
+
<use x="82.332031" y="58.085938" xlink:href="#b"/>
|
|
603
|
+
</g>
|
|
604
|
+
<g>
|
|
605
|
+
<use x="159.859375" y="58.085938" xlink:href="#af"/>
|
|
606
|
+
</g>
|
|
607
|
+
<g>
|
|
608
|
+
<use x="167.628906" y="58.085938" xlink:href="#ae"/>
|
|
609
|
+
</g>
|
|
610
|
+
<g>
|
|
611
|
+
<use x="173.648438" y="58.085938" xlink:href="#ad"/>
|
|
612
|
+
</g>
|
|
613
|
+
<g>
|
|
614
|
+
<use x="177.148438" y="58.085938" xlink:href="#ac"/>
|
|
615
|
+
</g>
|
|
616
|
+
<g>
|
|
617
|
+
<use x="188.816406" y="58.085938" xlink:href="#ab"/>
|
|
618
|
+
</g>
|
|
619
|
+
<g>
|
|
620
|
+
<use x="196.207031" y="58.085938" xlink:href="#aa"/>
|
|
621
|
+
</g>
|
|
622
|
+
<g>
|
|
623
|
+
<use x="203.597656" y="58.085938" xlink:href="#z"/>
|
|
624
|
+
</g>
|
|
625
|
+
<g>
|
|
626
|
+
<use x="211.566406" y="58.085938" xlink:href="#y"/>
|
|
627
|
+
</g>
|
|
628
|
+
<g>
|
|
629
|
+
<use x="218.832031" y="58.085938" xlink:href="#x"/>
|
|
630
|
+
</g>
|
|
631
|
+
<g>
|
|
632
|
+
<use x="17" y="77.710938" xlink:href="#cp"/>
|
|
633
|
+
</g>
|
|
634
|
+
<g>
|
|
635
|
+
<use x="25.945312" y="77.710938" xlink:href="#w"/>
|
|
636
|
+
</g>
|
|
637
|
+
<g>
|
|
638
|
+
<use x="34.890625" y="77.710938" xlink:href="#v"/>
|
|
639
|
+
</g>
|
|
640
|
+
<g>
|
|
641
|
+
<use x="43.832031" y="77.710938" xlink:href="#co"/>
|
|
642
|
+
</g>
|
|
643
|
+
<g>
|
|
644
|
+
<use x="51.882812" y="77.710938" xlink:href="#cn"/>
|
|
645
|
+
</g>
|
|
646
|
+
<g>
|
|
647
|
+
<use x="59.261719" y="77.710938" xlink:href="#cm"/>
|
|
648
|
+
</g>
|
|
649
|
+
<g>
|
|
650
|
+
<use x="71.550781" y="77.710938" xlink:href="#cl"/>
|
|
651
|
+
</g>
|
|
652
|
+
<g>
|
|
653
|
+
<use x="82.285156" y="77.710938" xlink:href="#v"/>
|
|
654
|
+
</g>
|
|
655
|
+
<g>
|
|
656
|
+
<use x="91.230469" y="77.710938" xlink:href="#w"/>
|
|
657
|
+
</g>
|
|
658
|
+
<g>
|
|
659
|
+
<use x="150.238281" y="77.710938" xlink:href="#ck"/>
|
|
660
|
+
</g>
|
|
661
|
+
<g>
|
|
662
|
+
<use x="159.1875" y="77.710938" xlink:href="#cj"/>
|
|
663
|
+
</g>
|
|
664
|
+
<g>
|
|
665
|
+
<use x="166.117188" y="77.710938" xlink:href="#ci"/>
|
|
666
|
+
</g>
|
|
667
|
+
<g>
|
|
668
|
+
<use x="170.132812" y="77.710938" xlink:href="#ch"/>
|
|
669
|
+
</g>
|
|
670
|
+
<g>
|
|
671
|
+
<use x="182.851562" y="77.710938" xlink:href="#cg"/>
|
|
672
|
+
</g>
|
|
673
|
+
<g>
|
|
674
|
+
<use x="191.347656" y="77.710938" xlink:href="#cf"/>
|
|
675
|
+
</g>
|
|
676
|
+
<g>
|
|
677
|
+
<use x="199.847656" y="77.710938" xlink:href="#ce"/>
|
|
678
|
+
</g>
|
|
679
|
+
<g>
|
|
680
|
+
<use x="209.015625" y="77.710938" xlink:href="#cd"/>
|
|
681
|
+
</g>
|
|
682
|
+
<g>
|
|
683
|
+
<use x="217.726562" y="77.710938" xlink:href="#cc"/>
|
|
684
|
+
</g>
|
|
685
|
+
<g>
|
|
686
|
+
<use x="17" y="97.164062" xlink:href="#cb"/>
|
|
687
|
+
</g>
|
|
688
|
+
<g>
|
|
689
|
+
<use x="24.871094" y="97.164062" xlink:href="#u"/>
|
|
690
|
+
</g>
|
|
691
|
+
<g>
|
|
692
|
+
<use x="31.953125" y="97.164062" xlink:href="#t"/>
|
|
693
|
+
</g>
|
|
694
|
+
<g>
|
|
695
|
+
<use x="39.824219" y="97.164062" xlink:href="#ca"/>
|
|
696
|
+
</g>
|
|
697
|
+
<g>
|
|
698
|
+
<use x="46.730469" y="97.164062" xlink:href="#bz"/>
|
|
699
|
+
</g>
|
|
700
|
+
<g>
|
|
701
|
+
<use x="52.921875" y="97.164062" xlink:href="#by"/>
|
|
702
|
+
</g>
|
|
703
|
+
<g>
|
|
704
|
+
<use x="69.035156" y="97.164062" xlink:href="#bx"/>
|
|
705
|
+
</g>
|
|
706
|
+
<g>
|
|
707
|
+
<use x="79.410156" y="97.164062" xlink:href="#t"/>
|
|
708
|
+
</g>
|
|
709
|
+
<g>
|
|
710
|
+
<use x="87.28125" y="97.164062" xlink:href="#u"/>
|
|
711
|
+
</g>
|
|
712
|
+
<g>
|
|
713
|
+
<use x="163.625" y="97.164062" xlink:href="#bw"/>
|
|
714
|
+
</g>
|
|
715
|
+
<g>
|
|
716
|
+
<use x="170.625" y="97.164062" xlink:href="#bv"/>
|
|
717
|
+
</g>
|
|
718
|
+
<g>
|
|
719
|
+
<use x="176.070312" y="97.164062" xlink:href="#bu"/>
|
|
720
|
+
</g>
|
|
721
|
+
<g>
|
|
722
|
+
<use x="179.570312" y="97.164062" xlink:href="#bt"/>
|
|
723
|
+
</g>
|
|
724
|
+
<g>
|
|
725
|
+
<use x="192.007812" y="97.164062" xlink:href="#bs"/>
|
|
726
|
+
</g>
|
|
727
|
+
<g>
|
|
728
|
+
<use x="199.398438" y="97.164062" xlink:href="#br"/>
|
|
729
|
+
</g>
|
|
730
|
+
<g>
|
|
731
|
+
<use x="206.007812" y="97.164062" xlink:href="#bq"/>
|
|
732
|
+
</g>
|
|
733
|
+
<g>
|
|
734
|
+
<use x="213.007812" y="97.164062" xlink:href="#bp"/>
|
|
735
|
+
</g>
|
|
736
|
+
<g>
|
|
737
|
+
<use x="219.613281" y="97.164062" xlink:href="#bo"/>
|
|
738
|
+
</g>
|
|
739
|
+
<g>
|
|
740
|
+
<use x="17" y="116.027344" xlink:href="#bn"/>
|
|
741
|
+
</g>
|
|
742
|
+
<g>
|
|
743
|
+
<use x="24.234375" y="116.027344" xlink:href="#s"/>
|
|
744
|
+
</g>
|
|
745
|
+
<g>
|
|
746
|
+
<use x="31.464844" y="116.027344" xlink:href="#r"/>
|
|
747
|
+
</g>
|
|
748
|
+
<g>
|
|
749
|
+
<use x="38.992188" y="116.027344" xlink:href="#bm"/>
|
|
750
|
+
</g>
|
|
751
|
+
<g>
|
|
752
|
+
<use x="45.71875" y="116.027344" xlink:href="#bl"/>
|
|
753
|
+
</g>
|
|
754
|
+
<g>
|
|
755
|
+
<use x="51.941406" y="116.027344" xlink:href="#bk"/>
|
|
756
|
+
</g>
|
|
757
|
+
<g>
|
|
758
|
+
<use x="63.023437" y="116.027344" xlink:href="#bj"/>
|
|
759
|
+
</g>
|
|
760
|
+
<g>
|
|
761
|
+
<use x="72.398438" y="116.027344" xlink:href="#r"/>
|
|
762
|
+
</g>
|
|
763
|
+
<g>
|
|
764
|
+
<use x="79.921875" y="116.027344" xlink:href="#s"/>
|
|
765
|
+
</g>
|
|
766
|
+
<g>
|
|
767
|
+
<use x="159.816406" y="116.027344" xlink:href="#bi"/>
|
|
768
|
+
</g>
|
|
769
|
+
<g>
|
|
770
|
+
<use x="167.585937" y="116.027344" xlink:href="#bh"/>
|
|
771
|
+
</g>
|
|
772
|
+
<g>
|
|
773
|
+
<use x="173.605469" y="116.027344" xlink:href="#bg"/>
|
|
774
|
+
</g>
|
|
775
|
+
<g>
|
|
776
|
+
<use x="177.105469" y="116.027344" xlink:href="#bf"/>
|
|
777
|
+
</g>
|
|
778
|
+
<g>
|
|
779
|
+
<use x="188.773438" y="116.027344" xlink:href="#be"/>
|
|
780
|
+
</g>
|
|
781
|
+
<g>
|
|
782
|
+
<use x="196.164062" y="116.027344" xlink:href="#bd"/>
|
|
783
|
+
</g>
|
|
784
|
+
<g>
|
|
785
|
+
<use x="203.558594" y="116.027344" xlink:href="#bc"/>
|
|
786
|
+
</g>
|
|
787
|
+
<g>
|
|
788
|
+
<use x="211.523438" y="116.027344" xlink:href="#bb"/>
|
|
789
|
+
</g>
|
|
790
|
+
<g>
|
|
791
|
+
<use x="218.832031" y="116.027344" xlink:href="#ba"/>
|
|
792
|
+
</g>
|
|
793
|
+
<g>
|
|
794
|
+
<use x="17" y="134.363281" xlink:href="#az"/>
|
|
795
|
+
</g>
|
|
796
|
+
<g>
|
|
797
|
+
<use x="24.351562" y="134.363281" xlink:href="#q"/>
|
|
798
|
+
</g>
|
|
799
|
+
<g>
|
|
800
|
+
<use x="31.699219" y="134.363281" xlink:href="#p"/>
|
|
801
|
+
</g>
|
|
802
|
+
<g>
|
|
803
|
+
<use x="39.050781" y="134.363281" xlink:href="#ay"/>
|
|
804
|
+
</g>
|
|
805
|
+
<g>
|
|
806
|
+
<use x="46.398437" y="134.363281" xlink:href="#ax"/>
|
|
807
|
+
</g>
|
|
808
|
+
<g>
|
|
809
|
+
<use x="53.75" y="134.363281" xlink:href="#aw"/>
|
|
810
|
+
</g>
|
|
811
|
+
<g>
|
|
812
|
+
<use x="65.765625" y="134.363281" xlink:href="#av"/>
|
|
813
|
+
</g>
|
|
814
|
+
<g>
|
|
815
|
+
<use x="73.117188" y="134.363281" xlink:href="#p"/>
|
|
816
|
+
</g>
|
|
817
|
+
<g>
|
|
818
|
+
<use x="80.464844" y="134.363281" xlink:href="#q"/>
|
|
819
|
+
</g>
|
|
820
|
+
<g>
|
|
821
|
+
<use x="155.40625" y="134.363281" xlink:href="#eo"/>
|
|
822
|
+
</g>
|
|
823
|
+
<g>
|
|
824
|
+
<use x="162.757812" y="134.363281" xlink:href="#en"/>
|
|
825
|
+
</g>
|
|
826
|
+
<g>
|
|
827
|
+
<use x="170.105469" y="134.363281" xlink:href="#em"/>
|
|
828
|
+
</g>
|
|
829
|
+
<g>
|
|
830
|
+
<use x="177.457031" y="134.363281" xlink:href="#el"/>
|
|
831
|
+
</g>
|
|
832
|
+
<g>
|
|
833
|
+
<use x="189.472656" y="134.363281" xlink:href="#ek"/>
|
|
834
|
+
</g>
|
|
835
|
+
<g>
|
|
836
|
+
<use x="196.824219" y="134.363281" xlink:href="#ej"/>
|
|
837
|
+
</g>
|
|
838
|
+
<g>
|
|
839
|
+
<use x="204.171875" y="134.363281" xlink:href="#ei"/>
|
|
840
|
+
</g>
|
|
841
|
+
<g>
|
|
842
|
+
<use x="211.523438" y="134.363281" xlink:href="#eh"/>
|
|
843
|
+
</g>
|
|
844
|
+
<g>
|
|
845
|
+
<use x="218.871094" y="134.363281" xlink:href="#eg"/>
|
|
846
|
+
</g>
|
|
847
|
+
<g>
|
|
848
|
+
<use x="17" y="153.566406" xlink:href="#ef"/>
|
|
849
|
+
</g>
|
|
850
|
+
<g>
|
|
851
|
+
<use x="26.101562" y="153.566406" xlink:href="#al"/>
|
|
852
|
+
</g>
|
|
853
|
+
<g>
|
|
854
|
+
<use x="34.292969" y="153.566406" xlink:href="#ak"/>
|
|
855
|
+
</g>
|
|
856
|
+
<g>
|
|
857
|
+
<use x="43.394531" y="153.566406" xlink:href="#ee"/>
|
|
858
|
+
</g>
|
|
859
|
+
<g>
|
|
860
|
+
<use x="51.378906" y="153.566406" xlink:href="#ed"/>
|
|
861
|
+
</g>
|
|
862
|
+
<g>
|
|
863
|
+
<use x="58.542969" y="153.566406" xlink:href="#ec"/>
|
|
864
|
+
</g>
|
|
865
|
+
<g>
|
|
866
|
+
<use x="76.429688" y="153.566406" xlink:href="#eb"/>
|
|
867
|
+
</g>
|
|
868
|
+
<g>
|
|
869
|
+
<use x="88.417969" y="153.566406" xlink:href="#ak"/>
|
|
870
|
+
</g>
|
|
871
|
+
<g>
|
|
872
|
+
<use x="97.515625" y="153.566406" xlink:href="#al"/>
|
|
873
|
+
</g>
|
|
874
|
+
<g>
|
|
875
|
+
<use x="154.929688" y="153.566406" xlink:href="#ea"/>
|
|
876
|
+
</g>
|
|
877
|
+
<g>
|
|
878
|
+
<use x="162.980469" y="153.566406" xlink:href="#dz"/>
|
|
879
|
+
</g>
|
|
880
|
+
<g>
|
|
881
|
+
<use x="169.238281" y="153.566406" xlink:href="#dy"/>
|
|
882
|
+
</g>
|
|
883
|
+
<g>
|
|
884
|
+
<use x="173.257812" y="153.566406" xlink:href="#dx"/>
|
|
885
|
+
</g>
|
|
886
|
+
<g>
|
|
887
|
+
<use x="186.867188" y="153.566406" xlink:href="#dw"/>
|
|
888
|
+
</g>
|
|
889
|
+
<g>
|
|
890
|
+
<use x="195.367187" y="153.566406" xlink:href="#dv"/>
|
|
891
|
+
</g>
|
|
892
|
+
<g>
|
|
893
|
+
<use x="202.96875" y="153.566406" xlink:href="#du"/>
|
|
894
|
+
</g>
|
|
895
|
+
<g>
|
|
896
|
+
<use x="211.019531" y="153.566406" xlink:href="#dt"/>
|
|
897
|
+
</g>
|
|
898
|
+
<g>
|
|
899
|
+
<use x="218.621094" y="153.566406" xlink:href="#ds"/>
|
|
900
|
+
</g>
|
|
901
|
+
<g>
|
|
902
|
+
<use x="17" y="172.613281" xlink:href="#dr"/>
|
|
903
|
+
</g>
|
|
904
|
+
<g>
|
|
905
|
+
<use x="24.855469" y="172.613281" xlink:href="#aj"/>
|
|
906
|
+
</g>
|
|
907
|
+
<g>
|
|
908
|
+
<use x="32.710938" y="172.613281" xlink:href="#ai"/>
|
|
909
|
+
</g>
|
|
910
|
+
<g>
|
|
911
|
+
<use x="40.996094" y="172.613281" xlink:href="#dq"/>
|
|
912
|
+
</g>
|
|
913
|
+
<g>
|
|
914
|
+
<use x="48.34375" y="172.613281" xlink:href="#dp"/>
|
|
915
|
+
</g>
|
|
916
|
+
<g>
|
|
917
|
+
<use x="55.5" y="172.613281" xlink:href="#do"/>
|
|
918
|
+
</g>
|
|
919
|
+
<g>
|
|
920
|
+
<use x="67.011719" y="172.613281" xlink:href="#dn"/>
|
|
921
|
+
</g>
|
|
922
|
+
<g>
|
|
923
|
+
<use x="77.433594" y="172.613281" xlink:href="#ai"/>
|
|
924
|
+
</g>
|
|
925
|
+
<g>
|
|
926
|
+
<use x="85.71875" y="172.613281" xlink:href="#aj"/>
|
|
927
|
+
</g>
|
|
928
|
+
<g>
|
|
929
|
+
<use x="153.503906" y="172.613281" xlink:href="#dm"/>
|
|
930
|
+
</g>
|
|
931
|
+
<g>
|
|
932
|
+
<use x="162.054688" y="172.613281" xlink:href="#dl"/>
|
|
933
|
+
</g>
|
|
934
|
+
<g>
|
|
935
|
+
<use x="168.679687" y="172.613281" xlink:href="#dk"/>
|
|
936
|
+
</g>
|
|
937
|
+
<g>
|
|
938
|
+
<use x="172.527344" y="172.613281" xlink:href="#dj"/>
|
|
939
|
+
</g>
|
|
940
|
+
<g>
|
|
941
|
+
<use x="184.894531" y="172.613281" xlink:href="#di"/>
|
|
942
|
+
</g>
|
|
943
|
+
<g>
|
|
944
|
+
<use x="193.015625" y="172.613281" xlink:href="#dh"/>
|
|
945
|
+
</g>
|
|
946
|
+
<g>
|
|
947
|
+
<use x="201.136719" y="172.613281" xlink:href="#dg"/>
|
|
948
|
+
</g>
|
|
949
|
+
<g>
|
|
950
|
+
<use x="209.898438" y="172.613281" xlink:href="#df"/>
|
|
951
|
+
</g>
|
|
952
|
+
<g>
|
|
953
|
+
<use x="218.101562" y="172.613281" xlink:href="#de"/>
|
|
954
|
+
</g>
|
|
955
|
+
<g>
|
|
956
|
+
<use x="17" y="192.09375" xlink:href="#dd"/>
|
|
957
|
+
</g>
|
|
958
|
+
<g>
|
|
959
|
+
<use x="24.234375" y="192.09375" xlink:href="#ah"/>
|
|
960
|
+
</g>
|
|
961
|
+
<g>
|
|
962
|
+
<use x="31.464844" y="192.09375" xlink:href="#ag"/>
|
|
963
|
+
</g>
|
|
964
|
+
<g>
|
|
965
|
+
<use x="38.992188" y="192.09375" xlink:href="#dc"/>
|
|
966
|
+
</g>
|
|
967
|
+
<g>
|
|
968
|
+
<use x="45.71875" y="192.09375" xlink:href="#db"/>
|
|
969
|
+
</g>
|
|
970
|
+
<g>
|
|
971
|
+
<use x="51.941406" y="192.09375" xlink:href="#da"/>
|
|
972
|
+
</g>
|
|
973
|
+
<g>
|
|
974
|
+
<use x="63.023437" y="192.09375" xlink:href="#cz"/>
|
|
975
|
+
</g>
|
|
976
|
+
<g>
|
|
977
|
+
<use x="72.398438" y="192.09375" xlink:href="#ag"/>
|
|
978
|
+
</g>
|
|
979
|
+
<g>
|
|
980
|
+
<use x="79.921875" y="192.09375" xlink:href="#ah"/>
|
|
981
|
+
</g>
|
|
982
|
+
<g>
|
|
983
|
+
<use x="159.816406" y="192.09375" xlink:href="#cy"/>
|
|
984
|
+
</g>
|
|
985
|
+
<g>
|
|
986
|
+
<use x="167.585937" y="192.09375" xlink:href="#cx"/>
|
|
987
|
+
</g>
|
|
988
|
+
<g>
|
|
989
|
+
<use x="173.605469" y="192.09375" xlink:href="#cw"/>
|
|
990
|
+
</g>
|
|
991
|
+
<g>
|
|
992
|
+
<use x="177.105469" y="192.09375" xlink:href="#cv"/>
|
|
993
|
+
</g>
|
|
994
|
+
<g>
|
|
995
|
+
<use x="188.773438" y="192.09375" xlink:href="#cu"/>
|
|
996
|
+
</g>
|
|
997
|
+
<g>
|
|
998
|
+
<use x="196.164062" y="192.09375" xlink:href="#ct"/>
|
|
999
|
+
</g>
|
|
1000
|
+
<g>
|
|
1001
|
+
<use x="203.558594" y="192.09375" xlink:href="#cs"/>
|
|
1002
|
+
</g>
|
|
1003
|
+
<g>
|
|
1004
|
+
<use x="211.523438" y="192.09375" xlink:href="#cr"/>
|
|
1005
|
+
</g>
|
|
1006
|
+
<g>
|
|
1007
|
+
<use x="218.832031" y="192.09375" xlink:href="#cq"/>
|
|
1008
|
+
</g>
|
|
1009
|
+
<g fill="#ff779d">
|
|
1010
|
+
<use x="17" y="217.609375" xlink:href="#at"/>
|
|
1011
|
+
</g>
|
|
1012
|
+
<g fill="#ff779d">
|
|
1013
|
+
<use x="26.917969" y="217.609375" xlink:href="#o"/>
|
|
1014
|
+
</g>
|
|
1015
|
+
<g fill="#ff779d">
|
|
1016
|
+
<use x="34.695312" y="217.609375" xlink:href="#as"/>
|
|
1017
|
+
</g>
|
|
1018
|
+
<g fill="#ff779d">
|
|
1019
|
+
<use x="38.582031" y="217.609375" xlink:href="#fc"/>
|
|
1020
|
+
</g>
|
|
1021
|
+
<g fill="#ff779d">
|
|
1022
|
+
<use x="45.777344" y="217.609375" xlink:href="#d"/>
|
|
1023
|
+
</g>
|
|
1024
|
+
<g fill="#ff779d">
|
|
1025
|
+
<use x="52.777344" y="217.609375" xlink:href="#i"/>
|
|
1026
|
+
</g>
|
|
1027
|
+
<g fill="#ff779d">
|
|
1028
|
+
<use x="58.261719" y="217.609375" xlink:href="#e"/>
|
|
1029
|
+
</g>
|
|
1030
|
+
<g fill="#ff779d">
|
|
1031
|
+
<use x="62.148437" y="217.609375" xlink:href="#d"/>
|
|
1032
|
+
</g>
|
|
1033
|
+
<g fill="#ff779d">
|
|
1034
|
+
<use x="69.148438" y="217.609375" xlink:href="#g"/>
|
|
1035
|
+
</g>
|
|
1036
|
+
<g fill="#db9370">
|
|
1037
|
+
<use x="180.292969" y="217.609375" xlink:href="#fb"/>
|
|
1038
|
+
</g>
|
|
1039
|
+
<g fill="#db9370">
|
|
1040
|
+
<use x="188.074219" y="217.609375" xlink:href="#k"/>
|
|
1041
|
+
</g>
|
|
1042
|
+
<g fill="#db9370">
|
|
1043
|
+
<use x="194.296875" y="217.609375" xlink:href="#i"/>
|
|
1044
|
+
</g>
|
|
1045
|
+
<g fill="#db9370">
|
|
1046
|
+
<use x="199.777344" y="217.609375" xlink:href="#fa"/>
|
|
1047
|
+
</g>
|
|
1048
|
+
<g fill="#db9370">
|
|
1049
|
+
<use x="207.554688" y="217.609375" xlink:href="#e"/>
|
|
1050
|
+
</g>
|
|
1051
|
+
<g fill="#db9370">
|
|
1052
|
+
<use x="211.445312" y="217.609375" xlink:href="#d"/>
|
|
1053
|
+
</g>
|
|
1054
|
+
<g fill="#db9370">
|
|
1055
|
+
<use x="218.445312" y="217.609375" xlink:href="#g"/>
|
|
1056
|
+
</g>
|
|
1057
|
+
<g>
|
|
1058
|
+
<use x="17" y="235.925781" xlink:href="#ep"/>
|
|
1059
|
+
</g>
|
|
1060
|
+
<g>
|
|
1061
|
+
<use x="23.222656" y="235.925781" xlink:href="#am"/>
|
|
1062
|
+
</g>
|
|
1063
|
+
<g>
|
|
1064
|
+
<use x="31" y="235.925781" xlink:href="#b"/>
|
|
1065
|
+
</g>
|
|
1066
|
+
<g>
|
|
1067
|
+
<use x="38.777344" y="235.925781" xlink:href="#ar"/>
|
|
1068
|
+
</g>
|
|
1069
|
+
<g>
|
|
1070
|
+
<use x="45.777344" y="235.925781" xlink:href="#a"/>
|
|
1071
|
+
</g>
|
|
1072
|
+
<g>
|
|
1073
|
+
<use x="52.777344" y="235.925781" xlink:href="#f"/>
|
|
1074
|
+
</g>
|
|
1075
|
+
<g>
|
|
1076
|
+
<use x="59" y="235.925781" xlink:href="#ew"/>
|
|
1077
|
+
</g>
|
|
1078
|
+
<g>
|
|
1079
|
+
<use x="71.445312" y="235.925781" xlink:href="#aq"/>
|
|
1080
|
+
</g>
|
|
1081
|
+
<g>
|
|
1082
|
+
<use x="77.667969" y="235.925781" xlink:href="#a"/>
|
|
1083
|
+
</g>
|
|
1084
|
+
<g>
|
|
1085
|
+
<use x="84.667969" y="235.925781" xlink:href="#ev"/>
|
|
1086
|
+
</g>
|
|
1087
|
+
<g>
|
|
1088
|
+
<use x="92.25" y="235.925781" xlink:href="#c"/>
|
|
1089
|
+
</g>
|
|
1090
|
+
<g>
|
|
1091
|
+
<use x="144.945312" y="235.925781" xlink:href="#eu"/>
|
|
1092
|
+
</g>
|
|
1093
|
+
<g>
|
|
1094
|
+
<use x="155.445312" y="235.925781" xlink:href="#f"/>
|
|
1095
|
+
</g>
|
|
1096
|
+
<g>
|
|
1097
|
+
<use x="161.667969" y="235.925781" xlink:href="#n"/>
|
|
1098
|
+
</g>
|
|
1099
|
+
<g>
|
|
1100
|
+
<use x="169.445312" y="235.925781" xlink:href="#n"/>
|
|
1101
|
+
</g>
|
|
1102
|
+
<g>
|
|
1103
|
+
<use x="177.222656" y="235.925781" xlink:href="#ap"/>
|
|
1104
|
+
</g>
|
|
1105
|
+
<g>
|
|
1106
|
+
<use x="188.890625" y="235.925781" xlink:href="#et"/>
|
|
1107
|
+
</g>
|
|
1108
|
+
<g>
|
|
1109
|
+
<use x="195.890625" y="235.925781" xlink:href="#ap"/>
|
|
1110
|
+
</g>
|
|
1111
|
+
<g>
|
|
1112
|
+
<use x="202.890625" y="235.925781" xlink:href="#b"/>
|
|
1113
|
+
</g>
|
|
1114
|
+
<g>
|
|
1115
|
+
<use x="210.667969" y="235.925781" xlink:href="#n"/>
|
|
1116
|
+
</g>
|
|
1117
|
+
<g>
|
|
1118
|
+
<use x="218.445312" y="235.925781" xlink:href="#am"/>
|
|
1119
|
+
</g>
|
|
1120
|
+
<g fill="#26ffcc">
|
|
1121
|
+
<use x="17" y="260.425781" xlink:href="#at"/>
|
|
1122
|
+
</g>
|
|
1123
|
+
<g fill="#26ffcc">
|
|
1124
|
+
<use x="26.917969" y="260.425781" xlink:href="#e"/>
|
|
1125
|
+
</g>
|
|
1126
|
+
<g fill="#26ffcc">
|
|
1127
|
+
<use x="30.804687" y="260.425781" xlink:href="#k"/>
|
|
1128
|
+
</g>
|
|
1129
|
+
<g fill="#26ffcc">
|
|
1130
|
+
<use x="37.027344" y="260.425781" xlink:href="#as"/>
|
|
1131
|
+
</g>
|
|
1132
|
+
<g fill="#26ffcc">
|
|
1133
|
+
<use x="40.917969" y="260.425781" xlink:href="#ez"/>
|
|
1134
|
+
</g>
|
|
1135
|
+
<g fill="#26ffcc">
|
|
1136
|
+
<use x="47.917969" y="260.425781" xlink:href="#i"/>
|
|
1137
|
+
</g>
|
|
1138
|
+
<g fill="#26ffcc">
|
|
1139
|
+
<use x="53.398437" y="260.425781" xlink:href="#o"/>
|
|
1140
|
+
</g>
|
|
1141
|
+
<g fill="#26ffcc">
|
|
1142
|
+
<use x="61.179687" y="260.425781" xlink:href="#l"/>
|
|
1143
|
+
</g>
|
|
1144
|
+
<g fill="#26ffcc">
|
|
1145
|
+
<use x="66.699219" y="260.425781" xlink:href="#l"/>
|
|
1146
|
+
</g>
|
|
1147
|
+
<g fill="#26ffcc">
|
|
1148
|
+
<use x="72.222656" y="260.425781" xlink:href="#e"/>
|
|
1149
|
+
</g>
|
|
1150
|
+
<g fill="#26ffcc">
|
|
1151
|
+
<use x="76.109375" y="260.425781" xlink:href="#d"/>
|
|
1152
|
+
</g>
|
|
1153
|
+
<g fill="#26ffcc">
|
|
1154
|
+
<use x="83.113281" y="260.425781" xlink:href="#g"/>
|
|
1155
|
+
</g>
|
|
1156
|
+
<g fill="#7fff00">
|
|
1157
|
+
<use x="165.515625" y="260.425781" xlink:href="#ey"/>
|
|
1158
|
+
</g>
|
|
1159
|
+
<g fill="#7fff00">
|
|
1160
|
+
<use x="176.015625" y="260.425781" xlink:href="#au"/>
|
|
1161
|
+
</g>
|
|
1162
|
+
<g fill="#7fff00">
|
|
1163
|
+
<use x="183.40625" y="260.425781" xlink:href="#i"/>
|
|
1164
|
+
</g>
|
|
1165
|
+
<g fill="#7fff00">
|
|
1166
|
+
<use x="188.890625" y="260.425781" xlink:href="#d"/>
|
|
1167
|
+
</g>
|
|
1168
|
+
<g fill="#7fff00">
|
|
1169
|
+
<use x="195.890625" y="260.425781" xlink:href="#e"/>
|
|
1170
|
+
</g>
|
|
1171
|
+
<g fill="#7fff00">
|
|
1172
|
+
<use x="199.777344" y="260.425781" xlink:href="#g"/>
|
|
1173
|
+
</g>
|
|
1174
|
+
<g fill="#7fff00">
|
|
1175
|
+
<use x="207.554688" y="260.425781" xlink:href="#e"/>
|
|
1176
|
+
</g>
|
|
1177
|
+
<g fill="#7fff00">
|
|
1178
|
+
<use x="211.445312" y="260.425781" xlink:href="#d"/>
|
|
1179
|
+
</g>
|
|
1180
|
+
<g fill="#7fff00">
|
|
1181
|
+
<use x="218.445312" y="260.425781" xlink:href="#g"/>
|
|
1182
|
+
</g>
|
|
1183
|
+
<g>
|
|
1184
|
+
<use x="17" y="276.019531" xlink:href="#j"/>
|
|
1185
|
+
</g>
|
|
1186
|
+
<g>
|
|
1187
|
+
<use x="24.777344" y="276.019531" xlink:href="#b"/>
|
|
1188
|
+
</g>
|
|
1189
|
+
<g>
|
|
1190
|
+
<use x="32.554688" y="276.019531" xlink:href="#es"/>
|
|
1191
|
+
</g>
|
|
1192
|
+
<g>
|
|
1193
|
+
<use x="42.667969" y="276.019531" xlink:href="#a"/>
|
|
1194
|
+
</g>
|
|
1195
|
+
<g>
|
|
1196
|
+
<use x="49.667969" y="276.019531" xlink:href="#m"/>
|
|
1197
|
+
</g>
|
|
1198
|
+
<g>
|
|
1199
|
+
<use x="53.554688" y="276.019531" xlink:href="#c"/>
|
|
1200
|
+
</g>
|
|
1201
|
+
<g>
|
|
1202
|
+
<use x="60.167969" y="276.019531" xlink:href="#ar"/>
|
|
1203
|
+
</g>
|
|
1204
|
+
<g>
|
|
1205
|
+
<use x="67.167969" y="276.019531" xlink:href="#ao"/>
|
|
1206
|
+
</g>
|
|
1207
|
+
<g>
|
|
1208
|
+
<use x="74.945312" y="276.019531" xlink:href="#er"/>
|
|
1209
|
+
</g>
|
|
1210
|
+
<g>
|
|
1211
|
+
<use x="81.945312" y="276.019531" xlink:href="#ao"/>
|
|
1212
|
+
</g>
|
|
1213
|
+
<g>
|
|
1214
|
+
<use x="89.722656" y="276.019531" xlink:href="#f"/>
|
|
1215
|
+
</g>
|
|
1216
|
+
<g>
|
|
1217
|
+
<use x="100.613281" y="276.019531" xlink:href="#eq"/>
|
|
1218
|
+
</g>
|
|
1219
|
+
<g>
|
|
1220
|
+
<use x="110.722656" y="276.019531" xlink:href="#a"/>
|
|
1221
|
+
</g>
|
|
1222
|
+
<g>
|
|
1223
|
+
<use x="117.722656" y="276.019531" xlink:href="#f"/>
|
|
1224
|
+
</g>
|
|
1225
|
+
<g>
|
|
1226
|
+
<use x="123.945312" y="276.019531" xlink:href="#c"/>
|
|
1227
|
+
</g>
|
|
1228
|
+
<g>
|
|
1229
|
+
<use x="156.222656" y="276.019531" xlink:href="#j"/>
|
|
1230
|
+
</g>
|
|
1231
|
+
<g>
|
|
1232
|
+
<use x="164" y="276.019531" xlink:href="#b"/>
|
|
1233
|
+
</g>
|
|
1234
|
+
<g>
|
|
1235
|
+
<use x="171.777344" y="276.019531" xlink:href="#h"/>
|
|
1236
|
+
</g>
|
|
1237
|
+
<g>
|
|
1238
|
+
<use x="179.554688" y="276.019531" xlink:href="#a"/>
|
|
1239
|
+
</g>
|
|
1240
|
+
<g>
|
|
1241
|
+
<use x="186.554688" y="276.019531" xlink:href="#m"/>
|
|
1242
|
+
</g>
|
|
1243
|
+
<g>
|
|
1244
|
+
<use x="190.445312" y="276.019531" xlink:href="#c"/>
|
|
1245
|
+
</g>
|
|
1246
|
+
<g>
|
|
1247
|
+
<use x="202.113281" y="276.019531" xlink:href="#aq"/>
|
|
1248
|
+
</g>
|
|
1249
|
+
<g>
|
|
1250
|
+
<use x="208.332031" y="276.019531" xlink:href="#a"/>
|
|
1251
|
+
</g>
|
|
1252
|
+
<g>
|
|
1253
|
+
<use x="215.332031" y="276.019531" xlink:href="#m"/>
|
|
1254
|
+
</g>
|
|
1255
|
+
<g>
|
|
1256
|
+
<use x="219.222656" y="276.019531" xlink:href="#c"/>
|
|
1257
|
+
</g>
|
|
1258
|
+
</g>
|
|
1259
|
+
</svg>
|