@dobot-plus/template 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/.dobot/.sftprc +3 -0
  2. package/.dobot/components/DobotPlusApp.tsx +78 -0
  3. package/.dobot/http/api.json +11 -0
  4. package/.dobot/http/api.ts +26 -0
  5. package/.dobot/http/api.ts.txt +26 -0
  6. package/.dobot/http/axios.ts +52 -0
  7. package/.dobot/http/axios.ts.txt +52 -0
  8. package/.dobot/http/http.ts +22 -0
  9. package/.dobot/http/http.ts.txt +22 -0
  10. package/.dobot/index.ts +2 -0
  11. package/.dobot/index.txt +2 -0
  12. package/.dobot/protocol/keyBoard.ts +18 -0
  13. package/.dobot/protocol/keyBoard.ts.txt +18 -0
  14. package/.dobot/protocol/methodsHandler.ts +15 -0
  15. package/.dobot/protocol/methodsHandler.ts.txt +15 -0
  16. package/.dobot/protocol/postMessageCenter.ts +50 -0
  17. package/.dobot/protocol/postMessageCenter.ts.txt +38 -0
  18. package/.dobot/protocol/postMessageHandler.ts +289 -0
  19. package/.dobot/protocol/postMessageHandler.ts.txt +289 -0
  20. package/.dobot/protocol/websocketHandler.ts +234 -0
  21. package/.dobot/protocol/websocketHandler.ts.txt +234 -0
  22. package/.dobot/shim.d.ts +3 -0
  23. package/.dobot/shim.d.ts.txt +3 -0
  24. package/.dobot/store/actions/toolActions.ts +69 -0
  25. package/.dobot/store/actions/toolActions.ts.txt +69 -0
  26. package/.dobot/store/actions/userMagamentActions.ts +25 -0
  27. package/.dobot/store/actions/userMagamentActions.ts.txt +25 -0
  28. package/.dobot/store/index.ts +7 -0
  29. package/.dobot/store/index.ts.txt +7 -0
  30. package/.dobot/store/reducers/index.ts +8 -0
  31. package/.dobot/store/reducers/index.ts.txt +8 -0
  32. package/.dobot/store/reducers/toolReducer.ts +152 -0
  33. package/.dobot/store/reducers/toolReducer.ts.txt +149 -0
  34. package/.dobot/store/reducers/userMagamentReducer.ts +38 -0
  35. package/.dobot/store/reducers/userMagamentReducer.ts.txt +35 -0
  36. package/.dobot/store/types.ts +240 -0
  37. package/.dobot/store/types.ts.txt +237 -0
  38. package/.dobot/template/default.tsx.mustache +20 -0
  39. package/.dobot/template/entry.css +26 -0
  40. package/.dobot/template/entry.tsx +53 -0
  41. package/.dobot/template/index.html +23 -0
  42. package/.dobot/template/index.scss +5 -0
  43. package/.dobot/utils/i18n.ts +31 -0
  44. package/.dobot/utils/i18n.ts.txt +31 -0
  45. package/.dobot/utils/mqtt.ts +61 -0
  46. package/.dobot/utils/mqtt.ts.txt +61 -0
  47. package/.dobot/utils/rem.js +21 -0
  48. package/.dobot/utils/rem.js.txt +21 -0
  49. package/.dobot/utils/tool.ts +15 -0
  50. package/.dobot/utils/tool.ts.txt +15 -0
  51. package/.eslintrc.cjs +18 -0
  52. package/.luarc.json +17 -0
  53. package/.vscode/Api.schema.json +103 -0
  54. package/.vscode/Blocks.schema.json +94 -0
  55. package/.vscode/Main.schema.json +42 -0
  56. package/.vscode/Script.schema.json +22 -0
  57. package/.vscode/Toolbar.schema.json +19 -0
  58. package/.vscode/extensions.json +8 -0
  59. package/.vscode/settings.json +52 -0
  60. package/Resources/document/config.json +0 -0
  61. package/Resources/i18n/client/de.json +11 -0
  62. package/Resources/i18n/client/en.json +11 -0
  63. package/Resources/i18n/client/es.json +11 -0
  64. package/Resources/i18n/client/hk.json +11 -0
  65. package/Resources/i18n/client/ja.json +11 -0
  66. package/Resources/i18n/client/ko.json +11 -0
  67. package/Resources/i18n/client/ru.json +11 -0
  68. package/Resources/i18n/client/zh.json +11 -0
  69. package/Resources/i18n/plugin/de.json +3 -0
  70. package/Resources/i18n/plugin/en.json +3 -0
  71. package/Resources/i18n/plugin/es.json +3 -0
  72. package/Resources/i18n/plugin/hk.json +3 -0
  73. package/Resources/i18n/plugin/ja.json +3 -0
  74. package/Resources/i18n/plugin/ko.json +3 -0
  75. package/Resources/i18n/plugin/ru.json +3 -0
  76. package/Resources/i18n/plugin/zh.json +3 -0
  77. package/Resources/images/pallet.svg +1 -0
  78. package/configs/Blocks.json +21 -0
  79. package/configs/Main.json +5 -0
  80. package/configs/Scripts.json +7 -0
  81. package/configs/Toolbar.json +5 -0
  82. package/dpt.json +4 -0
  83. package/lua/control.lua +19 -0
  84. package/lua/daemon.lua +22 -0
  85. package/lua/httpAPI.lua +65 -0
  86. package/lua/userAPI.lua +51 -0
  87. package/lua/utils/await485.lua +55 -0
  88. package/lua/utils/mqtt.lua +17 -0
  89. package/lua/utils/num_convert.lua +41 -0
  90. package/lua/utils/tcp.lua +31 -0
  91. package/lua/utils/util.lua +31 -0
  92. package/lua/utils/variables.lua +0 -0
  93. package/package.json +51 -0
  94. package/project.json +3 -0
  95. package/tsconfig.json +27 -0
  96. package/ui/Blocks.tsx +5 -0
  97. package/ui/Main.tsx +31 -0
  98. package/ui/Toolbar.tsx +5 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="240" height="190" viewBox="0 0 240 190"><defs><clipPath id="master_svg0_500_11432"><rect x="0" y="0" width="240" height="190" rx="0"/></clipPath><linearGradient x1="-0.2643795907497406" y1="-0.24840609729290009" x2="0.9735490679740906" y2="1" id="master_svg1_275_08268"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="100%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><filter id="master_svg2_500_11509" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="112.0720624923706" height="117.29464340209961"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18000000715255737 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svg3_500_11486" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="129.47517013549805" height="109.05357456207275"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.3019607961177826 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.800000011920929 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.699999988079071 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svg4_500_11488" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="112.41670989990234" height="116.94642639160156"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.3019607961177826 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.3019607961177826 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.3019607961177826 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><linearGradient x1="-0.2643795907497406" y1="-0.24840609729290009" x2="0.9735490679740906" y2="1" id="master_svg5_275_08268"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="100%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><linearGradient x1="-0.2643795907497406" y1="-0.24840609729290009" x2="0.9735490679740906" y2="1" id="master_svg6_275_08268"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="100%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><linearGradient x1="0.5329905152320862" y1="-0.11309930682182312" x2="0.5733048915863037" y2="0.9380971789360046" id="master_svg7_330_7622"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="99.99994039535522%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><filter id="master_svg8_500_11469" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="128.54685020446777" height="113.23217010498047"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.800000011920929 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.699999988079071 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="5"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><linearGradient x1="-0.2643795907497406" y1="-0.24840609729290009" x2="0.9735490679740906" y2="1" id="master_svg9_275_08268"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="100%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><linearGradient x1="-0.2643795907497406" y1="-0.24840609729290009" x2="0.9735490679740906" y2="1" id="master_svga_275_08268"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="100%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><filter id="master_svgb_500_11468" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="117.40659523010254" height="116.59821701049805"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.3019607961177826 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.30000001192092896 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><linearGradient x1="-0.2643795907497406" y1="-0.24840609729290009" x2="0.9735490679740906" y2="1" id="master_svgc_275_08268"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="100%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><filter id="master_svgd_500_11458" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="101.85728573799133" height="107.1952600479126"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1882352977991104 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svge_500_11453" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="101.85728573799133" height="107.1952600479126"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1882352977991104 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgf_500_11466" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="106.96399641036987" height="102.32091307640076"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1882352977991104 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgg_500_11452" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-20" y="-16" width="61.16472625732422" height="50.9107141494751"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="0"/><feGaussianBlur stdDeviation="5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.15000000596046448 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="master_svgh_500_11442" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="125.52967262268066" height="111.25892353057861"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.30000001192092896 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.699999988079071 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgi_500_11441" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="110.79209232330322" height="109.40178394317627"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.239215686917305 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.30000001192092896 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgj_500_11440" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="126.57407188415527" height="111.95535945892334"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.30000001192092896 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.2800000011920929 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgk_500_11459" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="106.2666368484497" height="109.74971389770508"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1882352977991104 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgl_500_11445" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="106.96292924880981" height="111.1425313949585"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1882352977991104 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.75"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgm_500_11455" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-20" y="-16" width="48.23911952972412" height="65.62275314331055"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="0"/><feGaussianBlur stdDeviation="5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.15000000596046448 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="master_svgn_500_11465" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-20" y="-16" width="56.7103328704834" height="52.676958084106445"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="0"/><feGaussianBlur stdDeviation="5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.15000000596046448 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><linearGradient x1="-0.37572258710861206" y1="-0.4219234585762024" x2="1" y2="0.93280029296875" id="master_svgo_330_6594"><stop offset="0%" stop-color="#6CBEFF" stop-opacity="1"/><stop offset="99.99997019767761%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><linearGradient x1="-0.7250193953514099" y1="-0.13474826514720917" x2="1" y2="0.23442456126213074" id="master_svgp_330_5278"><stop offset="0.7142745424062014%" stop-color="#72B4E3" stop-opacity="1"/><stop offset="99.9998688697815%" stop-color="#0047BB" stop-opacity="1"/></linearGradient><filter id="master_svgq_500_11521" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="119.03121376037598" height="119.03570556640625"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.239215686917305 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgr_500_11487" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-14" y="-16" width="70.75165176391602" height="55.66964149475098"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.239215686917305 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgs_500_11485" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-1" y="-16" width="52.76483631134033" height="59.61606216430664"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="19"/><feGaussianBlur stdDeviation="5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.239215686917305 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="0"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18000000715255737 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgt_500_11477" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-51" y="-60" width="117.6386890411377" height="118.22320938110352"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.239215686917305 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18039216101169586 0"/><feBlend mode="normal" in2="effect1_dropShadow" result="effect2_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.3019607961177826 0"/><feBlend mode="normal" in2="effect2_dropShadow" result="effect3_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow" result="shape"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgu_500_11476" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="129.47516059875488" height="114.27677917480469"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1882352977991104 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.239215686917305 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18000000715255737 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="5"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgv_500_11475" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="116.24615669250488" height="117.64285278320312"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18000000715255737 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter><filter id="master_svgw_500_11480" filterUnits="objectBoundingBox" color-interpolation-filters="sRGB" x="-44" y="-46" width="128.54681587219238" height="113.11607456207275"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="6"/><feGaussianBlur stdDeviation="12.5"/><feColorMatrix type="matrix" values="0 0 0 0 0.0313725508749485 0 0 0 0 0.1568627506494522 0 0 0 0 0.5882353186607361 0 0 0 0.1899999976158142 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="-4" dx="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.23999999463558197 0"/><feBlend mode="normal" in2="shape" result="effect2_innerShadow"/><feColorMatrix in="SourceAlpha" type="matrix" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4" dx="3"/><feGaussianBlur stdDeviation="1.5"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18000000715255737 0"/><feBlend mode="normal" in2="effect2_innerShadow" result="effect3_innerShadow"/><feGaussianBlur in="BackgroundImage" stdDeviation="11.899999618530273"/><feComposite in2="SourceAlpha" operator="in" result="effect4_foregroundBlur"/><feBlend mode="normal" in="SourceGraphic" in2="effect4_foregroundBlur" result="shape"/></filter></defs><g clip-path="url(#master_svg0_500_11432)"><g><g><g><path d="M106.48067412109376,72.7589111328125L119.47757412109375,77.5178411328125L81.99537412109375,93.0714111328125L68.99847412109375,88.3125111328125L106.48067412109376,72.7589111328125Z" fill="url(#master_svg1_275_08268)" fill-opacity="1"/></g><g><path d="M123.77124138671876,41.1874513984375C123.77124138671876,41.6517383984375,122.14662138671875,41.9999533984375,120.17387138671874,41.8838733984375C118.20113138671876,41.7678083984375,116.57651438671876,41.3035203984375,116.57651438671876,40.8392333984375L116.57651438671876,42.2320933984375C117.04069238671875,42.2320933984375,117.27277638671875,43.8570933984375,117.27277638671875,45.7142333984375C117.15673438671875,47.5713733984375,116.80859938671875,49.0803033984375,116.34442138671875,49.1963733984375L116.34442138671875,50.7053033984375C116.69255638671875,50.9374333984375,116.80859938671875,51.4017333984375,116.80859938671875,52.2142333984375C117.38882138671875,52.4463333984375,118.54926138671875,52.6785333984375,119.82574138671875,52.7946333984375C121.79848138671875,52.9106333984375,123.30706138671874,52.5624333984375,123.42310138671876,52.0981333984375L123.77124138671876,41.1874513984375Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M106.24862109375,96.43756103515625L126.67232109375,104.09827103515624L79.55852109375,129.98216103515625L58.78662109375,120.58036103515624L106.24862109375,96.43756103515625Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M126.09213271484376,113.49998556640625L126.67233271484375,104.09820556640625L79.55853271484375,129.98210556640626L79.55853271484375,140.77680556640627L126.09213271484376,113.49998556640625Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M59.25079909375,131.02678330078126L79.55852109375,140.77678330078126L79.55852109375,129.98217330078126L58.78662109375,120.58038330078125L59.25079909375,131.02678330078126Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M118.89742236328125,105.95538330078125L119.47762236328126,77.51788330078125L81.99542236328125,93.07148330078125L82.92377736328125,124.52678330078125L118.89742236328125,105.95538330078125Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M68.99847412109375,88.31256103515625L70.15891412109374,119.18756103515625L82.92377412109374,124.64286103515624L81.99537412109375,93.07149103515626" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g transform="matrix(0.9760475754737854,-0.21780350804328918,0.21779371798038483,0.9759398102760315,-6.7052418588718865,18.54970433851304)"><ellipse cx="83.9180474281311" cy="44.54648780822754" rx="3.1333184242248535" ry="4.874856948852539" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g transform="matrix(0.03845091909170151,-0.9993000030517578,0.9993000030517578,0.03836172819137573,70.34881329366408,156.69261062583246)"><ellipse cx="117.51854765415192" cy="45.3849835395813" rx="0.9286428689956665" ry="3.597630023956299" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g transform="matrix(0.03845091909170151,-0.9993000030517578,0.9993000030517578,0.03836172819137573,67.14199433451631,172.71201167837353)"><ellipse cx="124.23857939243317" cy="55.06021547317505" rx="0.9286428689956665" ry="3.597630023956299" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g transform="matrix(0.18458585441112518,-0.9827742576599121,0.9828522205352783,0.18461915850639343,36.33661318326995,158.4318443308439)"><ellipse cx="117.13409781455994" cy="58.48028075695038" rx="3.4819982051849365" ry="1.1604565382003784" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M116.4605263671875,42.2321966015625L97.0811563671875,38.2857666015625C96.6169773671875,38.2857666015625,96.1527993671875,39.7946966015625,96.0367573671875,41.7679066015625C95.9207151671875,43.7411266015625,96.2688413671875,45.2500466015625,96.8490613671875,45.2500466015625L116.2284263671875,49.1964666015625C116.6926263671875,49.1964666015625,117.1567263671875,47.6875566015625,117.1567263671875,45.7143366015625C117.27282636718749,43.8571966015625,116.9246263671875,42.2321966015625,116.4605263671875,42.2321966015625Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g transform="matrix(0.9760475754737854,-0.21780350804328918,0.21779371798038483,0.9759398102760315,-6.7052418588718865,18.54970433851304)"><ellipse cx="83.9180474281311" cy="44.54648780822754" rx="3.1333184242248535" ry="4.874856948852539" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M97.89343228515625,64.40185546875C95.92069228515625,64.40185546875,94.18003228515624,64.63399446875,93.01959228515625,65.09828246875L93.01959228515625,67.18757546875C94.18003228515624,67.65185546875,95.92069228515625,67.88399546875,97.89343228515625,67.88399546875C101.25871228515625,67.88399546875,103.92769228515625,67.07150546875,103.92769228515625,66.14292546875C103.92769228515625,65.21435146875,101.14267228515625,64.40185546875,97.89343228515625,64.40185546875Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><g><g><path d="M84.89652796972656,71.2499885559082L84.66444396972656,71.2499885559082C84.78048596972656,71.3660675559082,84.89652796972656,71.3660675559082,84.89652796972656,71.2499885559082C85.01257096972657,71.3660675559082,84.89652796972656,71.3660675559082,84.89652796972656,71.2499885559082Z" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M99.28600559082031,73.1071736340332C98.70580559082032,70.55360363403321,96.96510559082031,68.8125296340332,95.34048559082031,69.1607390340332L92.9035655908203,69.6250266340332L92.9035655908203,70.0893136340332C93.0196055908203,70.9018136340332,91.27894559082031,71.7143136340332,88.95806559082031,72.0625236340332C88.02971559082032,72.1785936340332,87.10136759082032,72.1785936340332,86.40510559082031,72.0625236340332C87.44950559082031,72.8750236340332,88.37784559082031,74.2678836340332,88.72598559082031,76.0089536340332C89.30620559082031,78.7946736340332,88.49389559082032,81.3482436340332,86.86928359082032,82.0446436340332L96.84910559082032,78.3303836340332C96.96510559082031,78.3303836340332,97.08110559082031,78.3303836340332,97.19720559082032,78.3303836340332C99.0539055908203,77.9821636340332,99.86620559082031,75.6607336340332,99.28600559082031,73.1071736340332Z" fill="#FFFFFF" fill-opacity="1"/></g></g></g><g transform="matrix(0.9760475158691406,-0.21780352294445038,0.21779371798038483,0.9759398102760315,-13.773459687166905,19.350341463527002)"><ellipse cx="84.35597634315491" cy="77.70651960372925" rx="3.4814646244049072" ry="5.571265697479248" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M86.40512541015624,48.26786443359375C86.28907541015624,48.26786443359375,86.17303541015625,48.38393443359375,86.05698541015624,48.38393443359375C85.70884941015625,48.50000443359375,85.24468041015625,48.38393443359375,84.89654541015625,48.26786443359375L84.89654541015625,71.24999443359374L85.01258741015624,71.24999443359374Q85.01258741015624,71.24999443359374,85.01258741015624,71.36609443359376C85.59280741015625,71.36609443359376,86.17302541015626,71.71429443359375,86.63720541015626,72.06249443359374C87.33346541015625,72.17859443359376,88.26182541015625,72.17859443359376,89.19016541015625,72.06249443359374C91.39500541015624,71.83039443359375,93.13566541015625,70.90179443359375,93.13566541015625,70.08929443359375L93.13566541015625,46.52679443359375L86.40512541015624,48.26786443359375Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><g><g filter="url(#master_svg2_500_11509)"><path d="M97.8934611743164,67.99998494750976C95.92072117431641,67.99998494750976,94.1800611743164,67.76784494750977,93.01962117431641,67.30355494750977L93.01962117431641,69.62498494750976L95.45654117431641,69.16070494750977C97.0811611743164,68.81248494750976,98.82182117431641,70.55355494750977,99.40204117431641,73.10713494750976C99.9822611743164,75.66069494750977,99.16996117431641,77.98211494750977,97.5453411743164,78.33031494750976C97.42930117431641,78.33031494750976,97.3132511743164,78.33031494750976,97.1972011743164,78.33031494750976L91.7431411743164,80.30351494750977L91.7431411743164,82.39281494750976C91.7431411743164,82.97321494750977,94.4121511743164,83.55351494750977,97.7774211743164,83.55351494750977C101.1427011743164,83.55351494750977,103.81174117431641,83.08931494750976,103.81174117431641,82.39281494750976L103.81174117431641,66.25891494750977C103.92774117431641,67.18748094750977,101.1427011743164,67.99998494750976,97.8934611743164,67.99998494750976Z" fill="#FFFFFF" fill-opacity="0.5"/><path d="M104.06174117431641,66.40329194750977Q104.0709411743164,66.31716824750977,104.0597411743164,66.22791124750977L103.56174117431641,62.242704947509765L103.56174117431641,66.35418214750976Q103.5319411743164,66.52031894750976,103.2495411743164,66.71784494750976Q102.8401411743164,67.00422794750976,102.04414117431641,67.23777494750976Q100.2984211743164,67.74998494750976,97.8934611743164,67.74998494750976Q94.80842117431641,67.74998494750976,93.1124911743164,67.07144794750977L92.76962117431641,66.93426794750977L92.76962117431641,69.92711494750976L95.50614117431641,69.40574494750976L95.5089411743164,69.40514494750977Q96.5943911743164,69.17249494750976,97.6441411743164,70.22249494750976Q98.73907117431641,71.31768494750976,99.1582511743164,73.16252494750977Q99.57826117431641,75.01098494750977,99.0648211743164,76.46241494750977Q98.5780611743164,77.83831494750976,97.5180311743164,78.08031494750976L97.1533711743164,78.08031494750976L91.4931411743164,80.12811494750977L91.4931411743164,82.39281494750976Q91.4931411743164,83.04461494750976,93.44927117431641,83.43601494750976Q95.28676117431641,83.80351494750977,97.7774211743164,83.80351494750977Q100.3701011743164,83.80351494750977,102.10244117431641,83.48011494750976Q104.06174117431641,83.11431494750977,104.06174117431641,82.39281494750976L104.06174117431641,66.40329194750977ZM103.56174117431641,67.11800594750977Q103.0920411743164,67.45140494750977,102.1849411743164,67.71755494750977Q100.37026117431641,68.24998494750976,97.8934611743164,68.24998494750976Q95.0069111743164,68.24998494750976,93.26962117431641,67.66192494750976L93.26962117431641,69.32286494750977L95.40702117431641,68.91563494750977Q96.75694117431641,68.62789494750976,97.9977411743164,69.86898494750976Q99.19467117431641,71.06620494750976,99.64583117431641,73.05173494750977Q100.0979011743164,75.04130494750976,99.5361911743164,76.62911494750976Q98.9504611743164,78.28481494750977,97.59773117431641,78.57481494750976L97.5718311743164,78.58031494750976L97.24104117431641,78.58031494750976L91.9931411743164,80.47901494750977L91.9931411743164,82.39281494750976Q91.9931411743164,82.44631494750976,92.31519817431641,82.59101494750976Q92.7494911743164,82.78611494750976,93.5473511743164,82.94571494750977Q95.33627117431641,83.30351494750977,97.7774211743164,83.30351494750977Q100.32383117431641,83.30351494750977,102.0106411743164,82.98861494750977Q102.8146411743164,82.83851494750976,103.2362411743164,82.64151494750976Q103.56174117431641,82.48951494750976,103.56174117431641,82.39281494750976L103.56174117431641,67.11800594750977Z" fill-rule="evenodd" fill="#F6F9FB" fill-opacity="1"/></g></g></g><g><path d="M96.84910068359375,45.2500523828125C96.38490068359376,45.2500523828125,96.03680068359375,43.6250523828125,96.03680068359375,41.7679123828125C96.15280068359375,39.7946923828125,96.61700068359374,38.2857623828125,97.08120068359375,38.2857623828125L100.67850068359375,38.9821923828125C99.98230068359375,36.7768323828125,98.58970068359375,35.3839793828125,97.31330068359375,35.6161186828125C97.19720068359375,35.6161186828125,97.19720068359375,35.6161186828125,97.08120068359375,35.7321883828125L83.96820068359375,38.8661223828125C85.59282068359374,38.7500523828125,87.21743068359375,40.4911223828125,87.79765068359374,42.9286123828125C88.37787068359376,45.3661123828125,87.56557068359375,47.5714423828125,86.17304068359375,48.2679423828125L96.84910068359375,45.2500523828125Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><path d="M123.77124138671876,41.1874513984375C123.77124138671876,41.6517383984375,122.14662138671875,41.9999533984375,120.17387138671874,41.8838733984375C118.20113138671876,41.7678083984375,116.57651438671876,41.3035203984375,116.57651438671876,40.8392333984375L116.57651438671876,42.2320933984375C117.04069238671875,42.2320933984375,117.27277638671875,43.8570933984375,117.27277638671875,45.7142333984375C117.15673438671875,47.5713733984375,116.80859938671875,49.0803033984375,116.34442138671875,49.1963733984375L116.34442138671875,50.7053033984375C116.69255638671875,50.9374333984375,116.80859938671875,51.4017333984375,116.80859938671875,52.2142333984375C117.38882138671875,52.4463333984375,118.54926138671875,52.6785333984375,119.82574138671875,52.7946333984375C121.79848138671875,52.9106333984375,123.30706138671874,52.5624333984375,123.42310138671876,52.0981333984375L123.77124138671876,41.1874513984375Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g><g><g><g><path d="M125.16373212890625,52.33036140209961Q125.04771212890626,52.33036140209961,125.16373212890625,52.33036140209961L123.42309212890625,51.98214340209961C123.30705212890625,52.44643040209961,121.79848212890624,52.79463940209961,119.82573212890625,52.67857040209961C118.54925212890625,52.67857040209961,117.38881212890625,52.44643040209961,116.80859212890626,52.09821340209961C116.80859212890626,52.67857040209961,116.80859212890626,53.37499340209961,116.69255212890624,54.18750340209961C116.34441212890626,55.92857340209961,115.64815212890625,57.32142340209961,115.06793212890625,57.32142340209961L123.88727212890625,58.94642340209961C124.46749212890624,59.06249340209961,125.39583212890625,57.66964340209961,125.74393212890625,55.81250340209961C126.09213212890626,53.95536340209961,125.74393212890625,52.44643040209961,125.16373212890625,52.33036140209961Z" fill="#FFFFFF" fill-opacity="1"/><path d="M125.16373212890625,52.33036140209961Q125.04771212890626,52.33036140209961,125.16373212890625,52.33036140209961L123.42309212890625,51.98214340209961C123.30705212890625,52.44643040209961,121.79848212890624,52.79463940209961,119.82573212890625,52.67857040209961C118.54925212890625,52.67857040209961,117.38881212890625,52.44643040209961,116.80859212890626,52.09821340209961C116.80859212890626,52.67857040209961,116.80859212890626,53.37499340209961,116.69255212890624,54.18750340209961C116.34441212890626,55.92857340209961,115.64815212890625,57.32142340209961,115.06793212890625,57.32142340209961L123.88727212890625,58.94642340209961C124.46749212890624,59.06249340209961,125.39583212890625,57.66964340209961,125.74393212890625,55.81250340209961C126.09213212890626,53.95536340209961,125.74393212890625,52.44643040209961,125.16373212890625,52.33036140209961Z" fill="#FFFFFF" fill-opacity="1"/><path d="M125.16373212890625,52.33036140209961Q125.04771212890626,52.33036140209961,125.16373212890625,52.33036140209961L123.42309212890625,51.98214340209961C123.30705212890625,52.44643040209961,121.79848212890624,52.79463940209961,119.82573212890625,52.67857040209961C118.54925212890625,52.67857040209961,117.38881212890625,52.44643040209961,116.80859212890626,52.09821340209961C116.80859212890626,52.67857040209961,116.80859212890626,53.37499340209961,116.69255212890624,54.18750340209961C116.34441212890626,55.92857340209961,115.64815212890625,57.32142340209961,115.06793212890625,57.32142340209961L123.88727212890625,58.94642340209961C124.46749212890624,59.06249340209961,125.39583212890625,57.66964340209961,125.74393212890625,55.81250340209961C126.09213212890626,53.95536340209961,125.74393212890625,52.44643040209961,125.16373212890625,52.33036140209961Z" fill="#FFFFFF" fill-opacity="1"/><path d="M125.16373212890625,52.33036140209961Q125.04771212890626,52.33036140209961,125.16373212890625,52.33036140209961L123.42309212890625,51.98214340209961C123.30705212890625,52.44643040209961,121.79848212890624,52.79463940209961,119.82573212890625,52.67857040209961C118.54925212890625,52.67857040209961,117.38881212890625,52.44643040209961,116.80859212890626,52.09821340209961C116.80859212890626,52.67857040209961,116.80859212890626,53.37499340209961,116.69255212890624,54.18750340209961C116.34441212890626,55.92857340209961,115.64815212890625,57.32142340209961,115.06793212890625,57.32142340209961L123.88727212890625,58.94642340209961C124.46749212890624,59.06249340209961,125.39583212890625,57.66964340209961,125.74393212890625,55.81250340209961C126.09213212890626,53.95536340209961,125.74393212890625,52.44643040209961,125.16373212890625,52.33036140209961Z" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M116.22723732109375,50.70541000366211Q116.11346962109376,50.70541000366211,116.22723732109375,50.70541000366211Z" fill="#FFFFFF" fill-opacity="1"/></g></g></g><g><path d="M130.5018587109375,50.8214846015625C130.5018587109375,51.2857716015625,128.8772487109375,51.6339766015625,126.9044987109375,51.5179066015625C124.9317587109375,51.4018416015625,123.3071397109375,50.9375536015625,123.3071397109375,50.4732666015625L123.1910977109375,52.0982666015625L123.3071397109375,51.9821966015625L125.0477987109375,52.3304166015625C125.6280187109375,52.4464866015625,125.9761587109375,54.0714866015625,125.6280187109375,55.9286266015625C125.2798787109375,57.7857666015625,124.4675787109375,59.1786366015625,123.77131871093749,59.0625566015625L122.9590127109375,58.9464866015625L122.7269287109375,63.9375666015625Q122.7269287109375,63.9375666015625,122.7269287109375,64.0536666015625C122.7269287109375,64.6339666015625,124.2355087109375,65.0982666015625,126.3242887109375,65.2143666015625C128.2970387109375,65.3303666015625,129.9216487109375,64.8661666015625,129.9216487109375,64.2857666015625Q129.9216487109375,64.2857666015625,129.9216487109375,64.1696666015625L130.5018587109375,50.8214846015625Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/></g></g><g><path d="M141.4100625,134.04470825195312L124.3515625,127.08040825195313L124.8157405,116.16970825195312L141.8741625,122.66970825195312L141.4100625,134.04470825195312Z" fill="#FFFFFF" fill-opacity="0.824400007724762"/></g><g filter="url(#master_svg3_500_11486)"><path d="M141.52598125,64.4018122692871L124.35148125,60.22323226928711L112.05078125,64.75002226928711L129.34138125,69.27680226928712L141.52598125,64.4018122692871Z" fill="#FFFFFF" fill-opacity="0.15000000596046448"/><path d="M111.21749825,64.7902822692871L129.35768124999998,69.5395222692871L129.43418125,69.50892226928711L142.34438125,64.34363226928711L124.33658125,59.96231826928711L111.21749825,64.7902822692871ZM129.32498125,69.0140922692871L112.88406425,64.70975226928711L124.36628125,60.48414626928711L140.70758125,64.45998226928711L129.32498125,69.0140922692871Z" fill-rule="evenodd" fill="#F6F9FB" fill-opacity="1"/></g><g filter="url(#master_svg4_500_11488)"><path d="M129.10943603515625,81.3482211364746L140.82983603515626,75.89292113647461L141.52613603515624,64.40182113647461L129.34152903515624,69.27682113647461L129.10943603515625,81.3482211364746Z" fill="#FFFFFF" fill-opacity="1"/><path d="M141.79953603515625,64.02316713647461L129.09476193515624,69.1062811364746L129.09157543515624,69.2720111364746L128.85178203515625,81.74392113647461L141.07043603515626,76.05672113647461L141.79953603515625,64.02316713647461ZM129.58829703515624,69.44735113647461L129.36709003515625,80.95252113647462L140.58933603515624,75.7291211364746L141.25273603515626,64.7804751364746L129.58829703515624,69.44735113647461Z" fill-rule="evenodd" fill="#F6F9FB" fill-opacity="1"/></g><g><path d="M129.20705859375,81.4797656677246L129.44165859375,69.27867566772461L129.44315859375,69.19995566772461L111.95237499375,64.62074866772461L111.83430759375,76.5485656677246L129.20705859375,81.4797656677246ZM129.24015859375,69.3535556677246L129.01205859375,81.21656566772461L112.03580959375,76.3978656677246L112.14982659375,64.8791826677246L129.24015859375,69.3535556677246Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M111.71746825,64.76612226928711L129.34788125,69.3818922692871L129.37848125,69.36965226928712L141.85328125,64.37854226928711L124.34548125,60.11886626928711L111.71746825,64.76612226928711ZM129.33478125,69.1717222692871L112.38409525,64.7339122692871L124.35738125,60.32759826928711L141.19858125,64.42508226928712L129.33478125,69.1717222692871Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M141.63553603515624,64.25036013647461L129.24282203515625,69.20860113647461L129.24154803515626,69.27489113647461L129.00637403515626,81.50652113647462L140.92613603515625,75.95842113647461L141.63553603515624,64.25036013647461ZM129.44023603515626,69.3450311364746L129.21249803515624,81.19002113647461L140.73363603515625,75.82732113647461L141.41673603515625,64.5532831364746L129.44023603515626,69.3450311364746Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><g><path d="M153.13254099121093,115.51368381835937L141.77656299121094,122.61288381835938L141.77441099121094,122.66562381835938L141.30147999121093,134.25491381835937L152.18174099121094,125.85611381835938L153.13254099121093,115.51368381835937ZM141.97209199121093,122.72651381835938L141.51880199121095,133.83451381835937L151.99064099121094,125.75111381835937L152.89644099121094,115.89714381835938L141.97209199121093,122.72651381835938Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g></g><g><g><path d="M123.52271138671875,52.112033398437504L123.52305138671875,52.101333398437504L123.87067138671875,41.2067693984375Q123.87124138671875,41.1971643984375,123.87124138671875,41.1874513984375L123.67129138671875,41.1842623984375L123.67083138671875,41.1984493984375Q123.65140138671875,41.4634623984375,122.69272138671874,41.6552433984375Q121.62403138671876,41.8690333984375,120.17975138671875,41.7840503984375Q118.70574138671876,41.6973243984375,117.66318138671875,41.3960673984375Q116.67651538671875,41.1109643984375,116.67651538671875,40.8392333984375L116.47651438671875,40.8392333984375L116.47651438671875,42.3320933984375L116.57651438671876,42.3320933984375Q116.82536238671875,42.3320933984375,117.00032438671875,43.2946233984375Q117.17259338671875,44.2423333984375,117.17277638671875,45.7111133984375Q117.08321138671874,47.1413333984375,116.84226838671874,48.0834333984375Q116.60035838671875,49.0292933984375,116.32016288671875,49.099363398437504L116.24442138671876,49.118303398437504L116.24442138671876,50.758813398437496L116.28894258671875,50.7885033984375Q116.70859938671875,51.0683333984375,116.70859938671875,52.2142333984375L116.70859938671875,52.2819333984375L116.77145338671875,52.3070333984375Q117.77481138671875,52.7085333984375,119.81668138671876,52.8941333984375L119.81827138671875,52.894333398437496L119.81987138671875,52.8944333984375Q121.27496138671874,52.9800333984375,122.34073138671874,52.7619333984375Q123.41521138671875,52.5421333984375,123.52012138671876,52.1224333984375L123.52271138671875,52.112033398437504ZM116.67651438671875,41.1773843984375L116.67651438671875,42.1471833984375Q117.37278138671876,42.3645733984375,117.37278138671876,45.7142333984375L117.37278138671876,45.7173533984375L117.37258138671875,45.7204733984375Q117.28190838671875,47.1716033984375,117.03603138671875,48.1329833984375Q116.79094238671875,49.0912933984375,116.44442138671874,49.2650733984375L116.44442138671874,50.6543033984375Q116.89518638671875,51.006933398437496,116.90821138671875,52.1457333984375Q117.88493138671875,52.5175333984375,119.83320138671876,52.6948333984375Q121.26112138671876,52.7787333984375,122.30064138671875,52.5660333984375Q123.23674138671875,52.3745333984375,123.32352138671875,52.0832333984375L123.66045138671875,41.5240293984375Q123.38118138671875,41.7214803984375,122.73195138671875,41.8513533984375Q121.63800138671876,42.0701933984375,120.16800138671876,41.9837033984375Q118.67168138671875,41.8956633984375,117.60766138671875,41.5882073984375Q116.95214938671874,41.3987923984375,116.67651438671875,41.1773843984375Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M106.24862109375,96.43756103515625L126.67232109375,104.09827103515624L79.55852109375,129.98216103515625L58.78662109375,120.58036103515624L106.24862109375,96.43756103515625Z" fill="url(#master_svg5_275_08268)" fill-opacity="1"/></g><g><path d="M126.09219375,113.49998556640625L126.67239375,104.09820556640625L79.55859375,129.98210556640626L79.55859375,140.77680556640627L126.09219375,113.49998556640625Z" fill="url(#master_svg6_275_08268)" fill-opacity="1"/></g><g><path d="M142.80248359375,158.9999556640625L82.57568359375,131.1427556640625L129.22538359375,104.7945556640625L187.24768359375,124.8749556640625L142.80248359375,158.9999556640625Z" fill="url(#master_svg7_330_7622)" fill-opacity="1"/></g><g filter="url(#master_svg8_500_11469)"><path d="M152.8984625,115.705322265625L136.3041625,110.017822265625L124.3515625,116.285702265625L141.1779625,123.250022265625L152.8984625,115.705322265625Z" fill="#FFFFFF" fill-opacity="0.824400007724762"/><path d="M123.7623445,116.312402265625L141.2032625,123.531022265625L141.3132625,123.46022226562499L153.4677625,115.636172265625L136.2833625,109.746426265625L123.7623445,116.312402265625ZM141.1526625,122.968922265625L124.9407805,116.259012265625L136.3248625,110.289218265625L152.3290625,115.774472265625L141.1526625,122.968922265625Z" fill-rule="evenodd" fill="#F6F9FB" fill-opacity="1"/></g><g><path d="M141.40997314453125,134.04468330078126L152.08597314453124,125.80358330078126L153.01437314453125,115.70538330078125L141.87415914453126,122.66966330078125L141.40997314453125,134.04468330078126Z" fill="#FFFFFF" fill-opacity="1"/><path d="M153.30947314453124,115.22605830078125L141.62974814453125,122.52763330078125L141.13832014453126,134.57018330078125L152.32497314453124,125.93498330078125L153.30947314453124,115.22605830078125ZM142.11857114453124,122.81170330078125L141.68162614453124,133.51918330078126L151.84707314453124,125.67224330078125L152.71927314453126,116.18470830078125L142.11857114453124,122.81170330078125Z" fill-rule="evenodd" fill="#F6F9FB" fill-opacity="1"/></g><g><path d="M59.25079909375,131.02678330078126L79.55852109375,140.77678330078126L79.55852109375,129.98217330078126L58.78662109375,120.58038330078125L59.25079909375,131.02678330078126Z" fill="url(#master_svg9_275_08268)" fill-opacity="1"/></g><g><path d="M118.89742236328125,105.95538330078125L119.47762236328126,77.51788330078125L81.99542236328125,93.07148330078125L82.92377736328125,124.52678330078125L118.89742236328125,105.95538330078125Z" fill="url(#master_svga_275_08268)" fill-opacity="1"/></g><g filter="url(#master_svgb_500_11468)"><path d="M129.10925341796874,81.34813896484374L111.93475341796875,76.47313896484376L112.05079541796874,64.74993896484375L129.34135341796875,69.27672896484376L129.10925341796874,81.34813896484374Z" fill="#FFFFFF" fill-opacity="0.18000000715255737"/><path d="M129.35295341796876,81.67723896484375L129.59125341796874,69.28152896484374L129.59505341796876,69.08472896484375L111.80398141796876,64.42689496484375L111.68287641796876,76.66153896484374L129.35295341796876,81.67723896484375ZM129.08765341796874,69.46871896484375L128.86555341796875,81.01913896484375L112.18663041796874,76.28473896484375L112.29761041796876,65.07298296484375L129.08765341796874,69.46871896484375Z" fill-rule="evenodd" fill="#F6F9FB" fill-opacity="1"/></g><g><path d="M68.99853515625,88.31256103515625L70.15897515625,119.18756103515625L82.92383515625,124.64286103515624L81.99543515625,93.07149103515626" fill="url(#master_svgc_275_08268)" fill-opacity="1"/></g><g transform="matrix(0.9760475754737854,-0.21780350804328918,0.21779371798038483,0.9759398102760315,-6.70524332081186,18.549691044841893)"><ellipse cx="83.91798639297485" cy="44.54648780822754" rx="3.1333184242248535" ry="4.874856948852539" fill-opacity="0" stroke-opacity="1" stroke="#FFFFFF" fill="none" stroke-width="0.20000000298023224"/></g><g transform="matrix(0.03845091909170151,-0.9993000030517578,0.9993000030517578,0.03836172819137573,70.34875460536568,156.69254963340063)" filter="url(#master_svgd_500_11458)"><ellipse cx="117.51848661899567" cy="45.3849835395813" rx="0.9286428689956665" ry="3.597630023956299" fill="#FFFFFF" fill-opacity="0.15000000596046448"/><ellipse cx="117.51848661899567" cy="45.3849835395813" rx="0.9286428689956665" ry="3.597630023956299" fill-opacity="0" stroke-opacity="0.4699999988079071" stroke="#FFFFFF" fill="none" stroke-width="0.5"/></g><g transform="matrix(0.03845091909170151,-0.9993000030517578,0.9993000030517578,0.03836172819137573,67.14199433451631,172.71201167837353)" filter="url(#master_svge_500_11453)"><ellipse cx="124.23857939243317" cy="55.06021547317505" rx="0.9286428689956665" ry="3.597630023956299" fill="#FFFFFF" fill-opacity="0.15000000596046448"/><ellipse cx="124.23857939243317" cy="55.06021547317505" rx="0.9286428689956665" ry="3.597630023956299" fill-opacity="0" stroke-opacity="0.4699999988079071" stroke="#FFFFFF" fill="none" stroke-width="0.5"/></g><g transform="matrix(0.18458585441112518,-0.9827742576599121,0.9828522205352783,0.18461915850639343,36.33661318326995,158.4318443308439)" filter="url(#master_svgf_500_11466)"><ellipse cx="117.13409781455994" cy="58.48028075695038" rx="3.4819982051849365" ry="1.1604565382003784" fill="#FFFFFF" fill-opacity="0.15000000596046448"/><ellipse cx="117.13409781455994" cy="58.48028075695038" rx="3.4819982051849365" ry="1.1604565382003784" fill-opacity="0" stroke-opacity="0.4699999988079071" stroke="#FFFFFF" fill="none" stroke-width="0.5"/></g><g filter="url(#master_svgg_500_11452)"><path d="M116.4605263671875,42.2321966015625L97.0811563671875,38.2857666015625C96.6169773671875,38.2857666015625,96.1527993671875,39.7946966015625,96.0367573671875,41.7679066015625C95.9207151671875,43.7411266015625,96.2688413671875,45.2500466015625,96.8490613671875,45.2500466015625L116.2284263671875,49.1964666015625C116.6926263671875,49.1964666015625,117.1567263671875,47.6875566015625,117.1567263671875,45.7143366015625C117.27282636718749,43.8571966015625,116.9246263671875,42.2321966015625,116.4605263671875,42.2321966015625Z" fill="#FFFFFF" fill-opacity="0.699999988079071"/><path d="M117.2567263671875,45.7174566015625Q117.3432263671875,44.3281466015625,117.1242263671875,43.2568066015625Q116.8971263671875,42.1464666015625,116.4714263671875,42.1323766015625L97.0912363671875,38.1857666015625L97.0811563671875,38.1857666015625Q96.6567553671875,38.1857666015625,96.3326823671875,39.2579496015625Q96.0241649171875,40.2786666015625,95.9369298671875,41.7620366015625Q95.8489133671875,43.2586966015625,96.0844091671875,44.271586601562504Q96.3325493671875,45.3388466015625,96.8384093671875,45.3499366015625L116.2183263671875,49.2964666015625L116.2284263671875,49.2964666015625Q116.6632263671875,49.2964666015625,116.96292636718749,48.2222366015625Q117.2564263671875,47.1703966015625,117.2567263671875,45.7174566015625ZM116.9282263671875,43.2968766015625Q117.1422263671875,44.3433866015625,117.0569263671875,45.7081066015625L117.05672636718751,45.7112166015625L117.05672636718751,45.7143366015625Q117.05672636718751,47.141886601562504,116.7703263671875,48.1684866015625Q116.5155263671875,49.0817666015625,116.2373263671875,49.0962666015625L96.8591403671875,45.1500466015625L96.8490613671875,45.1500466015625Q96.4939893671875,45.1500466015625,96.2792133671875,44.2262866015625Q96.0502657671875,43.2415766015625,96.1365853671875,41.7737766015625Q96.2224353671875,40.3139566015625,96.5241283671875,39.3158166015625Q96.8007103671875,38.4007526015625,97.0722663671875,38.3860076015625L116.4504263671875,42.3321966015625L116.4605263671875,42.3321966015625Q116.7309263671875,42.3321966015625,116.9282263671875,43.2968766015625Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.699999988079071"/></g><g><g filter="url(#master_svgh_500_11442)"><path d="M146.74802275390624,103.40175669921875L131.54622275390625,98.29461669921875L121.21832275390625,103.63389669921875L135.95592275390624,109.55351669921875L146.74802275390624,103.40175669921875Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M120.61869475390625,103.66246669921875L135.97482275390624,109.83051669921875L136.07972275390625,109.77071669921875L147.35672275390624,103.34253669921875L131.52552275390624,98.02391369921875L120.61869475390625,103.66246669921875ZM135.93702275390626,109.27651669921875L121.81795075390625,103.60533669921875L131.56702275390626,98.56531969921875L146.13922275390624,103.46098669921875L135.93702275390626,109.27651669921875Z" fill-rule="evenodd" fill="#FDFAFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgi_500_11441)"><path d="M145.23939158203126,112.80355443359375L146.28377158203125,112.80357443359375L146.74797158203125,103.40179443359375L135.95587158203125,109.55357443359375L145.23939158203126,112.80355443359375Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M147.02017158203125,102.95888543359375L135.35524458203125,109.60818443359375L135.87326708203125,109.78953443359374L145.19689158203124,113.05355443359375L146.52177158203125,113.05358443359376L147.02017158203125,102.95888543359375ZM136.55649858203125,109.49896443359376L145.28189158203125,112.55355443359375L146.04577158203125,112.55357443359375L146.47577158203126,103.84470343359375L136.55649858203125,109.49896443359376Z" fill-rule="evenodd" fill="#FDFAFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgj_500_11440)"><path d="M135.49176357421874,109.9017333984375L120.28996357421875,104.2142333984375L108.91766357421875,110.1338733984375L124.11946357421876,116.1696333984375L135.49176357421874,109.9017333984375Z" fill="#FFFFFF" fill-opacity="0.15294118225574493"/><path d="M108.31735557421875,110.1645133984375L124.13676357421875,116.4454333984375L124.24006357421875,116.3885333984375L136.08876357421875,109.8581633984375L120.27326357421875,103.9410713984375L108.31735557421875,110.1645133984375ZM124.10206357421875,115.8937333984375L109.51797157421875,110.1032333984375L120.30666357421875,104.4873953984375L134.89476357421876,109.9453033984375L124.10206357421875,115.8937333984375Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g></g><g transform="matrix(0.9760475754737854,-0.21780350804328918,0.21779371798038483,0.9759398102760315,-6.70524332081186,18.549691044841893)" filter="url(#master_svgk_500_11459)"><ellipse cx="83.91798639297485" cy="44.54648780822754" rx="3.1333184242248535" ry="4.874856948852539" fill="#FFFFFF" fill-opacity="0.15000000596046448"/><ellipse cx="83.91798639297485" cy="44.54648780822754" rx="3.1333184242248535" ry="4.874856948852539" fill-opacity="0" stroke-opacity="0.4699999988079071" stroke="#FFFFFF" fill="none" stroke-width="0.5"/></g><g><path d="M102.20065124999999,67.45763546875Q104.02763125,66.92158546875,104.02763125,66.14292546875Q104.02763125,65.36981346875,102.15679125,64.82812046875Q100.33920125,64.30185556875,97.89337125,64.30185546875Q94.74092125,64.30185556875,92.98238355,65.00543746875L92.91953125,65.03058446875L92.91953125,67.25526546875L92.98238445,67.28041546875Q94.74091125,67.98399546875,97.89337125,67.98399546875Q100.40665125,67.98399546875,102.20065124999999,67.45763546875ZM102.10117125,65.02023046875Q103.82763125,65.52011546875,103.82763125,66.14292546875Q103.82763125,66.77183546875,102.14434125,67.26572546875Q100.37791125,67.78400546875,97.89337125,67.78399546875Q94.83583125,67.78399546875,93.11953125,67.11946546875L93.11953125,65.16638746875Q94.83583125,64.50185536875,97.89337125,64.50185536875Q100.31084125,64.50185486875,102.10117125,65.02023046875Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><g><g><path d="M84.98658996972657,71.2499885559082L84.88896496972656,71.2499885559082Q84.90975496972656,71.2370474559082,84.94004396972656,71.2370474559082Q84.96999596972657,71.2370474559082,84.98658996972657,71.2499885559082ZM84.88734896972656,71.4292245559082Q84.85928296972656,71.43704755590821,84.82400196972657,71.43704755590821Q84.71004506972656,71.43704755590821,84.59372226972656,71.3206881559082L84.42307596972657,71.14998855590821L84.93795896972657,71.14998855590821L84.96724996972657,71.1792889559082Q85.02172696972656,71.2337824559082,85.03911996972656,71.2801800559082Q85.05506696972657,71.32271715590821,85.04297396972656,71.3614255559082Q85.01934996972656,71.43704755590821,84.94004396972656,71.43704755590821Q84.91069596972656,71.43704755590821,84.88734896972656,71.4292245559082Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M99.28606662597656,73.1071736340332C98.70586662597657,70.55360363403321,96.96516662597656,68.8125296340332,95.34054662597656,69.1607390340332L92.90362662597656,69.6250266340332L92.90362662597656,70.0893136340332C93.01966662597655,70.9018136340332,91.27900662597656,71.7143136340332,88.95812662597656,72.0625236340332C88.02977662597657,72.1785936340332,87.10142862597657,72.1785936340332,86.40516662597656,72.0625236340332C87.44956662597656,72.8750236340332,88.37790662597656,74.2678836340332,88.72604662597656,76.0089536340332C89.30626662597656,78.7946736340332,88.49395662597657,81.3482436340332,86.86934462597657,82.0446436340332L96.84916662597657,78.3303836340332C96.96516662597656,78.3303836340332,97.08116662597656,78.3303836340332,97.19726662597657,78.3303836340332C99.05396662597656,77.9821636340332,99.86626662597656,75.6607336340332,99.28606662597656,73.1071736340332Z" fill="#FFFFFF" fill-opacity="1"/><path d="M99.28606662597656,73.1071736340332C98.70586662597657,70.55360363403321,96.96516662597656,68.8125296340332,95.34054662597656,69.1607390340332L92.90362662597656,69.6250266340332L92.90362662597656,70.0893136340332C93.01966662597655,70.9018136340332,91.27900662597656,71.7143136340332,88.95812662597656,72.0625236340332C88.02977662597657,72.1785936340332,87.10142862597657,72.1785936340332,86.40516662597656,72.0625236340332C87.44956662597656,72.8750236340332,88.37790662597656,74.2678836340332,88.72604662597656,76.0089536340332C89.30626662597656,78.7946736340332,88.49395662597657,81.3482436340332,86.86934462597657,82.0446436340332L96.84916662597657,78.3303836340332C96.96516662597656,78.3303836340332,97.08116662597656,78.3303836340332,97.19726662597657,78.3303836340332C99.05396662597656,77.9821636340332,99.86626662597656,75.6607336340332,99.28606662597656,73.1071736340332Z" fill="#FFFFFF" fill-opacity="1"/><path d="M97.20656662597656,78.4303836340332L97.21566662597657,78.4286736340332Q98.64146662597656,78.16127363403321,99.24886662597656,76.58167363403321Q99.83286662597656,75.06269363403321,99.38356662597656,73.0850136340332Q98.94196662597656,71.1417036340332,97.77566662597656,69.9750856340332Q96.59176662597656,68.79091163403321,95.32068662597656,69.0627236340332L92.80362662597656,69.5422796340332L92.80362662597656,70.0964186340332L92.80463662597656,70.1034526340332Q92.88004662597656,70.6314536340332,91.80072662597657,71.1602236340332Q90.69866662597656,71.70013363403321,88.94450662597656,71.9634536340332Q87.50089662597657,72.1438036340332,86.42161042597657,71.96388363403321L86.03203562597656,71.8989436340332L86.34376372597656,72.1414536340332Q88.12834662597656,73.5297736340332,88.62798662597656,76.0285636340332Q89.05614662597657,78.08423363403321,88.52901662597657,79.7806436340332Q88.01143662597656,81.44624363403321,86.82994462597657,81.9527436340332L86.90422462597657,82.1383436340332L96.86716662597657,78.4303836340332L97.20656662597656,78.4303836340332ZM97.18786662597657,78.2303836340332Q98.49676662597656,77.9802036340332,99.06216662597656,76.5098936340332Q99.62436662597656,75.0476836340332,99.18856662597656,73.1293236340332Q98.75976662597657,71.2422936340332,97.63426662597657,70.1164936340332Q96.52676662597656,69.00876663403321,95.36150662597656,69.2585176340332L95.36038662597656,69.2587576340332L93.00362662597657,69.7077726340332L93.00362662597657,70.0824776340332Q93.09200662597657,70.75032363403321,91.88871662597656,71.3398336340332Q90.75852662597656,71.8935236340332,88.97296662597657,72.16141363403321L88.97175662597657,72.1616036340332L88.97053662597656,72.1617536340332Q87.72530662597656,72.3174436340332,86.74067462597657,72.2095336340332Q88.34918662597656,73.6142436340332,88.82410662597657,75.9893436340332Q89.26249662597657,78.0941336340332,88.72000662597657,79.8399436340332Q88.35727662597657,81.0072436340332,87.67497662597657,81.6381436340332L96.83116662597656,78.2303836340332L97.18786662597657,78.2303836340332Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g></g></g><g transform="matrix(0.9760475158691406,-0.21780352294445038,0.21779371798038483,0.9759398102760315,-13.773459687166905,19.350341463527002)" filter="url(#master_svgl_500_11445)"><ellipse cx="84.35597634315491" cy="77.70651960372925" rx="3.4814646244049072" ry="5.571265697479248" fill="#FFFFFF" fill-opacity="0.15000000596046448"/><ellipse cx="84.35597634315491" cy="77.70651960372925" rx="3.4814646244049072" ry="5.571265697479248" fill-opacity="0" stroke-opacity="0.4699999988079071" stroke="#FFFFFF" fill="none" stroke-width="0.5"/></g><g filter="url(#master_svgm_500_11455)"><path d="M86.405064375,48.26786443359375C86.289014375,48.26786443359375,86.172974375,48.38393443359375,86.056924375,48.38393443359375C85.708788375,48.50000443359375,85.244619375,48.38393443359375,84.896484375,48.26786443359375L84.896484375,71.24999443359374L85.012526375,71.24999443359374Q85.012526375,71.24999443359374,85.012526375,71.36609443359376C85.592746375,71.36609443359376,86.172964375,71.71429443359375,86.637144375,72.06249443359374C87.333404375,72.17859443359376,88.261764375,72.17859443359376,89.190104375,72.06249443359374C91.394944375,71.83039443359375,93.135604375,70.90179443359375,93.135604375,70.08929443359375L93.135604375,46.52679443359375L86.405064375,48.26786443359375Z" fill="#FFFFFF" fill-opacity="0.699999988079071"/><path d="M93.235604375,70.08929443359375L93.235604375,46.39763443359375L93.110564375,46.42998113359375L86.390284375,48.16839443359375Q86.311374375,48.17389443359375,86.186264375,48.23646443359375Q86.091344375,48.28393443359375,86.056924375,48.28393443359375L86.040694375,48.28393443359375L86.025294375,48.28906443359375Q85.650772375,48.41393443359375,84.928113275,48.173004433593746L84.796484375,48.12911443359375L84.796484375,71.34999443359375L84.912526575,71.34999443359375L84.912526575,71.46609443359375L85.012526375,71.46609443359375Q85.675448375,71.46609443359375,86.577134375,72.14249443359375L86.596644375,72.15709443359376L86.620704375,72.16109443359375Q87.729184375,72.34599443359375,89.20251437499999,72.16169443359375Q90.847834375,71.98849443359376,92.035124375,71.38259443359375Q93.235604375,70.76999443359375,93.235604375,70.08929443359375ZM84.996484375,71.14999443359375L84.996484375,48.40449443359375Q85.676667375,48.60885443359375,86.075184375,48.48313443359375Q86.153364375,48.47653443359375,86.275724375,48.41533443359375Q86.370654375,48.36786443359375,86.405064375,48.36786443359375L86.417784375,48.36786443359375L93.035604375,46.65595443359375L93.035604375,70.08929443359375Q93.035604375,70.64749443359375,91.944214375,71.20449443359375Q90.789994375,71.79349443359375,89.177704375,71.96329443359375Q87.749234375,72.14189443359375,86.677454375,71.96779443359375Q85.799205375,71.31419443359376,85.112526375,71.26939443359375L85.112526375,71.14999443359375L84.996484375,71.14999443359375Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.699999988079071"/></g><g><g><g><path d="M93.10215560009766,70.2586671574707Q93.11964460009766,70.1886911574707,93.11964460009766,69.9732551574707L92.91964480009766,69.9732551574707Q92.91964480009766,70.0076940574707,92.87217470009766,70.1026581574707Q92.80360260009766,70.2398381574707,92.80360260009766,70.3214731574707L92.80360260009766,70.4214731574707L92.90360260009766,70.4214731574707Q93.06146460009765,70.4214731574707,93.10215560009766,70.2586671574707Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M92.7454095008789,70.48949169106446Q92.6533237008789,70.54641759106445,92.60076690087891,70.59898659106446L92.4301049008789,70.76968859106445L92.6714859008789,70.76968859106445Q92.79994590087891,70.76968859106445,92.90176290087891,70.66784759106446Q93.0035699008789,70.56601659106445,93.0035699008789,70.43754959106445L92.80356990087891,70.43754959106445Q92.80356990087891,70.45353779106445,92.7454095008789,70.48949169106446Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M92.7422141743164,70.7403699902832L92.7422151743164,70.7403685902832L92.6007791743164,70.59896259028321L92.6007771743164,70.59896399028321L92.60070317431641,70.5990384902832Q92.4705931743164,70.72912409028321,92.10077617431641,70.92709329028321Q91.8290028743164,71.0725772902832,91.6876630743164,71.1668232902832L91.2074001743164,71.48706629028321L91.76739967431641,71.3470362902832Q92.2584511743164,71.2242462902832,92.7422141743164,70.7403699902832Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g></g></g><g filter="url(#master_svgn_500_11465)"><path d="M96.84916171875,45.2500523828125C96.38496171875,45.2500523828125,96.03686171875,43.6250523828125,96.03686171875,41.7679123828125C96.15286171875,39.7946923828125,96.61706171875,38.2857623828125,97.08126171875,38.2857623828125L100.67856171875,38.9821923828125C99.98236171875,36.7768323828125,98.58976171875,35.3839793828125,97.31336171875,35.6161186828125C97.19726171875,35.6161186828125,97.19726171875,35.6161186828125,97.08126171875,35.7321883828125L83.96826171875,38.8661223828125C85.59288171875,38.7500523828125,87.21749171875,40.4911223828125,87.79771171875,42.9286123828125C88.37793171875,45.3661123828125,87.56563171875,47.5714423828125,86.17310171875,48.2679423828125L96.84916171875,45.2500523828125Z" fill="#FFFFFF" fill-opacity="0.699999988079071"/><path d="M85.18097171875,48.6522423828125L86.20030171875,48.3641423828125L97.57056171875,45.150052382812504L96.84916171875,45.150052382812504Q96.58606171875,45.150052382812504,96.36646171875,44.1832523828125Q96.13706171875,43.1738123828125,96.13686171875,41.7708423828125Q96.22286171875,40.3129523828125,96.52416171875,39.3158123828125Q96.80096171875,38.4000323828125,97.07276171875,38.3859823828125L100.82456171875,39.1123023828125L100.77396171875,38.9520823828125Q100.24436171875,37.2747223828125,99.28426171875,36.3143913828125Q98.30836171875,35.3382443828125,97.30366171874999,35.5162560828125Q97.16276171875,35.5202641828125,97.03156171875,35.6412392828125L82.75626171875,39.0529623828125L83.97538800875,38.9658623828125Q85.14370171875,38.8823923828125,86.20177171875,40.008262382812504Q87.27045171875,41.1454323828125,87.70043171875,42.9517723828125Q88.11851171875,44.7081023828125,87.63003171875,46.2204423828125Q87.16504171875,47.6600423828125,86.12837171875,48.1784423828125L85.18097171875,48.6522423828125ZM86.75977171875,47.9981423828125Q87.45867171875,47.4016423828125,87.82035171875,46.2819423828125Q88.32604171875,44.7162823828125,87.89500171875,42.9054623828125Q87.45268171875,41.0472923828125,86.34751171875,39.8712923828125Q85.52625171875,38.9974123828125,84.63016271875,38.8107423828125L97.13196171875,35.8228793828125L97.15196171875,35.8028903828125Q97.23866171875,35.7161183828125,97.31336171875,35.7161183828125L97.32236171875,35.7161183828125L97.33126171875,35.7145043828125Q98.23706171875,35.5497779828125,99.14286171875,36.4557953828125Q100.02236171875,37.3355023828125,100.53096171875,38.8517623828125L97.09086171875,38.1857623828125L97.08126171875,38.1857623828125Q96.65686171875,38.1857623828125,96.33276171874999,39.2579523828125Q96.02426171875,40.2786723828125,95.93696171875,41.7620323828125L95.93686171875,41.7649723828125L95.93686171875,41.7679023828125Q95.93686171875,43.1951923828125,96.17136171875,44.2275623828125Q96.34016171875,44.970272382812496,96.58226171875,45.221552382812504L86.75977171875,47.9981423828125Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.699999988079071"/></g><g><path d="M123.77124138671876,41.1874513984375C123.77124138671876,41.6517383984375,122.14662138671875,41.9999533984375,120.17387138671874,41.8838733984375C118.20113138671876,41.7678083984375,116.57651438671876,41.3035203984375,116.57651438671876,40.8392333984375L116.57651438671876,42.2320933984375C117.04069238671875,42.2320933984375,117.27277638671875,43.8570933984375,117.27277638671875,45.7142333984375C117.15673438671875,47.5713733984375,116.80859938671875,49.0803033984375,116.34442138671875,49.1963733984375L116.34442138671875,50.7053033984375C116.69255638671875,50.9374333984375,116.80859938671875,51.4017333984375,116.80859938671875,52.2142333984375C117.38882138671875,52.4463333984375,118.54926138671875,52.6785333984375,119.82574138671875,52.7946333984375C121.79848138671875,52.9106333984375,123.30706138671874,52.5624333984375,123.42310138671876,52.0981333984375L123.77124138671876,41.1874513984375Z" fill="#FFFFFF" fill-opacity="0.5"/><path d="M123.52271138671875,52.112033398437504L123.52305138671875,52.101333398437504L123.87067138671875,41.2067693984375Q123.87124138671875,41.1971643984375,123.87124138671875,41.1874513984375L123.67129138671875,41.1842623984375L123.67083138671875,41.1984493984375Q123.65140138671875,41.4634623984375,122.69272138671874,41.6552433984375Q121.62403138671876,41.8690333984375,120.17975138671875,41.7840503984375Q118.70574138671876,41.6973243984375,117.66318138671875,41.3960673984375Q116.67651538671875,41.1109643984375,116.67651538671875,40.8392333984375L116.47651438671875,40.8392333984375L116.47651438671875,42.3320933984375L116.57651438671876,42.3320933984375Q116.82536238671875,42.3320933984375,117.00032438671875,43.2946233984375Q117.17259338671875,44.2423333984375,117.17277638671875,45.7111133984375Q117.08321138671874,47.1413333984375,116.84226838671874,48.0834333984375Q116.60035838671875,49.0292933984375,116.32016288671875,49.099363398437504L116.24442138671876,49.118303398437504L116.24442138671876,50.758813398437496L116.28894258671875,50.7885033984375Q116.70859938671875,51.0683333984375,116.70859938671875,52.2142333984375L116.70859938671875,52.2819333984375L116.77145338671875,52.3070333984375Q117.77481138671875,52.7085333984375,119.81668138671876,52.8941333984375L119.81827138671875,52.894333398437496L119.81987138671875,52.8944333984375Q121.27496138671874,52.9800333984375,122.34073138671874,52.7619333984375Q123.41521138671875,52.5421333984375,123.52012138671876,52.1224333984375L123.52271138671875,52.112033398437504ZM116.67651438671875,41.1773843984375L116.67651438671875,42.1471833984375Q117.37278138671876,42.3645733984375,117.37278138671876,45.7142333984375L117.37278138671876,45.7173533984375L117.37258138671875,45.7204733984375Q117.28190838671875,47.1716033984375,117.03603138671875,48.1329833984375Q116.79094238671875,49.0912933984375,116.44442138671874,49.2650733984375L116.44442138671874,50.6543033984375Q116.89518638671875,51.006933398437496,116.90821138671875,52.1457333984375Q117.88493138671875,52.5175333984375,119.83320138671876,52.6948333984375Q121.26112138671876,52.7787333984375,122.30064138671875,52.5660333984375Q123.23674138671875,52.3745333984375,123.32352138671875,52.0832333984375L123.66045138671875,41.5240293984375Q123.38118138671875,41.7214803984375,122.73195138671875,41.8513533984375Q121.63800138671876,42.0701933984375,120.16800138671876,41.9837033984375Q118.67168138671875,41.8956633984375,117.60766138671875,41.5882073984375Q116.95214938671874,41.3987923984375,116.67651438671875,41.1773843984375Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.699999988079071"/></g><g><g><g><path d="M124.98783212890625,58.17182340209961Q125.58563212890625,57.20023340209961,125.84223212890625,55.83093340209961Q126.09833212890625,54.46486340209961,125.90033212890626,53.40024340209961Q125.70233212890625,52.33612940209961,125.18333212890624,52.23230340209961L123.34920212890626,51.865379402099606L123.32608212890625,51.95789550209961Q123.25171212890625,52.25543640209961,122.30063212890624,52.45002040209961Q121.26053212890625,52.66281640209961,119.83160212890625,52.57874240209961L119.82867212890625,52.57857040209961L119.82573212890625,52.57857040209961Q117.80332212890625,52.57857040209961,116.86005212890625,52.01246930209961L116.70859212890625,51.92157160209961L116.70859212890625,52.09821340209961Q116.70859212890625,53.36573340209961,116.59394212890625,54.17062340209961Q116.33279212890625,55.47525340209961,115.87828612890625,56.361743402099606Q115.43752612890626,57.22142340209961,115.06793212890625,57.22142340209961L113.97334212890625,57.22142340209961L123.86915212890625,59.04477340209961Q124.38701212890625,59.14838340209961,124.98783212890625,58.17182340209961ZM125.70363212890625,53.43681340209961Q125.89493212890625,54.46471340209961,125.64573212890625,55.79408340209961Q125.39583212890625,57.12697340209961,124.81748212890625,58.06702340209961Q124.28966212890626,58.92494340209961,123.90539212890624,58.84808340209961L115.43462712890624,57.28731340209961Q115.74451412890625,57.06103340209961,116.05625812890625,56.45299340209961Q116.52392212890625,55.54082340209961,116.79061212890625,54.20711340209961L116.79115212890625,54.20438340209961L116.79154212890624,54.201643402099606Q116.90076212890625,53.43690340209961,116.90807212890626,52.26785340209961Q117.89931212890625,52.77818040209961,119.82279212890624,52.778569402099606Q121.27602212890625,52.86378940209961,122.34072212890625,52.64596140209961Q123.29670212890625,52.45037540209961,123.48517212890624,52.09654440209961L125.04291212890625,52.40816840209961Q125.07043212890625,52.43036140209961,125.10573212890625,52.43036140209961L125.15323212890625,52.43036140209961Q125.53253212890625,52.51669340209961,125.70363212890625,53.43681340209961Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g><g><path d="M116.22723732109375,50.70541000366211L116.22723732109375,50.60541000366211L116.17035346105375,50.60541000366211Q116.15046222109375,50.60541000366211,116.13208512109375,50.61302200366211Q116.11370802109376,50.62063410366211,116.09964282109375,50.63469930366211Q116.08557762109375,50.64876460366211,116.07796552109374,50.66714170366211Q116.07035352109375,50.685518803662106,116.07035342109376,50.70541000366211Q116.07035352109375,50.72530120366211,116.07796552109374,50.74367830366211Q116.08557762109375,50.76205540366211,116.09964282109375,50.77612070366211Q116.11370802109376,50.790185903662106,116.13208512109375,50.79779790366211Q116.15046222109375,50.80541000366211,116.17035346105375,50.80541000366211L116.22723732109375,50.80541000366211L116.22723732109375,50.70541000366211Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g></g></g><g><path d="M130.5018587109375,50.8214846015625C130.5018587109375,51.2857716015625,128.8772487109375,51.6339766015625,126.9044987109375,51.5179066015625C124.9317587109375,51.4018416015625,123.3071397109375,50.9375536015625,123.3071397109375,50.4732666015625L123.1910977109375,52.0982666015625L123.3071397109375,51.9821966015625L125.0477987109375,52.3304166015625C125.6280187109375,52.4464866015625,125.9761587109375,54.0714866015625,125.6280187109375,55.9286266015625C125.2798787109375,57.7857666015625,124.4675787109375,59.1786366015625,123.77131871093749,59.0625566015625L122.9590127109375,58.9464866015625L122.7269287109375,63.9375666015625Q122.7269287109375,63.9375666015625,122.7269287109375,64.0536666015625C122.7269287109375,64.6339666015625,124.2355087109375,65.0982666015625,126.3242887109375,65.2143666015625C128.2970387109375,65.3303666015625,129.9216487109375,64.8661666015625,129.9216487109375,64.2857666015625Q129.9216487109375,64.2857666015625,129.9216487109375,64.1696666015625L130.5018587109375,50.8214846015625Z" fill="#FFFFFF" fill-opacity="0.800000011920929"/><path d="M130.0216487109375,64.1718666015625L130.0216487109375,64.2857666015625Q130.0216487109375,64.8055666015625,128.8885187109375,65.1078666015625Q127.7902787109375,65.4007666015625,126.3187387109375,65.3141666015625Q124.7243987109375,65.2255666015625,123.7119877109375,64.9033666015625Q122.6269287109375,64.5580666015625,122.6269287109375,64.0536666015625L122.6269287109375,63.9352666015625L122.8642317109375,58.8319266015625L123.7866187109375,58.9637266015625L123.7877587109375,58.9639166015625Q124.2402087109375,59.0393466015625,124.7440787109375,58.1847566015625Q125.2708287109375,57.2913466015625,125.5297287109375,55.9102066015625Q125.7798587109375,54.5758866015625,125.5875887109375,53.4941166015625Q125.4118187109375,52.5052166015625,125.0281787109375,52.4284766015625L123.3400127109375,52.090756601562504L123.0722537109375,52.3585766015625L123.4071407109375,47.6689766015625L123.4071397109375,50.4732666015625Q123.4071397109375,50.7449976015625,124.3937987109375,51.0301006015625Q125.4363687109375,51.3313576015625,126.9103787109375,51.4180836015625Q128.35465871093749,51.5030566015625,129.4233487109375,51.2892746015625Q130.3748787109375,51.0989226015625,130.4011187109375,50.8364276015625L130.4019587109375,50.8171416015625L130.6018587109375,50.8214846015625Q130.6018587109375,50.8346916015625,130.6008187109375,50.8477106015625L130.0216487109375,64.1718666015625ZM130.3870187109375,51.1609136015625L129.8217487109375,64.1653666015625L129.8216487109375,64.1675666015625L129.8216487109375,64.2857666015625Q129.8216487109375,64.65196660156249,128.8369787109375,64.9145666015625Q127.7698687109375,65.1992666015625,126.3298387109375,65.1144666015625Q124.7608587109375,65.0272666015625,123.7726387109375,64.71276660156249Q122.8269287109375,64.4118666015625,122.8269287109375,64.0536666015625L122.8269287109375,63.9398666015625L123.0537947109375,59.0610466015625L123.7560587109375,59.1613866015625Q124.3433387109375,59.2582166015625,124.9163587109375,58.286336601562496Q125.4609287109375,57.3626966015625,125.7263087109375,55.9470566015625Q125.9831587109375,54.5768466015625,125.7844987109375,53.4591166015625Q125.5848587109375,52.3358666015625,125.0674187109375,52.2323566015625L123.3069267109375,51.8801766015625L123.3845837109375,50.7927006015625Q123.6551507109375,51.0248446015625,124.3382787109375,51.2222406015625Q125.4023087109375,51.5296966015625,126.8986287109375,51.6177366015625Q128.36862871093751,51.7042266015625,129.4625787109375,51.4853866015625Q130.1071187109375,51.3564506015625,130.3870187109375,51.1609136015625Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="1"/></g></g><g><path d="M82.57568359375,141.93745278320313L82.57568359375,131.14285278320312L142.80248359375,158.99995278320313L141.99018359375,170.60715278320313L82.57568359375,141.93745278320313Z" fill="url(#master_svgo_330_6594)" fill-opacity="1"/></g><g><path d="M187.247334375,124.87509155273438L185.738834375,135.55369155273436L141.990234375,170.60719155273438L142.802538375,159.00009155273438L187.247334375,124.87509155273438Z" fill="url(#master_svgp_330_5278)" fill-opacity="1"/></g><g filter="url(#master_svgq_500_11521)"><path d="M147.32838037109374,150.41073051757812L128.87738037109375,142.75003051757812L129.34155837109375,131.37503051757812L147.90858037109376,139.15181051757813L147.32838037109374,150.41073051757812Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M147.55978037109375,150.77753051757813L148.15828037109375,139.16468051757812L148.16728037109374,138.98913051757813L129.10642937109375,131.00550351757812L128.62047837109375,142.9140305175781L147.55978037109375,150.77753051757813ZM147.64988037109376,139.31449051757812L147.09698037109376,150.04393051757813L129.13428237109375,142.58603051757814L129.57668637109376,131.74455751757813L147.64988037109376,139.31449051757812Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgr_500_11487)"><path d="M160.093496875,130.79470825195312L141.758496875,123.48220825195312L129.341796875,131.37506825195314L147.908796875,139.15180825195313L160.093496875,130.79470825195312Z" fill="#FFFFFF" fill-opacity="0.14901961386203766"/><path d="M128.803844875,131.42078825195313L147.937896875,139.43510825195312L148.050196875,139.35800825195312L160.621096875,130.73598825195313L141.732296875,123.20261725195313L128.803844875,131.42078825195313ZM147.879796875,138.86860825195313L129.879747875,131.32934825195312L141.784696875,123.76179925195312L159.565796875,130.85343825195312L147.879796875,138.86860825195313Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgs_500_11485)"><path d="M147.328125,150.41074721679686L159.048525,141.47324721679686L160.092925,130.79464721679688L147.908345,139.15178721679686L147.328125,150.41074721679686Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M160.394025,130.28502021679688L147.665036,139.01551721679687L147.658676,139.13891721679687L147.050689,150.93664721679687L159.286725,141.60594721679686L160.394025,130.28502021679688ZM148.151654,139.2880572167969L147.605561,149.88474721679688L158.810325,141.34044721679686L159.791925,131.30427421679687L148.151654,139.2880572167969Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgt_500_11477)"><path d="M128.18111962890626,142.40175834960937L111.12261962890625,135.08925834960937L111.35471262890626,124.17855834960938L128.76131962890625,131.02676834960937L128.18111962890626,142.40175834960937Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M128.41251962890624,142.77295834960938L129.01101962890624,131.03949834960937L129.02011962890626,130.85994834960937L111.11239902890625,123.81457334960938L110.86908862890625,135.2525583496094L128.41251962890624,142.77295834960938ZM128.50251962890624,131.19358834960937L127.94971962890625,142.03055834960938L111.37615062890625,134.92595834960937L111.59702662890625,124.54254334960937L128.50251962890624,131.19358834960937Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgu_500_11476)"><path d="M140.8296921875,123.36616155273437L123.7711921875,116.75009155273438L111.3544921875,124.17866155273437L128.7610921875,131.02689155273438L140.8296921875,123.36616155273437Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M110.7898271875,124.22516155273438L128.7877921875,131.30599155273438L128.8950921875,131.23789155273437L141.3813921875,123.31202155273438L123.74769218750001,116.47282955273438L110.7898271875,124.22516155273438ZM128.7343921875,130.74769155273438L111.9191571875,124.13216155273437L123.7946921875,117.02735355273437L140.27789218750002,123.42030155273437L128.7343921875,130.74769155273438Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgv_500_11475)"><path d="M110.7748421875,134.74113608398437L94.7607421875,127.89283608398438L94.7607421875,117.09823608398438L111.0069421875,123.71431608398437L110.7748421875,134.74113608398437Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M111.0169421875,135.11653608398439L111.2568421875,123.71957608398438L111.2604421875,123.54763608398437L94.5107421875,116.72649108398437L94.5107421875,128.05783608398437L111.0169421875,135.11653608398439ZM110.7533421875,123.88098608398437L110.5326421875,134.36563608398438L95.0107421875,127.72793608398437L95.0107421875,117.46998108398438L110.7533421875,123.88098608398437Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g><g filter="url(#master_svgw_500_11480)"><path d="M123.3075421875,116.51787608398438L107.9897421875,110.59823608398438L94.7607421875,117.09823608398438L111.0069421875,123.71433608398438L123.3075421875,116.51787608398438Z" fill="#FFFFFF" fill-opacity="0.15129999816417694"/><path d="M94.1503561875,117.11959608398438L111.02674218749999,123.99233608398437L111.1331421875,123.93013608398438L123.8815421875,116.47168608398438L107.9777421875,110.32558208398437L94.1503561875,117.11959608398438ZM110.9870421875,123.43633608398437L95.3711281875,117.07687608398437L108.0017421875,110.87089008398438L122.7335421875,116.56406608398437L110.9870421875,123.43633608398437Z" fill-rule="evenodd" fill="#FAFDFF" fill-opacity="0.4699999988079071"/></g></g></g></svg>
