@shd101wyy/yo 0.0.2
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.md +17 -0
- package/README.md +80 -0
- package/out/cjs/index.cjs +51 -0
- package/out/cjs/yo-cli.cjs +2158 -0
- package/out/esm/index.mjs +51 -0
- package/out/types/src/codegen/async/runtime.d.ts +2 -0
- package/out/types/src/codegen/async/state-code-gen.d.ts +10 -0
- package/out/types/src/codegen/async/state-machine.d.ts +13 -0
- package/out/types/src/codegen/c/collection.d.ts +3 -0
- package/out/types/src/codegen/codegen-c.d.ts +12 -0
- package/out/types/src/codegen/constants.d.ts +3 -0
- package/out/types/src/codegen/expressions/array.d.ts +4 -0
- package/out/types/src/codegen/expressions/generation.d.ts +11 -0
- package/out/types/src/codegen/expressions/index.d.ts +2 -0
- package/out/types/src/codegen/functions/collection.d.ts +5 -0
- package/out/types/src/codegen/functions/context.d.ts +57 -0
- package/out/types/src/codegen/functions/generation.d.ts +25 -0
- package/out/types/src/codegen/functions/index.d.ts +2 -0
- package/out/types/src/codegen/index.d.ts +20 -0
- package/out/types/src/codegen/parallelism/runtime.d.ts +2 -0
- package/out/types/src/codegen/types/collection.d.ts +8 -0
- package/out/types/src/codegen/types/generation.d.ts +13 -0
- package/out/types/src/codegen/types/index.d.ts +2 -0
- package/out/types/src/codegen/utils/fixup.d.ts +2 -0
- package/out/types/src/codegen/utils/index.d.ts +77 -0
- package/out/types/src/codegen/values/index.d.ts +1 -0
- package/out/types/src/emitter.d.ts +11 -0
- package/out/types/src/env.d.ts +85 -0
- package/out/types/src/error.d.ts +45 -0
- package/out/types/src/evaluator/async/await-analysis-types.d.ts +23 -0
- package/out/types/src/evaluator/async/await-analysis.d.ts +5 -0
- package/out/types/src/evaluator/builtins/alignof.d.ts +8 -0
- package/out/types/src/evaluator/builtins/and_or.d.ts +8 -0
- package/out/types/src/evaluator/builtins/arc_fns.d.ts +58 -0
- package/out/types/src/evaluator/builtins/array_fns.d.ts +0 -0
- package/out/types/src/evaluator/builtins/as.d.ts +8 -0
- package/out/types/src/evaluator/builtins/async_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_assert.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_boolean_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_expect_error.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_list_fns.d.ts +33 -0
- package/out/types/src/evaluator/builtins/compt_print.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_string_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/consume.d.ts +8 -0
- package/out/types/src/evaluator/builtins/drop.d.ts +8 -0
- package/out/types/src/evaluator/builtins/dup.d.ts +8 -0
- package/out/types/src/evaluator/builtins/expr_fns.d.ts +33 -0
- package/out/types/src/evaluator/builtins/future_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/gc.d.ts +8 -0
- package/out/types/src/evaluator/builtins/gensym.d.ts +8 -0
- package/out/types/src/evaluator/builtins/impl_constraint.d.ts +8 -0
- package/out/types/src/evaluator/builtins/macro_expand.d.ts +8 -0
- package/out/types/src/evaluator/builtins/numeric_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/panic.d.ts +8 -0
- package/out/types/src/evaluator/builtins/ptr_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/quote.d.ts +13 -0
- package/out/types/src/evaluator/builtins/rc.d.ts +8 -0
- package/out/types/src/evaluator/builtins/sizeof.d.ts +8 -0
- package/out/types/src/evaluator/builtins/the.d.ts +8 -0
- package/out/types/src/evaluator/builtins/type_fns.d.ts +28 -0
- package/out/types/src/evaluator/builtins/va_start.d.ts +8 -0
- package/out/types/src/evaluator/builtins/var_fns.d.ts +18 -0
- package/out/types/src/evaluator/calls/array.d.ts +13 -0
- package/out/types/src/evaluator/calls/array_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/closure_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/compt_function.d.ts +19 -0
- package/out/types/src/evaluator/calls/compt_list_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/function.d.ts +16 -0
- package/out/types/src/evaluator/calls/function_type.d.ts +15 -0
- package/out/types/src/evaluator/calls/helper.d.ts +42 -0
- package/out/types/src/evaluator/calls/iso.d.ts +15 -0
- package/out/types/src/evaluator/calls/module_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/numeric_type.d.ts +15 -0
- package/out/types/src/evaluator/calls/pointer.d.ts +8 -0
- package/out/types/src/evaluator/calls/pointer_type.d.ts +14 -0
- package/out/types/src/evaluator/calls/type.d.ts +12 -0
- package/out/types/src/evaluator/context.d.ts +169 -0
- package/out/types/src/evaluator/exprs/_expr.d.ts +8 -0
- package/out/types/src/evaluator/exprs/assignment.d.ts +9 -0
- package/out/types/src/evaluator/exprs/begin.d.ts +10 -0
- package/out/types/src/evaluator/exprs/binding.d.ts +12 -0
- package/out/types/src/evaluator/exprs/c_include.d.ts +8 -0
- package/out/types/src/evaluator/exprs/cond.d.ts +8 -0
- package/out/types/src/evaluator/exprs/destructuring_assignment.d.ts +33 -0
- package/out/types/src/evaluator/exprs/exists.d.ts +0 -0
- package/out/types/src/evaluator/exprs/expr.d.ts +9 -0
- package/out/types/src/evaluator/exprs/extern.d.ts +8 -0
- package/out/types/src/evaluator/exprs/identifer_and_operator.d.ts +9 -0
- package/out/types/src/evaluator/exprs/import.d.ts +9 -0
- package/out/types/src/evaluator/exprs/initialization_assignment.d.ts +8 -0
- package/out/types/src/evaluator/exprs/match.d.ts +8 -0
- package/out/types/src/evaluator/exprs/open.d.ts +8 -0
- package/out/types/src/evaluator/exprs/property_access.d.ts +8 -0
- package/out/types/src/evaluator/exprs/recur.d.ts +8 -0
- package/out/types/src/evaluator/exprs/subtype_of.d.ts +21 -0
- package/out/types/src/evaluator/exprs/test.d.ts +8 -0
- package/out/types/src/evaluator/exprs/typeof.d.ts +8 -0
- package/out/types/src/evaluator/exprs/while.d.ts +8 -0
- package/out/types/src/evaluator/index.d.ts +26 -0
- package/out/types/src/evaluator/types/array.d.ts +8 -0
- package/out/types/src/evaluator/types/closure.d.ts +8 -0
- package/out/types/src/evaluator/types/compt_list.d.ts +8 -0
- package/out/types/src/evaluator/types/concrete_module.d.ts +8 -0
- package/out/types/src/evaluator/types/dyn.d.ts +8 -0
- package/out/types/src/evaluator/types/enum.d.ts +8 -0
- package/out/types/src/evaluator/types/expr_synthesizer.d.ts +14 -0
- package/out/types/src/evaluator/types/field.d.ts +14 -0
- package/out/types/src/evaluator/types/fn_module.d.ts +8 -0
- package/out/types/src/evaluator/types/function.d.ts +58 -0
- package/out/types/src/evaluator/types/future_module.d.ts +8 -0
- package/out/types/src/evaluator/types/module.d.ts +19 -0
- package/out/types/src/evaluator/types/newtype.d.ts +8 -0
- package/out/types/src/evaluator/types/object.d.ts +8 -0
- package/out/types/src/evaluator/types/proofs.d.ts +0 -0
- package/out/types/src/evaluator/types/slice.d.ts +8 -0
- package/out/types/src/evaluator/types/struct.d.ts +8 -0
- package/out/types/src/evaluator/types/synthesizer.d.ts +16 -0
- package/out/types/src/evaluator/types/tuple.d.ts +18 -0
- package/out/types/src/evaluator/types/union.d.ts +8 -0
- package/out/types/src/evaluator/types/utils.d.ts +71 -0
- package/out/types/src/evaluator/types/validation.d.ts +3 -0
- package/out/types/src/evaluator/utils/array-utils.d.ts +15 -0
- package/out/types/src/evaluator/utils/closure.d.ts +35 -0
- package/out/types/src/evaluator/utils.d.ts +4 -0
- package/out/types/src/evaluator/values/anonymous_function.d.ts +8 -0
- package/out/types/src/evaluator/values/anonymous_module.d.ts +17 -0
- package/out/types/src/evaluator/values/anonymous_struct.d.ts +8 -0
- package/out/types/src/evaluator/values/array.d.ts +8 -0
- package/out/types/src/evaluator/values/boolean.d.ts +3 -0
- package/out/types/src/evaluator/values/char.d.ts +3 -0
- package/out/types/src/evaluator/values/compt_list.d.ts +8 -0
- package/out/types/src/evaluator/values/dyn.d.ts +8 -0
- package/out/types/src/evaluator/values/float.d.ts +4 -0
- package/out/types/src/evaluator/values/integer.d.ts +4 -0
- package/out/types/src/evaluator/values/module.d.ts +58 -0
- package/out/types/src/evaluator/values/string.d.ts +3 -0
- package/out/types/src/evaluator/values/tuple.d.ts +32 -0
- package/out/types/src/expr.d.ts +456 -0
- package/out/types/src/function-value.d.ts +42 -0
- package/out/types/src/index.d.ts +4 -0
- package/out/types/src/lexer.d.ts +2 -0
- package/out/types/src/logger.d.ts +1 -0
- package/out/types/src/module-manager.d.ts +30 -0
- package/out/types/src/naming-checker.d.ts +4 -0
- package/out/types/src/parser.d.ts +33 -0
- package/out/types/src/test-runner.d.ts +30 -0
- package/out/types/src/tests/codegen.test.d.ts +1 -0
- package/out/types/src/tests/fixme.test.d.ts +1 -0
- package/out/types/src/tests/module-manager.test.d.ts +1 -0
- package/out/types/src/tests/parser.test.d.ts +1 -0
- package/out/types/src/tests/sample.test.d.ts +0 -0
- package/out/types/src/tests/std.test.d.ts +1 -0
- package/out/types/src/token.d.ts +40 -0
- package/out/types/src/type-value.d.ts +7 -0
- package/out/types/src/types/compatibility.d.ts +16 -0
- package/out/types/src/types/creators.d.ts +73 -0
- package/out/types/src/types/definitions.d.ts +218 -0
- package/out/types/src/types/guards.d.ts +70 -0
- package/out/types/src/types/hierarchy.d.ts +4 -0
- package/out/types/src/types/index.d.ts +7 -0
- package/out/types/src/types/module_field.d.ts +2 -0
- package/out/types/src/types/tags.d.ts +45 -0
- package/out/types/src/types/utils.d.ts +50 -0
- package/out/types/src/unit-value.d.ts +7 -0
- package/out/types/src/utils.d.ts +6 -0
- package/out/types/src/value-tag.d.ts +29 -0
- package/out/types/src/value.d.ts +110 -0
- package/out/types/src/yo-cli.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +57 -0
- package/scripts/check-liburing.js +76 -0
- package/std/alg/hash.yo +50 -0
- package/std/allocator.yo +113 -0
- package/std/allocators/c_allocator.yo +118 -0
- package/std/async.yo +13 -0
- package/std/collections/array_list.yo +415 -0
- package/std/collections/hash_map.yo +482 -0
- package/std/collections/hash_set.yo +706 -0
- package/std/collections/index.yo +11 -0
- package/std/collections/linked_list.yo +439 -0
- package/std/error.yo +0 -0
- package/std/gc.yo +10 -0
- package/std/index.yo +12 -0
- package/std/io/file.yo +191 -0
- package/std/io/index.yo +5 -0
- package/std/libc/assert.yo +39 -0
- package/std/libc/ctype.yo +57 -0
- package/std/libc/errno.yo +182 -0
- package/std/libc/float.yo +87 -0
- package/std/libc/index.yo +29 -0
- package/std/libc/limits.yo +65 -0
- package/std/libc/math.yo +679 -0
- package/std/libc/signal.yo +101 -0
- package/std/libc/stdatomic.yo +213 -0
- package/std/libc/stdint.yo +214 -0
- package/std/libc/stdio.yo +225 -0
- package/std/libc/stdlib.yo +204 -0
- package/std/libc/string.yo +151 -0
- package/std/libc/time.yo +92 -0
- package/std/libc/unistd.yo +130 -0
- package/std/monad.yo +152 -0
- package/std/prelude.yo +3094 -0
- package/std/string/index.yo +8 -0
- package/std/string/rune.yo +82 -0
- package/std/string/string.yo +288 -0
- package/std/sync.yo +95 -0
- package/std/thread.yo +36 -0
- package/std/time.yo +13 -0
- package/std/worker.yo +36 -0
- package/vendor/mimalloc/.gitattributes +12 -0
- package/vendor/mimalloc/CMakeLists.txt +763 -0
- package/vendor/mimalloc/LICENSE +21 -0
- package/vendor/mimalloc/SECURITY.md +41 -0
- package/vendor/mimalloc/azure-pipelines.yml +251 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect32.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect32.lib +0 -0
- package/vendor/mimalloc/bin/minject-arm64.exe +0 -0
- package/vendor/mimalloc/bin/minject.exe +0 -0
- package/vendor/mimalloc/bin/minject32.exe +0 -0
- package/vendor/mimalloc/bin/readme.md +118 -0
- package/vendor/mimalloc/cmake/JoinPaths.cmake +23 -0
- package/vendor/mimalloc/cmake/mimalloc-config-version.cmake +19 -0
- package/vendor/mimalloc/cmake/mimalloc-config.cmake +14 -0
- package/vendor/mimalloc/contrib/docker/alpine/Dockerfile +23 -0
- package/vendor/mimalloc/contrib/docker/alpine-arm32v7/Dockerfile +28 -0
- package/vendor/mimalloc/contrib/docker/alpine-x86/Dockerfile +28 -0
- package/vendor/mimalloc/contrib/docker/manylinux-x64/Dockerfile +23 -0
- package/vendor/mimalloc/contrib/docker/readme.md +10 -0
- package/vendor/mimalloc/contrib/vcpkg/portfile.cmake +64 -0
- package/vendor/mimalloc/contrib/vcpkg/readme.md +40 -0
- package/vendor/mimalloc/contrib/vcpkg/usage +20 -0
- package/vendor/mimalloc/contrib/vcpkg/vcpkg-cmake-wrapper.cmake +20 -0
- package/vendor/mimalloc/contrib/vcpkg/vcpkg.json +48 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-a.svg +887 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-b.svg +1185 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-a.svg +757 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-b.svg +1028 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-1.svg +769 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-a.svg +868 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-b.svg +1157 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-2.svg +983 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-1.svg +683 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-2.svg +854 -0
- package/vendor/mimalloc/doc/bench-2020/bench-spec-rss.svg +713 -0
- package/vendor/mimalloc/doc/bench-2020/bench-spec.svg +713 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-1.svg +890 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-2.svg +1146 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-1.svg +796 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-2.svg +974 -0
- package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-a.svg +952 -0
- package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-b.svg +1255 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-a.svg +955 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-b.svg +1269 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-a.svg +836 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-b.svg +1131 -0
- package/vendor/mimalloc/doc/bench-2021/bench-macmini-2021-01-30.svg +766 -0
- package/vendor/mimalloc/doc/doxyfile +2895 -0
- package/vendor/mimalloc/doc/ds-logo.jpg +0 -0
- package/vendor/mimalloc/doc/ds-logo.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-doc.h +1452 -0
- package/vendor/mimalloc/doc/mimalloc-doxygen.css +60 -0
- package/vendor/mimalloc/doc/mimalloc-logo-100.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-logo.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-logo.svg +161 -0
- package/vendor/mimalloc/doc/spades-logo.png +0 -0
- package/vendor/mimalloc/doc/unreal-logo.svg +43 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj +500 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj.filters +108 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj +508 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj.filters +111 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-test-dep.vcxproj +355 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-test.vcxproj +360 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test-api.vcxproj +295 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test-stress.vcxproj +292 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test.vcxproj +289 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc.sln +151 -0
- package/vendor/mimalloc/include/mimalloc/atomic.h +557 -0
- package/vendor/mimalloc/include/mimalloc/internal.h +1153 -0
- package/vendor/mimalloc/include/mimalloc/prim.h +421 -0
- package/vendor/mimalloc/include/mimalloc/track.h +145 -0
- package/vendor/mimalloc/include/mimalloc/types.h +685 -0
- package/vendor/mimalloc/include/mimalloc-new-delete.h +66 -0
- package/vendor/mimalloc/include/mimalloc-override.h +68 -0
- package/vendor/mimalloc/include/mimalloc-stats.h +103 -0
- package/vendor/mimalloc/include/mimalloc.h +612 -0
- package/vendor/mimalloc/mimalloc.pc.in +11 -0
- package/vendor/mimalloc/readme.md +946 -0
- package/vendor/mimalloc/src/alloc-aligned.c +360 -0
- package/vendor/mimalloc/src/alloc-override.c +316 -0
- package/vendor/mimalloc/src/alloc-posix.c +185 -0
- package/vendor/mimalloc/src/alloc.c +692 -0
- package/vendor/mimalloc/src/arena-abandon.c +346 -0
- package/vendor/mimalloc/src/arena.c +1043 -0
- package/vendor/mimalloc/src/bitmap.c +441 -0
- package/vendor/mimalloc/src/bitmap.h +119 -0
- package/vendor/mimalloc/src/free.c +572 -0
- package/vendor/mimalloc/src/heap.c +733 -0
- package/vendor/mimalloc/src/init.c +714 -0
- package/vendor/mimalloc/src/libc.c +334 -0
- package/vendor/mimalloc/src/options.c +663 -0
- package/vendor/mimalloc/src/os.c +770 -0
- package/vendor/mimalloc/src/page-queue.c +390 -0
- package/vendor/mimalloc/src/page.c +1049 -0
- package/vendor/mimalloc/src/prim/emscripten/prim.c +249 -0
- package/vendor/mimalloc/src/prim/osx/alloc-override-zone.c +461 -0
- package/vendor/mimalloc/src/prim/osx/prim.c +9 -0
- package/vendor/mimalloc/src/prim/prim.c +76 -0
- package/vendor/mimalloc/src/prim/readme.md +9 -0
- package/vendor/mimalloc/src/prim/unix/prim.c +934 -0
- package/vendor/mimalloc/src/prim/wasi/prim.c +284 -0
- package/vendor/mimalloc/src/prim/windows/etw-mimalloc.wprp +61 -0
- package/vendor/mimalloc/src/prim/windows/etw.h +905 -0
- package/vendor/mimalloc/src/prim/windows/etw.man +0 -0
- package/vendor/mimalloc/src/prim/windows/prim.c +878 -0
- package/vendor/mimalloc/src/prim/windows/readme.md +17 -0
- package/vendor/mimalloc/src/random.c +258 -0
- package/vendor/mimalloc/src/segment-map.c +142 -0
- package/vendor/mimalloc/src/segment.c +1702 -0
- package/vendor/mimalloc/src/static.c +41 -0
- package/vendor/mimalloc/src/stats.c +635 -0
- package/vendor/mimalloc/test/CMakeLists.txt +56 -0
- package/vendor/mimalloc/test/main-override-dep.cpp +51 -0
- package/vendor/mimalloc/test/main-override-dep.h +11 -0
- package/vendor/mimalloc/test/main-override-static.c +539 -0
- package/vendor/mimalloc/test/main-override.c +36 -0
- package/vendor/mimalloc/test/main-override.cpp +497 -0
- package/vendor/mimalloc/test/main.c +46 -0
- package/vendor/mimalloc/test/readme.md +16 -0
- package/vendor/mimalloc/test/test-api-fill.c +343 -0
- package/vendor/mimalloc/test/test-api.c +466 -0
- package/vendor/mimalloc/test/test-stress.c +428 -0
- package/vendor/mimalloc/test/test-wrong.c +92 -0
- package/vendor/mimalloc/test/testhelper.h +49 -0
|
@@ -0,0 +1,1255 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
+
<!-- This file was generated by dvisvgm 2.9.1 -->
|
|
3
|
+
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='381.628pt' height='255.741pt' viewBox='106.732 54.993 381.628 255.741'>
|
|
4
|
+
<rect width="1000%" height="1000%" fill="white"/>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id='clip2'>
|
|
7
|
+
<path d='M135.949 249.281H487.961V81.519H135.949Z'/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
<use id='g3-40' xlink:href='#g0-40' transform='scale(1.143)'/>
|
|
10
|
+
<use id='g3-41' xlink:href='#g0-41' transform='scale(1.143)'/>
|
|
11
|
+
<use id='g3-45' xlink:href='#g0-45' transform='scale(1.143)'/>
|
|
12
|
+
<use id='g3-49' xlink:href='#g0-49' transform='scale(1.143)'/>
|
|
13
|
+
<use id='g3-54' xlink:href='#g0-54' transform='scale(1.143)'/>
|
|
14
|
+
<use id='g3-56' xlink:href='#g0-56' transform='scale(1.143)'/>
|
|
15
|
+
<use id='g3-58' xlink:href='#g0-58' transform='scale(1.143)'/>
|
|
16
|
+
<use id='g3-78' xlink:href='#g0-78' transform='scale(1.143)'/>
|
|
17
|
+
<use id='g3-97' xlink:href='#g0-97' transform='scale(1.143)'/>
|
|
18
|
+
<use id='g3-98' xlink:href='#g0-98' transform='scale(1.143)'/>
|
|
19
|
+
<use id='g3-99' xlink:href='#g0-99' transform='scale(1.143)'/>
|
|
20
|
+
<use id='g3-100' xlink:href='#g0-100' transform='scale(1.143)'/>
|
|
21
|
+
<use id='g3-101' xlink:href='#g0-101' transform='scale(1.143)'/>
|
|
22
|
+
<use id='g3-103' xlink:href='#g0-103' transform='scale(1.143)'/>
|
|
23
|
+
<use id='g3-104' xlink:href='#g0-104' transform='scale(1.143)'/>
|
|
24
|
+
<use id='g3-105' xlink:href='#g0-105' transform='scale(1.143)'/>
|
|
25
|
+
<use id='g3-106' xlink:href='#g0-106' transform='scale(1.143)'/>
|
|
26
|
+
<use id='g3-108' xlink:href='#g0-108' transform='scale(1.143)'/>
|
|
27
|
+
<use id='g3-109' xlink:href='#g0-109' transform='scale(1.143)'/>
|
|
28
|
+
<use id='g3-110' xlink:href='#g0-110' transform='scale(1.143)'/>
|
|
29
|
+
<use id='g3-111' xlink:href='#g0-111' transform='scale(1.143)'/>
|
|
30
|
+
<use id='g3-112' xlink:href='#g0-112' transform='scale(1.143)'/>
|
|
31
|
+
<use id='g3-114' xlink:href='#g0-114' transform='scale(1.143)'/>
|
|
32
|
+
<use id='g3-115' xlink:href='#g0-115' transform='scale(1.143)'/>
|
|
33
|
+
<use id='g3-116' xlink:href='#g0-116' transform='scale(1.143)'/>
|
|
34
|
+
<use id='g3-119' xlink:href='#g0-119' transform='scale(1.143)'/>
|
|
35
|
+
<use id='g3-120' xlink:href='#g0-120' transform='scale(1.143)'/>
|
|
36
|
+
<use id='g2-44' xlink:href='#g0-44' transform='scale(.714)'/>
|
|
37
|
+
<use id='g2-45' xlink:href='#g0-45' transform='scale(.714)'/>
|
|
38
|
+
<use id='g2-46' xlink:href='#g0-46' transform='scale(.714)'/>
|
|
39
|
+
<use id='g2-48' xlink:href='#g0-48' transform='scale(.714)'/>
|
|
40
|
+
<use id='g2-49' xlink:href='#g0-49' transform='scale(.714)'/>
|
|
41
|
+
<use id='g2-50' xlink:href='#g0-50' transform='scale(.714)'/>
|
|
42
|
+
<use id='g2-51' xlink:href='#g0-51' transform='scale(.714)'/>
|
|
43
|
+
<use id='g2-52' xlink:href='#g0-52' transform='scale(.714)'/>
|
|
44
|
+
<use id='g2-53' xlink:href='#g0-53' transform='scale(.714)'/>
|
|
45
|
+
<use id='g2-54' xlink:href='#g0-54' transform='scale(.714)'/>
|
|
46
|
+
<use id='g2-55' xlink:href='#g0-55' transform='scale(.714)'/>
|
|
47
|
+
<use id='g2-56' xlink:href='#g0-56' transform='scale(.714)'/>
|
|
48
|
+
<use id='g2-57' xlink:href='#g0-57' transform='scale(.714)'/>
|
|
49
|
+
<use id='g2-64' xlink:href='#g0-64' transform='scale(.714)'/>
|
|
50
|
+
<use id='g2-65' xlink:href='#g0-65' transform='scale(.714)'/>
|
|
51
|
+
<use id='g2-67' xlink:href='#g0-67' transform='scale(.714)'/>
|
|
52
|
+
<use id='g2-68' xlink:href='#g0-68' transform='scale(.714)'/>
|
|
53
|
+
<use id='g2-71' xlink:href='#g0-71' transform='scale(.714)'/>
|
|
54
|
+
<use id='g2-77' xlink:href='#g0-77' transform='scale(.714)'/>
|
|
55
|
+
<use id='g2-85' xlink:href='#g0-85' transform='scale(.714)'/>
|
|
56
|
+
<use id='g2-97' xlink:href='#g0-97' transform='scale(.714)'/>
|
|
57
|
+
<use id='g2-98' xlink:href='#g0-98' transform='scale(.714)'/>
|
|
58
|
+
<use id='g2-99' xlink:href='#g0-99' transform='scale(.714)'/>
|
|
59
|
+
<use id='g2-100' xlink:href='#g0-100' transform='scale(.714)'/>
|
|
60
|
+
<use id='g2-101' xlink:href='#g0-101' transform='scale(.714)'/>
|
|
61
|
+
<use id='g2-103' xlink:href='#g0-103' transform='scale(.714)'/>
|
|
62
|
+
<use id='g2-104' xlink:href='#g0-104' transform='scale(.714)'/>
|
|
63
|
+
<use id='g2-105' xlink:href='#g0-105' transform='scale(.714)'/>
|
|
64
|
+
<use id='g2-108' xlink:href='#g0-108' transform='scale(.714)'/>
|
|
65
|
+
<use id='g2-109' xlink:href='#g0-109' transform='scale(.714)'/>
|
|
66
|
+
<use id='g2-110' xlink:href='#g0-110' transform='scale(.714)'/>
|
|
67
|
+
<use id='g2-111' xlink:href='#g0-111' transform='scale(.714)'/>
|
|
68
|
+
<use id='g2-114' xlink:href='#g0-114' transform='scale(.714)'/>
|
|
69
|
+
<use id='g2-115' xlink:href='#g0-115' transform='scale(.714)'/>
|
|
70
|
+
<use id='g2-116' xlink:href='#g0-116' transform='scale(.714)'/>
|
|
71
|
+
<use id='g2-117' xlink:href='#g0-117' transform='scale(.714)'/>
|
|
72
|
+
<use id='g2-120' xlink:href='#g0-120' transform='scale(.714)'/>
|
|
73
|
+
<use id='g2-122' xlink:href='#g0-122' transform='scale(.714)'/>
|
|
74
|
+
<path id='g4-1' d='M1.445-1.245C1.445-1.41 1.305-1.549 1.141-1.549S.837-1.41 .837-1.245S.976-.941 1.141-.941S1.445-1.081 1.445-1.245Z'/>
|
|
75
|
+
<path id='g1-82' d='M3.891-2.914C4.806-3.165 5.452-3.811 5.452-4.546C5.452-5.469 4.411-6.223 3.129-6.223H.87V0H1.704V-2.824H3.138L4.842 0H5.703L3.891-2.914ZM1.704-3.407V-5.694H3.022C4.062-5.694 4.671-5.192 4.671-4.546C4.671-3.963 4.125-3.407 3.022-3.407H1.704Z'/>
|
|
76
|
+
<path id='g1-97' d='M3.694-2.591C3.694-3.479 3.04-4.133 2.152-4.133C1.569-4.133 1.139-3.981 .708-3.739L.762-3.102C1.21-3.434 1.65-3.569 2.143-3.569C2.645-3.569 2.95-3.165 2.95-2.582V-2.206C1.408-2.17 .395-1.766 .395-1.04C.395-.619 .672 .099 1.453 .099C1.632 .099 2.412 .081 2.977-.341V0H3.694V-2.591ZM2.95-1.255C2.95-1.067 2.95-.843 2.627-.655C2.403-.52 2.107-.484 1.928-.484C1.47-.484 1.085-.699 1.085-1.058C1.085-1.695 2.833-1.722 2.95-1.722V-1.255Z'/>
|
|
77
|
+
<path id='g1-101' d='M3.829-1.964C3.829-2.242 3.82-2.923 3.47-3.461C3.093-4.026 2.52-4.133 2.179-4.133C1.139-4.133 .314-3.174 .314-2.026C.314-.843 1.193 .099 2.313 .099C2.744 .099 3.264-.009 3.784-.341L3.73-.959C3.165-.556 2.636-.484 2.322-.484C1.578-.484 1.004-1.139 .977-1.964H3.829ZM1.031-2.493C1.175-3.067 1.614-3.551 2.179-3.551C2.511-3.551 3.12-3.398 3.291-2.493H1.031Z'/>
|
|
78
|
+
<path id='g1-105' d='M1.524-6.133H.664V-5.272H1.524V-6.133ZM1.453-3.981H.735V0H1.453V-3.981Z'/>
|
|
79
|
+
<path id='g1-108' d='M1.453-6.223H.735V0H1.453V-6.223Z'/>
|
|
80
|
+
<path id='g1-109' d='M6.581-2.663C6.581-3.327 6.402-4.08 5.317-4.08C4.564-4.08 4.142-3.622 3.927-3.344C3.865-3.524 3.676-4.08 2.762-4.08C2.053-4.08 1.623-3.667 1.417-3.398V-4.035H.726V0H1.47V-2.188C1.47-2.78 1.704-3.497 2.385-3.497C3.282-3.497 3.282-2.86 3.282-2.6V0H4.026V-2.188C4.026-2.78 4.259-3.497 4.94-3.497C5.837-3.497 5.837-2.86 5.837-2.6V0H6.581V-2.663Z'/>
|
|
81
|
+
<path id='g1-116' d='M1.623-3.425H2.914V-3.981H1.623V-5.12H.959V-3.981H.17V-3.425H.933V-1.13C.933-.601 1.049 .099 1.704 .099C2.098 .099 2.564 .018 3.067-.233L2.914-.798C2.681-.619 2.367-.511 2.089-.511C1.739-.511 1.623-.825 1.623-1.291V-3.425Z'/>
|
|
82
|
+
<path id='g1-118' d='M4.116-3.981H3.407L2.699-2.161C2.52-1.695 2.188-.825 2.143-.493H2.125C2.107-.646 2.08-.816 1.587-2.107C1.318-2.833 .879-3.927 .861-3.981H.126L1.704 0H2.537L4.116-3.981Z'/>
|
|
83
|
+
<path id='g0-40' d='M2.127-5.23C2.008-5.23 1.995-5.23 1.911-5.154C1.032-4.387 .586-3.145 .586-1.743C.586-.425 .983 .844 1.904 1.653C1.995 1.743 2.008 1.743 2.127 1.743H2.462C2.441 1.73 1.764 1.151 1.444 .063C1.276-.481 1.193-1.053 1.193-1.743C1.193-4.156 2.322-5.112 2.462-5.23H2.127Z'/>
|
|
84
|
+
<path id='g0-41' d='M.746 1.743C.865 1.743 .879 1.743 .962 1.667C1.841 .9 2.287-.342 2.287-1.743C2.287-3.062 1.89-4.331 .969-5.14C.879-5.23 .865-5.23 .746-5.23H.411C.432-5.216 1.109-4.638 1.43-3.55C1.597-3.006 1.681-2.434 1.681-1.743C1.681 .669 .551 1.625 .411 1.743H.746Z'/>
|
|
85
|
+
<path id='g0-44' d='M1.339-.007V-.628H.711V0H.907L.704 .893H1.018L1.339-.007Z'/>
|
|
86
|
+
<path id='g0-45' d='M2.05-1.332V-1.771H.084V-1.332H2.05Z'/>
|
|
87
|
+
<path id='g0-46' d='M1.339-.628H.711V0H1.339V-.628Z'/>
|
|
88
|
+
<path id='g0-48' d='M3.403-2.267C3.403-2.601 3.403-3.417 3.075-3.989C2.72-4.617 2.183-4.721 1.848-4.721C1.534-4.721 .99-4.624 .642-4.024C.307-3.466 .293-2.706 .293-2.267C.293-1.75 .321-1.116 .614-.586C.921-.021 1.437 .146 1.848 .146C2.545 .146 2.929-.258 3.138-.697C3.382-1.193 3.403-1.834 3.403-2.267ZM1.848-.314C1.555-.314 1.22-.481 1.046-.983C.907-1.409 .9-1.848 .9-2.357C.9-2.999 .9-4.261 1.848-4.261S2.797-2.999 2.797-2.357C2.797-1.897 2.797-1.374 2.629-.928C2.434-.425 2.078-.314 1.848-.314Z'/>
|
|
89
|
+
<path id='g0-49' d='M2.239-4.721H2.085C1.632-4.303 1.06-4.275 .642-4.261V-3.822C.914-3.829 1.262-3.843 1.611-3.982V-.439H.683V0H3.166V-.439H2.239V-4.721Z'/>
|
|
90
|
+
<path id='g0-50' d='M1.974-.537C1.89-.537 1.806-.53 1.723-.53H.928L2.008-1.485C2.134-1.597 2.476-1.855 2.608-1.967C2.915-2.246 3.327-2.608 3.327-3.215C3.327-4.003 2.741-4.721 1.743-4.721C1.004-4.721 .544-4.324 .307-3.612L.635-3.201C.795-3.787 1.039-4.24 1.646-4.24C2.232-4.24 2.678-3.829 2.678-3.201C2.678-2.622 2.336-2.294 1.918-1.897C1.778-1.757 1.402-1.444 1.255-1.304C1.053-1.123 .572-.656 .37-.481V0H3.327V-.537H1.974Z'/>
|
|
91
|
+
<path id='g0-51' d='M.697-3.578C.983-4.135 1.485-4.289 1.82-4.289C2.232-4.289 2.538-4.052 2.538-3.654C2.538-3.285 2.287-2.831 1.757-2.741C1.723-2.734 1.695-2.734 1.234-2.699V-2.239H1.778C2.441-2.239 2.685-1.716 2.685-1.276C2.685-.732 2.35-.314 1.806-.314C1.311-.314 .746-.551 .398-.997L.307-.544C.711-.091 1.276 .146 1.82 .146C2.734 .146 3.389-.537 3.389-1.269C3.389-1.841 2.929-2.301 2.378-2.462C2.908-2.734 3.18-3.201 3.18-3.654C3.18-4.247 2.573-4.721 1.827-4.721C1.213-4.721 .704-4.4 .411-3.982L.697-3.578Z'/>
|
|
92
|
+
<path id='g0-52' d='M2.762-1.165H3.487V-1.625H2.762V-4.575H2.071L.209-1.625V-1.165H2.162V0H2.762V-1.165ZM.802-1.625C1.011-1.953 2.211-3.815 2.211-4.233V-1.625H.802Z'/>
|
|
93
|
+
<path id='g0-53' d='M1.144-4.094H3.075V-4.575H.586V-1.967H1.095C1.262-2.343 1.59-2.511 1.904-2.511C2.19-2.511 2.622-2.315 2.622-1.43C2.622-.516 2.043-.314 1.688-.314C1.227-.314 .781-.558 .544-.955L.279-.537C.621-.112 1.137 .146 1.688 .146C2.608 .146 3.327-.565 3.327-1.416C3.327-2.28 2.685-2.971 1.918-2.971C1.618-2.971 1.353-2.866 1.144-2.692V-4.094Z'/>
|
|
94
|
+
<path id='g0-54' d='M3.062-4.582C2.685-4.721 2.42-4.721 2.287-4.721C1.227-4.721 .307-3.724 .307-2.253C.307-.363 1.158 .146 1.862 .146C2.427 .146 2.72-.119 2.936-.342C3.382-.816 3.389-1.311 3.389-1.555C3.389-2.469 2.894-3.229 2.218-3.229C1.534-3.229 1.165-2.873 .962-2.671C1.053-3.626 1.541-4.289 2.294-4.289C2.434-4.289 2.713-4.275 3.062-4.142V-4.582ZM.969-1.534C.969-1.576 .969-1.681 .976-1.716C.976-2.19 1.276-2.769 1.897-2.769C2.748-2.769 2.748-1.792 2.748-1.555C2.748-1.29 2.748-.997 2.559-.704C2.392-.453 2.183-.314 1.862-.314C1.123-.314 1.004-1.227 .969-1.534Z'/>
|
|
95
|
+
<path id='g0-55' d='M1.723-4.038C1.806-4.038 1.89-4.045 1.974-4.045H2.852C1.792-3.006 1.116-1.548 1.116 .07H1.771C1.771-1.967 2.762-3.431 3.389-4.087V-4.575H.307V-4.038H1.723Z'/>
|
|
96
|
+
<path id='g0-56' d='M2.385-2.469C2.845-2.615 3.285-2.985 3.285-3.501C3.285-4.135 2.678-4.721 1.848-4.721S.411-4.135 .411-3.501C.411-2.978 .865-2.608 1.311-2.469C.697-2.28 .307-1.806 .307-1.269C.307-.523 .969 .146 1.848 .146S3.389-.523 3.389-1.269C3.389-1.806 2.992-2.28 2.385-2.469ZM1.848-2.699C1.353-2.699 .948-2.985 .948-3.494C.948-3.94 1.262-4.289 1.848-4.289C2.427-4.289 2.748-3.94 2.748-3.494C2.748-2.999 2.357-2.699 1.848-2.699ZM1.848-.314C1.367-.314 .941-.621 .941-1.276C.941-1.904 1.346-2.239 1.848-2.239S2.755-1.897 2.755-1.276C2.755-.621 2.322-.314 1.848-.314Z'/>
|
|
97
|
+
<path id='g0-57' d='M.537-.174C.879 .077 1.193 .146 1.52 .146C2.497 .146 3.389-.837 3.389-2.336C3.389-4.24 2.545-4.721 1.876-4.721C1.255-4.721 .969-4.428 .767-4.226C.321-3.773 .307-3.292 .307-3.02C.307-2.12 .795-1.346 1.478-1.346C2.267-1.346 2.699-1.869 2.734-1.911C2.636-.802 2.092-.314 1.52-.314C1.158-.314 .934-.446 .774-.579L.537-.174ZM2.713-3.027C2.72-2.985 2.72-2.915 2.72-2.873C2.72-2.357 2.406-1.806 1.799-1.806C1.534-1.806 1.325-1.883 1.144-2.169C.962-2.441 .948-2.706 .948-3.02C.948-3.292 .948-3.605 1.165-3.912C1.311-4.122 1.52-4.289 1.869-4.289C2.545-4.289 2.692-3.473 2.713-3.027Z'/>
|
|
98
|
+
<path id='g0-58' d='M1.339-3.096H.711V-2.469H1.339V-3.096ZM.711-.628V0H1.339V-.628H.711Z'/>
|
|
99
|
+
<path id='g0-64' d='M4.142-.614C4.038-.614 4.024-.614 3.968-.586C3.626-.467 3.271-.391 2.901-.391C1.778-.391 .976-1.339 .976-2.42C.976-3.592 1.883-4.449 2.859-4.449C3.055-4.449 3.515-4.4 3.745-3.843C3.55-3.954 3.333-4.003 3.152-4.003C2.406-4.003 1.778-3.306 1.778-2.42C1.778-1.513 2.427-.837 3.145-.837C3.689-.837 4.519-1.276 4.519-2.518C4.519-3.222 4.47-4.91 2.866-4.91C1.541-4.91 .411-3.815 .411-2.42C.411-1.039 1.527 .07 2.873 .07C3.515 .07 4.115-.195 4.519-.614H4.142ZM3.152-1.297C2.72-1.297 2.343-1.778 2.343-2.42C2.343-3.082 2.734-3.543 3.145-3.543C3.578-3.543 3.954-3.062 3.954-2.42C3.954-1.757 3.564-1.297 3.152-1.297Z'/>
|
|
100
|
+
<path id='g0-65' d='M2.803-4.84H2.127L.209 0H.781L1.325-1.381H3.445L3.989 0H4.721L2.803-4.84ZM2.392-4.31L3.271-1.792H1.499L2.392-4.31Z'/>
|
|
101
|
+
<path id='g0-67' d='M4.317-.851C3.829-.551 3.605-.418 2.908-.418C1.827-.418 1.172-1.43 1.172-2.434C1.172-3.466 1.89-4.435 2.908-4.435C3.368-4.435 3.843-4.289 4.163-4.045L4.275-4.679C3.787-4.861 3.396-4.917 2.887-4.917C1.506-4.917 .474-3.773 .474-2.427C.474-.99 1.569 .07 2.929 .07C3.612 .07 3.898-.07 4.359-.321L4.317-.851Z'/>
|
|
102
|
+
<path id='g0-68' d='M.683-4.84V0H2.664C3.919 0 4.931-1.06 4.931-2.378C4.931-3.745 3.912-4.84 2.664-4.84H.683ZM1.367-.411V-4.428H2.476C3.431-4.428 4.247-3.668 4.247-2.385C4.247-1.088 3.396-.411 2.476-.411H1.367Z'/>
|
|
103
|
+
<path id='g0-71' d='M4.442-2.085H2.88V-1.625H3.829V-.558C3.522-.481 3.222-.418 2.908-.418C1.834-.418 1.172-1.43 1.172-2.427C1.172-3.382 1.82-4.435 2.873-4.435C3.515-4.435 3.919-4.24 4.268-3.947L4.38-4.582C3.898-4.812 3.473-4.924 2.943-4.924C1.534-4.924 .474-3.822 .474-2.427C.474-1.067 1.527 .07 2.901 .07C3.403 .07 3.996-.042 4.442-.272V-2.085Z'/>
|
|
104
|
+
<path id='g0-77' d='M3.884-2.42C3.801-2.211 3.299-.983 3.229-.69H3.222C3.173-.893 2.852-1.695 2.783-1.876L1.583-4.84H.732V0H1.318V-4.282H1.325C1.381-4.038 1.743-3.117 1.778-3.041L2.943-.146H3.494L4.533-2.713C4.533-2.72 5.014-3.905 5.133-4.289H5.14V0H5.726V-4.84H4.868L3.884-2.42Z'/>
|
|
105
|
+
<path id='g0-78' d='M1.646-4.84H.697V0H1.283V-4.289H1.29L3.578 0H4.526V-4.84H3.94V-.551H3.933L1.646-4.84Z'/>
|
|
106
|
+
<path id='g0-85' d='M4.4-4.84H3.794V-1.625C3.794-.69 3.166-.265 2.566-.265S1.381-.697 1.381-1.618V-4.84H.676V-1.632C.676-.607 1.555 .146 2.559 .146C3.557 .146 4.4-.614 4.4-1.632V-4.84Z'/>
|
|
107
|
+
<path id='g0-97' d='M2.971-2.008C2.971-2.72 2.427-3.201 1.736-3.201C1.297-3.201 .962-3.11 .572-2.901L.614-2.392C.844-2.545 1.186-2.755 1.736-2.755C2.043-2.755 2.364-2.525 2.364-2.001V-1.723C1.332-1.688 .314-1.471 .314-.823C.314-.474 .551 .07 1.165 .07C1.465 .07 2.015 .007 2.385-.265V0H2.971V-2.008ZM2.364-.99C2.364-.851 2.364-.669 2.12-.523C1.897-.398 1.625-.391 1.548-.391C1.165-.391 .872-.565 .872-.83C.872-1.276 2.05-1.318 2.364-1.332V-.99Z'/>
|
|
108
|
+
<path id='g0-98' d='M1.179-4.84H.593V0H1.2V-.328C1.353-.195 1.688 .07 2.197 .07C2.957 .07 3.571-.642 3.571-1.555C3.571-2.399 3.089-3.166 2.392-3.166C1.953-3.166 1.527-3.027 1.179-2.769V-4.84ZM1.2-2.197C1.2-2.308 1.2-2.392 1.444-2.552C1.548-2.615 1.736-2.706 1.974-2.706C2.441-2.706 2.964-2.392 2.964-1.555C2.964-.704 2.385-.391 1.897-.391C1.639-.391 1.395-.509 1.2-.823V-2.197Z'/>
|
|
109
|
+
<path id='g0-99' d='M3.034-.76C2.685-.537 2.308-.411 1.876-.411C1.234-.411 .858-.928 .858-1.555C.858-2.092 1.137-2.72 1.897-2.72C2.371-2.72 2.594-2.622 2.95-2.399L3.041-2.901C2.622-3.11 2.441-3.201 1.897-3.201C.851-3.201 .251-2.357 .251-1.548C.251-.697 .921 .07 1.869 .07C2.357 .07 2.776-.077 3.075-.251L3.034-.76Z'/>
|
|
110
|
+
<path id='g0-100' d='M3.229-4.84H2.643V-2.797C2.197-3.124 1.743-3.166 1.541-3.166C.809-3.166 .251-2.434 .251-1.548S.802 .07 1.52 .07C1.953 .07 2.357-.126 2.622-.363V0H3.229V-4.84ZM2.622-.865C2.448-.579 2.183-.391 1.848-.391C1.36-.391 .858-.732 .858-1.541C.858-2.413 1.451-2.706 1.925-2.706C2.204-2.706 2.441-2.587 2.622-2.35V-.865Z'/>
|
|
111
|
+
<path id='g0-101' d='M2.999-.76C2.608-.481 2.169-.391 1.869-.391C1.262-.391 .802-.886 .781-1.527H3.068C3.068-1.848 3.034-2.315 2.762-2.713C2.511-3.068 2.092-3.201 1.75-3.201C.9-3.201 .244-2.455 .244-1.569C.244-.676 .941 .07 1.862 .07C2.267 .07 2.685-.049 3.041-.265L2.999-.76ZM.83-1.946C.99-2.504 1.402-2.741 1.75-2.741C2.057-2.741 2.511-2.594 2.643-1.946H.83Z'/>
|
|
112
|
+
<path id='g0-103' d='M3.508-3.166C3.354-3.166 2.887-3.159 2.357-2.957L2.343-2.95C2.092-3.117 1.848-3.166 1.646-3.166C.962-3.166 .453-2.629 .453-2.029C.453-1.785 .537-1.534 .697-1.339C.6-1.22 .495-1.025 .495-.76C.495-.488 .607-.314 .669-.23C.286-.007 .209 .314 .209 .481C.209 1.011 .941 1.43 1.848 1.43C2.762 1.43 3.487 1.011 3.487 .481C3.487-.502 2.267-.502 1.967-.502H1.318C1.206-.502 .907-.502 .907-.865C.907-1.004 .955-1.074 .962-1.088C1.206-.934 1.451-.886 1.639-.886C2.322-.886 2.831-1.423 2.831-2.022C2.831-2.246 2.769-2.448 2.643-2.636C2.615-2.678 2.615-2.685 2.615-2.692C2.615-2.72 3.034-2.72 3.068-2.72C3.075-2.72 3.34-2.72 3.592-2.692L3.508-3.166ZM1.646-1.318C1.269-1.318 .99-1.555 .99-2.022C.99-2.566 1.339-2.734 1.639-2.734C2.015-2.734 2.294-2.497 2.294-2.029C2.294-1.485 1.946-1.318 1.646-1.318ZM1.974 .042C2.134 .042 2.957 .042 2.957 .488C2.957 .788 2.434 .997 1.848 .997S.739 .788 .739 .488C.739 .453 .739 .042 1.304 .042H1.974Z'/>
|
|
113
|
+
<path id='g0-104' d='M3.243-2.064C3.243-2.608 3.082-3.166 2.225-3.166C1.625-3.166 1.304-2.817 1.165-2.671V-4.84H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-2.064Z'/>
|
|
114
|
+
<path id='g0-105' d='M1.227-4.784H.523V-4.08H1.227V-4.784ZM1.172-3.096H.586V0H1.172V-3.096Z'/>
|
|
115
|
+
<path id='g0-106' d='M1.381-4.784H.676V-4.08H1.381V-4.784ZM-.453 1.186C-.133 1.36 .181 1.423 .446 1.423C.928 1.423 1.381 1.053 1.381 .411V-3.096H.795V.46C.795 .586 .795 .697 .649 .816C.488 .934 .293 .934 .23 .934C-.063 .934-.244 .802-.328 .725L-.453 1.186Z'/>
|
|
116
|
+
<path id='g0-108' d='M1.172-4.84H.586V0H1.172V-4.84Z'/>
|
|
117
|
+
<path id='g0-109' d='M5.3-2.064C5.3-2.608 5.14-3.166 4.282-3.166C3.696-3.166 3.333-2.824 3.166-2.601C3.096-2.79 2.922-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-1.695C3.243-2.155 3.438-2.706 3.975-2.706C4.693-2.706 4.693-2.218 4.693-2.015V0H5.3V-2.064Z'/>
|
|
118
|
+
<path id='g0-110' d='M3.243-2.064C3.243-2.608 3.082-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-2.064Z'/>
|
|
119
|
+
<path id='g0-111' d='M3.487-1.527C3.487-2.448 2.755-3.201 1.848-3.201S.209-2.441 .209-1.527C.209-.642 .948 .07 1.848 .07C2.755 .07 3.487-.642 3.487-1.527ZM1.848-.411C1.297-.411 .816-.816 .816-1.604S1.332-2.741 1.848-2.741C2.371-2.741 2.88-2.378 2.88-1.604C2.88-.809 2.385-.411 1.848-.411Z'/>
|
|
120
|
+
<path id='g0-112' d='M1.2-.328C1.569 .007 1.967 .07 2.204 .07C2.943 .07 3.571-.635 3.571-1.555C3.571-2.392 3.11-3.166 2.42-3.166C2.106-3.166 1.583-3.075 1.179-2.762V-3.096H.593V1.353H1.2V-.328ZM1.2-2.315C1.36-2.511 1.632-2.685 1.967-2.685C2.525-2.685 2.964-2.169 2.964-1.555C2.964-.865 2.441-.391 1.897-.391C1.792-.391 1.618-.404 1.437-.551C1.227-.711 1.2-.816 1.2-.948V-2.315Z'/>
|
|
121
|
+
<path id='g0-114' d='M1.179-1.485C1.179-2.239 1.806-2.643 2.42-2.65V-3.166C1.834-3.159 1.409-2.873 1.13-2.504V-3.145H.593V0H1.179V-1.485Z'/>
|
|
122
|
+
<path id='g0-115' d='M2.545-2.985C2.071-3.18 1.723-3.201 1.471-3.201C1.297-3.201 .244-3.201 .244-2.273C.244-1.946 .425-1.764 .516-1.681C.76-1.437 1.053-1.381 1.423-1.311C1.75-1.248 2.127-1.179 2.127-.844C2.127-.404 1.548-.404 1.451-.404C1.004-.404 .586-.565 .307-.76L.209-.237C.446-.119 .872 .07 1.451 .07C1.764 .07 2.071 .021 2.329-.167C2.587-.363 2.671-.669 2.671-.907C2.671-1.032 2.657-1.304 2.364-1.569C2.106-1.799 1.855-1.848 1.52-1.911C1.109-1.988 .788-2.05 .788-2.357C.788-2.755 1.297-2.755 1.402-2.755C1.799-2.755 2.106-2.671 2.455-2.49L2.545-2.985Z'/>
|
|
123
|
+
<path id='g0-116' d='M1.311-2.657H2.343V-3.096H1.311V-3.982H.774V-3.096H.139V-2.657H.753V-.893C.753-.425 .872 .07 1.374 .07S2.26-.091 2.469-.188L2.35-.635C2.12-.467 1.876-.411 1.681-.411C1.388-.411 1.311-.697 1.311-1.018V-2.657Z'/>
|
|
124
|
+
<path id='g0-117' d='M3.243-3.096H2.636V-1.074C2.636-.516 2.162-.342 1.757-.342C1.241-.342 1.186-.481 1.186-.802V-3.096H.579V-.76C.579-.139 .851 .07 1.339 .07C1.625 .07 2.239 .014 2.657-.321V0H3.243V-3.096Z'/>
|
|
125
|
+
<path id='g0-119' d='M4.951-3.096H4.407C4.345-2.901 3.954-1.723 3.738-.997C3.682-.795 3.612-.572 3.592-.411H3.585C3.543-.697 3.299-1.451 3.285-1.499L2.769-3.096H2.239C2.036-2.497 1.513-.934 1.458-.425H1.451C1.395-.921 .879-2.462 .767-2.797C.711-2.964 .711-2.978 .676-3.096H.105L1.123 0H1.709C1.716-.028 1.904-.579 2.148-1.353C2.253-1.695 2.462-2.364 2.497-2.671L2.504-2.678C2.518-2.532 2.559-2.378 2.608-2.204S2.706-1.841 2.755-1.681L3.292 0H3.933L4.951-3.096Z'/>
|
|
126
|
+
<path id='g0-120' d='M1.932-1.597L3.285-3.096H2.671L1.681-1.953L.669-3.096H.042L1.437-1.597L0 0H.621L1.681-1.311L2.783 0H3.41L1.932-1.597Z'/>
|
|
127
|
+
<path id='g0-122' d='M2.957-2.803V-3.096H.307V-2.65H1.332C1.416-2.65 1.499-2.657 1.583-2.657H2.127L.209-.307V0H2.978V-.467H1.897C1.813-.467 1.73-.46 1.646-.46H1.039L2.957-2.803Z'/>
|
|
128
|
+
</defs>
|
|
129
|
+
<g id='page2'>
|
|
130
|
+
<path d='M194.617 258.141V249.281M253.285 258.141V249.281M311.953 258.141V249.281M370.625 258.141V249.281M429.293 258.141V249.281M194.617 72.66V81.519M253.285 72.66V81.519M311.953 72.66V81.519M370.625 72.66V81.519M429.293 72.66V81.519' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
131
|
+
<path d='M165.281 253.535V249.281M223.953 253.535V249.281M282.621 253.535V249.281M341.289 253.535V249.281M399.957 253.535V249.281M458.629 253.535V249.281M165.281 77.266V81.519M223.953 77.266V81.519M282.621 77.266V81.519M341.289 77.266V81.519M399.957 77.266V81.519M458.629 77.266V81.519' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
132
|
+
<path d='M135.949 249.281H140.199M135.949 215.73H140.199M135.949 182.176H140.199M135.949 148.625H140.199M135.949 115.07H140.199M135.949 81.519H140.199M487.961 249.281H483.711M487.961 215.73H483.711M487.961 182.176H483.711M487.961 148.625H483.711M487.961 115.07H483.711M487.961 81.519H483.711' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
|
|
133
|
+
<path d='M135.949 249.281V81.519H487.961V249.281H135.949Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
134
|
+
<g transform='matrix(1 0 0 1 -21.265 74.992)'>
|
|
135
|
+
<use x='168.285' y='188.688' xlink:href='#g3-97'/>
|
|
136
|
+
<use x='172.353' y='188.688' xlink:href='#g3-108'/>
|
|
137
|
+
<use x='174.373' y='188.688' xlink:href='#g3-108'/>
|
|
138
|
+
<use x='176.393' y='188.688' xlink:href='#g3-111'/>
|
|
139
|
+
<use x='180.863' y='188.688' xlink:href='#g3-99'/>
|
|
140
|
+
<use x='184.627' y='188.688' xlink:href='#g3-45'/>
|
|
141
|
+
<use x='187.449' y='188.688' xlink:href='#g3-116'/>
|
|
142
|
+
<use x='190.507' y='188.688' xlink:href='#g3-101'/>
|
|
143
|
+
<use x='194.271' y='188.688' xlink:href='#g3-115'/>
|
|
144
|
+
<use x='197.517' y='188.688' xlink:href='#g3-116'/>
|
|
145
|
+
<use x='200.575' y='188.688' xlink:href='#g3-49'/>
|
|
146
|
+
</g>
|
|
147
|
+
<g transform='matrix(1 0 0 1 36.532 74.992)'>
|
|
148
|
+
<use x='168.285' y='188.688' xlink:href='#g3-97'/>
|
|
149
|
+
<use x='172.353' y='188.688' xlink:href='#g3-108'/>
|
|
150
|
+
<use x='174.373' y='188.688' xlink:href='#g3-108'/>
|
|
151
|
+
<use x='176.393' y='188.688' xlink:href='#g3-111'/>
|
|
152
|
+
<use x='180.863' y='188.688' xlink:href='#g3-99'/>
|
|
153
|
+
<use x='184.627' y='188.688' xlink:href='#g3-45'/>
|
|
154
|
+
<use x='187.449' y='188.688' xlink:href='#g3-116'/>
|
|
155
|
+
<use x='190.507' y='188.688' xlink:href='#g3-101'/>
|
|
156
|
+
<use x='194.271' y='188.688' xlink:href='#g3-115'/>
|
|
157
|
+
<use x='197.517' y='188.688' xlink:href='#g3-116'/>
|
|
158
|
+
<use x='200.575' y='188.688' xlink:href='#g3-78'/>
|
|
159
|
+
</g>
|
|
160
|
+
<g transform='matrix(1 0 0 1 94.98 74.992)'>
|
|
161
|
+
<use x='168.285' y='188.688' xlink:href='#g3-115'/>
|
|
162
|
+
<use x='171.531' y='188.688' xlink:href='#g3-104'/>
|
|
163
|
+
<use x='175.904' y='188.688' xlink:href='#g3-54'/>
|
|
164
|
+
<use x='180.138' y='188.688' xlink:href='#g3-98'/>
|
|
165
|
+
<use x='184.746' y='188.688' xlink:href='#g3-101'/>
|
|
166
|
+
<use x='188.509' y='188.688' xlink:href='#g3-110'/>
|
|
167
|
+
<use x='192.882' y='188.688' xlink:href='#g3-99'/>
|
|
168
|
+
<use x='196.646' y='188.688' xlink:href='#g3-104'/>
|
|
169
|
+
<use x='201.018' y='188.688' xlink:href='#g3-78'/>
|
|
170
|
+
</g>
|
|
171
|
+
<g transform='matrix(1 0 0 1 153.649 74.992)'>
|
|
172
|
+
<use x='168.285' y='188.688' xlink:href='#g3-115'/>
|
|
173
|
+
<use x='171.531' y='188.688' xlink:href='#g3-104'/>
|
|
174
|
+
<use x='175.904' y='188.688' xlink:href='#g3-56'/>
|
|
175
|
+
<use x='180.138' y='188.688' xlink:href='#g3-98'/>
|
|
176
|
+
<use x='184.746' y='188.688' xlink:href='#g3-101'/>
|
|
177
|
+
<use x='188.509' y='188.688' xlink:href='#g3-110'/>
|
|
178
|
+
<use x='192.882' y='188.688' xlink:href='#g3-99'/>
|
|
179
|
+
<use x='196.646' y='188.688' xlink:href='#g3-104'/>
|
|
180
|
+
<use x='201.018' y='188.688' xlink:href='#g3-78'/>
|
|
181
|
+
</g>
|
|
182
|
+
<g transform='matrix(1 0 0 1 207.225 74.992)'>
|
|
183
|
+
<use x='168.285' y='188.688' xlink:href='#g3-120'/>
|
|
184
|
+
<use x='172.187' y='188.688' xlink:href='#g3-109'/>
|
|
185
|
+
<use x='178.912' y='188.688' xlink:href='#g3-97'/>
|
|
186
|
+
<use x='182.98' y='188.688' xlink:href='#g3-108'/>
|
|
187
|
+
<use x='185' y='188.688' xlink:href='#g3-108'/>
|
|
188
|
+
<use x='187.02' y='188.688' xlink:href='#g3-111'/>
|
|
189
|
+
<use x='191.49' y='188.688' xlink:href='#g3-99'/>
|
|
190
|
+
<use x='195.254' y='188.688' xlink:href='#g3-45'/>
|
|
191
|
+
<use x='198.076' y='188.688' xlink:href='#g3-116'/>
|
|
192
|
+
<use x='201.134' y='188.688' xlink:href='#g3-101'/>
|
|
193
|
+
<use x='204.898' y='188.688' xlink:href='#g3-115'/>
|
|
194
|
+
<use x='208.144' y='188.688' xlink:href='#g3-116'/>
|
|
195
|
+
<use x='211.202' y='188.688' xlink:href='#g3-78'/>
|
|
196
|
+
</g>
|
|
197
|
+
<g transform='matrix(1 0 0 1 263.494 74.992)'>
|
|
198
|
+
<use x='168.285' y='188.688' xlink:href='#g3-99'/>
|
|
199
|
+
<use x='172.049' y='188.688' xlink:href='#g3-97'/>
|
|
200
|
+
<use x='176.117' y='188.688' xlink:href='#g3-99'/>
|
|
201
|
+
<use x='179.88' y='188.688' xlink:href='#g3-104'/>
|
|
202
|
+
<use x='184.253' y='188.688' xlink:href='#g3-101'/>
|
|
203
|
+
<use x='188.017' y='188.688' xlink:href='#g3-45'/>
|
|
204
|
+
<use x='190.839' y='188.688' xlink:href='#g3-115'/>
|
|
205
|
+
<use x='194.086' y='188.688' xlink:href='#g3-99'/>
|
|
206
|
+
<use x='197.849' y='188.688' xlink:href='#g3-114'/>
|
|
207
|
+
<use x='200.741' y='188.688' xlink:href='#g3-97'/>
|
|
208
|
+
<use x='204.81' y='188.688' xlink:href='#g3-116'/>
|
|
209
|
+
<use x='207.868' y='188.688' xlink:href='#g3-99'/>
|
|
210
|
+
<use x='211.631' y='188.688' xlink:href='#g3-104'/>
|
|
211
|
+
<use x='216.004' y='188.688' xlink:href='#g3-78'/>
|
|
212
|
+
</g>
|
|
213
|
+
<g transform='matrix(1 0 0 1 -40.942 62.23)'>
|
|
214
|
+
<use x='168.285' y='188.688' xlink:href='#g2-48'/>
|
|
215
|
+
<use x='170.931' y='188.688' xlink:href='#g2-120'/>
|
|
216
|
+
</g>
|
|
217
|
+
<g transform='matrix(1 0 0 1 -45.059 28.677)'>
|
|
218
|
+
<use x='168.285' y='188.688' xlink:href='#g2-48'/>
|
|
219
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
220
|
+
<use x='172.401' y='188.688' xlink:href='#g2-53'/>
|
|
221
|
+
<use x='175.048' y='188.688' xlink:href='#g2-120'/>
|
|
222
|
+
</g>
|
|
223
|
+
<g transform='matrix(1 0 0 1 -45.059 -4.876)'>
|
|
224
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
225
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
226
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
227
|
+
<use x='175.048' y='188.688' xlink:href='#g2-120'/>
|
|
228
|
+
</g>
|
|
229
|
+
<g transform='matrix(1 0 0 1 -45.059 -38.43)'>
|
|
230
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
231
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
232
|
+
<use x='172.401' y='188.688' xlink:href='#g2-53'/>
|
|
233
|
+
<use x='175.048' y='188.688' xlink:href='#g2-120'/>
|
|
234
|
+
</g>
|
|
235
|
+
<g transform='matrix(1 0 0 1 -45.059 -71.983)'>
|
|
236
|
+
<use x='168.285' y='188.688' xlink:href='#g2-50'/>
|
|
237
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
238
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
239
|
+
<use x='175.048' y='188.688' xlink:href='#g2-120'/>
|
|
240
|
+
</g>
|
|
241
|
+
<g transform='matrix(1 0 0 1 -45.059 -105.536)'>
|
|
242
|
+
<use x='168.285' y='188.688' xlink:href='#g2-50'/>
|
|
243
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
244
|
+
<use x='172.401' y='188.688' xlink:href='#g2-53'/>
|
|
245
|
+
<use x='175.048' y='188.688' xlink:href='#g2-120'/>
|
|
246
|
+
</g>
|
|
247
|
+
<path d='M135.949 182.176H487.961' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
248
|
+
<path d='M140.125 249.281H143.363V182.176H140.125ZM198.797 249.281H202.035V182.176H198.797ZM257.465 249.281H260.703V182.176H257.465ZM316.133 249.281H319.371V182.176H316.133ZM374.801 249.281H378.039V182.176H374.801ZM433.473 249.281H436.711V182.176H433.473Z' fill='#933' clip-path='url(#clip2)'/>
|
|
249
|
+
<path d='M140.125 249.281H143.363V182.176H140.125ZM198.797 249.281H202.035V182.176H198.797ZM257.465 249.281H260.703V182.176H257.465ZM316.133 249.281H319.371V182.176H316.133ZM374.801 249.281H378.039V182.176H374.801ZM433.473 249.281H436.711V182.176H433.473Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
250
|
+
<path d='M141.746 182.176V181.773' fill='#933' clip-path='url(#clip2)'/>
|
|
251
|
+
<path d='M141.746 182.176V181.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
252
|
+
<path d='M139.754 181.773H143.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
253
|
+
<path d='M141.746 182.176V182.578' fill='#933' clip-path='url(#clip2)'/>
|
|
254
|
+
<path d='M141.746 182.176V182.578' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
255
|
+
<path d='M143.738 182.578H139.754' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
256
|
+
<path d='M200.414 182.176V181.508' fill='#933' clip-path='url(#clip2)'/>
|
|
257
|
+
<path d='M200.414 182.176V181.508' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
258
|
+
<path d='M198.422 181.508H202.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
259
|
+
<path d='M200.414 182.176V182.848' fill='#933' clip-path='url(#clip2)'/>
|
|
260
|
+
<path d='M200.414 182.176V182.848' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
261
|
+
<path d='M202.406 182.848H198.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
262
|
+
<path d='M259.082 182.176' fill='#933' clip-path='url(#clip2)'/>
|
|
263
|
+
<path d='M257.09 182.176H261.074' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
264
|
+
<path d='M259.082 182.176' fill='#933' clip-path='url(#clip2)'/>
|
|
265
|
+
<path d='M257.09 182.176H261.074' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
266
|
+
<path d='M317.754 182.176V179.695' fill='#933' clip-path='url(#clip2)'/>
|
|
267
|
+
<path d='M317.754 182.176V179.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
268
|
+
<path d='M315.758 179.695H319.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
269
|
+
<path d='M317.754 182.176V184.66' fill='#933' clip-path='url(#clip2)'/>
|
|
270
|
+
<path d='M317.754 182.176V184.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
271
|
+
<path d='M319.746 184.66H315.762' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
272
|
+
<path d='M376.422 182.176V180.363' fill='#933' clip-path='url(#clip2)'/>
|
|
273
|
+
<path d='M376.422 182.176V180.363' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
274
|
+
<path d='M374.43 180.363H378.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
275
|
+
<path d='M376.422 182.176V183.988' fill='#933' clip-path='url(#clip2)'/>
|
|
276
|
+
<path d='M376.422 182.176V183.988' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
277
|
+
<path d='M378.414 183.988H374.43' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
278
|
+
<path d='M435.09 182.176V179.629' fill='#933' clip-path='url(#clip2)'/>
|
|
279
|
+
<path d='M435.09 182.176V179.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
280
|
+
<path d='M433.098 179.629H437.082' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
281
|
+
<path d='M435.09 182.176V184.727' fill='#933' clip-path='url(#clip2)'/>
|
|
282
|
+
<path d='M435.09 182.176V184.727' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
283
|
+
<path d='M437.082 184.727H433.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
284
|
+
<path d='M145.356 249.281H148.594V182.312H145.356ZM204.028 249.281H207.266V182.648H204.028ZM262.695 249.281H265.934V167.816H262.695ZM321.363 249.281H324.602V183.922H321.363ZM380.031 249.281H383.27V176.605H380.031ZM438.703 249.281H441.942V180.699H438.703Z' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
285
|
+
<path d='M145.356 249.281H148.594V182.312H145.356ZM204.028 249.281H207.266V182.648H204.028ZM262.695 249.281H265.934V167.816H262.695ZM321.363 249.281H324.602V183.922H321.363ZM380.031 249.281H383.27V176.605H380.031ZM438.703 249.281H441.942V180.699H438.703Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
286
|
+
<path d='M146.977 182.312V182.043' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
287
|
+
<path d='M146.977 182.312V182.043' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
288
|
+
<path d='M144.984 182.043H148.968' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
289
|
+
<path d='M146.977 182.312V182.578' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
290
|
+
<path d='M146.977 182.312V182.578' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
291
|
+
<path d='M148.968 182.578H144.984' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
292
|
+
<path d='M205.645 182.648V182.379' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
293
|
+
<path d='M205.645 182.648V182.379' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
294
|
+
<path d='M203.652 182.379H207.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
295
|
+
<path d='M205.645 182.648V182.914' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
296
|
+
<path d='M205.645 182.648V182.914' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
297
|
+
<path d='M207.636 182.914H203.652' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
298
|
+
<path d='M264.313 167.816V163.051' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
299
|
+
<path d='M264.313 167.816V163.051' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
300
|
+
<path d='M262.32 163.051H266.304' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
301
|
+
<path d='M264.313 167.816V172.582' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
302
|
+
<path d='M264.313 167.816V172.582' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
303
|
+
<path d='M266.308 172.582H262.32' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
304
|
+
<path d='M322.984 183.922V182.176' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
305
|
+
<path d='M322.984 183.922V182.176' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
306
|
+
<path d='M320.988 182.176H324.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
307
|
+
<path d='M322.984 183.922V185.668' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
308
|
+
<path d='M322.984 183.922V185.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
309
|
+
<path d='M324.976 185.668H320.992' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
310
|
+
<path d='M381.652 176.605V172.18' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
311
|
+
<path d='M381.652 176.605V172.18' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
312
|
+
<path d='M379.66 172.179H383.644' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
313
|
+
<path d='M381.652 176.605V181.035' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
314
|
+
<path d='M381.652 176.605V181.035' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
315
|
+
<path d='M383.644 181.035H379.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
316
|
+
<path d='M440.32 180.699V177.746' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
317
|
+
<path d='M440.32 180.699V177.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
318
|
+
<path d='M438.328 177.746H442.312' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
319
|
+
<path d='M440.32 180.699V183.652' fill='#bf8080' clip-path='url(#clip2)'/>
|
|
320
|
+
<path d='M440.32 180.699V183.652' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
321
|
+
<path d='M442.312 183.652H438.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
322
|
+
<path d='M150.586 249.281H153.824V181.707H150.586ZM209.258 249.281H212.496V180.969H209.258ZM267.926 249.281H271.164V143.859H267.926ZM326.594 249.281H329.832V81.519H326.594ZM385.262 249.281H388.5V81.519H385.262ZM443.934 249.281H447.172V81.519H443.934Z' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
323
|
+
<path d='M150.586 249.281H153.824V181.707H150.586ZM209.258 249.281H212.496V180.969H209.258ZM267.926 249.281H271.164V143.859H267.926ZM326.594 249.281H329.832V81.519H326.594ZM385.262 249.281H388.5V81.519H385.262ZM443.934 249.281H447.172V81.519H443.934Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
324
|
+
<path d='M152.207 181.707V181.172' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
325
|
+
<path d='M152.207 181.707V181.172' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
326
|
+
<path d='M150.215 181.171H154.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
327
|
+
<path d='M152.207 181.707V182.242' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
328
|
+
<path d='M152.207 181.707V182.242' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
329
|
+
<path d='M154.2 182.242H150.215' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
330
|
+
<path d='M210.875 180.969V179.359' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
331
|
+
<path d='M210.875 180.969V179.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
332
|
+
<path d='M208.883 179.36H212.867' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
333
|
+
<path d='M210.875 180.969V182.578' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
334
|
+
<path d='M210.875 180.969V182.578' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
335
|
+
<path d='M212.868 182.578H208.883' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
336
|
+
<path d='M269.543 143.859V132.117' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
337
|
+
<path d='M269.543 143.859V132.117' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
338
|
+
<path d='M267.551 132.117H271.535' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
339
|
+
<path d='M269.543 143.859V155.602' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
340
|
+
<path d='M269.543 143.859V155.602' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
341
|
+
<path d='M271.539 155.602H267.551' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
342
|
+
<path d='M328.215 81.519' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
343
|
+
<path d='M326.219 81.52H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
344
|
+
<path d='M328.215 81.519' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
345
|
+
<path d='M326.219 81.52H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
346
|
+
<path d='M386.883 81.519' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
347
|
+
<path d='M384.891 81.52H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
348
|
+
<path d='M386.883 81.519' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
349
|
+
<path d='M384.891 81.52H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
350
|
+
<path d='M445.551 81.519' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
351
|
+
<path d='M443.559 81.52H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
352
|
+
<path d='M445.551 81.519' fill='#8080bf' clip-path='url(#clip2)'/>
|
|
353
|
+
<path d='M443.559 81.52H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
354
|
+
<path d='M155.817 249.281H159.055V176.273H155.817ZM214.488 249.281H217.727V173.988H214.488ZM273.156 249.281H276.395V81.519H273.156ZM331.824 249.281H335.063V81.519H331.824ZM390.492 249.281H393.731V81.519H390.492ZM449.164 249.281H452.402V81.519H449.164Z' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
355
|
+
<path d='M155.817 249.281H159.055V176.273H155.817ZM214.488 249.281H217.727V173.988H214.488ZM273.156 249.281H276.395V81.519H273.156ZM331.824 249.281H335.063V81.519H331.824ZM390.492 249.281H393.731V81.519H390.492ZM449.164 249.281H452.402V81.519H449.164Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
356
|
+
<path d='M157.438 176.273V176.137' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
357
|
+
<path d='M157.438 176.273V176.137' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
358
|
+
<path d='M155.445 176.136H159.429' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
359
|
+
<path d='M157.438 176.273V176.406' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
360
|
+
<path d='M157.438 176.273V176.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
361
|
+
<path d='M159.43 176.406H155.445' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
362
|
+
<path d='M216.106 173.988V172.715' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
363
|
+
<path d='M216.106 173.988V172.715' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
364
|
+
<path d='M214.113 172.715H218.097' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
365
|
+
<path d='M216.106 173.988V175.266' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
366
|
+
<path d='M216.106 173.988V175.266' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
367
|
+
<path d='M218.098 175.266H214.113' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
368
|
+
<path d='M274.774 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
369
|
+
<path d='M272.781 81.52H276.765' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
370
|
+
<path d='M274.774 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
371
|
+
<path d='M272.781 81.52H276.765' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
372
|
+
<path d='M333.445 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
373
|
+
<path d='M331.449 81.52H335.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
374
|
+
<path d='M333.445 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
375
|
+
<path d='M331.449 81.52H335.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
376
|
+
<path d='M392.113 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
377
|
+
<path d='M390.121 81.52H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
378
|
+
<path d='M392.113 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
379
|
+
<path d='M390.121 81.52H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
380
|
+
<path d='M450.781 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
381
|
+
<path d='M448.789 81.52H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
382
|
+
<path d='M450.781 81.519' fill='#ffb733' clip-path='url(#clip2)'/>
|
|
383
|
+
<path d='M448.789 81.52H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
384
|
+
<path d='M161.047 249.281H164.285V157.48H161.047ZM219.719 249.281H222.957V147.215H219.719ZM278.387 249.281H281.625V81.519H278.387ZM337.055 249.281H340.293V81.519H337.055ZM395.723 249.281H398.961V166.406H395.723ZM454.395 249.281H457.633V182.176H454.395Z' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
385
|
+
<path d='M161.047 249.281H164.285V157.48H161.047ZM219.719 249.281H222.957V147.215H219.719ZM278.387 249.281H281.625V81.519H278.387ZM337.055 249.281H340.293V81.519H337.055ZM395.723 249.281H398.961V166.406H395.723ZM454.395 249.281H457.633V182.176H454.395Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
386
|
+
<path d='M162.668 157.48V157.012' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
387
|
+
<path d='M162.668 157.48V157.012' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
388
|
+
<path d='M160.676 157.011H164.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
389
|
+
<path d='M162.668 157.48V157.953' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
390
|
+
<path d='M162.668 157.48V157.953' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
391
|
+
<path d='M164.661 157.953H160.676' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
392
|
+
<path d='M221.336 147.215V146.812' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
393
|
+
<path d='M221.336 147.215V146.812' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
394
|
+
<path d='M219.344 146.812H223.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
395
|
+
<path d='M221.336 147.215V147.617' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
396
|
+
<path d='M221.336 147.215V147.617' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
397
|
+
<path d='M223.329 147.617H219.344' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
398
|
+
<path d='M280.004 81.519' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
399
|
+
<path d='M278.012 81.52H281.996' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
400
|
+
<path d='M280.004 81.519' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
401
|
+
<path d='M278.012 81.52H281.996' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
402
|
+
<path d='M338.676 81.519' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
403
|
+
<path d='M336.68 81.52H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
404
|
+
<path d='M338.676 81.519' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
405
|
+
<path d='M336.68 81.52H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
406
|
+
<path d='M397.344 166.406V166.273' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
407
|
+
<path d='M397.344 166.406V166.273' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
408
|
+
<path d='M395.352 166.274H399.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
409
|
+
<path d='M397.344 166.406V166.543' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
410
|
+
<path d='M397.344 166.406V166.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
411
|
+
<path d='M399.336 166.543H395.352' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
412
|
+
<path d='M456.012 182.176V179.629' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
413
|
+
<path d='M456.012 182.176V179.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
414
|
+
<path d='M454.02 179.629H458.004' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
415
|
+
<path d='M456.012 182.176V184.727' fill='#bf80bf' clip-path='url(#clip2)'/>
|
|
416
|
+
<path d='M456.012 182.176V184.727' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
417
|
+
<path d='M458.004 184.727H454.02' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
418
|
+
<path d='M166.278 249.281H169.516V167.949H166.278ZM224.949 249.281H228.188V176.137H224.949ZM283.617 249.281H286.856V110.305H283.617ZM342.285 249.281H345.524V157.48H342.285ZM400.953 249.281H404.192V186.473H400.953ZM459.625 249.281H462.863V183.652H459.625Z' fill='#c96' clip-path='url(#clip2)'/>
|
|
419
|
+
<path d='M166.278 249.281H169.516V167.949H166.278ZM224.949 249.281H228.188V176.137H224.949ZM283.617 249.281H286.856V110.305H283.617ZM342.285 249.281H345.524V157.48H342.285ZM400.953 249.281H404.192V186.473H400.953ZM459.625 249.281H462.863V183.652H459.625Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
420
|
+
<path d='M167.899 167.949V167.816' fill='#c96' clip-path='url(#clip2)'/>
|
|
421
|
+
<path d='M167.899 167.949V167.816' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
422
|
+
<path d='M165.906 167.816H169.89' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
423
|
+
<path d='M167.899 167.949V168.086' fill='#c96' clip-path='url(#clip2)'/>
|
|
424
|
+
<path d='M167.899 167.949V168.086' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
425
|
+
<path d='M169.891 168.086H165.906' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
426
|
+
<path d='M226.567 176.137V175.199' fill='#c96' clip-path='url(#clip2)'/>
|
|
427
|
+
<path d='M226.567 176.137V175.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
428
|
+
<path d='M224.574 175.199H228.558' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
429
|
+
<path d='M226.567 176.137V177.078' fill='#c96' clip-path='url(#clip2)'/>
|
|
430
|
+
<path d='M226.567 176.137V177.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
431
|
+
<path d='M228.559 177.078H224.574' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
432
|
+
<path d='M285.234 110.305V105.543' fill='#c96' clip-path='url(#clip2)'/>
|
|
433
|
+
<path d='M285.234 110.305V105.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
434
|
+
<path d='M283.242 105.543H287.226' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
435
|
+
<path d='M285.234 110.305V115.07' fill='#c96' clip-path='url(#clip2)'/>
|
|
436
|
+
<path d='M285.234 110.305V115.07' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
437
|
+
<path d='M287.23 115.07H283.242' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
438
|
+
<path d='M343.906 157.48V153.187' fill='#c96' clip-path='url(#clip2)'/>
|
|
439
|
+
<path d='M343.906 157.48V153.187' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
440
|
+
<path d='M341.91 153.187H345.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
441
|
+
<path d='M343.906 157.48V161.777' fill='#c96' clip-path='url(#clip2)'/>
|
|
442
|
+
<path d='M343.906 157.48V161.777' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
443
|
+
<path d='M345.898 161.778H341.914' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
444
|
+
<path d='M402.574 186.473V186.269' fill='#c96' clip-path='url(#clip2)'/>
|
|
445
|
+
<path d='M402.574 186.473V186.269' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
446
|
+
<path d='M400.582 186.27H404.566' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
447
|
+
<path d='M402.574 186.473V186.672' fill='#c96' clip-path='url(#clip2)'/>
|
|
448
|
+
<path d='M402.574 186.473V186.672' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
449
|
+
<path d='M404.566 186.672H400.582' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
450
|
+
<path d='M461.242 183.652' fill='#c96' clip-path='url(#clip2)'/>
|
|
451
|
+
<path d='M459.25 183.652H463.234' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
452
|
+
<path d='M461.242 183.652' fill='#c96' clip-path='url(#clip2)'/>
|
|
453
|
+
<path d='M459.25 183.652H463.234' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
454
|
+
<path d='M171.508 249.281H174.746V173.789H171.508ZM230.18 249.281H233.414V173.789H230.18ZM288.848 249.281H292.086V81.519H288.848ZM347.516 249.281H350.754V81.519H347.516ZM406.184 249.281H409.422V81.519H406.184ZM464.856 249.281H468.094V81.519H464.856Z' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
455
|
+
<path d='M171.508 249.281H174.746V173.789H171.508ZM230.18 249.281H233.414V173.789H230.18ZM288.848 249.281H292.086V81.519H288.848ZM347.516 249.281H350.754V81.519H347.516ZM406.184 249.281H409.422V81.519H406.184ZM464.856 249.281H468.094V81.519H464.856Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
456
|
+
<path d='M173.129 173.789V173.184' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
457
|
+
<path d='M173.129 173.789V173.184' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
458
|
+
<path d='M171.137 173.184H175.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
459
|
+
<path d='M173.129 173.789V174.394' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
460
|
+
<path d='M173.129 173.789V174.394' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
461
|
+
<path d='M175.122 174.395H171.137' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
462
|
+
<path d='M231.797 173.789V173.32' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
463
|
+
<path d='M231.797 173.789V173.32' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
464
|
+
<path d='M229.805 173.32H233.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
465
|
+
<path d='M231.797 173.789V174.258' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
466
|
+
<path d='M231.797 173.789V174.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
467
|
+
<path d='M233.79 174.258H229.805' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
468
|
+
<path d='M290.465 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
469
|
+
<path d='M288.473 81.52H292.457' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
470
|
+
<path d='M290.465 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
471
|
+
<path d='M288.473 81.52H292.457' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
472
|
+
<path d='M349.137 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
473
|
+
<path d='M347.141 81.52H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
474
|
+
<path d='M349.137 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
475
|
+
<path d='M347.141 81.52H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
476
|
+
<path d='M407.805 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
477
|
+
<path d='M405.813 81.52H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
478
|
+
<path d='M407.805 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
479
|
+
<path d='M405.813 81.52H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
480
|
+
<path d='M466.473 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
481
|
+
<path d='M464.481 81.52H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
482
|
+
<path d='M466.473 81.519' fill='#80bf80' clip-path='url(#clip2)'/>
|
|
483
|
+
<path d='M464.481 81.52H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
484
|
+
<path d='M176.738 249.281H179.977V144.664H176.738ZM235.41 249.281H238.645V178.016H235.41ZM294.078 249.281H297.317V81.519H294.078ZM352.746 249.281H355.984V81.519H352.746ZM411.414 249.281H414.652V81.519H411.414ZM470.086 249.281H473.324V183.652H470.086Z' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
485
|
+
<path d='M176.738 249.281H179.977V144.664H176.738ZM235.41 249.281H238.645V178.016H235.41ZM294.078 249.281H297.317V81.519H294.078ZM352.746 249.281H355.984V81.519H352.746ZM411.414 249.281H414.652V81.519H411.414ZM470.086 249.281H473.324V183.652H470.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
486
|
+
<path d='M178.36 144.664V142.922' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
487
|
+
<path d='M178.36 144.664V142.922' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
488
|
+
<path d='M176.367 142.922H180.351' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
489
|
+
<path d='M178.36 144.664V146.41' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
490
|
+
<path d='M178.36 144.664V146.41' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
491
|
+
<path d='M180.352 146.41H176.367' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
492
|
+
<path d='M237.027 178.016V177.344' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
493
|
+
<path d='M237.027 178.016V177.344' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
494
|
+
<path d='M235.035 177.343H239.019' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
495
|
+
<path d='M237.027 178.016V178.687' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
496
|
+
<path d='M237.027 178.016V178.687' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
497
|
+
<path d='M239.02 178.688H235.035' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
498
|
+
<path d='M295.695 81.519' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
499
|
+
<path d='M293.703 81.52H297.687' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
500
|
+
<path d='M295.695 81.519' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
501
|
+
<path d='M293.703 81.52H297.687' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
502
|
+
<path d='M354.367 81.519' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
503
|
+
<path d='M352.371 81.52H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
504
|
+
<path d='M354.367 81.519' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
505
|
+
<path d='M352.371 81.52H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
506
|
+
<path d='M413.035 81.519' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
507
|
+
<path d='M411.043 81.52H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
508
|
+
<path d='M413.035 81.519' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
509
|
+
<path d='M411.043 81.52H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
510
|
+
<path d='M471.703 183.652' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
511
|
+
<path d='M469.711 183.652H473.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
512
|
+
<path d='M471.703 183.652' fill='#bfbf80' clip-path='url(#clip2)'/>
|
|
513
|
+
<path d='M469.711 183.652H473.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
514
|
+
<path d='M181.969 249.281H185.207V165.199H181.969ZM240.641 249.281H243.875V163.387H240.641ZM299.309 249.281H302.547V81.519H299.309ZM357.977 249.281H361.215V81.519H357.977ZM416.645 249.281H419.883V116.613H416.645ZM475.317 249.281H478.555V81.519H475.317Z' fill='#399' clip-path='url(#clip2)'/>
|
|
515
|
+
<path d='M181.969 249.281H185.207V165.199H181.969ZM240.641 249.281H243.875V163.387H240.641ZM299.309 249.281H302.547V81.519H299.309ZM357.977 249.281H361.215V81.519H357.977ZM416.645 249.281H419.883V116.613H416.645ZM475.317 249.281H478.555V81.519H475.317Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
516
|
+
<path d='M183.59 165.199V164.664' fill='#399' clip-path='url(#clip2)'/>
|
|
517
|
+
<path d='M183.59 165.199V164.664' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
518
|
+
<path d='M181.598 164.664H185.583' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
519
|
+
<path d='M183.59 165.199V165.734' fill='#399' clip-path='url(#clip2)'/>
|
|
520
|
+
<path d='M183.59 165.199V165.734' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
521
|
+
<path d='M185.582 165.734H181.597' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
522
|
+
<path d='M242.258 163.387V162.852' fill='#399' clip-path='url(#clip2)'/>
|
|
523
|
+
<path d='M242.258 163.387V162.852' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
524
|
+
<path d='M240.266 162.851H244.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
525
|
+
<path d='M242.258 163.387V163.926' fill='#399' clip-path='url(#clip2)'/>
|
|
526
|
+
<path d='M242.258 163.387V163.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
527
|
+
<path d='M244.25 163.926H240.265' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
528
|
+
<path d='M300.926 81.519' fill='#399' clip-path='url(#clip2)'/>
|
|
529
|
+
<path d='M298.933 81.52H302.917' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
530
|
+
<path d='M300.926 81.519' fill='#399' clip-path='url(#clip2)'/>
|
|
531
|
+
<path d='M298.933 81.52H302.917' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
532
|
+
<path d='M359.598 81.519' fill='#399' clip-path='url(#clip2)'/>
|
|
533
|
+
<path d='M357.602 81.52H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
534
|
+
<path d='M359.598 81.519' fill='#399' clip-path='url(#clip2)'/>
|
|
535
|
+
<path d='M357.602 81.52H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
536
|
+
<path d='M418.266 116.613V116.211' fill='#399' clip-path='url(#clip2)'/>
|
|
537
|
+
<path d='M418.266 116.613V116.211' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
538
|
+
<path d='M416.274 116.211H420.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
539
|
+
<path d='M418.266 116.613V117.016' fill='#399' clip-path='url(#clip2)'/>
|
|
540
|
+
<path d='M418.266 116.613V117.016' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
541
|
+
<path d='M420.257 117.016H416.273' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
542
|
+
<path d='M476.934 81.519' fill='#399' clip-path='url(#clip2)'/>
|
|
543
|
+
<path d='M474.942 81.52H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
544
|
+
<path d='M476.934 81.519' fill='#399' clip-path='url(#clip2)'/>
|
|
545
|
+
<path d='M474.942 81.52H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
546
|
+
<path d='M187.199 249.281H190.438V175.133H187.199ZM245.871 249.281H249.106V171.574H245.871ZM304.539 249.281H307.777V81.519H304.539ZM363.207 249.281H366.445V81.519H363.207ZM421.875 249.281H425.113V170.836H421.875ZM480.547 249.281H483.785V171.707H480.547Z' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
547
|
+
<path d='M187.199 249.281H190.438V175.133H187.199ZM245.871 249.281H249.106V171.574H245.871ZM304.539 249.281H307.777V81.519H304.539ZM363.207 249.281H366.445V81.519H363.207ZM421.875 249.281H425.113V170.836H421.875ZM480.547 249.281H483.785V171.707H480.547Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
548
|
+
<path d='M188.82 175.133V174.797' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
549
|
+
<path d='M188.82 175.133V174.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
550
|
+
<path d='M186.828 174.797H190.813' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
551
|
+
<path d='M188.82 175.133V175.465' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
552
|
+
<path d='M188.82 175.133V175.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
553
|
+
<path d='M190.813 175.464H186.828' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
554
|
+
<path d='M247.488 171.574V171.238' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
555
|
+
<path d='M247.488 171.574V171.238' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
556
|
+
<path d='M245.496 171.239H249.48' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
557
|
+
<path d='M247.488 171.574V171.91' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
558
|
+
<path d='M247.488 171.574V171.91' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
559
|
+
<path d='M249.481 171.91H245.496' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
560
|
+
<path d='M306.156 81.519' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
561
|
+
<path d='M304.164 81.52H308.148' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
562
|
+
<path d='M306.156 81.519' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
563
|
+
<path d='M304.164 81.52H308.148' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
564
|
+
<path d='M364.828 81.519' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
565
|
+
<path d='M362.832 81.52H366.82' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
566
|
+
<path d='M364.828 81.519' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
567
|
+
<path d='M362.832 81.52H366.82' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
568
|
+
<path d='M423.496 170.836V169.629' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
569
|
+
<path d='M423.496 170.836V169.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
570
|
+
<path d='M421.504 169.629H425.488' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
571
|
+
<path d='M423.496 170.836V172.043' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
572
|
+
<path d='M423.496 170.836V172.043' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
573
|
+
<path d='M425.488 172.043H421.504' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
574
|
+
<path d='M482.164 171.707' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
575
|
+
<path d='M480.172 171.707H484.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
576
|
+
<path d='M482.164 171.707' fill='#d9b3b3' clip-path='url(#clip2)'/>
|
|
577
|
+
<path d='M480.172 171.707H484.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
578
|
+
<path d='M415.914 310.336H487.762V276.324H415.914Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
|
|
579
|
+
<g transform='matrix(1 0 0 1 250.949 118.327)'>
|
|
580
|
+
<use x='168.285' y='164.777' xlink:href='#g2-97'/>
|
|
581
|
+
<use x='170.827' y='164.777' xlink:href='#g2-109'/>
|
|
582
|
+
<use x='175.03' y='164.777' xlink:href='#g2-100'/>
|
|
583
|
+
<use x='177.763' y='164.777' xlink:href='#g2-53'/>
|
|
584
|
+
<use x='180.41' y='164.777' xlink:href='#g2-57'/>
|
|
585
|
+
<use x='183.056' y='164.777' xlink:href='#g2-53'/>
|
|
586
|
+
<use x='185.702' y='164.777' xlink:href='#g2-48'/>
|
|
587
|
+
<use x='188.349' y='164.777' xlink:href='#g2-120'/>
|
|
588
|
+
<use x='190.788' y='164.777' xlink:href='#g2-44'/>
|
|
589
|
+
<use x='194.022' y='164.777' xlink:href='#g2-51'/>
|
|
590
|
+
<use x='196.668' y='164.777' xlink:href='#g2-50'/>
|
|
591
|
+
<use x='199.315' y='164.777' xlink:href='#g2-71'/>
|
|
592
|
+
<use x='202.843' y='164.777' xlink:href='#g2-98'/>
|
|
593
|
+
<use x='207.34' y='164.777' xlink:href='#g2-64'/>
|
|
594
|
+
<use x='210.869' y='164.777' xlink:href='#g2-51'/>
|
|
595
|
+
<use x='213.515' y='164.777' xlink:href='#g2-54'/>
|
|
596
|
+
<use x='216.162' y='164.777' xlink:href='#g2-48'/>
|
|
597
|
+
<use x='218.808' y='164.777' xlink:href='#g2-48'/>
|
|
598
|
+
<use x='221.454' y='164.777' xlink:href='#g2-77'/>
|
|
599
|
+
<use x='226.072' y='164.777' xlink:href='#g2-104'/>
|
|
600
|
+
<use x='228.805' y='164.777' xlink:href='#g2-122'/>
|
|
601
|
+
<use x='168.285' y='170.755' xlink:href='#g2-49'/>
|
|
602
|
+
<use x='170.931' y='170.755' xlink:href='#g2-54'/>
|
|
603
|
+
<use x='173.578' y='170.755' xlink:href='#g2-45'/>
|
|
604
|
+
<use x='175.342' y='170.755' xlink:href='#g2-99'/>
|
|
605
|
+
<use x='177.694' y='170.755' xlink:href='#g2-111'/>
|
|
606
|
+
<use x='180.193' y='170.755' xlink:href='#g2-114'/>
|
|
607
|
+
<use x='182.001' y='170.755' xlink:href='#g2-101'/>
|
|
608
|
+
<use x='186.118' y='170.755' xlink:href='#g2-65'/>
|
|
609
|
+
<use x='189.646' y='170.755' xlink:href='#g2-77'/>
|
|
610
|
+
<use x='194.264' y='170.755' xlink:href='#g2-68'/>
|
|
611
|
+
<use x='199.851' y='170.755' xlink:href='#g2-53'/>
|
|
612
|
+
<use x='202.497' y='170.755' xlink:href='#g2-57'/>
|
|
613
|
+
<use x='205.144' y='170.755' xlink:href='#g2-53'/>
|
|
614
|
+
<use x='207.79' y='170.755' xlink:href='#g2-48'/>
|
|
615
|
+
<use x='210.436' y='170.755' xlink:href='#g2-120'/>
|
|
616
|
+
<use x='214.639' y='170.755' xlink:href='#g2-64'/>
|
|
617
|
+
<use x='218.168' y='170.755' xlink:href='#g2-51'/>
|
|
618
|
+
<use x='220.814' y='170.755' xlink:href='#g2-46'/>
|
|
619
|
+
<use x='222.285' y='170.755' xlink:href='#g2-52'/>
|
|
620
|
+
<use x='224.931' y='170.755' xlink:href='#g2-71'/>
|
|
621
|
+
<use x='228.459' y='170.755' xlink:href='#g2-104'/>
|
|
622
|
+
<use x='231.192' y='170.755' xlink:href='#g2-122'/>
|
|
623
|
+
<use x='168.285' y='176.733' xlink:href='#g2-85'/>
|
|
624
|
+
<use x='171.917' y='176.733' xlink:href='#g2-98'/>
|
|
625
|
+
<use x='174.65' y='176.733' xlink:href='#g2-117'/>
|
|
626
|
+
<use x='177.383' y='176.733' xlink:href='#g2-110'/>
|
|
627
|
+
<use x='180.116' y='176.733' xlink:href='#g2-116'/>
|
|
628
|
+
<use x='182.027' y='176.733' xlink:href='#g2-117'/>
|
|
629
|
+
<use x='186.524' y='176.733' xlink:href='#g2-50'/>
|
|
630
|
+
<use x='189.17' y='176.733' xlink:href='#g2-48'/>
|
|
631
|
+
<use x='191.817' y='176.733' xlink:href='#g2-46'/>
|
|
632
|
+
<use x='193.287' y='176.733' xlink:href='#g2-48'/>
|
|
633
|
+
<use x='195.933' y='176.733' xlink:href='#g2-52'/>
|
|
634
|
+
<use x='198.58' y='176.733' xlink:href='#g2-44'/>
|
|
635
|
+
<use x='201.814' y='176.733' xlink:href='#g2-71'/>
|
|
636
|
+
<use x='205.343' y='176.733' xlink:href='#g2-67'/>
|
|
637
|
+
<use x='208.724' y='176.733' xlink:href='#g2-67'/>
|
|
638
|
+
<use x='213.87' y='176.733' xlink:href='#g2-57'/>
|
|
639
|
+
<use x='216.516' y='176.733' xlink:href='#g2-46'/>
|
|
640
|
+
<use x='217.986' y='176.733' xlink:href='#g2-51'/>
|
|
641
|
+
<use x='220.633' y='176.733' xlink:href='#g2-46'/>
|
|
642
|
+
<use x='222.103' y='176.733' xlink:href='#g2-48'/>
|
|
643
|
+
<use x='168.285' y='182.71' xlink:href='#g2-51'/>
|
|
644
|
+
<use x='170.931' y='182.71' xlink:href='#g2-50'/>
|
|
645
|
+
<use x='175.342' y='182.71' xlink:href='#g2-108'/>
|
|
646
|
+
<use x='176.604' y='182.71' xlink:href='#g2-111'/>
|
|
647
|
+
<use x='179.251' y='182.71' xlink:href='#g2-103'/>
|
|
648
|
+
<use x='181.897' y='182.71' xlink:href='#g2-105'/>
|
|
649
|
+
<use x='183.16' y='182.71' xlink:href='#g2-99'/>
|
|
650
|
+
<use x='185.512' y='182.71' xlink:href='#g2-97'/>
|
|
651
|
+
<use x='188.055' y='182.71' xlink:href='#g2-108'/>
|
|
652
|
+
<use x='191.082' y='182.71' xlink:href='#g2-99'/>
|
|
653
|
+
<use x='193.434' y='182.71' xlink:href='#g2-111'/>
|
|
654
|
+
<use x='195.933' y='182.71' xlink:href='#g2-114'/>
|
|
655
|
+
<use x='197.741' y='182.71' xlink:href='#g2-101'/>
|
|
656
|
+
<use x='200.093' y='182.71' xlink:href='#g2-115'/>
|
|
657
|
+
<use x='168.285' y='188.688' xlink:href='#g2-50'/>
|
|
658
|
+
<use x='170.931' y='188.688' xlink:href='#g2-48'/>
|
|
659
|
+
<use x='173.578' y='188.688' xlink:href='#g2-50'/>
|
|
660
|
+
<use x='176.224' y='188.688' xlink:href='#g2-49'/>
|
|
661
|
+
<use x='178.87' y='188.688' xlink:href='#g2-45'/>
|
|
662
|
+
<use x='180.635' y='188.688' xlink:href='#g2-48'/>
|
|
663
|
+
<use x='183.281' y='188.688' xlink:href='#g2-49'/>
|
|
664
|
+
<use x='185.927' y='188.688' xlink:href='#g2-45'/>
|
|
665
|
+
<use x='187.692' y='188.688' xlink:href='#g2-51'/>
|
|
666
|
+
<use x='190.338' y='188.688' xlink:href='#g2-48'/>
|
|
667
|
+
</g>
|
|
668
|
+
<g transform='matrix(0 -1 1 0 -45.308 344.258)'>
|
|
669
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
670
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
671
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
672
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
673
|
+
</g>
|
|
674
|
+
<g transform='matrix(0 -1 1 0 13.361 344.258)'>
|
|
675
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
676
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
677
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
678
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
679
|
+
</g>
|
|
680
|
+
<g transform='matrix(0 -1 1 0 72.03 344.258)'>
|
|
681
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
682
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
683
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
684
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
685
|
+
</g>
|
|
686
|
+
<g transform='matrix(0 -1 1 0 130.699 344.258)'>
|
|
687
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
688
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
689
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
690
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
691
|
+
</g>
|
|
692
|
+
<g transform='matrix(0 -1 1 0 189.368 344.258)'>
|
|
693
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
694
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
695
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
696
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
697
|
+
</g>
|
|
698
|
+
<g transform='matrix(0 -1 1 0 248.037 344.258)'>
|
|
699
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
700
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
701
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
702
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
703
|
+
</g>
|
|
704
|
+
<g transform='matrix(0 -1 1 0 -40.078 344.392)'>
|
|
705
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
706
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
707
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
708
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
709
|
+
</g>
|
|
710
|
+
<g transform='matrix(0 -1 1 0 18.591 344.728)'>
|
|
711
|
+
<use x='168.285' y='188.688' xlink:href='#g2-48'/>
|
|
712
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
713
|
+
<use x='172.401' y='188.688' xlink:href='#g2-57'/>
|
|
714
|
+
<use x='175.048' y='188.688' xlink:href='#g2-57'/>
|
|
715
|
+
</g>
|
|
716
|
+
<g transform='matrix(0 -1 1 0 77.26 329.897)'>
|
|
717
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
718
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
719
|
+
<use x='172.401' y='188.688' xlink:href='#g2-50'/>
|
|
720
|
+
<use x='175.048' y='188.688' xlink:href='#g2-49'/>
|
|
721
|
+
</g>
|
|
722
|
+
<g transform='matrix(0 -1 1 0 135.929 346.003)'>
|
|
723
|
+
<use x='168.285' y='188.688' xlink:href='#g2-48'/>
|
|
724
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
725
|
+
<use x='172.401' y='188.688' xlink:href='#g2-57'/>
|
|
726
|
+
<use x='175.048' y='188.688' xlink:href='#g2-55'/>
|
|
727
|
+
</g>
|
|
728
|
+
<g transform='matrix(0 -1 1 0 194.598 338.688)'>
|
|
729
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
730
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
731
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
732
|
+
<use x='175.048' y='188.688' xlink:href='#g2-56'/>
|
|
733
|
+
</g>
|
|
734
|
+
<g transform='matrix(0 -1 1 0 253.267 342.782)'>
|
|
735
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
736
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
737
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
738
|
+
<use x='175.048' y='188.688' xlink:href='#g2-50'/>
|
|
739
|
+
</g>
|
|
740
|
+
<g transform='matrix(0 -1 1 0 -34.847 343.788)'>
|
|
741
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
742
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
743
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
744
|
+
<use x='175.048' y='188.688' xlink:href='#g2-49'/>
|
|
745
|
+
</g>
|
|
746
|
+
<g transform='matrix(0 -1 1 0 23.822 343.05)'>
|
|
747
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
748
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
749
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
750
|
+
<use x='175.048' y='188.688' xlink:href='#g2-50'/>
|
|
751
|
+
</g>
|
|
752
|
+
<g transform='matrix(0 -1 1 0 82.491 305.94)'>
|
|
753
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
754
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
755
|
+
<use x='172.401' y='188.688' xlink:href='#g2-53'/>
|
|
756
|
+
<use x='175.048' y='188.688' xlink:href='#g2-55'/>
|
|
757
|
+
</g>
|
|
758
|
+
<g transform='matrix(0 -1 1 0 141.16 243.599)'>
|
|
759
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
760
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
761
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
762
|
+
<use x='173.912' y='188.688' xlink:href='#g2-49'/>
|
|
763
|
+
<use x='176.558' y='188.688' xlink:href='#g2-53'/>
|
|
764
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
765
|
+
<use x='180.675' y='188.688' xlink:href='#g2-52'/>
|
|
766
|
+
<use x='183.321' y='188.688' xlink:href='#g2-53'/>
|
|
767
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
768
|
+
</g>
|
|
769
|
+
<g transform='matrix(0 -1 1 0 199.829 243.599)'>
|
|
770
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
771
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
772
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
773
|
+
<use x='173.912' y='188.688' xlink:href='#g2-54'/>
|
|
774
|
+
<use x='176.558' y='188.688' xlink:href='#g2-49'/>
|
|
775
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
776
|
+
<use x='180.675' y='188.688' xlink:href='#g2-49'/>
|
|
777
|
+
<use x='183.321' y='188.688' xlink:href='#g2-53'/>
|
|
778
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
779
|
+
</g>
|
|
780
|
+
<g transform='matrix(0 -1 1 0 258.498 243.599)'>
|
|
781
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
782
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
783
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
784
|
+
<use x='173.912' y='188.688' xlink:href='#g2-50'/>
|
|
785
|
+
<use x='176.558' y='188.688' xlink:href='#g2-50'/>
|
|
786
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
787
|
+
<use x='180.675' y='188.688' xlink:href='#g2-52'/>
|
|
788
|
+
<use x='183.321' y='188.688' xlink:href='#g2-57'/>
|
|
789
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
790
|
+
</g>
|
|
791
|
+
<g transform='matrix(0 -1 1 0 -29.617 338.353)'>
|
|
792
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
793
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
794
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
795
|
+
<use x='175.048' y='188.688' xlink:href='#g2-57'/>
|
|
796
|
+
</g>
|
|
797
|
+
<g transform='matrix(0 -1 1 0 29.052 336.071)'>
|
|
798
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
799
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
800
|
+
<use x='172.401' y='188.688' xlink:href='#g2-49'/>
|
|
801
|
+
<use x='175.048' y='188.688' xlink:href='#g2-50'/>
|
|
802
|
+
</g>
|
|
803
|
+
<g transform='matrix(0 -1 1 0 87.721 243.599)'>
|
|
804
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
805
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
806
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
807
|
+
<use x='173.912' y='188.688' xlink:href='#g2-50'/>
|
|
808
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
809
|
+
<use x='178.029' y='188.688' xlink:href='#g2-55'/>
|
|
810
|
+
<use x='180.675' y='188.688' xlink:href='#g2-49'/>
|
|
811
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
812
|
+
</g>
|
|
813
|
+
<g transform='matrix(0 -1 1 0 146.39 243.599)'>
|
|
814
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
815
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
816
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
817
|
+
<use x='173.912' y='188.688' xlink:href='#g2-50'/>
|
|
818
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
819
|
+
<use x='178.029' y='188.688' xlink:href='#g2-53'/>
|
|
820
|
+
<use x='180.675' y='188.688' xlink:href='#g2-48'/>
|
|
821
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
822
|
+
</g>
|
|
823
|
+
<g transform='matrix(0 -1 1 0 205.059 243.599)'>
|
|
824
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
825
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
826
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
827
|
+
<use x='173.912' y='188.688' xlink:href='#g2-52'/>
|
|
828
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
829
|
+
<use x='178.029' y='188.688' xlink:href='#g2-48'/>
|
|
830
|
+
<use x='180.675' y='188.688' xlink:href='#g2-56'/>
|
|
831
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
832
|
+
</g>
|
|
833
|
+
<g transform='matrix(0 -1 1 0 263.728 243.599)'>
|
|
834
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
835
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
836
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
837
|
+
<use x='173.912' y='188.688' xlink:href='#g2-50'/>
|
|
838
|
+
<use x='176.558' y='188.688' xlink:href='#g2-50'/>
|
|
839
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
840
|
+
<use x='180.675' y='188.688' xlink:href='#g2-57'/>
|
|
841
|
+
<use x='183.321' y='188.688' xlink:href='#g2-56'/>
|
|
842
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
843
|
+
</g>
|
|
844
|
+
<g transform='matrix(0 -1 1 0 -24.386 319.563)'>
|
|
845
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
846
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
847
|
+
<use x='172.401' y='188.688' xlink:href='#g2-51'/>
|
|
848
|
+
<use x='175.048' y='188.688' xlink:href='#g2-55'/>
|
|
849
|
+
</g>
|
|
850
|
+
<g transform='matrix(0 -1 1 0 34.283 309.296)'>
|
|
851
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
852
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
853
|
+
<use x='172.401' y='188.688' xlink:href='#g2-53'/>
|
|
854
|
+
<use x='175.048' y='188.688' xlink:href='#g2-50'/>
|
|
855
|
+
</g>
|
|
856
|
+
<g transform='matrix(0 -1 1 0 92.952 243.599)'>
|
|
857
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
858
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
859
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
860
|
+
<use x='173.912' y='188.688' xlink:href='#g2-56'/>
|
|
861
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
862
|
+
<use x='178.029' y='188.688' xlink:href='#g2-57'/>
|
|
863
|
+
<use x='180.675' y='188.688' xlink:href='#g2-54'/>
|
|
864
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
865
|
+
</g>
|
|
866
|
+
<g transform='matrix(0 -1 1 0 151.621 243.599)'>
|
|
867
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
868
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
869
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
870
|
+
<use x='173.912' y='188.688' xlink:href='#g2-51'/>
|
|
871
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
872
|
+
<use x='178.029' y='188.688' xlink:href='#g2-51'/>
|
|
873
|
+
<use x='180.675' y='188.688' xlink:href='#g2-55'/>
|
|
874
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
875
|
+
</g>
|
|
876
|
+
<g transform='matrix(0 -1 1 0 210.29 328.488)'>
|
|
877
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
878
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
879
|
+
<use x='172.401' y='188.688' xlink:href='#g2-50'/>
|
|
880
|
+
<use x='175.048' y='188.688' xlink:href='#g2-51'/>
|
|
881
|
+
</g>
|
|
882
|
+
<g transform='matrix(0 -1 1 0 268.959 344.258)'>
|
|
883
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
884
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
885
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
886
|
+
<use x='175.048' y='188.688' xlink:href='#g2-48'/>
|
|
887
|
+
</g>
|
|
888
|
+
<g transform='matrix(0 -1 1 0 -19.156 330.031)'>
|
|
889
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
890
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
891
|
+
<use x='172.401' y='188.688' xlink:href='#g2-50'/>
|
|
892
|
+
<use x='175.048' y='188.688' xlink:href='#g2-49'/>
|
|
893
|
+
</g>
|
|
894
|
+
<g transform='matrix(0 -1 1 0 39.513 338.218)'>
|
|
895
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
896
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
897
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
898
|
+
<use x='175.048' y='188.688' xlink:href='#g2-57'/>
|
|
899
|
+
</g>
|
|
900
|
+
<g transform='matrix(0 -1 1 0 98.182 272.387)'>
|
|
901
|
+
<use x='168.285' y='188.688' xlink:href='#g2-50'/>
|
|
902
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
903
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
904
|
+
<use x='175.048' y='188.688' xlink:href='#g2-55'/>
|
|
905
|
+
</g>
|
|
906
|
+
<g transform='matrix(0 -1 1 0 156.851 319.563)'>
|
|
907
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
908
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
909
|
+
<use x='172.401' y='188.688' xlink:href='#g2-51'/>
|
|
910
|
+
<use x='175.048' y='188.688' xlink:href='#g2-55'/>
|
|
911
|
+
</g>
|
|
912
|
+
<g transform='matrix(0 -1 1 0 215.52 348.553)'>
|
|
913
|
+
<use x='168.285' y='188.688' xlink:href='#g2-48'/>
|
|
914
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
915
|
+
<use x='172.401' y='188.688' xlink:href='#g2-57'/>
|
|
916
|
+
<use x='175.048' y='188.688' xlink:href='#g2-52'/>
|
|
917
|
+
</g>
|
|
918
|
+
<g transform='matrix(0 -1 1 0 274.189 345.734)'>
|
|
919
|
+
<use x='168.285' y='188.688' xlink:href='#g2-48'/>
|
|
920
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
921
|
+
<use x='172.401' y='188.688' xlink:href='#g2-57'/>
|
|
922
|
+
<use x='175.048' y='188.688' xlink:href='#g2-56'/>
|
|
923
|
+
</g>
|
|
924
|
+
<g transform='matrix(0 -1 1 0 -13.925 335.87)'>
|
|
925
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
926
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
927
|
+
<use x='172.401' y='188.688' xlink:href='#g2-49'/>
|
|
928
|
+
<use x='175.048' y='188.688' xlink:href='#g2-50'/>
|
|
929
|
+
</g>
|
|
930
|
+
<g transform='matrix(0 -1 1 0 44.744 335.87)'>
|
|
931
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
932
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
933
|
+
<use x='172.401' y='188.688' xlink:href='#g2-49'/>
|
|
934
|
+
<use x='175.048' y='188.688' xlink:href='#g2-51'/>
|
|
935
|
+
</g>
|
|
936
|
+
<g transform='matrix(0 -1 1 0 103.413 243.599)'>
|
|
937
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
938
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
939
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
940
|
+
<use x='173.912' y='188.688' xlink:href='#g2-49'/>
|
|
941
|
+
<use x='176.558' y='188.688' xlink:href='#g2-50'/>
|
|
942
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
943
|
+
<use x='180.675' y='188.688' xlink:href='#g2-51'/>
|
|
944
|
+
<use x='183.321' y='188.688' xlink:href='#g2-54'/>
|
|
945
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
946
|
+
</g>
|
|
947
|
+
<g transform='matrix(0 -1 1 0 162.082 243.599)'>
|
|
948
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
949
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
950
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
951
|
+
<use x='173.912' y='188.688' xlink:href='#g2-49'/>
|
|
952
|
+
<use x='176.558' y='188.688' xlink:href='#g2-50'/>
|
|
953
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
954
|
+
<use x='180.675' y='188.688' xlink:href='#g2-57'/>
|
|
955
|
+
<use x='183.321' y='188.688' xlink:href='#g2-51'/>
|
|
956
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
957
|
+
</g>
|
|
958
|
+
<g transform='matrix(0 -1 1 0 220.751 243.599)'>
|
|
959
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
960
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
961
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
962
|
+
<use x='173.912' y='188.688' xlink:href='#g2-49'/>
|
|
963
|
+
<use x='176.558' y='188.688' xlink:href='#g2-48'/>
|
|
964
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
965
|
+
<use x='180.675' y='188.688' xlink:href='#g2-52'/>
|
|
966
|
+
<use x='183.321' y='188.688' xlink:href='#g2-50'/>
|
|
967
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
968
|
+
</g>
|
|
969
|
+
<g transform='matrix(0 -1 1 0 279.42 243.599)'>
|
|
970
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
971
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
972
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
973
|
+
<use x='173.912' y='188.688' xlink:href='#g2-49'/>
|
|
974
|
+
<use x='176.558' y='188.688' xlink:href='#g2-49'/>
|
|
975
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
976
|
+
<use x='180.675' y='188.688' xlink:href='#g2-49'/>
|
|
977
|
+
<use x='183.321' y='188.688' xlink:href='#g2-51'/>
|
|
978
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
979
|
+
</g>
|
|
980
|
+
<g transform='matrix(0 -1 1 0 -8.695 306.746)'>
|
|
981
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
982
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
983
|
+
<use x='172.401' y='188.688' xlink:href='#g2-53'/>
|
|
984
|
+
<use x='175.048' y='188.688' xlink:href='#g2-54'/>
|
|
985
|
+
</g>
|
|
986
|
+
<g transform='matrix(0 -1 1 0 49.974 340.097)'>
|
|
987
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
988
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
989
|
+
<use x='172.401' y='188.688' xlink:href='#g2-48'/>
|
|
990
|
+
<use x='175.048' y='188.688' xlink:href='#g2-54'/>
|
|
991
|
+
</g>
|
|
992
|
+
<g transform='matrix(0 -1 1 0 108.643 243.599)'>
|
|
993
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
994
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
995
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
996
|
+
<use x='173.912' y='188.688' xlink:href='#g2-54'/>
|
|
997
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
998
|
+
<use x='178.029' y='188.688' xlink:href='#g2-55'/>
|
|
999
|
+
<use x='180.675' y='188.688' xlink:href='#g2-57'/>
|
|
1000
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
1001
|
+
</g>
|
|
1002
|
+
<g transform='matrix(0 -1 1 0 167.312 243.599)'>
|
|
1003
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
1004
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
1005
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
1006
|
+
<use x='173.912' y='188.688' xlink:href='#g2-49'/>
|
|
1007
|
+
<use x='176.558' y='188.688' xlink:href='#g2-49'/>
|
|
1008
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
1009
|
+
<use x='180.675' y='188.688' xlink:href='#g2-49'/>
|
|
1010
|
+
<use x='183.321' y='188.688' xlink:href='#g2-52'/>
|
|
1011
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
1012
|
+
</g>
|
|
1013
|
+
<g transform='matrix(0 -1 1 0 225.981 243.599)'>
|
|
1014
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
1015
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
1016
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
1017
|
+
<use x='173.912' y='188.688' xlink:href='#g2-56'/>
|
|
1018
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
1019
|
+
<use x='178.029' y='188.688' xlink:href='#g2-52'/>
|
|
1020
|
+
<use x='180.675' y='188.688' xlink:href='#g2-50'/>
|
|
1021
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
1022
|
+
</g>
|
|
1023
|
+
<g transform='matrix(0 -1 1 0 284.65 345.734)'>
|
|
1024
|
+
<use x='168.285' y='188.688' xlink:href='#g2-48'/>
|
|
1025
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1026
|
+
<use x='172.401' y='188.688' xlink:href='#g2-57'/>
|
|
1027
|
+
<use x='175.048' y='188.688' xlink:href='#g2-56'/>
|
|
1028
|
+
</g>
|
|
1029
|
+
<g transform='matrix(0 -1 1 0 -3.465 327.28)'>
|
|
1030
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
1031
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1032
|
+
<use x='172.401' y='188.688' xlink:href='#g2-50'/>
|
|
1033
|
+
<use x='175.048' y='188.688' xlink:href='#g2-53'/>
|
|
1034
|
+
</g>
|
|
1035
|
+
<g transform='matrix(0 -1 1 0 55.204 325.468)'>
|
|
1036
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
1037
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1038
|
+
<use x='172.401' y='188.688' xlink:href='#g2-50'/>
|
|
1039
|
+
<use x='175.048' y='188.688' xlink:href='#g2-56'/>
|
|
1040
|
+
</g>
|
|
1041
|
+
<g transform='matrix(0 -1 1 0 113.873 243.599)'>
|
|
1042
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
1043
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
1044
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
1045
|
+
<use x='173.912' y='188.688' xlink:href='#g2-49'/>
|
|
1046
|
+
<use x='176.558' y='188.688' xlink:href='#g2-56'/>
|
|
1047
|
+
<use x='179.205' y='188.688' xlink:href='#g2-46'/>
|
|
1048
|
+
<use x='180.675' y='188.688' xlink:href='#g2-52'/>
|
|
1049
|
+
<use x='183.321' y='188.688' xlink:href='#g2-51'/>
|
|
1050
|
+
<use x='185.968' y='188.688' xlink:href='#g2-120'/>
|
|
1051
|
+
</g>
|
|
1052
|
+
<g transform='matrix(0 -1 1 0 172.542 243.599)'>
|
|
1053
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
1054
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
1055
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
1056
|
+
<use x='173.912' y='188.688' xlink:href='#g2-53'/>
|
|
1057
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
1058
|
+
<use x='178.029' y='188.688' xlink:href='#g2-55'/>
|
|
1059
|
+
<use x='180.675' y='188.688' xlink:href='#g2-56'/>
|
|
1060
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
1061
|
+
</g>
|
|
1062
|
+
<g transform='matrix(0 -1 1 0 231.211 278.695)'>
|
|
1063
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
1064
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1065
|
+
<use x='172.401' y='188.688' xlink:href='#g2-57'/>
|
|
1066
|
+
<use x='175.048' y='188.688' xlink:href='#g2-56'/>
|
|
1067
|
+
</g>
|
|
1068
|
+
<g transform='matrix(0 -1 1 0 289.88 243.599)'>
|
|
1069
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
1070
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
1071
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
1072
|
+
<use x='173.912' y='188.688' xlink:href='#g2-52'/>
|
|
1073
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
1074
|
+
<use x='178.029' y='188.688' xlink:href='#g2-56'/>
|
|
1075
|
+
<use x='180.675' y='188.688' xlink:href='#g2-52'/>
|
|
1076
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
1077
|
+
</g>
|
|
1078
|
+
<g transform='matrix(0 -1 1 0 1.766 337.212)'>
|
|
1079
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
1080
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1081
|
+
<use x='172.401' y='188.688' xlink:href='#g2-49'/>
|
|
1082
|
+
<use x='175.048' y='188.688' xlink:href='#g2-49'/>
|
|
1083
|
+
</g>
|
|
1084
|
+
<g transform='matrix(0 -1 1 0 60.435 333.655)'>
|
|
1085
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
1086
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1087
|
+
<use x='172.401' y='188.688' xlink:href='#g2-49'/>
|
|
1088
|
+
<use x='175.048' y='188.688' xlink:href='#g2-54'/>
|
|
1089
|
+
</g>
|
|
1090
|
+
<g transform='matrix(0 -1 1 0 119.104 243.599)'>
|
|
1091
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
1092
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
1093
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
1094
|
+
<use x='173.912' y='188.688' xlink:href='#g2-51'/>
|
|
1095
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
1096
|
+
<use x='178.029' y='188.688' xlink:href='#g2-53'/>
|
|
1097
|
+
<use x='180.675' y='188.688' xlink:href='#g2-55'/>
|
|
1098
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
1099
|
+
</g>
|
|
1100
|
+
<g transform='matrix(0 -1 1 0 177.773 243.599)'>
|
|
1101
|
+
<use x='163.396' y='188.688' xlink:href='#g4-1'/>
|
|
1102
|
+
<use x='166.901' y='188.688' xlink:href='#g4-1'/>
|
|
1103
|
+
<use x='170.407' y='188.688' xlink:href='#g4-1'/>
|
|
1104
|
+
<use x='173.912' y='188.688' xlink:href='#g2-50'/>
|
|
1105
|
+
<use x='176.558' y='188.688' xlink:href='#g2-46'/>
|
|
1106
|
+
<use x='178.029' y='188.688' xlink:href='#g2-53'/>
|
|
1107
|
+
<use x='180.675' y='188.688' xlink:href='#g2-53'/>
|
|
1108
|
+
<use x='183.321' y='188.688' xlink:href='#g2-120'/>
|
|
1109
|
+
</g>
|
|
1110
|
+
<g transform='matrix(0 -1 1 0 236.442 332.917)'>
|
|
1111
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
1112
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1113
|
+
<use x='172.401' y='188.688' xlink:href='#g2-49'/>
|
|
1114
|
+
<use x='175.048' y='188.688' xlink:href='#g2-55'/>
|
|
1115
|
+
</g>
|
|
1116
|
+
<g transform='matrix(0 -1 1 0 295.111 333.789)'>
|
|
1117
|
+
<use x='168.285' y='188.688' xlink:href='#g2-49'/>
|
|
1118
|
+
<use x='170.931' y='188.688' xlink:href='#g2-46'/>
|
|
1119
|
+
<use x='172.401' y='188.688' xlink:href='#g2-49'/>
|
|
1120
|
+
<use x='175.048' y='188.688' xlink:href='#g2-54'/>
|
|
1121
|
+
</g>
|
|
1122
|
+
<g transform='matrix(0 -1 1 0 -75.53 388.945)'>
|
|
1123
|
+
<use x='168.285' y='188.688' xlink:href='#g1-82'/>
|
|
1124
|
+
<use x='174.255' y='188.688' xlink:href='#g1-101'/>
|
|
1125
|
+
<use x='178.351' y='188.688' xlink:href='#g1-108'/>
|
|
1126
|
+
<use x='180.551' y='188.688' xlink:href='#g1-97'/>
|
|
1127
|
+
<use x='184.979' y='188.688' xlink:href='#g1-116'/>
|
|
1128
|
+
<use x='188.307' y='188.688' xlink:href='#g1-105'/>
|
|
1129
|
+
<use x='190.507' y='188.688' xlink:href='#g1-118'/>
|
|
1130
|
+
<use x='194.755' y='188.688' xlink:href='#g1-101'/>
|
|
1131
|
+
<use x='201.922' y='188.688' xlink:href='#g1-116'/>
|
|
1132
|
+
<use x='205.25' y='188.688' xlink:href='#g1-105'/>
|
|
1133
|
+
<use x='207.45' y='188.688' xlink:href='#g1-109'/>
|
|
1134
|
+
<use x='214.77' y='188.688' xlink:href='#g1-101'/>
|
|
1135
|
+
<use x='221.937' y='188.688' xlink:href='#g3-40'/>
|
|
1136
|
+
<use x='225.231' y='188.688' xlink:href='#g3-108'/>
|
|
1137
|
+
<use x='227.251' y='188.688' xlink:href='#g3-111'/>
|
|
1138
|
+
<use x='231.25' y='188.688' xlink:href='#g3-119'/>
|
|
1139
|
+
<use x='236.799' y='188.688' xlink:href='#g3-101'/>
|
|
1140
|
+
<use x='240.562' y='188.688' xlink:href='#g3-114'/>
|
|
1141
|
+
<use x='246.277' y='188.688' xlink:href='#g3-105'/>
|
|
1142
|
+
<use x='248.297' y='188.688' xlink:href='#g3-115'/>
|
|
1143
|
+
<use x='254.366' y='188.688' xlink:href='#g3-98'/>
|
|
1144
|
+
<use x='258.974' y='188.688' xlink:href='#g3-101'/>
|
|
1145
|
+
<use x='262.738' y='188.688' xlink:href='#g3-116'/>
|
|
1146
|
+
<use x='265.796' y='188.688' xlink:href='#g3-116'/>
|
|
1147
|
+
<use x='268.854' y='188.688' xlink:href='#g3-101'/>
|
|
1148
|
+
<use x='272.618' y='188.688' xlink:href='#g3-114'/>
|
|
1149
|
+
<use x='275.51' y='188.688' xlink:href='#g3-41'/>
|
|
1150
|
+
</g>
|
|
1151
|
+
<path d='M136.149 309.68H346.746V279.68H136.149Z' fill='#fff'/>
|
|
1152
|
+
<path d='M136.149 309.68H346.746V279.68H136.149Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1153
|
+
<path d='M139.336 290.168H142.324V282.199H139.336ZM145.313 290.168H148.301V284.191H145.313Z' fill='#933'/>
|
|
1154
|
+
<path d='M139.336 290.168H142.324V282.199H139.336ZM145.313 290.168H148.301V284.191H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1155
|
+
<g transform='matrix(1 0 0 1 -40.354 114.479)'>
|
|
1156
|
+
<use x='191.843' y='175.681' xlink:href='#g3-120'/>
|
|
1157
|
+
<use x='195.745' y='175.681' xlink:href='#g3-109'/>
|
|
1158
|
+
<use x='202.47' y='175.681' xlink:href='#g3-105'/>
|
|
1159
|
+
<use x='204.49' y='175.681' xlink:href='#g3-58'/>
|
|
1160
|
+
<use x='206.843' y='175.681' xlink:href='#g0-57'/>
|
|
1161
|
+
<use x='210.548' y='175.681' xlink:href='#g0-50'/>
|
|
1162
|
+
</g>
|
|
1163
|
+
<path d='M177.086 290.168H180.074V282.199H177.086ZM183.063 290.168H186.055V284.191H183.063Z' fill='#bf8080'/>
|
|
1164
|
+
<path d='M177.086 290.168H180.074V282.199H177.086ZM183.063 290.168H186.055V284.191H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1165
|
+
<g transform='matrix(1 0 0 1 -38.403 114.479)'>
|
|
1166
|
+
<use x='233.123' y='175.681' xlink:href='#g3-109'/>
|
|
1167
|
+
<use x='239.848' y='175.681' xlink:href='#g3-105'/>
|
|
1168
|
+
<use x='241.869' y='175.681' xlink:href='#g3-58'/>
|
|
1169
|
+
<use x='244.221' y='175.681' xlink:href='#g0-57'/>
|
|
1170
|
+
<use x='247.926' y='175.681' xlink:href='#g0-50'/>
|
|
1171
|
+
</g>
|
|
1172
|
+
<path d='M221.895 290.168H224.883V282.199H221.895ZM227.875 290.168H230.863V284.191H227.875Z' fill='#8080bf'/>
|
|
1173
|
+
<path d='M221.895 290.168H224.883V282.199H221.895ZM227.875 290.168H230.863V284.191H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1174
|
+
<g transform='matrix(1 0 0 1 -37.441 114.036)'>
|
|
1175
|
+
<use x='277.134' y='175.681' xlink:href='#g3-116'/>
|
|
1176
|
+
<use x='280.192' y='175.681' xlink:href='#g3-99'/>
|
|
1177
|
+
<use x='283.956' y='175.681' xlink:href='#g3-58'/>
|
|
1178
|
+
<use x='286.308' y='175.681' xlink:href='#g0-54'/>
|
|
1179
|
+
<use x='290.013' y='175.681' xlink:href='#g0-49'/>
|
|
1180
|
+
</g>
|
|
1181
|
+
<path d='M265.109 290.168H268.098V282.199H265.109ZM271.086 290.168H274.074V284.191H271.086Z' fill='#ffb733'/>
|
|
1182
|
+
<path d='M265.109 290.168H268.098V282.199H265.109ZM271.086 290.168H274.074V284.191H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1183
|
+
<g transform='matrix(1 0 0 1 -37.04 114.479)'>
|
|
1184
|
+
<use x='319.615' y='175.681' xlink:href='#g3-106'/>
|
|
1185
|
+
<use x='321.871' y='175.681' xlink:href='#g3-101'/>
|
|
1186
|
+
<use x='325.634' y='175.681' xlink:href='#g3-58'/>
|
|
1187
|
+
<use x='327.987' y='175.681' xlink:href='#g0-53'/>
|
|
1188
|
+
<use x='331.691' y='175.681' xlink:href='#g0-56'/>
|
|
1189
|
+
</g>
|
|
1190
|
+
<path d='M306.859 290.168H309.848V282.199H306.859ZM312.836 290.168H315.824V284.191H312.836Z' fill='#bf80bf'/>
|
|
1191
|
+
<path d='M306.859 290.168H309.848V282.199H306.859ZM312.836 290.168H315.824V284.191H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1192
|
+
<g transform='matrix(1 0 0 1 -39.932 114.515)'>
|
|
1193
|
+
<use x='359.038' y='175.681' xlink:href='#g3-116'/>
|
|
1194
|
+
<use x='362.096' y='175.681' xlink:href='#g3-98'/>
|
|
1195
|
+
<use x='366.469' y='175.681' xlink:href='#g3-98'/>
|
|
1196
|
+
<use x='370.842' y='175.681' xlink:href='#g3-58'/>
|
|
1197
|
+
<use x='373.194' y='175.681' xlink:href='#g0-52'/>
|
|
1198
|
+
<use x='376.899' y='175.681' xlink:href='#g0-54'/>
|
|
1199
|
+
</g>
|
|
1200
|
+
<path d='M139.336 303.176H142.324V295.207H139.336ZM145.313 303.176H148.301V297.199H145.313Z' fill='#c96'/>
|
|
1201
|
+
<path d='M139.336 303.176H142.324V295.207H139.336ZM145.313 303.176H148.301V297.199H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1202
|
+
<g transform='matrix(1 0 0 1 -37.662 114.036)'>
|
|
1203
|
+
<use x='191.843' y='188.688' xlink:href='#g3-114'/>
|
|
1204
|
+
<use x='194.735' y='188.688' xlink:href='#g3-112'/>
|
|
1205
|
+
<use x='199.108' y='188.688' xlink:href='#g3-58'/>
|
|
1206
|
+
<use x='201.46' y='188.688' xlink:href='#g0-55'/>
|
|
1207
|
+
<use x='205.165' y='188.688' xlink:href='#g0-56'/>
|
|
1208
|
+
</g>
|
|
1209
|
+
<path d='M177.086 303.176H180.074V295.207H177.086ZM183.063 303.176H186.055V297.199H183.063Z' fill='#80bf80'/>
|
|
1210
|
+
<path d='M177.086 303.176H180.074V295.207H177.086ZM183.063 303.176H186.055V297.199H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1211
|
+
<g transform='matrix(1 0 0 1 -43.882 114.515)'>
|
|
1212
|
+
<use x='233.123' y='188.688' xlink:href='#g3-104'/>
|
|
1213
|
+
<use x='237.496' y='188.688' xlink:href='#g3-111'/>
|
|
1214
|
+
<use x='241.73' y='188.688' xlink:href='#g3-97'/>
|
|
1215
|
+
<use x='245.563' y='188.688' xlink:href='#g3-114'/>
|
|
1216
|
+
<use x='248.455' y='188.688' xlink:href='#g3-100'/>
|
|
1217
|
+
<use x='252.828' y='188.688' xlink:href='#g3-58'/>
|
|
1218
|
+
<use x='255.18' y='188.688' xlink:href='#g0-52'/>
|
|
1219
|
+
<use x='258.885' y='188.688' xlink:href='#g0-49'/>
|
|
1220
|
+
</g>
|
|
1221
|
+
<path d='M221.895 303.176H224.883V295.207H221.895ZM227.875 303.176H230.863V297.199H227.875Z' fill='#bfbf80'/>
|
|
1222
|
+
<path d='M221.895 303.176H224.883V295.207H221.895ZM227.875 303.176H230.863V297.199H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1223
|
+
<g transform='matrix(1 0 0 1 -43.084 114.515)'>
|
|
1224
|
+
<use x='277.134' y='188.688' xlink:href='#g3-109'/>
|
|
1225
|
+
<use x='283.859' y='188.688' xlink:href='#g3-101'/>
|
|
1226
|
+
<use x='287.622' y='188.688' xlink:href='#g3-115'/>
|
|
1227
|
+
<use x='290.869' y='188.688' xlink:href='#g3-104'/>
|
|
1228
|
+
<use x='295.241' y='188.688' xlink:href='#g3-58'/>
|
|
1229
|
+
<use x='297.593' y='188.688' xlink:href='#g0-52'/>
|
|
1230
|
+
<use x='301.298' y='188.688' xlink:href='#g0-49'/>
|
|
1231
|
+
</g>
|
|
1232
|
+
<path d='M265.109 303.176H268.098V295.207H265.109ZM271.086 303.176H274.074V297.199H271.086Z' fill='#399'/>
|
|
1233
|
+
<path d='M265.109 303.176H268.098V295.207H265.109ZM271.086 303.176H274.074V297.199H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1234
|
+
<g transform='matrix(1 0 0 1 -42.353 114.515)'>
|
|
1235
|
+
<use x='319.615' y='188.688' xlink:href='#g3-103'/>
|
|
1236
|
+
<use x='323.849' y='188.688' xlink:href='#g3-108'/>
|
|
1237
|
+
<use x='325.869' y='188.688' xlink:href='#g3-105'/>
|
|
1238
|
+
<use x='327.89' y='188.688' xlink:href='#g3-98'/>
|
|
1239
|
+
<use x='332.498' y='188.688' xlink:href='#g3-99'/>
|
|
1240
|
+
<use x='336.261' y='188.688' xlink:href='#g3-58'/>
|
|
1241
|
+
<use x='338.614' y='188.688' xlink:href='#g0-51'/>
|
|
1242
|
+
<use x='342.318' y='188.688' xlink:href='#g0-57'/>
|
|
1243
|
+
</g>
|
|
1244
|
+
<path d='M306.859 303.176H309.848V295.207H306.859ZM312.836 303.176H315.824V297.199H312.836Z' fill='#d9b3b3'/>
|
|
1245
|
+
<path d='M306.859 303.176H309.848V295.207H306.859ZM312.836 303.176H315.824V297.199H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
|
|
1246
|
+
<g transform='matrix(1 0 0 1 -40.026 114.479)'>
|
|
1247
|
+
<use x='359.038' y='188.688' xlink:href='#g3-115'/>
|
|
1248
|
+
<use x='362.285' y='188.688' xlink:href='#g3-109'/>
|
|
1249
|
+
<use x='369.009' y='188.688' xlink:href='#g3-105'/>
|
|
1250
|
+
<use x='371.03' y='188.688' xlink:href='#g3-58'/>
|
|
1251
|
+
<use x='373.382' y='188.688' xlink:href='#g0-54'/>
|
|
1252
|
+
<use x='377.087' y='188.688' xlink:href='#g0-50'/>
|
|
1253
|
+
</g>
|
|
1254
|
+
</g>
|
|
1255
|
+
</svg>
|