@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,518 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="380pt" height="123pt" version="1.1" viewBox="0 0 380 123" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="bk" overflow="visible">
|
|
5
|
+
<path d="m10.297-9.4531 0.29688 3.375h-0.65625c-0.03125-0.38281-0.0625-0.67969-0.09375-0.89062-0.03125-0.21875-0.10156-0.46094-0.20312-0.73438-0.09375-0.28125-0.21484-0.48438-0.35938-0.60938-0.14844-0.13281-0.35547-0.25-0.625-0.34375-0.27344-0.09375-0.60547-0.14062-1-0.14062h-1.0625v8.1406h2.1406v0.65625c-0.5-0.03125-1.5469-0.046875-3.1406-0.046875-1.5859 0-2.625 0.015625-3.125 0.046875v-0.65625h2.1406v-8.1406h-1.0781c-0.39844 0-0.73438 0.054687-1.0156 0.15625-0.27344 0.09375-0.48047 0.21094-0.625 0.34375-0.14844 0.125-0.26562 0.32422-0.35938 0.59375-0.09375 0.27344-0.16406 0.51562-0.20312 0.73438-0.03125 0.21094-0.058594 0.50781-0.078125 0.89062h-0.65625l0.28125-3.375z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="t" overflow="visible">
|
|
8
|
+
<path d="m5.2344-1.0781c-0.39844 0.77344-1.0898 1.1562-2.0781 1.1562-0.28125 0-0.5625-0.023438-0.84375-0.0625s-0.57422-0.11328-0.875-0.21875c-0.29297-0.10156-0.53125-0.26562-0.71875-0.48438-0.17969-0.22656-0.26562-0.50391-0.26562-0.82812 0-1.332 1.5156-2.0625 4.5469-2.1875v-0.48438c0-1.1016-0.51562-1.6562-1.5469-1.6562-0.36719 0-0.69922 0.039062-1 0.10938 0.20703 0.13672 0.3125 0.36719 0.3125 0.6875 0 0.27344-0.09375 0.48438-0.28125 0.64062-0.17969 0.15625-0.38281 0.23438-0.60938 0.23438-0.21875 0-0.41797-0.078125-0.59375-0.23438-0.17969-0.15625-0.26562-0.36719-0.26562-0.64062 0-0.86328 0.83203-1.2969 2.5-1.2969 1.0078 0 1.7734 0.19922 2.2969 0.59375 0.51953 0.38672 0.78125 0.90625 0.78125 1.5625v3.0156c0 0.125 0.007812 0.21875 0.03125 0.28125 0.019531 0.054687 0.09375 0.10547 0.21875 0.15625 0.13281 0.054687 0.33594 0.078125 0.60938 0.078125 0.082031 0 0.14062 0.007812 0.17188 0.015625 0.039062 0.011719 0.082031 0.042969 0.125 0.09375 0.039062 0.042969 0.0625 0.11719 0.0625 0.21875 0 0.09375-0.023438 0.16797-0.0625 0.21875-0.042969 0.054688-0.089844 0.085938-0.14062 0.09375-0.054687 0.011719-0.13672 0.015625-0.25 0.015625h-0.67188c-0.34375 0-0.625-0.03125-0.84375-0.09375-0.21094-0.070312-0.35547-0.17188-0.4375-0.29688-0.074219-0.13281-0.12109-0.24219-0.14062-0.32812-0.023437-0.09375-0.03125-0.21094-0.03125-0.35938zm-0.23438-2.2031c-0.21094 0.011719-0.40625 0.03125-0.59375 0.0625-0.17969 0.023438-0.42188 0.074219-0.73438 0.15625-0.30469 0.074219-0.5625 0.16797-0.78125 0.28125-0.21094 0.10547-0.39844 0.27344-0.5625 0.5-0.15625 0.21875-0.23438 0.46875-0.23438 0.75 0 0.3125 0.11719 0.57812 0.35938 0.79688 0.25 0.21094 0.55078 0.3125 0.90625 0.3125 0.125 0 0.25781-0.015625 0.40625-0.046875 0.15625-0.039062 0.33203-0.10938 0.53125-0.20312 0.20703-0.09375 0.375-0.25 0.5-0.46875 0.13281-0.22656 0.20312-0.5 0.20312-0.8125z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="bj" overflow="visible">
|
|
11
|
+
<path d="m3-5.6094c0.55078-0.45703 1.2344-0.6875 2.0469-0.6875 1.0078 0 1.8203 0.29688 2.4375 0.89062 0.61328 0.58594 0.92188 1.3438 0.92188 2.2812 0 0.96875-0.32812 1.7461-0.98438 2.3281-0.65625 0.58594-1.5078 0.875-2.5469 0.875-0.78125 0-1.4648-0.28516-2.0469-0.85938l-0.6875 0.78125h-0.65625v-8.4062c0-0.25781-0.054687-0.41406-0.15625-0.46875-0.09375-0.050781-0.36719-0.078125-0.8125-0.078125v-0.65625l2.4844-0.10938zm0.078125 4.2188c0.42578 0.64844 0.98438 0.96875 1.6719 0.96875 0.64453 0 1.1445-0.23828 1.5-0.71875 0.23828-0.36328 0.35938-1.0234 0.35938-1.9844 0-0.22656-0.007813-0.41016-0.015625-0.54688 0-0.13281-0.015625-0.32031-0.046875-0.5625-0.023437-0.25-0.074219-0.44531-0.15625-0.59375-0.074219-0.15625-0.17188-0.31641-0.29688-0.48438-0.11719-0.16406-0.27734-0.28516-0.48438-0.35938-0.19922-0.082031-0.43359-0.125-0.70312-0.125-0.36719 0-0.71094 0.085937-1.0312 0.25-0.32422 0.16797-0.58984 0.38281-0.79688 0.64062z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="bi" overflow="visible">
|
|
14
|
+
<path d="m3.1406-9.7188v9.0625h0.96875v0.65625c-0.96094-0.03125-1.5391-0.046875-1.7344-0.046875-0.25 0-0.82422 0.015625-1.7188 0.046875v-0.65625h0.96875v-7.75c0-0.25781-0.054688-0.41406-0.15625-0.46875-0.09375-0.050781-0.36719-0.078125-0.8125-0.078125v-0.65625z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="s" overflow="visible">
|
|
17
|
+
<path d="m6.4688-3.0469h-4.2344c0 1.7188 0.66406 2.5781 2 2.5781 0.44531 0 0.85156-0.10156 1.2188-0.3125 0.36328-0.20703 0.625-0.47656 0.78125-0.8125 0.039063-0.125 0.078125-0.20312 0.10938-0.23438 0.039062-0.039063 0.11719-0.0625 0.23438-0.0625 0.22656 0 0.34375 0.085937 0.34375 0.25 0 0.085937-0.046875 0.21094-0.14062 0.375-0.09375 0.16797-0.24219 0.35938-0.4375 0.57812-0.1875 0.21094-0.48047 0.39062-0.875 0.54688-0.39844 0.14453-0.85156 0.21875-1.3594 0.21875-1.1172 0-2.0078-0.29688-2.6719-0.89062-0.65625-0.60156-0.98438-1.3828-0.98438-2.3438 0-0.90625 0.30078-1.6602 0.90625-2.2656 0.61328-0.61328 1.4609-0.92188 2.5469-0.92188 0.95703 0 1.6953 0.25 2.2188 0.75 0.53125 0.53125 0.79688 1.25 0.79688 2.1562 0 0.1875-0.03125 0.30469-0.09375 0.34375-0.0625 0.03125-0.18359 0.046875-0.35938 0.046875zm-4.2344-0.46875h3.3594c-0.054688-1.5508-0.61719-2.3281-1.6875-2.3281-0.57422 0-1.0156 0.24609-1.3281 0.73438-0.1875 0.29297-0.30469 0.82422-0.34375 1.5938z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="bh" overflow="visible">
|
|
20
|
+
<path d="m10.531-8.9531v8.2969h1.5156v0.65625c-0.35547-0.03125-1.1953-0.046875-2.5156-0.046875-1.3125 0-2.1484 0.015625-2.5 0.046875v-0.65625h1.5156v-4h-4.5v4h1.5156v0.65625c-0.35547-0.03125-1.1953-0.046875-2.5156-0.046875-1.3125 0-2.1484 0.015625-2.5 0.046875v-0.65625h1.5156v-8.2969h-1.5156v-0.65625c0.35156 0.03125 1.1875 0.046875 2.5 0.046875 1.3203 0 2.1602-0.015625 2.5156-0.046875v0.65625h-1.5156v3.6406h4.5v-3.6406h-1.5156v-0.65625c0.35156 0.03125 1.1875 0.046875 2.5 0.046875 1.3203 0 2.1602-0.015625 2.5156-0.046875v0.65625z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="bg" overflow="visible">
|
|
23
|
+
<path d="m8.4062-0.65625v0.65625l-2.5469 0.078125v-0.6875c-0.57422 0.46094-1.2305 0.6875-1.9688 0.6875-1.0234 0-1.8398-0.28906-2.4531-0.875-0.60547-0.59375-0.90625-1.3594-0.90625-2.2969 0-0.96875 0.32031-1.7422 0.96875-2.3281 0.65625-0.58203 1.5039-0.875 2.5469-0.875 0.71875 0 1.3477 0.21094 1.8906 0.625v-2.7344c0-0.25781-0.054688-0.41406-0.15625-0.46875-0.09375-0.050781-0.36719-0.078125-0.8125-0.078125v-0.65625l2.4844-0.10938v8.5156c0 0.26172 0.046875 0.41797 0.14062 0.46875 0.09375 0.054687 0.36328 0.078125 0.8125 0.078125zm-2.5469-4.2812c-0.4375-0.57031-0.99609-0.85938-1.6719-0.85938-0.66797 0-1.168 0.24609-1.5 0.73438-0.24219 0.36719-0.35938 1.0234-0.35938 1.9688v0.54688c0.007813 0.13672 0.023437 0.32812 0.046875 0.57812 0.03125 0.24219 0.082031 0.4375 0.15625 0.59375 0.070312 0.15625 0.17188 0.32031 0.29688 0.48438 0.125 0.15625 0.28516 0.27734 0.48438 0.35938 0.20703 0.074219 0.44531 0.10938 0.71875 0.10938 0.71875 0 1.3281-0.33594 1.8281-1.0156z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="r" overflow="visible">
|
|
26
|
+
<path d="m3.375-9.25 3.0312 7.8438 3.0781-7.8906c0.050781-0.14453 0.10938-0.22656 0.17188-0.25 0.050781-0.007813 0.14453-0.015625 0.28125-0.015625h2.375v0.4375h-0.34375c-0.60547 0-0.95312 0.078125-1.0469 0.23438-0.042969 0.0625-0.0625 0.20312-0.0625 0.42188v7.375c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.13281 0.085938 0.44531 0.125 0.9375 0.125h0.34375v0.4375c-0.35547-0.03125-1.0273-0.046875-2.0156-0.046875-0.99219 0-1.6641 0.015625-2.0156 0.046875v-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-8.0312h-0.015625l-3.4531 8.8594c-0.0625 0.16797-0.14844 0.25781-0.25 0.26562-0.10547 0-0.19922-0.10156-0.28125-0.3125l-3.375-8.7031v7.5469c0 0.39844 0.125 0.67188 0.375 0.82812 0.23828 0.13672 0.59375 0.20312 1.0625 0.20312v0.4375c-0.98047-0.03125-1.5273-0.046875-1.6406-0.046875-0.11719 0-0.66406 0.015625-1.6406 0.046875v-0.4375c0.90625 0 1.3828-0.26953 1.4375-0.8125v-0.21875-7c0-0.28125-0.054687-0.45703-0.15625-0.53125-0.13672-0.082031-0.44922-0.125-0.9375-0.125h-0.34375v-0.4375h2.375c0.20703 0 0.33594 0.039062 0.39062 0.10938l0.015625 0.015625v0.03125c0.019531 0.03125 0.046875 0.085938 0.078125 0.15625z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="q" overflow="visible">
|
|
29
|
+
<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"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="f" overflow="visible">
|
|
32
|
+
<path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="bb" overflow="visible">
|
|
35
|
+
<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"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="e" overflow="visible">
|
|
38
|
+
<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"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="ba" overflow="visible">
|
|
41
|
+
<path d="m4.0156-3.2969 1.875 2.4219c0.19531 0.25 0.45312 0.39062 0.76562 0.42188 0.11328 0.011719 0.30078 0.015625 0.5625 0.015625v0.4375c-0.41797-0.03125-0.86719-0.046875-1.3438-0.046875-0.16797 0-0.66797 0.015625-1.5 0.046875v-0.4375c0.28125-0.007812 0.44531-0.125 0.5-0.34375 0-0.039062-0.10156-0.19531-0.29688-0.46875l-1.0625-1.3906c-0.71094 0.83594-1.1094 1.3516-1.2031 1.5469-0.042969 0.085938-0.0625 0.15625-0.0625 0.21875 0 0.26172 0.13281 0.40625 0.40625 0.4375v0.4375c-0.66797-0.03125-1.1094-0.046875-1.3281-0.046875-0.40625 0-0.79297 0.015625-1.1562 0.046875v-0.4375c0.72656 0 1.3203-0.28125 1.7812-0.84375l1.3281-1.6562-1.3906-1.8125c-0.32422-0.41406-0.55859-0.66016-0.70312-0.73438-0.042969-0.03125-0.09375-0.050781-0.15625-0.0625h-0.015625c-0.125-0.03125-0.38672-0.046875-0.78125-0.046875v-0.4375c0.38281 0.03125 0.82812 0.046875 1.3281 0.046875 0.28125 0 0.78516-0.015625 1.5156-0.046875v0.4375c-0.3125 0.011719-0.47656 0.125-0.48438 0.34375 0 0.074219 0.039062 0.15625 0.125 0.25l1.0938 1.4219 0.85938-1.0938c0.14453-0.16406 0.21875-0.33203 0.21875-0.5 0-0.25781-0.13672-0.39844-0.40625-0.42188v-0.4375c0.36328 0.03125 0.8125 0.046875 1.3438 0.046875 0.39453 0 0.77344-0.015625 1.1406-0.046875v0.4375c-0.71094 0.011719-1.2617 0.25-1.6562 0.71875-0.17969 0.19922-0.60938 0.72656-1.2969 1.5781z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="p" overflow="visible">
|
|
44
|
+
<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"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="o" overflow="visible">
|
|
47
|
+
<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"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="n" overflow="visible">
|
|
50
|
+
<path d="m5.0312-5.4062c-0.34375-0.34375-0.84375-0.51562-1.5-0.51562-0.59375 0-1.0703 0.28125-1.4219 0.84375-0.3125 0.5-0.46875 1.1797-0.46875 2.0312 0 1.3438 0.39844 2.2266 1.2031 2.6406 0.25 0.13672 0.50391 0.20312 0.76562 0.20312 0.91406 0 1.5312-0.48828 1.8438-1.4688 0.019531-0.09375 0.078125-0.14062 0.17188-0.14062 0.125 0 0.1875 0.046875 0.1875 0.14062 0 0.17969-0.10547 0.43359-0.3125 0.76562-0.46094 0.71094-1.1328 1.0625-2.0156 1.0625-0.875 0-1.6172-0.34375-2.2188-1.0312-0.53125-0.61328-0.79688-1.332-0.79688-2.1562 0-0.95703 0.33203-1.7578 1-2.4062 0.57031-0.55078 1.2539-0.82812 2.0469-0.82812 0.76953 0 1.3633 0.21094 1.7812 0.625 0.23828 0.25 0.35938 0.53906 0.35938 0.85938 0 0.36719-0.15625 0.58594-0.46875 0.65625-0.054688 0.011719-0.10938 0.015625-0.17188 0.015625-0.33594 0-0.54297-0.14844-0.625-0.45312-0.011719-0.050781-0.015625-0.11719-0.015625-0.20312 0-0.33203 0.16016-0.53516 0.48438-0.60938 0.050781-0.019531 0.10938-0.03125 0.17188-0.03125z"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="j" overflow="visible">
|
|
53
|
+
<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"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="i" overflow="visible">
|
|
56
|
+
<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 1.082 0 1.7031 0.46094 1.8594 1.375 0.28125-0.63281 0.71875-1.0547 1.3125-1.2656 0.22656-0.070313 0.46875-0.10938 0.71875-0.10938 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875 0.007812 0.17969 0.015625 0.49609 0.015625 0.95312v2.6719c0 0.23047 0.13281 0.35938 0.40625 0.39062 0.10156 0.023438 0.32812 0.03125 0.67188 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.070312-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085938-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.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"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="h" overflow="visible">
|
|
59
|
+
<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"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="g" overflow="visible">
|
|
62
|
+
<path d="m2.9062-2.7188c-0.80469-0.15625-1.3281-0.30469-1.5781-0.45312-0.09375-0.050781-0.18359-0.11328-0.26562-0.1875-0.39844-0.32031-0.59375-0.71875-0.59375-1.1875 0-0.65625 0.28516-1.1328 0.85938-1.4375 0.36328-0.1875 0.82031-0.28125 1.375-0.28125 0.51953 0 0.95703 0.13281 1.3125 0.39062 0.10156-0.082031 0.17969-0.16016 0.23438-0.23438 0.125-0.10156 0.21875-0.15625 0.28125-0.15625 0.09375 0.085937 0.14453 0.19531 0.15625 0.32812v1.4219c0 0.1875-0.027344 0.29297-0.078125 0.3125h-0.015625l-0.015625 0.015625h-0.0625c-0.10547 0-0.16406-0.039062-0.17188-0.125-0.074219-0.9375-0.46484-1.4883-1.1719-1.6562-0.14844-0.019531-0.30469-0.03125-0.46875-0.03125-0.875 0-1.3906 0.27344-1.5469 0.8125-0.011719 0.085938-0.015625 0.16797-0.015625 0.25 0 0.46875 0.35938 0.80469 1.0781 1 0.13281 0.042969 0.34766 0.089844 0.64062 0.14062 0.66406 0.13672 1.1445 0.32031 1.4375 0.54688 0.050781 0.042969 0.10156 0.085938 0.15625 0.125 0.39453 0.39844 0.59375 0.83984 0.59375 1.3281 0 0.79297-0.32812 1.3555-0.98438 1.6875-0.35547 0.17578-0.78125 0.26562-1.2812 0.26562-0.60547 0-1.1172-0.20312-1.5312-0.60938l-0.28125 0.32812c-0.1875 0.1875-0.30859 0.28125-0.35938 0.28125-0.09375-0.085938-0.14062-0.19531-0.14062-0.34375v-1.8438c0-0.20703 0.03125-0.31641 0.09375-0.32812l0.015625-0.015625h0.0625c0.09375 0 0.15625 0.054688 0.1875 0.15625 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.23828 1.0859 0.69531 1.7266 1.375 1.9219 0.17578 0.042969 0.36328 0.0625 0.5625 0.0625 0.84375 0 1.3516-0.28906 1.5312-0.875 0.039062-0.125 0.0625-0.25391 0.0625-0.39062 0-0.6875-0.49219-1.1172-1.4688-1.2969z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="bf" overflow="visible">
|
|
65
|
+
<path d="m8.1406-9.5156 0.40625 3.1406h-0.35938c-0.11719-1.0195-0.32031-1.707-0.60938-2.0625-0.36719-0.4375-1.0547-0.65625-2.0625-0.65625h-1.6719c-0.36719 0-0.58594 0.058594-0.65625 0.17188v0.03125c-0.023438 0.054687-0.03125 0.17188-0.03125 0.35938v3.5469h1.2031c0.70703 0 1.1484-0.16406 1.3281-0.5 0.10156-0.20703 0.15625-0.58594 0.15625-1.1406h0.34375v3.7188h-0.34375c0-0.6875-0.10156-1.1289-0.29688-1.3281l-0.015625-0.015625c-0.21094-0.19531-0.60156-0.29688-1.1719-0.29688h-1.2031v3.4375c0 0.27344 0.050781 0.44531 0.15625 0.51562 0.15625 0.10547 0.54688 0.15625 1.1719 0.15625h0.45312v0.4375c-0.33594-0.03125-1.1172-0.046875-2.3438-0.046875-1.0938 0-1.8047 0.015625-2.125 0.046875v-0.4375h0.32812c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039062-0.0625 0.0625-0.20312 0.0625-0.42188v-7.3281c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.125-0.09375-0.4375-0.14062-0.9375-0.14062h-0.32812v-0.42188z"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="be" overflow="visible">
|
|
68
|
+
<path d="m5.4531-5.6094-3.8906 5.2656h1.6562c0.83203 0 1.3828-0.20703 1.6562-0.625 0.19531-0.28906 0.32812-0.84375 0.39062-1.6562h0.34375l-0.23438 2.625h-4.625c-0.21094 0-0.32422-0.03125-0.34375-0.09375-0.011719-0.03125-0.015625-0.066406-0.015625-0.10938 0-0.0625 0.039063-0.14453 0.125-0.25l3.9062-5.2656h-1.5938c-0.8125 0-1.3398 0.18359-1.5781 0.54688-0.16797 0.26172-0.27344 0.72656-0.3125 1.3906h-0.34375l0.14062-2.25h4.4844c0.21875 0 0.33594 0.039062 0.35938 0.10938 0.007813 0.023437 0.015625 0.042969 0.015625 0.0625 0 0.0625-0.046875 0.14844-0.14062 0.25z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="bd" overflow="visible">
|
|
71
|
+
<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"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="bc" overflow="visible">
|
|
74
|
+
<path d="m5.3125-0.76562c-0.48047 0.61719-1.1055 0.92188-1.875 0.92188-0.85547 0-1.5781-0.34375-2.1719-1.0312-0.53125-0.60156-0.79688-1.3164-0.79688-2.1406 0-0.96875 0.36328-1.7695 1.0938-2.4062 0.59375-0.50781 1.2695-0.76562 2.0312-0.76562 0.70703 0 1.2969 0.29297 1.7656 0.875v-3.0312c0-0.36328-0.0625-0.58594-0.1875-0.67188h-0.015625c-0.125-0.070313-0.42188-0.10938-0.89062-0.10938v-0.4375l2.0156-0.15625v8.5c0 0.36719 0.070312 0.58984 0.21875 0.67188h0.015625c0.125 0.074219 0.41016 0.10938 0.85938 0.10938v0.4375l-2.0625 0.15625zm0-3.75c0-0.1875-0.042969-0.34375-0.125-0.46875l-0.015625-0.0625c-0.38672-0.55078-0.89062-0.82812-1.5156-0.82812-0.65625 0-1.1836 0.29688-1.5781 0.89062-0.29297 0.44922-0.4375 1.1094-0.4375 1.9844s0.13281 1.5273 0.40625 1.9531c0.375 0.59375 0.86328 0.89062 1.4688 0.89062 0.66406 0 1.207-0.30469 1.625-0.92188l0.03125-0.0625c0.09375-0.1875 0.14062-0.35938 0.14062-0.51562z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="aj" overflow="visible">
|
|
77
|
+
<path d="m10 41.391c-1.293-1.3672-2.375-2.8672-3.25-4.5-0.86719-1.6367-1.5547-3.3555-2.0625-5.1562-0.5-1.793-0.85938-3.6328-1.0781-5.5156-0.21094-1.8867-0.3125-3.8125-0.3125-5.7812s0.10156-3.9023 0.3125-5.7969c0.21875-1.8867 0.57812-3.7305 1.0781-5.5312 0.50781-1.793 1.1953-3.5117 2.0625-5.1562 0.875-1.6367 1.957-3.125 3.25-4.4688 0.050781-0.03125 0.082031-0.046875 0.09375-0.046875h0.40625c0.03125 0 0.054688 0.015625 0.078125 0.046875 0.019531 0.03125 0.03125 0.058594 0.03125 0.078125 0 0.042969-0.011719 0.074219-0.03125 0.09375-1.168 1.375-2.1367 2.8828-2.9062 4.5312-0.77344 1.6445-1.375 3.3516-1.8125 5.125-0.42969 1.7812-0.72656 3.5781-0.89062 5.3906-0.16797 1.8203-0.25 3.7344-0.25 5.7344s0.082031 3.8984 0.25 5.7031c0.16406 1.8125 0.46094 3.6094 0.89062 5.3906 0.4375 1.7891 1.0391 3.5039 1.8125 5.1406 0.76953 1.6328 1.7383 3.1484 2.9062 4.5469 0.019531 0.007812 0.03125 0.035156 0.03125 0.078125 0 0.03125-0.015625 0.054687-0.046875 0.078125-0.023438 0.03125-0.042969 0.046875-0.0625 0.046875h-0.40625c-0.011719 0-0.027344-0.007813-0.046875-0.015625-0.023437 0-0.039063-0.007812-0.046875-0.015625z"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="z" overflow="visible">
|
|
80
|
+
<path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="y" overflow="visible">
|
|
83
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="x" overflow="visible">
|
|
86
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="c" overflow="visible">
|
|
89
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="w" overflow="visible">
|
|
92
|
+
<path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="v" overflow="visible">
|
|
95
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="u" overflow="visible">
|
|
98
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="a" overflow="visible">
|
|
101
|
+
<path d="m2.6875-0.73438c0 0.30469-0.14062 0.52734-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.14062-0.67188-0.42188-0.054688-0.10156-0.078125-0.20703-0.078125-0.3125 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.050781 0.21094-0.078125 0.32812-0.078125 0.30078 0 0.52344 0.14062 0.67188 0.42188 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="az" overflow="visible">
|
|
104
|
+
<path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="ay" overflow="visible">
|
|
107
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="ax" overflow="visible">
|
|
110
|
+
<path d="m2.9375-6.4062v5.6094c0 0.21094 0.039062 0.33984 0.125 0.39062 0.11328 0.0625 0.38281 0.09375 0.8125 0.09375h0.3125v0.3125c-0.23047-0.019531-0.77344-0.03125-1.625-0.03125-0.84375 0-1.3828 0.011719-1.6094 0.03125v-0.3125h0.3125c0.51953 0 0.81641-0.054688 0.89062-0.17188v-0.015625c0.03125-0.050781 0.046875-0.14844 0.046875-0.29688v-5.1719c-0.34375 0.17969-0.78125 0.26562-1.3125 0.26562v-0.3125c0.80078 0 1.4062-0.21094 1.8125-0.64062 0.13281 0 0.21094 0.023438 0.23438 0.0625v0.015625 0.17188z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="d" overflow="visible">
|
|
113
|
+
<path d="m2.6875-3.5c0 0.3125-0.14062 0.53906-0.42188 0.67188-0.10547 0.042969-0.21094 0.0625-0.3125 0.0625-0.3125 0-0.53906-0.13281-0.67188-0.40625-0.054688-0.10156-0.078125-0.21094-0.078125-0.32812 0-0.3125 0.14062-0.53516 0.42188-0.67188 0.10156-0.039063 0.21094-0.0625 0.32812-0.0625 0.30078 0 0.52344 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="aw" overflow="visible">
|
|
116
|
+
<path d="m6.6719-3.2969v0.85938c0.61328-0.75 1.0703-1.6719 1.375-2.7656 0.09375-0.1875 0.16406-0.28516 0.21875-0.29688 0.10156 0 0.15625 0.046875 0.15625 0.14062 0 0.15625-0.10547 0.51172-0.3125 1.0625-0.32422 0.80469-0.75781 1.543-1.2969 2.2188-0.09375 0.1875-0.14062 0.35547-0.14062 0.5 0 0.94922 0.14453 1.4219 0.4375 1.4219 0.28906 0 0.52344-0.16016 0.70312-0.48438 0.03125-0.0625 0.054688-0.12891 0.078125-0.20312 0.039063-0.09375 0.10156-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.17969-0.12109 0.39062-0.35938 0.64062-0.24219 0.23828-0.51562 0.35938-0.82812 0.35938-0.58594 0-0.98438-0.32031-1.2031-0.96875-0.023437-0.0625-0.042969-0.12891-0.0625-0.20312-0.98047 0.78125-1.9648 1.1719-2.9531 1.1719-0.875 0-1.5234-0.34766-1.9375-1.0469-0.21875-0.38281-0.32812-0.82812-0.32812-1.3281 0-0.94531 0.36328-1.8281 1.0938-2.6406 0.71875-0.80078 1.5312-1.2383 2.4375-1.3125 0.082031-0.007813 0.16016-0.015625 0.23438-0.015625 0.78125 0 1.3828 0.30859 1.8125 0.92188 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.33203 0.49219 0.5 1.1406 0.5 1.9531zm-0.9375 1.9062c-0.011719-0.15625-0.015625-0.67578-0.015625-1.5625 0-1.1445-0.13281-1.9297-0.39062-2.3594-0.10547-0.1875-0.24219-0.32031-0.40625-0.40625l-0.015625-0.015625c-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.66797 0-1.2656 0.37109-1.7969 1.1094l-0.10938 0.17188c-0.33594 0.54297-0.57812 1.2969-0.73438 2.2656-0.054688 0.26172-0.078125 0.47656-0.078125 0.64062 0 0.79297 0.27344 1.2812 0.82812 1.4688 0.125 0.042969 0.26953 0.0625 0.4375 0.0625 0.96875 0 1.9219-0.41016 2.8594-1.2344z"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="av" overflow="visible">
|
|
119
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="au" overflow="visible">
|
|
122
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="at" overflow="visible">
|
|
125
|
+
<path d="m0.59375 41.422c-0.085938 0-0.125-0.042969-0.125-0.125 0-0.042969 0.007812-0.070313 0.03125-0.078125 1.1562-1.375 2.125-2.8906 2.9062-4.5469 0.78125-1.6484 1.3828-3.3594 1.8125-5.1406 0.42578-1.7812 0.72266-3.5781 0.89062-5.3906 0.16406-1.8047 0.25-3.7031 0.25-5.7031s-0.085937-3.9141-0.25-5.7344c-0.16797-1.8125-0.46484-3.6055-0.89062-5.375-0.42969-1.7734-1.0312-3.4922-1.8125-5.1562-0.78125-1.6562-1.75-3.1641-2.9062-4.5156-0.023438-0.019531-0.03125-0.050781-0.03125-0.09375 0-0.082031 0.039062-0.125 0.125-0.125h0.39062c0.007813 0 0.039063 0.015625 0.09375 0.046875 1.2812 1.332 2.3594 2.8203 3.2344 4.4688 0.88281 1.6445 1.5781 3.375 2.0781 5.1875s0.85156 3.6445 1.0625 5.5c0.20703 1.8516 0.3125 3.7852 0.3125 5.7969 0 2.0078-0.10547 3.9375-0.3125 5.7812-0.21094 1.8516-0.5625 3.6875-1.0625 5.5s-1.1875 3.5391-2.0625 5.1875c-0.875 1.6445-1.9609 3.1406-3.25 4.4844-0.054687 0.019531-0.085937 0.03125-0.09375 0.03125z"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="as" overflow="visible">
|
|
128
|
+
<path d="m9.8906-4.3906-0.46875 4.3906h-8.8594v-0.53125h0.40625c0.73828 0 1.1641-0.09375 1.2812-0.28125 0.039062-0.082031 0.0625-0.25391 0.0625-0.51562v-8.9531c0-0.34375-0.070312-0.5625-0.20312-0.65625-0.15625-0.09375-0.53906-0.14062-1.1406-0.14062h-0.40625v-0.53125c0.39453 0.03125 1.2539 0.046875 2.5781 0.046875 1.5 0 2.4531-0.015625 2.8594-0.046875v0.53125h-0.5625c-0.90625 0-1.4219 0.10938-1.5469 0.32812-0.042969 0.085938-0.0625 0.24609-0.0625 0.48438v9.0625c0 0.33594 0.0625 0.53125 0.1875 0.59375h0.015625c0.10156 0.054687 0.3125 0.078125 0.625 0.078125h1.3906c1.6016 0 2.625-0.64062 3.0625-1.9219 0.14453-0.41406 0.26562-1.0625 0.35938-1.9375z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="ar" overflow="visible">
|
|
131
|
+
<path d="m6.625-3.9219h-4.7344c0 1.1562 0.16406 2.0078 0.5 2.5469 0.55078 0.69922 1.1914 1.0781 1.9219 1.1406 0.78125 0 1.4102-0.31641 1.8906-0.95312 0.16406-0.22656 0.30078-0.49219 0.40625-0.79688 0.03125-0.16406 0.10156-0.25 0.21875-0.25 0.15625 0 0.23438 0.074219 0.23438 0.21875 0 0.24219-0.16406 0.57812-0.48438 1.0156-0.46875 0.63672-1.0781 1.0156-1.8281 1.1406-0.17969 0.03125-0.35547 0.046875-0.53125 0.046875-1.0625 0-1.9688-0.40625-2.7188-1.2188-0.6875-0.75-1.0312-1.6484-1.0312-2.7031 0-1.1875 0.41016-2.1602 1.2344-2.9219 0.65625-0.63281 1.4258-0.95312 2.3125-0.95312 1.2812 0 2.1758 0.54297 2.6875 1.625 0.23828 0.51172 0.35938 1.0781 0.35938 1.7031 0 0.1875-0.042969 0.30469-0.125 0.34375-0.03125 0.011719-0.13672 0.015625-0.3125 0.015625zm-4.7188-0.35938h4.0312c0-1.082-0.24219-1.8945-0.71875-2.4375-0.3125-0.34375-0.71484-0.51562-1.2031-0.51562-0.58594 0-1.0742 0.26562-1.4688 0.79688-0.39844 0.51172-0.60938 1.2305-0.64062 2.1562z"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="aq" overflow="visible">
|
|
134
|
+
<path d="m3.0312-6.7969v5.4688c0 0.35547 0.066406 0.57031 0.20312 0.64062l0.015625 0.03125c0.15625 0.085938 0.50781 0.125 1.0625 0.125h0.35938v0.53125c-0.44922-0.03125-1.168-0.046875-2.1562-0.046875 0.03125 0-0.61719 0.015625-1.9375 0.046875v-0.53125c0.66406 0 1.0547-0.050781 1.1719-0.15625l0.03125-0.03125c0.082031-0.082031 0.125-0.27344 0.125-0.57812v-5.5h-1.3438v-0.53125h1.3438v-1.9531c0-1.0391 0.42188-1.8125 1.2656-2.3125 0.4375-0.25781 0.89062-0.39062 1.3594-0.39062 0.63281 0 1.0977 0.21875 1.3906 0.65625 0.09375 0.16797 0.14062 0.34375 0.14062 0.53125 0 0.39844-0.17188 0.64062-0.51562 0.73438-0.074219 0.011719-0.14844 0.015625-0.21875 0.015625-0.375 0-0.60938-0.17578-0.70312-0.53125l-0.015625-0.015625v-0.015625c-0.011719-0.050781-0.015625-0.10938-0.015625-0.17188 0-0.33203 0.16406-0.56641 0.5-0.70312-0.16797-0.082031-0.35547-0.125-0.5625-0.125-0.49219 0-0.89844 0.27734-1.2188 0.82812-0.23047 0.40625-0.34375 0.90234-0.34375 1.4844v1.9688h2v0.53125z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="ap" overflow="visible">
|
|
137
|
+
<path d="m2.9375-6.7969v4.7188c0 1.1367 0.32812 1.7461 0.98438 1.8281 0.050781 0.011719 0.10156 0.015625 0.15625 0.015625 0.48828 0 0.82812-0.31641 1.0156-0.95312 0.082031-0.26953 0.125-0.58594 0.125-0.95312v-0.9375h0.42188v0.96875c0 0.92969-0.26172 1.5938-0.78125 2-0.25 0.19531-0.54688 0.29688-0.89062 0.29688-0.96094 0-1.6172-0.35938-1.9688-1.0781-0.15625-0.33203-0.23438-0.73828-0.23438-1.2188v-4.6875h-1.4375v-0.375c1.0078-0.039063 1.6758-0.67578 2-1.9062 0.11328-0.42578 0.17578-0.88281 0.1875-1.375h0.42188v3.125h2.4375v0.53125z"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="ao" overflow="visible">
|
|
140
|
+
<path d="m3.6719-4.6875h1.5156c0.40625 0 0.75-0.039062 1.0312-0.125 0.28906-0.09375 0.50391-0.19141 0.64062-0.29688 0.14453-0.10156 0.25391-0.25 0.32812-0.4375 0.082031-0.19531 0.125-0.35156 0.125-0.46875 0.007812-0.125 0.015625-0.28516 0.015625-0.48438 0-0.20703-0.007813-0.375-0.015625-0.5-0.011719-0.125-0.054688-0.28125-0.125-0.46875-0.074219-0.1875-0.18359-0.33203-0.32812-0.4375-0.13672-0.10156-0.34375-0.19531-0.625-0.28125-0.28125-0.082031-0.62109-0.125-1.0156-0.125h-1.5469zm3.4844 0.26562c0.82031 0.3125 1.3047 0.82031 1.4531 1.5156 0 0.023438 0.019531 0.19922 0.0625 0.53125 0.039063 0.33594 0.066406 0.52734 0.078125 0.57812 0.019531 0.1875 0.039062 0.35156 0.0625 0.48438 0.03125 0.125 0.078125 0.27734 0.14062 0.45312 0.070313 0.17969 0.17188 0.3125 0.29688 0.40625 0.125 0.085937 0.28125 0.125 0.46875 0.125 0.19531 0 0.375-0.078125 0.53125-0.23438s0.25391-0.375 0.29688-0.65625c0.007813-0.070312 0.015625-0.125 0.015625-0.15625 0.007812-0.039062 0.035156-0.070312 0.078125-0.09375 0.050781-0.03125 0.11719-0.046875 0.20312-0.046875 0.20703 0 0.3125 0.09375 0.3125 0.28125 0 0.0625-0.011719 0.14062-0.03125 0.23438-0.011719 0.085938-0.054688 0.19922-0.125 0.34375-0.0625 0.13672-0.14844 0.26172-0.25 0.375-0.10547 0.11719-0.26172 0.21484-0.46875 0.29688-0.19922 0.082031-0.42969 0.125-0.6875 0.125-0.82422 0-1.4609-0.10938-1.9062-0.32812-0.21875-0.10156-0.39844-0.21875-0.53125-0.34375-0.125-0.13281-0.21484-0.29688-0.26562-0.48438-0.054687-0.19531-0.089844-0.36328-0.10938-0.5-0.011719-0.13281-0.015625-0.33594-0.015625-0.60938 0-0.51953-0.023437-0.86719-0.0625-1.0469-0.03125-0.1875-0.14844-0.39062-0.34375-0.60938-0.27344-0.28906-0.65625-0.4375-1.1562-0.4375h-1.5312v3.6094h1.4062v0.60938c-0.3125-0.019531-1.0781-0.03125-2.2969-0.03125-1.2109 0-1.9688 0.011719-2.2812 0.03125v-0.60938h1.4062v-7.7031h-1.4062v-0.60938h4.9531c1.1875 0 2.1289 0.23047 2.8281 0.6875 0.69531 0.46094 1.0469 1.0312 1.0469 1.7188 0 0.46094-0.18359 0.88281-0.54688 1.2656-0.36719 0.375-0.90625 0.65234-1.625 0.82812z"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="an" overflow="visible">
|
|
143
|
+
<path d="m2.9062-5.8438v5.2344h0.8125v0.60938c-0.9375-0.019531-1.4453-0.03125-1.5156-0.03125-0.26172 0-0.79297 0.011719-1.5938 0.03125v-0.60938h0.90625v-4.0156c0-0.23828-0.046875-0.38281-0.14062-0.4375-0.085938-0.050781-0.32422-0.078125-0.71875-0.078125v-0.60938zm-0.17188-2.8906c0.20703 0.1875 0.3125 0.42969 0.3125 0.71875 0 0.28125-0.10547 0.52344-0.3125 0.71875-0.19922 0.19922-0.4375 0.29688-0.71875 0.29688-0.27344 0-0.50781-0.097656-0.70312-0.29688-0.19922-0.20703-0.29688-0.44531-0.29688-0.71875 0-0.28125 0.097656-0.51953 0.29688-0.71875 0.19531-0.19531 0.42969-0.29688 0.70312-0.29688 0.28125 0 0.51953 0.10156 0.71875 0.29688z"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="am" overflow="visible">
|
|
146
|
+
<path d="m2.75-2.5625c0.15625 0.0625 0.34375 0.09375 0.5625 0.09375s0.39844-0.03125 0.54688-0.09375c0.15625-0.070312 0.26953-0.14844 0.34375-0.23438 0.082031-0.09375 0.14453-0.21875 0.1875-0.375 0.039063-0.15625 0.0625-0.27344 0.0625-0.35938v-0.39062-0.39062c0-0.09375-0.023437-0.21094-0.0625-0.35938-0.042969-0.15625-0.10547-0.27344-0.1875-0.35938-0.074219-0.09375-0.1875-0.17188-0.34375-0.23438-0.14844-0.070313-0.32812-0.10938-0.54688-0.10938s-0.40625 0.039062-0.5625 0.10938c-0.14844 0.0625-0.26172 0.14062-0.34375 0.23438-0.074219 0.085938-0.13281 0.20312-0.17188 0.35938-0.03125 0.14844-0.054687 0.26562-0.0625 0.35938v0.39062 0.39062c0.007813 0.085938 0.03125 0.20312 0.0625 0.35938 0.039063 0.15625 0.097656 0.28125 0.17188 0.375 0.082031 0.085937 0.19531 0.16406 0.34375 0.23438zm-1.0156 0.21875c-0.09375 0.11719-0.14062 0.26172-0.14062 0.4375 0 0.16797 0.054688 0.33594 0.17188 0.5 0.11328 0.16797 0.29688 0.27344 0.54688 0.3125 0.039062 0.011719 0.375 0.015625 1 0.015625 0.51953 0 0.89844 0.007813 1.1406 0.015625 0.25 0.011719 0.51953 0.042969 0.8125 0.09375 0.30078 0.054688 0.57031 0.13672 0.8125 0.25 0.64453 0.33594 0.96875 0.88281 0.96875 1.6562 0 0.47656-0.28125 0.875-0.84375 1.1875-0.55469 0.32031-1.375 0.48438-2.4688 0.48438-1.1797 0-2.0273-0.17188-2.5469-0.51562-0.51172-0.33594-0.76562-0.71094-0.76562-1.125 0-0.1875 0.046875-0.35938 0.14062-0.51562 0.09375-0.14844 0.21094-0.26172 0.35938-0.34375 0.14453-0.085938 0.26562-0.14062 0.35938-0.17188 0.09375-0.039062 0.17578-0.070312 0.25-0.09375-0.375-0.30078-0.5625-0.71875-0.5625-1.25 0-0.39453 0.14453-0.78125 0.4375-1.1562-0.21094-0.14453-0.375-0.33594-0.5-0.57812-0.11719-0.25-0.17188-0.50781-0.17188-0.78125 0-0.51953 0.21094-0.96875 0.64062-1.3438 0.42578-0.38281 1.0703-0.57812 1.9375-0.57812 0.73828 0 1.3203 0.14062 1.75 0.42188 0.41406-0.33203 0.875-0.5 1.375-0.5 0.26953 0 0.47266 0.085937 0.60938 0.25 0.13281 0.15625 0.20312 0.32812 0.20312 0.51562 0 0.15625-0.054688 0.28906-0.15625 0.39062-0.10547 0.10547-0.24219 0.15625-0.40625 0.15625-0.15625 0-0.28906-0.046875-0.39062-0.14062-0.10547-0.10156-0.15625-0.23828-0.15625-0.40625 0-0.09375 0.015625-0.17969 0.046875-0.26562-0.28125 0.03125-0.55469 0.11719-0.8125 0.25 0.35156 0.375 0.53125 0.79297 0.53125 1.25 0 0.52344-0.21875 0.97656-0.65625 1.3594-0.42969 0.375-1.0742 0.5625-1.9375 0.5625-0.625 0-1.1523-0.11328-1.5781-0.34375zm0.79688 2.5156c-0.66797 0-1 0.25781-1 0.78125 0 0.32031 0.17969 0.59766 0.54688 0.82812 0.375 0.23828 0.92578 0.35938 1.6562 0.35938 0.75781 0 1.3125-0.12109 1.6562-0.35938 0.35156-0.24219 0.53125-0.51172 0.53125-0.8125 0-0.53125-0.62109-0.79688-1.8594-0.79688z"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="al" overflow="visible">
|
|
149
|
+
<path d="m8 0c-0.73047-0.019531-1.2773-0.03125-1.6406-0.03125-0.36719 0-0.91406 0.011719-1.6406 0.03125v-0.60938h0.89062v-3.5156c0-0.46875-0.0625-0.78906-0.1875-0.96875-0.11719-0.1875-0.28906-0.28125-0.51562-0.28125-0.48047 0-0.92188 0.18359-1.3281 0.54688-0.40625 0.35547-0.60938 0.85547-0.60938 1.5v2.7188h0.89062v0.60938c-0.73047-0.019531-1.2773-0.03125-1.6406-0.03125-0.36719 0-0.91406 0.011719-1.6406 0.03125v-0.60938h0.90625v-7.1875c0-0.23828-0.046875-0.38281-0.14062-0.4375-0.09375-0.050781-0.35156-0.078125-0.76562-0.078125v-0.60938l2.3125-0.09375v4.4062h0.015625c0.47656-0.82031 1.207-1.2344 2.1875-1.2344 0.66406 0 1.1641 0.14844 1.5 0.4375 0.33203 0.28125 0.5 0.75781 0.5 1.4219v3.375h0.90625z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="ak" overflow="visible">
|
|
152
|
+
<path d="m2.8281-5.1562v3.5781c0 0.76172 0.25 1.1406 0.75 1.1406 0.20703 0 0.39062-0.097656 0.54688-0.29688 0.15625-0.19531 0.23438-0.5 0.23438-0.90625v-0.65625h0.60938v0.6875c0 0.48047-0.14062 0.88281-0.42188 1.2031-0.28125 0.32422-0.66797 0.48438-1.1562 0.48438-1.3672 0-2.0469-0.55469-2.0469-1.6719v-3.5625h-1.0781v-0.46875c0.61328-0.019531 1.0859-0.28516 1.4219-0.79688 0.34375-0.51953 0.51562-1.1289 0.51562-1.8281h0.625v2.4844h1.8906v0.60938z"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="ai" overflow="visible">
|
|
155
|
+
<path d="m2.7031-2.5156c-0.74219-0.15625-1.2305-0.30078-1.4688-0.4375-0.085937-0.039063-0.16797-0.097656-0.25-0.17188-0.375-0.30078-0.5625-0.66406-0.5625-1.0938 0-0.61328 0.26953-1.0547 0.8125-1.3281 0.33203-0.1875 0.75781-0.28125 1.2812-0.28125 0.47656 0 0.88281 0.125 1.2188 0.375 0.09375-0.082031 0.16406-0.15625 0.21875-0.21875 0.11328-0.10156 0.20312-0.15625 0.26562-0.15625 0.082031 0.085937 0.12891 0.1875 0.14062 0.3125v1.3125c0 0.1875-0.027344 0.28906-0.078125 0.29688h-0.015625l-0.015625 0.015625h-0.0625c-0.09375 0-0.14844-0.035156-0.15625-0.10938-0.0625-0.875-0.42188-1.3828-1.0781-1.5312-0.13672-0.03125-0.28125-0.046875-0.4375-0.046875-0.82422 0-1.3047 0.25-1.4375 0.75-0.023437 0.085937-0.03125 0.16406-0.03125 0.23438 0 0.44922 0.33203 0.76172 1 0.9375 0.13281 0.042969 0.33594 0.089844 0.60938 0.14062 0.625 0.11719 1.0664 0.28125 1.3281 0.5 0.050781 0.03125 0.10156 0.070313 0.15625 0.10938 0.36328 0.36719 0.54688 0.78125 0.54688 1.25 0 0.73047-0.30859 1.2461-0.92188 1.5469-0.32422 0.16406-0.71484 0.25-1.1719 0.25-0.57422 0-1.0547-0.1875-1.4375-0.5625l-0.26562 0.3125c-0.16797 0.16406-0.27344 0.25-0.3125 0.25-0.09375-0.074219-0.14844-0.17578-0.15625-0.3125v-1.7188c0-0.1875 0.03125-0.28906 0.09375-0.3125h0.078125c0.09375 0 0.14844 0.046875 0.17188 0.14062 0 0.011719 0.003906 0.039062 0.015625 0.078125 0.22656 1 0.65625 1.5938 1.2812 1.7812 0.15625 0.042969 0.33203 0.0625 0.53125 0.0625 0.76953 0 1.2383-0.27344 1.4062-0.82812 0.039062-0.10156 0.0625-0.22266 0.0625-0.35938 0-0.63281-0.45312-1.0312-1.3594-1.1875z"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="m" overflow="visible">
|
|
158
|
+
<path d="m1.4375-4.4688c0-0.34375-0.070312-0.55078-0.20312-0.625-0.10547-0.0625-0.29297-0.097656-0.5625-0.10938h-0.25v-0.40625l1.8281-0.14062v1.375c0.40625-0.91406 1.0469-1.375 1.9219-1.375 1.0078 0 1.5859 0.42969 1.7344 1.2812 0.25781-0.59375 0.66406-0.98438 1.2188-1.1719 0.20703-0.070313 0.42578-0.10938 0.65625-0.10938 0.65625 0 1.1133 0.16406 1.375 0.48438 0.22656 0.27344 0.35938 0.64062 0.39062 1.1094 0.007813 0.16797 0.015625 0.46094 0.015625 0.875v2.4844c0 0.21094 0.125 0.33594 0.375 0.375 0.10156 0.011719 0.3125 0.015625 0.625 0.015625v0.40625c-0.875-0.019531-1.3594-0.03125-1.4531-0.03125-0.0625 0-0.55469 0.011719-1.4688 0.03125v-0.40625c0.50781 0 0.8125-0.035156 0.90625-0.10938l0.015625-0.03125c0.0625-0.070313 0.09375-0.21875 0.09375-0.4375v-3.0312c0-0.85156-0.24609-1.3281-0.73438-1.4219-0.074219-0.007812-0.14844-0.015625-0.21875-0.015625-0.53125 0-0.97656 0.23047-1.3281 0.6875-0.29297 0.36719-0.4375 0.82812-0.4375 1.3906v2.3906c0 0.29297 0.070312 0.46484 0.21875 0.51562 0.09375 0.042969 0.35938 0.0625 0.79688 0.0625v0.40625c-0.88672-0.019531-1.3711-0.03125-1.4531-0.03125-0.074219 0-0.5625 0.011719-1.4688 0.03125v-0.40625c0.50781 0 0.80469-0.035156 0.89062-0.10938l0.03125-0.03125c0.0625-0.070313 0.09375-0.21875 0.09375-0.4375v-3.0312c0-0.85156-0.25-1.3281-0.75-1.4219-0.0625-0.007812-0.13672-0.015625-0.21875-0.015625-0.53125 0-0.97656 0.23047-1.3281 0.6875-0.28125 0.36719-0.42188 0.82812-0.42188 1.3906v2.3906c0 0.29297 0.066406 0.46484 0.20312 0.51562 0.09375 0.042969 0.36328 0.0625 0.8125 0.0625v0.40625c-0.88672-0.019531-1.3711-0.03125-1.4531-0.03125-0.074219 0-0.5625 0.011719-1.4688 0.03125v-0.40625c0.50781 0 0.80469-0.035156 0.89062-0.10938l0.03125-0.03125c0.0625-0.070313 0.09375-0.21875 0.09375-0.4375z"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="l" overflow="visible">
|
|
161
|
+
<path d="m4.3281-0.98438c-0.21875 0.53125-0.60156 0.88281-1.1406 1.0469-0.17969 0.050781-0.36719 0.078125-0.5625 0.078125-0.74219 0-1.3086-0.17578-1.7031-0.53125-0.25-0.22656-0.375-0.50781-0.375-0.84375 0-0.66406 0.36719-1.1953 1.1094-1.5938 0.050781-0.039063 0.11328-0.070313 0.1875-0.09375 0.53125-0.25 1.3047-0.40625 2.3281-0.46875h0.0625v-0.48438c0-0.73828-0.26562-1.2422-0.79688-1.5156-0.17969-0.09375-0.37109-0.14062-0.57812-0.14062-0.57422 0-1.0156 0.16797-1.3281 0.5-0.023438 0.03125-0.046875 0.0625-0.078125 0.09375 0.40625 0.054688 0.62891 0.25 0.67188 0.59375 0 0.29297-0.13672 0.48438-0.40625 0.57812-0.0625 0.011719-0.13281 0.015625-0.20312 0.015625-0.3125 0-0.5-0.14062-0.5625-0.42188-0.023437-0.039063-0.03125-0.10156-0.03125-0.1875 0-0.51953 0.26953-0.91406 0.8125-1.1875 0.34375-0.1875 0.72656-0.28125 1.1562-0.28125 0.70703 0 1.3008 0.24219 1.7812 0.71875 0.30078 0.3125 0.45703 0.74609 0.46875 1.2969v2.8438c0 0.25 0.078125 0.43359 0.23438 0.54688 0.0625 0.0625 0.14062 0.09375 0.23438 0.09375 0.3125 0 0.46875-0.27344 0.46875-0.82812v-0.73438h0.32812v0.73438c0 0.63672-0.26172 1.0312-0.78125 1.1875-0.10547 0.03125-0.19922 0.046875-0.28125 0.046875-0.42969 0-0.73047-0.22266-0.90625-0.67188-0.054688-0.125-0.089844-0.25391-0.10938-0.39062zm-0.09375-2.1406c-1.3359 0.054688-2.1836 0.46484-2.5469 1.2344-0.09375 0.19922-0.14062 0.41406-0.14062 0.64062 0 0.44922 0.19531 0.77734 0.59375 0.98438 0.17578 0.085937 0.36719 0.125 0.57812 0.125 0.44531 0 0.82031-0.17578 1.125-0.53125 0.25781-0.30078 0.39062-0.67969 0.39062-1.1406z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="b" overflow="visible">
|
|
164
|
+
<path d="m2.2969-9.0156v8.0312c0 0.29297 0.070313 0.46484 0.21875 0.51562 0.09375 0.042969 0.35938 0.0625 0.79688 0.0625v0.40625l-1.4375-0.03125c-0.10547 0-0.58984 0.011719-1.4531 0.03125v-0.40625c0.51953 0 0.82031-0.035156 0.90625-0.10938l0.03125-0.03125c0.050781-0.070313 0.078125-0.21875 0.078125-0.4375v-6.7656c0-0.33203-0.058594-0.53906-0.17188-0.625h-0.015625c-0.09375-0.050781-0.26172-0.082031-0.5-0.09375h-0.32812v-0.40625z"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
<symbol id="ah" overflow="visible">
|
|
167
|
+
<path d="m4.5312-5.0469c0.6875 0.16797 1.2188 0.57422 1.5938 1.2188 0.23828 0.4375 0.35938 0.90625 0.35938 1.4062 0 0.82422-0.28906 1.5078-0.85938 2.0469-0.48047 0.4375-1.0469 0.65625-1.7031 0.65625-0.9375 0-1.6953-0.26172-2.2656-0.78125l-0.125-0.125c-0.3125 0.5-0.46875 0.74219-0.46875 0.73438-0.0625 0.11328-0.125 0.17188-0.1875 0.17188-0.09375-0.074219-0.14062-0.17969-0.14062-0.3125v-2.5938c0-0.1875 0.023437-0.28906 0.078125-0.3125l0.015625-0.015625h0.0625c0.10156 0 0.15625 0.042969 0.15625 0.125 0.03125 0.83594 0.28516 1.4844 0.76562 1.9531l0.046875 0.0625c0.5 0.46875 1.1797 0.70312 2.0469 0.70312 0.65625 0 1.1445-0.28516 1.4688-0.85938 0.1875-0.3125 0.28125-0.64453 0.28125-1 0-0.46875-0.13672-0.86719-0.40625-1.2031-0.23047-0.3125-0.57031-0.52344-1.0156-0.64062l-0.015625-0.015625c0 0.011719-0.027344 0.011719-0.078125 0-1.0742-0.25781-1.6406-0.40625-1.7031-0.4375-0.6875-0.22656-1.1836-0.67578-1.4844-1.3438-0.14844-0.32031-0.21875-0.66406-0.21875-1.0312 0-0.78906 0.29688-1.4375 0.89062-1.9375 0.46875-0.39453 1.0156-0.59375 1.6406-0.59375 0.73828 0 1.375 0.25 1.9062 0.75l0.17188 0.17188 0.45312-0.75c0.0625-0.11328 0.12891-0.17188 0.20312-0.17188 0.082031 0.085937 0.12891 0.1875 0.14062 0.3125v2.625c0 0.17969-0.027344 0.27734-0.078125 0.29688h-0.015625l-0.015625 0.015625h-0.0625c-0.085938 0-0.13672-0.050781-0.15625-0.15625-0.24219-1.8008-1.0859-2.707-2.5312-2.7188-0.625 0-1.1055 0.25-1.4375 0.75l-0.015625 0.015625c-0.17969 0.28125-0.26562 0.59375-0.26562 0.9375 0 0.57422 0.22656 1.0273 0.6875 1.3594 0.17578 0.13672 0.38281 0.23047 0.625 0.28125z"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
<symbol id="ag" overflow="visible">
|
|
170
|
+
<path d="m9.3281-9.4844 0.26562 3.1562h-0.35938c-0.09375-1.0625-0.24219-1.7539-0.4375-2.0781-0.24219-0.36328-0.72656-0.57031-1.4531-0.625-0.17969-0.007812-0.38672-0.015625-0.625-0.015625-0.42969 0-0.69531 0.011719-0.79688 0.03125-0.15625 0.125-0.24219 0.30469-0.25 0.53125v7.375c0 0.26172 0.054687 0.42969 0.17188 0.5 0.17578 0.11719 0.60938 0.17188 1.2969 0.17188h0.5625v0.4375c-0.38672-0.03125-1.2734-0.046875-2.6562-0.046875-1.3867 0-2.2734 0.015625-2.6562 0.046875v-0.4375h0.5625c0.82031 0 1.2891-0.085938 1.4062-0.26562 0.019531-0.039063 0.035156-0.097656 0.046875-0.17188 0.007812-0.039062 0.015625-0.11719 0.015625-0.23438v-7.375c0-0.25781-0.042969-0.41406-0.125-0.46875h-0.015625l-0.015625-0.015625h-0.015625c-0.023438-0.019531-0.0625-0.035156-0.125-0.046875-0.09375-0.019531-0.34375-0.03125-0.75-0.03125-0.94922 0-1.5781 0.14062-1.8906 0.42188l-0.078125 0.078125c-0.25 0.27344-0.42188 0.875-0.51562 1.8125-0.011719 0.11719-0.023437 0.25-0.03125 0.40625h-0.35938l0.26562-3.1562z"/>
|
|
171
|
+
</symbol>
|
|
172
|
+
<symbol id="af" overflow="visible">
|
|
173
|
+
<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"/>
|
|
174
|
+
</symbol>
|
|
175
|
+
<symbol id="ae" overflow="visible">
|
|
176
|
+
<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"/>
|
|
177
|
+
</symbol>
|
|
178
|
+
<symbol id="ad" overflow="visible">
|
|
179
|
+
<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"/>
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol id="ac" overflow="visible">
|
|
182
|
+
<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"/>
|
|
183
|
+
</symbol>
|
|
184
|
+
<symbol id="ab" overflow="visible">
|
|
185
|
+
<path d="m8.1406-9.5156 0.40625 3.1406h-0.35938c-0.11719-1.0195-0.32031-1.707-0.60938-2.0625-0.36719-0.4375-1.0547-0.65625-2.0625-0.65625h-1.6719c-0.36719 0-0.58594 0.058594-0.65625 0.17188v0.03125c-0.023438 0.054687-0.03125 0.17188-0.03125 0.35938v3.5469h1.2031c0.70703 0 1.1484-0.16406 1.3281-0.5 0.10156-0.20703 0.15625-0.58594 0.15625-1.1406h0.34375v3.7188h-0.34375c0-0.6875-0.10156-1.1289-0.29688-1.3281l-0.015625-0.015625c-0.21094-0.19531-0.60156-0.29688-1.1719-0.29688h-1.2031v3.4375c0 0.27344 0.050781 0.44531 0.15625 0.51562 0.15625 0.10547 0.54688 0.15625 1.1719 0.15625h0.45312v0.4375c-0.33594-0.03125-1.1172-0.046875-2.3438-0.046875-1.0938 0-1.8047 0.015625-2.125 0.046875v-0.4375h0.32812c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039062-0.0625 0.0625-0.20312 0.0625-0.42188v-7.3281c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.125-0.09375-0.4375-0.14062-0.9375-0.14062h-0.32812v-0.42188z"/>
|
|
186
|
+
</symbol>
|
|
187
|
+
<symbol id="k" overflow="visible">
|
|
188
|
+
<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"/>
|
|
189
|
+
</symbol>
|
|
190
|
+
<symbol id="aa" overflow="visible">
|
|
191
|
+
<path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
|
|
192
|
+
</symbol>
|
|
193
|
+
</defs>
|
|
194
|
+
<rect width="380" height="123" fill="#fff"/>
|
|
195
|
+
<path transform="scale(14)" d="m0.71429 0.73438h25.648" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
196
|
+
<path transform="scale(14)" d="m0.71429 1.3167h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
197
|
+
<path d="m10.559 10.559h357.96v15.75h-357.96z" fill="#db9370"/>
|
|
198
|
+
<g fill="#fff">
|
|
199
|
+
<use x="149.589844" y="23.296875" xlink:href="#bk"/>
|
|
200
|
+
</g>
|
|
201
|
+
<g fill="#fff">
|
|
202
|
+
<use x="159.449219" y="23.296875" xlink:href="#t"/>
|
|
203
|
+
</g>
|
|
204
|
+
<g fill="#fff">
|
|
205
|
+
<use x="167.273437" y="23.296875" xlink:href="#bj"/>
|
|
206
|
+
</g>
|
|
207
|
+
<g fill="#fff">
|
|
208
|
+
<use x="176.21875" y="23.296875" xlink:href="#bi"/>
|
|
209
|
+
</g>
|
|
210
|
+
<g fill="#fff">
|
|
211
|
+
<use x="180.691406" y="23.296875" xlink:href="#s"/>
|
|
212
|
+
</g>
|
|
213
|
+
<g fill="#fff">
|
|
214
|
+
<use x="192.738281" y="23.296875" xlink:href="#bh"/>
|
|
215
|
+
</g>
|
|
216
|
+
<g fill="#fff">
|
|
217
|
+
<use x="205.335937" y="23.296875" xlink:href="#s"/>
|
|
218
|
+
</g>
|
|
219
|
+
<g fill="#fff">
|
|
220
|
+
<use x="212.714844" y="23.296875" xlink:href="#t"/>
|
|
221
|
+
</g>
|
|
222
|
+
<g fill="#fff">
|
|
223
|
+
<use x="220.542969" y="23.296875" xlink:href="#bg"/>
|
|
224
|
+
</g>
|
|
225
|
+
<path transform="scale(14)" d="m26.323 1.3167h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
226
|
+
<path transform="scale(14)" d="m0.71429 1.8993h25.648" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
227
|
+
<path transform="scale(14)" d="m0.71429 2.4819h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
228
|
+
<g>
|
|
229
|
+
<use x="50.019531" y="39.605469" xlink:href="#r"/>
|
|
230
|
+
</g>
|
|
231
|
+
<g>
|
|
232
|
+
<use x="62.851562" y="39.605469" xlink:href="#q"/>
|
|
233
|
+
</g>
|
|
234
|
+
<g>
|
|
235
|
+
<use x="69.851562" y="39.605469" xlink:href="#f"/>
|
|
236
|
+
</g>
|
|
237
|
+
<g>
|
|
238
|
+
<use x="75.296875" y="39.605469" xlink:href="#bb"/>
|
|
239
|
+
</g>
|
|
240
|
+
<g>
|
|
241
|
+
<use x="80.78125" y="39.605469" xlink:href="#e"/>
|
|
242
|
+
</g>
|
|
243
|
+
<g>
|
|
244
|
+
<use x="84.671875" y="39.605469" xlink:href="#ba"/>
|
|
245
|
+
</g>
|
|
246
|
+
<path transform="scale(14)" d="m9.3943 2.4819h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
247
|
+
<g>
|
|
248
|
+
<use x="139.359375" y="39.605469" xlink:href="#r"/>
|
|
249
|
+
</g>
|
|
250
|
+
<g>
|
|
251
|
+
<use x="152.191406" y="39.605469" xlink:href="#p"/>
|
|
252
|
+
</g>
|
|
253
|
+
<g>
|
|
254
|
+
<use x="159.96875" y="39.605469" xlink:href="#o"/>
|
|
255
|
+
</g>
|
|
256
|
+
<g>
|
|
257
|
+
<use x="163.859375" y="39.605469" xlink:href="#f"/>
|
|
258
|
+
</g>
|
|
259
|
+
<g>
|
|
260
|
+
<use x="169.304688" y="39.605469" xlink:href="#e"/>
|
|
261
|
+
</g>
|
|
262
|
+
<g>
|
|
263
|
+
<use x="173.191406" y="39.605469" xlink:href="#n"/>
|
|
264
|
+
</g>
|
|
265
|
+
<g>
|
|
266
|
+
<use x="179.414062" y="39.605469" xlink:href="#j"/>
|
|
267
|
+
</g>
|
|
268
|
+
<g>
|
|
269
|
+
<use x="186.414062" y="39.605469" xlink:href="#o"/>
|
|
270
|
+
</g>
|
|
271
|
+
<g>
|
|
272
|
+
<use x="190.304688" y="39.605469" xlink:href="#p"/>
|
|
273
|
+
</g>
|
|
274
|
+
<g>
|
|
275
|
+
<use x="198.082031" y="39.605469" xlink:href="#i"/>
|
|
276
|
+
</g>
|
|
277
|
+
<g>
|
|
278
|
+
<use x="209.746094" y="39.605469" xlink:href="#h"/>
|
|
279
|
+
</g>
|
|
280
|
+
<g>
|
|
281
|
+
<use x="217.527344" y="39.605469" xlink:href="#g"/>
|
|
282
|
+
</g>
|
|
283
|
+
<path transform="scale(14)" d="m16.452 2.4819h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
284
|
+
<g fill="#1234b5">
|
|
285
|
+
<use x="237.886719" y="39.605469" xlink:href="#bf"/>
|
|
286
|
+
</g>
|
|
287
|
+
<g fill="#1234b5">
|
|
288
|
+
<use x="245.859375" y="39.605469" xlink:href="#j"/>
|
|
289
|
+
</g>
|
|
290
|
+
<g fill="#1234b5">
|
|
291
|
+
<use x="252.859375" y="39.605469" xlink:href="#h"/>
|
|
292
|
+
</g>
|
|
293
|
+
<g fill="#1234b5">
|
|
294
|
+
<use x="260.25" y="39.605469" xlink:href="#f"/>
|
|
295
|
+
</g>
|
|
296
|
+
<g fill="#1234b5">
|
|
297
|
+
<use x="270.359375" y="39.605469" xlink:href="#g"/>
|
|
298
|
+
</g>
|
|
299
|
+
<g fill="#1234b5">
|
|
300
|
+
<use x="275.882812" y="39.605469" xlink:href="#e"/>
|
|
301
|
+
</g>
|
|
302
|
+
<g fill="#1234b5">
|
|
303
|
+
<use x="279.769531" y="39.605469" xlink:href="#be"/>
|
|
304
|
+
</g>
|
|
305
|
+
<g fill="#1234b5">
|
|
306
|
+
<use x="285.992188" y="39.605469" xlink:href="#bd"/>
|
|
307
|
+
</g>
|
|
308
|
+
<g fill="#1234b5">
|
|
309
|
+
<use x="296.882812" y="39.605469" xlink:href="#n"/>
|
|
310
|
+
</g>
|
|
311
|
+
<g fill="#1234b5">
|
|
312
|
+
<use x="303.105469" y="39.605469" xlink:href="#j"/>
|
|
313
|
+
</g>
|
|
314
|
+
<g fill="#1234b5">
|
|
315
|
+
<use x="310.105469" y="39.605469" xlink:href="#i"/>
|
|
316
|
+
</g>
|
|
317
|
+
<g fill="#1234b5">
|
|
318
|
+
<use x="321.769531" y="39.605469" xlink:href="#i"/>
|
|
319
|
+
</g>
|
|
320
|
+
<g fill="#1234b5">
|
|
321
|
+
<use x="333.4375" y="39.605469" xlink:href="#q"/>
|
|
322
|
+
</g>
|
|
323
|
+
<g fill="#1234b5">
|
|
324
|
+
<use x="340.4375" y="39.605469" xlink:href="#h"/>
|
|
325
|
+
</g>
|
|
326
|
+
<g fill="#1234b5">
|
|
327
|
+
<use x="348.214844" y="39.605469" xlink:href="#bc"/>
|
|
328
|
+
</g>
|
|
329
|
+
<g fill="#1234b5">
|
|
330
|
+
<use x="355.992188" y="39.605469" xlink:href="#g"/>
|
|
331
|
+
</g>
|
|
332
|
+
<path transform="scale(14)" d="m26.323 2.4819h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
333
|
+
<path transform="scale(14)" d="m0.71429 3.0642h25.648" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
334
|
+
<path transform="scale(14)" d="m0.71429 4.9261h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
|
|
335
|
+
<g>
|
|
336
|
+
<use x="17.558594" y="48.523438" xlink:href="#aj"/>
|
|
337
|
+
</g>
|
|
338
|
+
<g>
|
|
339
|
+
<use x="29.132812" y="55.429688" xlink:href="#z"/>
|
|
340
|
+
</g>
|
|
341
|
+
<g>
|
|
342
|
+
<use x="38.089844" y="57.53125" xlink:href="#y"/>
|
|
343
|
+
</g>
|
|
344
|
+
<g>
|
|
345
|
+
<use x="42.992188" y="57.53125" xlink:href="#x"/>
|
|
346
|
+
</g>
|
|
347
|
+
<g>
|
|
348
|
+
<use x="62.382813" y="55.429688" xlink:href="#c"/>
|
|
349
|
+
</g>
|
|
350
|
+
<g>
|
|
351
|
+
<use x="68.605469" y="55.429688" xlink:href="#c"/>
|
|
352
|
+
</g>
|
|
353
|
+
<g>
|
|
354
|
+
<use x="74.824219" y="55.429688" xlink:href="#c"/>
|
|
355
|
+
</g>
|
|
356
|
+
<g>
|
|
357
|
+
<use x="93.207031" y="55.429688" xlink:href="#w"/>
|
|
358
|
+
</g>
|
|
359
|
+
<g>
|
|
360
|
+
<use x="102.160156" y="57.53125" xlink:href="#v"/>
|
|
361
|
+
</g>
|
|
362
|
+
<g>
|
|
363
|
+
<use x="107.0625" y="57.53125" xlink:href="#u"/>
|
|
364
|
+
</g>
|
|
365
|
+
<g>
|
|
366
|
+
<use x="29.53125" y="69.703125" xlink:href="#a"/>
|
|
367
|
+
</g>
|
|
368
|
+
<g>
|
|
369
|
+
<use x="38.324219" y="69.703125" xlink:href="#a"/>
|
|
370
|
+
</g>
|
|
371
|
+
<g>
|
|
372
|
+
<use x="47.113281" y="69.703125" xlink:href="#a"/>
|
|
373
|
+
</g>
|
|
374
|
+
<g>
|
|
375
|
+
<use x="55.90625" y="69.703125" xlink:href="#a"/>
|
|
376
|
+
</g>
|
|
377
|
+
<g>
|
|
378
|
+
<use x="64.699219" y="69.703125" xlink:href="#a"/>
|
|
379
|
+
</g>
|
|
380
|
+
<g>
|
|
381
|
+
<use x="73.492188" y="69.703125" xlink:href="#a"/>
|
|
382
|
+
</g>
|
|
383
|
+
<g>
|
|
384
|
+
<use x="82.28125" y="69.703125" xlink:href="#a"/>
|
|
385
|
+
</g>
|
|
386
|
+
<g>
|
|
387
|
+
<use x="91.074219" y="69.703125" xlink:href="#a"/>
|
|
388
|
+
</g>
|
|
389
|
+
<g>
|
|
390
|
+
<use x="99.867188" y="69.703125" xlink:href="#a"/>
|
|
391
|
+
</g>
|
|
392
|
+
<g>
|
|
393
|
+
<use x="108.660156" y="69.703125" xlink:href="#a"/>
|
|
394
|
+
</g>
|
|
395
|
+
<g>
|
|
396
|
+
<use x="28.644531" y="86.617188" xlink:href="#az"/>
|
|
397
|
+
</g>
|
|
398
|
+
<g>
|
|
399
|
+
<use x="37.597656" y="88.71875" xlink:href="#ay"/>
|
|
400
|
+
</g>
|
|
401
|
+
<g>
|
|
402
|
+
<use x="43.480469" y="88.71875" xlink:href="#ax"/>
|
|
403
|
+
</g>
|
|
404
|
+
<g>
|
|
405
|
+
<use x="62.382812" y="86.617188" xlink:href="#d"/>
|
|
406
|
+
</g>
|
|
407
|
+
<g>
|
|
408
|
+
<use x="68.605469" y="86.617188" xlink:href="#d"/>
|
|
409
|
+
</g>
|
|
410
|
+
<g>
|
|
411
|
+
<use x="74.824219" y="86.617188" xlink:href="#d"/>
|
|
412
|
+
</g>
|
|
413
|
+
<g>
|
|
414
|
+
<use x="92.714844" y="86.617188" xlink:href="#aw"/>
|
|
415
|
+
</g>
|
|
416
|
+
<g>
|
|
417
|
+
<use x="101.671875" y="88.71875" xlink:href="#av"/>
|
|
418
|
+
</g>
|
|
419
|
+
<g>
|
|
420
|
+
<use x="107.554688" y="88.71875" xlink:href="#au"/>
|
|
421
|
+
</g>
|
|
422
|
+
<g>
|
|
423
|
+
<use x="113.433594" y="48.523437" xlink:href="#at"/>
|
|
424
|
+
</g>
|
|
425
|
+
<path transform="matrix(14 0 0 14 -3.9551e-6 -3.985e-6)" d="m9.3943 4.9261h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
|
|
426
|
+
<g>
|
|
427
|
+
<use x="140.1875" y="72.464844" xlink:href="#as"/>
|
|
428
|
+
</g>
|
|
429
|
+
<g>
|
|
430
|
+
<use x="150.6875" y="72.464844" xlink:href="#ar"/>
|
|
431
|
+
</g>
|
|
432
|
+
<g>
|
|
433
|
+
<use x="158.152344" y="72.464844" xlink:href="#aq"/>
|
|
434
|
+
</g>
|
|
435
|
+
<g>
|
|
436
|
+
<use x="163.289063" y="72.464844" xlink:href="#ap"/>
|
|
437
|
+
</g>
|
|
438
|
+
<path transform="matrix(14 0 0 14 -6.1833e-6 -5.1367e-6)" d="m12.709 4.9261h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
|
|
439
|
+
<path d="m178.49 43.18h51.84v51.566h-51.84z" fill="#00bce5"/>
|
|
440
|
+
<g fill="#fff">
|
|
441
|
+
<use x="186.597656" y="72.464844" xlink:href="#ao"/>
|
|
442
|
+
</g>
|
|
443
|
+
<g fill="#fff">
|
|
444
|
+
<use x="197.464844" y="72.464844" xlink:href="#an"/>
|
|
445
|
+
</g>
|
|
446
|
+
<g fill="#fff">
|
|
447
|
+
<use x="201.492188" y="72.464844" xlink:href="#am"/>
|
|
448
|
+
</g>
|
|
449
|
+
<g fill="#fff">
|
|
450
|
+
<use x="208.9375" y="72.464844" xlink:href="#al"/>
|
|
451
|
+
</g>
|
|
452
|
+
<g fill="#fff">
|
|
453
|
+
<use x="216.585938" y="72.464844" xlink:href="#ak"/>
|
|
454
|
+
</g>
|
|
455
|
+
<path transform="matrix(14 0 0 14 -1.0138e-5 -6.6724e-6)" d="m16.452 4.9261h0.0399" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
|
|
456
|
+
<g fill="#1234b5">
|
|
457
|
+
<use x="267.816406" y="72.464844" xlink:href="#ai"/>
|
|
458
|
+
</g>
|
|
459
|
+
<g fill="#1234b5">
|
|
460
|
+
<use x="272.785156" y="72.464844" xlink:href="#m"/>
|
|
461
|
+
</g>
|
|
462
|
+
<g fill="#1234b5">
|
|
463
|
+
<use x="283.285156" y="72.464844" xlink:href="#l"/>
|
|
464
|
+
</g>
|
|
465
|
+
<g fill="#1234b5">
|
|
466
|
+
<use x="289.585938" y="72.464844" xlink:href="#b"/>
|
|
467
|
+
</g>
|
|
468
|
+
<g fill="#1234b5">
|
|
469
|
+
<use x="293.085938" y="72.464844" xlink:href="#b"/>
|
|
470
|
+
</g>
|
|
471
|
+
<g fill="#1234b5">
|
|
472
|
+
<use x="300.785156" y="72.464844" xlink:href="#ah"/>
|
|
473
|
+
</g>
|
|
474
|
+
<g fill="#1234b5">
|
|
475
|
+
<use x="307.785156" y="72.464844" xlink:href="#m"/>
|
|
476
|
+
</g>
|
|
477
|
+
<g fill="#1234b5">
|
|
478
|
+
<use x="318.285156" y="72.464844" xlink:href="#l"/>
|
|
479
|
+
</g>
|
|
480
|
+
<g fill="#1234b5">
|
|
481
|
+
<use x="324.585938" y="72.464844" xlink:href="#b"/>
|
|
482
|
+
</g>
|
|
483
|
+
<g fill="#1234b5">
|
|
484
|
+
<use x="328.085938" y="72.464844" xlink:href="#b"/>
|
|
485
|
+
</g>
|
|
486
|
+
<path transform="matrix(14 0 0 14 -1.5814e-5 -8.2081e-6)" d="m26.323 4.9261h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="3.6833"/>
|
|
487
|
+
<path transform="matrix(14 0 0 14 -1.5814e-5 -8.2081e-6)" d="m0.71429 6.7877h25.648" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
488
|
+
<path transform="matrix(14 0 0 14 -1.5814e-5 -8.2081e-6)" d="m0.71429 7.3703h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
489
|
+
<g>
|
|
490
|
+
<use x="156.386719" y="108.042969" xlink:href="#ag"/>
|
|
491
|
+
</g>
|
|
492
|
+
<g>
|
|
493
|
+
<use x="165.328125" y="108.042969" xlink:href="#af"/>
|
|
494
|
+
</g>
|
|
495
|
+
<g>
|
|
496
|
+
<use x="172.328125" y="108.042969" xlink:href="#ae"/>
|
|
497
|
+
</g>
|
|
498
|
+
<g>
|
|
499
|
+
<use x="180.105469" y="108.042969" xlink:href="#ad"/>
|
|
500
|
+
</g>
|
|
501
|
+
<g>
|
|
502
|
+
<use x="183.996094" y="108.042969" xlink:href="#ac"/>
|
|
503
|
+
</g>
|
|
504
|
+
<g>
|
|
505
|
+
<use x="194.886719" y="108.042969" xlink:href="#ab"/>
|
|
506
|
+
</g>
|
|
507
|
+
<g>
|
|
508
|
+
<use x="202.859375" y="108.042969" xlink:href="#k"/>
|
|
509
|
+
</g>
|
|
510
|
+
<g>
|
|
511
|
+
<use x="210.246094" y="108.042969" xlink:href="#k"/>
|
|
512
|
+
</g>
|
|
513
|
+
<g>
|
|
514
|
+
<use x="217.246094" y="108.042969" xlink:href="#aa"/>
|
|
515
|
+
</g>
|
|
516
|
+
<path transform="matrix(14 0 0 14 -1.5814e-5 -8.2081e-6)" d="m26.323 7.3703h0.039899" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
517
|
+
<path transform="matrix(14 0 0 14 -1.5814e-5 -8.2081e-6)" d="m0.71429 7.9526h25.648" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
518
|
+
</svg>
|