drawio_dsl 0.8.11 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +26 -0
  3. data/config/configuration.json +1191 -8
  4. data/docs/project-plan/project.drawio +89 -77
  5. data/docs/project-plan/project_done.svg +1 -1
  6. data/docs/project-plan/project_in_progress.svg +1 -1
  7. data/docs/samples/grid-direction-vertical.svg +1 -1
  8. data/docs/samples/styles-glass.svg +1 -1
  9. data/docs/samples/styles-plain.svg +1 -1
  10. data/docs/samples/styles-rounded.svg +1 -1
  11. data/docs/samples/styles-shadow.svg +1 -1
  12. data/docs/samples/styles-sketch.svg +1 -1
  13. data/docs/samples/themes-random.svg +1 -1
  14. data/docs/samples/willoughby-council.svg +1 -1
  15. data/lib/drawio_dsl/configuration.rb +110 -20
  16. data/lib/drawio_dsl/configuration_shapes.rb +9 -9
  17. data/lib/drawio_dsl/dom_builder_shapes.rb +3 -3
  18. data/lib/drawio_dsl/drawio_shapes.rb +3 -3
  19. data/lib/drawio_dsl/schema/_.rb +55 -45
  20. data/lib/drawio_dsl/schema/diagram.rb +17 -11
  21. data/lib/drawio_dsl/schema/element.rb +23 -0
  22. data/lib/drawio_dsl/schema/{shapes/face.rb → elements/actor.rb} +2 -2
  23. data/lib/drawio_dsl/schema/{shapes/cross.rb → elements/actor2.rb} +2 -2
  24. data/lib/drawio_dsl/schema/{shapes/actor2.rb → elements/callout.rb} +2 -2
  25. data/lib/drawio_dsl/schema/{shapes/callout.rb → elements/callout2.rb} +2 -2
  26. data/lib/drawio_dsl/schema/elements/callout3.rb +9 -0
  27. data/lib/drawio_dsl/schema/elements/callout4.rb +9 -0
  28. data/lib/drawio_dsl/schema/{shapes/actor.rb → elements/circle.rb} +2 -2
  29. data/lib/drawio_dsl/schema/elements/cloud.rb +9 -0
  30. data/lib/drawio_dsl/schema/elements/container.rb +9 -0
  31. data/lib/drawio_dsl/schema/elements/container2.rb +9 -0
  32. data/lib/drawio_dsl/schema/elements/container3.rb +9 -0
  33. data/lib/drawio_dsl/schema/elements/container4.rb +9 -0
  34. data/lib/drawio_dsl/schema/elements/cross.rb +9 -0
  35. data/lib/drawio_dsl/schema/elements/database.rb +9 -0
  36. data/lib/drawio_dsl/schema/{shapes/circle.rb → elements/db_json.rb} +2 -2
  37. data/lib/drawio_dsl/schema/elements/diamond.rb +9 -0
  38. data/lib/drawio_dsl/schema/elements/document.rb +9 -0
  39. data/lib/drawio_dsl/schema/elements/ellipse.rb +9 -0
  40. data/lib/drawio_dsl/schema/elements/embed_col200.rb +9 -0
  41. data/lib/drawio_dsl/schema/elements/embed_col50.rb +9 -0
  42. data/lib/drawio_dsl/schema/{shapes/callout2.rb → elements/embed_row.rb} +2 -2
  43. data/lib/drawio_dsl/schema/elements/envelop.rb +9 -0
  44. data/lib/drawio_dsl/schema/elements/face.rb +9 -0
  45. data/lib/drawio_dsl/schema/elements/group.rb +9 -0
  46. data/lib/drawio_dsl/schema/elements/hexagon.rb +9 -0
  47. data/lib/drawio_dsl/schema/elements/interface.rb +9 -0
  48. data/lib/drawio_dsl/schema/elements/klass.rb +9 -0
  49. data/lib/drawio_dsl/schema/elements/note.rb +9 -0
  50. data/lib/drawio_dsl/schema/elements/process.rb +9 -0
  51. data/lib/drawio_dsl/schema/elements/rectangle.rb +9 -0
  52. data/lib/drawio_dsl/schema/elements/rectangle2.rb +9 -0
  53. data/lib/drawio_dsl/schema/{shapes/cloud.rb → elements/square.rb} +2 -2
  54. data/lib/drawio_dsl/schema/elements/step.rb +9 -0
  55. data/lib/drawio_dsl/schema/elements/tick.rb +9 -0
  56. data/lib/drawio_dsl/schema/elements/todo.rb +9 -0
  57. data/lib/drawio_dsl/schema/elements/triangle.rb +9 -0
  58. data/lib/drawio_dsl/schema/line.rb +24 -0
  59. data/lib/drawio_dsl/schema/lines/solid.rb +9 -0
  60. data/lib/drawio_dsl/schema/page.rb +15 -7
  61. data/lib/drawio_dsl/schema/{shapes/shape.rb → shape.rb} +19 -22
  62. data/lib/drawio_dsl/schema/text.rb +23 -0
  63. data/lib/drawio_dsl/schema/{shapes → texts}/h1.rb +2 -2
  64. data/lib/drawio_dsl/schema/{shapes → texts}/h2.rb +2 -2
  65. data/lib/drawio_dsl/schema/{shapes → texts}/h3.rb +2 -2
  66. data/lib/drawio_dsl/schema/{shapes → texts}/h4.rb +2 -2
  67. data/lib/drawio_dsl/schema/{shapes → texts}/h5.rb +2 -2
  68. data/lib/drawio_dsl/schema/{shapes → texts}/h6.rb +2 -2
  69. data/lib/drawio_dsl/schema/{shapes → texts}/p.rb +2 -2
  70. data/lib/drawio_dsl/version.rb +1 -1
  71. data/lib/drawio_dsl.rb +7 -10
  72. data/package-lock.json +2 -2
  73. data/package.json +1 -1
  74. metadata +50 -48
  75. data/lib/drawio_dsl/configuration_themes.rb +0 -63
  76. data/lib/drawio_dsl/schema/shapes/callout3.rb +0 -9
  77. data/lib/drawio_dsl/schema/shapes/callout4.rb +0 -9
  78. data/lib/drawio_dsl/schema/shapes/container.rb +0 -9
  79. data/lib/drawio_dsl/schema/shapes/container2.rb +0 -9
  80. data/lib/drawio_dsl/schema/shapes/container3.rb +0 -9
  81. data/lib/drawio_dsl/schema/shapes/container4.rb +0 -9
  82. data/lib/drawio_dsl/schema/shapes/database.rb +0 -9
  83. data/lib/drawio_dsl/schema/shapes/db_json.rb +0 -9
  84. data/lib/drawio_dsl/schema/shapes/diamond.rb +0 -9
  85. data/lib/drawio_dsl/schema/shapes/document.rb +0 -9
  86. data/lib/drawio_dsl/schema/shapes/ellipse.rb +0 -9
  87. data/lib/drawio_dsl/schema/shapes/embed_col200.rb +0 -9
  88. data/lib/drawio_dsl/schema/shapes/embed_col50.rb +0 -9
  89. data/lib/drawio_dsl/schema/shapes/embed_row.rb +0 -9
  90. data/lib/drawio_dsl/schema/shapes/envelop.rb +0 -9
  91. data/lib/drawio_dsl/schema/shapes/group.rb +0 -9
  92. data/lib/drawio_dsl/schema/shapes/hexagon.rb +0 -9
  93. data/lib/drawio_dsl/schema/shapes/interface.rb +0 -9
  94. data/lib/drawio_dsl/schema/shapes/klass.rb +0 -9
  95. data/lib/drawio_dsl/schema/shapes/line.rb +0 -9
  96. data/lib/drawio_dsl/schema/shapes/note.rb +0 -9
  97. data/lib/drawio_dsl/schema/shapes/process.rb +0 -9
  98. data/lib/drawio_dsl/schema/shapes/rectangle.rb +0 -9
  99. data/lib/drawio_dsl/schema/shapes/rectangle2.rb +0 -9
  100. data/lib/drawio_dsl/schema/shapes/square.rb +0 -9
  101. data/lib/drawio_dsl/schema/shapes/step.rb +0 -9
  102. data/lib/drawio_dsl/schema/shapes/tick.rb +0 -9
  103. data/lib/drawio_dsl/schema/shapes/todo.rb +0 -9
  104. data/lib/drawio_dsl/schema/shapes/triangle.rb +0 -9
