@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.
Files changed (339) hide show
  1. package/LICENSE.md +17 -0
  2. package/README.md +80 -0
  3. package/out/cjs/index.cjs +51 -0
  4. package/out/cjs/yo-cli.cjs +2158 -0
  5. package/out/esm/index.mjs +51 -0
  6. package/out/types/src/codegen/async/runtime.d.ts +2 -0
  7. package/out/types/src/codegen/async/state-code-gen.d.ts +10 -0
  8. package/out/types/src/codegen/async/state-machine.d.ts +13 -0
  9. package/out/types/src/codegen/c/collection.d.ts +3 -0
  10. package/out/types/src/codegen/codegen-c.d.ts +12 -0
  11. package/out/types/src/codegen/constants.d.ts +3 -0
  12. package/out/types/src/codegen/expressions/array.d.ts +4 -0
  13. package/out/types/src/codegen/expressions/generation.d.ts +11 -0
  14. package/out/types/src/codegen/expressions/index.d.ts +2 -0
  15. package/out/types/src/codegen/functions/collection.d.ts +5 -0
  16. package/out/types/src/codegen/functions/context.d.ts +57 -0
  17. package/out/types/src/codegen/functions/generation.d.ts +25 -0
  18. package/out/types/src/codegen/functions/index.d.ts +2 -0
  19. package/out/types/src/codegen/index.d.ts +20 -0
  20. package/out/types/src/codegen/parallelism/runtime.d.ts +2 -0
  21. package/out/types/src/codegen/types/collection.d.ts +8 -0
  22. package/out/types/src/codegen/types/generation.d.ts +13 -0
  23. package/out/types/src/codegen/types/index.d.ts +2 -0
  24. package/out/types/src/codegen/utils/fixup.d.ts +2 -0
  25. package/out/types/src/codegen/utils/index.d.ts +77 -0
  26. package/out/types/src/codegen/values/index.d.ts +1 -0
  27. package/out/types/src/emitter.d.ts +11 -0
  28. package/out/types/src/env.d.ts +85 -0
  29. package/out/types/src/error.d.ts +45 -0
  30. package/out/types/src/evaluator/async/await-analysis-types.d.ts +23 -0
  31. package/out/types/src/evaluator/async/await-analysis.d.ts +5 -0
  32. package/out/types/src/evaluator/builtins/alignof.d.ts +8 -0
  33. package/out/types/src/evaluator/builtins/and_or.d.ts +8 -0
  34. package/out/types/src/evaluator/builtins/arc_fns.d.ts +58 -0
  35. package/out/types/src/evaluator/builtins/array_fns.d.ts +0 -0
  36. package/out/types/src/evaluator/builtins/as.d.ts +8 -0
  37. package/out/types/src/evaluator/builtins/async_fns.d.ts +8 -0
  38. package/out/types/src/evaluator/builtins/compt_assert.d.ts +8 -0
  39. package/out/types/src/evaluator/builtins/compt_boolean_fns.d.ts +8 -0
  40. package/out/types/src/evaluator/builtins/compt_expect_error.d.ts +8 -0
  41. package/out/types/src/evaluator/builtins/compt_list_fns.d.ts +33 -0
  42. package/out/types/src/evaluator/builtins/compt_print.d.ts +8 -0
  43. package/out/types/src/evaluator/builtins/compt_string_fns.d.ts +8 -0
  44. package/out/types/src/evaluator/builtins/consume.d.ts +8 -0
  45. package/out/types/src/evaluator/builtins/drop.d.ts +8 -0
  46. package/out/types/src/evaluator/builtins/dup.d.ts +8 -0
  47. package/out/types/src/evaluator/builtins/expr_fns.d.ts +33 -0
  48. package/out/types/src/evaluator/builtins/future_fns.d.ts +8 -0
  49. package/out/types/src/evaluator/builtins/gc.d.ts +8 -0
  50. package/out/types/src/evaluator/builtins/gensym.d.ts +8 -0
  51. package/out/types/src/evaluator/builtins/impl_constraint.d.ts +8 -0
  52. package/out/types/src/evaluator/builtins/macro_expand.d.ts +8 -0
  53. package/out/types/src/evaluator/builtins/numeric_fns.d.ts +8 -0
  54. package/out/types/src/evaluator/builtins/panic.d.ts +8 -0
  55. package/out/types/src/evaluator/builtins/ptr_fns.d.ts +8 -0
  56. package/out/types/src/evaluator/builtins/quote.d.ts +13 -0
  57. package/out/types/src/evaluator/builtins/rc.d.ts +8 -0
  58. package/out/types/src/evaluator/builtins/sizeof.d.ts +8 -0
  59. package/out/types/src/evaluator/builtins/the.d.ts +8 -0
  60. package/out/types/src/evaluator/builtins/type_fns.d.ts +28 -0
  61. package/out/types/src/evaluator/builtins/va_start.d.ts +8 -0
  62. package/out/types/src/evaluator/builtins/var_fns.d.ts +18 -0
  63. package/out/types/src/evaluator/calls/array.d.ts +13 -0
  64. package/out/types/src/evaluator/calls/array_type.d.ts +11 -0
  65. package/out/types/src/evaluator/calls/closure_type.d.ts +11 -0
  66. package/out/types/src/evaluator/calls/compt_function.d.ts +19 -0
  67. package/out/types/src/evaluator/calls/compt_list_type.d.ts +11 -0
  68. package/out/types/src/evaluator/calls/function.d.ts +16 -0
  69. package/out/types/src/evaluator/calls/function_type.d.ts +15 -0
  70. package/out/types/src/evaluator/calls/helper.d.ts +42 -0
  71. package/out/types/src/evaluator/calls/iso.d.ts +15 -0
  72. package/out/types/src/evaluator/calls/module_type.d.ts +11 -0
  73. package/out/types/src/evaluator/calls/numeric_type.d.ts +15 -0
  74. package/out/types/src/evaluator/calls/pointer.d.ts +8 -0
  75. package/out/types/src/evaluator/calls/pointer_type.d.ts +14 -0
  76. package/out/types/src/evaluator/calls/type.d.ts +12 -0
  77. package/out/types/src/evaluator/context.d.ts +169 -0
  78. package/out/types/src/evaluator/exprs/_expr.d.ts +8 -0
  79. package/out/types/src/evaluator/exprs/assignment.d.ts +9 -0
  80. package/out/types/src/evaluator/exprs/begin.d.ts +10 -0
  81. package/out/types/src/evaluator/exprs/binding.d.ts +12 -0
  82. package/out/types/src/evaluator/exprs/c_include.d.ts +8 -0
  83. package/out/types/src/evaluator/exprs/cond.d.ts +8 -0
  84. package/out/types/src/evaluator/exprs/destructuring_assignment.d.ts +33 -0
  85. package/out/types/src/evaluator/exprs/exists.d.ts +0 -0
  86. package/out/types/src/evaluator/exprs/expr.d.ts +9 -0
  87. package/out/types/src/evaluator/exprs/extern.d.ts +8 -0
  88. package/out/types/src/evaluator/exprs/identifer_and_operator.d.ts +9 -0
  89. package/out/types/src/evaluator/exprs/import.d.ts +9 -0
  90. package/out/types/src/evaluator/exprs/initialization_assignment.d.ts +8 -0
  91. package/out/types/src/evaluator/exprs/match.d.ts +8 -0
  92. package/out/types/src/evaluator/exprs/open.d.ts +8 -0
  93. package/out/types/src/evaluator/exprs/property_access.d.ts +8 -0
  94. package/out/types/src/evaluator/exprs/recur.d.ts +8 -0
  95. package/out/types/src/evaluator/exprs/subtype_of.d.ts +21 -0
  96. package/out/types/src/evaluator/exprs/test.d.ts +8 -0
  97. package/out/types/src/evaluator/exprs/typeof.d.ts +8 -0
  98. package/out/types/src/evaluator/exprs/while.d.ts +8 -0
  99. package/out/types/src/evaluator/index.d.ts +26 -0
  100. package/out/types/src/evaluator/types/array.d.ts +8 -0
  101. package/out/types/src/evaluator/types/closure.d.ts +8 -0
  102. package/out/types/src/evaluator/types/compt_list.d.ts +8 -0
  103. package/out/types/src/evaluator/types/concrete_module.d.ts +8 -0
  104. package/out/types/src/evaluator/types/dyn.d.ts +8 -0
  105. package/out/types/src/evaluator/types/enum.d.ts +8 -0
  106. package/out/types/src/evaluator/types/expr_synthesizer.d.ts +14 -0
  107. package/out/types/src/evaluator/types/field.d.ts +14 -0
  108. package/out/types/src/evaluator/types/fn_module.d.ts +8 -0
  109. package/out/types/src/evaluator/types/function.d.ts +58 -0
  110. package/out/types/src/evaluator/types/future_module.d.ts +8 -0
  111. package/out/types/src/evaluator/types/module.d.ts +19 -0
  112. package/out/types/src/evaluator/types/newtype.d.ts +8 -0
  113. package/out/types/src/evaluator/types/object.d.ts +8 -0
  114. package/out/types/src/evaluator/types/proofs.d.ts +0 -0
  115. package/out/types/src/evaluator/types/slice.d.ts +8 -0
  116. package/out/types/src/evaluator/types/struct.d.ts +8 -0
  117. package/out/types/src/evaluator/types/synthesizer.d.ts +16 -0
  118. package/out/types/src/evaluator/types/tuple.d.ts +18 -0
  119. package/out/types/src/evaluator/types/union.d.ts +8 -0
  120. package/out/types/src/evaluator/types/utils.d.ts +71 -0
  121. package/out/types/src/evaluator/types/validation.d.ts +3 -0
  122. package/out/types/src/evaluator/utils/array-utils.d.ts +15 -0
  123. package/out/types/src/evaluator/utils/closure.d.ts +35 -0
  124. package/out/types/src/evaluator/utils.d.ts +4 -0
  125. package/out/types/src/evaluator/values/anonymous_function.d.ts +8 -0
  126. package/out/types/src/evaluator/values/anonymous_module.d.ts +17 -0
  127. package/out/types/src/evaluator/values/anonymous_struct.d.ts +8 -0
  128. package/out/types/src/evaluator/values/array.d.ts +8 -0
  129. package/out/types/src/evaluator/values/boolean.d.ts +3 -0
  130. package/out/types/src/evaluator/values/char.d.ts +3 -0
  131. package/out/types/src/evaluator/values/compt_list.d.ts +8 -0
  132. package/out/types/src/evaluator/values/dyn.d.ts +8 -0
  133. package/out/types/src/evaluator/values/float.d.ts +4 -0
  134. package/out/types/src/evaluator/values/integer.d.ts +4 -0
  135. package/out/types/src/evaluator/values/module.d.ts +58 -0
  136. package/out/types/src/evaluator/values/string.d.ts +3 -0
  137. package/out/types/src/evaluator/values/tuple.d.ts +32 -0
  138. package/out/types/src/expr.d.ts +456 -0
  139. package/out/types/src/function-value.d.ts +42 -0
  140. package/out/types/src/index.d.ts +4 -0
  141. package/out/types/src/lexer.d.ts +2 -0
  142. package/out/types/src/logger.d.ts +1 -0
  143. package/out/types/src/module-manager.d.ts +30 -0
  144. package/out/types/src/naming-checker.d.ts +4 -0
  145. package/out/types/src/parser.d.ts +33 -0
  146. package/out/types/src/test-runner.d.ts +30 -0
  147. package/out/types/src/tests/codegen.test.d.ts +1 -0
  148. package/out/types/src/tests/fixme.test.d.ts +1 -0
  149. package/out/types/src/tests/module-manager.test.d.ts +1 -0
  150. package/out/types/src/tests/parser.test.d.ts +1 -0
  151. package/out/types/src/tests/sample.test.d.ts +0 -0
  152. package/out/types/src/tests/std.test.d.ts +1 -0
  153. package/out/types/src/token.d.ts +40 -0
  154. package/out/types/src/type-value.d.ts +7 -0
  155. package/out/types/src/types/compatibility.d.ts +16 -0
  156. package/out/types/src/types/creators.d.ts +73 -0
  157. package/out/types/src/types/definitions.d.ts +218 -0
  158. package/out/types/src/types/guards.d.ts +70 -0
  159. package/out/types/src/types/hierarchy.d.ts +4 -0
  160. package/out/types/src/types/index.d.ts +7 -0
  161. package/out/types/src/types/module_field.d.ts +2 -0
  162. package/out/types/src/types/tags.d.ts +45 -0
  163. package/out/types/src/types/utils.d.ts +50 -0
  164. package/out/types/src/unit-value.d.ts +7 -0
  165. package/out/types/src/utils.d.ts +6 -0
  166. package/out/types/src/value-tag.d.ts +29 -0
  167. package/out/types/src/value.d.ts +110 -0
  168. package/out/types/src/yo-cli.d.ts +1 -0
  169. package/out/types/tsconfig.tsbuildinfo +1 -0
  170. package/package.json +57 -0
  171. package/scripts/check-liburing.js +76 -0
  172. package/std/alg/hash.yo +50 -0
  173. package/std/allocator.yo +113 -0
  174. package/std/allocators/c_allocator.yo +118 -0
  175. package/std/async.yo +13 -0
  176. package/std/collections/array_list.yo +415 -0
  177. package/std/collections/hash_map.yo +482 -0
  178. package/std/collections/hash_set.yo +706 -0
  179. package/std/collections/index.yo +11 -0
  180. package/std/collections/linked_list.yo +439 -0
  181. package/std/error.yo +0 -0
  182. package/std/gc.yo +10 -0
  183. package/std/index.yo +12 -0
  184. package/std/io/file.yo +191 -0
  185. package/std/io/index.yo +5 -0
  186. package/std/libc/assert.yo +39 -0
  187. package/std/libc/ctype.yo +57 -0
  188. package/std/libc/errno.yo +182 -0
  189. package/std/libc/float.yo +87 -0
  190. package/std/libc/index.yo +29 -0
  191. package/std/libc/limits.yo +65 -0
  192. package/std/libc/math.yo +679 -0
  193. package/std/libc/signal.yo +101 -0
  194. package/std/libc/stdatomic.yo +213 -0
  195. package/std/libc/stdint.yo +214 -0
  196. package/std/libc/stdio.yo +225 -0
  197. package/std/libc/stdlib.yo +204 -0
  198. package/std/libc/string.yo +151 -0
  199. package/std/libc/time.yo +92 -0
  200. package/std/libc/unistd.yo +130 -0
  201. package/std/monad.yo +152 -0
  202. package/std/prelude.yo +3094 -0
  203. package/std/string/index.yo +8 -0
  204. package/std/string/rune.yo +82 -0
  205. package/std/string/string.yo +288 -0
  206. package/std/sync.yo +95 -0
  207. package/std/thread.yo +36 -0
  208. package/std/time.yo +13 -0
  209. package/std/worker.yo +36 -0
  210. package/vendor/mimalloc/.gitattributes +12 -0
  211. package/vendor/mimalloc/CMakeLists.txt +763 -0
  212. package/vendor/mimalloc/LICENSE +21 -0
  213. package/vendor/mimalloc/SECURITY.md +41 -0
  214. package/vendor/mimalloc/azure-pipelines.yml +251 -0
  215. package/vendor/mimalloc/bin/mimalloc-redirect-arm64.dll +0 -0
  216. package/vendor/mimalloc/bin/mimalloc-redirect-arm64.lib +0 -0
  217. package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.dll +0 -0
  218. package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.lib +0 -0
  219. package/vendor/mimalloc/bin/mimalloc-redirect.dll +0 -0
  220. package/vendor/mimalloc/bin/mimalloc-redirect.lib +0 -0
  221. package/vendor/mimalloc/bin/mimalloc-redirect32.dll +0 -0
  222. package/vendor/mimalloc/bin/mimalloc-redirect32.lib +0 -0
  223. package/vendor/mimalloc/bin/minject-arm64.exe +0 -0
  224. package/vendor/mimalloc/bin/minject.exe +0 -0
  225. package/vendor/mimalloc/bin/minject32.exe +0 -0
  226. package/vendor/mimalloc/bin/readme.md +118 -0
  227. package/vendor/mimalloc/cmake/JoinPaths.cmake +23 -0
  228. package/vendor/mimalloc/cmake/mimalloc-config-version.cmake +19 -0
  229. package/vendor/mimalloc/cmake/mimalloc-config.cmake +14 -0
  230. package/vendor/mimalloc/contrib/docker/alpine/Dockerfile +23 -0
  231. package/vendor/mimalloc/contrib/docker/alpine-arm32v7/Dockerfile +28 -0
  232. package/vendor/mimalloc/contrib/docker/alpine-x86/Dockerfile +28 -0
  233. package/vendor/mimalloc/contrib/docker/manylinux-x64/Dockerfile +23 -0
  234. package/vendor/mimalloc/contrib/docker/readme.md +10 -0
  235. package/vendor/mimalloc/contrib/vcpkg/portfile.cmake +64 -0
  236. package/vendor/mimalloc/contrib/vcpkg/readme.md +40 -0
  237. package/vendor/mimalloc/contrib/vcpkg/usage +20 -0
  238. package/vendor/mimalloc/contrib/vcpkg/vcpkg-cmake-wrapper.cmake +20 -0
  239. package/vendor/mimalloc/contrib/vcpkg/vcpkg.json +48 -0
  240. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-a.svg +887 -0
  241. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-b.svg +1185 -0
  242. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-a.svg +757 -0
  243. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-b.svg +1028 -0
  244. package/vendor/mimalloc/doc/bench-2020/bench-r5a-1.svg +769 -0
  245. package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-a.svg +868 -0
  246. package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-b.svg +1157 -0
  247. package/vendor/mimalloc/doc/bench-2020/bench-r5a-2.svg +983 -0
  248. package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-1.svg +683 -0
  249. package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-2.svg +854 -0
  250. package/vendor/mimalloc/doc/bench-2020/bench-spec-rss.svg +713 -0
  251. package/vendor/mimalloc/doc/bench-2020/bench-spec.svg +713 -0
  252. package/vendor/mimalloc/doc/bench-2020/bench-z4-1.svg +890 -0
  253. package/vendor/mimalloc/doc/bench-2020/bench-z4-2.svg +1146 -0
  254. package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-1.svg +796 -0
  255. package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-2.svg +974 -0
  256. package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-a.svg +952 -0
  257. package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-b.svg +1255 -0
  258. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-a.svg +955 -0
  259. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-b.svg +1269 -0
  260. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-a.svg +836 -0
  261. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-b.svg +1131 -0
  262. package/vendor/mimalloc/doc/bench-2021/bench-macmini-2021-01-30.svg +766 -0
  263. package/vendor/mimalloc/doc/doxyfile +2895 -0
  264. package/vendor/mimalloc/doc/ds-logo.jpg +0 -0
  265. package/vendor/mimalloc/doc/ds-logo.png +0 -0
  266. package/vendor/mimalloc/doc/mimalloc-doc.h +1452 -0
  267. package/vendor/mimalloc/doc/mimalloc-doxygen.css +60 -0
  268. package/vendor/mimalloc/doc/mimalloc-logo-100.png +0 -0
  269. package/vendor/mimalloc/doc/mimalloc-logo.png +0 -0
  270. package/vendor/mimalloc/doc/mimalloc-logo.svg +161 -0
  271. package/vendor/mimalloc/doc/spades-logo.png +0 -0
  272. package/vendor/mimalloc/doc/unreal-logo.svg +43 -0
  273. package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj +500 -0
  274. package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj.filters +108 -0
  275. package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj +508 -0
  276. package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj.filters +111 -0
  277. package/vendor/mimalloc/ide/vs2022/mimalloc-override-test-dep.vcxproj +355 -0
  278. package/vendor/mimalloc/ide/vs2022/mimalloc-override-test.vcxproj +360 -0
  279. package/vendor/mimalloc/ide/vs2022/mimalloc-test-api.vcxproj +295 -0
  280. package/vendor/mimalloc/ide/vs2022/mimalloc-test-stress.vcxproj +292 -0
  281. package/vendor/mimalloc/ide/vs2022/mimalloc-test.vcxproj +289 -0
  282. package/vendor/mimalloc/ide/vs2022/mimalloc.sln +151 -0
  283. package/vendor/mimalloc/include/mimalloc/atomic.h +557 -0
  284. package/vendor/mimalloc/include/mimalloc/internal.h +1153 -0
  285. package/vendor/mimalloc/include/mimalloc/prim.h +421 -0
  286. package/vendor/mimalloc/include/mimalloc/track.h +145 -0
  287. package/vendor/mimalloc/include/mimalloc/types.h +685 -0
  288. package/vendor/mimalloc/include/mimalloc-new-delete.h +66 -0
  289. package/vendor/mimalloc/include/mimalloc-override.h +68 -0
  290. package/vendor/mimalloc/include/mimalloc-stats.h +103 -0
  291. package/vendor/mimalloc/include/mimalloc.h +612 -0
  292. package/vendor/mimalloc/mimalloc.pc.in +11 -0
  293. package/vendor/mimalloc/readme.md +946 -0
  294. package/vendor/mimalloc/src/alloc-aligned.c +360 -0
  295. package/vendor/mimalloc/src/alloc-override.c +316 -0
  296. package/vendor/mimalloc/src/alloc-posix.c +185 -0
  297. package/vendor/mimalloc/src/alloc.c +692 -0
  298. package/vendor/mimalloc/src/arena-abandon.c +346 -0
  299. package/vendor/mimalloc/src/arena.c +1043 -0
  300. package/vendor/mimalloc/src/bitmap.c +441 -0
  301. package/vendor/mimalloc/src/bitmap.h +119 -0
  302. package/vendor/mimalloc/src/free.c +572 -0
  303. package/vendor/mimalloc/src/heap.c +733 -0
  304. package/vendor/mimalloc/src/init.c +714 -0
  305. package/vendor/mimalloc/src/libc.c +334 -0
  306. package/vendor/mimalloc/src/options.c +663 -0
  307. package/vendor/mimalloc/src/os.c +770 -0
  308. package/vendor/mimalloc/src/page-queue.c +390 -0
  309. package/vendor/mimalloc/src/page.c +1049 -0
  310. package/vendor/mimalloc/src/prim/emscripten/prim.c +249 -0
  311. package/vendor/mimalloc/src/prim/osx/alloc-override-zone.c +461 -0
  312. package/vendor/mimalloc/src/prim/osx/prim.c +9 -0
  313. package/vendor/mimalloc/src/prim/prim.c +76 -0
  314. package/vendor/mimalloc/src/prim/readme.md +9 -0
  315. package/vendor/mimalloc/src/prim/unix/prim.c +934 -0
  316. package/vendor/mimalloc/src/prim/wasi/prim.c +284 -0
  317. package/vendor/mimalloc/src/prim/windows/etw-mimalloc.wprp +61 -0
  318. package/vendor/mimalloc/src/prim/windows/etw.h +905 -0
  319. package/vendor/mimalloc/src/prim/windows/etw.man +0 -0
  320. package/vendor/mimalloc/src/prim/windows/prim.c +878 -0
  321. package/vendor/mimalloc/src/prim/windows/readme.md +17 -0
  322. package/vendor/mimalloc/src/random.c +258 -0
  323. package/vendor/mimalloc/src/segment-map.c +142 -0
  324. package/vendor/mimalloc/src/segment.c +1702 -0
  325. package/vendor/mimalloc/src/static.c +41 -0
  326. package/vendor/mimalloc/src/stats.c +635 -0
  327. package/vendor/mimalloc/test/CMakeLists.txt +56 -0
  328. package/vendor/mimalloc/test/main-override-dep.cpp +51 -0
  329. package/vendor/mimalloc/test/main-override-dep.h +11 -0
  330. package/vendor/mimalloc/test/main-override-static.c +539 -0
  331. package/vendor/mimalloc/test/main-override.c +36 -0
  332. package/vendor/mimalloc/test/main-override.cpp +497 -0
  333. package/vendor/mimalloc/test/main.c +46 -0
  334. package/vendor/mimalloc/test/readme.md +16 -0
  335. package/vendor/mimalloc/test/test-api-fill.c +343 -0
  336. package/vendor/mimalloc/test/test-api.c +466 -0
  337. package/vendor/mimalloc/test/test-stress.c +428 -0
  338. package/vendor/mimalloc/test/test-wrong.c +92 -0
  339. package/vendor/mimalloc/test/testhelper.h +49 -0
