@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,955 @@
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='clip3'>
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='page3'>
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(#clip3)'/>
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(#clip3)'/>
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(#clip3)'/>
166
+ <path d='M87.949 146.609' fill='#933' clip-path='url(#clip3)'/>
167
+ <path d='M85.953 146.609H89.938' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
168
+ <path d='M87.949 146.609' fill='#933' clip-path='url(#clip3)'/>
169
+ <path d='M85.953 146.609H89.938' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
170
+ <path d='M146.617 146.609V146.105' fill='#933' clip-path='url(#clip3)'/>
171
+ <path d='M146.617 146.609V146.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
172
+ <path d='M144.625 146.105H148.609' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
173
+ <path d='M146.617 146.609V147.109' fill='#933' clip-path='url(#clip3)'/>
174
+ <path d='M146.617 146.609V147.109' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
175
+ <path d='M148.61 147.109H144.625' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
176
+ <path d='M205.285 146.609V146.359' fill='#933' clip-path='url(#clip3)'/>
177
+ <path d='M205.285 146.609V146.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
178
+ <path d='M203.293 146.36H207.277' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
179
+ <path d='M205.285 146.609V146.859' fill='#933' clip-path='url(#clip3)'/>
180
+ <path d='M205.285 146.609V146.859' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
181
+ <path d='M207.278 146.86H203.293' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
182
+ <path d='M263.953 146.609V145.105' fill='#933' clip-path='url(#clip3)'/>
183
+ <path d='M263.953 146.609V145.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
184
+ <path d='M261.961 145.105H265.945' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
185
+ <path d='M263.953 146.609V148.109' fill='#933' clip-path='url(#clip3)'/>
186
+ <path d='M263.953 146.609V148.109' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
187
+ <path d='M265.949 148.109H261.961' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
188
+ <path d='M322.625 146.609V144.73' fill='#933' clip-path='url(#clip3)'/>
189
+ <path d='M322.625 146.609V144.73' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
190
+ <path d='M320.629 144.73H324.617' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
191
+ <path d='M322.625 146.609V148.488' fill='#933' clip-path='url(#clip3)'/>
192
+ <path d='M322.625 146.609V148.488' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
193
+ <path d='M324.617 148.488H320.633' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
194
+ <path d='M381.293 146.609V140.785' fill='#933' clip-path='url(#clip3)'/>
195
+ <path d='M381.293 146.609V140.785' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
196
+ <path d='M379.301 140.785H383.285' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
197
+ <path d='M381.293 146.609V152.434' fill='#933' clip-path='url(#clip3)'/>
198
+ <path d='M381.293 146.609V152.434' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
199
+ <path d='M383.285 152.434H379.301' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
200
+ <path d='M91.559 209.23H94.797V146.23H91.559ZM150.227 209.23H153.465V146.547H150.227ZM208.899 209.23H212.133V145.293H208.899ZM267.567 209.23H270.805V152.117H267.567ZM326.234 209.23H329.473V140.973H326.234ZM384.902 209.23H388.141V154.562H384.902Z' fill='#bf8080' clip-path='url(#clip3)'/>
201
+ <path d='M91.559 209.23H94.797V146.23H91.559ZM150.227 209.23H153.465V146.547H150.227ZM208.899 209.23H212.133V145.293H208.899ZM267.567 209.23H270.805V152.117H267.567ZM326.234 209.23H329.473V140.973H326.234ZM384.902 209.23H388.141V154.562H384.902Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
202
+ <path d='M93.18 146.23V146.168' fill='#bf8080' clip-path='url(#clip3)'/>
203
+ <path d='M93.18 146.23V146.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
204
+ <path d='M91.184 146.168H95.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
205
+ <path d='M93.18 146.23V146.297' fill='#bf8080' clip-path='url(#clip3)'/>
206
+ <path d='M93.18 146.23V146.297' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
207
+ <path d='M95.172 146.297H91.187' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
208
+ <path d='M151.848 146.547V146.297' fill='#bf8080' clip-path='url(#clip3)'/>
209
+ <path d='M151.848 146.547V146.297' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
210
+ <path d='M149.855 146.297H153.84' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
211
+ <path d='M151.848 146.547V146.797' fill='#bf8080' clip-path='url(#clip3)'/>
212
+ <path d='M151.848 146.547V146.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
213
+ <path d='M153.84 146.797H149.855' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
214
+ <path d='M210.516 145.293V145.105' fill='#bf8080' clip-path='url(#clip3)'/>
215
+ <path d='M210.516 145.293V145.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
216
+ <path d='M208.523 145.105H212.507' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
217
+ <path d='M210.516 145.293V145.48' fill='#bf8080' clip-path='url(#clip3)'/>
218
+ <path d='M210.516 145.293V145.48' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
219
+ <path d='M212.508 145.481H208.523' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
220
+ <path d='M269.184 152.117V151.555' fill='#bf8080' clip-path='url(#clip3)'/>
221
+ <path d='M269.184 152.117V151.555' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
222
+ <path d='M267.191 151.554H271.175' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
223
+ <path d='M269.184 152.117V152.684' fill='#bf8080' clip-path='url(#clip3)'/>
224
+ <path d='M269.184 152.117V152.684' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
225
+ <path d='M271.179 152.684H267.191' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
226
+ <path d='M327.856 140.973V137.402' fill='#bf8080' clip-path='url(#clip3)'/>
227
+ <path d='M327.856 140.973V137.402' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
228
+ <path d='M325.859 137.403H329.847' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
229
+ <path d='M327.856 140.973V144.543' fill='#bf8080' clip-path='url(#clip3)'/>
230
+ <path d='M327.856 140.973V144.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
231
+ <path d='M329.847 144.543H325.863' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
232
+ <path d='M386.524 154.562V147.734' fill='#bf8080' clip-path='url(#clip3)'/>
233
+ <path d='M386.524 154.562V147.734' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
234
+ <path d='M384.531 147.734H388.515' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
235
+ <path d='M386.524 154.562V161.387' fill='#bf8080' clip-path='url(#clip3)'/>
236
+ <path d='M386.524 154.562V161.387' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
237
+ <path d='M388.515 161.387H384.531' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
238
+ <path d='M96.789 209.23H100.027V145.293H96.789ZM155.457 209.23H158.695V143.101H155.457ZM214.129 209.23H217.363V144.668H214.129ZM272.797 209.23H276.035V141.973H272.797ZM331.465 209.23H334.703V143.101H331.465ZM390.133 209.23H393.371V83.984H390.133Z' fill='#8080bf' clip-path='url(#clip3)'/>
239
+ <path d='M96.789 209.23H100.027V145.293H96.789ZM155.457 209.23H158.695V143.101H155.457ZM214.129 209.23H217.363V144.668H214.129ZM272.797 209.23H276.035V141.973H272.797ZM331.465 209.23H334.703V143.101H331.465ZM390.133 209.23H393.371V83.984H390.133Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
240
+ <path d='M98.41 145.293V145.23' fill='#8080bf' clip-path='url(#clip3)'/>
241
+ <path d='M98.41 145.293V145.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
242
+ <path d='M96.414 145.23H100.399' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
243
+ <path d='M98.41 145.293V145.355' fill='#8080bf' clip-path='url(#clip3)'/>
244
+ <path d='M98.41 145.293V145.355' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
245
+ <path d='M100.402 145.356H96.418' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
246
+ <path d='M157.078 143.101V142.601' fill='#8080bf' clip-path='url(#clip3)'/>
247
+ <path d='M157.078 143.101V142.601' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
248
+ <path d='M155.086 142.601H159.071' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
249
+ <path d='M157.078 143.101V143.601' fill='#8080bf' clip-path='url(#clip3)'/>
250
+ <path d='M157.078 143.101V143.601' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
251
+ <path d='M159.071 143.601H155.086' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
252
+ <path d='M215.746 144.668V144.543' fill='#8080bf' clip-path='url(#clip3)'/>
253
+ <path d='M215.746 144.668V144.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
254
+ <path d='M213.754 144.543H217.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
255
+ <path d='M215.746 144.668V144.793' fill='#8080bf' clip-path='url(#clip3)'/>
256
+ <path d='M215.746 144.668V144.793' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
257
+ <path d='M217.739 144.793H213.754' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
258
+ <path d='M274.414 141.973V141.535' fill='#8080bf' clip-path='url(#clip3)'/>
259
+ <path d='M274.414 141.973V141.535' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
260
+ <path d='M272.422 141.536H276.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
261
+ <path d='M274.414 141.973V142.414' fill='#8080bf' clip-path='url(#clip3)'/>
262
+ <path d='M274.414 141.973V142.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
263
+ <path d='M276.41 142.414H272.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
264
+ <path d='M333.086 143.101V141.66' fill='#8080bf' clip-path='url(#clip3)'/>
265
+ <path d='M333.086 143.101V141.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
266
+ <path d='M331.09 141.66H335.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
267
+ <path d='M333.086 143.101V144.543' fill='#8080bf' clip-path='url(#clip3)'/>
268
+ <path d='M333.086 143.101V144.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
269
+ <path d='M335.078 144.543H331.094' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
270
+ <path d='M391.754 83.984' fill='#8080bf' clip-path='url(#clip3)'/>
271
+ <path d='M389.762 83.984H393.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
272
+ <path d='M391.754 83.984' fill='#8080bf' clip-path='url(#clip3)'/>
273
+ <path d='M389.762 83.984H393.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
274
+ <path d='M102.02 209.23H105.258V143.289H102.02ZM160.688 209.23H163.926V146.484H160.688ZM219.359 209.23H222.594V134.711H219.359ZM278.027 209.23H281.266V139.531H278.027ZM336.695 209.23H339.934V83.984H336.695ZM395.363 209.23H398.602V128.008H395.363Z' fill='#ffb733' clip-path='url(#clip3)'/>
275
+ <path d='M102.02 209.23H105.258V143.289H102.02ZM160.688 209.23H163.926V146.484H160.688ZM219.359 209.23H222.594V134.711H219.359ZM278.027 209.23H281.266V139.531H278.027ZM336.695 209.23H339.934V83.984H336.695ZM395.363 209.23H398.602V128.008H395.363Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
276
+ <path d='M103.641 143.289' fill='#ffb733' clip-path='url(#clip3)'/>
277
+ <path d='M101.644 143.289H105.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
278
+ <path d='M103.641 143.289' fill='#ffb733' clip-path='url(#clip3)'/>
279
+ <path d='M101.644 143.289H105.629' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
280
+ <path d='M162.309 146.484V146.168' fill='#ffb733' clip-path='url(#clip3)'/>
281
+ <path d='M162.309 146.484V146.168' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
282
+ <path d='M160.316 146.168H164.301' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
283
+ <path d='M162.309 146.484V146.797' fill='#ffb733' clip-path='url(#clip3)'/>
284
+ <path d='M162.309 146.484V146.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
285
+ <path d='M164.301 146.797H160.316' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
286
+ <path d='M220.977 134.711V134.523' fill='#ffb733' clip-path='url(#clip3)'/>
287
+ <path d='M220.977 134.711V134.523' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
288
+ <path d='M218.984 134.524H222.969' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
289
+ <path d='M220.977 134.711V134.898' fill='#ffb733' clip-path='url(#clip3)'/>
290
+ <path d='M220.977 134.711V134.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
291
+ <path d='M222.969 134.899H218.984' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
292
+ <path d='M279.645 139.531V139.469' fill='#ffb733' clip-path='url(#clip3)'/>
293
+ <path d='M279.645 139.531V139.469' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
294
+ <path d='M277.652 139.469H281.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
295
+ <path d='M279.645 139.531V139.594' fill='#ffb733' clip-path='url(#clip3)'/>
296
+ <path d='M279.645 139.531V139.594' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
297
+ <path d='M281.64 139.593H277.652' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
298
+ <path d='M338.317 83.984' fill='#ffb733' clip-path='url(#clip3)'/>
299
+ <path d='M336.32 83.984H340.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
300
+ <path d='M338.317 83.984' fill='#ffb733' clip-path='url(#clip3)'/>
301
+ <path d='M336.32 83.984H340.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
302
+ <path d='M396.984 128.008V115.859' fill='#ffb733' clip-path='url(#clip3)'/>
303
+ <path d='M396.984 128.008V115.859' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
304
+ <path d='M394.992 115.859H398.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
305
+ <path d='M396.984 128.008V140.156' fill='#ffb733' clip-path='url(#clip3)'/>
306
+ <path d='M396.984 128.008V140.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
307
+ <path d='M398.976 140.156H394.992' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
308
+ <path d='M107.25 209.23H110.488V127.82H107.25ZM165.918 209.23H169.156V145.105H165.918ZM224.59 209.23H227.824V112.98H224.59ZM283.258 209.23H286.496V115.109H283.258ZM341.926 209.23H345.164V103.961H341.926ZM400.594 209.23H403.832V136.715H400.594Z' fill='#bf80bf' clip-path='url(#clip3)'/>
309
+ <path d='M107.25 209.23H110.488V127.82H107.25ZM165.918 209.23H169.156V145.105H165.918ZM224.59 209.23H227.824V112.98H224.59ZM283.258 209.23H286.496V115.109H283.258ZM341.926 209.23H345.164V103.961H341.926ZM400.594 209.23H403.832V136.715H400.594Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
310
+ <path d='M108.871 127.82V127.758' fill='#bf80bf' clip-path='url(#clip3)'/>
311
+ <path d='M108.871 127.82V127.758' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
312
+ <path d='M106.875 127.758H110.86' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
313
+ <path d='M108.871 127.82V127.883' fill='#bf80bf' clip-path='url(#clip3)'/>
314
+ <path d='M108.871 127.82V127.883' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
315
+ <path d='M110.864 127.883H106.879' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
316
+ <path d='M167.539 145.105V144.668' fill='#bf80bf' clip-path='url(#clip3)'/>
317
+ <path d='M167.539 145.105V144.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
318
+ <path d='M165.547 144.668H169.532' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
319
+ <path d='M167.539 145.105V145.543' fill='#bf80bf' clip-path='url(#clip3)'/>
320
+ <path d='M167.539 145.105V145.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
321
+ <path d='M169.532 145.543H165.547' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
322
+ <path d='M226.207 112.98V112.73' fill='#bf80bf' clip-path='url(#clip3)'/>
323
+ <path d='M226.207 112.98V112.73' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
324
+ <path d='M224.215 112.73H228.2' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
325
+ <path d='M226.207 112.98V113.23' fill='#bf80bf' clip-path='url(#clip3)'/>
326
+ <path d='M226.207 112.98V113.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
327
+ <path d='M228.2 113.23H224.215' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
328
+ <path d='M284.875 115.109V113.605' fill='#bf80bf' clip-path='url(#clip3)'/>
329
+ <path d='M284.875 115.109V113.605' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
330
+ <path d='M282.883 113.606H286.868' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
331
+ <path d='M284.875 115.109V116.613' fill='#bf80bf' clip-path='url(#clip3)'/>
332
+ <path d='M284.875 115.109V116.613' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
333
+ <path d='M286.868 116.614H282.883' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
334
+ <path d='M343.547 103.961V102.961' fill='#bf80bf' clip-path='url(#clip3)'/>
335
+ <path d='M343.547 103.961V102.961' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
336
+ <path d='M341.551 102.961H345.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
337
+ <path d='M343.547 103.961V104.965' fill='#bf80bf' clip-path='url(#clip3)'/>
338
+ <path d='M343.547 103.961V104.965' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
339
+ <path d='M345.539 104.965H341.555' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
340
+ <path d='M402.215 136.715V130.137' fill='#bf80bf' clip-path='url(#clip3)'/>
341
+ <path d='M402.215 136.715V130.137' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
342
+ <path d='M400.223 130.136H404.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
343
+ <path d='M402.215 136.715V143.289' fill='#bf80bf' clip-path='url(#clip3)'/>
344
+ <path d='M402.215 136.715V143.289' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
345
+ <path d='M404.207 143.289H400.223' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
346
+ <path d='M112.481 209.23H115.719V144.918H112.481ZM171.149 209.23H174.387V147.984H171.149ZM229.82 209.23H233.055V134.461H229.82ZM288.488 209.23H291.727V147.734H288.488ZM347.156 209.23H350.395V83.984H347.156ZM405.824 209.23H409.063V123.562H405.824Z' fill='#c96' clip-path='url(#clip3)'/>
347
+ <path d='M112.481 209.23H115.719V144.918H112.481ZM171.149 209.23H174.387V147.984H171.149ZM229.82 209.23H233.055V134.461H229.82ZM288.488 209.23H291.727V147.734H288.488ZM347.156 209.23H350.395V83.984H347.156ZM405.824 209.23H409.063V123.562H405.824Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
348
+ <path d='M114.098 144.918V144.855' fill='#c96' clip-path='url(#clip3)'/>
349
+ <path d='M114.098 144.918V144.855' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
350
+ <path d='M112.105 144.856H116.09' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
351
+ <path d='M114.098 144.918V144.98' fill='#c96' clip-path='url(#clip3)'/>
352
+ <path d='M114.098 144.918V144.98' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
353
+ <path d='M116.094 144.981H112.109' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
354
+ <path d='M172.77 147.984V147.359' fill='#c96' clip-path='url(#clip3)'/>
355
+ <path d='M172.77 147.984V147.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
356
+ <path d='M170.777 147.36H174.762' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
357
+ <path d='M172.77 147.984V148.613' fill='#c96' clip-path='url(#clip3)'/>
358
+ <path d='M172.77 147.984V148.613' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
359
+ <path d='M174.762 148.613H170.777' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
360
+ <path d='M231.438 134.461V134.336' fill='#c96' clip-path='url(#clip3)'/>
361
+ <path d='M231.438 134.461V134.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
362
+ <path d='M229.445 134.336H233.43' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
363
+ <path d='M231.438 134.461V134.586' fill='#c96' clip-path='url(#clip3)'/>
364
+ <path d='M231.438 134.461V134.586' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
365
+ <path d='M233.43 134.586H229.445' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
366
+ <path d='M290.106 147.734V146.297' fill='#c96' clip-path='url(#clip3)'/>
367
+ <path d='M290.106 147.734V146.297' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
368
+ <path d='M288.113 146.297H292.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
369
+ <path d='M290.106 147.734V149.176' fill='#c96' clip-path='url(#clip3)'/>
370
+ <path d='M290.106 147.734V149.176' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
371
+ <path d='M292.098 149.176H288.113' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
372
+ <path d='M348.777 83.984' fill='#c96' clip-path='url(#clip3)'/>
373
+ <path d='M346.781 83.984H350.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
374
+ <path d='M348.777 83.984' fill='#c96' clip-path='url(#clip3)'/>
375
+ <path d='M346.781 83.984H350.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
376
+ <path d='M407.445 123.562V105.965' fill='#c96' clip-path='url(#clip3)'/>
377
+ <path d='M407.445 123.562V105.965' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
378
+ <path d='M405.453 105.965H409.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
379
+ <path d='M407.445 123.562V141.16' fill='#c96' clip-path='url(#clip3)'/>
380
+ <path d='M407.445 123.562V141.16' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
381
+ <path d='M409.437 141.16H405.453' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
382
+ <path d='M117.711 209.23H120.949V143.601H117.711ZM176.379 209.23H179.617V139.781H176.379ZM235.051 209.23H238.285V126.57H235.051ZM293.719 209.23H296.957V83.984H293.719ZM352.387 209.23H355.625V83.984H352.387ZM411.055 209.23H414.293V83.984H411.055Z' fill='#80bf80' clip-path='url(#clip3)'/>
383
+ <path d='M117.711 209.23H120.949V143.601H117.711ZM176.379 209.23H179.617V139.781H176.379ZM235.051 209.23H238.285V126.57H235.051ZM293.719 209.23H296.957V83.984H293.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(#clip3)'/>
384
+ <path d='M119.328 143.601V143.539' fill='#80bf80' clip-path='url(#clip3)'/>
385
+ <path d='M119.328 143.601V143.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
386
+ <path d='M117.336 143.539H121.321' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
387
+ <path d='M119.328 143.601V143.664' fill='#80bf80' clip-path='url(#clip3)'/>
388
+ <path d='M119.328 143.601V143.664' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
389
+ <path d='M121.325 143.664H117.34' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
390
+ <path d='M178 139.781V139.469' fill='#80bf80' clip-path='url(#clip3)'/>
391
+ <path d='M178 139.781V139.469' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
392
+ <path d='M176.008 139.469H179.993' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
393
+ <path d='M178 139.781V140.094' fill='#80bf80' clip-path='url(#clip3)'/>
394
+ <path d='M178 139.781V140.094' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
395
+ <path d='M179.993 140.093H176.008' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
396
+ <path d='M236.668 126.57V126.445' fill='#80bf80' clip-path='url(#clip3)'/>
397
+ <path d='M236.668 126.57V126.445' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
398
+ <path d='M234.676 126.446H238.661' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
399
+ <path d='M236.668 126.57V126.695' fill='#80bf80' clip-path='url(#clip3)'/>
400
+ <path d='M236.668 126.57V126.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
401
+ <path d='M238.66 126.695H234.675' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
402
+ <path d='M295.336 83.984' fill='#80bf80' clip-path='url(#clip3)'/>
403
+ <path d='M293.344 83.984H297.329' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
404
+ <path d='M295.336 83.984' fill='#80bf80' clip-path='url(#clip3)'/>
405
+ <path d='M293.344 83.984H297.329' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
406
+ <path d='M354.008 83.984' fill='#80bf80' clip-path='url(#clip3)'/>
407
+ <path d='M352.012 83.984H356' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
408
+ <path d='M354.008 83.984' fill='#80bf80' clip-path='url(#clip3)'/>
409
+ <path d='M352.012 83.984H356' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
410
+ <path d='M412.676 83.984' fill='#80bf80' clip-path='url(#clip3)'/>
411
+ <path d='M410.684 83.984H414.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
412
+ <path d='M412.676 83.984' fill='#80bf80' clip-path='url(#clip3)'/>
413
+ <path d='M410.684 83.984H414.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
414
+ <path d='M122.941 209.23H126.18V140.094H122.941ZM181.609 209.23H184.848V131.141H181.609ZM240.281 209.23H243.516V136.902H240.281ZM298.949 209.23H302.188V83.984H298.949ZM357.617 209.23H360.856V83.984H357.617ZM416.285 209.23H419.524V83.984H416.285Z' fill='#bfbf80' clip-path='url(#clip3)'/>
415
+ <path d='M122.941 209.23H126.18V140.094H122.941ZM181.609 209.23H184.848V131.141H181.609ZM240.281 209.23H243.516V136.902H240.281ZM298.949 209.23H302.188V83.984H298.949ZM357.617 209.23H360.856V83.984H357.617ZM416.285 209.23H419.524V83.984H416.285Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
416
+ <path d='M124.559 140.094V140.031' fill='#bfbf80' clip-path='url(#clip3)'/>
417
+ <path d='M124.559 140.094V140.031' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
418
+ <path d='M122.566 140.032H126.551' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
419
+ <path d='M124.559 140.094V140.156' fill='#bfbf80' clip-path='url(#clip3)'/>
420
+ <path d='M124.559 140.094V140.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
421
+ <path d='M126.555 140.156H122.57' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
422
+ <path d='M183.231 131.141V130.703' fill='#bfbf80' clip-path='url(#clip3)'/>
423
+ <path d='M183.231 131.141V130.703' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
424
+ <path d='M181.238 130.703H185.223' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
425
+ <path d='M183.231 131.141V131.578' fill='#bfbf80' clip-path='url(#clip3)'/>
426
+ <path d='M183.231 131.141V131.578' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
427
+ <path d='M185.223 131.579H181.238' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
428
+ <path d='M241.899 136.902V136.652' fill='#bfbf80' clip-path='url(#clip3)'/>
429
+ <path d='M241.899 136.902V136.652' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
430
+ <path d='M239.906 136.652H243.891' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
431
+ <path d='M241.899 136.902V137.152' fill='#bfbf80' clip-path='url(#clip3)'/>
432
+ <path d='M241.899 136.902V137.152' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
433
+ <path d='M243.891 137.152H239.906' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
434
+ <path d='M300.567 83.984' fill='#bfbf80' clip-path='url(#clip3)'/>
435
+ <path d='M298.574 83.984H302.559' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
436
+ <path d='M300.567 83.984' fill='#bfbf80' clip-path='url(#clip3)'/>
437
+ <path d='M298.574 83.984H302.559' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
438
+ <path d='M359.238 83.984' fill='#bfbf80' clip-path='url(#clip3)'/>
439
+ <path d='M357.242 83.984H361.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
440
+ <path d='M359.238 83.984' fill='#bfbf80' clip-path='url(#clip3)'/>
441
+ <path d='M357.242 83.984H361.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
442
+ <path d='M417.906 83.984' fill='#bfbf80' clip-path='url(#clip3)'/>
443
+ <path d='M415.914 83.984H419.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
444
+ <path d='M417.906 83.984' fill='#bfbf80' clip-path='url(#clip3)'/>
445
+ <path d='M415.914 83.984H419.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
446
+ <path d='M128.172 209.23H131.41V141.348H128.172ZM186.84 209.23H190.078V135.273H186.84ZM245.512 209.23H248.746V138.344H245.512ZM304.18 209.23H307.418V113.73H304.18ZM362.848 209.23H366.086V83.984H362.848ZM421.516 209.23H424.754V127.195H421.516Z' fill='#399' clip-path='url(#clip3)'/>
447
+ <path d='M128.172 209.23H131.41V141.348H128.172ZM186.84 209.23H190.078V135.273H186.84ZM245.512 209.23H248.746V138.344H245.512ZM304.18 209.23H307.418V113.73H304.18ZM362.848 209.23H366.086V83.984H362.848ZM421.516 209.23H424.754V127.195H421.516Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
448
+ <path d='M129.789 141.348V141.285' fill='#399' clip-path='url(#clip3)'/>
449
+ <path d='M129.789 141.348V141.285' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
450
+ <path d='M127.797 141.285H131.782' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
451
+ <path d='M129.789 141.348V141.41' fill='#399' clip-path='url(#clip3)'/>
452
+ <path d='M129.789 141.348V141.41' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
453
+ <path d='M131.785 141.41H127.8' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
454
+ <path d='M188.461 135.273V134.711' fill='#399' clip-path='url(#clip3)'/>
455
+ <path d='M188.461 135.273V134.711' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
456
+ <path d='M186.469 134.711H190.454' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
457
+ <path d='M188.461 135.273V135.836' fill='#399' clip-path='url(#clip3)'/>
458
+ <path d='M188.461 135.273V135.836' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
459
+ <path d='M190.453 135.836H186.468' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
460
+ <path d='M247.129 138.344V138.09' fill='#399' clip-path='url(#clip3)'/>
461
+ <path d='M247.129 138.344V138.09' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
462
+ <path d='M245.137 138.089H249.122' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
463
+ <path d='M247.129 138.344V138.594' fill='#399' clip-path='url(#clip3)'/>
464
+ <path d='M247.129 138.344V138.594' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
465
+ <path d='M249.121 138.593H245.136' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
466
+ <path d='M305.797 113.73V112.855' fill='#399' clip-path='url(#clip3)'/>
467
+ <path d='M305.797 113.73V112.855' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
468
+ <path d='M303.804 112.855H307.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
469
+ <path d='M305.797 113.73V114.609' fill='#399' clip-path='url(#clip3)'/>
470
+ <path d='M305.797 113.73V114.609' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
471
+ <path d='M307.789 114.61H303.804' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
472
+ <path d='M364.469 83.984' fill='#399' clip-path='url(#clip3)'/>
473
+ <path d='M362.473 83.984H366.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
474
+ <path d='M364.469 83.984' fill='#399' clip-path='url(#clip3)'/>
475
+ <path d='M362.473 83.984H366.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
476
+ <path d='M423.137 127.195V122.246' fill='#399' clip-path='url(#clip3)'/>
477
+ <path d='M423.137 127.195V122.246' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
478
+ <path d='M421.144 122.246H425.128' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
479
+ <path d='M423.137 127.195V132.141' fill='#399' clip-path='url(#clip3)'/>
480
+ <path d='M423.137 127.195V132.141' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
481
+ <path d='M425.129 132.14H421.144' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
482
+ <path d='M133.402 209.23H136.641V140.91H133.402ZM192.07 209.23H195.309V145.98H192.07ZM250.742 209.23H253.977V141.098H250.742ZM309.41 209.23H312.649V124.816H309.41ZM368.078 209.23H371.317V83.984H368.078ZM426.746 209.23H429.984V123.937H426.746Z' fill='#d9b3b3' clip-path='url(#clip3)'/>
483
+ <path d='M133.402 209.23H136.641V140.91H133.402ZM192.07 209.23H195.309V145.98H192.07ZM250.742 209.23H253.977V141.098H250.742ZM309.41 209.23H312.649V124.816H309.41ZM368.078 209.23H371.317V83.984H368.078ZM426.746 209.23H429.984V123.937H426.746Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
484
+ <path d='M135.02 140.91V140.848' fill='#d9b3b3' clip-path='url(#clip3)'/>
485
+ <path d='M135.02 140.91V140.848' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
486
+ <path d='M133.027 140.848H137.012' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
487
+ <path d='M135.02 140.91V140.973' fill='#d9b3b3' clip-path='url(#clip3)'/>
488
+ <path d='M135.02 140.91V140.973' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
489
+ <path d='M137.016 140.973H133.031' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
490
+ <path d='M193.692 145.98V144.918' fill='#d9b3b3' clip-path='url(#clip3)'/>
491
+ <path d='M193.692 145.98V144.918' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
492
+ <path d='M191.699 144.918H195.684' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
493
+ <path d='M193.692 145.98V147.047' fill='#d9b3b3' clip-path='url(#clip3)'/>
494
+ <path d='M193.692 145.98V147.047' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
495
+ <path d='M195.684 147.046H191.699' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
496
+ <path d='M252.359 141.098V140.973' fill='#d9b3b3' clip-path='url(#clip3)'/>
497
+ <path d='M252.359 141.098V140.973' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
498
+ <path d='M250.367 140.973H254.352' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
499
+ <path d='M252.359 141.098V141.223' fill='#d9b3b3' clip-path='url(#clip3)'/>
500
+ <path d='M252.359 141.098V141.223' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
501
+ <path d='M254.352 141.223H250.367' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
502
+ <path d='M311.027 124.816V123.937' fill='#d9b3b3' clip-path='url(#clip3)'/>
503
+ <path d='M311.027 124.816V123.937' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
504
+ <path d='M309.035 123.938H313.02' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
505
+ <path d='M311.027 124.816V125.691' fill='#d9b3b3' clip-path='url(#clip3)'/>
506
+ <path d='M311.027 124.816V125.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
507
+ <path d='M313.02 125.691H309.035' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
508
+ <path d='M369.699 83.984' fill='#d9b3b3' clip-path='url(#clip3)'/>
509
+ <path d='M367.703 83.984H371.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
510
+ <path d='M369.699 83.984' fill='#d9b3b3' clip-path='url(#clip3)'/>
511
+ <path d='M367.703 83.984H371.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
512
+ <path d='M428.367 123.937V119.867' fill='#d9b3b3' clip-path='url(#clip3)'/>
513
+ <path d='M428.367 123.937V119.867' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
514
+ <path d='M426.375 119.867H430.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
515
+ <path d='M428.367 123.937V128.008' fill='#d9b3b3' clip-path='url(#clip3)'/>
516
+ <path d='M428.367 123.937V128.008' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
517
+ <path d='M430.36 128.008H426.375' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip3)'/>
518
+ <g transform='matrix(0 -1 1 0 -99.092 255.07)'>
519
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
520
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
521
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
522
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
523
+ </g>
524
+ <g transform='matrix(0 -1 1 0 -40.423 255.07)'>
525
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
526
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
527
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
528
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
529
+ </g>
530
+ <g transform='matrix(0 -1 1 0 18.246 255.07)'>
531
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
532
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
533
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
534
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
535
+ </g>
536
+ <g transform='matrix(0 -1 1 0 76.915 255.07)'>
537
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
538
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
539
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
540
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
541
+ </g>
542
+ <g transform='matrix(0 -1 1 0 135.584 255.07)'>
543
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
544
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
545
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
546
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
547
+ </g>
548
+ <g transform='matrix(0 -1 1 0 194.253 255.07)'>
549
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
550
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
551
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
552
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
553
+ </g>
554
+ <g transform='matrix(0 -1 1 0 -93.862 254.695)'>
555
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
556
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
557
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
558
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
559
+ </g>
560
+ <g transform='matrix(0 -1 1 0 -35.193 255.008)'>
561
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
562
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
563
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
564
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
565
+ </g>
566
+ <g transform='matrix(0 -1 1 0 23.476 253.755)'>
567
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
568
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
569
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
570
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
571
+ </g>
572
+ <g transform='matrix(0 -1 1 0 82.145 260.581)'>
573
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
574
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
575
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
576
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
577
+ </g>
578
+ <g transform='matrix(0 -1 1 0 140.814 249.434)'>
579
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
580
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
581
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
582
+ <use x='121.25' y='188.674' xlink:href='#g2-57'/>
583
+ </g>
584
+ <g transform='matrix(0 -1 1 0 199.483 263.023)'>
585
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
586
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
587
+ <use x='118.603' y='188.674' xlink:href='#g2-56'/>
588
+ <use x='121.25' y='188.674' xlink:href='#g2-55'/>
589
+ </g>
590
+ <g transform='matrix(0 -1 1 0 -88.631 253.755)'>
591
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
592
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
593
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
594
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
595
+ </g>
596
+ <g transform='matrix(0 -1 1 0 -29.962 251.563)'>
597
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
598
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
599
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
600
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
601
+ </g>
602
+ <g transform='matrix(0 -1 1 0 28.707 253.129)'>
603
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
604
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
605
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
606
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
607
+ </g>
608
+ <g transform='matrix(0 -1 1 0 87.376 250.436)'>
609
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
610
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
611
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
612
+ <use x='121.25' y='188.674' xlink:href='#g2-55'/>
613
+ </g>
614
+ <g transform='matrix(0 -1 1 0 146.045 251.563)'>
615
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
616
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
617
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
618
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
619
+ </g>
620
+ <g transform='matrix(0 -1 1 0 204.714 192.447)'>
621
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
622
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
623
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
624
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
625
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
626
+ <use x='124.23' y='188.674' xlink:href='#g2-51'/>
627
+ <use x='126.877' y='188.674' xlink:href='#g2-50'/>
628
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
629
+ </g>
630
+ <g transform='matrix(0 -1 1 0 -83.401 251.751)'>
631
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
632
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
633
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
634
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
635
+ </g>
636
+ <g transform='matrix(0 -1 1 0 -24.732 254.945)'>
637
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
638
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
639
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
640
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
641
+ </g>
642
+ <g transform='matrix(0 -1 1 0 33.937 243.172)'>
643
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
644
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
645
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
646
+ <use x='121.25' y='188.674' xlink:href='#g2-57'/>
647
+ </g>
648
+ <g transform='matrix(0 -1 1 0 92.606 247.994)'>
649
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
650
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
651
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
652
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
653
+ </g>
654
+ <g transform='matrix(0 -1 1 0 151.275 192.447)'>
655
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
656
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
657
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
658
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
659
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
660
+ <use x='124.23' y='188.674' xlink:href='#g2-52'/>
661
+ <use x='126.877' y='188.674' xlink:href='#g2-55'/>
662
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
663
+ </g>
664
+ <g transform='matrix(0 -1 1 0 209.944 236.471)'>
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-51'/>
668
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
669
+ </g>
670
+ <g transform='matrix(0 -1 1 0 -78.17 236.283)'>
671
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
672
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
673
+ <use x='118.603' y='188.674' xlink:href='#g2-51'/>
674
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
675
+ </g>
676
+ <g transform='matrix(0 -1 1 0 -19.501 253.567)'>
677
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
678
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
679
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
680
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
681
+ </g>
682
+ <g transform='matrix(0 -1 1 0 39.168 221.442)'>
683
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
684
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
685
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
686
+ <use x='121.25' y='188.674' xlink:href='#g2-52'/>
687
+ </g>
688
+ <g transform='matrix(0 -1 1 0 97.837 223.571)'>
689
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
690
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
691
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
692
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
693
+ </g>
694
+ <g transform='matrix(0 -1 1 0 156.506 212.424)'>
695
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
696
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
697
+ <use x='118.603' y='188.674' xlink:href='#g2-54'/>
698
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
699
+ </g>
700
+ <g transform='matrix(0 -1 1 0 215.175 245.176)'>
701
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
702
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
703
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
704
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
705
+ </g>
706
+ <g transform='matrix(0 -1 1 0 -72.94 253.38)'>
707
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
708
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
709
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
710
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
711
+ </g>
712
+ <g transform='matrix(0 -1 1 0 -14.271 256.448)'>
713
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
714
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
715
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
716
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
717
+ </g>
718
+ <g transform='matrix(0 -1 1 0 44.398 242.922)'>
719
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
720
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
721
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
722
+ <use x='121.25' y='188.674' xlink:href='#g2-57'/>
723
+ </g>
724
+ <g transform='matrix(0 -1 1 0 103.067 256.198)'>
725
+ <use x='114.487' y='188.674' xlink:href='#g2-48'/>
726
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
727
+ <use x='118.603' y='188.674' xlink:href='#g2-57'/>
728
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
729
+ </g>
730
+ <g transform='matrix(0 -1 1 0 161.736 192.447)'>
731
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
732
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
733
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
734
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
735
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
736
+ <use x='124.23' y='188.674' xlink:href='#g2-50'/>
737
+ <use x='126.877' y='188.674' xlink:href='#g2-51'/>
738
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
739
+ </g>
740
+ <g transform='matrix(0 -1 1 0 220.405 232.025)'>
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-51'/>
744
+ <use x='121.25' y='188.674' xlink:href='#g2-55'/>
745
+ </g>
746
+ <g transform='matrix(0 -1 1 0 -67.709 252.064)'>
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-48'/>
750
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
751
+ </g>
752
+ <g transform='matrix(0 -1 1 0 -9.04 248.244)'>
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-49'/>
756
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
757
+ </g>
758
+ <g transform='matrix(0 -1 1 0 49.629 235.031)'>
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-51'/>
762
+ <use x='121.25' y='188.674' xlink:href='#g2-50'/>
763
+ </g>
764
+ <g transform='matrix(0 -1 1 0 108.298 192.447)'>
765
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
766
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
767
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
768
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
769
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
770
+ <use x='124.23' y='188.674' xlink:href='#g2-53'/>
771
+ <use x='126.877' y='188.674' xlink:href='#g2-54'/>
772
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
773
+ </g>
774
+ <g transform='matrix(0 -1 1 0 166.967 192.447)'>
775
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
776
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
777
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
778
+ <use x='120.114' y='188.674' xlink:href='#g2-49'/>
779
+ <use x='122.76' y='188.674' xlink:href='#g2-48'/>
780
+ <use x='125.406' y='188.674' xlink:href='#g2-46'/>
781
+ <use x='126.877' y='188.674' xlink:href='#g2-51'/>
782
+ <use x='129.523' y='188.674' xlink:href='#g2-50'/>
783
+ <use x='132.169' y='188.674' xlink:href='#g2-120'/>
784
+ </g>
785
+ <g transform='matrix(0 -1 1 0 225.636 192.447)'>
786
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
787
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
788
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
789
+ <use x='120.114' y='188.674' xlink:href='#g2-51'/>
790
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
791
+ <use x='124.23' y='188.674' xlink:href='#g2-48'/>
792
+ <use x='126.877' y='188.674' xlink:href='#g2-56'/>
793
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
794
+ </g>
795
+ <g transform='matrix(0 -1 1 0 -62.479 248.558)'>
796
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
797
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
798
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
799
+ <use x='121.25' y='188.674' xlink:href='#g2-48'/>
800
+ </g>
801
+ <g transform='matrix(0 -1 1 0 -3.81 239.602)'>
802
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
803
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
804
+ <use x='118.603' y='188.674' xlink:href='#g2-50'/>
805
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
806
+ </g>
807
+ <g transform='matrix(0 -1 1 0 54.859 245.364)'>
808
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
809
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
810
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
811
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
812
+ </g>
813
+ <g transform='matrix(0 -1 1 0 113.528 192.447)'>
814
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
815
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
816
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
817
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
818
+ <use x='122.76' y='188.674' xlink:href='#g2-55'/>
819
+ <use x='125.406' y='188.674' xlink:href='#g2-51'/>
820
+ <use x='128.053' y='188.674' xlink:href='#g2-46'/>
821
+ <use x='129.523' y='188.674' xlink:href='#g2-52'/>
822
+ <use x='132.169' y='188.674' xlink:href='#g2-53'/>
823
+ <use x='134.816' y='188.674' xlink:href='#g2-120'/>
824
+ </g>
825
+ <g transform='matrix(0 -1 1 0 172.197 192.447)'>
826
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
827
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
828
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
829
+ <use x='120.114' y='188.674' xlink:href='#g2-54'/>
830
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
831
+ <use x='124.23' y='188.674' xlink:href='#g2-48'/>
832
+ <use x='126.877' y='188.674' xlink:href='#g2-54'/>
833
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
834
+ </g>
835
+ <g transform='matrix(0 -1 1 0 230.866 192.447)'>
836
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
837
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
838
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
839
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
840
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
841
+ <use x='124.23' y='188.674' xlink:href='#g2-50'/>
842
+ <use x='126.877' y='188.674' xlink:href='#g2-52'/>
843
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
844
+ </g>
845
+ <g transform='matrix(0 -1 1 0 -57.249 249.81)'>
846
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
847
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
848
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
849
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
850
+ </g>
851
+ <g transform='matrix(0 -1 1 0 1.42 243.736)'>
852
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
853
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
854
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
855
+ <use x='121.25' y='188.674' xlink:href='#g2-56'/>
856
+ </g>
857
+ <g transform='matrix(0 -1 1 0 60.089 246.804)'>
858
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
859
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
860
+ <use x='118.603' y='188.674' xlink:href='#g2-49'/>
861
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
862
+ </g>
863
+ <g transform='matrix(0 -1 1 0 118.758 222.193)'>
864
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
865
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
866
+ <use x='118.603' y='188.674' xlink:href='#g2-53'/>
867
+ <use x='121.25' y='188.674' xlink:href='#g2-51'/>
868
+ </g>
869
+ <g transform='matrix(0 -1 1 0 177.427 192.447)'>
870
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
871
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
872
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
873
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
874
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
875
+ <use x='124.23' y='188.674' xlink:href='#g2-52'/>
876
+ <use x='126.877' y='188.674' xlink:href='#g2-56'/>
877
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
878
+ </g>
879
+ <g transform='matrix(0 -1 1 0 236.096 235.657)'>
880
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
881
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
882
+ <use x='118.603' y='188.674' xlink:href='#g2-51'/>
883
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
884
+ </g>
885
+ <g transform='matrix(0 -1 1 0 -52.018 249.372)'>
886
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
887
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
888
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
889
+ <use x='121.25' y='188.674' xlink:href='#g2-57'/>
890
+ </g>
891
+ <g transform='matrix(0 -1 1 0 6.651 254.444)'>
892
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
893
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
894
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
895
+ <use x='121.25' y='188.674' xlink:href='#g2-49'/>
896
+ </g>
897
+ <g transform='matrix(0 -1 1 0 65.32 249.56)'>
898
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
899
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
900
+ <use x='118.603' y='188.674' xlink:href='#g2-48'/>
901
+ <use x='121.25' y='188.674' xlink:href='#g2-57'/>
902
+ </g>
903
+ <g transform='matrix(0 -1 1 0 123.989 233.278)'>
904
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
905
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
906
+ <use x='118.603' y='188.674' xlink:href='#g2-51'/>
907
+ <use x='121.25' y='188.674' xlink:href='#g2-53'/>
908
+ </g>
909
+ <g transform='matrix(0 -1 1 0 182.658 192.447)'>
910
+ <use x='109.598' y='188.674' xlink:href='#g4-1'/>
911
+ <use x='113.103' y='188.674' xlink:href='#g4-1'/>
912
+ <use x='116.608' y='188.674' xlink:href='#g4-1'/>
913
+ <use x='120.114' y='188.674' xlink:href='#g2-50'/>
914
+ <use x='122.76' y='188.674' xlink:href='#g2-46'/>
915
+ <use x='124.23' y='188.674' xlink:href='#g2-51'/>
916
+ <use x='126.877' y='188.674' xlink:href='#g2-49'/>
917
+ <use x='129.523' y='188.674' xlink:href='#g2-120'/>
918
+ </g>
919
+ <g transform='matrix(0 -1 1 0 241.327 232.401)'>
920
+ <use x='114.487' y='188.674' xlink:href='#g2-49'/>
921
+ <use x='117.133' y='188.674' xlink:href='#g2-46'/>
922
+ <use x='118.603' y='188.674' xlink:href='#g2-51'/>
923
+ <use x='121.25' y='188.674' xlink:href='#g2-54'/>
924
+ </g>
925
+ <g transform='matrix(0 -1 1 0 -129.314 316.355)'>
926
+ <use x='114.487' y='188.674' xlink:href='#g1-82'/>
927
+ <use x='120.457' y='188.674' xlink:href='#g1-101'/>
928
+ <use x='124.553' y='188.674' xlink:href='#g1-108'/>
929
+ <use x='126.753' y='188.674' xlink:href='#g1-97'/>
930
+ <use x='131.181' y='188.674' xlink:href='#g1-116'/>
931
+ <use x='134.509' y='188.674' xlink:href='#g1-105'/>
932
+ <use x='136.709' y='188.674' xlink:href='#g1-118'/>
933
+ <use x='140.957' y='188.674' xlink:href='#g1-101'/>
934
+ <use x='148.124' y='188.674' xlink:href='#g1-116'/>
935
+ <use x='151.452' y='188.674' xlink:href='#g1-105'/>
936
+ <use x='153.652' y='188.674' xlink:href='#g1-109'/>
937
+ <use x='160.972' y='188.674' xlink:href='#g1-101'/>
938
+ <use x='168.139' y='188.674' xlink:href='#g3-40'/>
939
+ <use x='171.432' y='188.674' xlink:href='#g3-108'/>
940
+ <use x='173.453' y='188.674' xlink:href='#g3-111'/>
941
+ <use x='177.452' y='188.674' xlink:href='#g3-119'/>
942
+ <use x='183' y='188.674' xlink:href='#g3-101'/>
943
+ <use x='186.764' y='188.674' xlink:href='#g3-114'/>
944
+ <use x='192.479' y='188.674' xlink:href='#g3-105'/>
945
+ <use x='194.499' y='188.674' xlink:href='#g3-115'/>
946
+ <use x='200.568' y='188.674' xlink:href='#g3-98'/>
947
+ <use x='205.176' y='188.674' xlink:href='#g3-101'/>
948
+ <use x='208.94' y='188.674' xlink:href='#g3-116'/>
949
+ <use x='211.998' y='188.674' xlink:href='#g3-116'/>
950
+ <use x='215.056' y='188.674' xlink:href='#g3-101'/>
951
+ <use x='218.819' y='188.674' xlink:href='#g3-114'/>
952
+ <use x='221.711' y='188.674' xlink:href='#g3-41'/>
953
+ </g>
954
+ </g>
955
+ </svg>