@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,199 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="190pt" height="236pt" viewBox="0 0 190 236" version="1.1">
|
|
3
|
+
<defs>
|
|
4
|
+
<g>
|
|
5
|
+
<symbol overflow="visible" id="glyph0-0">
|
|
6
|
+
<path style="stroke:none;" d="M 3.6875 -1.34375 L 1.3125 -1.34375 L 1.3125 -12.359375 L 3.6875 -12.359375 Z M 5 0 L 5 -13.6875 L 0 -13.6875 L 0 0 Z M 5 0 "/>
|
|
7
|
+
</symbol>
|
|
8
|
+
<symbol overflow="visible" id="glyph0-1">
|
|
9
|
+
<path style="stroke:none;" d="M 14.453125 -13.0625 L 4.0625 -13.0625 L 3.984375 -12.765625 L 4.359375 -12.765625 C 5.5625 -12.765625 5.875 -12.40625 5.875 -11.984375 C 5.875 -11.84375 5.84375 -11.65625 5.796875 -11.5 L 3.3125 -1.5625 C 3.140625 -0.875 2.71875 -0.3125 1.203125 -0.3125 L 0.84375 -0.3125 L 0.765625 0 L 7.59375 0 L 7.6875 -0.3125 L 7.046875 -0.3125 C 5.84375 -0.3125 5.453125 -0.640625 5.453125 -1.140625 C 5.453125 -1.28125 5.515625 -1.4375 5.546875 -1.5625 L 6.78125 -6.640625 L 8.71875 -6.640625 C 9.296875 -6.640625 10.125 -6.578125 10.125 -5.640625 C 10.125 -5.28125 10.078125 -4.703125 10.015625 -4.421875 L 10.34375 -4.421875 L 11.546875 -9.265625 L 11.21875 -9.265625 C 10.796875 -7.5625 9.875 -7.359375 8.640625 -7.359375 L 6.984375 -7.359375 L 8.21875 -12.3125 L 11.15625 -12.3125 C 12.09375 -12.3125 13.296875 -12.140625 13.359375 -10.578125 C 13.359375 -10.296875 13.359375 -10.015625 13.34375 -9.859375 L 13.65625 -9.859375 Z M 14.453125 -13.0625 "/>
|
|
10
|
+
</symbol>
|
|
11
|
+
<symbol overflow="visible" id="glyph0-2">
|
|
12
|
+
<path style="stroke:none;" d="M 6.078125 3.21875 C 3.28125 0.875 2.6875 -1.375 2.6875 -5.09375 C 2.6875 -8.953125 3.296875 -10.8125 6.078125 -13.203125 L 5.90625 -13.515625 C 2.703125 -11.625 0.953125 -8.734375 0.953125 -5.046875 C 0.953125 -1.640625 2.6875 1.734375 5.84375 3.546875 Z M 6.078125 3.21875 "/>
|
|
13
|
+
</symbol>
|
|
14
|
+
<symbol overflow="visible" id="glyph0-3">
|
|
15
|
+
<path style="stroke:none;" d="M 6.09375 -5.765625 L 5.703125 -6.859375 C 5.453125 -7.515625 5.078125 -8.34375 4.203125 -8.8125 L 1.5625 -8.15625 L 1.625 -7.796875 C 1.8125 -7.875 2.125 -7.921875 2.375 -7.921875 C 3.484375 -7.921875 4 -7.09375 4.34375 -6.140625 L 5 -4.296875 L 3.703125 -2.28125 C 3.0625 -1.296875 2.546875 -1.09375 2.296875 -1.09375 C 1.796875 -1.09375 1.875 -1.5 1.359375 -1.5 C 0.859375 -1.5 0.59375 -1.078125 0.59375 -0.765625 C 0.59375 -0.3125 0.921875 0.1875 1.640625 0.1875 C 2.765625 0.1875 3.34375 -0.6875 3.984375 -1.65625 L 5.234375 -3.625 L 6.046875 -1.359375 C 6.296875 -0.640625 6.6875 0.1875 7.5 0.1875 C 8.65625 0.1875 9.5625 -1.734375 9.796875 -2.046875 L 9.515625 -2.234375 C 9.09375 -1.375 8.625 -1.09375 8.296875 -1.09375 C 7.40625 -1.09375 6.9375 -3.796875 6.34375 -5.046875 L 7.4375 -6.734375 C 7.71875 -7.1875 7.9375 -7.5 8.546875 -7.5 C 8.875 -7.5 8.984375 -7.3125 9.421875 -7.3125 C 9.9375 -7.3125 10.203125 -7.78125 10.203125 -8.15625 C 10.203125 -8.578125 9.859375 -8.8125 9.21875 -8.8125 C 8.21875 -8.8125 7.515625 -7.9375 7 -7.140625 Z M 6.09375 -5.765625 "/>
|
|
16
|
+
</symbol>
|
|
17
|
+
<symbol overflow="visible" id="glyph0-4">
|
|
18
|
+
<path style="stroke:none;" d="M 0.578125 -13.203125 C 3.484375 -10.921875 3.984375 -8.625 3.984375 -4.875 C 3.984375 -1 3.421875 0.875 0.578125 3.21875 L 0.765625 3.546875 C 3.9375 1.59375 5.703125 -1.234375 5.703125 -4.9375 C 5.703125 -8.34375 3.875 -11.6875 0.8125 -13.515625 Z M 0.578125 -13.203125 "/>
|
|
19
|
+
</symbol>
|
|
20
|
+
<symbol overflow="visible" id="glyph0-5">
|
|
21
|
+
<path style="stroke:none;" d="M 12.734375 -2.40625 L 12.734375 -3.71875 L 0.953125 -3.71875 L 0.953125 -2.40625 Z M 12.734375 -6.40625 L 12.734375 -7.71875 L 0.953125 -7.71875 L 0.953125 -6.40625 Z M 12.734375 -6.40625 "/>
|
|
22
|
+
</symbol>
|
|
23
|
+
<symbol overflow="visible" id="glyph0-6">
|
|
24
|
+
<path style="stroke:none;" d="M 5.59375 0.203125 C 4.9375 2.859375 4.421875 4.625 3.125 4.625 C 2.9375 4.625 2.8125 4.546875 2.8125 4.375 C 2.859375 4.140625 3.28125 3.859375 3.28125 3.375 C 3.28125 2.9375 2.90625 2.78125 2.515625 2.78125 C 1.734375 2.78125 1.125 3.4375 1.125 4.296875 C 1.125 4.875 1.546875 5.375 2.5625 5.375 C 5.34375 5.375 6.875 2.875 7.78125 -0.734375 L 16.15625 -34.8125 C 16.796875 -37.421875 17.375 -39.234375 18.6875 -39.234375 C 18.859375 -39.234375 18.984375 -39.15625 18.984375 -39.015625 C 18.9375 -38.734375 18.515625 -38.546875 18.515625 -38 C 18.515625 -37.5625 18.90625 -37.40625 19.28125 -37.40625 C 20.0625 -37.40625 20.703125 -38.0625 20.703125 -38.90625 C 20.703125 -39.5 20.28125 -40 19.234375 -40 C 16.40625 -40 14.84375 -37.296875 13.875 -33.40625 Z M 5.59375 0.203125 "/>
|
|
25
|
+
</symbol>
|
|
26
|
+
<symbol overflow="visible" id="glyph0-7">
|
|
27
|
+
<path style="stroke:none;" d="M 4.953125 -8.734375 L 4.78125 -7.984375 L 6.3125 -7.984375 L 4.578125 -1.140625 C 4.28125 0 3.6875 3.15625 2.375 3.15625 C 2.203125 3.15625 2.078125 3.09375 2.078125 2.984375 C 2.078125 2.734375 2.40625 2.71875 2.40625 2.34375 C 2.40625 2.046875 2.203125 1.6875 1.65625 1.6875 C 1.078125 1.6875 0.796875 2.1875 0.796875 2.65625 C 0.796875 3.265625 1.28125 3.734375 2.234375 3.734375 C 4 3.734375 5.078125 1.84375 5.734375 0.1875 C 6.046875 -0.5625 6.203125 -1.3125 6.34375 -1.859375 L 7.921875 -7.984375 L 9.4375 -7.984375 L 9.6875 -8.734375 L 8.078125 -8.734375 L 8.453125 -10.140625 C 8.875 -11.703125 9.65625 -12.78125 10.65625 -12.78125 C 10.90625 -12.78125 10.953125 -12.71875 10.953125 -12.625 C 10.953125 -12.453125 10.78125 -12.15625 10.78125 -11.875 C 10.78125 -11.59375 10.921875 -11.375 11.484375 -11.375 C 11.875 -11.375 12.296875 -11.625 12.296875 -12.1875 C 12.296875 -12.875 11.71875 -13.359375 10.71875 -13.359375 C 9.203125 -13.359375 8.34375 -12.5 7.71875 -11.5625 C 6.859375 -10.28125 6.953125 -8.734375 5.703125 -8.734375 Z M 4.953125 -8.734375 "/>
|
|
28
|
+
</symbol>
|
|
29
|
+
<symbol overflow="visible" id="glyph0-8">
|
|
30
|
+
<path style="stroke:none;" d="M 7.265625 -6.796875 C 7.265625 -6.1875 7.15625 -5.40625 6.9375 -4.703125 C 6.375 -2.859375 5.0625 -0.984375 3.65625 -0.984375 C 3.09375 -0.984375 2.546875 -1.3125 2.546875 -2.296875 C 2.546875 -4.21875 4.15625 -8.21875 6.140625 -8.21875 C 6.953125 -8.21875 7.265625 -7.734375 7.265625 -6.796875 Z M 10.546875 -13.359375 L 7.421875 -12.875 L 7.5 -12.578125 C 7.640625 -12.59375 7.859375 -12.640625 8.046875 -12.640625 C 8.5625 -12.640625 8.703125 -12.5 8.703125 -12.234375 C 8.703125 -12.15625 8.6875 -12.078125 8.65625 -12 L 7.59375 -7.8125 L 7.5625 -7.8125 C 7.546875 -8.296875 7.078125 -8.8125 5.9375 -8.8125 C 2.859375 -8.8125 0.796875 -4.359375 0.796875 -2.296875 C 0.796875 -1.234375 1.09375 0.234375 2.5625 0.234375 C 3.296875 0.234375 4.5 0 5.984375 -1.859375 L 6.078125 -1.859375 C 5.921875 -1.265625 5.875 -0.984375 5.875 -0.578125 C 5.875 -0.21875 6.046875 0.234375 6.6875 0.234375 C 7.625 0.234375 8.6875 -0.953125 9.28125 -1.859375 L 9.0625 -2.09375 C 8.78125 -1.6875 8.21875 -0.984375 7.8125 -0.984375 C 7.625 -0.984375 7.515625 -1.046875 7.515625 -1.15625 C 7.515625 -1.21875 7.546875 -1.34375 7.5625 -1.40625 Z M 10.546875 -13.359375 "/>
|
|
31
|
+
</symbol>
|
|
32
|
+
<symbol overflow="visible" id="glyph0-9">
|
|
33
|
+
<path style="stroke:none;" d="M 5.140625 0 L 5.140625 -0.296875 C 3.859375 -0.375 3.640625 -0.640625 3.640625 -1.734375 L 3.640625 -13.578125 L 3.546875 -13.65625 C 2.5 -13.3125 1.765625 -13.125 0.375 -12.78125 L 0.375 -12.453125 C 0.703125 -12.5 0.953125 -12.5 1.125 -12.5 C 1.765625 -12.5 1.953125 -12.1875 1.953125 -11.21875 L 1.953125 -1.84375 C 1.953125 -0.734375 1.6875 -0.40625 0.421875 -0.296875 L 0.421875 0 Z M 5.140625 0 "/>
|
|
34
|
+
</symbol>
|
|
35
|
+
<symbol overflow="visible" id="glyph0-10">
|
|
36
|
+
<path style="stroke:none;" d="M 7.59375 -4.078125 C 7.59375 -1.765625 6.71875 -0.359375 5.234375 -0.359375 C 4.515625 -0.359375 3.875 -0.71875 3.4375 -1.359375 C 2.703125 -2.4375 2.375 -3.875 2.375 -5.453125 C 2.375 -7.453125 3.3125 -8.640625 4.703125 -8.640625 C 5.5625 -8.640625 6.125 -8.234375 6.59375 -7.640625 C 7.234375 -6.8125 7.59375 -5.4375 7.59375 -4.078125 Z M 9.40625 -4.625 C 9.40625 -7.375 7.515625 -9.203125 5.078125 -9.203125 C 2.375 -9.203125 0.578125 -7.34375 0.578125 -4.5625 C 0.578125 -1.78125 2.484375 0.203125 4.90625 0.203125 C 7.59375 0.203125 9.40625 -1.84375 9.40625 -4.625 Z M 9.40625 -4.625 "/>
|
|
37
|
+
</symbol>
|
|
38
|
+
<symbol overflow="visible" id="glyph0-11">
|
|
39
|
+
<path style="stroke:none;" d="M 8.65625 1.28125 C 8.65625 2.4375 7.140625 3.21875 4.859375 3.21875 C 3.09375 3.21875 1.953125 2.640625 1.953125 1.765625 C 1.953125 1.296875 2.140625 1 2.9375 0.046875 C 3.625 0.1875 5.203125 0.296875 6.1875 0.296875 C 8 0.296875 8.65625 0.546875 8.65625 1.28125 Z M 3.046875 -6.765625 C 3.046875 -7.9375 3.59375 -8.640625 4.515625 -8.640625 C 5.140625 -8.640625 5.65625 -8.296875 5.984375 -7.703125 C 6.359375 -7 6.578125 -6.09375 6.578125 -5.28125 C 6.578125 -4.1875 6 -3.484375 5.09375 -3.484375 C 3.859375 -3.484375 3.046875 -4.78125 3.046875 -6.703125 Z M 9.40625 -7.765625 L 9.40625 -8.546875 L 7.859375 -8.546875 C 7.453125 -8.546875 7.15625 -8.59375 6.765625 -8.734375 L 6.3125 -8.90625 C 5.78125 -9.09375 5.234375 -9.203125 4.71875 -9.203125 C 2.859375 -9.203125 1.375 -7.765625 1.375 -5.9375 C 1.375 -4.6875 1.90625 -3.921875 3.234375 -3.265625 C 2.953125 -2.984375 2.6875 -2.71875 2.375 -2.453125 C 1.71875 -1.875 1.453125 -1.484375 1.453125 -1.078125 C 1.453125 -0.640625 1.6875 -0.421875 2.515625 -0.015625 C 1.078125 1.015625 0.5625 1.6875 0.5625 2.421875 C 0.5625 3.484375 2.09375 4.359375 4.015625 4.359375 C 5.453125 4.359375 6.984375 3.875 8.015625 3.078125 C 8.84375 2.4375 9.21875 1.78125 9.21875 0.984375 C 9.21875 -0.265625 8.28125 -1.09375 6.796875 -1.15625 L 4.21875 -1.28125 C 3.140625 -1.34375 2.65625 -1.5 2.65625 -1.8125 C 2.65625 -2.21875 3.3125 -2.921875 3.859375 -3.078125 L 4.234375 -3.046875 C 4.59375 -3 4.875 -2.984375 5 -2.984375 C 5.703125 -2.984375 6.4375 -3.28125 7.078125 -3.765625 C 7.796875 -4.296875 8.125 -5.046875 8.125 -6.078125 C 8.125 -6.65625 8.015625 -7.125 7.734375 -7.765625 Z M 9.40625 -7.765625 "/>
|
|
40
|
+
</symbol>
|
|
41
|
+
<symbol overflow="visible" id="glyph0-12">
|
|
42
|
+
<path style="stroke:none;" d="M 24.046875 -9.296875 L 23.265625 -9.296875 C 22.546875 -6.015625 21.15625 -4.640625 18.375 -4.640625 L 7.015625 -4.640625 L 16.421875 -16.90625 L 8.203125 -28.1875 L 15.734375 -28.1875 C 16.4375 -28.1875 17.296875 -28.15625 17.859375 -28.078125 C 19.203125 -27.921875 20.546875 -26.875 21.09375 -24.265625 C 21.1875 -23.859375 21.3125 -23.34375 21.3125 -22.953125 L 22.046875 -22.953125 L 22.046875 -29.984375 L 2.515625 -29.984375 L 12.9375 -15.6875 L 1.796875 -0.984375 L 22.5625 -0.984375 Z M 24.046875 -9.296875 "/>
|
|
43
|
+
</symbol>
|
|
44
|
+
<symbol overflow="visible" id="glyph0-13">
|
|
45
|
+
<path style="stroke:none;" d="M 18.953125 5.1875 L 18.953125 4.625 L 18.59375 4.625 C 17.28125 4.625 16.625 3.78125 16.625 2.078125 L 16.625 -12.296875 C 16.625 -14 17.1875 -14.703125 18.953125 -14.703125 L 18.953125 -15.265625 L 1.046875 -15.265625 L 1.046875 -14.703125 L 1.375 -14.703125 C 2.625 -14.703125 3.40625 -14.203125 3.40625 -12.21875 L 3.40625 2.4375 C 3.40625 3.90625 2.765625 4.625 1.421875 4.625 L 1.046875 4.625 L 1.046875 5.1875 L 8.40625 5.1875 L 8.40625 4.625 L 7.78125 4.625 C 6.453125 4.625 6.015625 3.796875 6.015625 1.9375 L 6.015625 -13.9375 L 14 -13.9375 L 14 1.9375 C 14 3.484375 13.640625 4.625 12.234375 4.625 L 11.59375 4.625 L 11.59375 5.1875 Z M 18.953125 5.1875 "/>
|
|
46
|
+
</symbol>
|
|
47
|
+
<symbol overflow="visible" id="glyph0-14">
|
|
48
|
+
<path style="stroke:none;" d="M 4.546875 -8.8125 L 1.375 -8.375 L 1.4375 -8.0625 C 1.578125 -8.09375 1.8125 -8.140625 2 -8.140625 C 2.453125 -8.140625 2.625 -8.046875 2.625 -7.703125 C 2.625 -7.640625 2.59375 -7.5 2.578125 -7.453125 C 1 -1.3125 1 -0.9375 1 -0.703125 C 1 -0.15625 1.234375 0.21875 1.796875 0.21875 C 2.78125 0.21875 3.78125 -0.984375 4.484375 -1.875 L 4.21875 -2.078125 C 3.5 -1.296875 3.375 -1.0625 2.9375 -1.0625 C 2.796875 -1.0625 2.6875 -1.125 2.6875 -1.265625 C 2.6875 -1.34375 2.6875 -1.421875 2.703125 -1.546875 Z M 5.140625 -11.3125 C 5.140625 -11.8125 4.703125 -12.3125 4.1875 -12.3125 C 3.59375 -12.3125 3.21875 -11.8125 3.21875 -11.3125 C 3.21875 -10.796875 3.59375 -10.40625 4.1875 -10.40625 C 4.703125 -10.40625 5.140625 -10.796875 5.140625 -11.3125 Z M 5.140625 -11.3125 "/>
|
|
49
|
+
</symbol>
|
|
50
|
+
<symbol overflow="visible" id="glyph0-15">
|
|
51
|
+
<path style="stroke:none;" d="M 11.9375 -0.4375 L 7.34375 -5.046875 L 11.9375 -9.6875 L 11.015625 -10.578125 L 6.40625 -5.984375 L 1.796875 -10.578125 L 0.859375 -9.65625 L 5.453125 -5.046875 L 0.859375 -0.421875 L 1.78125 0.5 L 6.40625 -4.09375 L 11.015625 0.5 Z M 11.9375 -0.4375 "/>
|
|
52
|
+
</symbol>
|
|
53
|
+
<symbol overflow="visible" id="glyph0-16">
|
|
54
|
+
<path style="stroke:none;" d="M 12.71875 -4.40625 L 12.71875 -5.71875 L 7.5 -5.71875 L 7.5 -10.9375 L 6.1875 -10.9375 L 6.1875 -5.71875 L 0.953125 -5.71875 L 0.953125 -4.40625 L 6.1875 -4.40625 L 6.1875 0.8125 L 7.5 0.8125 L 7.5 -4.40625 Z M 12.71875 -4.40625 "/>
|
|
55
|
+
</symbol>
|
|
56
|
+
<symbol overflow="visible" id="glyph1-0">
|
|
57
|
+
<path style="stroke:none;" d="M 2.765625 -1 L 0.984375 -1 L 0.984375 -9.265625 L 2.765625 -9.265625 Z M 3.75 0 L 3.75 -10.265625 L 0 -10.265625 L 0 0 Z M 3.75 0 "/>
|
|
58
|
+
</symbol>
|
|
59
|
+
<symbol overflow="visible" id="glyph1-1">
|
|
60
|
+
<path style="stroke:none;" d="M 6.5 -2.71875 C 6.09375 -2.171875 5.375 -1.265625 4.03125 -1.265625 C 2.71875 -1.265625 1.953125 -2.5 1.953125 -3.78125 C 1.953125 -4.734375 2.609375 -5.5625 3.453125 -5.5625 C 4.46875 -5.5625 5.421875 -4.546875 6.5 -2.765625 Z M 7.484375 -3.671875 C 7.921875 -4.3125 8.484375 -5.1875 9.828125 -5.1875 C 11.140625 -5.1875 11.90625 -4.03125 11.90625 -2.671875 C 11.90625 -1.703125 11.25 -0.890625 10.40625 -0.890625 C 9.390625 -0.890625 8.5625 -1.84375 7.484375 -3.625 Z M 12.8125 -3.328125 C 12.8125 -5.34375 11.4375 -6.453125 10.078125 -6.453125 C 8.5625 -6.453125 7.875 -5.484375 7.1875 -4.25 C 5.765625 -6.171875 5.015625 -6.453125 3.921875 -6.453125 C 3.046875 -6.453125 1.046875 -5.765625 1.046875 -3 C 1.046875 -0.9375 2.40625 0 3.6875 0 C 5.125 0 6.15625 -0.8125 6.828125 -2.171875 C 7.75 -0.796875 8.609375 0 9.84375 0 C 11.734375 0 12.8125 -1.875 12.8125 -3.328125 Z M 12.8125 -3.328125 "/>
|
|
61
|
+
</symbol>
|
|
62
|
+
<symbol overflow="visible" id="glyph1-2">
|
|
63
|
+
<path style="stroke:none;" d="M 3.40625 -6.609375 L 1.03125 -6.28125 L 1.078125 -6.046875 C 1.1875 -6.078125 1.359375 -6.109375 1.5 -6.109375 C 1.84375 -6.109375 1.96875 -6.03125 1.96875 -5.78125 C 1.96875 -5.734375 1.953125 -5.625 1.9375 -5.59375 C 0.75 -0.984375 0.75 -0.703125 0.75 -0.53125 C 0.75 -0.125 0.9375 0.171875 1.34375 0.171875 C 2.078125 0.171875 2.828125 -0.734375 3.359375 -1.40625 L 3.171875 -1.5625 C 2.625 -0.96875 2.53125 -0.796875 2.203125 -0.796875 C 2.09375 -0.796875 2.015625 -0.84375 2.015625 -0.9375 C 2.015625 -1 2.015625 -1.0625 2.03125 -1.15625 Z M 3.859375 -8.484375 C 3.859375 -8.859375 3.53125 -9.234375 3.140625 -9.234375 C 2.703125 -9.234375 2.421875 -8.859375 2.421875 -8.484375 C 2.421875 -8.09375 2.703125 -7.796875 3.140625 -7.796875 C 3.53125 -7.796875 3.859375 -8.09375 3.859375 -8.484375 Z M 3.859375 -8.484375 "/>
|
|
64
|
+
</symbol>
|
|
65
|
+
<symbol overflow="visible" id="glyph1-3">
|
|
66
|
+
<path style="stroke:none;" d="M 9.5625 -1.796875 L 9.5625 -2.796875 L 0.71875 -2.796875 L 0.71875 -1.796875 Z M 9.5625 -4.796875 L 9.5625 -5.796875 L 0.71875 -5.796875 L 0.71875 -4.796875 Z M 9.5625 -4.796875 "/>
|
|
67
|
+
</symbol>
|
|
68
|
+
<symbol overflow="visible" id="glyph1-4">
|
|
69
|
+
<path style="stroke:none;" d="M 5.703125 -4.875 C 5.703125 -1.90625 5.03125 -0.1875 3.75 -0.1875 C 2.453125 -0.1875 1.796875 -1.890625 1.796875 -4.9375 C 1.796875 -7.984375 2.46875 -9.75 3.71875 -9.75 C 5.046875 -9.75 5.703125 -8 5.703125 -4.875 Z M 7.140625 -4.953125 C 7.140625 -8.03125 5.78125 -10.140625 3.8125 -10.140625 C 1.390625 -10.140625 0.359375 -7.6875 0.359375 -5.046875 C 0.359375 -2.578125 1.1875 0.203125 3.75 0.203125 C 6.1875 0.203125 7.140625 -2.375 7.140625 -4.953125 Z M 7.140625 -4.953125 "/>
|
|
70
|
+
</symbol>
|
|
71
|
+
</g>
|
|
72
|
+
<image id="image2335" width="19" height="18" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABmJLR0QA/wD/AP+gvaeTAAADI0lEQVQ4jaWUTWhcVRTHf/e++97MSyZpMs3MOKb1i0aqLSloqxZhxI+FirgTiRu1CxdV0IQIgoKDLhTsh6KCSqjUXciiKjYV6UJKkCqIREZoaYml6cR8TJKZTDLvzZv37nURMmmaEhee5bmH3z3//7n3CLYIYxALn9KmQtQSeDsH8LaqFzdLTh/lceXah5yuxCOyxclgSWXCyA+X/Ilwfvm0jvQXmX4mtoRNf0TabnO+dndnn47dlkRYctNF2gvwL83WvYm5D7oW9fsij94Em/mYTKwz8XPiobt2y7i9lRoAGrNLVH+dOLm9FB1aA0pY9cZuiZ1YA1WqhtferTH8Q7DekYa3j3gcHfIBsNPtJO6748VSJ6+s1UiA0nFy7t2Zp9Y6Ov9HyE9jDYaG603YlaJm5EzAiZE6Nc8A4HR34NzSkZ/K0wKgAKRjveDsSDYl379Xse8ei8cOrsvdmZXkDii6khI3vm517PbtmeCf8hPA9wrA6mh9QNhWs6ArKRj5LLHBI1vB0Ietm7xTyQRCygdBr8JkTKWiJR/vskYoH6F8ZNxG2BZCCpACtMGEGh2EmLrGmE6gRuueToQlMk2ZYMycZ3PsbC99Lx1m3713gjeLrlcg9DG6gVBxhN2KiCdZiVr48ew5rvx+hDf3RMDqNBWArjUmM0mxY6X6G8/3/UI6nWL//gP09PSQSqWwbZtqdYZisUihUGB8fJwgCPjqPZdoxaAb0bUmrFGpjUXl+sF3Xrb582LEzOwco6OjAFhCYEuJH0UbvHo2p8jtFQTFMhjOrU8z1Cf9y3MDqWza+mZQMfhlyPSU4dXeXh7OZnGVxVStxvDFC3x3dZrnchZv9Un0QkhwbeFCocIYXPcDSp9Yn7up7sPSjhFpmL+0gpoM0H47aAXKx0os4+/aRvbWVasby4s6LJeeSfZzZgPs7zzx9qQ65bRlnrRUfNMTuDFCr6zry/ODqQGOr+U2fPS/8jipbTJvu21v2PF2V1rODQhDFHg0vMrVRqP2eqafb68/vekKmjxGd1zQJ5XzqJT2LgSuMWZRh/WCiaLTPpz6r932v+NfVEY3qMHb2eQAAAAASUVORK5CYII="/>
|
|
73
|
+
<image id="image2342" width="19" height="18" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABmJLR0QA/wD/AP+gvaeTAAACkElEQVQ4jaWUS2wNYRiGn/+f2+k5LUdbnQatW+qSbrBwiUiIS1RiYcvGJW4racVSVCwkWGiEWLkk9mxYi7BhQ5BIpIQK0tPTqZ7pOXNmzvy/jTNzqJTwrSbvfPN87/fOzC+YobRGjF+hxaxhTkKla4DKTP3id+LYEFulbR0w25o3y6ztYkiTWhzEk8FwWPQfWLG6nu/n3YywrxfpsGc7NzM9nbucha0IQ04bpCohwdvRauVd4Xy7p86JQdQ0mH8Ztzan+WHz+iUrZMaaaRsAotES/tPhW62F+FAdKAE0iDDr3PhbEIDV0UJu9aL9Y3M4UtckQOEym5p63L5G0PsRxVRZ/wT4Mqooeqlmz8/jdOYHPw+STWCGaeyzu1uTlV++iek7WOLY6XLyoPdN03fAZ88xn6iWDrC7210rz7YUls+tFaaRNJSmNEpByU9dhJEmCDV+WRPHqW615RDIdQAmgHTMuY3rbFhjcvVslmWL0wFuu+TWhRzZJkHGST8CYRkIS7gJDLSmIR4BbN/4I78Gff0qc5r241olMFWORnRNL+AfSgUhKoxHEljklR+riWCDsK26T04NVeldKlm93GBWDr6Oa569VmQdOLwnfevRl0lMg0cJTCp1uzJcGMh0zk1C2tELZ++EFEupi95uwaWjJsqLEi38VHzzfJwn9XgAKAwZ17Id849L00kagxBefNB4U9DVJli5AGTDDxj5ngrGx3Z3nORB4gzA9+IBKT4vdlrcndLMAOAAa7vqHRqqafa1yoSqThVP1kE/OQN4PYjt5uUZw2npt5pmNUnD/iVuTRxViMoTH6OocsLt517j3d8eQYUrzKPGXmnaW5BWjxRktNZeXKu+Io7vB3D3T2fbf9d3iPz3jhxPljsAAAAASUVORK5CYII="/>
|
|
74
|
+
<image id="image2349" width="19" height="18" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAABmJLR0QA/wD/AP+gvaeTAAADIElEQVQ4jaWUTWhcVRTHf/e+j5lJMtNkkpdxTLVQHO2ioQEJImJEdOEXiIsizaJqKIIGrImpCCIOCgpKrR8I6qJScVEQqQiN2VWk4kKLxI5lIBqlzdQkM8nkY2bemzfv3etimtHYkCw8y3MOv3vO/5x7BNuY1ojlD4ibAeYauDeN426XL7Zyzh/nPjNmjdg9HffINjuFIU0dhF6w5s0GS5WzKlQfpcaY3RY2/za9Vtz+NLYv/VDk5iTCkNc9pFwfb2ax7s4W3+wpq9dFFnUdbOFdUpFkx7cdd+zdJ6PWdt0A0FhcZ/3H3091L4YjG0AJTW2stsjJDZDrab6/EFBa1psAl2ZCfsmHAFi9cToG9jxR6uLpjbgEKJ1gKHZr6kEZtQhDOPxCladerPLwkXUWSs0uvpzyeeyZCgdHK5z8og6A3ddF5IbO7NUsbS2YtI1he3dSANRcTSQiOP1+O7fvN/mr2Kxubl4xcSTKq0djLJT+qdje052yOrm/pdnK54mfE3dnBnYUagvT9YDy1MU3ep5TL5sAMmI64ZpHLe8ibR9hh8iohbAMhBQgBSiNDhTKD1BegA4TCOHS3u8gDJECMK/xddG1OH5ugOEnRzlwWx/aK6K9FbTyr9UgkFY7VrSbqmpn6twP/PnTWxzr10BzmiaAqjWupJJid7VygceHD+M4DoODg2QyGRzHwTRNKpUKhUKBXC7H9PQ0vu/zyWsxwqpGNcK5FqyxWjsfrtTvfGXE5mI+ZKFYZHJyEgBDCCwp8cJwk1aPDpkM7Zf4hWXQfNeCyUCd8n4rjjtpx/jsmMnExwHzBc3ogX7uSt9IzDS4Wq1xOn+Jr+cWOTgkeemQRJUb+HPL+dwq51vTBCi9Z3wY6+17VpoRQgVLM1WMyx7ajaOVgTA9jISLl+kknW5K3aiUVbBSeiQ5xjebYH9kiSa6zDORROoBaUZ3XInAXVH1ytKEM86JDd+mj/5rFtvZJbNWNP68FUvEpGH/d6sIGy6N2urlRqN2NDXGV/+ObnmCrrxDX1RwSJr2vVJatyCIaa3LKqjndBie9eDMTrftf9vfIsNHdhVpHVMAAAAASUVORK5CYII="/>
|
|
75
|
+
<image id="image2358" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAEyUlEQVRIid2VW2xUVRSGv73POXOmTDu9DbaUQqGgjQQsBGwVDSAXlTsRiZooQUOMhCAS0YhRUw0Jkhi5SESNJkZNiEajyEUFFASDWJCAQLSEEGqnQJlOh+llbmfO3j4MLS3X+uCL/+Nea/9/1r/W2hv+LxA3CmqNaFpHlamZiaBK2tZgLaUHpdMq6fyN1ofQbA20sk/UoAAmP92SGyE/9vsHwrmpSOhtxgtLrPaU5Fd5+hcIq9CHsIxLVzQ6rUhHOkidvaiTDZHjOpl+OfA826YuDK8FdeD7D/tuuq6IrkGG/bxu9ctd4ascYEiffVM7VMIhdiyo608VfLrizKF5ytV1Vf3zRtfUCAUgr7zQ7OdN+9aiV3LuHtIrAQDptci+c7A47H9qvq+PN8v2WiNrG1ru74p3T25aw0P2gILlvhGlIASRqGbzrhR7a9O4qidxyoEd+xy273aIxTWuMthbPwvb9tAny4sWLOnMNbts+gJPOGSs9lUOEAgIRzQPL26nsSnD/ugMD28sywLAVbDo1Q72HUwDMPw2g5UrRtLSUYbfLzBNA9MyJ85ZEMn75uP8i12VhINM9Q4KDBV2RnfLjykamxSzJ1sMGSj5fFuKSFQDcLzOZd/BNKOHG4yvNjl+0mXbzz6kvGyMFMKOCZXTsxLJdE9JflfSA+MsAgWSaRMsmiOKA0dc8vyZOakol6xansWD4y1MU7B9T4qxY07y16Z64smhKKXI4fSpUWWVjTvoNl3N7xgH86fdMUaYV81Cr9HcGuC7w9PxWgnGRt9qLm26UCRqUF2VSI9RpGJJYseCSJ+N4bORfTxIr4WwDIRpgBAIKdBKgcrsikqlUQkH1ZHE23GGOd7fyB4zmLb9sewWh2ygtZtd0lN/VhPsmMtd9zyBbjuN29aAE2lCJ6Nopw20S+cyIi2ElYP0FiJ9xRiFZeArY/tHLzJtRAwhBMLOONUlguNeLCq1ix556Rf6bQ4xZ/Zsxk94nPLy8h4NvRKpVIoTJ06w89udbNmykZLCMHMX+Iim3XT0HEm69yS0VmzOu2/YrI1fw/rPkgAIIQgEAlRUVFBaWkp+fj6WZRGPxwmHw9TX11NXV0d7e3uX6LuvZTGp2iCy44/jgSVqRI9KpNa7nXPRWQtnFLC3VnLkpEJrTSgUIhQK9arx0+41mVgpcM61gqN+6jy/bJfBl4mG8Krs7FzvhiUWi9ekOHo6sxdZpsGU0hJGBQrxeywuxBPsP3+B/ecv4OpMzoRKycr5BrrdJVHfrLXik07qHg9k8xrW2sXFS62cXFIOvPeD5khtjBeGFtO/+Hak7QchQbm4yYscOXOUNcEOZo7zsGCSwJDgxjuINwa/CjzHPEBfJRJej19r+as3t2SYNDOPoxtziZ9pI3k+gdsO2hUIU2P6BXZxFnZZNqY3MxjadUhEG4NKuNV9l3D2mpUAtKxjoNJyhyfnlgrT4+tVLwBcJ06yrakR5U4JLOPP7rFrflqtGyhMplhveH2Pebx5Qlre65KrdBInHiWdatsqJYsKnyV4Zc4Nv9/za6k2Nc9gmNMNKysgpSkQAjQo5aDSiYibdnYJycbAUvaISz34VyKd0O9jNccpVzBIKjzSwHFSBOMBTg1+kkRvOP5z/AP/IfR/pRdtLgAAAABJRU5ErkJggg=="/>
|
|
76
|
+
<image id="image2367" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAC8klEQVRIic2VPYhUSRDH/9X9et6bN9/jLHKLi6jBCYuRIgh+YOSBiQqKXiCIshqIySWCCoOIIMJGCn6hhuLAcckGnnfsBYaC+LFqciCi9+GC687Ozrzp7tdlMCqu81xndAMLOqqq/6/rVdVr4Huz6rXx4JcbD0b6zRN9RRcGTufS/oUTvz7a3U8a9Ro4OjbxkwpyY5nygPj35Ys3zkRrTmxf9XcvuT1Vcu6PJ4sKobo8NDgg8oHE4A+Li0LK69Vx9hYMkgafqVQGlmR8D9kUoZgJUC6V1ntTj48sCOTCrccbw2x2X5jJAgAkAWlFqCwqw0/71eM37y/7Jkh1fNzzFY0WS5U5cZKAlCSUKpWcp+RZfKG380KWuMV7coXSak+p7kQi+EEIP8ztOFp7uOmrIBcv3lVKyGO5fDHR75jBDKTzZbIsq18FiZelt4X5wo9Cym4fA8YBlhmQKVCQ2Xjg2v0NfUO0FYdUOg/uqgCILCOKAR0DxjFSYYFiosN9QU799nAo9oINLfYwqxntd4KRZTQ0Y9YALcNoWSCygBU+rAy27rwyUe4Z0jC0JVYZ1dCMugam24xpzZhuA3U9FxRZRmQBUmGGiDf3AcHaNqUwozui9fa7oxkzGpj5AGI0TadCkUoDjtcl6SX+FlraDTWdQqwZSnT2gqjTj9gB2gHavv9cjJgB4SkweGnPkFkL1NsM33UggjrbxgCs6xwdM7QD+KPJIKbEpUyEOKZnzUjDcABBcyGOOyPMn4ydswYgPEvSS+wJM343rQYcv781PkyYdd0AADCtBsB0u2cIimJMN+tPXGwT3Z+aswa6OXPv1T+Tf/YMqe0a1kw00nz9X5tdPC+AXYzm1P8tKXjkr+rmxFt9duNr+4fvOBvtbky+rNt2M0keNppFY/LFVGzNjhv7V939nNYXn9+frz5YbixVpae2y1SQJSHAziE2UT22pgY/PFnbu+L5fBo9v/E7z09kZSBXOnJFAl4XTPHppYODSSV22VsZYGnPJXq4PgAAAABJRU5ErkJggg=="/>
|
|
77
|
+
<image id="image2374" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAD7UlEQVRIib2VW2hcRRjH/zPnnNk92cvZ7GZDEqNteleoqC1ofZBqxUs0FbGClKJIkDx4x2rpi+QhglQoQkQsCgmWgEYwl5qUWqGE0tRiLEKtsblgY6OsCexmk3POXubMjA9p6iYmu4uKB+bhm/l//9/MN+d8B/gfHlKO6Odv3r9dp8zQDO09wzDCQgiZdTMfUIpzm/e8MlkqXy8lGBk5ZphZdSEcNP2hgAlNo/CEwHTC+yTHc/sAlITQUoKdO1u4EHzICjBoEIDkgPDg5XPHtj3wWn+p/LIgAODlMx/bto1kag5KcNiOrSBzXeXkAmWUCwB+090+I0mGdV2/V6MKtpO9uinV8N1/ChkaapX9lx7UrKAJSgncLI8kZtJ3ASgLVN7bNfD2E+5CrsMKmZUEBHMLGWkwcrTC8LVvbGr99V9BlAIZHzj8RiwSOhINB0ihOs89JNOuPW87z25terenmE/Rix87cehwdWXwSDTECBSH4HmMTyQAycE0hZpKMxiu8B8f++qtW/8RZLzv4IG4xdqsCkogOSA5HNtB/8lRKLEYQ3HELRbQlfpQqdY1vbTVJkd7X98erjB64xGTQUlASZwfmUZXz09IzWcxOj6LhvoQgqYGShQMDeunvk877Z9fGC7rJJe7n2YmFR3VFgssnSCZtNH/9SQev/8W3FwbRMxiOHF6AkvrQT9FNMTarnzx4p6yIIzGmqvCvh0UApAeID3MpV3oBkFdtR+EKOy+pwaRkH5jHdJDNKyzgEmPX+x+OV4UcubMbt3PyJsBH27sEpKjLm5AKYXe01chhEB9nGHfQ/XLNER6qI4YtSGafacopO6P9XcGfWiAWrzUpeE3JF7avwFSCExMLeCjz64glXaxUmdQibBJ9l/ubo6uCVGKr2OaWlaGpVET1fHYfXGsq/NDKYnOnl8A8XedX0eACmfbmhBNePPCyy8rAyTHqXMJDAz9vmjCCB7ZFcW1hIPVtNLjkHlkCn1X9C79W8fNpEN+YhXOxiMUnw7OQtcUbJfj1PlZ1MUZNCIAWVAJKCw47uhtWevHZZsvDNq/vJRradzkMB2P+nRg6RupjelgBsHQxRRmUhy1VToOPByHyf7SKCkxk3IzrsufijV3Ta0JAYDYHc+MbPRfixpU3l0Iaqg1cFPcgJuTaNlbtQzgCYFE0pmdd/mTW5/rO7vSc9UGqRTIeGfjQSuot8VCjGmUXC8HoBRwPYQnFOZdLlI271N59ermF05Or+ZXtAtPdjRuB5GHKnykycdoWKMESgHcUzLL5WQmLwcBrXPL84M/FPMp638yfHSXaQXDG6jmhSFlngaCU1vGdiRJa6ssnQ38CYX/8OJabzjNAAAAAElFTkSuQmCC"/>
|
|
78
|
+
<image id="image2381" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAFPElEQVRIib2WWYxVRRrHf+fUOeeee/t236VXGqSbRUGUBhkNODAOQTCKibg9GHAmEhPFJTrTZEhmVGijCRPGYY274AOoLMYRJv2gidFoosEYVGhFI0pL097ebm/cvss5p6p8aLjdTeMSH/zeqvLV/3e+f32nquB3COOXEjr+Q5WwuBlYdEZV1u9o2xU6kb/Gr3M++uTR+hvfNUPynaoHyPwmSPdOSjnDBlEWXuPWVZTYVaU89dbjtHTdgmUJcrk89198Jw12c1pm8jsLNpsmPUj6QlrmBQFbmWHkrcPRefVr40suLXGnV9Ganc2R08uxLAGA49h0xucTv3ZWefSKunVh4RxLb+P6XwXp38JUw3Xejf3pkkvfbCnljbd9AJo/XkLIsQDQWjM42MexT99HKnBqk5RdNX2CiJb8v3szK38WcrIJN7DMA2ULpk0wy8K8tK/AM3sKDOU0r+1+lpOfbSSbzVLjfsWiS95j7/++YvOuPCiNYQoi0yZbIhLemf4vC34SUhpjbWRW7TwrEcEwYMFci/ZOxd5DHuneDEuuOMITy25l/Z+fY86sMgB2ve7xybEALQEJbrza1ab5gm7CGgfp20LcjLqN7tSqInTZIhsp4ek9BeZdJlh/bzsXOS1YlfOKOVLBc/t9CDTa1xjawgqXzu4qZcU4SKC5w51amcQcabj5cy0SMQOlYeO6CEJAkM5g1V5NJjPStR9+Lkn3KrSv0VJjuWUYBqvGQQxh3OLUxsdsWMiBxfMt1t7tMmWSCUqjvCQiNo2urq5inlZw6jsf7WnQYAoH07L+qPcjgGHfdBNmXzS0wIw4nB+Nd7tUlg9/S9Cfxaq+BgzBiRMnACixLR6f7jIt2wF+tLhOCDuZ6QiSQLcJ0BOj2ipxo+cD+gc15Qmz6KCXGsCuvwGlFEePHsUA1l85h6sqEmil0YEeWWwI29eEi3YFkgSONabTPvtSsuKeDF1pVZzzuz2cuutoa2ujtbWVhopyFtdOQHmDiJAAPVpBS6nwixBh4qFVMWV/s8df1w6R6h4ByIEcIrEII5SgubkZrTVLJ9YM2zj0A3YiNMYFJf2hCkFvEaIkKZX1pJTQtC3HY1tyVJaPPdYKp9KEZq7C930O7D8AwMRoBJlLI2KDmM6IEVordOB/YTxEoQip+QdDciB//MhRj1cPeSz8g8WqFcNN4PugpcLvEdhTb+Lgmwc53X56eI+kIpc6TLQhBiNFI70sGv3WuXERr4Pg4MxYhn+vC7N9Q4S2juEf9pvUDLz2fpzpf2Eo57N9x/ai2KffH0MkU4QnRcZUHeQHAyXYMw5iGrwoWzuzty6ziUYMBqw11M/5Fzs/2EHL51NwZ9/Hpk2bSKVSRbHv7DzJ62rQwagq/CzSy+2tfohvx0GSD3NK9mWfyn3TCUDGWMrEGasJhct5vn0vr7/dwr59+4piCxsEW/7uYgoDzvaM1gov09MnBI+MrswaPfi+hCfrvvzhSjNsL896pdghMAyDXJBk8wvHcWzN3JmClddbLG0w0WcCVO/ZptSKwmBHoAN/dXkjp0brjrsZ9fNEenLGK3872XqzVTK5OF/uvMeG2xuJOqDzEp2RqAGJ7AvQvk9hsNML/PyaqkZePl9z3KVl3Eu2ol/flim4h6Qabhk/CLh88nGiYYatOXviqpyPn+kl19/2deDnl14IcMFKzsXyu7pqCDlbLWHOrbM/6vnnrJWXlcRk3BAmuiCRQ4WsyhcOK6l3VyZ4zVhN/qe0fvG1ci6+aMKJl1ItDOKuwdAZTeqiRnK/Zu2PW2E0wZgeB5UAAAAASUVORK5CYII="/>
|
|
79
|
+
<image id="image2388" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAE3ElEQVRIib2WaYhVZRjHf897lnvPOTO3GbtzddQcxMTE1LKIoD60QFSQBJNSCBHRQkGKFlHRQgslbUZF+wbRQpHQIvpBo7ANE5qsIM2tMp3NO+Nc59573rO8fbhzj2OjFX3o+XTO4f/8/8/zf9734cD/EPJPAGOQg2uYmhoWisVJJiUvimoKv4nm+47b6RMw/0mk9zEC2+ZaRK5RjrdQ2TlLKRtEgUlJ05g0qsdxXN8qxrw6bPHm7OWE/1qkvIZLUmU973htXcotkGLhWBOL1bFgSUwajqDrwz+bJL2htIrN/yjS/yQrnJz/hB2UrM+2t9Pza8D0SZqlZx1ExqFTA29/XaT/kMMZMw9z7uwh4sN9OorqN5ZW8sZxRQaf4mrLCV7PFSarT3raSVLholMP4bnpsT0FqqFi/bY2Wr2Ei+YNU68ciJKw1t2xio8niOx/nK6c627z2qYVEMVAxaajNT4u+fgwwOAY3piE2vC+fq3jeVNvYxBANYGO4g43mFRAFDv64J4PE7pfEF77Uo57dFIDL20Wup8X7vsoYdcAiFi4/qSSa7HqqE72v4jvhk6v3z6jtRbB4meFwdoJuF6J2sgvPLAYLj99otR7W4WH1gl+4WTCWi+loMK6Wwy2MlTLv/ae2Jl0yVK0DeBWOdv2glaAOIFZU1po63yb9uIs+n68H9d+55idWApmzlnGlPl3U+7fQanvKpL0MLYSLDeYMrhvZAGwVQEYw0Jl5wBozcO9l7fjeNNQSrFg7nlcOv/YhnUvMiyYey4iCtefwV2Li+TssQLsHAinZTMxUBJlZck6zY0dVyFMveNMpInNjxkvhGku+y7KwsDkTAQ5+iiHSR4RQQTCJsnfijSwOhmPFTANXnvsdRQxiNXQCo2HjN08nXpUIuHdb+DzHXBwFDpa4PxTYOlZgjYeIiAihOQzDiRt8DZFMPxirBgJGpbpw34mUtE+S56DXQdqhGFIoVDgx92H+HZ3C2u/y9N2mktL0BDRjp9xGB2DsCOzy7L4KgmrqQQKCRTa9jP/wjTP7t46lUplzEIhSRKGh4fZ059SjfLNkaCdgCZHElbD2GJLJjJpBb/Fo9WvsRJUYBFZuawTpVxq9cZytW0bEcGyLIwx1EONZeWysWorjwosjETE1drGzuUMHBl8o8HVYd+AEV+hLZ/mNmxU3yCqVquUy2WiKGpkGFB2PsNp5SG+ItzfnxrF6iaz3XwormDdwFNDHzidbVdoyWcbV0SRy7dyzqKYyy5oYXLR4kBfzIebRvlpT2EcDrTk0f1D6MGRl0sr+WKCiAhm1+r263q3ePP2xFPnNu0SJWx8ayZzunzGx3XL2ti+t8id7x3peO/eEtv/KGwpOtNXwj4miADcvHPXIznHnuO4NoFvZ8kjegbQx19jNOnKZuc4NlsGruRL3X1mFEVPQvGmJk6NTxJkY5KmuiU4ck98L8/Da1ezqefCxto1YBLDpp4LePCDR/H8XFZMS+CRGqONkU/H8x7VyYZX2tdefH15Tbk8cqvr2q6IIkkT4tjsD7/f2TP0xw/TUZInSat6cMbvcZwuqtXCaVpFGGPQURwlSfT0hlc73j+6+GPEZTeMFFPC+YmxWyE5IPmhbeufmT3hJ2HJEuOOtB86VSXRNCN2RZL6T+tf7xz4K+5PpdTzM1X1hf0AAAAASUVORK5CYII="/>
|
|
80
|
+
<image id="image2395" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAET0lEQVRIib2WW4hVZRTHf9+39z5n73PmnOOZi+QFx8s0GlYmXiqVnCAjSugle5AkMxAqg96l3irooV6KoCLtKboIBpYFRoKVRZmopGbqGJbXmfHMnMs+c87ea/VwxuNcHJUeWrDg299a3/+/Lh/r2/A/iLmZQ09X10yc6AngPmNNp2OtJyK1WPWMwfwYG9mx79hf5/8TyZIl01MtpcTrfjKxOZ9p8dNBEs91sdYSi1CPIsqVKoVSqVIdrr2Tir2Xd588OXzLJCvnz894pra7PZ9dmUunsdZijcGM8lYFVSUWoVAq018Y2lNMDz9+4MC5yng8ez1ij9q77VOyK1uCAEVRVUQVkZG1jHyroiiZVEBbLvNQSznx1i1lsnpB5/2ppP9Dez5nGtEbrDUYGutrmehIACAiiCqXBwpSHq4v3vdH7+EbZ6JmS0sqMFejHxu5jNKRfZEGoSot6ZS1qi/csFw9PT2u4zgPu67bPCjNUgmxNIDjEXAZZVdVEq6L49hH1oEzeSbnznR5rtMmIlirdM2KaM/HeK40iZqqiufGdLTGdM2KMAZiETzXmXlx3rzpo2HdcR2a7TjWqCqb11VZtaQOQHXYUKkawqpBBKyFlK8EgeInFIA9+xO8/1kC6zjWONFs4Ox1ScRoq8GQCpTld9eBBoCfVPwkkJvQwaasuKfGR194mNCghvyk5TJiHYxhwZyIhBtz7FSCL/dmOXw8iYqAXlMV4eDvPl/tzXKiN0HKj+maFWMAozJ5T8TokKrQ3Rlx+myCnXvyXOp3+Pr7HIeOByOZNfSXIym+/SnLxX6Hz7/J8/cFj+5ZEaKCRYcmJVnRVYriOKZzWsTcGSH3Liuw66jP3O4ii7pLINLUZQuLTOssseuoz+qVA8ycWqVzeoTEwqr5lWhSkqeW961ZOKNIx5Q6qHDwdJKBssNvpwIMY8tlEH49FTBQdjjUmwQV2nM1Fs8e5MmlfWtG4469XRY2rO4nk2wDsTzd08fUXJ0H7yyCxBOa/dJjl9h3LM3apUMgMflUnfWrBpBw7CQZe7uUjzNe/fmUDT00oD1TY8MDlxtGhXAwpBbWSaYT+Bmfzo6Qzo6wac+6FQZtVK16fDJpuRa9ws+1Go/WytUSEjNevYTFGsX1zAQbElOrVAu1YdbctZUxs+u6o/7KdrstOz270ToN86VCwP4jtzF7WpHAj6iELr3ns6xe/A+tmcYTIpEweH7w7daNvDgezx2/AVCP5NXwSnldutVPgyGfrqAi7PhuDlFscR1h2R0XyAUhSONKVwrVggpvXA9v0pexfxubUrnEB37abfoUQ4+BoYDWbEgmqDd9w2JdwqH6+rZNY3txUxKAvg95zk85b6Yy1jd2oquIEhalXC3HW9qfZftkODf9kTj/HguTCbZ6CbvW9UzGGEXVEEU6GFVlZ1TntY7NnLgRxk1JrsrZTwnSIbdrRNpYSoPw55xnqN7K2X8BdJND+4rmIc0AAAAASUVORK5CYII="/>
|
|
81
|
+
<image id="image2402" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAEp0lEQVRIib2VS2hcVRjHf/fc59zM5KGkNW1tmpimFhQpVWt99eEL34ioG3UjiDvRjYgbd6IoCIIgLsSFKze+UMGFEfFRTLVqVdpU29SmtY9M0jxm7syc830u7mQyMQnixgOHwz3fd///8/3vd/8H/ofh/VvCjVsHN3tO7goCsz0Igo3GeKkKdevsKevcTyrm4z2H/9j/PMh/Jtk7dPElRNHLpbRwdykt+HEU4hvTiosqtXqDuWpV5yrVfQ1nnxr57di3K2H5K23u2tK/JykUPuvt6dqWFmIT+AbP81DVFoGqYjyPMAy9tJBsEKePrOsqToxPTh/4V5LdWy+5rBCHn3V3lrqNMYCC1yy4SaKqaJNMREEhioJAlTsv6ky/Pj55/mg7pvkHhzHwRjFNO0ERFVRBRHAiOFVsc3UiiAiqeZ6I0lFIgjiMXr99aChelWTPpZtuSQvxTgAn+SkXAEQU53LgfF0az8mUNImHq8betyqJet7DcRR6C5LkcgiighPXXAUQ7t6bsW6NbcbzXIAwDDDG3L8iyQPgh75/g+ctNpyq4kQXqxJh/RrLc09Ueej2Gk8+mlFMpdUQAJ7nEYT+Ne3YLcTdmzZ1J13x2WJaCFhh9PUK9+617LrKErRljJ/0ePHNhLNTi4ebm6/I+XKl+M2JE1WAVrr4fsl4XuvZA7o7lSu2WK7fbrl8s6P1mywenP4+eOGpCq+9k/DjIX+hGuP3mIQTLCVpH10l5ZnHMs5MJoyfTDlzzmIH54jMInpW9xjZV2LqvM9Qf41nH6/wylsJ3x1cDtnSzUJtAWLX9gZre4TytM+W/iqoMvGXDyKt+edEQOA7NvdXOXUmIKvCtkttq1A3JdkyEpM2Ggs6rOkROosN1vZlvPBBD5NWGVifkdtTPjdvrDIx5/HSh91s7K/QUbCUOhbtq752rV1GovWCVaWei6qgwk9HIyZnfb4/koDK0okweiTh7EzAL8ciUEFlwRGolEqllrYtAbPZWVeKizUgEicgjgevK1NKGly7tQLilmn99D2nGR1LuePKGRBhrtKynWrvyMhyktLwybpODs8DpWrFgQidifDQdeU8QSCbyahX6kQdEUkpYaA3Y6A3a8Wnp6T5TfT8u23W35JrZAQryAzA7HQNxIK6JTOMPXyjhJFZFlNnmSo3FiqZpq3Rl/Sbip4BhsdPx9Rmp4mLCQCTMzEj+/sYWD9LHAjZOZ+jEyVu3XGCzo4cuDZT5djprnYcViRxIhMAPx/v5OsfyuzaUccEhu6CoxA1eP+LfhrWEIWOnZf9RTHOQBTXcIyMJoydKuZWpDnOapUcE1GM8Xj784vp6/md4SGL73vccfURdl8xzvR8TE+xRiHKO17qyq+HDO98uSH/NKogrH6fCHrYNbtovubz0nuD7DsQUq/UQSxpWGVd9zSFoApiqc3X+Wp/xCvvD5LVcyjnHAJjq1ei5qC1jrDpgLPVgFc/GmTHoTK3bTvHQF+GH3g4q/w+kfDJ92sY/aObNhPGOkGdO7gqSTlMDxSd7PTa/F6Bb8cuZHSsi5u3lbnp8tN8+sNFfPHzBdjm6223A9ZZ8TccP8yRxb2/AVm8l2CgiX8zAAAAAElFTkSuQmCC"/>
|
|
82
|
+
<image id="image2409" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAEkElEQVRIib2VW2icRRTHfzPfN3vLZpPdbtIkNWlCbZN6iS2xVqmUtlYUFcQGsRREhYr40gctqFCoUCoFob5a8IKiPhSqD/og2IcK6oNaMUhra7BNKU3TbZJNdpO9fN83Mz7sJdskbemLAweGMzP/35zDmTPwPwxxq8XnwckMrH5IIp50XGcw5LhdUoqItbbk+XoiCPSIEOZ703Hp11OnCO4Ysm2gd1tYqaOJptjG5qYYIeXiSIkQAmst2hjKnk++UCQ/Xzhb8oO3fzx38dvltJzlnNv7e/e1NMe/aEu1ropGIrhVcQCsxVpbuaGQhJWiKRZtk/BCRyImxiZnfrwtZPvA6uFEc/zjlua4I4RACIEA6owKB1uFWWuxgFKukEJs64jHxsamZkZumq4t/f3N8bA9l25NdEkpkUIgq1HIBmAFZDHWYozBVGHaGLIz+WxRl+85dWZsoqYrGyEhW3qxKRrpqolYqAuYqkijGWPq0VT2QVMsmhSafY26N0Ck6w4r18WYhlsuspq4qUVSB1RMOhLlql2NWapDtvX2RpTrbKwdkOJGEb1YuAFmrcWYBZAj5dot/f3xJRAdtUkpZdJaS0dac+SNHBvXe/Vc10HGoFyNsVWoqdhdK4M6UDpCKjdYuQQiAlprZbrr8TKr2g37X57nwGt5NvR7SGEwxqKrqdw7PE9PZ4C1FXBnu2bLBm+hnnzt1rQXJtZ4YAkp2HSvX6lTYH2fz/o+n2xO8NeoYjwjKfuQbtUc3pfjSkZy9bokpCwdacvPfyqstQRKFpZApFGTxlivPaVD0bCmUJJ8czLFpfEw3R0ez+2cYutQqV4k07Mun3ydJjOlWNdb5Nkd0ygX2lOGC/NGFyOlySXpOnnhQi4I9N/xmAVjyEw6JBM+OzbP0Jb0uJpRYEzdLo8r+rpK7Ng8Q1gZZnMSjGFFq0Frfeb06fHiEsgvR4k8sWGyzfc9sIbeziITRTh4Io0J+6ztngdr6vbAujxX5iwHT6SxEZ90S+VcqVRm52A2+fuxhizVJsqn5+mh2a6BzixYDVbzz5UQXiAYHQ/VfY12fjy8ZH1te5ZnhrLdZOipadd7155HKUdcXh3qLzXFElGwcH9Pgc6kx/DmacKuoTBToDBTBGtxlcNgT4HOpM+uh7NEXI3Vmu6mSebmuDbjceizavu/oXf99h5PJVv4tGdNol2FQyweQTmgmC8Ta4ngqKUNvFwoMTY6dzVf5qVNb/FDzb/kP7n8EanWlDofb4mna75r2Sh/nG+jrzNPNKKZLzpcHE/wyH0TpBLl+tncVP7s6Nlg04PvUmjUdFk0uvcyPf2Vf8ALlT4MhRUALdEi2Zzip5G7sVYgpWVwzSTN0SKYynsqFcomCII3FwOWjQTg+HGcnZrPm5sje1y10EMnZ6Ncn42xsnWeVGLhzXieJp8vH0nv4Z3l9G76/dpjqGyCDyJh5/VIxJFimZ3WQKmsvUJZH1qxm8NCYO8IUhuZL9mqHPaHXPGY44gYVDpOoO1soO13wPvJ3YzcSuO2kDrsOHFlWGMMMSCXKvOveIXSbQ8C/wEsA5nkP7n2iQAAAABJRU5ErkJggg=="/>
|
|
83
|
+
<image id="image2416" width="25" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAABmJLR0QA/wD/AP+gvaeTAAAFhUlEQVRIib2WW2wdRx3GfzOze3Z9Lr7G4djYsY+t2LWbNG7cpqmTVkmKQkEIipSISgkPULVchPoCLWoEKgWpEgEREGoUxEVVgQg1qgq0QqCWygHyUAo0amnTNsTFjeXb8fUcn8vuzs7w4Dqx7KM+8n8a7Xzzffq+/18zC/+HEhs/HOzv3SeUuM9znUEEphpGr1kRnxl9478X1+OOgsr3dR9RrnPUc50ua60NouhyHNknz19+90XA1hQ5eEPugXQqebq5Pq081wUs1VAzXyhUS+Xg6OhbY88DHDhwwBEz479qqs98pj6VREkJgI5jFosrtlAqPz566d1vrPGqtcW+/s72Os9/vj5d50khsdYSG0tsLY5STqSjO/zWtify+Xzc5fGFhnT663V+AhBYazHGYoxBKSWsMfvbG1MvjM8tTwDINRFHOJ/wPTelY0OoNUEUEUQRodbExpBw3c7WuDQC4DrO/a7roGNDpDWR1uwaqDK4PSSOY3zfk1h5/Br32kJCf2+n4MQXA5aKguIKSAn1aYuS8ND3FKWy6BseHr6gouIggBCW/pzmk4c0uwdjqiGcetLj1UsKpWT/JhHAvfUmw2tvJfEShpHdFYyB8y+n8H1D7sMhM/O47Uy5kcjIO2/RZFs8utoNw4MRWsNfX8lweCTGdTR/+ptw1xlYrd62gK52zWwZlsP3p0LAdBmKEfR2anZ1BaqY6Qux2P1DASvCUNQxxBpHaK4sCiKp6W6LQJhgk5MHPzbdvLVVULUJMkkDcYRAsLUxpLne0J1eZl/b7JbBr07qwzv7Qh1FiaFckaZUjNEhQgiGe4p0tESMveNgjC1vEhGYR9NyaeTggM0BVObKOJ7LXTeuYhdnll6emTQ/WkXbxeJCNX3oBkMQSsJCGZTL7i6Nkob5uSTWisVNce18mCthpXRCl4v28pjLsxf6OPdSjnzeEBaXAxNWHxw4wTyANXbqLxeTBMUSUzOKX754I8+M9lApaWYmyly8ksIiJms1nuZ7+c382VJ2W2P1O2178mkpLJJotlzUX9pyjL+v4SJjxt64Wr/n9DOaz310hvsO57EWrk4qfvxcJwsrEmHNWE0Rnn5ateiJF86M/+yWT9W9eSyK4GvOkZPP6aFX7hr8+fFUMnkk4TjZShBkgzDkwusD5CeH+co9z1KuJHjsqfupqHG0/Q9C2IsbRQRnT92LnP0mmczAE/4Rbh8/ybRs5A8dd36/87fnv5vd0qKSvoeSkjg2lKsBhYlbmV/8PP++tECh0Eti/iQiMiBetclKVw46/rlKDvDrUw/QmDlDsu7aXZaMq2gk5Je5+4e/oMH3cZRECIGxFh0bVkoh6dlz+PQghFyfCUG1aiqVymfPFZrPru60NPSsFwAoK58QRWpimrZmy0dGKiA0odb4XoRSGt83BOJtLIaN5fm+TGdSPdfj8rxNIACMxRrD3p0hN/c77Oit4DghxZJHoSQYuxoyelVCDREAx0kA60a4ZlnLh5pjso0l3p4WRGhu6i2jpUarmG2tJbINMfb601FbDODPy9+mgM+nGx7eBFjyM7R1GzrrF3CVpbxQYmibwQLTY0l+X22pSfytR7fheoafHnvfyaHMHHsTUzXBM6qR48v34IgyU1MOf/xHL/NzEhlofvCTx1lZydY819haprVDA2txJZvArduMlAIcxTuyg0cWv0xyaxMf3/06cks7p0YfY24phxQuolbqiSTU1V+PC6lA1GielGS8Oh66+XZ2dOa4tHCQ9n89wnt7z7BjqAt//yxvnnARYa3WimsePrjxQrAnnWVX93Ycx6W69TbG7n4J3bidRCJB3x1Zmm4LQXwwzaoT5ZyOqf6OeOPPi8Z1FLEV1BwgaRGexBCz8YaKjYCEfQ/gf+WOW+d9iziwAAAAAElFTkSuQmCC"/>
|
|
84
|
+
</defs>
|
|
85
|
+
<g id="surface5129">
|
|
86
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
87
|
+
<use xlink:href="#glyph0-1" x="10" y="44.069999"/>
|
|
88
|
+
</g>
|
|
89
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
90
|
+
<use xlink:href="#glyph0-2" x="25.26" y="44.069999"/>
|
|
91
|
+
</g>
|
|
92
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
93
|
+
<use xlink:href="#glyph0-3" x="31.92" y="44.069999"/>
|
|
94
|
+
</g>
|
|
95
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
96
|
+
<use xlink:href="#glyph0-4" x="42.919999" y="44.069999"/>
|
|
97
|
+
</g>
|
|
98
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
99
|
+
<use xlink:href="#glyph0-5" x="55.135556" y="44.069999"/>
|
|
100
|
+
</g>
|
|
101
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
102
|
+
<use xlink:href="#glyph0-6" x="74.391112" y="56.379999"/>
|
|
103
|
+
</g>
|
|
104
|
+
<use xlink:href="#image2335" transform="matrix(1,0,0,1,97,10)"/>
|
|
105
|
+
<use xlink:href="#image2342" transform="matrix(1,0,0,1,86,49)"/>
|
|
106
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
107
|
+
<use xlink:href="#glyph0-7" x="119.964441" y="44.069999"/>
|
|
108
|
+
</g>
|
|
109
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
110
|
+
<use xlink:href="#glyph0-2" x="133.464441" y="44.069999"/>
|
|
111
|
+
</g>
|
|
112
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
113
|
+
<use xlink:href="#glyph0-3" x="140.12444" y="44.069999"/>
|
|
114
|
+
</g>
|
|
115
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
116
|
+
<use xlink:href="#glyph0-4" x="151.12444" y="44.069999"/>
|
|
117
|
+
</g>
|
|
118
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
119
|
+
<use xlink:href="#glyph0-8" x="157.78444" y="44.069999"/>
|
|
120
|
+
</g>
|
|
121
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
122
|
+
<use xlink:href="#glyph0-3" x="169.62444" y="44.069999"/>
|
|
123
|
+
</g>
|
|
124
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
125
|
+
<use xlink:href="#glyph0-9" x="10" y="91.686663"/>
|
|
126
|
+
</g>
|
|
127
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
128
|
+
<use xlink:href="#glyph0-10" x="15.56" y="91.686663"/>
|
|
129
|
+
</g>
|
|
130
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
131
|
+
<use xlink:href="#glyph0-11" x="25.56" y="91.686663"/>
|
|
132
|
+
</g>
|
|
133
|
+
<use xlink:href="#image2349" transform="matrix(1,0,0,1,36,84)"/>
|
|
134
|
+
<use xlink:href="#image2358" transform="matrix(1,0,0,1,58,73)"/>
|
|
135
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
136
|
+
<use xlink:href="#glyph0-5" x="88.94889" y="91.686663"/>
|
|
137
|
+
</g>
|
|
138
|
+
<use xlink:href="#image2367" transform="matrix(1,0,0,1,108,73)"/>
|
|
139
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
140
|
+
<use xlink:href="#glyph1-1" x="15.975" y="114.423328"/>
|
|
141
|
+
</g>
|
|
142
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
143
|
+
<use xlink:href="#glyph0-12" x="10" y="150.403327"/>
|
|
144
|
+
</g>
|
|
145
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
146
|
+
<use xlink:href="#glyph1-2" x="11.7" y="163.543327"/>
|
|
147
|
+
</g>
|
|
148
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
149
|
+
<use xlink:href="#glyph1-3" x="16.365" y="163.543327"/>
|
|
150
|
+
</g>
|
|
151
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
152
|
+
<use xlink:href="#glyph1-4" x="26.64" y="163.543327"/>
|
|
153
|
+
</g>
|
|
154
|
+
<use xlink:href="#image2374" transform="matrix(1,0,0,1,39,121)"/>
|
|
155
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
156
|
+
<use xlink:href="#glyph0-5" x="69.688885" y="140.413327"/>
|
|
157
|
+
</g>
|
|
158
|
+
<use xlink:href="#image2381" transform="matrix(1,0,0,1,89,121)"/>
|
|
159
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
160
|
+
<use xlink:href="#glyph0-13" x="10" y="188.979996"/>
|
|
161
|
+
</g>
|
|
162
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
163
|
+
<use xlink:href="#glyph1-1" x="30" y="180.939996"/>
|
|
164
|
+
</g>
|
|
165
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
166
|
+
<use xlink:href="#glyph1-2" x="30" y="196.359996"/>
|
|
167
|
+
</g>
|
|
168
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
169
|
+
<use xlink:href="#glyph1-3" x="34.664999" y="196.359996"/>
|
|
170
|
+
</g>
|
|
171
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
172
|
+
<use xlink:href="#glyph1-4" x="44.939999" y="196.359996"/>
|
|
173
|
+
</g>
|
|
174
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
175
|
+
<use xlink:href="#glyph0-14" x="56.593334" y="188.939996"/>
|
|
176
|
+
</g>
|
|
177
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
178
|
+
<use xlink:href="#glyph0-15" x="67.257777" y="188.939996"/>
|
|
179
|
+
</g>
|
|
180
|
+
<use xlink:href="#image2374" transform="matrix(1,0,0,1,85,170)"/>
|
|
181
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
182
|
+
<use xlink:href="#glyph0-5" x="115.017781" y="188.939996"/>
|
|
183
|
+
</g>
|
|
184
|
+
<use xlink:href="#image2388" transform="matrix(1,0,0,1,134,170)"/>
|
|
185
|
+
<use xlink:href="#image2395" transform="matrix(1,0,0,1,10,203)"/>
|
|
186
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
187
|
+
<use xlink:href="#glyph0-16" x="39.404443" y="221.756655"/>
|
|
188
|
+
</g>
|
|
189
|
+
<use xlink:href="#image2402" transform="matrix(1,0,0,1,58,203)"/>
|
|
190
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
191
|
+
<use xlink:href="#glyph0-16" x="86.953328" y="221.756655"/>
|
|
192
|
+
</g>
|
|
193
|
+
<use xlink:href="#image2409" transform="matrix(1,0,0,1,105,203)"/>
|
|
194
|
+
<g style="fill:rgb(25.882353%,25.882353%,25.882353%);fill-opacity:1;">
|
|
195
|
+
<use xlink:href="#glyph0-5" x="135.613327" y="221.756655"/>
|
|
196
|
+
</g>
|
|
197
|
+
<use xlink:href="#image2416" transform="matrix(1,0,0,1,155,203)"/>
|
|
198
|
+
</g>
|
|
199
|
+
</svg>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="184pt" height="46pt" version="1.1" viewBox="0 0 184 46" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="l" overflow="visible">
|
|
5
|
+
<path d="m2.9062-3.5156c0.66406 0.13672 1.1445 0.46094 1.4375 0.96875 0.14453 0.26172 0.21875 0.54297 0.21875 0.84375 0 0.5625-0.23047 1.0391-0.6875 1.4219-0.40625 0.33203-0.88672 0.5-1.4375 0.5-0.65625 0-1.1875-0.19922-1.5938-0.59375-0.28125-0.28125-0.42188-0.60156-0.42188-0.96875 0-0.3125 0.14062-0.5 0.42188-0.5625 0.039062-0.019531 0.085938-0.03125 0.14062-0.03125 0.25 0 0.41406 0.10938 0.5 0.32812 0.03125 0.085937 0.050781 0.16406 0.0625 0.23438 0 0.27344-0.12109 0.44922-0.35938 0.53125-0.09375 0.03125-0.19922 0.042969-0.3125 0.03125 0.25 0.40625 0.67578 0.65234 1.2812 0.73438 0.09375 0.011719 0.17578 0.015625 0.25 0.015625 0.42578 0 0.73828-0.20703 0.9375-0.625 0.13281-0.26953 0.20312-0.60938 0.20312-1.0156 0-0.89453-0.27344-1.4297-0.8125-1.6094-0.11719-0.039062-0.24609-0.0625-0.39062-0.0625h-0.4375c-0.14844 0-0.22656-0.035156-0.23438-0.10938 0-0.0625 0.046875-0.097656 0.14062-0.10938 0.10156 0 0.23438-0.007812 0.39062-0.03125 0.34375-0.019531 0.61328-0.14844 0.8125-0.39062v-0.03125h0.03125l0.046875-0.10938c0.1875-0.3125 0.28125-0.69141 0.28125-1.1406 0-0.61328-0.24219-0.97266-0.71875-1.0781-0.074219-0.019531-0.15234-0.03125-0.23438-0.03125-0.46875 0-0.85156 0.13281-1.1406 0.39062-0.074219 0.074219-0.13672 0.14844-0.1875 0.21875 0.40625 0 0.60938 0.16797 0.60938 0.5 0 0.24219-0.10156 0.40234-0.29688 0.48438-0.0625 0.023438-0.13281 0.03125-0.20312 0.03125-0.26172 0-0.42969-0.11328-0.5-0.34375v-0.015625c-0.011719-0.050781-0.015625-0.10156-0.015625-0.15625 0-0.44531 0.21875-0.80469 0.65625-1.0781 0.32031-0.1875 0.69141-0.28125 1.1094-0.28125 0.61328 0 1.1094 0.17969 1.4844 0.53125l0.015625 0.03125c0.22656 0.24219 0.34375 0.51172 0.34375 0.8125 0 0.55469-0.23438 1.0156-0.70312 1.3906-0.21094 0.15625-0.4375 0.28125-0.6875 0.375z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="k" overflow="visible">
|
|
8
|
+
<path d="m8.4844 23.203-4.5156-10.5-1.4062 1.0781-0.35938-0.35938 2.8594-2.2188 4.2188 9.8125 10.375-21.625c0.0625-0.125 0.17578-0.1875 0.34375-0.1875 0.11328 0 0.20703 0.042969 0.28125 0.125 0.082031 0.074219 0.125 0.16406 0.125 0.26562 0 0.074219-0.011719 0.12109-0.03125 0.14062l-11.156 23.281c-0.054688 0.125-0.15234 0.1875-0.29688 0.1875z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="j" overflow="visible">
|
|
11
|
+
<path d="m6.625 4.7969c0 0.13281-0.070312 0.20312-0.20312 0.20312-0.15625 0-0.51172-0.27344-1.0625-0.8125-0.82422-0.83594-1.5117-1.8203-2.0625-2.9531-0.875-1.8125-1.3125-3.8906-1.3125-6.2344 0-2.25 0.41406-4.2812 1.25-6.0938 0.69531-1.4766 1.5781-2.6641 2.6406-3.5625 0.28125-0.22656 0.46094-0.34375 0.54688-0.34375 0.13281 0 0.20312 0.070312 0.20312 0.20312 0 0.0625-0.089844 0.17969-0.26562 0.34375-2.1484 2.1797-3.2188 5.3281-3.2188 9.4531 0 4.1055 1.0469 7.2227 3.1406 9.3594 0.22656 0.22656 0.34375 0.375 0.34375 0.4375z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="i" overflow="visible">
|
|
14
|
+
<path d="m5.7812-5c0 2.25-0.42188 4.2812-1.2656 6.0938-0.6875 1.4766-1.5703 2.6641-2.6406 3.5625-0.28125 0.22656-0.46094 0.34375-0.53125 0.34375-0.13672 0-0.20312-0.070312-0.20312-0.20312 0-0.0625 0.085937-0.17969 0.26562-0.34375 2.1445-2.1797 3.2188-5.3281 3.2188-9.4531 0-4.0625-1-7.1406-3-9.2344l-0.10938-0.10938c-0.25-0.23828-0.375-0.39062-0.375-0.45312 0-0.13281 0.066406-0.20312 0.20312-0.20312 0.15625 0 0.50781 0.27344 1.0625 0.8125 0.82031 0.83594 1.5039 1.8203 2.0469 2.9531 0.88281 1.8125 1.3281 3.8906 1.3281 6.2344z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="h" overflow="visible">
|
|
17
|
+
<path d="m6.6875-6.0469-0.6875 2.75c-0.23047 0.90625-0.34375 1.4922-0.34375 1.75 0 0.69922 0.25 1.1211 0.75 1.2656 0.10156 0.042969 0.22266 0.0625 0.35938 0.0625 0.66406 0 1.2695-0.33203 1.8125-1 0.36328-0.42578 0.64453-0.96875 0.84375-1.625 0.039063-0.14453 0.12891-0.21875 0.26562-0.21875 0.15625 0 0.23438 0.070312 0.23438 0.20312 0 0.33594-0.21094 0.8125-0.625 1.4375-0.71875 1.0938-1.5781 1.6406-2.5781 1.6406-0.90625 0-1.5703-0.37891-1.9844-1.1406-0.074219-0.11328-0.13281-0.23828-0.17188-0.375-0.32422 0.63672-0.76562 1.0859-1.3281 1.3438-0.25 0.11328-0.51172 0.17188-0.78125 0.17188-0.79297 0-1.3516-0.23438-1.6719-0.70312-0.13672-0.16406-0.20312-0.36719-0.20312-0.60938 0-0.5 0.21094-0.84766 0.64062-1.0469 0.14453-0.082031 0.30078-0.125 0.46875-0.125 0.39453 0 0.63281 0.16797 0.71875 0.5 0.007812 0.074219 0.015625 0.14062 0.015625 0.20312 0 0.46094-0.23047 0.79297-0.6875 1-0.074219 0.042969-0.15625 0.070312-0.25 0.078125 0.28125 0.17969 0.61328 0.26562 1 0.26562 0.70703 0 1.2656-0.47266 1.6719-1.4219 0.082031-0.19531 0.15625-0.41406 0.21875-0.65625 0.71875-2.7188 1.0781-4.3047 1.0781-4.7656-0.074219-0.82031-0.43359-1.2695-1.0781-1.3438-0.6875 0-1.3203 0.35547-1.8906 1.0625v0.03125c0 0.011719-0.011719 0.015625-0.03125 0.015625-0.19922 0.26172-0.375 0.57031-0.53125 0.92188-0.074219 0.15625-0.13672 0.3125-0.1875 0.46875l-0.03125 0.125c-0.03125 0.14844-0.12109 0.21875-0.26562 0.21875-0.15625 0-0.23438-0.066406-0.23438-0.20312 0-0.33203 0.21094-0.8125 0.64062-1.4375 0.71875-1.0938 1.5781-1.6406 2.5781-1.6406 1.0195 0 1.7383 0.51172 2.1562 1.5312 0.42578-0.83203 0.99219-1.3281 1.7031-1.4844 0.13281-0.03125 0.26953-0.046875 0.40625-0.046875 0.78125 0 1.332 0.21875 1.6562 0.65625 0.13281 0.1875 0.20312 0.41406 0.20312 0.67188 0 0.54297-0.25 0.90625-0.75 1.0938-0.11719 0.042969-0.23047 0.0625-0.34375 0.0625-0.40625 0-0.65234-0.17969-0.73438-0.54688-0.011719-0.050781-0.015625-0.10156-0.015625-0.15625 0-0.39453 0.19141-0.70703 0.57812-0.9375 0.11328-0.0625 0.23828-0.10938 0.375-0.14062-0.28125-0.17578-0.61719-0.26562-1-0.26562-0.90625 0-1.5469 0.71094-1.9219 2.125-0.023437 0.085938-0.039063 0.16406-0.046875 0.23438z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="g" overflow="visible">
|
|
20
|
+
<path d="m9.7188-7.625-1.9219 7.6406c-0.32422 1.3125-1.0391 2.375-2.1406 3.1875-0.8125 0.59375-1.6562 0.89062-2.5312 0.89062-0.89844 0-1.5312-0.30469-1.9062-0.90625-0.14844-0.26172-0.21875-0.53906-0.21875-0.82812 0-0.67969 0.26953-1.1016 0.8125-1.2656 0.11328-0.023438 0.21875-0.03125 0.3125-0.03125 0.42578 0 0.66406 0.1875 0.71875 0.5625 0.007812 0.039062 0.015625 0.085938 0.015625 0.14062 0 0.30078-0.13672 0.57031-0.40625 0.8125-0.17969 0.15625-0.46484 0.23438-0.85938 0.23438 0.23828 0.5625 0.75 0.84375 1.5312 0.84375 0.82031 0 1.5508-0.41797 2.1875-1.25 0.51953-0.69922 0.9375-1.6406 1.25-2.8281 0.007812-0.050781 0.03125-0.14062 0.0625-0.26562-0.60547 0.60547-1.2812 0.90625-2.0312 0.90625-1.0625 0-1.7891-0.39062-2.1719-1.1719-0.17969-0.35156-0.26562-0.75391-0.26562-1.2031 0-0.73828 0.35156-2.0508 1.0625-3.9375 0.03125-0.082031 0.0625-0.17188 0.09375-0.26562 0.22656-0.61328 0.34375-1.082 0.34375-1.4062 0-0.42578-0.16797-0.64062-0.5-0.64062-0.73047 0-1.3281 0.60938-1.7969 1.8281v0.015625c-0.085937 0.19922-0.15625 0.41406-0.21875 0.64062-0.14844 0.23047-0.25781 0.35156-0.32812 0.35938-0.15625 0-0.23438-0.066406-0.23438-0.20312 0-0.23828 0.14062-0.65625 0.42188-1.25 0.58203-1.2188 1.3203-1.8281 2.2188-1.8281 0.70703 0 1.2031 0.30469 1.4844 0.90625 0.10156 0.23047 0.15625 0.47656 0.15625 0.73438 0 0.28125-0.13672 0.76172-0.40625 1.4375-0.67969 1.7617-1.0156 3.0703-1.0156 3.9219 0 1.0859 0.41406 1.625 1.25 1.625 0.76953 0 1.4414-0.41016 2.0156-1.2344 0.13281-0.20703 0.21094-0.36328 0.23438-0.46875l0.90625-3.5938c0.09375-0.44531 0.22266-0.98438 0.39062-1.6094 0.13281-0.57031 0.22656-0.92969 0.28125-1.0781 0.17578-0.28125 0.41016-0.42188 0.70312-0.42188 0.33203 0.074219 0.52344 0.25781 0.57812 0.54688 0 0.11719-0.027344 0.26562-0.078125 0.45312z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="f" overflow="visible">
|
|
23
|
+
<path d="m13.219-4.5938h-10.906c-0.41797 0-0.63672-0.13281-0.65625-0.40625 0-0.26953 0.21875-0.40625 0.65625-0.40625h10.906c0.42578 0 0.64453 0.13672 0.65625 0.40625 0 0.27344-0.21875 0.40625-0.65625 0.40625z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="e" overflow="visible">
|
|
26
|
+
<path d="m4.0625-4.9219c0.92578 0.1875 1.5977 0.64062 2.0156 1.3594 0.20703 0.36719 0.3125 0.75781 0.3125 1.1719 0 0.79297-0.32422 1.4609-0.96875 2-0.57422 0.46875-1.2422 0.70312-2 0.70312-0.92969 0-1.6719-0.27734-2.2344-0.82812-0.39844-0.39453-0.59375-0.85156-0.59375-1.375 0-0.4375 0.19141-0.69531 0.57812-0.78125 0.070313-0.019531 0.14062-0.03125 0.20312-0.03125 0.35156 0 0.59375 0.15234 0.71875 0.45312 0.03125 0.11719 0.050781 0.22656 0.0625 0.32812 0 0.375-0.16797 0.62109-0.5 0.73438-0.13672 0.042969-0.27734 0.058594-0.42188 0.046875 0.34375 0.57422 0.94141 0.91797 1.7969 1.0312 0.11328 0.023438 0.22656 0.03125 0.34375 0.03125 0.59375 0 1.0312-0.29688 1.3125-0.89062 0.17578-0.375 0.26562-0.84766 0.26562-1.4219 0-1.2383-0.37109-1.9883-1.1094-2.25-0.17969-0.050781-0.35938-0.078125-0.54688-0.078125h-0.625c-0.21094 0-0.32031-0.050781-0.32812-0.15625 0-0.09375 0.066406-0.14844 0.20312-0.17188 0.14453 0 0.32812-0.007813 0.54688-0.03125 0.47656-0.019531 0.85156-0.20312 1.125-0.54688v-0.015625l0.015625-0.015625v-0.015625h0.015625l0.09375-0.14062c0.25781-0.4375 0.39062-0.96875 0.39062-1.5938 0-0.86328-0.33984-1.375-1.0156-1.5312-0.10547-0.019531-0.21484-0.03125-0.32812-0.03125-0.65625 0-1.1875 0.1875-1.5938 0.5625-0.10547 0.085938-0.19531 0.18359-0.26562 0.29688 0.57031 0 0.85938 0.23438 0.85938 0.70312 0 0.33594-0.14844 0.55859-0.4375 0.67188-0.085937 0.03125-0.17188 0.046875-0.26562 0.046875-0.36719 0-0.59375-0.16406-0.6875-0.5v-0.015625c-0.023438-0.070313-0.03125-0.14453-0.03125-0.21875 0-0.625 0.30469-1.125 0.92188-1.5 0.44531-0.26953 0.96094-0.40625 1.5469-0.40625 0.85156 0 1.5391 0.25781 2.0625 0.76562l0.03125 0.015625c0.32031 0.34375 0.48438 0.73047 0.48438 1.1562 0 0.77344-0.32812 1.418-0.98438 1.9375-0.29297 0.23047-0.61719 0.40625-0.96875 0.53125z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="d" overflow="visible">
|
|
29
|
+
<path d="m13.734-6.5469h-11.938c-0.42969 0-0.65234-0.12891-0.67188-0.39062 0-0.26953 0.21875-0.40625 0.65625-0.40625h11.984c0.42578 0 0.64453 0.13672 0.65625 0.40625 0 0.26172-0.23047 0.39062-0.6875 0.39062zm0.03125 3.8906h-11.984c-0.42969 0-0.64844-0.13281-0.65625-0.40625 0-0.25781 0.22266-0.39062 0.67188-0.39062h11.938c0.42578 0 0.65625 0.13281 0.6875 0.39062 0 0.27344-0.21875 0.40625-0.65625 0.40625z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="c" overflow="visible">
|
|
32
|
+
<path d="m6.6875-6.0469-0.6875 2.75c-0.23047 0.90625-0.34375 1.4922-0.34375 1.75 0 0.69922 0.25 1.1211 0.75 1.2656 0.10156 0.042969 0.22266 0.0625 0.35938 0.0625 0.66406 0 1.2695-0.33203 1.8125-1 0.36328-0.42578 0.64453-0.96875 0.84375-1.625 0.039063-0.14453 0.12891-0.21875 0.26562-0.21875 0.15625 0 0.23438 0.070312 0.23438 0.20312 0 0.33594-0.21094 0.8125-0.625 1.4375-0.71875 1.0938-1.5781 1.6406-2.5781 1.6406-0.90625 0-1.5703-0.37891-1.9844-1.1406-0.074219-0.11328-0.13281-0.23828-0.17188-0.375-0.32422 0.63672-0.76562 1.0859-1.3281 1.3438-0.25 0.11328-0.51172 0.17188-0.78125 0.17188-0.79297 0-1.3516-0.23438-1.6719-0.70312-0.13672-0.16406-0.20312-0.36719-0.20312-0.60938 0-0.5 0.21094-0.84766 0.64062-1.0469 0.14453-0.082031 0.30078-0.125 0.46875-0.125 0.39453 0 0.63281 0.16797 0.71875 0.5 0.007812 0.074219 0.015625 0.14062 0.015625 0.20312 0 0.46094-0.23047 0.79297-0.6875 1-0.074219 0.042969-0.15625 0.070312-0.25 0.078125 0.28125 0.17969 0.61328 0.26562 1 0.26562 0.70703 0 1.2656-0.47266 1.6719-1.4219 0.082031-0.19531 0.15625-0.41406 0.21875-0.65625 0.71875-2.7188 1.0781-4.3047 1.0781-4.7656-0.074219-0.82031-0.43359-1.2695-1.0781-1.3438-0.6875 0-1.3203 0.35547-1.8906 1.0625v0.03125c0 0.011719-0.011719 0.015625-0.03125 0.015625-0.19922 0.26172-0.375 0.57031-0.53125 0.92188-0.074219 0.15625-0.13672 0.3125-0.1875 0.46875l-0.03125 0.125c-0.03125 0.14844-0.12109 0.21875-0.26562 0.21875-0.15625 0-0.23438-0.066406-0.23438-0.20312 0-0.33203 0.21094-0.8125 0.64062-1.4375 0.71875-1.0938 1.5781-1.6406 2.5781-1.6406 1.0195 0 1.7383 0.51172 2.1562 1.5312 0.42578-0.83203 0.99219-1.3281 1.7031-1.4844 0.13281-0.03125 0.26953-0.046875 0.40625-0.046875 0.78125 0 1.332 0.21875 1.6562 0.65625 0.13281 0.1875 0.20312 0.41406 0.20312 0.67188 0 0.54297-0.25 0.90625-0.75 1.0938-0.11719 0.042969-0.23047 0.0625-0.34375 0.0625-0.40625 0-0.65234-0.17969-0.73438-0.54688-0.011719-0.050781-0.015625-0.10156-0.015625-0.15625 0-0.39453 0.19141-0.70703 0.57812-0.9375 0.11328-0.0625 0.23828-0.10938 0.375-0.14062-0.28125-0.17578-0.61719-0.26562-1-0.26562-0.90625 0-1.5469 0.71094-1.9219 2.125-0.023437 0.085938-0.039063 0.16406-0.046875 0.23438z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="b" overflow="visible">
|
|
35
|
+
<path d="m9.7188-7.625-1.9219 7.6406c-0.32422 1.3125-1.0391 2.375-2.1406 3.1875-0.8125 0.59375-1.6562 0.89062-2.5312 0.89062-0.89844 0-1.5312-0.30469-1.9062-0.90625-0.14844-0.26172-0.21875-0.53906-0.21875-0.82812 0-0.67969 0.26953-1.1016 0.8125-1.2656 0.11328-0.023438 0.21875-0.03125 0.3125-0.03125 0.42578 0 0.66406 0.1875 0.71875 0.5625 0.007812 0.039062 0.015625 0.085938 0.015625 0.14062 0 0.30078-0.13672 0.57031-0.40625 0.8125-0.17969 0.15625-0.46484 0.23438-0.85938 0.23438 0.23828 0.5625 0.75 0.84375 1.5312 0.84375 0.82031 0 1.5508-0.41797 2.1875-1.25 0.51953-0.69922 0.9375-1.6406 1.25-2.8281 0.007812-0.050781 0.03125-0.14062 0.0625-0.26562-0.60547 0.60547-1.2812 0.90625-2.0312 0.90625-1.0625 0-1.7891-0.39062-2.1719-1.1719-0.17969-0.35156-0.26562-0.75391-0.26562-1.2031 0-0.73828 0.35156-2.0508 1.0625-3.9375 0.03125-0.082031 0.0625-0.17188 0.09375-0.26562 0.22656-0.61328 0.34375-1.082 0.34375-1.4062 0-0.42578-0.16797-0.64062-0.5-0.64062-0.73047 0-1.3281 0.60938-1.7969 1.8281v0.015625c-0.085937 0.19922-0.15625 0.41406-0.21875 0.64062-0.14844 0.23047-0.25781 0.35156-0.32812 0.35938-0.15625 0-0.23438-0.066406-0.23438-0.20312 0-0.23828 0.14062-0.65625 0.42188-1.25 0.58203-1.2188 1.3203-1.8281 2.2188-1.8281 0.70703 0 1.2031 0.30469 1.4844 0.90625 0.10156 0.23047 0.15625 0.47656 0.15625 0.73438 0 0.28125-0.13672 0.76172-0.40625 1.4375-0.67969 1.7617-1.0156 3.0703-1.0156 3.9219 0 1.0859 0.41406 1.625 1.25 1.625 0.76953 0 1.4414-0.41016 2.0156-1.2344 0.13281-0.20703 0.21094-0.36328 0.23438-0.46875l0.90625-3.5938c0.09375-0.44531 0.22266-0.98438 0.39062-1.6094 0.13281-0.57031 0.22656-0.92969 0.28125-1.0781 0.17578-0.28125 0.41016-0.42188 0.70312-0.42188 0.33203 0.074219 0.52344 0.25781 0.57812 0.54688 0 0.11719-0.027344 0.26562-0.078125 0.45312z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="a" overflow="visible">
|
|
38
|
+
<path d="m13.219-4.5938h-10.906c-0.41797 0-0.63672-0.13281-0.65625-0.40625 0-0.26953 0.21875-0.40625 0.65625-0.40625h10.906c0.42578 0 0.64453 0.13672 0.65625 0.40625 0 0.27344-0.21875 0.40625-0.65625 0.40625z"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
</defs>
|
|
41
|
+
<rect width="184" height="46" fill="#fff"/>
|
|
42
|
+
<g>
|
|
43
|
+
<use x="16.109375" y="21.160156" xlink:href="#l"/>
|
|
44
|
+
</g>
|
|
45
|
+
<g>
|
|
46
|
+
<use x="10" y="11.601562" xlink:href="#k"/>
|
|
47
|
+
</g>
|
|
48
|
+
<path transform="scale(20)" d="m1.5 0.55996h3.5283" fill="none" stroke="#000" stroke-linejoin="bevel" stroke-miterlimit="0" stroke-width=".039999"/>
|
|
49
|
+
<g>
|
|
50
|
+
<use x="30" y="29.675781" xlink:href="#j"/>
|
|
51
|
+
</g>
|
|
52
|
+
<g>
|
|
53
|
+
<use x="37.777344" y="29.675781" xlink:href="#h"/>
|
|
54
|
+
</g>
|
|
55
|
+
<g>
|
|
56
|
+
<use x="53.652344" y="29.675781" xlink:href="#f"/>
|
|
57
|
+
</g>
|
|
58
|
+
<g>
|
|
59
|
+
<use x="73.652344" y="29.675781" xlink:href="#g"/>
|
|
60
|
+
</g>
|
|
61
|
+
<g>
|
|
62
|
+
<use x="84.175781" y="29.675781" xlink:href="#i"/>
|
|
63
|
+
</g>
|
|
64
|
+
<g>
|
|
65
|
+
<use x="91.953125" y="23.898438" xlink:href="#e"/>
|
|
66
|
+
</g>
|
|
67
|
+
<g>
|
|
68
|
+
<use x="106.121094" y="29.675781" xlink:href="#d"/>
|
|
69
|
+
</g>
|
|
70
|
+
<g>
|
|
71
|
+
<use x="127.230469" y="29.675781" xlink:href="#c"/>
|
|
72
|
+
</g>
|
|
73
|
+
<g>
|
|
74
|
+
<use x="143.105469" y="29.675781" xlink:href="#a"/>
|
|
75
|
+
</g>
|
|
76
|
+
<g>
|
|
77
|
+
<use x="163.105469" y="29.675781" xlink:href="#b"/>
|
|
78
|
+
</g>
|
|
79
|
+
</svg>
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="131pt" height="55pt" version="1.1" viewBox="0 0 131 55" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="o" overflow="visible">
|
|
5
|
+
<path d="m1.4844 30.391c0.22656 0.22656 0.51562 0.34375 0.85938 0.34375 0.33203 0 0.63281-0.23047 0.90625-0.6875 0.28125-0.46094 0.52344-1.0391 0.73438-1.7344 0.21875-0.6875 0.375-1.2656 0.46875-1.7344s0.21094-1.0742 0.35938-1.8125c0.13281-0.6875 0.26562-1.3828 0.39062-2.0781 0.125-0.6875 0.25-1.4219 0.375-2.2031 0.13281-0.78125 0.26953-1.5742 0.40625-2.375 0.14453-0.80469 0.3125-1.6641 0.5-2.5781 0.23828-1.1875 0.41016-2.043 0.51562-2.5625 0.11328-0.51172 0.28125-1.25 0.5-2.2188s0.36328-1.6094 0.4375-1.9219c0.070312-0.30469 0.26953-1.1406 0.59375-2.5156l0.1875-0.73438c0.20703-0.8125 0.36719-1.4336 0.48438-1.8594 0.11328-0.41797 0.28906-0.93359 0.53125-1.5469 0.23828-0.60547 0.51953-1.1211 0.84375-1.5469 0.32031-0.41797 0.67969-0.625 1.0781-0.625 0.26953 0 0.51953 0.0625 0.75 0.1875 0.23828 0.125 0.42969 0.28906 0.57812 0.5 0.14453 0.21875 0.21875 0.46094 0.21875 0.73438 0 0.20703-0.070313 0.375-0.20312 0.5-0.13672 0.13281-0.30469 0.20312-0.5 0.20312-0.19922 0-0.37109-0.070312-0.51562-0.20312-0.13672-0.125-0.20312-0.29297-0.20312-0.5 0-0.19922 0.066406-0.36719 0.20312-0.5 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312-0.24219-0.24219-0.52344-0.35938-0.84375-0.35938-0.16797 0-0.35547 0.25-0.5625 0.75-0.21094 0.50781-0.40234 1.1094-0.57812 1.7969-0.17969 0.6875-0.3125 1.2578-0.40625 1.7188-0.09375 0.45703-0.20312 1.0312-0.32812 1.7188-0.15625 0.78125-0.28906 1.457-0.39062 2.0312-0.10547 0.58203-0.23047 1.3008-0.375 2.1562-0.14844 0.85156-0.29297 1.6602-0.4375 2.4219-0.13672 0.76953-0.29688 1.6406-0.48438 2.6094-0.125 0.61328-0.30469 1.4727-0.53125 2.5781-0.23047 1.1016-0.38672 1.8203-0.46875 2.1562-0.074219 0.33203-0.26562 1.1445-0.57812 2.4375-0.30469 1.2891-0.46484 1.9766-0.48438 2.0625l-0.17188 0.64062c-0.24219 0.98828-0.48438 1.8594-0.73438 2.6094-0.24219 0.75-0.59375 1.4453-1.0625 2.0938-0.46875 0.64453-1.043 0.96875-1.7188 0.96875-0.40625 0-0.77344-0.13672-1.0938-0.40625-0.3125-0.27344-0.46875-0.60547-0.46875-1 0-0.21094 0.066406-0.38281 0.20312-0.51562 0.14453-0.13672 0.31641-0.20312 0.51562-0.20312 0.13281 0 0.25391 0.03125 0.35938 0.09375 0.10156 0.0625 0.1875 0.14453 0.25 0.25 0.0625 0.11328 0.09375 0.23828 0.09375 0.375 0 0.19531-0.070313 0.35938-0.20312 0.48438-0.13672 0.13281-0.30859 0.20312-0.51562 0.20312z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="n" overflow="visible">
|
|
8
|
+
<path d="m4.0938-2.2969v2.7969c0 0.20703-0.070312 0.31641-0.20312 0.32812-0.13672 0-0.20312-0.10938-0.20312-0.32812v-2.7969h-2.7969c-0.21875 0-0.32812-0.066406-0.32812-0.20312 0-0.13281 0.10938-0.20312 0.32812-0.20312h2.7969v-2.7969c0-0.20703 0.066406-0.31641 0.20312-0.32812 0.13281 0 0.20312 0.10938 0.20312 0.32812v2.7969h2.7812c0.21875 0 0.32812 0.070313 0.32812 0.20312 0 0.13672-0.10938 0.20312-0.32812 0.20312z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="m" overflow="visible">
|
|
11
|
+
<path d="m5.0781-2.7188c0.39453-0.66406 0.875-1.1445 1.4375-1.4375 0.33203-0.17578 0.67578-0.26562 1.0312-0.26562 0.63281 0 1.1328 0.29688 1.5 0.89062 0.25781 0.40625 0.39062 0.86719 0.39062 1.375 0 0.6875-0.21484 1.2578-0.64062 1.7031-0.35547 0.375-0.78125 0.5625-1.2812 0.5625-0.59375 0-1.1641-0.22656-1.7031-0.6875-0.14844-0.125-0.37109-0.36719-0.67188-0.73438l-0.23438-0.28125c-0.39844 0.66797-0.875 1.1484-1.4375 1.4375-0.33594 0.17578-0.67188 0.26562-1.0156 0.26562-0.64844 0-1.1523-0.29688-1.5156-0.89062-0.25-0.40625-0.375-0.86328-0.375-1.375 0-0.6875 0.21094-1.2539 0.64062-1.7031 0.35156-0.375 0.78125-0.5625 1.2812-0.5625 0.58203 0 1.1484 0.23047 1.7031 0.6875 0.14453 0.125 0.36328 0.37109 0.65625 0.73438l0.046875 0.046875c0.039063 0.054687 0.10156 0.13281 0.1875 0.23438zm0.26562 0.34375 0.95312 1.2344c0.007813 0 0.015625 0.007813 0.015625 0.015625l0.03125 0.03125c0.44531 0.48047 0.89062 0.71875 1.3281 0.71875 0.47656 0 0.875-0.21094 1.1875-0.64062 0.22656-0.33203 0.34375-0.71094 0.34375-1.1406 0-0.59375-0.17188-1.082-0.51562-1.4688-0.26172-0.28125-0.57812-0.4375-0.95312-0.46875h-0.125c-0.84375 0-1.5859 0.54688-2.2188 1.6406-0.011719 0.023437-0.027344 0.046875-0.046875 0.078125zm-0.6875 0.4375-0.96875-1.2344v-0.015625l-0.046875-0.03125c-0.4375-0.47656-0.88281-0.71875-1.3281-0.71875-0.48047 0-0.875 0.21484-1.1875 0.64062-0.23047 0.33594-0.34375 0.71484-0.34375 1.1406 0 0.59375 0.17578 1.0859 0.53125 1.4688 0.28125 0.32422 0.63281 0.48438 1.0625 0.48438 0.84375 0 1.582-0.54688 2.2188-1.6406 0.019531-0.03125 0.039062-0.0625 0.0625-0.09375z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="l" overflow="visible">
|
|
14
|
+
<path d="m0.875-0.59375 0.57812-2.3125c0.11328-0.42578 0.17188-0.70312 0.17188-0.82812 0-0.3125-0.10547-0.46875-0.3125-0.46875-0.27344 0-0.49609 0.32031-0.67188 0.95312-0.023437 0.074219-0.042969 0.15234-0.0625 0.23438-0.074219 0.14844-0.13281 0.22656-0.17188 0.23438-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.11328 0.0625-0.35156 0.1875-0.71875v-0.015625c0-0.007813 0.003906-0.015625 0.015625-0.015625v-0.015625l0.09375-0.20312c0.14453-0.26953 0.29688-0.4375 0.45312-0.5 0.09375-0.050781 0.19141-0.078125 0.29688-0.078125 0.375 0 0.64453 0.15625 0.8125 0.46875 0.050781 0.125 0.085938 0.26172 0.10938 0.40625 0.42578-0.58203 0.94141-0.875 1.5469-0.875 0.58203 0 0.94531 0.21875 1.0938 0.65625 0.039062 0.125 0.0625 0.26562 0.0625 0.42188 0 0.33594-0.20312 1.0625-0.60938 2.1875-0.11719 0.30469-0.17188 0.54297-0.17188 0.71875 0 0.21875 0.078125 0.32812 0.23438 0.32812 0.4375 0 0.77344-0.41016 1.0156-1.2344 0.03125-0.11328 0.066406-0.17188 0.10938-0.17188v-0.015625h0.046875c0.070312 0 0.10938 0.03125 0.10938 0.09375 0 0.11719-0.070313 0.32812-0.20312 0.64062-0.29297 0.60547-0.65625 0.90625-1.0938 0.90625-0.34375 0-0.58984-0.14062-0.73438-0.42188-0.0625-0.125-0.09375-0.25391-0.09375-0.39062 0-0.13281 0.035156-0.28906 0.10938-0.46875 0.42578-1.1641 0.64062-1.9414 0.64062-2.3281 0-0.46875-0.17969-0.70312-0.53125-0.70312-0.60547 0-1.1094 0.33594-1.5156 1-0.054688 0.074219-0.09375 0.14844-0.125 0.21875l-0.125 0.5c-0.03125 0.15625-0.089844 0.38281-0.17188 0.67188l-0.21875 0.90625c-0.11719 0.46094-0.17969 0.70312-0.1875 0.73438-0.0625 0.17578-0.1875 0.26953-0.375 0.28125-0.16797-0.03125-0.26172-0.11719-0.28125-0.26562 0 0.011719 0.023437-0.13281 0.078125-0.4375z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="k" overflow="visible">
|
|
17
|
+
<path d="m4.6875-2.7344c0 0.71094-0.27344 1.3555-0.8125 1.9375-0.51172 0.5625-1.0859 0.85938-1.7188 0.89062-0.054688 0.007812-0.10156 0.015625-0.14062 0.015625-0.58594 0-1.0273-0.22656-1.3281-0.6875-0.1875-0.28906-0.28125-0.625-0.28125-1 0-0.6875 0.26562-1.3203 0.79688-1.9062 0.50781-0.5625 1.0859-0.86719 1.7344-0.92188 0.050781-0.007812 0.10156-0.015625 0.15625-0.015625 0.57031 0 1.0078 0.22656 1.3125 0.67188 0.1875 0.29297 0.28125 0.63281 0.28125 1.0156zm-2.6719 2.625c0.39453 0 0.76562-0.19141 1.1094-0.57812 0.09375-0.10156 0.17578-0.21875 0.25-0.34375 0.28125-0.47656 0.46875-1.0703 0.5625-1.7812 0.007812-0.0625 0.015625-0.11719 0.015625-0.17188v-0.14062c0-0.48828-0.16406-0.81641-0.48438-0.98438-0.11719-0.0625-0.24609-0.09375-0.39062-0.09375-0.40625 0-0.78906 0.21484-1.1406 0.64062-0.054688 0.0625-0.10156 0.125-0.14062 0.1875-0.023437 0.03125-0.042969 0.0625-0.0625 0.09375-0.24219 0.38672-0.41797 0.92969-0.53125 1.625-0.03125 0.1875-0.046875 0.33984-0.046875 0.45312 0 0.55469 0.19141 0.90234 0.57812 1.0469 0.09375 0.03125 0.1875 0.046875 0.28125 0.046875z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="j" overflow="visible">
|
|
20
|
+
<path d="m4.625-3.3906-0.42188 1.6875c-0.074219 0.26172-0.10938 0.5-0.10938 0.71875 0.050781 0.55469 0.29688 0.84375 0.73438 0.875 0.44531 0 0.81641-0.28906 1.1094-0.875 0.21875-0.45703 0.38281-0.96875 0.5-1.5312 0.03125-0.125 0.046875-0.22266 0.046875-0.29688 0-0.33203-0.12109-0.61719-0.35938-0.85938-0.10547-0.082031-0.15625-0.17188-0.15625-0.26562 0-0.16406 0.085938-0.30078 0.26562-0.40625 0.070313-0.050781 0.14844-0.078125 0.23438-0.078125 0.1875 0 0.31641 0.12109 0.39062 0.35938 0.03125 0.09375 0.046875 0.21094 0.046875 0.34375 0 0.41797-0.13281 1.0469-0.39062 1.8906-0.09375 0.27344-0.18359 0.50781-0.26562 0.70312-0.35547 0.82422-0.83984 1.2344-1.4531 1.2344-0.64844 0-1.0625-0.23438-1.25-0.70312-0.26172 0.46875-0.60547 0.70312-1.0312 0.70312-0.65625 0-1.0938-0.22266-1.3125-0.67188-0.074219-0.16406-0.10938-0.36328-0.10938-0.59375 0-0.33203 0.17578-0.97656 0.53125-1.9375 0.007812-0.019531 0.019531-0.046875 0.03125-0.078125 0.11328-0.28906 0.17188-0.52344 0.17188-0.70312 0-0.21875-0.085937-0.32812-0.25-0.32812-0.40625 0-0.73047 0.37109-0.96875 1.1094-0.011719 0.042969-0.027344 0.089844-0.046875 0.14062-0.074219 0.10547-0.125 0.16406-0.15625 0.17188-0.074219 0-0.10938-0.03125-0.10938-0.09375 0-0.125 0.066406-0.33594 0.20312-0.64062 0.28906-0.60156 0.66016-0.90625 1.1094-0.90625 0.34375 0 0.58594 0.14844 0.73438 0.4375 0.0625 0.11719 0.09375 0.24609 0.09375 0.39062 0 0.11719-0.058594 0.32812-0.17188 0.64062-0.35547 0.90625-0.53125 1.5547-0.53125 1.9375 0 0.59375 0.26953 0.89844 0.8125 0.90625 0.36328 0 0.66406-0.28125 0.90625-0.84375v-0.17188c0-0.1875 0.03125-0.41016 0.09375-0.67188l0.5625-2.2344c0.0625-0.17578 0.1875-0.26953 0.375-0.28125 0.16406 0.03125 0.25781 0.12109 0.28125 0.26562l-0.14062 0.65625z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="i" overflow="visible">
|
|
23
|
+
<path d="m5.5938-5.8594 3.2344 4.75c0.25 0.36719 0.52344 0.57812 0.82812 0.64062h0.03125c0.13281 0.023438 0.33594 0.03125 0.60938 0.03125v0.4375c-0.58594-0.03125-1.1211-0.046875-1.6094-0.046875-1 0-1.668 0.015625-2 0.046875v-0.4375c0.55078 0 0.82812-0.14062 0.82812-0.42188 0-0.10156-0.070313-0.25781-0.20312-0.46875l-2.5312-3.75-1.625 1.5312v2.4531c0 0.28125 0.050781 0.46094 0.15625 0.53125 0.13281 0.085938 0.44531 0.125 0.9375 0.125h0.34375v0.4375c-0.32422-0.03125-1.0156-0.046875-2.0781-0.046875-1.043 0-1.7266 0.015625-2.0469 0.046875v-0.4375h0.32812c0.60156 0 0.95312-0.078125 1.0469-0.23438 0.039062-0.0625 0.0625-0.20312 0.0625-0.42188v-7.375c0-0.28125-0.058594-0.45703-0.17188-0.53125-0.125-0.082031-0.4375-0.125-0.9375-0.125h-0.32812v-0.4375c0.32031 0.03125 1.0078 0.046875 2.0625 0.046875 1.0508 0 1.7383-0.015625 2.0625-0.046875v0.4375h-0.34375c-0.60547 0-0.95312 0.078125-1.0469 0.23438-0.03125 0.0625-0.046875 0.20312-0.046875 0.42188v4.4531l4.375-4.1875c0.16406-0.14453 0.25-0.30078 0.25-0.46875 0-0.21875-0.14062-0.35938-0.42188-0.42188-0.0625-0.019531-0.13672-0.03125-0.21875-0.03125v-0.4375c0.3125 0.03125 0.90625 0.046875 1.7812 0.046875 0.55078 0 0.94531-0.015625 1.1875-0.046875v0.4375c-0.76172 0.011719-1.4219 0.29297-1.9844 0.84375z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="a" overflow="visible">
|
|
26
|
+
<path d="m5.4531-3.2344h-3.9062c0 0.94922 0.14062 1.6484 0.42188 2.0938 0.44531 0.58594 0.97656 0.89844 1.5938 0.9375 0.63281 0 1.1484-0.25781 1.5469-0.78125 0.13281-0.1875 0.25-0.40625 0.34375-0.65625 0.019531-0.125 0.078125-0.1875 0.17188-0.1875 0.125 0 0.1875 0.054687 0.1875 0.15625 0 0.21094-0.13281 0.49219-0.39062 0.84375-0.38672 0.52344-0.89062 0.83203-1.5156 0.9375-0.13672 0.03125-0.28125 0.046875-0.4375 0.046875-0.875 0-1.6211-0.33594-2.2344-1.0156-0.5625-0.61328-0.84375-1.3516-0.84375-2.2188 0-0.96875 0.33594-1.7695 1.0156-2.4062 0.53906-0.51953 1.1719-0.78125 1.8906-0.78125 1.0625 0 1.8008 0.44922 2.2188 1.3438 0.19531 0.41797 0.29688 0.88281 0.29688 1.3906 0 0.15625-0.03125 0.25-0.09375 0.28125-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625zm-3.8906-0.29688h3.3281c0-0.88281-0.19922-1.5508-0.59375-2-0.26172-0.28906-0.59375-0.4375-1-0.4375-0.46875 0-0.87109 0.21875-1.2031 0.65625-0.32422 0.42969-0.5 1.0234-0.53125 1.7812z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="h" overflow="visible">
|
|
29
|
+
<path d="m2.4531-4.7188v3.125c0 0.1875 0.035156 0.33984 0.10938 0.45312l0.078125 0.125c0.375 0.57422 0.86328 0.85938 1.4688 0.85938 0.59375 0 1.0859-0.30469 1.4844-0.92188 0.35156-0.53906 0.53125-1.1914 0.53125-1.9531 0-0.95703-0.26172-1.7188-0.78125-2.2812-0.32422-0.35156-0.6875-0.53125-1.0938-0.53125-0.66797 0-1.2148 0.29688-1.6406 0.89062-0.0625 0.074219-0.11719 0.15234-0.15625 0.23438zm0 3.8906v2.4844c0 0.3125 0.070313 0.5 0.21875 0.5625 0.10156 0.039062 0.39453 0.0625 0.875 0.0625v0.4375c-0.98047-0.03125-1.5117-0.046875-1.5938-0.046875-0.09375 0-0.61719 0.015625-1.5625 0.046875v-0.4375c0.55078 0 0.875-0.042969 0.96875-0.125l0.03125-0.03125c0.0625-0.085938 0.09375-0.24219 0.09375-0.46875v-6.5625c0-0.32031-0.070313-0.51953-0.20312-0.59375-0.11719-0.0625-0.41406-0.09375-0.89062-0.09375v-0.4375l2.0156-0.15625v0.92188c0.5625-0.61328 1.2188-0.92188 1.9688-0.92188 0.84375 0 1.5547 0.33984 2.1406 1.0156 0.51953 0.61719 0.78125 1.3281 0.78125 2.1406 0 0.98047-0.35938 1.7891-1.0781 2.4219-0.60547 0.51172-1.2891 0.76562-2.0469 0.76562-0.65625 0-1.1797-0.23828-1.5625-0.71875-0.085937-0.10156-0.13672-0.19141-0.15625-0.26562z"/>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="g" overflow="visible">
|
|
32
|
+
<path d="m2.4219-5.5938v3.8906c0 0.92969 0.26953 1.4297 0.8125 1.5h0.125c0.40625 0 0.6875-0.25781 0.84375-0.78125 0.0625-0.21875 0.09375-0.47656 0.09375-0.78125v-0.76562h0.34375v0.79688c0 0.76172-0.21484 1.3125-0.64062 1.6562-0.19922 0.15625-0.44531 0.23438-0.73438 0.23438-0.78125 0-1.3203-0.29688-1.6094-0.89062-0.13672-0.26953-0.20312-0.60156-0.20312-1v-3.8594h-1.1875v-0.3125c0.83203-0.039062 1.3828-0.5625 1.6562-1.5625 0.09375-0.36328 0.14453-0.74219 0.15625-1.1406h0.34375v2.5781h2v0.4375z"/>
|
|
33
|
+
</symbol>
|
|
34
|
+
<symbol id="f" overflow="visible">
|
|
35
|
+
<path d="m2.4062-1.0938c0 0.29297 0.054688 0.46875 0.17188 0.53125l0.015625 0.015625c0.125 0.074219 0.41406 0.10938 0.875 0.10938h0.29688v0.4375c-0.375-0.03125-0.96875-0.046875-1.7812-0.046875 0.03125 0-0.5 0.015625-1.5938 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.75c0-0.36328-0.070313-0.58594-0.20312-0.67188-0.11719-0.070313-0.32031-0.10938-0.60938-0.10938h-0.28125v-0.4375l1.9531-0.15625v1.5469c0.25-0.78906 0.66016-1.2852 1.2344-1.4844 0.15625-0.039062 0.31641-0.0625 0.48438-0.0625 0.4375 0 0.75 0.16406 0.9375 0.48438 0.0625 0.11719 0.09375 0.24219 0.09375 0.375 0 0.32422-0.15234 0.52344-0.45312 0.59375-0.054687 0.011719-0.10156 0.015625-0.14062 0.015625-0.29297 0-0.48047-0.125-0.5625-0.375-0.03125-0.0625-0.046875-0.13281-0.046875-0.21875 0-0.25781 0.10938-0.44141 0.32812-0.54688-0.023438-0.007813-0.074219-0.015625-0.15625-0.015625-0.625 0-1.0898 0.38281-1.3906 1.1406-0.17969 0.4375-0.26562 0.93359-0.26562 1.4844z"/>
|
|
36
|
+
</symbol>
|
|
37
|
+
<symbol id="e" overflow="visible">
|
|
38
|
+
<path d="m5.8125-4.7031-2.4688 5.9844c-0.44922 1.0625-1.0469 1.5938-1.7969 1.5938-0.48047 0-0.84375-0.1875-1.0938-0.5625-0.125-0.17969-0.1875-0.37109-0.1875-0.57812 0-0.32422 0.14844-0.52344 0.45312-0.59375h0.14062c0.28125 0 0.46094 0.12891 0.54688 0.39062 0.019531 0.0625 0.03125 0.125 0.03125 0.1875 0 0.33203-0.18359 0.53125-0.54688 0.59375 0.17578 0.16406 0.39453 0.25 0.65625 0.25 0.55078 0 1.0078-0.40234 1.375-1.2031 0.0625-0.125 0.14062-0.30469 0.23438-0.53125 0.125-0.28125 0.23828-0.55859 0.34375-0.82812l-2.0938-5.1094c-0.11719-0.26953-0.29688-0.42578-0.54688-0.46875-0.17969-0.007813-0.375-0.015625-0.59375-0.015625v-0.4375c0.41406 0.03125 0.86719 0.046875 1.3594 0.046875 0.28906 0 0.80078-0.015625 1.5312-0.046875v0.4375c-0.53125 0-0.79688 0.12109-0.79688 0.35938 0 0.03125 0.03125 0.11719 0.09375 0.25l1.5469 3.7656 1.4219-3.4375c0.050781-0.13281 0.078125-0.25 0.078125-0.34375 0-0.35156-0.19531-0.55078-0.57812-0.59375h-0.078125v-0.4375c0.61328 0.03125 1.0195 0.046875 1.2188 0.046875 0.38281 0 0.73438-0.015625 1.0469-0.046875v0.4375c-0.625 0-1.0586 0.29688-1.2969 0.89062z"/>
|
|
39
|
+
</symbol>
|
|
40
|
+
<symbol id="d" overflow="visible">
|
|
41
|
+
<path d="m2.4844-6.1875v5.1406c0 0.29297 0.050781 0.46875 0.15625 0.53125 0.11328 0.054687 0.38281 0.078125 0.8125 0.078125v0.4375c-0.94922-0.03125-1.4336-0.046875-1.4531-0.046875-0.125 0-0.63672 0.015625-1.5312 0.046875v-0.4375c0.53906 0 0.85938-0.039062 0.95312-0.125l0.03125-0.03125c0.0625-0.070312 0.09375-0.22656 0.09375-0.46875v-3.7656c0-0.375-0.074219-0.59766-0.21875-0.67188h-0.015625l-0.015625-0.015625c-0.11719-0.050781-0.375-0.078125-0.78125-0.078125v-0.4375zm0.046875-2.4375c0 0.34375-0.15234 0.57422-0.45312 0.6875-0.09375 0.042969-0.1875 0.0625-0.28125 0.0625-0.33594 0-0.5625-0.14844-0.6875-0.45312v-0.015625c-0.042969-0.09375-0.0625-0.1875-0.0625-0.28125 0-0.28906 0.12891-0.50391 0.39062-0.64062 0.10156-0.0625 0.22266-0.09375 0.35938-0.09375 0.3125 0 0.53516 0.13672 0.67188 0.40625 0.039062 0.10547 0.0625 0.21484 0.0625 0.32812z"/>
|
|
42
|
+
</symbol>
|
|
43
|
+
<symbol id="c" overflow="visible">
|
|
44
|
+
<path d="m1.5469-4.8125c0-0.36328-0.074219-0.58594-0.21875-0.67188-0.11719-0.070313-0.3125-0.10938-0.59375-0.10938h-0.28125v-0.4375l1.9688-0.15625v1.4688c0.4375-0.97656 1.1289-1.4688 2.0781-1.4688 0.69531 0 1.1875 0.17188 1.4688 0.51562 0.25 0.29297 0.39062 0.6875 0.42188 1.1875v0.95312 2.6719c0.007813 0.23047 0.14453 0.35938 0.40625 0.39062 0.11328 0.023438 0.34375 0.03125 0.6875 0.03125v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.875-0.039062 0.96875-0.125l0.015625-0.03125c0.070313-0.070312 0.10938-0.22656 0.10938-0.46875v-3.2656c0-0.92578-0.26562-1.4375-0.79688-1.5312-0.085937-0.007813-0.16797-0.015625-0.25-0.015625-0.5625 0-1.0391 0.24609-1.4219 0.73438-0.3125 0.40625-0.46875 0.90625-0.46875 1.5v2.5781c0 0.3125 0.078125 0.5 0.23438 0.5625 0.10156 0.042969 0.39062 0.0625 0.85938 0.0625v0.4375c-0.94922-0.03125-1.4688-0.046875-1.5625-0.046875-0.074219 0-0.60156 0.015625-1.5781 0.046875v-0.4375c0.55078 0 0.86719-0.039062 0.95312-0.125l0.03125-0.03125c0.070312-0.070312 0.10938-0.22656 0.10938-0.46875z"/>
|
|
45
|
+
</symbol>
|
|
46
|
+
<symbol id="b" overflow="visible">
|
|
47
|
+
<path d="m3.1094-2.4062c0.40625 0 0.73828-0.1875 1-0.5625 0.14453-0.25 0.21875-0.64062 0.21875-1.1719-0.042969-1.125-0.44922-1.6953-1.2188-1.7188-0.41797 0-0.75 0.18359-1 0.54688-0.14844 0.26172-0.21875 0.65625-0.21875 1.1875 0.039063 1.1172 0.44531 1.6875 1.2188 1.7188zm-1.3906-0.10938c-0.15625 0.1875-0.23438 0.40625-0.23438 0.65625 0 0.38672 0.14844 0.66797 0.45312 0.84375 0.09375 0.054687 0.1875 0.085937 0.28125 0.09375 0.070312 0.011719 0.42578 0.015625 1.0625 0.015625 0.95703 0 1.6562 0.085938 2.0938 0.25 0.10156 0.03125 0.20703 0.078125 0.3125 0.14062 0.5625 0.375 0.86328 0.90625 0.90625 1.5938 0 0.60156-0.39062 1.0781-1.1719 1.4219-0.5625 0.25781-1.2109 0.39062-1.9375 0.39062-1.0859 0-1.9297-0.25781-2.5312-0.76562-0.375-0.29297-0.5625-0.63281-0.5625-1.0156 0-0.46875 0.23828-0.85547 0.71875-1.1562 0.16406-0.10156 0.35938-0.1875 0.57812-0.25-0.38672-0.28906-0.59375-0.70703-0.625-1.25 0-0.4375 0.14453-0.82031 0.4375-1.1562-0.41797-0.39453-0.63672-0.875-0.65625-1.4375 0-0.64453 0.28125-1.1719 0.84375-1.5781 0.40625-0.3125 0.87891-0.46875 1.4219-0.46875 0.5625 0 1.0547 0.16797 1.4844 0.5 0.44531-0.4375 0.94141-0.65625 1.4844-0.65625 0.36328 0 0.59375 0.16797 0.6875 0.5 0.019531 0.0625 0.03125 0.125 0.03125 0.1875-0.042969 0.24219-0.17969 0.38281-0.40625 0.42188-0.21094 0-0.34375-0.097656-0.40625-0.29688v-0.10938c0-0.19531 0.070313-0.32031 0.21875-0.375-0.03125-0.007813-0.078125-0.015625-0.14062-0.015625-0.46094 0-0.88281 0.18359-1.2656 0.54688 0.38281 0.35547 0.57812 0.80859 0.57812 1.3594 0 0.64844-0.28125 1.1719-0.84375 1.5781-0.40625 0.30469-0.88281 0.45312-1.4219 0.45312-0.52344 0-0.98438-0.14062-1.3906-0.42188zm1.7812 5.0781c0.88281 0 1.5547-0.23438 2.0156-0.70312 0.22656-0.23047 0.34375-0.48047 0.34375-0.75 0-0.69922-0.54688-1.0898-1.6406-1.1719h-0.015625c-0.24219-0.019531-0.60938-0.03125-1.1094-0.03125h-0.82812c-0.4375 0.023438-0.76562 0.22656-0.98438 0.625-0.10547 0.17578-0.15625 0.36719-0.15625 0.57812 0 0.4375 0.26953 0.80078 0.8125 1.0938 0.4375 0.23828 0.95703 0.35938 1.5625 0.35938z"/>
|
|
48
|
+
</symbol>
|
|
49
|
+
</defs>
|
|
50
|
+
<g>
|
|
51
|
+
<rect width="131" height="55" fill="#fff"/>
|
|
52
|
+
<g>
|
|
53
|
+
<use x="10" y="11.933594" xlink:href="#o"/>
|
|
54
|
+
</g>
|
|
55
|
+
<g>
|
|
56
|
+
<use x="24" y="15.714844" xlink:href="#n"/>
|
|
57
|
+
</g>
|
|
58
|
+
<g>
|
|
59
|
+
<use x="31.621094" y="15.714844" xlink:href="#m"/>
|
|
60
|
+
</g>
|
|
61
|
+
<g>
|
|
62
|
+
<use x="17.777344" y="43.535156" xlink:href="#l"/>
|
|
63
|
+
</g>
|
|
64
|
+
<g>
|
|
65
|
+
<use x="23.660156" y="43.535156" xlink:href="#k"/>
|
|
66
|
+
</g>
|
|
67
|
+
<g>
|
|
68
|
+
<use x="28.410156" y="43.535156" xlink:href="#j"/>
|
|
69
|
+
</g>
|
|
70
|
+
<g>
|
|
71
|
+
<use x="47.367188" y="30.988281" xlink:href="#i"/>
|
|
72
|
+
</g>
|
|
73
|
+
<g>
|
|
74
|
+
<use x="58.253906" y="30.988281" xlink:href="#a"/>
|
|
75
|
+
</g>
|
|
76
|
+
<g>
|
|
77
|
+
<use x="64.476563" y="30.988281" xlink:href="#a"/>
|
|
78
|
+
</g>
|
|
79
|
+
<g>
|
|
80
|
+
<use x="70.699219" y="30.988281" xlink:href="#h"/>
|
|
81
|
+
</g>
|
|
82
|
+
<g>
|
|
83
|
+
<use x="83.144531" y="30.988281" xlink:href="#g"/>
|
|
84
|
+
</g>
|
|
85
|
+
<g>
|
|
86
|
+
<use x="88.589844" y="30.988281" xlink:href="#f"/>
|
|
87
|
+
</g>
|
|
88
|
+
<g>
|
|
89
|
+
<use x="94.074219" y="30.988281" xlink:href="#e"/>
|
|
90
|
+
</g>
|
|
91
|
+
<g>
|
|
92
|
+
<use x="101.460938" y="30.988281" xlink:href="#d"/>
|
|
93
|
+
</g>
|
|
94
|
+
<g>
|
|
95
|
+
<use x="105.351563" y="30.988281" xlink:href="#c"/>
|
|
96
|
+
</g>
|
|
97
|
+
<g>
|
|
98
|
+
<use x="113.128906" y="30.988281" xlink:href="#b"/>
|
|
99
|
+
</g>
|
|
100
|
+
</g>
|
|
101
|
+
</svg>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="81pt" height="63pt" version="1.1" viewBox="0 0 81 63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="g" overflow="visible">
|
|
5
|
+
<path d="m0.95312-9.9688h10.375v1.6719h-4.5625v8.2969h-1.6719v-8.2969h-4.1406z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="f" overflow="visible">
|
|
8
|
+
<path d="m0.82812-6.6406c0-2.2188 1.6602-3.3281 4.9844-3.3281h4.9844v1.6719h-4.9844c-2.2109 0-3.3125 0.55469-3.3125 1.6562v0.60938c0.80078-0.40625 1.9062-0.60938 3.3125-0.60938h3.3125v1.6562h-3.3125c-2.1562 0-3.2617 0.52734-3.3125 1.5781v0.09375c0 1.0938 1.1016 1.6406 3.3125 1.6406h4.9844v1.6719h-4.9844c-3.3242 0-4.9844-1.1016-4.9844-3.3125z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="e" overflow="visible">
|
|
11
|
+
<path d="m1.1562-0.82812c0-1.9688 0.58203-3.3516 1.75-4.1562-1.168-0.78906-1.75-2.1719-1.75-4.1406v-0.84375h1.6719v0.84375c0 2.2109 1.1016 3.3125 3.3125 3.3125 2.207 0 3.3125-1.1016 3.3125-3.3125v-0.84375h1.6719v0.84375c0 1.9688-0.58984 3.3516-1.7656 4.1406 1.1758 0.80469 1.7656 2.1875 1.7656 4.1562v0.82812h-1.6719v-0.82812c0-2.207-1.1055-3.3125-3.3125-3.3125-2.2109 0-3.3125 1.1055-3.3125 3.3125v0.82812h-1.6719z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="d" overflow="visible">
|
|
14
|
+
<path d="m7.4531-24.328h0.17188c0.72656 0.88672 1.1719 1.3281 1.3281 1.3281 1.0078-0.34375 2.0039-0.51562 2.9844-0.51562h0.17188c0.86328 0 1.8906 0.17188 3.0781 0.51562 0.070312 0 0.49219-0.44141 1.2656-1.3281h0.17188v0.17188l-0.98438 1.2969v0.17188c0.67578 0.1875 1.4727 0.89062 2.3906 2.1094 0.71875 1.3359 1.0781 2.3984 1.0781 3.1875l-0.20312 0.09375h-13.719l-0.1875-0.09375c0-1.0703 0.50391-2.3672 1.5156-3.8906 0.53125-0.5625 1.1797-1.0703 1.9531-1.5312v-0.046875c-0.67969-0.83203-1.0156-1.3203-1.0156-1.4688zm-1.2656 5.8438c0.050781 0.074219 0.078125 0.13281 0.078125 0.17188h11.578v-0.09375c-0.09375-0.78906-0.58594-1.6641-1.4688-2.625-1.0938-0.9375-2.4336-1.4062-4.0156-1.4062h-0.70312c-2.6172 0-4.3672 1.1484-5.25 3.4375-0.074219 0.34375-0.14844 0.51562-0.21875 0.51562zm2.7031-2.8594c0.50781 0 0.8125 0.3125 0.90625 0.9375 0 0.39844-0.30469 0.65234-0.90625 0.76562-0.41797 0-0.6875-0.28906-0.8125-0.875 0.14453-0.55078 0.41406-0.82812 0.8125-0.82812zm6.2969 0c0.53906 0.21094 0.8125 0.51172 0.8125 0.90625-0.21094 0.53125-0.5 0.79688-0.875 0.79688-0.42969 0-0.71875-0.28906-0.875-0.875 0.1875-0.55078 0.5-0.82812 0.9375-0.82812zm-12.766 4.0469h0.14062c0.8125 0 1.2852 0.52734 1.4219 1.5781v5.9844c-0.09375 1.0547-0.61719 1.5781-1.5625 1.5781-0.82422 0-1.3047-0.52344-1.4375-1.5781v-5.9844c0.13281-1.0508 0.61328-1.5781 1.4375-1.5781zm19.141 0h0.10938c0.83203 0 1.3203 0.52734 1.4688 1.5781v5.9844c-0.125 1.0547-0.65234 1.5781-1.5781 1.5781-0.84375 0-1.3359-0.52344-1.4688-1.5781v-5.9844c0.13281-1.0508 0.625-1.5781 1.4688-1.5781zm-19.562 1.5781v5.9844c0 0.375 0.1875 0.5625 0.5625 0.5625 0.30078-0.09375 0.45312-0.28125 0.45312-0.5625v-5.9844c0-0.375-0.19922-0.5625-0.59375-0.5625-0.28125 0.09375-0.42188 0.28125-0.42188 0.5625zm19.109 0v5.9844c0 0.375 0.1875 0.5625 0.5625 0.5625 0.30078-0.09375 0.45312-0.28125 0.45312-0.5625v-5.9844c0-0.375-0.1875-0.5625-0.5625-0.5625-0.30469 0.09375-0.45312 0.28125-0.45312 0.5625zm-15.922-0.5625h13.781c0.070312 0 0.12891 0.074219 0.17188 0.21875v9.625c0 1.0938-0.24609 1.6406-0.73438 1.6406h-1.7188v2.4844c0 1.5234-0.52344 2.2812-1.5625 2.2812-0.86719 0-1.3711-0.55078-1.5156-1.6562v-3.1094h-3.0781v3.1875c-0.09375 1.0547-0.62109 1.5781-1.5781 1.5781-0.8125 0-1.2891-0.52344-1.4219-1.5781v-3.1875h-1.7188c-0.44922 0-0.71875-0.33594-0.8125-1.0156v-10.25c0-0.070312 0.0625-0.14453 0.1875-0.21875zm0.82812 1.0156v9.4531h2.3125c0.070313 0 0.14453 0.074219 0.21875 0.21875v3.9844c0 0.375 0.17969 0.5625 0.54688 0.5625 0.28125-0.09375 0.42188-0.28125 0.42188-0.5625v-3.9844c0-0.070312 0.070313-0.14453 0.21875-0.21875h4.75c0.070313 0 0.14453 0.074219 0.21875 0.21875v4.2344c0.09375 0.21094 0.25391 0.3125 0.48438 0.3125h0.078125c0.25-0.11328 0.375-0.30078 0.375-0.5625v-3.9844c0-0.070312 0.054687-0.14453 0.17188-0.21875h2.2812v-9.4531z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="c" overflow="visible">
|
|
17
|
+
<path d="m0.95312-9.9688h10.375v1.6719h-4.5625v8.2969h-1.6719v-8.2969h-4.1406z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="b" overflow="visible">
|
|
20
|
+
<path d="m0.82812-6.6406c0-2.2188 1.6602-3.3281 4.9844-3.3281h4.9844v1.6719h-4.9844c-2.2109 0-3.3125 0.55469-3.3125 1.6562v0.60938c0.80078-0.40625 1.9062-0.60938 3.3125-0.60938h3.3125v1.6562h-3.3125c-2.1562 0-3.2617 0.52734-3.3125 1.5781v0.09375c0 1.0938 1.1016 1.6406 3.3125 1.6406h4.9844v1.6719h-4.9844c-3.3242 0-4.9844-1.1016-4.9844-3.3125z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="a" overflow="visible">
|
|
23
|
+
<path d="m1.1562-0.82812c0-1.9688 0.58203-3.3516 1.75-4.1562-1.168-0.78906-1.75-2.1719-1.75-4.1406v-0.84375h1.6719v0.84375c0 2.2109 1.1016 3.3125 3.3125 3.3125 2.207 0 3.3125-1.1016 3.3125-3.3125v-0.84375h1.6719v0.84375c0 1.9688-0.58984 3.3516-1.7656 4.1406 1.1758 0.80469 1.7656 2.1875 1.7656 4.1562v0.82812h-1.6719v-0.82812c0-2.207-1.1055-3.3125-3.3125-3.3125-2.2109 0-3.3125 1.1055-3.3125 3.3125v0.82812h-1.6719z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
</defs>
|
|
26
|
+
<g>
|
|
27
|
+
<rect width="81" height="63" fill="#fff"/>
|
|
28
|
+
<g>
|
|
29
|
+
<use x="10" y="21.761719" xlink:href="#g"/>
|
|
30
|
+
</g>
|
|
31
|
+
<g>
|
|
32
|
+
<use x="21.84375" y="21.761719" xlink:href="#f"/>
|
|
33
|
+
</g>
|
|
34
|
+
<g>
|
|
35
|
+
<use x="33.6875" y="21.761719" xlink:href="#e"/>
|
|
36
|
+
</g>
|
|
37
|
+
<g>
|
|
38
|
+
<use x="10" y="51.179688" xlink:href="#d"/>
|
|
39
|
+
</g>
|
|
40
|
+
<g>
|
|
41
|
+
<use x="34.675781" y="51.179687" xlink:href="#c"/>
|
|
42
|
+
</g>
|
|
43
|
+
<g>
|
|
44
|
+
<use x="46.519531" y="51.179687" xlink:href="#b"/>
|
|
45
|
+
</g>
|
|
46
|
+
<g>
|
|
47
|
+
<use x="58.363281" y="51.179687" xlink:href="#a"/>
|
|
48
|
+
</g>
|
|
49
|
+
</g>
|
|
50
|
+
</svg>
|
|
Binary file
|
|
Binary file
|