@@ -0,0 +1,1146 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <!-- This file was generated by dvisvgm 2.4.2 -->
3
+ <svg height='243.704pt' version='1.1' viewBox='106.737 54.995 381.623 243.704' width='381.623pt' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>
4
+ <defs>
5
+ <clipPath id='clip4'>
6
+ <path d='M135.949 249.281H487.961V81.515H135.949Z'/>
7
+ </clipPath>
8
+ <use id='g2-40' transform='scale(1.6)' xlink:href='#g1-40'/>
9
+ <use id='g2-41' transform='scale(1.6)' xlink:href='#g1-41'/>
10
+ <use id='g2-45' transform='scale(1.6)' xlink:href='#g1-45'/>
11
+ <use id='g2-49' transform='scale(1.6)' xlink:href='#g1-49'/>
12
+ <use id='g2-54' transform='scale(1.6)' xlink:href='#g1-54'/>
13
+ <use id='g2-56' transform='scale(1.6)' xlink:href='#g1-56'/>
14
+ <use id='g2-78' transform='scale(1.6)' xlink:href='#g1-78'/>
15
+ <use id='g2-97' transform='scale(1.6)' xlink:href='#g1-97'/>
16
+ <use id='g2-98' transform='scale(1.6)' xlink:href='#g1-98'/>
17
+ <use id='g2-99' transform='scale(1.6)' xlink:href='#g1-99'/>
18
+ <use id='g2-100' transform='scale(1.6)' xlink:href='#g1-100'/>
19
+ <use id='g2-101' transform='scale(1.6)' xlink:href='#g1-101'/>
20
+ <use id='g2-103' transform='scale(1.6)' xlink:href='#g1-103'/>
21
+ <use id='g2-104' transform='scale(1.6)' xlink:href='#g1-104'/>
22
+ <use id='g2-105' transform='scale(1.6)' xlink:href='#g1-105'/>
23
+ <use id='g2-106' transform='scale(1.6)' xlink:href='#g1-106'/>
24
+ <use id='g2-108' transform='scale(1.6)' xlink:href='#g1-108'/>
25
+ <use id='g2-109' transform='scale(1.6)' xlink:href='#g1-109'/>
26
+ <use id='g2-110' transform='scale(1.6)' xlink:href='#g1-110'/>
27
+ <use id='g2-111' transform='scale(1.6)' xlink:href='#g1-111'/>
28
+ <use id='g2-112' transform='scale(1.6)' xlink:href='#g1-112'/>
29
+ <use id='g2-114' transform='scale(1.6)' xlink:href='#g1-114'/>
30
+ <use id='g2-115' transform='scale(1.6)' xlink:href='#g1-115'/>
31
+ <use id='g2-116' transform='scale(1.6)' xlink:href='#g1-116'/>
32
+ <use id='g2-119' transform='scale(1.6)' xlink:href='#g1-119'/>
33
+ <use id='g2-120' transform='scale(1.6)' xlink:href='#g1-120'/>
34
+ <path d='M1.519 -3.736C1.435 -3.736 1.425 -3.736 1.365 -3.681C0.737 -3.133 0.418 -2.247 0.418 -1.245C0.418 -0.304 0.702 0.603 1.36 1.181C1.425 1.245 1.435 1.245 1.519 1.245H1.758C1.743 1.235 1.26 0.822 1.031 0.045C0.912 -0.344 0.852 -0.752 0.852 -1.245C0.852 -2.969 1.659 -3.651 1.758 -3.736H1.519Z' id='g1-40'/>
35
+ <path d='M0.533 1.245C0.618 1.245 0.628 1.245 0.687 1.191C1.315 0.643 1.634 -0.244 1.634 -1.245C1.634 -2.187 1.35 -3.093 0.692 -3.671C0.628 -3.736 0.618 -3.736 0.533 -3.736H0.294C0.309 -3.726 0.792 -3.313 1.021 -2.535C1.141 -2.147 1.2 -1.738 1.2 -1.245C1.2 0.478 0.394 1.161 0.294 1.245H0.533Z' id='g1-41'/>
36
+ <path d='M0.956 -0.005V-0.448H0.508V0H0.648L0.503 0.638H0.727L0.956 -0.005Z' id='g1-44'/>
37
+ <path d='M1.465 -0.951V-1.265H0.06V-0.951H1.465Z' id='g1-45'/>
38
+ <path d='M0.956 -0.448H0.508V0H0.956V-0.448Z' id='g1-46'/>
39
+ <path d='M2.431 -1.619C2.431 -1.858 2.431 -2.441 2.197 -2.849C1.943 -3.298 1.559 -3.372 1.32 -3.372C1.096 -3.372 0.707 -3.303 0.458 -2.874C0.219 -2.476 0.209 -1.933 0.209 -1.619C0.209 -1.25 0.229 -0.797 0.438 -0.418C0.658 -0.015 1.026 0.105 1.32 0.105C1.818 0.105 2.092 -0.184 2.242 -0.498C2.416 -0.852 2.431 -1.31 2.431 -1.619ZM1.32 -0.224C1.111 -0.224 0.872 -0.344 0.747 -0.702C0.648 -1.006 0.643 -1.32 0.643 -1.684C0.643 -2.142 0.643 -3.044 1.32 -3.044S1.998 -2.142 1.998 -1.684C1.998 -1.355 1.998 -0.981 1.878 -0.663C1.738 -0.304 1.484 -0.224 1.32 -0.224Z' id='g1-48'/>
40
+ <path d='M1.599 -3.372H1.489C1.166 -3.073 0.757 -3.054 0.458 -3.044V-2.73C0.653 -2.735 0.902 -2.745 1.151 -2.844V-0.314H0.488V0H2.262V-0.314H1.599V-3.372Z' id='g1-49'/>
41
+ <path d='M1.41 -0.384C1.35 -0.384 1.29 -0.379 1.23 -0.379H0.663L1.435 -1.061C1.524 -1.141 1.768 -1.325 1.863 -1.405C2.082 -1.604 2.376 -1.863 2.376 -2.296C2.376 -2.859 1.958 -3.372 1.245 -3.372C0.717 -3.372 0.389 -3.088 0.219 -2.58L0.453 -2.286C0.568 -2.705 0.742 -3.029 1.176 -3.029C1.594 -3.029 1.913 -2.735 1.913 -2.286C1.913 -1.873 1.669 -1.639 1.37 -1.355C1.27 -1.255 1.001 -1.031 0.897 -0.932C0.752 -0.802 0.408 -0.468 0.264 -0.344V0H2.376V-0.384H1.41Z' id='g1-50'/>
42
+ <path d='M0.498 -2.555C0.702 -2.954 1.061 -3.064 1.3 -3.064C1.594 -3.064 1.813 -2.894 1.813 -2.61C1.813 -2.346 1.634 -2.022 1.255 -1.958C1.23 -1.953 1.21 -1.953 0.882 -1.928V-1.599H1.27C1.743 -1.599 1.918 -1.225 1.918 -0.912C1.918 -0.523 1.679 -0.224 1.29 -0.224C0.936 -0.224 0.533 -0.394 0.284 -0.712L0.219 -0.389C0.508 -0.065 0.912 0.105 1.3 0.105C1.953 0.105 2.421 -0.384 2.421 -0.907C2.421 -1.315 2.092 -1.644 1.699 -1.758C2.077 -1.953 2.271 -2.286 2.271 -2.61C2.271 -3.034 1.838 -3.372 1.305 -3.372C0.867 -3.372 0.503 -3.143 0.294 -2.844L0.498 -2.555Z' id='g1-51'/>
43
+ <path d='M1.973 -0.832H2.491V-1.161H1.973V-3.268H1.479L0.149 -1.161V-0.832H1.544V0H1.973V-0.832ZM0.573 -1.161C0.722 -1.395 1.579 -2.725 1.579 -3.024V-1.161H0.573Z' id='g1-52'/>
44
+ <path d='M0.817 -2.924H2.197V-3.268H0.418V-1.405H0.782C0.902 -1.674 1.136 -1.793 1.36 -1.793C1.564 -1.793 1.873 -1.654 1.873 -1.021C1.873 -0.369 1.46 -0.224 1.205 -0.224C0.877 -0.224 0.558 -0.399 0.389 -0.682L0.199 -0.384C0.443 -0.08 0.812 0.105 1.205 0.105C1.863 0.105 2.376 -0.403 2.376 -1.011C2.376 -1.629 1.918 -2.122 1.37 -2.122C1.156 -2.122 0.966 -2.047 0.817 -1.923V-2.924Z' id='g1-53'/>
45
+ <path d='M2.187 -3.273C1.918 -3.372 1.729 -3.372 1.634 -3.372C0.877 -3.372 0.219 -2.66 0.219 -1.609C0.219 -0.259 0.827 0.105 1.33 0.105C1.733 0.105 1.943 -0.085 2.097 -0.244C2.416 -0.583 2.421 -0.936 2.421 -1.111C2.421 -1.763 2.067 -2.306 1.584 -2.306C1.096 -2.306 0.832 -2.052 0.687 -1.908C0.752 -2.59 1.101 -3.064 1.639 -3.064C1.738 -3.064 1.938 -3.054 2.187 -2.959V-3.273ZM0.692 -1.096C0.692 -1.126 0.692 -1.2 0.697 -1.225C0.697 -1.564 0.912 -1.978 1.355 -1.978C1.963 -1.978 1.963 -1.28 1.963 -1.111C1.963 -0.922 1.963 -0.712 1.828 -0.503C1.709 -0.324 1.559 -0.224 1.33 -0.224C0.802 -0.224 0.717 -0.877 0.692 -1.096Z' id='g1-54'/>
46
+ <path d='M1.23 -2.884C1.29 -2.884 1.35 -2.889 1.41 -2.889H2.037C1.28 -2.147 0.797 -1.106 0.797 0.05H1.265C1.265 -1.405 1.973 -2.451 2.421 -2.919V-3.268H0.219V-2.884H1.23Z' id='g1-55'/>
47
+ <path d='M1.704 -1.763C2.032 -1.868 2.346 -2.132 2.346 -2.501C2.346 -2.954 1.913 -3.372 1.32 -3.372S0.294 -2.954 0.294 -2.501C0.294 -2.127 0.618 -1.863 0.936 -1.763C0.498 -1.629 0.219 -1.29 0.219 -0.907C0.219 -0.374 0.692 0.105 1.32 0.105S2.421 -0.374 2.421 -0.907C2.421 -1.29 2.137 -1.629 1.704 -1.763ZM1.32 -1.928C0.966 -1.928 0.677 -2.132 0.677 -2.496C0.677 -2.814 0.902 -3.064 1.32 -3.064C1.733 -3.064 1.963 -2.814 1.963 -2.496C1.963 -2.142 1.684 -1.928 1.32 -1.928ZM1.32 -0.224C0.976 -0.224 0.672 -0.443 0.672 -0.912C0.672 -1.36 0.961 -1.599 1.32 -1.599S1.968 -1.355 1.968 -0.912C1.968 -0.443 1.659 -0.224 1.32 -0.224Z' id='g1-56'/>
48
+ <path d='M0.384 -0.125C0.628 0.055 0.852 0.105 1.086 0.105C1.783 0.105 2.421 -0.598 2.421 -1.669C2.421 -3.029 1.818 -3.372 1.34 -3.372C0.897 -3.372 0.692 -3.163 0.548 -3.019C0.229 -2.695 0.219 -2.351 0.219 -2.157C0.219 -1.514 0.568 -0.961 1.056 -0.961C1.619 -0.961 1.928 -1.335 1.953 -1.365C1.883 -0.573 1.494 -0.224 1.086 -0.224C0.827 -0.224 0.667 -0.319 0.553 -0.413L0.384 -0.125ZM1.938 -2.162C1.943 -2.132 1.943 -2.082 1.943 -2.052C1.943 -1.684 1.719 -1.29 1.285 -1.29C1.096 -1.29 0.946 -1.345 0.817 -1.549C0.687 -1.743 0.677 -1.933 0.677 -2.157C0.677 -2.351 0.677 -2.575 0.832 -2.795C0.936 -2.944 1.086 -3.064 1.335 -3.064C1.818 -3.064 1.923 -2.481 1.938 -2.162Z' id='g1-57'/>
49
+ <path d='M2.959 -0.438C2.884 -0.438 2.874 -0.438 2.834 -0.418C2.59 -0.334 2.336 -0.279 2.072 -0.279C1.27 -0.279 0.697 -0.956 0.697 -1.729C0.697 -2.565 1.345 -3.178 2.042 -3.178C2.182 -3.178 2.511 -3.143 2.675 -2.745C2.535 -2.824 2.381 -2.859 2.252 -2.859C1.719 -2.859 1.27 -2.361 1.27 -1.729C1.27 -1.081 1.733 -0.598 2.247 -0.598C2.635 -0.598 3.228 -0.912 3.228 -1.798C3.228 -2.301 3.193 -3.507 2.047 -3.507C1.101 -3.507 0.294 -2.725 0.294 -1.729C0.294 -0.742 1.091 0.05 2.052 0.05C2.511 0.05 2.939 -0.139 3.228 -0.438H2.959ZM2.252 -0.927C1.943 -0.927 1.674 -1.27 1.674 -1.729C1.674 -2.202 1.953 -2.531 2.247 -2.531C2.555 -2.531 2.824 -2.187 2.824 -1.729C2.824 -1.255 2.545 -0.927 2.252 -0.927Z' id='g1-64'/>
50
+ <path d='M3.083 -0.608C2.735 -0.394 2.575 -0.299 2.077 -0.299C1.305 -0.299 0.837 -1.021 0.837 -1.738C0.837 -2.476 1.35 -3.168 2.077 -3.168C2.406 -3.168 2.745 -3.064 2.974 -2.889L3.054 -3.342C2.705 -3.472 2.426 -3.512 2.062 -3.512C1.076 -3.512 0.339 -2.695 0.339 -1.733C0.339 -0.707 1.121 0.05 2.092 0.05C2.58 0.05 2.785 -0.05 3.113 -0.229L3.083 -0.608Z' id='g1-67'/>
51
+ <path d='M2.725 -1.624V-1.953H0.986V-3.098H1.714C1.773 -3.098 1.833 -3.093 1.893 -3.093H2.874V-3.442H0.483V0H2.949V-0.389H2.501C2.082 -0.389 1.664 -0.379 1.245 -0.379H0.986V-1.624H2.725Z' id='g1-69'/>
52
+ <path d='M3.173 -1.489H2.057V-1.161H2.735V-0.399C2.516 -0.344 2.301 -0.299 2.077 -0.299C1.31 -0.299 0.837 -1.021 0.837 -1.733C0.837 -2.416 1.3 -3.168 2.052 -3.168C2.511 -3.168 2.8 -3.029 3.049 -2.819L3.128 -3.273C2.785 -3.437 2.481 -3.517 2.102 -3.517C1.096 -3.517 0.339 -2.73 0.339 -1.733C0.339 -0.762 1.091 0.05 2.072 0.05C2.431 0.05 2.854 -0.03 3.173 -0.194V-1.489Z' id='g1-71'/>
53
+ <path d='M3.248 -3.457H2.745V-1.963H0.986V-3.457H0.483V0H0.986V-1.634H2.745V0H3.248V-3.457Z' id='g1-72'/>
54
+ <path d='M0.986 -3.457H0.483V0H0.986V-3.457Z' id='g1-73'/>
55
+ <path d='M1.176 -3.457H0.498V0H0.917V-3.064H0.922L2.555 0H3.233V-3.457H2.814V-0.394H2.809L1.176 -3.457Z' id='g1-78'/>
56
+ <path d='M3.611 -1.714C3.611 -2.745 2.854 -3.562 1.953 -3.562S0.294 -2.745 0.294 -1.714S1.061 0.105 1.953 0.105C2.849 0.105 3.611 -0.687 3.611 -1.714ZM1.953 -0.249C1.35 -0.249 0.797 -0.852 0.797 -1.793C0.797 -2.675 1.355 -3.218 1.953 -3.218S3.108 -2.675 3.108 -1.793C3.108 -0.847 2.555 -0.249 1.953 -0.249Z' id='g1-79'/>
57
+ <path d='M1.868 -1.42C2.511 -1.42 3.083 -1.873 3.083 -2.446C3.083 -2.979 2.555 -3.457 1.833 -3.457H0.488V0H0.991V-1.42H1.868ZM1.709 -3.163C2.271 -3.163 2.63 -2.864 2.63 -2.446C2.63 -2.037 2.291 -1.729 1.709 -1.729H0.976V-3.163H1.709Z' id='g1-80'/>
58
+ <path d='M3.143 -3.457H2.71V-1.161C2.71 -0.493 2.262 -0.189 1.833 -0.189S0.986 -0.498 0.986 -1.156V-3.457H0.483V-1.166C0.483 -0.433 1.111 0.105 1.828 0.105C2.54 0.105 3.143 -0.438 3.143 -1.166V-3.457Z' id='g1-85'/>
59
+ <path d='M1.968 -1.823L3.228 -3.457H2.685L1.724 -2.182L0.742 -3.457H0.149L1.479 -1.823L0.075 0H0.618L1.724 -1.499L2.854 0H3.447L1.968 -1.823Z' id='g1-88'/>
60
+ <path d='M2.934 -3.238V-3.457H0.369V-3.123H1.41C1.479 -3.123 1.539 -3.128 1.609 -3.128H2.291L0.294 -0.229V0H2.964V-0.354H2.466C1.958 -0.354 1.45 -0.344 0.941 -0.344L2.934 -3.238Z' id='g1-90'/>
61
+ <path d='M2.122 -1.435C2.122 -1.943 1.733 -2.286 1.24 -2.286C0.927 -2.286 0.687 -2.222 0.408 -2.072L0.438 -1.709C0.603 -1.818 0.847 -1.968 1.24 -1.968C1.46 -1.968 1.689 -1.803 1.689 -1.43V-1.23C0.951 -1.205 0.224 -1.051 0.224 -0.588C0.224 -0.339 0.394 0.05 0.832 0.05C1.046 0.05 1.44 0.005 1.704 -0.189V0H2.122V-1.435ZM1.689 -0.707C1.689 -0.608 1.689 -0.478 1.514 -0.374C1.355 -0.284 1.161 -0.279 1.106 -0.279C0.832 -0.279 0.623 -0.403 0.623 -0.593C0.623 -0.912 1.465 -0.941 1.689 -0.951V-0.707Z' id='g1-97'/>
62
+ <path d='M0.842 -3.457H0.423V0H0.857V-0.234C0.966 -0.139 1.205 0.05 1.569 0.05C2.112 0.05 2.55 -0.458 2.55 -1.111C2.55 -1.714 2.207 -2.262 1.709 -2.262C1.395 -2.262 1.091 -2.162 0.842 -1.978V-3.457ZM0.857 -1.569C0.857 -1.649 0.857 -1.709 1.031 -1.823C1.106 -1.868 1.24 -1.933 1.41 -1.933C1.743 -1.933 2.117 -1.709 2.117 -1.111C2.117 -0.503 1.704 -0.279 1.355 -0.279C1.171 -0.279 0.996 -0.364 0.857 -0.588V-1.569Z' id='g1-98'/>
63
+ <path d='M2.167 -0.543C1.918 -0.384 1.649 -0.294 1.34 -0.294C0.882 -0.294 0.613 -0.663 0.613 -1.111C0.613 -1.494 0.812 -1.943 1.355 -1.943C1.694 -1.943 1.853 -1.873 2.107 -1.714L2.172 -2.072C1.873 -2.222 1.743 -2.286 1.355 -2.286C0.608 -2.286 0.179 -1.684 0.179 -1.106C0.179 -0.498 0.658 0.05 1.335 0.05C1.684 0.05 1.983 -0.055 2.197 -0.179L2.167 -0.543Z' id='g1-99'/>
64
+ <path d='M2.306 -3.457H1.888V-1.998C1.569 -2.232 1.245 -2.262 1.101 -2.262C0.578 -2.262 0.179 -1.738 0.179 -1.106S0.573 0.05 1.086 0.05C1.395 0.05 1.684 -0.09 1.873 -0.259V0H2.306V-3.457ZM1.873 -0.618C1.748 -0.413 1.559 -0.279 1.32 -0.279C0.971 -0.279 0.613 -0.523 0.613 -1.101C0.613 -1.724 1.036 -1.933 1.375 -1.933C1.574 -1.933 1.743 -1.848 1.873 -1.679V-0.618Z' id='g1-100'/>
65
+ <path d='M2.142 -0.543C1.863 -0.344 1.549 -0.279 1.335 -0.279C0.902 -0.279 0.573 -0.633 0.558 -1.091H2.192C2.192 -1.32 2.167 -1.654 1.973 -1.938C1.793 -2.192 1.494 -2.286 1.25 -2.286C0.643 -2.286 0.174 -1.753 0.174 -1.121C0.174 -0.483 0.672 0.05 1.33 0.05C1.619 0.05 1.918 -0.035 2.172 -0.189L2.142 -0.543ZM0.593 -1.39C0.707 -1.788 1.001 -1.958 1.25 -1.958C1.469 -1.958 1.793 -1.853 1.888 -1.39H0.593Z' id='g1-101'/>
66
+ <path d='M2.506 -2.262C2.396 -2.262 2.062 -2.257 1.684 -2.112L1.674 -2.107C1.494 -2.227 1.32 -2.262 1.176 -2.262C0.687 -2.262 0.324 -1.878 0.324 -1.45C0.324 -1.275 0.384 -1.096 0.498 -0.956C0.428 -0.872 0.354 -0.732 0.354 -0.543C0.354 -0.349 0.433 -0.224 0.478 -0.164C0.204 -0.005 0.149 0.224 0.149 0.344C0.149 0.722 0.672 1.021 1.32 1.021C1.973 1.021 2.491 0.722 2.491 0.344C2.491 -0.359 1.619 -0.359 1.405 -0.359H0.941C0.862 -0.359 0.648 -0.359 0.648 -0.618C0.648 -0.717 0.682 -0.767 0.687 -0.777C0.862 -0.667 1.036 -0.633 1.171 -0.633C1.659 -0.633 2.022 -1.016 2.022 -1.445C2.022 -1.604 1.978 -1.748 1.888 -1.883C1.868 -1.913 1.868 -1.918 1.868 -1.923C1.868 -1.943 2.167 -1.943 2.192 -1.943C2.197 -1.943 2.386 -1.943 2.565 -1.923L2.506 -2.262ZM1.176 -0.941C0.907 -0.941 0.707 -1.111 0.707 -1.445C0.707 -1.833 0.956 -1.953 1.171 -1.953C1.44 -1.953 1.639 -1.783 1.639 -1.45C1.639 -1.061 1.39 -0.941 1.176 -0.941ZM1.41 0.03C1.524 0.03 2.112 0.03 2.112 0.349C2.112 0.563 1.738 0.712 1.32 0.712S0.528 0.563 0.528 0.349C0.528 0.324 0.528 0.03 0.932 0.03H1.41Z' id='g1-103'/>
67
+ <path d='M2.316 -1.474C2.316 -1.863 2.202 -2.262 1.589 -2.262C1.161 -2.262 0.932 -2.012 0.832 -1.908V-3.457H0.413V0H0.847V-1.21C0.847 -1.539 0.986 -1.933 1.37 -1.933C1.883 -1.933 1.883 -1.584 1.883 -1.44V0H2.316V-1.474Z' id='g1-104'/>
68
+ <path d='M0.877 -3.417H0.374V-2.914H0.877V-3.417ZM0.837 -2.212H0.418V0H0.837V-2.212Z' id='g1-105'/>
69
+ <path d='M0.986 -3.417H0.483V-2.914H0.986V-3.417ZM-0.324 0.847C-0.095 0.971 0.13 1.016 0.319 1.016C0.663 1.016 0.986 0.752 0.986 0.294V-2.212H0.568V0.329C0.568 0.418 0.568 0.498 0.463 0.583C0.349 0.667 0.209 0.667 0.164 0.667C-0.045 0.667 -0.174 0.573 -0.234 0.518L-0.324 0.847Z' id='g1-106'/>
70
+ <path d='M0.837 -3.457H0.418V0H0.837V-3.457Z' id='g1-108'/>
71
+ <path d='M3.786 -1.474C3.786 -1.863 3.671 -2.262 3.059 -2.262C2.64 -2.262 2.381 -2.017 2.262 -1.858C2.212 -1.993 2.087 -2.262 1.589 -2.262C1.305 -2.262 1.031 -2.147 0.812 -1.883V-2.247H0.413V0H0.847V-1.21C0.847 -1.539 0.986 -1.933 1.37 -1.933C1.883 -1.933 1.883 -1.584 1.883 -1.44V0H2.316V-1.21C2.316 -1.539 2.456 -1.933 2.839 -1.933C3.352 -1.933 3.352 -1.584 3.352 -1.44V0H3.786V-1.474Z' id='g1-109'/>
72
+ <path d='M2.316 -1.474C2.316 -1.863 2.202 -2.262 1.589 -2.262C1.305 -2.262 1.031 -2.147 0.812 -1.883V-2.247H0.413V0H0.847V-1.21C0.847 -1.539 0.986 -1.933 1.37 -1.933C1.883 -1.933 1.883 -1.584 1.883 -1.44V0H2.316V-1.474Z' id='g1-110'/>
73
+ <path d='M2.491 -1.091C2.491 -1.748 1.968 -2.286 1.32 -2.286S0.149 -1.743 0.149 -1.091C0.149 -0.458 0.677 0.05 1.32 0.05C1.968 0.05 2.491 -0.458 2.491 -1.091ZM1.32 -0.294C0.927 -0.294 0.583 -0.583 0.583 -1.146S0.951 -1.958 1.32 -1.958C1.694 -1.958 2.057 -1.699 2.057 -1.146C2.057 -0.578 1.704 -0.294 1.32 -0.294Z' id='g1-111'/>
74
+ <path d='M0.857 -0.234C1.121 0.005 1.405 0.05 1.574 0.05C2.102 0.05 2.55 -0.453 2.55 -1.111C2.55 -1.709 2.222 -2.262 1.729 -2.262C1.504 -2.262 1.131 -2.197 0.842 -1.973V-2.212H0.423V0.966H0.857V-0.234ZM0.857 -1.654C0.971 -1.793 1.166 -1.918 1.405 -1.918C1.803 -1.918 2.117 -1.549 2.117 -1.111C2.117 -0.618 1.743 -0.279 1.355 -0.279C1.28 -0.279 1.156 -0.289 1.026 -0.394C0.877 -0.508 0.857 -0.583 0.857 -0.677V-1.654Z' id='g1-112'/>
75
+ <path d='M0.842 -1.061C0.842 -1.599 1.29 -1.888 1.729 -1.893V-2.262C1.31 -2.257 1.006 -2.052 0.807 -1.788V-2.247H0.423V0H0.842V-1.061Z' id='g1-114'/>
76
+ <path d='M1.818 -2.132C1.479 -2.271 1.23 -2.286 1.051 -2.286C0.927 -2.286 0.174 -2.286 0.174 -1.624C0.174 -1.39 0.304 -1.26 0.369 -1.2C0.543 -1.026 0.752 -0.986 1.016 -0.936C1.25 -0.892 1.519 -0.842 1.519 -0.603C1.519 -0.289 1.106 -0.289 1.036 -0.289C0.717 -0.289 0.418 -0.403 0.219 -0.543L0.149 -0.169C0.319 -0.085 0.623 0.05 1.036 0.05C1.26 0.05 1.479 0.015 1.664 -0.12C1.848 -0.259 1.908 -0.478 1.908 -0.648C1.908 -0.737 1.898 -0.932 1.689 -1.121C1.504 -1.285 1.325 -1.32 1.086 -1.365C0.792 -1.42 0.563 -1.465 0.563 -1.684C0.563 -1.968 0.927 -1.968 1.001 -1.968C1.285 -1.968 1.504 -1.908 1.753 -1.778L1.818 -2.132Z' id='g1-115'/>
77
+ <path d='M0.936 -1.898H1.674V-2.212H0.936V-2.844H0.553V-2.212H0.1V-1.898H0.538V-0.638C0.538 -0.304 0.623 0.05 0.981 0.05S1.614 -0.065 1.763 -0.134L1.679 -0.453C1.514 -0.334 1.34 -0.294 1.2 -0.294C0.991 -0.294 0.936 -0.498 0.936 -0.727V-1.898Z' id='g1-116'/>
78
+ <path d='M2.316 -2.212H1.883V-0.767C1.883 -0.369 1.544 -0.244 1.255 -0.244C0.887 -0.244 0.847 -0.344 0.847 -0.573V-2.212H0.413V-0.543C0.413 -0.1 0.608 0.05 0.956 0.05C1.161 0.05 1.599 0.01 1.898 -0.229V0H2.316V-2.212Z' id='g1-117'/>
79
+ <path d='M3.537 -2.212H3.148C3.103 -2.072 2.824 -1.23 2.67 -0.712C2.63 -0.568 2.58 -0.408 2.565 -0.294H2.56C2.531 -0.498 2.356 -1.036 2.346 -1.071L1.978 -2.212H1.599C1.455 -1.783 1.081 -0.667 1.041 -0.304H1.036C0.996 -0.658 0.628 -1.758 0.548 -1.998C0.508 -2.117 0.508 -2.127 0.483 -2.212H0.075L0.802 0H1.22C1.225 -0.02 1.36 -0.413 1.534 -0.966C1.609 -1.21 1.758 -1.689 1.783 -1.908L1.788 -1.913C1.798 -1.808 1.828 -1.699 1.863 -1.574S1.933 -1.315 1.968 -1.2L2.351 0H2.809L3.537 -2.212Z' id='g1-119'/>
80
+ <path d='M1.38 -1.141L2.346 -2.212H1.908L1.2 -1.395L0.478 -2.212H0.03L1.026 -1.141L0 0H0.443L1.2 -0.936L1.988 0H2.436L1.38 -1.141Z' id='g1-120'/>
81
+ <path d='M2.112 -2.002V-2.212H0.219V-1.893H0.951C1.011 -1.893 1.071 -1.898 1.131 -1.898H1.519L0.149 -0.219V0H2.127V-0.334H1.355C1.295 -0.334 1.235 -0.329 1.176 -0.329H0.742L2.112 -2.002Z' id='g1-122'/>
82
+ <path d='M1.445 -1.245C1.445 -1.41 1.305 -1.549 1.141 -1.549S0.837 -1.41 0.837 -1.245S0.976 -0.941 1.141 -0.941S1.445 -1.081 1.445 -1.245Z' id='g3-1'/>
83
+ <path 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.223H0.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' id='g0-82'/>
84
+ <path d='M3.694 -2.591C3.694 -3.479 3.04 -4.133 2.152 -4.133C1.569 -4.133 1.139 -3.981 0.708 -3.739L0.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 0.395 -1.766 0.395 -1.04C0.395 -0.619 0.672 0.099 1.453 0.099C1.632 0.099 2.412 0.081 2.977 -0.341V0H3.694V-2.591ZM2.95 -1.255C2.95 -1.067 2.95 -0.843 2.627 -0.655C2.403 -0.52 2.107 -0.484 1.928 -0.484C1.47 -0.484 1.085 -0.699 1.085 -1.058C1.085 -1.695 2.833 -1.722 2.95 -1.722V-1.255Z' id='g0-97'/>
85
+ <path 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 0.314 -3.174 0.314 -2.026C0.314 -0.843 1.193 0.099 2.313 0.099C2.744 0.099 3.264 -0.009 3.784 -0.341L3.73 -0.959C3.165 -0.556 2.636 -0.484 2.322 -0.484C1.578 -0.484 1.004 -1.139 0.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' id='g0-101'/>
86
+ <path d='M1.524 -6.133H0.664V-5.272H1.524V-6.133ZM1.453 -3.981H0.735V0H1.453V-3.981Z' id='g0-105'/>
87
+ <path d='M1.453 -6.223H0.735V0H1.453V-6.223Z' id='g0-108'/>
88
+ <path 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.035H0.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' id='g0-109'/>
89
+ <path d='M1.623 -3.425H2.914V-3.981H1.623V-5.12H0.959V-3.981H0.17V-3.425H0.933V-1.13C0.933 -0.601 1.049 0.099 1.704 0.099C2.098 0.099 2.564 0.018 3.067 -0.233L2.914 -0.798C2.681 -0.619 2.367 -0.511 2.089 -0.511C1.739 -0.511 1.623 -0.825 1.623 -1.291V-3.425Z' id='g0-116'/>
90
+ <path d='M4.116 -3.981H3.407L2.699 -2.161C2.52 -1.695 2.188 -0.825 2.143 -0.493H2.125C2.107 -0.646 2.08 -0.816 1.587 -2.107C1.318 -2.833 0.879 -3.927 0.861 -3.981H0.126L1.704 0H2.537L4.116 -3.981Z' id='g0-118'/>
91
+ </defs>
92
+ <g id='page4'>
93
+ <path d='M194.617 258.136V249.281M253.285 258.136V249.281M311.953 258.136V249.281M370.625 258.136V249.281M429.293 258.136V249.281M194.617 72.66V81.515M253.285 72.66V81.515M311.953 72.66V81.515M370.625 72.66V81.515M429.293 72.66V81.515' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
94
+ <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.265V81.515M223.953 77.265V81.515M282.621 77.265V81.515M341.289 77.265V81.515M399.957 77.265V81.515M458.629 77.265V81.515' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
95
+ <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.515H140.199M487.961 249.281H483.711M487.961 215.73H483.711M487.961 182.176H483.711M487.961 148.625H483.711M487.961 115.07H483.711M487.961 81.515H483.711' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
96
+ <path d='M135.949 249.281V81.515H487.961V249.281H135.949Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
97
+ <g transform='matrix(1 0 0 1 -21.265 61.588)'>
98
+ <use x='168.285' xlink:href='#g2-97' y='201.694'/>
99
+ <use x='172.353' xlink:href='#g2-108' y='201.694'/>
100
+ <use x='174.373' xlink:href='#g2-108' y='201.694'/>
101
+ <use x='176.393' xlink:href='#g2-111' y='201.694'/>
102
+ <use x='180.863' xlink:href='#g2-99' y='201.694'/>
103
+ <use x='184.627' xlink:href='#g2-45' y='201.694'/>
104
+ <use x='187.449' xlink:href='#g2-116' y='201.694'/>
105
+ <use x='190.507' xlink:href='#g2-101' y='201.694'/>
106
+ <use x='194.271' xlink:href='#g2-115' y='201.694'/>
107
+ <use x='197.517' xlink:href='#g2-116' y='201.694'/>
108
+ <use x='200.575' xlink:href='#g2-49' y='201.694'/>
109
+ </g>
110
+ <g transform='matrix(1 0 0 1 36.532 61.588)'>
111
+ <use x='168.285' xlink:href='#g2-97' y='201.694'/>
112
+ <use x='172.353' xlink:href='#g2-108' y='201.694'/>
113
+ <use x='174.373' xlink:href='#g2-108' y='201.694'/>
114
+ <use x='176.393' xlink:href='#g2-111' y='201.694'/>
115
+ <use x='180.863' xlink:href='#g2-99' y='201.694'/>
116
+ <use x='184.627' xlink:href='#g2-45' y='201.694'/>
117
+ <use x='187.449' xlink:href='#g2-116' y='201.694'/>
118
+ <use x='190.507' xlink:href='#g2-101' y='201.694'/>
119
+ <use x='194.271' xlink:href='#g2-115' y='201.694'/>
120
+ <use x='197.517' xlink:href='#g2-116' y='201.694'/>
121
+ <use x='200.575' xlink:href='#g2-78' y='201.694'/>
122
+ </g>
123
+ <g transform='matrix(1 0 0 1 94.98 61.588)'>
124
+ <use x='168.285' xlink:href='#g2-115' y='201.694'/>
125
+ <use x='171.531' xlink:href='#g2-104' y='201.694'/>
126
+ <use x='175.904' xlink:href='#g2-54' y='201.694'/>
127
+ <use x='180.138' xlink:href='#g2-98' y='201.694'/>
128
+ <use x='184.746' xlink:href='#g2-101' y='201.694'/>
129
+ <use x='188.509' xlink:href='#g2-110' y='201.694'/>
130
+ <use x='192.882' xlink:href='#g2-99' y='201.694'/>
131
+ <use x='196.646' xlink:href='#g2-104' y='201.694'/>
132
+ <use x='201.018' xlink:href='#g2-78' y='201.694'/>
133
+ </g>
134
+ <g transform='matrix(1 0 0 1 153.649 61.588)'>
135
+ <use x='168.285' xlink:href='#g2-115' y='201.694'/>
136
+ <use x='171.531' xlink:href='#g2-104' y='201.694'/>
137
+ <use x='175.904' xlink:href='#g2-56' y='201.694'/>
138
+ <use x='180.138' xlink:href='#g2-98' y='201.694'/>
139
+ <use x='184.746' xlink:href='#g2-101' y='201.694'/>
140
+ <use x='188.509' xlink:href='#g2-110' y='201.694'/>
141
+ <use x='192.882' xlink:href='#g2-99' y='201.694'/>
142
+ <use x='196.646' xlink:href='#g2-104' y='201.694'/>
143
+ <use x='201.018' xlink:href='#g2-78' y='201.694'/>
144
+ </g>
145
+ <g transform='matrix(1 0 0 1 207.225 61.588)'>
146
+ <use x='168.285' xlink:href='#g2-120' y='201.694'/>
147
+ <use x='172.187' xlink:href='#g2-109' y='201.694'/>
148
+ <use x='178.912' xlink:href='#g2-97' y='201.694'/>
149
+ <use x='182.98' xlink:href='#g2-108' y='201.694'/>
150
+ <use x='185' xlink:href='#g2-108' y='201.694'/>
151
+ <use x='187.02' xlink:href='#g2-111' y='201.694'/>
152
+ <use x='191.49' xlink:href='#g2-99' y='201.694'/>
153
+ <use x='195.254' xlink:href='#g2-45' y='201.694'/>
154
+ <use x='198.076' xlink:href='#g2-116' y='201.694'/>
155
+ <use x='201.134' xlink:href='#g2-101' y='201.694'/>
156
+ <use x='204.898' xlink:href='#g2-115' y='201.694'/>
157
+ <use x='208.144' xlink:href='#g2-116' y='201.694'/>
158
+ <use x='211.202' xlink:href='#g2-78' y='201.694'/>
159
+ </g>
160
+ <g transform='matrix(1 0 0 1 263.494 61.588)'>
161
+ <use x='168.285' xlink:href='#g2-99' y='201.694'/>
162
+ <use x='172.049' xlink:href='#g2-97' y='201.694'/>
163
+ <use x='176.117' xlink:href='#g2-99' y='201.694'/>
164
+ <use x='179.88' xlink:href='#g2-104' y='201.694'/>
165
+ <use x='184.253' xlink:href='#g2-101' y='201.694'/>
166
+ <use x='188.017' xlink:href='#g2-45' y='201.694'/>
167
+ <use x='190.839' xlink:href='#g2-115' y='201.694'/>
168
+ <use x='194.086' xlink:href='#g2-99' y='201.694'/>
169
+ <use x='197.849' xlink:href='#g2-114' y='201.694'/>
170
+ <use x='200.741' xlink:href='#g2-97' y='201.694'/>
171
+ <use x='204.81' xlink:href='#g2-116' y='201.694'/>
172
+ <use x='207.868' xlink:href='#g2-99' y='201.694'/>
173
+ <use x='211.631' xlink:href='#g2-104' y='201.694'/>
174
+ <use x='216.004' xlink:href='#g2-78' y='201.694'/>
175
+ </g>
176
+ <g transform='matrix(1 0 0 1 -40.942 49.223)'>
177
+ <use x='168.285' xlink:href='#g1-48' y='201.694'/>
178
+ <use x='170.931' xlink:href='#g1-120' y='201.694'/>
179
+ </g>
180
+ <g transform='matrix(1 0 0 1 -45.059 15.67)'>
181
+ <use x='168.285' xlink:href='#g1-48' y='201.694'/>
182
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
183
+ <use x='172.401' xlink:href='#g1-53' y='201.694'/>
184
+ <use x='175.048' xlink:href='#g1-120' y='201.694'/>
185
+ </g>
186
+ <g transform='matrix(1 0 0 1 -45.059 -17.883)'>
187
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
188
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
189
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
190
+ <use x='175.048' xlink:href='#g1-120' y='201.694'/>
191
+ </g>
192
+ <g transform='matrix(1 0 0 1 -45.059 -51.436)'>
193
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
194
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
195
+ <use x='172.401' xlink:href='#g1-53' y='201.694'/>
196
+ <use x='175.048' xlink:href='#g1-120' y='201.694'/>
197
+ </g>
198
+ <g transform='matrix(1 0 0 1 -45.059 -84.989)'>
199
+ <use x='168.285' xlink:href='#g1-50' y='201.694'/>
200
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
201
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
202
+ <use x='175.048' xlink:href='#g1-120' y='201.694'/>
203
+ </g>
204
+ <g transform='matrix(1 0 0 1 -45.059 -118.543)'>
205
+ <use x='168.285' xlink:href='#g1-50' y='201.694'/>
206
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
207
+ <use x='172.401' xlink:href='#g1-53' y='201.694'/>
208
+ <use x='175.048' xlink:href='#g1-120' y='201.694'/>
209
+ </g>
210
+ <path clip-path='url(#clip4)' d='M135.949 182.176H487.961' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
211
+ <path clip-path='url(#clip4)' 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='#e0e0f0'/>
212
+ <path clip-path='url(#clip4)' 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='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
213
+ <path clip-path='url(#clip4)' d='M141.746 182.176V181.906' fill='#e0e0f0'/>
214
+ <path clip-path='url(#clip4)' d='M141.746 182.176V181.906' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
215
+ <path clip-path='url(#clip4)' d='M139.754 181.907H143.738' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
216
+ <path clip-path='url(#clip4)' d='M141.746 182.176V182.445' fill='#e0e0f0'/>
217
+ <path clip-path='url(#clip4)' d='M141.746 182.176V182.445' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
218
+ <path clip-path='url(#clip4)' d='M143.739 182.446H139.754' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
219
+ <path clip-path='url(#clip4)' d='M200.414 182.176V181.773' fill='#e0e0f0'/>
220
+ <path clip-path='url(#clip4)' d='M200.414 182.176V181.773' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
221
+ <path clip-path='url(#clip4)' d='M198.422 181.774H202.406' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
222
+ <path clip-path='url(#clip4)' d='M200.414 182.176V182.578' fill='#e0e0f0'/>
223
+ <path clip-path='url(#clip4)' d='M200.414 182.176V182.578' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
224
+ <path clip-path='url(#clip4)' d='M202.406 182.578H198.422' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
225
+ <path clip-path='url(#clip4)' d='M259.082 182.176V180.297' fill='#e0e0f0'/>
226
+ <path clip-path='url(#clip4)' d='M259.082 182.176V180.297' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
227
+ <path clip-path='url(#clip4)' d='M257.09 180.297H261.078' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
228
+ <path clip-path='url(#clip4)' d='M259.082 182.176V184.054' fill='#e0e0f0'/>
229
+ <path clip-path='url(#clip4)' d='M259.082 182.176V184.054' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
230
+ <path clip-path='url(#clip4)' d='M261.074 184.055H257.09' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
231
+ <path clip-path='url(#clip4)' d='M317.754 182.176V181.57' fill='#e0e0f0'/>
232
+ <path clip-path='url(#clip4)' d='M317.754 182.176V181.57' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
233
+ <path clip-path='url(#clip4)' d='M315.762 181.57H319.746' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
234
+ <path clip-path='url(#clip4)' d='M317.754 182.176V182.781' fill='#e0e0f0'/>
235
+ <path clip-path='url(#clip4)' d='M317.754 182.176V182.781' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
236
+ <path clip-path='url(#clip4)' d='M319.746 182.781H315.758' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
237
+ <path clip-path='url(#clip4)' d='M376.422 182.176V181.035' fill='#e0e0f0'/>
238
+ <path clip-path='url(#clip4)' d='M376.422 182.176V181.035' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
239
+ <path clip-path='url(#clip4)' d='M374.43 181.035H378.414' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
240
+ <path clip-path='url(#clip4)' d='M376.422 182.176V183.316' fill='#e0e0f0'/>
241
+ <path clip-path='url(#clip4)' d='M376.422 182.176V183.316' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
242
+ <path clip-path='url(#clip4)' d='M378.414 183.316H374.43' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
243
+ <path clip-path='url(#clip4)' d='M435.09 182.176V179.156' fill='#e0e0f0'/>
244
+ <path clip-path='url(#clip4)' d='M435.09 182.176V179.156' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
245
+ <path clip-path='url(#clip4)' d='M433.098 179.156H437.082' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
246
+ <path clip-path='url(#clip4)' d='M435.09 182.176V185.195' fill='#e0e0f0'/>
247
+ <path clip-path='url(#clip4)' d='M435.09 182.176V185.195' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
248
+ <path clip-path='url(#clip4)' d='M437.082 185.195H433.098' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
249
+ <path clip-path='url(#clip4)' d='M145.356 249.281H148.594V181.371H145.356ZM204.028 249.281H207.266V179.492H204.028ZM262.695 249.281H265.934V149.898H262.695ZM321.363 249.281H324.602V81.515H321.363ZM380.031 249.281H383.27V81.515H380.031ZM438.703 249.281H441.942V81.515H438.703Z' fill='#c2c2e1'/>
250
+ <path clip-path='url(#clip4)' d='M145.356 249.281H148.594V181.371H145.356ZM204.028 249.281H207.266V179.492H204.028ZM262.695 249.281H265.934V149.898H262.695ZM321.363 249.281H324.602V81.515H321.363ZM380.031 249.281H383.27V81.515H380.031ZM438.703 249.281H441.942V81.515H438.703Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
251
+ <path clip-path='url(#clip4)' d='M146.977 181.371V181.238' fill='#c2c2e1'/>
252
+ <path clip-path='url(#clip4)' d='M146.977 181.371V181.238' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
253
+ <path clip-path='url(#clip4)' d='M144.984 181.239H148.968' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
254
+ <path clip-path='url(#clip4)' d='M146.977 181.371V181.504' fill='#c2c2e1'/>
255
+ <path clip-path='url(#clip4)' d='M146.977 181.371V181.504' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
256
+ <path clip-path='url(#clip4)' d='M148.969 181.504H144.984' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
257
+ <path clip-path='url(#clip4)' d='M205.645 179.492V179.359' fill='#c2c2e1'/>
258
+ <path clip-path='url(#clip4)' d='M205.645 179.492V179.359' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
259
+ <path clip-path='url(#clip4)' d='M203.652 179.36H207.636' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
260
+ <path clip-path='url(#clip4)' d='M205.645 179.492V179.625' fill='#c2c2e1'/>
261
+ <path clip-path='url(#clip4)' d='M205.645 179.492V179.625' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
262
+ <path clip-path='url(#clip4)' d='M207.636 179.625H203.652' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
263
+ <path clip-path='url(#clip4)' d='M264.313 149.898V149.359' fill='#c2c2e1'/>
264
+ <path clip-path='url(#clip4)' d='M264.313 149.898V149.359' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
265
+ <path clip-path='url(#clip4)' d='M262.32 149.359H266.308' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
266
+ <path clip-path='url(#clip4)' d='M264.313 149.898V150.433' fill='#c2c2e1'/>
267
+ <path clip-path='url(#clip4)' d='M264.313 149.898V150.433' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
268
+ <path clip-path='url(#clip4)' d='M266.304 150.434H262.32' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
269
+ <path clip-path='url(#clip4)' d='M322.984 81.515V81.515' fill='#c2c2e1'/>
270
+ <path clip-path='url(#clip4)' d='M320.992 81.516H324.976' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
271
+ <path clip-path='url(#clip4)' d='M322.984 81.515V81.515' fill='#c2c2e1'/>
272
+ <path clip-path='url(#clip4)' d='M320.992 81.516H324.976' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
273
+ <path clip-path='url(#clip4)' d='M381.652 81.515V81.515' fill='#c2c2e1'/>
274
+ <path clip-path='url(#clip4)' d='M379.66 81.516H383.644' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
275
+ <path clip-path='url(#clip4)' d='M381.652 81.515V81.515' fill='#c2c2e1'/>
276
+ <path clip-path='url(#clip4)' d='M379.66 81.516H383.644' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
277
+ <path clip-path='url(#clip4)' d='M440.32 81.515V81.515' fill='#c2c2e1'/>
278
+ <path clip-path='url(#clip4)' d='M438.328 81.516H442.312' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
279
+ <path clip-path='url(#clip4)' d='M440.32 81.515V81.515' fill='#c2c2e1'/>
280
+ <path clip-path='url(#clip4)' d='M438.328 81.516H442.312' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
281
+ <path clip-path='url(#clip4)' d='M150.586 249.281H153.824V178.687H150.586ZM209.258 249.281H212.496V177.679H209.258ZM267.926 249.281H271.164V81.515H267.926ZM326.594 249.281H329.832V133.39H326.594ZM385.262 249.281H388.5V110.91H385.262ZM443.934 249.281H447.172V81.515H443.934Z' fill='#a3a3d1'/>
282
+ <path clip-path='url(#clip4)' d='M150.586 249.281H153.824V178.687H150.586ZM209.258 249.281H212.496V177.679H209.258ZM267.926 249.281H271.164V81.515H267.926ZM326.594 249.281H329.832V133.39H326.594ZM385.262 249.281H388.5V110.91H385.262ZM443.934 249.281H447.172V81.515H443.934Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
283
+ <path clip-path='url(#clip4)' d='M152.207 178.687V178.418' fill='#a3a3d1'/>
284
+ <path clip-path='url(#clip4)' d='M152.207 178.687V178.418' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
285
+ <path clip-path='url(#clip4)' d='M150.215 178.418H154.199' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
286
+ <path clip-path='url(#clip4)' d='M152.207 178.687V178.953' fill='#a3a3d1'/>
287
+ <path clip-path='url(#clip4)' d='M152.207 178.687V178.953' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
288
+ <path clip-path='url(#clip4)' d='M154.2 178.953H150.215' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
289
+ <path clip-path='url(#clip4)' d='M210.875 177.679V177.547' fill='#a3a3d1'/>
290
+ <path clip-path='url(#clip4)' d='M210.875 177.679V177.547' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
291
+ <path clip-path='url(#clip4)' d='M208.883 177.547H212.867' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
292
+ <path clip-path='url(#clip4)' d='M210.875 177.679V177.812' fill='#a3a3d1'/>
293
+ <path clip-path='url(#clip4)' d='M210.875 177.679V177.812' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
294
+ <path clip-path='url(#clip4)' d='M212.867 177.812H208.883' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
295
+ <path clip-path='url(#clip4)' d='M269.543 81.515V81.515' fill='#a3a3d1'/>
296
+ <path clip-path='url(#clip4)' d='M267.551 81.516H271.539' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
297
+ <path clip-path='url(#clip4)' d='M269.543 81.515V81.515' fill='#a3a3d1'/>
298
+ <path clip-path='url(#clip4)' d='M267.551 81.516H271.539' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
299
+ <path clip-path='url(#clip4)' d='M328.215 133.39V131.176' fill='#a3a3d1'/>
300
+ <path clip-path='url(#clip4)' d='M328.215 133.39V131.176' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
301
+ <path clip-path='url(#clip4)' d='M326.223 131.176H330.207' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
302
+ <path clip-path='url(#clip4)' d='M328.215 133.39V135.605' fill='#a3a3d1'/>
303
+ <path clip-path='url(#clip4)' d='M328.215 133.39V135.605' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
304
+ <path clip-path='url(#clip4)' d='M330.207 135.606H326.219' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
305
+ <path clip-path='url(#clip4)' d='M386.883 110.91V110.371' fill='#a3a3d1'/>
306
+ <path clip-path='url(#clip4)' d='M386.883 110.91V110.371' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
307
+ <path clip-path='url(#clip4)' d='M384.891 110.371H388.875' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
308
+ <path clip-path='url(#clip4)' d='M386.883 110.91V111.445' fill='#a3a3d1'/>
309
+ <path clip-path='url(#clip4)' d='M386.883 110.91V111.445' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
310
+ <path clip-path='url(#clip4)' d='M388.875 111.445H384.891' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
311
+ <path clip-path='url(#clip4)' d='M445.551 81.515V81.515' fill='#a3a3d1'/>
312
+ <path clip-path='url(#clip4)' d='M443.559 81.516H447.543' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
313
+ <path clip-path='url(#clip4)' d='M445.551 81.515V81.515' fill='#a3a3d1'/>
314
+ <path clip-path='url(#clip4)' d='M443.559 81.516H447.543' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
315
+ <path clip-path='url(#clip4)' d='M155.817 249.281H159.055V161.91H155.817ZM214.488 249.281H217.727V158.219H214.488ZM273.156 249.281H276.395V81.515H273.156ZM331.824 249.281H335.063V150.097H331.824ZM390.492 249.281H393.731V162.445H390.492ZM449.164 249.281H452.402V181.101H449.164Z' fill='#8585c2'/>
316
+ <path clip-path='url(#clip4)' d='M155.817 249.281H159.055V161.91H155.817ZM214.488 249.281H217.727V158.219H214.488ZM273.156 249.281H276.395V81.515H273.156ZM331.824 249.281H335.063V150.097H331.824ZM390.492 249.281H393.731V162.445H390.492ZM449.164 249.281H452.402V181.101H449.164Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
317
+ <path clip-path='url(#clip4)' d='M157.438 161.91V161.777' fill='#8585c2'/>
318
+ <path clip-path='url(#clip4)' d='M157.438 161.91V161.777' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
319
+ <path clip-path='url(#clip4)' d='M155.445 161.777H159.429' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
320
+ <path clip-path='url(#clip4)' d='M157.438 161.91V162.043' fill='#8585c2'/>
321
+ <path clip-path='url(#clip4)' d='M157.438 161.91V162.043' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
322
+ <path clip-path='url(#clip4)' d='M159.43 162.043H155.445' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
323
+ <path clip-path='url(#clip4)' d='M216.106 158.219V158.019' fill='#8585c2'/>
324
+ <path clip-path='url(#clip4)' d='M216.106 158.219V158.019' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
325
+ <path clip-path='url(#clip4)' d='M214.113 158.02H218.097' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
326
+ <path clip-path='url(#clip4)' d='M216.106 158.219V158.422' fill='#8585c2'/>
327
+ <path clip-path='url(#clip4)' d='M216.106 158.219V158.422' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
328
+ <path clip-path='url(#clip4)' d='M218.098 158.422H214.113' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
329
+ <path clip-path='url(#clip4)' d='M274.774 81.515V81.515' fill='#8585c2'/>
330
+ <path clip-path='url(#clip4)' d='M272.781 81.516H276.769' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
331
+ <path clip-path='url(#clip4)' d='M274.774 81.515V81.515' fill='#8585c2'/>
332
+ <path clip-path='url(#clip4)' d='M272.781 81.516H276.769' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
333
+ <path clip-path='url(#clip4)' d='M333.445 150.097V149.496' fill='#8585c2'/>
334
+ <path clip-path='url(#clip4)' d='M333.445 150.097V149.496' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
335
+ <path clip-path='url(#clip4)' d='M331.453 149.496H335.437' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
336
+ <path clip-path='url(#clip4)' d='M333.445 150.097V150.703' fill='#8585c2'/>
337
+ <path clip-path='url(#clip4)' d='M333.445 150.097V150.703' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
338
+ <path clip-path='url(#clip4)' d='M335.437 150.703H331.449' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
339
+ <path clip-path='url(#clip4)' d='M392.113 162.445V162.179' fill='#8585c2'/>
340
+ <path clip-path='url(#clip4)' d='M392.113 162.445V162.179' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
341
+ <path clip-path='url(#clip4)' d='M390.121 162.18H394.105' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
342
+ <path clip-path='url(#clip4)' d='M392.113 162.445V162.715' fill='#8585c2'/>
343
+ <path clip-path='url(#clip4)' d='M392.113 162.445V162.715' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
344
+ <path clip-path='url(#clip4)' d='M394.105 162.714H390.121' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
345
+ <path clip-path='url(#clip4)' d='M450.781 181.101V177.41' fill='#8585c2'/>
346
+ <path clip-path='url(#clip4)' d='M450.781 181.101V177.41' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
347
+ <path clip-path='url(#clip4)' d='M448.789 177.411H452.773' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
348
+ <path clip-path='url(#clip4)' d='M450.781 181.101V184.793' fill='#8585c2'/>
349
+ <path clip-path='url(#clip4)' d='M450.781 181.101V184.793' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
350
+ <path clip-path='url(#clip4)' d='M452.773 184.793H448.789' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
351
+ <path clip-path='url(#clip4)' d='M161.047 249.281H164.285V169.023H161.047ZM219.719 249.281H222.957V168.152H219.719ZM278.387 249.281H281.625V81.515H278.387ZM337.055 249.281H340.293V81.515H337.055ZM395.723 249.281H398.961V81.515H395.723ZM454.395 249.281H457.633V81.515H454.395Z' fill='#6666b3'/>
352
+ <path clip-path='url(#clip4)' d='M161.047 249.281H164.285V169.023H161.047ZM219.719 249.281H222.957V168.152H219.719ZM278.387 249.281H281.625V81.515H278.387ZM337.055 249.281H340.293V81.515H337.055ZM395.723 249.281H398.961V81.515H395.723ZM454.395 249.281H457.633V81.515H454.395Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
353
+ <path clip-path='url(#clip4)' d='M162.668 169.023V168.957' fill='#6666b3'/>
354
+ <path clip-path='url(#clip4)' d='M162.668 169.023V168.957' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
355
+ <path clip-path='url(#clip4)' d='M160.676 168.957H164.66' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
356
+ <path clip-path='url(#clip4)' d='M162.668 169.023V169.09' fill='#6666b3'/>
357
+ <path clip-path='url(#clip4)' d='M162.668 169.023V169.09' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
358
+ <path clip-path='url(#clip4)' d='M164.661 169.089H160.676' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
359
+ <path clip-path='url(#clip4)' d='M221.336 168.152V168.015' fill='#6666b3'/>
360
+ <path clip-path='url(#clip4)' d='M221.336 168.152V168.015' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
361
+ <path clip-path='url(#clip4)' d='M219.344 168.016H223.328' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
362
+ <path clip-path='url(#clip4)' d='M221.336 168.152V168.285' fill='#6666b3'/>
363
+ <path clip-path='url(#clip4)' d='M221.336 168.152V168.285' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
364
+ <path clip-path='url(#clip4)' d='M223.329 168.285H219.344' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
365
+ <path clip-path='url(#clip4)' d='M280.004 81.515V81.515' fill='#6666b3'/>
366
+ <path clip-path='url(#clip4)' d='M278.012 81.516H282' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
367
+ <path clip-path='url(#clip4)' d='M280.004 81.515V81.515' fill='#6666b3'/>
368
+ <path clip-path='url(#clip4)' d='M278.012 81.516H282' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
369
+ <path clip-path='url(#clip4)' d='M338.676 81.515V81.515' fill='#6666b3'/>
370
+ <path clip-path='url(#clip4)' d='M336.684 81.516H340.668' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
371
+ <path clip-path='url(#clip4)' d='M338.676 81.515V81.515' fill='#6666b3'/>
372
+ <path clip-path='url(#clip4)' d='M336.684 81.516H340.668' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
373
+ <path clip-path='url(#clip4)' d='M397.344 81.515V81.515' fill='#6666b3'/>
374
+ <path clip-path='url(#clip4)' d='M395.352 81.516H399.336' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
375
+ <path clip-path='url(#clip4)' d='M397.344 81.515V81.515' fill='#6666b3'/>
376
+ <path clip-path='url(#clip4)' d='M395.352 81.516H399.336' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
377
+ <path clip-path='url(#clip4)' d='M456.012 81.515V81.515' fill='#6666b3'/>
378
+ <path clip-path='url(#clip4)' d='M454.02 81.516H458.004' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
379
+ <path clip-path='url(#clip4)' d='M456.012 81.515V81.515' fill='#6666b3'/>
380
+ <path clip-path='url(#clip4)' d='M454.02 81.516H458.004' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
381
+ <path clip-path='url(#clip4)' d='M166.278 249.281H169.516V175.734H166.278ZM224.949 249.281H228.188V169.023H224.949ZM283.617 249.281H286.856V107.488H283.617ZM342.285 249.281H345.524V81.515H342.285ZM400.953 249.281H404.192V81.515H400.953ZM459.625 249.281H462.863V81.515H459.625Z' fill='#4747a4'/>
382
+ <path clip-path='url(#clip4)' d='M166.278 249.281H169.516V175.734H166.278ZM224.949 249.281H228.188V169.023H224.949ZM283.617 249.281H286.856V107.488H283.617ZM342.285 249.281H345.524V81.515H342.285ZM400.953 249.281H404.192V81.515H400.953ZM459.625 249.281H462.863V81.515H459.625Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
383
+ <path clip-path='url(#clip4)' d='M167.899 175.734V175.465' fill='#4747a4'/>
384
+ <path clip-path='url(#clip4)' d='M167.899 175.734V175.465' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
385
+ <path clip-path='url(#clip4)' d='M165.906 175.465H169.89' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
386
+ <path clip-path='url(#clip4)' d='M167.899 175.734V176.004' fill='#4747a4'/>
387
+ <path clip-path='url(#clip4)' d='M167.899 175.734V176.004' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
388
+ <path clip-path='url(#clip4)' d='M169.891 176.004H165.906' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
389
+ <path clip-path='url(#clip4)' d='M226.567 169.023V168.554' fill='#4747a4'/>
390
+ <path clip-path='url(#clip4)' d='M226.567 169.023V168.554' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
391
+ <path clip-path='url(#clip4)' d='M224.574 168.555H228.558' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
392
+ <path clip-path='url(#clip4)' d='M226.567 169.023V169.492' fill='#4747a4'/>
393
+ <path clip-path='url(#clip4)' d='M226.567 169.023V169.492' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
394
+ <path clip-path='url(#clip4)' d='M228.559 169.492H224.574' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
395
+ <path clip-path='url(#clip4)' d='M285.234 107.488V107.015' fill='#4747a4'/>
396
+ <path clip-path='url(#clip4)' d='M285.234 107.488V107.015' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
397
+ <path clip-path='url(#clip4)' d='M283.242 107.015H287.23' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
398
+ <path clip-path='url(#clip4)' d='M285.234 107.488V107.957' fill='#4747a4'/>
399
+ <path clip-path='url(#clip4)' d='M285.234 107.488V107.957' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
400
+ <path clip-path='url(#clip4)' d='M287.227 107.957H283.242' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
401
+ <path clip-path='url(#clip4)' d='M343.906 81.515V81.515' fill='#4747a4'/>
402
+ <path clip-path='url(#clip4)' d='M341.914 81.516H345.898' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
403
+ <path clip-path='url(#clip4)' d='M343.906 81.515V81.515' fill='#4747a4'/>
404
+ <path clip-path='url(#clip4)' d='M341.914 81.516H345.898' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
405
+ <path clip-path='url(#clip4)' d='M402.574 81.515V81.515' fill='#4747a4'/>
406
+ <path clip-path='url(#clip4)' d='M400.582 81.516H404.566' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
407
+ <path clip-path='url(#clip4)' d='M402.574 81.515V81.515' fill='#4747a4'/>
408
+ <path clip-path='url(#clip4)' d='M400.582 81.516H404.566' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
409
+ <path clip-path='url(#clip4)' d='M461.242 81.515V81.515' fill='#4747a4'/>
410
+ <path clip-path='url(#clip4)' d='M459.25 81.516H463.234' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
411
+ <path clip-path='url(#clip4)' d='M461.242 81.515V81.515' fill='#4747a4'/>
412
+ <path clip-path='url(#clip4)' d='M459.25 81.516H463.234' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
413
+ <path clip-path='url(#clip4)' d='M171.508 249.281H174.746V168.82H171.508ZM230.18 249.281H233.414V168.621H230.18ZM288.848 249.281H292.086V81.515H288.848ZM347.516 249.281H350.754V81.515H347.516ZM406.184 249.281H409.422V81.515H406.184ZM464.856 249.281H468.094V81.515H464.856Z' fill='#292994'/>
414
+ <path clip-path='url(#clip4)' d='M171.508 249.281H174.746V168.82H171.508ZM230.18 249.281H233.414V168.621H230.18ZM288.848 249.281H292.086V81.515H288.848ZM347.516 249.281H350.754V81.515H347.516ZM406.184 249.281H409.422V81.515H406.184ZM464.856 249.281H468.094V81.515H464.856Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
415
+ <path clip-path='url(#clip4)' d='M173.129 168.82V168.554' fill='#292994'/>
416
+ <path clip-path='url(#clip4)' d='M173.129 168.82V168.554' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
417
+ <path clip-path='url(#clip4)' d='M171.137 168.555H175.121' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
418
+ <path clip-path='url(#clip4)' d='M173.129 168.82V169.09' fill='#292994'/>
419
+ <path clip-path='url(#clip4)' d='M173.129 168.82V169.09' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
420
+ <path clip-path='url(#clip4)' d='M175.122 169.089H171.137' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
421
+ <path clip-path='url(#clip4)' d='M231.797 168.621V168.554' fill='#292994'/>
422
+ <path clip-path='url(#clip4)' d='M231.797 168.621V168.554' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
423
+ <path clip-path='url(#clip4)' d='M229.805 168.555H233.789' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
424
+ <path clip-path='url(#clip4)' d='M231.797 168.621V168.687' fill='#292994'/>
425
+ <path clip-path='url(#clip4)' d='M231.797 168.621V168.687' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
426
+ <path clip-path='url(#clip4)' d='M233.79 168.688H229.805' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
427
+ <path clip-path='url(#clip4)' d='M290.465 81.515V81.515' fill='#292994'/>
428
+ <path clip-path='url(#clip4)' d='M288.473 81.516H292.461' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
429
+ <path clip-path='url(#clip4)' d='M290.465 81.515V81.515' fill='#292994'/>
430
+ <path clip-path='url(#clip4)' d='M288.473 81.516H292.461' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
431
+ <path clip-path='url(#clip4)' d='M349.137 81.515V81.515' fill='#292994'/>
432
+ <path clip-path='url(#clip4)' d='M347.145 81.516H351.129' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
433
+ <path clip-path='url(#clip4)' d='M349.137 81.515V81.515' fill='#292994'/>
434
+ <path clip-path='url(#clip4)' d='M347.145 81.516H351.129' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
435
+ <path clip-path='url(#clip4)' d='M407.805 81.515V81.515' fill='#292994'/>
436
+ <path clip-path='url(#clip4)' d='M405.813 81.516H409.797' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
437
+ <path clip-path='url(#clip4)' d='M407.805 81.515V81.515' fill='#292994'/>
438
+ <path clip-path='url(#clip4)' d='M405.813 81.516H409.797' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
439
+ <path clip-path='url(#clip4)' d='M466.473 81.515V81.515' fill='#292994'/>
440
+ <path clip-path='url(#clip4)' d='M464.481 81.516H468.465' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
441
+ <path clip-path='url(#clip4)' d='M466.473 81.515V81.515' fill='#292994'/>
442
+ <path clip-path='url(#clip4)' d='M464.481 81.516H468.465' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
443
+ <path clip-path='url(#clip4)' d='M411.414 249.281H414.652V133.59H411.414ZM176.738 249.281H179.977V162.113H176.738ZM235.41 249.281H238.645V162.648H235.41ZM294.078 249.281H297.317V81.515H294.078ZM352.746 249.281H355.984V125.875H352.746ZM470.086 249.281H473.324V181.035H470.086Z' fill='#0a0a85'/>
444
+ <path clip-path='url(#clip4)' d='M411.414 249.281H414.652V133.59H411.414ZM176.738 249.281H179.977V162.113H176.738ZM235.41 249.281H238.645V162.648H235.41ZM294.078 249.281H297.317V81.515H294.078ZM352.746 249.281H355.984V125.875H352.746ZM470.086 249.281H473.324V181.035H470.086Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
445
+ <path clip-path='url(#clip4)' d='M413.035 133.59V126.211' fill='#0a0a85'/>
446
+ <path clip-path='url(#clip4)' d='M413.035 133.59V126.211' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
447
+ <path clip-path='url(#clip4)' d='M411.043 126.211H415.027' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
448
+ <path clip-path='url(#clip4)' d='M413.035 133.59V140.972' fill='#0a0a85'/>
449
+ <path clip-path='url(#clip4)' d='M413.035 133.59V140.972' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
450
+ <path clip-path='url(#clip4)' d='M415.027 140.973H411.043' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
451
+ <path clip-path='url(#clip4)' d='M178.36 162.113V161.777' fill='#0a0a85'/>
452
+ <path clip-path='url(#clip4)' d='M178.36 162.113V161.777' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
453
+ <path clip-path='url(#clip4)' d='M176.367 161.777H180.351' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
454
+ <path clip-path='url(#clip4)' d='M178.36 162.113V162.445' fill='#0a0a85'/>
455
+ <path clip-path='url(#clip4)' d='M178.36 162.113V162.445' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
456
+ <path clip-path='url(#clip4)' d='M180.352 162.445H176.367' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
457
+ <path clip-path='url(#clip4)' d='M237.027 162.648V162.515' fill='#0a0a85'/>
458
+ <path clip-path='url(#clip4)' d='M237.027 162.648V162.515' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
459
+ <path clip-path='url(#clip4)' d='M235.035 162.516H239.019' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
460
+ <path clip-path='url(#clip4)' d='M237.027 162.648V162.781' fill='#0a0a85'/>
461
+ <path clip-path='url(#clip4)' d='M237.027 162.648V162.781' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
462
+ <path clip-path='url(#clip4)' d='M239.02 162.781H235.035' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
463
+ <path clip-path='url(#clip4)' d='M295.695 81.515V81.515' fill='#0a0a85'/>
464
+ <path clip-path='url(#clip4)' d='M293.703 81.516H297.691' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
465
+ <path clip-path='url(#clip4)' d='M295.695 81.515V81.515' fill='#0a0a85'/>
466
+ <path clip-path='url(#clip4)' d='M293.703 81.516H297.691' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
467
+ <path clip-path='url(#clip4)' d='M354.367 125.875V125.672' fill='#0a0a85'/>
468
+ <path clip-path='url(#clip4)' d='M354.367 125.875V125.672' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
469
+ <path clip-path='url(#clip4)' d='M352.375 125.672H356.359' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
470
+ <path clip-path='url(#clip4)' d='M354.367 125.875V126.074' fill='#0a0a85'/>
471
+ <path clip-path='url(#clip4)' d='M354.367 125.875V126.074' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
472
+ <path clip-path='url(#clip4)' d='M356.359 126.074H352.371' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
473
+ <path clip-path='url(#clip4)' d='M471.703 181.035V178.219' fill='#0a0a85'/>
474
+ <path clip-path='url(#clip4)' d='M471.703 181.035V178.219' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
475
+ <path clip-path='url(#clip4)' d='M469.711 178.219H473.695' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
476
+ <path clip-path='url(#clip4)' d='M471.703 181.035V183.855' fill='#0a0a85'/>
477
+ <path clip-path='url(#clip4)' d='M471.703 181.035V183.855' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
478
+ <path clip-path='url(#clip4)' d='M473.695 183.856H469.711' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
479
+ <path clip-path='url(#clip4)' d='M181.969 249.281H185.207V154.594H181.969ZM240.641 249.281H243.875V149.695H240.641ZM299.309 249.281H302.547V81.515H299.309ZM357.977 249.281H361.215V81.515H357.977ZM475.317 249.281H478.555V81.515H475.317Z' fill='#000076'/>
480
+ <path clip-path='url(#clip4)' d='M181.969 249.281H185.207V154.594H181.969ZM240.641 249.281H243.875V149.695H240.641ZM299.309 249.281H302.547V81.515H299.309ZM357.977 249.281H361.215V81.515H357.977ZM475.317 249.281H478.555V81.515H475.317Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
481
+ <path clip-path='url(#clip4)' d='M183.59 154.594V154.461' fill='#000076'/>
482
+ <path clip-path='url(#clip4)' d='M183.59 154.594V154.461' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
483
+ <path clip-path='url(#clip4)' d='M181.598 154.461H185.583' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
484
+ <path clip-path='url(#clip4)' d='M183.59 154.594V154.73' fill='#000076'/>
485
+ <path clip-path='url(#clip4)' d='M183.59 154.594V154.73' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
486
+ <path clip-path='url(#clip4)' d='M185.582 154.731H181.597' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
487
+ <path clip-path='url(#clip4)' d='M242.258 149.695V149.562' fill='#000076'/>
488
+ <path clip-path='url(#clip4)' d='M242.258 149.695V149.562' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
489
+ <path clip-path='url(#clip4)' d='M240.266 149.563H244.25' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
490
+ <path clip-path='url(#clip4)' d='M242.258 149.695V149.832' fill='#000076'/>
491
+ <path clip-path='url(#clip4)' d='M242.258 149.695V149.832' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
492
+ <path clip-path='url(#clip4)' d='M244.25 149.832H240.265' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
493
+ <path clip-path='url(#clip4)' d='M300.926 81.515V81.515' fill='#000076'/>
494
+ <path clip-path='url(#clip4)' d='M298.933 81.516H302.921' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
495
+ <path clip-path='url(#clip4)' d='M300.926 81.515V81.515' fill='#000076'/>
496
+ <path clip-path='url(#clip4)' d='M298.933 81.516H302.921' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
497
+ <path clip-path='url(#clip4)' d='M359.598 81.515V81.515' fill='#000076'/>
498
+ <path clip-path='url(#clip4)' d='M357.606 81.516H361.59' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
499
+ <path clip-path='url(#clip4)' d='M359.598 81.515V81.515' fill='#000076'/>
500
+ <path clip-path='url(#clip4)' d='M357.606 81.516H361.59' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
501
+ <path clip-path='url(#clip4)' d='M476.934 81.515V81.515' fill='#000076'/>
502
+ <path clip-path='url(#clip4)' d='M474.942 81.516H478.926' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
503
+ <path clip-path='url(#clip4)' d='M476.934 81.515V81.515' fill='#000076'/>
504
+ <path clip-path='url(#clip4)' d='M474.942 81.516H478.926' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
505
+ <path clip-path='url(#clip4)' d='M187.199 249.281H190.438V181.64H187.199ZM245.871 249.281H249.106V181.64H245.871ZM304.539 249.281H307.777V164.258H304.539ZM363.207 249.281H366.445V151.105H363.207ZM421.875 249.281H425.113V179.828H421.875ZM480.547 249.281H483.785V181.371H480.547Z' fill='#000067'/>
506
+ <path clip-path='url(#clip4)' d='M187.199 249.281H190.438V181.64H187.199ZM245.871 249.281H249.106V181.64H245.871ZM304.539 249.281H307.777V164.258H304.539ZM363.207 249.281H366.445V151.105H363.207ZM421.875 249.281H425.113V179.828H421.875ZM480.547 249.281H483.785V181.371H480.547Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
507
+ <path clip-path='url(#clip4)' d='M188.82 181.64V181.57' fill='#000067'/>
508
+ <path clip-path='url(#clip4)' d='M188.82 181.64V181.57' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
509
+ <path clip-path='url(#clip4)' d='M186.828 181.57H190.813' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
510
+ <path clip-path='url(#clip4)' d='M188.82 181.64V181.707' fill='#000067'/>
511
+ <path clip-path='url(#clip4)' d='M188.82 181.64V181.707' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
512
+ <path clip-path='url(#clip4)' d='M190.813 181.707H186.828' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
513
+ <path clip-path='url(#clip4)' d='M247.488 181.64V181.437' fill='#000067'/>
514
+ <path clip-path='url(#clip4)' d='M247.488 181.64V181.437' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
515
+ <path clip-path='url(#clip4)' d='M245.496 181.437H249.481' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
516
+ <path clip-path='url(#clip4)' d='M247.488 181.64V181.84' fill='#000067'/>
517
+ <path clip-path='url(#clip4)' d='M247.488 181.64V181.84' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
518
+ <path clip-path='url(#clip4)' d='M249.481 181.84H245.496' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
519
+ <path clip-path='url(#clip4)' d='M306.156 164.258V163.992' fill='#000067'/>
520
+ <path clip-path='url(#clip4)' d='M306.156 164.258V163.992' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
521
+ <path clip-path='url(#clip4)' d='M304.164 163.992H308.152' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
522
+ <path clip-path='url(#clip4)' d='M306.156 164.258V164.527' fill='#000067'/>
523
+ <path clip-path='url(#clip4)' d='M306.156 164.258V164.527' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
524
+ <path clip-path='url(#clip4)' d='M308.149 164.527H304.164' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
525
+ <path clip-path='url(#clip4)' d='M364.828 151.105V150.168' fill='#000067'/>
526
+ <path clip-path='url(#clip4)' d='M364.828 151.105V150.168' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
527
+ <path clip-path='url(#clip4)' d='M362.836 150.168H366.82' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
528
+ <path clip-path='url(#clip4)' d='M364.828 151.105V152.047' fill='#000067'/>
529
+ <path clip-path='url(#clip4)' d='M364.828 151.105V152.047' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
530
+ <path clip-path='url(#clip4)' d='M366.82 152.047H362.832' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
531
+ <path clip-path='url(#clip4)' d='M423.496 179.828V179.09' fill='#000067'/>
532
+ <path clip-path='url(#clip4)' d='M423.496 179.828V179.09' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
533
+ <path clip-path='url(#clip4)' d='M421.504 179.09H425.488' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
534
+ <path clip-path='url(#clip4)' d='M423.496 179.828V180.566' fill='#000067'/>
535
+ <path clip-path='url(#clip4)' d='M423.496 179.828V180.566' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
536
+ <path clip-path='url(#clip4)' d='M425.488 180.567H421.504' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
537
+ <path clip-path='url(#clip4)' d='M482.164 181.371V178.148' fill='#000067'/>
538
+ <path clip-path='url(#clip4)' d='M482.164 181.371V178.148' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
539
+ <path clip-path='url(#clip4)' d='M480.172 178.149H484.156' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
540
+ <path clip-path='url(#clip4)' d='M482.164 181.371V184.594' fill='#000067'/>
541
+ <path clip-path='url(#clip4)' d='M482.164 181.371V184.594' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
542
+ <path clip-path='url(#clip4)' d='M484.156 184.594H480.172' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
543
+ <path clip-path='url(#clip4)' d='M419.477 298.301H487.762V276.324H419.477Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
544
+ <g transform='matrix(1 0 0 1 254.512 92.648)'>
545
+ <use x='168.285' xlink:href='#g1-72' y='190.457'/>
546
+ <use x='172.021' xlink:href='#g1-80' y='190.457'/>
547
+ <use x='175.402' xlink:href='#g1-45' y='190.457'/>
548
+ <use x='177.167' xlink:href='#g1-90' y='190.457'/>
549
+ <use x='180.401' xlink:href='#g1-52' y='190.457'/>
550
+ <use x='183.047' xlink:href='#g1-45' y='190.457'/>
551
+ <use x='184.812' xlink:href='#g1-71' y='190.457'/>
552
+ <use x='188.34' xlink:href='#g1-52' y='190.457'/>
553
+ <use x='190.987' xlink:href='#g1-44' y='190.457'/>
554
+ <use x='194.221' xlink:href='#g1-49' y='190.457'/>
555
+ <use x='196.867' xlink:href='#g1-54' y='190.457'/>
556
+ <use x='199.514' xlink:href='#g1-71' y='190.457'/>
557
+ <use x='203.042' xlink:href='#g1-98' y='190.457'/>
558
+ <use x='168.285' xlink:href='#g1-56' y='196.075'/>
559
+ <use x='170.931' xlink:href='#g1-45' y='196.075'/>
560
+ <use x='172.695' xlink:href='#g1-99' y='196.075'/>
561
+ <use x='175.048' xlink:href='#g1-111' y='196.075'/>
562
+ <use x='177.547' xlink:href='#g1-114' y='196.075'/>
563
+ <use x='179.355' xlink:href='#g1-101' y='196.075'/>
564
+ <use x='183.471' xlink:href='#g1-73' y='196.075'/>
565
+ <use x='184.941' xlink:href='#g1-110' y='196.075'/>
566
+ <use x='187.674' xlink:href='#g1-116' y='196.075'/>
567
+ <use x='189.585' xlink:href='#g1-101' y='196.075'/>
568
+ <use x='191.938' xlink:href='#g1-108' y='196.075'/>
569
+ <use x='194.965' xlink:href='#g1-88' y='196.075'/>
570
+ <use x='198.493' xlink:href='#g1-69' y='196.075'/>
571
+ <use x='201.667' xlink:href='#g1-79' y='196.075'/>
572
+ <use x='205.576' xlink:href='#g1-78' y='196.075'/>
573
+ <use x='211.076' xlink:href='#g1-64' y='196.075'/>
574
+ <use x='214.605' xlink:href='#g1-50' y='196.075'/>
575
+ <use x='217.251' xlink:href='#g1-46' y='196.075'/>
576
+ <use x='218.721' xlink:href='#g1-55' y='196.075'/>
577
+ <use x='221.368' xlink:href='#g1-71' y='196.075'/>
578
+ <use x='224.896' xlink:href='#g1-104' y='196.075'/>
579
+ <use x='227.629' xlink:href='#g1-122' y='196.075'/>
580
+ <use x='168.285' xlink:href='#g1-85' y='201.694'/>
581
+ <use x='171.917' xlink:href='#g1-98' y='201.694'/>
582
+ <use x='174.65' xlink:href='#g1-117' y='201.694'/>
583
+ <use x='177.383' xlink:href='#g1-110' y='201.694'/>
584
+ <use x='180.116' xlink:href='#g1-116' y='201.694'/>
585
+ <use x='182.027' xlink:href='#g1-117' y='201.694'/>
586
+ <use x='186.524' xlink:href='#g1-49' y='201.694'/>
587
+ <use x='189.17' xlink:href='#g1-56' y='201.694'/>
588
+ <use x='191.817' xlink:href='#g1-46' y='201.694'/>
589
+ <use x='193.287' xlink:href='#g1-48' y='201.694'/>
590
+ <use x='195.933' xlink:href='#g1-52' y='201.694'/>
591
+ <use x='198.58' xlink:href='#g1-46' y='201.694'/>
592
+ <use x='200.05' xlink:href='#g1-49' y='201.694'/>
593
+ <use x='202.696' xlink:href='#g1-44' y='201.694'/>
594
+ <use x='205.931' xlink:href='#g1-71' y='201.694'/>
595
+ <use x='209.459' xlink:href='#g1-67' y='201.694'/>
596
+ <use x='212.841' xlink:href='#g1-67' y='201.694'/>
597
+ <use x='217.986' xlink:href='#g1-55' y='201.694'/>
598
+ <use x='220.633' xlink:href='#g1-46' y='201.694'/>
599
+ <use x='222.103' xlink:href='#g1-52' y='201.694'/>
600
+ <use x='224.749' xlink:href='#g1-46' y='201.694'/>
601
+ <use x='226.219' xlink:href='#g1-48' y='201.694'/>
602
+ </g>
603
+ <g transform='matrix(0 -1 1 0 -58.314 344.257)'>
604
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
605
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
606
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
607
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
608
+ </g>
609
+ <g transform='matrix(0 -1 1 0 0.355 344.257)'>
610
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
611
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
612
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
613
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
614
+ </g>
615
+ <g transform='matrix(0 -1 1 0 59.024 344.257)'>
616
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
617
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
618
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
619
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
620
+ </g>
621
+ <g transform='matrix(0 -1 1 0 117.693 344.257)'>
622
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
623
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
624
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
625
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
626
+ </g>
627
+ <g transform='matrix(0 -1 1 0 176.362 344.257)'>
628
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
629
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
630
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
631
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
632
+ </g>
633
+ <g transform='matrix(0 -1 1 0 235.031 344.257)'>
634
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
635
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
636
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
637
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
638
+ </g>
639
+ <g transform='matrix(0 -1 1 0 -53.084 343.452)'>
640
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
641
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
642
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
643
+ <use x='175.048' xlink:href='#g1-49' y='201.694'/>
644
+ </g>
645
+ <g transform='matrix(0 -1 1 0 5.585 341.573)'>
646
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
647
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
648
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
649
+ <use x='175.048' xlink:href='#g1-52' y='201.694'/>
650
+ </g>
651
+ <g transform='matrix(0 -1 1 0 64.254 311.979)'>
652
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
653
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
654
+ <use x='172.401' xlink:href='#g1-52' y='201.694'/>
655
+ <use x='175.048' xlink:href='#g1-56' y='201.694'/>
656
+ </g>
657
+ <g transform='matrix(0 -1 1 0 122.923 243.598)'>
658
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
659
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
660
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
661
+ <use x='173.912' xlink:href='#g1-50' y='201.694'/>
662
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
663
+ <use x='178.029' xlink:href='#g1-54' y='201.694'/>
664
+ <use x='180.675' xlink:href='#g1-53' y='201.694'/>
665
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
666
+ </g>
667
+ <g transform='matrix(0 -1 1 0 181.592 243.598)'>
668
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
669
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
670
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
671
+ <use x='173.912' xlink:href='#g1-53' y='201.694'/>
672
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
673
+ <use x='178.029' xlink:href='#g1-48' y='201.694'/>
674
+ <use x='180.675' xlink:href='#g1-54' y='201.694'/>
675
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
676
+ </g>
677
+ <g transform='matrix(0 -1 1 0 240.261 243.598)'>
678
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
679
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
680
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
681
+ <use x='173.912' xlink:href='#g1-49' y='201.694'/>
682
+ <use x='176.558' xlink:href='#g1-49' y='201.694'/>
683
+ <use x='179.205' xlink:href='#g1-46' y='201.694'/>
684
+ <use x='180.675' xlink:href='#g1-56' y='201.694'/>
685
+ <use x='183.321' xlink:href='#g1-51' y='201.694'/>
686
+ <use x='185.968' xlink:href='#g1-120' y='201.694'/>
687
+ </g>
688
+ <g transform='matrix(0 -1 1 0 -47.853 340.768)'>
689
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
690
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
691
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
692
+ <use x='175.048' xlink:href='#g1-53' y='201.694'/>
693
+ </g>
694
+ <g transform='matrix(0 -1 1 0 10.816 339.761)'>
695
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
696
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
697
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
698
+ <use x='175.048' xlink:href='#g1-55' y='201.694'/>
699
+ </g>
700
+ <g transform='matrix(0 -1 1 0 69.485 243.598)'>
701
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
702
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
703
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
704
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
705
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
706
+ <use x='178.029' xlink:href='#g1-51' y='201.694'/>
707
+ <use x='180.675' xlink:href='#g1-54' y='201.694'/>
708
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
709
+ </g>
710
+ <g transform='matrix(0 -1 1 0 128.154 295.471)'>
711
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
712
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
713
+ <use x='172.401' xlink:href='#g1-55' y='201.694'/>
714
+ <use x='175.048' xlink:href='#g1-51' y='201.694'/>
715
+ </g>
716
+ <g transform='matrix(0 -1 1 0 186.823 272.99)'>
717
+ <use x='168.285' xlink:href='#g1-50' y='201.694'/>
718
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
719
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
720
+ <use x='175.048' xlink:href='#g1-54' y='201.694'/>
721
+ </g>
722
+ <g transform='matrix(0 -1 1 0 245.492 243.598)'>
723
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
724
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
725
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
726
+ <use x='173.912' xlink:href='#g1-49' y='201.694'/>
727
+ <use x='176.558' xlink:href='#g1-50' y='201.694'/>
728
+ <use x='179.205' xlink:href='#g1-46' y='201.694'/>
729
+ <use x='180.675' xlink:href='#g1-48' y='201.694'/>
730
+ <use x='183.321' xlink:href='#g1-55' y='201.694'/>
731
+ <use x='185.968' xlink:href='#g1-120' y='201.694'/>
732
+ </g>
733
+ <g transform='matrix(0 -1 1 0 -42.623 323.991)'>
734
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
735
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
736
+ <use x='172.401' xlink:href='#g1-51' y='201.694'/>
737
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
738
+ </g>
739
+ <g transform='matrix(0 -1 1 0 16.046 320.3)'>
740
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
741
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
742
+ <use x='172.401' xlink:href='#g1-51' y='201.694'/>
743
+ <use x='175.048' xlink:href='#g1-54' y='201.694'/>
744
+ </g>
745
+ <g transform='matrix(0 -1 1 0 74.715 243.598)'>
746
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
747
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
748
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
749
+ <use x='173.912' xlink:href='#g1-50' y='201.694'/>
750
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
751
+ <use x='178.029' xlink:href='#g1-56' y='201.694'/>
752
+ <use x='180.675' xlink:href='#g1-57' y='201.694'/>
753
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
754
+ </g>
755
+ <g transform='matrix(0 -1 1 0 133.384 312.18)'>
756
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
757
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
758
+ <use x='172.401' xlink:href='#g1-52' y='201.694'/>
759
+ <use x='175.048' xlink:href='#g1-56' y='201.694'/>
760
+ </g>
761
+ <g transform='matrix(0 -1 1 0 192.053 324.528)'>
762
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
763
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
764
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
765
+ <use x='175.048' xlink:href='#g1-57' y='201.694'/>
766
+ </g>
767
+ <g transform='matrix(0 -1 1 0 250.722 343.183)'>
768
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
769
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
770
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
771
+ <use x='175.048' xlink:href='#g1-50' y='201.694'/>
772
+ </g>
773
+ <g transform='matrix(0 -1 1 0 -37.392 331.104)'>
774
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
775
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
776
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
777
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
778
+ </g>
779
+ <g transform='matrix(0 -1 1 0 21.277 330.232)'>
780
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
781
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
782
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
783
+ <use x='175.048' xlink:href='#g1-49' y='201.694'/>
784
+ </g>
785
+ <g transform='matrix(0 -1 1 0 79.946 243.598)'>
786
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
787
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
788
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
789
+ <use x='173.912' xlink:href='#g1-50' y='201.694'/>
790
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
791
+ <use x='178.029' xlink:href='#g1-54' y='201.694'/>
792
+ <use x='180.675' xlink:href='#g1-53' y='201.694'/>
793
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
794
+ </g>
795
+ <g transform='matrix(0 -1 1 0 138.615 243.598)'>
796
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
797
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
798
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
799
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
800
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
801
+ <use x='178.029' xlink:href='#g1-53' y='201.694'/>
802
+ <use x='180.675' xlink:href='#g1-49' y='201.694'/>
803
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
804
+ </g>
805
+ <g transform='matrix(0 -1 1 0 197.284 243.598)'>
806
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
807
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
808
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
809
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
810
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
811
+ <use x='178.029' xlink:href='#g1-53' y='201.694'/>
812
+ <use x='180.675' xlink:href='#g1-49' y='201.694'/>
813
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
814
+ </g>
815
+ <g transform='matrix(0 -1 1 0 255.953 243.598)'>
816
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
817
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
818
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
819
+ <use x='173.912' xlink:href='#g1-54' y='201.694'/>
820
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
821
+ <use x='178.029' xlink:href='#g1-49' y='201.694'/>
822
+ <use x='180.675' xlink:href='#g1-56' y='201.694'/>
823
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
824
+ </g>
825
+ <g transform='matrix(0 -1 1 0 -32.162 337.815)'>
826
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
827
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
828
+ <use x='172.401' xlink:href='#g1-49' y='201.694'/>
829
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
830
+ </g>
831
+ <g transform='matrix(0 -1 1 0 26.507 331.104)'>
832
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
833
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
834
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
835
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
836
+ </g>
837
+ <g transform='matrix(0 -1 1 0 85.176 269.568)'>
838
+ <use x='168.285' xlink:href='#g1-50' y='201.694'/>
839
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
840
+ <use x='172.401' xlink:href='#g1-49' y='201.694'/>
841
+ <use x='175.048' xlink:href='#g1-49' y='201.694'/>
842
+ </g>
843
+ <g transform='matrix(0 -1 1 0 143.845 243.598)'>
844
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
845
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
846
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
847
+ <use x='173.912' xlink:href='#g1-49' y='201.694'/>
848
+ <use x='176.558' xlink:href='#g1-48' y='201.694'/>
849
+ <use x='179.205' xlink:href='#g1-46' y='201.694'/>
850
+ <use x='180.675' xlink:href='#g1-50' y='201.694'/>
851
+ <use x='183.321' xlink:href='#g1-50' y='201.694'/>
852
+ <use x='185.968' xlink:href='#g1-120' y='201.694'/>
853
+ </g>
854
+ <g transform='matrix(0 -1 1 0 202.514 243.598)'>
855
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
856
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
857
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
858
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
859
+ <use x='176.558' xlink:href='#g1-49' y='201.694'/>
860
+ <use x='179.205' xlink:href='#g1-46' y='201.694'/>
861
+ <use x='180.675' xlink:href='#g1-52' y='201.694'/>
862
+ <use x='183.321' xlink:href='#g1-50' y='201.694'/>
863
+ <use x='185.968' xlink:href='#g1-120' y='201.694'/>
864
+ </g>
865
+ <g transform='matrix(0 -1 1 0 261.183 243.598)'>
866
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
867
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
868
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
869
+ <use x='173.912' xlink:href='#g1-55' y='201.694'/>
870
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
871
+ <use x='178.029' xlink:href='#g1-48' y='201.694'/>
872
+ <use x='180.675' xlink:href='#g1-49' y='201.694'/>
873
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
874
+ </g>
875
+ <g transform='matrix(0 -1 1 0 -26.931 330.903)'>
876
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
877
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
878
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
879
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
880
+ </g>
881
+ <g transform='matrix(0 -1 1 0 31.738 330.702)'>
882
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
883
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
884
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
885
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
886
+ </g>
887
+ <g transform='matrix(0 -1 1 0 90.407 243.598)'>
888
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
889
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
890
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
891
+ <use x='173.912' xlink:href='#g1-50' y='201.694'/>
892
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
893
+ <use x='178.029' xlink:href='#g1-54' y='201.694'/>
894
+ <use x='180.675' xlink:href='#g1-55' y='201.694'/>
895
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
896
+ </g>
897
+ <g transform='matrix(0 -1 1 0 149.076 243.598)'>
898
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
899
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
900
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
901
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
902
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
903
+ <use x='178.029' xlink:href='#g1-54' y='201.694'/>
904
+ <use x='180.675' xlink:href='#g1-48' y='201.694'/>
905
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
906
+ </g>
907
+ <g transform='matrix(0 -1 1 0 207.745 243.598)'>
908
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
909
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
910
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
911
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
912
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
913
+ <use x='178.029' xlink:href='#g1-53' y='201.694'/>
914
+ <use x='180.675' xlink:href='#g1-49' y='201.694'/>
915
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
916
+ </g>
917
+ <g transform='matrix(0 -1 1 0 266.414 243.598)'>
918
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
919
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
920
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
921
+ <use x='173.912' xlink:href='#g1-53' y='201.694'/>
922
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
923
+ <use x='178.029' xlink:href='#g1-55' y='201.694'/>
924
+ <use x='180.675' xlink:href='#g1-54' y='201.694'/>
925
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
926
+ </g>
927
+ <g transform='matrix(0 -1 1 0 212.975 295.672)'>
928
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
929
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
930
+ <use x='172.401' xlink:href='#g1-55' y='201.694'/>
931
+ <use x='175.048' xlink:href='#g1-50' y='201.694'/>
932
+ </g>
933
+ <g transform='matrix(0 -1 1 0 -21.701 324.192)'>
934
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
935
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
936
+ <use x='172.401' xlink:href='#g1-51' y='201.694'/>
937
+ <use x='175.048' xlink:href='#g1-48' y='201.694'/>
938
+ </g>
939
+ <g transform='matrix(0 -1 1 0 36.968 324.729)'>
940
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
941
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
942
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
943
+ <use x='175.048' xlink:href='#g1-57' y='201.694'/>
944
+ </g>
945
+ <g transform='matrix(0 -1 1 0 95.637 243.598)'>
946
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
947
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
948
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
949
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
950
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
951
+ <use x='178.029' xlink:href='#g1-51' y='201.694'/>
952
+ <use x='180.675' xlink:href='#g1-55' y='201.694'/>
953
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
954
+ </g>
955
+ <g transform='matrix(0 -1 1 0 154.306 287.955)'>
956
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
957
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
958
+ <use x='172.401' xlink:href='#g1-56' y='201.694'/>
959
+ <use x='175.048' xlink:href='#g1-52' y='201.694'/>
960
+ </g>
961
+ <g transform='matrix(0 -1 1 0 271.644 343.116)'>
962
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
963
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
964
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
965
+ <use x='175.048' xlink:href='#g1-50' y='201.694'/>
966
+ </g>
967
+ <g transform='matrix(0 -1 1 0 -16.471 316.676)'>
968
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
969
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
970
+ <use x='172.401' xlink:href='#g1-52' y='201.694'/>
971
+ <use x='175.048' xlink:href='#g1-49' y='201.694'/>
972
+ </g>
973
+ <g transform='matrix(0 -1 1 0 42.198 311.778)'>
974
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
975
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
976
+ <use x='172.401' xlink:href='#g1-52' y='201.694'/>
977
+ <use x='175.048' xlink:href='#g1-56' y='201.694'/>
978
+ </g>
979
+ <g transform='matrix(0 -1 1 0 100.867 243.598)'>
980
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
981
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
982
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
983
+ <use x='173.912' xlink:href='#g1-54' y='201.694'/>
984
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
985
+ <use x='178.029' xlink:href='#g1-48' y='201.694'/>
986
+ <use x='180.675' xlink:href='#g1-54' y='201.694'/>
987
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
988
+ </g>
989
+ <g transform='matrix(0 -1 1 0 159.536 243.598)'>
990
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
991
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
992
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
993
+ <use x='173.912' xlink:href='#g1-51' y='201.694'/>
994
+ <use x='176.558' xlink:href='#g1-46' y='201.694'/>
995
+ <use x='178.029' xlink:href='#g1-49' y='201.694'/>
996
+ <use x='180.675' xlink:href='#g1-52' y='201.694'/>
997
+ <use x='183.321' xlink:href='#g1-120' y='201.694'/>
998
+ </g>
999
+ <g transform='matrix(0 -1 1 0 276.874 243.598)'>
1000
+ <use x='163.396' xlink:href='#g3-1' y='201.694'/>
1001
+ <use x='166.901' xlink:href='#g3-1' y='201.694'/>
1002
+ <use x='170.407' xlink:href='#g3-1' y='201.694'/>
1003
+ <use x='173.912' xlink:href='#g1-49' y='201.694'/>
1004
+ <use x='176.558' xlink:href='#g1-49' y='201.694'/>
1005
+ <use x='179.205' xlink:href='#g1-46' y='201.694'/>
1006
+ <use x='180.675' xlink:href='#g1-56' y='201.694'/>
1007
+ <use x='183.321' xlink:href='#g1-56' y='201.694'/>
1008
+ <use x='185.968' xlink:href='#g1-120' y='201.694'/>
1009
+ </g>
1010
+ <g transform='matrix(0 -1 1 0 -11.24 343.72)'>
1011
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
1012
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
1013
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
1014
+ <use x='175.048' xlink:href='#g1-49' y='201.694'/>
1015
+ </g>
1016
+ <g transform='matrix(0 -1 1 0 47.429 343.72)'>
1017
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
1018
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
1019
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
1020
+ <use x='175.048' xlink:href='#g1-49' y='201.694'/>
1021
+ </g>
1022
+ <g transform='matrix(0 -1 1 0 106.098 326.34)'>
1023
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
1024
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
1025
+ <use x='172.401' xlink:href='#g1-50' y='201.694'/>
1026
+ <use x='175.048' xlink:href='#g1-55' y='201.694'/>
1027
+ </g>
1028
+ <g transform='matrix(0 -1 1 0 164.767 313.187)'>
1029
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
1030
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
1031
+ <use x='172.401' xlink:href='#g1-52' y='201.694'/>
1032
+ <use x='175.048' xlink:href='#g1-54' y='201.694'/>
1033
+ </g>
1034
+ <g transform='matrix(0 -1 1 0 223.436 341.908)'>
1035
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
1036
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
1037
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
1038
+ <use x='175.048' xlink:href='#g1-51' y='201.694'/>
1039
+ </g>
1040
+ <g transform='matrix(0 -1 1 0 282.105 343.452)'>
1041
+ <use x='168.285' xlink:href='#g1-49' y='201.694'/>
1042
+ <use x='170.931' xlink:href='#g1-46' y='201.694'/>
1043
+ <use x='172.401' xlink:href='#g1-48' y='201.694'/>
1044
+ <use x='175.048' xlink:href='#g1-49' y='201.694'/>
1045
+ </g>
1046
+ <g transform='matrix(0 -1 1 0 -88.536 388.944)'>
1047
+ <use x='168.285' xlink:href='#g0-82' y='201.694'/>
1048
+ <use x='174.255' xlink:href='#g0-101' y='201.694'/>
1049
+ <use x='178.351' xlink:href='#g0-108' y='201.694'/>
1050
+ <use x='180.551' xlink:href='#g0-97' y='201.694'/>
1051
+ <use x='184.979' xlink:href='#g0-116' y='201.694'/>
1052
+ <use x='188.307' xlink:href='#g0-105' y='201.694'/>
1053
+ <use x='190.507' xlink:href='#g0-118' y='201.694'/>
1054
+ <use x='194.755' xlink:href='#g0-101' y='201.694'/>
1055
+ <use x='201.922' xlink:href='#g0-116' y='201.694'/>
1056
+ <use x='205.25' xlink:href='#g0-105' y='201.694'/>
1057
+ <use x='207.45' xlink:href='#g0-109' y='201.694'/>
1058
+ <use x='214.77' xlink:href='#g0-101' y='201.694'/>
1059
+ <use x='221.937' xlink:href='#g2-40' y='201.694'/>
1060
+ <use x='225.231' xlink:href='#g2-108' y='201.694'/>
1061
+ <use x='227.251' xlink:href='#g2-111' y='201.694'/>
1062
+ <use x='231.25' xlink:href='#g2-119' y='201.694'/>
1063
+ <use x='236.799' xlink:href='#g2-101' y='201.694'/>
1064
+ <use x='240.562' xlink:href='#g2-114' y='201.694'/>
1065
+ <use x='246.277' xlink:href='#g2-105' y='201.694'/>
1066
+ <use x='248.297' xlink:href='#g2-115' y='201.694'/>
1067
+ <use x='254.366' xlink:href='#g2-98' y='201.694'/>
1068
+ <use x='258.974' xlink:href='#g2-101' y='201.694'/>
1069
+ <use x='262.738' xlink:href='#g2-116' y='201.694'/>
1070
+ <use x='265.796' xlink:href='#g2-116' y='201.694'/>
1071
+ <use x='268.854' xlink:href='#g2-101' y='201.694'/>
1072
+ <use x='272.618' xlink:href='#g2-114' y='201.694'/>
1073
+ <use x='275.51' xlink:href='#g2-41' y='201.694'/>
1074
+ </g>
1075
+ <path d='M136.149 296.672H402.137V279.679H136.149Z' fill='#ffffff'/>
1076
+ <path d='M136.149 296.672H402.137V279.679H136.149Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1077
+ <path d='M139.336 290.168H142.324V282.199H139.336ZM145.313 290.168H148.301V284.191H145.313Z' fill='#e0e0f0'/>
1078
+ <path d='M139.336 290.168H142.324V282.199H139.336ZM145.313 290.168H148.301V284.191H145.313Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1079
+ <g transform='matrix(1 0 0 1 -33.522 88.465)'>
1080
+ <use x='185.011' xlink:href='#g2-109' y='201.694'/>
1081
+ <use x='191.736' xlink:href='#g2-105' y='201.694'/>
1082
+ </g>
1083
+ <path d='M163.422 290.168H166.41V282.199H163.422ZM169.398 290.168H172.391V284.191H169.398Z' fill='#c2c2e1'/>
1084
+ <path d='M163.422 290.168H166.41V282.199H163.422ZM169.398 290.168H172.391V284.191H169.398Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1085
+ <g transform='matrix(1 0 0 1 -32.56 88.011)'>
1086
+ <use x='208.137' xlink:href='#g2-116' y='201.694'/>
1087
+ <use x='211.195' xlink:href='#g2-99' y='201.694'/>
1088
+ </g>
1089
+ <path d='M185.586 290.168H188.574V282.199H185.586ZM191.563 290.168H194.555V284.191H191.563Z' fill='#a3a3d1'/>
1090
+ <path d='M185.586 290.168H188.574V282.199H185.586ZM191.563 290.168H194.555V284.191H191.563Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1091
+ <g transform='matrix(1 0 0 1 -32.159 88.465)'>
1092
+ <use x='229.9' xlink:href='#g2-106' y='201.694'/>
1093
+ <use x='232.155' xlink:href='#g2-101' y='201.694'/>
1094
+ </g>
1095
+ <path d='M206.949 290.168H209.938V282.199H206.949ZM212.926 290.168H215.914V284.191H212.926Z' fill='#8585c2'/>
1096
+ <path d='M206.949 290.168H209.938V282.199H206.949ZM212.926 290.168H215.914V284.191H212.926Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1097
+ <g transform='matrix(1 0 0 1 -32.958 87.505)'>
1098
+ <use x='252.061' xlink:href='#g2-115' y='201.694'/>
1099
+ <use x='255.307' xlink:href='#g2-110' y='201.694'/>
1100
+ </g>
1101
+ <path d='M229.91 290.168H232.898V282.199H229.91ZM235.887 290.168H238.875V284.191H235.887Z' fill='#6666b3'/>
1102
+ <path d='M229.91 290.168H232.898V282.199H229.91ZM235.887 290.168H238.875V284.191H235.887Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1103
+ <g transform='matrix(1 0 0 1 -32.781 87.505)'>
1104
+ <use x='274.845' xlink:href='#g2-114' y='201.694'/>
1105
+ <use x='277.737' xlink:href='#g2-112' y='201.694'/>
1106
+ </g>
1107
+ <path d='M252.516 290.168H255.504V282.199H252.516ZM258.496 290.168H261.484V284.191H258.496Z' fill='#4747a4'/>
1108
+ <path d='M252.516 290.168H255.504V282.199H252.516ZM258.496 290.168H261.484V284.191H258.496Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1109
+ <g transform='matrix(1 0 0 1 -39.001 88.501)'>
1110
+ <use x='303.672' xlink:href='#g2-104' y='201.694'/>
1111
+ <use x='308.045' xlink:href='#g2-111' y='201.694'/>
1112
+ <use x='312.279' xlink:href='#g2-97' y='201.694'/>
1113
+ <use x='316.112' xlink:href='#g2-114' y='201.694'/>
1114
+ <use x='319.004' xlink:href='#g2-100' y='201.694'/>
1115
+ </g>
1116
+ <path d='M287.563 290.168H290.551V282.199H287.563ZM293.543 290.168H296.531V284.191H293.543Z' fill='#292994'/>
1117
+ <path d='M287.563 290.168H290.551V282.199H287.563ZM293.543 290.168H296.531V284.191H293.543Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1118
+ <g transform='matrix(1 0 0 1 -37.472 88.501)'>
1119
+ <use x='337.19' xlink:href='#g2-103' y='201.694'/>
1120
+ <use x='341.424' xlink:href='#g2-108' y='201.694'/>
1121
+ <use x='343.444' xlink:href='#g2-105' y='201.694'/>
1122
+ <use x='345.464' xlink:href='#g2-98' y='201.694'/>
1123
+ <use x='350.072' xlink:href='#g2-99' y='201.694'/>
1124
+ </g>
1125
+ <path d='M319.551 290.168H322.539V282.199H319.551ZM325.527 290.168H328.52V284.191H325.527Z' fill='#0a0a85'/>
1126
+ <path d='M319.551 290.168H322.539V282.199H319.551ZM325.527 290.168H328.52V284.191H325.527Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1127
+ <g transform='matrix(1 0 0 1 -35.051 88.501)'>
1128
+ <use x='366.757' xlink:href='#g2-116' y='201.694'/>
1129
+ <use x='369.815' xlink:href='#g2-98' y='201.694'/>
1130
+ <use x='374.187' xlink:href='#g2-98' y='201.694'/>
1131
+ </g>
1132
+ <path d='M346.699 290.168H349.688V282.199H346.699ZM352.676 290.168H355.664V284.191H352.676Z' fill='#000076'/>
1133
+ <path d='M346.699 290.168H349.688V282.199H346.699ZM352.676 290.168H355.664V284.191H352.676Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1134
+ <g transform='matrix(1 0 0 1 -34.135 87.505)'>
1135
+ <use x='392.986' xlink:href='#g2-115' y='201.694'/>
1136
+ <use x='396.233' xlink:href='#g2-109' y='201.694'/>
1137
+ </g>
1138
+ <path d='M372.012 290.168H375V282.199H372.012ZM377.988 290.168H380.977V284.191H377.988Z' fill='#000067'/>
1139
+ <path d='M372.012 290.168H375V282.199H372.012ZM377.988 290.168H380.977V284.191H377.988Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1140
+ <g transform='matrix(1 0 0 1 -35.145 88.465)'>
1141
+ <use x='419.31' xlink:href='#g2-115' y='201.694'/>
1142
+ <use x='422.556' xlink:href='#g2-109' y='201.694'/>
1143
+ <use x='429.281' xlink:href='#g2-105' y='201.694'/>
1144
+ </g>
1145
+ </g>
1146
+ </svg>