@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,764 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="539pt" height="174pt" version="1.1" viewBox="0 0 539 174" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="bm" overflow="visible">
|
|
5
|
+
<path d="m14.719-13.5 0.42188 4.8125h-0.9375c-0.054687-0.55078-0.10156-0.97656-0.14062-1.2812-0.042969-0.30078-0.13672-0.64453-0.28125-1.0312-0.13672-0.39453-0.3125-0.6875-0.53125-0.875-0.21094-0.1875-0.50781-0.34766-0.89062-0.48438-0.38672-0.13281-0.85938-0.20312-1.4219-0.20312h-1.5156v11.625h3.0625v0.9375c-0.71875-0.039062-2.2148-0.0625-4.4844-0.0625-2.2734 0-3.7656 0.023438-4.4844 0.0625v-0.9375h3.0625v-11.625h-1.5312c-0.5625 0-1.043 0.074219-1.4375 0.21875-0.39844 0.13672-0.70312 0.29688-0.92188 0.48438-0.21094 0.1875-0.38281 0.47656-0.51562 0.85938-0.125 0.38672-0.21484 0.73047-0.26562 1.0312-0.042969 0.30469-0.085938 0.73047-0.125 1.2812h-0.9375l0.42188-4.8125z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="t" overflow="visible">
|
|
8
|
+
<path d="m7.4844-1.5469c-0.57422 1.1172-1.5703 1.6719-2.9844 1.6719-0.39844 0-0.79688-0.03125-1.2031-0.09375-0.39844-0.0625-0.80859-0.16406-1.2344-0.3125-0.42969-0.15625-0.77344-0.39453-1.0312-0.71875-0.26172-0.32031-0.39062-0.70703-0.39062-1.1562 0-1.9062 2.1641-2.9531 6.5-3.1406v-0.6875c0-1.5703-0.73438-2.3594-2.2031-2.3594-0.52344 0-1 0.046875-1.4375 0.14062 0.28906 0.19922 0.4375 0.52734 0.4375 0.98438 0 0.39844-0.125 0.71094-0.375 0.9375-0.25 0.21875-0.54297 0.32812-0.875 0.32812-0.3125 0-0.60156-0.10938-0.85938-0.32812-0.26172-0.22656-0.39062-0.53906-0.39062-0.9375 0-1.2266 1.1914-1.8438 3.5781-1.8438 1.4453 0 2.5391 0.28125 3.2812 0.84375 0.75 0.5625 1.125 1.3086 1.125 2.2344v4.2969c0 0.1875 0.007813 0.32422 0.03125 0.40625 0.03125 0.085938 0.14062 0.16406 0.32812 0.23438 0.1875 0.074219 0.47266 0.10938 0.85938 0.10938 0.11328 0 0.19531 0.007812 0.25 0.015625 0.0625 0.011719 0.11719 0.054687 0.17188 0.125 0.0625 0.0625 0.09375 0.16797 0.09375 0.3125 0 0.14844-0.03125 0.25781-0.09375 0.32812-0.054688 0.074219-0.11719 0.12109-0.1875 0.14062-0.074219 0.011719-0.19531 0.015625-0.35938 0.015625h-0.95312c-0.5 0-0.90234-0.046875-1.2031-0.14062-0.30469-0.09375-0.51172-0.23438-0.625-0.42188-0.11719-0.1875-0.1875-0.34375-0.21875-0.46875-0.023437-0.125-0.03125-0.29688-0.03125-0.51562zm-0.34375-3.1406c-0.29297 0.023438-0.57031 0.046875-0.82812 0.078125-0.26172 0.03125-0.61719 0.10547-1.0625 0.21875-0.4375 0.11719-0.80859 0.25781-1.1094 0.42188-0.30469 0.15625-0.57422 0.39062-0.8125 0.70312-0.23047 0.3125-0.34375 0.67188-0.34375 1.0781 0 0.44922 0.17578 0.82812 0.53125 1.1406 0.35156 0.30469 0.78125 0.45312 1.2812 0.45312 0.17578 0 0.375-0.023438 0.59375-0.078125 0.21875-0.0625 0.46875-0.15625 0.75-0.28125 0.28906-0.13281 0.53125-0.36328 0.71875-0.6875 0.1875-0.32031 0.28125-0.70312 0.28125-1.1406z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="bl" overflow="visible">
|
|
11
|
+
<path d="m4.2812-8.0156c0.78125-0.65625 1.7578-0.98438 2.9375-0.98438 1.4375 0 2.5938 0.42188 3.4688 1.2656 0.875 0.83594 1.3125 1.9297 1.3125 3.2812 0 1.3867-0.46875 2.4961-1.4062 3.3281-0.92969 0.83594-2.1406 1.25-3.6406 1.25-1.1172 0-2.0859-0.41406-2.9062-1.25l-0.98438 1.125h-0.9375v-12c0-0.375-0.074219-0.59766-0.21875-0.67188-0.13672-0.070313-0.52734-0.10938-1.1719-0.10938v-0.9375l3.5469-0.15625zm0.125 6.0312c0.60156 0.92969 1.3945 1.3906 2.375 1.3906 0.9375 0 1.6484-0.34766 2.1406-1.0469 0.34375-0.51953 0.51562-1.457 0.51562-2.8125 0-0.33203-0.007812-0.59766-0.015625-0.79688 0-0.19531-0.023437-0.46875-0.0625-0.8125-0.042969-0.34375-0.11719-0.625-0.21875-0.84375-0.10547-0.21875-0.24609-0.44141-0.42188-0.67188-0.17969-0.23828-0.41406-0.41406-0.70312-0.53125-0.29297-0.11328-0.63281-0.17188-1.0156-0.17188-0.52344 0-1.0117 0.12109-1.4688 0.35938-0.46094 0.24219-0.83594 0.54688-1.125 0.92188z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="bk" overflow="visible">
|
|
14
|
+
<path d="m4.4844-13.875v12.938h1.375v0.9375c-1.3672-0.039062-2.1836-0.0625-2.4531-0.0625-0.36719 0-1.1875 0.023438-2.4688 0.0625v-0.9375h1.375v-11.062c0-0.375-0.070312-0.59766-0.20312-0.67188-0.13672-0.070313-0.52734-0.10938-1.1719-0.10938v-0.9375z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="s" overflow="visible">
|
|
17
|
+
<path d="m9.2344-4.3594h-6.0312c0 2.4492 0.94531 3.6719 2.8438 3.6719 0.64453 0 1.2266-0.14453 1.75-0.4375 0.51953-0.28906 0.89062-0.67578 1.1094-1.1562 0.0625-0.17578 0.11719-0.28906 0.17188-0.34375 0.050781-0.050781 0.16016-0.078125 0.32812-0.078125 0.3125 0 0.46875 0.12109 0.46875 0.35938 0 0.125-0.070312 0.30859-0.20312 0.54688-0.125 0.24219-0.32812 0.51172-0.60938 0.8125-0.27344 0.29297-0.69531 0.55469-1.2656 0.78125-0.5625 0.21875-1.2109 0.32812-1.9375 0.32812-1.5859 0-2.8516-0.42578-3.7969-1.2812-0.94922-0.86328-1.4219-1.9766-1.4219-3.3438 0-1.3008 0.4375-2.3828 1.3125-3.25 0.875-0.875 2.082-1.3125 3.625-1.3125 1.375 0 2.4375 0.35938 3.1875 1.0781 0.73828 0.75 1.1094 1.7773 1.1094 3.0781 0 0.26172-0.042969 0.41797-0.125 0.46875-0.085938 0.054688-0.25781 0.078125-0.51562 0.078125zm-6.0312-0.65625h4.7812c-0.074219-2.2188-0.875-3.3281-2.4062-3.3281-0.8125 0-1.4453 0.35156-1.8906 1.0469-0.27344 0.40625-0.43359 1.168-0.48438 2.2812z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="bj" overflow="visible">
|
|
20
|
+
<path d="m15.047-12.781v11.844h2.1562v0.9375c-0.51172-0.039062-1.7109-0.0625-3.5938-0.0625-1.875 0-3.0625 0.023438-3.5625 0.0625v-0.9375h2.1562v-5.7188h-6.4219v5.7188h2.1562v0.9375c-0.5-0.039062-1.6953-0.0625-3.5781-0.0625-1.875 0-3.0703 0.023438-3.5781 0.0625v-0.9375h2.1562v-11.844h-2.1562v-0.9375c0.50781 0.042969 1.7031 0.0625 3.5781 0.0625 1.8828 0 3.0781-0.019531 3.5781-0.0625v0.9375h-2.1562v5.1875h6.4219v-5.1875h-2.1562v-0.9375c0.5 0.042969 1.6875 0.0625 3.5625 0.0625 1.8828 0 3.082-0.019531 3.5938-0.0625v0.9375z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="bi" overflow="visible">
|
|
23
|
+
<path d="m12.016-0.9375v0.9375l-3.6562 0.125v-0.98438c-0.8125 0.65625-1.7461 0.98438-2.7969 0.98438-1.4688 0-2.6367-0.42188-3.5-1.2656-0.86719-0.85156-1.2969-1.9453-1.2969-3.2812 0-1.3828 0.46094-2.4922 1.3906-3.3281 0.9375-0.83203 2.1445-1.25 3.625-1.25 1.0195 0 1.9219 0.30469 2.7031 0.90625v-3.9062c0-0.375-0.074219-0.59766-0.21875-0.67188-0.13672-0.070313-0.52734-0.10938-1.1719-0.10938v-0.9375l3.5469-0.15625v12.156c0 0.375 0.066406 0.60156 0.20312 0.67188 0.14453 0.074219 0.53516 0.10938 1.1719 0.10938zm-3.6562-6.125c-0.61719-0.8125-1.4062-1.2188-2.375-1.2188-0.94922 0-1.6641 0.35156-2.1406 1.0469-0.35547 0.52344-0.53125 1.4609-0.53125 2.8125 0 0.33594 0.003906 0.60156 0.015625 0.79688 0.007813 0.1875 0.03125 0.46094 0.0625 0.8125 0.039063 0.34375 0.11328 0.625 0.21875 0.84375 0.11328 0.21875 0.25391 0.44922 0.42188 0.6875 0.17578 0.23047 0.41016 0.40234 0.70312 0.51562 0.30078 0.11719 0.64453 0.17188 1.0312 0.17188 1.0195 0 1.8828-0.48828 2.5938-1.4688z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="r" overflow="visible">
|
|
26
|
+
<path d="m4.8125-13.219 4.3438 11.203 4.3906-11.266c0.070313-0.20703 0.15625-0.32812 0.25-0.35938 0.070313-0.007813 0.20703-0.015625 0.40625-0.015625h3.375v0.60938h-0.48438c-0.86719 0-1.3672 0.11719-1.5 0.34375-0.054688 0.09375-0.078125 0.29688-0.078125 0.60938v10.531c0 0.40625 0.082031 0.66406 0.25 0.76562 0.19531 0.11719 0.64062 0.17188 1.3281 0.17188h0.48438v0.625c-0.49219-0.039062-1.4453-0.0625-2.8594-0.0625-1.4297 0-2.3867 0.023438-2.875 0.0625v-0.625h0.46875c0.875 0 1.375-0.10938 1.5-0.32812 0.0625-0.09375 0.09375-0.29688 0.09375-0.60938v-11.484h-0.03125l-4.9219 12.672c-0.09375 0.24219-0.21484 0.36719-0.35938 0.375-0.15625 0-0.28906-0.14453-0.39062-0.4375l-4.8281-12.438h-0.015625v10.781c0 0.57422 0.17969 0.96484 0.54688 1.1719 0.34375 0.19922 0.84766 0.29688 1.5156 0.29688v0.625c-1.4062-0.039062-2.1875-0.0625-2.3438-0.0625s-0.9375 0.023438-2.3438 0.0625v-0.625c1.3008 0 1.9844-0.38281 2.0469-1.1562 0.007812-0.082031 0.015625-0.1875 0.015625-0.3125v-10c0-0.40625-0.078125-0.66016-0.23438-0.76562-0.1875-0.125-0.63672-0.1875-1.3438-0.1875h-0.48438v-0.60938h3.3906c0.30078 0 0.48828 0.054688 0.5625 0.15625l0.015625 0.015625 0.015625 0.03125v0.015625c0.03125 0.054688 0.0625 0.125 0.09375 0.21875z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="q" overflow="visible">
|
|
29
|
+
<path d="m6.6562-1.5156c-0.33594 0.82422-0.91797 1.3594-1.75 1.6094-0.27344 0.082031-0.55859 0.125-0.85938 0.125-1.1367 0-2.0117-0.26953-2.625-0.8125-0.38672-0.35156-0.57812-0.78906-0.57812-1.3125 0-1.0195 0.56641-1.8359 1.7031-2.4531 0.09375-0.050781 0.19141-0.097656 0.29688-0.14062 0.8125-0.38281 2.0039-0.625 3.5781-0.71875h0.09375v-0.73438c0-1.1328-0.40625-1.9141-1.2188-2.3438-0.28125-0.14453-0.57812-0.21875-0.89062-0.21875-0.88672 0-1.5703 0.26172-2.0469 0.78125-0.042969 0.054687-0.085937 0.10156-0.125 0.14062 0.63281 0.074219 0.97656 0.375 1.0312 0.90625 0 0.46094-0.21094 0.75781-0.625 0.89062-0.09375 0.023437-0.19531 0.03125-0.29688 0.03125-0.48047 0-0.77734-0.21875-0.89062-0.65625-0.023437-0.0625-0.03125-0.15625-0.03125-0.28125 0-0.80078 0.42188-1.4141 1.2656-1.8438 0.50781-0.26953 1.0938-0.40625 1.75-0.40625 1.0938 0 2.0078 0.36719 2.75 1.0938 0.45703 0.48047 0.69531 1.1484 0.71875 2v4.3594c0 0.38672 0.11719 0.67188 0.35938 0.85938 0.10156 0.09375 0.22656 0.14062 0.375 0.14062 0.46875 0 0.70703-0.42578 0.71875-1.2812v-1.125h0.5v1.125c0 0.98047-0.40234 1.5898-1.2031 1.8281-0.15625 0.050781-0.30469 0.078125-0.4375 0.078125-0.65625 0-1.125-0.34766-1.4062-1.0469-0.074219-0.1875-0.125-0.38281-0.15625-0.59375zm-0.14062-3.2812c-2.0547 0.074219-3.3594 0.69922-3.9219 1.875-0.14844 0.32422-0.21875 0.65625-0.21875 1 0 0.67969 0.30469 1.1797 0.92188 1.5 0.26953 0.13672 0.56641 0.20312 0.89062 0.20312 0.6875 0 1.2656-0.27344 1.7344-0.82812 0.39453-0.44531 0.59375-1.0312 0.59375-1.75z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="f" overflow="visible">
|
|
32
|
+
<path d="m3.4531-8v5.5625c0 1.3359 0.39062 2.0469 1.1719 2.1406 0.050781 0.011719 0.10938 0.015625 0.17188 0.015625 0.57031 0 0.97266-0.375 1.2031-1.125 0.09375-0.3125 0.14062-0.67969 0.14062-1.1094v-1.1094h0.5v1.1406c0 1.0938-0.30859 1.8828-0.92188 2.3594-0.29297 0.22656-0.64844 0.34375-1.0625 0.34375-1.1172 0-1.8828-0.42188-2.2969-1.2656-0.1875-0.39453-0.28125-0.875-0.28125-1.4375v-5.5156h-1.7031v-0.4375c1.1875-0.050781 1.9727-0.80078 2.3594-2.25 0.13281-0.5 0.20703-1.0352 0.21875-1.6094h0.5v3.6719h2.8594v0.625z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="bd" overflow="visible">
|
|
35
|
+
<path d="m3.4375-1.5625c0 0.41797 0.082031 0.67188 0.25 0.76562l0.015625 0.015625c0.1875 0.10547 0.60156 0.15625 1.25 0.15625h0.42188v0.625c-0.53125-0.039062-1.375-0.0625-2.5312-0.0625 0.039062 0-0.71875 0.023438-2.2812 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-5.3594c0-0.51953-0.10547-0.84375-0.3125-0.96875-0.15625-0.09375-0.44531-0.14453-0.85938-0.15625h-0.39062v-0.625l2.7812-0.21875v2.2031c0.35156-1.1133 0.94531-1.8125 1.7812-2.0938 0.20703-0.070313 0.42969-0.10938 0.67188-0.10938 0.625 0 1.0703 0.23438 1.3438 0.70312 0.09375 0.15625 0.14062 0.32812 0.14062 0.51562 0 0.46875-0.21875 0.75781-0.65625 0.85938-0.074219 0.023437-0.14062 0.03125-0.20312 0.03125-0.41797 0-0.68359-0.17969-0.79688-0.54688-0.042969-0.09375-0.0625-0.19531-0.0625-0.3125 0-0.36328 0.14844-0.625 0.45312-0.78125-0.023437-0.019531-0.09375-0.03125-0.21875-0.03125-0.89844 0-1.5586 0.54688-1.9844 1.6406-0.25 0.63672-0.375 1.3438-0.375 2.125z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="e" overflow="visible">
|
|
38
|
+
<path d="m3.5469-8.8438v7.3438c0 0.41797 0.078125 0.67188 0.23438 0.76562 0.15625 0.074219 0.53906 0.10938 1.1562 0.10938v0.625c-1.3555-0.039062-2.0469-0.0625-2.0781-0.0625-0.1875 0-0.92188 0.023438-2.2031 0.0625v-0.625c0.78906 0 1.2539-0.054688 1.3906-0.17188l0.03125-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-5.3906c0-0.53125-0.10547-0.84766-0.3125-0.95312h-0.03125l-0.015625-0.015625c-0.17969-0.082031-0.55469-0.125-1.125-0.125v-0.625zm0.078125-3.4688c0 0.49219-0.22656 0.8125-0.67188 0.96875-0.125 0.054688-0.25781 0.078125-0.39062 0.078125-0.46875 0-0.79688-0.21094-0.98438-0.64062v-0.015625c-0.054687-0.13281-0.078125-0.26562-0.078125-0.39062 0-0.41406 0.1875-0.72266 0.5625-0.92188 0.14453-0.09375 0.3125-0.14062 0.5-0.14062 0.44531 0 0.76562 0.19922 0.95312 0.59375 0.070313 0.14844 0.10938 0.30469 0.10938 0.46875z"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="bc" overflow="visible">
|
|
41
|
+
<path d="m5.7344-4.7031 2.6875 3.4688c0.28125 0.34375 0.64062 0.54297 1.0781 0.59375 0.17578 0.011719 0.44531 0.015625 0.8125 0.015625v0.625c-0.59375-0.039062-1.2305-0.0625-1.9062-0.0625-0.24219 0-0.96484 0.023438-2.1719 0.0625v-0.625c0.41406-0.007812 0.65625-0.17578 0.71875-0.5 0-0.050781-0.13672-0.26953-0.40625-0.65625l-1.5312-2c-1.0117 1.1992-1.5859 1.9375-1.7188 2.2188-0.054687 0.125-0.078125 0.23438-0.078125 0.32812 0 0.35547 0.19141 0.55859 0.57812 0.60938v0.625c-0.96094-0.039062-1.5898-0.0625-1.8906-0.0625-0.59375 0-1.1523 0.023438-1.6719 0.0625v-0.625c1.0391 0 1.8945-0.39453 2.5625-1.1875l1.8906-2.3906-1.9844-2.5781c-0.46875-0.60156-0.80469-0.95703-1-1.0625-0.074219-0.039062-0.14844-0.066406-0.21875-0.078125h-0.03125c-0.17969-0.050781-0.54688-0.078125-1.1094-0.078125v-0.625c0.53906 0.042969 1.1719 0.0625 1.8906 0.0625 0.40625 0 1.1289-0.019531 2.1719-0.0625v0.625c-0.46094 0.03125-0.69531 0.19922-0.70312 0.5 0 0.10547 0.054687 0.22656 0.17188 0.35938l1.5625 2.0156 1.25-1.5625c0.19531-0.23828 0.29688-0.46875 0.29688-0.6875 0-0.375-0.19531-0.58203-0.57812-0.625v-0.625c0.51953 0.042969 1.1562 0.0625 1.9062 0.0625 0.58203 0 1.1289-0.019531 1.6406-0.0625v0.625c-1.0117 0.03125-1.8047 0.38281-2.375 1.0469-0.25 0.27344-0.86719 1.0234-1.8438 2.25z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="p" overflow="visible">
|
|
44
|
+
<path d="m7.8125-1.5781c-0.55469 1.1992-1.4141 1.7969-2.5781 1.7969-1.6367 0-2.6016-0.57031-2.8906-1.7188-0.09375-0.34375-0.14062-0.89453-0.14062-1.6562v-3c0-0.86328-0.0625-1.3828-0.1875-1.5625l-0.10938-0.125c-0.14844-0.10156-0.57031-0.15625-1.2656-0.15625v-0.625l2.9375-0.21875v6.6406c0 0.8125 0.14453 1.3555 0.4375 1.625h0.03125c0.26953 0.24219 0.70312 0.35938 1.2969 0.35938 0.90625 0 1.5781-0.44531 2.0156-1.3438 0.26953-0.5 0.40625-1.082 0.40625-1.75v-3.5625c0-0.51953-0.10547-0.84375-0.3125-0.96875h-0.015625c-0.1875-0.10156-0.60156-0.15625-1.2344-0.15625v-0.625l2.9375-0.21875v7.1094c0 0.52344 0.097656 0.83984 0.29688 0.95312h0.015625c0.1875 0.10547 0.60156 0.15625 1.25 0.15625v0.625l-2.8906 0.21875z"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="o" overflow="visible">
|
|
47
|
+
<path d="m3.5469-13.875v12.359c0 0.44922 0.10156 0.71484 0.3125 0.79688 0.14453 0.0625 0.55469 0.09375 1.2344 0.09375v0.625l-2.2188-0.0625c-0.15625 0-0.89844 0.023438-2.2188 0.0625v-0.625c0.78906 0 1.2539-0.054688 1.3906-0.17188l0.03125-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-10.406c0-0.51953-0.09375-0.83594-0.28125-0.95312h-0.015625c-0.14844-0.082031-0.40234-0.14062-0.76562-0.17188h-0.5v-0.60938z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
<symbol id="n" overflow="visible">
|
|
50
|
+
<path d="m7.1875-7.7188c-0.49219-0.48828-1.2031-0.73438-2.1406-0.73438-0.84375 0-1.5234 0.39844-2.0312 1.1875-0.44922 0.71875-0.67188 1.6875-0.67188 2.9062 0 1.918 0.57031 3.1797 1.7188 3.7812 0.35156 0.19922 0.71875 0.29688 1.0938 0.29688 1.3125 0 2.1875-0.69531 2.625-2.0938 0.039062-0.13281 0.12891-0.20312 0.26562-0.20312 0.16406 0 0.25 0.070313 0.25 0.20312 0 0.25-0.14844 0.60938-0.4375 1.0781-0.65625 1.0117-1.6172 1.5156-2.875 1.5156-1.2617 0-2.3242-0.49219-3.1875-1.4844-0.74219-0.86328-1.1094-1.8789-1.1094-3.0469 0-1.375 0.46875-2.5234 1.4062-3.4531 0.8125-0.78906 1.7852-1.1875 2.9219-1.1875 1.1133 0 1.9609 0.29688 2.5469 0.89062 0.34375 0.36719 0.51562 0.78125 0.51562 1.25 0 0.5-0.21875 0.80469-0.65625 0.90625-0.085937 0.023438-0.17188 0.03125-0.26562 0.03125-0.46875 0-0.76172-0.21094-0.875-0.64062-0.03125-0.082031-0.046875-0.17578-0.046875-0.28125 0-0.47656 0.23438-0.77344 0.70312-0.89062 0.082031-0.019531 0.16406-0.03125 0.25-0.03125z"/>
|
|
51
|
+
</symbol>
|
|
52
|
+
<symbol id="j" overflow="visible">
|
|
53
|
+
<path d="m9.4219-4.2812c0 1.375-0.50781 2.5117-1.5156 3.4062-0.84375 0.73047-1.8203 1.0938-2.9219 1.0938-1.2812 0-2.3672-0.47656-3.25-1.4375-0.78125-0.86328-1.1719-1.8828-1.1719-3.0625 0-1.3516 0.48438-2.5 1.4531-3.4375 0.84375-0.82031 1.8359-1.2344 2.9844-1.2344 1.2891 0 2.3789 0.51172 3.2656 1.5312 0.76953 0.89844 1.1562 1.9453 1.1562 3.1406zm-4.4219 4c0.89453 0 1.6016-0.375 2.125-1.125l0.1875-0.35938c0.30078-0.58203 0.45312-1.4727 0.45312-2.6719 0-1.2812-0.17969-2.207-0.53125-2.7812-0.57422-0.82031-1.3242-1.2539-2.25-1.2969-0.83594 0-1.5156 0.33594-2.0469 1-0.09375 0.10547-0.17188 0.21484-0.23438 0.32812-0.32422 0.59375-0.48438 1.5117-0.48438 2.75 0 1.293 0.16406 2.2305 0.5 2.8125 0.5625 0.875 1.3203 1.3242 2.2812 1.3438z"/>
|
|
54
|
+
</symbol>
|
|
55
|
+
<symbol id="i" overflow="visible">
|
|
56
|
+
<path d="m2.2031-6.875c0-0.51953-0.10156-0.84375-0.29688-0.96875-0.16797-0.09375-0.45312-0.14453-0.85938-0.15625h-0.40625v-0.625l2.8125-0.21875v2.1094c0.63281-1.4062 1.625-2.1094 2.9688-2.1094 1.5625 0 2.4453 0.65625 2.6562 1.9688 0.40625-0.90625 1.0312-1.5078 1.875-1.8125 0.32031-0.10156 0.66406-0.15625 1.0312-0.15625 1 0 1.6953 0.25 2.0938 0.75 0.36328 0.40625 0.56641 0.96875 0.60938 1.6875 0.007812 0.26172 0.015625 0.71484 0.015625 1.3594v3.8281c0.007813 0.32422 0.20312 0.51172 0.57812 0.5625 0.15625 0.023438 0.48438 0.03125 0.98438 0.03125v0.625c-1.3672-0.039062-2.1172-0.0625-2.25-0.0625-0.10547 0-0.85547 0.023438-2.25 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.082031-0.10156 0.125-0.32812 0.125-0.67188v-4.6719c0-1.3125-0.375-2.0352-1.125-2.1719-0.11719-0.03125-0.23047-0.046875-0.34375-0.046875-0.8125 0-1.4961 0.35547-2.0469 1.0625-0.4375 0.57422-0.65625 1.2891-0.65625 2.1406v3.6875c0 0.44922 0.10156 0.71484 0.3125 0.79688 0.15625 0.0625 0.57031 0.09375 1.25 0.09375v0.625c-1.3672-0.039062-2.1172-0.0625-2.25-0.0625-0.10547 0-0.85547 0.023438-2.25 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-4.6719c0-1.3125-0.38281-2.0352-1.1406-2.1719-0.11719-0.03125-0.23047-0.046875-0.34375-0.046875-0.8125 0-1.4961 0.35547-2.0469 1.0625-0.4375 0.57422-0.65625 1.2891-0.65625 2.1406v3.6875c0 0.44922 0.10938 0.71484 0.32812 0.79688 0.14453 0.0625 0.55469 0.09375 1.2344 0.09375v0.625c-1.3672-0.039062-2.1094-0.0625-2.2344-0.0625-0.11719 0-0.87109 0.023438-2.2656 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188z"/>
|
|
57
|
+
</symbol>
|
|
58
|
+
<symbol id="h" overflow="visible">
|
|
59
|
+
<path d="m2.2031-6.875c0-0.51953-0.10156-0.84375-0.29688-0.96875-0.16797-0.09375-0.45312-0.14453-0.85938-0.15625h-0.40625v-0.625l2.8125-0.21875v2.1094c0.63281-1.4062 1.625-2.1094 2.9688-2.1094 1 0 1.6953 0.25 2.0938 0.75 0.36328 0.40625 0.56641 0.96875 0.60938 1.6875 0.007812 0.26172 0.015625 0.71484 0.015625 1.3594v3.8281c0.007813 0.32422 0.20312 0.51172 0.57812 0.5625 0.15625 0.023438 0.48438 0.03125 0.98438 0.03125v0.625c-1.3672-0.039062-2.1172-0.0625-2.25-0.0625-0.10547 0-0.85547 0.023438-2.25 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-4.6719c0-1.3125-0.38281-2.0352-1.1406-2.1719-0.11719-0.03125-0.23047-0.046875-0.34375-0.046875-0.8125 0-1.4961 0.35547-2.0469 1.0625-0.4375 0.57422-0.65625 1.2891-0.65625 2.1406v3.6875c0 0.44922 0.10938 0.71484 0.32812 0.79688 0.14453 0.0625 0.55469 0.09375 1.2344 0.09375v0.625c-1.3672-0.039062-2.1094-0.0625-2.2344-0.0625-0.11719 0-0.87109 0.023438-2.2656 0.0625v-0.625c0.78125 0 1.2383-0.054688 1.375-0.17188l0.046875-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188z"/>
|
|
60
|
+
</symbol>
|
|
61
|
+
<symbol id="g" overflow="visible">
|
|
62
|
+
<path d="m4.1562-3.875c-1.1484-0.22656-1.8984-0.45312-2.25-0.67188-0.13672-0.0625-0.26562-0.14453-0.39062-0.25-0.57422-0.46875-0.85938-1.0352-0.85938-1.7031 0-0.9375 0.41406-1.6172 1.25-2.0469 0.51953-0.26953 1.1719-0.40625 1.9531-0.40625 0.75 0 1.375 0.18359 1.875 0.54688 0.14453-0.11328 0.25781-0.21875 0.34375-0.3125 0.17578-0.15625 0.3125-0.23438 0.40625-0.23438 0.13281 0.11719 0.20703 0.27344 0.21875 0.46875v2.0312c0 0.27344-0.042969 0.42188-0.125 0.45312h-0.015625l-0.015625 0.015625h-0.10938c-0.14844 0-0.22656-0.054687-0.23438-0.17188-0.09375-1.3516-0.64844-2.1406-1.6562-2.3594-0.21875-0.039063-0.44922-0.0625-0.6875-0.0625-1.25 0-1.9844 0.38672-2.2031 1.1562-0.023438 0.125-0.03125 0.24609-0.03125 0.35938 0 0.67969 0.50781 1.1562 1.5312 1.4375 0.19531 0.054688 0.50391 0.12109 0.92188 0.20312 0.95703 0.1875 1.6445 0.44922 2.0625 0.78125 0.082031 0.054687 0.15625 0.11719 0.21875 0.1875 0.5625 0.55469 0.84375 1.1836 0.84375 1.8906 0 1.1367-0.46875 1.9375-1.4062 2.4062-0.5 0.25-1.1055 0.375-1.8125 0.375-0.86719 0-1.6016-0.28516-2.2031-0.85938l-0.40625 0.45312c-0.26172 0.26953-0.42969 0.40625-0.5 0.40625-0.125-0.11719-0.19922-0.27344-0.21875-0.48438v-2.6406c0-0.28906 0.046875-0.44531 0.14062-0.46875l0.015625-0.03125h0.10938c0.13281 0 0.22266 0.074219 0.26562 0.21875 0 0.03125 0.003906 0.074219 0.015625 0.125 0.34375 1.5547 1.0039 2.4688 1.9844 2.75 0.23828 0.0625 0.50391 0.09375 0.79688 0.09375 1.1953 0 1.9219-0.42188 2.1719-1.2656 0.050781-0.16406 0.078125-0.35156 0.078125-0.5625 0-0.96875-0.69531-1.5781-2.0781-1.8281z"/>
|
|
63
|
+
</symbol>
|
|
64
|
+
<symbol id="bh" overflow="visible">
|
|
65
|
+
<path d="m11.641-13.594 0.5625 4.5h-0.5c-0.17969-1.4688-0.47656-2.457-0.89062-2.9688-0.51172-0.61328-1.4922-0.92188-2.9375-0.92188h-2.3906c-0.52344 0-0.82812 0.085937-0.92188 0.25v0.03125c-0.042969 0.085937-0.0625 0.25781-0.0625 0.51562v5.0625h1.7188c1.0078 0 1.6445-0.23828 1.9062-0.71875 0.14453-0.28906 0.21875-0.82812 0.21875-1.6094h0.5v5.2969h-0.5c0-0.97656-0.14062-1.6094-0.42188-1.8906v-0.015625l-0.015625-0.015625c-0.30469-0.28125-0.86719-0.42188-1.6875-0.42188h-1.7188v4.9219c0 0.38672 0.078125 0.63281 0.23438 0.73438 0.21875 0.14844 0.77344 0.21875 1.6719 0.21875h0.65625v0.625c-0.48047-0.039062-1.6016-0.0625-3.3594-0.0625-1.5625 0-2.5781 0.023438-3.0469 0.0625v-0.625h0.48438c0.86328 0 1.3633-0.10938 1.5-0.32812 0.050781-0.09375 0.078125-0.29688 0.078125-0.60938v-10.484c0-0.39453-0.078125-0.64453-0.23438-0.75-0.1875-0.125-0.63672-0.1875-1.3438-0.1875h-0.48438v-0.60938z"/>
|
|
66
|
+
</symbol>
|
|
67
|
+
<symbol id="bg" overflow="visible">
|
|
68
|
+
<path d="m7.7969-8.0156-5.5625 7.5156h2.3594c1.1875 0 1.9727-0.28906 2.3594-0.875 0.28125-0.42578 0.46875-1.2109 0.5625-2.3594h0.5l-0.32812 3.7344h-6.6094c-0.30469 0-0.46875-0.046875-0.5-0.14062-0.011719-0.039063-0.015625-0.085937-0.015625-0.14062 0-0.09375 0.054688-0.21094 0.17188-0.35938l5.5781-7.5469h-2.2656c-1.168 0-1.9219 0.27344-2.2656 0.8125-0.24219 0.375-0.38672 1.0312-0.4375 1.9688h-0.5l0.21875-3.2188h6.3906c0.3125 0 0.47656 0.058594 0.5 0.17188 0.019531 0.023437 0.03125 0.054687 0.03125 0.09375 0 0.085937-0.0625 0.19922-0.1875 0.34375z"/>
|
|
69
|
+
</symbol>
|
|
70
|
+
<symbol id="bf" overflow="visible">
|
|
71
|
+
<path d="m7.7969-4.625h-5.5781c0 1.3672 0.19531 2.3672 0.59375 3 0.64453 0.83594 1.3984 1.2812 2.2656 1.3438 0.91406 0 1.6562-0.375 2.2188-1.125 0.19531-0.25781 0.35938-0.57031 0.48438-0.9375 0.039062-0.1875 0.12891-0.28125 0.26562-0.28125 0.16406 0 0.25 0.085938 0.25 0.25 0 0.29297-0.1875 0.6875-0.5625 1.1875-0.54297 0.75-1.2617 1.1953-2.1562 1.3438-0.19922 0.039062-0.40625 0.0625-0.625 0.0625-1.25 0-2.3125-0.47656-3.1875-1.4375-0.80469-0.88281-1.2031-1.9453-1.2031-3.1875 0-1.3828 0.47656-2.5312 1.4375-3.4375 0.76953-0.73828 1.6758-1.1094 2.7188-1.1094 1.5078 0 2.5625 0.63672 3.1562 1.9062 0.28125 0.60547 0.42188 1.2734 0.42188 2 0 0.23047-0.046875 0.36719-0.14062 0.40625-0.042969 0.011719-0.16406 0.015625-0.35938 0.015625zm-5.5625-0.42188h4.75c0-1.2578-0.28125-2.2109-0.84375-2.8594-0.375-0.40625-0.85156-0.60938-1.4219-0.60938-0.67969 0-1.25 0.3125-1.7188 0.9375-0.46875 0.59375-0.72656 1.4375-0.76562 2.5312z"/>
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol id="be" overflow="visible">
|
|
74
|
+
<path d="m7.5938-1.0938c-0.6875 0.875-1.5781 1.3125-2.6719 1.3125-1.2305 0-2.2734-0.48438-3.125-1.4531-0.74219-0.875-1.1094-1.8945-1.1094-3.0625 0-1.3828 0.51562-2.5312 1.5469-3.4375 0.84375-0.73828 1.8125-1.1094 2.9062-1.1094 1.0078 0 1.8477 0.41797 2.5156 1.25v-4.3281c0-0.51953-0.09375-0.83594-0.28125-0.95312h-0.015625c-0.17969-0.11328-0.60156-0.17188-1.2656-0.17188v-0.60938l2.8906-0.21875v12.141c0 0.52344 0.097656 0.83984 0.29688 0.95312h0.015625c0.1875 0.10547 0.60156 0.15625 1.25 0.15625v0.625l-2.9531 0.21875zm0-5.3594c0-0.26953-0.058594-0.49219-0.17188-0.67188l-0.046875-0.078125c-0.54297-0.80078-1.2617-1.2031-2.1562-1.2031-0.9375 0-1.6953 0.42969-2.2656 1.2812-0.40625 0.64844-0.60938 1.5938-0.60938 2.8438 0 1.2422 0.19141 2.168 0.57812 2.7812 0.53125 0.85547 1.2266 1.2812 2.0938 1.2812 0.95703 0 1.7344-0.44141 2.3281-1.3281l0.03125-0.078125c0.14453-0.28125 0.21875-0.52344 0.21875-0.73438z"/>
|
|
75
|
+
</symbol>
|
|
76
|
+
<symbol id="ak" overflow="visible">
|
|
77
|
+
<path d="m6 35.406c-0.11719 0-0.17188-0.078125-0.17188-0.23438 0-3.4375 0.14453-6.7344 0.4375-9.8906 0.28906-3.1484 0.80469-6.25 1.5469-9.3125 0.73828-3.0547 1.7695-6 3.0938-8.8438 1.332-2.8359 3.0078-5.4492 5.0312-7.8438 0.082031-0.039062 0.12891-0.0625 0.14062-0.0625h0.625c0.039063 0 0.078125 0.023438 0.10938 0.0625 0.03125 0.042969 0.046875 0.085938 0.046875 0.125 0 0.054688-0.015625 0.089844-0.046875 0.10938-1.8047 2.4688-3.2812 5.1133-4.4375 7.9375-1.1562 2.832-2.043 5.7656-2.6562 8.7969-0.61719 3.0391-1.0391 6.1094-1.2656 9.2031-0.23047 3.0938-0.34375 6.3477-0.34375 9.7656 0 0.039062-0.015625 0.082031-0.046875 0.125-0.03125 0.039062-0.070312 0.0625-0.10938 0.0625z"/>
|
|
78
|
+
</symbol>
|
|
79
|
+
<symbol id="aj" overflow="visible">
|
|
80
|
+
<path d="m15.938 35.125c-2.0117-2.3984-3.6836-5.0156-5.0156-7.8594-1.3359-2.8438-2.3711-5.793-3.1094-8.8438-0.74219-3.0547-1.2578-6.1562-1.5469-9.3125-0.29297-3.1562-0.4375-6.4531-0.4375-9.8906 0-0.14453 0.054687-0.21875 0.17188-0.21875h1.9531c0.039063 0 0.078125 0.023438 0.10938 0.0625 0.03125 0.03125 0.046875 0.070312 0.046875 0.10938 0 3.4141 0.11328 6.6719 0.34375 9.7656 0.22656 3.0938 0.64844 6.1562 1.2656 9.1875 0.61328 3.0312 1.5 5.9609 2.6562 8.7969 1.1562 2.832 2.6328 5.4883 4.4375 7.9688 0.03125 0.019531 0.046875 0.054687 0.046875 0.10938 0 0.03125-0.023437 0.066406-0.0625 0.10938-0.03125 0.039063-0.0625 0.0625-0.09375 0.0625h-0.625c-0.011719 0-0.03125-0.007813-0.0625-0.015625-0.023437-0.011719-0.046875-0.023438-0.078125-0.03125z"/>
|
|
81
|
+
</symbol>
|
|
82
|
+
<symbol id="z" overflow="visible">
|
|
83
|
+
<path d="m9.5469-4.7188v1.2344c0.86328-1.0703 1.5156-2.3906 1.9531-3.9531 0.13281-0.26953 0.23438-0.41016 0.29688-0.42188 0.16406 0 0.25 0.070313 0.25 0.20312 0 0.23047-0.15625 0.73438-0.46875 1.5156-0.44922 1.1484-1.0625 2.2109-1.8438 3.1875-0.125 0.26172-0.1875 0.49219-0.1875 0.6875 0 1.3672 0.20312 2.0469 0.60938 2.0469 0.41406 0 0.75-0.23438 1-0.70312 0.039062-0.082031 0.082031-0.17578 0.125-0.28125 0.050781-0.13281 0.14062-0.20312 0.26562-0.20312 0.15625 0 0.23438 0.070312 0.23438 0.20312 0 0.26172-0.16797 0.5625-0.5 0.90625-0.34375 0.34375-0.74219 0.51562-1.1875 0.51562-0.83594 0-1.4141-0.45703-1.7344-1.375-0.03125-0.09375-0.058594-0.19141-0.078125-0.29688-1.3984 1.1172-2.8047 1.6719-4.2188 1.6719-1.25 0-2.1719-0.5-2.7656-1.5-0.32422-0.53906-0.48438-1.1641-0.48438-1.875 0-1.3633 0.51953-2.625 1.5625-3.7812 1.0312-1.1445 2.1914-1.7695 3.4844-1.875 0.125-0.019531 0.23828-0.03125 0.34375-0.03125 1.1133 0 1.9766 0.44531 2.5938 1.3281 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.48828 0.71094 0.73438 1.6367 0.73438 2.7812zm-1.3438 2.7344c-0.03125-0.21875-0.046875-0.96094-0.046875-2.2344 0-1.6445-0.17969-2.7656-0.53125-3.3594-0.16797-0.26953-0.35938-0.47266-0.57812-0.60938l-0.03125-0.015625h-0.015625c-0.24219-0.13281-0.51172-0.20312-0.8125-0.20312-0.94922 0-1.8047 0.53906-2.5625 1.6094l-0.17188 0.23438c-0.48047 0.77344-0.82812 1.8555-1.0469 3.25-0.074219 0.36719-0.10938 0.66797-0.10938 0.90625 0 1.125 0.39453 1.8242 1.1875 2.0938 0.1875 0.0625 0.39062 0.09375 0.60938 0.09375 1.3945 0 2.7656-0.58594 4.1094-1.7656z"/>
|
|
84
|
+
</symbol>
|
|
85
|
+
<symbol id="y" overflow="visible">
|
|
86
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="x" overflow="visible">
|
|
89
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="c" overflow="visible">
|
|
92
|
+
<path d="m3.8438-5c0 0.4375-0.20312 0.75781-0.60938 0.95312-0.14844 0.074219-0.29688 0.10938-0.45312 0.10938-0.4375 0-0.76172-0.20312-0.96875-0.60938-0.0625-0.14453-0.09375-0.29688-0.09375-0.45312 0-0.4375 0.19531-0.75391 0.59375-0.95312 0.15625-0.070313 0.3125-0.10938 0.46875-0.10938 0.4375 0 0.75391 0.20312 0.95312 0.60938 0.070313 0.14844 0.10938 0.29688 0.10938 0.45312z"/>
|
|
93
|
+
</symbol>
|
|
94
|
+
<symbol id="w" overflow="visible">
|
|
95
|
+
<path d="m9.5469-4.7188v1.2344c0.86328-1.0703 1.5156-2.3906 1.9531-3.9531 0.13281-0.26953 0.23438-0.41016 0.29688-0.42188 0.16406 0 0.25 0.070313 0.25 0.20312 0 0.23047-0.15625 0.73438-0.46875 1.5156-0.44922 1.1484-1.0625 2.2109-1.8438 3.1875-0.125 0.26172-0.1875 0.49219-0.1875 0.6875 0 1.3672 0.20312 2.0469 0.60938 2.0469 0.41406 0 0.75-0.23438 1-0.70312 0.039062-0.082031 0.082031-0.17578 0.125-0.28125 0.050781-0.13281 0.14062-0.20312 0.26562-0.20312 0.15625 0 0.23438 0.070312 0.23438 0.20312 0 0.26172-0.16797 0.5625-0.5 0.90625-0.34375 0.34375-0.74219 0.51562-1.1875 0.51562-0.83594 0-1.4141-0.45703-1.7344-1.375-0.03125-0.09375-0.058594-0.19141-0.078125-0.29688-1.3984 1.1172-2.8047 1.6719-4.2188 1.6719-1.25 0-2.1719-0.5-2.7656-1.5-0.32422-0.53906-0.48438-1.1641-0.48438-1.875 0-1.3633 0.51953-2.625 1.5625-3.7812 1.0312-1.1445 2.1914-1.7695 3.4844-1.875 0.125-0.019531 0.23828-0.03125 0.34375-0.03125 1.1133 0 1.9766 0.44531 2.5938 1.3281 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.48828 0.71094 0.73438 1.6367 0.73438 2.7812zm-1.3438 2.7344c-0.03125-0.21875-0.046875-0.96094-0.046875-2.2344 0-1.6445-0.17969-2.7656-0.53125-3.3594-0.16797-0.26953-0.35938-0.47266-0.57812-0.60938l-0.03125-0.015625h-0.015625c-0.24219-0.13281-0.51172-0.20312-0.8125-0.20312-0.94922 0-1.8047 0.53906-2.5625 1.6094l-0.17188 0.23438c-0.48047 0.77344-0.82812 1.8555-1.0469 3.25-0.074219 0.36719-0.10938 0.66797-0.10938 0.90625 0 1.125 0.39453 1.8242 1.1875 2.0938 0.1875 0.0625 0.39062 0.09375 0.60938 0.09375 1.3945 0 2.7656-0.58594 4.1094-1.7656z"/>
|
|
96
|
+
</symbol>
|
|
97
|
+
<symbol id="v" overflow="visible">
|
|
98
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="u" overflow="visible">
|
|
101
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
102
|
+
</symbol>
|
|
103
|
+
<symbol id="a" overflow="visible">
|
|
104
|
+
<path d="m3.8438-1.0625c0 0.4375-0.20312 0.76172-0.60938 0.96875-0.14844 0.0625-0.29688 0.09375-0.45312 0.09375-0.4375 0-0.76172-0.19531-0.96875-0.59375-0.0625-0.14453-0.09375-0.30078-0.09375-0.46875 0-0.4375 0.19531-0.75391 0.59375-0.95312 0.15625-0.070313 0.3125-0.10938 0.46875-0.10938 0.4375 0 0.75391 0.20312 0.95312 0.60938 0.070313 0.14844 0.10938 0.29688 0.10938 0.45312z"/>
|
|
105
|
+
</symbol>
|
|
106
|
+
<symbol id="bb" overflow="visible">
|
|
107
|
+
<path d="m9.5469-4.7188v1.2344c0.86328-1.0703 1.5156-2.3906 1.9531-3.9531 0.13281-0.26953 0.23438-0.41016 0.29688-0.42188 0.16406 0 0.25 0.070313 0.25 0.20312 0 0.23047-0.15625 0.73438-0.46875 1.5156-0.44922 1.1484-1.0625 2.2109-1.8438 3.1875-0.125 0.26172-0.1875 0.49219-0.1875 0.6875 0 1.3672 0.20312 2.0469 0.60938 2.0469 0.41406 0 0.75-0.23438 1-0.70312 0.039062-0.082031 0.082031-0.17578 0.125-0.28125 0.050781-0.13281 0.14062-0.20312 0.26562-0.20312 0.15625 0 0.23438 0.070312 0.23438 0.20312 0 0.26172-0.16797 0.5625-0.5 0.90625-0.34375 0.34375-0.74219 0.51562-1.1875 0.51562-0.83594 0-1.4141-0.45703-1.7344-1.375-0.03125-0.09375-0.058594-0.19141-0.078125-0.29688-1.3984 1.1172-2.8047 1.6719-4.2188 1.6719-1.25 0-2.1719-0.5-2.7656-1.5-0.32422-0.53906-0.48438-1.1641-0.48438-1.875 0-1.3633 0.51953-2.625 1.5625-3.7812 1.0312-1.1445 2.1914-1.7695 3.4844-1.875 0.125-0.019531 0.23828-0.03125 0.34375-0.03125 1.1133 0 1.9766 0.44531 2.5938 1.3281 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.48828 0.71094 0.73438 1.6367 0.73438 2.7812zm-1.3438 2.7344c-0.03125-0.21875-0.046875-0.96094-0.046875-2.2344 0-1.6445-0.17969-2.7656-0.53125-3.3594-0.16797-0.26953-0.35938-0.47266-0.57812-0.60938l-0.03125-0.015625h-0.015625c-0.24219-0.13281-0.51172-0.20312-0.8125-0.20312-0.94922 0-1.8047 0.53906-2.5625 1.6094l-0.17188 0.23438c-0.48047 0.77344-0.82812 1.8555-1.0469 3.25-0.074219 0.36719-0.10938 0.66797-0.10938 0.90625 0 1.125 0.39453 1.8242 1.1875 2.0938 0.1875 0.0625 0.39062 0.09375 0.60938 0.09375 1.3945 0 2.7656-0.58594 4.1094-1.7656z"/>
|
|
108
|
+
</symbol>
|
|
109
|
+
<symbol id="ba" overflow="visible">
|
|
110
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="az" overflow="visible">
|
|
113
|
+
<path d="m4.1094-8.9531v7.8438c0 0.28125 0.054687 0.46094 0.17188 0.53125 0.15625 0.09375 0.53516 0.14062 1.1406 0.14062h0.4375v0.4375c-0.32422-0.03125-1.0781-0.046875-2.2656-0.046875s-1.9453 0.015625-2.2656 0.046875v-0.4375h0.45312c0.71875 0 1.1289-0.082031 1.2344-0.25l0.015625-0.015625c0.03125-0.070313 0.046875-0.20703 0.046875-0.40625v-7.25c-0.48047 0.24219-1.0898 0.35938-1.8281 0.35938v-0.42188c1.1133 0 1.9609-0.30078 2.5469-0.90625 0.17578 0 0.28125 0.039063 0.3125 0.10938v0.26562z"/>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="d" overflow="visible">
|
|
116
|
+
<path d="m3.8438-5c0 0.4375-0.20312 0.75781-0.60938 0.95312-0.14844 0.074219-0.29688 0.10938-0.45312 0.10938-0.4375 0-0.76172-0.20312-0.96875-0.60938-0.0625-0.14453-0.09375-0.29688-0.09375-0.45312 0-0.4375 0.19531-0.75391 0.59375-0.95312 0.15625-0.070313 0.3125-0.10938 0.46875-0.10938 0.4375 0 0.75391 0.20312 0.95312 0.60938 0.070313 0.14844 0.10938 0.29688 0.10938 0.45312z"/>
|
|
117
|
+
</symbol>
|
|
118
|
+
<symbol id="ay" overflow="visible">
|
|
119
|
+
<path d="m9.5469-4.7188v1.2344c0.86328-1.0703 1.5156-2.3906 1.9531-3.9531 0.13281-0.26953 0.23438-0.41016 0.29688-0.42188 0.16406 0 0.25 0.070313 0.25 0.20312 0 0.23047-0.15625 0.73438-0.46875 1.5156-0.44922 1.1484-1.0625 2.2109-1.8438 3.1875-0.125 0.26172-0.1875 0.49219-0.1875 0.6875 0 1.3672 0.20312 2.0469 0.60938 2.0469 0.41406 0 0.75-0.23438 1-0.70312 0.039062-0.082031 0.082031-0.17578 0.125-0.28125 0.050781-0.13281 0.14062-0.20312 0.26562-0.20312 0.15625 0 0.23438 0.070312 0.23438 0.20312 0 0.26172-0.16797 0.5625-0.5 0.90625-0.34375 0.34375-0.74219 0.51562-1.1875 0.51562-0.83594 0-1.4141-0.45703-1.7344-1.375-0.03125-0.09375-0.058594-0.19141-0.078125-0.29688-1.3984 1.1172-2.8047 1.6719-4.2188 1.6719-1.25 0-2.1719-0.5-2.7656-1.5-0.32422-0.53906-0.48438-1.1641-0.48438-1.875 0-1.3633 0.51953-2.625 1.5625-3.7812 1.0312-1.1445 2.1914-1.7695 3.4844-1.875 0.125-0.019531 0.23828-0.03125 0.34375-0.03125 1.1133 0 1.9766 0.44531 2.5938 1.3281 0 0.011719 0.003906 0.015625 0.015625 0.015625 0.48828 0.71094 0.73438 1.6367 0.73438 2.7812zm-1.3438 2.7344c-0.03125-0.21875-0.046875-0.96094-0.046875-2.2344 0-1.6445-0.17969-2.7656-0.53125-3.3594-0.16797-0.26953-0.35938-0.47266-0.57812-0.60938l-0.03125-0.015625h-0.015625c-0.24219-0.13281-0.51172-0.20312-0.8125-0.20312-0.94922 0-1.8047 0.53906-2.5625 1.6094l-0.17188 0.23438c-0.48047 0.77344-0.82812 1.8555-1.0469 3.25-0.074219 0.36719-0.10938 0.66797-0.10938 0.90625 0 1.125 0.39453 1.8242 1.1875 2.0938 0.1875 0.0625 0.39062 0.09375 0.60938 0.09375 1.3945 0 2.7656-0.58594 4.1094-1.7656z"/>
|
|
120
|
+
</symbol>
|
|
121
|
+
<symbol id="ax" overflow="visible">
|
|
122
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
123
|
+
</symbol>
|
|
124
|
+
<symbol id="aw" overflow="visible">
|
|
125
|
+
<path d="m1.2344-0.82812 0.8125-3.2344c0.14453-0.59375 0.21875-0.98438 0.21875-1.1719 0-0.42578-0.14844-0.64062-0.4375-0.64062-0.375 0-0.6875 0.44531-0.9375 1.3281-0.023437 0.10547-0.046875 0.21484-0.078125 0.32812-0.10547 0.21094-0.18359 0.32031-0.23438 0.32812-0.11719 0-0.17188-0.046875-0.17188-0.14062 0-0.14453 0.09375-0.48438 0.28125-1.0156 0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.03125l0.125-0.29688c0.20703-0.375 0.41406-0.60938 0.625-0.70312 0.13281-0.0625 0.27344-0.09375 0.42188-0.09375 0.51953 0 0.89844 0.21875 1.1406 0.65625 0.082031 0.16797 0.12891 0.35547 0.14062 0.5625 0.60156-0.8125 1.332-1.2188 2.1875-1.2188 0.80078 0 1.3125 0.30859 1.5312 0.92188 0.050781 0.16797 0.078125 0.35938 0.078125 0.57812 0 0.48047-0.28125 1.5078-0.84375 3.0781-0.16797 0.40625-0.25 0.74219-0.25 1 0 0.30469 0.10938 0.45312 0.32812 0.45312 0.61328 0 1.0859-0.57812 1.4219-1.7344 0.050781-0.14453 0.097656-0.22266 0.14062-0.23438v-0.015625h0.078125c0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.15625-0.10156 0.44922-0.29688 0.875-0.40625 0.85547-0.92188 1.2812-1.5469 1.2812-0.46875 0-0.80859-0.20312-1.0156-0.60938-0.085937-0.16406-0.125-0.34766-0.125-0.54688 0-0.1875 0.046875-0.39844 0.14062-0.64062 0.60156-1.6328 0.90625-2.7227 0.90625-3.2656 0-0.64453-0.25-0.96875-0.75-0.96875-0.84375 0-1.5547 0.46484-2.125 1.3906-0.0625 0.10547-0.11719 0.21094-0.15625 0.3125l-0.1875 0.70312c-0.054688 0.21094-0.13281 0.52344-0.23438 0.9375l-0.3125 1.25c-0.15625 0.64844-0.24609 0.99609-0.26562 1.0469-0.085938 0.23828-0.25781 0.36719-0.51562 0.39062-0.24219-0.054688-0.375-0.17578-0.40625-0.375 0 0.011719 0.039063-0.19141 0.125-0.60938z"/>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="av" overflow="visible">
|
|
128
|
+
<path d="m9.3594 35.219c0-3.5312-0.11719-6.8125-0.34375-9.8438-0.21875-3.0312-0.63672-6.0625-1.25-9.0938-0.61719-3.0312-1.5-5.9688-2.6562-8.8125-1.1562-2.8359-2.6367-5.4844-4.4375-7.9531-0.042969-0.03125-0.0625-0.066406-0.0625-0.10938 0-0.125 0.0625-0.1875 0.1875-0.1875h0.625c0.039063 0 0.082031 0.023438 0.125 0.0625 2.0195 2.3945 3.6914 5.0078 5.0156 7.8438 1.332 2.8438 2.3672 5.7969 3.1094 8.8594 0.73828 3.0703 1.2539 6.1719 1.5469 9.2969 0.28906 3.1328 0.4375 6.4297 0.4375 9.8906 0 0.15625-0.054688 0.23438-0.15625 0.23438h-1.9531c-0.125 0-0.1875-0.0625-0.1875-0.1875z"/>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="au" overflow="visible">
|
|
131
|
+
<path d="m0.79688 35.172c-0.125 0-0.1875-0.058594-0.1875-0.17188 0-0.042969 0.019531-0.078125 0.0625-0.10938 1.8008-2.4805 3.2812-5.1406 4.4375-7.9844s2.0391-5.7812 2.6562-8.8125c0.61328-3.0234 1.0312-6.0469 1.25-9.0781 0.22656-3.0312 0.34375-6.3125 0.34375-9.8438 0-0.039063 0.015625-0.078125 0.046875-0.10938 0.03125-0.039062 0.078125-0.0625 0.14062-0.0625h1.9531c0.050781 0 0.085938 0.023438 0.10938 0.0625 0.03125 0.042969 0.046875 0.09375 0.046875 0.15625 0 3.4688-0.14844 6.7656-0.4375 9.8906-0.29297 3.125-0.80859 6.2188-1.5469 9.2812-0.74219 3.0703-1.7773 6.0312-3.1094 8.875-1.3359 2.8438-3.0078 5.4609-5.0156 7.8594-0.042969 0.03125-0.085937 0.046875-0.125 0.046875z"/>
|
|
132
|
+
</symbol>
|
|
133
|
+
<symbol id="at" overflow="visible">
|
|
134
|
+
<path d="m13.969-6.1875-0.67188 6.1875h-12.5v-0.75h0.57812c1.0312 0 1.6289-0.13281 1.7969-0.40625 0.0625-0.10156 0.09375-0.34375 0.09375-0.71875v-12.641c0-0.47656-0.10156-0.78516-0.29688-0.92188-0.21875-0.13281-0.75-0.20312-1.5938-0.20312h-0.57812v-0.75c0.55078 0.054687 1.7656 0.078125 3.6406 0.078125 2.1133 0 3.457-0.023438 4.0312-0.078125v0.75h-0.78125c-1.2812 0-2.0117 0.15625-2.1875 0.46875-0.0625 0.11719-0.09375 0.33984-0.09375 0.67188v12.797c0 0.48047 0.082031 0.76172 0.25 0.84375h0.03125c0.14453 0.074219 0.44141 0.10938 0.89062 0.10938h1.9688c2.25 0 3.6875-0.89844 4.3125-2.7031 0.20703-0.59375 0.37891-1.5039 0.51562-2.7344z"/>
|
|
135
|
+
</symbol>
|
|
136
|
+
<symbol id="as" overflow="visible">
|
|
137
|
+
<path d="m9.3594-5.5469h-6.7031c0 1.6367 0.24219 2.8398 0.73438 3.6094 0.75781 0.99219 1.6602 1.5234 2.7031 1.5938 1.1016 0 1.9922-0.44531 2.6719-1.3438 0.23828-0.3125 0.42969-0.6875 0.57812-1.125 0.039062-0.21875 0.14062-0.32812 0.29688-0.32812 0.20703 0 0.3125 0.09375 0.3125 0.28125 0 0.35547-0.22656 0.83594-0.67188 1.4375-0.65625 0.89844-1.5156 1.4297-2.5781 1.6094-0.24219 0.050781-0.49219 0.078125-0.75 0.078125-1.5 0-2.7812-0.57812-3.8438-1.7344-0.96094-1.0508-1.4375-2.3203-1.4375-3.8125 0-1.6641 0.57812-3.0391 1.7344-4.125 0.92578-0.89453 2.0078-1.3438 3.25-1.3438 1.8125 0 3.0781 0.76562 3.7969 2.2969 0.33203 0.71875 0.5 1.5234 0.5 2.4062 0 0.27344-0.054687 0.43359-0.15625 0.48438-0.054687 0.011719-0.19922 0.015625-0.4375 0.015625zm-6.6719-0.5h5.6875c0-1.5195-0.33594-2.6641-1-3.4375-0.44922-0.48828-1.0234-0.73438-1.7188-0.73438-0.8125 0-1.5 0.375-2.0625 1.125-0.55469 0.71875-0.85547 1.7344-0.90625 3.0469z"/>
|
|
138
|
+
</symbol>
|
|
139
|
+
<symbol id="ar" overflow="visible">
|
|
140
|
+
<path d="m4.2656-9.5938v7.7188c0 0.5 0.097656 0.80859 0.29688 0.92188l0.015625 0.015625c0.22656 0.125 0.73438 0.1875 1.5156 0.1875h0.5v0.75c-0.63672-0.050781-1.6523-0.078125-3.0469-0.078125 0.050781 0-0.85938 0.027344-2.7344 0.078125v-0.75c0.94531 0 1.5-0.066406 1.6562-0.20312l0.046875-0.0625c0.11328-0.125 0.17188-0.39453 0.17188-0.8125v-7.7656h-1.8906v-0.75h1.8906v-2.7656c0-1.4688 0.59766-2.5547 1.7969-3.2656 0.61328-0.36328 1.2539-0.54688 1.9219-0.54688 0.89453 0 1.5469 0.3125 1.9531 0.9375 0.13281 0.23047 0.20312 0.48047 0.20312 0.75 0 0.55469-0.24609 0.89844-0.73438 1.0312-0.09375 0.011719-0.19922 0.015625-0.3125 0.015625-0.53125 0-0.85938-0.24219-0.98438-0.73438l-0.03125-0.03125v-0.015625c-0.011719-0.082031-0.015625-0.16406-0.015625-0.25 0-0.47656 0.23828-0.8125 0.71875-1-0.24219-0.11328-0.50781-0.17188-0.79688-0.17188-0.69922 0-1.2734 0.39062-1.7188 1.1719-0.32422 0.57422-0.48438 1.2734-0.48438 2.0938v2.7812h2.8125v0.75z"/>
|
|
141
|
+
</symbol>
|
|
142
|
+
<symbol id="aq" overflow="visible">
|
|
143
|
+
<path d="m4.1562-9.5938v6.6719c0 1.5938 0.46094 2.4492 1.3906 2.5625 0.0625 0.011719 0.13281 0.015625 0.21875 0.015625 0.6875 0 1.1641-0.44531 1.4375-1.3438 0.11328-0.375 0.17188-0.82031 0.17188-1.3438v-1.3125h0.59375v1.375c0 1.3047-0.37109 2.2461-1.1094 2.8281-0.34375 0.26953-0.76562 0.40625-1.2656 0.40625-1.3438 0-2.2656-0.50391-2.7656-1.5156-0.21875-0.47656-0.32812-1.0508-0.32812-1.7188v-6.625h-2.0469v-0.53125c1.4258-0.0625 2.3672-0.95703 2.8281-2.6875 0.16406-0.61328 0.25391-1.2656 0.26562-1.9531h0.60938v4.4219h3.4219v0.75z"/>
|
|
144
|
+
</symbol>
|
|
145
|
+
<symbol id="ap" overflow="visible">
|
|
146
|
+
<path d="m5.0938-6.5h2.0938c0.5625 0 1.0391-0.054688 1.4375-0.17188 0.39453-0.125 0.69141-0.25781 0.89062-0.40625 0.19531-0.14453 0.34375-0.34766 0.4375-0.60938 0.10156-0.26953 0.16016-0.48828 0.17188-0.65625 0.019531-0.16406 0.03125-0.38281 0.03125-0.65625 0-0.28906-0.011719-0.51953-0.03125-0.6875-0.023438-0.17578-0.085938-0.39453-0.1875-0.65625-0.09375-0.25781-0.24219-0.45703-0.4375-0.59375-0.1875-0.14453-0.48047-0.27344-0.875-0.39062-0.38672-0.11328-0.85547-0.17188-1.4062-0.17188h-2.125zm4.8125 0.375c1.1445 0.4375 1.8164 1.1406 2.0156 2.1094 0 0.023437 0.023437 0.26562 0.078125 0.73438 0.0625 0.46094 0.097656 0.72656 0.10938 0.79688 0.039063 0.26172 0.078125 0.48047 0.10938 0.65625 0.039062 0.17969 0.10156 0.39062 0.1875 0.64062 0.09375 0.24219 0.22266 0.42188 0.39062 0.54688 0.17578 0.125 0.39453 0.1875 0.65625 0.1875 0.28125 0 0.53125-0.10156 0.75-0.3125 0.21875-0.21875 0.34766-0.52344 0.39062-0.92188 0.007812-0.10156 0.019531-0.17578 0.03125-0.21875 0.019531-0.050781 0.054688-0.097656 0.10938-0.14062 0.0625-0.039063 0.15625-0.0625 0.28125-0.0625 0.28125 0 0.42188 0.13672 0.42188 0.40625 0 0.085937-0.011719 0.1875-0.03125 0.3125-0.023438 0.125-0.078125 0.28906-0.17188 0.48438-0.085937 0.1875-0.19922 0.36719-0.34375 0.53125-0.14844 0.15625-0.35938 0.29297-0.64062 0.40625-0.28125 0.11328-0.60547 0.17188-0.96875 0.17188-1.1367 0-2.0156-0.15625-2.6406-0.46875-0.30469-0.14453-0.54688-0.30469-0.73438-0.48438-0.17969-0.1875-0.30469-0.41016-0.375-0.67188-0.0625-0.25781-0.10547-0.48438-0.125-0.67188-0.023438-0.1875-0.03125-0.47266-0.03125-0.85938 0-0.71875-0.027344-1.2031-0.078125-1.4531-0.054687-0.25-0.21875-0.52344-0.5-0.82812-0.36719-0.40625-0.89844-0.60938-1.5938-0.60938h-2.1094v5h1.9375v0.84375c-0.42969-0.03125-1.4844-0.046875-3.1719-0.046875-1.6797 0-2.7305 0.015625-3.1562 0.046875v-0.84375h1.9375v-10.656h-1.9375v-0.84375h6.8438c1.6445 0 2.9453 0.32031 3.9062 0.95312 0.96875 0.63672 1.4531 1.4297 1.4531 2.375 0 0.63672-0.25781 1.2148-0.76562 1.7344-0.5 0.52344-1.2461 0.90625-2.2344 1.1562z"/>
|
|
147
|
+
</symbol>
|
|
148
|
+
<symbol id="ao" overflow="visible">
|
|
149
|
+
<path d="m4.0312-8.0938v7.25h1.1094v0.84375c-1.293-0.03125-1.9922-0.046875-2.0938-0.046875-0.35547 0-1.0898 0.015625-2.2031 0.046875v-0.84375h1.25v-5.5625c0-0.33203-0.0625-0.53125-0.1875-0.59375-0.11719-0.070312-0.44922-0.10938-1-0.10938v-0.84375zm-0.23438-4.0156c0.28125 0.27344 0.42188 0.60547 0.42188 1 0 0.39844-0.14062 0.73047-0.42188 1-0.27344 0.27344-0.60156 0.40625-0.98438 0.40625-0.38672 0-0.71875-0.13281-1-0.40625-0.27344-0.28125-0.40625-0.61328-0.40625-1 0-0.38281 0.13281-0.71094 0.40625-0.98438 0.28125-0.28125 0.61328-0.42188 1-0.42188 0.38281 0 0.71094 0.13672 0.98438 0.40625z"/>
|
|
150
|
+
</symbol>
|
|
151
|
+
<symbol id="an" overflow="visible">
|
|
152
|
+
<path d="m3.8281-3.5625c0.20703 0.09375 0.46094 0.14062 0.76562 0.14062 0.30078 0 0.55469-0.046875 0.76562-0.14062 0.20703-0.09375 0.36328-0.19531 0.46875-0.3125 0.11328-0.125 0.19531-0.29688 0.25-0.51562 0.050781-0.21875 0.078125-0.39062 0.078125-0.51562 0.007812-0.125 0.015625-0.30078 0.015625-0.53125 0-0.22656-0.007813-0.40625-0.015625-0.53125 0-0.125-0.027344-0.28906-0.078125-0.5-0.054687-0.21875-0.13672-0.38281-0.25-0.5-0.10547-0.125-0.26172-0.23438-0.46875-0.32812-0.21094-0.10156-0.46484-0.15625-0.76562-0.15625-0.30469 0-0.55859 0.054687-0.76562 0.15625-0.21094 0.09375-0.37109 0.20312-0.48438 0.32812-0.10547 0.11719-0.18359 0.28125-0.23438 0.5-0.054687 0.21094-0.085937 0.375-0.09375 0.5-0.011719 0.125-0.015625 0.30469-0.015625 0.53125 0 0.23047 0.003906 0.40625 0.015625 0.53125 0.007813 0.125 0.039063 0.29688 0.09375 0.51562 0.050781 0.21875 0.12891 0.39062 0.23438 0.51562 0.11328 0.11719 0.27344 0.21875 0.48438 0.3125zm-1.4375 0.32812c-0.11719 0.15625-0.17188 0.35547-0.17188 0.59375 0 0.23047 0.078125 0.46094 0.23438 0.6875 0.15625 0.23047 0.40625 0.375 0.75 0.4375 0.0625 0.011719 0.52344 0.015625 1.3906 0.015625 0.71875 0 1.2422 0.011719 1.5781 0.03125 0.33203 0.011719 0.70703 0.058594 1.125 0.14062 0.41406 0.074219 0.78516 0.1875 1.1094 0.34375 0.89453 0.44922 1.3438 1.207 1.3438 2.2812 0 0.66406-0.38672 1.2188-1.1562 1.6562-0.77344 0.44531-1.9141 0.67188-3.4219 0.67188-1.625 0-2.7969-0.23438-3.5156-0.70312s-1.0781-0.99609-1.0781-1.5781c0-0.26172 0.0625-0.49609 0.1875-0.70312 0.13281-0.21094 0.30078-0.37109 0.5-0.48438 0.20703-0.11719 0.375-0.19531 0.5-0.25 0.13281-0.0625 0.25391-0.10156 0.35938-0.125-0.53125-0.41406-0.79688-0.98828-0.79688-1.7188 0-0.55078 0.20312-1.0859 0.60938-1.6094-0.28125-0.20703-0.50781-0.47656-0.67188-0.8125-0.16797-0.34375-0.25-0.70312-0.25-1.0781 0-0.71875 0.29688-1.3359 0.89062-1.8594 0.59375-0.53125 1.4883-0.79688 2.6875-0.79688 1.0195 0 1.8203 0.19922 2.4062 0.59375 0.57031-0.45703 1.207-0.6875 1.9062-0.6875 0.375 0 0.65625 0.10938 0.84375 0.32812 0.19531 0.21875 0.29688 0.46094 0.29688 0.71875 0 0.21094-0.074219 0.39062-0.21875 0.54688-0.14844 0.14844-0.33594 0.21875-0.5625 0.21875-0.23047 0-0.41797-0.066406-0.5625-0.20312-0.13672-0.14453-0.20312-0.33203-0.20312-0.5625 0-0.125 0.019531-0.24219 0.0625-0.35938-0.38672 0.03125-0.75781 0.14844-1.1094 0.34375 0.47656 0.51172 0.71875 1.0859 0.71875 1.7188 0 0.71875-0.29688 1.3438-0.89062 1.875s-1.4922 0.79688-2.6875 0.79688c-0.86719 0-1.6016-0.15625-2.2031-0.46875zm1.125 3.4688c-0.92969 0-1.3906 0.35938-1.3906 1.0781 0 0.45703 0.25391 0.84766 0.76562 1.1719 0.50781 0.32031 1.2695 0.48438 2.2812 0.48438 1.0508 0 1.8164-0.16797 2.2969-0.5 0.48828-0.33594 0.73438-0.71094 0.73438-1.125 0-0.74219-0.86719-1.1094-2.5938-1.1094z"/>
|
|
153
|
+
</symbol>
|
|
154
|
+
<symbol id="am" overflow="visible">
|
|
155
|
+
<path d="m11.062 0c-1-0.03125-1.7578-0.046875-2.2656-0.046875-0.5 0-1.2578 0.015625-2.2656 0.046875v-0.84375h1.25v-4.8594c0-0.64453-0.089844-1.0977-0.26562-1.3594-0.16797-0.25781-0.41406-0.39062-0.73438-0.39062-0.65625 0-1.2656 0.25-1.8281 0.75s-0.84375 1.1992-0.84375 2.0938v3.7656h1.2344v0.84375c-1.0117-0.03125-1.7656-0.046875-2.2656-0.046875s-1.2578 0.015625-2.2656 0.046875v-0.84375h1.2344v-9.9531c0-0.33203-0.0625-0.53125-0.1875-0.59375-0.125-0.070313-0.47656-0.10938-1.0469-0.10938v-0.84375l3.1875-0.14062v6.1094h0.015625c0.66406-1.1445 1.6797-1.7188 3.0469-1.7188 0.91406 0 1.6016 0.20312 2.0625 0.60938 0.46875 0.39844 0.70312 1.0547 0.70312 1.9688v4.6719h1.2344z"/>
|
|
156
|
+
</symbol>
|
|
157
|
+
<symbol id="al" overflow="visible">
|
|
158
|
+
<path d="m3.9062-7.1406v4.9688c0 1.043 0.34766 1.5625 1.0469 1.5625 0.28125 0 0.53125-0.13281 0.75-0.40625 0.21875-0.26953 0.32812-0.6875 0.32812-1.25v-0.92188h0.84375v0.95312c0 0.67969-0.19922 1.2422-0.59375 1.6875-0.38672 0.4375-0.91406 0.65625-1.5781 0.65625-1.8984 0-2.8438-0.77344-2.8438-2.3281v-4.9219h-1.4844v-0.65625c0.84375-0.019531 1.5-0.38281 1.9688-1.0938 0.46875-0.71875 0.70703-1.5664 0.71875-2.5469h0.84375v3.4531h2.625v0.84375z"/>
|
|
159
|
+
</symbol>
|
|
160
|
+
<symbol id="ai" overflow="visible">
|
|
161
|
+
<path d="m3.75-3.4844c-1.0312-0.20703-1.7148-0.41016-2.0469-0.60938-0.11719-0.050781-0.22656-0.125-0.32812-0.21875-0.52344-0.42578-0.78125-0.9375-0.78125-1.5312 0-0.84375 0.36719-1.457 1.1094-1.8438 0.46875-0.25 1.0547-0.375 1.7656-0.375 0.67578 0 1.2422 0.16797 1.7031 0.5 0.125-0.10156 0.22266-0.19531 0.29688-0.28125 0.15625-0.14453 0.27344-0.21875 0.35938-0.21875 0.125 0.10547 0.19141 0.25 0.20312 0.4375v1.8125c0 0.25-0.039062 0.38672-0.10938 0.40625h-0.015625l-0.015625 0.03125h-0.09375c-0.13672 0-0.21094-0.054688-0.21875-0.17188-0.085937-1.207-0.57812-1.9141-1.4844-2.125-0.19922-0.03125-0.40625-0.046875-0.625-0.046875-1.125 0-1.7812 0.35156-1.9688 1.0469-0.03125 0.10547-0.046875 0.21094-0.046875 0.3125 0 0.61719 0.46094 1.0469 1.3906 1.2969 0.17578 0.054688 0.45312 0.11719 0.82812 0.1875 0.86328 0.16797 1.4844 0.40234 1.8594 0.70312 0.070312 0.042969 0.13281 0.09375 0.1875 0.15625 0.50781 0.5 0.76562 1.0742 0.76562 1.7188 0 1.0117-0.42188 1.7305-1.2656 2.1562-0.46094 0.22656-1.0078 0.34375-1.6406 0.34375-0.78125 0-1.4375-0.25781-1.9688-0.78125l-0.375 0.42188c-0.24219 0.23828-0.38672 0.35938-0.4375 0.35938-0.125-0.11719-0.19531-0.25781-0.20312-0.4375v-2.375c0-0.25781 0.039062-0.40625 0.125-0.4375l0.015625-0.015625h0.09375c0.125 0 0.20312 0.070312 0.23438 0.20312 0 0.023437 0.003906 0.058594 0.015625 0.10938 0.3125 1.3867 0.90625 2.2109 1.7812 2.4688 0.21875 0.054688 0.45703 0.078125 0.71875 0.078125 1.082 0 1.7383-0.375 1.9688-1.125 0.039063-0.15625 0.0625-0.32812 0.0625-0.51562 0-0.875-0.62109-1.4219-1.8594-1.6406z"/>
|
|
162
|
+
</symbol>
|
|
163
|
+
<symbol id="m" overflow="visible">
|
|
164
|
+
<path d="m1.9844-6.1875c0-0.46875-0.09375-0.75781-0.28125-0.875-0.13672-0.082031-0.39062-0.12891-0.76562-0.14062h-0.35938v-0.5625l2.5312-0.1875v1.8906c0.5625-1.2578 1.4531-1.8906 2.6719-1.8906 1.4062 0 2.2031 0.58984 2.3906 1.7656 0.36328-0.82031 0.92578-1.3633 1.6875-1.625 0.28906-0.09375 0.59766-0.14062 0.92188-0.14062 0.89453 0 1.5234 0.21875 1.8906 0.65625 0.32031 0.375 0.50391 0.88672 0.54688 1.5312 0.007812 0.23047 0.015625 0.64062 0.015625 1.2344v3.4375c0.007813 0.28125 0.17969 0.44922 0.51562 0.5 0.14453 0.023438 0.44141 0.03125 0.89062 0.03125v0.5625c-1.2305-0.03125-1.9023-0.046875-2.0156-0.046875-0.10547 0-0.78906 0.015625-2.0469 0.046875v-0.5625c0.70703 0 1.125-0.050781 1.25-0.15625l0.03125-0.03125c0.082031-0.10156 0.125-0.3125 0.125-0.625v-4.1875c0-1.1875-0.33984-1.8438-1.0156-1.9688-0.10547-0.019531-0.21094-0.03125-0.3125-0.03125-0.73047 0-1.3438 0.32031-1.8438 0.95312-0.39844 0.52344-0.59375 1.1641-0.59375 1.9219v3.3125c0 0.41797 0.097656 0.66406 0.29688 0.73438 0.13281 0.054687 0.50391 0.078125 1.1094 0.078125v0.5625c-1.2188-0.03125-1.8906-0.046875-2.0156-0.046875-0.09375 0-0.77344 0.015625-2.0312 0.046875v-0.5625c0.70703 0 1.125-0.050781 1.25-0.15625l0.03125-0.03125c0.082031-0.10156 0.125-0.3125 0.125-0.625v-4.1875c0-1.1875-0.34375-1.8438-1.0312-1.9688-0.09375-0.019531-0.19531-0.03125-0.29688-0.03125-0.74219 0-1.3555 0.32031-1.8438 0.95312-0.39844 0.52344-0.59375 1.1641-0.59375 1.9219v3.3125c0 0.41797 0.097656 0.66406 0.29688 0.73438 0.125 0.054687 0.49219 0.078125 1.1094 0.078125v0.5625c-1.2188-0.03125-1.8906-0.046875-2.0156-0.046875-0.09375 0-0.77344 0.015625-2.0312 0.046875v-0.5625c0.70703 0 1.1172-0.050781 1.2344-0.15625l0.046875-0.03125c0.082031-0.10156 0.125-0.3125 0.125-0.625z"/>
|
|
165
|
+
</symbol>
|
|
166
|
+
<symbol id="l" overflow="visible">
|
|
167
|
+
<path d="m6-1.375c-0.30469 0.75-0.83594 1.2422-1.5938 1.4688-0.24219 0.070312-0.49609 0.10938-0.76562 0.10938-1.0234 0-1.8086-0.25-2.3594-0.75-0.35547-0.3125-0.53125-0.69531-0.53125-1.1562 0-0.92578 0.50781-1.6641 1.5312-2.2188 0.082031-0.050781 0.17578-0.09375 0.28125-0.125 0.72656-0.35156 1.8008-0.57031 3.2188-0.65625h0.09375v-0.65625c0-1.0195-0.37109-1.7227-1.1094-2.1094-0.25-0.13281-0.52344-0.20312-0.8125-0.20312-0.79297 0-1.4023 0.23438-1.8281 0.70312-0.042969 0.054688-0.078125 0.09375-0.10938 0.125 0.5625 0.074219 0.86719 0.35156 0.92188 0.82812 0 0.40625-0.1875 0.67188-0.5625 0.79688-0.085938 0.023438-0.17188 0.03125-0.26562 0.03125-0.4375 0-0.70312-0.19531-0.79688-0.59375-0.023438-0.0625-0.03125-0.14453-0.03125-0.25 0-0.71875 0.375-1.2695 1.125-1.6562 0.46875-0.25 1-0.375 1.5938-0.375 0.97656 0 1.8008 0.32812 2.4688 0.98438 0.41406 0.4375 0.62891 1.0391 0.64062 1.7969v3.9375c0 0.34375 0.10938 0.60156 0.32812 0.76562 0.09375 0.085937 0.20703 0.125 0.34375 0.125 0.41406 0 0.62891-0.38281 0.64062-1.1562v-1h0.45312v1c0 0.88672-0.35938 1.4336-1.0781 1.6406-0.14844 0.050781-0.28125 0.078125-0.40625 0.078125-0.58594 0-1-0.3125-1.25-0.9375-0.074219-0.16406-0.12109-0.34766-0.14062-0.54688zm-0.125-2.9375c-1.8555 0.0625-3.0312 0.625-3.5312 1.6875-0.13672 0.28125-0.20312 0.57812-0.20312 0.89062 0 0.61719 0.27344 1.0703 0.82812 1.3594 0.23828 0.11719 0.50391 0.17188 0.79688 0.17188 0.625 0 1.1445-0.24219 1.5625-0.73438 0.36328-0.40625 0.54688-0.92969 0.54688-1.5781z"/>
|
|
168
|
+
</symbol>
|
|
169
|
+
<symbol id="b" overflow="visible">
|
|
170
|
+
<path d="m3.1875-12.484v11.109c0 0.41797 0.09375 0.66406 0.28125 0.73438 0.13281 0.054687 0.50781 0.078125 1.125 0.078125v0.5625l-2-0.046875c-0.14844 0-0.8125 0.015625-2 0.046875v-0.5625c0.70703 0 1.125-0.050781 1.25-0.15625l0.03125-0.03125c0.082031-0.10156 0.125-0.3125 0.125-0.625v-9.3594c0-0.46875-0.085938-0.75391-0.25-0.85938h-0.015625c-0.13672-0.070312-0.36719-0.11719-0.6875-0.14062h-0.45312v-0.5625z"/>
|
|
171
|
+
</symbol>
|
|
172
|
+
<symbol id="ah" overflow="visible">
|
|
173
|
+
<path d="m6.2812-6.9844c0.94531 0.23047 1.6797 0.79297 2.2031 1.6875 0.33203 0.60547 0.5 1.2578 0.5 1.9531 0 1.1367-0.39844 2.0781-1.1875 2.8281-0.66797 0.60156-1.4531 0.90625-2.3594 0.90625-1.3047 0-2.3516-0.35938-3.1406-1.0781l-0.17188-0.17188c-0.4375 0.69922-0.65625 1.0352-0.65625 1.0156-0.09375 0.15625-0.18359 0.23438-0.26562 0.23438-0.11719-0.10547-0.17969-0.24609-0.1875-0.42188v-3.6094c0-0.25781 0.039063-0.39844 0.125-0.42188l0.015625-0.03125h0.078125c0.13281 0 0.20703 0.0625 0.21875 0.1875 0.039063 1.1562 0.39062 2.0586 1.0469 2.7031l0.078125 0.0625c0.69531 0.65625 1.6445 0.98438 2.8438 0.98438 0.89453 0 1.5703-0.39453 2.0312-1.1875 0.25-0.4375 0.375-0.89844 0.375-1.3906 0-0.64453-0.1875-1.1953-0.5625-1.6562-0.32422-0.4375-0.78906-0.73438-1.3906-0.89062l-0.03125-0.015625c0 0.011719-0.039062 0.007813-0.10938-0.015625-1.4805-0.35156-2.2734-0.55078-2.375-0.59375-0.94922-0.32031-1.6328-0.94141-2.0469-1.8594-0.19922-0.44531-0.29688-0.92578-0.29688-1.4375 0-1.082 0.41016-1.9727 1.2344-2.6719 0.64453-0.53906 1.3984-0.8125 2.2656-0.8125 1.0195 0 1.8984 0.34375 2.6406 1.0312l0.23438 0.21875 0.64062-1.0156c0.082031-0.15625 0.17188-0.23438 0.26562-0.23438 0.125 0.10547 0.19141 0.24609 0.20312 0.42188v3.625c0 0.25-0.039062 0.39062-0.10938 0.42188h-0.015625l-0.015625 0.015625h-0.09375c-0.125 0-0.19922-0.070313-0.21875-0.21875-0.33594-2.4883-1.5078-3.7422-3.5156-3.7656-0.86719 0-1.5234 0.35156-1.9688 1.0469l-0.03125 0.015625c-0.25 0.39844-0.375 0.82812-0.375 1.2969 0 0.79297 0.31641 1.4219 0.95312 1.8906 0.25 0.1875 0.53906 0.32031 0.875 0.39062z"/>
|
|
174
|
+
</symbol>
|
|
175
|
+
<symbol id="ag" overflow="visible">
|
|
176
|
+
<path d="m13.312-13.547 0.39062 4.5h-0.5c-0.13672-1.5078-0.35156-2.4922-0.64062-2.9531v-0.015625c-0.33594-0.50781-1.0234-0.80469-2.0625-0.89062-0.25-0.007812-0.55469-0.015625-0.90625-0.015625-0.60547 0-0.98438 0.015625-1.1406 0.046875-0.21875 0.16797-0.33984 0.41797-0.35938 0.75v10.547c0 0.375 0.082031 0.61719 0.25 0.71875 0.25 0.15625 0.86719 0.23438 1.8594 0.23438h0.79688v0.625c-0.54297-0.039062-1.8086-0.0625-3.7969-0.0625-1.9805 0-3.2422 0.023438-3.7812 0.0625v-0.625h0.79688c1.1758 0 1.8438-0.125 2-0.375 0.039062-0.0625 0.066406-0.14062 0.078125-0.23438 0.007813-0.070313 0.015625-0.1875 0.015625-0.34375v-10.547c0-0.375-0.058594-0.59766-0.17188-0.67188h-0.015625l-0.03125-0.015625h-0.015625c-0.042969-0.03125-0.10156-0.050781-0.17188-0.0625-0.13672-0.03125-0.5-0.046875-1.0938-0.046875-1.3555 0-2.25 0.20312-2.6875 0.60938l-0.078125 0.078125-0.03125 0.015625c-0.35547 0.39844-0.60156 1.2617-0.73438 2.5938-0.03125 0.16797-0.054688 0.35938-0.0625 0.57812h-0.5l0.375-4.5z"/>
|
|
177
|
+
</symbol>
|
|
178
|
+
<symbol id="af" overflow="visible">
|
|
179
|
+
<path d="m6.6562-1.5156c-0.33594 0.82422-0.91797 1.3594-1.75 1.6094-0.27344 0.082031-0.55859 0.125-0.85938 0.125-1.1367 0-2.0117-0.26953-2.625-0.8125-0.38672-0.35156-0.57812-0.78906-0.57812-1.3125 0-1.0195 0.56641-1.8359 1.7031-2.4531 0.09375-0.050781 0.19141-0.097656 0.29688-0.14062 0.8125-0.38281 2.0039-0.625 3.5781-0.71875h0.09375v-0.73438c0-1.1328-0.40625-1.9141-1.2188-2.3438-0.28125-0.14453-0.57812-0.21875-0.89062-0.21875-0.88672 0-1.5703 0.26172-2.0469 0.78125-0.042969 0.054687-0.085937 0.10156-0.125 0.14062 0.63281 0.074219 0.97656 0.375 1.0312 0.90625 0 0.46094-0.21094 0.75781-0.625 0.89062-0.09375 0.023437-0.19531 0.03125-0.29688 0.03125-0.48047 0-0.77734-0.21875-0.89062-0.65625-0.023437-0.0625-0.03125-0.15625-0.03125-0.28125 0-0.80078 0.42188-1.4141 1.2656-1.8438 0.50781-0.26953 1.0938-0.40625 1.75-0.40625 1.0938 0 2.0078 0.36719 2.75 1.0938 0.45703 0.48047 0.69531 1.1484 0.71875 2v4.3594c0 0.38672 0.11719 0.67188 0.35938 0.85938 0.10156 0.09375 0.22656 0.14062 0.375 0.14062 0.46875 0 0.70703-0.42578 0.71875-1.2812v-1.125h0.5v1.125c0 0.98047-0.40234 1.5898-1.2031 1.8281-0.15625 0.050781-0.30469 0.078125-0.4375 0.078125-0.65625 0-1.125-0.34766-1.4062-1.0469-0.074219-0.1875-0.125-0.38281-0.15625-0.59375zm-0.14062-3.2812c-2.0547 0.074219-3.3594 0.69922-3.9219 1.875-0.14844 0.32422-0.21875 0.65625-0.21875 1 0 0.67969 0.30469 1.1797 0.92188 1.5 0.26953 0.13672 0.56641 0.20312 0.89062 0.20312 0.6875 0 1.2656-0.27344 1.7344-0.82812 0.39453-0.44531 0.59375-1.0312 0.59375-1.75z"/>
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol id="ae" overflow="visible">
|
|
182
|
+
<path d="m3.4375-7.5469c0.76953-0.86328 1.6875-1.2969 2.75-1.2969 1.2188 0 2.2539 0.49219 3.1094 1.4688 0.75 0.86719 1.125 1.8867 1.125 3.0625 0 1.3867-0.51562 2.5312-1.5469 3.4375-0.85547 0.73047-1.8281 1.0938-2.9219 1.0938-1.0625 0-1.9141-0.45703-2.5469-1.375-0.03125-0.03125-0.054688-0.054688-0.0625-0.078125l-0.71875 1.2344h-0.5v-11.922c0-0.51953-0.09375-0.83594-0.28125-0.95312h-0.03125c-0.14844-0.082031-0.39844-0.14062-0.75-0.17188h-0.5v-0.60938l2.875-0.21875zm0.0625 5.2656c0 0.27344 0.066406 0.50781 0.20312 0.70312v0.015625l0.078125 0.125c0.53125 0.8125 1.2266 1.2188 2.0938 1.2188 0.9375 0 1.6914-0.42578 2.2656-1.2812 0.41406-0.63281 0.625-1.582 0.625-2.8438 0-1.2383-0.19531-2.1641-0.57812-2.7812-0.54297-0.85156-1.2461-1.2812-2.1094-1.2812-0.92969 0-1.6875 0.39062-2.2812 1.1719l-0.078125 0.10938c-0.14844 0.29297-0.21875 0.53125-0.21875 0.71875z"/>
|
|
183
|
+
</symbol>
|
|
184
|
+
<symbol id="ad" overflow="visible">
|
|
185
|
+
<path d="m3.5469-13.875v12.359c0 0.44922 0.10156 0.71484 0.3125 0.79688 0.14453 0.0625 0.55469 0.09375 1.2344 0.09375v0.625l-2.2188-0.0625c-0.15625 0-0.89844 0.023438-2.2188 0.0625v-0.625c0.78906 0 1.2539-0.054688 1.3906-0.17188l0.03125-0.046875c0.09375-0.10156 0.14062-0.32812 0.14062-0.67188v-10.406c0-0.51953-0.09375-0.83594-0.28125-0.95312h-0.015625c-0.14844-0.082031-0.40234-0.14062-0.76562-0.17188h-0.5v-0.60938z"/>
|
|
186
|
+
</symbol>
|
|
187
|
+
<symbol id="ac" overflow="visible">
|
|
188
|
+
<path d="m7.7969-4.625h-5.5781c0 1.3672 0.19531 2.3672 0.59375 3 0.64453 0.83594 1.3984 1.2812 2.2656 1.3438 0.91406 0 1.6562-0.375 2.2188-1.125 0.19531-0.25781 0.35938-0.57031 0.48438-0.9375 0.039062-0.1875 0.12891-0.28125 0.26562-0.28125 0.16406 0 0.25 0.085938 0.25 0.25 0 0.29297-0.1875 0.6875-0.5625 1.1875-0.54297 0.75-1.2617 1.1953-2.1562 1.3438-0.19922 0.039062-0.40625 0.0625-0.625 0.0625-1.25 0-2.3125-0.47656-3.1875-1.4375-0.80469-0.88281-1.2031-1.9453-1.2031-3.1875 0-1.3828 0.47656-2.5312 1.4375-3.4375 0.76953-0.73828 1.6758-1.1094 2.7188-1.1094 1.5078 0 2.5625 0.63672 3.1562 1.9062 0.28125 0.60547 0.42188 1.2734 0.42188 2 0 0.23047-0.046875 0.36719-0.14062 0.40625-0.042969 0.011719-0.16406 0.015625-0.35938 0.015625zm-5.5625-0.42188h4.75c0-1.2578-0.28125-2.2109-0.84375-2.8594-0.375-0.40625-0.85156-0.60938-1.4219-0.60938-0.67969 0-1.25 0.3125-1.7188 0.9375-0.46875 0.59375-0.72656 1.4375-0.76562 2.5312z"/>
|
|
189
|
+
</symbol>
|
|
190
|
+
<symbol id="ab" overflow="visible">
|
|
191
|
+
<path d="m11.641-13.594 0.5625 4.5h-0.5c-0.17969-1.4688-0.47656-2.457-0.89062-2.9688-0.51172-0.61328-1.4922-0.92188-2.9375-0.92188h-2.3906c-0.52344 0-0.82812 0.085937-0.92188 0.25v0.03125c-0.042969 0.085937-0.0625 0.25781-0.0625 0.51562v5.0625h1.7188c1.0078 0 1.6445-0.23828 1.9062-0.71875 0.14453-0.28906 0.21875-0.82812 0.21875-1.6094h0.5v5.2969h-0.5c0-0.97656-0.14062-1.6094-0.42188-1.8906v-0.015625l-0.015625-0.015625c-0.30469-0.28125-0.86719-0.42188-1.6875-0.42188h-1.7188v4.9219c0 0.38672 0.078125 0.63281 0.23438 0.73438 0.21875 0.14844 0.77344 0.21875 1.6719 0.21875h0.65625v0.625c-0.48047-0.039062-1.6016-0.0625-3.3594-0.0625-1.5625 0-2.5781 0.023438-3.0469 0.0625v-0.625h0.48438c0.86328 0 1.3633-0.10938 1.5-0.32812 0.050781-0.09375 0.078125-0.29688 0.078125-0.60938v-10.484c0-0.39453-0.078125-0.64453-0.23438-0.75-0.1875-0.125-0.63672-0.1875-1.3438-0.1875h-0.48438v-0.60938z"/>
|
|
192
|
+
</symbol>
|
|
193
|
+
<symbol id="k" overflow="visible">
|
|
194
|
+
<path d="m9.4219-4.2812c0 1.375-0.50781 2.5117-1.5156 3.4062-0.84375 0.73047-1.8203 1.0938-2.9219 1.0938-1.2812 0-2.3672-0.47656-3.25-1.4375-0.78125-0.86328-1.1719-1.8828-1.1719-3.0625 0-1.3516 0.48438-2.5 1.4531-3.4375 0.84375-0.82031 1.8359-1.2344 2.9844-1.2344 1.2891 0 2.3789 0.51172 3.2656 1.5312 0.76953 0.89844 1.1562 1.9453 1.1562 3.1406zm-4.4219 4c0.89453 0 1.6016-0.375 2.125-1.125l0.1875-0.35938c0.30078-0.58203 0.45312-1.4727 0.45312-2.6719 0-1.2812-0.17969-2.207-0.53125-2.7812-0.57422-0.82031-1.3242-1.2539-2.25-1.2969-0.83594 0-1.5156 0.33594-2.0469 1-0.09375 0.10547-0.17188 0.21484-0.23438 0.32812-0.32422 0.59375-0.48438 1.5117-0.48438 2.75 0 1.293 0.16406 2.2305 0.5 2.8125 0.5625 0.875 1.3203 1.3242 2.2812 1.3438z"/>
|
|
195
|
+
</symbol>
|
|
196
|
+
<symbol id="aa" overflow="visible">
|
|
197
|
+
<path d="m3.4531-8v5.5625c0 1.3359 0.39062 2.0469 1.1719 2.1406 0.050781 0.011719 0.10938 0.015625 0.17188 0.015625 0.57031 0 0.97266-0.375 1.2031-1.125 0.09375-0.3125 0.14062-0.67969 0.14062-1.1094v-1.1094h0.5v1.1406c0 1.0938-0.30859 1.8828-0.92188 2.3594-0.29297 0.22656-0.64844 0.34375-1.0625 0.34375-1.1172 0-1.8828-0.42188-2.2969-1.2656-0.1875-0.39453-0.28125-0.875-0.28125-1.4375v-5.5156h-1.7031v-0.4375c1.1875-0.050781 1.9727-0.80078 2.3594-2.25 0.13281-0.5 0.20703-1.0352 0.21875-1.6094h0.5v3.6719h2.8594v0.625z"/>
|
|
198
|
+
</symbol>
|
|
199
|
+
</defs>
|
|
200
|
+
<rect width="539" height="174" fill="#fff"/>
|
|
201
|
+
<path transform="scale(20)" d="m0.5 0.5h25.926v7.6057h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
202
|
+
<path transform="scale(20)" d="m0.5 4.5527h25.926v3.5527h-25.926z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
203
|
+
<path transform="scale(20)" d="m0.5 0.5h25.926v7.6057h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
204
|
+
<path transform="scale(20)" d="m0.5 4.5527h25.926v3.5527h-25.926z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
205
|
+
<path transform="scale(20)" d="m0.5 0.5h25.926v0.040039h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
206
|
+
<path transform="scale(20)" d="m0.5 0.51992h25.926" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
207
|
+
<path transform="scale(20)" d="m0.5 0.54004h25.926v1.125h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
208
|
+
<path transform="scale(20)" d="m0.5 1.4498h25.926v0.21523h-25.926z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
209
|
+
<path transform="scale(20)" d="m0.5 0.54004h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
210
|
+
<path transform="scale(20)" d="m0.5 1.4498h0.040039v0.21523h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
211
|
+
<path transform="scale(20)" d="m0.5 1.1025h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
212
|
+
<path transform="scale(20)" d="m0.54004 0.54004h25.846v1.125h-25.846z" fill="#db9370" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
213
|
+
<path transform="scale(20)" d="m0.54004 1.4498h25.846v0.21523h-25.846z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
214
|
+
<path transform="scale(20)" d="m1.04 0.75527h24.846v0.69453h-24.846z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
215
|
+
<path transform="scale(20)" d="m10.61 0.75527h5.7068v0.69453h-5.7068z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
216
|
+
<path transform="scale(20)" d="m10.61 0.75527h5.7068v0.69453h-5.7068z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
217
|
+
<path transform="scale(20)" d="m10.61 0.76367h0.8v0.68613h-0.8z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
218
|
+
<g fill="#fff">
|
|
219
|
+
<use x="212.191406" y="28.996094" xlink:href="#bm"/>
|
|
220
|
+
</g>
|
|
221
|
+
<path transform="scale(20)" d="m11.314 1.0053h0.55898v0.44453h-0.55898z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
222
|
+
<g fill="#fff">
|
|
223
|
+
<use x="226.273438" y="28.996094" xlink:href="#t"/>
|
|
224
|
+
</g>
|
|
225
|
+
<path transform="scale(20)" d="m11.873 0.75527h0.63887v0.69453h-0.63887z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
226
|
+
<g fill="#fff">
|
|
227
|
+
<use x="237.457031" y="28.996094" xlink:href="#bl"/>
|
|
228
|
+
</g>
|
|
229
|
+
<path transform="scale(20)" d="m12.512 0.75527h0.31953v0.69453h-0.31953z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
230
|
+
<g fill="#fff">
|
|
231
|
+
<use x="250.234375" y="28.996094" xlink:href="#bk"/>
|
|
232
|
+
</g>
|
|
233
|
+
<path transform="scale(20)" d="m12.831 1.0053h0.52715v0.44453h-0.52715z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
234
|
+
<g fill="#fff">
|
|
235
|
+
<use x="256.621094" y="28.996094" xlink:href="#s"/>
|
|
236
|
+
</g>
|
|
237
|
+
<path transform="scale(20)" d="m13.691 0.76367h0.9v0.68613h-0.9z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
238
|
+
<g fill="#fff">
|
|
239
|
+
<use x="273.828125" y="28.996094" xlink:href="#bj"/>
|
|
240
|
+
</g>
|
|
241
|
+
<path transform="scale(20)" d="m14.591 1.0053h0.52715v0.44453h-0.52715z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
242
|
+
<g fill="#fff">
|
|
243
|
+
<use x="291.828125" y="28.996094" xlink:href="#s"/>
|
|
244
|
+
</g>
|
|
245
|
+
<path transform="scale(20)" d="m15.119 1.0053h0.55898v0.44453h-0.55898z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
246
|
+
<g fill="#fff">
|
|
247
|
+
<use x="302.371094" y="28.996094" xlink:href="#t"/>
|
|
248
|
+
</g>
|
|
249
|
+
<path transform="scale(20)" d="m15.678 0.75527h0.63887v0.69453h-0.63887z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".05"/>
|
|
250
|
+
<g fill="#fff">
|
|
251
|
+
<use x="313.550781" y="28.996094" xlink:href="#bi"/>
|
|
252
|
+
</g>
|
|
253
|
+
<path transform="scale(20)" d="m26.386 0.54004h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
254
|
+
<path transform="scale(20)" d="m26.386 1.4498h0.040039v0.21523h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
255
|
+
<path transform="scale(20)" d="m26.386 1.1025h0.039844" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
256
|
+
<path transform="scale(20)" d="m0.5 1.665h25.926v0.040039h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
257
|
+
<path transform="scale(20)" d="m0.5 1.685h25.926" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
258
|
+
<path transform="scale(20)" d="m0.5 1.7051h25.926v1.125h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
259
|
+
<path transform="scale(20)" d="m0.5 2.6146h25.926v0.21524h-25.926z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
260
|
+
<path transform="scale(20)" d="m0.5 1.7051h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
261
|
+
<path transform="scale(20)" d="m0.5 2.6146h0.040039v0.21524h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
262
|
+
<path transform="scale(20)" d="m0.5 2.2676h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
263
|
+
<path transform="scale(20)" d="m0.54004 1.7051h8.9178v1.125h-8.9178z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
264
|
+
<path transform="scale(20)" d="m0.54004 2.6146h8.9178v0.21524h-8.9178z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
265
|
+
<path transform="scale(20)" d="m3.4975 1.9314h3.0027v0.6834h-3.0027z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
266
|
+
<path transform="scale(20)" d="m3.4975 1.9314h0.9166v0.6834h-0.9166z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
267
|
+
<g fill="#424242">
|
|
268
|
+
<use x="69.949219" y="52.292969" xlink:href="#r"/>
|
|
269
|
+
</g>
|
|
270
|
+
<path transform="scale(20)" d="m4.4141 2.1842h0.5v0.43047h-0.5z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
271
|
+
<g fill="#424242">
|
|
272
|
+
<use x="88.28125" y="52.292969" xlink:href="#q"/>
|
|
273
|
+
</g>
|
|
274
|
+
<path transform="scale(20)" d="m4.9141 1.9996h0.38887v0.61504h-0.38887z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
275
|
+
<g fill="#424242">
|
|
276
|
+
<use x="98.28125" y="52.292969" xlink:href="#f"/>
|
|
277
|
+
</g>
|
|
278
|
+
<path transform="scale(20)" d="m5.3029 2.1842h0.3916v0.43047h-0.3916z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
279
|
+
<g fill="#424242">
|
|
280
|
+
<use x="106.058594" y="52.292969" xlink:href="#bd"/>
|
|
281
|
+
</g>
|
|
282
|
+
<path transform="scale(20)" d="m5.6947 1.9469h0.27773v0.66777h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
283
|
+
<g fill="#424242">
|
|
284
|
+
<use x="113.894531" y="52.292969" xlink:href="#e"/>
|
|
285
|
+
</g>
|
|
286
|
+
<path transform="scale(20)" d="m5.9725 2.1842h0.52773v0.43047h-0.52773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
287
|
+
<g fill="#424242">
|
|
288
|
+
<use x="119.449219" y="52.292969" xlink:href="#bc"/>
|
|
289
|
+
</g>
|
|
290
|
+
<path transform="scale(20)" d="m9.4576 1.7051h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
291
|
+
<path transform="scale(20)" d="m9.4576 2.6146h0.040039v0.21524h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
292
|
+
<path transform="scale(20)" d="m9.4576 2.2676h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
293
|
+
<path transform="scale(20)" d="m9.4977 1.7051h7.0178v1.125h-7.0178z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
294
|
+
<path transform="scale(20)" d="m9.4977 2.6146h7.0178v0.21524h-7.0178z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
295
|
+
<path transform="scale(20)" d="m9.9977 1.9203h6.0178v0.69453h-6.0178z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
296
|
+
<path transform="scale(20)" d="m10.018 1.9203h5.9777v0.69453h-5.9777z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
297
|
+
<path transform="scale(20)" d="m10.018 1.9314h0.9166v0.6834h-0.9166z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
298
|
+
<g fill="#424242">
|
|
299
|
+
<use x="200.355469" y="52.292969" xlink:href="#r"/>
|
|
300
|
+
</g>
|
|
301
|
+
<path transform="scale(20)" d="m10.934 2.1842h0.55547v0.43047h-0.55547z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
302
|
+
<g fill="#424242">
|
|
303
|
+
<use x="218.6875" y="52.292969" xlink:href="#p"/>
|
|
304
|
+
</g>
|
|
305
|
+
<path transform="scale(20)" d="m11.49 1.9203h0.27773v0.69453h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
306
|
+
<g fill="#424242">
|
|
307
|
+
<use x="229.796875" y="52.292969" xlink:href="#o"/>
|
|
308
|
+
</g>
|
|
309
|
+
<path transform="scale(20)" d="m11.768 1.9996h0.38887v0.61504h-0.38887z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
310
|
+
<g fill="#424242">
|
|
311
|
+
<use x="235.355469" y="52.292969" xlink:href="#f"/>
|
|
312
|
+
</g>
|
|
313
|
+
<path transform="scale(20)" d="m12.157 1.9469h0.27773v0.66777h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
314
|
+
<g fill="#424242">
|
|
315
|
+
<use x="243.132813" y="52.292969" xlink:href="#e"/>
|
|
316
|
+
</g>
|
|
317
|
+
<path transform="scale(20)" d="m12.434 2.1842h0.44453v0.43047h-0.44453z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
318
|
+
<g fill="#424242">
|
|
319
|
+
<use x="248.6875" y="52.292969" xlink:href="#n"/>
|
|
320
|
+
</g>
|
|
321
|
+
<path transform="scale(20)" d="m12.879 2.1842h0.5v0.43047h-0.5z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
322
|
+
<g fill="#424242">
|
|
323
|
+
<use x="257.574219" y="52.292969" xlink:href="#j"/>
|
|
324
|
+
</g>
|
|
325
|
+
<path transform="scale(20)" d="m13.379 1.9203h0.27773v0.69453h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
326
|
+
<g fill="#424242">
|
|
327
|
+
<use x="267.574219" y="52.292969" xlink:href="#o"/>
|
|
328
|
+
</g>
|
|
329
|
+
<path transform="scale(20)" d="m13.657 2.1842h0.55547v0.43047h-0.55547z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
330
|
+
<g fill="#424242">
|
|
331
|
+
<use x="273.132812" y="52.292969" xlink:href="#p"/>
|
|
332
|
+
</g>
|
|
333
|
+
<path transform="scale(20)" d="m14.212 2.1842h0.8334v0.43047h-0.8334z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
334
|
+
<g fill="#424242">
|
|
335
|
+
<use x="284.242188" y="52.292969" xlink:href="#i"/>
|
|
336
|
+
</g>
|
|
337
|
+
<path transform="scale(20)" d="m15.046 2.1842h0.55547v0.43047h-0.55547z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
338
|
+
<g fill="#424242">
|
|
339
|
+
<use x="300.910156" y="52.292969" xlink:href="#h"/>
|
|
340
|
+
</g>
|
|
341
|
+
<path transform="scale(20)" d="m15.601 2.1842h0.39453v0.43047h-0.39453z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
342
|
+
<g fill="#424242">
|
|
343
|
+
<use x="312.019531" y="52.292969" xlink:href="#g"/>
|
|
344
|
+
</g>
|
|
345
|
+
<path transform="scale(20)" d="m16.515 1.7051h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
346
|
+
<path transform="scale(20)" d="m16.515 2.6146h0.040039v0.21524h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
347
|
+
<path transform="scale(20)" d="m16.515 2.2676h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
348
|
+
<path transform="scale(20)" d="m16.555 1.7051h9.8307v1.125h-9.8307z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
349
|
+
<path transform="scale(20)" d="m16.555 2.6146h9.8307v0.21524h-9.8307z" fill="#f00" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
350
|
+
<path transform="scale(20)" d="m17.055 1.9203h8.8307v0.69453h-8.8307z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
351
|
+
<path transform="scale(20)" d="m17.055 1.9314h0.65273v0.6834h-0.65273z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
352
|
+
<g fill="#1234b5">
|
|
353
|
+
<use x="341.109375" y="52.292969" xlink:href="#bh"/>
|
|
354
|
+
</g>
|
|
355
|
+
<path transform="scale(20)" d="m17.625 2.1842h0.5v0.43047h-0.5z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
356
|
+
<g fill="#1234b5">
|
|
357
|
+
<use x="352.5" y="52.292969" xlink:href="#j"/>
|
|
358
|
+
</g>
|
|
359
|
+
<path transform="scale(20)" d="m18.125 2.1842h0.55547v0.43047h-0.55547z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
360
|
+
<g fill="#1234b5">
|
|
361
|
+
<use x="362.5" y="52.292969" xlink:href="#h"/>
|
|
362
|
+
</g>
|
|
363
|
+
<path transform="scale(20)" d="m18.653 1.9996h0.38887v0.61504h-0.38887z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
364
|
+
<g fill="#1234b5">
|
|
365
|
+
<use x="373.054688" y="52.292969" xlink:href="#f"/>
|
|
366
|
+
</g>
|
|
367
|
+
<path transform="scale(20)" d="m19.375 2.1842h0.39453v0.43047h-0.39453z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
368
|
+
<g fill="#1234b5">
|
|
369
|
+
<use x="387.5" y="52.292969" xlink:href="#g"/>
|
|
370
|
+
</g>
|
|
371
|
+
<path transform="scale(20)" d="m19.769 1.9469h0.27773v0.66777h-0.27773z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
372
|
+
<g fill="#1234b5">
|
|
373
|
+
<use x="395.386719" y="52.292969" xlink:href="#e"/>
|
|
374
|
+
</g>
|
|
375
|
+
<path transform="scale(20)" d="m20.047 2.1842h0.44453v0.43047h-0.44453z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
376
|
+
<g fill="#1234b5">
|
|
377
|
+
<use x="400.941406" y="52.292969" xlink:href="#bg"/>
|
|
378
|
+
</g>
|
|
379
|
+
<path transform="scale(20)" d="m20.492 2.1842h0.44453v0.43047h-0.44453z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
380
|
+
<g fill="#1234b5">
|
|
381
|
+
<use x="409.832031" y="52.292969" xlink:href="#bf"/>
|
|
382
|
+
</g>
|
|
383
|
+
<path transform="scale(20)" d="m21.269 2.1842h0.44453v0.43047h-0.44453z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
384
|
+
<g fill="#1234b5">
|
|
385
|
+
<use x="425.386719" y="52.292969" xlink:href="#n"/>
|
|
386
|
+
</g>
|
|
387
|
+
<path transform="scale(20)" d="m21.714 2.1842h0.5v0.43047h-0.5z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
388
|
+
<g fill="#1234b5">
|
|
389
|
+
<use x="434.277344" y="52.292969" xlink:href="#j"/>
|
|
390
|
+
</g>
|
|
391
|
+
<path transform="scale(20)" d="m22.214 2.1842h0.8334v0.43047h-0.8334z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
392
|
+
<g fill="#1234b5">
|
|
393
|
+
<use x="444.277344" y="52.292969" xlink:href="#i"/>
|
|
394
|
+
</g>
|
|
395
|
+
<path transform="scale(20)" d="m23.047 2.1842h0.8334v0.43047h-0.8334z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
396
|
+
<g fill="#1234b5">
|
|
397
|
+
<use x="460.941406" y="52.292969" xlink:href="#i"/>
|
|
398
|
+
</g>
|
|
399
|
+
<path transform="scale(20)" d="m23.88 2.1842h0.5v0.43047h-0.5z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
400
|
+
<g fill="#1234b5">
|
|
401
|
+
<use x="477.609375" y="52.292969" xlink:href="#q"/>
|
|
402
|
+
</g>
|
|
403
|
+
<path transform="scale(20)" d="m24.38 2.1842h0.55547v0.43047h-0.55547z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
404
|
+
<g fill="#1234b5">
|
|
405
|
+
<use x="487.609375" y="52.292969" xlink:href="#h"/>
|
|
406
|
+
</g>
|
|
407
|
+
<path transform="scale(20)" d="m24.936 1.9203h0.55547v0.69453h-0.55547z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
408
|
+
<g fill="#1234b5">
|
|
409
|
+
<use x="498.722656" y="52.292969" xlink:href="#be"/>
|
|
410
|
+
</g>
|
|
411
|
+
<path transform="scale(20)" d="m25.492 2.1842h0.39453v0.43047h-0.39453z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
412
|
+
<g fill="#1234b5">
|
|
413
|
+
<use x="509.832031" y="52.292969" xlink:href="#g"/>
|
|
414
|
+
</g>
|
|
415
|
+
<path transform="scale(20)" d="m26.386 1.7051h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
416
|
+
<path transform="scale(20)" d="m26.386 2.6146h0.040039v0.21524h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
417
|
+
<path transform="scale(20)" d="m26.386 2.2676h0.039844" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
418
|
+
<path transform="scale(20)" d="m0.5 2.8301h25.926v0.040039h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
419
|
+
<path transform="scale(20)" d="m0.5 2.85h25.926" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
420
|
+
<path transform="scale(20)" d="m0.5 2.8699h25.926v4.0307h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
421
|
+
<path transform="scale(20)" d="m0.5 5.1354h25.926v1.7652h-25.926z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
422
|
+
<path transform="scale(20)" d="m0.5 2.8699h0.040039v4.0307h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
423
|
+
<path transform="scale(20)" d="m0.5 5.1354h0.040039v1.7652h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
424
|
+
<path transform="scale(20)" d="m0.5 4.8854h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="4.0306"/>
|
|
425
|
+
<path transform="scale(20)" d="m0.54004 2.8699h8.9178v4.0307h-8.9178z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
426
|
+
<path transform="scale(20)" d="m0.54004 5.1354h8.9178v1.7652h-8.9178z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
427
|
+
<path transform="scale(20)" d="m1.04 3.0854h7.9178v3.6h-7.9178z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
428
|
+
<path transform="scale(20)" d="m1.04 5.1354h7.9178v1.55h-7.9178z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
429
|
+
<path transform="scale(20)" d="m1.04 3.0854h7.9178v3.6h-7.9178z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
430
|
+
<path transform="scale(20)" d="m1.04 5.1354h7.9178v1.55h-7.9178z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
431
|
+
<path transform="scale(20)" d="m1.04 3.0854h0.875v1.8h-0.875z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
432
|
+
<path transform="scale(20)" d="m1.04 3.1252h0.875v1.76h-0.875z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
433
|
+
<g fill="#424242">
|
|
434
|
+
<use x="20.800781" y="62.503906" xlink:href="#ak"/>
|
|
435
|
+
</g>
|
|
436
|
+
<path transform="scale(20)" d="m1.04 4.8854h0.875v1.8h-0.875z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
437
|
+
<path transform="scale(20)" d="m1.04 4.9252h0.875v1.76h-0.875z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
438
|
+
<g fill="#424242">
|
|
439
|
+
<use x="20.800781" y="98.503906" xlink:href="#aj"/>
|
|
440
|
+
</g>
|
|
441
|
+
<path transform="scale(20)" d="m1.915 3.259h6.1678v3.2527h-6.1678z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
442
|
+
<path transform="scale(20)" d="m1.915 5.1354h6.1678v1.3764h-6.1678z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
443
|
+
<path transform="scale(20)" d="m1.915 3.259h6.1678v1.025h-6.1678z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
444
|
+
<path transform="scale(20)" d="m1.915 3.9186h6.1678v0.36523h-6.1678z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
445
|
+
<path transform="scale(20)" d="m1.915 3.259h1.91v1.025h-1.91z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
446
|
+
<path transform="scale(20)" d="m1.915 3.9186h1.91v0.36523h-1.91z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
447
|
+
<path transform="scale(20)" d="m1.95 3.4881h1.3396v0.58047h-1.3396z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
448
|
+
<path transform="scale(20)" d="m1.95 3.9186h1.3396v0.15h-1.3396z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
449
|
+
<path transform="scale(20)" d="m1.95 3.4881h0.63965v0.43047h-0.63965z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
450
|
+
<g fill="#424242">
|
|
451
|
+
<use x="39" y="78.371094" xlink:href="#z"/>
|
|
452
|
+
</g>
|
|
453
|
+
<path transform="scale(20)" d="m2.5898 3.6176h0.7v0.45117h-0.7z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
454
|
+
<path transform="scale(20)" d="m2.5898 3.6176h0.35v0.45117h-0.35z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
455
|
+
<g fill="#424242">
|
|
456
|
+
<use x="51.796875" y="81.371094" xlink:href="#y"/>
|
|
457
|
+
</g>
|
|
458
|
+
<path transform="matrix(20 0 0 20 -3.5283e-7 -5.5431e-7)" d="m2.9398 3.6176h0.35v0.45117h-0.35z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
459
|
+
<g fill="#424242">
|
|
460
|
+
<use x="58.796875" y="81.371094" xlink:href="#x"/>
|
|
461
|
+
</g>
|
|
462
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m3.8248 3.259h2.2777v1.025h-2.2777z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
463
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m3.8248 3.9186h2.2777v0.36523h-2.2777z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
464
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m4.3248 3.4742h1.2777v0.44453h-1.2777z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
465
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m4.3248 3.4742h0.27773v0.38887h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
466
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m4.3248 3.8631h0.27773v0.055469h-0.27773z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
467
|
+
<g fill="#424242">
|
|
468
|
+
<use x="86.496094" y="78.371094" xlink:href="#c"/>
|
|
469
|
+
</g>
|
|
470
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m4.8248 3.4742h0.27773v0.38887h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
471
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m4.8248 3.8631h0.27773v0.055469h-0.27773z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
472
|
+
<g fill="#424242">
|
|
473
|
+
<use x="96.496094" y="78.371094" xlink:href="#c"/>
|
|
474
|
+
</g>
|
|
475
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m5.3248 3.4742h0.27773v0.38887h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
476
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m5.3248 3.8631h0.27773v0.055469h-0.27773z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
477
|
+
<g fill="#424242">
|
|
478
|
+
<use x="106.496094" y="78.371094" xlink:href="#c"/>
|
|
479
|
+
</g>
|
|
480
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m6.1027 3.259h1.9801v1.025h-1.9801z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
481
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m6.1027 3.9186h1.9801v0.36523h-1.9801z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
482
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m6.6377 3.4881h1.41v0.58047h-1.41z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
483
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m6.6377 3.9186h1.41v0.15h-1.41z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
484
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m6.6377 3.4881h0.63965v0.43047h-0.63965z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
485
|
+
<g fill="#424242">
|
|
486
|
+
<use x="132.753906" y="78.371094" xlink:href="#w"/>
|
|
487
|
+
</g>
|
|
488
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m7.2773 3.6176h0.77012v0.45117h-0.77012z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
489
|
+
<path transform="matrix(20 0 0 20 -7.5334e-7 -1.1086e-6)" d="m7.2773 3.6176h0.35v0.45117h-0.35z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
490
|
+
<g fill="#424242">
|
|
491
|
+
<use x="145.546875" y="81.371094" xlink:href="#v"/>
|
|
492
|
+
</g>
|
|
493
|
+
<path transform="matrix(20 0 0 20 -1.7448e-6 -1.6629e-6)" d="m7.6273 3.7672h0.42012v0.30137h-0.42012z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
494
|
+
<g fill="#424242">
|
|
495
|
+
<use x="152.546875" y="81.371094" xlink:href="#u"/>
|
|
496
|
+
</g>
|
|
497
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 4.284h6.1678v1.2027h-6.1678z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
498
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 4.8324h6.1678v0.6541h-6.1678z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
499
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 4.284h6.1678v1.2027h-6.1678z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
500
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 4.8324h6.1678v0.6541h-6.1678z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
501
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 4.8324h6.1678v0.10547h-6.1678z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
502
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m2.0035 4.8324h5.9904v0.10547h-5.9904z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
503
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m2.0035 4.8324h0.27773v0.10547h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
504
|
+
<g fill="#424242">
|
|
505
|
+
<use x="40.070312" y="98.761719" xlink:href="#a"/>
|
|
506
|
+
</g>
|
|
507
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m2.6383 4.8324h0.27774v0.10547h-0.27774z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
508
|
+
<g fill="#424242">
|
|
509
|
+
<use x="52.765625" y="98.761719" xlink:href="#a"/>
|
|
510
|
+
</g>
|
|
511
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m3.273 4.8324h0.27773v0.10547h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
512
|
+
<g fill="#424242">
|
|
513
|
+
<use x="65.460938" y="98.761719" xlink:href="#a"/>
|
|
514
|
+
</g>
|
|
515
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m3.9078 4.8324h0.27773v0.10547h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
516
|
+
<g fill="#424242">
|
|
517
|
+
<use x="78.15625" y="98.761719" xlink:href="#a"/>
|
|
518
|
+
</g>
|
|
519
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m4.5426 4.8324h0.27774v0.10547h-0.27774z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
520
|
+
<g fill="#424242">
|
|
521
|
+
<use x="90.851562" y="98.761719" xlink:href="#a"/>
|
|
522
|
+
</g>
|
|
523
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m5.1773 4.8324h0.27773v0.10547h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
524
|
+
<g fill="#424242">
|
|
525
|
+
<use x="103.546875" y="98.761719" xlink:href="#a"/>
|
|
526
|
+
</g>
|
|
527
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m5.8121 4.8324h0.27774v0.10547h-0.27774z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
528
|
+
<g fill="#424242">
|
|
529
|
+
<use x="116.242188" y="98.761719" xlink:href="#a"/>
|
|
530
|
+
</g>
|
|
531
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m6.4469 4.8324h0.27773v0.10547h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
532
|
+
<g fill="#424242">
|
|
533
|
+
<use x="128.9375" y="98.761719" xlink:href="#a"/>
|
|
534
|
+
</g>
|
|
535
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m7.0816 4.8324h0.27773v0.10547h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
536
|
+
<g fill="#424242">
|
|
537
|
+
<use x="141.632812" y="98.761719" xlink:href="#a"/>
|
|
538
|
+
</g>
|
|
539
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m7.7162 4.8324h0.27773v0.10547h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
540
|
+
<g fill="#424242">
|
|
541
|
+
<use x="154.324219" y="98.761719" xlink:href="#a"/>
|
|
542
|
+
</g>
|
|
543
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 5.4867h6.1678v1.025h-6.1678z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
544
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 6.1465h6.1678v0.36524h-6.1678z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
545
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 5.4867h1.91v1.025h-1.91z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
546
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 6.1465h1.91v0.36524h-1.91z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
547
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 5.7158h1.41v0.58047h-1.41z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
548
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 6.1465h1.41v0.15h-1.41z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
549
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m1.915 5.7158h0.63965v0.43047h-0.63965z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
550
|
+
<g fill="#424242">
|
|
551
|
+
<use x="38.300781" y="122.929688" xlink:href="#bb"/>
|
|
552
|
+
</g>
|
|
553
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m2.5547 5.8453h0.77012v0.45117h-0.77012z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
554
|
+
<path transform="matrix(20 0 0 20 -2.784e-6 -2.2172e-6)" d="m2.5547 5.9949h0.42012v0.30137h-0.42012z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
555
|
+
<g fill="#424242">
|
|
556
|
+
<use x="51.09375" y="125.929688" xlink:href="#ba"/>
|
|
557
|
+
</g>
|
|
558
|
+
<path transform="matrix(20 0 0 20 -3.132e-6 -3.075e-6)" d="m2.9748 5.8453h0.35v0.45117h-0.35z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
559
|
+
<g fill="#424242">
|
|
560
|
+
<use x="59.496094" y="125.929688" xlink:href="#az"/>
|
|
561
|
+
</g>
|
|
562
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m3.8248 5.4867h2.2777v1.025h-2.2777z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
563
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m3.8248 6.1465h2.2777v0.36524h-2.2777z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
564
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m4.3248 5.702h1.2777v0.44453h-1.2777z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
565
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m4.3248 5.702h0.27773v0.38887h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
566
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m4.3248 6.0908h0.27773v0.055469h-0.27773z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
567
|
+
<g fill="#424242">
|
|
568
|
+
<use x="86.496094" y="122.929688" xlink:href="#d"/>
|
|
569
|
+
</g>
|
|
570
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m4.8248 5.702h0.27773v0.38887h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
571
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m4.8248 6.0908h0.27773v0.055469h-0.27773z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
572
|
+
<g fill="#424242">
|
|
573
|
+
<use x="96.496094" y="122.929688" xlink:href="#d"/>
|
|
574
|
+
</g>
|
|
575
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m5.3248 5.702h0.27773v0.38887h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
576
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m5.3248 6.0908h0.27773v0.055469h-0.27773z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
577
|
+
<g fill="#424242">
|
|
578
|
+
<use x="106.496094" y="122.929688" xlink:href="#d"/>
|
|
579
|
+
</g>
|
|
580
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m6.1027 5.4867h1.9801v1.025h-1.9801z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
581
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m6.1027 6.1465h1.9801v0.36524h-1.9801z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
582
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m6.6027 5.7158h1.4801v0.58047h-1.4801z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
583
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m6.6027 6.1465h1.4801v0.15h-1.4801z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
584
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m6.6027 5.7158h0.63965v0.43047h-0.63965z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
585
|
+
<g fill="#424242">
|
|
586
|
+
<use x="132.054688" y="122.929688" xlink:href="#ay"/>
|
|
587
|
+
</g>
|
|
588
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m7.2424 5.9949h0.84023v0.30137h-0.84023z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
589
|
+
<path transform="matrix(20 0 0 20 -3.5373e-6 -3.9329e-6)" d="m7.2424 5.9949h0.42012v0.30137h-0.42012z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
590
|
+
<g fill="#424242">
|
|
591
|
+
<use x="144.847656" y="125.929688" xlink:href="#ax"/>
|
|
592
|
+
</g>
|
|
593
|
+
<path transform="matrix(20 0 0 20 -4.524e-6 -4.7907e-6)" d="m7.6625 5.9949h0.42012v0.30137h-0.42012z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
594
|
+
<g fill="#424242">
|
|
595
|
+
<use x="153.25" y="125.929688" xlink:href="#aw"/>
|
|
596
|
+
</g>
|
|
597
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m8.0826 3.0854h0.875v1.8h-0.875z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
598
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m8.0826 3.1252h0.875v1.76h-0.875z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
599
|
+
<g fill="#424242">
|
|
600
|
+
<use x="161.652344" y="62.503906" xlink:href="#av"/>
|
|
601
|
+
</g>
|
|
602
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m8.0826 4.8854h0.875v1.8h-0.875z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
603
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m8.0826 4.9252h0.875v1.76h-0.875z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
604
|
+
<g fill="#424242">
|
|
605
|
+
<use x="161.652344" y="98.503906" xlink:href="#au"/>
|
|
606
|
+
</g>
|
|
607
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m9.4576 2.8699h0.040039v4.0307h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
608
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m9.4576 5.1354h0.040039v1.7652h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
609
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m9.4576 4.8854h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="4.0306"/>
|
|
610
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m9.4977 2.8699h3.275v4.0307h-3.275z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
611
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m9.4977 5.1354h3.275v1.7652h-3.275z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
612
|
+
<path transform="matrix(20 0 0 20 -5.5679e-6 -5.6485e-6)" d="m10.077 4.302h2.1166v0.8334h-2.1166z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
613
|
+
<path transform="matrix(24 0 0 24 201.54 102.71)" d="m6.4306e-5 -0.69445h1.7638v0.6945h-1.7638z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".041667"/>
|
|
614
|
+
<path transform="matrix(24 0 0 24 201.54 102.71)" d="m6.4306e-5 -0.68338h0.625v0.68327h-0.625z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".041667"/>
|
|
615
|
+
<g fill="#424242">
|
|
616
|
+
<use x="201.539063" y="102.707031" xlink:href="#at"/>
|
|
617
|
+
</g>
|
|
618
|
+
<path transform="matrix(24 0 0 24 201.54 102.71)" d="m0.62506-0.43061h0.4445v0.4305h-0.4445z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".041667"/>
|
|
619
|
+
<g fill="#424242">
|
|
620
|
+
<use x="216.539063" y="102.707031" xlink:href="#as"/>
|
|
621
|
+
</g>
|
|
622
|
+
<path transform="matrix(24 0 0 24 201.54 102.71)" d="m1.0694-0.69445h0.3055v0.6945h-0.3055z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".041667"/>
|
|
623
|
+
<g fill="#424242">
|
|
624
|
+
<use x="227.203125" y="102.707031" xlink:href="#ar"/>
|
|
625
|
+
</g>
|
|
626
|
+
<path transform="matrix(24 0 0 24 201.54 102.71)" d="m1.3751-0.61502h0.38884v0.61507h-0.38884z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".041667"/>
|
|
627
|
+
<g fill="#424242">
|
|
628
|
+
<use x="234.539063" y="102.707031" xlink:href="#aq"/>
|
|
629
|
+
</g>
|
|
630
|
+
<path transform="matrix(20 0 0 20 -8.7713e-6 -7.281e-6)" d="m12.773 2.8699h0.040039v4.0307h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
631
|
+
<path transform="matrix(20 0 0 20 -8.7713e-6 -7.281e-6)" d="m12.773 5.1354h0.040039v1.7652h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
632
|
+
<path transform="matrix(20 0 0 20 -8.7713e-6 -7.281e-6)" d="m12.773 4.8854h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="4.0306"/>
|
|
633
|
+
<path transform="matrix(20 0 0 20 -8.7713e-6 -7.281e-6)" d="m12.813 2.8699h3.7027v4.0307h-3.7027z" fill="#00bce5" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
634
|
+
<path transform="matrix(20 0 0 20 -8.7713e-6 -7.281e-6)" d="m12.813 5.1354h3.7027v1.7652h-3.7027z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
635
|
+
<path transform="matrix(20 0 0 20 -8.7713e-6 -7.281e-6)" d="m13.392 4.5104h2.5443v0.8h-2.5443z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
636
|
+
<path transform="matrix(20 0 0 20 -8.7713e-6 -7.281e-6)" d="m13.392 5.1354h2.5443v0.175h-2.5443z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
637
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m7.0012e-5 -0.69438h2.827v0.88889h-2.827z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
638
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m7.0012e-5 6.6124e-5h2.827v0.19444h-2.827z" fill="#f00" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
639
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m7.0012e-5 -0.69438h2.827v0.88889h-2.827z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
640
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m7.0012e-5 6.6124e-5h2.827v0.19444h-2.827z" fill="#f00" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
641
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m7.0012e-5 -0.68613h0.86241v0.6862h-0.86241z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
642
|
+
<g fill="#fff">
|
|
643
|
+
<use x="267.839844" y="102.707031" xlink:href="#ap"/>
|
|
644
|
+
</g>
|
|
645
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m0.86248-0.69438h0.31944v0.69444h-0.31944z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
646
|
+
<g fill="#fff">
|
|
647
|
+
<use x="283.363281" y="102.707031" xlink:href="#ao"/>
|
|
648
|
+
</g>
|
|
649
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m1.1819-0.44438h0.59093v0.63889h-0.59093z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
650
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m1.1819 6.6124e-5h0.59093v0.19444h-0.59093z" fill="#f00" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
651
|
+
<g fill="#fff">
|
|
652
|
+
<use x="289.113281" y="102.707031" xlink:href="#an"/>
|
|
653
|
+
</g>
|
|
654
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m1.7729-0.69438h0.63889v0.69444h-0.63889z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
655
|
+
<g fill="#fff">
|
|
656
|
+
<use x="299.75" y="102.707031" xlink:href="#am"/>
|
|
657
|
+
</g>
|
|
658
|
+
<path transform="matrix(18 0 0 18 267.84 102.71)" d="m2.3798-0.63492h0.44727v0.63498h-0.44727z" fill="none" stroke="#fff" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
659
|
+
<g fill="#fff">
|
|
660
|
+
<use x="310.675781" y="102.707031" xlink:href="#al"/>
|
|
661
|
+
</g>
|
|
662
|
+
<path transform="matrix(20 0 0 20 -1.4448e-5 -9.4576e-6)" d="m16.515 2.8699h0.040039v4.0307h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
663
|
+
<path transform="matrix(20 0 0 20 -1.4448e-5 -9.4576e-6)" d="m16.515 5.1354h0.040039v1.7652h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
664
|
+
<path transform="matrix(20 0 0 20 -1.4448e-5 -9.4576e-6)" d="m16.515 4.8854h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="4.0306"/>
|
|
665
|
+
<path transform="matrix(20 0 0 20 -1.4448e-5 -9.4576e-6)" d="m16.555 2.8699h9.8307v4.0307h-9.8307z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
666
|
+
<path transform="matrix(20 0 0 20 -1.4448e-5 -9.4576e-6)" d="m16.555 5.1354h9.8307v1.7652h-9.8307z" fill="#f00" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
667
|
+
<path transform="matrix(20 0 0 20 -1.4448e-5 -9.4576e-6)" d="m19.193 4.5104h4.5551v0.625h-4.5551z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".05"/>
|
|
668
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m1.0693e-4 -0.69438h5.0612v0.69444h-5.0612z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
669
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m1.0693e-4 -0.43049h0.39453v0.43056h-0.39453z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
670
|
+
<g fill="#1234b5">
|
|
671
|
+
<use x="383.867188" y="102.707031" xlink:href="#ai"/>
|
|
672
|
+
</g>
|
|
673
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m0.39442-0.43049h0.83333v0.43056h-0.83333z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
674
|
+
<g fill="#1234b5">
|
|
675
|
+
<use x="390.964844" y="102.707031" xlink:href="#m"/>
|
|
676
|
+
</g>
|
|
677
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m1.2278-0.43049h0.5v0.43056h-0.5z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
678
|
+
<g fill="#1234b5">
|
|
679
|
+
<use x="405.964844" y="102.707031" xlink:href="#l"/>
|
|
680
|
+
</g>
|
|
681
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m1.7278-0.69438h0.27778v0.69444h-0.27778z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
682
|
+
<g fill="#1234b5">
|
|
683
|
+
<use x="414.964844" y="102.707031" xlink:href="#b"/>
|
|
684
|
+
</g>
|
|
685
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m2.0055-0.69438h0.27778v0.69444h-0.27778z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
686
|
+
<g fill="#1234b5">
|
|
687
|
+
<use x="419.964844" y="102.707031" xlink:href="#b"/>
|
|
688
|
+
</g>
|
|
689
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m2.6166-0.68331h0.55556v0.68338h-0.55556z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
690
|
+
<g fill="#1234b5">
|
|
691
|
+
<use x="430.964844" y="102.707031" xlink:href="#ah"/>
|
|
692
|
+
</g>
|
|
693
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m3.1722-0.43049h0.83333v0.43056h-0.83333z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
694
|
+
<g fill="#1234b5">
|
|
695
|
+
<use x="440.964844" y="102.707031" xlink:href="#m"/>
|
|
696
|
+
</g>
|
|
697
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m4.0055-0.43049h0.5v0.43056h-0.5z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
698
|
+
<g fill="#1234b5">
|
|
699
|
+
<use x="455.964844" y="102.707031" xlink:href="#l"/>
|
|
700
|
+
</g>
|
|
701
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m4.5055-0.69438h0.27778v0.69444h-0.27778z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
702
|
+
<g fill="#1234b5">
|
|
703
|
+
<use x="464.964844" y="102.707031" xlink:href="#b"/>
|
|
704
|
+
</g>
|
|
705
|
+
<path transform="matrix(18 0 0 18 383.87 102.71)" d="m4.7833-0.69438h0.27778v0.69444h-0.27778z" fill="none" stroke="#1234b5" stroke-miterlimit="0" stroke-width=".055556"/>
|
|
706
|
+
<g fill="#1234b5">
|
|
707
|
+
<use x="469.964844" y="102.707031" xlink:href="#b"/>
|
|
708
|
+
</g>
|
|
709
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m26.386 2.8699h0.040039v4.0307h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
710
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m26.386 5.1354h0.040039v1.7652h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
711
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m26.386 4.8854h0.039844" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="4.0306"/>
|
|
712
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 6.9006h25.926v0.040039h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
713
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 6.9205h25.926" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
714
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 6.9406h25.926v1.125h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
715
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 7.8504h25.926v0.21524h-25.926z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
716
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 6.9406h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
717
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 7.8504h0.040039v0.21524h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
718
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 7.5031h0.040039" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
719
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.54004 6.9406h25.846v1.125h-25.846z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
720
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.54004 7.8504h25.846v0.21524h-25.846z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
721
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m1.04 7.1559h24.846v0.69453h-24.846z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
722
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m11.095 7.1559h4.7361v0.69453h-4.7361z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
723
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m11.095 7.167h0.72226v0.6834h-0.72226z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
724
|
+
<g fill="#424242">
|
|
725
|
+
<use x="221.898438" y="157.007812" xlink:href="#ag"/>
|
|
726
|
+
</g>
|
|
727
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m11.734 7.4197h0.5v0.43047h-0.5z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
728
|
+
<g fill="#424242">
|
|
729
|
+
<use x="234.675781" y="157.007812" xlink:href="#af"/>
|
|
730
|
+
</g>
|
|
731
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m12.234 7.1559h0.55547v0.69453h-0.55547z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
732
|
+
<g fill="#424242">
|
|
733
|
+
<use x="244.675781" y="157.007812" xlink:href="#ae"/>
|
|
734
|
+
</g>
|
|
735
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m12.789 7.1559h0.27773v0.69453h-0.27773z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
736
|
+
<g fill="#424242">
|
|
737
|
+
<use x="255.789063" y="157.007812" xlink:href="#ad"/>
|
|
738
|
+
</g>
|
|
739
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m13.067 7.4197h0.44453v0.43047h-0.44453z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
740
|
+
<g fill="#424242">
|
|
741
|
+
<use x="261.34375" y="157.007812" xlink:href="#ac"/>
|
|
742
|
+
</g>
|
|
743
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m13.845 7.167h0.65274v0.6834h-0.65274z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
744
|
+
<g fill="#424242">
|
|
745
|
+
<use x="276.898438" y="157.007812" xlink:href="#ab"/>
|
|
746
|
+
</g>
|
|
747
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m14.414 7.4197h0.5v0.43047h-0.5z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
748
|
+
<g fill="#424242">
|
|
749
|
+
<use x="288.289063" y="157.007812" xlink:href="#k"/>
|
|
750
|
+
</g>
|
|
751
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m14.942 7.4197h0.5v0.43047h-0.5z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
752
|
+
<g fill="#424242">
|
|
753
|
+
<use x="298.84375" y="157.007812" xlink:href="#k"/>
|
|
754
|
+
</g>
|
|
755
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m15.442 7.2352h0.38887v0.61504h-0.38887z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
756
|
+
<g fill="#424242">
|
|
757
|
+
<use x="308.84375" y="157.007812" xlink:href="#aa"/>
|
|
758
|
+
</g>
|
|
759
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m26.386 6.9406h0.040039v1.125h-0.040039z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
760
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m26.386 7.8504h0.040039v0.21524h-0.040039z" fill="#f00" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
761
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m26.386 7.5031h0.039844" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width="1.125"/>
|
|
762
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 8.0656h25.926v0.040039h-25.926z" fill="none" stroke="#424242" stroke-miterlimit="0" stroke-width=".05"/>
|
|
763
|
+
<path transform="matrix(20 0 0 20 -2.2583e-5 -1.1634e-5)" d="m0.5 8.0855h25.926" fill="none" stroke="#424242" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
764
|
+
</svg>
|