@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,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-2.24 1.3099995 221.94644 60.063995">
|
|
4
|
+
<path d="M13.139999 15.963999 L12.9 16.363998 C11.74 15.863998, 10.6 15.2839985, 9.5 14.663999 C8.4 15.2839985, 7.2599998 15.863998, 6.1000004 16.363998 L5.8599997 15.963999 C6.98 14.983998, 8.2 14.143998, 9.5 13.423999 C10.799999 14.143998, 12.0199995 14.983998, 13.139999 15.963999 Z" fill="#3b3b3bff"/>
|
|
5
|
+
<path d="M14.96 19.644 L14.559999 23.104 C14.5199995 23.483997, 14.5 23.604, 14.28 23.604 C14.099999 23.604, 14.04 23.463999, 14.04 23.363998 C14.04 23.303999, 14.04 23.264, 14.08 23.003998 C14.139999 22.463999, 14.139999 22.383999, 14.139999 21.924 C14.139999 20.383999, 13.679999 19.723999, 11.219999 19.723999 L8.58 19.723999 C7.7 19.723999, 7.68 19.803999, 7.5 20.503998 L6.22 25.584 L8.04 25.584 C9.74 25.584, 10.2 25.223999, 10.62 23.663998 C10.7 23.343998, 10.719999 23.244, 10.92 23.244 C11.12 23.244, 11.16 23.463999, 11.16 23.463999 C11.16 23.523998, 11.16 23.564, 11.099999 23.783998 L10 28.123999 C9.9 28.484, 9.9 28.543999, 9.7 28.543999 C9.58 28.543999, 9.46 28.463999, 9.46 28.303999 C9.46 28.303999, 9.48 28.183998, 9.5199995 28.084 C9.66 27.484, 9.66 27.244, 9.66 27.103998 C9.66 26.523998, 9.5 26.203999, 8 26.203999 L6.06 26.203999 L4.8199997 31.183998 C4.74 31.484, 4.74 31.644, 4.74 31.644 C4.74 31.904, 4.7999997 31.984, 5.38 32.044 C5.8799996 32.084, 5.98 32.084, 6.42 32.084 C6.8799996 32.084, 6.92 32.084, 6.98 32.104 C6.98 32.104, 7.1 32.163998, 7.1 32.323997 C7.1 32.704, 6.8599997 32.704, 6.68 32.704 L3.6999998 32.643997 L1.06 32.704 C1 32.704, 0.76 32.704, 0.76 32.463997 C0.76 32.084, 0.97999996 32.084, 1.3199999 32.084 C2.8999999 32.084, 2.9399998 31.923998, 3.1399999 31.144 L5.7799997 20.564 C5.8799996 20.203999, 5.8799996 20.163998, 5.8799996 20.084 C5.8799996 19.723999, 5.3199997 19.723999, 4.58 19.723999 C4.2 19.723999, 4.02 19.723999, 4.02 19.503998 C4.02 19.104, 4.22 19.104, 4.62 19.104 L14.42 19.104 C14.92 19.104, 15.0199995 19.104, 14.96 19.644 Z" fill="#3b3b3bff"/>
|
|
6
|
+
<path d="M21.42 37.463997 C21.42 37.564, 21.32 37.663998, 21.22 37.663998 C21.18 37.663998, 21.14 37.643997, 21.099998 37.624 C18.9 35.963997, 16.8 31.963999, 16.8 28.543999 L16.8 26.863998 C16.8 23.443998, 18.9 19.444, 21.099998 17.783998 C21.14 17.764, 21.18 17.744, 21.22 17.744 C21.32 17.744, 21.42 17.843998, 21.42 17.944 C21.42 18.003998, 21.38 18.064, 21.34 18.104 C19.26 19.663998, 17.88 23.663998, 17.88 26.863998 L17.88 28.543999 C17.88 31.744, 19.26 35.744, 21.34 37.303997 C21.38 37.343998, 21.42 37.404, 21.42 37.463997 Z" fill="#3b3b3bff"/>
|
|
7
|
+
<path d="M33.04 24.404 C33.04 24.584, 32.5 27.303999, 29.859999 29.763998 C27.8 31.683998, 25.619999 32.463997, 24.22 32.704 L23.939999 32.704 C23.82 32.704, 23.619999 32.684, 23.619999 32.463997 L23.84 31.564 L25.06 26.663998 C25.199999 26.123999, 25.439999 25.183998, 25.439999 25.043999 C25.439999 24.843998, 25.4 24.703999, 24.439999 24.703999 C24.14 24.703999, 23.96 24.703999, 23.96 24.463999 C23.96 24.104, 24.18 24.084, 24.34 24.064 C24.859999 24.023998, 26.32 23.863998, 26.779999 23.863998 C27.039999 23.863998, 27.039999 24.084, 27.039999 24.084 L25.08 32.044 C27.359999 31.303999, 30.4 29.064, 31.68 24.523998 C31.84 23.943998, 32.3 23.863998, 32.46 23.863998 C32.8 23.863998, 33.04 24.064, 33.04 24.404 Z" fill="#3b3b3bff"/>
|
|
8
|
+
<path d="M38.199997 28.543999 C38.199997 31.963999, 36.1 35.963997, 33.899998 37.624 C33.859997 37.643997, 33.82 37.663998, 33.78 37.663998 C33.68 37.663998, 33.579998 37.564, 33.579998 37.463997 C33.579998 37.404, 33.62 37.343998, 33.66 37.303997 C35.739998 35.744, 37.12 31.744, 37.12 28.543999 L37.12 26.863998 C37.12 23.663998, 35.739998 19.663998, 33.66 18.104 C33.62 18.064, 33.579998 18.003998, 33.579998 17.944 C33.579998 17.843998, 33.68 17.744, 33.78 17.744 C33.82 17.744, 33.859997 17.764, 33.899998 17.783998 C36.1 19.444, 38.199997 23.443998, 38.199997 26.863998 L38.199997 28.543999 Z" fill="#3b3b3bff"/>
|
|
9
|
+
<path d="M60.215553 25.763998 C60.215553 25.984, 60.035553 26.163998, 59.815556 26.163998 L47.295555 26.163998 C47.075554 26.163998, 46.895554 25.984, 46.895554 25.763998 C46.895554 25.543999, 47.075554 25.363998, 47.295555 25.363998 L59.815556 25.363998 C60.035553 25.363998, 60.215553 25.543999, 60.215553 25.763998 Z M60.215553 29.644 C60.215553 29.863998, 60.035553 30.043999, 59.815556 30.043999 L47.295555 30.043999 C47.075554 30.043999, 46.895554 29.863998, 46.895554 29.644 C46.895554 29.423998, 47.075554 29.244, 47.295555 29.244 L59.815556 29.244 C60.035553 29.244, 60.215553 29.423998, 60.215553 29.644 Z" fill="#3b3b3bff"/>
|
|
10
|
+
<path d="M85.751114 7.344 C85.751114 8.043999, 85.251114 8.344, 84.77111 8.344 C84.31111 8.344, 83.81111 8.023998, 83.81111 7.3639984 C83.81111 6.8639984, 84.151115 6.424, 84.81111 6.383999 C84.73111 6.303999, 84.23111 5.924, 83.611115 5.924 C82.831116 5.924, 82.151115 8.504, 81.91111 9.483999 C81.23111 12.063999, 80.49111 16.064, 79.751114 20.323997 C78.67111 26.744, 77.37111 33.123997, 75.831116 39.444 C74.41111 45.244, 73.27111 49.923996, 70.23111 49.923996 C69.011116 49.923996, 68.011116 49.084, 68.011116 48.064 C68.011116 47.364, 68.511116 47.064, 68.99111 47.064 C69.45111 47.064, 69.95111 47.384, 69.95111 48.044 C69.95111 48.544, 69.611115 48.983997, 68.971115 49.024 C68.971115 49.024, 69.471115 49.483997, 70.19112 49.483997 C71.81111 49.483997, 72.73111 45.724, 73.09111 44.264 C73.751114 41.483997, 74.331116 38.143997, 74.85111 35.084 C77.05112 22.003998, 79.77111 11.963999, 79.831116 11.7439995 C80.931114 7.6639996, 82.05112 5.4839993, 83.57111 5.4839993 C84.67111 5.4839993, 85.751114 6.264, 85.751114 7.344 Z" fill="#3b3b3bff"/>
|
|
11
|
+
<path d="M101.711105 7.459999 C101.711105 9.139999, 100.47911 10.624, 98.71511 10.624 C96.64311 10.624, 95.41111 9.125999, 94.725105 8.285999 C94.15111 9.027999, 92.905106 10.624, 90.90311 10.624 C89.16711 10.624, 87.96311 9.1119995, 87.96311 7.473999 C87.96311 5.793999, 89.19511 4.3099995, 90.95911 4.3099995 C93.03111 4.3099995, 94.26311 5.8079996, 94.94911 6.6479993 C95.52311 5.905999, 96.76911 4.3099995, 98.77111 4.3099995 C100.50711 4.3099995, 101.711105 5.8219995, 101.711105 7.459999 Z M101.31911 7.459999 C101.31911 6.1019993, 100.32511 4.8419995, 98.88311 4.8419995 C97.51111 4.8419995, 96.26511 5.8079996, 95.41111 7.1659994 C96.71311 8.733999, 97.63711 9.853999, 98.95311 9.853999 C100.17111 9.853999, 101.31911 8.86, 101.31911 7.459999 Z M94.26311 7.7679996 C92.961105 6.1999993, 92.03711 5.0799994, 90.72111 5.0799994 C89.50311 5.0799994, 88.35511 6.0739994, 88.35511 7.473999 C88.35511 8.831999, 89.349106 10.091999, 90.79111 10.091999 C92.16311 10.091999, 93.40911 9.125999, 94.26311 7.7679996 Z" fill="#3b3b3bff"/>
|
|
12
|
+
<path d="M85.15911 50.423996 C85.15911 50.577995, 85.03311 50.703995, 84.87911 50.703995 L76.11511 50.703995 C75.96111 50.703995, 75.835106 50.577995, 75.835106 50.423996 C75.835106 50.269997, 75.96111 50.143997, 76.11511 50.143997 L84.87911 50.143997 C85.03311 50.143997, 85.15911 50.269997, 85.15911 50.423996 Z" fill="#3b3b3bff"/>
|
|
13
|
+
<path d="M100.78311 50.899998 C100.78311 52.579994, 99.55112 54.063995, 97.78712 54.063995 C95.71512 54.063995, 94.483116 52.565994, 93.79711 51.725998 C93.223114 52.467995, 91.97711 54.063995, 89.97511 54.063995 C88.23911 54.063995, 87.03512 52.551994, 87.03512 50.913998 C87.03512 49.233997, 88.26711 47.749996, 90.03111 47.749996 C92.10312 47.749996, 93.33511 49.247997, 94.02112 50.087997 C94.595116 49.345997, 95.84112 47.749996, 97.84312 47.749996 C99.57912 47.749996, 100.78311 49.261997, 100.78311 50.899998 Z M100.39111 50.899998 C100.39111 49.541996, 99.39712 48.281998, 97.95512 48.281998 C96.583115 48.281998, 95.33711 49.247997, 94.483116 50.605995 C95.78512 52.173996, 96.709114 53.293995, 98.025116 53.293995 C99.24312 53.293995, 100.39111 52.299995, 100.39111 50.899998 Z M93.33511 51.207996 C92.03311 49.639996, 91.109116 48.519997, 89.79311 48.519997 C88.57512 48.519997, 87.42712 49.513996, 87.42712 50.913998 C87.42712 52.271996, 88.42111 53.531998, 89.86311 53.531998 C91.235115 53.531998, 92.48112 52.565994, 93.33511 51.207996 Z" fill="#3b3b3bff"/>
|
|
14
|
+
<path d="M115.87044 30.564 C115.87044 30.803999, 114.19044 32.924, 111.33044 32.924 C109.37044 32.924, 108.19044 31.343998, 108.19044 29.303999 C108.19044 25.803999, 111.21044 23.863998, 113.430435 23.863998 C114.81044 23.863998, 115.57044 24.683998, 115.57044 25.564 C115.57044 25.843998, 115.470436 27.023998, 114.07044 27.623999 C113.07044 28.043999, 111.59044 28.084, 111.01044 28.084 L109.95044 28.084 C109.65044 29.303999, 109.63044 29.923998, 109.63044 30.163998 C109.63044 30.803999, 109.81044 32.483997, 111.37044 32.483997 C111.610435 32.483997, 113.790436 32.483997, 115.37044 30.503998 C115.49044 30.343998, 115.53044 30.303999, 115.63044 30.303999 C115.75044 30.303999, 115.87044 30.443998, 115.87044 30.564 Z M114.91044 25.564 C114.91044 24.883999, 114.37044 24.303999, 113.430435 24.303999 C112.91044 24.303999, 110.85044 24.604, 110.07044 27.644 L110.89044 27.644 C111.71044 27.644, 114.91044 27.644, 114.91044 25.564 Z" fill="#3b3b3bff"/>
|
|
15
|
+
<path d="M126.69844 21.943998 C126.69844 22.097998, 126.57244 22.223999, 126.41844 22.223999 L117.65444 22.223999 C117.50044 22.223999, 117.374435 22.097998, 117.374435 21.943998 C117.374435 21.789999, 117.50044 21.663998, 117.65444 21.663998 L126.41844 21.663998 C126.57244 21.663998, 126.69844 21.789999, 126.69844 21.943998 Z" fill="#3b3b3bff"/>
|
|
16
|
+
<path d="M132.01843 16.693998 C132.01843 17.071999, 131.64044 17.463999, 131.23444 17.463999 C130.85643 17.463999, 130.67444 17.169998, 130.67444 16.932 C130.67444 16.526, 131.08044 16.161999, 131.45844 16.161999 C131.85043 16.161999, 132.01843 16.469997, 132.01843 16.693998 Z M132.38243 23.441998 C132.38243 23.651999, 131.76643 25.583998, 130.36644 25.583998 C129.59644 25.583998, 129.03644 25.051998, 129.03644 24.394 C129.03644 24.155998, 129.10643 23.987999, 129.16243 23.805998 L130.04443 21.551998 C130.39444 20.683998, 130.47844 20.473999, 130.47844 20.151999 C130.47844 19.773998, 130.35243 19.661999, 130.12843 19.661999 C129.61044 19.661999, 128.99443 20.165998, 128.63043 21.369999 C128.58844 21.523998, 128.57443 21.593998, 128.37843 21.593998 C128.33644 21.593998, 128.14044 21.593998, 128.14044 21.411999 C128.14044 21.173998, 128.78444 19.269999, 130.17044 19.269999 C130.94043 19.269999, 131.50044 19.801998, 131.50044 20.46 C131.50044 20.599998, 131.45844 20.767998, 131.41644 20.907999 L130.73044 22.685999 L130.28244 23.805998 C130.15643 24.113998, 130.05844 24.38, 130.05844 24.701998 C130.05844 25.009998, 130.12843 25.191998, 130.40843 25.191998 C130.95444 25.191998, 131.57043 24.617998, 131.89244 23.498 C131.94844 23.343998, 131.96243 23.259998, 132.15843 23.259998 C132.20044 23.259998, 132.38243 23.259998, 132.38243 23.441998 Z" fill="#3b3b3bff"/>
|
|
17
|
+
<path d="M140.20844 22.895998 L139.78842 25.443998 L134.02043 25.443998 C134.02043 25.051998, 134.02043 25.023998, 134.16043 24.897999 L137.53442 21.565998 C137.98242 21.061998, 138.85043 20.095999, 138.85043 18.877998 C138.85043 17.744, 138.12242 16.651999, 136.72243 16.651999 C136.06442 16.651999, 135.11243 16.96, 134.67842 17.953999 C135.40643 17.953999, 135.50443 18.443998, 135.50443 18.696 C135.50443 19.199999, 135.09843 19.438, 134.76242 19.438 C134.62242 19.438, 134.02043 19.367998, 134.02043 18.654 C134.02043 17.365997, 135.19643 16.147999, 136.93243 16.147999 C138.72443 16.147999, 140.20844 17.183998, 140.20844 18.877998 C140.20844 20.207998, 139.24243 21.075998, 138.20642 21.901999 C137.36642 22.559998, 136.87643 22.951998, 135.40643 24.253998 L137.98242 24.253998 C138.17842 24.253998, 139.25642 24.253998, 139.36842 24.169998 C139.55043 24.029999, 139.69043 23.203999, 139.73242 22.895998 L140.20844 22.895998 Z" fill="#3b3b3bff"/>
|
|
18
|
+
<path d="M150.12044 19.815998 C150.12044 19.885998, 150.07843 20.109999, 149.88243 20.249998 C149.72842 20.362, 149.61642 20.362, 149.36443 20.362 L147.61443 20.362 C147.41843 21.355999, 147.41843 21.915998, 147.41843 22.182 C147.41843 23.329998, 147.67043 24.127998, 147.93643 24.645998 C148.02043 24.786, 148.04843 24.842, 148.04843 24.953999 C148.04843 25.289999, 147.71243 25.583998, 147.39043 25.583998 C147.16643 25.583998, 146.98444 25.527998, 146.76044 24.828 C146.67644 24.519999, 146.60643 24.141998, 146.60643 23.581999 C146.60643 22.475998, 146.91443 21.202, 147.12444 20.362 L145.45844 20.362 L144.59042 23.693998 C144.25443 24.953999, 144.10043 25.583998, 143.54044 25.583998 C143.21843 25.583998, 143.05043 25.359999, 143.05043 25.135998 C143.05043 25.037998, 143.07843 24.981998, 143.09244 24.925999 C143.13443 24.869999, 143.27443 24.575998, 143.35843 24.394 C143.77843 23.553999, 144.53442 21.901999, 144.96843 20.362 L144.11443 20.362 C143.80643 20.362, 142.93843 20.362, 142.22443 21.342 C142.14043 21.467999, 142.12643 21.495998, 141.97243 21.495998 C141.91643 21.495998, 141.73444 21.495998, 141.73444 21.328 C141.73444 21.202, 142.28043 20.446, 142.64442 20.123999 C143.27443 19.536, 143.66643 19.409998, 144.24043 19.409998 L149.51843 19.409998 C149.75642 19.409998, 150.12044 19.409998, 150.12044 19.815998 Z" fill="#3b3b3bff"/>
|
|
19
|
+
<path d="M155.77643 19.605999 C155.77643 19.913998, 155.59444 19.913998, 155.32843 19.913998 L153.90044 19.913998 L152.89244 23.932 C152.86444 24.071999, 152.80844 24.366, 152.80844 24.505999 C152.80844 25.009998, 153.00444 25.191998, 153.29843 25.191998 C154.06844 25.191998, 154.78244 24.407999, 155.17444 23.526 C155.28644 23.287998, 155.30043 23.259998, 155.46843 23.259998 C155.51044 23.259998, 155.69243 23.259998, 155.69243 23.441998 C155.69243 23.623999, 154.81044 25.583998, 153.25644 25.583998 C152.45844 25.583998, 151.75844 25.079998, 151.75844 24.253998 C151.75844 24.071999, 151.88443 23.567999, 151.96843 23.217999 L152.79443 19.913998 L151.46443 19.913998 C151.21243 19.913998, 151.04443 19.913998, 151.04443 19.717999 C151.04443 19.409998, 151.22644 19.409998, 151.49243 19.409998 L152.92044 19.409998 C153.53644 16.973999, 153.35443 17.645998, 153.45244 17.295998 C153.55043 16.932, 153.76044 16.693998, 154.11044 16.693998 C154.39044 16.693998, 154.58644 16.89, 154.58644 17.141998 C154.58644 17.197998, 154.55844 17.267998, 154.54443 17.337997 L154.02644 19.409998 L155.35643 19.409998 C155.59444 19.409998, 155.77643 19.409998, 155.77643 19.605999 Z" fill="#3b3b3bff"/>
|
|
20
|
+
<path d="M164.72243 19.717999 C164.72243 19.717999, 164.44243 21.565998, 162.53842 23.259998 C161.04042 24.589998, 159.26242 25.248, 158.01642 25.443998 L157.79242 25.443998 C157.73642 25.443998, 157.52643 25.443998, 157.52643 25.248 C157.52643 25.191998, 157.59642 24.911999, 157.94643 23.512 L158.64642 20.683998 C158.70242 20.501999, 158.77243 20.221998, 158.77243 20.137999 C158.77243 20.012, 158.77243 19.927998, 158.10042 19.927998 C157.93242 19.927998, 157.73642 19.927998, 157.73642 19.731998 C157.73642 19.438, 157.90442 19.423998, 158.12842 19.409998 C158.39442 19.381998, 158.64642 19.367998, 158.91243 19.339998 C159.01042 19.339998, 159.82242 19.269999, 159.82242 19.269999 C160.04642 19.269999, 160.04642 19.466, 160.04642 19.466 C160.04642 19.536, 160.03242 19.619999, 160.01843 19.675999 L158.71643 24.883999 C161.09642 24.183998, 162.97243 22.041998, 163.53242 20.053999 C163.65843 19.661999, 163.75642 19.269999, 164.24643 19.269999 C164.52643 19.269999, 164.72243 19.466, 164.72243 19.717999 Z" fill="#3b3b3bff"/>
|
|
21
|
+
<path d="M176.68643 19.984 C176.68643 20.744, 176.10645 21.183998, 175.58644 21.183998 C175.20644 21.183998, 174.84644 20.944, 174.84644 20.484 C174.84644 20.183998, 175.04643 19.484, 175.92644 19.404 C175.54643 19.043999, 175.02644 19.043999, 174.94644 19.043999 C174.52644 19.043999, 174.18643 19.343998, 174.00644 19.723999 C173.88644 19.963999, 173.60645 21.383999, 173.52644 21.803999 C173.30644 22.963999, 173.32643 22.924, 173.10645 24.084 L174.76643 24.084 C175.10645 24.084, 175.30644 24.084, 175.30644 24.303999 C175.30644 24.703999, 175.10645 24.703999, 174.70644 24.703999 L172.98643 24.703999 L171.78644 31.043999 C171.76643 31.183998, 171.30644 33.604, 170.66644 34.864 C170.30644 35.623997, 169.50644 36.803997, 168.40643 36.803997 C167.58644 36.803997, 166.70644 36.323997, 166.70644 35.424 C166.70644 34.663998, 167.28644 34.224, 167.80644 34.224 C168.18643 34.224, 168.54643 34.463997, 168.54643 34.924 C168.54643 35.224, 168.36644 35.944, 167.44644 36.003998 C167.82643 36.364, 168.32643 36.364, 168.40643 36.364 C169.44644 36.364, 169.78644 34.544, 170.14644 32.604 L171.64644 24.703999 L170.32643 24.703999 C169.94644 24.703999, 169.76643 24.703999, 169.76643 24.463999 C169.76643 24.084, 169.98643 24.084, 170.36644 24.084 L171.74644 24.084 C172.22644 21.564, 172.28644 21.363998, 172.40643 20.944 C173.00644 18.963999, 174.26643 18.604, 174.94644 18.604 C175.76643 18.604, 176.68643 19.064, 176.68643 19.984 Z" fill="#3b3b3bff"/>
|
|
22
|
+
<path d="M182.08644 37.463997 C182.08644 37.564, 181.98643 37.663998, 181.88644 37.663998 C181.84644 37.663998, 181.80644 37.643997, 181.76645 37.624 C179.56644 35.963997, 177.46645 31.963999, 177.46645 28.543999 L177.46645 26.863998 C177.46645 23.443998, 179.56644 19.444, 181.76645 17.783998 C181.80644 17.764, 181.84644 17.744, 181.88644 17.744 C181.98643 17.744, 182.08644 17.843998, 182.08644 17.944 C182.08644 18.003998, 182.04645 18.064, 182.00644 18.104 C179.92644 19.663998, 178.54645 23.663998, 178.54645 26.863998 L178.54645 28.543999 C178.54645 31.744, 179.92644 35.744, 182.00644 37.303997 C182.04645 37.343998, 182.08644 37.404, 182.08644 37.463997 Z" fill="#3b3b3bff"/>
|
|
23
|
+
<path d="M189.82645 24.303999 C189.82645 24.703999, 189.62643 24.703999, 189.22644 24.703999 L187.34644 24.703999 L185.86644 30.603998 C185.78644 30.943998, 185.74644 31.083998, 185.74644 31.564 C185.74644 32.224, 185.94644 32.483997, 186.36644 32.483997 C187.04645 32.483997, 188.10645 32.003998, 188.96645 29.923998 C189.06644 29.703999, 189.08644 29.644, 189.26643 29.644 C189.34644 29.644, 189.50644 29.644, 189.50644 29.843998 C189.50644 30.003998, 188.36644 32.924, 186.32645 32.924 C185.24644 32.924, 184.48643 32.163998, 184.48643 31.083998 C184.48643 30.723999, 184.56644 30.383999, 186.00644 24.703999 L184.24644 24.703999 C183.84644 24.703999, 183.68645 24.703999, 183.68645 24.463999 C183.68645 24.084, 183.88644 24.084, 184.28644 24.084 L186.16644 24.084 L186.94644 20.904 C187.12643 20.203999, 187.68645 20.183998, 187.74644 20.183998 C188.08644 20.183998, 188.32645 20.383999, 188.32645 20.723999 C188.32645 20.843998, 188.22644 21.244, 187.50644 24.084 L189.26643 24.084 C189.62643 24.084, 189.82645 24.084, 189.82645 24.303999 Z" fill="#3b3b3bff"/>
|
|
24
|
+
<path d="M196.20644 28.543999 C196.20644 31.963999, 194.10645 35.963997, 191.90645 37.624 C191.86644 37.643997, 191.82645 37.663998, 191.78644 37.663998 C191.68645 37.663998, 191.58644 37.564, 191.58644 37.463997 C191.58644 37.404, 191.62643 37.343998, 191.66644 37.303997 C193.74644 35.744, 195.12643 31.744, 195.12643 28.543999 L195.12643 26.863998 C195.12643 23.663998, 193.74644 19.663998, 191.66644 18.104 C191.62643 18.064, 191.58644 18.003998, 191.58644 17.944 C191.58644 17.843998, 191.68645 17.744, 191.78644 17.744 C191.82645 17.744, 191.86644 17.764, 191.90645 17.783998 C194.10645 19.444, 196.20644 23.443998, 196.20644 26.863998 L196.20644 28.543999 Z" fill="#3b3b3bff"/>
|
|
25
|
+
<path d="M208.76643 32.704 L205.82645 32.924 L205.82645 31.603998 C205.32645 32.244, 204.42644 32.924, 203.14644 32.924 C200.86644 32.924, 198.90643 30.943998, 198.90643 28.404 C198.90643 25.824, 201.00644 23.863998, 203.36644 23.863998 C204.44644 23.863998, 205.30644 24.383999, 205.88644 25.103998 L205.88644 20.783998 C205.88644 19.803999, 205.72644 19.663998, 204.32645 19.663998 L204.32645 19.043999 L207.20644 18.823997 L207.20644 30.963999 C207.20644 31.943998, 207.36644 32.084, 208.76643 32.084 L208.76643 32.704 Z M205.82645 30.343998 L205.82645 26.244 C205.82645 25.883999, 205.82645 25.843998, 205.60645 25.503998 C204.98643 24.604, 204.14644 24.303999, 203.44644 24.303999 C202.36644 24.303999, 201.60645 24.963999, 201.18645 25.584 C200.60645 26.484, 200.56644 27.683998, 200.56644 28.424 C200.56644 29.244, 200.62643 30.383999, 201.14644 31.203999 C201.62643 31.963999, 202.34644 32.483997, 203.24644 32.483997 C204.10645 32.483997, 205.00644 32.044, 205.60645 31.083998 C205.82645 30.744, 205.82645 30.703999, 205.82645 30.343998 Z" fill="#3b3b3bff"/>
|
|
26
|
+
<path d="M215.94644 24.303999 C215.94644 24.703999, 215.74643 24.703999, 215.34644 24.703999 L213.46643 24.703999 L211.98643 30.603998 C211.90643 30.943998, 211.86644 31.083998, 211.86644 31.564 C211.86644 32.224, 212.06644 32.483997, 212.48643 32.483997 C213.16644 32.483997, 214.22644 32.003998, 215.08644 29.923998 C215.18643 29.703999, 215.20644 29.644, 215.38643 29.644 C215.46643 29.644, 215.62643 29.644, 215.62643 29.843998 C215.62643 30.003998, 214.48643 32.924, 212.44644 32.924 C211.36644 32.924, 210.60643 32.163998, 210.60643 31.083998 C210.60643 30.723999, 210.68643 30.383999, 212.12643 24.703999 L210.36644 24.703999 C209.96643 24.703999, 209.80644 24.703999, 209.80644 24.463999 C209.80644 24.084, 210.00644 24.084, 210.40643 24.084 L212.28644 24.084 L213.06644 20.904 C213.24643 20.203999, 213.80644 20.183998, 213.86644 20.183998 C214.20644 20.183998, 214.44644 20.383999, 214.44644 20.723999 C214.44644 20.843998, 214.34644 21.244, 213.62643 24.084 L215.38643 24.084 C215.74643 24.084, 215.94644 24.084, 215.94644 24.303999 Z" fill="#3b3b3bff"/>
|
|
27
|
+
</svg>
|