cyberia 2.8.885

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 (525) hide show
  1. package/.dockerignore +15 -0
  2. package/.env.development +45 -0
  3. package/.env.production +50 -0
  4. package/.env.test +45 -0
  5. package/.github/workflows/engine-cyberia.cd.yml +31 -0
  6. package/.github/workflows/engine-cyberia.ci.yml +60 -0
  7. package/.github/workflows/ghpkg.ci.yml +87 -0
  8. package/.github/workflows/npmpkg.ci.yml +72 -0
  9. package/.github/workflows/publish.ci.yml +84 -0
  10. package/.github/workflows/publish.cyberia.ci.yml +84 -0
  11. package/.github/workflows/pwa-microservices-template-page.cd.yml +72 -0
  12. package/.github/workflows/pwa-microservices-template-test.ci.yml +33 -0
  13. package/.github/workflows/release.cd.yml +37 -0
  14. package/.nycrc +9 -0
  15. package/.prettierignore +13 -0
  16. package/.prettierrc +9 -0
  17. package/.vscode/extensions.json +51 -0
  18. package/.vscode/settings.json +87 -0
  19. package/AUTHORS.md +21 -0
  20. package/CHANGELOG.md +205 -0
  21. package/Dockerfile +28 -0
  22. package/LICENSE +21 -0
  23. package/README.md +85 -0
  24. package/bin/build.js +209 -0
  25. package/bin/cron.js +47 -0
  26. package/bin/cyberia.js +145 -0
  27. package/bin/db.js +199 -0
  28. package/bin/deploy.js +1293 -0
  29. package/bin/file.js +197 -0
  30. package/bin/hwt.js +49 -0
  31. package/bin/index.js +145 -0
  32. package/bin/ssl.js +63 -0
  33. package/bin/util.js +80 -0
  34. package/bin/vs.js +74 -0
  35. package/cli.md +714 -0
  36. package/conf.js +204 -0
  37. package/deployment.yaml +138 -0
  38. package/jsconfig.json +7 -0
  39. package/jsdoc.json +32 -0
  40. package/manifests/deployment/adminer/deployment.yaml +32 -0
  41. package/manifests/deployment/adminer/kustomization.yaml +7 -0
  42. package/manifests/deployment/adminer/service.yaml +13 -0
  43. package/manifests/deployment/dd-default-development/deployment.yaml +167 -0
  44. package/manifests/deployment/dd-default-development/proxy.yaml +46 -0
  45. package/manifests/deployment/dd-test-development/deployment.yaml +174 -0
  46. package/manifests/deployment/dd-test-development/proxy.yaml +51 -0
  47. package/manifests/deployment/fastapi/backend-deployment.yml +120 -0
  48. package/manifests/deployment/fastapi/backend-service.yml +19 -0
  49. package/manifests/deployment/fastapi/frontend-deployment.yml +54 -0
  50. package/manifests/deployment/fastapi/frontend-service.yml +15 -0
  51. package/manifests/deployment/fastapi/initial_data.sh +56 -0
  52. package/manifests/deployment/kafka/deployment.yaml +69 -0
  53. package/manifests/deployment/mongo-express/deployment.yaml +60 -0
  54. package/manifests/deployment/phpmyadmin/deployment.yaml +54 -0
  55. package/manifests/deployment/spark/spark-pi-py.yaml +21 -0
  56. package/manifests/deployment/tensorflow/tf-gpu-test.yaml +65 -0
  57. package/manifests/envoy-service-nodeport.yaml +23 -0
  58. package/manifests/grafana/deployment.yaml +57 -0
  59. package/manifests/grafana/kustomization.yaml +7 -0
  60. package/manifests/grafana/pvc.yaml +12 -0
  61. package/manifests/grafana/service.yaml +14 -0
  62. package/manifests/kind-config-dev.yaml +12 -0
  63. package/manifests/kind-config.yaml +12 -0
  64. package/manifests/kubeadm-calico-config.yaml +119 -0
  65. package/manifests/kubelet-config.yaml +65 -0
  66. package/manifests/letsencrypt-prod.yaml +15 -0
  67. package/manifests/lxd/lxd-admin-profile.yaml +17 -0
  68. package/manifests/lxd/lxd-preseed.yaml +30 -0
  69. package/manifests/lxd/underpost-setup.sh +163 -0
  70. package/manifests/mariadb/config.yaml +10 -0
  71. package/manifests/mariadb/kustomization.yaml +9 -0
  72. package/manifests/mariadb/pv.yaml +12 -0
  73. package/manifests/mariadb/pvc.yaml +10 -0
  74. package/manifests/mariadb/secret.yaml +8 -0
  75. package/manifests/mariadb/service.yaml +10 -0
  76. package/manifests/mariadb/statefulset.yaml +56 -0
  77. package/manifests/mariadb/storage-class.yaml +10 -0
  78. package/manifests/mongodb/backup-access.yaml +16 -0
  79. package/manifests/mongodb/backup-cronjob.yaml +42 -0
  80. package/manifests/mongodb/backup-pv-pvc.yaml +22 -0
  81. package/manifests/mongodb/configmap.yaml +26 -0
  82. package/manifests/mongodb/headless-service.yaml +10 -0
  83. package/manifests/mongodb/kustomization.yaml +11 -0
  84. package/manifests/mongodb/pv-pvc.yaml +23 -0
  85. package/manifests/mongodb/statefulset.yaml +126 -0
  86. package/manifests/mongodb/storage-class.yaml +9 -0
  87. package/manifests/mongodb-4.4/kustomization.yaml +7 -0
  88. package/manifests/mongodb-4.4/pv-pvc.yaml +23 -0
  89. package/manifests/mongodb-4.4/service-deployment.yaml +63 -0
  90. package/manifests/mysql/kustomization.yaml +7 -0
  91. package/manifests/mysql/pv-pvc.yaml +27 -0
  92. package/manifests/mysql/statefulset.yaml +55 -0
  93. package/manifests/postgresql/configmap.yaml +9 -0
  94. package/manifests/postgresql/kustomization.yaml +10 -0
  95. package/manifests/postgresql/pv.yaml +15 -0
  96. package/manifests/postgresql/pvc.yaml +13 -0
  97. package/manifests/postgresql/service.yaml +10 -0
  98. package/manifests/postgresql/statefulset.yaml +37 -0
  99. package/manifests/prometheus/deployment.yaml +82 -0
  100. package/manifests/valkey/kustomization.yaml +7 -0
  101. package/manifests/valkey/service.yaml +11 -0
  102. package/manifests/valkey/statefulset.yaml +38 -0
  103. package/nodemon.json +6 -0
  104. package/package.json +118 -0
  105. package/proxy.yaml +35 -0
  106. package/scripts/device-scan.sh +43 -0
  107. package/scripts/gpu-diag.sh +19 -0
  108. package/scripts/maas-setup.sh +120 -0
  109. package/scripts/nat-iptables.sh +26 -0
  110. package/scripts/nvim.sh +91 -0
  111. package/scripts/snap-clean.sh +26 -0
  112. package/scripts/ssh-cluster-info.sh +14 -0
  113. package/scripts/ssl.sh +164 -0
  114. package/src/api/blockchain/blockchain.controller.js +51 -0
  115. package/src/api/blockchain/blockchain.model.js +90 -0
  116. package/src/api/blockchain/blockchain.router.js +21 -0
  117. package/src/api/blockchain/blockchain.service.js +24 -0
  118. package/src/api/core/core.controller.js +69 -0
  119. package/src/api/core/core.model.js +11 -0
  120. package/src/api/core/core.router.js +24 -0
  121. package/src/api/core/core.service.js +35 -0
  122. package/src/api/crypto/crypto.controller.js +51 -0
  123. package/src/api/crypto/crypto.model.js +23 -0
  124. package/src/api/crypto/crypto.router.js +20 -0
  125. package/src/api/crypto/crypto.service.js +64 -0
  126. package/src/api/default/default.controller.js +74 -0
  127. package/src/api/default/default.model.js +20 -0
  128. package/src/api/default/default.router.js +27 -0
  129. package/src/api/default/default.service.js +40 -0
  130. package/src/api/document/document.controller.js +66 -0
  131. package/src/api/document/document.model.js +51 -0
  132. package/src/api/document/document.router.js +24 -0
  133. package/src/api/document/document.service.js +133 -0
  134. package/src/api/file/file.controller.js +67 -0
  135. package/src/api/file/file.model.js +19 -0
  136. package/src/api/file/file.router.js +22 -0
  137. package/src/api/file/file.service.js +100 -0
  138. package/src/api/instance/instance.controller.js +69 -0
  139. package/src/api/instance/instance.model.js +40 -0
  140. package/src/api/instance/instance.router.js +34 -0
  141. package/src/api/instance/instance.service.js +70 -0
  142. package/src/api/ipfs/ipfs.controller.js +51 -0
  143. package/src/api/ipfs/ipfs.model.js +17 -0
  144. package/src/api/ipfs/ipfs.router.js +20 -0
  145. package/src/api/ipfs/ipfs.service.js +25 -0
  146. package/src/api/object-layer/README.md +85 -0
  147. package/src/api/object-layer/object-layer.controller.js +69 -0
  148. package/src/api/object-layer/object-layer.model.js +181 -0
  149. package/src/api/object-layer/object-layer.router.js +29 -0
  150. package/src/api/object-layer/object-layer.service.js +49 -0
  151. package/src/api/test/test.controller.js +59 -0
  152. package/src/api/test/test.model.js +14 -0
  153. package/src/api/test/test.router.js +21 -0
  154. package/src/api/test/test.service.js +35 -0
  155. package/src/api/user/postman_collection.json +216 -0
  156. package/src/api/user/user.build.js +16 -0
  157. package/src/api/user/user.controller.js +35 -0
  158. package/src/api/user/user.model.js +100 -0
  159. package/src/api/user/user.router.js +400 -0
  160. package/src/api/user/user.service.js +500 -0
  161. package/src/api.js +23 -0
  162. package/src/cli/baremetal.js +1310 -0
  163. package/src/cli/cloud-init.js +548 -0
  164. package/src/cli/cluster.js +834 -0
  165. package/src/cli/cron.js +95 -0
  166. package/src/cli/db.js +414 -0
  167. package/src/cli/deploy.js +661 -0
  168. package/src/cli/env.js +101 -0
  169. package/src/cli/fs.js +256 -0
  170. package/src/cli/image.js +156 -0
  171. package/src/cli/index.js +436 -0
  172. package/src/cli/lxd.js +402 -0
  173. package/src/cli/monitor.js +260 -0
  174. package/src/cli/repository.js +274 -0
  175. package/src/cli/run.js +728 -0
  176. package/src/cli/script.js +85 -0
  177. package/src/cli/secrets.js +71 -0
  178. package/src/cli/ssh.js +46 -0
  179. package/src/cli/test.js +159 -0
  180. package/src/client/Cyberia.index.js +50 -0
  181. package/src/client/CyberiaAdmin.index.js +34 -0
  182. package/src/client/CyberiaPortal.index.js +36 -0
  183. package/src/client/Default.index.js +84 -0
  184. package/src/client/components/core/404.js +20 -0
  185. package/src/client/components/core/500.js +20 -0
  186. package/src/client/components/core/Account.js +326 -0
  187. package/src/client/components/core/AgGrid.js +191 -0
  188. package/src/client/components/core/Alert.js +77 -0
  189. package/src/client/components/core/Auth.js +342 -0
  190. package/src/client/components/core/Badge.js +32 -0
  191. package/src/client/components/core/Blockchain.js +41 -0
  192. package/src/client/components/core/Blog.js +9 -0
  193. package/src/client/components/core/BtnIcon.js +111 -0
  194. package/src/client/components/core/CalendarCore.js +464 -0
  195. package/src/client/components/core/Chat.js +64 -0
  196. package/src/client/components/core/ColorPalette.js +5267 -0
  197. package/src/client/components/core/CommonJs.js +1010 -0
  198. package/src/client/components/core/Content.js +196 -0
  199. package/src/client/components/core/Css.js +1099 -0
  200. package/src/client/components/core/CssCore.js +882 -0
  201. package/src/client/components/core/D3Chart.js +44 -0
  202. package/src/client/components/core/Docs.js +376 -0
  203. package/src/client/components/core/DropDown.js +223 -0
  204. package/src/client/components/core/EventsUI.js +133 -0
  205. package/src/client/components/core/FileExplorer.js +707 -0
  206. package/src/client/components/core/FullScreen.js +36 -0
  207. package/src/client/components/core/Input.js +383 -0
  208. package/src/client/components/core/JoyStick.js +80 -0
  209. package/src/client/components/core/Keyboard.js +73 -0
  210. package/src/client/components/core/LoadingAnimation.js +159 -0
  211. package/src/client/components/core/LogIn.js +190 -0
  212. package/src/client/components/core/LogOut.js +63 -0
  213. package/src/client/components/core/Logger.js +29 -0
  214. package/src/client/components/core/Modal.js +2494 -0
  215. package/src/client/components/core/NotificationManager.js +84 -0
  216. package/src/client/components/core/ObjectLayerEngine.js +1229 -0
  217. package/src/client/components/core/ObjectLayerEngineModal.js +443 -0
  218. package/src/client/components/core/Pagination.js +207 -0
  219. package/src/client/components/core/Panel.js +772 -0
  220. package/src/client/components/core/PanelForm.js +627 -0
  221. package/src/client/components/core/Polyhedron.js +162 -0
  222. package/src/client/components/core/Recover.js +207 -0
  223. package/src/client/components/core/Responsive.js +82 -0
  224. package/src/client/components/core/RichText.js +43 -0
  225. package/src/client/components/core/Router.js +317 -0
  226. package/src/client/components/core/Scroll.js +76 -0
  227. package/src/client/components/core/SignUp.js +125 -0
  228. package/src/client/components/core/SocketIo.js +74 -0
  229. package/src/client/components/core/Stream.js +113 -0
  230. package/src/client/components/core/ToggleSwitch.js +101 -0
  231. package/src/client/components/core/ToolTip.js +90 -0
  232. package/src/client/components/core/Translate.js +522 -0
  233. package/src/client/components/core/Validator.js +115 -0
  234. package/src/client/components/core/VanillaJs.js +423 -0
  235. package/src/client/components/core/Wallet.js +106 -0
  236. package/src/client/components/core/WebComponent.js +44 -0
  237. package/src/client/components/core/Webhook.js +25 -0
  238. package/src/client/components/core/Worker.js +371 -0
  239. package/src/client/components/core/windowGetDimensions.js +269 -0
  240. package/src/client/components/cyberia/BagCyberia.js +1253 -0
  241. package/src/client/components/cyberia/BiomeCyberia.js +130 -0
  242. package/src/client/components/cyberia/CharacterCyberia.js +321 -0
  243. package/src/client/components/cyberia/CommonCyberia.js +1834 -0
  244. package/src/client/components/cyberia/CssCyberia.js +816 -0
  245. package/src/client/components/cyberia/ElementPreviewCyberia.js +183 -0
  246. package/src/client/components/cyberia/ElementsCyberia.js +146 -0
  247. package/src/client/components/cyberia/InteractionPanelCyberia.js +1043 -0
  248. package/src/client/components/cyberia/JoyStickCyberia.js +53 -0
  249. package/src/client/components/cyberia/LogInCyberia.js +68 -0
  250. package/src/client/components/cyberia/LogOutCyberia.js +24 -0
  251. package/src/client/components/cyberia/MainUserCyberia.js +424 -0
  252. package/src/client/components/cyberia/MapCyberia.js +160 -0
  253. package/src/client/components/cyberia/MatrixCyberia.js +147 -0
  254. package/src/client/components/cyberia/MenuCyberia.js +575 -0
  255. package/src/client/components/cyberia/PixiCyberia.js +1639 -0
  256. package/src/client/components/cyberia/PointAndClickMovementCyberia.js +146 -0
  257. package/src/client/components/cyberia/QuestCyberia.js +1420 -0
  258. package/src/client/components/cyberia/RoutesCyberia.js +47 -0
  259. package/src/client/components/cyberia/SettingsCyberia.js +16 -0
  260. package/src/client/components/cyberia/SignUpCyberia.js +14 -0
  261. package/src/client/components/cyberia/SkillCyberia.js +124 -0
  262. package/src/client/components/cyberia/SocketIoCyberia.js +211 -0
  263. package/src/client/components/cyberia/TileCyberia.js +685 -0
  264. package/src/client/components/cyberia/TranslateCyberia.js +96 -0
  265. package/src/client/components/cyberia/UniverseCyberia.js +14 -0
  266. package/src/client/components/cyberia/WebhookCyberia.js +13 -0
  267. package/src/client/components/cyberia/WikiCyberia.js +144 -0
  268. package/src/client/components/cyberia/WorldCyberia.js +680 -0
  269. package/src/client/components/cyberia-admin/BiomeCyberiaAdmin.js +978 -0
  270. package/src/client/components/cyberia-admin/CommonCyberiaAdmin.js +29 -0
  271. package/src/client/components/cyberia-admin/CssCyberiaAdmin.js +15 -0
  272. package/src/client/components/cyberia-admin/ElementsCyberiaAdmin.js +38 -0
  273. package/src/client/components/cyberia-admin/InstanceEngineCyberiaAdmin.js +180 -0
  274. package/src/client/components/cyberia-admin/LogInCyberiaAdmin.js +34 -0
  275. package/src/client/components/cyberia-admin/LogOutCyberiaAdmin.js +24 -0
  276. package/src/client/components/cyberia-admin/MenuCyberiaAdmin.js +660 -0
  277. package/src/client/components/cyberia-admin/RoutesCyberiaAdmin.js +57 -0
  278. package/src/client/components/cyberia-admin/ServerCyberiaAdmin.js +129 -0
  279. package/src/client/components/cyberia-admin/SettingsCyberiaAdmin.js +16 -0
  280. package/src/client/components/cyberia-admin/SignUpCyberiaAdmin.js +11 -0
  281. package/src/client/components/cyberia-admin/SocketIoCyberiaAdmin.js +53 -0
  282. package/src/client/components/cyberia-admin/TranslateCyberiaAdmin.js +7 -0
  283. package/src/client/components/cyberia-biome/CityCyberiaBiome.js +209 -0
  284. package/src/client/components/cyberia-biome/CityInteriorCyberiaBiome.js +253 -0
  285. package/src/client/components/cyberia-biome/ColorChaosCyberiaBiome.js +26 -0
  286. package/src/client/components/cyberia-biome/ForestCyberiaBiome.js +191 -0
  287. package/src/client/components/cyberia-biome/GridBaseCyberiaBiome.js +364 -0
  288. package/src/client/components/cyberia-biome/SeedCityCyberiaBiome.js +347 -0
  289. package/src/client/components/cyberia-biome/ShopCyberiaBiome.js +12 -0
  290. package/src/client/components/cyberia-biome/SpaceCyberiaBiome.js +58 -0
  291. package/src/client/components/cyberia-portal/CommonCyberiaPortal.js +29 -0
  292. package/src/client/components/cyberia-portal/CssCyberiaPortal.js +132 -0
  293. package/src/client/components/cyberia-portal/ElementsCyberiaPortal.js +38 -0
  294. package/src/client/components/cyberia-portal/LogInCyberiaPortal.js +18 -0
  295. package/src/client/components/cyberia-portal/LogOutCyberiaPortal.js +12 -0
  296. package/src/client/components/cyberia-portal/MenuCyberiaPortal.js +487 -0
  297. package/src/client/components/cyberia-portal/RoutesCyberiaPortal.js +45 -0
  298. package/src/client/components/cyberia-portal/ServerCyberiaPortal.js +136 -0
  299. package/src/client/components/cyberia-portal/SettingsCyberiaPortal.js +16 -0
  300. package/src/client/components/cyberia-portal/SignUpCyberiaPortal.js +11 -0
  301. package/src/client/components/cyberia-portal/SocketIoCyberiaPortal.js +52 -0
  302. package/src/client/components/cyberia-portal/TranslateCyberiaPortal.js +12 -0
  303. package/src/client/components/default/CommonDefault.js +29 -0
  304. package/src/client/components/default/CssDefault.js +27 -0
  305. package/src/client/components/default/ElementsDefault.js +38 -0
  306. package/src/client/components/default/LogInDefault.js +14 -0
  307. package/src/client/components/default/LogOutDefault.js +10 -0
  308. package/src/client/components/default/MenuDefault.js +743 -0
  309. package/src/client/components/default/RoutesDefault.js +48 -0
  310. package/src/client/components/default/SettingsDefault.js +16 -0
  311. package/src/client/components/default/SignUpDefault.js +9 -0
  312. package/src/client/components/default/SocketIoDefault.js +54 -0
  313. package/src/client/components/default/TranslateDefault.js +7 -0
  314. package/src/client/public/default/android-chrome-144x144.png +0 -0
  315. package/src/client/public/default/android-chrome-192x192.png +0 -0
  316. package/src/client/public/default/android-chrome-256x256.png +0 -0
  317. package/src/client/public/default/android-chrome-36x36.png +0 -0
  318. package/src/client/public/default/android-chrome-384x384.png +0 -0
  319. package/src/client/public/default/android-chrome-48x48.png +0 -0
  320. package/src/client/public/default/android-chrome-512x512.png +0 -0
  321. package/src/client/public/default/android-chrome-72x72.png +0 -0
  322. package/src/client/public/default/android-chrome-96x96.png +0 -0
  323. package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
  324. package/src/client/public/default/apple-touch-icon-114x114-precomposed.png +0 -0
  325. package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
  326. package/src/client/public/default/apple-touch-icon-120x120-precomposed.png +0 -0
  327. package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
  328. package/src/client/public/default/apple-touch-icon-144x144-precomposed.png +0 -0
  329. package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
  330. package/src/client/public/default/apple-touch-icon-152x152-precomposed.png +0 -0
  331. package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
  332. package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
  333. package/src/client/public/default/apple-touch-icon-180x180-precomposed.png +0 -0
  334. package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
  335. package/src/client/public/default/apple-touch-icon-57x57-precomposed.png +0 -0
  336. package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
  337. package/src/client/public/default/apple-touch-icon-60x60-precomposed.png +0 -0
  338. package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
  339. package/src/client/public/default/apple-touch-icon-72x72-precomposed.png +0 -0
  340. package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
  341. package/src/client/public/default/apple-touch-icon-76x76-precomposed.png +0 -0
  342. package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
  343. package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
  344. package/src/client/public/default/apple-touch-icon.png +0 -0
  345. package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
  346. package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
  347. package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
  348. package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
  349. package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
  350. package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
  351. package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
  352. package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
  353. package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
  354. package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
  355. package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
  356. package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
  357. package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
  358. package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
  359. package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
  360. package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
  361. package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
  362. package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
  363. package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
  364. package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
  365. package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
  366. package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
  367. package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
  368. package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
  369. package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
  370. package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
  371. package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
  372. package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
  373. package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
  374. package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
  375. package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
  376. package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
  377. package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
  378. package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
  379. package/src/client/public/default/assets/background/dark.jpg +0 -0
  380. package/src/client/public/default/assets/background/dark.svg +557 -0
  381. package/src/client/public/default/assets/background/white.jpg +0 -0
  382. package/src/client/public/default/assets/background/white0-min.jpg +0 -0
  383. package/src/client/public/default/assets/background/white0.jpg +0 -0
  384. package/src/client/public/default/assets/logo/base-icon.png +0 -0
  385. package/src/client/public/default/assets/logo/underpost.gif +0 -0
  386. package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
  387. package/src/client/public/default/assets/mailer/api-user-default-avatar.png +0 -0
  388. package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
  389. package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
  390. package/src/client/public/default/browserconfig.xml +12 -0
  391. package/src/client/public/default/favicon-16x16.png +0 -0
  392. package/src/client/public/default/favicon-32x32.png +0 -0
  393. package/src/client/public/default/favicon-48x48.png +0 -0
  394. package/src/client/public/default/favicon.ico +0 -0
  395. package/src/client/public/default/manifest.webmanifest +69 -0
  396. package/src/client/public/default/mstile-144x144.png +0 -0
  397. package/src/client/public/default/mstile-150x150.png +0 -0
  398. package/src/client/public/default/mstile-310x150.png +0 -0
  399. package/src/client/public/default/mstile-310x310.png +0 -0
  400. package/src/client/public/default/mstile-70x70.png +0 -0
  401. package/src/client/public/default/plantuml/client-conf.svg +1 -0
  402. package/src/client/public/default/plantuml/client-schema.svg +1 -0
  403. package/src/client/public/default/plantuml/cron-conf.svg +1 -0
  404. package/src/client/public/default/plantuml/cron-schema.svg +1 -0
  405. package/src/client/public/default/plantuml/server-conf.svg +1 -0
  406. package/src/client/public/default/plantuml/server-schema.svg +1 -0
  407. package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
  408. package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
  409. package/src/client/public/default/safari-pinned-tab.svg +24 -0
  410. package/src/client/public/default/site.webmanifest +69 -0
  411. package/src/client/public/default/sitemap +148 -0
  412. package/src/client/public/default/yandex-browser-50x50.png +0 -0
  413. package/src/client/public/default/yandex-browser-manifest.json +9 -0
  414. package/src/client/public/doc/favicon.ico +0 -0
  415. package/src/client/public/doc/sitemap +148 -0
  416. package/src/client/public/test/favicon.ico +0 -0
  417. package/src/client/public/test/sitemap +148 -0
  418. package/src/client/services/blockchain/blockchain.service.js +73 -0
  419. package/src/client/services/core/core.service.js +165 -0
  420. package/src/client/services/crypto/crypto.service.js +73 -0
  421. package/src/client/services/default/default.management.js +450 -0
  422. package/src/client/services/default/default.service.js +98 -0
  423. package/src/client/services/document/document.service.js +97 -0
  424. package/src/client/services/file/file.service.js +72 -0
  425. package/src/client/services/instance/instance.management.js +78 -0
  426. package/src/client/services/instance/instance.service.js +97 -0
  427. package/src/client/services/ipfs/ipfs.service.js +73 -0
  428. package/src/client/services/object-layer/object-layer.service.js +93 -0
  429. package/src/client/services/test/test.service.js +73 -0
  430. package/src/client/services/user/user.management.js +56 -0
  431. package/src/client/services/user/user.service.js +108 -0
  432. package/src/client/ssr/Render.js +237 -0
  433. package/src/client/ssr/body/404.js +73 -0
  434. package/src/client/ssr/body/500.js +72 -0
  435. package/src/client/ssr/body/CacheControl.js +114 -0
  436. package/src/client/ssr/body/CyberiaDefaultSplashScreen.js +90 -0
  437. package/src/client/ssr/body/CyberiaSplashScreenLore.js +424 -0
  438. package/src/client/ssr/body/DefaultSplashScreen.js +90 -0
  439. package/src/client/ssr/email/DefaultRecoverEmail.js +21 -0
  440. package/src/client/ssr/email/DefaultVerifyEmail.js +17 -0
  441. package/src/client/ssr/head/Css.js +241 -0
  442. package/src/client/ssr/head/CyberiaAdminScripts.js +6 -0
  443. package/src/client/ssr/head/CyberiaPortalScripts.js +6 -0
  444. package/src/client/ssr/head/CyberiaScripts.js +6 -0
  445. package/src/client/ssr/head/DefaultScripts.js +6 -0
  446. package/src/client/ssr/head/Microdata.js +11 -0
  447. package/src/client/ssr/head/Production.js +1 -0
  448. package/src/client/ssr/head/Pwa.js +146 -0
  449. package/src/client/ssr/head/Seo.js +15 -0
  450. package/src/client/ssr/mailer/DefaultRecoverEmail.js +21 -0
  451. package/src/client/ssr/mailer/DefaultVerifyEmail.js +17 -0
  452. package/src/client/ssr/offline/Maintenance.js +63 -0
  453. package/src/client/ssr/offline/NoNetworkConnection.js +67 -0
  454. package/src/client/ssr/pages/404.js +12 -0
  455. package/src/client/ssr/pages/500.js +12 -0
  456. package/src/client/ssr/pages/Test.js +198 -0
  457. package/src/client/ssr/pages/maintenance.js +14 -0
  458. package/src/client/ssr/pages/offline.js +21 -0
  459. package/src/client/sw/default.sw.js +108 -0
  460. package/src/client/sw/template.sw.js +84 -0
  461. package/src/client.build.js +22 -0
  462. package/src/client.dev.js +24 -0
  463. package/src/db/DataBaseProvider.js +98 -0
  464. package/src/db/mariadb/MariaDB.js +66 -0
  465. package/src/db/mongo/MongooseDB.js +70 -0
  466. package/src/index.js +198 -0
  467. package/src/mailer/EmailRender.js +116 -0
  468. package/src/mailer/MailerProvider.js +213 -0
  469. package/src/monitor.js +24 -0
  470. package/src/proxy.js +22 -0
  471. package/src/runtime/express/Express.js +256 -0
  472. package/src/runtime/lampp/Dockerfile +50 -0
  473. package/src/runtime/lampp/Lampp.js +343 -0
  474. package/src/server/auth.js +689 -0
  475. package/src/server/backup.js +96 -0
  476. package/src/server/client-build-docs.js +205 -0
  477. package/src/server/client-build-live.js +109 -0
  478. package/src/server/client-build.js +690 -0
  479. package/src/server/client-dev-server.js +87 -0
  480. package/src/server/client-formatted.js +87 -0
  481. package/src/server/client-icons.js +108 -0
  482. package/src/server/conf.js +1071 -0
  483. package/src/server/crypto.js +210 -0
  484. package/src/server/dns.js +276 -0
  485. package/src/server/downloader.js +74 -0
  486. package/src/server/json-schema.js +77 -0
  487. package/src/server/logger.js +197 -0
  488. package/src/server/network.js +72 -0
  489. package/src/server/object-layer.js +294 -0
  490. package/src/server/peer.js +69 -0
  491. package/src/server/process.js +171 -0
  492. package/src/server/proxy.js +110 -0
  493. package/src/server/runtime.js +170 -0
  494. package/src/server/ssr.js +127 -0
  495. package/src/server/start.js +161 -0
  496. package/src/server/tls.js +251 -0
  497. package/src/server/valkey.js +293 -0
  498. package/src/server.js +25 -0
  499. package/src/ws/IoInterface.js +139 -0
  500. package/src/ws/IoServer.js +88 -0
  501. package/src/ws/core/channels/core.ws.chat.js +23 -0
  502. package/src/ws/core/channels/core.ws.mailer.js +35 -0
  503. package/src/ws/core/channels/core.ws.stream.js +31 -0
  504. package/src/ws/core/core.ws.connection.js +62 -0
  505. package/src/ws/core/core.ws.emit.js +53 -0
  506. package/src/ws/core/core.ws.server.js +76 -0
  507. package/src/ws/core/management/core.ws.chat.js +8 -0
  508. package/src/ws/core/management/core.ws.mailer.js +16 -0
  509. package/src/ws/core/management/core.ws.stream.js +8 -0
  510. package/src/ws/cyberia/channels/cyberia.ws.bot.js +56 -0
  511. package/src/ws/cyberia/channels/cyberia.ws.skill.js +51 -0
  512. package/src/ws/cyberia/channels/cyberia.ws.user.js +437 -0
  513. package/src/ws/cyberia/cyberia.ws.connection.js +36 -0
  514. package/src/ws/cyberia/cyberia.ws.emit.js +14 -0
  515. package/src/ws/cyberia/cyberia.ws.server.js +67 -0
  516. package/src/ws/cyberia/management/cyberia.ws.bot.js +669 -0
  517. package/src/ws/cyberia/management/cyberia.ws.skill.js +441 -0
  518. package/src/ws/cyberia/management/cyberia.ws.user.js +188 -0
  519. package/src/ws/default/channels/default.ws.main.js +16 -0
  520. package/src/ws/default/default.ws.connection.js +22 -0
  521. package/src/ws/default/default.ws.emit.js +14 -0
  522. package/src/ws/default/default.ws.server.js +20 -0
  523. package/src/ws/default/management/default.ws.main.js +8 -0
  524. package/test/api.test.js +53 -0
  525. package/test/crypto.test.js +117 -0
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="1013px" preserveAspectRatio="none" style="width:2023px;height:1013px;background:#FFFFFF;" version="1.1" viewBox="0 0 2023 1013" width="2023px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="371.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="386.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="386.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="371.5" y2="391.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="391.7969" y2="391.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="15" y="406.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="406.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="391.7969" y2="412.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="412.0938" y2="412.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="427.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="427.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="412.0938" y2="432.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="371.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="263.5" y="380"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="263.5" y="380"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="165" x="193" y="414.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="198" y="429.4951">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="341" y="429.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="336" x2="336" y1="414.5" y2="434.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="193" x2="358" y1="434.7969" y2="434.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="133" x="198" y="449.792">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="341" y="449.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="336" x2="336" y1="434.7969" y2="455.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="165" x="193" y="414.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="395" y="351.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="400" y="366.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="493" y="366.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="351.5" y2="371.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="395" x2="541" y1="371.7969" y2="371.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="400" y="386.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="493" y="386.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="371.7969" y2="392.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="395" x2="541" y1="392.0938" y2="392.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="400" y="407.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="493" y="407.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="392.0938" y2="412.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="395" y="351.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="584.5" y="358"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="584.5" y="358"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="578" y="392"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="583" y="406.9951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="598" y="406.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="593" x2="593" y1="392" y2="412.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="578" y="392"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="652" y="268.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="657" y="283.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="750" y="283.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="268.5" y2="288.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="652" x2="798" y1="288.7969" y2="288.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="657" y="303.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="303.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="288.7969" y2="309.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="652" x2="798" y1="309.0938" y2="309.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="657" y="324.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="324.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="309.0938" y2="329.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="652" y="268.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="883" y="143"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="883" y="143"/><rect fill="#F1F1F1" height="284.1563" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="120" x="835" y="177"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="840" y="191.9951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="191.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="177" y2="197.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="197.2969" y2="197.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="840" y="212.292">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="212.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="197.2969" y2="217.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="217.5938" y2="217.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="840" y="232.5889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="232.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="217.5938" y2="237.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="237.8906" y2="237.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="840" y="252.8857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="252.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="237.8906" y2="258.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="258.1875" y2="258.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="840" y="273.1826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="273.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="258.1875" y2="278.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="278.4844" y2="278.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="80" x="840" y="293.4795">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="293.4795">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="278.4844" y2="298.7813"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="298.7813" y2="298.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="840" y="313.7764">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="313.7764">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="298.7813" y2="319.0781"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="319.0781" y2="319.0781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="76" x="840" y="334.0732">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="334.0732">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="319.0781" y2="339.375"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="339.375" y2="339.375"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="840" y="354.3701">offlineBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="354.3701">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="339.375" y2="359.6719"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="359.6719" y2="359.6719"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="23" x="840" y="374.667">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="374.667">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="359.6719" y2="379.9688"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="379.9688" y2="379.9688"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="840" y="394.9639">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="394.9639">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="379.9688" y2="400.2656"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="400.2656" y2="400.2656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="840" y="415.2607">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="415.2607">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="400.2656" y2="420.5625"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="420.5625" y2="420.5625"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="20" x="840" y="435.5576">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="435.5576">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="420.5625" y2="440.8594"/><line style="stroke:#000000;stroke-width:1.0;" x1="835" x2="955" y1="440.8594" y2="440.8594"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="840" y="455.8545">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="938" y="455.8545">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="933" x2="933" y1="440.8594" y2="461.1563"/><rect fill="none" height="284.1563" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="120" x="835" y="177"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="24.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="10" y2="30.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="48"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="62.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="62.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="48" y2="68.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="48"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1017" y="86.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1022" y="101.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1075" y="101.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="86.5" y2="106.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1113" y1="106.7969" y2="106.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1022" y="121.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1075" y="121.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="106.7969" y2="127.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1017" y="86.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1182.5" y="107"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1187.5" y="121.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1232.5" y="121.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1227.5" x2="1227.5" y1="107" y2="127.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1182.5" y="107"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1017" y="145.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1022" y="160.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1075" y="160.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="145.5" y2="165.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1113" y1="165.7969" y2="165.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1022" y="180.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1075" y="180.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="165.7969" y2="186.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1017" y="145.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1182.5" y="166"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1187.5" y="180.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1232.5" y="180.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1227.5" x2="1227.5" y1="166" y2="186.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1182.5" y="166"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="205"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="219.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="219.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="205" y2="225.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="205"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1009.5" y="243"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1014.5" y="257.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1059.5" y="257.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1054.5" x2="1054.5" y1="243" y2="263.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1009.5" y="243"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="281"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="295.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="295.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="281" y2="301.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="281"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="319"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="333.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="333.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="319" y2="339.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="319"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="357"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="371.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="371.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="357" y2="377.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="357"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="395"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="409.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="409.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="395" y2="415.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="395"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1009.5" y="433"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1014.5" y="447.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1059.5" y="447.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1054.5" x2="1054.5" y1="433" y2="453.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1009.5" y="433"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1017" y="471.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1022" y="486.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1075" y="486.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="471.5" y2="491.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1113" y1="491.7969" y2="491.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1022" y="506.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1075" y="506.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="491.7969" y2="512.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1017" y="471.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="109" x="1175" y="479"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1180" y="493.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1225" y="493.9951">number</text><line style="stroke:#000000;stroke-width:1.0;" x1="1220" x2="1220" y1="479" y2="499.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="109" x="1175" y="479"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="992" y="530.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="997" y="545.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1090" y="545.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="530.5" y2="550.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="1138" y1="550.7969" y2="550.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="997" y="565.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1090" y="565.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="550.7969" y2="571.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="1138" y1="571.0938" y2="571.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="997" y="586.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1090" y="586.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="571.0938" y2="591.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="992" y="530.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1217.5" y="517"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1217.5" y="517"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="99" x="1180" y="551.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="1185" y="566.4951">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1262" y="566.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1257" x2="1257" y1="551.5" y2="571.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1180" x2="1279" y1="571.7969" y2="571.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1185" y="586.792">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1262" y="586.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1257" x2="1257" y1="571.7969" y2="592.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1180" x2="1279" y1="592.0938" y2="592.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1185" y="607.0889">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1262" y="607.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1257" x2="1257" y1="592.0938" y2="612.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="99" x="1180" y="551.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1347" y="531"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1352" y="545.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1397" y="545.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1392" x2="1392" y1="531" y2="551.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1347" y="531"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1347" y="569"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1352" y="583.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1397" y="583.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1392" x2="1392" y1="569" y2="589.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1347" y="569"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1347" y="607"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1352" y="621.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1397" y="621.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1392" x2="1392" y1="607" y2="627.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1347" y="607"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="992" y="609.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="997" y="624.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1090" y="624.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="609.5" y2="629.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="1138" y1="629.7969" y2="629.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="997" y="644.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1090" y="644.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="629.7969" y2="650.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="992" x2="1138" y1="650.0938" y2="650.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="997" y="665.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1090" y="665.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1085" x2="1085" y1="650.0938" y2="670.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="992" y="609.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1217.5" y="631"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1217.5" y="631"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="1176.5" y="666.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="1181.5" y="681.4951">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1265.5" y="681.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1260.5" x2="1260.5" y1="666.5" y2="686.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1176.5" x2="1282.5" y1="686.7969" y2="686.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="1181.5" y="701.792">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1265.5" y="701.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1260.5" x2="1260.5" y1="686.7969" y2="707.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="1176.5" y="666.5"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1321" y="645.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1326" y="660.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1419" y="660.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1414" x2="1414" y1="645.5" y2="665.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1321" x2="1467" y1="665.7969" y2="665.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="1326" y="680.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1419" y="680.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1414" x2="1414" y1="665.7969" y2="686.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1321" x2="1467" y1="686.0938" y2="686.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="1326" y="701.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1419" y="701.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1414" x2="1414" y1="686.0938" y2="706.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1321" y="645.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1535.5" y="644"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1535.5" y="644"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="75" x="1510" y="678.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="1515" y="693.4951">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1568" y="693.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1563" x2="1563" y1="678.5" y2="698.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1510" x2="1585" y1="698.7969" y2="698.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1515" y="713.792">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1568" y="713.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1563" x2="1563" y1="698.7969" y2="719.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="75" x="1510" y="678.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1654" y="671"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1659" y="685.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1704" y="685.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1699" x2="1699" y1="671" y2="691.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1654" y="671"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1654" y="709"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1659" y="723.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1704" y="723.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1699" x2="1699" y1="709" y2="729.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1654" y="709"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1321" y="724.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1326" y="739.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1419" y="739.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1414" x2="1414" y1="724.5" y2="744.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1321" x2="1467" y1="744.7969" y2="744.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="1326" y="759.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1419" y="759.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1414" x2="1414" y1="744.7969" y2="765.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1321" x2="1467" y1="765.0938" y2="765.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="1326" y="780.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1419" y="780.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1414" x2="1414" y1="765.0938" y2="785.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1321" y="724.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1535.5" y="743"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1535.5" y="743"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="87" x="1504" y="777.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1509" y="792.4951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1574" y="792.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1569" x2="1569" y1="777.5" y2="797.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1504" x2="1591" y1="797.7969" y2="797.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="1509" y="812.792">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1574" y="812.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1569" x2="1569" y1="797.7969" y2="818.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1504" x2="1591" y1="818.0938" y2="818.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="1509" y="833.0889">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1574" y="833.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1569" x2="1569" y1="818.0938" y2="838.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="1504" x2="1591" y1="838.3906" y2="838.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1509" y="853.3857">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1574" y="853.3857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1569" x2="1569" y1="838.3906" y2="858.6875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="87" x="1504" y="777.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1654" y="749"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1659" y="763.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1704" y="763.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1699" x2="1699" y1="749" y2="769.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1654" y="749"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="109" x="1646.5" y="787"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1651.5" y="801.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1696.5" y="801.9951">number</text><line style="stroke:#000000;stroke-width:1.0;" x1="1691.5" x2="1691.5" y1="787" y2="807.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="109" x="1646.5" y="787"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1645.5" y="825"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1650.5" y="839.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1695.5" y="839.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1690.5" x2="1690.5" y1="825" y2="845.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1645.5" y="825"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="1628" y="863.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1633" y="878.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="1726" y="878.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="1721" x2="1721" y1="863.5" y2="883.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1628" x2="1774" y1="883.7969" y2="883.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="1633" y="898.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1726" y="898.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1721" x2="1721" y1="883.7969" y2="904.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="1628" x2="1774" y1="904.0938" y2="904.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="1633" y="919.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1726" y="919.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1721" x2="1721" y1="904.0938" y2="924.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="1628" y="863.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="1833.5" y="872"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="1833.5" y="872"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="69" x="1811" y="906.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1816" y="921.4951">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1863" y="921.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1858" x2="1858" y1="906.5" y2="926.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1811" x2="1880" y1="926.7969" y2="926.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1816" y="941.792">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1863" y="941.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1858" x2="1858" y1="926.7969" y2="947.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="69" x="1811" y="906.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1917" y="897"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1922" y="911.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1967" y="911.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1962" x2="1962" y1="897" y2="917.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1917" y="897"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1917" y="935"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1922" y="949.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1967" y="949.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1962" x2="1962" y1="935" y2="955.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1917" y="935"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="395" y="456.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="400" y="471.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="493" y="471.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="456.5" y2="476.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="395" x2="541" y1="476.7969" y2="476.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="400" y="491.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="493" y="491.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="476.7969" y2="497.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="395" x2="541" y1="497.0938" y2="497.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="400" y="512.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="493" y="512.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="488" x2="488" y1="497.0938" y2="517.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="395" y="456.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="584.5" y="478"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="584.5" y="478"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="578" y="563"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="583" y="577.9951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="598" y="577.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="593" x2="593" y1="563" y2="583.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="578" y="563"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="652" y="568.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="657" y="583.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="750" y="583.4951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="568.5" y2="588.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="652" x2="798" y1="588.7969" y2="588.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="68" x="657" y="603.792">required</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="603.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="588.7969" y2="609.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="652" x2="798" y1="609.0938" y2="609.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="657" y="624.0889">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="750" y="624.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="745" x2="745" y1="609.0938" y2="629.3906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="652" y="568.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="883" y="590"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="883" y="590"/><rect fill="#F1F1F1" height="142.0781" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="117" x="836.5" y="755"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="841.5" y="769.9951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="936.5" y="769.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="931.5" y1="755" y2="775.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="836.5" x2="953.5" y1="775.2969" y2="775.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="841.5" y="790.292">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="936.5" y="790.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="931.5" y1="775.2969" y2="795.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="836.5" x2="953.5" y1="795.5938" y2="795.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="841.5" y="810.5889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="936.5" y="810.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="931.5" y1="795.5938" y2="815.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="836.5" x2="953.5" y1="815.8906" y2="815.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="841.5" y="830.8857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="936.5" y="830.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="931.5" y1="815.8906" y2="836.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="836.5" x2="953.5" y1="836.1875" y2="836.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="841.5" y="851.1826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="936.5" y="851.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="931.5" y1="836.1875" y2="856.4844"/><line style="stroke:#000000;stroke-width:1.0;" x1="836.5" x2="953.5" y1="856.4844" y2="856.4844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="841.5" y="871.4795">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="936.5" y="871.4795">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="931.5" y1="856.4844" y2="876.7813"/><line style="stroke:#000000;stroke-width:1.0;" x1="836.5" x2="953.5" y1="876.7813" y2="876.7813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="841.5" y="891.7764">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="936.5" y="891.7764">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="931.5" x2="931.5" y1="876.7813" y2="897.0781"/><rect fill="none" height="142.0781" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="117" x="836.5" y="755"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="689"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="703.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="703.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="689" y2="709.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="689"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="727"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="741.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="741.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="727" y2="747.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="727"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1017" y="765.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1022" y="780.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1075" y="780.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="765.5" y2="785.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1113" y1="785.7969" y2="785.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1022" y="800.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1075" y="800.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="785.7969" y2="806.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1017" y="765.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1182.5" y="786"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1187.5" y="800.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1232.5" y="800.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1227.5" x2="1227.5" y1="786" y2="806.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1182.5" y="786"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1017" y="824.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1022" y="839.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1075" y="839.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="824.5" y2="844.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1113" y1="844.7969" y2="844.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1022" y="859.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1075" y="859.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="844.7969" y2="865.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1017" y="824.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1182.5" y="845"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1187.5" y="859.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1232.5" y="859.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1227.5" x2="1227.5" y1="845" y2="865.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1182.5" y="845"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="1018" y="884"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1023" y="898.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="1068" y="898.9951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="1063" x2="1063" y1="884" y2="904.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="1018" y="884"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="111" x="1009.5" y="922"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1014.5" y="936.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="56" x="1059.5" y="936.9951">boolean</text><line style="stroke:#000000;stroke-width:1.0;" x1="1054.5" x2="1054.5" y1="922" y2="942.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="111" x="1009.5" y="922"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="1017" y="960.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1022" y="975.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="1075" y="975.4951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="960.5" y2="980.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1017" x2="1113" y1="980.7969" y2="980.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="1022" y="995.792">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="1075" y="995.792">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="1070" x2="1070" y1="980.7969" y2="1001.0938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="1017" y="960.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="109" x="1175" y="981"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="1180" y="995.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="54" x="1225" y="995.9951">number</text><line style="stroke:#000000;stroke-width:1.0;" x1="1220" x2="1220" y1="981" y2="1001.2969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="109" x="1175" y="981"/><path d="M144,401 L157,401 C192.3978,401 233.4113,395.1486 256.5726,391.2973 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M257.079,394.261 L258.7955,390.9175 L256.0662,388.3335 L263.9821,390.0313 L257.079,394.261 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="401" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M529,381 L542,381 C554.0956,381 567.1774,377.463 577.4355,373.824 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M578.5337,376.7164 L579.6047,373.0003 L576.3372,370.9317 L584.6663,371.0783 L578.5337,376.7164 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="529" cy="381" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M786,298 L799,298 C858.9522,298 792.7804,210.565 835,168 C845.6509,157.2619 862.5814,153.193 875.6637,151.7056 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M875.9153,154.7287 L877.931,151.5169 L875.4121,148.6825 L883.2215,151.0765 L875.9153,154.7287 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="786" cy="298" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M944.5,189 L944.5,176 C944.5,169.7738 952.3947,173.0761 956,168 C990.4677,119.4708 949.5781,80.7552 992,39 C997.3554,33.7288 1003.984,29.8689 1011.0389,27.0519 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1012.0321,29.9181 L1013.1886,26.307 L1010.0457,24.1856 L1018.2045,24.5688 L1012.0321,29.9181 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="944.5" cy="189" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,207 L956,207 C1015.9522,207 949.3148,119.0981 992,77 C997.3501,71.7235 1003.9759,67.8607 1011.0294,65.0423 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1012.023,67.9082 L1013.1789,64.2971 L1010.0359,62.1764 L1018.1942,62.5584 L1012.023,67.9082 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="207" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1101.5,117 L1114.5,117 C1134.2426,117 1155.9,117 1175.015,117 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1175.015,120.0978 L1177.3384,117 L1175.015,113.9022 L1182.7595,117 L1175.015,120.0978 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1101.5" cy="117" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,227 L956,227 C999.4943,227 961.3033,166.8134 992,136 C997.31,130.6698 1003.7252,126.2877 1010.5168,122.6931 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1011.852,125.4492 L1012.5838,121.6917 L1009.1816,119.9371 L1017.4069,119.3552 L1011.852,125.4492 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="227" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1101.5,176 L1114.5,176 C1134.2426,176 1155.9,176 1175.015,176 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1175.015,179.0978 L1177.3384,176 L1175.015,172.9022 L1182.7595,176 L1175.015,179.0978 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1101.5" cy="176" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,247 L956,247 C983.7449,247 970.3262,213.3212 992,196 C997.5484,191.5659 1003.8441,187.6935 1010.3527,184.338 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1011.7289,187.1863 L1012.4889,183.3059 L1008.9766,181.4897 L1017.4734,180.8976 L1011.7289,187.1863 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="247" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,268 L956,268 C978.0079,268 972.756,244.6778 992,234 C997.9324,230.7083 1004.4558,227.9693 1011.0834,225.6944 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1011.9996,228.5782 L1013.2462,225.0072 L1010.1671,222.8106 L1018.2928,223.4038 L1011.9996,228.5782 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="268" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,288 L956,288 C973.5091,288 975.4773,277.7939 992,272 C999.091,269.5134 1006.6722,267.1819 1014.1616,265.0619 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1014.9805,268.0368 L1016.3928,264.4477 L1013.3426,262.087 L1021.5988,263.0145 L1014.9805,268.0368 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="288" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,308 L956,308 C974.7687,308 995.1459,305.4864 1013.1196,302.3923 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1013.6619,305.41 L1015.3828,301.9856 L1012.5772,299.3747 L1020.6637,301.0364 L1013.6619,305.41 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="308" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,329 L956,329 C973.7235,329 993.0756,329 1010.4649,329 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1010.4649,332.1355 L1012.8165,329 L1010.4649,325.8645 L1018.3035,329 L1010.4649,332.1355 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="329" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,349 L956,349 C975.7984,349 997.3582,351.9529 1016.0047,355.4666 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1015.3914,358.5864 L1018.3445,355.9266 L1016.618,352.3469 L1023.804,356.9999 L1015.3914,358.5864 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="349" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,369 L956,369 C973.6942,369 975.3709,379.9536 992,386 C998.8786,388.5011 1006.2346,390.8204 1013.5262,392.917 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1012.7179,395.817 L1015.7012,393.5233 L1014.3346,390.017 L1020.7763,394.9379 L1012.7179,395.817 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="369" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,390 L956,390 C978.0079,390 972.756,413.3222 992,424 C996.3573,426.4177 1001.0335,428.5373 1005.8355,430.3938 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1004.8212,433.2351 L1007.9665,431.1545 L1006.8499,427.5525 L1012.9387,432.9296 L1004.8212,433.2351 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="390" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1101.5,502 L1114.5,502 C1131.7624,502 1150.3957,500.5232 1167.5149,498.565 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1167.8868,501.6645 L1169.8394,498.286 L1167.1429,495.4656 L1175.2635,497.635 L1167.8868,501.6645 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1101.5" cy="502" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,410 L956,410 C984.1091,410 970.1218,444.3515 992,462 C997.5281,466.4594 1003.8119,470.3467 1010.3141,473.71 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1008.9357,476.5565 L1012.449,474.7439 L1011.6926,470.8636 L1017.4302,477.1562 L1008.9357,476.5565 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="410" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1126,560 L1139,560 C1156.8885,560 1158.4164,548.7069 1175,542 C1186.4721,537.3603 1199.7217,533.1723 1210.2255,530.114 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1211.0684,533.0828 L1212.4521,529.4818 L1209.3825,527.1452 L1217.6476,528.0067 L1211.0684,533.0828 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1126" cy="560" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1268,561 L1281,561 C1303.5264,561 1328.2038,557.0649 1348.6916,552.6856 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1349.3424,555.6244 L1350.8957,552.1975 L1348.0408,549.7469 L1356.0385,551.0586 L1349.3424,555.6244 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1268" cy="561" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1268,581 L1281,581 C1300.0582,581 1320.9296,580.7095 1339.4641,580.35 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1339.5272,583.4652 L1341.8006,580.3027 L1339.4011,577.2347 L1347.2523,580.1923 L1339.5272,583.4652 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1268" cy="581" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1268,602 L1281,602 C1300.2238,602 1321.1346,604.1786 1339.6544,606.8753 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1339.1814,609.9868 L1341.9881,607.23 L1340.1275,603.7637 L1347.4333,608.0578 L1339.1814,609.9868 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1268" cy="602" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1126,581 L1139,581 C1149.9186,581 1161.5819,581.0745 1172.7699,581.1828 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1172.7379,584.2447 L1175.0663,581.2068 L1172.8019,578.121 L1180.4245,581.2627 L1172.7379,584.2447 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1126" cy="581" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M943,430 L956,430 C999.4943,430 963.2659,488.3487 992,521 C993.288,522.4636 994.6431,523.8844 996.0544,525.2629 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M994.0114,527.5429 L997.7644,526.7951 L998.0974,522.9828 L1001.7545,530.3704 L994.0114,527.5429 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="943" cy="430" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1126,639 L1139,639 C1163.6606,639 1192.1222,639 1210.3247,639 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1210.3247,642.0364 L1212.602,639 L1210.3247,635.9636 L1217.9156,639 L1210.3247,642.0364 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1126" cy="639" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1455,675 L1468,675 C1479.791,675 1509.2272,665.4354 1528.6476,658.6419 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1529.6596,661.4978 L1530.7895,657.8829 L1527.6356,655.7861 L1535.7873,656.1119 L1529.6596,661.4978 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1455" cy="675" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1574,688 L1587,688 C1606.5206,688 1627.8939,686.9557 1646.7767,685.6739 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1646.9932,688.7346 L1649.0722,685.5115 L1646.5602,682.6132 L1654.4284,685.1326 L1646.9932,688.7346 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1574" cy="688" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1574,709 L1587,709 C1606.559,709 1627.9411,710.4918 1646.8201,712.323 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1646.5108,715.3828 L1649.115,712.555 L1647.1294,709.2632 L1654.4696,713.0962 L1646.5108,715.3828 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1574" cy="709" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1455,696 L1468,696 C1479.2632,696 1491.4232,696.3083 1502.7477,696.7272 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1502.6256,699.8013 L1505.0532,696.8188 L1502.8698,693.6531 L1510.4329,697.0324 L1502.6256,699.8013 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1455" cy="696" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1271,676 L1284,676 C1293.6196,676 1303.7145,676 1313.721,676 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1313.721,679.0502 L1316.0087,676 L1313.721,672.9498 L1321.3465,676 L1313.721,679.0502 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1271" cy="676" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1455,754 L1468,754 C1488.5706,754 1512.1324,752.9717 1528.1325,752.1192 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1528.3018,755.1679 L1530.419,751.9922 L1527.9631,749.0705 L1535.7543,751.6958 L1528.3018,755.1679 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1455" cy="754" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1579,787 L1592,787 C1592.8547,787 1625.4922,778.5557 1654.7468,770.9418 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1655.5117,773.8791 L1656.9498,770.3681 L1653.9819,768.0044 L1662.0901,769.0296 L1655.5117,773.8791 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1579" cy="787" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1579,807 L1592,807 C1607.3624,807 1623.8968,805.9936 1639.3137,804.6194 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1639.5943,807.6068 L1641.5543,804.409 L1639.0332,801.632 L1646.7822,803.9181 L1639.5943,807.6068 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1579" cy="807" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1579,828 L1592,828 C1606.9489,828 1623.0323,828.6699 1638.1177,829.5952 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1637.9157,832.7098 L1640.4536,829.7467 L1638.3197,826.4807 L1645.9041,830.1002 L1637.9157,832.7098 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1579" cy="828" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1762,893 L1775,893 C1792.5655,893 1812.2,888.994 1826.1935,885.4296 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1826.9991,888.4412 L1828.4522,884.8254 L1825.3879,882.418 L1833.7225,883.4156 L1826.9991,888.4412 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1762" cy="893" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1868,916 L1881,916 C1890.3224,916 1900.2025,915.4251 1909.7629,914.5658 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1910.0607,917.5986 L1912.0375,914.3425 L1909.4651,911.533 L1917.3449,913.8214 L1910.0607,917.5986 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1868" cy="916" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1868,937 L1881,937 C1890.3108,937 1900.1853,937.511 1909.7437,938.2748 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1909.4789,941.3072 L1912.018,938.4733 L1910.0084,935.2424 L1917.3247,938.9366 L1909.4789,941.3072 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1868" cy="937" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1762,914 L1775,914 C1784.4607,914 1794.5215,915.1621 1803.9779,916.7913 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1803.4205,919.7638 L1806.2073,917.2094 L1804.5353,913.8188 L1811.4092,918.1848 L1803.4205,919.7638 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1762" cy="914" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1579,848 L1592,848 C1609.8128,848 1628.0589,853.3203 1644.3833,860.3423 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1643.142,863.0909 L1646.4447,861.2732 L1645.6245,857.5936 L1651.2549,863.4453 L1643.142,863.0909 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1579" cy="848" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1455,775 L1468,775 C1478.0792,775 1488.098,777.7336 1497.4461,781.8224 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1496.0989,784.6255 L1499.5484,782.8328 L1498.7933,779.0193 L1504.4538,785.1904 L1496.0989,784.6255 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1455" cy="775" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1271,697 L1284,697 C1287.0356,697 1308.6862,708.278 1331.9444,720.8877 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1330.511,723.5231 L1333.921,721.9628 L1333.3779,718.2523 L1338.5329,724.4713 L1330.511,723.5231 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1271" cy="697" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1126,660 L1139,660 C1149.736,660 1160.9001,661.7844 1171.5626,664.4358 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1170.7775,667.3519 L1173.7496,665.0247 L1172.3477,661.5197 L1178.8528,666.3986 L1170.7775,667.3519 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1126" cy="660" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M944.5,449 L944.5,462 C944.5,526.8649 950.2592,550.3496 992,600 C993.1274,601.3411 994.3118,602.6451 995.5452,603.9126 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M993.4153,606.1914 L997.2543,605.51 L997.6751,601.6338 L1001.2422,609.2374 L993.4153,606.1914 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="944.5" cy="449" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M786,319 L799,319 C808.2886,319 818.0854,319 827.7231,319 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M827.7231,322.073 L830.0278,319 L827.7231,315.927 L835.4055,319 L827.7231,322.073 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="786" cy="319" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M603,402 L616,402 C655.4798,402 686.3285,365.6866 704.877,336.1831 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M707.5005,337.7814 L706.0758,334.2155 L702.2536,334.5848 L708.8729,329.6245 L707.5005,337.7814 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="603" cy="402" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M529,402 L542,402 C551.4263,402 561.7781,402 570.8743,402 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M570.8743,405.0462 L573.159,402 L570.8743,398.9538 L578.49,402 L570.8743,405.0462 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="529" cy="402" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M346,424 L359,424 C374.2754,424 389.9942,420.3348 404.5615,415.1698 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M405.6201,417.9905 L406.677,414.3759 L403.5029,412.3491 L411.6133,412.5233 L405.6201,417.9905 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="346" cy="424" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M529,486 L542,486 C553.688,486 566.799,486 577.175,486 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M577.175,489.0622 L579.4716,486 L577.175,482.9378 L584.8305,486 L577.175,489.0622 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="529" cy="486" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M786,598 L799,598 C825.5744,598 856.3084,598 875.5761,598 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M875.5761,601.1 L877.9011,598 L875.5761,594.9 L883.3261,598 L875.5761,601.1 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="786" cy="598" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942.5,765 L955.5,765 C981.9482,765 969.9265,732.5693 992,718 C997.8218,714.1574 1004.3846,711.091 1011.1229,708.6441 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1012.0906,711.5856 L1013.329,707.9183 L1010.1551,705.7026 L1018.4766,706.2248 L1012.0906,711.5856 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942.5" cy="765" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942.5,785 L955.5,785 C976.2192,785 973.4701,765.2696 992,756 C997.8549,753.0711 1004.2087,750.5596 1010.6393,748.4145 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1011.5804,751.438 L1012.9069,747.7086 L1009.6981,745.391 L1018.1981,746.0616 L1011.5804,751.438 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942.5" cy="785" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1101.5,796 L1114.5,796 C1134.2426,796 1155.9,796 1175.015,796 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1175.015,799.0978 L1177.3384,796 L1175.015,792.9022 L1182.7595,796 L1175.015,799.0978 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1101.5" cy="796" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942.5,805 L955.5,805 C973.2405,805 992.3672,802.5271 1009.5709,799.3657 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1010.1687,802.4685 L1011.898,798.9173 L1008.973,796.2628 L1017.3281,797.871 L1010.1687,802.4685 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942.5" cy="805" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1101.5,855 L1114.5,855 C1134.2426,855 1155.9,855 1175.015,855 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1175.015,858.0978 L1177.3384,855 L1175.015,851.9022 L1182.7595,855 L1175.015,858.0978 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1101.5" cy="855" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942.5,825 L955.5,825 C973.2688,825 992.4033,827.603 1009.6055,830.9309 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1008.9762,834.0332 L1011.9322,831.4029 L1010.2348,827.8285 L1017.3614,832.5042 L1008.9762,834.0332 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942.5" cy="825" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942.5,846 L955.5,846 C975.9457,846 973.6957,864.8908 992,874 C998.0091,876.9905 1004.5283,879.5864 1011.1104,881.8256 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1010.1938,884.6839 L1013.2542,882.5131 L1012.0271,878.9673 L1018.2562,884.1172 L1010.1938,884.6839 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942.5" cy="846" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942.5,866 L955.5,866 C981.9482,866 969.9265,898.4307 992,913 C995.4615,915.2847 999.185,917.2951 1003.0516,919.0639 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1001.8795,921.8994 L1005.1782,919.943 L1004.2237,916.2284 L1010.1402,921.9941 L1001.8795,921.8994 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942.5" cy="866" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M1101.5,991 L1114.5,991 C1131.7384,991 1150.4366,991 1167.6275,991 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1167.6275,994.1127 L1169.9621,991 L1167.6275,987.8873 L1175.4094,991 L1167.6275,994.1127 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="1101.5" cy="991" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M942.5,887 L955.5,887 C988.2452,887 967.4342,929.3489 992,951 C997.5184,955.8636 1003.9346,960.0103 1010.6242,963.526 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1009.3008,966.2291 L1012.6516,964.5186 L1011.9477,960.8229 L1017.382,966.8346 L1009.3008,966.2291 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="942.5" cy="887" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M786,619 L799,619 C857.8293,619 880.5385,688.7874 889.2392,747.3201 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M886.2624,747.7366 L889.5516,749.5528 L892.2161,746.9036 L890.2805,754.7623 L886.2624,747.7366 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="786" cy="619" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M603,573 L616,573 C625.3998,573 635.1347,573.9343 644.7398,575.4486 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M644.207,578.5152 L647.0397,575.8482 L645.2726,572.382 L652.4063,576.7806 L644.207,578.5152 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="603" cy="573" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M529,507 L542,507 C567.2249,507 582.7928,536.2358 590.3844,555.7912 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M587.5105,556.8334 L591.1661,557.9467 L593.2584,554.749 L592.99,562.976 L587.5105,556.8334 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="529" cy="507" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M346,445 L359,445 C374.2754,445 389.9942,448.6652 404.5615,453.8302 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M403.5029,456.6509 L406.677,454.6241 L405.6201,451.0095 L411.6133,456.4767 L403.5029,456.6509 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="346" cy="445" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,422 L157,422 C166.2697,422 175.9245,422.4013 185.543,423.0628 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.3095,426.142 L187.8524,423.2379 L185.7764,419.9836 L193.241,423.6465 L185.3095,426.142 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="422" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="501px" preserveAspectRatio="none" style="width:899px;height:501px;background:#FFFFFF;" version="1.1" viewBox="0 0 899 501" width="899px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="10" y="239.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="15" y="254.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="81" y="254.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="76" x2="76" y1="239.5" y2="259.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="10" y="239.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="82" x="135" y="199"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="213.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="213.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="199" y2="219.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="219.2969" y2="219.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="140" y="234.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="234.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="219.2969" y2="239.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="239.5938" y2="239.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="140" y="254.5889">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="254.5889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="239.5938" y2="259.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="259.8906" y2="259.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="50" x="140" y="274.8857">offline</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="274.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="259.8906" y2="280.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="135" x2="217" y1="280.1875" y2="280.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="140" y="295.1826">pages</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="200" y="295.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="195" x2="195" y1="280.1875" y2="300.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="82" x="135" y="199"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="352.5" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="357.5" y="24.9951">Seo</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="28" x="357.5" y="45.292">Pwa</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="26" x="357.5" y="65.5889">Css</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="96" x="357.5" y="85.8857">DefaultScripts</text><line style="stroke:#000000;stroke-width:1.0;" x1="352.5" x2="458.5" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="357.5" y="106.1826">Production</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="352.5" y="10"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="328.5" y="129"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="94" x="333.5" y="143.9951">CacheControl</text><line style="stroke:#000000;stroke-width:1.0;" x1="328.5" x2="482.5" y1="149.2969" y2="149.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="144" x="333.5" y="164.292">DefaultSplashScreen</text><line style="stroke:#000000;stroke-width:1.0;" x1="328.5" x2="482.5" y1="169.5938" y2="169.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="333.5" y="184.5889">404</text><line style="stroke:#000000;stroke-width:1.0;" x1="328.5" x2="482.5" y1="189.8906" y2="189.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="333.5" y="204.8857">500</text><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="328.5" y="129"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="303" x="254" y="228"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="123" x="259" y="242.9951">userVerifyEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="122" x="410" y="242.9951">DefaultVerifyEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="405" x2="405" y1="228" y2="248.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="254" x2="557" y1="248.2969" y2="248.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="141" x="259" y="263.292">userRecoverEmail</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="142" x="410" y="263.292">DefaultRecoverEmail</text><line style="stroke:#000000;stroke-width:1.0;" x1="405" x2="405" y1="248.2969" y2="268.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="303" x="254" y="228"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="393.5" y="287"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398.5" y="301.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="393.5" x2="415.5" y1="307.2969" y2="307.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398.5" y="322.292">   </text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="393.5" y="287"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="227" x="594" y="148"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="599" y="162.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="46" x="652" y="162.9951">/offline</text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="148" y2="168.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="168.2969" y2="168.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="599" y="183.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="164" x="652" y="183.292">No Network Connection</text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="168.2969" y2="188.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="188.5938" y2="188.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="599" y="203.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="156" x="652" y="203.5889">NoNetworkConnection</text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="188.5938" y2="208.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="208.8906" y2="208.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="599" y="223.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="652" y="223.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="208.8906" y2="229.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="821" y1="229.1875" y2="229.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="599" y="244.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="652" y="244.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="647" x2="647" y1="229.1875" y2="249.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="227" x="594" y="148"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="203.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="203.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="237.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="237.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="200" x="607.5" y="267"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="612.5" y="281.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="95" x="665.5" y="281.9951">/maintenance</text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="267" y2="287.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="287.2969" y2="287.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="612.5" y="302.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="137" x="665.5" y="302.292">Server Maintenance</text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="287.2969" y2="307.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="307.5938" y2="307.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="612.5" y="322.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="89" x="665.5" y="322.5889">Maintenance</text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="307.5938" y2="327.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="327.8906" y2="327.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="612.5" y="342.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="665.5" y="342.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="327.8906" y2="348.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="607.5" x2="807.5" y1="348.1875" y2="348.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="612.5" y="363.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="665.5" y="363.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="660.5" x2="660.5" y1="348.1875" y2="368.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="200" x="607.5" y="267"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="322.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="322.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="356.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="356.5"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="22" x="393.5" y="386.5"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="398.5" y="401.4951">   </text><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="22" x="393.5" y="386.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="95" x="660" y="386"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="665" y="400.9951">path</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="32" x="718" y="400.9951">/test</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="386" y2="406.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="406.2969" y2="406.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="30" x="665" y="421.292">title</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="718" y="421.292">Test</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="406.2969" y2="426.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="426.5938" y2="426.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="665" y="441.5889">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="718" y="441.5889">Test</text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="426.5938" y2="446.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="446.8906" y2="446.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="665" y="461.8857">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="461.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="446.8906" y2="467.1875"/><line style="stroke:#000000;stroke-width:1.0;" x1="660" x2="755" y1="467.1875" y2="467.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="665" y="482.1826">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="718" y="482.1826">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="713" x2="713" y1="467.1875" y2="487.4844"/><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="95" x="660" y="386"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="441.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="441.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="858" y="475.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="858" y="475.5"/><path d="M205,208.5 L218,208.5 C260.669,208.5 223.6497,149.4917 254,119.5 C278.7427,95.0497 314.7894,80.4561 345.4585,71.9008 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M346.2358,74.8063 L347.6377,71.3178 L344.6813,68.9952 L352.7224,69.9576 L346.2358,74.8063 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="208.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,228.5 L218,228.5 C220.8788,228.5 272.9523,212.0186 321.4143,196.4777 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M322.3677,199.4487 L323.6426,195.7626 L320.4609,193.5066 L328.8419,194.0941 L322.3677,199.4487 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="228.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,248.5 L218,248.5 C227.4428,248.5 237.1539,248.5 246.9503,248.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M246.9503,251.502 L249.2018,248.5 L246.9503,245.498 L254.4553,248.5 L246.9503,251.502 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="248.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M809,218.5 L822,218.5 C831.5729,218.5 842.1162,217.0913 850.8327,215.5377 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M851.4051,218.5022 L853.056,215.1084 L850.2602,212.5733 L858.2438,214.1065 L851.4051,218.5022 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="809" cy="218.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M809,238.5 L822,238.5 C831.5729,238.5 842.1162,239.9087 850.8327,241.4623 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.2602,244.4267 L853.056,241.8916 L851.4051,238.4978 L858.2438,242.8935 L850.2602,244.4267 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="809" cy="238.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M406,296.5 L419,296.5 C481.2936,296.5 499.0359,298.5931 558,278.5 C575.5332,272.5252 577.7856,266.4557 594,257.5 C596.8332,255.9351 599.7116,254.3565 602.6206,252.7707 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M604.1044,255.5054 L604.6715,251.6578 L601.1367,250.0361 L609.4571,249.061 L604.1044,255.5054 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="406" cy="296.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M796,337.5 L809,337.5 C823.0892,337.5 838.9025,335.6035 850.8279,333.7848 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M851.3169,336.8112 L853.0977,333.4181 L850.339,330.7584 L858.3939,332.5624 L851.3169,336.8112 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="796" cy="337.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M796,357.5 L809,357.5 C823.0892,357.5 838.9025,359.3965 850.8279,361.2152 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.339,364.2416 L853.0977,361.5819 L851.3169,358.1888 L858.3939,362.4376 L850.339,364.2416 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="796" cy="357.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M406,317.5 L419,317.5 C478.9312,317.5 545.8774,317.5 600.1314,317.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M600.1314,320.5277 L602.4022,317.5 L600.1314,314.4723 L607.7006,317.5 L600.1314,320.5277 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="406" cy="317.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,269.5 L218,269.5 C234.4924,269.5 237.8956,274.9434 254,278.5 C301.4487,288.979 357.7662,299.2182 386.3496,304.2604 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M385.815,307.3078 L388.6352,304.6613 L386.8842,301.2129 L393.9683,305.5968 L385.815,307.3078 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="269.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M744,456.5 L757,456.5 C789.9692,456.5 828.2686,453.4682 850.6031,451.3952 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.8988,454.4887 L852.9232,451.1734 L850.3074,448.3016 L858.3369,450.6559 L850.8988,454.4887 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="744" cy="456.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M744,476.5 L757,476.5 C789.9692,476.5 828.2686,479.5318 850.6031,481.6048 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M850.3074,484.6984 L852.9232,481.8266 L850.8988,478.5113 L858.3369,482.3441 L850.3074,484.6984 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="744" cy="476.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M405.2856,396.4051 L418.1724,398.1176 C457.1178,403.2931 580.3422,419.6684 652.6436,429.2766 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M652.2346,432.3542 L654.9518,429.5833 L653.0526,426.199 L660.3377,430.299 L652.2346,432.3542 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="405.2856" cy="396.4051" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M205,289.5 L218,289.5 C244.6667,289.5 232.7694,321.364 254,337.5 C295.5509,369.0801 356.1321,385.8661 386.3748,392.7209 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M385.7335,395.6591 L388.5785,393.2018 L387.0161,389.7826 L393.7204,394.3241 L385.7335,395.6591 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="205" cy="289.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M86,249.5 L99,249.5 C108.327,249.5 118.2936,249.5 127.847,249.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M127.847,252.5212 L130.1129,249.5 L127.847,246.4788 L135.4,249.5 L127.847,252.5212 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="86" cy="249.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>