@alma-cdk/project 0.0.14

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 (1603) hide show
  1. package/.gitattributes +22 -0
  2. package/.jsii +5569 -0
  3. package/.nvmrc +1 -0
  4. package/API.md +3500 -0
  5. package/LICENSE +202 -0
  6. package/README.md +201 -0
  7. package/assets/accounts-1x.svg +3 -0
  8. package/assets/accounts-2x.svg +3 -0
  9. package/assets/accounts-3x.svg +3 -0
  10. package/assets/accounts.drawio +1 -0
  11. package/assets/alma-cdk-logo.afdesign +0 -0
  12. package/assets/alma-cdk-project.svg +61 -0
  13. package/lib/configurations/accounts.d.ts +108 -0
  14. package/lib/configurations/accounts.js +176 -0
  15. package/lib/configurations/environments.d.ts +45 -0
  16. package/lib/configurations/environments.js +83 -0
  17. package/lib/configurations/index.d.ts +2 -0
  18. package/lib/configurations/index.js +8 -0
  19. package/lib/context/account.d.ts +12 -0
  20. package/lib/context/account.js +41 -0
  21. package/lib/context/environment.d.ts +144 -0
  22. package/lib/context/environment.js +183 -0
  23. package/lib/context/index.d.ts +2 -0
  24. package/lib/context/index.js +9 -0
  25. package/lib/error/add.d.ts +2 -0
  26. package/lib/error/add.js +9 -0
  27. package/lib/error/index.d.ts +1 -0
  28. package/lib/error/index.js +5 -0
  29. package/lib/index.d.ts +6 -0
  30. package/lib/index.js +19 -0
  31. package/lib/name/index.d.ts +10 -0
  32. package/lib/name/index.js +18 -0
  33. package/lib/name/interfaces.d.ts +4 -0
  34. package/lib/name/interfaces.js +3 -0
  35. package/lib/name/max-length.d.ts +6 -0
  36. package/lib/name/max-length.js +29 -0
  37. package/lib/name/name-path.d.ts +8 -0
  38. package/lib/name/name-path.js +32 -0
  39. package/lib/name/name-path.test.d.ts +1 -0
  40. package/lib/name/name-path.test.js +88 -0
  41. package/lib/name/name-url.d.ts +8 -0
  42. package/lib/name/name-url.js +33 -0
  43. package/lib/name/name-url.test.d.ts +1 -0
  44. package/lib/name/name-url.test.js +84 -0
  45. package/lib/name/name.d.ts +13 -0
  46. package/lib/name/name.js +61 -0
  47. package/lib/name/name.test.d.ts +1 -0
  48. package/lib/name/name.test.js +83 -0
  49. package/lib/name/trim.d.ts +3 -0
  50. package/lib/name/trim.js +24 -0
  51. package/lib/name/trim.test.d.ts +1 -0
  52. package/lib/name/trim.test.js +30 -0
  53. package/lib/project/account-type.d.ts +10 -0
  54. package/lib/project/account-type.js +37 -0
  55. package/lib/project/environment-type.d.ts +9 -0
  56. package/lib/project/environment-type.js +40 -0
  57. package/lib/project/envregexp.d.ts +5 -0
  58. package/lib/project/envregexp.js +17 -0
  59. package/lib/project/index.d.ts +6 -0
  60. package/lib/project/index.js +25 -0
  61. package/lib/project/interfaces.d.ts +102 -0
  62. package/lib/project/interfaces.js +3 -0
  63. package/lib/project/project-context.d.ts +29 -0
  64. package/lib/project/project-context.js +87 -0
  65. package/lib/project/project.d.ts +51 -0
  66. package/lib/project/project.js +82 -0
  67. package/lib/project/resolve-region.d.ts +2 -0
  68. package/lib/project/resolve-region.js +24 -0
  69. package/lib/smartstack/description/index.d.ts +6 -0
  70. package/lib/smartstack/description/index.js +16 -0
  71. package/lib/smartstack/description/index.test.d.ts +1 -0
  72. package/lib/smartstack/description/index.test.js +104 -0
  73. package/lib/smartstack/index.d.ts +1 -0
  74. package/lib/smartstack/index.js +5 -0
  75. package/lib/smartstack/name/index.d.ts +8 -0
  76. package/lib/smartstack/name/index.js +21 -0
  77. package/lib/smartstack/name/index.test.d.ts +1 -0
  78. package/lib/smartstack/name/index.test.js +129 -0
  79. package/lib/smartstack/stack.d.ts +9 -0
  80. package/lib/smartstack/stack.js +66 -0
  81. package/lib/smartstack/tags/checks.d.ts +5 -0
  82. package/lib/smartstack/tags/checks.js +18 -0
  83. package/lib/smartstack/tags/exclude.d.ts +2 -0
  84. package/lib/smartstack/tags/exclude.js +17 -0
  85. package/lib/smartstack/tags/index.d.ts +2 -0
  86. package/lib/smartstack/tags/index.js +23 -0
  87. package/lib/smartstack/tags/taggers.d.ts +13 -0
  88. package/lib/smartstack/tags/taggers.js +41 -0
  89. package/lib/smartstack/tags/values.d.ts +20 -0
  90. package/lib/smartstack/tags/values.js +27 -0
  91. package/lib/smartstack/termination/index.d.ts +5 -0
  92. package/lib/smartstack/termination/index.js +22 -0
  93. package/lib/smartstack/termination/index.test.d.ts +1 -0
  94. package/lib/smartstack/termination/index.test.js +86 -0
  95. package/lib/template/index.d.ts +5 -0
  96. package/lib/template/index.js +28 -0
  97. package/lib/utils/isSet.d.ts +1 -0
  98. package/lib/utils/isSet.js +9 -0
  99. package/lib/wrapper/account.d.ts +4 -0
  100. package/lib/wrapper/account.js +23 -0
  101. package/lib/wrapper/environment.d.ts +4 -0
  102. package/lib/wrapper/environment.js +19 -0
  103. package/lib/wrapper/index.d.ts +2 -0
  104. package/lib/wrapper/index.js +7 -0
  105. package/node_modules/a-sync-waterfall/LICENSE +21 -0
  106. package/node_modules/a-sync-waterfall/README.md +95 -0
  107. package/node_modules/a-sync-waterfall/index.js +83 -0
  108. package/node_modules/a-sync-waterfall/package.json +25 -0
  109. package/node_modules/a-sync-waterfall/test.js +77 -0
  110. package/node_modules/asap/CHANGES.md +70 -0
  111. package/node_modules/asap/LICENSE.md +21 -0
  112. package/node_modules/asap/README.md +237 -0
  113. package/node_modules/asap/asap.js +65 -0
  114. package/node_modules/asap/browser-asap.js +66 -0
  115. package/node_modules/asap/browser-raw.js +223 -0
  116. package/node_modules/asap/package.json +62 -0
  117. package/node_modules/asap/raw.js +101 -0
  118. package/node_modules/camel-case/LICENSE +21 -0
  119. package/node_modules/camel-case/README.md +47 -0
  120. package/node_modules/camel-case/dist/index.d.ts +5 -0
  121. package/node_modules/camel-case/dist/index.js +23 -0
  122. package/node_modules/camel-case/dist/index.js.map +1 -0
  123. package/node_modules/camel-case/dist/index.spec.d.ts +1 -0
  124. package/node_modules/camel-case/dist/index.spec.js +26 -0
  125. package/node_modules/camel-case/dist/index.spec.js.map +1 -0
  126. package/node_modules/camel-case/dist.es2015/index.d.ts +5 -0
  127. package/node_modules/camel-case/dist.es2015/index.js +17 -0
  128. package/node_modules/camel-case/dist.es2015/index.js.map +1 -0
  129. package/node_modules/camel-case/dist.es2015/index.spec.d.ts +1 -0
  130. package/node_modules/camel-case/dist.es2015/index.spec.js +24 -0
  131. package/node_modules/camel-case/dist.es2015/index.spec.js.map +1 -0
  132. package/node_modules/camel-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  133. package/node_modules/camel-case/node_modules/tslib/LICENSE.txt +12 -0
  134. package/node_modules/camel-case/node_modules/tslib/README.md +164 -0
  135. package/node_modules/camel-case/node_modules/tslib/modules/index.js +55 -0
  136. package/node_modules/camel-case/node_modules/tslib/modules/package.json +3 -0
  137. package/node_modules/camel-case/node_modules/tslib/package.json +42 -0
  138. package/node_modules/camel-case/node_modules/tslib/tslib.d.ts +398 -0
  139. package/node_modules/camel-case/node_modules/tslib/tslib.es6.html +1 -0
  140. package/node_modules/camel-case/node_modules/tslib/tslib.es6.js +248 -0
  141. package/node_modules/camel-case/node_modules/tslib/tslib.html +1 -0
  142. package/node_modules/camel-case/node_modules/tslib/tslib.js +317 -0
  143. package/node_modules/camel-case/package.json +93 -0
  144. package/node_modules/capital-case/LICENSE +21 -0
  145. package/node_modules/capital-case/README.md +37 -0
  146. package/node_modules/capital-case/dist/index.d.ts +4 -0
  147. package/node_modules/capital-case/dist/index.js +16 -0
  148. package/node_modules/capital-case/dist/index.js.map +1 -0
  149. package/node_modules/capital-case/dist/index.spec.d.ts +1 -0
  150. package/node_modules/capital-case/dist/index.spec.js +24 -0
  151. package/node_modules/capital-case/dist/index.spec.js.map +1 -0
  152. package/node_modules/capital-case/dist.es2015/index.d.ts +4 -0
  153. package/node_modules/capital-case/dist.es2015/index.js +11 -0
  154. package/node_modules/capital-case/dist.es2015/index.js.map +1 -0
  155. package/node_modules/capital-case/dist.es2015/index.spec.d.ts +1 -0
  156. package/node_modules/capital-case/dist.es2015/index.spec.js +22 -0
  157. package/node_modules/capital-case/dist.es2015/index.spec.js.map +1 -0
  158. package/node_modules/capital-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  159. package/node_modules/capital-case/node_modules/tslib/LICENSE.txt +12 -0
  160. package/node_modules/capital-case/node_modules/tslib/README.md +164 -0
  161. package/node_modules/capital-case/node_modules/tslib/modules/index.js +55 -0
  162. package/node_modules/capital-case/node_modules/tslib/modules/package.json +3 -0
  163. package/node_modules/capital-case/node_modules/tslib/package.json +42 -0
  164. package/node_modules/capital-case/node_modules/tslib/tslib.d.ts +398 -0
  165. package/node_modules/capital-case/node_modules/tslib/tslib.es6.html +1 -0
  166. package/node_modules/capital-case/node_modules/tslib/tslib.es6.js +248 -0
  167. package/node_modules/capital-case/node_modules/tslib/tslib.html +1 -0
  168. package/node_modules/capital-case/node_modules/tslib/tslib.js +317 -0
  169. package/node_modules/capital-case/package.json +94 -0
  170. package/node_modules/change-case/LICENSE +21 -0
  171. package/node_modules/change-case/README.md +44 -0
  172. package/node_modules/change-case/dist/index.d.ts +11 -0
  173. package/node_modules/change-case/dist/index.js +15 -0
  174. package/node_modules/change-case/dist/index.js.map +1 -0
  175. package/node_modules/change-case/dist/index.spec.d.ts +1 -0
  176. package/node_modules/change-case/dist/index.spec.js +9 -0
  177. package/node_modules/change-case/dist/index.spec.js.map +1 -0
  178. package/node_modules/change-case/dist.es2015/index.d.ts +11 -0
  179. package/node_modules/change-case/dist.es2015/index.js +12 -0
  180. package/node_modules/change-case/dist.es2015/index.js.map +1 -0
  181. package/node_modules/change-case/dist.es2015/index.spec.d.ts +1 -0
  182. package/node_modules/change-case/dist.es2015/index.spec.js +7 -0
  183. package/node_modules/change-case/dist.es2015/index.spec.js.map +1 -0
  184. package/node_modules/change-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  185. package/node_modules/change-case/node_modules/tslib/LICENSE.txt +12 -0
  186. package/node_modules/change-case/node_modules/tslib/README.md +164 -0
  187. package/node_modules/change-case/node_modules/tslib/modules/index.js +55 -0
  188. package/node_modules/change-case/node_modules/tslib/modules/package.json +3 -0
  189. package/node_modules/change-case/node_modules/tslib/package.json +42 -0
  190. package/node_modules/change-case/node_modules/tslib/tslib.d.ts +398 -0
  191. package/node_modules/change-case/node_modules/tslib/tslib.es6.html +1 -0
  192. package/node_modules/change-case/node_modules/tslib/tslib.es6.js +248 -0
  193. package/node_modules/change-case/node_modules/tslib/tslib.html +1 -0
  194. package/node_modules/change-case/node_modules/tslib/tslib.js +317 -0
  195. package/node_modules/change-case/package.json +105 -0
  196. package/node_modules/constant-case/LICENSE +21 -0
  197. package/node_modules/constant-case/README.md +37 -0
  198. package/node_modules/constant-case/dist/index.d.ts +3 -0
  199. package/node_modules/constant-case/dist/index.js +12 -0
  200. package/node_modules/constant-case/dist/index.js.map +1 -0
  201. package/node_modules/constant-case/dist/index.spec.d.ts +1 -0
  202. package/node_modules/constant-case/dist/index.spec.js +26 -0
  203. package/node_modules/constant-case/dist/index.spec.js.map +1 -0
  204. package/node_modules/constant-case/dist.es2015/index.d.ts +3 -0
  205. package/node_modules/constant-case/dist.es2015/index.js +8 -0
  206. package/node_modules/constant-case/dist.es2015/index.js.map +1 -0
  207. package/node_modules/constant-case/dist.es2015/index.spec.d.ts +1 -0
  208. package/node_modules/constant-case/dist.es2015/index.spec.js +24 -0
  209. package/node_modules/constant-case/dist.es2015/index.spec.js.map +1 -0
  210. package/node_modules/constant-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  211. package/node_modules/constant-case/node_modules/tslib/LICENSE.txt +12 -0
  212. package/node_modules/constant-case/node_modules/tslib/README.md +164 -0
  213. package/node_modules/constant-case/node_modules/tslib/modules/index.js +55 -0
  214. package/node_modules/constant-case/node_modules/tslib/modules/package.json +3 -0
  215. package/node_modules/constant-case/node_modules/tslib/package.json +42 -0
  216. package/node_modules/constant-case/node_modules/tslib/tslib.d.ts +398 -0
  217. package/node_modules/constant-case/node_modules/tslib/tslib.es6.html +1 -0
  218. package/node_modules/constant-case/node_modules/tslib/tslib.es6.js +248 -0
  219. package/node_modules/constant-case/node_modules/tslib/tslib.html +1 -0
  220. package/node_modules/constant-case/node_modules/tslib/tslib.js +317 -0
  221. package/node_modules/constant-case/package.json +94 -0
  222. package/node_modules/dot-case/LICENSE +21 -0
  223. package/node_modules/dot-case/README.md +37 -0
  224. package/node_modules/dot-case/dist/index.d.ts +3 -0
  225. package/node_modules/dot-case/dist/index.js +11 -0
  226. package/node_modules/dot-case/dist/index.js.map +1 -0
  227. package/node_modules/dot-case/dist/index.spec.d.ts +1 -0
  228. package/node_modules/dot-case/dist/index.spec.js +26 -0
  229. package/node_modules/dot-case/dist/index.spec.js.map +1 -0
  230. package/node_modules/dot-case/dist.es2015/index.d.ts +3 -0
  231. package/node_modules/dot-case/dist.es2015/index.js +7 -0
  232. package/node_modules/dot-case/dist.es2015/index.js.map +1 -0
  233. package/node_modules/dot-case/dist.es2015/index.spec.d.ts +1 -0
  234. package/node_modules/dot-case/dist.es2015/index.spec.js +24 -0
  235. package/node_modules/dot-case/dist.es2015/index.spec.js.map +1 -0
  236. package/node_modules/dot-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  237. package/node_modules/dot-case/node_modules/tslib/LICENSE.txt +12 -0
  238. package/node_modules/dot-case/node_modules/tslib/README.md +164 -0
  239. package/node_modules/dot-case/node_modules/tslib/modules/index.js +55 -0
  240. package/node_modules/dot-case/node_modules/tslib/modules/package.json +3 -0
  241. package/node_modules/dot-case/node_modules/tslib/package.json +42 -0
  242. package/node_modules/dot-case/node_modules/tslib/tslib.d.ts +398 -0
  243. package/node_modules/dot-case/node_modules/tslib/tslib.es6.html +1 -0
  244. package/node_modules/dot-case/node_modules/tslib/tslib.es6.js +248 -0
  245. package/node_modules/dot-case/node_modules/tslib/tslib.html +1 -0
  246. package/node_modules/dot-case/node_modules/tslib/tslib.js +317 -0
  247. package/node_modules/dot-case/package.json +93 -0
  248. package/node_modules/header-case/LICENSE +21 -0
  249. package/node_modules/header-case/README.md +37 -0
  250. package/node_modules/header-case/dist/index.d.ts +3 -0
  251. package/node_modules/header-case/dist/index.js +11 -0
  252. package/node_modules/header-case/dist/index.js.map +1 -0
  253. package/node_modules/header-case/dist/index.spec.d.ts +1 -0
  254. package/node_modules/header-case/dist/index.spec.js +24 -0
  255. package/node_modules/header-case/dist/index.spec.js.map +1 -0
  256. package/node_modules/header-case/dist.es2015/index.d.ts +3 -0
  257. package/node_modules/header-case/dist.es2015/index.js +7 -0
  258. package/node_modules/header-case/dist.es2015/index.js.map +1 -0
  259. package/node_modules/header-case/dist.es2015/index.spec.d.ts +1 -0
  260. package/node_modules/header-case/dist.es2015/index.spec.js +22 -0
  261. package/node_modules/header-case/dist.es2015/index.spec.js.map +1 -0
  262. package/node_modules/header-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  263. package/node_modules/header-case/node_modules/tslib/LICENSE.txt +12 -0
  264. package/node_modules/header-case/node_modules/tslib/README.md +164 -0
  265. package/node_modules/header-case/node_modules/tslib/modules/index.js +55 -0
  266. package/node_modules/header-case/node_modules/tslib/modules/package.json +3 -0
  267. package/node_modules/header-case/node_modules/tslib/package.json +42 -0
  268. package/node_modules/header-case/node_modules/tslib/tslib.d.ts +398 -0
  269. package/node_modules/header-case/node_modules/tslib/tslib.es6.html +1 -0
  270. package/node_modules/header-case/node_modules/tslib/tslib.es6.js +248 -0
  271. package/node_modules/header-case/node_modules/tslib/tslib.html +1 -0
  272. package/node_modules/header-case/node_modules/tslib/tslib.js +317 -0
  273. package/node_modules/header-case/package.json +93 -0
  274. package/node_modules/lodash/LICENSE +47 -0
  275. package/node_modules/lodash/README.md +39 -0
  276. package/node_modules/lodash/_DataView.js +7 -0
  277. package/node_modules/lodash/_Hash.js +32 -0
  278. package/node_modules/lodash/_LazyWrapper.js +28 -0
  279. package/node_modules/lodash/_ListCache.js +32 -0
  280. package/node_modules/lodash/_LodashWrapper.js +22 -0
  281. package/node_modules/lodash/_Map.js +7 -0
  282. package/node_modules/lodash/_MapCache.js +32 -0
  283. package/node_modules/lodash/_Promise.js +7 -0
  284. package/node_modules/lodash/_Set.js +7 -0
  285. package/node_modules/lodash/_SetCache.js +27 -0
  286. package/node_modules/lodash/_Stack.js +27 -0
  287. package/node_modules/lodash/_Symbol.js +6 -0
  288. package/node_modules/lodash/_Uint8Array.js +6 -0
  289. package/node_modules/lodash/_WeakMap.js +7 -0
  290. package/node_modules/lodash/_apply.js +21 -0
  291. package/node_modules/lodash/_arrayAggregator.js +22 -0
  292. package/node_modules/lodash/_arrayEach.js +22 -0
  293. package/node_modules/lodash/_arrayEachRight.js +21 -0
  294. package/node_modules/lodash/_arrayEvery.js +23 -0
  295. package/node_modules/lodash/_arrayFilter.js +25 -0
  296. package/node_modules/lodash/_arrayIncludes.js +17 -0
  297. package/node_modules/lodash/_arrayIncludesWith.js +22 -0
  298. package/node_modules/lodash/_arrayLikeKeys.js +49 -0
  299. package/node_modules/lodash/_arrayMap.js +21 -0
  300. package/node_modules/lodash/_arrayPush.js +20 -0
  301. package/node_modules/lodash/_arrayReduce.js +26 -0
  302. package/node_modules/lodash/_arrayReduceRight.js +24 -0
  303. package/node_modules/lodash/_arraySample.js +15 -0
  304. package/node_modules/lodash/_arraySampleSize.js +17 -0
  305. package/node_modules/lodash/_arrayShuffle.js +15 -0
  306. package/node_modules/lodash/_arraySome.js +23 -0
  307. package/node_modules/lodash/_asciiSize.js +12 -0
  308. package/node_modules/lodash/_asciiToArray.js +12 -0
  309. package/node_modules/lodash/_asciiWords.js +15 -0
  310. package/node_modules/lodash/_assignMergeValue.js +20 -0
  311. package/node_modules/lodash/_assignValue.js +28 -0
  312. package/node_modules/lodash/_assocIndexOf.js +21 -0
  313. package/node_modules/lodash/_baseAggregator.js +21 -0
  314. package/node_modules/lodash/_baseAssign.js +17 -0
  315. package/node_modules/lodash/_baseAssignIn.js +17 -0
  316. package/node_modules/lodash/_baseAssignValue.js +25 -0
  317. package/node_modules/lodash/_baseAt.js +23 -0
  318. package/node_modules/lodash/_baseClamp.js +22 -0
  319. package/node_modules/lodash/_baseClone.js +166 -0
  320. package/node_modules/lodash/_baseConforms.js +18 -0
  321. package/node_modules/lodash/_baseConformsTo.js +27 -0
  322. package/node_modules/lodash/_baseCreate.js +30 -0
  323. package/node_modules/lodash/_baseDelay.js +21 -0
  324. package/node_modules/lodash/_baseDifference.js +67 -0
  325. package/node_modules/lodash/_baseEach.js +14 -0
  326. package/node_modules/lodash/_baseEachRight.js +14 -0
  327. package/node_modules/lodash/_baseEvery.js +21 -0
  328. package/node_modules/lodash/_baseExtremum.js +32 -0
  329. package/node_modules/lodash/_baseFill.js +32 -0
  330. package/node_modules/lodash/_baseFilter.js +21 -0
  331. package/node_modules/lodash/_baseFindIndex.js +24 -0
  332. package/node_modules/lodash/_baseFindKey.js +23 -0
  333. package/node_modules/lodash/_baseFlatten.js +38 -0
  334. package/node_modules/lodash/_baseFor.js +16 -0
  335. package/node_modules/lodash/_baseForOwn.js +16 -0
  336. package/node_modules/lodash/_baseForOwnRight.js +16 -0
  337. package/node_modules/lodash/_baseForRight.js +15 -0
  338. package/node_modules/lodash/_baseFunctions.js +19 -0
  339. package/node_modules/lodash/_baseGet.js +24 -0
  340. package/node_modules/lodash/_baseGetAllKeys.js +20 -0
  341. package/node_modules/lodash/_baseGetTag.js +28 -0
  342. package/node_modules/lodash/_baseGt.js +14 -0
  343. package/node_modules/lodash/_baseHas.js +19 -0
  344. package/node_modules/lodash/_baseHasIn.js +13 -0
  345. package/node_modules/lodash/_baseInRange.js +18 -0
  346. package/node_modules/lodash/_baseIndexOf.js +20 -0
  347. package/node_modules/lodash/_baseIndexOfWith.js +23 -0
  348. package/node_modules/lodash/_baseIntersection.js +74 -0
  349. package/node_modules/lodash/_baseInverter.js +21 -0
  350. package/node_modules/lodash/_baseInvoke.js +24 -0
  351. package/node_modules/lodash/_baseIsArguments.js +18 -0
  352. package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  353. package/node_modules/lodash/_baseIsDate.js +18 -0
  354. package/node_modules/lodash/_baseIsEqual.js +28 -0
  355. package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
  356. package/node_modules/lodash/_baseIsMap.js +18 -0
  357. package/node_modules/lodash/_baseIsMatch.js +62 -0
  358. package/node_modules/lodash/_baseIsNaN.js +12 -0
  359. package/node_modules/lodash/_baseIsNative.js +47 -0
  360. package/node_modules/lodash/_baseIsRegExp.js +18 -0
  361. package/node_modules/lodash/_baseIsSet.js +18 -0
  362. package/node_modules/lodash/_baseIsTypedArray.js +60 -0
  363. package/node_modules/lodash/_baseIteratee.js +31 -0
  364. package/node_modules/lodash/_baseKeys.js +30 -0
  365. package/node_modules/lodash/_baseKeysIn.js +33 -0
  366. package/node_modules/lodash/_baseLodash.js +10 -0
  367. package/node_modules/lodash/_baseLt.js +14 -0
  368. package/node_modules/lodash/_baseMap.js +22 -0
  369. package/node_modules/lodash/_baseMatches.js +22 -0
  370. package/node_modules/lodash/_baseMatchesProperty.js +33 -0
  371. package/node_modules/lodash/_baseMean.js +20 -0
  372. package/node_modules/lodash/_baseMerge.js +42 -0
  373. package/node_modules/lodash/_baseMergeDeep.js +94 -0
  374. package/node_modules/lodash/_baseNth.js +20 -0
  375. package/node_modules/lodash/_baseOrderBy.js +49 -0
  376. package/node_modules/lodash/_basePick.js +19 -0
  377. package/node_modules/lodash/_basePickBy.js +30 -0
  378. package/node_modules/lodash/_baseProperty.js +14 -0
  379. package/node_modules/lodash/_basePropertyDeep.js +16 -0
  380. package/node_modules/lodash/_basePropertyOf.js +14 -0
  381. package/node_modules/lodash/_basePullAll.js +51 -0
  382. package/node_modules/lodash/_basePullAt.js +37 -0
  383. package/node_modules/lodash/_baseRandom.js +18 -0
  384. package/node_modules/lodash/_baseRange.js +28 -0
  385. package/node_modules/lodash/_baseReduce.js +23 -0
  386. package/node_modules/lodash/_baseRepeat.js +35 -0
  387. package/node_modules/lodash/_baseRest.js +17 -0
  388. package/node_modules/lodash/_baseSample.js +15 -0
  389. package/node_modules/lodash/_baseSampleSize.js +18 -0
  390. package/node_modules/lodash/_baseSet.js +51 -0
  391. package/node_modules/lodash/_baseSetData.js +17 -0
  392. package/node_modules/lodash/_baseSetToString.js +22 -0
  393. package/node_modules/lodash/_baseShuffle.js +15 -0
  394. package/node_modules/lodash/_baseSlice.js +31 -0
  395. package/node_modules/lodash/_baseSome.js +22 -0
  396. package/node_modules/lodash/_baseSortBy.js +21 -0
  397. package/node_modules/lodash/_baseSortedIndex.js +42 -0
  398. package/node_modules/lodash/_baseSortedIndexBy.js +67 -0
  399. package/node_modules/lodash/_baseSortedUniq.js +30 -0
  400. package/node_modules/lodash/_baseSum.js +24 -0
  401. package/node_modules/lodash/_baseTimes.js +20 -0
  402. package/node_modules/lodash/_baseToNumber.js +24 -0
  403. package/node_modules/lodash/_baseToPairs.js +18 -0
  404. package/node_modules/lodash/_baseToString.js +37 -0
  405. package/node_modules/lodash/_baseTrim.js +19 -0
  406. package/node_modules/lodash/_baseUnary.js +14 -0
  407. package/node_modules/lodash/_baseUniq.js +72 -0
  408. package/node_modules/lodash/_baseUnset.js +20 -0
  409. package/node_modules/lodash/_baseUpdate.js +18 -0
  410. package/node_modules/lodash/_baseValues.js +19 -0
  411. package/node_modules/lodash/_baseWhile.js +26 -0
  412. package/node_modules/lodash/_baseWrapperValue.js +25 -0
  413. package/node_modules/lodash/_baseXor.js +36 -0
  414. package/node_modules/lodash/_baseZipObject.js +23 -0
  415. package/node_modules/lodash/_cacheHas.js +13 -0
  416. package/node_modules/lodash/_castArrayLikeObject.js +14 -0
  417. package/node_modules/lodash/_castFunction.js +14 -0
  418. package/node_modules/lodash/_castPath.js +21 -0
  419. package/node_modules/lodash/_castRest.js +14 -0
  420. package/node_modules/lodash/_castSlice.js +18 -0
  421. package/node_modules/lodash/_charsEndIndex.js +19 -0
  422. package/node_modules/lodash/_charsStartIndex.js +20 -0
  423. package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  424. package/node_modules/lodash/_cloneBuffer.js +35 -0
  425. package/node_modules/lodash/_cloneDataView.js +16 -0
  426. package/node_modules/lodash/_cloneRegExp.js +17 -0
  427. package/node_modules/lodash/_cloneSymbol.js +18 -0
  428. package/node_modules/lodash/_cloneTypedArray.js +16 -0
  429. package/node_modules/lodash/_compareAscending.js +41 -0
  430. package/node_modules/lodash/_compareMultiple.js +44 -0
  431. package/node_modules/lodash/_composeArgs.js +39 -0
  432. package/node_modules/lodash/_composeArgsRight.js +41 -0
  433. package/node_modules/lodash/_copyArray.js +20 -0
  434. package/node_modules/lodash/_copyObject.js +40 -0
  435. package/node_modules/lodash/_copySymbols.js +16 -0
  436. package/node_modules/lodash/_copySymbolsIn.js +16 -0
  437. package/node_modules/lodash/_coreJsData.js +6 -0
  438. package/node_modules/lodash/_countHolders.js +21 -0
  439. package/node_modules/lodash/_createAggregator.js +23 -0
  440. package/node_modules/lodash/_createAssigner.js +37 -0
  441. package/node_modules/lodash/_createBaseEach.js +32 -0
  442. package/node_modules/lodash/_createBaseFor.js +25 -0
  443. package/node_modules/lodash/_createBind.js +28 -0
  444. package/node_modules/lodash/_createCaseFirst.js +33 -0
  445. package/node_modules/lodash/_createCompounder.js +24 -0
  446. package/node_modules/lodash/_createCtor.js +37 -0
  447. package/node_modules/lodash/_createCurry.js +46 -0
  448. package/node_modules/lodash/_createFind.js +25 -0
  449. package/node_modules/lodash/_createFlow.js +78 -0
  450. package/node_modules/lodash/_createHybrid.js +92 -0
  451. package/node_modules/lodash/_createInverter.js +17 -0
  452. package/node_modules/lodash/_createMathOperation.js +38 -0
  453. package/node_modules/lodash/_createOver.js +27 -0
  454. package/node_modules/lodash/_createPadding.js +33 -0
  455. package/node_modules/lodash/_createPartial.js +43 -0
  456. package/node_modules/lodash/_createRange.js +30 -0
  457. package/node_modules/lodash/_createRecurry.js +56 -0
  458. package/node_modules/lodash/_createRelationalOperation.js +20 -0
  459. package/node_modules/lodash/_createRound.js +35 -0
  460. package/node_modules/lodash/_createSet.js +19 -0
  461. package/node_modules/lodash/_createToPairs.js +30 -0
  462. package/node_modules/lodash/_createWrap.js +106 -0
  463. package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
  464. package/node_modules/lodash/_customDefaultsMerge.js +28 -0
  465. package/node_modules/lodash/_customOmitClone.js +16 -0
  466. package/node_modules/lodash/_deburrLetter.js +71 -0
  467. package/node_modules/lodash/_defineProperty.js +11 -0
  468. package/node_modules/lodash/_equalArrays.js +84 -0
  469. package/node_modules/lodash/_equalByTag.js +112 -0
  470. package/node_modules/lodash/_equalObjects.js +90 -0
  471. package/node_modules/lodash/_escapeHtmlChar.js +21 -0
  472. package/node_modules/lodash/_escapeStringChar.js +22 -0
  473. package/node_modules/lodash/_flatRest.js +16 -0
  474. package/node_modules/lodash/_freeGlobal.js +4 -0
  475. package/node_modules/lodash/_getAllKeys.js +16 -0
  476. package/node_modules/lodash/_getAllKeysIn.js +17 -0
  477. package/node_modules/lodash/_getData.js +15 -0
  478. package/node_modules/lodash/_getFuncName.js +31 -0
  479. package/node_modules/lodash/_getHolder.js +13 -0
  480. package/node_modules/lodash/_getMapData.js +18 -0
  481. package/node_modules/lodash/_getMatchData.js +24 -0
  482. package/node_modules/lodash/_getNative.js +17 -0
  483. package/node_modules/lodash/_getPrototype.js +6 -0
  484. package/node_modules/lodash/_getRawTag.js +46 -0
  485. package/node_modules/lodash/_getSymbols.js +30 -0
  486. package/node_modules/lodash/_getSymbolsIn.js +25 -0
  487. package/node_modules/lodash/_getTag.js +58 -0
  488. package/node_modules/lodash/_getValue.js +13 -0
  489. package/node_modules/lodash/_getView.js +33 -0
  490. package/node_modules/lodash/_getWrapDetails.js +17 -0
  491. package/node_modules/lodash/_hasPath.js +39 -0
  492. package/node_modules/lodash/_hasUnicode.js +26 -0
  493. package/node_modules/lodash/_hasUnicodeWord.js +15 -0
  494. package/node_modules/lodash/_hashClear.js +15 -0
  495. package/node_modules/lodash/_hashDelete.js +17 -0
  496. package/node_modules/lodash/_hashGet.js +30 -0
  497. package/node_modules/lodash/_hashHas.js +23 -0
  498. package/node_modules/lodash/_hashSet.js +23 -0
  499. package/node_modules/lodash/_initCloneArray.js +26 -0
  500. package/node_modules/lodash/_initCloneByTag.js +77 -0
  501. package/node_modules/lodash/_initCloneObject.js +18 -0
  502. package/node_modules/lodash/_insertWrapDetails.js +23 -0
  503. package/node_modules/lodash/_isFlattenable.js +20 -0
  504. package/node_modules/lodash/_isIndex.js +25 -0
  505. package/node_modules/lodash/_isIterateeCall.js +30 -0
  506. package/node_modules/lodash/_isKey.js +29 -0
  507. package/node_modules/lodash/_isKeyable.js +15 -0
  508. package/node_modules/lodash/_isLaziable.js +28 -0
  509. package/node_modules/lodash/_isMaskable.js +14 -0
  510. package/node_modules/lodash/_isMasked.js +20 -0
  511. package/node_modules/lodash/_isPrototype.js +18 -0
  512. package/node_modules/lodash/_isStrictComparable.js +15 -0
  513. package/node_modules/lodash/_iteratorToArray.js +18 -0
  514. package/node_modules/lodash/_lazyClone.js +23 -0
  515. package/node_modules/lodash/_lazyReverse.js +23 -0
  516. package/node_modules/lodash/_lazyValue.js +69 -0
  517. package/node_modules/lodash/_listCacheClear.js +13 -0
  518. package/node_modules/lodash/_listCacheDelete.js +35 -0
  519. package/node_modules/lodash/_listCacheGet.js +19 -0
  520. package/node_modules/lodash/_listCacheHas.js +16 -0
  521. package/node_modules/lodash/_listCacheSet.js +26 -0
  522. package/node_modules/lodash/_mapCacheClear.js +21 -0
  523. package/node_modules/lodash/_mapCacheDelete.js +18 -0
  524. package/node_modules/lodash/_mapCacheGet.js +16 -0
  525. package/node_modules/lodash/_mapCacheHas.js +16 -0
  526. package/node_modules/lodash/_mapCacheSet.js +22 -0
  527. package/node_modules/lodash/_mapToArray.js +18 -0
  528. package/node_modules/lodash/_matchesStrictComparable.js +20 -0
  529. package/node_modules/lodash/_memoizeCapped.js +26 -0
  530. package/node_modules/lodash/_mergeData.js +90 -0
  531. package/node_modules/lodash/_metaMap.js +6 -0
  532. package/node_modules/lodash/_nativeCreate.js +6 -0
  533. package/node_modules/lodash/_nativeKeys.js +6 -0
  534. package/node_modules/lodash/_nativeKeysIn.js +20 -0
  535. package/node_modules/lodash/_nodeUtil.js +30 -0
  536. package/node_modules/lodash/_objectToString.js +22 -0
  537. package/node_modules/lodash/_overArg.js +15 -0
  538. package/node_modules/lodash/_overRest.js +36 -0
  539. package/node_modules/lodash/_parent.js +16 -0
  540. package/node_modules/lodash/_reEscape.js +4 -0
  541. package/node_modules/lodash/_reEvaluate.js +4 -0
  542. package/node_modules/lodash/_reInterpolate.js +4 -0
  543. package/node_modules/lodash/_realNames.js +4 -0
  544. package/node_modules/lodash/_reorder.js +29 -0
  545. package/node_modules/lodash/_replaceHolders.js +29 -0
  546. package/node_modules/lodash/_root.js +9 -0
  547. package/node_modules/lodash/_safeGet.js +21 -0
  548. package/node_modules/lodash/_setCacheAdd.js +19 -0
  549. package/node_modules/lodash/_setCacheHas.js +14 -0
  550. package/node_modules/lodash/_setData.js +20 -0
  551. package/node_modules/lodash/_setToArray.js +18 -0
  552. package/node_modules/lodash/_setToPairs.js +18 -0
  553. package/node_modules/lodash/_setToString.js +14 -0
  554. package/node_modules/lodash/_setWrapToString.js +21 -0
  555. package/node_modules/lodash/_shortOut.js +37 -0
  556. package/node_modules/lodash/_shuffleSelf.js +28 -0
  557. package/node_modules/lodash/_stackClear.js +15 -0
  558. package/node_modules/lodash/_stackDelete.js +18 -0
  559. package/node_modules/lodash/_stackGet.js +14 -0
  560. package/node_modules/lodash/_stackHas.js +14 -0
  561. package/node_modules/lodash/_stackSet.js +34 -0
  562. package/node_modules/lodash/_strictIndexOf.js +23 -0
  563. package/node_modules/lodash/_strictLastIndexOf.js +21 -0
  564. package/node_modules/lodash/_stringSize.js +18 -0
  565. package/node_modules/lodash/_stringToArray.js +18 -0
  566. package/node_modules/lodash/_stringToPath.js +27 -0
  567. package/node_modules/lodash/_toKey.js +21 -0
  568. package/node_modules/lodash/_toSource.js +26 -0
  569. package/node_modules/lodash/_trimmedEndIndex.js +19 -0
  570. package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  571. package/node_modules/lodash/_unicodeSize.js +44 -0
  572. package/node_modules/lodash/_unicodeToArray.js +40 -0
  573. package/node_modules/lodash/_unicodeWords.js +69 -0
  574. package/node_modules/lodash/_updateWrapDetails.js +46 -0
  575. package/node_modules/lodash/_wrapperClone.js +23 -0
  576. package/node_modules/lodash/add.js +22 -0
  577. package/node_modules/lodash/after.js +42 -0
  578. package/node_modules/lodash/array.js +67 -0
  579. package/node_modules/lodash/ary.js +29 -0
  580. package/node_modules/lodash/assign.js +58 -0
  581. package/node_modules/lodash/assignIn.js +40 -0
  582. package/node_modules/lodash/assignInWith.js +38 -0
  583. package/node_modules/lodash/assignWith.js +37 -0
  584. package/node_modules/lodash/at.js +23 -0
  585. package/node_modules/lodash/attempt.js +35 -0
  586. package/node_modules/lodash/before.js +40 -0
  587. package/node_modules/lodash/bind.js +57 -0
  588. package/node_modules/lodash/bindAll.js +41 -0
  589. package/node_modules/lodash/bindKey.js +68 -0
  590. package/node_modules/lodash/camelCase.js +29 -0
  591. package/node_modules/lodash/capitalize.js +23 -0
  592. package/node_modules/lodash/castArray.js +44 -0
  593. package/node_modules/lodash/ceil.js +26 -0
  594. package/node_modules/lodash/chain.js +38 -0
  595. package/node_modules/lodash/chunk.js +50 -0
  596. package/node_modules/lodash/clamp.js +39 -0
  597. package/node_modules/lodash/clone.js +36 -0
  598. package/node_modules/lodash/cloneDeep.js +29 -0
  599. package/node_modules/lodash/cloneDeepWith.js +40 -0
  600. package/node_modules/lodash/cloneWith.js +42 -0
  601. package/node_modules/lodash/collection.js +30 -0
  602. package/node_modules/lodash/commit.js +33 -0
  603. package/node_modules/lodash/compact.js +31 -0
  604. package/node_modules/lodash/concat.js +43 -0
  605. package/node_modules/lodash/cond.js +60 -0
  606. package/node_modules/lodash/conforms.js +35 -0
  607. package/node_modules/lodash/conformsTo.js +32 -0
  608. package/node_modules/lodash/constant.js +26 -0
  609. package/node_modules/lodash/core.js +3877 -0
  610. package/node_modules/lodash/core.min.js +29 -0
  611. package/node_modules/lodash/countBy.js +40 -0
  612. package/node_modules/lodash/create.js +43 -0
  613. package/node_modules/lodash/curry.js +57 -0
  614. package/node_modules/lodash/curryRight.js +54 -0
  615. package/node_modules/lodash/date.js +3 -0
  616. package/node_modules/lodash/debounce.js +191 -0
  617. package/node_modules/lodash/deburr.js +45 -0
  618. package/node_modules/lodash/defaultTo.js +25 -0
  619. package/node_modules/lodash/defaults.js +64 -0
  620. package/node_modules/lodash/defaultsDeep.js +30 -0
  621. package/node_modules/lodash/defer.js +26 -0
  622. package/node_modules/lodash/delay.js +28 -0
  623. package/node_modules/lodash/difference.js +33 -0
  624. package/node_modules/lodash/differenceBy.js +44 -0
  625. package/node_modules/lodash/differenceWith.js +40 -0
  626. package/node_modules/lodash/divide.js +22 -0
  627. package/node_modules/lodash/drop.js +38 -0
  628. package/node_modules/lodash/dropRight.js +39 -0
  629. package/node_modules/lodash/dropRightWhile.js +45 -0
  630. package/node_modules/lodash/dropWhile.js +45 -0
  631. package/node_modules/lodash/each.js +1 -0
  632. package/node_modules/lodash/eachRight.js +1 -0
  633. package/node_modules/lodash/endsWith.js +43 -0
  634. package/node_modules/lodash/entries.js +1 -0
  635. package/node_modules/lodash/entriesIn.js +1 -0
  636. package/node_modules/lodash/eq.js +37 -0
  637. package/node_modules/lodash/escape.js +43 -0
  638. package/node_modules/lodash/escapeRegExp.js +32 -0
  639. package/node_modules/lodash/every.js +56 -0
  640. package/node_modules/lodash/extend.js +1 -0
  641. package/node_modules/lodash/extendWith.js +1 -0
  642. package/node_modules/lodash/fill.js +45 -0
  643. package/node_modules/lodash/filter.js +52 -0
  644. package/node_modules/lodash/find.js +42 -0
  645. package/node_modules/lodash/findIndex.js +55 -0
  646. package/node_modules/lodash/findKey.js +44 -0
  647. package/node_modules/lodash/findLast.js +25 -0
  648. package/node_modules/lodash/findLastIndex.js +59 -0
  649. package/node_modules/lodash/findLastKey.js +44 -0
  650. package/node_modules/lodash/first.js +1 -0
  651. package/node_modules/lodash/flake.lock +40 -0
  652. package/node_modules/lodash/flake.nix +20 -0
  653. package/node_modules/lodash/flatMap.js +29 -0
  654. package/node_modules/lodash/flatMapDeep.js +31 -0
  655. package/node_modules/lodash/flatMapDepth.js +31 -0
  656. package/node_modules/lodash/flatten.js +22 -0
  657. package/node_modules/lodash/flattenDeep.js +25 -0
  658. package/node_modules/lodash/flattenDepth.js +33 -0
  659. package/node_modules/lodash/flip.js +28 -0
  660. package/node_modules/lodash/floor.js +26 -0
  661. package/node_modules/lodash/flow.js +27 -0
  662. package/node_modules/lodash/flowRight.js +26 -0
  663. package/node_modules/lodash/forEach.js +41 -0
  664. package/node_modules/lodash/forEachRight.js +31 -0
  665. package/node_modules/lodash/forIn.js +39 -0
  666. package/node_modules/lodash/forInRight.js +37 -0
  667. package/node_modules/lodash/forOwn.js +36 -0
  668. package/node_modules/lodash/forOwnRight.js +34 -0
  669. package/node_modules/lodash/fp/F.js +1 -0
  670. package/node_modules/lodash/fp/T.js +1 -0
  671. package/node_modules/lodash/fp/__.js +1 -0
  672. package/node_modules/lodash/fp/_baseConvert.js +569 -0
  673. package/node_modules/lodash/fp/_convertBrowser.js +18 -0
  674. package/node_modules/lodash/fp/_falseOptions.js +7 -0
  675. package/node_modules/lodash/fp/_mapping.js +358 -0
  676. package/node_modules/lodash/fp/_util.js +16 -0
  677. package/node_modules/lodash/fp/add.js +5 -0
  678. package/node_modules/lodash/fp/after.js +5 -0
  679. package/node_modules/lodash/fp/all.js +1 -0
  680. package/node_modules/lodash/fp/allPass.js +1 -0
  681. package/node_modules/lodash/fp/always.js +1 -0
  682. package/node_modules/lodash/fp/any.js +1 -0
  683. package/node_modules/lodash/fp/anyPass.js +1 -0
  684. package/node_modules/lodash/fp/apply.js +1 -0
  685. package/node_modules/lodash/fp/array.js +2 -0
  686. package/node_modules/lodash/fp/ary.js +5 -0
  687. package/node_modules/lodash/fp/assign.js +5 -0
  688. package/node_modules/lodash/fp/assignAll.js +5 -0
  689. package/node_modules/lodash/fp/assignAllWith.js +5 -0
  690. package/node_modules/lodash/fp/assignIn.js +5 -0
  691. package/node_modules/lodash/fp/assignInAll.js +5 -0
  692. package/node_modules/lodash/fp/assignInAllWith.js +5 -0
  693. package/node_modules/lodash/fp/assignInWith.js +5 -0
  694. package/node_modules/lodash/fp/assignWith.js +5 -0
  695. package/node_modules/lodash/fp/assoc.js +1 -0
  696. package/node_modules/lodash/fp/assocPath.js +1 -0
  697. package/node_modules/lodash/fp/at.js +5 -0
  698. package/node_modules/lodash/fp/attempt.js +5 -0
  699. package/node_modules/lodash/fp/before.js +5 -0
  700. package/node_modules/lodash/fp/bind.js +5 -0
  701. package/node_modules/lodash/fp/bindAll.js +5 -0
  702. package/node_modules/lodash/fp/bindKey.js +5 -0
  703. package/node_modules/lodash/fp/camelCase.js +5 -0
  704. package/node_modules/lodash/fp/capitalize.js +5 -0
  705. package/node_modules/lodash/fp/castArray.js +5 -0
  706. package/node_modules/lodash/fp/ceil.js +5 -0
  707. package/node_modules/lodash/fp/chain.js +5 -0
  708. package/node_modules/lodash/fp/chunk.js +5 -0
  709. package/node_modules/lodash/fp/clamp.js +5 -0
  710. package/node_modules/lodash/fp/clone.js +5 -0
  711. package/node_modules/lodash/fp/cloneDeep.js +5 -0
  712. package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  713. package/node_modules/lodash/fp/cloneWith.js +5 -0
  714. package/node_modules/lodash/fp/collection.js +2 -0
  715. package/node_modules/lodash/fp/commit.js +5 -0
  716. package/node_modules/lodash/fp/compact.js +5 -0
  717. package/node_modules/lodash/fp/complement.js +1 -0
  718. package/node_modules/lodash/fp/compose.js +1 -0
  719. package/node_modules/lodash/fp/concat.js +5 -0
  720. package/node_modules/lodash/fp/cond.js +5 -0
  721. package/node_modules/lodash/fp/conforms.js +1 -0
  722. package/node_modules/lodash/fp/conformsTo.js +5 -0
  723. package/node_modules/lodash/fp/constant.js +5 -0
  724. package/node_modules/lodash/fp/contains.js +1 -0
  725. package/node_modules/lodash/fp/convert.js +18 -0
  726. package/node_modules/lodash/fp/countBy.js +5 -0
  727. package/node_modules/lodash/fp/create.js +5 -0
  728. package/node_modules/lodash/fp/curry.js +5 -0
  729. package/node_modules/lodash/fp/curryN.js +5 -0
  730. package/node_modules/lodash/fp/curryRight.js +5 -0
  731. package/node_modules/lodash/fp/curryRightN.js +5 -0
  732. package/node_modules/lodash/fp/date.js +2 -0
  733. package/node_modules/lodash/fp/debounce.js +5 -0
  734. package/node_modules/lodash/fp/deburr.js +5 -0
  735. package/node_modules/lodash/fp/defaultTo.js +5 -0
  736. package/node_modules/lodash/fp/defaults.js +5 -0
  737. package/node_modules/lodash/fp/defaultsAll.js +5 -0
  738. package/node_modules/lodash/fp/defaultsDeep.js +5 -0
  739. package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  740. package/node_modules/lodash/fp/defer.js +5 -0
  741. package/node_modules/lodash/fp/delay.js +5 -0
  742. package/node_modules/lodash/fp/difference.js +5 -0
  743. package/node_modules/lodash/fp/differenceBy.js +5 -0
  744. package/node_modules/lodash/fp/differenceWith.js +5 -0
  745. package/node_modules/lodash/fp/dissoc.js +1 -0
  746. package/node_modules/lodash/fp/dissocPath.js +1 -0
  747. package/node_modules/lodash/fp/divide.js +5 -0
  748. package/node_modules/lodash/fp/drop.js +5 -0
  749. package/node_modules/lodash/fp/dropLast.js +1 -0
  750. package/node_modules/lodash/fp/dropLastWhile.js +1 -0
  751. package/node_modules/lodash/fp/dropRight.js +5 -0
  752. package/node_modules/lodash/fp/dropRightWhile.js +5 -0
  753. package/node_modules/lodash/fp/dropWhile.js +5 -0
  754. package/node_modules/lodash/fp/each.js +1 -0
  755. package/node_modules/lodash/fp/eachRight.js +1 -0
  756. package/node_modules/lodash/fp/endsWith.js +5 -0
  757. package/node_modules/lodash/fp/entries.js +1 -0
  758. package/node_modules/lodash/fp/entriesIn.js +1 -0
  759. package/node_modules/lodash/fp/eq.js +5 -0
  760. package/node_modules/lodash/fp/equals.js +1 -0
  761. package/node_modules/lodash/fp/escape.js +5 -0
  762. package/node_modules/lodash/fp/escapeRegExp.js +5 -0
  763. package/node_modules/lodash/fp/every.js +5 -0
  764. package/node_modules/lodash/fp/extend.js +1 -0
  765. package/node_modules/lodash/fp/extendAll.js +1 -0
  766. package/node_modules/lodash/fp/extendAllWith.js +1 -0
  767. package/node_modules/lodash/fp/extendWith.js +1 -0
  768. package/node_modules/lodash/fp/fill.js +5 -0
  769. package/node_modules/lodash/fp/filter.js +5 -0
  770. package/node_modules/lodash/fp/find.js +5 -0
  771. package/node_modules/lodash/fp/findFrom.js +5 -0
  772. package/node_modules/lodash/fp/findIndex.js +5 -0
  773. package/node_modules/lodash/fp/findIndexFrom.js +5 -0
  774. package/node_modules/lodash/fp/findKey.js +5 -0
  775. package/node_modules/lodash/fp/findLast.js +5 -0
  776. package/node_modules/lodash/fp/findLastFrom.js +5 -0
  777. package/node_modules/lodash/fp/findLastIndex.js +5 -0
  778. package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  779. package/node_modules/lodash/fp/findLastKey.js +5 -0
  780. package/node_modules/lodash/fp/first.js +1 -0
  781. package/node_modules/lodash/fp/flatMap.js +5 -0
  782. package/node_modules/lodash/fp/flatMapDeep.js +5 -0
  783. package/node_modules/lodash/fp/flatMapDepth.js +5 -0
  784. package/node_modules/lodash/fp/flatten.js +5 -0
  785. package/node_modules/lodash/fp/flattenDeep.js +5 -0
  786. package/node_modules/lodash/fp/flattenDepth.js +5 -0
  787. package/node_modules/lodash/fp/flip.js +5 -0
  788. package/node_modules/lodash/fp/floor.js +5 -0
  789. package/node_modules/lodash/fp/flow.js +5 -0
  790. package/node_modules/lodash/fp/flowRight.js +5 -0
  791. package/node_modules/lodash/fp/forEach.js +5 -0
  792. package/node_modules/lodash/fp/forEachRight.js +5 -0
  793. package/node_modules/lodash/fp/forIn.js +5 -0
  794. package/node_modules/lodash/fp/forInRight.js +5 -0
  795. package/node_modules/lodash/fp/forOwn.js +5 -0
  796. package/node_modules/lodash/fp/forOwnRight.js +5 -0
  797. package/node_modules/lodash/fp/fromPairs.js +5 -0
  798. package/node_modules/lodash/fp/function.js +2 -0
  799. package/node_modules/lodash/fp/functions.js +5 -0
  800. package/node_modules/lodash/fp/functionsIn.js +5 -0
  801. package/node_modules/lodash/fp/get.js +5 -0
  802. package/node_modules/lodash/fp/getOr.js +5 -0
  803. package/node_modules/lodash/fp/groupBy.js +5 -0
  804. package/node_modules/lodash/fp/gt.js +5 -0
  805. package/node_modules/lodash/fp/gte.js +5 -0
  806. package/node_modules/lodash/fp/has.js +5 -0
  807. package/node_modules/lodash/fp/hasIn.js +5 -0
  808. package/node_modules/lodash/fp/head.js +5 -0
  809. package/node_modules/lodash/fp/identical.js +1 -0
  810. package/node_modules/lodash/fp/identity.js +5 -0
  811. package/node_modules/lodash/fp/inRange.js +5 -0
  812. package/node_modules/lodash/fp/includes.js +5 -0
  813. package/node_modules/lodash/fp/includesFrom.js +5 -0
  814. package/node_modules/lodash/fp/indexBy.js +1 -0
  815. package/node_modules/lodash/fp/indexOf.js +5 -0
  816. package/node_modules/lodash/fp/indexOfFrom.js +5 -0
  817. package/node_modules/lodash/fp/init.js +1 -0
  818. package/node_modules/lodash/fp/initial.js +5 -0
  819. package/node_modules/lodash/fp/intersection.js +5 -0
  820. package/node_modules/lodash/fp/intersectionBy.js +5 -0
  821. package/node_modules/lodash/fp/intersectionWith.js +5 -0
  822. package/node_modules/lodash/fp/invert.js +5 -0
  823. package/node_modules/lodash/fp/invertBy.js +5 -0
  824. package/node_modules/lodash/fp/invertObj.js +1 -0
  825. package/node_modules/lodash/fp/invoke.js +5 -0
  826. package/node_modules/lodash/fp/invokeArgs.js +5 -0
  827. package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  828. package/node_modules/lodash/fp/invokeMap.js +5 -0
  829. package/node_modules/lodash/fp/isArguments.js +5 -0
  830. package/node_modules/lodash/fp/isArray.js +5 -0
  831. package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  832. package/node_modules/lodash/fp/isArrayLike.js +5 -0
  833. package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  834. package/node_modules/lodash/fp/isBoolean.js +5 -0
  835. package/node_modules/lodash/fp/isBuffer.js +5 -0
  836. package/node_modules/lodash/fp/isDate.js +5 -0
  837. package/node_modules/lodash/fp/isElement.js +5 -0
  838. package/node_modules/lodash/fp/isEmpty.js +5 -0
  839. package/node_modules/lodash/fp/isEqual.js +5 -0
  840. package/node_modules/lodash/fp/isEqualWith.js +5 -0
  841. package/node_modules/lodash/fp/isError.js +5 -0
  842. package/node_modules/lodash/fp/isFinite.js +5 -0
  843. package/node_modules/lodash/fp/isFunction.js +5 -0
  844. package/node_modules/lodash/fp/isInteger.js +5 -0
  845. package/node_modules/lodash/fp/isLength.js +5 -0
  846. package/node_modules/lodash/fp/isMap.js +5 -0
  847. package/node_modules/lodash/fp/isMatch.js +5 -0
  848. package/node_modules/lodash/fp/isMatchWith.js +5 -0
  849. package/node_modules/lodash/fp/isNaN.js +5 -0
  850. package/node_modules/lodash/fp/isNative.js +5 -0
  851. package/node_modules/lodash/fp/isNil.js +5 -0
  852. package/node_modules/lodash/fp/isNull.js +5 -0
  853. package/node_modules/lodash/fp/isNumber.js +5 -0
  854. package/node_modules/lodash/fp/isObject.js +5 -0
  855. package/node_modules/lodash/fp/isObjectLike.js +5 -0
  856. package/node_modules/lodash/fp/isPlainObject.js +5 -0
  857. package/node_modules/lodash/fp/isRegExp.js +5 -0
  858. package/node_modules/lodash/fp/isSafeInteger.js +5 -0
  859. package/node_modules/lodash/fp/isSet.js +5 -0
  860. package/node_modules/lodash/fp/isString.js +5 -0
  861. package/node_modules/lodash/fp/isSymbol.js +5 -0
  862. package/node_modules/lodash/fp/isTypedArray.js +5 -0
  863. package/node_modules/lodash/fp/isUndefined.js +5 -0
  864. package/node_modules/lodash/fp/isWeakMap.js +5 -0
  865. package/node_modules/lodash/fp/isWeakSet.js +5 -0
  866. package/node_modules/lodash/fp/iteratee.js +5 -0
  867. package/node_modules/lodash/fp/join.js +5 -0
  868. package/node_modules/lodash/fp/juxt.js +1 -0
  869. package/node_modules/lodash/fp/kebabCase.js +5 -0
  870. package/node_modules/lodash/fp/keyBy.js +5 -0
  871. package/node_modules/lodash/fp/keys.js +5 -0
  872. package/node_modules/lodash/fp/keysIn.js +5 -0
  873. package/node_modules/lodash/fp/lang.js +2 -0
  874. package/node_modules/lodash/fp/last.js +5 -0
  875. package/node_modules/lodash/fp/lastIndexOf.js +5 -0
  876. package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  877. package/node_modules/lodash/fp/lowerCase.js +5 -0
  878. package/node_modules/lodash/fp/lowerFirst.js +5 -0
  879. package/node_modules/lodash/fp/lt.js +5 -0
  880. package/node_modules/lodash/fp/lte.js +5 -0
  881. package/node_modules/lodash/fp/map.js +5 -0
  882. package/node_modules/lodash/fp/mapKeys.js +5 -0
  883. package/node_modules/lodash/fp/mapValues.js +5 -0
  884. package/node_modules/lodash/fp/matches.js +1 -0
  885. package/node_modules/lodash/fp/matchesProperty.js +5 -0
  886. package/node_modules/lodash/fp/math.js +2 -0
  887. package/node_modules/lodash/fp/max.js +5 -0
  888. package/node_modules/lodash/fp/maxBy.js +5 -0
  889. package/node_modules/lodash/fp/mean.js +5 -0
  890. package/node_modules/lodash/fp/meanBy.js +5 -0
  891. package/node_modules/lodash/fp/memoize.js +5 -0
  892. package/node_modules/lodash/fp/merge.js +5 -0
  893. package/node_modules/lodash/fp/mergeAll.js +5 -0
  894. package/node_modules/lodash/fp/mergeAllWith.js +5 -0
  895. package/node_modules/lodash/fp/mergeWith.js +5 -0
  896. package/node_modules/lodash/fp/method.js +5 -0
  897. package/node_modules/lodash/fp/methodOf.js +5 -0
  898. package/node_modules/lodash/fp/min.js +5 -0
  899. package/node_modules/lodash/fp/minBy.js +5 -0
  900. package/node_modules/lodash/fp/mixin.js +5 -0
  901. package/node_modules/lodash/fp/multiply.js +5 -0
  902. package/node_modules/lodash/fp/nAry.js +1 -0
  903. package/node_modules/lodash/fp/negate.js +5 -0
  904. package/node_modules/lodash/fp/next.js +5 -0
  905. package/node_modules/lodash/fp/noop.js +5 -0
  906. package/node_modules/lodash/fp/now.js +5 -0
  907. package/node_modules/lodash/fp/nth.js +5 -0
  908. package/node_modules/lodash/fp/nthArg.js +5 -0
  909. package/node_modules/lodash/fp/number.js +2 -0
  910. package/node_modules/lodash/fp/object.js +2 -0
  911. package/node_modules/lodash/fp/omit.js +5 -0
  912. package/node_modules/lodash/fp/omitAll.js +1 -0
  913. package/node_modules/lodash/fp/omitBy.js +5 -0
  914. package/node_modules/lodash/fp/once.js +5 -0
  915. package/node_modules/lodash/fp/orderBy.js +5 -0
  916. package/node_modules/lodash/fp/over.js +5 -0
  917. package/node_modules/lodash/fp/overArgs.js +5 -0
  918. package/node_modules/lodash/fp/overEvery.js +5 -0
  919. package/node_modules/lodash/fp/overSome.js +5 -0
  920. package/node_modules/lodash/fp/pad.js +5 -0
  921. package/node_modules/lodash/fp/padChars.js +5 -0
  922. package/node_modules/lodash/fp/padCharsEnd.js +5 -0
  923. package/node_modules/lodash/fp/padCharsStart.js +5 -0
  924. package/node_modules/lodash/fp/padEnd.js +5 -0
  925. package/node_modules/lodash/fp/padStart.js +5 -0
  926. package/node_modules/lodash/fp/parseInt.js +5 -0
  927. package/node_modules/lodash/fp/partial.js +5 -0
  928. package/node_modules/lodash/fp/partialRight.js +5 -0
  929. package/node_modules/lodash/fp/partition.js +5 -0
  930. package/node_modules/lodash/fp/path.js +1 -0
  931. package/node_modules/lodash/fp/pathEq.js +1 -0
  932. package/node_modules/lodash/fp/pathOr.js +1 -0
  933. package/node_modules/lodash/fp/paths.js +1 -0
  934. package/node_modules/lodash/fp/pick.js +5 -0
  935. package/node_modules/lodash/fp/pickAll.js +1 -0
  936. package/node_modules/lodash/fp/pickBy.js +5 -0
  937. package/node_modules/lodash/fp/pipe.js +1 -0
  938. package/node_modules/lodash/fp/placeholder.js +6 -0
  939. package/node_modules/lodash/fp/plant.js +5 -0
  940. package/node_modules/lodash/fp/pluck.js +1 -0
  941. package/node_modules/lodash/fp/prop.js +1 -0
  942. package/node_modules/lodash/fp/propEq.js +1 -0
  943. package/node_modules/lodash/fp/propOr.js +1 -0
  944. package/node_modules/lodash/fp/property.js +1 -0
  945. package/node_modules/lodash/fp/propertyOf.js +5 -0
  946. package/node_modules/lodash/fp/props.js +1 -0
  947. package/node_modules/lodash/fp/pull.js +5 -0
  948. package/node_modules/lodash/fp/pullAll.js +5 -0
  949. package/node_modules/lodash/fp/pullAllBy.js +5 -0
  950. package/node_modules/lodash/fp/pullAllWith.js +5 -0
  951. package/node_modules/lodash/fp/pullAt.js +5 -0
  952. package/node_modules/lodash/fp/random.js +5 -0
  953. package/node_modules/lodash/fp/range.js +5 -0
  954. package/node_modules/lodash/fp/rangeRight.js +5 -0
  955. package/node_modules/lodash/fp/rangeStep.js +5 -0
  956. package/node_modules/lodash/fp/rangeStepRight.js +5 -0
  957. package/node_modules/lodash/fp/rearg.js +5 -0
  958. package/node_modules/lodash/fp/reduce.js +5 -0
  959. package/node_modules/lodash/fp/reduceRight.js +5 -0
  960. package/node_modules/lodash/fp/reject.js +5 -0
  961. package/node_modules/lodash/fp/remove.js +5 -0
  962. package/node_modules/lodash/fp/repeat.js +5 -0
  963. package/node_modules/lodash/fp/replace.js +5 -0
  964. package/node_modules/lodash/fp/rest.js +5 -0
  965. package/node_modules/lodash/fp/restFrom.js +5 -0
  966. package/node_modules/lodash/fp/result.js +5 -0
  967. package/node_modules/lodash/fp/reverse.js +5 -0
  968. package/node_modules/lodash/fp/round.js +5 -0
  969. package/node_modules/lodash/fp/sample.js +5 -0
  970. package/node_modules/lodash/fp/sampleSize.js +5 -0
  971. package/node_modules/lodash/fp/seq.js +2 -0
  972. package/node_modules/lodash/fp/set.js +5 -0
  973. package/node_modules/lodash/fp/setWith.js +5 -0
  974. package/node_modules/lodash/fp/shuffle.js +5 -0
  975. package/node_modules/lodash/fp/size.js +5 -0
  976. package/node_modules/lodash/fp/slice.js +5 -0
  977. package/node_modules/lodash/fp/snakeCase.js +5 -0
  978. package/node_modules/lodash/fp/some.js +5 -0
  979. package/node_modules/lodash/fp/sortBy.js +5 -0
  980. package/node_modules/lodash/fp/sortedIndex.js +5 -0
  981. package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  982. package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  983. package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  984. package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  985. package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  986. package/node_modules/lodash/fp/sortedUniq.js +5 -0
  987. package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  988. package/node_modules/lodash/fp/split.js +5 -0
  989. package/node_modules/lodash/fp/spread.js +5 -0
  990. package/node_modules/lodash/fp/spreadFrom.js +5 -0
  991. package/node_modules/lodash/fp/startCase.js +5 -0
  992. package/node_modules/lodash/fp/startsWith.js +5 -0
  993. package/node_modules/lodash/fp/string.js +2 -0
  994. package/node_modules/lodash/fp/stubArray.js +5 -0
  995. package/node_modules/lodash/fp/stubFalse.js +5 -0
  996. package/node_modules/lodash/fp/stubObject.js +5 -0
  997. package/node_modules/lodash/fp/stubString.js +5 -0
  998. package/node_modules/lodash/fp/stubTrue.js +5 -0
  999. package/node_modules/lodash/fp/subtract.js +5 -0
  1000. package/node_modules/lodash/fp/sum.js +5 -0
  1001. package/node_modules/lodash/fp/sumBy.js +5 -0
  1002. package/node_modules/lodash/fp/symmetricDifference.js +1 -0
  1003. package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  1004. package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  1005. package/node_modules/lodash/fp/tail.js +5 -0
  1006. package/node_modules/lodash/fp/take.js +5 -0
  1007. package/node_modules/lodash/fp/takeLast.js +1 -0
  1008. package/node_modules/lodash/fp/takeLastWhile.js +1 -0
  1009. package/node_modules/lodash/fp/takeRight.js +5 -0
  1010. package/node_modules/lodash/fp/takeRightWhile.js +5 -0
  1011. package/node_modules/lodash/fp/takeWhile.js +5 -0
  1012. package/node_modules/lodash/fp/tap.js +5 -0
  1013. package/node_modules/lodash/fp/template.js +5 -0
  1014. package/node_modules/lodash/fp/templateSettings.js +5 -0
  1015. package/node_modules/lodash/fp/throttle.js +5 -0
  1016. package/node_modules/lodash/fp/thru.js +5 -0
  1017. package/node_modules/lodash/fp/times.js +5 -0
  1018. package/node_modules/lodash/fp/toArray.js +5 -0
  1019. package/node_modules/lodash/fp/toFinite.js +5 -0
  1020. package/node_modules/lodash/fp/toInteger.js +5 -0
  1021. package/node_modules/lodash/fp/toIterator.js +5 -0
  1022. package/node_modules/lodash/fp/toJSON.js +5 -0
  1023. package/node_modules/lodash/fp/toLength.js +5 -0
  1024. package/node_modules/lodash/fp/toLower.js +5 -0
  1025. package/node_modules/lodash/fp/toNumber.js +5 -0
  1026. package/node_modules/lodash/fp/toPairs.js +5 -0
  1027. package/node_modules/lodash/fp/toPairsIn.js +5 -0
  1028. package/node_modules/lodash/fp/toPath.js +5 -0
  1029. package/node_modules/lodash/fp/toPlainObject.js +5 -0
  1030. package/node_modules/lodash/fp/toSafeInteger.js +5 -0
  1031. package/node_modules/lodash/fp/toString.js +5 -0
  1032. package/node_modules/lodash/fp/toUpper.js +5 -0
  1033. package/node_modules/lodash/fp/transform.js +5 -0
  1034. package/node_modules/lodash/fp/trim.js +5 -0
  1035. package/node_modules/lodash/fp/trimChars.js +5 -0
  1036. package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  1037. package/node_modules/lodash/fp/trimCharsStart.js +5 -0
  1038. package/node_modules/lodash/fp/trimEnd.js +5 -0
  1039. package/node_modules/lodash/fp/trimStart.js +5 -0
  1040. package/node_modules/lodash/fp/truncate.js +5 -0
  1041. package/node_modules/lodash/fp/unapply.js +1 -0
  1042. package/node_modules/lodash/fp/unary.js +5 -0
  1043. package/node_modules/lodash/fp/unescape.js +5 -0
  1044. package/node_modules/lodash/fp/union.js +5 -0
  1045. package/node_modules/lodash/fp/unionBy.js +5 -0
  1046. package/node_modules/lodash/fp/unionWith.js +5 -0
  1047. package/node_modules/lodash/fp/uniq.js +5 -0
  1048. package/node_modules/lodash/fp/uniqBy.js +5 -0
  1049. package/node_modules/lodash/fp/uniqWith.js +5 -0
  1050. package/node_modules/lodash/fp/uniqueId.js +5 -0
  1051. package/node_modules/lodash/fp/unnest.js +1 -0
  1052. package/node_modules/lodash/fp/unset.js +5 -0
  1053. package/node_modules/lodash/fp/unzip.js +5 -0
  1054. package/node_modules/lodash/fp/unzipWith.js +5 -0
  1055. package/node_modules/lodash/fp/update.js +5 -0
  1056. package/node_modules/lodash/fp/updateWith.js +5 -0
  1057. package/node_modules/lodash/fp/upperCase.js +5 -0
  1058. package/node_modules/lodash/fp/upperFirst.js +5 -0
  1059. package/node_modules/lodash/fp/useWith.js +1 -0
  1060. package/node_modules/lodash/fp/util.js +2 -0
  1061. package/node_modules/lodash/fp/value.js +5 -0
  1062. package/node_modules/lodash/fp/valueOf.js +5 -0
  1063. package/node_modules/lodash/fp/values.js +5 -0
  1064. package/node_modules/lodash/fp/valuesIn.js +5 -0
  1065. package/node_modules/lodash/fp/where.js +1 -0
  1066. package/node_modules/lodash/fp/whereEq.js +1 -0
  1067. package/node_modules/lodash/fp/without.js +5 -0
  1068. package/node_modules/lodash/fp/words.js +5 -0
  1069. package/node_modules/lodash/fp/wrap.js +5 -0
  1070. package/node_modules/lodash/fp/wrapperAt.js +5 -0
  1071. package/node_modules/lodash/fp/wrapperChain.js +5 -0
  1072. package/node_modules/lodash/fp/wrapperLodash.js +5 -0
  1073. package/node_modules/lodash/fp/wrapperReverse.js +5 -0
  1074. package/node_modules/lodash/fp/wrapperValue.js +5 -0
  1075. package/node_modules/lodash/fp/xor.js +5 -0
  1076. package/node_modules/lodash/fp/xorBy.js +5 -0
  1077. package/node_modules/lodash/fp/xorWith.js +5 -0
  1078. package/node_modules/lodash/fp/zip.js +5 -0
  1079. package/node_modules/lodash/fp/zipAll.js +5 -0
  1080. package/node_modules/lodash/fp/zipObj.js +1 -0
  1081. package/node_modules/lodash/fp/zipObject.js +5 -0
  1082. package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  1083. package/node_modules/lodash/fp/zipWith.js +5 -0
  1084. package/node_modules/lodash/fp.js +2 -0
  1085. package/node_modules/lodash/fromPairs.js +28 -0
  1086. package/node_modules/lodash/function.js +25 -0
  1087. package/node_modules/lodash/functions.js +31 -0
  1088. package/node_modules/lodash/functionsIn.js +31 -0
  1089. package/node_modules/lodash/get.js +33 -0
  1090. package/node_modules/lodash/groupBy.js +41 -0
  1091. package/node_modules/lodash/gt.js +29 -0
  1092. package/node_modules/lodash/gte.js +30 -0
  1093. package/node_modules/lodash/has.js +35 -0
  1094. package/node_modules/lodash/hasIn.js +34 -0
  1095. package/node_modules/lodash/head.js +23 -0
  1096. package/node_modules/lodash/identity.js +21 -0
  1097. package/node_modules/lodash/inRange.js +55 -0
  1098. package/node_modules/lodash/includes.js +53 -0
  1099. package/node_modules/lodash/index.js +1 -0
  1100. package/node_modules/lodash/indexOf.js +42 -0
  1101. package/node_modules/lodash/initial.js +22 -0
  1102. package/node_modules/lodash/intersection.js +30 -0
  1103. package/node_modules/lodash/intersectionBy.js +45 -0
  1104. package/node_modules/lodash/intersectionWith.js +41 -0
  1105. package/node_modules/lodash/invert.js +42 -0
  1106. package/node_modules/lodash/invertBy.js +56 -0
  1107. package/node_modules/lodash/invoke.js +24 -0
  1108. package/node_modules/lodash/invokeMap.js +41 -0
  1109. package/node_modules/lodash/isArguments.js +36 -0
  1110. package/node_modules/lodash/isArray.js +26 -0
  1111. package/node_modules/lodash/isArrayBuffer.js +27 -0
  1112. package/node_modules/lodash/isArrayLike.js +33 -0
  1113. package/node_modules/lodash/isArrayLikeObject.js +33 -0
  1114. package/node_modules/lodash/isBoolean.js +29 -0
  1115. package/node_modules/lodash/isBuffer.js +38 -0
  1116. package/node_modules/lodash/isDate.js +27 -0
  1117. package/node_modules/lodash/isElement.js +25 -0
  1118. package/node_modules/lodash/isEmpty.js +77 -0
  1119. package/node_modules/lodash/isEqual.js +35 -0
  1120. package/node_modules/lodash/isEqualWith.js +41 -0
  1121. package/node_modules/lodash/isError.js +36 -0
  1122. package/node_modules/lodash/isFinite.js +36 -0
  1123. package/node_modules/lodash/isFunction.js +37 -0
  1124. package/node_modules/lodash/isInteger.js +33 -0
  1125. package/node_modules/lodash/isLength.js +35 -0
  1126. package/node_modules/lodash/isMap.js +27 -0
  1127. package/node_modules/lodash/isMatch.js +36 -0
  1128. package/node_modules/lodash/isMatchWith.js +41 -0
  1129. package/node_modules/lodash/isNaN.js +38 -0
  1130. package/node_modules/lodash/isNative.js +40 -0
  1131. package/node_modules/lodash/isNil.js +25 -0
  1132. package/node_modules/lodash/isNull.js +22 -0
  1133. package/node_modules/lodash/isNumber.js +38 -0
  1134. package/node_modules/lodash/isObject.js +31 -0
  1135. package/node_modules/lodash/isObjectLike.js +29 -0
  1136. package/node_modules/lodash/isPlainObject.js +62 -0
  1137. package/node_modules/lodash/isRegExp.js +27 -0
  1138. package/node_modules/lodash/isSafeInteger.js +37 -0
  1139. package/node_modules/lodash/isSet.js +27 -0
  1140. package/node_modules/lodash/isString.js +30 -0
  1141. package/node_modules/lodash/isSymbol.js +29 -0
  1142. package/node_modules/lodash/isTypedArray.js +27 -0
  1143. package/node_modules/lodash/isUndefined.js +22 -0
  1144. package/node_modules/lodash/isWeakMap.js +28 -0
  1145. package/node_modules/lodash/isWeakSet.js +28 -0
  1146. package/node_modules/lodash/iteratee.js +53 -0
  1147. package/node_modules/lodash/join.js +26 -0
  1148. package/node_modules/lodash/kebabCase.js +28 -0
  1149. package/node_modules/lodash/keyBy.js +36 -0
  1150. package/node_modules/lodash/keys.js +37 -0
  1151. package/node_modules/lodash/keysIn.js +32 -0
  1152. package/node_modules/lodash/lang.js +58 -0
  1153. package/node_modules/lodash/last.js +20 -0
  1154. package/node_modules/lodash/lastIndexOf.js +46 -0
  1155. package/node_modules/lodash/lodash.js +17209 -0
  1156. package/node_modules/lodash/lodash.min.js +140 -0
  1157. package/node_modules/lodash/lowerCase.js +27 -0
  1158. package/node_modules/lodash/lowerFirst.js +22 -0
  1159. package/node_modules/lodash/lt.js +29 -0
  1160. package/node_modules/lodash/lte.js +30 -0
  1161. package/node_modules/lodash/map.js +53 -0
  1162. package/node_modules/lodash/mapKeys.js +36 -0
  1163. package/node_modules/lodash/mapValues.js +43 -0
  1164. package/node_modules/lodash/matches.js +46 -0
  1165. package/node_modules/lodash/matchesProperty.js +44 -0
  1166. package/node_modules/lodash/math.js +17 -0
  1167. package/node_modules/lodash/max.js +29 -0
  1168. package/node_modules/lodash/maxBy.js +34 -0
  1169. package/node_modules/lodash/mean.js +22 -0
  1170. package/node_modules/lodash/meanBy.js +31 -0
  1171. package/node_modules/lodash/memoize.js +73 -0
  1172. package/node_modules/lodash/merge.js +39 -0
  1173. package/node_modules/lodash/mergeWith.js +39 -0
  1174. package/node_modules/lodash/method.js +34 -0
  1175. package/node_modules/lodash/methodOf.js +33 -0
  1176. package/node_modules/lodash/min.js +29 -0
  1177. package/node_modules/lodash/minBy.js +34 -0
  1178. package/node_modules/lodash/mixin.js +74 -0
  1179. package/node_modules/lodash/multiply.js +22 -0
  1180. package/node_modules/lodash/negate.js +40 -0
  1181. package/node_modules/lodash/next.js +35 -0
  1182. package/node_modules/lodash/noop.js +17 -0
  1183. package/node_modules/lodash/now.js +23 -0
  1184. package/node_modules/lodash/nth.js +29 -0
  1185. package/node_modules/lodash/nthArg.js +32 -0
  1186. package/node_modules/lodash/number.js +5 -0
  1187. package/node_modules/lodash/object.js +49 -0
  1188. package/node_modules/lodash/omit.js +57 -0
  1189. package/node_modules/lodash/omitBy.js +29 -0
  1190. package/node_modules/lodash/once.js +25 -0
  1191. package/node_modules/lodash/orderBy.js +47 -0
  1192. package/node_modules/lodash/over.js +24 -0
  1193. package/node_modules/lodash/overArgs.js +61 -0
  1194. package/node_modules/lodash/overEvery.js +34 -0
  1195. package/node_modules/lodash/overSome.js +37 -0
  1196. package/node_modules/lodash/package.json +21 -0
  1197. package/node_modules/lodash/pad.js +49 -0
  1198. package/node_modules/lodash/padEnd.js +39 -0
  1199. package/node_modules/lodash/padStart.js +39 -0
  1200. package/node_modules/lodash/parseInt.js +43 -0
  1201. package/node_modules/lodash/partial.js +50 -0
  1202. package/node_modules/lodash/partialRight.js +49 -0
  1203. package/node_modules/lodash/partition.js +43 -0
  1204. package/node_modules/lodash/pick.js +25 -0
  1205. package/node_modules/lodash/pickBy.js +37 -0
  1206. package/node_modules/lodash/plant.js +48 -0
  1207. package/node_modules/lodash/property.js +32 -0
  1208. package/node_modules/lodash/propertyOf.js +30 -0
  1209. package/node_modules/lodash/pull.js +29 -0
  1210. package/node_modules/lodash/pullAll.js +29 -0
  1211. package/node_modules/lodash/pullAllBy.js +33 -0
  1212. package/node_modules/lodash/pullAllWith.js +32 -0
  1213. package/node_modules/lodash/pullAt.js +43 -0
  1214. package/node_modules/lodash/random.js +82 -0
  1215. package/node_modules/lodash/range.js +46 -0
  1216. package/node_modules/lodash/rangeRight.js +41 -0
  1217. package/node_modules/lodash/rearg.js +33 -0
  1218. package/node_modules/lodash/reduce.js +51 -0
  1219. package/node_modules/lodash/reduceRight.js +36 -0
  1220. package/node_modules/lodash/reject.js +46 -0
  1221. package/node_modules/lodash/release.md +48 -0
  1222. package/node_modules/lodash/remove.js +53 -0
  1223. package/node_modules/lodash/repeat.js +37 -0
  1224. package/node_modules/lodash/replace.js +29 -0
  1225. package/node_modules/lodash/rest.js +40 -0
  1226. package/node_modules/lodash/result.js +56 -0
  1227. package/node_modules/lodash/reverse.js +34 -0
  1228. package/node_modules/lodash/round.js +26 -0
  1229. package/node_modules/lodash/sample.js +24 -0
  1230. package/node_modules/lodash/sampleSize.js +37 -0
  1231. package/node_modules/lodash/seq.js +16 -0
  1232. package/node_modules/lodash/set.js +35 -0
  1233. package/node_modules/lodash/setWith.js +32 -0
  1234. package/node_modules/lodash/shuffle.js +25 -0
  1235. package/node_modules/lodash/size.js +46 -0
  1236. package/node_modules/lodash/slice.js +37 -0
  1237. package/node_modules/lodash/snakeCase.js +28 -0
  1238. package/node_modules/lodash/some.js +51 -0
  1239. package/node_modules/lodash/sortBy.js +48 -0
  1240. package/node_modules/lodash/sortedIndex.js +24 -0
  1241. package/node_modules/lodash/sortedIndexBy.js +33 -0
  1242. package/node_modules/lodash/sortedIndexOf.js +31 -0
  1243. package/node_modules/lodash/sortedLastIndex.js +25 -0
  1244. package/node_modules/lodash/sortedLastIndexBy.js +33 -0
  1245. package/node_modules/lodash/sortedLastIndexOf.js +31 -0
  1246. package/node_modules/lodash/sortedUniq.js +24 -0
  1247. package/node_modules/lodash/sortedUniqBy.js +26 -0
  1248. package/node_modules/lodash/split.js +52 -0
  1249. package/node_modules/lodash/spread.js +63 -0
  1250. package/node_modules/lodash/startCase.js +29 -0
  1251. package/node_modules/lodash/startsWith.js +39 -0
  1252. package/node_modules/lodash/string.js +33 -0
  1253. package/node_modules/lodash/stubArray.js +23 -0
  1254. package/node_modules/lodash/stubFalse.js +18 -0
  1255. package/node_modules/lodash/stubObject.js +23 -0
  1256. package/node_modules/lodash/stubString.js +18 -0
  1257. package/node_modules/lodash/stubTrue.js +18 -0
  1258. package/node_modules/lodash/subtract.js +22 -0
  1259. package/node_modules/lodash/sum.js +24 -0
  1260. package/node_modules/lodash/sumBy.js +33 -0
  1261. package/node_modules/lodash/tail.js +22 -0
  1262. package/node_modules/lodash/take.js +37 -0
  1263. package/node_modules/lodash/takeRight.js +39 -0
  1264. package/node_modules/lodash/takeRightWhile.js +45 -0
  1265. package/node_modules/lodash/takeWhile.js +45 -0
  1266. package/node_modules/lodash/tap.js +29 -0
  1267. package/node_modules/lodash/template.js +272 -0
  1268. package/node_modules/lodash/templateSettings.js +67 -0
  1269. package/node_modules/lodash/throttle.js +69 -0
  1270. package/node_modules/lodash/thru.js +28 -0
  1271. package/node_modules/lodash/times.js +51 -0
  1272. package/node_modules/lodash/toArray.js +58 -0
  1273. package/node_modules/lodash/toFinite.js +42 -0
  1274. package/node_modules/lodash/toInteger.js +36 -0
  1275. package/node_modules/lodash/toIterator.js +23 -0
  1276. package/node_modules/lodash/toJSON.js +1 -0
  1277. package/node_modules/lodash/toLength.js +38 -0
  1278. package/node_modules/lodash/toLower.js +28 -0
  1279. package/node_modules/lodash/toNumber.js +64 -0
  1280. package/node_modules/lodash/toPairs.js +30 -0
  1281. package/node_modules/lodash/toPairsIn.js +30 -0
  1282. package/node_modules/lodash/toPath.js +33 -0
  1283. package/node_modules/lodash/toPlainObject.js +32 -0
  1284. package/node_modules/lodash/toSafeInteger.js +37 -0
  1285. package/node_modules/lodash/toString.js +28 -0
  1286. package/node_modules/lodash/toUpper.js +28 -0
  1287. package/node_modules/lodash/transform.js +65 -0
  1288. package/node_modules/lodash/trim.js +47 -0
  1289. package/node_modules/lodash/trimEnd.js +41 -0
  1290. package/node_modules/lodash/trimStart.js +43 -0
  1291. package/node_modules/lodash/truncate.js +111 -0
  1292. package/node_modules/lodash/unary.js +22 -0
  1293. package/node_modules/lodash/unescape.js +34 -0
  1294. package/node_modules/lodash/union.js +26 -0
  1295. package/node_modules/lodash/unionBy.js +39 -0
  1296. package/node_modules/lodash/unionWith.js +34 -0
  1297. package/node_modules/lodash/uniq.js +25 -0
  1298. package/node_modules/lodash/uniqBy.js +31 -0
  1299. package/node_modules/lodash/uniqWith.js +28 -0
  1300. package/node_modules/lodash/uniqueId.js +28 -0
  1301. package/node_modules/lodash/unset.js +34 -0
  1302. package/node_modules/lodash/unzip.js +45 -0
  1303. package/node_modules/lodash/unzipWith.js +39 -0
  1304. package/node_modules/lodash/update.js +35 -0
  1305. package/node_modules/lodash/updateWith.js +33 -0
  1306. package/node_modules/lodash/upperCase.js +27 -0
  1307. package/node_modules/lodash/upperFirst.js +22 -0
  1308. package/node_modules/lodash/util.js +34 -0
  1309. package/node_modules/lodash/value.js +1 -0
  1310. package/node_modules/lodash/valueOf.js +1 -0
  1311. package/node_modules/lodash/values.js +34 -0
  1312. package/node_modules/lodash/valuesIn.js +32 -0
  1313. package/node_modules/lodash/without.js +31 -0
  1314. package/node_modules/lodash/words.js +35 -0
  1315. package/node_modules/lodash/wrap.js +30 -0
  1316. package/node_modules/lodash/wrapperAt.js +48 -0
  1317. package/node_modules/lodash/wrapperChain.js +34 -0
  1318. package/node_modules/lodash/wrapperLodash.js +147 -0
  1319. package/node_modules/lodash/wrapperReverse.js +44 -0
  1320. package/node_modules/lodash/wrapperValue.js +21 -0
  1321. package/node_modules/lodash/xor.js +28 -0
  1322. package/node_modules/lodash/xorBy.js +39 -0
  1323. package/node_modules/lodash/xorWith.js +34 -0
  1324. package/node_modules/lodash/zip.js +22 -0
  1325. package/node_modules/lodash/zipObject.js +24 -0
  1326. package/node_modules/lodash/zipObjectDeep.js +23 -0
  1327. package/node_modules/lodash/zipWith.js +32 -0
  1328. package/node_modules/lower-case/LICENSE +21 -0
  1329. package/node_modules/lower-case/README.md +35 -0
  1330. package/node_modules/lower-case/dist/index.d.ts +8 -0
  1331. package/node_modules/lower-case/dist/index.js +53 -0
  1332. package/node_modules/lower-case/dist/index.js.map +1 -0
  1333. package/node_modules/lower-case/dist/index.spec.d.ts +1 -0
  1334. package/node_modules/lower-case/dist/index.spec.js +36 -0
  1335. package/node_modules/lower-case/dist/index.spec.js.map +1 -0
  1336. package/node_modules/lower-case/dist.es2015/index.d.ts +8 -0
  1337. package/node_modules/lower-case/dist.es2015/index.js +48 -0
  1338. package/node_modules/lower-case/dist.es2015/index.js.map +1 -0
  1339. package/node_modules/lower-case/dist.es2015/index.spec.d.ts +1 -0
  1340. package/node_modules/lower-case/dist.es2015/index.spec.js +34 -0
  1341. package/node_modules/lower-case/dist.es2015/index.spec.js.map +1 -0
  1342. package/node_modules/lower-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1343. package/node_modules/lower-case/node_modules/tslib/LICENSE.txt +12 -0
  1344. package/node_modules/lower-case/node_modules/tslib/README.md +164 -0
  1345. package/node_modules/lower-case/node_modules/tslib/modules/index.js +55 -0
  1346. package/node_modules/lower-case/node_modules/tslib/modules/package.json +3 -0
  1347. package/node_modules/lower-case/node_modules/tslib/package.json +42 -0
  1348. package/node_modules/lower-case/node_modules/tslib/tslib.d.ts +398 -0
  1349. package/node_modules/lower-case/node_modules/tslib/tslib.es6.html +1 -0
  1350. package/node_modules/lower-case/node_modules/tslib/tslib.es6.js +248 -0
  1351. package/node_modules/lower-case/node_modules/tslib/tslib.html +1 -0
  1352. package/node_modules/lower-case/node_modules/tslib/tslib.js +317 -0
  1353. package/node_modules/lower-case/package.json +91 -0
  1354. package/node_modules/no-case/LICENSE +21 -0
  1355. package/node_modules/no-case/README.md +37 -0
  1356. package/node_modules/no-case/dist/index.d.ts +10 -0
  1357. package/node_modules/no-case/dist/index.js +35 -0
  1358. package/node_modules/no-case/dist/index.js.map +1 -0
  1359. package/node_modules/no-case/dist/index.spec.d.ts +1 -0
  1360. package/node_modules/no-case/dist/index.spec.js +59 -0
  1361. package/node_modules/no-case/dist/index.spec.js.map +1 -0
  1362. package/node_modules/no-case/dist.es2015/index.d.ts +10 -0
  1363. package/node_modules/no-case/dist.es2015/index.js +31 -0
  1364. package/node_modules/no-case/dist.es2015/index.js.map +1 -0
  1365. package/node_modules/no-case/dist.es2015/index.spec.d.ts +1 -0
  1366. package/node_modules/no-case/dist.es2015/index.spec.js +57 -0
  1367. package/node_modules/no-case/dist.es2015/index.spec.js.map +1 -0
  1368. package/node_modules/no-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1369. package/node_modules/no-case/node_modules/tslib/LICENSE.txt +12 -0
  1370. package/node_modules/no-case/node_modules/tslib/README.md +164 -0
  1371. package/node_modules/no-case/node_modules/tslib/modules/index.js +55 -0
  1372. package/node_modules/no-case/node_modules/tslib/modules/package.json +3 -0
  1373. package/node_modules/no-case/node_modules/tslib/package.json +42 -0
  1374. package/node_modules/no-case/node_modules/tslib/tslib.d.ts +398 -0
  1375. package/node_modules/no-case/node_modules/tslib/tslib.es6.html +1 -0
  1376. package/node_modules/no-case/node_modules/tslib/tslib.es6.js +248 -0
  1377. package/node_modules/no-case/node_modules/tslib/tslib.html +1 -0
  1378. package/node_modules/no-case/node_modules/tslib/tslib.js +317 -0
  1379. package/node_modules/no-case/package.json +89 -0
  1380. package/node_modules/nunjucks/CHANGELOG.md +736 -0
  1381. package/node_modules/nunjucks/LICENSE +26 -0
  1382. package/node_modules/nunjucks/README.md +58 -0
  1383. package/node_modules/nunjucks/bin/precompile +58 -0
  1384. package/node_modules/nunjucks/bin/precompile.cmd +5 -0
  1385. package/node_modules/nunjucks/browser/nunjucks-slim.js +4263 -0
  1386. package/node_modules/nunjucks/browser/nunjucks-slim.js.map +1 -0
  1387. package/node_modules/nunjucks/browser/nunjucks-slim.min.js +3 -0
  1388. package/node_modules/nunjucks/browser/nunjucks-slim.min.js.map +1 -0
  1389. package/node_modules/nunjucks/browser/nunjucks.js +8423 -0
  1390. package/node_modules/nunjucks/browser/nunjucks.js.map +1 -0
  1391. package/node_modules/nunjucks/browser/nunjucks.min.js +3 -0
  1392. package/node_modules/nunjucks/browser/nunjucks.min.js.map +1 -0
  1393. package/node_modules/nunjucks/index.js +103 -0
  1394. package/node_modules/nunjucks/node_modules/commander/CHANGELOG.md +385 -0
  1395. package/node_modules/nunjucks/node_modules/commander/LICENSE +22 -0
  1396. package/node_modules/nunjucks/node_modules/commander/Readme.md +737 -0
  1397. package/node_modules/nunjucks/node_modules/commander/index.js +1756 -0
  1398. package/node_modules/nunjucks/node_modules/commander/package.json +52 -0
  1399. package/node_modules/nunjucks/node_modules/commander/typings/index.d.ts +386 -0
  1400. package/node_modules/nunjucks/package.json +116 -0
  1401. package/node_modules/nunjucks/src/compiler.js +1449 -0
  1402. package/node_modules/nunjucks/src/environment.js +659 -0
  1403. package/node_modules/nunjucks/src/express-app.js +28 -0
  1404. package/node_modules/nunjucks/src/filters.js +680 -0
  1405. package/node_modules/nunjucks/src/globals.js +72 -0
  1406. package/node_modules/nunjucks/src/jinja-compat.js +358 -0
  1407. package/node_modules/nunjucks/src/lexer.js +542 -0
  1408. package/node_modules/nunjucks/src/lib.js +417 -0
  1409. package/node_modules/nunjucks/src/loader.js +30 -0
  1410. package/node_modules/nunjucks/src/loaders.js +5 -0
  1411. package/node_modules/nunjucks/src/node-loaders.js +177 -0
  1412. package/node_modules/nunjucks/src/nodes.js +394 -0
  1413. package/node_modules/nunjucks/src/object.js +129 -0
  1414. package/node_modules/nunjucks/src/parser.js +1267 -0
  1415. package/node_modules/nunjucks/src/precompile-global.js +22 -0
  1416. package/node_modules/nunjucks/src/precompile.js +131 -0
  1417. package/node_modules/nunjucks/src/precompiled-loader.js +41 -0
  1418. package/node_modules/nunjucks/src/runtime.js +405 -0
  1419. package/node_modules/nunjucks/src/tests.js +286 -0
  1420. package/node_modules/nunjucks/src/transformer.js +197 -0
  1421. package/node_modules/nunjucks/src/web-loaders.js +110 -0
  1422. package/node_modules/param-case/LICENSE +21 -0
  1423. package/node_modules/param-case/README.md +37 -0
  1424. package/node_modules/param-case/dist/index.d.ts +3 -0
  1425. package/node_modules/param-case/dist/index.js +11 -0
  1426. package/node_modules/param-case/dist/index.js.map +1 -0
  1427. package/node_modules/param-case/dist/index.spec.d.ts +1 -0
  1428. package/node_modules/param-case/dist/index.spec.js +24 -0
  1429. package/node_modules/param-case/dist/index.spec.js.map +1 -0
  1430. package/node_modules/param-case/dist.es2015/index.d.ts +3 -0
  1431. package/node_modules/param-case/dist.es2015/index.js +7 -0
  1432. package/node_modules/param-case/dist.es2015/index.js.map +1 -0
  1433. package/node_modules/param-case/dist.es2015/index.spec.d.ts +1 -0
  1434. package/node_modules/param-case/dist.es2015/index.spec.js +22 -0
  1435. package/node_modules/param-case/dist.es2015/index.spec.js.map +1 -0
  1436. package/node_modules/param-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1437. package/node_modules/param-case/node_modules/tslib/LICENSE.txt +12 -0
  1438. package/node_modules/param-case/node_modules/tslib/README.md +164 -0
  1439. package/node_modules/param-case/node_modules/tslib/modules/index.js +55 -0
  1440. package/node_modules/param-case/node_modules/tslib/modules/package.json +3 -0
  1441. package/node_modules/param-case/node_modules/tslib/package.json +42 -0
  1442. package/node_modules/param-case/node_modules/tslib/tslib.d.ts +398 -0
  1443. package/node_modules/param-case/node_modules/tslib/tslib.es6.html +1 -0
  1444. package/node_modules/param-case/node_modules/tslib/tslib.es6.js +248 -0
  1445. package/node_modules/param-case/node_modules/tslib/tslib.html +1 -0
  1446. package/node_modules/param-case/node_modules/tslib/tslib.js +317 -0
  1447. package/node_modules/param-case/package.json +95 -0
  1448. package/node_modules/pascal-case/LICENSE +21 -0
  1449. package/node_modules/pascal-case/README.md +47 -0
  1450. package/node_modules/pascal-case/dist/index.d.ts +5 -0
  1451. package/node_modules/pascal-case/dist/index.js +24 -0
  1452. package/node_modules/pascal-case/dist/index.js.map +1 -0
  1453. package/node_modules/pascal-case/dist/index.spec.d.ts +1 -0
  1454. package/node_modules/pascal-case/dist/index.spec.js +25 -0
  1455. package/node_modules/pascal-case/dist/index.spec.js.map +1 -0
  1456. package/node_modules/pascal-case/dist.es2015/index.d.ts +5 -0
  1457. package/node_modules/pascal-case/dist.es2015/index.js +18 -0
  1458. package/node_modules/pascal-case/dist.es2015/index.js.map +1 -0
  1459. package/node_modules/pascal-case/dist.es2015/index.spec.d.ts +1 -0
  1460. package/node_modules/pascal-case/dist.es2015/index.spec.js +23 -0
  1461. package/node_modules/pascal-case/dist.es2015/index.spec.js.map +1 -0
  1462. package/node_modules/pascal-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1463. package/node_modules/pascal-case/node_modules/tslib/LICENSE.txt +12 -0
  1464. package/node_modules/pascal-case/node_modules/tslib/README.md +164 -0
  1465. package/node_modules/pascal-case/node_modules/tslib/modules/index.js +55 -0
  1466. package/node_modules/pascal-case/node_modules/tslib/modules/package.json +3 -0
  1467. package/node_modules/pascal-case/node_modules/tslib/package.json +42 -0
  1468. package/node_modules/pascal-case/node_modules/tslib/tslib.d.ts +398 -0
  1469. package/node_modules/pascal-case/node_modules/tslib/tslib.es6.html +1 -0
  1470. package/node_modules/pascal-case/node_modules/tslib/tslib.es6.js +248 -0
  1471. package/node_modules/pascal-case/node_modules/tslib/tslib.html +1 -0
  1472. package/node_modules/pascal-case/node_modules/tslib/tslib.js +317 -0
  1473. package/node_modules/pascal-case/package.json +94 -0
  1474. package/node_modules/path-case/LICENSE +21 -0
  1475. package/node_modules/path-case/README.md +37 -0
  1476. package/node_modules/path-case/dist/index.d.ts +3 -0
  1477. package/node_modules/path-case/dist/index.js +11 -0
  1478. package/node_modules/path-case/dist/index.js.map +1 -0
  1479. package/node_modules/path-case/dist/index.spec.d.ts +1 -0
  1480. package/node_modules/path-case/dist/index.spec.js +24 -0
  1481. package/node_modules/path-case/dist/index.spec.js.map +1 -0
  1482. package/node_modules/path-case/dist.es2015/index.d.ts +3 -0
  1483. package/node_modules/path-case/dist.es2015/index.js +7 -0
  1484. package/node_modules/path-case/dist.es2015/index.js.map +1 -0
  1485. package/node_modules/path-case/dist.es2015/index.spec.d.ts +1 -0
  1486. package/node_modules/path-case/dist.es2015/index.spec.js +22 -0
  1487. package/node_modules/path-case/dist.es2015/index.spec.js.map +1 -0
  1488. package/node_modules/path-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1489. package/node_modules/path-case/node_modules/tslib/LICENSE.txt +12 -0
  1490. package/node_modules/path-case/node_modules/tslib/README.md +164 -0
  1491. package/node_modules/path-case/node_modules/tslib/modules/index.js +55 -0
  1492. package/node_modules/path-case/node_modules/tslib/modules/package.json +3 -0
  1493. package/node_modules/path-case/node_modules/tslib/package.json +42 -0
  1494. package/node_modules/path-case/node_modules/tslib/tslib.d.ts +398 -0
  1495. package/node_modules/path-case/node_modules/tslib/tslib.es6.html +1 -0
  1496. package/node_modules/path-case/node_modules/tslib/tslib.es6.js +248 -0
  1497. package/node_modules/path-case/node_modules/tslib/tslib.html +1 -0
  1498. package/node_modules/path-case/node_modules/tslib/tslib.js +317 -0
  1499. package/node_modules/path-case/package.json +92 -0
  1500. package/node_modules/sentence-case/LICENSE +21 -0
  1501. package/node_modules/sentence-case/README.md +37 -0
  1502. package/node_modules/sentence-case/dist/index.d.ts +4 -0
  1503. package/node_modules/sentence-case/dist/index.js +19 -0
  1504. package/node_modules/sentence-case/dist/index.js.map +1 -0
  1505. package/node_modules/sentence-case/dist/index.spec.d.ts +1 -0
  1506. package/node_modules/sentence-case/dist/index.spec.js +24 -0
  1507. package/node_modules/sentence-case/dist/index.spec.js.map +1 -0
  1508. package/node_modules/sentence-case/dist.es2015/index.d.ts +4 -0
  1509. package/node_modules/sentence-case/dist.es2015/index.js +14 -0
  1510. package/node_modules/sentence-case/dist.es2015/index.js.map +1 -0
  1511. package/node_modules/sentence-case/dist.es2015/index.spec.d.ts +1 -0
  1512. package/node_modules/sentence-case/dist.es2015/index.spec.js +22 -0
  1513. package/node_modules/sentence-case/dist.es2015/index.spec.js.map +1 -0
  1514. package/node_modules/sentence-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1515. package/node_modules/sentence-case/node_modules/tslib/LICENSE.txt +12 -0
  1516. package/node_modules/sentence-case/node_modules/tslib/README.md +164 -0
  1517. package/node_modules/sentence-case/node_modules/tslib/modules/index.js +55 -0
  1518. package/node_modules/sentence-case/node_modules/tslib/modules/package.json +3 -0
  1519. package/node_modules/sentence-case/node_modules/tslib/package.json +42 -0
  1520. package/node_modules/sentence-case/node_modules/tslib/tslib.d.ts +398 -0
  1521. package/node_modules/sentence-case/node_modules/tslib/tslib.es6.html +1 -0
  1522. package/node_modules/sentence-case/node_modules/tslib/tslib.es6.js +248 -0
  1523. package/node_modules/sentence-case/node_modules/tslib/tslib.html +1 -0
  1524. package/node_modules/sentence-case/node_modules/tslib/tslib.js +317 -0
  1525. package/node_modules/sentence-case/package.json +93 -0
  1526. package/node_modules/snake-case/LICENSE +21 -0
  1527. package/node_modules/snake-case/README.md +37 -0
  1528. package/node_modules/snake-case/dist/index.d.ts +3 -0
  1529. package/node_modules/snake-case/dist/index.js +11 -0
  1530. package/node_modules/snake-case/dist/index.js.map +1 -0
  1531. package/node_modules/snake-case/dist/index.spec.d.ts +1 -0
  1532. package/node_modules/snake-case/dist/index.spec.js +25 -0
  1533. package/node_modules/snake-case/dist/index.spec.js.map +1 -0
  1534. package/node_modules/snake-case/dist.es2015/index.d.ts +3 -0
  1535. package/node_modules/snake-case/dist.es2015/index.js +7 -0
  1536. package/node_modules/snake-case/dist.es2015/index.js.map +1 -0
  1537. package/node_modules/snake-case/dist.es2015/index.spec.d.ts +1 -0
  1538. package/node_modules/snake-case/dist.es2015/index.spec.js +23 -0
  1539. package/node_modules/snake-case/dist.es2015/index.spec.js.map +1 -0
  1540. package/node_modules/snake-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1541. package/node_modules/snake-case/node_modules/tslib/LICENSE.txt +12 -0
  1542. package/node_modules/snake-case/node_modules/tslib/README.md +164 -0
  1543. package/node_modules/snake-case/node_modules/tslib/modules/index.js +55 -0
  1544. package/node_modules/snake-case/node_modules/tslib/modules/package.json +3 -0
  1545. package/node_modules/snake-case/node_modules/tslib/package.json +42 -0
  1546. package/node_modules/snake-case/node_modules/tslib/tslib.d.ts +398 -0
  1547. package/node_modules/snake-case/node_modules/tslib/tslib.es6.html +1 -0
  1548. package/node_modules/snake-case/node_modules/tslib/tslib.es6.js +248 -0
  1549. package/node_modules/snake-case/node_modules/tslib/tslib.html +1 -0
  1550. package/node_modules/snake-case/node_modules/tslib/tslib.js +317 -0
  1551. package/node_modules/snake-case/package.json +94 -0
  1552. package/node_modules/upper-case/README.md +34 -0
  1553. package/node_modules/upper-case/dist/index.d.ts +8 -0
  1554. package/node_modules/upper-case/dist/index.js +49 -0
  1555. package/node_modules/upper-case/dist/index.js.map +1 -0
  1556. package/node_modules/upper-case/dist/index.spec.d.ts +1 -0
  1557. package/node_modules/upper-case/dist/index.spec.js +34 -0
  1558. package/node_modules/upper-case/dist/index.spec.js.map +1 -0
  1559. package/node_modules/upper-case/dist.es2015/index.d.ts +8 -0
  1560. package/node_modules/upper-case/dist.es2015/index.js +44 -0
  1561. package/node_modules/upper-case/dist.es2015/index.js.map +1 -0
  1562. package/node_modules/upper-case/dist.es2015/index.spec.d.ts +1 -0
  1563. package/node_modules/upper-case/dist.es2015/index.spec.js +32 -0
  1564. package/node_modules/upper-case/dist.es2015/index.spec.js.map +1 -0
  1565. package/node_modules/upper-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1566. package/node_modules/upper-case/node_modules/tslib/LICENSE.txt +12 -0
  1567. package/node_modules/upper-case/node_modules/tslib/README.md +164 -0
  1568. package/node_modules/upper-case/node_modules/tslib/modules/index.js +55 -0
  1569. package/node_modules/upper-case/node_modules/tslib/modules/package.json +3 -0
  1570. package/node_modules/upper-case/node_modules/tslib/package.json +42 -0
  1571. package/node_modules/upper-case/node_modules/tslib/tslib.d.ts +398 -0
  1572. package/node_modules/upper-case/node_modules/tslib/tslib.es6.html +1 -0
  1573. package/node_modules/upper-case/node_modules/tslib/tslib.es6.js +248 -0
  1574. package/node_modules/upper-case/node_modules/tslib/tslib.html +1 -0
  1575. package/node_modules/upper-case/node_modules/tslib/tslib.js +317 -0
  1576. package/node_modules/upper-case/package.json +90 -0
  1577. package/node_modules/upper-case-first/LICENSE +21 -0
  1578. package/node_modules/upper-case-first/README.md +32 -0
  1579. package/node_modules/upper-case-first/dist/index.d.ts +4 -0
  1580. package/node_modules/upper-case-first/dist/index.js +11 -0
  1581. package/node_modules/upper-case-first/dist/index.js.map +1 -0
  1582. package/node_modules/upper-case-first/dist/index.spec.d.ts +1 -0
  1583. package/node_modules/upper-case-first/dist/index.spec.js +20 -0
  1584. package/node_modules/upper-case-first/dist/index.spec.js.map +1 -0
  1585. package/node_modules/upper-case-first/dist.es2015/index.d.ts +4 -0
  1586. package/node_modules/upper-case-first/dist.es2015/index.js +7 -0
  1587. package/node_modules/upper-case-first/dist.es2015/index.js.map +1 -0
  1588. package/node_modules/upper-case-first/dist.es2015/index.spec.d.ts +1 -0
  1589. package/node_modules/upper-case-first/dist.es2015/index.spec.js +18 -0
  1590. package/node_modules/upper-case-first/dist.es2015/index.spec.js.map +1 -0
  1591. package/node_modules/upper-case-first/node_modules/tslib/CopyrightNotice.txt +15 -0
  1592. package/node_modules/upper-case-first/node_modules/tslib/LICENSE.txt +12 -0
  1593. package/node_modules/upper-case-first/node_modules/tslib/README.md +164 -0
  1594. package/node_modules/upper-case-first/node_modules/tslib/modules/index.js +55 -0
  1595. package/node_modules/upper-case-first/node_modules/tslib/modules/package.json +3 -0
  1596. package/node_modules/upper-case-first/node_modules/tslib/package.json +42 -0
  1597. package/node_modules/upper-case-first/node_modules/tslib/tslib.d.ts +398 -0
  1598. package/node_modules/upper-case-first/node_modules/tslib/tslib.es6.html +1 -0
  1599. package/node_modules/upper-case-first/node_modules/tslib/tslib.es6.js +248 -0
  1600. package/node_modules/upper-case-first/node_modules/tslib/tslib.html +1 -0
  1601. package/node_modules/upper-case-first/node_modules/tslib/tslib.js +317 -0
  1602. package/node_modules/upper-case-first/package.json +91 -0
  1603. package/package.json +149 -0
@@ -0,0 +1,3 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1182px" height="684px" viewBox="-0.5 -0.5 1182 684"><defs><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-f78e04-1-d05c17-1-s-0"><stop offset="0%" style="stop-color: rgb(208, 92, 23); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(247, 142, 4); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-945df2-1-5a30b5-1-s-0"><stop offset="0%" style="stop-color: rgb(90, 48, 181); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(148, 93, 242); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-ff4f8b-1-bc1356-1-s-0"><stop offset="0%" style="stop-color: rgb(188, 19, 86); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(255, 79, 139); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-60a337-1-277116-1-s-0"><stop offset="0%" style="stop-color: rgb(39, 113, 22); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(96, 163, 55); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-4d72f3-1-3334b9-1-s-0"><stop offset="0%" style="stop-color: rgb(51, 52, 185); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(77, 114, 243); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-f34482-1-bc1356-1-s-0"><stop offset="0%" style="stop-color: rgb(188, 19, 86); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(243, 68, 130); stop-opacity: 1;"/></linearGradient><style type="text/css">@import url("data:application/x-font-ttf;charset=utf-8;base64,LyogY3lyaWxsaWMtZXh0ICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnUnViaWsnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvcnViaWsvdjIxL2lKV1pCWHlJZkRuSVY1UE5oWTFLVE43Wi1ZaC1CNGlGV2tVemRZUEZrWlZPQTZ3LndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDQ2MC0wNTJGLCBVKzFDODAtMUM4OCwgVSsyMEI0LCBVKzJERTAtMkRGRiwgVStBNjQwLUE2OUYsIFUrRkUyRS1GRTJGOwp9Ci8qIGN5cmlsbGljICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnUnViaWsnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvcnViaWsvdjIxL2lKV1pCWHlJZkRuSVY1UE5oWTFLVE43Wi1ZaC1CNGlGVTBVemRZUEZrWlZPQTZ3LndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDMwMSwgVSswNDAwLTA0NUYsIFUrMDQ5MC0wNDkxLCBVKzA0QjAtMDRCMSwgVSsyMTE2Owp9Ci8qIGhlYnJldyAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ1J1YmlrJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL3J1YmlrL3YyMS9pSldaQlh5SWZEbklWNVBOaFkxS1RON1otWWgtQjRpRlZVVXpkWVBGa1pWT0E2dy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzA1OTAtMDVGRiwgVSsyMDBDLTIwMTAsIFUrMjBBQSwgVSsyNUNDLCBVK0ZCMUQtRkI0RjsKfQovKiBsYXRpbi1leHQgKi8KQGZvbnQtZmFjZSB7CiAgZm9udC1mYW1pbHk6ICdSdWJpayc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9ydWJpay92MjEvaUpXWkJYeUlmRG5JVjVQTmhZMUtUTjdaLVloLUI0aUZXVVV6ZFlQRmtaVk9BNncud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMTAwLTAyNEYsIFUrMDI1OSwgVSsxRTAwLTFFRkYsIFUrMjAyMCwgVSsyMEEwLTIwQUIsIFUrMjBBRC0yMENGLCBVKzIxMTMsIFUrMkM2MC0yQzdGLCBVK0E3MjAtQTdGRjsKfQovKiBsYXRpbiAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ1J1YmlrJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL3J1YmlrL3YyMS9pSldaQlh5SWZEbklWNVBOaFkxS1RON1otWWgtQjRpRlYwVXpkWVBGa1pWTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzAwMDAtMDBGRiwgVSswMTMxLCBVKzAxNTItMDE1MywgVSswMkJCLTAyQkMsIFUrMDJDNiwgVSswMkRBLCBVKzAyREMsIFUrMjAwMC0yMDZGLCBVKzIwNzQsIFUrMjBBQywgVSsyMTIyLCBVKzIxOTEsIFUrMjE5MywgVSsyMjEyLCBVKzIyMTUsIFUrRkVGRiwgVStGRkZEOwp9Cg=="), @import url("data:application/x-font-ttf;charset=utf-8;base64,LyogY3lyaWxsaWMtZXh0ICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnRmlyYSBDb2RlJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL2ZpcmFjb2RlL3YyMS91VTllQ0JzUjZaMnZmRTlhcTNiTDBmeHlVczR0Y3c0V19EMXNKVjM3TU96bG9qd1VLYUpPLndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDQ2MC0wNTJGLCBVKzFDODAtMUM4OCwgVSsyMEI0LCBVKzJERTAtMkRGRiwgVStBNjQwLUE2OUYsIFUrRkUyRS1GRTJGOwp9Ci8qIGN5cmlsbGljICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnRmlyYSBDb2RlJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL2ZpcmFjb2RlL3YyMS91VTllQ0JzUjZaMnZmRTlhcTNiTDBmeHlVczR0Y3c0V19EMXNKVlQ3TU96bG9qd1VLYUpPLndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDMwMSwgVSswNDAwLTA0NUYsIFUrMDQ5MC0wNDkxLCBVKzA0QjAtMDRCMSwgVSsyMTE2Owp9Ci8qIGdyZWVrLWV4dCAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZ6N01PemxvandVS2FKTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzFGMDAtMUZGRjsKfQovKiBncmVlayAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZQN01PemxvandVS2FKTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzAzNzAtMDNGRjsKfQovKiBsYXRpbi1leHQgKi8KQGZvbnQtZmFjZSB7CiAgZm9udC1mYW1pbHk6ICdGaXJhIENvZGUnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvZmlyYWNvZGUvdjIxL3VVOWVDQnNSNloydmZFOWFxM2JMMGZ4eVVzNHRjdzRXX0Qxc0pWNzdNT3psb2p3VUthSk8ud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMTAwLTAyNEYsIFUrMDI1OSwgVSsxRTAwLTFFRkYsIFUrMjAyMCwgVSsyMEEwLTIwQUIsIFUrMjBBRC0yMENGLCBVKzIxMTMsIFUrMkM2MC0yQzdGLCBVK0E3MjAtQTdGRjsKfQovKiBsYXRpbiAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZEN01PemxvandVS1Eud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMDAwLTAwRkYsIFUrMDEzMSwgVSswMTUyLTAxNTMsIFUrMDJCQi0wMkJDLCBVKzAyQzYsIFUrMDJEQSwgVSswMkRDLCBVKzIwMDAtMjA2RiwgVSsyMDc0LCBVKzIwQUMsIFUrMjEyMiwgVSsyMTkxLCBVKzIxOTMsIFUrMjIxMiwgVSsyMjE1LCBVK0ZFRkYsIFUrRkZGRDsKfQo=")</style></defs><g><path d="M 0 80 L 740 80 L 740 600 L 0 600 Z" fill="none" stroke="#aab7b8" stroke-miterlimit="10" pointer-events="all"/><path d="M 10.73 86.89 C 8.19 86.86 6.05 89.34 6.28 91.84 C 4.63 92.3 3.58 94.09 3.93 95.76 C 4.17 97.45 5.84 98.8 7.55 98.58 C 11.3 98.56 15.04 98.61 18.79 98.55 C 20.71 98.38 22.05 96.29 21.58 94.45 C 21.34 93.13 20.21 91.98 18.87 91.81 C 18.86 90.3 17.26 88.82 15.79 89.6 C 14.97 90.39 14.82 88.44 14.02 88.13 C 13.14 87.28 11.95 86.82 10.73 86.89 Z M 10.75 87.63 C 12.68 87.51 14.32 89.05 14.91 90.79 C 15.31 91.19 15.67 90.52 15.97 90.34 C 17.25 89.57 18.21 91.17 18.23 92.29 C 18.58 92.77 19.39 92.38 19.77 92.91 C 21.21 93.93 21.3 96.3 19.88 97.37 C 18.9 98.09 17.63 97.75 16.5 97.83 C 13.28 97.82 10.06 97.84 6.84 97.82 C 5.2 97.58 4.19 95.69 4.79 94.17 C 5.07 93.16 6.05 92.67 6.94 92.36 C 7.19 91.62 6.85 90.71 7.33 89.99 C 7.92 88.65 9.25 87.61 10.75 87.63 Z M 0 105 C 0 96.67 0 88.33 0 80 C 8.33 80 16.67 80 25 80 C 25 88.33 25 96.67 25 105 C 16.67 105 8.33 105 0 105 Z" fill="#aab7b8" stroke="none" pointer-events="all"/><g fill="#AAB7B8" font-family="Rubik" font-size="16px"><text x="31.5" y="101.5">dev account</text></g><path d="M 760 80 L 1140 80 L 1140 600 L 760 600 Z" fill="none" stroke="#aab7b8" stroke-miterlimit="10" pointer-events="all"/><path d="M 770.73 86.89 C 768.18 86.86 766.05 89.34 766.28 91.84 C 764.63 92.3 763.58 94.09 763.93 95.76 C 764.17 97.45 765.84 98.8 767.55 98.58 C 771.3 98.56 775.04 98.61 778.79 98.55 C 780.71 98.38 782.05 96.29 781.58 94.45 C 781.34 93.13 780.21 91.98 778.87 91.81 C 778.86 90.3 777.26 88.82 775.79 89.6 C 774.97 90.39 774.82 88.44 774.02 88.13 C 773.14 87.28 771.95 86.82 770.73 86.89 Z M 770.75 87.63 C 772.68 87.51 774.32 89.05 774.91 90.79 C 775.31 91.19 775.67 90.52 775.97 90.34 C 777.25 89.57 778.21 91.17 778.23 92.29 C 778.58 92.77 779.39 92.38 779.77 92.91 C 781.21 93.93 781.3 96.3 779.88 97.37 C 778.9 98.09 777.63 97.75 776.5 97.83 C 773.28 97.82 770.06 97.84 766.84 97.82 C 765.2 97.58 764.19 95.69 764.79 94.17 C 765.07 93.16 766.05 92.67 766.94 92.36 C 767.19 91.62 766.85 90.71 767.33 89.99 C 767.92 88.65 769.25 87.61 770.75 87.63 Z M 760 105 C 760 96.67 760 88.33 760 80 C 768.33 80 776.67 80 785 80 C 785 88.33 785 96.67 785 105 C 776.67 105 768.33 105 760 105 Z" fill="#aab7b8" stroke="none" pointer-events="all"/><g fill="#AAB7B8" font-family="Rubik" font-size="16px"><text x="791.5" y="101.5">prod account</text></g><path d="M 20 400 L 720 400" fill="none" stroke="#5c5c5c" stroke-width="2" stroke-miterlimit="10" stroke-dasharray="6 6" pointer-events="stroke"/><rect x="200" y="140" width="160" height="40" fill="#6a00ff" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="279.5" y="173.5">feature</text></g><rect x="200" y="180" width="160" height="40" fill="#6a00ff" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="279.5" y="198.5">environment(s)</text></g><rect x="200" y="260" width="160" height="40" fill="#1c0042" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="279.5" y="286">short-lived</text></g><rect x="200" y="220" width="160" height="40" fill="#1c0042" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="279.5" y="246">OPTIONAL</text></g><path d="M 200 300 L 240 300 L 240 340 L 200 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 213.16 334.86 L 206.07 334.86 L 213.91 318.45 L 217.47 325.77 Z M 214.43 316.89 C 214.33 316.69 214.13 316.57 213.91 316.57 L 213.91 316.57 C 213.69 316.57 213.49 316.69 213.39 316.89 L 204.64 335.18 C 204.56 335.36 204.57 335.57 204.67 335.73 C 204.78 335.9 204.96 336 205.16 336 L 213.52 336 C 213.75 336 213.95 335.87 214.04 335.67 L 218.62 326.02 C 218.7 325.86 218.7 325.68 218.62 325.52 Z M 234.3 334.86 L 227.25 334.86 L 215.94 311.18 C 215.84 310.98 215.64 310.86 215.42 310.86 L 210.81 310.86 L 210.81 305.14 L 219.85 305.14 L 231.11 328.82 C 231.21 329.02 231.41 329.14 231.63 329.14 L 234.3 329.14 Z M 234.87 328 L 231.99 328 L 220.73 304.33 C 220.64 304.13 220.44 304 220.22 304 L 210.24 304 C 209.93 304 209.67 304.26 209.67 304.57 L 209.66 311.43 C 209.66 311.58 209.72 311.73 209.83 311.83 C 209.94 311.94 210.08 312 210.24 312 L 215.06 312 L 226.37 335.67 C 226.47 335.87 226.67 336 226.89 336 L 234.87 336 C 235.19 336 235.44 335.74 235.44 335.43 L 235.44 328.57 C 235.44 328.26 235.19 328 234.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 280 300 L 320 300 L 320 340 L 280 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 296.61 328.94 L 298.29 328.94 L 298.29 327.79 L 296.61 327.79 Z M 299.43 328.94 L 301.14 328.94 L 301.14 327.79 L 299.43 327.79 Z M 292.58 305.53 L 285.16 309.21 L 285.16 332.11 L 292.58 334.62 Z M 293.72 312.82 L 293.72 327.79 L 295.43 327.79 L 295.43 328.94 L 293.72 328.94 L 293.72 335.42 C 293.72 335.61 293.63 335.78 293.48 335.89 C 293.38 335.96 293.27 336 293.15 336 C 293.09 336 293.03 335.99 292.97 335.97 L 284.4 333.07 C 284.17 333 284.01 332.78 284.01 332.53 L 284.01 308.86 C 284.01 308.64 284.14 308.44 284.33 308.34 L 292.9 304.09 C 293.07 304 293.28 304.01 293.45 304.12 C 293.62 304.22 293.72 304.41 293.72 304.6 L 293.72 311.67 L 295.43 311.67 L 295.43 312.82 Z M 302.28 328.94 L 304 328.94 L 304 327.79 L 302.28 327.79 Z M 302.32 312.82 L 304 312.82 L 304 311.67 L 302.32 311.67 Z M 299.47 312.82 L 301.14 312.82 L 301.14 311.67 L 299.47 311.67 Z M 296.61 312.82 L 298.29 312.82 L 298.29 311.67 L 296.61 311.67 Z M 314.84 309.21 L 307.42 305.53 L 307.42 334.62 L 314.84 332.11 Z M 315.99 332.53 C 315.99 332.78 315.83 333 315.6 333.07 L 307.03 335.97 C 306.97 335.99 306.91 336 306.85 336 C 306.73 336 306.62 335.96 306.52 335.89 C 306.37 335.78 306.28 335.61 306.28 335.42 L 306.28 328.94 L 305.18 328.94 L 305.18 327.79 L 306.28 327.79 L 306.28 312.82 L 305.18 312.82 L 305.18 311.67 L 306.28 311.67 L 306.28 304.6 C 306.28 304.41 306.38 304.22 306.55 304.12 C 306.72 304.01 306.93 304 307.1 304.09 L 315.67 308.34 C 315.86 308.44 315.99 308.64 315.99 308.86 Z M 301.68 316.48 L 300.61 316.07 L 297.75 323.55 L 298.82 323.96 Z M 305.54 320.13 C 305.77 319.91 305.77 319.54 305.54 319.32 L 303.26 317.02 L 302.45 317.83 L 304.33 319.73 L 302.45 321.62 L 303.26 322.44 Z M 296.74 322.44 L 294.46 320.13 C 294.23 319.91 294.23 319.54 294.46 319.32 L 296.74 317.02 L 297.55 317.83 L 295.67 319.73 L 297.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 240 300 L 280 300 L 280 340 L 240 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 267.8 334.86 C 266.58 334.86 265.58 333.86 265.58 332.62 C 265.58 331.39 266.58 330.39 267.8 330.39 C 269.03 330.39 270.02 331.39 270.02 332.62 C 270.02 333.86 269.03 334.86 267.8 334.86 Z M 262.93 325.14 L 257.03 325.14 L 254.07 320 L 257.03 314.86 L 262.93 314.86 L 265.89 320 Z M 252.93 309.61 C 251.7 309.61 250.7 308.61 250.7 307.38 C 250.7 306.14 251.7 305.14 252.93 305.14 C 254.15 305.14 255.15 306.14 255.15 307.38 C 255.15 308.61 254.15 309.61 252.93 309.61 Z M 267.8 329.25 C 267.38 329.25 266.98 329.33 266.61 329.47 L 264.19 325.38 L 264.07 325.45 L 267.03 320.29 C 267.14 320.11 267.14 319.89 267.03 319.71 L 263.75 314 C 263.65 313.82 263.46 313.71 263.26 313.71 L 257.29 313.71 L 257.31 313.7 L 255.1 309.95 C 255.82 309.33 256.28 308.4 256.28 307.38 C 256.28 305.51 254.78 304 252.93 304 C 251.08 304 249.57 305.51 249.57 307.38 C 249.57 309.24 251.08 310.75 252.93 310.75 C 253.35 310.75 253.75 310.67 254.12 310.53 L 256.19 314.03 L 252.93 319.71 C 252.82 319.89 252.82 320.11 252.93 320.29 L 256.21 326 C 256.31 326.18 256.5 326.29 256.7 326.29 L 263.26 326.29 C 263.31 326.29 263.35 326.28 263.4 326.27 L 265.63 330.05 C 264.91 330.67 264.45 331.6 264.45 332.62 C 264.45 334.49 265.95 336 267.8 336 C 269.66 336 271.16 334.49 271.16 332.62 C 271.16 330.76 269.66 329.25 267.8 329.25 Z M 271.19 315.49 C 269.97 315.49 268.97 314.49 268.97 313.25 C 268.97 312.02 269.97 311.02 271.19 311.02 C 272.42 311.02 273.41 312.02 273.41 313.25 C 273.41 314.49 272.42 315.49 271.19 315.49 Z M 275.35 319.71 L 273.2 315.96 C 274.02 315.34 274.55 314.36 274.55 313.25 C 274.55 311.39 273.04 309.88 271.19 309.88 C 270.72 309.88 270.27 309.98 269.86 310.15 L 268.1 307.09 C 268 306.91 267.82 306.81 267.61 306.81 L 260.57 306.81 L 260.57 307.95 L 267.28 307.95 L 268.91 310.78 C 268.25 311.4 267.83 312.28 267.83 313.25 C 267.83 315.12 269.34 316.63 271.19 316.63 C 271.54 316.63 271.87 316.58 272.18 316.48 L 274.2 320 L 271.37 324.94 L 272.35 325.51 L 275.35 320.29 C 275.45 320.11 275.45 319.89 275.35 319.71 Z M 249.27 328.71 C 248.05 328.71 247.05 327.71 247.05 326.48 C 247.05 325.25 248.05 324.25 249.27 324.25 C 250.5 324.25 251.5 325.25 251.5 326.48 C 251.5 327.71 250.5 328.71 249.27 328.71 Z M 251.13 329.29 C 252.03 328.68 252.63 327.65 252.63 326.48 C 252.63 324.62 251.12 323.1 249.27 323.1 C 248.74 323.1 248.23 323.23 247.78 323.46 L 245.8 320 L 249.09 314.27 L 248.1 313.7 L 244.65 319.71 C 244.55 319.89 244.55 320.11 244.65 320.29 L 246.86 324.14 C 246.28 324.75 245.92 325.57 245.92 326.48 C 245.92 328.34 247.42 329.86 249.27 329.86 C 249.55 329.86 249.82 329.82 250.08 329.75 L 251.9 332.91 C 252 333.09 252.18 333.19 252.39 333.19 L 259.43 333.19 L 259.43 332.05 L 252.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 240 340 L 280 340 L 280 380 L 240 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 271.94 361.65 L 272.16 360.11 C 274.18 361.32 274.21 361.82 274.21 361.83 C 274.2 361.84 273.86 362.13 271.94 361.65 Z M 270.83 361.34 C 267.33 360.29 262.46 358.05 260.49 357.12 C 260.49 357.11 260.49 357.11 260.49 357.1 C 260.49 356.34 259.88 355.72 259.12 355.72 C 258.36 355.72 257.75 356.34 257.75 357.1 C 257.75 357.85 258.36 358.47 259.12 358.47 C 259.45 358.47 259.75 358.35 259.99 358.15 C 262.31 359.25 267.14 361.45 270.67 362.49 L 269.27 372.32 C 269.27 372.35 269.27 372.37 269.27 372.4 C 269.27 373.27 265.43 374.86 259.17 374.86 C 252.84 374.86 248.97 373.27 248.97 372.4 C 248.97 372.37 248.97 372.35 248.97 372.32 L 246.05 351.06 C 248.57 352.8 253.99 353.71 259.18 353.71 C 264.35 353.71 269.76 352.8 272.29 351.07 Z M 245.75 348.84 C 245.79 348.09 250.11 345.14 259.18 345.14 C 268.24 345.14 272.56 348.09 272.6 348.84 L 272.6 349.1 C 272.11 350.79 266.51 352.57 259.18 352.57 C 251.83 352.57 246.23 350.78 245.75 349.09 Z M 273.75 348.86 C 273.75 346.88 268.07 344 259.18 344 C 250.28 344 244.6 346.88 244.6 348.86 L 244.66 349.29 L 247.83 372.44 C 247.9 375.03 254.81 376 259.17 376 C 264.59 376 270.34 374.76 270.41 372.45 L 271.78 362.79 C 272.54 362.97 273.17 363.07 273.67 363.07 C 274.35 363.07 274.8 362.9 275.08 362.57 C 275.31 362.3 275.4 361.97 275.33 361.62 C 275.18 360.83 274.24 359.98 272.33 358.89 L 273.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 320 300 L 360 300 L 360 340 L 320 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 347.53 330.06 L 347.53 327.02 L 349.41 326.26 L 349.41 329.3 Z M 344.39 326.26 L 346.27 327.02 L 346.27 330.06 L 344.39 329.3 Z M 340.63 334.45 L 340.63 331.41 L 342.51 330.65 L 342.51 333.69 Z M 337.49 330.65 L 339.37 331.41 L 339.37 334.45 L 337.49 333.69 Z M 333.73 330.06 L 333.73 327.02 L 335.61 326.26 L 335.61 329.3 Z M 330.59 326.26 L 332.47 327.02 L 332.47 330.06 L 330.59 329.3 Z M 333.1 324.76 L 334.55 325.34 L 333.1 325.92 L 331.65 325.34 Z M 340 329.15 L 341.45 329.73 L 340 330.31 L 338.55 329.73 Z M 346.9 324.76 L 348.35 325.34 L 346.9 325.92 L 345.45 325.34 Z M 350.27 324.76 L 347.13 323.5 C 346.98 323.44 346.82 323.44 346.67 323.5 L 343.53 324.76 C 343.29 324.85 343.14 325.08 343.14 325.34 L 343.14 329.05 L 340.23 327.89 C 340.08 327.83 339.92 327.83 339.77 327.89 L 336.86 329.05 L 336.86 325.34 C 336.86 325.08 336.71 324.85 336.47 324.76 L 333.33 323.5 C 333.18 323.44 333.02 323.44 332.87 323.5 L 329.73 324.76 C 329.49 324.85 329.34 325.08 329.34 325.34 L 329.34 329.73 C 329.34 329.98 329.49 330.21 329.73 330.31 L 332.87 331.57 C 332.94 331.59 333.02 331.61 333.1 331.61 C 333.18 331.61 333.26 331.59 333.33 331.57 L 336.24 330.4 L 336.24 334.12 C 336.24 334.37 336.39 334.61 336.63 334.7 L 339.77 335.96 C 339.84 335.98 339.92 336 340 336 C 340.08 336 340.16 335.98 340.23 335.96 L 343.37 334.7 C 343.61 334.61 343.76 334.37 343.76 334.12 L 343.76 330.4 L 346.67 331.57 C 346.74 331.59 346.82 331.61 346.9 331.61 C 346.98 331.61 347.06 331.59 347.13 331.57 L 350.27 330.31 C 350.51 330.21 350.66 329.98 350.66 329.73 L 350.66 325.34 C 350.66 325.08 350.51 324.85 350.27 324.76 Z M 355.68 317.15 C 355.68 320.81 347.6 322.79 340 322.79 C 332.4 322.79 324.32 320.81 324.32 317.15 C 324.32 315.4 326.26 313.85 329.79 312.81 L 330.14 314.01 C 327.33 314.85 325.57 316.05 325.57 317.15 C 325.57 319.22 331.5 321.54 340 321.54 C 348.5 321.54 354.43 319.22 354.43 317.15 C 354.43 316.05 352.67 314.85 349.86 314.01 L 350.21 312.81 C 353.74 313.85 355.68 315.4 355.68 317.15 Z M 340 305.31 L 346.41 307.78 L 340 310.24 L 333.59 307.78 Z M 346.64 317.71 C 345.45 318.24 343.47 318.86 340.63 318.94 L 340.63 311.34 L 347.53 308.69 L 347.53 316.34 C 347.53 316.93 347.18 317.47 346.64 317.71 Z M 332.47 316.34 L 332.47 308.69 L 339.37 311.34 L 339.37 318.94 C 336.53 318.86 334.55 318.24 333.36 317.71 C 332.82 317.47 332.47 316.93 332.47 316.34 Z M 332.85 318.86 C 334.23 319.48 336.59 320.21 340 320.21 C 343.41 320.21 345.77 319.48 347.15 318.86 C 348.14 318.42 348.78 317.43 348.78 316.34 L 348.78 307.78 C 348.78 307.52 348.62 307.28 348.38 307.19 L 340.23 304.06 C 340.08 304 339.92 304 339.77 304.06 L 331.62 307.19 C 331.38 307.28 331.22 307.52 331.22 307.78 L 331.22 316.34 C 331.22 317.43 331.86 318.42 332.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 320 340 L 360 340 L 360 380 L 320 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 348.64 366.93 C 348.64 365.98 347.87 365.21 346.93 365.21 C 345.98 365.21 345.21 365.98 345.21 366.93 C 345.21 367.87 345.98 368.64 346.93 368.64 C 347.87 368.64 348.64 367.87 348.64 366.93 Z M 349.78 366.93 C 349.78 368.5 348.5 369.78 346.93 369.78 C 345.35 369.78 344.07 368.5 344.07 366.93 C 344.07 365.35 345.35 364.07 346.93 364.07 C 348.5 364.07 349.78 365.35 349.78 366.93 Z M 334.51 358.68 C 334.51 357.74 333.74 356.97 332.8 356.97 C 331.85 356.97 331.08 357.74 331.08 358.68 C 331.08 359.63 331.85 360.4 332.8 360.4 C 333.74 360.4 334.51 359.63 334.51 358.68 Z M 335.65 358.68 C 335.65 360.26 334.37 361.54 332.8 361.54 C 331.22 361.54 329.94 360.26 329.94 358.68 C 329.94 357.11 331.22 355.82 332.8 355.82 C 334.37 355.82 335.65 357.11 335.65 358.68 Z M 339.85 349.72 C 339.85 350.66 340.61 351.43 341.56 351.43 C 342.51 351.43 343.27 350.66 343.27 349.72 C 343.27 348.77 342.51 348 341.56 348 C 340.61 348 339.85 348.77 339.85 349.72 Z M 338.7 349.72 C 338.7 348.14 339.99 346.86 341.56 346.86 C 343.14 346.86 344.42 348.14 344.42 349.72 C 344.42 351.29 343.14 352.58 341.56 352.58 C 339.99 352.58 338.7 351.29 338.7 349.72 Z M 354.86 360 C 354.86 354.7 352.02 349.8 347.44 347.15 C 346.61 347.31 345.82 347.54 344.83 347.9 L 344.44 346.82 C 344.96 346.64 345.42 346.49 345.87 346.36 C 344.03 345.56 342.03 345.14 340 345.14 C 339.03 345.14 338.09 345.24 337.16 345.42 C 337.83 345.82 338.43 346.21 339 346.65 L 338.31 347.56 C 337.5 346.94 336.65 346.42 335.54 345.83 C 329.93 347.6 325.89 352.55 325.25 358.36 C 326.42 358.12 327.55 357.99 328.81 357.96 L 328.84 359.1 C 327.52 359.13 326.39 359.27 325.16 359.55 C 325.15 359.7 325.14 359.85 325.14 360 C 325.14 364.95 327.59 369.51 331.62 372.26 C 330.9 370.12 330.54 368.11 330.54 366.14 C 330.54 365.02 330.74 364.1 330.94 363.12 C 330.99 362.9 331.04 362.67 331.08 362.43 L 332.2 362.65 C 332.16 362.89 332.11 363.13 332.06 363.36 C 331.86 364.31 331.69 365.14 331.69 366.14 C 331.69 368.37 332.18 370.68 333.17 373.19 C 335.3 374.29 337.59 374.86 340 374.86 C 341.57 374.86 343.11 374.61 344.58 374.12 C 345.15 372.99 345.58 371.92 345.94 370.69 L 347.03 371 C 346.77 371.9 346.48 372.72 346.12 373.53 C 347.04 373.11 347.91 372.6 348.73 372 C 348.54 371.52 348.32 371.04 348.09 370.57 L 349.11 370.06 C 349.31 370.46 349.49 370.86 349.67 371.27 C 352.97 368.44 354.86 364.38 354.86 360 Z M 356 360 C 356 364.99 353.73 369.6 349.78 372.66 C 348.81 373.42 347.74 374.05 346.62 374.56 C 346.15 374.77 345.66 374.97 345.16 375.14 C 343.52 375.71 341.78 376 340 376 C 337.37 376 334.76 375.35 332.45 374.11 C 327.24 371.32 324 365.91 324 360 C 324 359.61 324.01 359.31 324.03 359.03 C 324.42 352.36 329 346.58 335.43 344.67 C 336.89 344.22 338.43 344 340 344 C 342.75 344 345.45 344.71 347.82 346.05 C 352.86 348.87 356 354.22 356 360 Z M 338.47 351.69 L 337.71 350.83 C 336.43 351.95 335.44 353.14 334.27 354.93 L 335.23 355.55 C 336.33 353.85 337.27 352.74 338.47 351.69 Z M 336.73 359.1 L 336.36 360.18 C 338.98 361.08 341.27 362.52 343.56 364.71 L 344.35 363.88 C 341.94 361.58 339.51 360.06 336.73 359.1 Z M 344.37 352.38 C 346.51 355.65 347.72 359.24 347.96 363.05 L 346.82 363.12 C 346.59 359.51 345.45 356.11 343.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 280 340 L 320 340 L 320 380 L 280 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 285.95 345.14 L 291.26 350.45 L 290.45 351.26 L 285.14 345.95 L 285.14 350.29 L 284 350.29 L 284 344.57 C 284 344.26 284.26 344 284.57 344 L 290.29 344 L 290.29 345.14 Z M 316 344.57 L 316 350.29 L 314.86 350.29 L 314.86 345.95 L 309.55 351.26 L 308.74 350.45 L 314.05 345.14 L 309.71 345.14 L 309.71 344 L 315.43 344 C 315.74 344 316 344.26 316 344.57 Z M 314.86 369.71 L 316 369.71 L 316 375.43 C 316 375.74 315.74 376 315.43 376 L 309.71 376 L 309.71 374.86 L 314.05 374.86 L 308.74 369.55 L 309.55 368.74 L 314.86 374.05 Z M 314.57 359.55 C 314.57 357.65 312.38 355.78 308.71 354.54 L 309.08 353.46 C 313.3 354.88 315.71 357.1 315.71 359.55 C 315.71 362 313.3 364.22 309.08 365.65 L 308.71 364.56 C 312.38 363.32 314.57 361.45 314.57 359.55 Z M 285.46 359.55 C 285.46 361.37 287.51 363.19 290.94 364.43 L 290.56 365.51 C 286.59 364.07 284.32 361.9 284.32 359.55 C 284.32 357.2 286.59 355.03 290.56 353.6 L 290.94 354.67 C 287.51 355.91 285.46 357.73 285.46 359.55 Z M 291.26 369.55 L 285.95 374.86 L 290.29 374.86 L 290.29 376 L 284.57 376 C 284.26 376 284 375.74 284 375.43 L 284 369.71 L 285.14 369.71 L 285.14 374.05 L 290.45 368.74 Z M 300 355.02 C 295.92 355.02 293.71 353.97 293.71 353.53 C 293.71 353.1 295.92 352.05 300 352.05 C 304.08 352.05 306.29 353.1 306.29 353.53 C 306.29 353.97 304.08 355.02 300 355.02 Z M 300.02 359.45 C 296.11 359.45 293.71 358.38 293.71 357.8 L 293.71 355.02 C 295.12 355.8 297.62 356.16 300 356.16 C 302.38 356.16 304.88 355.8 306.29 355.02 L 306.29 357.8 C 306.29 358.38 303.91 359.45 300.02 359.45 Z M 300.02 363.81 C 296.11 363.81 293.71 362.74 293.71 362.16 L 293.71 359.35 C 295.1 360.17 297.57 360.59 300.02 360.59 C 302.45 360.59 304.9 360.17 306.29 359.35 L 306.29 362.16 C 306.29 362.74 303.91 363.81 300.02 363.81 Z M 300 367.72 C 295.93 367.72 293.71 366.63 293.71 366.07 L 293.71 363.71 C 295.1 364.53 297.57 364.95 300.02 364.95 C 302.45 364.95 304.9 364.53 306.29 363.72 L 306.29 366.07 C 306.29 366.63 304.07 367.72 300 367.72 Z M 300 350.91 C 296.42 350.91 292.57 351.73 292.57 353.53 L 292.57 366.07 C 292.57 367.91 296.31 368.87 300 368.87 C 303.69 368.87 307.43 367.91 307.43 366.07 L 307.43 353.53 C 307.43 351.73 303.58 350.91 300 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 200 340 L 240 340 L 240 380 L 200 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 226.88 368.49 C 224.98 370.03 220.98 370.84 217.15 370.84 C 213.32 370.84 209.31 370.03 207.41 368.49 L 207.41 371.59 L 207.41 371.59 C 207.41 373.14 211.41 374.87 217.15 374.87 C 222.88 374.87 226.88 373.14 226.88 371.59 Z M 226.88 362.58 L 228.03 362.58 L 228.03 362.58 C 228.03 363.27 227.68 363.92 227.01 364.51 C 227.82 365.23 228.03 365.93 228.03 366.43 C 228.03 366.44 228.03 366.44 228.03 366.44 L 228.03 371.59 L 228.03 371.59 C 228.03 374.45 222.42 376 217.15 376 C 211.88 376 206.29 374.46 206.27 371.61 C 206.27 371.61 206.26 371.61 206.26 371.6 L 206.26 366.43 C 206.26 366.43 206.26 366.43 206.26 366.43 C 206.27 365.93 206.47 365.22 207.28 364.51 C 206.48 363.79 206.27 363.09 206.26 362.6 L 206.26 362.6 C 206.26 362.59 206.26 362.59 206.26 362.59 L 206.26 357.42 C 206.26 357.42 206.26 357.42 206.26 357.41 C 206.27 356.91 206.47 356.21 207.29 355.5 C 206.48 354.78 206.27 354.08 206.26 353.58 L 206.26 353.58 C 206.26 353.58 206.26 353.58 206.26 353.58 L 206.26 348.41 C 206.26 348.41 206.26 348.4 206.26 348.4 C 206.27 345.54 211.88 344 217.15 344 C 220.12 344 222.98 344.47 224.99 345.3 L 224.56 346.35 C 222.68 345.58 219.98 345.13 217.15 345.13 C 211.41 345.13 207.41 346.86 207.41 348.41 C 207.41 349.96 211.41 351.69 217.15 351.69 C 217.3 351.69 217.45 351.69 217.61 351.68 L 217.65 352.81 C 217.48 352.82 217.32 352.82 217.15 352.82 C 213.32 352.82 209.31 352 207.41 350.46 L 207.41 353.57 L 207.41 353.57 L 207.41 353.58 C 207.41 354.17 208.02 354.69 208.53 355.02 C 210.07 356 212.82 356.67 215.9 356.81 L 215.84 357.94 C 212.73 357.8 210.01 357.16 208.25 356.17 C 207.82 356.49 207.41 356.93 207.41 357.42 C 207.41 358.97 211.41 360.7 217.15 360.7 C 217.71 360.7 218.27 360.68 218.81 360.64 L 218.89 361.77 C 218.32 361.81 217.74 361.83 217.15 361.83 C 213.32 361.83 209.31 361.02 207.41 359.47 L 207.41 362.58 L 207.41 362.58 C 207.41 363.19 208.02 363.7 208.53 364.03 C 210.29 365.16 213.59 365.85 217.15 365.85 L 217.4 365.85 L 217.4 366.99 L 217.15 366.99 C 213.54 366.99 210.25 366.32 208.25 365.18 C 207.82 365.51 207.41 365.94 207.41 366.43 C 207.41 367.98 211.41 369.71 217.15 369.71 C 222.88 369.71 226.88 367.99 226.88 366.44 L 226.88 366.43 L 226.88 366.43 C 226.88 365.94 226.47 365.5 226.04 365.18 C 225.76 365.34 225.46 365.49 225.12 365.63 L 224.69 364.58 C 225.1 364.41 225.46 364.23 225.76 364.04 C 226.27 363.7 226.88 363.17 226.88 362.58 Z M 231.78 354.3 L 228.58 354.3 C 228.39 354.3 228.21 354.2 228.1 354.05 C 228 353.89 227.98 353.69 228.05 353.52 L 229.99 348.65 L 222.62 348.65 L 219.19 355.45 L 222.84 355.45 C 223.02 355.45 223.19 355.54 223.3 355.68 C 223.4 355.83 223.44 356.02 223.38 356.19 L 220.13 366.34 Z M 233.53 354.12 L 219.25 368.88 C 219.14 368.99 218.99 369.05 218.84 369.05 C 218.74 369.05 218.63 369.03 218.54 368.97 C 218.32 368.84 218.21 368.57 218.29 368.32 L 222.05 356.59 L 218.26 356.59 C 218.07 356.59 217.88 356.48 217.78 356.32 C 217.67 356.15 217.66 355.94 217.75 355.77 L 221.75 347.83 C 221.85 347.64 222.05 347.52 222.26 347.52 L 230.84 347.52 C 231.02 347.52 231.2 347.61 231.31 347.77 C 231.42 347.92 231.44 348.12 231.37 348.29 L 229.42 353.16 L 233.12 353.16 C 233.35 353.16 233.56 353.3 233.65 353.51 C 233.74 353.72 233.69 353.96 233.53 354.12 Z M 208.24 371.81 C 209.05 372.27 210.07 372.65 211.27 372.95 L 211.55 371.85 C 210.46 371.58 209.51 371.23 208.8 370.83 Z M 211.27 363.89 L 211.55 362.79 C 210.46 362.51 209.51 362.16 208.8 361.76 L 208.24 362.75 C 209.05 363.2 210.07 363.59 211.27 363.89 Z M 208.24 353.68 L 208.8 352.69 C 209.51 353.09 210.46 353.45 211.55 353.72 L 211.27 354.82 C 210.07 354.52 209.05 354.13 208.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="200" y="300" width="160" height="80" fill="none" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><rect x="380" y="140" width="160" height="40" fill="#21c0a5" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="459.5" y="173.5">test</text></g><rect x="380" y="260" width="160" height="40" fill="#0b3d35" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="459.5" y="286">for QA purposes</text></g><rect x="380" y="180" width="160" height="40" fill="#21c0a5" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="459.5" y="198.5">environment</text></g><rect x="380" y="220" width="160" height="40" fill="#0b3d35" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="459.5" y="246">OPTIONAL</text></g><path d="M 380 300 L 420 300 L 420 340 L 380 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 393.16 334.86 L 386.07 334.86 L 393.91 318.45 L 397.47 325.77 Z M 394.43 316.89 C 394.33 316.69 394.13 316.57 393.91 316.57 L 393.91 316.57 C 393.69 316.57 393.49 316.69 393.39 316.89 L 384.64 335.18 C 384.56 335.36 384.57 335.57 384.67 335.73 C 384.78 335.9 384.96 336 385.16 336 L 393.52 336 C 393.75 336 393.95 335.87 394.04 335.67 L 398.62 326.02 C 398.7 325.86 398.7 325.68 398.62 325.52 Z M 414.3 334.86 L 407.25 334.86 L 395.94 311.18 C 395.84 310.98 395.64 310.86 395.42 310.86 L 390.81 310.86 L 390.81 305.14 L 399.85 305.14 L 411.11 328.82 C 411.21 329.02 411.41 329.14 411.63 329.14 L 414.3 329.14 Z M 414.87 328 L 411.99 328 L 400.73 304.33 C 400.64 304.13 400.44 304 400.22 304 L 390.24 304 C 389.93 304 389.67 304.26 389.67 304.57 L 389.66 311.43 C 389.66 311.58 389.72 311.73 389.83 311.83 C 389.94 311.94 390.08 312 390.24 312 L 395.06 312 L 406.37 335.67 C 406.47 335.87 406.67 336 406.89 336 L 414.87 336 C 415.19 336 415.44 335.74 415.44 335.43 L 415.44 328.57 C 415.44 328.26 415.19 328 414.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 460 300 L 500 300 L 500 340 L 460 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 476.61 328.94 L 478.29 328.94 L 478.29 327.79 L 476.61 327.79 Z M 479.43 328.94 L 481.14 328.94 L 481.14 327.79 L 479.43 327.79 Z M 472.58 305.53 L 465.16 309.21 L 465.16 332.11 L 472.58 334.62 Z M 473.72 312.82 L 473.72 327.79 L 475.43 327.79 L 475.43 328.94 L 473.72 328.94 L 473.72 335.42 C 473.72 335.61 473.63 335.78 473.48 335.89 C 473.38 335.96 473.27 336 473.15 336 C 473.09 336 473.03 335.99 472.97 335.97 L 464.4 333.07 C 464.17 333 464.01 332.78 464.01 332.53 L 464.01 308.86 C 464.01 308.64 464.14 308.44 464.33 308.34 L 472.9 304.09 C 473.07 304 473.28 304.01 473.45 304.12 C 473.62 304.22 473.72 304.41 473.72 304.6 L 473.72 311.67 L 475.43 311.67 L 475.43 312.82 Z M 482.28 328.94 L 484 328.94 L 484 327.79 L 482.28 327.79 Z M 482.32 312.82 L 484 312.82 L 484 311.67 L 482.32 311.67 Z M 479.47 312.82 L 481.14 312.82 L 481.14 311.67 L 479.47 311.67 Z M 476.61 312.82 L 478.29 312.82 L 478.29 311.67 L 476.61 311.67 Z M 494.84 309.21 L 487.42 305.53 L 487.42 334.62 L 494.84 332.11 Z M 495.99 332.53 C 495.99 332.78 495.83 333 495.6 333.07 L 487.03 335.97 C 486.97 335.99 486.91 336 486.85 336 C 486.73 336 486.62 335.96 486.52 335.89 C 486.37 335.78 486.28 335.61 486.28 335.42 L 486.28 328.94 L 485.18 328.94 L 485.18 327.79 L 486.28 327.79 L 486.28 312.82 L 485.18 312.82 L 485.18 311.67 L 486.28 311.67 L 486.28 304.6 C 486.28 304.41 486.38 304.22 486.55 304.12 C 486.72 304.01 486.93 304 487.1 304.09 L 495.67 308.34 C 495.86 308.44 495.99 308.64 495.99 308.86 Z M 481.68 316.48 L 480.61 316.07 L 477.75 323.55 L 478.82 323.96 Z M 485.54 320.13 C 485.77 319.91 485.77 319.54 485.54 319.32 L 483.26 317.02 L 482.45 317.83 L 484.33 319.73 L 482.45 321.62 L 483.26 322.44 Z M 476.74 322.44 L 474.46 320.13 C 474.23 319.91 474.23 319.54 474.46 319.32 L 476.74 317.02 L 477.55 317.83 L 475.67 319.73 L 477.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 420 300 L 460 300 L 460 340 L 420 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 447.8 334.86 C 446.58 334.86 445.58 333.86 445.58 332.62 C 445.58 331.39 446.58 330.39 447.8 330.39 C 449.03 330.39 450.02 331.39 450.02 332.62 C 450.02 333.86 449.03 334.86 447.8 334.86 Z M 442.93 325.14 L 437.03 325.14 L 434.07 320 L 437.03 314.86 L 442.93 314.86 L 445.89 320 Z M 432.93 309.61 C 431.7 309.61 430.7 308.61 430.7 307.38 C 430.7 306.14 431.7 305.14 432.93 305.14 C 434.15 305.14 435.15 306.14 435.15 307.38 C 435.15 308.61 434.15 309.61 432.93 309.61 Z M 447.8 329.25 C 447.38 329.25 446.98 329.33 446.61 329.47 L 444.19 325.38 L 444.07 325.45 L 447.03 320.29 C 447.14 320.11 447.14 319.89 447.03 319.71 L 443.75 314 C 443.65 313.82 443.46 313.71 443.26 313.71 L 437.29 313.71 L 437.31 313.7 L 435.1 309.95 C 435.82 309.33 436.28 308.4 436.28 307.38 C 436.28 305.51 434.78 304 432.93 304 C 431.08 304 429.57 305.51 429.57 307.38 C 429.57 309.24 431.08 310.75 432.93 310.75 C 433.35 310.75 433.75 310.67 434.12 310.53 L 436.19 314.03 L 432.93 319.71 C 432.82 319.89 432.82 320.11 432.93 320.29 L 436.21 326 C 436.31 326.18 436.5 326.29 436.7 326.29 L 443.26 326.29 C 443.31 326.29 443.35 326.28 443.4 326.27 L 445.63 330.05 C 444.91 330.67 444.45 331.6 444.45 332.62 C 444.45 334.49 445.95 336 447.8 336 C 449.66 336 451.16 334.49 451.16 332.62 C 451.16 330.76 449.66 329.25 447.8 329.25 Z M 451.19 315.49 C 449.97 315.49 448.97 314.49 448.97 313.25 C 448.97 312.02 449.97 311.02 451.19 311.02 C 452.42 311.02 453.41 312.02 453.41 313.25 C 453.41 314.49 452.42 315.49 451.19 315.49 Z M 455.35 319.71 L 453.2 315.96 C 454.02 315.34 454.55 314.36 454.55 313.25 C 454.55 311.39 453.04 309.88 451.19 309.88 C 450.72 309.88 450.27 309.98 449.86 310.15 L 448.1 307.09 C 448 306.91 447.82 306.81 447.61 306.81 L 440.57 306.81 L 440.57 307.95 L 447.28 307.95 L 448.91 310.78 C 448.25 311.4 447.83 312.28 447.83 313.25 C 447.83 315.12 449.34 316.63 451.19 316.63 C 451.54 316.63 451.87 316.58 452.18 316.48 L 454.2 320 L 451.37 324.94 L 452.35 325.51 L 455.35 320.29 C 455.45 320.11 455.45 319.89 455.35 319.71 Z M 429.27 328.71 C 428.05 328.71 427.05 327.71 427.05 326.48 C 427.05 325.25 428.05 324.25 429.27 324.25 C 430.5 324.25 431.5 325.25 431.5 326.48 C 431.5 327.71 430.5 328.71 429.27 328.71 Z M 431.13 329.29 C 432.03 328.68 432.63 327.65 432.63 326.48 C 432.63 324.62 431.12 323.1 429.27 323.1 C 428.74 323.1 428.23 323.23 427.78 323.46 L 425.8 320 L 429.09 314.27 L 428.1 313.7 L 424.65 319.71 C 424.55 319.89 424.55 320.11 424.65 320.29 L 426.86 324.14 C 426.28 324.75 425.92 325.57 425.92 326.48 C 425.92 328.34 427.42 329.86 429.27 329.86 C 429.55 329.86 429.82 329.82 430.08 329.75 L 431.9 332.91 C 432 333.09 432.18 333.19 432.39 333.19 L 439.43 333.19 L 439.43 332.05 L 432.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 420 340 L 460 340 L 460 380 L 420 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 451.94 361.65 L 452.16 360.11 C 454.18 361.32 454.21 361.82 454.21 361.83 C 454.2 361.84 453.86 362.13 451.94 361.65 Z M 450.83 361.34 C 447.33 360.29 442.46 358.05 440.49 357.12 C 440.49 357.11 440.49 357.11 440.49 357.1 C 440.49 356.34 439.88 355.72 439.12 355.72 C 438.36 355.72 437.75 356.34 437.75 357.1 C 437.75 357.85 438.36 358.47 439.12 358.47 C 439.45 358.47 439.75 358.35 439.99 358.15 C 442.31 359.25 447.14 361.45 450.67 362.49 L 449.27 372.32 C 449.27 372.35 449.27 372.37 449.27 372.4 C 449.27 373.27 445.43 374.86 439.17 374.86 C 432.84 374.86 428.97 373.27 428.97 372.4 C 428.97 372.37 428.97 372.35 428.97 372.32 L 426.05 351.06 C 428.57 352.8 433.99 353.71 439.18 353.71 C 444.35 353.71 449.76 352.8 452.29 351.07 Z M 425.75 348.84 C 425.79 348.09 430.11 345.14 439.18 345.14 C 448.24 345.14 452.56 348.09 452.6 348.84 L 452.6 349.1 C 452.11 350.79 446.51 352.57 439.18 352.57 C 431.83 352.57 426.23 350.78 425.75 349.09 Z M 453.75 348.86 C 453.75 346.88 448.07 344 439.18 344 C 430.28 344 424.6 346.88 424.6 348.86 L 424.66 349.29 L 427.83 372.44 C 427.9 375.03 434.81 376 439.17 376 C 444.59 376 450.34 374.76 450.41 372.45 L 451.78 362.79 C 452.54 362.97 453.17 363.07 453.67 363.07 C 454.35 363.07 454.8 362.9 455.08 362.57 C 455.31 362.3 455.4 361.97 455.33 361.62 C 455.18 360.83 454.24 359.98 452.33 358.89 L 453.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 500 300 L 540 300 L 540 340 L 500 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 527.53 330.06 L 527.53 327.02 L 529.41 326.26 L 529.41 329.3 Z M 524.39 326.26 L 526.27 327.02 L 526.27 330.06 L 524.39 329.3 Z M 520.63 334.45 L 520.63 331.41 L 522.51 330.65 L 522.51 333.69 Z M 517.49 330.65 L 519.37 331.41 L 519.37 334.45 L 517.49 333.69 Z M 513.73 330.06 L 513.73 327.02 L 515.61 326.26 L 515.61 329.3 Z M 510.59 326.26 L 512.47 327.02 L 512.47 330.06 L 510.59 329.3 Z M 513.1 324.76 L 514.55 325.34 L 513.1 325.92 L 511.65 325.34 Z M 520 329.15 L 521.45 329.73 L 520 330.31 L 518.55 329.73 Z M 526.9 324.76 L 528.35 325.34 L 526.9 325.92 L 525.45 325.34 Z M 530.27 324.76 L 527.13 323.5 C 526.98 323.44 526.82 323.44 526.67 323.5 L 523.53 324.76 C 523.29 324.85 523.14 325.08 523.14 325.34 L 523.14 329.05 L 520.23 327.89 C 520.08 327.83 519.92 327.83 519.77 327.89 L 516.86 329.05 L 516.86 325.34 C 516.86 325.08 516.71 324.85 516.47 324.76 L 513.33 323.5 C 513.18 323.44 513.02 323.44 512.87 323.5 L 509.73 324.76 C 509.49 324.85 509.34 325.08 509.34 325.34 L 509.34 329.73 C 509.34 329.98 509.49 330.21 509.73 330.31 L 512.87 331.57 C 512.94 331.59 513.02 331.61 513.1 331.61 C 513.18 331.61 513.26 331.59 513.33 331.57 L 516.24 330.4 L 516.24 334.12 C 516.24 334.37 516.39 334.61 516.63 334.7 L 519.77 335.96 C 519.84 335.98 519.92 336 520 336 C 520.08 336 520.16 335.98 520.23 335.96 L 523.37 334.7 C 523.61 334.61 523.76 334.37 523.76 334.12 L 523.76 330.4 L 526.67 331.57 C 526.74 331.59 526.82 331.61 526.9 331.61 C 526.98 331.61 527.06 331.59 527.13 331.57 L 530.27 330.31 C 530.51 330.21 530.66 329.98 530.66 329.73 L 530.66 325.34 C 530.66 325.08 530.51 324.85 530.27 324.76 Z M 535.68 317.15 C 535.68 320.81 527.6 322.79 520 322.79 C 512.4 322.79 504.32 320.81 504.32 317.15 C 504.32 315.4 506.26 313.85 509.79 312.81 L 510.14 314.01 C 507.33 314.85 505.57 316.05 505.57 317.15 C 505.57 319.22 511.5 321.54 520 321.54 C 528.5 321.54 534.43 319.22 534.43 317.15 C 534.43 316.05 532.67 314.85 529.86 314.01 L 530.21 312.81 C 533.74 313.85 535.68 315.4 535.68 317.15 Z M 520 305.31 L 526.41 307.78 L 520 310.24 L 513.59 307.78 Z M 526.64 317.71 C 525.45 318.24 523.47 318.86 520.63 318.94 L 520.63 311.34 L 527.53 308.69 L 527.53 316.34 C 527.53 316.93 527.18 317.47 526.64 317.71 Z M 512.47 316.34 L 512.47 308.69 L 519.37 311.34 L 519.37 318.94 C 516.53 318.86 514.55 318.24 513.36 317.71 C 512.82 317.47 512.47 316.93 512.47 316.34 Z M 512.85 318.86 C 514.23 319.48 516.59 320.21 520 320.21 C 523.41 320.21 525.77 319.48 527.15 318.86 C 528.14 318.42 528.78 317.43 528.78 316.34 L 528.78 307.78 C 528.78 307.52 528.62 307.28 528.38 307.19 L 520.23 304.06 C 520.08 304 519.92 304 519.77 304.06 L 511.62 307.19 C 511.38 307.28 511.22 307.52 511.22 307.78 L 511.22 316.34 C 511.22 317.43 511.86 318.42 512.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 500 340 L 540 340 L 540 380 L 500 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 528.64 366.93 C 528.64 365.98 527.87 365.21 526.93 365.21 C 525.98 365.21 525.21 365.98 525.21 366.93 C 525.21 367.87 525.98 368.64 526.93 368.64 C 527.87 368.64 528.64 367.87 528.64 366.93 Z M 529.78 366.93 C 529.78 368.5 528.5 369.78 526.93 369.78 C 525.35 369.78 524.07 368.5 524.07 366.93 C 524.07 365.35 525.35 364.07 526.93 364.07 C 528.5 364.07 529.78 365.35 529.78 366.93 Z M 514.51 358.68 C 514.51 357.74 513.74 356.97 512.8 356.97 C 511.85 356.97 511.08 357.74 511.08 358.68 C 511.08 359.63 511.85 360.4 512.8 360.4 C 513.74 360.4 514.51 359.63 514.51 358.68 Z M 515.65 358.68 C 515.65 360.26 514.37 361.54 512.8 361.54 C 511.22 361.54 509.94 360.26 509.94 358.68 C 509.94 357.11 511.22 355.82 512.8 355.82 C 514.37 355.82 515.65 357.11 515.65 358.68 Z M 519.85 349.72 C 519.85 350.66 520.61 351.43 521.56 351.43 C 522.51 351.43 523.27 350.66 523.27 349.72 C 523.27 348.77 522.51 348 521.56 348 C 520.61 348 519.85 348.77 519.85 349.72 Z M 518.7 349.72 C 518.7 348.14 519.99 346.86 521.56 346.86 C 523.14 346.86 524.42 348.14 524.42 349.72 C 524.42 351.29 523.14 352.58 521.56 352.58 C 519.99 352.58 518.7 351.29 518.7 349.72 Z M 534.86 360 C 534.86 354.7 532.02 349.8 527.44 347.15 C 526.61 347.31 525.82 347.54 524.83 347.9 L 524.44 346.82 C 524.96 346.64 525.42 346.49 525.87 346.36 C 524.03 345.56 522.03 345.14 520 345.14 C 519.03 345.14 518.09 345.24 517.16 345.42 C 517.83 345.82 518.43 346.21 519 346.65 L 518.31 347.56 C 517.5 346.94 516.65 346.42 515.54 345.83 C 509.93 347.6 505.89 352.55 505.25 358.36 C 506.42 358.12 507.55 357.99 508.81 357.96 L 508.84 359.1 C 507.52 359.13 506.39 359.27 505.16 359.55 C 505.15 359.7 505.14 359.85 505.14 360 C 505.14 364.95 507.59 369.51 511.62 372.26 C 510.9 370.12 510.54 368.11 510.54 366.14 C 510.54 365.02 510.74 364.1 510.94 363.12 C 510.99 362.9 511.04 362.67 511.08 362.43 L 512.2 362.65 C 512.16 362.89 512.11 363.13 512.06 363.36 C 511.86 364.31 511.69 365.14 511.69 366.14 C 511.69 368.37 512.18 370.68 513.17 373.19 C 515.3 374.29 517.59 374.86 520 374.86 C 521.57 374.86 523.11 374.61 524.58 374.12 C 525.15 372.99 525.58 371.92 525.94 370.69 L 527.03 371 C 526.77 371.9 526.48 372.72 526.12 373.53 C 527.04 373.11 527.91 372.6 528.73 372 C 528.54 371.52 528.32 371.04 528.09 370.57 L 529.11 370.06 C 529.31 370.46 529.49 370.86 529.67 371.27 C 532.97 368.44 534.86 364.38 534.86 360 Z M 536 360 C 536 364.99 533.73 369.6 529.78 372.66 C 528.81 373.42 527.74 374.05 526.62 374.56 C 526.15 374.77 525.66 374.97 525.16 375.14 C 523.52 375.71 521.78 376 520 376 C 517.37 376 514.76 375.35 512.45 374.11 C 507.24 371.32 504 365.91 504 360 C 504 359.61 504.01 359.31 504.03 359.03 C 504.42 352.36 509 346.58 515.43 344.67 C 516.89 344.22 518.43 344 520 344 C 522.75 344 525.45 344.71 527.82 346.05 C 532.86 348.87 536 354.22 536 360 Z M 518.47 351.69 L 517.71 350.83 C 516.43 351.95 515.44 353.14 514.27 354.93 L 515.23 355.55 C 516.33 353.85 517.27 352.74 518.47 351.69 Z M 516.73 359.1 L 516.36 360.18 C 518.98 361.08 521.27 362.52 523.56 364.71 L 524.35 363.88 C 521.94 361.58 519.51 360.06 516.73 359.1 Z M 524.37 352.38 C 526.51 355.65 527.72 359.24 527.96 363.05 L 526.82 363.12 C 526.59 359.51 525.45 356.11 523.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 460 340 L 500 340 L 500 380 L 460 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 465.95 345.14 L 471.26 350.45 L 470.45 351.26 L 465.14 345.95 L 465.14 350.29 L 464 350.29 L 464 344.57 C 464 344.26 464.26 344 464.57 344 L 470.29 344 L 470.29 345.14 Z M 496 344.57 L 496 350.29 L 494.86 350.29 L 494.86 345.95 L 489.55 351.26 L 488.74 350.45 L 494.05 345.14 L 489.71 345.14 L 489.71 344 L 495.43 344 C 495.74 344 496 344.26 496 344.57 Z M 494.86 369.71 L 496 369.71 L 496 375.43 C 496 375.74 495.74 376 495.43 376 L 489.71 376 L 489.71 374.86 L 494.05 374.86 L 488.74 369.55 L 489.55 368.74 L 494.86 374.05 Z M 494.57 359.55 C 494.57 357.65 492.38 355.78 488.71 354.54 L 489.08 353.46 C 493.3 354.88 495.71 357.1 495.71 359.55 C 495.71 362 493.3 364.22 489.08 365.65 L 488.71 364.56 C 492.38 363.32 494.57 361.45 494.57 359.55 Z M 465.46 359.55 C 465.46 361.37 467.51 363.19 470.94 364.43 L 470.56 365.51 C 466.59 364.07 464.32 361.9 464.32 359.55 C 464.32 357.2 466.59 355.03 470.56 353.6 L 470.94 354.67 C 467.51 355.91 465.46 357.73 465.46 359.55 Z M 471.26 369.55 L 465.95 374.86 L 470.29 374.86 L 470.29 376 L 464.57 376 C 464.26 376 464 375.74 464 375.43 L 464 369.71 L 465.14 369.71 L 465.14 374.05 L 470.45 368.74 Z M 480 355.02 C 475.92 355.02 473.71 353.97 473.71 353.53 C 473.71 353.1 475.92 352.05 480 352.05 C 484.08 352.05 486.29 353.1 486.29 353.53 C 486.29 353.97 484.08 355.02 480 355.02 Z M 480.02 359.45 C 476.11 359.45 473.71 358.38 473.71 357.8 L 473.71 355.02 C 475.12 355.8 477.62 356.16 480 356.16 C 482.38 356.16 484.88 355.8 486.29 355.02 L 486.29 357.8 C 486.29 358.38 483.91 359.45 480.02 359.45 Z M 480.02 363.81 C 476.11 363.81 473.71 362.74 473.71 362.16 L 473.71 359.35 C 475.1 360.17 477.57 360.59 480.02 360.59 C 482.45 360.59 484.9 360.17 486.29 359.35 L 486.29 362.16 C 486.29 362.74 483.91 363.81 480.02 363.81 Z M 480 367.72 C 475.93 367.72 473.71 366.63 473.71 366.07 L 473.71 363.71 C 475.1 364.53 477.57 364.95 480.02 364.95 C 482.45 364.95 484.9 364.53 486.29 363.72 L 486.29 366.07 C 486.29 366.63 484.07 367.72 480 367.72 Z M 480 350.91 C 476.42 350.91 472.57 351.73 472.57 353.53 L 472.57 366.07 C 472.57 367.91 476.31 368.87 480 368.87 C 483.69 368.87 487.43 367.91 487.43 366.07 L 487.43 353.53 C 487.43 351.73 483.58 350.91 480 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 380 340 L 420 340 L 420 380 L 380 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 406.88 368.49 C 404.98 370.03 400.98 370.84 397.15 370.84 C 393.32 370.84 389.31 370.03 387.41 368.49 L 387.41 371.59 L 387.41 371.59 C 387.41 373.14 391.41 374.87 397.15 374.87 C 402.88 374.87 406.88 373.14 406.88 371.59 Z M 406.88 362.58 L 408.03 362.58 L 408.03 362.58 C 408.03 363.27 407.68 363.92 407.01 364.51 C 407.82 365.23 408.03 365.93 408.03 366.43 C 408.03 366.44 408.03 366.44 408.03 366.44 L 408.03 371.59 L 408.03 371.59 C 408.03 374.45 402.42 376 397.15 376 C 391.88 376 386.29 374.46 386.27 371.61 C 386.27 371.61 386.26 371.61 386.26 371.6 L 386.26 366.43 C 386.26 366.43 386.26 366.43 386.26 366.43 C 386.27 365.93 386.47 365.22 387.28 364.51 C 386.48 363.79 386.27 363.09 386.26 362.6 L 386.26 362.6 C 386.26 362.59 386.26 362.59 386.26 362.59 L 386.26 357.42 C 386.26 357.42 386.26 357.42 386.26 357.41 C 386.27 356.91 386.47 356.21 387.29 355.5 C 386.48 354.78 386.27 354.08 386.26 353.58 L 386.26 353.58 C 386.26 353.58 386.26 353.58 386.26 353.58 L 386.26 348.41 C 386.26 348.41 386.26 348.4 386.26 348.4 C 386.27 345.54 391.88 344 397.15 344 C 400.12 344 402.98 344.47 404.99 345.3 L 404.56 346.35 C 402.68 345.58 399.98 345.13 397.15 345.13 C 391.41 345.13 387.41 346.86 387.41 348.41 C 387.41 349.96 391.41 351.69 397.15 351.69 C 397.3 351.69 397.45 351.69 397.61 351.68 L 397.65 352.81 C 397.48 352.82 397.32 352.82 397.15 352.82 C 393.32 352.82 389.31 352 387.41 350.46 L 387.41 353.57 L 387.41 353.57 L 387.41 353.58 C 387.41 354.17 388.02 354.69 388.53 355.02 C 390.07 356 392.82 356.67 395.9 356.81 L 395.84 357.94 C 392.73 357.8 390.01 357.16 388.25 356.17 C 387.82 356.49 387.41 356.93 387.41 357.42 C 387.41 358.97 391.41 360.7 397.15 360.7 C 397.71 360.7 398.27 360.68 398.81 360.64 L 398.89 361.77 C 398.32 361.81 397.74 361.83 397.15 361.83 C 393.32 361.83 389.31 361.02 387.41 359.47 L 387.41 362.58 L 387.41 362.58 C 387.41 363.19 388.02 363.7 388.53 364.03 C 390.29 365.16 393.59 365.85 397.15 365.85 L 397.4 365.85 L 397.4 366.99 L 397.15 366.99 C 393.54 366.99 390.25 366.32 388.25 365.18 C 387.82 365.51 387.41 365.94 387.41 366.43 C 387.41 367.98 391.41 369.71 397.15 369.71 C 402.88 369.71 406.88 367.99 406.88 366.44 L 406.88 366.43 L 406.88 366.43 C 406.88 365.94 406.47 365.5 406.04 365.18 C 405.76 365.34 405.46 365.49 405.12 365.63 L 404.69 364.58 C 405.1 364.41 405.46 364.23 405.76 364.04 C 406.27 363.7 406.88 363.17 406.88 362.58 Z M 411.78 354.3 L 408.58 354.3 C 408.39 354.3 408.21 354.2 408.1 354.05 C 408 353.89 407.98 353.69 408.05 353.52 L 409.99 348.65 L 402.62 348.65 L 399.19 355.45 L 402.84 355.45 C 403.02 355.45 403.19 355.54 403.3 355.68 C 403.4 355.83 403.44 356.02 403.38 356.19 L 400.13 366.34 Z M 413.53 354.12 L 399.25 368.88 C 399.14 368.99 398.99 369.05 398.84 369.05 C 398.74 369.05 398.63 369.03 398.54 368.97 C 398.32 368.84 398.21 368.57 398.29 368.32 L 402.05 356.59 L 398.26 356.59 C 398.07 356.59 397.88 356.48 397.78 356.32 C 397.67 356.15 397.66 355.94 397.75 355.77 L 401.75 347.83 C 401.85 347.64 402.05 347.52 402.26 347.52 L 410.84 347.52 C 411.02 347.52 411.2 347.61 411.31 347.77 C 411.42 347.92 411.44 348.12 411.37 348.29 L 409.42 353.16 L 413.12 353.16 C 413.35 353.16 413.56 353.3 413.65 353.51 C 413.74 353.72 413.69 353.96 413.53 354.12 Z M 388.24 371.81 C 389.05 372.27 390.07 372.65 391.27 372.95 L 391.55 371.85 C 390.46 371.58 389.51 371.23 388.8 370.83 Z M 391.27 363.89 L 391.55 362.79 C 390.46 362.51 389.51 362.16 388.8 361.76 L 388.24 362.75 C 389.05 363.2 390.07 363.59 391.27 363.89 Z M 388.24 353.68 L 388.8 352.69 C 389.51 353.09 390.46 353.45 391.55 353.72 L 391.27 354.82 C 390.07 354.52 389.05 354.13 388.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="380" y="300" width="160" height="80" fill="none" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><rect x="560" y="140" width="160" height="40" fill="#45a364" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="639.5" y="173.5">staging</text></g><rect x="560" y="260" width="160" height="40" fill="#193b24" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="639.5" y="286">release candidate</text></g><rect x="560" y="180" width="160" height="40" fill="#45a364" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="639.5" y="198.5">environment</text></g><rect x="560" y="220" width="160" height="40" fill="#193b24" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-weight="bold" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="639.5" y="246">REQUIRED</text></g><path d="M 560 300 L 600 300 L 600 340 L 560 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 573.16 334.86 L 566.07 334.86 L 573.91 318.45 L 577.47 325.77 Z M 574.43 316.89 C 574.33 316.69 574.13 316.57 573.91 316.57 L 573.91 316.57 C 573.69 316.57 573.49 316.69 573.39 316.89 L 564.64 335.18 C 564.56 335.36 564.57 335.57 564.67 335.73 C 564.78 335.9 564.96 336 565.16 336 L 573.52 336 C 573.75 336 573.95 335.87 574.04 335.67 L 578.62 326.02 C 578.7 325.86 578.7 325.68 578.62 325.52 Z M 594.3 334.86 L 587.25 334.86 L 575.94 311.18 C 575.84 310.98 575.64 310.86 575.42 310.86 L 570.81 310.86 L 570.81 305.14 L 579.85 305.14 L 591.11 328.82 C 591.21 329.02 591.41 329.14 591.63 329.14 L 594.3 329.14 Z M 594.87 328 L 591.99 328 L 580.73 304.33 C 580.64 304.13 580.44 304 580.22 304 L 570.24 304 C 569.93 304 569.67 304.26 569.67 304.57 L 569.66 311.43 C 569.66 311.58 569.72 311.73 569.83 311.83 C 569.94 311.94 570.08 312 570.24 312 L 575.06 312 L 586.37 335.67 C 586.47 335.87 586.67 336 586.89 336 L 594.87 336 C 595.19 336 595.44 335.74 595.44 335.43 L 595.44 328.57 C 595.44 328.26 595.19 328 594.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 640 300 L 680 300 L 680 340 L 640 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 656.61 328.94 L 658.29 328.94 L 658.29 327.79 L 656.61 327.79 Z M 659.43 328.94 L 661.14 328.94 L 661.14 327.79 L 659.43 327.79 Z M 652.58 305.53 L 645.16 309.21 L 645.16 332.11 L 652.58 334.62 Z M 653.72 312.82 L 653.72 327.79 L 655.43 327.79 L 655.43 328.94 L 653.72 328.94 L 653.72 335.42 C 653.72 335.61 653.63 335.78 653.48 335.89 C 653.38 335.96 653.27 336 653.15 336 C 653.09 336 653.03 335.99 652.97 335.97 L 644.4 333.07 C 644.17 333 644.01 332.78 644.01 332.53 L 644.01 308.86 C 644.01 308.64 644.14 308.44 644.33 308.34 L 652.9 304.09 C 653.07 304 653.28 304.01 653.45 304.12 C 653.62 304.22 653.72 304.41 653.72 304.6 L 653.72 311.67 L 655.43 311.67 L 655.43 312.82 Z M 662.28 328.94 L 664 328.94 L 664 327.79 L 662.28 327.79 Z M 662.32 312.82 L 664 312.82 L 664 311.67 L 662.32 311.67 Z M 659.47 312.82 L 661.14 312.82 L 661.14 311.67 L 659.47 311.67 Z M 656.61 312.82 L 658.29 312.82 L 658.29 311.67 L 656.61 311.67 Z M 674.84 309.21 L 667.42 305.53 L 667.42 334.62 L 674.84 332.11 Z M 675.99 332.53 C 675.99 332.78 675.83 333 675.6 333.07 L 667.03 335.97 C 666.97 335.99 666.91 336 666.85 336 C 666.73 336 666.62 335.96 666.52 335.89 C 666.37 335.78 666.28 335.61 666.28 335.42 L 666.28 328.94 L 665.18 328.94 L 665.18 327.79 L 666.28 327.79 L 666.28 312.82 L 665.18 312.82 L 665.18 311.67 L 666.28 311.67 L 666.28 304.6 C 666.28 304.41 666.38 304.22 666.55 304.12 C 666.72 304.01 666.93 304 667.1 304.09 L 675.67 308.34 C 675.86 308.44 675.99 308.64 675.99 308.86 Z M 661.68 316.48 L 660.61 316.07 L 657.75 323.55 L 658.82 323.96 Z M 665.54 320.13 C 665.77 319.91 665.77 319.54 665.54 319.32 L 663.26 317.02 L 662.45 317.83 L 664.33 319.73 L 662.45 321.62 L 663.26 322.44 Z M 656.74 322.44 L 654.46 320.13 C 654.23 319.91 654.23 319.54 654.46 319.32 L 656.74 317.02 L 657.55 317.83 L 655.67 319.73 L 657.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 600 300 L 640 300 L 640 340 L 600 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 627.8 334.86 C 626.58 334.86 625.58 333.86 625.58 332.62 C 625.58 331.39 626.58 330.39 627.8 330.39 C 629.03 330.39 630.02 331.39 630.02 332.62 C 630.02 333.86 629.03 334.86 627.8 334.86 Z M 622.93 325.14 L 617.03 325.14 L 614.07 320 L 617.03 314.86 L 622.93 314.86 L 625.89 320 Z M 612.93 309.61 C 611.7 309.61 610.7 308.61 610.7 307.38 C 610.7 306.14 611.7 305.14 612.93 305.14 C 614.15 305.14 615.15 306.14 615.15 307.38 C 615.15 308.61 614.15 309.61 612.93 309.61 Z M 627.8 329.25 C 627.38 329.25 626.98 329.33 626.61 329.47 L 624.19 325.38 L 624.07 325.45 L 627.03 320.29 C 627.14 320.11 627.14 319.89 627.03 319.71 L 623.75 314 C 623.65 313.82 623.46 313.71 623.26 313.71 L 617.29 313.71 L 617.31 313.7 L 615.1 309.95 C 615.82 309.33 616.28 308.4 616.28 307.38 C 616.28 305.51 614.78 304 612.93 304 C 611.08 304 609.57 305.51 609.57 307.38 C 609.57 309.24 611.08 310.75 612.93 310.75 C 613.35 310.75 613.75 310.67 614.12 310.53 L 616.19 314.03 L 612.93 319.71 C 612.82 319.89 612.82 320.11 612.93 320.29 L 616.21 326 C 616.31 326.18 616.5 326.29 616.7 326.29 L 623.26 326.29 C 623.31 326.29 623.35 326.28 623.4 326.27 L 625.63 330.05 C 624.91 330.67 624.45 331.6 624.45 332.62 C 624.45 334.49 625.95 336 627.8 336 C 629.66 336 631.16 334.49 631.16 332.62 C 631.16 330.76 629.66 329.25 627.8 329.25 Z M 631.19 315.49 C 629.97 315.49 628.97 314.49 628.97 313.25 C 628.97 312.02 629.97 311.02 631.19 311.02 C 632.42 311.02 633.41 312.02 633.41 313.25 C 633.41 314.49 632.42 315.49 631.19 315.49 Z M 635.35 319.71 L 633.2 315.96 C 634.02 315.34 634.55 314.36 634.55 313.25 C 634.55 311.39 633.04 309.88 631.19 309.88 C 630.72 309.88 630.27 309.98 629.86 310.15 L 628.1 307.09 C 628 306.91 627.82 306.81 627.61 306.81 L 620.57 306.81 L 620.57 307.95 L 627.28 307.95 L 628.91 310.78 C 628.25 311.4 627.83 312.28 627.83 313.25 C 627.83 315.12 629.34 316.63 631.19 316.63 C 631.54 316.63 631.87 316.58 632.18 316.48 L 634.2 320 L 631.37 324.94 L 632.35 325.51 L 635.35 320.29 C 635.45 320.11 635.45 319.89 635.35 319.71 Z M 609.27 328.71 C 608.05 328.71 607.05 327.71 607.05 326.48 C 607.05 325.25 608.05 324.25 609.27 324.25 C 610.5 324.25 611.5 325.25 611.5 326.48 C 611.5 327.71 610.5 328.71 609.27 328.71 Z M 611.13 329.29 C 612.03 328.68 612.63 327.65 612.63 326.48 C 612.63 324.62 611.12 323.1 609.27 323.1 C 608.74 323.1 608.23 323.23 607.78 323.46 L 605.8 320 L 609.09 314.27 L 608.1 313.7 L 604.65 319.71 C 604.55 319.89 604.55 320.11 604.65 320.29 L 606.86 324.14 C 606.28 324.75 605.92 325.57 605.92 326.48 C 605.92 328.34 607.42 329.86 609.27 329.86 C 609.55 329.86 609.82 329.82 610.08 329.75 L 611.9 332.91 C 612 333.09 612.18 333.19 612.39 333.19 L 619.43 333.19 L 619.43 332.05 L 612.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 600 340 L 640 340 L 640 380 L 600 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 631.94 361.65 L 632.16 360.11 C 634.18 361.32 634.21 361.82 634.21 361.83 C 634.2 361.84 633.86 362.13 631.94 361.65 Z M 630.83 361.34 C 627.33 360.29 622.46 358.05 620.49 357.12 C 620.49 357.11 620.49 357.11 620.49 357.1 C 620.49 356.34 619.88 355.72 619.12 355.72 C 618.36 355.72 617.75 356.34 617.75 357.1 C 617.75 357.85 618.36 358.47 619.12 358.47 C 619.45 358.47 619.75 358.35 619.99 358.15 C 622.31 359.25 627.14 361.45 630.67 362.49 L 629.27 372.32 C 629.27 372.35 629.27 372.37 629.27 372.4 C 629.27 373.27 625.43 374.86 619.17 374.86 C 612.84 374.86 608.97 373.27 608.97 372.4 C 608.97 372.37 608.97 372.35 608.97 372.32 L 606.05 351.06 C 608.57 352.8 613.99 353.71 619.18 353.71 C 624.35 353.71 629.76 352.8 632.29 351.07 Z M 605.75 348.84 C 605.79 348.09 610.11 345.14 619.18 345.14 C 628.24 345.14 632.56 348.09 632.6 348.84 L 632.6 349.1 C 632.11 350.79 626.51 352.57 619.18 352.57 C 611.83 352.57 606.23 350.78 605.75 349.09 Z M 633.75 348.86 C 633.75 346.88 628.07 344 619.18 344 C 610.28 344 604.6 346.88 604.6 348.86 L 604.66 349.29 L 607.83 372.44 C 607.9 375.03 614.81 376 619.17 376 C 624.59 376 630.34 374.76 630.41 372.45 L 631.78 362.79 C 632.54 362.97 633.17 363.07 633.67 363.07 C 634.35 363.07 634.8 362.9 635.08 362.57 C 635.31 362.3 635.4 361.97 635.33 361.62 C 635.18 360.83 634.24 359.98 632.33 358.89 L 633.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 680 300 L 720 300 L 720 340 L 680 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 707.53 330.06 L 707.53 327.02 L 709.41 326.26 L 709.41 329.3 Z M 704.39 326.26 L 706.27 327.02 L 706.27 330.06 L 704.39 329.3 Z M 700.63 334.45 L 700.63 331.41 L 702.51 330.65 L 702.51 333.69 Z M 697.49 330.65 L 699.37 331.41 L 699.37 334.45 L 697.49 333.69 Z M 693.73 330.06 L 693.73 327.02 L 695.61 326.26 L 695.61 329.3 Z M 690.59 326.26 L 692.47 327.02 L 692.47 330.06 L 690.59 329.3 Z M 693.1 324.76 L 694.55 325.34 L 693.1 325.92 L 691.65 325.34 Z M 700 329.15 L 701.45 329.73 L 700 330.31 L 698.55 329.73 Z M 706.9 324.76 L 708.35 325.34 L 706.9 325.92 L 705.45 325.34 Z M 710.27 324.76 L 707.13 323.5 C 706.98 323.44 706.82 323.44 706.67 323.5 L 703.53 324.76 C 703.29 324.85 703.14 325.08 703.14 325.34 L 703.14 329.05 L 700.23 327.89 C 700.08 327.83 699.92 327.83 699.77 327.89 L 696.86 329.05 L 696.86 325.34 C 696.86 325.08 696.71 324.85 696.47 324.76 L 693.33 323.5 C 693.18 323.44 693.02 323.44 692.87 323.5 L 689.73 324.76 C 689.49 324.85 689.34 325.08 689.34 325.34 L 689.34 329.73 C 689.34 329.98 689.49 330.21 689.73 330.31 L 692.87 331.57 C 692.94 331.59 693.02 331.61 693.1 331.61 C 693.18 331.61 693.26 331.59 693.33 331.57 L 696.24 330.4 L 696.24 334.12 C 696.24 334.37 696.39 334.61 696.63 334.7 L 699.77 335.96 C 699.84 335.98 699.92 336 700 336 C 700.08 336 700.16 335.98 700.23 335.96 L 703.37 334.7 C 703.61 334.61 703.76 334.37 703.76 334.12 L 703.76 330.4 L 706.67 331.57 C 706.74 331.59 706.82 331.61 706.9 331.61 C 706.98 331.61 707.06 331.59 707.13 331.57 L 710.27 330.31 C 710.51 330.21 710.66 329.98 710.66 329.73 L 710.66 325.34 C 710.66 325.08 710.51 324.85 710.27 324.76 Z M 715.68 317.15 C 715.68 320.81 707.6 322.79 700 322.79 C 692.4 322.79 684.32 320.81 684.32 317.15 C 684.32 315.4 686.26 313.85 689.79 312.81 L 690.14 314.01 C 687.33 314.85 685.57 316.05 685.57 317.15 C 685.57 319.22 691.5 321.54 700 321.54 C 708.5 321.54 714.43 319.22 714.43 317.15 C 714.43 316.05 712.67 314.85 709.86 314.01 L 710.21 312.81 C 713.74 313.85 715.68 315.4 715.68 317.15 Z M 700 305.31 L 706.41 307.78 L 700 310.24 L 693.59 307.78 Z M 706.64 317.71 C 705.45 318.24 703.47 318.86 700.63 318.94 L 700.63 311.34 L 707.53 308.69 L 707.53 316.34 C 707.53 316.93 707.18 317.47 706.64 317.71 Z M 692.47 316.34 L 692.47 308.69 L 699.37 311.34 L 699.37 318.94 C 696.53 318.86 694.55 318.24 693.36 317.71 C 692.82 317.47 692.47 316.93 692.47 316.34 Z M 692.85 318.86 C 694.23 319.48 696.59 320.21 700 320.21 C 703.41 320.21 705.77 319.48 707.15 318.86 C 708.14 318.42 708.78 317.43 708.78 316.34 L 708.78 307.78 C 708.78 307.52 708.62 307.28 708.38 307.19 L 700.23 304.06 C 700.08 304 699.92 304 699.77 304.06 L 691.62 307.19 C 691.38 307.28 691.22 307.52 691.22 307.78 L 691.22 316.34 C 691.22 317.43 691.86 318.42 692.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 680 340 L 720 340 L 720 380 L 680 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 708.64 366.93 C 708.64 365.98 707.87 365.21 706.93 365.21 C 705.98 365.21 705.21 365.98 705.21 366.93 C 705.21 367.87 705.98 368.64 706.93 368.64 C 707.87 368.64 708.64 367.87 708.64 366.93 Z M 709.78 366.93 C 709.78 368.5 708.5 369.78 706.93 369.78 C 705.35 369.78 704.07 368.5 704.07 366.93 C 704.07 365.35 705.35 364.07 706.93 364.07 C 708.5 364.07 709.78 365.35 709.78 366.93 Z M 694.51 358.68 C 694.51 357.74 693.74 356.97 692.8 356.97 C 691.85 356.97 691.08 357.74 691.08 358.68 C 691.08 359.63 691.85 360.4 692.8 360.4 C 693.74 360.4 694.51 359.63 694.51 358.68 Z M 695.65 358.68 C 695.65 360.26 694.37 361.54 692.8 361.54 C 691.22 361.54 689.94 360.26 689.94 358.68 C 689.94 357.11 691.22 355.82 692.8 355.82 C 694.37 355.82 695.65 357.11 695.65 358.68 Z M 699.85 349.72 C 699.85 350.66 700.61 351.43 701.56 351.43 C 702.51 351.43 703.27 350.66 703.27 349.72 C 703.27 348.77 702.51 348 701.56 348 C 700.61 348 699.85 348.77 699.85 349.72 Z M 698.7 349.72 C 698.7 348.14 699.99 346.86 701.56 346.86 C 703.14 346.86 704.42 348.14 704.42 349.72 C 704.42 351.29 703.14 352.58 701.56 352.58 C 699.99 352.58 698.7 351.29 698.7 349.72 Z M 714.86 360 C 714.86 354.7 712.02 349.8 707.44 347.15 C 706.61 347.31 705.82 347.54 704.83 347.9 L 704.44 346.82 C 704.96 346.64 705.42 346.49 705.87 346.36 C 704.03 345.56 702.03 345.14 700 345.14 C 699.03 345.14 698.09 345.24 697.16 345.42 C 697.83 345.82 698.43 346.21 699 346.65 L 698.31 347.56 C 697.5 346.94 696.65 346.42 695.54 345.83 C 689.93 347.6 685.89 352.55 685.25 358.36 C 686.42 358.12 687.55 357.99 688.81 357.96 L 688.84 359.1 C 687.52 359.13 686.39 359.27 685.16 359.55 C 685.15 359.7 685.14 359.85 685.14 360 C 685.14 364.95 687.59 369.51 691.62 372.26 C 690.9 370.12 690.54 368.11 690.54 366.14 C 690.54 365.02 690.74 364.1 690.94 363.12 C 690.99 362.9 691.04 362.67 691.08 362.43 L 692.2 362.65 C 692.16 362.89 692.11 363.13 692.06 363.36 C 691.86 364.31 691.69 365.14 691.69 366.14 C 691.69 368.37 692.18 370.68 693.17 373.19 C 695.3 374.29 697.59 374.86 700 374.86 C 701.57 374.86 703.11 374.61 704.58 374.12 C 705.15 372.99 705.58 371.92 705.94 370.69 L 707.03 371 C 706.77 371.9 706.48 372.72 706.12 373.53 C 707.04 373.11 707.91 372.6 708.73 372 C 708.54 371.52 708.32 371.04 708.09 370.57 L 709.11 370.06 C 709.31 370.46 709.49 370.86 709.67 371.27 C 712.97 368.44 714.86 364.38 714.86 360 Z M 716 360 C 716 364.99 713.73 369.6 709.78 372.66 C 708.81 373.42 707.74 374.05 706.62 374.56 C 706.15 374.77 705.66 374.97 705.16 375.14 C 703.52 375.71 701.78 376 700 376 C 697.37 376 694.76 375.35 692.45 374.11 C 687.24 371.32 684 365.91 684 360 C 684 359.61 684.01 359.31 684.03 359.03 C 684.42 352.36 689 346.58 695.43 344.67 C 696.89 344.22 698.43 344 700 344 C 702.75 344 705.45 344.71 707.82 346.05 C 712.86 348.87 716 354.22 716 360 Z M 698.47 351.69 L 697.71 350.83 C 696.43 351.95 695.44 353.14 694.27 354.93 L 695.23 355.55 C 696.33 353.85 697.27 352.74 698.47 351.69 Z M 696.73 359.1 L 696.36 360.18 C 698.98 361.08 701.27 362.52 703.56 364.71 L 704.35 363.88 C 701.94 361.58 699.51 360.06 696.73 359.1 Z M 704.37 352.38 C 706.51 355.65 707.72 359.24 707.96 363.05 L 706.82 363.12 C 706.59 359.51 705.45 356.11 703.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 640 340 L 680 340 L 680 380 L 640 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 645.95 345.14 L 651.26 350.45 L 650.45 351.26 L 645.14 345.95 L 645.14 350.29 L 644 350.29 L 644 344.57 C 644 344.26 644.26 344 644.57 344 L 650.29 344 L 650.29 345.14 Z M 676 344.57 L 676 350.29 L 674.86 350.29 L 674.86 345.95 L 669.55 351.26 L 668.74 350.45 L 674.05 345.14 L 669.71 345.14 L 669.71 344 L 675.43 344 C 675.74 344 676 344.26 676 344.57 Z M 674.86 369.71 L 676 369.71 L 676 375.43 C 676 375.74 675.74 376 675.43 376 L 669.71 376 L 669.71 374.86 L 674.05 374.86 L 668.74 369.55 L 669.55 368.74 L 674.86 374.05 Z M 674.57 359.55 C 674.57 357.65 672.38 355.78 668.71 354.54 L 669.08 353.46 C 673.3 354.88 675.71 357.1 675.71 359.55 C 675.71 362 673.3 364.22 669.08 365.65 L 668.71 364.56 C 672.38 363.32 674.57 361.45 674.57 359.55 Z M 645.46 359.55 C 645.46 361.37 647.51 363.19 650.94 364.43 L 650.56 365.51 C 646.59 364.07 644.32 361.9 644.32 359.55 C 644.32 357.2 646.59 355.03 650.56 353.6 L 650.94 354.67 C 647.51 355.91 645.46 357.73 645.46 359.55 Z M 651.26 369.55 L 645.95 374.86 L 650.29 374.86 L 650.29 376 L 644.57 376 C 644.26 376 644 375.74 644 375.43 L 644 369.71 L 645.14 369.71 L 645.14 374.05 L 650.45 368.74 Z M 660 355.02 C 655.92 355.02 653.71 353.97 653.71 353.53 C 653.71 353.1 655.92 352.05 660 352.05 C 664.08 352.05 666.29 353.1 666.29 353.53 C 666.29 353.97 664.08 355.02 660 355.02 Z M 660.02 359.45 C 656.11 359.45 653.71 358.38 653.71 357.8 L 653.71 355.02 C 655.12 355.8 657.62 356.16 660 356.16 C 662.38 356.16 664.88 355.8 666.29 355.02 L 666.29 357.8 C 666.29 358.38 663.91 359.45 660.02 359.45 Z M 660.02 363.81 C 656.11 363.81 653.71 362.74 653.71 362.16 L 653.71 359.35 C 655.1 360.17 657.57 360.59 660.02 360.59 C 662.45 360.59 664.9 360.17 666.29 359.35 L 666.29 362.16 C 666.29 362.74 663.91 363.81 660.02 363.81 Z M 660 367.72 C 655.93 367.72 653.71 366.63 653.71 366.07 L 653.71 363.71 C 655.1 364.53 657.57 364.95 660.02 364.95 C 662.45 364.95 664.9 364.53 666.29 363.72 L 666.29 366.07 C 666.29 366.63 664.07 367.72 660 367.72 Z M 660 350.91 C 656.42 350.91 652.57 351.73 652.57 353.53 L 652.57 366.07 C 652.57 367.91 656.31 368.87 660 368.87 C 663.69 368.87 667.43 367.91 667.43 366.07 L 667.43 353.53 C 667.43 351.73 663.58 350.91 660 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 560 340 L 600 340 L 600 380 L 560 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 586.88 368.49 C 584.98 370.03 580.98 370.84 577.15 370.84 C 573.32 370.84 569.31 370.03 567.41 368.49 L 567.41 371.59 L 567.41 371.59 C 567.41 373.14 571.41 374.87 577.15 374.87 C 582.88 374.87 586.88 373.14 586.88 371.59 Z M 586.88 362.58 L 588.03 362.58 L 588.03 362.58 C 588.03 363.27 587.68 363.92 587.01 364.51 C 587.82 365.23 588.03 365.93 588.03 366.43 C 588.03 366.44 588.03 366.44 588.03 366.44 L 588.03 371.59 L 588.03 371.59 C 588.03 374.45 582.42 376 577.15 376 C 571.88 376 566.29 374.46 566.27 371.61 C 566.27 371.61 566.26 371.61 566.26 371.6 L 566.26 366.43 C 566.26 366.43 566.26 366.43 566.26 366.43 C 566.27 365.93 566.47 365.22 567.28 364.51 C 566.48 363.79 566.27 363.09 566.26 362.6 L 566.26 362.6 C 566.26 362.59 566.26 362.59 566.26 362.59 L 566.26 357.42 C 566.26 357.42 566.26 357.42 566.26 357.41 C 566.27 356.91 566.47 356.21 567.29 355.5 C 566.48 354.78 566.27 354.08 566.26 353.58 L 566.26 353.58 C 566.26 353.58 566.26 353.58 566.26 353.58 L 566.26 348.41 C 566.26 348.41 566.26 348.4 566.26 348.4 C 566.27 345.54 571.88 344 577.15 344 C 580.12 344 582.98 344.47 584.99 345.3 L 584.56 346.35 C 582.68 345.58 579.98 345.13 577.15 345.13 C 571.41 345.13 567.41 346.86 567.41 348.41 C 567.41 349.96 571.41 351.69 577.15 351.69 C 577.3 351.69 577.45 351.69 577.61 351.68 L 577.65 352.81 C 577.48 352.82 577.32 352.82 577.15 352.82 C 573.32 352.82 569.31 352 567.41 350.46 L 567.41 353.57 L 567.41 353.57 L 567.41 353.58 C 567.41 354.17 568.02 354.69 568.53 355.02 C 570.07 356 572.82 356.67 575.9 356.81 L 575.84 357.94 C 572.73 357.8 570.01 357.16 568.25 356.17 C 567.82 356.49 567.41 356.93 567.41 357.42 C 567.41 358.97 571.41 360.7 577.15 360.7 C 577.71 360.7 578.27 360.68 578.81 360.64 L 578.89 361.77 C 578.32 361.81 577.74 361.83 577.15 361.83 C 573.32 361.83 569.31 361.02 567.41 359.47 L 567.41 362.58 L 567.41 362.58 C 567.41 363.19 568.02 363.7 568.53 364.03 C 570.29 365.16 573.59 365.85 577.15 365.85 L 577.4 365.85 L 577.4 366.99 L 577.15 366.99 C 573.54 366.99 570.25 366.32 568.25 365.18 C 567.82 365.51 567.41 365.94 567.41 366.43 C 567.41 367.98 571.41 369.71 577.15 369.71 C 582.88 369.71 586.88 367.99 586.88 366.44 L 586.88 366.43 L 586.88 366.43 C 586.88 365.94 586.47 365.5 586.04 365.18 C 585.76 365.34 585.46 365.49 585.12 365.63 L 584.69 364.58 C 585.1 364.41 585.46 364.23 585.76 364.04 C 586.27 363.7 586.88 363.17 586.88 362.58 Z M 591.78 354.3 L 588.58 354.3 C 588.39 354.3 588.21 354.2 588.1 354.05 C 588 353.89 587.98 353.69 588.05 353.52 L 589.99 348.65 L 582.62 348.65 L 579.19 355.45 L 582.84 355.45 C 583.02 355.45 583.19 355.54 583.3 355.68 C 583.4 355.83 583.44 356.02 583.38 356.19 L 580.13 366.34 Z M 593.53 354.12 L 579.25 368.88 C 579.14 368.99 578.99 369.05 578.84 369.05 C 578.74 369.05 578.63 369.03 578.54 368.97 C 578.32 368.84 578.21 368.57 578.29 368.32 L 582.05 356.59 L 578.26 356.59 C 578.07 356.59 577.88 356.48 577.78 356.32 C 577.67 356.15 577.66 355.94 577.75 355.77 L 581.75 347.83 C 581.85 347.64 582.05 347.52 582.26 347.52 L 590.84 347.52 C 591.02 347.52 591.2 347.61 591.31 347.77 C 591.42 347.92 591.44 348.12 591.37 348.29 L 589.42 353.16 L 593.12 353.16 C 593.35 353.16 593.56 353.3 593.65 353.51 C 593.74 353.72 593.69 353.96 593.53 354.12 Z M 568.24 371.81 C 569.05 372.27 570.07 372.65 571.27 372.95 L 571.55 371.85 C 570.46 371.58 569.51 371.23 568.8 370.83 Z M 571.27 363.89 L 571.55 362.79 C 570.46 362.51 569.51 362.16 568.8 361.76 L 568.24 362.75 C 569.05 363.2 570.07 363.59 571.27 363.89 Z M 568.24 353.68 L 568.8 352.69 C 569.51 353.09 570.46 353.45 571.55 353.72 L 571.27 354.82 C 570.07 354.52 569.05 354.13 568.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="560" y="300" width="160" height="80" fill="none" stroke="#45a364" stroke-width="2" pointer-events="none"/><rect x="780" y="140" width="160" height="40" fill="#d86613" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="859.5" y="173.5">preproduction</text></g><rect x="780" y="260" width="160" height="40" fill="#3d1d05" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="859.5" y="286">for QA purposes</text></g><rect x="780" y="180" width="160" height="40" fill="#d86613" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="859.5" y="198.5">environment</text></g><rect x="780" y="220" width="160" height="40" fill="#3d1d05" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="859.5" y="246">OPTIONAL</text></g><path d="M 780 300 L 820 300 L 820 340 L 780 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 793.16 334.86 L 786.07 334.86 L 793.91 318.45 L 797.47 325.77 Z M 794.43 316.89 C 794.33 316.69 794.13 316.57 793.91 316.57 L 793.91 316.57 C 793.69 316.57 793.49 316.69 793.39 316.89 L 784.64 335.18 C 784.56 335.36 784.57 335.57 784.67 335.73 C 784.78 335.9 784.96 336 785.16 336 L 793.52 336 C 793.75 336 793.95 335.87 794.04 335.67 L 798.62 326.02 C 798.7 325.86 798.7 325.68 798.62 325.52 Z M 814.3 334.86 L 807.25 334.86 L 795.94 311.18 C 795.84 310.98 795.64 310.86 795.42 310.86 L 790.81 310.86 L 790.81 305.14 L 799.85 305.14 L 811.11 328.82 C 811.21 329.02 811.41 329.14 811.63 329.14 L 814.3 329.14 Z M 814.87 328 L 811.99 328 L 800.73 304.33 C 800.64 304.13 800.44 304 800.22 304 L 790.24 304 C 789.93 304 789.67 304.26 789.67 304.57 L 789.66 311.43 C 789.66 311.58 789.72 311.73 789.83 311.83 C 789.94 311.94 790.08 312 790.24 312 L 795.06 312 L 806.37 335.67 C 806.47 335.87 806.67 336 806.89 336 L 814.87 336 C 815.19 336 815.44 335.74 815.44 335.43 L 815.44 328.57 C 815.44 328.26 815.19 328 814.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 860 300 L 900 300 L 900 340 L 860 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 876.61 328.94 L 878.29 328.94 L 878.29 327.79 L 876.61 327.79 Z M 879.43 328.94 L 881.14 328.94 L 881.14 327.79 L 879.43 327.79 Z M 872.58 305.53 L 865.16 309.21 L 865.16 332.11 L 872.58 334.62 Z M 873.72 312.82 L 873.72 327.79 L 875.43 327.79 L 875.43 328.94 L 873.72 328.94 L 873.72 335.42 C 873.72 335.61 873.63 335.78 873.48 335.89 C 873.38 335.96 873.27 336 873.15 336 C 873.09 336 873.03 335.99 872.97 335.97 L 864.4 333.07 C 864.17 333 864.01 332.78 864.01 332.53 L 864.01 308.86 C 864.01 308.64 864.14 308.44 864.33 308.34 L 872.9 304.09 C 873.07 304 873.28 304.01 873.45 304.12 C 873.62 304.22 873.72 304.41 873.72 304.6 L 873.72 311.67 L 875.43 311.67 L 875.43 312.82 Z M 882.28 328.94 L 884 328.94 L 884 327.79 L 882.28 327.79 Z M 882.32 312.82 L 884 312.82 L 884 311.67 L 882.32 311.67 Z M 879.47 312.82 L 881.14 312.82 L 881.14 311.67 L 879.47 311.67 Z M 876.61 312.82 L 878.29 312.82 L 878.29 311.67 L 876.61 311.67 Z M 894.84 309.21 L 887.42 305.53 L 887.42 334.62 L 894.84 332.11 Z M 895.99 332.53 C 895.99 332.78 895.83 333 895.6 333.07 L 887.03 335.97 C 886.97 335.99 886.91 336 886.85 336 C 886.73 336 886.62 335.96 886.52 335.89 C 886.37 335.78 886.28 335.61 886.28 335.42 L 886.28 328.94 L 885.18 328.94 L 885.18 327.79 L 886.28 327.79 L 886.28 312.82 L 885.18 312.82 L 885.18 311.67 L 886.28 311.67 L 886.28 304.6 C 886.28 304.41 886.38 304.22 886.55 304.12 C 886.72 304.01 886.93 304 887.1 304.09 L 895.67 308.34 C 895.86 308.44 895.99 308.64 895.99 308.86 Z M 881.68 316.48 L 880.61 316.07 L 877.75 323.55 L 878.82 323.96 Z M 885.54 320.13 C 885.77 319.91 885.77 319.54 885.54 319.32 L 883.26 317.02 L 882.45 317.83 L 884.33 319.73 L 882.45 321.62 L 883.26 322.44 Z M 876.74 322.44 L 874.46 320.13 C 874.23 319.91 874.23 319.54 874.46 319.32 L 876.74 317.02 L 877.55 317.83 L 875.67 319.73 L 877.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 820 300 L 860 300 L 860 340 L 820 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 847.8 334.86 C 846.58 334.86 845.58 333.86 845.58 332.62 C 845.58 331.39 846.58 330.39 847.8 330.39 C 849.03 330.39 850.02 331.39 850.02 332.62 C 850.02 333.86 849.03 334.86 847.8 334.86 Z M 842.93 325.14 L 837.03 325.14 L 834.07 320 L 837.03 314.86 L 842.93 314.86 L 845.89 320 Z M 832.93 309.61 C 831.7 309.61 830.7 308.61 830.7 307.38 C 830.7 306.14 831.7 305.14 832.93 305.14 C 834.15 305.14 835.15 306.14 835.15 307.38 C 835.15 308.61 834.15 309.61 832.93 309.61 Z M 847.8 329.25 C 847.38 329.25 846.98 329.33 846.61 329.47 L 844.19 325.38 L 844.07 325.45 L 847.03 320.29 C 847.14 320.11 847.14 319.89 847.03 319.71 L 843.75 314 C 843.65 313.82 843.46 313.71 843.26 313.71 L 837.29 313.71 L 837.31 313.7 L 835.1 309.95 C 835.82 309.33 836.28 308.4 836.28 307.38 C 836.28 305.51 834.78 304 832.93 304 C 831.08 304 829.57 305.51 829.57 307.38 C 829.57 309.24 831.08 310.75 832.93 310.75 C 833.35 310.75 833.75 310.67 834.12 310.53 L 836.19 314.03 L 832.93 319.71 C 832.82 319.89 832.82 320.11 832.93 320.29 L 836.21 326 C 836.31 326.18 836.5 326.29 836.7 326.29 L 843.26 326.29 C 843.31 326.29 843.35 326.28 843.4 326.27 L 845.63 330.05 C 844.91 330.67 844.45 331.6 844.45 332.62 C 844.45 334.49 845.95 336 847.8 336 C 849.66 336 851.16 334.49 851.16 332.62 C 851.16 330.76 849.66 329.25 847.8 329.25 Z M 851.19 315.49 C 849.97 315.49 848.97 314.49 848.97 313.25 C 848.97 312.02 849.97 311.02 851.19 311.02 C 852.42 311.02 853.41 312.02 853.41 313.25 C 853.41 314.49 852.42 315.49 851.19 315.49 Z M 855.35 319.71 L 853.2 315.96 C 854.02 315.34 854.55 314.36 854.55 313.25 C 854.55 311.39 853.04 309.88 851.19 309.88 C 850.72 309.88 850.27 309.98 849.86 310.15 L 848.1 307.09 C 848 306.91 847.82 306.81 847.61 306.81 L 840.57 306.81 L 840.57 307.95 L 847.28 307.95 L 848.91 310.78 C 848.25 311.4 847.83 312.28 847.83 313.25 C 847.83 315.12 849.34 316.63 851.19 316.63 C 851.54 316.63 851.87 316.58 852.18 316.48 L 854.2 320 L 851.37 324.94 L 852.35 325.51 L 855.35 320.29 C 855.45 320.11 855.45 319.89 855.35 319.71 Z M 829.27 328.71 C 828.05 328.71 827.05 327.71 827.05 326.48 C 827.05 325.25 828.05 324.25 829.27 324.25 C 830.5 324.25 831.5 325.25 831.5 326.48 C 831.5 327.71 830.5 328.71 829.27 328.71 Z M 831.13 329.29 C 832.03 328.68 832.63 327.65 832.63 326.48 C 832.63 324.62 831.12 323.1 829.27 323.1 C 828.74 323.1 828.23 323.23 827.78 323.46 L 825.8 320 L 829.09 314.27 L 828.1 313.7 L 824.65 319.71 C 824.55 319.89 824.55 320.11 824.65 320.29 L 826.86 324.14 C 826.28 324.75 825.92 325.57 825.92 326.48 C 825.92 328.34 827.42 329.86 829.27 329.86 C 829.55 329.86 829.82 329.82 830.08 329.75 L 831.9 332.91 C 832 333.09 832.18 333.19 832.39 333.19 L 839.43 333.19 L 839.43 332.05 L 832.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 820 340 L 860 340 L 860 380 L 820 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 851.94 361.65 L 852.16 360.11 C 854.18 361.32 854.21 361.82 854.21 361.83 C 854.2 361.84 853.86 362.13 851.94 361.65 Z M 850.83 361.34 C 847.33 360.29 842.46 358.05 840.49 357.12 C 840.49 357.11 840.49 357.11 840.49 357.1 C 840.49 356.34 839.88 355.72 839.12 355.72 C 838.36 355.72 837.75 356.34 837.75 357.1 C 837.75 357.85 838.36 358.47 839.12 358.47 C 839.45 358.47 839.75 358.35 839.99 358.15 C 842.31 359.25 847.14 361.45 850.67 362.49 L 849.27 372.32 C 849.27 372.35 849.27 372.37 849.27 372.4 C 849.27 373.27 845.43 374.86 839.17 374.86 C 832.84 374.86 828.97 373.27 828.97 372.4 C 828.97 372.37 828.97 372.35 828.97 372.32 L 826.05 351.06 C 828.57 352.8 833.99 353.71 839.18 353.71 C 844.35 353.71 849.76 352.8 852.29 351.07 Z M 825.75 348.84 C 825.79 348.09 830.11 345.14 839.18 345.14 C 848.24 345.14 852.56 348.09 852.6 348.84 L 852.6 349.1 C 852.11 350.79 846.51 352.57 839.18 352.57 C 831.83 352.57 826.23 350.78 825.75 349.09 Z M 853.75 348.86 C 853.75 346.88 848.07 344 839.18 344 C 830.28 344 824.6 346.88 824.6 348.86 L 824.66 349.29 L 827.83 372.44 C 827.9 375.03 834.81 376 839.17 376 C 844.59 376 850.34 374.76 850.41 372.45 L 851.78 362.79 C 852.54 362.97 853.17 363.07 853.67 363.07 C 854.35 363.07 854.8 362.9 855.08 362.57 C 855.31 362.3 855.4 361.97 855.33 361.62 C 855.18 360.83 854.24 359.98 852.33 358.89 L 853.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 900 300 L 940 300 L 940 340 L 900 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 927.53 330.06 L 927.53 327.02 L 929.41 326.26 L 929.41 329.3 Z M 924.39 326.26 L 926.27 327.02 L 926.27 330.06 L 924.39 329.3 Z M 920.63 334.45 L 920.63 331.41 L 922.51 330.65 L 922.51 333.69 Z M 917.49 330.65 L 919.37 331.41 L 919.37 334.45 L 917.49 333.69 Z M 913.73 330.06 L 913.73 327.02 L 915.61 326.26 L 915.61 329.3 Z M 910.59 326.26 L 912.47 327.02 L 912.47 330.06 L 910.59 329.3 Z M 913.1 324.76 L 914.55 325.34 L 913.1 325.92 L 911.65 325.34 Z M 920 329.15 L 921.45 329.73 L 920 330.31 L 918.55 329.73 Z M 926.9 324.76 L 928.35 325.34 L 926.9 325.92 L 925.45 325.34 Z M 930.27 324.76 L 927.13 323.5 C 926.98 323.44 926.82 323.44 926.67 323.5 L 923.53 324.76 C 923.29 324.85 923.14 325.08 923.14 325.34 L 923.14 329.05 L 920.23 327.89 C 920.08 327.83 919.92 327.83 919.77 327.89 L 916.86 329.05 L 916.86 325.34 C 916.86 325.08 916.71 324.85 916.47 324.76 L 913.33 323.5 C 913.18 323.44 913.02 323.44 912.87 323.5 L 909.73 324.76 C 909.49 324.85 909.34 325.08 909.34 325.34 L 909.34 329.73 C 909.34 329.98 909.49 330.21 909.73 330.31 L 912.87 331.57 C 912.94 331.59 913.02 331.61 913.1 331.61 C 913.18 331.61 913.26 331.59 913.33 331.57 L 916.24 330.4 L 916.24 334.12 C 916.24 334.37 916.39 334.61 916.63 334.7 L 919.77 335.96 C 919.84 335.98 919.92 336 920 336 C 920.08 336 920.16 335.98 920.23 335.96 L 923.37 334.7 C 923.61 334.61 923.76 334.37 923.76 334.12 L 923.76 330.4 L 926.67 331.57 C 926.74 331.59 926.82 331.61 926.9 331.61 C 926.98 331.61 927.06 331.59 927.13 331.57 L 930.27 330.31 C 930.51 330.21 930.66 329.98 930.66 329.73 L 930.66 325.34 C 930.66 325.08 930.51 324.85 930.27 324.76 Z M 935.68 317.15 C 935.68 320.81 927.6 322.79 920 322.79 C 912.4 322.79 904.32 320.81 904.32 317.15 C 904.32 315.4 906.26 313.85 909.79 312.81 L 910.14 314.01 C 907.33 314.85 905.57 316.05 905.57 317.15 C 905.57 319.22 911.5 321.54 920 321.54 C 928.5 321.54 934.43 319.22 934.43 317.15 C 934.43 316.05 932.67 314.85 929.86 314.01 L 930.21 312.81 C 933.74 313.85 935.68 315.4 935.68 317.15 Z M 920 305.31 L 926.41 307.78 L 920 310.24 L 913.59 307.78 Z M 926.64 317.71 C 925.45 318.24 923.47 318.86 920.63 318.94 L 920.63 311.34 L 927.53 308.69 L 927.53 316.34 C 927.53 316.93 927.18 317.47 926.64 317.71 Z M 912.47 316.34 L 912.47 308.69 L 919.37 311.34 L 919.37 318.94 C 916.53 318.86 914.55 318.24 913.36 317.71 C 912.82 317.47 912.47 316.93 912.47 316.34 Z M 912.85 318.86 C 914.23 319.48 916.59 320.21 920 320.21 C 923.41 320.21 925.77 319.48 927.15 318.86 C 928.14 318.42 928.78 317.43 928.78 316.34 L 928.78 307.78 C 928.78 307.52 928.62 307.28 928.38 307.19 L 920.23 304.06 C 920.08 304 919.92 304 919.77 304.06 L 911.62 307.19 C 911.38 307.28 911.22 307.52 911.22 307.78 L 911.22 316.34 C 911.22 317.43 911.86 318.42 912.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 900 340 L 940 340 L 940 380 L 900 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 928.64 366.93 C 928.64 365.98 927.87 365.21 926.93 365.21 C 925.98 365.21 925.21 365.98 925.21 366.93 C 925.21 367.87 925.98 368.64 926.93 368.64 C 927.87 368.64 928.64 367.87 928.64 366.93 Z M 929.78 366.93 C 929.78 368.5 928.5 369.78 926.93 369.78 C 925.35 369.78 924.07 368.5 924.07 366.93 C 924.07 365.35 925.35 364.07 926.93 364.07 C 928.5 364.07 929.78 365.35 929.78 366.93 Z M 914.51 358.68 C 914.51 357.74 913.74 356.97 912.8 356.97 C 911.85 356.97 911.08 357.74 911.08 358.68 C 911.08 359.63 911.85 360.4 912.8 360.4 C 913.74 360.4 914.51 359.63 914.51 358.68 Z M 915.65 358.68 C 915.65 360.26 914.37 361.54 912.8 361.54 C 911.22 361.54 909.94 360.26 909.94 358.68 C 909.94 357.11 911.22 355.82 912.8 355.82 C 914.37 355.82 915.65 357.11 915.65 358.68 Z M 919.85 349.72 C 919.85 350.66 920.61 351.43 921.56 351.43 C 922.51 351.43 923.27 350.66 923.27 349.72 C 923.27 348.77 922.51 348 921.56 348 C 920.61 348 919.85 348.77 919.85 349.72 Z M 918.7 349.72 C 918.7 348.14 919.99 346.86 921.56 346.86 C 923.14 346.86 924.42 348.14 924.42 349.72 C 924.42 351.29 923.14 352.58 921.56 352.58 C 919.99 352.58 918.7 351.29 918.7 349.72 Z M 934.86 360 C 934.86 354.7 932.02 349.8 927.44 347.15 C 926.61 347.31 925.82 347.54 924.83 347.9 L 924.44 346.82 C 924.96 346.64 925.42 346.49 925.87 346.36 C 924.03 345.56 922.03 345.14 920 345.14 C 919.03 345.14 918.09 345.24 917.16 345.42 C 917.83 345.82 918.43 346.21 919 346.65 L 918.31 347.56 C 917.5 346.94 916.65 346.42 915.54 345.83 C 909.93 347.6 905.89 352.55 905.25 358.36 C 906.42 358.12 907.55 357.99 908.81 357.96 L 908.84 359.1 C 907.52 359.13 906.39 359.27 905.16 359.55 C 905.15 359.7 905.14 359.85 905.14 360 C 905.14 364.95 907.59 369.51 911.62 372.26 C 910.9 370.12 910.54 368.11 910.54 366.14 C 910.54 365.02 910.74 364.1 910.94 363.12 C 910.99 362.9 911.04 362.67 911.08 362.43 L 912.2 362.65 C 912.16 362.89 912.11 363.13 912.06 363.36 C 911.86 364.31 911.69 365.14 911.69 366.14 C 911.69 368.37 912.18 370.68 913.17 373.19 C 915.3 374.29 917.59 374.86 920 374.86 C 921.57 374.86 923.11 374.61 924.58 374.12 C 925.15 372.99 925.58 371.92 925.94 370.69 L 927.03 371 C 926.77 371.9 926.48 372.72 926.12 373.53 C 927.04 373.11 927.91 372.6 928.73 372 C 928.54 371.52 928.32 371.04 928.09 370.57 L 929.11 370.06 C 929.31 370.46 929.49 370.86 929.67 371.27 C 932.97 368.44 934.86 364.38 934.86 360 Z M 936 360 C 936 364.99 933.73 369.6 929.78 372.66 C 928.81 373.42 927.74 374.05 926.62 374.56 C 926.15 374.77 925.66 374.97 925.16 375.14 C 923.52 375.71 921.78 376 920 376 C 917.37 376 914.76 375.35 912.45 374.11 C 907.24 371.32 904 365.91 904 360 C 904 359.61 904.01 359.31 904.03 359.03 C 904.42 352.36 909 346.58 915.43 344.67 C 916.89 344.22 918.43 344 920 344 C 922.75 344 925.45 344.71 927.82 346.05 C 932.86 348.87 936 354.22 936 360 Z M 918.47 351.69 L 917.71 350.83 C 916.43 351.95 915.44 353.14 914.27 354.93 L 915.23 355.55 C 916.33 353.85 917.27 352.74 918.47 351.69 Z M 916.73 359.1 L 916.36 360.18 C 918.98 361.08 921.27 362.52 923.56 364.71 L 924.35 363.88 C 921.94 361.58 919.51 360.06 916.73 359.1 Z M 924.37 352.38 C 926.51 355.65 927.72 359.24 927.96 363.05 L 926.82 363.12 C 926.59 359.51 925.45 356.11 923.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 860 340 L 900 340 L 900 380 L 860 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 865.95 345.14 L 871.26 350.45 L 870.45 351.26 L 865.14 345.95 L 865.14 350.29 L 864 350.29 L 864 344.57 C 864 344.26 864.26 344 864.57 344 L 870.29 344 L 870.29 345.14 Z M 896 344.57 L 896 350.29 L 894.86 350.29 L 894.86 345.95 L 889.55 351.26 L 888.74 350.45 L 894.05 345.14 L 889.71 345.14 L 889.71 344 L 895.43 344 C 895.74 344 896 344.26 896 344.57 Z M 894.86 369.71 L 896 369.71 L 896 375.43 C 896 375.74 895.74 376 895.43 376 L 889.71 376 L 889.71 374.86 L 894.05 374.86 L 888.74 369.55 L 889.55 368.74 L 894.86 374.05 Z M 894.57 359.55 C 894.57 357.65 892.38 355.78 888.71 354.54 L 889.08 353.46 C 893.3 354.88 895.71 357.1 895.71 359.55 C 895.71 362 893.3 364.22 889.08 365.65 L 888.71 364.56 C 892.38 363.32 894.57 361.45 894.57 359.55 Z M 865.46 359.55 C 865.46 361.37 867.51 363.19 870.94 364.43 L 870.56 365.51 C 866.59 364.07 864.32 361.9 864.32 359.55 C 864.32 357.2 866.59 355.03 870.56 353.6 L 870.94 354.67 C 867.51 355.91 865.46 357.73 865.46 359.55 Z M 871.26 369.55 L 865.95 374.86 L 870.29 374.86 L 870.29 376 L 864.57 376 C 864.26 376 864 375.74 864 375.43 L 864 369.71 L 865.14 369.71 L 865.14 374.05 L 870.45 368.74 Z M 880 355.02 C 875.92 355.02 873.71 353.97 873.71 353.53 C 873.71 353.1 875.92 352.05 880 352.05 C 884.08 352.05 886.29 353.1 886.29 353.53 C 886.29 353.97 884.08 355.02 880 355.02 Z M 880.02 359.45 C 876.11 359.45 873.71 358.38 873.71 357.8 L 873.71 355.02 C 875.12 355.8 877.62 356.16 880 356.16 C 882.38 356.16 884.88 355.8 886.29 355.02 L 886.29 357.8 C 886.29 358.38 883.91 359.45 880.02 359.45 Z M 880.02 363.81 C 876.11 363.81 873.71 362.74 873.71 362.16 L 873.71 359.35 C 875.1 360.17 877.57 360.59 880.02 360.59 C 882.45 360.59 884.9 360.17 886.29 359.35 L 886.29 362.16 C 886.29 362.74 883.91 363.81 880.02 363.81 Z M 880 367.72 C 875.93 367.72 873.71 366.63 873.71 366.07 L 873.71 363.71 C 875.1 364.53 877.57 364.95 880.02 364.95 C 882.45 364.95 884.9 364.53 886.29 363.72 L 886.29 366.07 C 886.29 366.63 884.07 367.72 880 367.72 Z M 880 350.91 C 876.42 350.91 872.57 351.73 872.57 353.53 L 872.57 366.07 C 872.57 367.91 876.31 368.87 880 368.87 C 883.69 368.87 887.43 367.91 887.43 366.07 L 887.43 353.53 C 887.43 351.73 883.58 350.91 880 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 780 340 L 820 340 L 820 380 L 780 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 806.88 368.49 C 804.98 370.03 800.98 370.84 797.15 370.84 C 793.32 370.84 789.31 370.03 787.41 368.49 L 787.41 371.59 L 787.41 371.59 C 787.41 373.14 791.41 374.87 797.15 374.87 C 802.88 374.87 806.88 373.14 806.88 371.59 Z M 806.88 362.58 L 808.03 362.58 L 808.03 362.58 C 808.03 363.27 807.68 363.92 807.01 364.51 C 807.82 365.23 808.03 365.93 808.03 366.43 C 808.03 366.44 808.03 366.44 808.03 366.44 L 808.03 371.59 L 808.03 371.59 C 808.03 374.45 802.42 376 797.15 376 C 791.88 376 786.29 374.46 786.27 371.61 C 786.27 371.61 786.26 371.61 786.26 371.6 L 786.26 366.43 C 786.26 366.43 786.26 366.43 786.26 366.43 C 786.27 365.93 786.47 365.22 787.28 364.51 C 786.48 363.79 786.27 363.09 786.26 362.6 L 786.26 362.6 C 786.26 362.59 786.26 362.59 786.26 362.59 L 786.26 357.42 C 786.26 357.42 786.26 357.42 786.26 357.41 C 786.27 356.91 786.47 356.21 787.29 355.5 C 786.48 354.78 786.27 354.08 786.26 353.58 L 786.26 353.58 C 786.26 353.58 786.26 353.58 786.26 353.58 L 786.26 348.41 C 786.26 348.41 786.26 348.4 786.26 348.4 C 786.27 345.54 791.88 344 797.15 344 C 800.12 344 802.98 344.47 804.99 345.3 L 804.56 346.35 C 802.68 345.58 799.98 345.13 797.15 345.13 C 791.41 345.13 787.41 346.86 787.41 348.41 C 787.41 349.96 791.41 351.69 797.15 351.69 C 797.3 351.69 797.45 351.69 797.61 351.68 L 797.65 352.81 C 797.48 352.82 797.32 352.82 797.15 352.82 C 793.32 352.82 789.31 352 787.41 350.46 L 787.41 353.57 L 787.41 353.57 L 787.41 353.58 C 787.41 354.17 788.02 354.69 788.53 355.02 C 790.07 356 792.82 356.67 795.9 356.81 L 795.84 357.94 C 792.73 357.8 790.01 357.16 788.25 356.17 C 787.82 356.49 787.41 356.93 787.41 357.42 C 787.41 358.97 791.41 360.7 797.15 360.7 C 797.71 360.7 798.27 360.68 798.81 360.64 L 798.89 361.77 C 798.32 361.81 797.74 361.83 797.15 361.83 C 793.32 361.83 789.31 361.02 787.41 359.47 L 787.41 362.58 L 787.41 362.58 C 787.41 363.19 788.02 363.7 788.53 364.03 C 790.29 365.16 793.59 365.85 797.15 365.85 L 797.4 365.85 L 797.4 366.99 L 797.15 366.99 C 793.54 366.99 790.25 366.32 788.25 365.18 C 787.82 365.51 787.41 365.94 787.41 366.43 C 787.41 367.98 791.41 369.71 797.15 369.71 C 802.88 369.71 806.88 367.99 806.88 366.44 L 806.88 366.43 L 806.88 366.43 C 806.88 365.94 806.47 365.5 806.04 365.18 C 805.76 365.34 805.46 365.49 805.12 365.63 L 804.69 364.58 C 805.1 364.41 805.46 364.23 805.76 364.04 C 806.27 363.7 806.88 363.17 806.88 362.58 Z M 811.78 354.3 L 808.58 354.3 C 808.39 354.3 808.21 354.2 808.1 354.05 C 808 353.89 807.98 353.69 808.05 353.52 L 809.99 348.65 L 802.62 348.65 L 799.19 355.45 L 802.84 355.45 C 803.02 355.45 803.19 355.54 803.3 355.68 C 803.4 355.83 803.44 356.02 803.38 356.19 L 800.13 366.34 Z M 813.53 354.12 L 799.25 368.88 C 799.14 368.99 798.99 369.05 798.84 369.05 C 798.74 369.05 798.63 369.03 798.54 368.97 C 798.32 368.84 798.21 368.57 798.29 368.32 L 802.05 356.59 L 798.26 356.59 C 798.07 356.59 797.88 356.48 797.78 356.32 C 797.67 356.15 797.66 355.94 797.75 355.77 L 801.75 347.83 C 801.85 347.64 802.05 347.52 802.26 347.52 L 810.84 347.52 C 811.02 347.52 811.2 347.61 811.31 347.77 C 811.42 347.92 811.44 348.12 811.37 348.29 L 809.42 353.16 L 813.12 353.16 C 813.35 353.16 813.56 353.3 813.65 353.51 C 813.74 353.72 813.69 353.96 813.53 354.12 Z M 788.24 371.81 C 789.05 372.27 790.07 372.65 791.27 372.95 L 791.55 371.85 C 790.46 371.58 789.51 371.23 788.8 370.83 Z M 791.27 363.89 L 791.55 362.79 C 790.46 362.51 789.51 362.16 788.8 361.76 L 788.24 362.75 C 789.05 363.2 790.07 363.59 791.27 363.89 Z M 788.24 353.68 L 788.8 352.69 C 789.51 353.09 790.46 353.45 791.55 353.72 L 791.27 354.82 C 790.07 354.52 789.05 354.13 788.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="780" y="300" width="160" height="80" fill="none" stroke="#d86613" stroke-width="2" pointer-events="none"/><rect x="960" y="140" width="160" height="40" fill="#ff0080" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="1039.5" y="173.5">production</text></g><rect x="960" y="260" width="160" height="40" fill="#6b0036" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="1039.5" y="286">stable release</text></g><rect x="960" y="180" width="160" height="40" fill="#ff0080" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="1039.5" y="198.5">environment</text></g><rect x="960" y="220" width="160" height="40" fill="#6b0036" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-weight="bold" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="1039.5" y="246">REQUIRED</text></g><path d="M 960 300 L 1000 300 L 1000 340 L 960 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 973.16 334.86 L 966.07 334.86 L 973.91 318.45 L 977.47 325.77 Z M 974.43 316.89 C 974.33 316.69 974.13 316.57 973.91 316.57 L 973.91 316.57 C 973.69 316.57 973.49 316.69 973.39 316.89 L 964.64 335.18 C 964.56 335.36 964.57 335.57 964.67 335.73 C 964.78 335.9 964.96 336 965.16 336 L 973.52 336 C 973.75 336 973.95 335.87 974.04 335.67 L 978.62 326.02 C 978.7 325.86 978.7 325.68 978.62 325.52 Z M 994.3 334.86 L 987.25 334.86 L 975.94 311.18 C 975.84 310.98 975.64 310.86 975.42 310.86 L 970.81 310.86 L 970.81 305.14 L 979.85 305.14 L 991.11 328.82 C 991.21 329.02 991.41 329.14 991.63 329.14 L 994.3 329.14 Z M 994.87 328 L 991.99 328 L 980.73 304.33 C 980.64 304.13 980.44 304 980.22 304 L 970.24 304 C 969.93 304 969.67 304.26 969.67 304.57 L 969.66 311.43 C 969.66 311.58 969.72 311.73 969.83 311.83 C 969.94 311.94 970.08 312 970.24 312 L 975.06 312 L 986.37 335.67 C 986.47 335.87 986.67 336 986.89 336 L 994.87 336 C 995.19 336 995.44 335.74 995.44 335.43 L 995.44 328.57 C 995.44 328.26 995.19 328 994.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1040 300 L 1080 300 L 1080 340 L 1040 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1056.61 328.94 L 1058.29 328.94 L 1058.29 327.79 L 1056.61 327.79 Z M 1059.43 328.94 L 1061.14 328.94 L 1061.14 327.79 L 1059.43 327.79 Z M 1052.58 305.53 L 1045.16 309.21 L 1045.16 332.11 L 1052.58 334.62 Z M 1053.72 312.82 L 1053.72 327.79 L 1055.43 327.79 L 1055.43 328.94 L 1053.72 328.94 L 1053.72 335.42 C 1053.72 335.61 1053.63 335.78 1053.48 335.89 C 1053.38 335.96 1053.27 336 1053.15 336 C 1053.09 336 1053.03 335.99 1052.97 335.97 L 1044.4 333.07 C 1044.17 333 1044.01 332.78 1044.01 332.53 L 1044.01 308.86 C 1044.01 308.64 1044.14 308.44 1044.33 308.34 L 1052.9 304.09 C 1053.07 304 1053.28 304.01 1053.45 304.12 C 1053.62 304.22 1053.72 304.41 1053.72 304.6 L 1053.72 311.67 L 1055.43 311.67 L 1055.43 312.82 Z M 1062.28 328.94 L 1064 328.94 L 1064 327.79 L 1062.28 327.79 Z M 1062.32 312.82 L 1064 312.82 L 1064 311.67 L 1062.32 311.67 Z M 1059.47 312.82 L 1061.14 312.82 L 1061.14 311.67 L 1059.47 311.67 Z M 1056.61 312.82 L 1058.29 312.82 L 1058.29 311.67 L 1056.61 311.67 Z M 1074.84 309.21 L 1067.42 305.53 L 1067.42 334.62 L 1074.84 332.11 Z M 1075.99 332.53 C 1075.99 332.78 1075.83 333 1075.6 333.07 L 1067.03 335.97 C 1066.97 335.99 1066.91 336 1066.85 336 C 1066.73 336 1066.62 335.96 1066.52 335.89 C 1066.37 335.78 1066.28 335.61 1066.28 335.42 L 1066.28 328.94 L 1065.18 328.94 L 1065.18 327.79 L 1066.28 327.79 L 1066.28 312.82 L 1065.18 312.82 L 1065.18 311.67 L 1066.28 311.67 L 1066.28 304.6 C 1066.28 304.41 1066.38 304.22 1066.55 304.12 C 1066.72 304.01 1066.93 304 1067.1 304.09 L 1075.67 308.34 C 1075.86 308.44 1075.99 308.64 1075.99 308.86 Z M 1061.68 316.48 L 1060.61 316.07 L 1057.75 323.55 L 1058.82 323.96 Z M 1065.54 320.13 C 1065.77 319.91 1065.77 319.54 1065.54 319.32 L 1063.26 317.02 L 1062.45 317.83 L 1064.33 319.73 L 1062.45 321.62 L 1063.26 322.44 Z M 1056.74 322.44 L 1054.46 320.13 C 1054.23 319.91 1054.23 319.54 1054.46 319.32 L 1056.74 317.02 L 1057.55 317.83 L 1055.67 319.73 L 1057.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1000 300 L 1040 300 L 1040 340 L 1000 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1027.8 334.86 C 1026.58 334.86 1025.58 333.86 1025.58 332.62 C 1025.58 331.39 1026.58 330.39 1027.8 330.39 C 1029.03 330.39 1030.02 331.39 1030.02 332.62 C 1030.02 333.86 1029.03 334.86 1027.8 334.86 Z M 1022.93 325.14 L 1017.03 325.14 L 1014.07 320 L 1017.03 314.86 L 1022.93 314.86 L 1025.89 320 Z M 1012.93 309.61 C 1011.7 309.61 1010.7 308.61 1010.7 307.38 C 1010.7 306.14 1011.7 305.14 1012.93 305.14 C 1014.15 305.14 1015.15 306.14 1015.15 307.38 C 1015.15 308.61 1014.15 309.61 1012.93 309.61 Z M 1027.8 329.25 C 1027.38 329.25 1026.98 329.33 1026.61 329.47 L 1024.19 325.38 L 1024.07 325.45 L 1027.03 320.29 C 1027.14 320.11 1027.14 319.89 1027.03 319.71 L 1023.75 314 C 1023.65 313.82 1023.46 313.71 1023.26 313.71 L 1017.29 313.71 L 1017.31 313.7 L 1015.1 309.95 C 1015.82 309.33 1016.28 308.4 1016.28 307.38 C 1016.28 305.51 1014.78 304 1012.93 304 C 1011.08 304 1009.57 305.51 1009.57 307.38 C 1009.57 309.24 1011.08 310.75 1012.93 310.75 C 1013.35 310.75 1013.75 310.67 1014.12 310.53 L 1016.19 314.03 L 1012.93 319.71 C 1012.82 319.89 1012.82 320.11 1012.93 320.29 L 1016.21 326 C 1016.31 326.18 1016.5 326.29 1016.7 326.29 L 1023.26 326.29 C 1023.31 326.29 1023.35 326.28 1023.4 326.27 L 1025.63 330.05 C 1024.91 330.67 1024.45 331.6 1024.45 332.62 C 1024.45 334.49 1025.95 336 1027.8 336 C 1029.66 336 1031.16 334.49 1031.16 332.62 C 1031.16 330.76 1029.66 329.25 1027.8 329.25 Z M 1031.19 315.49 C 1029.97 315.49 1028.97 314.49 1028.97 313.25 C 1028.97 312.02 1029.97 311.02 1031.19 311.02 C 1032.42 311.02 1033.41 312.02 1033.41 313.25 C 1033.41 314.49 1032.42 315.49 1031.19 315.49 Z M 1035.35 319.71 L 1033.2 315.96 C 1034.02 315.34 1034.55 314.36 1034.55 313.25 C 1034.55 311.39 1033.04 309.88 1031.19 309.88 C 1030.72 309.88 1030.27 309.98 1029.86 310.15 L 1028.1 307.09 C 1028 306.91 1027.82 306.81 1027.61 306.81 L 1020.57 306.81 L 1020.57 307.95 L 1027.28 307.95 L 1028.91 310.78 C 1028.25 311.4 1027.83 312.28 1027.83 313.25 C 1027.83 315.12 1029.34 316.63 1031.19 316.63 C 1031.54 316.63 1031.87 316.58 1032.18 316.48 L 1034.2 320 L 1031.37 324.94 L 1032.35 325.51 L 1035.35 320.29 C 1035.45 320.11 1035.45 319.89 1035.35 319.71 Z M 1009.27 328.71 C 1008.05 328.71 1007.05 327.71 1007.05 326.48 C 1007.05 325.25 1008.05 324.25 1009.27 324.25 C 1010.5 324.25 1011.5 325.25 1011.5 326.48 C 1011.5 327.71 1010.5 328.71 1009.27 328.71 Z M 1011.13 329.29 C 1012.03 328.68 1012.63 327.65 1012.63 326.48 C 1012.63 324.62 1011.12 323.1 1009.27 323.1 C 1008.74 323.1 1008.23 323.23 1007.78 323.46 L 1005.8 320 L 1009.09 314.27 L 1008.1 313.7 L 1004.65 319.71 C 1004.55 319.89 1004.55 320.11 1004.65 320.29 L 1006.86 324.14 C 1006.28 324.75 1005.92 325.57 1005.92 326.48 C 1005.92 328.34 1007.42 329.86 1009.27 329.86 C 1009.55 329.86 1009.82 329.82 1010.08 329.75 L 1011.9 332.91 C 1012 333.09 1012.18 333.19 1012.39 333.19 L 1019.43 333.19 L 1019.43 332.05 L 1012.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1000 340 L 1040 340 L 1040 380 L 1000 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1031.94 361.65 L 1032.16 360.11 C 1034.18 361.32 1034.21 361.82 1034.21 361.83 C 1034.2 361.84 1033.86 362.13 1031.94 361.65 Z M 1030.83 361.34 C 1027.33 360.29 1022.46 358.05 1020.49 357.12 C 1020.49 357.11 1020.49 357.11 1020.49 357.1 C 1020.49 356.34 1019.88 355.72 1019.12 355.72 C 1018.36 355.72 1017.75 356.34 1017.75 357.1 C 1017.75 357.85 1018.36 358.47 1019.12 358.47 C 1019.45 358.47 1019.75 358.35 1019.99 358.15 C 1022.31 359.25 1027.14 361.45 1030.67 362.49 L 1029.27 372.32 C 1029.27 372.35 1029.27 372.37 1029.27 372.4 C 1029.27 373.27 1025.43 374.86 1019.17 374.86 C 1012.84 374.86 1008.97 373.27 1008.97 372.4 C 1008.97 372.37 1008.97 372.35 1008.97 372.32 L 1006.05 351.06 C 1008.57 352.8 1013.99 353.71 1019.18 353.71 C 1024.35 353.71 1029.76 352.8 1032.29 351.07 Z M 1005.75 348.84 C 1005.79 348.09 1010.11 345.14 1019.18 345.14 C 1028.24 345.14 1032.56 348.09 1032.6 348.84 L 1032.6 349.1 C 1032.11 350.79 1026.51 352.57 1019.18 352.57 C 1011.83 352.57 1006.23 350.78 1005.75 349.09 Z M 1033.75 348.86 C 1033.75 346.88 1028.07 344 1019.18 344 C 1010.28 344 1004.6 346.88 1004.6 348.86 L 1004.66 349.29 L 1007.83 372.44 C 1007.9 375.03 1014.81 376 1019.17 376 C 1024.59 376 1030.34 374.76 1030.41 372.45 L 1031.78 362.79 C 1032.54 362.97 1033.17 363.07 1033.67 363.07 C 1034.35 363.07 1034.8 362.9 1035.08 362.57 C 1035.31 362.3 1035.4 361.97 1035.33 361.62 C 1035.18 360.83 1034.24 359.98 1032.33 358.89 L 1033.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1080 300 L 1120 300 L 1120 340 L 1080 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1107.53 330.06 L 1107.53 327.02 L 1109.41 326.26 L 1109.41 329.3 Z M 1104.39 326.26 L 1106.27 327.02 L 1106.27 330.06 L 1104.39 329.3 Z M 1100.63 334.45 L 1100.63 331.41 L 1102.51 330.65 L 1102.51 333.69 Z M 1097.49 330.65 L 1099.37 331.41 L 1099.37 334.45 L 1097.49 333.69 Z M 1093.73 330.06 L 1093.73 327.02 L 1095.61 326.26 L 1095.61 329.3 Z M 1090.59 326.26 L 1092.47 327.02 L 1092.47 330.06 L 1090.59 329.3 Z M 1093.1 324.76 L 1094.55 325.34 L 1093.1 325.92 L 1091.65 325.34 Z M 1100 329.15 L 1101.45 329.73 L 1100 330.31 L 1098.55 329.73 Z M 1106.9 324.76 L 1108.35 325.34 L 1106.9 325.92 L 1105.45 325.34 Z M 1110.27 324.76 L 1107.13 323.5 C 1106.98 323.44 1106.82 323.44 1106.67 323.5 L 1103.53 324.76 C 1103.29 324.85 1103.14 325.08 1103.14 325.34 L 1103.14 329.05 L 1100.23 327.89 C 1100.08 327.83 1099.92 327.83 1099.77 327.89 L 1096.86 329.05 L 1096.86 325.34 C 1096.86 325.08 1096.71 324.85 1096.47 324.76 L 1093.33 323.5 C 1093.18 323.44 1093.02 323.44 1092.87 323.5 L 1089.73 324.76 C 1089.49 324.85 1089.34 325.08 1089.34 325.34 L 1089.34 329.73 C 1089.34 329.98 1089.49 330.21 1089.73 330.31 L 1092.87 331.57 C 1092.94 331.59 1093.02 331.61 1093.1 331.61 C 1093.18 331.61 1093.26 331.59 1093.33 331.57 L 1096.24 330.4 L 1096.24 334.12 C 1096.24 334.37 1096.39 334.61 1096.63 334.7 L 1099.77 335.96 C 1099.84 335.98 1099.92 336 1100 336 C 1100.08 336 1100.16 335.98 1100.23 335.96 L 1103.37 334.7 C 1103.61 334.61 1103.76 334.37 1103.76 334.12 L 1103.76 330.4 L 1106.67 331.57 C 1106.74 331.59 1106.82 331.61 1106.9 331.61 C 1106.98 331.61 1107.06 331.59 1107.13 331.57 L 1110.27 330.31 C 1110.51 330.21 1110.66 329.98 1110.66 329.73 L 1110.66 325.34 C 1110.66 325.08 1110.51 324.85 1110.27 324.76 Z M 1115.68 317.15 C 1115.68 320.81 1107.6 322.79 1100 322.79 C 1092.4 322.79 1084.32 320.81 1084.32 317.15 C 1084.32 315.4 1086.26 313.85 1089.79 312.81 L 1090.14 314.01 C 1087.33 314.85 1085.57 316.05 1085.57 317.15 C 1085.57 319.22 1091.5 321.54 1100 321.54 C 1108.5 321.54 1114.43 319.22 1114.43 317.15 C 1114.43 316.05 1112.67 314.85 1109.86 314.01 L 1110.21 312.81 C 1113.74 313.85 1115.68 315.4 1115.68 317.15 Z M 1100 305.31 L 1106.41 307.78 L 1100 310.24 L 1093.59 307.78 Z M 1106.64 317.71 C 1105.45 318.24 1103.47 318.86 1100.63 318.94 L 1100.63 311.34 L 1107.53 308.69 L 1107.53 316.34 C 1107.53 316.93 1107.18 317.47 1106.64 317.71 Z M 1092.47 316.34 L 1092.47 308.69 L 1099.37 311.34 L 1099.37 318.94 C 1096.53 318.86 1094.55 318.24 1093.36 317.71 C 1092.82 317.47 1092.47 316.93 1092.47 316.34 Z M 1092.85 318.86 C 1094.23 319.48 1096.59 320.21 1100 320.21 C 1103.41 320.21 1105.77 319.48 1107.15 318.86 C 1108.14 318.42 1108.78 317.43 1108.78 316.34 L 1108.78 307.78 C 1108.78 307.52 1108.62 307.28 1108.38 307.19 L 1100.23 304.06 C 1100.08 304 1099.92 304 1099.77 304.06 L 1091.62 307.19 C 1091.38 307.28 1091.22 307.52 1091.22 307.78 L 1091.22 316.34 C 1091.22 317.43 1091.86 318.42 1092.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1080 340 L 1120 340 L 1120 380 L 1080 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1108.64 366.93 C 1108.64 365.98 1107.87 365.21 1106.93 365.21 C 1105.98 365.21 1105.21 365.98 1105.21 366.93 C 1105.21 367.87 1105.98 368.64 1106.93 368.64 C 1107.87 368.64 1108.64 367.87 1108.64 366.93 Z M 1109.78 366.93 C 1109.78 368.5 1108.5 369.78 1106.93 369.78 C 1105.35 369.78 1104.07 368.5 1104.07 366.93 C 1104.07 365.35 1105.35 364.07 1106.93 364.07 C 1108.5 364.07 1109.78 365.35 1109.78 366.93 Z M 1094.51 358.68 C 1094.51 357.74 1093.74 356.97 1092.8 356.97 C 1091.85 356.97 1091.08 357.74 1091.08 358.68 C 1091.08 359.63 1091.85 360.4 1092.8 360.4 C 1093.74 360.4 1094.51 359.63 1094.51 358.68 Z M 1095.65 358.68 C 1095.65 360.26 1094.37 361.54 1092.8 361.54 C 1091.22 361.54 1089.94 360.26 1089.94 358.68 C 1089.94 357.11 1091.22 355.82 1092.8 355.82 C 1094.37 355.82 1095.65 357.11 1095.65 358.68 Z M 1099.85 349.72 C 1099.85 350.66 1100.61 351.43 1101.56 351.43 C 1102.51 351.43 1103.27 350.66 1103.27 349.72 C 1103.27 348.77 1102.51 348 1101.56 348 C 1100.61 348 1099.85 348.77 1099.85 349.72 Z M 1098.7 349.72 C 1098.7 348.14 1099.99 346.86 1101.56 346.86 C 1103.14 346.86 1104.42 348.14 1104.42 349.72 C 1104.42 351.29 1103.14 352.58 1101.56 352.58 C 1099.99 352.58 1098.7 351.29 1098.7 349.72 Z M 1114.86 360 C 1114.86 354.7 1112.02 349.8 1107.44 347.15 C 1106.61 347.31 1105.82 347.54 1104.83 347.9 L 1104.44 346.82 C 1104.96 346.64 1105.42 346.49 1105.87 346.36 C 1104.03 345.56 1102.03 345.14 1100 345.14 C 1099.03 345.14 1098.09 345.24 1097.16 345.42 C 1097.83 345.82 1098.43 346.21 1099 346.65 L 1098.31 347.56 C 1097.5 346.94 1096.65 346.42 1095.54 345.83 C 1089.93 347.6 1085.89 352.55 1085.25 358.36 C 1086.42 358.12 1087.55 357.99 1088.81 357.96 L 1088.84 359.1 C 1087.52 359.13 1086.39 359.27 1085.16 359.55 C 1085.15 359.7 1085.14 359.85 1085.14 360 C 1085.14 364.95 1087.59 369.51 1091.62 372.26 C 1090.9 370.12 1090.54 368.11 1090.54 366.14 C 1090.54 365.02 1090.74 364.1 1090.94 363.12 C 1090.99 362.9 1091.04 362.67 1091.08 362.43 L 1092.2 362.65 C 1092.16 362.89 1092.11 363.13 1092.06 363.36 C 1091.86 364.31 1091.69 365.14 1091.69 366.14 C 1091.69 368.37 1092.18 370.68 1093.17 373.19 C 1095.3 374.29 1097.59 374.86 1100 374.86 C 1101.57 374.86 1103.11 374.61 1104.58 374.12 C 1105.15 372.99 1105.58 371.92 1105.94 370.69 L 1107.03 371 C 1106.77 371.9 1106.48 372.72 1106.12 373.53 C 1107.04 373.11 1107.91 372.6 1108.73 372 C 1108.54 371.52 1108.32 371.04 1108.09 370.57 L 1109.11 370.06 C 1109.31 370.46 1109.49 370.86 1109.67 371.27 C 1112.97 368.44 1114.86 364.38 1114.86 360 Z M 1116 360 C 1116 364.99 1113.73 369.6 1109.78 372.66 C 1108.81 373.42 1107.74 374.05 1106.62 374.56 C 1106.15 374.77 1105.66 374.97 1105.16 375.14 C 1103.52 375.71 1101.78 376 1100 376 C 1097.37 376 1094.76 375.35 1092.45 374.11 C 1087.24 371.32 1084 365.91 1084 360 C 1084 359.61 1084.01 359.31 1084.03 359.03 C 1084.42 352.36 1089 346.58 1095.43 344.67 C 1096.89 344.22 1098.43 344 1100 344 C 1102.75 344 1105.45 344.71 1107.82 346.05 C 1112.86 348.87 1116 354.22 1116 360 Z M 1098.47 351.69 L 1097.71 350.83 C 1096.43 351.95 1095.44 353.14 1094.27 354.93 L 1095.23 355.55 C 1096.33 353.85 1097.27 352.74 1098.47 351.69 Z M 1096.73 359.1 L 1096.36 360.18 C 1098.98 361.08 1101.27 362.52 1103.56 364.71 L 1104.35 363.88 C 1101.94 361.58 1099.51 360.06 1096.73 359.1 Z M 1104.37 352.38 C 1106.51 355.65 1107.72 359.24 1107.96 363.05 L 1106.82 363.12 C 1106.59 359.51 1105.45 356.11 1103.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1040 340 L 1080 340 L 1080 380 L 1040 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1045.95 345.14 L 1051.26 350.45 L 1050.45 351.26 L 1045.14 345.95 L 1045.14 350.29 L 1044 350.29 L 1044 344.57 C 1044 344.26 1044.26 344 1044.57 344 L 1050.29 344 L 1050.29 345.14 Z M 1076 344.57 L 1076 350.29 L 1074.86 350.29 L 1074.86 345.95 L 1069.55 351.26 L 1068.74 350.45 L 1074.05 345.14 L 1069.71 345.14 L 1069.71 344 L 1075.43 344 C 1075.74 344 1076 344.26 1076 344.57 Z M 1074.86 369.71 L 1076 369.71 L 1076 375.43 C 1076 375.74 1075.74 376 1075.43 376 L 1069.71 376 L 1069.71 374.86 L 1074.05 374.86 L 1068.74 369.55 L 1069.55 368.74 L 1074.86 374.05 Z M 1074.57 359.55 C 1074.57 357.65 1072.38 355.78 1068.71 354.54 L 1069.08 353.46 C 1073.3 354.88 1075.71 357.1 1075.71 359.55 C 1075.71 362 1073.3 364.22 1069.08 365.65 L 1068.71 364.56 C 1072.38 363.32 1074.57 361.45 1074.57 359.55 Z M 1045.46 359.55 C 1045.46 361.37 1047.51 363.19 1050.94 364.43 L 1050.56 365.51 C 1046.59 364.07 1044.32 361.9 1044.32 359.55 C 1044.32 357.2 1046.59 355.03 1050.56 353.6 L 1050.94 354.67 C 1047.51 355.91 1045.46 357.73 1045.46 359.55 Z M 1051.26 369.55 L 1045.95 374.86 L 1050.29 374.86 L 1050.29 376 L 1044.57 376 C 1044.26 376 1044 375.74 1044 375.43 L 1044 369.71 L 1045.14 369.71 L 1045.14 374.05 L 1050.45 368.74 Z M 1060 355.02 C 1055.92 355.02 1053.71 353.97 1053.71 353.53 C 1053.71 353.1 1055.92 352.05 1060 352.05 C 1064.08 352.05 1066.29 353.1 1066.29 353.53 C 1066.29 353.97 1064.08 355.02 1060 355.02 Z M 1060.02 359.45 C 1056.11 359.45 1053.71 358.38 1053.71 357.8 L 1053.71 355.02 C 1055.12 355.8 1057.62 356.16 1060 356.16 C 1062.38 356.16 1064.88 355.8 1066.29 355.02 L 1066.29 357.8 C 1066.29 358.38 1063.91 359.45 1060.02 359.45 Z M 1060.02 363.81 C 1056.11 363.81 1053.71 362.74 1053.71 362.16 L 1053.71 359.35 C 1055.1 360.17 1057.57 360.59 1060.02 360.59 C 1062.45 360.59 1064.9 360.17 1066.29 359.35 L 1066.29 362.16 C 1066.29 362.74 1063.91 363.81 1060.02 363.81 Z M 1060 367.72 C 1055.93 367.72 1053.71 366.63 1053.71 366.07 L 1053.71 363.71 C 1055.1 364.53 1057.57 364.95 1060.02 364.95 C 1062.45 364.95 1064.9 364.53 1066.29 363.72 L 1066.29 366.07 C 1066.29 366.63 1064.07 367.72 1060 367.72 Z M 1060 350.91 C 1056.42 350.91 1052.57 351.73 1052.57 353.53 L 1052.57 366.07 C 1052.57 367.91 1056.31 368.87 1060 368.87 C 1063.69 368.87 1067.43 367.91 1067.43 366.07 L 1067.43 353.53 C 1067.43 351.73 1063.58 350.91 1060 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 960 340 L 1000 340 L 1000 380 L 960 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 986.88 368.49 C 984.98 370.03 980.98 370.84 977.15 370.84 C 973.32 370.84 969.31 370.03 967.41 368.49 L 967.41 371.59 L 967.41 371.59 C 967.41 373.14 971.41 374.87 977.15 374.87 C 982.88 374.87 986.88 373.14 986.88 371.59 Z M 986.88 362.58 L 988.03 362.58 L 988.03 362.58 C 988.03 363.27 987.68 363.92 987.01 364.51 C 987.82 365.23 988.03 365.93 988.03 366.43 C 988.03 366.44 988.03 366.44 988.03 366.44 L 988.03 371.59 L 988.03 371.59 C 988.03 374.45 982.42 376 977.15 376 C 971.88 376 966.29 374.46 966.27 371.61 C 966.27 371.61 966.26 371.61 966.26 371.6 L 966.26 366.43 C 966.26 366.43 966.26 366.43 966.26 366.43 C 966.27 365.93 966.47 365.22 967.28 364.51 C 966.48 363.79 966.27 363.09 966.26 362.6 L 966.26 362.6 C 966.26 362.59 966.26 362.59 966.26 362.59 L 966.26 357.42 C 966.26 357.42 966.26 357.42 966.26 357.41 C 966.27 356.91 966.47 356.21 967.29 355.5 C 966.48 354.78 966.27 354.08 966.26 353.58 L 966.26 353.58 C 966.26 353.58 966.26 353.58 966.26 353.58 L 966.26 348.41 C 966.26 348.41 966.26 348.4 966.26 348.4 C 966.27 345.54 971.88 344 977.15 344 C 980.12 344 982.98 344.47 984.99 345.3 L 984.56 346.35 C 982.68 345.58 979.98 345.13 977.15 345.13 C 971.41 345.13 967.41 346.86 967.41 348.41 C 967.41 349.96 971.41 351.69 977.15 351.69 C 977.3 351.69 977.45 351.69 977.61 351.68 L 977.65 352.81 C 977.48 352.82 977.32 352.82 977.15 352.82 C 973.32 352.82 969.31 352 967.41 350.46 L 967.41 353.57 L 967.41 353.57 L 967.41 353.58 C 967.41 354.17 968.02 354.69 968.53 355.02 C 970.07 356 972.82 356.67 975.9 356.81 L 975.84 357.94 C 972.73 357.8 970.01 357.16 968.25 356.17 C 967.82 356.49 967.41 356.93 967.41 357.42 C 967.41 358.97 971.41 360.7 977.15 360.7 C 977.71 360.7 978.27 360.68 978.81 360.64 L 978.89 361.77 C 978.32 361.81 977.74 361.83 977.15 361.83 C 973.32 361.83 969.31 361.02 967.41 359.47 L 967.41 362.58 L 967.41 362.58 C 967.41 363.19 968.02 363.7 968.53 364.03 C 970.29 365.16 973.59 365.85 977.15 365.85 L 977.4 365.85 L 977.4 366.99 L 977.15 366.99 C 973.54 366.99 970.25 366.32 968.25 365.18 C 967.82 365.51 967.41 365.94 967.41 366.43 C 967.41 367.98 971.41 369.71 977.15 369.71 C 982.88 369.71 986.88 367.99 986.88 366.44 L 986.88 366.43 L 986.88 366.43 C 986.88 365.94 986.47 365.5 986.04 365.18 C 985.76 365.34 985.46 365.49 985.12 365.63 L 984.69 364.58 C 985.1 364.41 985.46 364.23 985.76 364.04 C 986.27 363.7 986.88 363.17 986.88 362.58 Z M 991.78 354.3 L 988.58 354.3 C 988.39 354.3 988.21 354.2 988.1 354.05 C 988 353.89 987.98 353.69 988.05 353.52 L 989.99 348.65 L 982.62 348.65 L 979.19 355.45 L 982.84 355.45 C 983.02 355.45 983.19 355.54 983.3 355.68 C 983.4 355.83 983.44 356.02 983.38 356.19 L 980.13 366.34 Z M 993.53 354.12 L 979.25 368.88 C 979.14 368.99 978.99 369.05 978.84 369.05 C 978.74 369.05 978.63 369.03 978.54 368.97 C 978.32 368.84 978.21 368.57 978.29 368.32 L 982.05 356.59 L 978.26 356.59 C 978.07 356.59 977.88 356.48 977.78 356.32 C 977.67 356.15 977.66 355.94 977.75 355.77 L 981.75 347.83 C 981.85 347.64 982.05 347.52 982.26 347.52 L 990.84 347.52 C 991.02 347.52 991.2 347.61 991.31 347.77 C 991.42 347.92 991.44 348.12 991.37 348.29 L 989.42 353.16 L 993.12 353.16 C 993.35 353.16 993.56 353.3 993.65 353.51 C 993.74 353.72 993.69 353.96 993.53 354.12 Z M 968.24 371.81 C 969.05 372.27 970.07 372.65 971.27 372.95 L 971.55 371.85 C 970.46 371.58 969.51 371.23 968.8 370.83 Z M 971.27 363.89 L 971.55 362.79 C 970.46 362.51 969.51 362.16 968.8 361.76 L 968.24 362.75 C 969.05 363.2 970.07 363.59 971.27 363.89 Z M 968.24 353.68 L 968.8 352.69 C 969.51 353.09 970.46 353.45 971.55 353.72 L 971.27 354.82 C 970.07 354.52 969.05 354.13 968.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="960" y="300" width="160" height="80" fill="none" stroke="#ff0080" stroke-width="2" pointer-events="none"/><path d="M 780 400 L 1120 400" fill="none" stroke="#5c5c5c" stroke-width="2" stroke-miterlimit="10" stroke-dasharray="6 6" pointer-events="none"/><path d="M 200 640 L 1113.63 640" fill="none" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><path d="M 200 636 L 200 644" fill="none" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><path d="M 1118.88 640 L 1111.88 643.5 L 1113.63 640 L 1111.88 636.5 Z" fill="#e5ccff" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><g fill="#E5CCFF" font-family="Rubik" font-style="italic" pointer-events="none" font-size="16px"><text x="201.5" y="677">Environment Deployment Pipeline Order</text></g><path d="M 0 40 L 1180 40" fill="none" stroke="#90a6c2" stroke-miterlimit="10" pointer-events="none"/><g fill="#90A6C2" font-family="Rubik" pointer-events="none" font-size="23px"><text x="1.5" y="25">2x Accounts</text></g><path d="M 20 300 L 60 300 L 60 340 L 20 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 33.16 334.86 L 26.07 334.86 L 33.91 318.45 L 37.47 325.77 Z M 34.43 316.89 C 34.33 316.69 34.13 316.57 33.91 316.57 L 33.91 316.57 C 33.69 316.57 33.49 316.69 33.39 316.89 L 24.64 335.18 C 24.56 335.36 24.57 335.57 24.67 335.73 C 24.78 335.9 24.96 336 25.16 336 L 33.52 336 C 33.75 336 33.95 335.87 34.04 335.67 L 38.62 326.02 C 38.7 325.86 38.7 325.68 38.62 325.52 Z M 54.3 334.86 L 47.25 334.86 L 35.94 311.18 C 35.84 310.98 35.64 310.86 35.42 310.86 L 30.81 310.86 L 30.81 305.14 L 39.85 305.14 L 51.11 328.82 C 51.21 329.02 51.41 329.14 51.63 329.14 L 54.3 329.14 Z M 54.87 328 L 51.99 328 L 40.73 304.33 C 40.64 304.13 40.44 304 40.22 304 L 30.24 304 C 29.93 304 29.67 304.26 29.67 304.57 L 29.66 311.43 C 29.66 311.58 29.72 311.73 29.83 311.83 C 29.94 311.94 30.08 312 30.24 312 L 35.06 312 L 46.37 335.67 C 46.47 335.87 46.67 336 46.89 336 L 54.87 336 C 55.19 336 55.44 335.74 55.44 335.43 L 55.44 328.57 C 55.44 328.26 55.19 328 54.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 100 300 L 140 300 L 140 340 L 100 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 116.61 328.94 L 118.29 328.94 L 118.29 327.79 L 116.61 327.79 Z M 119.43 328.94 L 121.14 328.94 L 121.14 327.79 L 119.43 327.79 Z M 112.58 305.53 L 105.16 309.21 L 105.16 332.11 L 112.58 334.62 Z M 113.72 312.82 L 113.72 327.79 L 115.43 327.79 L 115.43 328.94 L 113.72 328.94 L 113.72 335.42 C 113.72 335.61 113.63 335.78 113.48 335.89 C 113.38 335.96 113.27 336 113.15 336 C 113.09 336 113.03 335.99 112.97 335.97 L 104.4 333.07 C 104.17 333 104.01 332.78 104.01 332.53 L 104.01 308.86 C 104.01 308.64 104.14 308.44 104.33 308.34 L 112.9 304.09 C 113.07 304 113.28 304.01 113.45 304.12 C 113.62 304.22 113.72 304.41 113.72 304.6 L 113.72 311.67 L 115.43 311.67 L 115.43 312.82 Z M 122.28 328.94 L 124 328.94 L 124 327.79 L 122.28 327.79 Z M 122.32 312.82 L 124 312.82 L 124 311.67 L 122.32 311.67 Z M 119.47 312.82 L 121.14 312.82 L 121.14 311.67 L 119.47 311.67 Z M 116.61 312.82 L 118.29 312.82 L 118.29 311.67 L 116.61 311.67 Z M 134.84 309.21 L 127.42 305.53 L 127.42 334.62 L 134.84 332.11 Z M 135.99 332.53 C 135.99 332.78 135.83 333 135.6 333.07 L 127.03 335.97 C 126.97 335.99 126.91 336 126.85 336 C 126.73 336 126.62 335.96 126.52 335.89 C 126.37 335.78 126.28 335.61 126.28 335.42 L 126.28 328.94 L 125.18 328.94 L 125.18 327.79 L 126.28 327.79 L 126.28 312.82 L 125.18 312.82 L 125.18 311.67 L 126.28 311.67 L 126.28 304.6 C 126.28 304.41 126.38 304.22 126.55 304.12 C 126.72 304.01 126.93 304 127.1 304.09 L 135.67 308.34 C 135.86 308.44 135.99 308.64 135.99 308.86 Z M 121.68 316.48 L 120.61 316.07 L 117.75 323.55 L 118.82 323.96 Z M 125.54 320.13 C 125.77 319.91 125.77 319.54 125.54 319.32 L 123.26 317.02 L 122.45 317.83 L 124.33 319.73 L 122.45 321.62 L 123.26 322.44 Z M 116.74 322.44 L 114.46 320.13 C 114.23 319.91 114.23 319.54 114.46 319.32 L 116.74 317.02 L 117.55 317.83 L 115.67 319.73 L 117.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 60 300 L 100 300 L 100 340 L 60 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 87.8 334.86 C 86.58 334.86 85.58 333.86 85.58 332.62 C 85.58 331.39 86.58 330.39 87.8 330.39 C 89.03 330.39 90.02 331.39 90.02 332.62 C 90.02 333.86 89.03 334.86 87.8 334.86 Z M 82.93 325.14 L 77.03 325.14 L 74.07 320 L 77.03 314.86 L 82.93 314.86 L 85.89 320 Z M 72.93 309.61 C 71.7 309.61 70.7 308.61 70.7 307.38 C 70.7 306.14 71.7 305.14 72.93 305.14 C 74.15 305.14 75.15 306.14 75.15 307.38 C 75.15 308.61 74.15 309.61 72.93 309.61 Z M 87.8 329.25 C 87.38 329.25 86.98 329.33 86.61 329.47 L 84.19 325.38 L 84.07 325.45 L 87.03 320.29 C 87.14 320.11 87.14 319.89 87.03 319.71 L 83.75 314 C 83.65 313.82 83.46 313.71 83.26 313.71 L 77.29 313.71 L 77.31 313.7 L 75.1 309.95 C 75.82 309.33 76.28 308.4 76.28 307.38 C 76.28 305.51 74.78 304 72.93 304 C 71.08 304 69.57 305.51 69.57 307.38 C 69.57 309.24 71.08 310.75 72.93 310.75 C 73.35 310.75 73.75 310.67 74.12 310.53 L 76.19 314.03 L 72.93 319.71 C 72.82 319.89 72.82 320.11 72.93 320.29 L 76.21 326 C 76.31 326.18 76.5 326.29 76.7 326.29 L 83.26 326.29 C 83.31 326.29 83.35 326.28 83.4 326.27 L 85.63 330.05 C 84.91 330.67 84.45 331.6 84.45 332.62 C 84.45 334.49 85.95 336 87.8 336 C 89.66 336 91.16 334.49 91.16 332.62 C 91.16 330.76 89.66 329.25 87.8 329.25 Z M 91.19 315.49 C 89.97 315.49 88.97 314.49 88.97 313.25 C 88.97 312.02 89.97 311.02 91.19 311.02 C 92.42 311.02 93.41 312.02 93.41 313.25 C 93.41 314.49 92.42 315.49 91.19 315.49 Z M 95.35 319.71 L 93.2 315.96 C 94.02 315.34 94.55 314.36 94.55 313.25 C 94.55 311.39 93.04 309.88 91.19 309.88 C 90.72 309.88 90.27 309.98 89.86 310.15 L 88.1 307.09 C 88 306.91 87.82 306.81 87.61 306.81 L 80.57 306.81 L 80.57 307.95 L 87.28 307.95 L 88.91 310.78 C 88.25 311.4 87.83 312.28 87.83 313.25 C 87.83 315.12 89.34 316.63 91.19 316.63 C 91.54 316.63 91.87 316.58 92.18 316.48 L 94.2 320 L 91.37 324.94 L 92.35 325.51 L 95.35 320.29 C 95.45 320.11 95.45 319.89 95.35 319.71 Z M 69.27 328.71 C 68.05 328.71 67.05 327.71 67.05 326.48 C 67.05 325.25 68.05 324.25 69.27 324.25 C 70.5 324.25 71.5 325.25 71.5 326.48 C 71.5 327.71 70.5 328.71 69.27 328.71 Z M 71.13 329.29 C 72.03 328.68 72.63 327.65 72.63 326.48 C 72.63 324.62 71.12 323.1 69.27 323.1 C 68.74 323.1 68.23 323.23 67.78 323.46 L 65.8 320 L 69.09 314.27 L 68.1 313.7 L 64.65 319.71 C 64.55 319.89 64.55 320.11 64.65 320.29 L 66.86 324.14 C 66.28 324.75 65.92 325.57 65.92 326.48 C 65.92 328.34 67.42 329.86 69.27 329.86 C 69.55 329.86 69.82 329.82 70.08 329.75 L 71.9 332.91 C 72 333.09 72.18 333.19 72.39 333.19 L 79.43 333.19 L 79.43 332.05 L 72.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 60 340 L 100 340 L 100 380 L 60 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 91.94 361.65 L 92.16 360.11 C 94.18 361.32 94.21 361.82 94.21 361.83 C 94.2 361.84 93.86 362.13 91.94 361.65 Z M 90.83 361.34 C 87.33 360.29 82.46 358.05 80.49 357.12 C 80.49 357.11 80.49 357.11 80.49 357.1 C 80.49 356.34 79.88 355.72 79.12 355.72 C 78.36 355.72 77.75 356.34 77.75 357.1 C 77.75 357.85 78.36 358.47 79.12 358.47 C 79.45 358.47 79.75 358.35 79.99 358.15 C 82.31 359.25 87.14 361.45 90.67 362.49 L 89.27 372.32 C 89.27 372.35 89.27 372.37 89.27 372.4 C 89.27 373.27 85.43 374.86 79.17 374.86 C 72.84 374.86 68.97 373.27 68.97 372.4 C 68.97 372.37 68.97 372.35 68.97 372.32 L 66.05 351.06 C 68.57 352.8 73.99 353.71 79.18 353.71 C 84.35 353.71 89.76 352.8 92.29 351.07 Z M 65.75 348.84 C 65.79 348.09 70.11 345.14 79.18 345.14 C 88.24 345.14 92.56 348.09 92.6 348.84 L 92.6 349.1 C 92.11 350.79 86.51 352.57 79.18 352.57 C 71.83 352.57 66.23 350.78 65.75 349.09 Z M 93.75 348.86 C 93.75 346.88 88.07 344 79.18 344 C 70.28 344 64.6 346.88 64.6 348.86 L 64.66 349.29 L 67.83 372.44 C 67.9 375.03 74.81 376 79.17 376 C 84.59 376 90.34 374.76 90.41 372.45 L 91.78 362.79 C 92.54 362.97 93.17 363.07 93.67 363.07 C 94.35 363.07 94.8 362.9 95.08 362.57 C 95.31 362.3 95.4 361.97 95.33 361.62 C 95.18 360.83 94.24 359.98 92.33 358.89 L 93.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 140 300 L 180 300 L 180 340 L 140 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 167.53 330.06 L 167.53 327.02 L 169.41 326.26 L 169.41 329.3 Z M 164.39 326.26 L 166.27 327.02 L 166.27 330.06 L 164.39 329.3 Z M 160.63 334.45 L 160.63 331.41 L 162.51 330.65 L 162.51 333.69 Z M 157.49 330.65 L 159.37 331.41 L 159.37 334.45 L 157.49 333.69 Z M 153.73 330.06 L 153.73 327.02 L 155.61 326.26 L 155.61 329.3 Z M 150.59 326.26 L 152.47 327.02 L 152.47 330.06 L 150.59 329.3 Z M 153.1 324.76 L 154.55 325.34 L 153.1 325.92 L 151.65 325.34 Z M 160 329.15 L 161.45 329.73 L 160 330.31 L 158.55 329.73 Z M 166.9 324.76 L 168.35 325.34 L 166.9 325.92 L 165.45 325.34 Z M 170.27 324.76 L 167.13 323.5 C 166.98 323.44 166.82 323.44 166.67 323.5 L 163.53 324.76 C 163.29 324.85 163.14 325.08 163.14 325.34 L 163.14 329.05 L 160.23 327.89 C 160.08 327.83 159.92 327.83 159.77 327.89 L 156.86 329.05 L 156.86 325.34 C 156.86 325.08 156.71 324.85 156.47 324.76 L 153.33 323.5 C 153.18 323.44 153.02 323.44 152.87 323.5 L 149.73 324.76 C 149.49 324.85 149.34 325.08 149.34 325.34 L 149.34 329.73 C 149.34 329.98 149.49 330.21 149.73 330.31 L 152.87 331.57 C 152.94 331.59 153.02 331.61 153.1 331.61 C 153.18 331.61 153.26 331.59 153.33 331.57 L 156.24 330.4 L 156.24 334.12 C 156.24 334.37 156.39 334.61 156.63 334.7 L 159.77 335.96 C 159.84 335.98 159.92 336 160 336 C 160.08 336 160.16 335.98 160.23 335.96 L 163.37 334.7 C 163.61 334.61 163.76 334.37 163.76 334.12 L 163.76 330.4 L 166.67 331.57 C 166.74 331.59 166.82 331.61 166.9 331.61 C 166.98 331.61 167.06 331.59 167.13 331.57 L 170.27 330.31 C 170.51 330.21 170.66 329.98 170.66 329.73 L 170.66 325.34 C 170.66 325.08 170.51 324.85 170.27 324.76 Z M 175.68 317.15 C 175.68 320.81 167.6 322.79 160 322.79 C 152.4 322.79 144.32 320.81 144.32 317.15 C 144.32 315.4 146.26 313.85 149.79 312.81 L 150.14 314.01 C 147.33 314.85 145.57 316.05 145.57 317.15 C 145.57 319.22 151.5 321.54 160 321.54 C 168.5 321.54 174.43 319.22 174.43 317.15 C 174.43 316.05 172.67 314.85 169.86 314.01 L 170.21 312.81 C 173.74 313.85 175.68 315.4 175.68 317.15 Z M 160 305.31 L 166.41 307.78 L 160 310.24 L 153.59 307.78 Z M 166.64 317.71 C 165.45 318.24 163.47 318.86 160.63 318.94 L 160.63 311.34 L 167.53 308.69 L 167.53 316.34 C 167.53 316.93 167.18 317.47 166.64 317.71 Z M 152.47 316.34 L 152.47 308.69 L 159.37 311.34 L 159.37 318.94 C 156.53 318.86 154.55 318.24 153.36 317.71 C 152.82 317.47 152.47 316.93 152.47 316.34 Z M 152.85 318.86 C 154.23 319.48 156.59 320.21 160 320.21 C 163.41 320.21 165.77 319.48 167.15 318.86 C 168.14 318.42 168.78 317.43 168.78 316.34 L 168.78 307.78 C 168.78 307.52 168.62 307.28 168.38 307.19 L 160.23 304.06 C 160.08 304 159.92 304 159.77 304.06 L 151.62 307.19 C 151.38 307.28 151.22 307.52 151.22 307.78 L 151.22 316.34 C 151.22 317.43 151.86 318.42 152.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 140 340 L 180 340 L 180 380 L 140 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 168.64 366.93 C 168.64 365.98 167.87 365.21 166.93 365.21 C 165.98 365.21 165.21 365.98 165.21 366.93 C 165.21 367.87 165.98 368.64 166.93 368.64 C 167.87 368.64 168.64 367.87 168.64 366.93 Z M 169.78 366.93 C 169.78 368.5 168.5 369.78 166.93 369.78 C 165.35 369.78 164.07 368.5 164.07 366.93 C 164.07 365.35 165.35 364.07 166.93 364.07 C 168.5 364.07 169.78 365.35 169.78 366.93 Z M 154.51 358.68 C 154.51 357.74 153.74 356.97 152.8 356.97 C 151.85 356.97 151.08 357.74 151.08 358.68 C 151.08 359.63 151.85 360.4 152.8 360.4 C 153.74 360.4 154.51 359.63 154.51 358.68 Z M 155.65 358.68 C 155.65 360.26 154.37 361.54 152.8 361.54 C 151.22 361.54 149.94 360.26 149.94 358.68 C 149.94 357.11 151.22 355.82 152.8 355.82 C 154.37 355.82 155.65 357.11 155.65 358.68 Z M 159.85 349.72 C 159.85 350.66 160.61 351.43 161.56 351.43 C 162.51 351.43 163.27 350.66 163.27 349.72 C 163.27 348.77 162.51 348 161.56 348 C 160.61 348 159.85 348.77 159.85 349.72 Z M 158.7 349.72 C 158.7 348.14 159.99 346.86 161.56 346.86 C 163.14 346.86 164.42 348.14 164.42 349.72 C 164.42 351.29 163.14 352.58 161.56 352.58 C 159.99 352.58 158.7 351.29 158.7 349.72 Z M 174.86 360 C 174.86 354.7 172.02 349.8 167.44 347.15 C 166.61 347.31 165.82 347.54 164.83 347.9 L 164.44 346.82 C 164.96 346.64 165.42 346.49 165.87 346.36 C 164.03 345.56 162.03 345.14 160 345.14 C 159.03 345.14 158.09 345.24 157.16 345.42 C 157.83 345.82 158.43 346.21 159 346.65 L 158.31 347.56 C 157.5 346.94 156.65 346.42 155.54 345.83 C 149.93 347.6 145.89 352.55 145.25 358.36 C 146.42 358.12 147.55 357.99 148.81 357.96 L 148.84 359.1 C 147.52 359.13 146.39 359.27 145.16 359.55 C 145.15 359.7 145.14 359.85 145.14 360 C 145.14 364.95 147.59 369.51 151.62 372.26 C 150.9 370.12 150.54 368.11 150.54 366.14 C 150.54 365.02 150.74 364.1 150.94 363.12 C 150.99 362.9 151.04 362.67 151.08 362.43 L 152.2 362.65 C 152.16 362.89 152.11 363.13 152.06 363.36 C 151.86 364.31 151.69 365.14 151.69 366.14 C 151.69 368.37 152.18 370.68 153.17 373.19 C 155.3 374.29 157.59 374.86 160 374.86 C 161.57 374.86 163.11 374.61 164.58 374.12 C 165.15 372.99 165.58 371.92 165.94 370.69 L 167.03 371 C 166.77 371.9 166.48 372.72 166.12 373.53 C 167.04 373.11 167.91 372.6 168.73 372 C 168.54 371.52 168.32 371.04 168.09 370.57 L 169.11 370.06 C 169.31 370.46 169.49 370.86 169.67 371.27 C 172.97 368.44 174.86 364.38 174.86 360 Z M 176 360 C 176 364.99 173.73 369.6 169.78 372.66 C 168.81 373.42 167.74 374.05 166.62 374.56 C 166.15 374.77 165.66 374.97 165.16 375.14 C 163.52 375.71 161.78 376 160 376 C 157.37 376 154.76 375.35 152.45 374.11 C 147.24 371.32 144 365.91 144 360 C 144 359.61 144.01 359.31 144.03 359.03 C 144.42 352.36 149 346.58 155.43 344.67 C 156.89 344.22 158.43 344 160 344 C 162.75 344 165.45 344.71 167.82 346.05 C 172.86 348.87 176 354.22 176 360 Z M 158.47 351.69 L 157.71 350.83 C 156.43 351.95 155.44 353.14 154.27 354.93 L 155.23 355.55 C 156.33 353.85 157.27 352.74 158.47 351.69 Z M 156.73 359.1 L 156.36 360.18 C 158.98 361.08 161.27 362.52 163.56 364.71 L 164.35 363.88 C 161.94 361.58 159.51 360.06 156.73 359.1 Z M 164.37 352.38 C 166.51 355.65 167.72 359.24 167.96 363.05 L 166.82 363.12 C 166.59 359.51 165.45 356.11 163.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 100 340 L 140 340 L 140 380 L 100 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 105.95 345.14 L 111.26 350.45 L 110.45 351.26 L 105.14 345.95 L 105.14 350.29 L 104 350.29 L 104 344.57 C 104 344.26 104.26 344 104.57 344 L 110.29 344 L 110.29 345.14 Z M 136 344.57 L 136 350.29 L 134.86 350.29 L 134.86 345.95 L 129.55 351.26 L 128.74 350.45 L 134.05 345.14 L 129.71 345.14 L 129.71 344 L 135.43 344 C 135.74 344 136 344.26 136 344.57 Z M 134.86 369.71 L 136 369.71 L 136 375.43 C 136 375.74 135.74 376 135.43 376 L 129.71 376 L 129.71 374.86 L 134.05 374.86 L 128.74 369.55 L 129.55 368.74 L 134.86 374.05 Z M 134.57 359.55 C 134.57 357.65 132.38 355.78 128.71 354.54 L 129.08 353.46 C 133.3 354.88 135.71 357.1 135.71 359.55 C 135.71 362 133.3 364.22 129.08 365.65 L 128.71 364.56 C 132.38 363.32 134.57 361.45 134.57 359.55 Z M 105.46 359.55 C 105.46 361.37 107.51 363.19 110.94 364.43 L 110.56 365.51 C 106.59 364.07 104.32 361.9 104.32 359.55 C 104.32 357.2 106.59 355.03 110.56 353.6 L 110.94 354.67 C 107.51 355.91 105.46 357.73 105.46 359.55 Z M 111.26 369.55 L 105.95 374.86 L 110.29 374.86 L 110.29 376 L 104.57 376 C 104.26 376 104 375.74 104 375.43 L 104 369.71 L 105.14 369.71 L 105.14 374.05 L 110.45 368.74 Z M 120 355.02 C 115.92 355.02 113.71 353.97 113.71 353.53 C 113.71 353.1 115.92 352.05 120 352.05 C 124.08 352.05 126.29 353.1 126.29 353.53 C 126.29 353.97 124.08 355.02 120 355.02 Z M 120.02 359.45 C 116.11 359.45 113.71 358.38 113.71 357.8 L 113.71 355.02 C 115.12 355.8 117.62 356.16 120 356.16 C 122.38 356.16 124.88 355.8 126.29 355.02 L 126.29 357.8 C 126.29 358.38 123.91 359.45 120.02 359.45 Z M 120.02 363.81 C 116.11 363.81 113.71 362.74 113.71 362.16 L 113.71 359.35 C 115.1 360.17 117.57 360.59 120.02 360.59 C 122.45 360.59 124.9 360.17 126.29 359.35 L 126.29 362.16 C 126.29 362.74 123.91 363.81 120.02 363.81 Z M 120 367.72 C 115.93 367.72 113.71 366.63 113.71 366.07 L 113.71 363.71 C 115.1 364.53 117.57 364.95 120.02 364.95 C 122.45 364.95 124.9 364.53 126.29 363.72 L 126.29 366.07 C 126.29 366.63 124.07 367.72 120 367.72 Z M 120 350.91 C 116.42 350.91 112.57 351.73 112.57 353.53 L 112.57 366.07 C 112.57 367.91 116.31 368.87 120 368.87 C 123.69 368.87 127.43 367.91 127.43 366.07 L 127.43 353.53 C 127.43 351.73 123.58 350.91 120 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 20 340 L 60 340 L 60 380 L 20 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 46.88 368.49 C 44.98 370.03 40.98 370.84 37.15 370.84 C 33.32 370.84 29.31 370.03 27.41 368.49 L 27.41 371.59 L 27.41 371.59 C 27.41 373.14 31.41 374.87 37.15 374.87 C 42.88 374.87 46.88 373.14 46.88 371.59 Z M 46.88 362.58 L 48.03 362.58 L 48.03 362.58 C 48.03 363.27 47.68 363.92 47.01 364.51 C 47.82 365.23 48.03 365.93 48.03 366.43 C 48.03 366.44 48.03 366.44 48.03 366.44 L 48.03 371.59 L 48.03 371.59 C 48.03 374.45 42.42 376 37.15 376 C 31.88 376 26.29 374.46 26.27 371.61 C 26.27 371.61 26.26 371.61 26.26 371.6 L 26.26 366.43 C 26.26 366.43 26.26 366.43 26.26 366.43 C 26.27 365.93 26.47 365.22 27.28 364.51 C 26.48 363.79 26.27 363.09 26.26 362.6 L 26.26 362.6 C 26.26 362.59 26.26 362.59 26.26 362.59 L 26.26 357.42 C 26.26 357.42 26.26 357.42 26.26 357.41 C 26.27 356.91 26.47 356.21 27.29 355.5 C 26.48 354.78 26.27 354.08 26.26 353.58 L 26.26 353.58 C 26.26 353.58 26.26 353.58 26.26 353.58 L 26.26 348.41 C 26.26 348.41 26.26 348.4 26.26 348.4 C 26.27 345.54 31.88 344 37.15 344 C 40.12 344 42.98 344.47 44.99 345.3 L 44.56 346.35 C 42.68 345.58 39.98 345.13 37.15 345.13 C 31.41 345.13 27.41 346.86 27.41 348.41 C 27.41 349.96 31.41 351.69 37.15 351.69 C 37.3 351.69 37.45 351.69 37.61 351.68 L 37.65 352.81 C 37.48 352.82 37.32 352.82 37.15 352.82 C 33.32 352.82 29.31 352 27.41 350.46 L 27.41 353.57 L 27.41 353.57 L 27.41 353.58 C 27.41 354.17 28.02 354.69 28.53 355.02 C 30.07 356 32.82 356.67 35.9 356.81 L 35.84 357.94 C 32.73 357.8 30.01 357.16 28.25 356.17 C 27.82 356.49 27.41 356.93 27.41 357.42 C 27.41 358.97 31.41 360.7 37.15 360.7 C 37.71 360.7 38.27 360.68 38.81 360.64 L 38.89 361.77 C 38.32 361.81 37.74 361.83 37.15 361.83 C 33.32 361.83 29.31 361.02 27.41 359.47 L 27.41 362.58 L 27.41 362.58 C 27.41 363.19 28.02 363.7 28.53 364.03 C 30.29 365.16 33.59 365.85 37.15 365.85 L 37.4 365.85 L 37.4 366.99 L 37.15 366.99 C 33.54 366.99 30.25 366.32 28.25 365.18 C 27.82 365.51 27.41 365.94 27.41 366.43 C 27.41 367.98 31.41 369.71 37.15 369.71 C 42.88 369.71 46.88 367.99 46.88 366.44 L 46.88 366.43 L 46.88 366.43 C 46.88 365.94 46.47 365.5 46.04 365.18 C 45.76 365.34 45.46 365.49 45.12 365.63 L 44.69 364.58 C 45.1 364.41 45.46 364.23 45.76 364.04 C 46.27 363.7 46.88 363.17 46.88 362.58 Z M 51.78 354.3 L 48.58 354.3 C 48.39 354.3 48.21 354.2 48.1 354.05 C 48 353.89 47.98 353.69 48.05 353.52 L 49.99 348.65 L 42.62 348.65 L 39.19 355.45 L 42.84 355.45 C 43.02 355.45 43.19 355.54 43.3 355.68 C 43.4 355.83 43.44 356.02 43.38 356.19 L 40.13 366.34 Z M 53.53 354.12 L 39.25 368.88 C 39.14 368.99 38.99 369.05 38.84 369.05 C 38.74 369.05 38.63 369.03 38.54 368.97 C 38.32 368.84 38.21 368.57 38.29 368.32 L 42.05 356.59 L 38.26 356.59 C 38.07 356.59 37.88 356.48 37.78 356.32 C 37.67 356.15 37.66 355.94 37.75 355.77 L 41.75 347.83 C 41.85 347.64 42.05 347.52 42.26 347.52 L 50.84 347.52 C 51.02 347.52 51.2 347.61 51.31 347.77 C 51.42 347.92 51.44 348.12 51.37 348.29 L 49.42 353.16 L 53.12 353.16 C 53.35 353.16 53.56 353.3 53.65 353.51 C 53.74 353.72 53.69 353.96 53.53 354.12 Z M 28.24 371.81 C 29.05 372.27 30.07 372.65 31.27 372.95 L 31.55 371.85 C 30.46 371.58 29.51 371.23 28.8 370.83 Z M 31.27 363.89 L 31.55 362.79 C 30.46 362.51 29.51 362.16 28.8 361.76 L 28.24 362.75 C 29.05 363.2 30.07 363.59 31.27 363.89 Z M 28.24 353.68 L 28.8 352.69 C 29.51 353.09 30.46 353.45 31.55 353.72 L 31.27 354.82 C 30.07 354.52 29.05 354.13 28.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="20" y="300" width="160" height="80" fill="none" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><rect x="20" y="140" width="160" height="40" fill="#90a6c2" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="99.5" y="173.5">development</text></g><rect x="20" y="220" width="160" height="40" fill="#39414d" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="99.5" y="246">OPTIONAL</text></g><rect x="20" y="260" width="160" height="40" fill="#39414d" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="99.5" y="286">long-lived</text></g><rect x="20" y="180" width="160" height="40" fill="#90a6c2" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="99.5" y="198.5">environment</text></g><rect x="290" y="420" width="160" height="40" fill="#5c5c5c" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px"><text x="369.5" y="446.5">Account Resources</text></g><rect x="290" y="500" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="369.5" y="525">shared between envs</text></g><path d="M 290 540 L 330 540 L 330 580 L 290 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 321.91 561.36 L 318.77 560.1 L 318.77 571.46 C 319.69 571.37 320.43 571.07 320.95 570.54 C 321.92 569.56 321.91 568.11 321.91 568.1 Z M 317.63 571.47 L 317.63 560.1 L 314.5 561.36 L 314.5 568.09 C 314.51 568.21 314.64 571.14 317.63 571.47 Z M 323.04 568.09 C 323.05 568.15 323.08 569.99 321.77 571.33 C 320.92 572.2 319.72 572.64 318.2 572.64 C 314.46 572.64 313.4 569.67 313.36 568.1 L 313.36 560.97 C 313.36 560.74 313.51 560.53 313.72 560.44 L 317.99 558.73 C 318.13 558.68 318.28 558.68 318.42 558.73 L 322.69 560.44 C 322.9 560.53 323.04 560.74 323.04 560.97 Z M 324.75 566.97 L 324.75 559.36 L 318.2 556.74 L 311.65 559.36 L 311.65 566.95 C 311.65 567 311.58 570.5 313.67 572.65 C 314.77 573.78 316.29 574.35 318.2 574.35 C 320.13 574.35 321.66 573.78 322.76 572.64 C 324.85 570.48 324.76 567 324.75 566.97 Z M 323.58 573.43 C 322.26 574.8 320.45 575.49 318.2 575.49 C 315.97 575.49 314.17 574.8 312.84 573.43 C 310.42 570.93 310.51 567.09 310.52 566.93 L 310.52 558.98 C 310.52 558.74 310.66 558.53 310.87 558.45 L 317.99 555.6 C 318.13 555.55 318.28 555.55 318.42 555.6 L 325.53 558.45 C 325.75 558.53 325.89 558.74 325.89 558.98 L 325.89 566.95 C 325.9 567.09 326 570.92 323.58 573.43 Z M 300.3 564.67 L 308.81 564.67 L 308.81 565.81 L 300.3 565.81 C 296.83 565.81 294.19 563.5 294.01 560.32 C 294 560.19 294 560.04 294 559.89 C 294 555.98 296.74 554.54 298.33 554.03 C 298.32 553.85 298.31 553.66 298.31 553.48 C 298.31 550.37 300.53 547.12 303.47 545.92 C 306.91 544.51 310.55 545.19 313.19 547.75 C 314.08 548.61 314.76 549.54 315.25 550.56 C 315.93 549.97 316.76 549.65 317.65 549.65 C 319.53 549.65 321.52 551.13 321.87 553.96 C 323.11 554.27 324.67 554.94 325.77 556.35 L 324.87 557.05 C 323.86 555.75 322.33 555.2 321.22 554.98 C 320.97 554.93 320.78 554.71 320.77 554.45 C 320.62 551.94 319.05 550.79 317.65 550.79 C 316.82 550.79 316.08 551.18 315.52 551.93 C 315.39 552.09 315.19 552.18 314.98 552.14 C 314.77 552.11 314.6 551.97 314.53 551.78 C 314.09 550.59 313.39 549.54 312.4 548.56 C 310.09 546.33 306.91 545.74 303.9 546.97 C 301.36 548.01 299.45 550.81 299.45 553.48 C 299.45 553.79 299.47 554.09 299.51 554.38 C 299.54 554.67 299.36 554.93 299.08 555 C 297.61 555.37 295.14 556.49 295.14 559.89 C 295.14 560.01 295.14 560.12 295.15 560.24 C 295.29 562.82 297.46 564.67 300.3 564.67 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 370 540 L 410 540 L 410 580 L 370 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 384.39 571.89 L 394.38 571.89 L 394.38 568.6 C 394.38 568.31 394.07 568.07 393.69 568.07 L 385.08 568.07 C 384.7 568.07 384.39 568.31 384.39 568.6 Z M 397.36 573.76 L 397.36 575.82 L 397.36 576 L 396.24 576 L 396.24 575.82 L 396.24 573.76 C 396.24 573.32 395.98 573.01 395.75 573.01 L 383.02 573.01 C 382.79 573.01 382.53 573.32 382.53 573.76 L 382.53 575.82 L 382.53 576 L 381.41 576 L 381.41 575.82 L 381.41 573.76 C 381.41 572.73 382.13 571.89 383.02 571.89 L 383.27 571.89 L 383.27 568.6 C 383.27 567.69 384.08 566.95 385.08 566.95 L 393.69 566.95 C 394.69 566.95 395.5 567.69 395.5 568.6 L 395.5 571.89 L 395.75 571.89 C 396.64 571.89 397.36 572.73 397.36 573.76 Z M 393.09 559.54 C 393.8 559.54 394.38 558.96 394.38 558.25 C 394.38 557.53 393.8 556.95 393.09 556.95 C 392.38 556.95 391.8 557.53 391.8 558.25 C 391.8 558.96 392.38 559.54 393.09 559.54 Z M 392.53 566.28 L 392.53 560.59 C 391.47 560.33 390.68 559.38 390.68 558.25 C 390.68 556.92 391.76 555.83 393.09 555.83 C 394.42 555.83 395.5 556.92 395.5 558.25 C 395.5 559.38 394.71 560.33 393.65 560.59 L 393.65 566.28 Z M 390.64 553.92 C 390.64 553.21 390.06 552.63 389.34 552.63 C 388.63 552.63 388.05 553.21 388.05 553.92 C 388.05 554.64 388.63 555.22 389.34 555.22 C 390.06 555.22 390.64 554.64 390.64 553.92 Z M 391.76 553.92 C 391.76 555.05 390.98 555.98 389.94 556.25 L 389.94 566.28 L 388.83 566.28 L 388.83 556.28 C 387.74 556.04 386.93 555.08 386.93 553.92 C 386.93 552.59 388.01 551.51 389.34 551.51 C 390.67 551.51 391.76 552.59 391.76 553.92 Z M 385.68 556.95 C 384.97 556.95 384.39 557.53 384.39 558.25 C 384.39 558.96 384.97 559.54 385.68 559.54 C 386.39 559.54 386.97 558.96 386.97 558.25 C 386.97 557.53 386.39 556.95 385.68 556.95 Z M 385.68 555.83 C 387.01 555.83 388.09 556.92 388.09 558.25 C 388.09 559.38 387.3 560.33 386.24 560.59 L 386.24 566.28 L 385.12 566.28 L 385.12 560.59 C 384.06 560.33 383.27 559.38 383.27 558.25 C 383.27 556.92 384.35 555.83 385.68 555.83 Z M 405.67 558.85 C 405.67 563.14 402.42 564.66 399.38 564.66 L 395 564.66 L 395 563.54 L 399.38 563.54 C 400.59 563.54 404.55 563.2 404.55 558.85 C 404.55 555.7 402.09 554.55 400.02 554.13 C 399.77 554.08 399.58 553.87 399.57 553.62 C 399.42 551.13 397.97 550.25 396.77 550.25 C 395.96 550.25 395.2 550.64 394.69 551.31 C 394.56 551.47 394.36 551.55 394.16 551.52 C 393.95 551.49 393.78 551.36 393.71 551.16 C 393.36 550.2 392.73 548.85 391.74 547.9 C 389.57 545.78 386.6 545.21 383.79 546.36 C 381.5 547.3 379.63 550.17 379.63 552.76 C 379.63 553.04 379.65 553.33 379.68 553.61 C 379.72 553.89 379.54 554.15 379.26 554.22 C 378.11 554.5 375.45 555.51 375.45 558.81 C 375.45 558.92 375.45 559.04 375.46 559.15 C 375.59 561.57 377.87 563.54 380.53 563.54 L 383.75 563.54 L 383.75 564.66 L 380.53 564.66 C 377.29 564.66 374.51 562.22 374.34 559.22 C 374.33 559.08 374.33 558.94 374.33 558.81 C 374.33 556.12 375.89 554.08 378.53 553.26 C 378.52 553.1 378.51 552.93 378.51 552.76 C 378.51 550.08 380.33 546.57 383.36 545.33 C 386.6 544 390.02 544.66 392.52 547.09 C 393.4 547.94 394.02 549.02 394.44 549.97 C 395.1 549.43 395.91 549.13 396.77 549.13 C 398.5 549.13 400.32 550.37 400.65 553.13 C 403.89 553.9 405.67 555.93 405.67 558.85 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 330 540 L 370 540 L 370 580 L 330 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 354.96 560.42 C 355.38 560.81 355.59 561.33 355.59 561.99 C 355.59 562.7 355.33 563.27 354.82 563.7 C 354.31 564.12 353.62 564.34 352.75 564.34 C 352.07 564.34 351.39 564.19 350.72 563.9 L 350.72 563.03 C 351.51 563.29 352.19 563.42 352.75 563.42 C 353.3 563.42 353.73 563.29 354.03 563.05 C 354.33 562.8 354.48 562.45 354.48 561.99 C 354.48 561.11 353.92 560.67 352.81 560.67 C 352.46 560.67 352.11 560.69 351.77 560.72 L 351.77 560 L 354.06 557.5 L 350.83 557.5 L 350.83 556.61 L 355.27 556.61 L 355.27 557.47 L 353.02 559.85 C 353.06 559.84 353.1 559.84 353.13 559.84 L 353.24 559.84 C 353.96 559.84 354.53 560.03 354.96 560.42 M 348.62 560.23 C 349.06 560.65 349.28 561.22 349.28 561.94 C 349.28 562.66 349.02 563.24 348.51 563.68 C 347.99 564.12 347.31 564.34 346.47 564.34 C 345.73 564.34 345.03 564.19 344.38 563.9 L 344.38 563.03 C 345.19 563.29 345.88 563.42 346.46 563.42 C 347.01 563.42 347.43 563.29 347.73 563.04 C 348.02 562.79 348.17 562.43 348.17 561.96 C 348.17 561.44 348.03 561.06 347.75 560.83 C 347.48 560.6 347.03 560.48 346.4 560.48 C 345.95 560.48 345.39 560.52 344.71 560.59 L 344.71 559.87 L 344.92 556.61 L 348.9 556.61 L 348.9 557.5 L 345.83 557.5 L 345.69 559.72 C 346.09 559.65 346.45 559.61 346.77 559.61 C 347.56 559.61 348.17 559.82 348.62 560.23 M 356.82 568.23 C 354.05 568.73 351.63 569.86 350 570.78 C 348.37 569.86 345.95 568.73 343.18 568.23 C 342.4 568.09 338.52 567.28 338.52 565.04 C 338.52 564 338.89 563.31 339.61 562.08 C 340.46 560.6 341.53 558.77 341.53 556.13 C 341.53 554.25 341.03 552.44 340.06 550.75 C 340.17 550.61 340.29 550.47 340.4 550.32 C 341.85 551.04 343.36 551.41 344.89 551.41 C 346.76 551.41 348.47 550.92 350 549.95 C 351.52 550.92 353.24 551.41 355.11 551.41 C 356.64 551.41 358.15 551.04 359.6 550.32 C 359.71 550.47 359.83 550.61 359.94 550.75 C 358.97 552.44 358.47 554.25 358.47 556.13 C 358.47 558.77 359.54 560.6 360.39 562.08 C 361.11 563.31 361.48 564 361.48 565.04 C 361.48 567.28 357.6 568.09 356.82 568.23 M 359.61 556.13 C 359.61 554.33 360.12 552.61 361.12 551 C 361.25 550.8 361.24 550.53 361.08 550.34 C 360.79 549.99 360.49 549.61 360.19 549.24 C 360.01 549.02 359.71 548.97 359.47 549.1 C 358.06 549.88 356.6 550.27 355.11 550.27 C 353.32 550.27 351.75 549.79 350.32 548.8 C 350.13 548.66 349.87 548.66 349.68 548.8 C 348.25 549.79 346.68 550.27 344.89 550.27 C 343.4 550.27 341.94 549.88 340.53 549.1 C 340.29 548.97 339.99 549.02 339.81 549.24 C 339.51 549.61 339.21 549.99 338.92 550.34 C 338.76 550.53 338.75 550.8 338.88 551 C 339.88 552.61 340.39 554.33 340.39 556.13 C 340.39 558.47 339.41 560.15 338.62 561.51 C 337.85 562.83 337.38 563.71 337.38 565.04 C 337.38 568.11 341.67 569.12 342.98 569.36 C 345.75 569.85 348.17 571.03 349.71 571.93 C 349.8 571.98 349.9 572 350 572 C 350.1 572 350.2 571.98 350.29 571.93 C 351.83 571.03 354.25 569.85 357.02 569.36 C 358.33 569.12 362.62 568.11 362.62 565.04 C 362.62 563.71 362.15 562.83 361.38 561.51 C 360.59 560.15 359.61 558.47 359.61 556.13 M 357.41 571.53 C 353.91 572.16 350.98 574.04 350 574.73 C 349.02 574.04 346.09 572.16 342.59 571.53 C 335.71 570.29 335.18 566.25 335.18 565.04 C 335.18 563.05 335.96 561.7 336.71 560.4 C 337.43 559.16 338.18 557.87 338.18 556.13 C 338.18 553.38 336.59 551.44 335.81 550.65 C 336.63 549.65 338.71 547.12 339.74 545.79 C 341.29 547.26 343.1 548.06 344.89 548.06 C 346.87 548.06 348.51 547.25 350 545.53 C 351.49 547.25 353.13 548.06 355.11 548.06 C 356.9 548.06 358.71 547.26 360.26 545.79 C 361.29 547.12 363.37 549.65 364.19 550.65 C 363.41 551.44 361.82 553.38 361.82 556.13 C 361.82 557.87 362.57 559.16 363.29 560.4 C 364.04 561.7 364.82 563.05 364.82 565.04 C 364.82 566.25 364.29 570.29 357.41 571.53 M 364.27 559.83 C 363.57 558.61 362.96 557.56 362.96 556.13 C 362.96 553.12 365.31 551.17 365.33 551.15 C 365.45 551.05 365.52 550.91 365.54 550.76 C 365.55 550.61 365.51 550.46 365.41 550.34 C 365.37 550.3 361.64 545.77 360.78 544.59 C 360.68 544.45 360.52 544.37 360.35 544.36 C 360.18 544.35 360.02 544.41 359.9 544.54 C 358.47 546.07 356.77 546.92 355.11 546.92 C 353.29 546.92 351.85 546.11 350.45 544.28 C 350.24 544 349.76 544 349.55 544.28 C 348.15 546.11 346.71 546.92 344.89 546.92 C 343.23 546.92 341.53 546.07 340.1 544.54 C 339.98 544.41 339.82 544.34 339.65 544.36 C 339.48 544.37 339.32 544.45 339.22 544.59 C 338.36 545.77 334.63 550.3 334.59 550.34 C 334.49 550.46 334.45 550.61 334.46 550.76 C 334.48 550.91 334.55 551.05 334.67 551.15 C 334.69 551.17 337.04 553.12 337.04 556.13 C 337.04 557.56 336.43 558.61 335.73 559.83 C 334.93 561.19 334.04 562.74 334.04 565.04 C 334.04 568.87 337.16 571.71 342.39 572.65 C 346.33 573.36 349.62 575.86 349.65 575.88 C 349.75 575.96 349.88 576 350 576 C 350.12 576 350.24 575.96 350.35 575.88 C 350.38 575.86 353.66 573.36 357.61 572.65 C 362.84 571.71 365.96 568.87 365.96 565.04 C 365.96 562.74 365.07 561.19 364.27 559.83" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 410 540 L 450 540 L 450 580 L 410 580 Z" fill="url(#mx-gradient-f34482-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 428.6 550.18 L 430.84 550.18 L 430.84 549.05 L 428.6 549.05 Z M 424.67 550.18 L 426.91 550.18 L 426.91 549.05 L 424.67 549.05 Z M 420.74 550.18 L 422.98 550.18 L 422.98 549.05 L 420.74 549.05 Z M 444.15 566.09 C 443.98 566.49 443.62 566.79 443.19 566.93 L 443.19 563.76 C 443.53 563.88 443.83 564.1 444.04 564.41 C 444.36 564.9 444.4 565.51 444.15 566.09 Z M 415.85 566.09 C 415.6 565.51 415.64 564.9 415.96 564.41 C 416.17 564.1 416.47 563.88 416.81 563.76 L 416.81 566.93 C 416.38 566.79 416.02 566.49 415.85 566.09 Z M 444.98 563.79 C 444.56 563.16 443.92 562.74 443.19 562.59 L 443.19 561.59 C 443.19 559.63 441.68 558.04 439.82 558.04 L 429.16 558.04 L 429.16 559.16 L 439.82 559.16 C 441.06 559.16 442.07 560.25 442.07 561.59 L 442.07 569.08 C 442.07 570.42 441.06 571.51 439.82 571.51 L 420.18 571.51 C 418.94 571.51 417.93 570.42 417.93 569.08 L 417.93 561.59 C 417.93 560.25 418.94 559.16 420.18 559.16 L 422.98 559.16 L 422.98 558.04 L 420.18 558.04 C 418.32 558.04 416.81 559.63 416.81 561.59 L 416.81 562.59 C 416.08 562.74 415.44 563.16 415.02 563.79 C 414.49 564.6 414.41 565.6 414.82 566.54 C 415.17 567.35 415.92 567.92 416.81 568.09 L 416.81 569.08 C 416.81 571.04 418.32 572.63 420.18 572.63 L 426.91 572.63 L 426.91 576 L 428.04 576 L 428.04 572.63 L 431.4 572.63 L 431.4 576 L 432.53 576 L 432.53 572.63 L 439.82 572.63 C 441.68 572.63 443.19 571.04 443.19 569.08 L 443.19 568.09 C 444.08 567.92 444.83 567.35 445.18 566.54 C 445.59 565.6 445.51 564.6 444.98 563.79 Z M 425.23 565.33 C 425.23 566.26 424.47 567.02 423.54 567.02 C 422.62 567.02 421.86 566.26 421.86 565.33 C 421.86 564.4 422.62 563.65 423.54 563.65 C 424.47 563.65 425.23 564.4 425.23 565.33 Z M 420.74 565.33 C 420.74 566.88 422 568.14 423.54 568.14 C 425.09 568.14 426.35 566.88 426.35 565.33 C 426.35 563.79 425.09 562.53 423.54 562.53 C 422 562.53 420.74 563.79 420.74 565.33 Z M 434.77 565.33 C 434.77 564.4 435.53 563.65 436.46 563.65 C 437.38 563.65 438.14 564.4 438.14 565.33 C 438.14 566.26 437.38 567.02 436.46 567.02 C 435.53 567.02 434.77 566.26 434.77 565.33 Z M 439.26 565.33 C 439.26 563.79 438 562.53 436.46 562.53 C 434.91 562.53 433.65 563.79 433.65 565.33 C 433.65 566.88 434.91 568.14 436.46 568.14 C 438 568.14 439.26 566.88 439.26 565.33 Z M 418.49 545.6 C 418.49 545.34 418.71 545.12 418.97 545.12 L 433.09 545.12 L 433.09 554.17 C 433.09 554.44 432.86 554.67 432.59 554.67 L 426.91 554.67 C 426.6 554.67 426.35 554.92 426.35 555.23 L 426.35 558.14 L 423.87 554.89 C 423.76 554.75 423.6 554.67 423.42 554.67 L 418.97 554.67 C 418.71 554.67 418.49 554.45 418.49 554.19 Z M 418.97 555.79 L 423.15 555.79 L 426.47 560.14 C 426.57 560.28 426.74 560.36 426.91 560.36 C 426.97 560.36 427.03 560.35 427.09 560.33 C 427.32 560.26 427.47 560.04 427.47 559.8 L 427.47 555.79 L 432.59 555.79 C 433.48 555.79 434.21 555.06 434.21 554.17 L 434.21 544.86 C 434.21 544.38 433.83 544 433.35 544 L 418.97 544 C 418.09 544 417.37 544.72 417.37 545.6 L 417.37 554.19 C 417.37 555.07 418.09 555.79 418.97 555.79 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="290" y="540" width="160" height="40" fill="none" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><rect x="290" y="460" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="369.5" y="485">own deploy lifecycle</text></g><rect x="870" y="420" width="160" height="40" fill="#5c5c5c" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px"><text x="949.5" y="446.5">Account Resources</text></g><rect x="870" y="500" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="949.5" y="525">shared between envs</text></g><path d="M 870 540 L 910 540 L 910 580 L 870 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 901.91 561.36 L 898.77 560.1 L 898.77 571.46 C 899.69 571.37 900.43 571.07 900.95 570.54 C 901.92 569.56 901.91 568.11 901.91 568.1 Z M 897.63 571.47 L 897.63 560.1 L 894.5 561.36 L 894.5 568.09 C 894.51 568.21 894.64 571.14 897.63 571.47 Z M 903.04 568.09 C 903.05 568.15 903.08 569.99 901.77 571.33 C 900.92 572.2 899.72 572.64 898.2 572.64 C 894.46 572.64 893.4 569.67 893.36 568.1 L 893.36 560.97 C 893.36 560.74 893.51 560.53 893.72 560.44 L 897.99 558.73 C 898.13 558.68 898.28 558.68 898.42 558.73 L 902.69 560.44 C 902.9 560.53 903.04 560.74 903.04 560.97 Z M 904.75 566.97 L 904.75 559.36 L 898.2 556.74 L 891.65 559.36 L 891.65 566.95 C 891.65 567 891.58 570.5 893.67 572.65 C 894.77 573.78 896.29 574.35 898.2 574.35 C 900.13 574.35 901.66 573.78 902.76 572.64 C 904.85 570.48 904.76 567 904.75 566.97 Z M 903.58 573.43 C 902.26 574.8 900.45 575.49 898.2 575.49 C 895.97 575.49 894.17 574.8 892.84 573.43 C 890.42 570.93 890.51 567.09 890.52 566.93 L 890.52 558.98 C 890.52 558.74 890.66 558.53 890.87 558.45 L 897.99 555.6 C 898.13 555.55 898.28 555.55 898.42 555.6 L 905.53 558.45 C 905.75 558.53 905.89 558.74 905.89 558.98 L 905.89 566.95 C 905.9 567.09 906 570.92 903.58 573.43 Z M 880.3 564.67 L 888.81 564.67 L 888.81 565.81 L 880.3 565.81 C 876.83 565.81 874.19 563.5 874.01 560.32 C 874 560.19 874 560.04 874 559.89 C 874 555.98 876.74 554.54 878.33 554.03 C 878.32 553.85 878.31 553.66 878.31 553.48 C 878.31 550.37 880.53 547.12 883.47 545.92 C 886.91 544.51 890.55 545.19 893.19 547.75 C 894.08 548.61 894.76 549.54 895.25 550.56 C 895.93 549.97 896.76 549.65 897.65 549.65 C 899.53 549.65 901.52 551.13 901.87 553.96 C 903.11 554.27 904.67 554.94 905.77 556.35 L 904.87 557.05 C 903.86 555.75 902.33 555.2 901.22 554.98 C 900.97 554.93 900.78 554.71 900.77 554.45 C 900.62 551.94 899.05 550.79 897.65 550.79 C 896.82 550.79 896.08 551.18 895.52 551.93 C 895.39 552.09 895.19 552.18 894.98 552.14 C 894.77 552.11 894.6 551.97 894.53 551.78 C 894.09 550.59 893.39 549.54 892.4 548.56 C 890.09 546.33 886.91 545.74 883.9 546.97 C 881.36 548.01 879.45 550.81 879.45 553.48 C 879.45 553.79 879.47 554.09 879.51 554.38 C 879.54 554.67 879.36 554.93 879.08 555 C 877.61 555.37 875.14 556.49 875.14 559.89 C 875.14 560.01 875.14 560.12 875.15 560.24 C 875.29 562.82 877.46 564.67 880.3 564.67 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 950 540 L 990 540 L 990 580 L 950 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 964.39 571.89 L 974.38 571.89 L 974.38 568.6 C 974.38 568.31 974.07 568.07 973.69 568.07 L 965.08 568.07 C 964.7 568.07 964.39 568.31 964.39 568.6 Z M 977.36 573.76 L 977.36 575.82 L 977.36 576 L 976.24 576 L 976.24 575.82 L 976.24 573.76 C 976.24 573.32 975.98 573.01 975.75 573.01 L 963.02 573.01 C 962.79 573.01 962.53 573.32 962.53 573.76 L 962.53 575.82 L 962.53 576 L 961.41 576 L 961.41 575.82 L 961.41 573.76 C 961.41 572.73 962.13 571.89 963.02 571.89 L 963.27 571.89 L 963.27 568.6 C 963.27 567.69 964.08 566.95 965.08 566.95 L 973.69 566.95 C 974.69 566.95 975.5 567.69 975.5 568.6 L 975.5 571.89 L 975.75 571.89 C 976.64 571.89 977.36 572.73 977.36 573.76 Z M 973.09 559.54 C 973.8 559.54 974.38 558.96 974.38 558.25 C 974.38 557.53 973.8 556.95 973.09 556.95 C 972.38 556.95 971.8 557.53 971.8 558.25 C 971.8 558.96 972.38 559.54 973.09 559.54 Z M 972.53 566.28 L 972.53 560.59 C 971.47 560.33 970.68 559.38 970.68 558.25 C 970.68 556.92 971.76 555.83 973.09 555.83 C 974.42 555.83 975.5 556.92 975.5 558.25 C 975.5 559.38 974.71 560.33 973.65 560.59 L 973.65 566.28 Z M 970.64 553.92 C 970.64 553.21 970.06 552.63 969.34 552.63 C 968.63 552.63 968.05 553.21 968.05 553.92 C 968.05 554.64 968.63 555.22 969.34 555.22 C 970.06 555.22 970.64 554.64 970.64 553.92 Z M 971.76 553.92 C 971.76 555.05 970.98 555.98 969.94 556.25 L 969.94 566.28 L 968.83 566.28 L 968.83 556.28 C 967.74 556.04 966.93 555.08 966.93 553.92 C 966.93 552.59 968.01 551.51 969.34 551.51 C 970.67 551.51 971.76 552.59 971.76 553.92 Z M 965.68 556.95 C 964.97 556.95 964.39 557.53 964.39 558.25 C 964.39 558.96 964.97 559.54 965.68 559.54 C 966.39 559.54 966.97 558.96 966.97 558.25 C 966.97 557.53 966.39 556.95 965.68 556.95 Z M 965.68 555.83 C 967.01 555.83 968.09 556.92 968.09 558.25 C 968.09 559.38 967.3 560.33 966.24 560.59 L 966.24 566.28 L 965.12 566.28 L 965.12 560.59 C 964.06 560.33 963.27 559.38 963.27 558.25 C 963.27 556.92 964.35 555.83 965.68 555.83 Z M 985.67 558.85 C 985.67 563.14 982.42 564.66 979.38 564.66 L 975 564.66 L 975 563.54 L 979.38 563.54 C 980.59 563.54 984.55 563.2 984.55 558.85 C 984.55 555.7 982.09 554.55 980.02 554.13 C 979.77 554.08 979.58 553.87 979.57 553.62 C 979.42 551.13 977.97 550.25 976.77 550.25 C 975.96 550.25 975.2 550.64 974.69 551.31 C 974.56 551.47 974.36 551.55 974.16 551.52 C 973.95 551.49 973.78 551.36 973.71 551.16 C 973.36 550.2 972.73 548.85 971.74 547.9 C 969.57 545.78 966.6 545.21 963.79 546.36 C 961.5 547.3 959.63 550.17 959.63 552.76 C 959.63 553.04 959.65 553.33 959.68 553.61 C 959.72 553.89 959.54 554.15 959.26 554.22 C 958.11 554.5 955.45 555.51 955.45 558.81 C 955.45 558.92 955.45 559.04 955.46 559.15 C 955.59 561.57 957.87 563.54 960.53 563.54 L 963.75 563.54 L 963.75 564.66 L 960.53 564.66 C 957.29 564.66 954.51 562.22 954.34 559.22 C 954.33 559.08 954.33 558.94 954.33 558.81 C 954.33 556.12 955.89 554.08 958.53 553.26 C 958.52 553.1 958.51 552.93 958.51 552.76 C 958.51 550.08 960.33 546.57 963.36 545.33 C 966.6 544 970.02 544.66 972.52 547.09 C 973.4 547.94 974.02 549.02 974.44 549.97 C 975.1 549.43 975.91 549.13 976.77 549.13 C 978.5 549.13 980.32 550.37 980.65 553.13 C 983.89 553.9 985.67 555.93 985.67 558.85 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 910 540 L 950 540 L 950 580 L 910 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 934.96 560.42 C 935.38 560.81 935.59 561.33 935.59 561.99 C 935.59 562.7 935.33 563.27 934.82 563.7 C 934.31 564.12 933.62 564.34 932.75 564.34 C 932.07 564.34 931.39 564.19 930.72 563.9 L 930.72 563.03 C 931.51 563.29 932.19 563.42 932.75 563.42 C 933.3 563.42 933.73 563.29 934.03 563.05 C 934.33 562.8 934.48 562.45 934.48 561.99 C 934.48 561.11 933.92 560.67 932.81 560.67 C 932.46 560.67 932.11 560.69 931.77 560.72 L 931.77 560 L 934.06 557.5 L 930.83 557.5 L 930.83 556.61 L 935.27 556.61 L 935.27 557.47 L 933.02 559.85 C 933.06 559.84 933.1 559.84 933.13 559.84 L 933.24 559.84 C 933.96 559.84 934.53 560.03 934.96 560.42 M 928.62 560.23 C 929.06 560.65 929.28 561.22 929.28 561.94 C 929.28 562.66 929.02 563.24 928.51 563.68 C 927.99 564.12 927.31 564.34 926.47 564.34 C 925.73 564.34 925.03 564.19 924.38 563.9 L 924.38 563.03 C 925.19 563.29 925.88 563.42 926.46 563.42 C 927.01 563.42 927.43 563.29 927.73 563.04 C 928.02 562.79 928.17 562.43 928.17 561.96 C 928.17 561.44 928.03 561.06 927.75 560.83 C 927.48 560.6 927.03 560.48 926.4 560.48 C 925.95 560.48 925.39 560.52 924.71 560.59 L 924.71 559.87 L 924.92 556.61 L 928.9 556.61 L 928.9 557.5 L 925.83 557.5 L 925.69 559.72 C 926.09 559.65 926.45 559.61 926.77 559.61 C 927.56 559.61 928.17 559.82 928.62 560.23 M 936.82 568.23 C 934.05 568.73 931.63 569.86 930 570.78 C 928.37 569.86 925.95 568.73 923.18 568.23 C 922.4 568.09 918.52 567.28 918.52 565.04 C 918.52 564 918.89 563.31 919.61 562.08 C 920.46 560.6 921.53 558.77 921.53 556.13 C 921.53 554.25 921.03 552.44 920.06 550.75 C 920.17 550.61 920.29 550.47 920.4 550.32 C 921.85 551.04 923.36 551.41 924.89 551.41 C 926.76 551.41 928.47 550.92 930 549.95 C 931.52 550.92 933.24 551.41 935.11 551.41 C 936.64 551.41 938.15 551.04 939.6 550.32 C 939.71 550.47 939.83 550.61 939.94 550.75 C 938.97 552.44 938.47 554.25 938.47 556.13 C 938.47 558.77 939.54 560.6 940.39 562.08 C 941.11 563.31 941.48 564 941.48 565.04 C 941.48 567.28 937.6 568.09 936.82 568.23 M 939.61 556.13 C 939.61 554.33 940.12 552.61 941.12 551 C 941.25 550.8 941.24 550.53 941.08 550.34 C 940.79 549.99 940.49 549.61 940.19 549.24 C 940.01 549.02 939.71 548.97 939.47 549.1 C 938.06 549.88 936.6 550.27 935.11 550.27 C 933.32 550.27 931.75 549.79 930.32 548.8 C 930.13 548.66 929.87 548.66 929.68 548.8 C 928.25 549.79 926.68 550.27 924.89 550.27 C 923.4 550.27 921.94 549.88 920.53 549.1 C 920.29 548.97 919.99 549.02 919.81 549.24 C 919.51 549.61 919.21 549.99 918.92 550.34 C 918.76 550.53 918.75 550.8 918.88 551 C 919.88 552.61 920.39 554.33 920.39 556.13 C 920.39 558.47 919.41 560.15 918.62 561.51 C 917.85 562.83 917.38 563.71 917.38 565.04 C 917.38 568.11 921.67 569.12 922.98 569.36 C 925.75 569.85 928.17 571.03 929.71 571.93 C 929.8 571.98 929.9 572 930 572 C 930.1 572 930.2 571.98 930.29 571.93 C 931.83 571.03 934.25 569.85 937.02 569.36 C 938.33 569.12 942.62 568.11 942.62 565.04 C 942.62 563.71 942.15 562.83 941.38 561.51 C 940.59 560.15 939.61 558.47 939.61 556.13 M 937.41 571.53 C 933.91 572.16 930.98 574.04 930 574.73 C 929.02 574.04 926.09 572.16 922.59 571.53 C 915.71 570.29 915.18 566.25 915.18 565.04 C 915.18 563.05 915.96 561.7 916.71 560.4 C 917.43 559.16 918.18 557.87 918.18 556.13 C 918.18 553.38 916.59 551.44 915.81 550.65 C 916.63 549.65 918.71 547.12 919.74 545.79 C 921.29 547.26 923.1 548.06 924.89 548.06 C 926.87 548.06 928.51 547.25 930 545.53 C 931.49 547.25 933.13 548.06 935.11 548.06 C 936.9 548.06 938.71 547.26 940.26 545.79 C 941.29 547.12 943.37 549.65 944.19 550.65 C 943.41 551.44 941.82 553.38 941.82 556.13 C 941.82 557.87 942.57 559.16 943.29 560.4 C 944.04 561.7 944.82 563.05 944.82 565.04 C 944.82 566.25 944.29 570.29 937.41 571.53 M 944.27 559.83 C 943.57 558.61 942.96 557.56 942.96 556.13 C 942.96 553.12 945.31 551.17 945.33 551.15 C 945.45 551.05 945.52 550.91 945.54 550.76 C 945.55 550.61 945.51 550.46 945.41 550.34 C 945.37 550.3 941.64 545.77 940.78 544.59 C 940.68 544.45 940.52 544.37 940.35 544.36 C 940.18 544.35 940.02 544.41 939.9 544.54 C 938.47 546.07 936.77 546.92 935.11 546.92 C 933.29 546.92 931.85 546.11 930.45 544.28 C 930.24 544 929.76 544 929.55 544.28 C 928.15 546.11 926.71 546.92 924.89 546.92 C 923.23 546.92 921.53 546.07 920.1 544.54 C 919.98 544.41 919.82 544.34 919.65 544.36 C 919.48 544.37 919.32 544.45 919.22 544.59 C 918.36 545.77 914.63 550.3 914.59 550.34 C 914.49 550.46 914.45 550.61 914.46 550.76 C 914.48 550.91 914.55 551.05 914.67 551.15 C 914.69 551.17 917.04 553.12 917.04 556.13 C 917.04 557.56 916.43 558.61 915.73 559.83 C 914.93 561.19 914.04 562.74 914.04 565.04 C 914.04 568.87 917.16 571.71 922.39 572.65 C 926.33 573.36 929.62 575.86 929.65 575.88 C 929.75 575.96 929.88 576 930 576 C 930.12 576 930.24 575.96 930.35 575.88 C 930.38 575.86 933.66 573.36 937.61 572.65 C 942.84 571.71 945.96 568.87 945.96 565.04 C 945.96 562.74 945.07 561.19 944.27 559.83" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 990 540 L 1030 540 L 1030 580 L 990 580 Z" fill="url(#mx-gradient-f34482-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1008.6 550.18 L 1010.84 550.18 L 1010.84 549.05 L 1008.6 549.05 Z M 1004.67 550.18 L 1006.91 550.18 L 1006.91 549.05 L 1004.67 549.05 Z M 1000.74 550.18 L 1002.98 550.18 L 1002.98 549.05 L 1000.74 549.05 Z M 1024.15 566.09 C 1023.98 566.49 1023.62 566.79 1023.19 566.93 L 1023.19 563.76 C 1023.53 563.88 1023.83 564.1 1024.04 564.41 C 1024.36 564.9 1024.4 565.51 1024.15 566.09 Z M 995.85 566.09 C 995.6 565.51 995.64 564.9 995.96 564.41 C 996.17 564.1 996.47 563.88 996.81 563.76 L 996.81 566.93 C 996.38 566.79 996.02 566.49 995.85 566.09 Z M 1024.98 563.79 C 1024.56 563.16 1023.92 562.74 1023.19 562.59 L 1023.19 561.59 C 1023.19 559.63 1021.68 558.04 1019.82 558.04 L 1009.16 558.04 L 1009.16 559.16 L 1019.82 559.16 C 1021.06 559.16 1022.07 560.25 1022.07 561.59 L 1022.07 569.08 C 1022.07 570.42 1021.06 571.51 1019.82 571.51 L 1000.18 571.51 C 998.94 571.51 997.93 570.42 997.93 569.08 L 997.93 561.59 C 997.93 560.25 998.94 559.16 1000.18 559.16 L 1002.98 559.16 L 1002.98 558.04 L 1000.18 558.04 C 998.32 558.04 996.81 559.63 996.81 561.59 L 996.81 562.59 C 996.08 562.74 995.44 563.16 995.02 563.79 C 994.49 564.6 994.41 565.6 994.82 566.54 C 995.17 567.35 995.92 567.92 996.81 568.09 L 996.81 569.08 C 996.81 571.04 998.32 572.63 1000.18 572.63 L 1006.91 572.63 L 1006.91 576 L 1008.04 576 L 1008.04 572.63 L 1011.4 572.63 L 1011.4 576 L 1012.53 576 L 1012.53 572.63 L 1019.82 572.63 C 1021.68 572.63 1023.19 571.04 1023.19 569.08 L 1023.19 568.09 C 1024.08 567.92 1024.83 567.35 1025.18 566.54 C 1025.59 565.6 1025.51 564.6 1024.98 563.79 Z M 1005.23 565.33 C 1005.23 566.26 1004.47 567.02 1003.54 567.02 C 1002.62 567.02 1001.86 566.26 1001.86 565.33 C 1001.86 564.4 1002.62 563.65 1003.54 563.65 C 1004.47 563.65 1005.23 564.4 1005.23 565.33 Z M 1000.74 565.33 C 1000.74 566.88 1002 568.14 1003.54 568.14 C 1005.09 568.14 1006.35 566.88 1006.35 565.33 C 1006.35 563.79 1005.09 562.53 1003.54 562.53 C 1002 562.53 1000.74 563.79 1000.74 565.33 Z M 1014.77 565.33 C 1014.77 564.4 1015.53 563.65 1016.46 563.65 C 1017.38 563.65 1018.14 564.4 1018.14 565.33 C 1018.14 566.26 1017.38 567.02 1016.46 567.02 C 1015.53 567.02 1014.77 566.26 1014.77 565.33 Z M 1019.26 565.33 C 1019.26 563.79 1018 562.53 1016.46 562.53 C 1014.91 562.53 1013.65 563.79 1013.65 565.33 C 1013.65 566.88 1014.91 568.14 1016.46 568.14 C 1018 568.14 1019.26 566.88 1019.26 565.33 Z M 998.49 545.6 C 998.49 545.34 998.71 545.12 998.97 545.12 L 1013.09 545.12 L 1013.09 554.17 C 1013.09 554.44 1012.86 554.67 1012.59 554.67 L 1006.91 554.67 C 1006.6 554.67 1006.35 554.92 1006.35 555.23 L 1006.35 558.14 L 1003.87 554.89 C 1003.76 554.75 1003.6 554.67 1003.42 554.67 L 998.97 554.67 C 998.71 554.67 998.49 554.45 998.49 554.19 Z M 998.97 555.79 L 1003.15 555.79 L 1006.47 560.14 C 1006.57 560.28 1006.74 560.36 1006.91 560.36 C 1006.97 560.36 1007.03 560.35 1007.09 560.33 C 1007.32 560.26 1007.47 560.04 1007.47 559.8 L 1007.47 555.79 L 1012.59 555.79 C 1013.48 555.79 1014.21 555.06 1014.21 554.17 L 1014.21 544.86 C 1014.21 544.38 1013.83 544 1013.35 544 L 998.97 544 C 998.09 544 997.37 544.72 997.37 545.6 L 997.37 554.19 C 997.37 555.07 998.09 555.79 998.97 555.79 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="870" y="540" width="160" height="40" fill="none" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><rect x="870" y="460" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="949.5" y="485">own deploy lifecycle</text></g></g></svg>