@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,54 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="86pt" height="55pt" version="1.1" viewBox="0 0 86 55" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="h" 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="g" 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="f" 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="e" 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="d" 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="c" 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="b" overflow="visible">
|
|
23
|
+
<path d="m2.0625-9.8281h1.1875c0-0.019531 0.003906-0.035156 0.015625-0.046875 0.28906-0.86328 0.46094-1.5039 0.51562-1.9219 0.007812-0.082031 0.03125-0.12891 0.0625-0.14062 0.03125-0.03125 0.082031-0.03125 0.15625 0 0.23828 0.10547 0.51562 0.24219 0.82812 0.40625 0.09375 0.0625 0.13281 0.12109 0.125 0.17188-0.011719 0.023437-0.046875 0.046875-0.10938 0.078125-0.19922 0.085938-0.33594 0.15234-0.40625 0.20312-0.042969 0.054687-0.078125 0.13672-0.10938 0.25-0.11719 0.30469-0.23047 0.63672-0.34375 1h1.3438c0.125 0 0.20312-0.015625 0.23438-0.046875l0.375-0.46875c0.03125-0.070312 0.078125-0.10938 0.14062-0.10938 0.050781 0 0.09375 0.03125 0.125 0.09375 0.28125 0.27344 0.53516 0.53125 0.76562 0.78125 0.03125 0.0625 0.023438 0.10156-0.015625 0.10938-0.3125 0.13672-0.5 0.24609-0.5625 0.32812-0.0625 0.054687-0.14844 0.23438-0.25 0.54688-0.23047 0.61719-0.50781 1.168-0.82812 1.6562 0.007812 0 0.019531 0.007812 0.03125 0.015625 0.39453 0.13672 0.67578 0.26562 0.84375 0.39062 0.21875 0.15625 0.36328 0.35156 0.4375 0.57812 0.03125 0.21094 0.015625 0.40234-0.046875 0.57812-0.0625 0.13672-0.11719 0.20312-0.15625 0.20312-0.054687 0.011719-0.10938-0.039063-0.17188-0.15625-0.32422-0.35156-0.74609-0.67578-1.2656-0.96875-0.042969-0.019531-0.078125-0.035156-0.10938-0.046875-0.38672 0.42969-0.84375 0.82422-1.375 1.1875-0.66797 0.4375-1.4844 0.82422-2.4531 1.1562-0.1875 0.042969-0.28906-0.003906-0.29688-0.14062-0.023438-0.13281 0.050781-0.22266 0.21875-0.26562 0.66406-0.23828 1.3125-0.56641 1.9375-0.98438 0.59375-0.39453 1.0625-0.80078 1.4062-1.2188-0.54297-0.22656-1.1562-0.44531-1.8438-0.65625-0.09375-0.03125-0.14844-0.066406-0.15625-0.10938 0-0.039062 0.003906-0.082031 0.015625-0.125 0.25781-0.53125 0.51953-1.1641 0.78125-1.9062h-0.84375c-0.24219 0-0.51562 0.03125-0.82812 0.09375-0.042969 0.011719-0.070312 0-0.078125-0.03125-0.125-0.16406-0.23047-0.32031-0.3125-0.46875-0.0625-0.09375-0.03125-0.125 0.09375-0.09375 0.55078 0.042969 0.85938 0.070312 0.92188 0.078125zm3.5625 0.42188h-1.7969c-0.1875 0.5-0.41406 1.043-0.67188 1.625-0.085938 0.1875-0.12109 0.30469-0.10938 0.34375 0.007813 0.023438 0.039063 0.039062 0.09375 0.046875 0.55078 0.054687 1.0625 0.14844 1.5312 0.28125 0.375-0.625 0.69141-1.3906 0.95312-2.2969zm-2.5156 5.8594h3.3281c0.0625-0.40625 0.085938-0.78906 0.078125-1.1562-0.26172 0.09375-0.53125 0.18359-0.8125 0.26562-0.1875 0.03125-0.28906-0.019531-0.29688-0.15625-0.011719-0.14453 0.066406-0.22266 0.23438-0.23438 0.78125-0.25 1.5391-0.59766 2.2812-1.0469 0.58203-0.35156 1.0664-0.72266 1.4531-1.1094-0.09375-0.125-0.18359-0.25-0.26562-0.375-0.4375-0.65625-0.85547-1.5547-1.25-2.7031-0.10547 0-0.20312 0.015625-0.29688 0.046875-0.042969 0-0.070312-0.007813-0.078125-0.03125-0.125-0.17578-0.23047-0.33594-0.3125-0.48438-0.0625-0.09375-0.03125-0.125 0.09375-0.09375 0.55078 0.042969 0.85938 0.070312 0.92188 0.078125h2.6094c0.125 0 0.20312-0.007813 0.23438-0.03125l0.375-0.46875c0.03125-0.070313 0.078125-0.10938 0.14062-0.10938 0.050781 0 0.09375 0.027344 0.125 0.078125 0.28125 0.27344 0.53516 0.53125 0.76562 0.78125 0.03125 0.0625 0.023438 0.10156-0.015625 0.10938-0.3125 0.13672-0.5 0.24609-0.5625 0.32812-0.0625 0.054687-0.16406 0.24609-0.29688 0.57812-0.34375 0.84375-0.76562 1.5703-1.2656 2.1719l-0.078125 0.078125c0.28125 0.25 0.58203 0.46875 0.90625 0.65625 0.60156 0.35547 1.2656 0.58984 1.9844 0.70312 0.0625 0.023437 0.14844 0.03125 0.26562 0.03125 0.050781 0.011719 0.078125 0.046875 0.078125 0.10938-0.011719 0.074219-0.03125 0.10938-0.0625 0.10938-0.15625 0.042969-0.30859 0.12109-0.45312 0.23438-0.16797 0.14844-0.29297 0.27734-0.375 0.39062-0.023438 0.03125-0.078125 0.03125-0.17188 0-0.96875-0.4375-1.6797-0.85156-2.125-1.25-0.1875-0.16406-0.36719-0.33203-0.53125-0.5-0.35547 0.3125-0.75781 0.61719-1.2031 0.90625-0.5 0.29297-1.0703 0.57031-1.7031 0.82812 0.375 0.09375 0.70703 0.21094 1 0.34375 0.0625 0.03125 0.085937 0.070312 0.078125 0.10938-0.011719 0.023437-0.046875 0.046875-0.10938 0.078125-0.26172 0.0625-0.40625 0.11719-0.4375 0.15625-0.054687 0.03125-0.078125 0.070312-0.078125 0.10938-0.042969 0.16797-0.078125 0.32422-0.10938 0.46875h3.2188c0.10156-0.007813 0.17188-0.03125 0.20312-0.0625l0.3125-0.4375c0.0625-0.09375 0.12891-0.09375 0.20312 0 0.34375 0.32422 0.60938 0.60156 0.79688 0.82812 0.050781 0.085938 0.039062 0.13281-0.03125 0.14062-0.28125 0.10547-0.42969 0.16406-0.4375 0.17188-0.011719 0-0.023438 0.023438-0.03125 0.0625-0.074219 0.34375-0.17188 0.83594-0.29688 1.4688-0.11719 0.58594-0.22656 1.0469-0.32812 1.3906-0.085938 0.23828-0.1875 0.41016-0.3125 0.51562-0.29297 0.3125-0.63281 0.53516-1.0156 0.67188-0.09375 0.0625-0.16797 0.0625-0.21875 0-0.085937-0.10547-0.22656-0.21875-0.42188-0.34375-0.26172-0.16797-0.77344-0.3125-1.5312-0.4375-0.14844-0.042969-0.21484-0.09375-0.20312-0.15625 0.019531-0.074219 0.085937-0.10547 0.20312-0.09375 1.0195 0.082031 1.7383 0.10938 2.1562 0.078125 0.22656-0.023438 0.39453-0.089844 0.5-0.20312 0.082031-0.070312 0.14844-0.16406 0.20312-0.28125 0.10156-0.21875 0.20703-0.62891 0.3125-1.2344 0.14453-0.70703 0.25781-1.2578 0.34375-1.6562h-3.7188c-0.1875 0.74219-0.42188 1.3281-0.70312 1.7656-0.375 0.57422-0.88281 1.043-1.5156 1.4062-0.78125 0.44531-1.9961 0.84766-3.6406 1.2031-0.125 0.007812-0.19531-0.042969-0.20312-0.15625 0.007813-0.10547 0.070313-0.16797 0.1875-0.1875 1.5195-0.41797 2.6758-0.88672 3.4688-1.4062 0.73828-0.50781 1.25-1.207 1.5312-2.0938 0.0625-0.1875 0.10938-0.36328 0.14062-0.53125h-3.0312c-0.25 0-0.53125 0.039062-0.84375 0.10938-0.042969 0-0.070312-0.007813-0.078125-0.03125-0.11719-0.17578-0.21875-0.33594-0.3125-0.48438-0.054687-0.09375-0.023437-0.125 0.09375-0.09375 0.5625 0.042969 0.875 0.070312 0.9375 0.078125zm6.6719-3.8906c0.53125-0.6875 0.96875-1.582 1.3125-2.6875h-2.7031c-0.085937 0.011719-0.16797 0.023438-0.25 0.03125 0.5625 1.1562 1.0508 1.9766 1.4688 2.4531 0.050781 0.074219 0.10938 0.14062 0.17188 0.20312z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="a" overflow="visible">
|
|
26
|
+
<path d="m10.906-7.8281h-3.8438c-0.074219 1.2422-0.27734 2.3711-0.60938 3.3906-0.42969 1.2734-1 2.293-1.7188 3.0625-0.84375 0.89844-2.0742 1.7188-3.6875 2.4688-0.14844 0.070312-0.23438 0.066406-0.26562-0.015625-0.042969-0.09375-0.011719-0.16797 0.09375-0.21875 1.2578-0.64844 2.2656-1.3438 3.0156-2.0938 0.78125-0.82031 1.3945-1.8789 1.8438-3.1719 0.35156-1.0938 0.57812-2.2344 0.67188-3.4219h-3.5938c-0.24219 0-0.51562 0.039063-0.82812 0.10938-0.042969 0-0.070313-0.007812-0.078125-0.03125-0.125-0.17578-0.23047-0.33594-0.3125-0.48438-0.0625-0.09375-0.03125-0.125 0.09375-0.09375 0.55078 0.042969 0.85938 0.070313 0.92188 0.078125h3.8125c0.019531-0.26953 0.03125-0.53906 0.03125-0.8125v-1.0938c-0.011719-0.33203-0.046875-0.74219-0.10938-1.2344-0.023438-0.11328-0.011719-0.1875 0.03125-0.21875 0.019531-0.03125 0.078125-0.023437 0.17188 0.015625 0.39453 0.17969 0.73438 0.33984 1.0156 0.48438 0.050781 0.03125 0.078125 0.070313 0.078125 0.10938 0 0.042969-0.011719 0.070312-0.03125 0.078125-0.19922 0.14844-0.3125 0.23438-0.34375 0.26562-0.09375 0.10547-0.14844 0.27344-0.15625 0.5v1.0938l-0.03125 0.8125h3.4219c0.10156-0.007812 0.17188-0.03125 0.20312-0.0625l0.3125-0.4375c0.0625-0.09375 0.12891-0.09375 0.20312 0 0.34375 0.28125 0.61328 0.52344 0.8125 0.71875 0.050781 0.0625 0.046875 0.10938-0.015625 0.14062-0.26172 0.13672-0.39844 0.21094-0.40625 0.21875-0.042969 0.042969-0.0625 0.10156-0.0625 0.17188-0.03125 0.80469-0.074219 1.9336-0.125 3.3906-0.0625 1.3438-0.15234 2.418-0.26562 3.2188-0.085938 0.55469-0.24609 0.97656-0.48438 1.2812-0.29297 0.32031-0.64062 0.56641-1.0469 0.73438-0.10547 0.0625-0.17188 0.0625-0.20312 0-0.074219-0.125-0.20312-0.24609-0.39062-0.35938-0.28125-0.17969-0.79297-0.32812-1.5312-0.45312-0.14844-0.042969-0.21484-0.09375-0.20312-0.15625 0.019531-0.074219 0.085937-0.10547 0.20312-0.09375 0.96875 0.10156 1.6602 0.14062 2.0781 0.10938 0.22656-0.023437 0.39062-0.089844 0.48438-0.20312 0.17578-0.16406 0.30469-0.41016 0.39062-0.73438 0.14453-0.53906 0.23828-1.5391 0.28125-3 0.0625-1.7383 0.11719-3.0938 0.17188-4.0625z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
</defs>
|
|
29
|
+
<g>
|
|
30
|
+
<rect width="86" height="55" fill="#fff"/>
|
|
31
|
+
<g>
|
|
32
|
+
<use x="10" y="11.933594" xlink:href="#h"/>
|
|
33
|
+
</g>
|
|
34
|
+
<g>
|
|
35
|
+
<use x="24" y="15.714844" xlink:href="#g"/>
|
|
36
|
+
</g>
|
|
37
|
+
<g>
|
|
38
|
+
<use x="31.621094" y="15.714844" xlink:href="#f"/>
|
|
39
|
+
</g>
|
|
40
|
+
<g>
|
|
41
|
+
<use x="17.777344" y="43.535156" xlink:href="#e"/>
|
|
42
|
+
</g>
|
|
43
|
+
<g>
|
|
44
|
+
<use x="23.660156" y="43.535156" xlink:href="#d"/>
|
|
45
|
+
</g>
|
|
46
|
+
<g>
|
|
47
|
+
<use x="28.410156" y="43.535156" xlink:href="#c"/>
|
|
48
|
+
</g>
|
|
49
|
+
<g>
|
|
50
|
+
<use x="47.366789" y="30.988536" xlink:href="#b"/>
|
|
51
|
+
<use x="61.36679" y="30.988536" xlink:href="#a"/>
|
|
52
|
+
</g>
|
|
53
|
+
</g>
|
|
54
|
+
</svg>
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="257pt" height="33pt" version="1.1" viewBox="0 0 257 33" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<symbol id="d" overflow="visible">
|
|
5
|
+
<path d="m2.5-1.6094 4.875-8.1719c0.09375-0.15625 0.21094-0.23828 0.35938-0.25 0.14453 0 0.22656 0.046875 0.25 0.14062 0.007813 0.03125 0.019531 0.10156 0.03125 0.20312l0.84375 8.75c0.03125 0.23047 0.085937 0.37109 0.17188 0.42188h0.015625v0.015625c0.11328 0.042969 0.35156 0.0625 0.71875 0.0625 0.20703 0 0.31641 0.054688 0.32812 0.15625 0 0.1875-0.085938 0.28125-0.25 0.28125l-1.5625-0.046875h-0.015625l-1.7344 0.046875h-0.015625c-0.13672 0-0.20312-0.050781-0.20312-0.15625 0.070312-0.17578 0.1875-0.26953 0.34375-0.28125 0.66406 0 1-0.14844 1-0.45312 0 0.011719-0.074219-0.76953-0.21875-2.3438h-3.5156l-1.0625 1.7969c-0.13672 0.23047-0.20312 0.40234-0.20312 0.51562 0 0.29297 0.21875 0.45312 0.65625 0.48438 0.15625 0 0.23438 0.058594 0.23438 0.17188 0 0.17969-0.089844 0.26562-0.26562 0.26562l-1.3438-0.046875h-0.0625l-1.1719 0.046875h-0.03125c-0.125 0-0.1875-0.050781-0.1875-0.15625 0-0.16406 0.070313-0.25391 0.21875-0.26562v-0.015625h0.078125c0.59375-0.03125 1.0703-0.28125 1.4375-0.75 0.09375-0.125 0.1875-0.26562 0.28125-0.42188zm1.6875-2.0625h3.2031l-0.45312-4.6094z"/>
|
|
6
|
+
</symbol>
|
|
7
|
+
<symbol id="c" overflow="visible">
|
|
8
|
+
<path d="m2.2344-1.0938 1.875-7.5156c0.039063-0.14453 0.0625-0.23438 0.0625-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.03125-0.125c-0.15625-0.019531-0.33594-0.03125-0.53125-0.03125-0.25 0-0.38281-0.050781-0.39062-0.15625 0-0.16406 0.066406-0.25781 0.20312-0.28125h4.9062c1.0703 0 1.8359 0.32031 2.2969 0.95312 0.19531 0.30469 0.29688 0.63281 0.29688 0.98438 0 0.75-0.41797 1.4062-1.25 1.9688-0.011719 0-0.023437 0.007812-0.03125 0.015625-0.5 0.3125-1.0469 0.52734-1.6406 0.64062 0.95703 0.11719 1.6133 0.49219 1.9688 1.125 0.13281 0.26172 0.20312 0.54297 0.20312 0.84375 0 0.6875-0.32812 1.3281-0.98438 1.9219l-0.015625 0.015625c-0.80469 0.73047-1.7578 1.0938-2.8594 1.0938h-5c-0.24219 0-0.36719-0.050781-0.375-0.15625 0-0.16406 0.066406-0.25781 0.20312-0.28125h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10156-0.20312 0.15625-0.39062 0-0.007813 0.003906-0.035156 0.015625-0.078125zm2.125-4.0312h2.0312c0.92578 0 1.6914-0.33203 2.2969-1 0.41406-0.47656 0.625-1 0.625-1.5625 0-0.67578-0.28125-1.1172-0.84375-1.3281-0.19922-0.070313-0.42969-0.10938-0.6875-0.10938h-1.7969c-0.34375 0-0.55469 0.046875-0.625 0.14062v0.015625h-0.015625v0.015625c-0.03125 0.054687-0.074219 0.17188-0.125 0.35938zm-0.64062 4.6875h1.9062c0.89453 0 1.6406-0.33203 2.2344-1 0.44531-0.51953 0.67188-1.0977 0.67188-1.7344 0-0.6875-0.24609-1.1719-0.73438-1.4531-0.24219-0.125-0.53125-0.1875-0.875-0.1875h-2.6562l-0.96875 3.9062c-0.042969 0.16797-0.0625 0.27344-0.0625 0.3125 0 0.085938 0.039063 0.13281 0.125 0.14062h0.0625c0.050781 0.011719 0.14844 0.015625 0.29688 0.015625z"/>
|
|
9
|
+
</symbol>
|
|
10
|
+
<symbol id="b" overflow="visible">
|
|
11
|
+
<path d="m10.641-9.7344-0.875 3.5781c-0.054687 0.16797-0.10156 0.25781-0.14062 0.26562l-0.015625 0.015625h-0.10938c-0.13672 0-0.20312-0.046875-0.20312-0.14062l0.046875-0.6875v-0.03125c0-1.1562-0.36719-1.9531-1.0938-2.3906l-0.015625-0.015625c-0.33594-0.19531-0.71875-0.29688-1.1562-0.29688-0.99219 0-1.9297 0.37109-2.8125 1.1094-0.21875 0.17969-0.41797 0.375-0.59375 0.59375-0.88672 1.0312-1.4336 2.3438-1.6406 3.9375-0.042969 0.29297-0.0625 0.54688-0.0625 0.76562 0 1.3047 0.49219 2.1836 1.4844 2.6406 0.38281 0.17969 0.80469 0.26562 1.2656 0.26562 0.875 0 1.7344-0.33594 2.5781-1.0156 0.65625-0.55078 1.125-1.2891 1.4062-2.2188 0.019531-0.09375 0.082031-0.14062 0.1875-0.14062 0.11328 0 0.17188 0.046875 0.17188 0.14062 0 0.16797-0.10938 0.46484-0.32812 0.89062-0.29297 0.59375-0.69922 1.1211-1.2188 1.5781-0.92969 0.80469-1.9336 1.2031-3.0156 1.2031-1.1992 0-2.1562-0.41016-2.875-1.2344-0.61719-0.69531-0.92188-1.5664-0.92188-2.6094 0-1.3828 0.50391-2.6875 1.5156-3.9062 0.94531-1.125 2.0664-1.8672 3.3594-2.2344 0.46875-0.13281 0.92969-0.20312 1.3906-0.20312 1.0195 0 1.7969 0.41797 2.3281 1.25l0.98438-1.0781c0.10156-0.11328 0.17188-0.17188 0.20312-0.17188 0.10156 0 0.15625 0.046875 0.15625 0.14062z"/>
|
|
12
|
+
</symbol>
|
|
13
|
+
<symbol id="a" overflow="visible">
|
|
14
|
+
<path d="m2.2188-1.0938 1.8906-7.5156c0.03125-0.14453 0.046875-0.23438 0.046875-0.26562 0-0.11328-0.074219-0.1875-0.21875-0.21875h-0.015625-0.078125c-0.21875-0.019531-0.41797-0.03125-0.59375-0.03125-0.24219 0-0.37109-0.035156-0.39062-0.10938-0.011719-0.019531-0.015625-0.039063-0.015625-0.0625 0-0.15625 0.078125-0.24219 0.23438-0.26562h4.8906c1.207 0 2.1133 0.47656 2.7188 1.4219 0.375 0.59375 0.5625 1.3047 0.5625 2.125 0 1.3555-0.46875 2.6211-1.4062 3.7969-0.89844 1.0859-1.9531 1.7773-3.1719 2.0781-0.36719 0.09375-0.72656 0.14062-1.0781 0.14062h-4.6406c-0.23047 0-0.35547-0.035156-0.375-0.10938-0.011719-0.007813-0.015625-0.03125-0.015625-0.0625 0-0.15625 0.070312-0.24219 0.21875-0.26562h0.17188c0.60156 0 0.96875-0.0625 1.0938-0.1875 0.050781-0.070312 0.10938-0.20312 0.17188-0.39062v-0.078125zm3.0312-7.5-1.9219 7.6875c-0.042969 0.16797-0.0625 0.27344-0.0625 0.3125 0 0.085938 0.039063 0.13281 0.125 0.14062h0.046875c0.0625 0.011719 0.16406 0.015625 0.3125 0.015625h1.5781c1.1562 0 2.1562-0.42969 3-1.2969 0.082031-0.09375 0.16016-0.1875 0.23438-0.28125 0.75-0.96875 1.2227-2.2383 1.4219-3.8125 0.03125-0.28906 0.046875-0.52344 0.046875-0.70312 0-1.25-0.49219-2.0547-1.4688-2.4219-0.3125-0.11328-0.66797-0.17188-1.0625-0.17188h-1.5c-0.33594 0-0.53906 0.046875-0.60938 0.14062v0.015625h-0.015625v0.015625c-0.042969 0.054687-0.085938 0.17188-0.125 0.35938z"/>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="h" overflow="visible">
|
|
17
|
+
<path d="m6.2656-10.297-5.5469 11.875c-0.11719 0.25-0.26172 0.34766-0.4375 0.29688-0.17969-0.085938-0.1875-0.27734-0.03125-0.57812l5.4844-11.766c0.13281-0.30078 0.28906-0.41406 0.46875-0.34375 0.16406 0.074219 0.1875 0.24609 0.0625 0.51562zm2.7344 0.23438-5.5 11.766c-0.13672 0.30078-0.29297 0.41406-0.46875 0.34375-0.16797-0.074219-0.1875-0.24609-0.0625-0.51562l5.5312-11.891c0.125-0.25 0.27344-0.34375 0.45312-0.28125 0.16406 0.074219 0.17969 0.26562 0.046875 0.57812z"/>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="g" overflow="visible">
|
|
20
|
+
<path d="m6.2656-10.297-5.5469 11.875c-0.11719 0.25-0.26172 0.34766-0.4375 0.29688-0.17969-0.085938-0.1875-0.27734-0.03125-0.57812l5.4844-11.766c0.13281-0.30078 0.28906-0.41406 0.46875-0.34375 0.16406 0.074219 0.1875 0.24609 0.0625 0.51562zm2.7344 0.23438-5.5 11.766c-0.13672 0.30078-0.29297 0.41406-0.46875 0.34375-0.16797-0.074219-0.1875-0.24609-0.0625-0.51562l5.5312-11.891c0.125-0.25 0.27344-0.34375 0.45312-0.28125 0.16406 0.074219 0.17969 0.26562 0.046875 0.57812zm-1.6562 6.1406h-5.5938c-0.21875 0-0.33594-0.09375-0.34375-0.28125 0-0.1875 0.11328-0.28125 0.34375-0.28125h5.5938c0.21875 0 0.32812 0.09375 0.32812 0.28125s-0.10938 0.28125-0.32812 0.28125z"/>
|
|
21
|
+
</symbol>
|
|
22
|
+
<symbol id="f" overflow="visible">
|
|
23
|
+
<path d="m6.9688-10.297-2.8906 6.5625c-0.11719 0.25-0.26172 0.35156-0.4375 0.29688-0.17969-0.082031-0.1875-0.27344-0.03125-0.57812l2.8281-6.4531c0.13281-0.30078 0.28516-0.41406 0.45312-0.34375 0.16406 0.074219 0.19141 0.24609 0.078125 0.51562zm2.7344 0.23438-2.8281 6.4531c-0.14844 0.30469-0.30859 0.41406-0.48438 0.32812-0.16797-0.070312-0.1875-0.24219-0.0625-0.51562l2.875-6.5625c0.125-0.25 0.27344-0.34375 0.45312-0.28125 0.16406 0.074219 0.17969 0.26562 0.046875 0.57812zm-0.28125 10.125h-7.8125c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.16016-0.28125 0.48438-0.28125h7.7969c0.28906 0 0.44531 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125zm0-2.0156h-7.8125c-0.30469 0-0.46094-0.09375-0.46875-0.28125 0-0.1875 0.15625-0.28125 0.46875-0.28125h7.8125c0.30078 0 0.45703 0.09375 0.46875 0.28125 0 0.1875-0.15625 0.28125-0.46875 0.28125z"/>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="e" overflow="visible">
|
|
26
|
+
<path d="m12.297-8.4062-2.5312 8.4219h-9.8125l2.5312-8.4219zm-9.4844 0.42188-2.2812 7.5938h8.9219l2.2812-7.5938z"/>
|
|
27
|
+
</symbol>
|
|
28
|
+
</defs>
|
|
29
|
+
<g>
|
|
30
|
+
<rect width="257" height="33" fill="#fff"/>
|
|
31
|
+
<g>
|
|
32
|
+
<use x="10" y="20.5" xlink:href="#d"/>
|
|
33
|
+
</g>
|
|
34
|
+
<g>
|
|
35
|
+
<use x="20.5" y="20.5" xlink:href="#c"/>
|
|
36
|
+
</g>
|
|
37
|
+
<g>
|
|
38
|
+
<use x="31.820312" y="20.5" xlink:href="#h"/>
|
|
39
|
+
</g>
|
|
40
|
+
<g>
|
|
41
|
+
<use x="41.621094" y="20.5" xlink:href="#b"/>
|
|
42
|
+
</g>
|
|
43
|
+
<g>
|
|
44
|
+
<use x="52.628906" y="20.5" xlink:href="#a"/>
|
|
45
|
+
</g>
|
|
46
|
+
<g>
|
|
47
|
+
<use x="69.277344" y="20.5" xlink:href="#d"/>
|
|
48
|
+
</g>
|
|
49
|
+
<g>
|
|
50
|
+
<use x="79.777344" y="20.5" xlink:href="#c"/>
|
|
51
|
+
</g>
|
|
52
|
+
<g>
|
|
53
|
+
<use x="91.097656" y="20.5" xlink:href="#g"/>
|
|
54
|
+
</g>
|
|
55
|
+
<g>
|
|
56
|
+
<use x="100.898438" y="20.5" xlink:href="#b"/>
|
|
57
|
+
</g>
|
|
58
|
+
<g>
|
|
59
|
+
<use x="111.90625" y="20.5" xlink:href="#a"/>
|
|
60
|
+
</g>
|
|
61
|
+
<g>
|
|
62
|
+
<use x="128.550781" y="20.5" xlink:href="#d"/>
|
|
63
|
+
</g>
|
|
64
|
+
<g>
|
|
65
|
+
<use x="139.050781" y="20.5" xlink:href="#c"/>
|
|
66
|
+
</g>
|
|
67
|
+
<g>
|
|
68
|
+
<use x="150.371094" y="20.5" xlink:href="#f"/>
|
|
69
|
+
</g>
|
|
70
|
+
<g>
|
|
71
|
+
<use x="161.574219" y="20.5" xlink:href="#b"/>
|
|
72
|
+
</g>
|
|
73
|
+
<g>
|
|
74
|
+
<use x="172.582031" y="20.5" xlink:href="#a"/>
|
|
75
|
+
</g>
|
|
76
|
+
<g>
|
|
77
|
+
<use x="189.226562" y="20.5" xlink:href="#e"/>
|
|
78
|
+
</g>
|
|
79
|
+
<g>
|
|
80
|
+
<use x="201.5625" y="20.5" xlink:href="#d"/>
|
|
81
|
+
</g>
|
|
82
|
+
<g>
|
|
83
|
+
<use x="212.0625" y="20.5" xlink:href="#c"/>
|
|
84
|
+
</g>
|
|
85
|
+
<g>
|
|
86
|
+
<use x="223.382812" y="20.5" xlink:href="#b"/>
|
|
87
|
+
</g>
|
|
88
|
+
<g>
|
|
89
|
+
<use x="234.390625" y="20.5" xlink:href="#a"/>
|
|
90
|
+
</g>
|
|
91
|
+
</g>
|
|
92
|
+
</svg>
|