underpost 2.8.0 → 2.8.6

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 (119) hide show
  1. package/.dockerignore +1 -0
  2. package/.github/workflows/ghpkg.yml +19 -49
  3. package/.github/workflows/npmpkg.yml +67 -0
  4. package/.github/workflows/publish.yml +5 -5
  5. package/.github/workflows/pwa-microservices-template.page.yml +12 -4
  6. package/.github/workflows/pwa-microservices-template.test.yml +2 -2
  7. package/.vscode/extensions.json +17 -71
  8. package/.vscode/settings.json +20 -4
  9. package/AUTHORS.md +16 -5
  10. package/CHANGELOG.md +103 -3
  11. package/Dockerfile +24 -66
  12. package/README.md +1 -28
  13. package/bin/build.js +186 -0
  14. package/bin/db.js +2 -24
  15. package/bin/deploy.js +168 -157
  16. package/bin/file.js +59 -16
  17. package/bin/hwt.js +0 -10
  18. package/bin/index.js +201 -61
  19. package/bin/ssl.js +19 -11
  20. package/bin/util.js +24 -101
  21. package/bin/vs.js +26 -2
  22. package/conf.js +30 -132
  23. package/docker-compose.yml +1 -1
  24. package/manifests/deployment/mongo-express/deployment.yaml +60 -0
  25. package/manifests/deployment/phpmyadmin/deployment.yaml +54 -0
  26. package/manifests/kind-config-dev.yaml +12 -0
  27. package/manifests/kind-config.yaml +12 -0
  28. package/manifests/letsencrypt-prod.yaml +15 -0
  29. package/manifests/mariadb/config.yaml +10 -0
  30. package/manifests/mariadb/kustomization.yaml +9 -0
  31. package/manifests/mariadb/pv.yaml +12 -0
  32. package/manifests/mariadb/pvc.yaml +10 -0
  33. package/manifests/mariadb/secret.yaml +8 -0
  34. package/manifests/mariadb/service.yaml +10 -0
  35. package/manifests/mariadb/statefulset.yaml +55 -0
  36. package/manifests/mongodb/backup-access.yaml +16 -0
  37. package/manifests/mongodb/backup-cronjob.yaml +42 -0
  38. package/manifests/mongodb/backup-pv-pvc.yaml +22 -0
  39. package/manifests/mongodb/configmap.yaml +26 -0
  40. package/manifests/mongodb/headless-service.yaml +10 -0
  41. package/manifests/mongodb/kustomization.yaml +11 -0
  42. package/manifests/mongodb/pv-pvc.yaml +23 -0
  43. package/manifests/mongodb/statefulset.yaml +125 -0
  44. package/manifests/mongodb-4.4/kustomization.yaml +7 -0
  45. package/manifests/mongodb-4.4/pv-pvc.yaml +23 -0
  46. package/manifests/mongodb-4.4/service-deployment.yaml +63 -0
  47. package/manifests/valkey/kustomization.yaml +7 -0
  48. package/manifests/valkey/service.yaml +17 -0
  49. package/manifests/valkey/statefulset.yaml +39 -0
  50. package/package.json +133 -134
  51. package/src/api/core/core.service.js +1 -1
  52. package/src/api/user/user.model.js +16 -3
  53. package/src/api/user/user.service.js +1 -1
  54. package/src/cli/cluster.js +202 -0
  55. package/src/cli/cron.js +90 -0
  56. package/src/cli/db.js +212 -0
  57. package/src/cli/deploy.js +318 -0
  58. package/src/cli/env.js +52 -0
  59. package/src/cli/fs.js +149 -0
  60. package/src/cli/image.js +148 -0
  61. package/src/cli/repository.js +125 -0
  62. package/src/cli/script.js +53 -0
  63. package/src/cli/secrets.js +37 -0
  64. package/src/cli/test.js +118 -0
  65. package/src/client/components/core/Account.js +4 -2
  66. package/src/client/components/core/Auth.js +24 -6
  67. package/src/client/components/core/CalendarCore.js +127 -50
  68. package/src/client/components/core/CommonJs.js +282 -19
  69. package/src/client/components/core/Css.js +2 -1
  70. package/src/client/components/core/CssCore.js +8 -4
  71. package/src/client/components/core/Docs.js +1 -1
  72. package/src/client/components/core/DropDown.js +5 -1
  73. package/src/client/components/core/Input.js +22 -6
  74. package/src/client/components/core/JoyStick.js +8 -5
  75. package/src/client/components/core/LoadingAnimation.js +8 -1
  76. package/src/client/components/core/Modal.js +47 -18
  77. package/src/client/components/core/Panel.js +93 -31
  78. package/src/client/components/core/PanelForm.js +27 -19
  79. package/src/client/components/core/Scroll.js +1 -0
  80. package/src/client/components/core/SignUp.js +4 -1
  81. package/src/client/components/core/Translate.js +61 -9
  82. package/src/client/components/core/Validator.js +9 -1
  83. package/src/client/components/core/VanillaJs.js +0 -9
  84. package/src/client/components/core/Worker.js +34 -31
  85. package/src/client/public/default/plantuml/client-conf.svg +1 -1
  86. package/src/client/public/default/plantuml/server-conf.svg +1 -1
  87. package/src/client/public/default/plantuml/server-schema.svg +1 -1
  88. package/src/client/public/default/plantuml/ssr-conf.svg +1 -1
  89. package/src/client/public/default/plantuml/ssr-schema.svg +1 -1
  90. package/src/client/services/core/core.service.js +15 -8
  91. package/src/client/services/default/default.management.js +4 -2
  92. package/src/client/ssr/Render.js +4 -1
  93. package/src/client/ssr/body/CacheControl.js +2 -2
  94. package/src/client/ssr/body/DefaultSplashScreen.js +3 -3
  95. package/src/client/ssr/offline/Maintenance.js +63 -0
  96. package/src/client/sw/default.sw.js +26 -6
  97. package/src/db/mongo/MongooseDB.js +29 -1
  98. package/src/index.js +91 -17
  99. package/src/runtime/lampp/Lampp.js +1 -13
  100. package/src/runtime/xampp/Xampp.js +0 -13
  101. package/src/server/auth.js +3 -3
  102. package/src/server/backup.js +49 -93
  103. package/src/server/client-build.js +41 -50
  104. package/src/server/client-formatted.js +6 -3
  105. package/src/server/client-icons.js +1 -1
  106. package/src/server/conf.js +207 -57
  107. package/src/server/dns.js +30 -55
  108. package/src/server/downloader.js +0 -8
  109. package/src/server/logger.js +22 -15
  110. package/src/server/network.js +17 -43
  111. package/src/server/process.js +25 -2
  112. package/src/server/proxy.js +4 -26
  113. package/src/server/runtime.js +30 -30
  114. package/src/server/ssl.js +1 -1
  115. package/src/server/valkey.js +3 -0
  116. package/test/api.test.js +0 -8
  117. package/src/dns.js +0 -22
  118. package/src/server/prompt-optimizer.js +0 -28
  119. package/startup.js +0 -11
