@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,952 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <!-- This file was generated by dvisvgm 2.9.1 -->
3
+ <svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='381.629pt' height='170.383pt' viewBox='52.934 54.994 381.629 170.383'>
4
+ <rect width="1000%" height="1000%" fill="white"/>
5
+ <defs>
6
+ <clipPath id='clip1'>
7
+ <path d='M82.148 209.23H434.164V83.984H82.148Z'/>
8
+ </clipPath>
9
+ <use id='g3-40' xlink:href='#g0-40' transform='scale(1.143)'/>
10
+ <use id='g3-41' xlink:href='#g0-41' transform='scale(1.143)'/>
11
+ <use id='g3-78' xlink:href='#g0-78' transform='scale(1.143)'/>
12
+ <use id='g3-97' xlink:href='#g0-97' transform='scale(1.143)'/>
13
+ <use id='g3-98' xlink:href='#g0-98' transform='scale(1.143)'/>
14
+ <use id='g3-99' xlink:href='#g0-99' transform='scale(1.143)'/>
15
+ <use id='g3-100' xlink:href='#g0-100' transform='scale(1.143)'/>
16
+ <use id='g3-101' xlink:href='#g0-101' transform='scale(1.143)'/>
17
+ <use id='g3-102' xlink:href='#g0-102' transform='scale(1.143)'/>
18
+ <use id='g3-105' xlink:href='#g0-105' transform='scale(1.143)'/>
19
+ <use id='g3-108' xlink:href='#g0-108' transform='scale(1.143)'/>
20
+ <use id='g3-109' xlink:href='#g0-109' transform='scale(1.143)'/>
21
+ <use id='g3-110' xlink:href='#g0-110' transform='scale(1.143)'/>
22
+ <use id='g3-111' xlink:href='#g0-111' transform='scale(1.143)'/>
23
+ <use id='g3-112' xlink:href='#g0-112' transform='scale(1.143)'/>
24
+ <use id='g3-114' xlink:href='#g0-114' transform='scale(1.143)'/>
25
+ <use id='g3-115' xlink:href='#g0-115' transform='scale(1.143)'/>
26
+ <use id='g3-116' xlink:href='#g0-116' transform='scale(1.143)'/>
27
+ <use id='g3-119' xlink:href='#g0-119' transform='scale(1.143)'/>
28
+ <use id='g2-46' xlink:href='#g0-46' transform='scale(.714)'/>
29
+ <use id='g2-48' xlink:href='#g0-48' transform='scale(.714)'/>
30
+ <use id='g2-49' xlink:href='#g0-49' transform='scale(.714)'/>
31
+ <use id='g2-50' xlink:href='#g0-50' transform='scale(.714)'/>
32
+ <use id='g2-51' xlink:href='#g0-51' transform='scale(.714)'/>
33
+ <use id='g2-52' xlink:href='#g0-52' transform='scale(.714)'/>
34
+ <use id='g2-53' xlink:href='#g0-53' transform='scale(.714)'/>
35
+ <use id='g2-54' xlink:href='#g0-54' transform='scale(.714)'/>
36
+ <use id='g2-55' xlink:href='#g0-55' transform='scale(.714)'/>
37
+ <use id='g2-56' xlink:href='#g0-56' transform='scale(.714)'/>
38
+ <use id='g2-57' xlink:href='#g0-57' transform='scale(.714)'/>
39
+ <use id='g2-120' xlink:href='#g0-120' transform='scale(.714)'/>
40
+ <path id='g4-1' d='M1.445-1.245C1.445-1.41 1.305-1.549 1.141-1.549S.837-1.41 .837-1.245S.976-.941 1.141-.941S1.445-1.081 1.445-1.245Z'/>
41
+ <path id='g1-82' d='M3.891-2.914C4.806-3.165 5.452-3.811 5.452-4.546C5.452-5.469 4.411-6.223 3.129-6.223H.87V0H1.704V-2.824H3.138L4.842 0H5.703L3.891-2.914ZM1.704-3.407V-5.694H3.022C4.062-5.694 4.671-5.192 4.671-4.546C4.671-3.963 4.125-3.407 3.022-3.407H1.704Z'/>
42
+ <path id='g1-97' d='M3.694-2.591C3.694-3.479 3.04-4.133 2.152-4.133C1.569-4.133 1.139-3.981 .708-3.739L.762-3.102C1.21-3.434 1.65-3.569 2.143-3.569C2.645-3.569 2.95-3.165 2.95-2.582V-2.206C1.408-2.17 .395-1.766 .395-1.04C.395-.619 .672 .099 1.453 .099C1.632 .099 2.412 .081 2.977-.341V0H3.694V-2.591ZM2.95-1.255C2.95-1.067 2.95-.843 2.627-.655C2.403-.52 2.107-.484 1.928-.484C1.47-.484 1.085-.699 1.085-1.058C1.085-1.695 2.833-1.722 2.95-1.722V-1.255Z'/>
43
+ <path id='g1-101' d='M3.829-1.964C3.829-2.242 3.82-2.923 3.47-3.461C3.093-4.026 2.52-4.133 2.179-4.133C1.139-4.133 .314-3.174 .314-2.026C.314-.843 1.193 .099 2.313 .099C2.744 .099 3.264-.009 3.784-.341L3.73-.959C3.165-.556 2.636-.484 2.322-.484C1.578-.484 1.004-1.139 .977-1.964H3.829ZM1.031-2.493C1.175-3.067 1.614-3.551 2.179-3.551C2.511-3.551 3.12-3.398 3.291-2.493H1.031Z'/>
44
+ <path id='g1-105' d='M1.524-6.133H.664V-5.272H1.524V-6.133ZM1.453-3.981H.735V0H1.453V-3.981Z'/>
45
+ <path id='g1-108' d='M1.453-6.223H.735V0H1.453V-6.223Z'/>
46
+ <path id='g1-109' d='M6.581-2.663C6.581-3.327 6.402-4.08 5.317-4.08C4.564-4.08 4.142-3.622 3.927-3.344C3.865-3.524 3.676-4.08 2.762-4.08C2.053-4.08 1.623-3.667 1.417-3.398V-4.035H.726V0H1.47V-2.188C1.47-2.78 1.704-3.497 2.385-3.497C3.282-3.497 3.282-2.86 3.282-2.6V0H4.026V-2.188C4.026-2.78 4.259-3.497 4.94-3.497C5.837-3.497 5.837-2.86 5.837-2.6V0H6.581V-2.663Z'/>
47
+ <path id='g1-116' d='M1.623-3.425H2.914V-3.981H1.623V-5.12H.959V-3.981H.17V-3.425H.933V-1.13C.933-.601 1.049 .099 1.704 .099C2.098 .099 2.564 .018 3.067-.233L2.914-.798C2.681-.619 2.367-.511 2.089-.511C1.739-.511 1.623-.825 1.623-1.291V-3.425Z'/>
48
+ <path id='g1-118' d='M4.116-3.981H3.407L2.699-2.161C2.52-1.695 2.188-.825 2.143-.493H2.125C2.107-.646 2.08-.816 1.587-2.107C1.318-2.833 .879-3.927 .861-3.981H.126L1.704 0H2.537L4.116-3.981Z'/>
49
+ <path id='g0-40' d='M2.127-5.23C2.008-5.23 1.995-5.23 1.911-5.154C1.032-4.387 .586-3.145 .586-1.743C.586-.425 .983 .844 1.904 1.653C1.995 1.743 2.008 1.743 2.127 1.743H2.462C2.441 1.73 1.764 1.151 1.444 .063C1.276-.481 1.193-1.053 1.193-1.743C1.193-4.156 2.322-5.112 2.462-5.23H2.127Z'/>
50
+ <path id='g0-41' d='M.746 1.743C.865 1.743 .879 1.743 .962 1.667C1.841 .9 2.287-.342 2.287-1.743C2.287-3.062 1.89-4.331 .969-5.14C.879-5.23 .865-5.23 .746-5.23H.411C.432-5.216 1.109-4.638 1.43-3.55C1.597-3.006 1.681-2.434 1.681-1.743C1.681 .669 .551 1.625 .411 1.743H.746Z'/>
51
+ <path id='g0-46' d='M1.339-.628H.711V0H1.339V-.628Z'/>
52
+ <path id='g0-48' d='M3.403-2.267C3.403-2.601 3.403-3.417 3.075-3.989C2.72-4.617 2.183-4.721 1.848-4.721C1.534-4.721 .99-4.624 .642-4.024C.307-3.466 .293-2.706 .293-2.267C.293-1.75 .321-1.116 .614-.586C.921-.021 1.437 .146 1.848 .146C2.545 .146 2.929-.258 3.138-.697C3.382-1.193 3.403-1.834 3.403-2.267ZM1.848-.314C1.555-.314 1.22-.481 1.046-.983C.907-1.409 .9-1.848 .9-2.357C.9-2.999 .9-4.261 1.848-4.261S2.797-2.999 2.797-2.357C2.797-1.897 2.797-1.374 2.629-.928C2.434-.425 2.078-.314 1.848-.314Z'/>
53
+ <path id='g0-49' d='M2.239-4.721H2.085C1.632-4.303 1.06-4.275 .642-4.261V-3.822C.914-3.829 1.262-3.843 1.611-3.982V-.439H.683V0H3.166V-.439H2.239V-4.721Z'/>
54
+ <path id='g0-50' d='M1.974-.537C1.89-.537 1.806-.53 1.723-.53H.928L2.008-1.485C2.134-1.597 2.476-1.855 2.608-1.967C2.915-2.246 3.327-2.608 3.327-3.215C3.327-4.003 2.741-4.721 1.743-4.721C1.004-4.721 .544-4.324 .307-3.612L.635-3.201C.795-3.787 1.039-4.24 1.646-4.24C2.232-4.24 2.678-3.829 2.678-3.201C2.678-2.622 2.336-2.294 1.918-1.897C1.778-1.757 1.402-1.444 1.255-1.304C1.053-1.123 .572-.656 .37-.481V0H3.327V-.537H1.974Z'/>
55
+ <path id='g0-51' d='M.697-3.578C.983-4.135 1.485-4.289 1.82-4.289C2.232-4.289 2.538-4.052 2.538-3.654C2.538-3.285 2.287-2.831 1.757-2.741C1.723-2.734 1.695-2.734 1.234-2.699V-2.239H1.778C2.441-2.239 2.685-1.716 2.685-1.276C2.685-.732 2.35-.314 1.806-.314C1.311-.314 .746-.551 .398-.997L.307-.544C.711-.091 1.276 .146 1.82 .146C2.734 .146 3.389-.537 3.389-1.269C3.389-1.841 2.929-2.301 2.378-2.462C2.908-2.734 3.18-3.201 3.18-3.654C3.18-4.247 2.573-4.721 1.827-4.721C1.213-4.721 .704-4.4 .411-3.982L.697-3.578Z'/>
56
+ <path id='g0-52' d='M2.762-1.165H3.487V-1.625H2.762V-4.575H2.071L.209-1.625V-1.165H2.162V0H2.762V-1.165ZM.802-1.625C1.011-1.953 2.211-3.815 2.211-4.233V-1.625H.802Z'/>
57
+ <path id='g0-53' d='M1.144-4.094H3.075V-4.575H.586V-1.967H1.095C1.262-2.343 1.59-2.511 1.904-2.511C2.19-2.511 2.622-2.315 2.622-1.43C2.622-.516 2.043-.314 1.688-.314C1.227-.314 .781-.558 .544-.955L.279-.537C.621-.112 1.137 .146 1.688 .146C2.608 .146 3.327-.565 3.327-1.416C3.327-2.28 2.685-2.971 1.918-2.971C1.618-2.971 1.353-2.866 1.144-2.692V-4.094Z'/>
58
+ <path id='g0-54' d='M3.062-4.582C2.685-4.721 2.42-4.721 2.287-4.721C1.227-4.721 .307-3.724 .307-2.253C.307-.363 1.158 .146 1.862 .146C2.427 .146 2.72-.119 2.936-.342C3.382-.816 3.389-1.311 3.389-1.555C3.389-2.469 2.894-3.229 2.218-3.229C1.534-3.229 1.165-2.873 .962-2.671C1.053-3.626 1.541-4.289 2.294-4.289C2.434-4.289 2.713-4.275 3.062-4.142V-4.582ZM.969-1.534C.969-1.576 .969-1.681 .976-1.716C.976-2.19 1.276-2.769 1.897-2.769C2.748-2.769 2.748-1.792 2.748-1.555C2.748-1.29 2.748-.997 2.559-.704C2.392-.453 2.183-.314 1.862-.314C1.123-.314 1.004-1.227 .969-1.534Z'/>
59
+ <path id='g0-55' d='M1.723-4.038C1.806-4.038 1.89-4.045 1.974-4.045H2.852C1.792-3.006 1.116-1.548 1.116 .07H1.771C1.771-1.967 2.762-3.431 3.389-4.087V-4.575H.307V-4.038H1.723Z'/>
60
+ <path id='g0-56' d='M2.385-2.469C2.845-2.615 3.285-2.985 3.285-3.501C3.285-4.135 2.678-4.721 1.848-4.721S.411-4.135 .411-3.501C.411-2.978 .865-2.608 1.311-2.469C.697-2.28 .307-1.806 .307-1.269C.307-.523 .969 .146 1.848 .146S3.389-.523 3.389-1.269C3.389-1.806 2.992-2.28 2.385-2.469ZM1.848-2.699C1.353-2.699 .948-2.985 .948-3.494C.948-3.94 1.262-4.289 1.848-4.289C2.427-4.289 2.748-3.94 2.748-3.494C2.748-2.999 2.357-2.699 1.848-2.699ZM1.848-.314C1.367-.314 .941-.621 .941-1.276C.941-1.904 1.346-2.239 1.848-2.239S2.755-1.897 2.755-1.276C2.755-.621 2.322-.314 1.848-.314Z'/>
61
+ <path id='g0-57' d='M.537-.174C.879 .077 1.193 .146 1.52 .146C2.497 .146 3.389-.837 3.389-2.336C3.389-4.24 2.545-4.721 1.876-4.721C1.255-4.721 .969-4.428 .767-4.226C.321-3.773 .307-3.292 .307-3.02C.307-2.12 .795-1.346 1.478-1.346C2.267-1.346 2.699-1.869 2.734-1.911C2.636-.802 2.092-.314 1.52-.314C1.158-.314 .934-.446 .774-.579L.537-.174ZM2.713-3.027C2.72-2.985 2.72-2.915 2.72-2.873C2.72-2.357 2.406-1.806 1.799-1.806C1.534-1.806 1.325-1.883 1.144-2.169C.962-2.441 .948-2.706 .948-3.02C.948-3.292 .948-3.605 1.165-3.912C1.311-4.122 1.52-4.289 1.869-4.289C2.545-4.289 2.692-3.473 2.713-3.027Z'/>
62
+ <path id='g0-78' d='M1.646-4.84H.697V0H1.283V-4.289H1.29L3.578 0H4.526V-4.84H3.94V-.551H3.933L1.646-4.84Z'/>
63
+ <path id='g0-97' d='M2.971-2.008C2.971-2.72 2.427-3.201 1.736-3.201C1.297-3.201 .962-3.11 .572-2.901L.614-2.392C.844-2.545 1.186-2.755 1.736-2.755C2.043-2.755 2.364-2.525 2.364-2.001V-1.723C1.332-1.688 .314-1.471 .314-.823C.314-.474 .551 .07 1.165 .07C1.465 .07 2.015 .007 2.385-.265V0H2.971V-2.008ZM2.364-.99C2.364-.851 2.364-.669 2.12-.523C1.897-.398 1.625-.391 1.548-.391C1.165-.391 .872-.565 .872-.83C.872-1.276 2.05-1.318 2.364-1.332V-.99Z'/>
64
+ <path id='g0-98' d='M1.179-4.84H.593V0H1.2V-.328C1.353-.195 1.688 .07 2.197 .07C2.957 .07 3.571-.642 3.571-1.555C3.571-2.399 3.089-3.166 2.392-3.166C1.953-3.166 1.527-3.027 1.179-2.769V-4.84ZM1.2-2.197C1.2-2.308 1.2-2.392 1.444-2.552C1.548-2.615 1.736-2.706 1.974-2.706C2.441-2.706 2.964-2.392 2.964-1.555C2.964-.704 2.385-.391 1.897-.391C1.639-.391 1.395-.509 1.2-.823V-2.197Z'/>
65
+ <path id='g0-99' d='M3.034-.76C2.685-.537 2.308-.411 1.876-.411C1.234-.411 .858-.928 .858-1.555C.858-2.092 1.137-2.72 1.897-2.72C2.371-2.72 2.594-2.622 2.95-2.399L3.041-2.901C2.622-3.11 2.441-3.201 1.897-3.201C.851-3.201 .251-2.357 .251-1.548C.251-.697 .921 .07 1.869 .07C2.357 .07 2.776-.077 3.075-.251L3.034-.76Z'/>
66
+ <path id='g0-100' d='M3.229-4.84H2.643V-2.797C2.197-3.124 1.743-3.166 1.541-3.166C.809-3.166 .251-2.434 .251-1.548S.802 .07 1.52 .07C1.953 .07 2.357-.126 2.622-.363V0H3.229V-4.84ZM2.622-.865C2.448-.579 2.183-.391 1.848-.391C1.36-.391 .858-.732 .858-1.541C.858-2.413 1.451-2.706 1.925-2.706C2.204-2.706 2.441-2.587 2.622-2.35V-.865Z'/>
67
+ <path id='g0-101' d='M2.999-.76C2.608-.481 2.169-.391 1.869-.391C1.262-.391 .802-.886 .781-1.527H3.068C3.068-1.848 3.034-2.315 2.762-2.713C2.511-3.068 2.092-3.201 1.75-3.201C.9-3.201 .244-2.455 .244-1.569C.244-.676 .941 .07 1.862 .07C2.267 .07 2.685-.049 3.041-.265L2.999-.76ZM.83-1.946C.99-2.504 1.402-2.741 1.75-2.741C2.057-2.741 2.511-2.594 2.643-1.946H.83Z'/>
68
+ <path id='g0-102' d='M1.325-2.657H2.12V-3.096H1.304V-3.898C1.304-4.38 1.743-4.449 1.974-4.449C2.12-4.449 2.308-4.428 2.566-4.331V-4.84C2.385-4.882 2.169-4.91 1.981-4.91C1.262-4.91 .739-4.394 .739-3.703V-3.096H.202V-2.657H.739V0H1.325V-2.657Z'/>
69
+ <path id='g0-105' d='M1.227-4.784H.523V-4.08H1.227V-4.784ZM1.172-3.096H.586V0H1.172V-3.096Z'/>
70
+ <path id='g0-108' d='M1.172-4.84H.586V0H1.172V-4.84Z'/>
71
+ <path id='g0-109' d='M5.3-2.064C5.3-2.608 5.14-3.166 4.282-3.166C3.696-3.166 3.333-2.824 3.166-2.601C3.096-2.79 2.922-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-1.695C3.243-2.155 3.438-2.706 3.975-2.706C4.693-2.706 4.693-2.218 4.693-2.015V0H5.3V-2.064Z'/>
72
+ <path id='g0-110' d='M3.243-2.064C3.243-2.608 3.082-3.166 2.225-3.166C1.827-3.166 1.444-3.006 1.137-2.636V-3.145H.579V0H1.186V-1.695C1.186-2.155 1.381-2.706 1.918-2.706C2.636-2.706 2.636-2.218 2.636-2.015V0H3.243V-2.064Z'/>
73
+ <path id='g0-111' d='M3.487-1.527C3.487-2.448 2.755-3.201 1.848-3.201S.209-2.441 .209-1.527C.209-.642 .948 .07 1.848 .07C2.755 .07 3.487-.642 3.487-1.527ZM1.848-.411C1.297-.411 .816-.816 .816-1.604S1.332-2.741 1.848-2.741C2.371-2.741 2.88-2.378 2.88-1.604C2.88-.809 2.385-.411 1.848-.411Z'/>
74
+ <path id='g0-112' d='M1.2-.328C1.569 .007 1.967 .07 2.204 .07C2.943 .07 3.571-.635 3.571-1.555C3.571-2.392 3.11-3.166 2.42-3.166C2.106-3.166 1.583-3.075 1.179-2.762V-3.096H.593V1.353H1.2V-.328ZM1.2-2.315C1.36-2.511 1.632-2.685 1.967-2.685C2.525-2.685 2.964-2.169 2.964-1.555C2.964-.865 2.441-.391 1.897-.391C1.792-.391 1.618-.404 1.437-.551C1.227-.711 1.2-.816 1.2-.948V-2.315Z'/>
75
+ <path id='g0-114' d='M1.179-1.485C1.179-2.239 1.806-2.643 2.42-2.65V-3.166C1.834-3.159 1.409-2.873 1.13-2.504V-3.145H.593V0H1.179V-1.485Z'/>
76
+ <path id='g0-115' d='M2.545-2.985C2.071-3.18 1.723-3.201 1.471-3.201C1.297-3.201 .244-3.201 .244-2.273C.244-1.946 .425-1.764 .516-1.681C.76-1.437 1.053-1.381 1.423-1.311C1.75-1.248 2.127-1.179 2.127-.844C2.127-.404 1.548-.404 1.451-.404C1.004-.404 .586-.565 .307-.76L.209-.237C.446-.119 .872 .07 1.451 .07C1.764 .07 2.071 .021 2.329-.167C2.587-.363 2.671-.669 2.671-.907C2.671-1.032 2.657-1.304 2.364-1.569C2.106-1.799 1.855-1.848 1.52-1.911C1.109-1.988 .788-2.05 .788-2.357C.788-2.755 1.297-2.755 1.402-2.755C1.799-2.755 2.106-2.671 2.455-2.49L2.545-2.985Z'/>
77
+ <path id='g0-116' d='M1.311-2.657H2.343V-3.096H1.311V-3.982H.774V-3.096H.139V-2.657H.753V-.893C.753-.425 .872 .07 1.374 .07S2.26-.091 2.469-.188L2.35-.635C2.12-.467 1.876-.411 1.681-.411C1.388-.411 1.311-.697 1.311-1.018V-2.657Z'/>
78
+ <path id='g0-119' d='M4.951-3.096H4.407C4.345-2.901 3.954-1.723 3.738-.997C3.682-.795 3.612-.572 3.592-.411H3.585C3.543-.697 3.299-1.451 3.285-1.499L2.769-3.096H2.239C2.036-2.497 1.513-.934 1.458-.425H1.451C1.395-.921 .879-2.462 .767-2.797C.711-2.964 .711-2.978 .676-3.096H.105L1.123 0H1.709C1.716-.028 1.904-.579 2.148-1.353C2.253-1.695 2.462-2.364 2.497-2.671L2.504-2.678C2.518-2.532 2.559-2.378 2.608-2.204S2.706-1.841 2.755-1.681L3.292 0H3.933L4.951-3.096Z'/>
79
+ <path id='g0-120' d='M1.932-1.597L3.285-3.096H2.671L1.681-1.953L.669-3.096H.042L1.437-1.597L0 0H.621L1.681-1.311L2.783 0H3.41L1.932-1.597Z'/>
80
+ </defs>
81
+ <g id='page1'>
82
+ <path d='M140.82 218.086V209.23M199.488 218.086V209.23M258.156 218.086V209.23M316.824 218.086V209.23M375.496 218.086V209.23M140.82 75.129V83.984M199.488 75.129V83.984M258.156 75.129V83.984M316.824 75.129V83.984M375.496 75.129V83.984' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
83
+ <path d='M111.484 213.484V209.23M170.152 213.484V209.23M228.824 213.484V209.23M287.492 213.484V209.23M346.16 213.484V209.23M404.828 213.484V209.23M111.484 79.734V83.984M170.152 79.734V83.984M228.824 79.734V83.984M287.492 79.734V83.984M346.16 79.734V83.984M404.828 79.734V83.984' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
84
+ <path d='M82.148 209.23H86.402M82.148 177.918H86.402M82.148 146.609H86.402M82.148 115.297H86.402M82.148 83.984H86.402M434.164 209.23H429.91M434.164 177.918H429.91M434.164 146.609H429.91M434.164 115.297H429.91M434.164 83.984H429.91' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
85
+ <path d='M82.148 209.23V83.984H434.164V209.23H82.148Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
86
+ <g transform='matrix(1 0 0 1 -11.54 34.954)'>
87
+ <use x='114.487' y='188.674' xlink:href='#g3-99'/>
88
+ <use x='118.25' y='188.674' xlink:href='#g3-102'/>
89
+ <use x='120.838' y='188.674' xlink:href='#g3-114'/>
90
+ <use x='123.73' y='188.674' xlink:href='#g3-97'/>
91
+ <use x='127.798' y='188.674' xlink:href='#g3-99'/>
92
+ </g>
93
+ <g transform='matrix(1 0 0 1 45.565 34.954)'>
94
+ <use x='114.487' y='188.674' xlink:href='#g3-108'/>
95
+ <use x='116.507' y='188.674' xlink:href='#g3-101'/>
96
+ <use x='120.271' y='188.674' xlink:href='#g3-97'/>
97
+ <use x='124.339' y='188.674' xlink:href='#g3-110'/>
98
+ <use x='128.711' y='188.674' xlink:href='#g3-78'/>
99
+ </g>
100
+ <g transform='matrix(1 0 0 1 106.188 34.954)'>
101
+ <use x='114.487' y='188.674' xlink:href='#g3-114'/>
102
+ <use x='117.379' y='188.674' xlink:href='#g3-101'/>
103
+ <use x='121.142' y='188.674' xlink:href='#g3-100'/>
104
+ <use x='125.515' y='188.674' xlink:href='#g3-105'/>
105
+ <use x='127.535' y='188.674' xlink:href='#g3-115'/>
106
+ </g>
107
+ <g transform='matrix(1 0 0 1 159.716 34.954)'>
108
+ <use x='114.487' y='188.674' xlink:href='#g3-108'/>
109
+ <use x='116.507' y='188.674' xlink:href='#g3-97'/>
110
+ <use x='120.34' y='188.674' xlink:href='#g3-114'/>
111
+ <use x='123.232' y='188.674' xlink:href='#g3-115'/>
112
+ <use x='126.478' y='188.674' xlink:href='#g3-111'/>
113
+ <use x='130.712' y='188.674' xlink:href='#g3-110'/>
114
+ <use x='135.085' y='188.674' xlink:href='#g3-78'/>
115
+ </g>
116
+ <g transform='matrix(1 0 0 1 215.596 34.954)'>
117
+ <use x='114.487' y='188.674' xlink:href='#g3-109'/>
118
+ <use x='121.211' y='188.674' xlink:href='#g3-115'/>
119
+ <use x='124.458' y='188.674' xlink:href='#g3-116'/>
120
+ <use x='127.516' y='188.674' xlink:href='#g3-114'/>
121
+ <use x='130.408' y='188.674' xlink:href='#g3-101'/>
122
+ <use x='134.171' y='188.674' xlink:href='#g3-115'/>
123
+ <use x='137.418' y='188.674' xlink:href='#g3-115'/>
124
+ <use x='140.664' y='188.674' xlink:href='#g3-78'/>
125
+ </g>
126
+ <g transform='matrix(1 0 0 1 277.158 34.954)'>
127
+ <use x='114.487' y='188.674' xlink:href='#g3-114'/>
128
+ <use x='117.379' y='188.674' xlink:href='#g3-112'/>
129
+ <use x='121.751' y='188.674' xlink:href='#g3-116'/>
130
+ <use x='124.809' y='188.674' xlink:href='#g3-101'/>
131
+ <use x='128.573' y='188.674' xlink:href='#g3-115'/>
132
+ <use x='131.819' y='188.674' xlink:href='#g3-116'/>
133
+ <use x='134.877' y='188.674' xlink:href='#g3-78'/>
134
+ </g>
135
+ <g transform='matrix(1 0 0 1 -40.942 22.192)'>
136
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
137
+ <use x='117.133' y='188.674' xlink:href='#g2-120'/>
138
+ </g>
139
+ <g transform='matrix(1 0 0 1 -45.059 -9.12)'>
140
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
141
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
142
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
143
+ <use x='121.25' y='188.674' xlink:href='#g2-120'/>
144
+ </g>
145
+ <g transform='matrix(1 0 0 1 -45.059 -40.431)'>
146
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
147
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
148
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
149
+ <use x='121.25' y='188.674' xlink:href='#g2-120'/>
150
+ </g>
151
+ <g transform='matrix(1 0 0 1 -45.059 -71.743)'>
152
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
153
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
154
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
155
+ <use x='121.25' y='188.674' xlink:href='#g2-120'/>
156
+ </g>
157
+ <g transform='matrix(1 0 0 1 -45.059 -103.054)'>
158
+ <use x='114.487' y='188.674' xlink:href='#g2-50'/>
159
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
160
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
161
+ <use x='121.25' y='188.674' xlink:href='#g2-120'/>
162
+ </g>
163
+ <path d='M82.148 146.609H434.164' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
164
+ <path d='M86.328 209.23H89.566V146.609H86.328ZM144.996 209.23H148.234V146.609H144.996ZM203.668 209.23H206.902V146.609H203.668ZM262.336 209.23H265.574V146.609H262.336ZM321.004 209.23H324.242V146.609H321.004ZM379.672 209.23H382.91V146.609H379.672Z' fill='#933' clip-path='url(#clip1)'/>
165
+ <path d='M86.328 209.23H89.566V146.609H86.328ZM144.996 209.23H148.234V146.609H144.996ZM203.668 209.23H206.902V146.609H203.668ZM262.336 209.23H265.574V146.609H262.336ZM321.004 209.23H324.242V146.609H321.004ZM379.672 209.23H382.91V146.609H379.672Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
166
+ <path d='M87.949 146.609V146.484' fill='#933' clip-path='url(#clip1)'/>
167
+ <path d='M87.949 146.609V146.484' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
168
+ <path d='M85.953 146.484H89.938' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
169
+ <path d='M87.949 146.609V146.734' fill='#933' clip-path='url(#clip1)'/>
170
+ <path d='M87.949 146.609V146.734' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
171
+ <path d='M89.941 146.734H85.957' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
172
+ <path d='M146.617 146.609V146.359' fill='#933' clip-path='url(#clip1)'/>
173
+ <path d='M146.617 146.609V146.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
174
+ <path d='M144.625 146.36H148.609' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
175
+ <path d='M146.617 146.609V146.859' fill='#933' clip-path='url(#clip1)'/>
176
+ <path d='M146.617 146.609V146.859' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
177
+ <path d='M148.61 146.86H144.625' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
178
+ <path d='M205.285 146.609V146.297' fill='#933' clip-path='url(#clip1)'/>
179
+ <path d='M205.285 146.609V146.297' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
180
+ <path d='M203.293 146.297H207.277' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
181
+ <path d='M205.285 146.609V146.922' fill='#933' clip-path='url(#clip1)'/>
182
+ <path d='M205.285 146.609V146.922' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
183
+ <path d='M207.278 146.922H203.293' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
184
+ <path d='M263.953 146.609V146.422' fill='#933' clip-path='url(#clip1)'/>
185
+ <path d='M263.953 146.609V146.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
186
+ <path d='M261.961 146.422H265.945' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
187
+ <path d='M263.953 146.609V146.797' fill='#933' clip-path='url(#clip1)'/>
188
+ <path d='M263.953 146.609V146.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
189
+ <path d='M265.949 146.797H261.961' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
190
+ <path d='M322.625 146.609V146.168' fill='#933' clip-path='url(#clip1)'/>
191
+ <path d='M322.625 146.609V146.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
192
+ <path d='M320.629 146.168H324.617' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
193
+ <path d='M322.625 146.609V147.047' fill='#933' clip-path='url(#clip1)'/>
194
+ <path d='M322.625 146.609V147.047' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
195
+ <path d='M324.617 147.046H320.633' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
196
+ <path d='M381.293 146.609V145.168' fill='#933' clip-path='url(#clip1)'/>
197
+ <path d='M381.293 146.609V145.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
198
+ <path d='M379.301 145.168H383.285' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
199
+ <path d='M381.293 146.609V148.047' fill='#933' clip-path='url(#clip1)'/>
200
+ <path d='M381.293 146.609V148.047' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
201
+ <path d='M383.285 148.046H379.301' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
202
+ <path d='M91.559 209.23H94.797V147.172H91.559ZM150.227 209.23H153.465V145.48H150.227ZM208.899 209.23H212.133V146.797H208.899ZM267.567 209.23H270.805V149.051H267.567ZM326.234 209.23H329.473V146.359H326.234ZM384.902 209.23H388.141V132.707H384.902Z' fill='#bf8080' clip-path='url(#clip1)'/>
203
+ <path d='M91.559 209.23H94.797V147.172H91.559ZM150.227 209.23H153.465V145.48H150.227ZM208.899 209.23H212.133V146.797H208.899ZM267.567 209.23H270.805V149.051H267.567ZM326.234 209.23H329.473V146.359H326.234ZM384.902 209.23H388.141V132.707H384.902Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
204
+ <path d='M93.18 147.172V146.922' fill='#bf8080' clip-path='url(#clip1)'/>
205
+ <path d='M93.18 147.172V146.922' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
206
+ <path d='M91.184 146.922H95.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
207
+ <path d='M93.18 147.172V147.422' fill='#bf8080' clip-path='url(#clip1)'/>
208
+ <path d='M93.18 147.172V147.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
209
+ <path d='M95.172 147.422H91.187' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
210
+ <path d='M151.848 145.48V145.23' fill='#bf8080' clip-path='url(#clip1)'/>
211
+ <path d='M151.848 145.48V145.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
212
+ <path d='M149.855 145.23H153.84' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
213
+ <path d='M151.848 145.48V145.73' fill='#bf8080' clip-path='url(#clip1)'/>
214
+ <path d='M151.848 145.48V145.73' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
215
+ <path d='M153.84 145.73H149.855' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
216
+ <path d='M210.516 146.797V146.484' fill='#bf8080' clip-path='url(#clip1)'/>
217
+ <path d='M210.516 146.797V146.484' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
218
+ <path d='M208.523 146.484H212.507' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
219
+ <path d='M210.516 146.797V147.109' fill='#bf8080' clip-path='url(#clip1)'/>
220
+ <path d='M210.516 146.797V147.109' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
221
+ <path d='M212.508 147.109H208.523' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
222
+ <path d='M269.184 149.051V148.426' fill='#bf8080' clip-path='url(#clip1)'/>
223
+ <path d='M269.184 149.051V148.426' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
224
+ <path d='M267.191 148.426H271.175' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
225
+ <path d='M269.184 149.051V149.676' fill='#bf8080' clip-path='url(#clip1)'/>
226
+ <path d='M269.184 149.051V149.676' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
227
+ <path d='M271.179 149.676H267.191' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
228
+ <path d='M327.856 146.359V144.164' fill='#bf8080' clip-path='url(#clip1)'/>
229
+ <path d='M327.856 146.359V144.164' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
230
+ <path d='M325.859 144.164H329.847' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
231
+ <path d='M327.856 146.359V148.551' fill='#bf8080' clip-path='url(#clip1)'/>
232
+ <path d='M327.856 146.359V148.551' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
233
+ <path d='M329.847 148.55H325.863' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
234
+ <path d='M386.524 132.707V129.137' fill='#bf8080' clip-path='url(#clip1)'/>
235
+ <path d='M386.524 132.707V129.137' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
236
+ <path d='M384.531 129.136H388.515' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
237
+ <path d='M386.524 132.707V136.273' fill='#bf8080' clip-path='url(#clip1)'/>
238
+ <path d='M386.524 132.707V136.273' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
239
+ <path d='M388.515 136.273H384.531' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
240
+ <path d='M96.789 209.23H100.027V146.359H96.789ZM155.457 209.23H158.695V138.781H155.457ZM214.129 209.23H217.363V142.476H214.129ZM272.797 209.23H276.035V135.086H272.797ZM331.465 209.23H334.703V146.922H331.465ZM390.133 209.23H393.371V83.984H390.133Z' fill='#8080bf' clip-path='url(#clip1)'/>
241
+ <path d='M96.789 209.23H100.027V146.359H96.789ZM155.457 209.23H158.695V138.781H155.457ZM214.129 209.23H217.363V142.476H214.129ZM272.797 209.23H276.035V135.086H272.797ZM331.465 209.23H334.703V146.922H331.465ZM390.133 209.23H393.371V83.984H390.133Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
242
+ <path d='M98.41 146.359V146.043' fill='#8080bf' clip-path='url(#clip1)'/>
243
+ <path d='M98.41 146.359V146.043' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
244
+ <path d='M96.414 146.043H100.399' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
245
+ <path d='M98.41 146.359V146.672' fill='#8080bf' clip-path='url(#clip1)'/>
246
+ <path d='M98.41 146.359V146.672' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
247
+ <path d='M100.402 146.672H96.418' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
248
+ <path d='M157.078 138.781V138.469' fill='#8080bf' clip-path='url(#clip1)'/>
249
+ <path d='M157.078 138.781V138.469' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
250
+ <path d='M155.086 138.469H159.071' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
251
+ <path d='M157.078 138.781V139.094' fill='#8080bf' clip-path='url(#clip1)'/>
252
+ <path d='M157.078 138.781V139.094' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
253
+ <path d='M159.071 139.093H155.086' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
254
+ <path d='M215.746 142.476V142.289' fill='#8080bf' clip-path='url(#clip1)'/>
255
+ <path d='M215.746 142.476V142.289' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
256
+ <path d='M213.754 142.289H217.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
257
+ <path d='M215.746 142.476V142.664' fill='#8080bf' clip-path='url(#clip1)'/>
258
+ <path d='M215.746 142.476V142.664' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
259
+ <path d='M217.739 142.664H213.754' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
260
+ <path d='M274.414 135.086V132.957' fill='#8080bf' clip-path='url(#clip1)'/>
261
+ <path d='M274.414 135.086V132.957' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
262
+ <path d='M272.422 132.957H276.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
263
+ <path d='M274.414 135.086V137.215' fill='#8080bf' clip-path='url(#clip1)'/>
264
+ <path d='M274.414 135.086V137.215' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
265
+ <path d='M276.41 137.215H272.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
266
+ <path d='M333.086 146.922V145.73' fill='#8080bf' clip-path='url(#clip1)'/>
267
+ <path d='M333.086 146.922V145.73' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
268
+ <path d='M331.09 145.73H335.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
269
+ <path d='M333.086 146.922V148.109' fill='#8080bf' clip-path='url(#clip1)'/>
270
+ <path d='M333.086 146.922V148.109' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
271
+ <path d='M335.078 148.109H331.094' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
272
+ <path d='M391.754 83.984' fill='#8080bf' clip-path='url(#clip1)'/>
273
+ <path d='M389.762 83.984H393.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
274
+ <path d='M391.754 83.984' fill='#8080bf' clip-path='url(#clip1)'/>
275
+ <path d='M389.762 83.984H393.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
276
+ <path d='M102.02 209.23H105.258V142.223H102.02ZM160.688 209.23H163.926V143.851H160.688ZM219.359 209.23H222.594V137.277H219.359ZM278.027 209.23H281.266V131.328H278.027ZM336.695 209.23H339.934V120.934H336.695ZM395.363 209.23H398.602V83.984H395.363Z' fill='#ffb733' clip-path='url(#clip1)'/>
277
+ <path d='M102.02 209.23H105.258V142.223H102.02ZM160.688 209.23H163.926V143.851H160.688ZM219.359 209.23H222.594V137.277H219.359ZM278.027 209.23H281.266V131.328H278.027ZM336.695 209.23H339.934V120.934H336.695ZM395.363 209.23H398.602V83.984H395.363Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
278
+ <path d='M103.641 142.223V142.098' fill='#ffb733' clip-path='url(#clip1)'/>
279
+ <path d='M103.641 142.223V142.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
280
+ <path d='M101.644 142.097H105.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
281
+ <path d='M103.641 142.223V142.351' fill='#ffb733' clip-path='url(#clip1)'/>
282
+ <path d='M103.641 142.223V142.351' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
283
+ <path d='M105.633 142.352H101.648' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
284
+ <path d='M162.309 143.851V143.101' fill='#ffb733' clip-path='url(#clip1)'/>
285
+ <path d='M162.309 143.851V143.101' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
286
+ <path d='M160.316 143.101H164.301' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
287
+ <path d='M162.309 143.851V144.605' fill='#ffb733' clip-path='url(#clip1)'/>
288
+ <path d='M162.309 143.851V144.605' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
289
+ <path d='M164.301 144.605H160.316' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
290
+ <path d='M220.977 137.277V136.902' fill='#ffb733' clip-path='url(#clip1)'/>
291
+ <path d='M220.977 137.277V136.902' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
292
+ <path d='M218.984 136.903H222.969' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
293
+ <path d='M220.977 137.277V137.652' fill='#ffb733' clip-path='url(#clip1)'/>
294
+ <path d='M220.977 137.277V137.652' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
295
+ <path d='M222.969 137.652H218.984' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
296
+ <path d='M279.645 131.328V130.516' fill='#ffb733' clip-path='url(#clip1)'/>
297
+ <path d='M279.645 131.328V130.516' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
298
+ <path d='M277.652 130.516H281.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
299
+ <path d='M279.645 131.328V132.141' fill='#ffb733' clip-path='url(#clip1)'/>
300
+ <path d='M279.645 131.328V132.141' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
301
+ <path d='M281.64 132.14H277.652' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
302
+ <path d='M338.317 120.934V120.305' fill='#ffb733' clip-path='url(#clip1)'/>
303
+ <path d='M338.317 120.934V120.305' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
304
+ <path d='M336.32 120.304H340.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
305
+ <path d='M338.317 120.934V121.559' fill='#ffb733' clip-path='url(#clip1)'/>
306
+ <path d='M338.317 120.934V121.559' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
307
+ <path d='M340.308 121.559H336.324' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
308
+ <path d='M396.984 83.984' fill='#ffb733' clip-path='url(#clip1)'/>
309
+ <path d='M394.992 83.984H398.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
310
+ <path d='M396.984 83.984' fill='#ffb733' clip-path='url(#clip1)'/>
311
+ <path d='M394.992 83.984H398.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
312
+ <path d='M107.25 209.23H110.488V120.367H107.25ZM165.918 209.23H169.156V137.777H165.918ZM224.59 209.23H227.824V111.789H224.59ZM283.258 209.23H286.496V92.187H283.258ZM341.926 209.23H345.164V134.019H341.926ZM400.594 209.23H403.832V118.051H400.594Z' fill='#bf80bf' clip-path='url(#clip1)'/>
313
+ <path d='M107.25 209.23H110.488V120.367H107.25ZM165.918 209.23H169.156V137.777H165.918ZM224.59 209.23H227.824V111.789H224.59ZM283.258 209.23H286.496V92.187H283.258ZM341.926 209.23H345.164V134.019H341.926ZM400.594 209.23H403.832V118.051H400.594Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
314
+ <path d='M108.871 120.367V119.992' fill='#bf80bf' clip-path='url(#clip1)'/>
315
+ <path d='M108.871 120.367V119.992' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
316
+ <path d='M106.875 119.992H110.86' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
317
+ <path d='M108.871 120.367V120.746' fill='#bf80bf' clip-path='url(#clip1)'/>
318
+ <path d='M108.871 120.367V120.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
319
+ <path d='M110.864 120.746H106.879' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
320
+ <path d='M167.539 137.777V137.527' fill='#bf80bf' clip-path='url(#clip1)'/>
321
+ <path d='M167.539 137.777V137.527' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
322
+ <path d='M165.547 137.528H169.532' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
323
+ <path d='M167.539 137.777V138.027' fill='#bf80bf' clip-path='url(#clip1)'/>
324
+ <path d='M167.539 137.777V138.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
325
+ <path d='M169.532 138.028H165.547' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
326
+ <path d='M226.207 111.789V111.726' fill='#bf80bf' clip-path='url(#clip1)'/>
327
+ <path d='M226.207 111.789V111.726' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
328
+ <path d='M224.215 111.726H228.2' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
329
+ <path d='M226.207 111.789V111.851' fill='#bf80bf' clip-path='url(#clip1)'/>
330
+ <path d='M226.207 111.789V111.851' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
331
+ <path d='M228.2 111.851H224.215' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
332
+ <path d='M284.875 92.187V90.308' fill='#bf80bf' clip-path='url(#clip1)'/>
333
+ <path d='M284.875 92.187V90.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
334
+ <path d='M282.883 90.309H286.868' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
335
+ <path d='M284.875 92.187V94.066' fill='#bf80bf' clip-path='url(#clip1)'/>
336
+ <path d='M284.875 92.187V94.066' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
337
+ <path d='M286.868 94.066H282.883' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
338
+ <path d='M343.547 134.019V132.894' fill='#bf80bf' clip-path='url(#clip1)'/>
339
+ <path d='M343.547 134.019V132.894' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
340
+ <path d='M341.551 132.895H345.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
341
+ <path d='M343.547 134.019V135.148' fill='#bf80bf' clip-path='url(#clip1)'/>
342
+ <path d='M343.547 134.019V135.148' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
343
+ <path d='M345.539 135.148H341.555' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
344
+ <path d='M402.215 118.051V112.289' fill='#bf80bf' clip-path='url(#clip1)'/>
345
+ <path d='M402.215 118.051V112.289' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
346
+ <path d='M400.223 112.289H404.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
347
+ <path d='M402.215 118.051V123.812' fill='#bf80bf' clip-path='url(#clip1)'/>
348
+ <path d='M402.215 118.051V123.812' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
349
+ <path d='M404.207 123.812H400.223' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
350
+ <path d='M112.481 209.23H115.719V145.918H112.481ZM171.149 209.23H174.387V145.105H171.149ZM229.82 209.23H233.055V147.672H229.82ZM288.488 209.23H291.727V149.176H288.488ZM347.156 209.23H350.395V104.211H347.156ZM405.824 209.23H409.063V115.422H405.824Z' fill='#c96' clip-path='url(#clip1)'/>
351
+ <path d='M112.481 209.23H115.719V145.918H112.481ZM171.149 209.23H174.387V145.105H171.149ZM229.82 209.23H233.055V147.672H229.82ZM288.488 209.23H291.727V149.176H288.488ZM347.156 209.23H350.395V104.211H347.156ZM405.824 209.23H409.063V115.422H405.824Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
352
+ <path d='M114.098 145.918V145.793' fill='#c96' clip-path='url(#clip1)'/>
353
+ <path d='M114.098 145.918V145.793' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
354
+ <path d='M112.105 145.793H116.09' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
355
+ <path d='M114.098 145.918V146.043' fill='#c96' clip-path='url(#clip1)'/>
356
+ <path d='M114.098 145.918V146.043' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
357
+ <path d='M116.094 146.043H112.109' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
358
+ <path d='M172.77 145.105V144.793' fill='#c96' clip-path='url(#clip1)'/>
359
+ <path d='M172.77 145.105V144.793' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
360
+ <path d='M170.777 144.793H174.762' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
361
+ <path d='M172.77 145.105V145.418' fill='#c96' clip-path='url(#clip1)'/>
362
+ <path d='M172.77 145.105V145.418' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
363
+ <path d='M174.762 145.418H170.777' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
364
+ <path d='M231.438 147.672V147.422' fill='#c96' clip-path='url(#clip1)'/>
365
+ <path d='M231.438 147.672V147.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
366
+ <path d='M229.445 147.422H233.43' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
367
+ <path d='M231.438 147.672V147.922' fill='#c96' clip-path='url(#clip1)'/>
368
+ <path d='M231.438 147.672V147.922' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
369
+ <path d='M233.43 147.922H229.445' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
370
+ <path d='M290.106 149.176V148.738' fill='#c96' clip-path='url(#clip1)'/>
371
+ <path d='M290.106 149.176V148.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
372
+ <path d='M288.113 148.738H292.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
373
+ <path d='M290.106 149.176V149.613' fill='#c96' clip-path='url(#clip1)'/>
374
+ <path d='M290.106 149.176V149.613' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
375
+ <path d='M292.098 149.613H288.113' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
376
+ <path d='M348.777 104.211V100.582' fill='#c96' clip-path='url(#clip1)'/>
377
+ <path d='M348.777 104.211V100.582' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
378
+ <path d='M346.781 100.582H350.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
379
+ <path d='M348.777 104.211V107.844' fill='#c96' clip-path='url(#clip1)'/>
380
+ <path d='M348.777 104.211V107.844' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
381
+ <path d='M350.77 107.843H346.785' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
382
+ <path d='M407.445 115.422V109.848' fill='#c96' clip-path='url(#clip1)'/>
383
+ <path d='M407.445 115.422V109.848' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
384
+ <path d='M405.453 109.847H409.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
385
+ <path d='M407.445 115.422V120.996' fill='#c96' clip-path='url(#clip1)'/>
386
+ <path d='M407.445 115.422V120.996' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
387
+ <path d='M409.437 120.996H405.453' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
388
+ <path d='M117.711 209.23H120.949V143.226H117.711ZM176.379 209.23H179.617V132.266H176.379ZM235.051 209.23H238.285V132.644H235.051ZM293.719 209.23H296.957V110.539H293.719ZM352.387 209.23H355.625V83.984H352.387ZM411.055 209.23H414.293V83.984H411.055Z' fill='#80bf80' clip-path='url(#clip1)'/>
389
+ <path d='M117.711 209.23H120.949V143.226H117.711ZM176.379 209.23H179.617V132.266H176.379ZM235.051 209.23H238.285V132.644H235.051ZM293.719 209.23H296.957V110.539H293.719ZM352.387 209.23H355.625V83.984H352.387ZM411.055 209.23H414.293V83.984H411.055Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
390
+ <path d='M119.328 143.226V142.914' fill='#80bf80' clip-path='url(#clip1)'/>
391
+ <path d='M119.328 143.226V142.914' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
392
+ <path d='M117.336 142.914H121.321' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
393
+ <path d='M119.328 143.226V143.539' fill='#80bf80' clip-path='url(#clip1)'/>
394
+ <path d='M119.328 143.226V143.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
395
+ <path d='M121.325 143.539H117.34' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
396
+ <path d='M178 132.266V131.641' fill='#80bf80' clip-path='url(#clip1)'/>
397
+ <path d='M178 132.266V131.641' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
398
+ <path d='M176.008 131.64H179.993' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
399
+ <path d='M178 132.266V132.894' fill='#80bf80' clip-path='url(#clip1)'/>
400
+ <path d='M178 132.266V132.894' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
401
+ <path d='M179.993 132.895H176.008' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
402
+ <path d='M236.668 132.644V132.078' fill='#80bf80' clip-path='url(#clip1)'/>
403
+ <path d='M236.668 132.644V132.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
404
+ <path d='M234.676 132.079H238.661' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
405
+ <path d='M236.668 132.644V133.207' fill='#80bf80' clip-path='url(#clip1)'/>
406
+ <path d='M236.668 132.644V133.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
407
+ <path d='M238.66 133.207H234.675' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
408
+ <path d='M295.336 110.539V109.785' fill='#80bf80' clip-path='url(#clip1)'/>
409
+ <path d='M295.336 110.539V109.785' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
410
+ <path d='M293.344 109.785H297.329' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
411
+ <path d='M295.336 110.539V111.289' fill='#80bf80' clip-path='url(#clip1)'/>
412
+ <path d='M295.336 110.539V111.289' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
413
+ <path d='M297.328 111.289H293.343' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
414
+ <path d='M354.008 83.984' fill='#80bf80' clip-path='url(#clip1)'/>
415
+ <path d='M352.012 83.984H356' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
416
+ <path d='M354.008 83.984' fill='#80bf80' clip-path='url(#clip1)'/>
417
+ <path d='M352.012 83.984H356' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
418
+ <path d='M412.676 83.984' fill='#80bf80' clip-path='url(#clip1)'/>
419
+ <path d='M410.684 83.984H414.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
420
+ <path d='M412.676 83.984' fill='#80bf80' clip-path='url(#clip1)'/>
421
+ <path d='M410.684 83.984H414.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
422
+ <path d='M122.941 209.23H126.18V136.59H122.941ZM181.609 209.23H184.848V120.242H181.609ZM240.281 209.23H243.516V140.785H240.281ZM298.949 209.23H302.188V83.984H298.949ZM357.617 209.23H360.856V87.117H357.617ZM416.285 209.23H419.524V83.984H416.285Z' fill='#bfbf80' clip-path='url(#clip1)'/>
423
+ <path d='M122.941 209.23H126.18V136.59H122.941ZM181.609 209.23H184.848V120.242H181.609ZM240.281 209.23H243.516V140.785H240.281ZM298.949 209.23H302.188V83.984H298.949ZM357.617 209.23H360.856V87.117H357.617ZM416.285 209.23H419.524V83.984H416.285Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
424
+ <path d='M124.559 136.59V136.465' fill='#bfbf80' clip-path='url(#clip1)'/>
425
+ <path d='M124.559 136.59V136.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
426
+ <path d='M122.566 136.465H126.551' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
427
+ <path d='M124.559 136.59V136.715' fill='#bfbf80' clip-path='url(#clip1)'/>
428
+ <path d='M124.559 136.59V136.715' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
429
+ <path d='M126.555 136.715H122.57' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
430
+ <path d='M183.231 120.242V119.305' fill='#bfbf80' clip-path='url(#clip1)'/>
431
+ <path d='M183.231 120.242V119.305' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
432
+ <path d='M181.238 119.304H185.223' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
433
+ <path d='M183.231 120.242V121.184' fill='#bfbf80' clip-path='url(#clip1)'/>
434
+ <path d='M183.231 120.242V121.184' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
435
+ <path d='M185.223 121.183H181.238' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
436
+ <path d='M241.899 140.785V140.41' fill='#bfbf80' clip-path='url(#clip1)'/>
437
+ <path d='M241.899 140.785V140.41' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
438
+ <path d='M239.906 140.41H243.891' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
439
+ <path d='M241.899 140.785V141.16' fill='#bfbf80' clip-path='url(#clip1)'/>
440
+ <path d='M241.899 140.785V141.16' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
441
+ <path d='M243.891 141.16H239.906' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
442
+ <path d='M300.567 83.984' fill='#bfbf80' clip-path='url(#clip1)'/>
443
+ <path d='M298.574 83.984H302.559' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
444
+ <path d='M300.567 83.984' fill='#bfbf80' clip-path='url(#clip1)'/>
445
+ <path d='M298.574 83.984H302.559' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
446
+ <path d='M359.238 87.117V85.363' fill='#bfbf80' clip-path='url(#clip1)'/>
447
+ <path d='M359.238 87.117V85.363' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
448
+ <path d='M357.242 85.363H361.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
449
+ <path d='M359.238 87.117V88.871' fill='#bfbf80' clip-path='url(#clip1)'/>
450
+ <path d='M359.238 87.117V88.871' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
451
+ <path d='M361.231 88.871H357.246' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
452
+ <path d='M417.906 83.984' fill='#bfbf80' clip-path='url(#clip1)'/>
453
+ <path d='M415.914 83.984H419.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
454
+ <path d='M417.906 83.984' fill='#bfbf80' clip-path='url(#clip1)'/>
455
+ <path d='M415.914 83.984H419.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
456
+ <path d='M128.172 209.23H131.41V141.285H128.172ZM186.84 209.23H190.078V131.266H186.84ZM245.512 209.23H248.746V139.781H245.512ZM304.18 209.23H307.418V99.328H304.18ZM362.848 209.23H366.086V105.34H362.848ZM421.516 209.23H424.754V83.984H421.516Z' fill='#399' clip-path='url(#clip1)'/>
457
+ <path d='M128.172 209.23H131.41V141.285H128.172ZM186.84 209.23H190.078V131.266H186.84ZM245.512 209.23H248.746V139.781H245.512ZM304.18 209.23H307.418V99.328H304.18ZM362.848 209.23H366.086V105.34H362.848ZM421.516 209.23H424.754V83.984H421.516Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
458
+ <path d='M129.789 141.285V141.098' fill='#399' clip-path='url(#clip1)'/>
459
+ <path d='M129.789 141.285V141.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
460
+ <path d='M127.797 141.097H131.782' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
461
+ <path d='M129.789 141.285V141.473' fill='#399' clip-path='url(#clip1)'/>
462
+ <path d='M129.789 141.285V141.473' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
463
+ <path d='M131.785 141.473H127.8' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
464
+ <path d='M188.461 131.266V130.891' fill='#399' clip-path='url(#clip1)'/>
465
+ <path d='M188.461 131.266V130.891' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
466
+ <path d='M186.469 130.891H190.454' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
467
+ <path d='M188.461 131.266V131.641' fill='#399' clip-path='url(#clip1)'/>
468
+ <path d='M188.461 131.266V131.641' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
469
+ <path d='M190.453 131.64H186.468' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
470
+ <path d='M247.129 139.781V139.594' fill='#399' clip-path='url(#clip1)'/>
471
+ <path d='M247.129 139.781V139.594' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
472
+ <path d='M245.137 139.593H249.122' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
473
+ <path d='M247.129 139.781V139.969' fill='#399' clip-path='url(#clip1)'/>
474
+ <path d='M247.129 139.781V139.969' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
475
+ <path d='M249.121 139.969H245.136' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
476
+ <path d='M305.797 99.328V98.828' fill='#399' clip-path='url(#clip1)'/>
477
+ <path d='M305.797 99.328V98.828' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
478
+ <path d='M303.804 98.828H307.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
479
+ <path d='M305.797 99.328V99.828' fill='#399' clip-path='url(#clip1)'/>
480
+ <path d='M305.797 99.328V99.828' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
481
+ <path d='M307.789 99.828H303.804' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
482
+ <path d='M364.469 105.34V103.586' fill='#399' clip-path='url(#clip1)'/>
483
+ <path d='M364.469 105.34V103.586' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
484
+ <path d='M362.473 103.586H366.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
485
+ <path d='M364.469 105.34V107.094' fill='#399' clip-path='url(#clip1)'/>
486
+ <path d='M364.469 105.34V107.094' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
487
+ <path d='M366.461 107.094H362.476' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
488
+ <path d='M423.137 83.984' fill='#399' clip-path='url(#clip1)'/>
489
+ <path d='M421.144 83.984H425.128' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
490
+ <path d='M423.137 83.984' fill='#399' clip-path='url(#clip1)'/>
491
+ <path d='M421.144 83.984H425.128' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
492
+ <path d='M133.402 209.23H136.641V138.656H133.402ZM192.07 209.23H195.309V138.531H192.07ZM250.742 209.23H253.977V143.914H250.742ZM309.41 209.23H312.649V123H309.41ZM368.078 209.23H371.317V141.285H368.078ZM426.746 209.23H429.984V83.984H426.746Z' fill='#d9b3b3' clip-path='url(#clip1)'/>
493
+ <path d='M133.402 209.23H136.641V138.656H133.402ZM192.07 209.23H195.309V138.531H192.07ZM250.742 209.23H253.977V143.914H250.742ZM309.41 209.23H312.649V123H309.41ZM368.078 209.23H371.317V141.285H368.078ZM426.746 209.23H429.984V83.984H426.746Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
494
+ <path d='M135.02 138.656V138.531' fill='#d9b3b3' clip-path='url(#clip1)'/>
495
+ <path d='M135.02 138.656V138.531' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
496
+ <path d='M133.027 138.531H137.012' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
497
+ <path d='M135.02 138.656V138.781' fill='#d9b3b3' clip-path='url(#clip1)'/>
498
+ <path d='M135.02 138.656V138.781' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
499
+ <path d='M137.016 138.781H133.031' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
500
+ <path d='M193.692 138.531V138.215' fill='#d9b3b3' clip-path='url(#clip1)'/>
501
+ <path d='M193.692 138.531V138.215' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
502
+ <path d='M191.699 138.215H195.684' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
503
+ <path d='M193.692 138.531V138.844' fill='#d9b3b3' clip-path='url(#clip1)'/>
504
+ <path d='M193.692 138.531V138.844' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
505
+ <path d='M195.684 138.844H191.699' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
506
+ <path d='M252.359 143.914V143.539' fill='#d9b3b3' clip-path='url(#clip1)'/>
507
+ <path d='M252.359 143.914V143.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
508
+ <path d='M250.367 143.539H254.352' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
509
+ <path d='M252.359 143.914V144.293' fill='#d9b3b3' clip-path='url(#clip1)'/>
510
+ <path d='M252.359 143.914V144.293' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
511
+ <path d='M254.352 144.293H250.367' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
512
+ <path d='M311.027 123V122.75' fill='#d9b3b3' clip-path='url(#clip1)'/>
513
+ <path d='M311.027 123V122.75' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
514
+ <path d='M309.035 122.75H313.02' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
515
+ <path d='M311.027 123V123.25' fill='#d9b3b3' clip-path='url(#clip1)'/>
516
+ <path d='M311.027 123V123.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
517
+ <path d='M313.02 123.25H309.035' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
518
+ <path d='M369.699 141.285V140.41' fill='#d9b3b3' clip-path='url(#clip1)'/>
519
+ <path d='M369.699 141.285V140.41' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
520
+ <path d='M367.703 140.41H371.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
521
+ <path d='M369.699 141.285V142.16' fill='#d9b3b3' clip-path='url(#clip1)'/>
522
+ <path d='M369.699 141.285V142.16' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
523
+ <path d='M371.692 142.16H367.707' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
524
+ <path d='M428.367 83.984' fill='#d9b3b3' clip-path='url(#clip1)'/>
525
+ <path d='M426.375 83.984H430.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
526
+ <path d='M428.367 83.984' fill='#d9b3b3' clip-path='url(#clip1)'/>
527
+ <path d='M426.375 83.984H430.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip1)'/>
528
+ <g transform='matrix(0 -1 1 0 -99.092 255.07)'>
529
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
530
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
531
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
532
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
533
+ </g>
534
+ <g transform='matrix(0 -1 1 0 -40.423 255.07)'>
535
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
536
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
537
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
538
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
539
+ </g>
540
+ <g transform='matrix(0 -1 1 0 18.246 255.07)'>
541
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
542
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
543
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
544
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
545
+ </g>
546
+ <g transform='matrix(0 -1 1 0 76.915 255.07)'>
547
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
548
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
549
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
550
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
551
+ </g>
552
+ <g transform='matrix(0 -1 1 0 135.584 255.07)'>
553
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
554
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
555
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
556
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
557
+ </g>
558
+ <g transform='matrix(0 -1 1 0 194.253 255.07)'>
559
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
560
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
561
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
562
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
563
+ </g>
564
+ <g transform='matrix(0 -1 1 0 -93.862 255.634)'>
565
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
566
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
567
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
568
+ <use x='121.25' y='188.674' xlink:href='#g2-57'/>
569
+ </g>
570
+ <g transform='matrix(0 -1 1 0 -35.193 253.943)'>
571
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
572
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
573
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
574
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
575
+ </g>
576
+ <g transform='matrix(0 -1 1 0 23.476 255.258)'>
577
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
578
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
579
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
580
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
581
+ </g>
582
+ <g transform='matrix(0 -1 1 0 82.145 257.513)'>
583
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
584
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
585
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
586
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
587
+ </g>
588
+ <g transform='matrix(0 -1 1 0 140.814 254.82)'>
589
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
590
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
591
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
592
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
593
+ </g>
594
+ <g transform='matrix(0 -1 1 0 199.483 241.168)'>
595
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
596
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
597
+ <use x='118.603' y='188.674' xlink:href='#g2-50'/>
598
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
599
+ </g>
600
+ <g transform='matrix(0 -1 1 0 -88.631 254.82)'>
601
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
602
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
603
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
604
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
605
+ </g>
606
+ <g transform='matrix(0 -1 1 0 -29.962 247.242)'>
607
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
608
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
609
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
610
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
611
+ </g>
612
+ <g transform='matrix(0 -1 1 0 28.707 250.937)'>
613
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
614
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
615
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
616
+ <use x='121.25' y='188.674' xlink:href='#g2-55'/>
617
+ </g>
618
+ <g transform='matrix(0 -1 1 0 87.376 243.548)'>
619
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
620
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
621
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
622
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
623
+ </g>
624
+ <g transform='matrix(0 -1 1 0 146.045 255.383)'>
625
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
626
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
627
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
628
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
629
+ </g>
630
+ <g transform='matrix(0 -1 1 0 204.714 192.447)'>
631
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
632
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
633
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
634
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
635
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
636
+ <use x='124.23' y='188.674' xlink:href='#g2-57'/>
637
+ <use x='126.877' y='188.674' xlink:href='#g2-49'/>
638
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
639
+ </g>
640
+ <g transform='matrix(0 -1 1 0 -83.401 250.687)'>
641
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
642
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
643
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
644
+ <use x='121.25' y='188.674' xlink:href='#g2-55'/>
645
+ </g>
646
+ <g transform='matrix(0 -1 1 0 -24.732 252.315)'>
647
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
648
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
649
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
650
+ <use x='121.25' y='188.674' xlink:href='#g2-52'/>
651
+ </g>
652
+ <g transform='matrix(0 -1 1 0 33.937 245.74)'>
653
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
654
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
655
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
656
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
657
+ </g>
658
+ <g transform='matrix(0 -1 1 0 92.606 239.79)'>
659
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
660
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
661
+ <use x='118.603' y='188.674' xlink:href='#g2-50'/>
662
+ <use x='121.25' y='188.674' xlink:href='#g2-52'/>
663
+ </g>
664
+ <g transform='matrix(0 -1 1 0 151.275 229.395)'>
665
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
666
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
667
+ <use x='118.603' y='188.674' xlink:href='#g2-52'/>
668
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
669
+ </g>
670
+ <g transform='matrix(0 -1 1 0 209.944 192.447)'>
671
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
672
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
673
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
674
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
675
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
676
+ <use x='124.23' y='188.674' xlink:href='#g2-54'/>
677
+ <use x='126.877' y='188.674' xlink:href='#g2-53'/>
678
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
679
+ </g>
680
+ <g transform='matrix(0 -1 1 0 -78.17 228.831)'>
681
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
682
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
683
+ <use x='118.603' y='188.674' xlink:href='#g2-52'/>
684
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
685
+ </g>
686
+ <g transform='matrix(0 -1 1 0 -19.501 246.241)'>
687
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
688
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
689
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
690
+ <use x='121.25' y='188.674' xlink:href='#g2-52'/>
691
+ </g>
692
+ <g transform='matrix(0 -1 1 0 39.168 220.252)'>
693
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
694
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
695
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
696
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
697
+ </g>
698
+ <g transform='matrix(0 -1 1 0 97.837 200.651)'>
699
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
700
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
701
+ <use x='118.603' y='188.674' xlink:href='#g2-56'/>
702
+ <use x='121.25' y='188.674' xlink:href='#g2-55'/>
703
+ </g>
704
+ <g transform='matrix(0 -1 1 0 156.506 242.483)'>
705
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
706
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
707
+ <use x='118.603' y='188.674' xlink:href='#g2-50'/>
708
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
709
+ </g>
710
+ <g transform='matrix(0 -1 1 0 215.175 226.514)'>
711
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
712
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
713
+ <use x='118.603' y='188.674' xlink:href='#g2-52'/>
714
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
715
+ </g>
716
+ <g transform='matrix(0 -1 1 0 -72.94 254.382)'>
717
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
718
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
719
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
720
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
721
+ </g>
722
+ <g transform='matrix(0 -1 1 0 -14.271 253.567)'>
723
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
724
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
725
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
726
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
727
+ </g>
728
+ <g transform='matrix(0 -1 1 0 44.398 256.135)'>
729
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
730
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
731
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
732
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
733
+ </g>
734
+ <g transform='matrix(0 -1 1 0 103.067 257.638)'>
735
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
736
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
737
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
738
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
739
+ </g>
740
+ <g transform='matrix(0 -1 1 0 161.736 212.675)'>
741
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
742
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
743
+ <use x='118.603' y='188.674' xlink:href='#g2-54'/>
744
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
745
+ </g>
746
+ <g transform='matrix(0 -1 1 0 220.405 223.884)'>
747
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
748
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
749
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
750
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
751
+ </g>
752
+ <g transform='matrix(0 -1 1 0 -67.709 251.689)'>
753
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
754
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
755
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
756
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
757
+ </g>
758
+ <g transform='matrix(0 -1 1 0 -9.04 240.73)'>
759
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
760
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
761
+ <use x='118.603' y='188.674' xlink:href='#g2-50'/>
762
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
763
+ </g>
764
+ <g transform='matrix(0 -1 1 0 49.629 241.105)'>
765
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
766
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
767
+ <use x='118.603' y='188.674' xlink:href='#g2-50'/>
768
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
769
+ </g>
770
+ <g transform='matrix(0 -1 1 0 108.298 219)'>
771
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
772
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
773
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
774
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
775
+ </g>
776
+ <g transform='matrix(0 -1 1 0 166.967 192.447)'>
777
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
778
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
779
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
780
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
781
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
782
+ <use x='124.23' y='188.674' xlink:href='#g2-49'/>
783
+ <use x='126.877' y='188.674' xlink:href='#g2-57'/>
784
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
785
+ </g>
786
+ <g transform='matrix(0 -1 1 0 225.636 192.447)'>
787
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
788
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
789
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
790
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
791
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
792
+ <use x='124.23' y='188.674' xlink:href='#g2-49'/>
793
+ <use x='126.877' y='188.674' xlink:href='#g2-55'/>
794
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
795
+ </g>
796
+ <g transform='matrix(0 -1 1 0 -62.479 245.051)'>
797
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
798
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
799
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
800
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
801
+ </g>
802
+ <g transform='matrix(0 -1 1 0 -3.81 228.706)'>
803
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
804
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
805
+ <use x='118.603' y='188.674' xlink:href='#g2-52'/>
806
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
807
+ </g>
808
+ <g transform='matrix(0 -1 1 0 54.859 249.246)'>
809
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
810
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
811
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
812
+ <use x='121.25' y='188.674' xlink:href='#g2-57'/>
813
+ </g>
814
+ <g transform='matrix(0 -1 1 0 113.528 192.447)'>
815
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
816
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
817
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
818
+ <use x='120.114' y='188.674' xlink:href='#g2-49'/>
819
+ <use x='122.76' y='188.674' xlink:href='#g2-53'/>
820
+ <use x='125.406' y='188.674' xlink:href='#g2-53'/>
821
+ <use x='128.053' y='188.674' xlink:href='#g2-46'/>
822
+ <use x='129.523' y='188.674' xlink:href='#g2-50'/>
823
+ <use x='132.169' y='188.674' xlink:href='#g2-51'/>
824
+ <use x='134.816' y='188.674' xlink:href='#g2-120'/>
825
+ </g>
826
+ <g transform='matrix(0 -1 1 0 172.197 195.579)'>
827
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
828
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
829
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
830
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
831
+ </g>
832
+ <g transform='matrix(0 -1 1 0 230.866 192.447)'>
833
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
834
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
835
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
836
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
837
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
838
+ <use x='124.23' y='188.674' xlink:href='#g2-55'/>
839
+ <use x='126.877' y='188.674' xlink:href='#g2-57'/>
840
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
841
+ </g>
842
+ <g transform='matrix(0 -1 1 0 -57.249 249.747)'>
843
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
844
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
845
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
846
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
847
+ </g>
848
+ <g transform='matrix(0 -1 1 0 1.42 239.728)'>
849
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
850
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
851
+ <use x='118.603' y='188.674' xlink:href='#g2-50'/>
852
+ <use x='121.25' y='188.674' xlink:href='#g2-52'/>
853
+ </g>
854
+ <g transform='matrix(0 -1 1 0 60.089 248.244)'>
855
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
856
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
857
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
858
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
859
+ </g>
860
+ <g transform='matrix(0 -1 1 0 118.758 207.79)'>
861
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
862
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
863
+ <use x='118.603' y='188.674' xlink:href='#g2-55'/>
864
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
865
+ </g>
866
+ <g transform='matrix(0 -1 1 0 177.427 213.802)'>
867
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
868
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
869
+ <use x='118.603' y='188.674' xlink:href='#g2-54'/>
870
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
871
+ </g>
872
+ <g transform='matrix(0 -1 1 0 236.096 192.447)'>
873
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
874
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
875
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
876
+ <use x='120.114' y='188.674' xlink:href='#g2-51'/>
877
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
878
+ <use x='124.23' y='188.674' xlink:href='#g2-48'/>
879
+ <use x='126.877' y='188.674' xlink:href='#g2-57'/>
880
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
881
+ </g>
882
+ <g transform='matrix(0 -1 1 0 -52.018 247.117)'>
883
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
884
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
885
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
886
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
887
+ </g>
888
+ <g transform='matrix(0 -1 1 0 6.651 246.992)'>
889
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
890
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
891
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
892
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
893
+ </g>
894
+ <g transform='matrix(0 -1 1 0 65.32 252.378)'>
895
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
896
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
897
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
898
+ <use x='121.25' y='188.674' xlink:href='#g2-52'/>
899
+ </g>
900
+ <g transform='matrix(0 -1 1 0 123.989 231.462)'>
901
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
902
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
903
+ <use x='118.603' y='188.674' xlink:href='#g2-51'/>
904
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
905
+ </g>
906
+ <g transform='matrix(0 -1 1 0 182.658 249.747)'>
907
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
908
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
909
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
910
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
911
+ </g>
912
+ <g transform='matrix(0 -1 1 0 241.327 192.447)'>
913
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
914
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
915
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
916
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
917
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
918
+ <use x='124.23' y='188.674' xlink:href='#g2-48'/>
919
+ <use x='126.877' y='188.674' xlink:href='#g2-51'/>
920
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
921
+ </g>
922
+ <g transform='matrix(0 -1 1 0 -129.314 316.355)'>
923
+ <use x='114.487' y='188.674' xlink:href='#g1-82'/>
924
+ <use x='120.457' y='188.674' xlink:href='#g1-101'/>
925
+ <use x='124.553' y='188.674' xlink:href='#g1-108'/>
926
+ <use x='126.753' y='188.674' xlink:href='#g1-97'/>
927
+ <use x='131.181' y='188.674' xlink:href='#g1-116'/>
928
+ <use x='134.509' y='188.674' xlink:href='#g1-105'/>
929
+ <use x='136.709' y='188.674' xlink:href='#g1-118'/>
930
+ <use x='140.957' y='188.674' xlink:href='#g1-101'/>
931
+ <use x='148.124' y='188.674' xlink:href='#g1-116'/>
932
+ <use x='151.452' y='188.674' xlink:href='#g1-105'/>
933
+ <use x='153.652' y='188.674' xlink:href='#g1-109'/>
934
+ <use x='160.972' y='188.674' xlink:href='#g1-101'/>
935
+ <use x='168.139' y='188.674' xlink:href='#g3-40'/>
936
+ <use x='171.432' y='188.674' xlink:href='#g3-108'/>
937
+ <use x='173.453' y='188.674' xlink:href='#g3-111'/>
938
+ <use x='177.452' y='188.674' xlink:href='#g3-119'/>
939
+ <use x='183' y='188.674' xlink:href='#g3-101'/>
940
+ <use x='186.764' y='188.674' xlink:href='#g3-114'/>
941
+ <use x='192.479' y='188.674' xlink:href='#g3-105'/>
942
+ <use x='194.499' y='188.674' xlink:href='#g3-115'/>
943
+ <use x='200.568' y='188.674' xlink:href='#g3-98'/>
944
+ <use x='205.176' y='188.674' xlink:href='#g3-101'/>
945
+ <use x='208.94' y='188.674' xlink:href='#g3-116'/>
946
+ <use x='211.998' y='188.674' xlink:href='#g3-116'/>
947
+ <use x='215.056' y='188.674' xlink:href='#g3-101'/>
948
+ <use x='218.819' y='188.674' xlink:href='#g3-114'/>
949
+ <use x='221.711' y='188.674' xlink:href='#g3-41'/>
950
+ </g>
951
+ </g>
952
+ </svg>