@@ -0,0 +1,21 @@
1
+ [
2
+ {
3
+ "block_name": "DemoBlock",
4
+ "block_type": "shape_statement",
5
+ "block_color": "#ffa211",
6
+ "block_configs": [
7
+ {
8
+ "message": "blocksDemoKey",
9
+ "params": [
10
+ {
11
+ "name": "id",
12
+ "param_type": "input_value",
13
+ "data_type": "math_number",
14
+ "default": "9"
15
+ }
16
+ ]
17
+ }
18
+ ],
19
+ "block_code": ["demoMethod1({id})\n"]
20
+ }
21
+ ]
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "DH",
3
+ "version": "test_permission22",
4
+ "description": "%{configDemoKey}"
5
+ }
@@ -0,0 +1,7 @@
1
+ [
2
+ {
3
+ "script_name": "DemoScript",
4
+ "message": "%{scriptDemoKey}",
5
+ "script_code": "demoMethod1({id = 1})"
6
+ }
7
+ ]
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "Toolbar",
3
+ "width": 800,
4
+ "height": 900
5
+ }
package/dpt.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "ip": "192.168.5.1",
3
+ "pluginPort": 22100
4
+ }
@@ -0,0 +1,19 @@
1
+ --- @module control
2
+ --- @description This is the control module for the plugin.
3
+ --- 该模块为插件的功能模块,用于实现各种控制功能。
4
+
5
+ local control = {}
6
+
7
+ control.controlMethod1 = function(params)
8
+ -- TODO 实现函数逻辑
9
+ end
10
+
11
+ control.controlMethod2 = function(params)
12
+ -- TODO 实现函数逻辑
13
+ end
14
+
15
+ control.controlMethod3 = function(params)
16
+ -- TODO 实现函数逻辑
17
+ end
18
+
19
+ return control
package/lua/daemon.lua ADDED
@@ -0,0 +1,22 @@
1
+ --- @module daemon
2
+ --- @description This is the daemon module for the plugin.
3
+ --- 该模块插件的入口进程,在插件安装成功后自动执行该文件中的 EventLoop 方法,该方法会不断的执行,直到程序退出。
4
+
5
+ local mqtt = require('utils.mqtt')
6
+
7
+ local function handleInLoop()
8
+ local data = {}
9
+ mqtt.publish(data)
10
+ end
11
+
12
+ local function EventLoop()
13
+ while true do
14
+ handleInLoop()
15
+ Wait(1000)
16
+ end
17
+ end
18
+
19
+ local thread = systhread.create(EventLoop, 1)
20
+ thread:wait()
21
+
22
+
@@ -0,0 +1,65 @@
1
+ --- @module httpAPI
2
+ --- @description This is the http module for the plugin.
3
+ --- 该模块为控制器处理插件的 http 请求提供接口
4
+
5
+ local control = require("control")
6
+
7
+ local httpModule = {}
8
+
9
+ --- This function will be called when plugin uninstalled
10
+ --- 插件卸载时执行该函数
11
+ httpModule.OnUninstall = function()
12
+ -- TODO 需要在插件卸载时执行的操作
13
+ end
14
+
15
+ --- This function will be called when plugin installed
16
+ --- 插件安装时自动执行该函数
17
+ httpModule.OnInstall = function()
18
+ -- TODO 需要在插件安装时执行的操作
19
+ end
20
+
21
+ --- This function will be called when plugin installed, this action will export some http method for device hotkey binding
22
+ --- 插件安装时自动执行该函数,该函数会导出一些的http方法,供设备热键绑定使用
23
+ httpModule.OnRegistHotKey = function()
24
+ -- 短按:可选 demoMethod1 demoMethod2 长按:可选 demoMethod3
25
+ return {press = {"demoMethod1", "demoMethod2"}, longPress = {"demoMethod3"}}
26
+ end
27
+
28
+ --- This method will be called when a http '/dobotPlus/[plugin name]_[plugin version]/demoMethod1' request arrived
29
+ --- The return value will response the http request, the return value is not necessory
30
+ --- @param params table
31
+ --- @return string The return value will response the http request, the return value is not necessory
32
+ --- 该方法会在http请求接收到后,自动执行,对应请求的 url为: http://<控制器ip>:<插件端口>/dobotPlus/[插件名]_[插件版本]/demoMethod1。
33
+ httpModule.demoMethod1 = function(params)
34
+ -- TODO 需要在接收到http请求后执行的操作
35
+ return {
36
+ --- Your responce data
37
+ --- example: status = true
38
+ }
39
+ end
40
+
41
+ --- This method will be called when a http '/dobotPlus/[plugin name]_[plugin version]/demoMethod2' request arrived
42
+ --- The return value will response the http request, the return value is not necessory
43
+ --- @param params table
44
+ --- @return string
45
+ httpModule.demoMethod2 = function(params)
46
+
47
+ return {
48
+ --- Your responce data
49
+ --- example: status = true
50
+ }
51
+ end
52
+
53
+ --- This method will be called when a http '/dobotPlus/[plugin name]_[plugin version]/demoMethod3' request arrived
54
+ --- The return value will response the http request, the return value is not necessory
55
+ --- @param params table
56
+ --- @return string The return value will response the http request, the return value is not necessory
57
+ httpModule.demoMethod3 = function(params)
58
+
59
+ return {
60
+ --- Your responce data
61
+ --- example: status = true
62
+ }
63
+ end
64
+
65
+ return httpModule
@@ -0,0 +1,51 @@
1
+ --- @module userAPI
2
+ --- @description This is the user API module for the plugin.
3
+ --- 该模块为脚本编程和积木编程提供插件接口
4
+
5
+ require("utils.await485")
6
+ local control = require("control")
7
+
8
+ local userApiModule = {}
9
+
10
+ --- This function will be called when you add it in the blockly programming or script programming
11
+ --- This function can be used in the httpAPI module also
12
+ ---@param params table
13
+ function userApiModule.demoMethod1(params)
14
+
15
+ end
16
+
17
+ --- This function will be called when you add it in the blockly programming or script programming
18
+ --- This function can be used in the httpAPI module also
19
+ ---@param params table
20
+ function userApiModule.demoMethod2(params)
21
+
22
+ end
23
+
24
+ --- This function will be called when you add it in the blockly programming or script programming
25
+ --- This function can be used in the httpAPI module also
26
+ ---@param params table
27
+ function userApiModule.demoMethod3(params)
28
+
29
+ end
30
+
31
+ -- This function will be called when the plugin is installed
32
+ -- The export functions will be registered to the corresponding code block or script in blockly programming or script programming
33
+ -- 该函数会在插件安装后自动执行,其中 ExportFunction 函数会将第二个参数的方法导出给脚本编程和积木编程使用
34
+ -- 例如:ExportFunction('A', B) 会将当前模块中的 B 函数导出,并重命名为 'A'
35
+ -- 在脚本编程和积木编程中可以使用 A 来使用该函数
36
+ function userApiModule.OnRegist()
37
+ EcoLog(" --- OnRegist .... --- ")
38
+ -- 0. 接口导出
39
+ local isErr = ExportFunction("[export name you want]", userApiModule.demoMethod1) or
40
+ ExportFunction("[export name you want]", userApiModule.demoMethod2) or
41
+ ExportFunction("[export name you want]", userApiModule.demoMethod3)
42
+ -- 1. 错误的处理
43
+ if isErr then
44
+ EcoLog(" --- ERR to register .... --- ", isErr)
45
+ dobotTool.SetError(0)
46
+ end
47
+ end
48
+
49
+ return userApiModule
50
+
51
+
@@ -0,0 +1,55 @@
1
+ require('utils.variables')
2
+ require("utils.util")
3
+ local lockerName = "dobot_485_lock"
4
+
5
+ --- 配置并锁定 485 接口。
6
+ --- @param duration number|nil 锁定持续时间(毫秒),默认为 10000 毫秒。
7
+ --- @param waitTime number|nil 等待锁定的最大时间(毫秒),默认为 10000 毫秒。
8
+ --- @return boolean 返回是否成功锁定。
9
+ function Use485(duration, waitTime)
10
+ local _duration = 10000
11
+ if duration then
12
+ _duration = duration
13
+ end
14
+
15
+ local result = Lock(lockerName, _duration, waitTime == nil and 10000 or waitTime)
16
+ Wait(10)
17
+ return result
18
+ end
19
+
20
+ --- 使用 485 接口写入 Modbus 寄存器。
21
+ --- @param modbusID number Modbus 从机地址。
22
+ --- @param address number 寄存器地址。
23
+ --- @param datas table 要写入的数据列表。
24
+ --- @return boolean 返回是否成功写入。
25
+ function WriteBy485(modbusID, address, datas)
26
+ local result = Lock(lockerName, 10000, 10000)
27
+ Wait(10)
28
+
29
+ SetHoldRegs(modbusID, address, #datas, datas)
30
+
31
+ Wait(10)
32
+ UnLock485()
33
+ return result
34
+ end
35
+
36
+ --- 使用 485 接口读取 Modbus 寄存器。
37
+ --- @param modbusID number Modbus 从机地址。
38
+ --- @param address number 寄存器地址。
39
+ --- @param num number 要读取的寄存器数量。
40
+ --- @return table 返回读取的数据列表。
41
+ function ReadBy485(modbusID, address, num)
42
+ local result = Lock(lockerName, 10000, 10000)
43
+ Wait(10)
44
+
45
+ local registerData = GetHoldRegs(modbusID, address, num)
46
+
47
+ Wait(10)
48
+ UnLock485()
49
+ return registerData
50
+ end
51
+
52
+ --- 解锁 485 接口。
53
+ function UnLock485()
54
+ UnLock(lockerName)
55
+ end
@@ -0,0 +1,17 @@
1
+ local jsonLuaUtils = require("luaJson")
2
+ local mqttFunc = require("libplugin_eco")
3
+
4
+ local MQTT_PUBLISH_TOPIC = "$PLUGIN_MSG_TOPIC$"
5
+ local connectId = "$PLUGIN_NAME$"
6
+
7
+ mqttFunc.MQTTCreate(connectId,"127.0.0.1",1883,600)
8
+ mqttFunc.MQTTConnect(connectId)
9
+
10
+ return {
11
+ mqtt = mqttFunc,
12
+ --- 发布数据到指定的 MQTT 主题。
13
+ --- @param data table 要发布的数据,数据将被编码为 JSON 格式。
14
+ publish = function(data)
15
+ mqttFunc.MQTTPublish(connectId, MQTT_PUBLISH_TOPIC, jsonLuaUtils.encode(data), 0, false)
16
+ end
17
+ }
@@ -0,0 +1,41 @@
1
+ local NumberConversion = {}
2
+
3
+ -- 将二进制字符串转换为十进制数
4
+ function NumberConversion.binaryToDecimal(binaryStr)
5
+ return tonumber(binaryStr, 2)
6
+ end
7
+
8
+ -- 将十进制数转换为二进制字符串
9
+ function NumberConversion.decimalToBinary(dec)
10
+ local binaryStr = ""
11
+ while dec > 0 do
12
+ local remainder = dec % 2
13
+ binaryStr = remainder .. binaryStr
14
+ dec = math.floor(dec / 2)
15
+ end
16
+ return binaryStr == "" and "0" or binaryStr
17
+ end
18
+
19
+ -- 将十六进制字符串转换为十进制数
20
+ function NumberConversion.hexToDecimal(hexStr)
21
+ return tonumber(hexStr, 16)
22
+ end
23
+
24
+ -- 将十进制数转换为十六进制字符串
25
+ function NumberConversion.decimalToHex(dec)
26
+ return string.format("%X", dec)
27
+ end
28
+
29
+ -- 将二进制字符串转换为十六进制字符串
30
+ function NumberConversion.binaryToHex(binaryStr)
31
+ local dec = NumberConversion.binaryToDecimal(binaryStr)
32
+ return NumberConversion.decimalToHex(dec)
33
+ end
34
+
35
+ -- 将十六进制字符串转换为二进制字符串
36
+ function NumberConversion.hexToBinary(hexStr)
37
+ local dec = NumberConversion.hexToDecimal(hexStr)
38
+ return NumberConversion.decimalToBinary(dec)
39
+ end
40
+
41
+ return NumberConversion