@@ -1 +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="489px" preserveAspectRatio="none" style="width:1249px;height:489px;background:#FFFFFF;" version="1.1" viewBox="0 0 1249 489" width="1249px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="165" x="10" y="279"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="15" y="293.9951">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="293.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="279" y2="299.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="175" y1="299.2969" y2="299.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="133" x="15" y="314.292">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="314.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="299.2969" y2="319.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="165" x="10" y="279"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="245.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="260.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="260.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="245.5" y2="265.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="245.5"/><rect fill="#F1F1F1" height="284.1563" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="157" x="286" y="13.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="291" y="28.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="389" y="28.4951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="13.5" y2="33.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="33.7969" y2="33.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="291" y="48.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="389" y="48.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="33.7969" y2="54.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="54.0938" y2="54.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="291" y="69.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="69.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="54.0938" y2="74.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="74.3906" y2="74.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="291" y="89.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="89.3857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="74.3906" y2="94.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="94.6875" y2="94.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="291" y="109.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="109.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="94.6875" y2="114.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="114.9844" y2="114.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="80" x="291" y="129.9795">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="389" y="129.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="114.9844" y2="135.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="135.2813" y2="135.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="291" y="150.2764">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="150.2764">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="135.2813" y2="155.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="155.5781" y2="155.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="76" x="291" y="170.5732">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="170.5732">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="155.5781" y2="175.875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="175.875" y2="175.875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="291" y="190.8701">offlineBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="389" y="190.8701">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="175.875" y2="196.1719"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="196.1719" y2="196.1719"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="23" x="291" y="211.167">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="389" y="211.167">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="196.1719" y2="216.4688"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="216.4688" y2="216.4688"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="291" y="231.4639">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="389" y="231.4639">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="216.4688" y2="236.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="236.7656" y2="236.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="291" y="251.7607">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="251.7607">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="236.7656" y2="257.0625"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="257.0625" y2="257.0625"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="20" x="291" y="272.0576">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="272.0576">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="257.0625" y2="277.3594"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="277.3594" y2="277.3594"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="291" y="292.3545">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="292.3545">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="277.3594" y2="297.6563"/><rect fill="none" height="284.1563" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="157" x="286" y="13.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="57" x="594" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="599" y="24.9951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="599" y="45.292">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="599" y="65.5889">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="599" y="85.8857">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="19" x="599" y="106.1826">file</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="57" x="594" y="10"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="129.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="129.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="604" y="170"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="609" y="184.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="604" x2="641" y1="190.2969" y2="190.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="609" y="205.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="604" y="170"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="285" x="480" y="229"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="485" y="243.9951">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="562" y="243.9951">mongoose</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="229" y2="249.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="480" x2="765" y1="249.2969" y2="249.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="485" y="264.292">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="562" y="264.292">mongodb://127.0.0.1:27017</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="249.2969" y2="269.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="480" x2="765" y1="269.5938" y2="269.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="485" y="284.5889">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="562" y="284.5889">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="269.5938" y2="289.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="285" x="480" y="229"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="569.5" y="308"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="574.5" y="322.9951">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="658.5" y="322.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="653.5" x2="653.5" y1="308" y2="328.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="569.5" x2="675.5" y1="328.2969" y2="328.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="574.5" y="343.292">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="658.5" y="343.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="653.5" x2="653.5" y1="328.2969" y2="348.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="569.5" y="308"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="202" x="802" y="268"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="807" y="282.9951">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="860" y="282.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="855" x2="855" y1="268" y2="288.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="802" x2="1004" y1="288.2969" y2="288.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="807" y="303.292">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="860" y="303.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="855" x2="855" y1="288.2969" y2="308.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="202" x="802" y="268"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="195" x="805.5" y="327"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="810.5" y="341.9951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="875.5" y="341.9951">smtp.default.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="327" y2="347.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="347.2969" y2="347.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="810.5" y="362.292">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="875.5" y="362.292">465</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="347.2969" y2="367.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="367.5938" y2="367.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="810.5" y="382.5889">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="875.5" y="382.5889">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="367.5938" y2="387.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="387.8906" y2="387.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="810.5" y="402.8857">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="875.5" y="402.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="387.8906" y2="408.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="195" x="805.5" y="327"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="196" x="1041" y="377"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1046" y="391.9951">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="1093" y="391.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="1088" x2="1088" y1="377" y2="397.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1041" x2="1237" y1="397.2969" y2="397.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1046" y="412.292">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="1093" y="412.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1088" x2="1088" y1="397.2969" y2="417.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="196" x="1041" y="377"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="333.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="348.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="348.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="333.5" y2="353.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="333.5"/><rect fill="#F1F1F1" height="142.0781" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="287.5" y="325.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="292.5" y="340.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="11" x="387.5" y="340.4951">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="325.5" y2="345.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="345.7969" y2="345.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="292.5" y="360.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="387.5" y="360.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="345.7969" y2="366.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="366.0938" y2="366.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="292.5" y="381.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="381.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="366.0938" y2="386.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="386.3906" y2="386.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="292.5" y="401.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="401.3857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="386.3906" y2="406.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="406.6875" y2="406.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="292.5" y="421.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="387.5" y="421.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="406.6875" y2="426.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="426.9844" y2="426.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="292.5" y="441.9795">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="387.5" y="441.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="426.9844" y2="447.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="447.2813" y2="447.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="292.5" y="462.2764">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="462.2764">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="447.2813" y2="467.5781"/><rect fill="none" height="142.0781" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="287.5" y="325.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="367.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="367.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="401.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="401.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="604" y="437"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="609" y="451.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="604" x2="641" y1="457.2969" y2="457.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="609" y="472.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="604" y="437"/><path d="M431,63.5 L444,63.5 C493.4225,63.5 550.5529,62.3295 586.4789,61.4508 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M586.5564,64.5607 L588.8113,61.3926 L586.4014,58.3408 L594.2538,61.257 L586.5564,64.5607 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="63.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,83.5 L444,83.5 C466.6274,83.5 459.6821,109.541 480,119.5 C520.6179,139.4092 575.2683,140.1061 603.4587,138.8466 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M603.6241,141.8609 L605.7194,138.7225 L603.2933,135.8323 L610.9945,138.433 L603.6241,141.8609 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="83.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,246.5 L444,246.5 C464,246.5 461.7585,227.7004 480,219.5 C518.3881,202.2427 567.2362,195.1562 596.4852,192.317 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M596.7625,195.399 L598.7968,192.1091 L596.208,189.235 L604.1903,191.6239 L596.7625,195.399 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="246.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,266.5 L444,266.5 C453.2732,266.5 462.816,266.404 472.4381,266.2344 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M472.4986,269.3264 L474.7571,266.189 L472.3775,263.1424 L480.1681,266.0831 L472.4986,269.3264 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="266.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M664,317.5 L677,317.5 C715.5088,317.5 757.4168,313.2882 794.5404,308.0748 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M794.991,311.2133 L796.8942,307.7369 L794.0898,304.9363 L802.3866,306.9483 L794.991,311.2133 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="664" cy="317.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M989.5,397.5 L1002.5,397.5 C1012.5698,397.5 1023.0589,397.5 1033.5483,397.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1033.5483,400.5528 L1035.8379,397.5 L1033.5483,394.4472 L1041.1802,397.5 L1033.5483,400.5528 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="989.5" cy="397.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M664,338.5 L677,338.5 C716.7801,338.5 760.1875,342.9945 798.2011,348.4447 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M797.7604,351.4559 L800.4595,348.7752 L798.6417,345.4334 L805.7292,349.5464 L797.7604,351.4559 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="664" cy="338.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,287.5 L444,287.5 C460.7302,287.5 463.7997,294.3224 480,298.5 C506.8701,305.4291 536.9008,311.9485 562.4,317.1283 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M561.8025,320.0928 L564.6235,317.5764 L562.9976,314.1637 L569.8114,318.6222 L561.8025,320.0928 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="287.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,255.5 L250,255.5 C260.2799,255.5 270.0761,253.1736 279.2968,249.2304 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M280.6244,252.0054 L281.3781,248.2347 L277.9693,246.4554 L286.2344,245.9116 L280.6244,252.0054 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="255.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,288.5 L176,288.5 C190.7397,288.5 204.8606,279.4373 214.9634,270.8105 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M217.0554,273.1068 L216.6856,269.2415 L212.8713,268.5143 L220.7041,265.5804 L217.0554,273.1068 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="288.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,375.5 L443,375.5 C501.1954,375.5 570.0334,375.5 602.8032,375.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M602.8032,378.6551 L605.1696,375.5 L602.8032,372.3449 L610.691,375.5 L602.8032,378.6551 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="375.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,395.5 L443,395.5 C501.6215,395.5 570.7141,403.0553 603.2573,407.0654 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M602.8828,410.0484 L605.4946,407.3463 L603.6319,404.0823 L610.7149,408.0018 L602.8828,410.0484 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="395.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,457.5 L443,457.5 C497.8067,457.5 562.0527,457.5 596.7211,457.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M596.7211,460.599 L599.0454,457.5 L596.7211,454.401 L604.4687,457.5 L596.7211,460.599 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="457.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,343.5 L250,343.5 C260.2744,343.5 270.625,345.2921 280.6762,348.2172 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M279.7479,351.1215 L282.8544,348.9135 L281.6045,345.313 L287.9368,350.538 L279.7479,351.1215 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="343.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,309.5 L176,309.5 C191.046,309.5 205.3259,319.0693 215.4179,328.0545 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M213.2466,330.3392 L217.1315,329.683 L217.5892,325.7697 L221.1298,333.4828 L213.2466,330.3392 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="309.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
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="489px" preserveAspectRatio="none" style="width:1249px;height:489px;background:#FFFFFF;" version="1.1" viewBox="0 0 1249 489" width="1249px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="165" x="10" y="279"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="86" x="15" y="293.9951">default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="293.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="279" y2="299.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="175" y1="299.2969" y2="299.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="133" x="15" y="314.292">www.default.net</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="158" y="314.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="153" x2="153" y1="299.2969" y2="319.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="165" x="10" y="279"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="245.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="260.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="260.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="245.5" y2="265.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="245.5"/><rect fill="#F1F1F1" height="284.1563" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="157" x="286" y="13.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="291" y="28.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="389" y="28.4951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="13.5" y2="33.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="33.7969" y2="33.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="291" y="48.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="389" y="48.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="33.7969" y2="54.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="54.0938" y2="54.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="291" y="69.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="69.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="54.0938" y2="74.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="74.3906" y2="74.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="291" y="89.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="89.3857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="74.3906" y2="94.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="94.6875" y2="94.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="291" y="109.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="109.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="94.6875" y2="114.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="114.9844" y2="114.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="80" x="291" y="129.9795">iconsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="389" y="129.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="114.9844" y2="135.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="135.2813" y2="135.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="291" y="150.2764">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="150.2764">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="135.2813" y2="155.5781"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="155.5781" y2="155.5781"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="76" x="291" y="170.5732">docsBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="170.5732">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="155.5781" y2="175.875"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="175.875" y2="175.875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="88" x="291" y="190.8701">offlineBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="389" y="190.8701">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="175.875" y2="196.1719"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="196.1719" y2="196.1719"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="23" x="291" y="211.167">ws</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="389" y="211.167">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="196.1719" y2="216.4688"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="216.4688" y2="216.4688"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="291" y="231.4639">peer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="389" y="231.4639">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="216.4688" y2="236.7656"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="236.7656" y2="236.7656"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="291" y="251.7607">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="251.7607">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="236.7656" y2="257.0625"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="257.0625" y2="257.0625"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="20" x="291" y="272.0576">db</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="272.0576">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="257.0625" y2="277.3594"/><line style="stroke:#000000;stroke-width:1.0;" x1="286" x2="443" y1="277.3594" y2="277.3594"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="48" x="291" y="292.3545">mailer</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="389" y="292.3545">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="384" x2="384" y1="277.3594" y2="297.6563"/><rect fill="none" height="284.1563" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="157" x="286" y="13.5"/><rect fill="#F1F1F1" height="101.4844" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="57" x="594" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="599" y="24.9951">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="599" y="45.292">core</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="50.5938" y2="50.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="31" x="599" y="65.5889">user</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="70.8906" y2="70.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="599" y="85.8857">test</text><line style="stroke:#000000;stroke-width:1.0;" x1="594" x2="651" y1="91.1875" y2="91.1875"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="19" x="599" y="106.1826">file</text><rect fill="none" height="101.4844" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="57" x="594" y="10"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="129.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="129.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="604" y="170"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="609" y="184.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="604" x2="641" y1="190.2969" y2="190.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="609" y="205.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="604" y="170"/><rect fill="#F1F1F1" height="60.8906" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="285" x="480" y="229"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="67" x="485" y="243.9951">provider</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="75" x="562" y="243.9951">mongoose</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="229" y2="249.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="480" x2="765" y1="249.2969" y2="249.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="485" y="264.292">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="198" x="562" y="264.292">mongodb://127.0.0.1:27017</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="249.2969" y2="269.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="480" x2="765" y1="269.5938" y2="269.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="485" y="284.5889">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="562" y="284.5889">default</text><line style="stroke:#000000;stroke-width:1.0;" x1="557" x2="557" y1="269.5938" y2="289.8906"/><rect fill="none" height="60.8906" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="285" x="480" y="229"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="106" x="569.5" y="308"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="574.5" y="322.9951">sender</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="658.5" y="322.9951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="653.5" x2="653.5" y1="308" y2="328.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="569.5" x2="675.5" y1="328.2969" y2="328.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="74" x="574.5" y="343.292">transport</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="658.5" y="343.292">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="653.5" x2="653.5" y1="328.2969" y2="348.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="106" x="569.5" y="308"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="202" x="802" y="268"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="41" x="807" y="282.9951">email</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="860" y="282.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="855" x2="855" y1="268" y2="288.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="802" x2="1004" y1="288.2969" y2="288.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="807" y="303.292">name</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="860" y="303.292">Default</text><line style="stroke:#000000;stroke-width:1.0;" x1="855" x2="855" y1="288.2969" y2="308.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="202" x="802" y="268"/><rect fill="#F1F1F1" height="81.1875" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="195" x="805.5" y="327"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="810.5" y="341.9951">host</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="120" x="875.5" y="341.9951">smtp.default.com</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="327" y2="347.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="347.2969" y2="347.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="33" x="810.5" y="362.292">port</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="875.5" y="362.292">465</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="347.2969" y2="367.5938"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="367.5938" y2="367.5938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="55" x="810.5" y="382.5889">secure</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="875.5" y="382.5889">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="367.5938" y2="387.8906"/><line style="stroke:#000000;stroke-width:1.0;" x1="805.5" x2="1000.5" y1="387.8906" y2="387.8906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="810.5" y="402.8857">auth</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="875.5" y="402.8857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="870.5" x2="870.5" y1="387.8906" y2="408.1875"/><rect fill="none" height="81.1875" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="195" x="805.5" y="327"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="196" x="1041" y="377"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="36" x="1046" y="391.9951">user</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="139" x="1093" y="391.9951">noreply@default.net</text><line style="stroke:#000000;stroke-width:1.0;" x1="1088" x2="1088" y1="377" y2="397.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="1041" x2="1237" y1="397.2969" y2="397.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="37" x="1046" y="412.292">pass</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="4" x="1093" y="412.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="1088" x2="1088" y1="397.2969" y2="417.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="196" x="1041" y="377"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="212" y="333.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="5" x="217" y="348.4951">/</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="232" y="348.4951">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="227" x2="227" y1="333.5" y2="353.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="212" y="333.5"/><rect fill="#F1F1F1" height="142.0781" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="154" x="287.5" y="325.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="292.5" y="340.4951">client</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="11" x="387.5" y="340.4951">␀</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="325.5" y2="345.7969"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="345.7969" y2="345.7969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="61" x="292.5" y="360.792">runtime</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="47" x="387.5" y="360.792">nodejs</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="345.7969" y2="366.0938"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="366.0938" y2="366.0938"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="32" x="292.5" y="381.0889">apis</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="381.0889">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="366.0938" y2="386.3906"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="386.3906" y2="386.3906"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="54" x="292.5" y="401.3857">origins</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="401.3857">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="386.3906" y2="406.6875"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="406.6875" y2="406.6875"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="85" x="292.5" y="421.6826">minifyBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="49" x="387.5" y="421.6826">☐ false</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="406.6875" y2="426.9844"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="426.9844" y2="426.9844"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="62" x="292.5" y="441.9795">liteBuild</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="45" x="387.5" y="441.9795">☑ true</text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="426.9844" y2="447.2813"/><line style="stroke:#000000;stroke-width:1.0;" x1="287.5" x2="441.5" y1="447.2813" y2="447.2813"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="45" x="292.5" y="462.2764">proxy</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="387.5" y="462.2764">   </text><line style="stroke:#000000;stroke-width:1.0;" x1="382.5" x2="382.5" y1="447.2813" y2="467.5781"/><rect fill="none" height="142.0781" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="154" x="287.5" y="325.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="367.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="367.5"/><rect fill="#F1F1F1" height="15" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="30" x="610.5" y="401.5"/><rect fill="none" height="15" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="30" x="610.5" y="401.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="37" x="604" y="437"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="18" x="609" y="451.9951">80</text><line style="stroke:#000000;stroke-width:1.0;" x1="604" x2="641" y1="457.2969" y2="457.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="27" x="609" y="472.292">443</text><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="37" x="604" y="437"/><path d="M431,63.5 L444,63.5 C493.4225,63.5 550.5529,62.3295 586.4789,61.4508 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M586.5564,64.5607 L588.8113,61.3926 L586.4014,58.3408 L594.2538,61.257 L586.5564,64.5607 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="63.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,83.5 L444,83.5 C466.6274,83.5 459.6821,109.541 480,119.5 C520.6179,139.4092 575.2683,140.1061 603.4587,138.8466 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M603.6241,141.8609 L605.7194,138.7225 L603.2933,135.8323 L610.9945,138.433 L603.6241,141.8609 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="83.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,246.5 L444,246.5 C464,246.5 461.7585,227.7004 480,219.5 C518.3881,202.2427 567.2362,195.1562 596.4852,192.317 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M596.7625,195.399 L598.7968,192.1091 L596.208,189.235 L604.1903,191.6239 L596.7625,195.399 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="246.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,266.5 L444,266.5 C453.2732,266.5 462.816,266.404 472.4381,266.2344 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M472.4986,269.3264 L474.7571,266.189 L472.3775,263.1424 L480.1681,266.0831 L472.4986,269.3264 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="266.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M664,317.5 L677,317.5 C715.5088,317.5 757.4168,313.2882 794.5404,308.0748 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M794.991,311.2133 L796.8942,307.7369 L794.0898,304.9363 L802.3866,306.9483 L794.991,311.2133 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="664" cy="317.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M989.5,397.5 L1002.5,397.5 C1012.5698,397.5 1023.0589,397.5 1033.5483,397.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M1033.5483,400.5528 L1035.8379,397.5 L1033.5483,394.4472 L1041.1802,397.5 L1033.5483,400.5528 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="989.5" cy="397.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M664,338.5 L677,338.5 C716.7801,338.5 760.1875,342.9945 798.2011,348.4447 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M797.7604,351.4559 L800.4595,348.7752 L798.6417,345.4334 L805.7292,349.5464 L797.7604,351.4559 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="664" cy="338.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M431,287.5 L444,287.5 C460.7302,287.5 463.7997,294.3224 480,298.5 C506.8701,305.4291 536.9008,311.9485 562.4,317.1283 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M561.8025,320.0928 L564.6235,317.5764 L562.9976,314.1637 L569.8114,318.6222 L561.8025,320.0928 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="431" cy="287.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,255.5 L250,255.5 C260.2799,255.5 270.0761,253.1736 279.2968,249.2304 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M280.6244,252.0054 L281.3781,248.2347 L277.9693,246.4554 L286.2344,245.9116 L280.6244,252.0054 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="255.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,288.5 L176,288.5 C190.7397,288.5 204.8606,279.4373 214.9634,270.8105 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M217.0554,273.1068 L216.6856,269.2415 L212.8713,268.5143 L220.7041,265.5804 L217.0554,273.1068 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="288.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,375.5 L443,375.5 C501.1954,375.5 570.0334,375.5 602.8032,375.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M602.8032,378.6551 L605.1696,375.5 L602.8032,372.3449 L610.691,375.5 L602.8032,378.6551 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="375.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,395.5 L443,395.5 C501.6215,395.5 570.7141,403.0553 603.2573,407.0654 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M602.8828,410.0484 L605.4946,407.3463 L603.6319,404.0823 L610.7149,408.0018 L602.8828,410.0484 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="395.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M430,457.5 L443,457.5 C497.8067,457.5 562.0527,457.5 596.7211,457.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M596.7211,460.599 L599.0454,457.5 L596.7211,454.401 L604.4687,457.5 L596.7211,460.599 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="430" cy="457.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M237,343.5 L250,343.5 C260.2744,343.5 270.625,345.2921 280.6762,348.2172 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M279.7479,351.1215 L282.8544,348.9135 L281.6045,345.313 L287.9368,350.538 L279.7479,351.1215 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="237" cy="343.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M163,309.5 L176,309.5 C191.046,309.5 205.3259,319.0693 215.4179,328.0545 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M213.2466,330.3392 L217.1315,329.683 L217.5892,325.7697 L221.1298,333.4828 L213.2466,330.3392 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="163" cy="309.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>