@@ -1,3 +1,3 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1062px" height="1617px" viewBox="-0.5 -0.5 1062 1617"><defs/><g><path d="M 720 50 C 720 30 720 20 740 20 C 726.67 20 726.67 0 740 0 C 753.33 0 753.33 20 740 20 C 760 20 760 30 760 50 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 25px; margin-left: 721px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">actor</div></div></div></foreignObject><text x="740" y="29" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">actor</text></switch></g><ellipse cx="960" cy="6.25" rx="7.5" ry="6.25" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><path d="M 960 12.5 L 960 33.33 M 960 16.67 L 945 16.67 M 960 16.67 L 975 16.67 M 960 33.33 L 945 50 M 960 33.33 L 975 50" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 75px; margin-left: 946px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">actor2</div></div></div></foreignObject><text x="960" y="79" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">actor2</text></switch></g><path d="M 0 230 L 0 195 Q 0 185 10 185 L 150 185 Q 160 185 160 195 L 160 265 Q 160 275 150 275 L 110 275 Q 100 275 94.45 283.32 L 80 305 L 80 285 Q 80 275 70 275 L 10 275 Q 0 275 0 265 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 230px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout</div></div></div></foreignObject><text x="80" y="234" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout</text></switch></g><path d="M 250.02 281.93 C 222.66 259.06 220 221.37 243.91 195.67 C 267.83 169.96 310.17 165.01 340.83 184.33 C 371.48 203.64 380 240.64 360.32 269.02 C 340.64 297.39 299.48 307.46 266.1 292.06 C 258.59 311.13 246.49 323.25 233.2 325 C 241.56 314.51 247.51 299.26 250.02 281.93 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="15" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 245px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout2</div></div></div></foreignObject><text x="300" y="249" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout2</text></switch></g><path d="M 461.41 247.87 C 455.53 251.08 448.91 248.21 445.15 240.81 C 441.39 233.4 441.39 223.24 445.15 215.84 C 448.91 208.44 455.53 205.56 461.41 208.78 C 461.37 195.74 466.82 184.03 475.09 179.39 C 483.36 174.75 492.72 178.15 498.58 187.93 C 502.34 174.08 511.45 164.99 521.58 164.99 C 531.72 164.99 540.83 174.08 544.59 187.93 C 550.6 179.95 559.18 177.7 566.7 182.12 C 574.21 186.55 579.37 196.89 579.98 208.78 C 585.87 205.56 592.49 208.44 596.25 215.84 C 600.01 223.24 600.01 233.4 596.25 240.81 C 592.49 248.21 585.87 251.08 579.98 247.87 C 579.34 260.43 573.64 271.2 565.52 275.19 C 557.4 279.17 548.45 275.59 542.82 266.11 C 538.34 277.08 530.28 283.8 521.58 283.8 C 512.89 283.8 504.83 277.08 500.35 266.11 C 496.07 278.77 483.89 284.96 473.14 279.92 C 462.39 274.88 457.14 260.53 461.41 247.87 Z" fill="#f8cecc" stroke="#b85450" stroke-linejoin="round" stroke-miterlimit="10" pointer-events="all"/><rect x="440" y="165" width="0" height="0" fill="none" stroke="#b85450" pointer-events="all"/><ellipse cx="466.72" cy="292.17" rx="10.618294436456145" ry="7.0358306188925095" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><ellipse cx="454.33" cy="309.1" rx="6.724919809755558" ry="4.690553745928339" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><ellipse cx="444.25" cy="321.61" rx="4.2473177745824575" ry="3.387622149837134" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 245px; margin-left: 441px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout3</div></div></div></foreignObject><text x="520" y="249" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout3</text></switch></g><path d="M 682.5 290 L 665 290 C 662.24 290 660 287.76 660 285 L 660 190 C 660 187.24 662.24 185 665 185 L 815 185 C 817.76 185 820 187.24 820 190 L 820 285 C 820 287.76 817.76 290 815 290 L 697.5 290 C 694.54 297.77 685.79 303.6 675 305 C 678.89 302.15 681.68 296.57 682.5 290 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 238px; margin-left: 661px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout4</div></div></div></foreignObject><text x="740" y="241" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout4</text></switch></g><ellipse cx="960" cy="245" rx="80" ry="80" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 245px; margin-left: 881px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">circle</div></div></div></foreignObject><text x="960" y="249" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">circle</text></switch></g><path d="M 40 425 C 8 425 0 465 25.6 473 C 0 490.6 28.8 529 49.6 513 C 64 545 112 545 128 513 C 160 513 160 481 140 465 C 160 433 128 401 100 417 C 80 393 48 393 40 425 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 465px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">cloud</div></div></div></foreignObject><text x="80" y="469" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">cloud</text></switch></g><path d="M 380 408 L 380 395.35 Q 380 385 369.65 385 L 230.35 385 Q 220 385 220 395.35 L 220 408" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><path d="M 220 408 L 220 534.65 Q 220 545 230.35 545 L 369.65 545 Q 380 545 380 534.65 L 380 408" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 220 408 L 380 408" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 397px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container</div></div></div></foreignObject><text x="300" y="400" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container</text></switch></g><path d="M 463 385 L 450.35 385 Q 440 385 440 395.35 L 440 534.65 Q 440 545 450.35 545 L 463 545" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 463 545 L 589.65 545 Q 600 545 600 534.65 L 600 395.35 Q 600 385 589.65 385 L 463 385" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 463 385 L 463 545" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)rotate(-90 451.5 465)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 465px; margin-left: 373px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container2</div></div></div></foreignObject><text x="452" y="469" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container2</text></switch></g><path d="M 820 435 L 820 407.5 Q 820 385 797.5 385 L 682.5 385 Q 660 385 660 407.5 L 660 435" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 660 435 L 660 522.5 Q 660 545 682.5 545 L 797.5 545 Q 820 545 820 522.5 L 820 435" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 660 435 L 820 435" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 410px; margin-left: 661px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container3</div></div></div></foreignObject><text x="740" y="414" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container3</text></switch></g><path d="M 1040 408 L 1040 395.35 Q 1040 385 1029.65 385 L 890.35 385 Q 880 385 880 395.35 L 880 408" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 880 408 L 880 534.65 Q 880 545 890.35 545 L 1029.65 545 Q 1040 545 1040 534.65 L 1040 408" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 880 408 L 1040 408" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 397px; margin-left: 881px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container4</div></div></div></foreignObject><text x="960" y="400" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container4</text></switch></g><path d="M 55 660 L 69.58 660 L 80 674.8 L 90.42 660 L 105 660 L 87.29 685 L 105 710 L 90.42 710 L 80 695.2 L 69.58 710 L 55 710 L 71.67 685 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 717px; margin-left: 56px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">cross</div></div></div></foreignObject><text x="80" y="729" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">cross</text></switch></g><path d="M 220 635 L 380 635 L 380 735 L 220 735 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 220 635 L 300 685 L 380 635" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 685px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">envelop</div></div></div></foreignObject><text x="300" y="689" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">envelop</text></switch></g><path d="M 440 711.67 L 440 658.33 C 440 650.97 475.82 645 520 645 C 564.18 645 600 650.97 600 658.33 L 600 711.67 C 600 719.03 564.18 725 520 725 C 475.82 725 440 719.03 440 711.67 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 440 658.33 C 440 665.7 475.82 671.67 520 671.67 C 564.18 671.67 600 665.7 600 658.33" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 685px; margin-left: 441px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">database</div></div></div></foreignObject><text x="520" y="689" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">database</text></switch></g><path d="M 660 698.33 L 660 671.67 C 660 667.98 695.82 665 740 665 C 784.18 665 820 667.98 820 671.67 L 820 698.33 C 820 702.02 784.18 705 740 705 C 695.82 705 660 702.02 660 698.33 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 660 671.67 C 660 675.35 695.82 678.33 740 678.33 C 784.18 678.33 820 675.35 820 671.67" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 685px; margin-left: 661px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">db_json</div></div></div></foreignObject><text x="740" y="689" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">db_json</text></switch></g><path d="M 935 660 L 952.93 642.07 Q 960 635 967.07 642.07 L 1002.93 677.93 Q 1010 685 1002.93 692.07 L 967.07 727.93 Q 960 735 952.93 727.93 L 917.07 692.07 Q 910 685 917.07 677.93 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 685px; margin-left: 911px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">diamond</div></div></div></foreignObject><text x="960" y="689" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">diamond</text></switch></g><path d="M 158.38 847.86 L 158.38 985 L 0 985 L 0 825 L 135.76 825 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 135.76 825 C 137.6 830.35 134.57 835.86 127.68 839.69 L 160 849 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 905px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">document</div></div></div></foreignObject><text x="80" y="909" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">document</text></switch></g><ellipse cx="300" cy="905" rx="100" ry="60" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 905px; margin-left: 201px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">ellipse</div></div></div></foreignObject><text x="300" y="909" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">ellipse</text></switch></g><rect x="415" y="800" width="210" height="210" rx="31.5" ry="31.5" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 208px; height: 1px; padding-top: 807px; margin-left: 416px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 20px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">group</div></div></div></foreignObject><text x="520" y="827" fill="#333333" font-family="Helvetica" font-size="20px" text-anchor="middle">group</text></switch></g><path d="M 665 875 L 683.6 852.68 Q 690 845 700 845 L 780 845 Q 790 845 796.4 852.68 L 833.6 897.32 Q 840 905 833.6 912.68 L 796.4 957.32 Q 790 965 780 965 L 700 965 Q 690 965 683.6 957.32 L 646.4 912.68 Q 640 905 646.4 897.32 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 905px; margin-left: 641px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">hexagon</div></div></div></foreignObject><text x="740" y="909" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">hexagon</text></switch></g><rect x="880" y="825" width="160" height="160" rx="24" ry="24" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 162px; height: 160px; padding-top: 825px; margin-left: 880px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: left; width: 160px; height: 160px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; width: 100%; height: 100%; white-space: normal; overflow-wrap: normal;">interface</div></div></div></foreignObject><text x="880" y="909" fill="#333333" font-family="Helvetica" font-size="12px">interface</text></switch></g><rect x="0" y="1045" width="160" height="160" rx="24" ry="24" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 162px; height: 160px; padding-top: 1045px; margin-left: 0px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: left; width: 160px; height: 160px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; width: 100%; height: 100%; white-space: normal; overflow-wrap: normal;">klass</div></div></div></foreignObject><text x="0" y="1129" fill="#333333" font-family="Helvetica" font-size="12px">klass</text></switch></g><path d="M 220 1045 L 350 1045 L 380 1075 L 380 1205 L 220 1205 L 220 1045 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 350 1045 L 350 1075 L 380 1075" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 1125px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">note</div></div></div></foreignObject><text x="300" y="1129" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">note</text></switch></g><rect x="420" y="1065" width="200" height="120" rx="18" ry="18" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><path d="M 440 1065 L 440 1185 M 600 1065 L 600 1185" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 1125px; margin-left: 441px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">process</div></div></div></foreignObject><text x="520" y="1129" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">process</text></switch></g><rect x="640" y="1065" width="200" height="120" rx="18" ry="18" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1125px; margin-left: 641px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">rectangle</div></div></div></foreignObject><text x="740" y="1129" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">rectangle</text></switch></g><path d="M 867.96 1065 C 863.57 1065 860 1067.6 860 1070.8 C 860 1072.55 861.1 1074.21 862.97 1075.32 C 861.09 1076.41 860 1078.08 860 1079.83 C 860 1081.59 861.1 1083.25 862.97 1084.35 C 861.09 1085.45 860 1087.11 860 1088.86 C 860 1090.62 861.1 1092.28 862.97 1093.38 C 861.09 1094.48 860 1096.14 860 1097.9 C 860 1099.65 861.1 1101.32 862.97 1102.42 C 861.09 1103.51 860 1105.18 860 1106.93 C 860 1108.69 861.1 1110.35 862.97 1111.45 C 861.09 1112.55 860 1114.21 860 1115.97 C 860 1117.72 861.1 1119.38 862.97 1120.48 C 861.09 1121.58 860 1123.24 860 1125 C 860 1126.76 861.1 1128.42 862.97 1129.51 C 861.09 1130.61 860 1132.28 860 1134.03 C 860 1135.79 861.1 1137.45 862.97 1138.55 C 861.09 1139.65 860 1141.31 860 1143.07 C 860 1144.82 861.1 1146.48 862.97 1147.58 C 861.09 1148.68 860 1150.34 860 1152.1 C 860 1153.86 861.1 1155.52 862.97 1156.61 C 861.09 1157.72 860 1159.38 860 1161.13 C 860 1162.89 861.1 1164.55 862.97 1165.65 C 861.09 1166.74 860 1168.41 860 1170.17 C 860 1171.92 861.1 1173.58 862.97 1174.68 C 861.09 1175.78 860 1177.45 860 1179.2 C 860 1182.4 863.57 1185 867.96 1185 C 870.62 1185 873.12 1184.03 874.59 1182.41 C 876.06 1184.03 878.55 1185 881.22 1185 C 883.84 1185 886.3 1184.05 887.79 1182.48 C 889.27 1184.05 891.72 1185 894.35 1185 C 896.97 1185 899.43 1184.05 900.91 1182.48 C 902.39 1184.05 904.85 1185 907.47 1185 C 910.1 1185 912.55 1184.05 914.04 1182.48 C 915.52 1184.05 917.97 1185 920.6 1185 C 923.23 1185 925.68 1184.05 927.17 1182.48 C 928.65 1184.05 931.1 1185 933.73 1185 C 936.35 1185 938.81 1184.05 940.3 1182.48 C 941.78 1184.05 944.23 1185 946.85 1185 C 949.48 1185 951.94 1184.05 953.42 1182.48 C 954.91 1184.05 957.36 1185 959.98 1185 C 962.61 1185 965.06 1184.05 966.55 1182.48 C 968.04 1184.05 970.48 1185 973.11 1185 C 975.73 1185 978.2 1184.05 979.68 1182.48 C 981.16 1184.05 983.61 1185 986.24 1185 C 988.86 1185 991.33 1184.05 992.8 1182.48 C 994.29 1184.05 996.75 1185 999.36 1185 C 1002 1185 1004.45 1184.05 1005.93 1182.48 C 1007.42 1184.05 1009.87 1185 1012.5 1185 C 1015.12 1185 1017.58 1184.05 1019.06 1182.48 C 1020.54 1184.05 1023 1185 1025.62 1185 C 1028.25 1185 1030.71 1184.05 1032.18 1182.48 C 1033.67 1184.05 1036.13 1185 1038.75 1185 C 1041.42 1185 1043.92 1184.01 1045.4 1182.39 C 1046.86 1184.02 1049.36 1185 1052.04 1185 C 1056.43 1185 1060 1182.4 1060 1179.2 C 1060 1177.45 1058.91 1175.79 1057.03 1174.68 C 1058.91 1173.59 1060 1171.92 1060 1170.17 C 1060 1168.41 1058.91 1166.75 1057.03 1165.65 C 1058.91 1164.55 1060 1162.89 1060 1161.13 C 1060 1159.38 1058.91 1157.72 1057.03 1156.62 C 1058.91 1155.52 1060 1153.86 1060 1152.1 C 1060 1150.35 1058.91 1148.69 1057.03 1147.58 C 1058.91 1146.49 1060 1144.82 1060 1143.07 C 1060 1141.31 1058.91 1139.65 1057.03 1138.55 C 1058.91 1137.45 1060 1135.79 1060 1134.03 C 1060 1132.28 1058.91 1130.62 1057.03 1129.52 C 1058.91 1128.42 1060 1126.76 1060 1125 C 1060 1123.25 1058.91 1121.58 1057.03 1120.49 C 1058.91 1119.38 1060 1117.72 1060 1115.97 C 1060 1114.21 1058.91 1112.55 1057.03 1111.45 C 1058.91 1110.35 1060 1108.69 1060 1106.93 C 1060 1105.18 1058.91 1103.52 1057.03 1102.42 C 1058.91 1101.32 1060 1099.66 1060 1097.9 C 1060 1096.14 1058.91 1094.48 1057.03 1093.39 C 1058.91 1092.28 1060 1090.62 1060 1088.86 C 1060 1087.11 1058.91 1085.45 1057.03 1084.35 C 1058.91 1083.25 1060 1081.59 1060 1079.83 C 1060 1078.08 1058.91 1076.42 1057.03 1075.32 C 1058.91 1074.22 1060 1072.55 1060 1070.8 C 1060 1067.6 1056.43 1065 1052.04 1065 C 1049.37 1065 1046.86 1065.99 1045.4 1067.61 C 1043.93 1065.98 1041.42 1065 1038.75 1065 C 1036.12 1065 1033.66 1065.95 1032.18 1067.52 C 1030.7 1065.95 1028.24 1065 1025.62 1065 C 1022.99 1065 1020.53 1065.95 1019.05 1067.52 C 1017.57 1065.95 1015.11 1065 1012.5 1065 C 1009.86 1065 1007.41 1065.95 1005.92 1067.52 C 1004.44 1065.95 1001.99 1065 999.36 1065 C 996.74 1065 994.28 1065.95 992.79 1067.52 C 991.32 1065.95 988.86 1065 986.24 1065 C 983.61 1065 981.15 1065.95 979.67 1067.52 C 978.19 1065.95 975.73 1065 973.11 1065 C 970.48 1065 968.03 1065.95 966.54 1067.52 C 965.06 1065.95 962.61 1065 959.98 1065 C 957.36 1065 954.9 1065.95 953.41 1067.52 C 951.94 1065.95 949.48 1065 946.85 1065 C 944.23 1065 941.77 1065.95 940.29 1067.52 C 938.81 1065.95 936.35 1065 933.73 1065 C 931.1 1065 928.65 1065.95 927.16 1067.52 C 925.67 1065.95 923.23 1065 920.6 1065 C 917.97 1065 915.52 1065.95 914.03 1067.52 C 912.55 1065.95 910.1 1065 907.47 1065 C 904.85 1065 902.39 1065.95 900.91 1067.52 C 899.42 1065.95 896.97 1065 894.35 1065 C 891.72 1065 889.26 1065.95 887.78 1067.52 C 886.29 1065.95 883.84 1065 881.22 1065 C 878.55 1065 876.06 1065.97 874.59 1067.59 C 873.12 1065.97 870.62 1065 867.96 1065 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1125px; margin-left: 861px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">rectangle2</div></div></div></foreignObject><text x="960" y="1129" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">rectangle2</text></switch></g><rect x="0" y="1265" width="160" height="160" rx="24" ry="24" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 1345px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">square</div></div></div></foreignObject><text x="80" y="1349" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">square</text></switch></g><path d="M 250 1325 L 244.47 1313.94 Q 240 1305 250 1305 L 330 1305 Q 340 1305 344.47 1313.94 L 355.53 1336.06 Q 360 1345 355.53 1353.94 L 344.47 1376.06 Q 340 1385 330 1385 L 250 1385 Q 240 1385 244.47 1376.06 L 255.53 1353.94 Q 260 1345 255.53 1336.06 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1345px; margin-left: 241px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">step</div></div></div></foreignObject><text x="300" y="1349" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">step</text></switch></g><path d="M 495.21 1354.19 C 495.75 1352.5 497.08 1351.08 498.89 1350.3 C 500.7 1349.52 502.81 1349.44 504.69 1350.09 C 507.43 1351.24 509.55 1353.26 510.62 1355.72 C 515.5 1343.7 522.94 1332.58 532.54 1322.92 C 535.26 1320.78 539.07 1320 542.61 1320.87 C 543.51 1320.99 544.28 1321.51 544.64 1322.24 C 545 1322.96 544.9 1323.8 544.38 1324.45 C 531.34 1337.2 521.64 1352.24 515.95 1368.54 C 512.59 1370 508.64 1370 505.28 1368.54 C 502.75 1363.67 499.35 1359.17 495.21 1355.21 C 495 1354.89 495 1354.5 495.21 1354.19 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 1377px; margin-left: 496px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">tick</div></div></div></foreignObject><text x="520" y="1389" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">tick</text></switch></g><rect x="590" y="1315" width="300" height="60" rx="9" ry="9" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 298px; height: 1px; padding-top: 1345px; margin-left: 591px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">todo</div></div></div></foreignObject><text x="740" y="1349" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">todo</text></switch></g><ellipse cx="960" cy="1345" rx="50" ry="50" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><path d="M 921.22 1350.1 C 921.22 1365.32 938.58 1377.65 960 1377.65 C 981.42 1377.65 998.78 1365.32 998.78 1350.1" fill="none" stroke="#b85450" stroke-width="2.04" stroke-miterlimit="10" pointer-events="none"/><rect x="910" y="1295" width="0" height="0" fill="none" stroke="#b85450" pointer-events="none"/><path d="M 926.33 1347.04 L 916.12 1353.16" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 993.67 1347.04 L 1003.88 1353.16" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><ellipse cx="937.55" cy="1330.71" rx="3.0612244897959187" ry="8.16326530612245" fill="#f8cecc" stroke="#b85450" stroke-width="6.12" pointer-events="none"/><ellipse cx="982.45" cy="1330.71" rx="3.0612244897959187" ry="8.16326530612245" fill="#f8cecc" stroke="#b85450" stroke-width="6.12" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1402px; margin-left: 911px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">face</div></div></div></foreignObject><text x="960" y="1414" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">face</text></switch></g><path d="M 30 1565 L 30 1525 Q 30 1515 38.94 1519.47 L 121.06 1560.53 Q 130 1565 121.06 1569.47 L 38.94 1610.53 Q 30 1615 30 1605 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1565px; margin-left: 31px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">triangle</div></div></div></foreignObject><text x="80" y="1569" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">triangle</text></switch></g><rect x="200" y="1545" width="200" height="40" fill="#f8cecc" stroke="none" pointer-events="none"/><path d="M 200 1545 M 400 1545 M 400 1585 L 200 1585" fill="none" stroke="#b85450" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1565px; margin-left: 201px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">embed_row</div></div></div></foreignObject><text x="300" y="1569" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">embed_row</text></switch></g><rect x="495" y="1545" width="50" height="40" fill="#f8cecc" stroke="none" pointer-events="none"/><path d="M 495 1545 M 545 1545 M 545 1585 M 495 1585" fill="none" stroke="#b85450" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 1565px; margin-left: 496px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 36px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">embed_col50</div></div></div></foreignObject><text x="520" y="1569" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">embed_co...</text></switch></g><rect x="665" y="1545" width="150" height="40" fill="#f8cecc" stroke="none" pointer-events="none"/><path d="M 665 1545 M 815 1545 M 815 1585 M 665 1585" fill="none" stroke="#b85450" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 142px; height: 1px; padding-top: 1565px; margin-left: 673px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 36px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">embed_col200</div></div></div></foreignObject><text x="673" y="1569" fill="#333333" font-family="Helvetica" font-size="12px">embed_col200</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Text is not SVG - cannot display</text></a></switch></svg>
3
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1062px" height="1837px" viewBox="-0.5 -0.5 1062 1837"><defs/><g><rect x="250" y="0" width="100" height="50" rx="7.5" ry="7.5" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 98px; height: 1px; padding-top: 7px; margin-left: 252px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 89px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">h1</div></div></div></foreignObject><text x="252" y="96" fill="#ffffff" font-family="Helvetica" font-size="89px" font-weight="bold">h1</text></switch></g><rect x="470" y="0" width="100" height="50" rx="7.5" ry="7.5" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 98px; height: 1px; padding-top: 7px; margin-left: 472px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 67px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">h2</div></div></div></foreignObject><text x="472" y="74" fill="#ffffff" font-family="Helvetica" font-size="67px" font-weight="bold">h2</text></switch></g><rect x="690" y="0" width="100" height="50" rx="7.5" ry="7.5" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 98px; height: 1px; padding-top: 7px; margin-left: 692px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 50px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">h3</div></div></div></foreignObject><text x="692" y="57" fill="#ffffff" font-family="Helvetica" font-size="50px" font-weight="bold">h3</text></switch></g><rect x="910" y="0" width="100" height="50" rx="7.5" ry="7.5" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 98px; height: 1px; padding-top: 7px; margin-left: 912px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 37px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">h4</div></div></div></foreignObject><text x="912" y="44" fill="#ffffff" font-family="Helvetica" font-size="37px" font-weight="bold">h4</text></switch></g><rect x="30" y="220" width="100" height="50" rx="7.5" ry="7.5" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 98px; height: 1px; padding-top: 227px; margin-left: 32px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 28px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">h5</div></div></div></foreignObject><text x="32" y="255" fill="#ffffff" font-family="Helvetica" font-size="28px" font-weight="bold">h5</text></switch></g><rect x="250" y="220" width="100" height="50" rx="7.5" ry="7.5" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 98px; height: 1px; padding-top: 227px; margin-left: 252px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 21px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">h6</div></div></div></foreignObject><text x="252" y="248" fill="#ffffff" font-family="Helvetica" font-size="21px" font-weight="bold">h6</text></switch></g><rect x="470" y="220" width="100" height="50" rx="7.5" ry="7.5" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 98px; height: 1px; padding-top: 227px; margin-left: 472px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 16px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">p</div></div></div></foreignObject><text x="472" y="243" fill="#ffffff" font-family="Helvetica" font-size="16px" font-weight="bold">p</text></switch></g><path d="M 720 270 C 720 250 720 240 740 240 C 726.67 240 726.67 220 740 220 C 753.33 220 753.33 240 740 240 C 760 240 760 250 760 270 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 245px; margin-left: 721px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">actor</div></div></div></foreignObject><text x="740" y="249" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">actor</text></switch></g><ellipse cx="960" cy="226.25" rx="7.5" ry="6.25" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><path d="M 960 232.5 L 960 253.33 M 960 236.67 L 945 236.67 M 960 236.67 L 975 236.67 M 960 253.33 L 945 270 M 960 253.33 L 975 270" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 295px; margin-left: 946px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">actor2</div></div></div></foreignObject><text x="960" y="299" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">actor2</text></switch></g><path d="M 0 450 L 0 415 Q 0 405 10 405 L 150 405 Q 160 405 160 415 L 160 485 Q 160 495 150 495 L 110 495 Q 100 495 94.45 503.32 L 80 525 L 80 505 Q 80 495 70 495 L 10 495 Q 0 495 0 485 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 450px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout</div></div></div></foreignObject><text x="80" y="454" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout</text></switch></g><path d="M 250.02 501.93 C 222.66 479.06 220 441.37 243.91 415.67 C 267.83 389.96 310.17 385.01 340.83 404.33 C 371.48 423.64 380 460.64 360.32 489.02 C 340.64 517.39 299.48 527.46 266.1 512.06 C 258.59 531.13 246.49 543.25 233.2 545 C 241.56 534.51 247.51 519.26 250.02 501.93 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="15" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 465px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout2</div></div></div></foreignObject><text x="300" y="469" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout2</text></switch></g><path d="M 461.41 467.87 C 455.53 471.08 448.91 468.21 445.15 460.81 C 441.39 453.4 441.39 443.24 445.15 435.84 C 448.91 428.44 455.53 425.56 461.41 428.78 C 461.37 415.74 466.82 404.03 475.09 399.39 C 483.36 394.75 492.72 398.15 498.58 407.93 C 502.34 394.08 511.45 384.99 521.58 384.99 C 531.72 384.99 540.83 394.08 544.59 407.93 C 550.6 399.95 559.18 397.7 566.7 402.12 C 574.21 406.55 579.37 416.89 579.98 428.78 C 585.87 425.56 592.49 428.44 596.25 435.84 C 600.01 443.24 600.01 453.4 596.25 460.81 C 592.49 468.21 585.87 471.08 579.98 467.87 C 579.34 480.43 573.64 491.2 565.52 495.19 C 557.4 499.17 548.45 495.59 542.82 486.11 C 538.34 497.08 530.28 503.8 521.58 503.8 C 512.89 503.8 504.83 497.08 500.35 486.11 C 496.07 498.77 483.89 504.96 473.14 499.92 C 462.39 494.88 457.14 480.53 461.41 467.87 Z" fill="#f8cecc" stroke="#b85450" stroke-linejoin="round" stroke-miterlimit="10" pointer-events="all"/><rect x="440" y="385" width="0" height="0" fill="none" stroke="#b85450" pointer-events="all"/><ellipse cx="466.72" cy="512.17" rx="10.618294436456145" ry="7.0358306188925095" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><ellipse cx="454.33" cy="529.1" rx="6.724919809755558" ry="4.690553745928339" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><ellipse cx="444.25" cy="541.61" rx="4.2473177745824575" ry="3.387622149837134" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 465px; margin-left: 441px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout3</div></div></div></foreignObject><text x="520" y="469" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout3</text></switch></g><path d="M 682.5 510 L 665 510 C 662.24 510 660 507.76 660 505 L 660 410 C 660 407.24 662.24 405 665 405 L 815 405 C 817.76 405 820 407.24 820 410 L 820 505 C 820 507.76 817.76 510 815 510 L 697.5 510 C 694.54 517.77 685.79 523.6 675 525 C 678.89 522.15 681.68 516.57 682.5 510 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 458px; margin-left: 661px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">callout4</div></div></div></foreignObject><text x="740" y="461" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">callout4</text></switch></g><ellipse cx="960" cy="465" rx="80" ry="80" fill="#f8cecc" stroke="#b85450" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 465px; margin-left: 881px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">circle</div></div></div></foreignObject><text x="960" y="469" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">circle</text></switch></g><path d="M 40 645 C 8 645 0 685 25.6 693 C 0 710.6 28.8 749 49.6 733 C 64 765 112 765 128 733 C 160 733 160 701 140 685 C 160 653 128 621 100 637 C 80 613 48 613 40 645 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 685px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">cloud</div></div></div></foreignObject><text x="80" y="689" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">cloud</text></switch></g><path d="M 380 628 L 380 615.35 Q 380 605 369.65 605 L 230.35 605 Q 220 605 220 615.35 L 220 628" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="all"/><path d="M 220 628 L 220 754.65 Q 220 765 230.35 765 L 369.65 765 Q 380 765 380 754.65 L 380 628" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 220 628 L 380 628" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 617px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container</div></div></div></foreignObject><text x="300" y="620" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container</text></switch></g><path d="M 463 605 L 450.35 605 Q 440 605 440 615.35 L 440 754.65 Q 440 765 450.35 765 L 463 765" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 463 765 L 589.65 765 Q 600 765 600 754.65 L 600 615.35 Q 600 605 589.65 605 L 463 605" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 463 605 L 463 765" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)rotate(-90 451.5 685)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 685px; margin-left: 373px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container2</div></div></div></foreignObject><text x="452" y="689" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container2</text></switch></g><path d="M 820 655 L 820 627.5 Q 820 605 797.5 605 L 682.5 605 Q 660 605 660 627.5 L 660 655" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 660 655 L 660 742.5 Q 660 765 682.5 765 L 797.5 765 Q 820 765 820 742.5 L 820 655" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 660 655 L 820 655" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 630px; margin-left: 661px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container3</div></div></div></foreignObject><text x="740" y="634" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container3</text></switch></g><path d="M 1040 628 L 1040 615.35 Q 1040 605 1029.65 605 L 890.35 605 Q 880 605 880 615.35 L 880 628" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 880 628 L 880 754.65 Q 880 765 890.35 765 L 1029.65 765 Q 1040 765 1040 754.65 L 1040 628" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 880 628 L 1040 628" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 617px; margin-left: 881px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">container4</div></div></div></foreignObject><text x="960" y="620" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">container4</text></switch></g><path d="M 55 880 L 69.58 880 L 80 894.8 L 90.42 880 L 105 880 L 87.29 905 L 105 930 L 90.42 930 L 80 915.2 L 69.58 930 L 55 930 L 71.67 905 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 937px; margin-left: 56px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">cross</div></div></div></foreignObject><text x="80" y="949" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">cross</text></switch></g><path d="M 220 855 L 380 855 L 380 955 L 220 955 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 220 855 L 300 905 L 380 855" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 905px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">envelop</div></div></div></foreignObject><text x="300" y="909" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">envelop</text></switch></g><path d="M 440 931.67 L 440 878.33 C 440 870.97 475.82 865 520 865 C 564.18 865 600 870.97 600 878.33 L 600 931.67 C 600 939.03 564.18 945 520 945 C 475.82 945 440 939.03 440 931.67 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 440 878.33 C 440 885.7 475.82 891.67 520 891.67 C 564.18 891.67 600 885.7 600 878.33" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 905px; margin-left: 441px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">database</div></div></div></foreignObject><text x="520" y="909" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">database</text></switch></g><path d="M 660 918.33 L 660 891.67 C 660 887.98 695.82 885 740 885 C 784.18 885 820 887.98 820 891.67 L 820 918.33 C 820 922.02 784.18 925 740 925 C 695.82 925 660 922.02 660 918.33 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 660 891.67 C 660 895.35 695.82 898.33 740 898.33 C 784.18 898.33 820 895.35 820 891.67" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 905px; margin-left: 661px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">db_json</div></div></div></foreignObject><text x="740" y="909" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">db_json</text></switch></g><path d="M 935 880 L 952.93 862.07 Q 960 855 967.07 862.07 L 1002.93 897.93 Q 1010 905 1002.93 912.07 L 967.07 947.93 Q 960 955 952.93 947.93 L 917.07 912.07 Q 910 905 917.07 897.93 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 905px; margin-left: 911px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">diamond</div></div></div></foreignObject><text x="960" y="909" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">diamond</text></switch></g><path d="M 158.38 1067.86 L 158.38 1205 L 0 1205 L 0 1045 L 135.76 1045 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 135.76 1045 C 137.6 1050.35 134.57 1055.86 127.68 1059.69 L 160 1069 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 1125px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">document</div></div></div></foreignObject><text x="80" y="1129" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">document</text></switch></g><ellipse cx="300" cy="1125" rx="100" ry="60" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1125px; margin-left: 201px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">ellipse</div></div></div></foreignObject><text x="300" y="1129" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">ellipse</text></switch></g><rect x="415" y="1020" width="210" height="210" rx="31.5" ry="31.5" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 208px; height: 1px; padding-top: 1027px; margin-left: 416px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 20px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">group</div></div></div></foreignObject><text x="520" y="1047" fill="#333333" font-family="Helvetica" font-size="20px" text-anchor="middle">group</text></switch></g><path d="M 665 1095 L 683.6 1072.68 Q 690 1065 700 1065 L 780 1065 Q 790 1065 796.4 1072.68 L 833.6 1117.32 Q 840 1125 833.6 1132.68 L 796.4 1177.32 Q 790 1185 780 1185 L 700 1185 Q 690 1185 683.6 1177.32 L 646.4 1132.68 Q 640 1125 646.4 1117.32 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1125px; margin-left: 641px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">hexagon</div></div></div></foreignObject><text x="740" y="1129" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">hexagon</text></switch></g><rect x="880" y="1045" width="160" height="160" rx="24" ry="24" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 162px; height: 160px; padding-top: 1045px; margin-left: 880px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: left; width: 160px; height: 160px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; width: 100%; height: 100%; white-space: normal; overflow-wrap: normal;">interface</div></div></div></foreignObject><text x="880" y="1129" fill="#333333" font-family="Helvetica" font-size="12px">interface</text></switch></g><rect x="0" y="1265" width="160" height="160" rx="24" ry="24" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 162px; height: 160px; padding-top: 1265px; margin-left: 0px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: left; width: 160px; height: 160px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; width: 100%; height: 100%; white-space: normal; overflow-wrap: normal;">klass</div></div></div></foreignObject><text x="0" y="1349" fill="#333333" font-family="Helvetica" font-size="12px">klass</text></switch></g><path d="M 220 1265 L 350 1265 L 380 1295 L 380 1425 L 220 1425 L 220 1265 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 350 1265 L 350 1295 L 380 1295" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 1345px; margin-left: 221px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">note</div></div></div></foreignObject><text x="300" y="1349" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">note</text></switch></g><rect x="420" y="1285" width="200" height="120" rx="18" ry="18" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><path d="M 440 1285 L 440 1405 M 600 1285 L 600 1405" fill="none" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 1345px; margin-left: 441px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">process</div></div></div></foreignObject><text x="520" y="1349" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">process</text></switch></g><rect x="640" y="1285" width="200" height="120" rx="18" ry="18" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1345px; margin-left: 641px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">rectangle</div></div></div></foreignObject><text x="740" y="1349" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">rectangle</text></switch></g><path d="M 867.96 1285 C 863.57 1285 860 1287.6 860 1290.8 C 860 1292.55 861.1 1294.21 862.97 1295.32 C 861.09 1296.41 860 1298.08 860 1299.83 C 860 1301.59 861.1 1303.25 862.97 1304.35 C 861.09 1305.45 860 1307.11 860 1308.86 C 860 1310.62 861.1 1312.28 862.97 1313.38 C 861.09 1314.48 860 1316.14 860 1317.9 C 860 1319.65 861.1 1321.32 862.97 1322.42 C 861.09 1323.51 860 1325.18 860 1326.93 C 860 1328.69 861.1 1330.35 862.97 1331.45 C 861.09 1332.55 860 1334.21 860 1335.97 C 860 1337.72 861.1 1339.38 862.97 1340.48 C 861.09 1341.58 860 1343.24 860 1345 C 860 1346.76 861.1 1348.42 862.97 1349.51 C 861.09 1350.61 860 1352.28 860 1354.03 C 860 1355.79 861.1 1357.45 862.97 1358.55 C 861.09 1359.65 860 1361.31 860 1363.07 C 860 1364.82 861.1 1366.48 862.97 1367.58 C 861.09 1368.68 860 1370.34 860 1372.1 C 860 1373.86 861.1 1375.52 862.97 1376.61 C 861.09 1377.72 860 1379.38 860 1381.13 C 860 1382.89 861.1 1384.55 862.97 1385.65 C 861.09 1386.74 860 1388.41 860 1390.17 C 860 1391.92 861.1 1393.58 862.97 1394.68 C 861.09 1395.78 860 1397.45 860 1399.2 C 860 1402.4 863.57 1405 867.96 1405 C 870.62 1405 873.12 1404.03 874.59 1402.41 C 876.06 1404.03 878.55 1405 881.22 1405 C 883.84 1405 886.3 1404.05 887.79 1402.48 C 889.27 1404.05 891.72 1405 894.35 1405 C 896.97 1405 899.43 1404.05 900.91 1402.48 C 902.39 1404.05 904.85 1405 907.47 1405 C 910.1 1405 912.55 1404.05 914.04 1402.48 C 915.52 1404.05 917.97 1405 920.6 1405 C 923.23 1405 925.68 1404.05 927.17 1402.48 C 928.65 1404.05 931.1 1405 933.73 1405 C 936.35 1405 938.81 1404.05 940.3 1402.48 C 941.78 1404.05 944.23 1405 946.85 1405 C 949.48 1405 951.94 1404.05 953.42 1402.48 C 954.91 1404.05 957.36 1405 959.98 1405 C 962.61 1405 965.06 1404.05 966.55 1402.48 C 968.04 1404.05 970.48 1405 973.11 1405 C 975.73 1405 978.2 1404.05 979.68 1402.48 C 981.16 1404.05 983.61 1405 986.24 1405 C 988.86 1405 991.33 1404.05 992.8 1402.48 C 994.29 1404.05 996.75 1405 999.36 1405 C 1002 1405 1004.45 1404.05 1005.93 1402.48 C 1007.42 1404.05 1009.87 1405 1012.5 1405 C 1015.12 1405 1017.58 1404.05 1019.06 1402.48 C 1020.54 1404.05 1023 1405 1025.62 1405 C 1028.25 1405 1030.71 1404.05 1032.18 1402.48 C 1033.67 1404.05 1036.13 1405 1038.75 1405 C 1041.42 1405 1043.92 1404.01 1045.4 1402.39 C 1046.86 1404.02 1049.36 1405 1052.04 1405 C 1056.43 1405 1060 1402.4 1060 1399.2 C 1060 1397.45 1058.91 1395.79 1057.03 1394.68 C 1058.91 1393.59 1060 1391.92 1060 1390.17 C 1060 1388.41 1058.91 1386.75 1057.03 1385.65 C 1058.91 1384.55 1060 1382.89 1060 1381.13 C 1060 1379.38 1058.91 1377.72 1057.03 1376.62 C 1058.91 1375.52 1060 1373.86 1060 1372.1 C 1060 1370.35 1058.91 1368.69 1057.03 1367.58 C 1058.91 1366.49 1060 1364.82 1060 1363.07 C 1060 1361.31 1058.91 1359.65 1057.03 1358.55 C 1058.91 1357.45 1060 1355.79 1060 1354.03 C 1060 1352.28 1058.91 1350.62 1057.03 1349.52 C 1058.91 1348.42 1060 1346.76 1060 1345 C 1060 1343.25 1058.91 1341.58 1057.03 1340.49 C 1058.91 1339.38 1060 1337.72 1060 1335.97 C 1060 1334.21 1058.91 1332.55 1057.03 1331.45 C 1058.91 1330.35 1060 1328.69 1060 1326.93 C 1060 1325.18 1058.91 1323.52 1057.03 1322.42 C 1058.91 1321.32 1060 1319.66 1060 1317.9 C 1060 1316.14 1058.91 1314.48 1057.03 1313.39 C 1058.91 1312.28 1060 1310.62 1060 1308.86 C 1060 1307.11 1058.91 1305.45 1057.03 1304.35 C 1058.91 1303.25 1060 1301.59 1060 1299.83 C 1060 1298.08 1058.91 1296.42 1057.03 1295.32 C 1058.91 1294.22 1060 1292.55 1060 1290.8 C 1060 1287.6 1056.43 1285 1052.04 1285 C 1049.37 1285 1046.86 1285.99 1045.4 1287.61 C 1043.93 1285.98 1041.42 1285 1038.75 1285 C 1036.12 1285 1033.66 1285.95 1032.18 1287.52 C 1030.7 1285.95 1028.24 1285 1025.62 1285 C 1022.99 1285 1020.53 1285.95 1019.05 1287.52 C 1017.57 1285.95 1015.11 1285 1012.5 1285 C 1009.86 1285 1007.41 1285.95 1005.92 1287.52 C 1004.44 1285.95 1001.99 1285 999.36 1285 C 996.74 1285 994.28 1285.95 992.79 1287.52 C 991.32 1285.95 988.86 1285 986.24 1285 C 983.61 1285 981.15 1285.95 979.67 1287.52 C 978.19 1285.95 975.73 1285 973.11 1285 C 970.48 1285 968.03 1285.95 966.54 1287.52 C 965.06 1285.95 962.61 1285 959.98 1285 C 957.36 1285 954.9 1285.95 953.41 1287.52 C 951.94 1285.95 949.48 1285 946.85 1285 C 944.23 1285 941.77 1285.95 940.29 1287.52 C 938.81 1285.95 936.35 1285 933.73 1285 C 931.1 1285 928.65 1285.95 927.16 1287.52 C 925.67 1285.95 923.23 1285 920.6 1285 C 917.97 1285 915.52 1285.95 914.03 1287.52 C 912.55 1285.95 910.1 1285 907.47 1285 C 904.85 1285 902.39 1285.95 900.91 1287.52 C 899.42 1285.95 896.97 1285 894.35 1285 C 891.72 1285 889.26 1285.95 887.78 1287.52 C 886.29 1285.95 883.84 1285 881.22 1285 C 878.55 1285 876.06 1285.97 874.59 1287.59 C 873.12 1285.97 870.62 1285 867.96 1285 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1345px; margin-left: 861px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">rectangle2</div></div></div></foreignObject><text x="960" y="1349" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">rectangle2</text></switch></g><rect x="0" y="1485" width="160" height="160" rx="24" ry="24" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 1565px; margin-left: 1px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">square</div></div></div></foreignObject><text x="80" y="1569" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">square</text></switch></g><path d="M 250 1545 L 244.47 1533.94 Q 240 1525 250 1525 L 330 1525 Q 340 1525 344.47 1533.94 L 355.53 1556.06 Q 360 1565 355.53 1573.94 L 344.47 1596.06 Q 340 1605 330 1605 L 250 1605 Q 240 1605 244.47 1596.06 L 255.53 1573.94 Q 260 1565 255.53 1556.06 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1565px; margin-left: 241px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">step</div></div></div></foreignObject><text x="300" y="1569" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">step</text></switch></g><path d="M 495.21 1574.19 C 495.75 1572.5 497.08 1571.08 498.89 1570.3 C 500.7 1569.52 502.81 1569.44 504.69 1570.09 C 507.43 1571.24 509.55 1573.26 510.62 1575.72 C 515.5 1563.7 522.94 1552.58 532.54 1542.92 C 535.26 1540.78 539.07 1540 542.61 1540.87 C 543.51 1540.99 544.28 1541.51 544.64 1542.24 C 545 1542.96 544.9 1543.8 544.38 1544.45 C 531.34 1557.2 521.64 1572.24 515.95 1588.54 C 512.59 1590 508.64 1590 505.28 1588.54 C 502.75 1583.67 499.35 1579.17 495.21 1575.21 C 495 1574.89 495 1574.5 495.21 1574.19 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 1597px; margin-left: 496px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">tick</div></div></div></foreignObject><text x="520" y="1609" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">tick</text></switch></g><rect x="590" y="1535" width="300" height="60" rx="9" ry="9" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 298px; height: 1px; padding-top: 1565px; margin-left: 591px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">todo</div></div></div></foreignObject><text x="740" y="1569" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">todo</text></switch></g><ellipse cx="960" cy="1565" rx="50" ry="50" fill="#f8cecc" stroke="#b85450" pointer-events="none"/><path d="M 921.22 1570.1 C 921.22 1585.32 938.58 1597.65 960 1597.65 C 981.42 1597.65 998.78 1585.32 998.78 1570.1" fill="none" stroke="#b85450" stroke-width="2.04" stroke-miterlimit="10" pointer-events="none"/><rect x="910" y="1515" width="0" height="0" fill="none" stroke="#b85450" pointer-events="none"/><path d="M 926.33 1567.04 L 916.12 1573.16" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><path d="M 993.67 1567.04 L 1003.88 1573.16" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><ellipse cx="937.55" cy="1550.71" rx="3.0612244897959187" ry="8.16326530612245" fill="#f8cecc" stroke="#b85450" stroke-width="6.12" pointer-events="none"/><ellipse cx="982.45" cy="1550.71" rx="3.0612244897959187" ry="8.16326530612245" fill="#f8cecc" stroke="#b85450" stroke-width="6.12" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1622px; margin-left: 911px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">face</div></div></div></foreignObject><text x="960" y="1634" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">face</text></switch></g><path d="M 30 1785 L 30 1745 Q 30 1735 38.94 1739.47 L 121.06 1780.53 Q 130 1785 121.06 1789.47 L 38.94 1830.53 Q 30 1835 30 1825 Z" fill="#f8cecc" stroke="#b85450" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1785px; margin-left: 31px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">triangle</div></div></div></foreignObject><text x="80" y="1789" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">triangle</text></switch></g><rect x="200" y="1765" width="200" height="40" fill="#f8cecc" stroke="none" pointer-events="none"/><path d="M 200 1765 M 400 1765 M 400 1805 L 200 1805" fill="none" stroke="#b85450" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 1785px; margin-left: 201px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">embed_row</div></div></div></foreignObject><text x="300" y="1789" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">embed_row</text></switch></g><rect x="495" y="1765" width="50" height="40" fill="#f8cecc" stroke="none" pointer-events="none"/><path d="M 495 1765 M 545 1765 M 545 1805 M 495 1805" fill="none" stroke="#b85450" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 1785px; margin-left: 496px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 36px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">embed_col50</div></div></div></foreignObject><text x="520" y="1789" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle" font-weight="bold">embed_co...</text></switch></g><rect x="665" y="1765" width="150" height="40" fill="#f8cecc" stroke="none" pointer-events="none"/><path d="M 665 1765 M 815 1765 M 815 1805 M 665 1805" fill="none" stroke="#b85450" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 142px; height: 1px; padding-top: 1785px; margin-left: 673px;"><div data-drawio-colors="color: #333333; " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 36px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(51, 51, 51); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">embed_col200</div></div></div></foreignObject><text x="673" y="1789" fill="#333333" font-family="Helvetica" font-size="12px">embed_col200</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Text is not SVG - cannot display</text></a></switch></svg>