ghost 4.34.3 → 4.36.2

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 (87) hide show
  1. package/README.md +1 -1
  2. package/core/boot.js +7 -0
  3. package/core/bridge.js +2 -6
  4. package/core/built/assets/ghost-dark-25e568b14d76f6754fa8279cceb265ba.css +1 -0
  5. package/core/built/assets/ghost.min-75ed7451ca633bae1b345eb57e2c28e0.css +1 -0
  6. package/core/built/assets/{ghost.min-4886fb099a526cb6ca5b733bbfbb5d3a.js → ghost.min-7bb27e53841408f542d9b0b5135ca1cb.js} +1762 -1493
  7. package/core/built/assets/icons/event-changed-subscription.svg +6 -0
  8. package/core/built/assets/icons/get-started-import.svg +13 -0
  9. package/core/built/assets/icons/get-started-members.svg +6 -0
  10. package/core/built/assets/icons/get-started-migrations.svg +6 -0
  11. package/core/built/assets/icons/get-started.svg +3 -0
  12. package/core/built/assets/icons/members-placeholder.svg +5 -1
  13. package/core/built/assets/icons/pages-placeholder.svg +3 -1
  14. package/core/built/assets/icons/posts-placeholder.svg +4 -1
  15. package/core/built/assets/icons/tags-placeholder.svg +5 -1
  16. package/core/built/assets/img/get-started-995c36b9ede90bb3777c83751e798ef7.jpg +0 -0
  17. package/core/built/assets/img/marketing/members-1-8b89a1f48fe7b336754e91a429531f65.jpg +0 -0
  18. package/core/built/assets/img/marketing/members-2-791205c82d5cf221f8c99a74f9ee1739.jpg +0 -0
  19. package/core/built/assets/{vendor.min-079fa61c64e24f0984f2cd7d2ebbf3c3.js → vendor.min-2313642ee897688be83924a38d5e62f1.js} +1522 -1466
  20. package/core/frontend/helpers/cancel_link.js +1 -1
  21. package/core/frontend/helpers/prev_post.js +1 -1
  22. package/core/frontend/helpers/products.js +2 -6
  23. package/core/frontend/helpers/tpl/content-cta.hbs +1 -1
  24. package/core/frontend/meta/asset-url.js +11 -0
  25. package/core/frontend/services/routing/controllers/email-post.js +1 -1
  26. package/core/frontend/services/routing/controllers/preview.js +1 -1
  27. package/core/frontend/services/routing/controllers/static.js +1 -1
  28. package/core/frontend/services/routing/helpers/entry-lookup.js +1 -1
  29. package/core/frontend/services/routing/helpers/fetch-data.js +1 -1
  30. package/core/frontend/views/unsubscribe.hbs +4 -2
  31. package/core/server/api/canary/authentication.js +4 -0
  32. package/core/server/api/canary/email-post.js +1 -1
  33. package/core/server/api/canary/pages-public.js +1 -1
  34. package/core/server/api/canary/pages.js +1 -1
  35. package/core/server/api/canary/posts-public.js +1 -1
  36. package/core/server/api/canary/posts.js +1 -1
  37. package/core/server/api/canary/utils/serializers/input/pages.js +1 -9
  38. package/core/server/api/canary/utils/serializers/input/posts.js +1 -9
  39. package/core/server/api/canary/utils/serializers/output/email-posts.js +2 -2
  40. package/core/server/api/canary/utils/serializers/output/pages.js +9 -5
  41. package/core/server/api/canary/utils/serializers/output/posts.js +9 -5
  42. package/core/server/api/canary/utils/serializers/output/preview.js +3 -2
  43. package/core/server/api/canary/utils/serializers/output/products.js +2 -0
  44. package/core/server/api/canary/utils/serializers/output/utils/clean.js +0 -9
  45. package/core/server/api/canary/utils/serializers/output/utils/mapper.js +18 -3
  46. package/core/server/api/canary/utils/validators/input/pages.js +1 -1
  47. package/core/server/api/canary/utils/validators/input/posts.js +1 -1
  48. package/core/server/data/exporter/table-lists.js +1 -0
  49. package/core/server/data/migrations/versions/4.35/2022-01-20-05-55-add-post-products-table.js +8 -0
  50. package/core/server/data/migrations/versions/4.35/2022-01-30-15-17-set-welcome-page-url-from-settings.js +45 -0
  51. package/core/server/data/migrations/versions/4.35/2022-02-01-11-48-update-email-recipient-filter-column-type.js +18 -0
  52. package/core/server/data/migrations/versions/4.35/2022-02-01-12-03-update-recipient-filter-column-type.js +18 -0
  53. package/core/server/data/migrations/versions/4.35/2022-02-02-10-38-add-default-content-visibility-tiers-setting.js +8 -0
  54. package/core/server/data/migrations/versions/4.35/2022-02-02-13-10-transform-specific-tiers-default-content-visibility.js +147 -0
  55. package/core/server/data/migrations/versions/4.35/2022-02-04-04-34-populate-empty-portal-products.js +60 -0
  56. package/core/server/data/migrations/versions/4.36/2022-02-07-14-34-add-last-seen-at-column-to-members.js +10 -0
  57. package/core/server/data/schema/default-settings.json +4 -0
  58. package/core/server/data/schema/schema.js +11 -4
  59. package/core/server/models/post.js +29 -5
  60. package/core/server/models/settings.js +46 -48
  61. package/core/server/services/auth/setup.js +40 -2
  62. package/core/server/services/bulk-email/bulk-email-processor.js +1 -0
  63. package/core/server/services/mega/template.js +1 -1
  64. package/core/server/services/members/config.js +0 -26
  65. package/core/server/services/members/content-gating.js +9 -1
  66. package/core/server/services/members/middleware.js +21 -4
  67. package/core/server/services/members/service.js +30 -4
  68. package/core/server/services/posts/posts-service.js +25 -1
  69. package/core/server/services/settings/index.js +2 -2
  70. package/core/server/services/stripe/config.js +37 -2
  71. package/core/server/web/admin/views/default-prod.html +4 -4
  72. package/core/server/web/admin/views/default.html +4 -4
  73. package/core/shared/labs.js +4 -2
  74. package/jsconfig.json +1 -1
  75. package/package.json +58 -56
  76. package/yarn.lock +2666 -1938
  77. package/core/built/assets/ghost-dark-2de4c728f3d2deae25e45092ea0e811f.css +0 -1
  78. package/core/built/assets/ghost.min-b1d3e45166f2023dd56b35f720636979.css +0 -1
  79. package/core/built/assets/icons/event-filter-email-delivered.svg +0 -5
  80. package/core/built/assets/icons/event-filter-email-failed.svg +0 -6
  81. package/core/built/assets/icons/event-filter-email-opened.svg +0 -4
  82. package/core/built/assets/icons/event-filter-login.svg +0 -5
  83. package/core/built/assets/icons/event-filter-newsletter.svg +0 -4
  84. package/core/built/assets/icons/event-filter-payment.svg +0 -5
  85. package/core/built/assets/icons/event-filter-signup.svg +0 -4
  86. package/core/built/assets/icons/event-filter-subscription.svg +0 -7
  87. package/core/built/assets/icons/selected.svg +0 -3
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="24" height="24" fill="white"/>
3
+ <path d="M12 7.12888V4.12891" stroke="#95A1AD" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M9 15.1288C9 16.6288 10.34 17.1288 12 17.1288C13.66 17.1288 14.9999 17.1288 14.9999 15.1288C14.9999 12.1289 9 12.1289 9 9.12889C9 7.12891 10.34 7.12891 12 7.12891C13.66 7.12891 14.9999 7.8889 14.9999 9.12889" stroke="#95A1AD" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M12 17.1289V20.1289" stroke="#95A1AD" stroke-width="1.71429" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_147_6741)">
3
+ <path d="M2 12.1365L13.6365 0.5" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M13.6361 5.59097V0.5H8.54517" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M18 7.77271L6.36353 19.4092" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M6.36353 14.3184V19.4093H11.4545" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_147_6741">
10
+ <rect width="20" height="20" fill="white"/>
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.23086 8.23076C8.95143 8.23076 10.3462 6.83595 10.3462 5.11538C10.3462 3.3948 8.95143 2 7.23086 2C5.51028 2 4.11548 3.3948 4.11548 5.11538C4.11548 6.83595 5.51028 8.23076 7.23086 8.23076Z" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M13.4615 18.6154H1V17.2308C1 15.5783 1.65645 13.9934 2.82495 12.8249C3.99344 11.6565 5.57826 11 7.23076 11C8.88326 11 10.4681 11.6565 11.6366 12.8249C12.8051 13.9934 13.4615 15.5783 13.4615 17.2308V18.6154Z" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12.769 2C13.5953 2 14.3877 2.32823 14.9719 2.91247C15.5562 3.49672 15.8844 4.28913 15.8844 5.11538C15.8844 5.94163 15.5562 6.73404 14.9719 7.31828C14.3877 7.90253 13.5953 8.23076 12.769 8.23076" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M14.9846 11.2632C16.1641 11.7119 17.1795 12.5081 17.8965 13.5465C18.6135 14.585 18.9983 15.8166 19 17.0786V18.6155H16.9231" stroke="#7C8B9A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13 27L29 11" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M29 18V11H22" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M35 20.9999L19 36.9998" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M19 30V37H26" stroke="#707B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.4705 27.4726L18.8636 34.8949L37.6302 12.3727" stroke="#30CF43" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -1 +1,5 @@
1
- <svg width="138" height="138" viewBox="0 0 138 138" xmlns="http://www.w3.org/2000/svg"><title>Combined Shape</title><g fill="none" fill-rule="evenodd"><path d="M69 .5c37.832 0 68.5 30.668 68.5 68.5s-30.668 68.5-68.5 68.5S.5 106.832.5 69 31.168.5 69 .5zM24.82 98.183h50.347C75.025 88.69 70.84 81.579 62.58 76.79c-8.404-4.871-16.772-4.871-25.175 0-8.26 4.788-12.445 11.899-12.586 21.392zm50.347 0h.503l-.5.5c0-.168 0-.335-.003-.5zm-.663-21.045c5.182 5.666 8.348 12.685 9.498 21.044h28.848c-.14-9.492-4.325-16.603-12.585-21.391-8.404-4.871-16.772-4.871-25.176 0-.198.115-.393.23-.585.347zM49.994 37.58c-4.173 0-7.72 1.475-10.67 4.437s-4.42 6.525-4.42 10.714c0 4.19 1.47 7.752 4.42 10.714 2.95 2.962 6.497 4.437 10.67 4.437 4.171 0 7.718-1.475 10.669-4.437 2.95-2.962 4.42-6.524 4.42-10.714s-1.47-7.752-4.42-10.714c-2.95-2.962-6.498-4.437-10.67-4.437zm37.683 0c-4.172 0-7.719 1.475-10.67 4.437-2.95 2.962-4.42 6.525-4.42 10.714 0 4.19 1.47 7.752 4.42 10.714 2.951 2.962 6.498 4.437 10.67 4.437s7.72-1.475 10.67-4.437 4.42-6.524 4.42-10.714-1.47-7.752-4.42-10.714c-2.95-2.962-6.498-4.437-10.67-4.437z" stroke="#9BAEB8" fill-opacity=".1" fill="#9BAEB8" stroke-linecap="square"/><path stroke-opacity=".012" stroke="#000" stroke-width="0" d="M25 25h88v88H25z"/><path d="M62.832 76.358C71.39 81.32 75.67 88.761 75.67 98.683H24.316c0-9.922 4.28-17.364 12.839-22.325 8.559-4.96 17.118-4.96 25.677 0zm37.684 0c8.559 4.961 12.838 12.403 12.838 22.325l-29.79-.001c-1.114-8.672-4.394-15.888-9.84-21.648.363-.23.734-.455 1.115-.676 8.559-4.96 17.118-4.96 25.677 0zM49.993 37.08c4.305 0 7.98 1.528 11.024 4.584 3.044 3.056 4.566 6.745 4.566 11.067s-1.522 8.01-4.566 11.067c-3.044 3.056-6.719 4.584-11.024 4.584-4.305 0-7.98-1.528-11.023-4.584-3.044-3.056-4.566-6.745-4.566-11.067s1.522-8.01 4.566-11.067c3.044-3.056 6.718-4.584 11.023-4.584zm37.684 0c4.305 0 7.98 1.528 11.024 4.584 3.044 3.056 4.566 6.745 4.566 11.067s-1.522 8.01-4.566 11.067c-3.044 3.056-6.719 4.584-11.024 4.584-4.305 0-7.98-1.528-11.023-4.584-3.045-3.056-4.567-6.745-4.567-11.067s1.522-8.01 4.567-11.067c3.044-3.056 6.718-4.584 11.023-4.584z" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
1
+ <svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.525 1.275a3.5 3.5 0 1 1 4.95 4.95 3.5 3.5 0 0 1-4.95-4.95ZM12 1.25a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.995 8.995A4.25 4.25 0 0 1 16.25 12v2.25a.5.5 0 0 1-.5.5h-1.059l-.695 5.562a.5.5 0 0 1-.496.438h-3a.5.5 0 0 1-.496-.438l-.695-5.562H8.25a.5.5 0 0 1-.5-.5V12a4.25 4.25 0 0 1 1.245-3.005ZM12 8.75A3.25 3.25 0 0 0 8.75 12v1.75h1a.5.5 0 0 1 .496.438l.695 5.562h2.118l.695-5.562a.5.5 0 0 1 .496-.438h1V12A3.25 3.25 0 0 0 12 8.75ZM2.555 4.055a2.75 2.75 0 1 1 3.89 3.89 2.75 2.75 0 0 1-3.89-3.89ZM4.5 4.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM3.872 9.298c.667-.1 1.348-.04 1.987.175a.5.5 0 0 1-.318.948A3.252 3.252 0 0 0 1.25 13.5v.249h1a.5.5 0 0 1 .493.418l.68 4.082h2.153l.307-1.838a.5.5 0 1 1 .986.164l-.376 2.256A.5.5 0 0 1 6 19.25H3a.5.5 0 0 1-.493-.418l-.68-4.082H.75a.5.5 0 0 1-.5-.5v-.75a4.255 4.255 0 0 1 3.622-4.202ZM17.555 4.055a2.75 2.75 0 1 1 3.89 3.89 2.75 2.75 0 0 1-3.89-3.89Zm1.945.195a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM19.979 10.287a3.252 3.252 0 0 0-1.52.134.5.5 0 0 1-.32-.948 4.253 4.253 0 0 1 5.61 4.026v.751a.5.5 0 0 1-.5.5h-1.076l-.68 4.082a.5.5 0 0 1-.494.418h-3a.5.5 0 0 1-.493-.418l-.376-2.256a.5.5 0 1 1 .986-.164l.307 1.838h2.153l.68-4.082a.5.5 0 0 1 .493-.418h1v-.25a3.253 3.253 0 0 0-2.77-3.213Z"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.249 20.99v.003-.002Zm.001.005a.5.5 0 0 0-1 .005c0 .337.173.61.38.811.204.2.48.37.79.517.623.294 1.493.547 2.527.753 2.077.416 4.924.669 8.053.669 3.13 0 5.976-.253 8.053-.669 1.034-.206 1.904-.459 2.527-.753.31-.147.586-.316.79-.517.207-.201.38-.474.38-.811a.5.5 0 0 0-1-.006m0 0a.05.05 0 0 0 0 .006v-.006a.303.303 0 0 1-.078.102c-.095.092-.26.205-.52.328-.515.244-1.294.477-2.295.677-1.995.399-4.773.649-7.857.649-3.084 0-5.862-.25-7.857-.65-1.001-.2-1.78-.432-2.295-.676-.26-.123-.425-.236-.52-.328a.304.304 0 0 1-.078-.102m21.5-.003v.002-.002Z"/>
5
+ </svg>
@@ -1 +1,3 @@
1
- <svg width="135" height="135" viewBox="0 0 135 135" xmlns="http://www.w3.org/2000/svg"><title>Group 93 Copy 2</title><g fill="none" fill-rule="evenodd"><path d="M27.05 121.033l26.088-2.742-.017.035c19.625.686 44.306 1.502 56.815 1.93C98.456 129.48 83.873 135 68 135c-15.422 0-29.627-5.21-40.95-13.967zm-6.754-5.987C8.364 102.948 1 86.334 1 68c0-13.298 3.874-25.692 10.556-36.113l8.74 83.16zm2.832-96.801C35.006 7.525 50.741 1 68 1c16.93 0 32.393 6.28 44.187 16.635l-9.047-.315-.085.171-.352-3.351c-.245-2.326-2.329-4.014-4.655-3.769l-74.92 7.874zm97.977 8.898C129.818 38.451 135 52.62 135 68c0 17.06-6.376 32.63-16.874 44.458l2.98-85.315z" fill-opacity=".1" fill="#9BAEB8"/><path d="M102.703 14.14c-.245-2.326-2.329-4.014-4.655-3.769l-83.572 8.783c-2.326.245-4.014 2.329-3.77 4.655l9.843 93.649c.245 2.326 2.329 4.014 4.655 3.77 15.353-1.615 68.219-7.171 83.572-8.785 2.326-.244 4.014-2.328 3.769-4.654l-9.842-93.649zM27.16 43.081l61.594-6.473M26.746 40.014l61.593-6.474" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M12.404 31.893l47.358-4.973-1.345-12.303M73.125 13.36l1.32 12.016 28.764-3.001M16.516 25.015l17.614-1.849M63.06 20.283l6.63-.696M77.884 18.652l6.63-.696M90 17.405l6.631-.696M33.58 97.203l61.593-6.474M34.526 106.213l61.594-6.474M71.46 47.824l18.994-1.996M72.41 56.846l18.992-1.996M73.357 65.867l18.993-1.996M74.305 74.889l18.993-1.996M32.653 88.388l61.594-6.474M64.2 48.587l-35.34 3.715 2.84 27.022 35.34-3.714z"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M35.189 73.927l27.317-2.871-23.741 2.495 6.4-7.903 4.191 3.395"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M47.38 67.442l4.223-5.215 10.903 8.829M38.139 56.417c1.972-.207 3.741 1.225 3.948 3.197.208 1.973-1.225 3.742-3.197 3.949-1.972.207-3.741-1.225-3.949-3.197-.207-1.972 1.226-3.742 3.198-3.949z"/><path d="M53.12 118.326c21.793.761 49.819 1.684 60.491 2.057 2.338.082 4.299-1.747 4.381-4.085l3.286-94.107c.082-2.338-1.747-4.299-4.085-4.381l-14.053-.49" stroke="#9BAEB8"/><g opacity=".6" stroke="#9BAEB8" stroke-linecap="round" stroke-linejoin="round"><path d="M67.706 1c17.084 0 32.303 6.018 44.11 16.595M121.213 27.886c8.29 11.117 13.2 24.9 13.2 39.82 0 16.741-5.801 31.827-16.002 43.545M108.418 120.538c-11.268 8.698-25.39 13.875-40.712 13.875-14.783 0-28.45-4.82-39.512-12.971M20.239 114.555C8.345 102.506 1 85.957 1 67.707c0-13.115 3.793-25.35 10.34-35.669M23.087 18.136c5.9-5.314 12.752-9.592 20.268-12.544M43.355 5.592C50.9 2.628 59.115 1 67.706 1"/></g></g></svg>
1
+ <svg width="48" height="48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 2.492a2 2 0 0 0-2 2v33a2 2 0 0 0 2 2h33a2 2 0 0 0 2-2v-33a2 2 0 0 0-2-2h-33Zm-4 2a4 4 0 0 1 4-4h33a4 4 0 0 1 4 4v33a4 4 0 0 1-4 4h-33a4 4 0 0 1-4-4v-33Zm-5 2a1 1 0 0 1 1 1v36a2 2 0 0 0 2 2h36a1 1 0 1 1 0 2h-36a4 4 0 0 1-4-4v-36a1 1 0 0 1 1-1ZM14 11a2 2 0 0 1 2-2h22a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H16a2 2 0 0 1-2-2v-6Zm24 0H16v6h22v-6ZM15.5 24a1 1 0 0 1 1-1h21a1 1 0 1 1 0 2h-21a1 1 0 0 1-1-1Zm0 6.492a1 1 0 0 1 1-1h15a1 1 0 1 1 0 2h-15a1 1 0 0 1-1-1Z"/>
3
+ </svg>
@@ -1 +1,4 @@
1
- <svg width="155" height="138" viewBox="0 0 155 138" xmlns="http://www.w3.org/2000/svg"><title>Group 78 Copy 2</title><g fill="none" fill-rule="evenodd"><path d="M20.003 29C32.367 12.03 52.396 1 75 1c26.702 0 49.81 15.39 60.935 37.785L110 64V29H20.003zM142.1 57.901c.593 3.612.901 7.32.901 11.099 0 24.755-13.227 46.42-33 58.313V90l32.099-32.099z" fill-opacity=".1" fill="#9BAEB8"/><path d="M141.781 58.044c.66 3.5.73 6.77.73 10.712 0 37.395-30.36 67.756-67.755 67.756C37.36 136.512 7 106.152 7 68.756S37.36 1 74.756 1c26.482 0 49.437 15.226 60.578 37.392" stroke="#9BAEB8"/><path stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M20.4 28.906h89.465L110 64M151.691 47.805L99.632 99.86 87.195 87.423l51.725-51.71c3.52-3.682 7.4-4.113 11.642-1.292 2.218 1.575 3.44 3.72 3.67 6.43.229 2.71-.619 5.029-2.54 6.954zM147.814 52.767c8.994 9.093-10.38 13.362-15.677 18.659l-1.62 4.727M128.367 46.248l12.44 12.44M124.142 50.473l12.44 12.44M93.213 86.015l2.599 2.599M95.978 83.25l2.599 2.598M98.743 80.485l2.599 2.598M101.509 77.72l2.598 2.598M104.274 74.955l2.598 2.598M98.405 91.207l2.598 2.598M101.17 88.442l2.599 2.598M103.935 85.677l2.599 2.598M106.7 82.912l2.6 2.598M109.466 80.147l2.597 2.598M88.994 89.775l-3.806 3.807 8.383 8.383 3.806-3.807M91.282 100.061s-8.137 5.997-9.196 4.945c-1.058-1.052 4.908-9.136 4.908-9.136M109.865 89.785v36.61M18.069 105.13h15.155M41.09 105.13h40.87M11.174 90.318h65.564M8.168 75.507h20.52M35.836 75.507h32.827M8.168 60.695h38.115M54.963 60.695h30.703"/></g></svg>
1
+ <svg width="48" height="48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38.104 2.11a5.5 5.5 0 1 1 7.778 7.78L23.35 32.42a1 1 0 0 1-1.414 0l-6.364-6.364a1 1 0 0 1 0-1.414L38.104 2.11Zm3.89.39a3.5 3.5 0 0 0-2.476 1.025L17.693 25.35l4.95 4.95L44.468 8.475A3.5 3.5 0 0 0 41.993 2.5Z"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M35.855 4.36a1 1 0 0 1 1.414 0l6.364 6.365a1 1 0 0 1-1.414 1.414l-6.364-6.364a1 1 0 0 1 0-1.414ZM16.038 24.38a1 1 0 0 1 .95.263l6.363 6.364a1 1 0 0 1-.416 1.663l-9.15 2.786a1 1 0 0 1-1.248-1.247l2.786-9.15a1 1 0 0 1 .715-.68Zm.713 2.855-1.754 5.762 5.762-1.754-4.008-4.008ZM2.111 38.111A5.5 5.5 0 0 1 6 36.5h1.494a1 1 0 1 1 0 2H6a3.5 3.5 0 1 0 0 7h31.5a1 1 0 1 1 0 2H6a5.5 5.5 0 0 1-3.89-9.39Z"/>
4
+ </svg>
@@ -1 +1,5 @@
1
- <svg width="135" height="136" viewBox="0 0 135 136" xmlns="http://www.w3.org/2000/svg"><title>Group 10</title><g fill="none" fill-rule="evenodd"><path d="M116.733 23.243c10.973 11.89 17.68 27.775 17.68 45.215 0 36.816-29.89 66.706-66.707 66.706C30.89 135.164 1 105.274 1 68.458 1 31.64 30.89 1.75 67.706 1.75c7.034 0 13.814 1.091 20.182 3.113L73.86 7.846c-1.716.365-3.211 1.411-4.141 2.9L23.937 84.018c-.64 1.023-.846 2.258-.575 3.433.272 1.175.999 2.195 2.022 2.834l41.738 26.079c1.023.639 2.257.845 3.433.574 1.175-.271 2.194-.999 2.833-2.021l45.796-73.295c.922-1.475 1.211-3.26.801-4.95l-3.252-13.429z" fill-opacity=".1" fill="#9BAEB8"/><path d="M116.733 23.243c10.973 11.89 17.68 27.775 17.68 45.215 0 36.816-29.89 66.706-66.707 66.706C30.89 135.164 1 105.274 1 68.458 1 31.64 30.89 1.75 67.706 1.75c7.034 0 13.814 1.091 20.182 3.113L73.86 7.846c-1.716.365-3.211 1.411-4.141 2.9L23.937 84.018c-.64 1.023-.846 2.258-.575 3.433.272 1.175.999 2.195 2.022 2.834l41.738 26.079c1.023.639 2.257.845 3.433.574 1.175-.271 2.194-.999 2.833-2.021l45.796-73.295c.922-1.475 1.211-3.26.801-4.95l-3.252-13.429z" stroke="#9BAEB8"/><path d="M119.184 41.622c.922-1.475 1.211-3.26.801-4.95l-7.856-32.443c-.58-2.392-2.958-3.889-5.366-3.378L73.86 7.846c-1.716.365-3.211 1.411-4.141 2.9L23.937 84.018c-.64 1.023-.846 2.258-.575 3.433.272 1.175.999 2.195 2.022 2.834l41.738 26.079c1.023.639 2.257.845 3.433.574 1.175-.271 2.194-.999 2.833-2.021l45.796-73.295z" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M94.13 62.655c1.199-1.917.616-4.442-1.302-5.64L67.454 41.16c-1.918-1.198-4.443-.615-5.64 1.303L38.158 80.319c-1.198 1.918-.614 4.443 1.303 5.641l25.374 15.855c1.918 1.198 4.443.614 5.64-1.303l23.655-37.857z" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M102.363 13.523c-2.298-1.435-5.33-.735-6.766 1.562-1.436 2.298-.736 5.33 1.562 6.766 2.298 1.435 5.33.735 6.765-1.563 1.436-2.297.736-5.33-1.561-6.765z" stroke="#9BAEB8" stroke-width="1.5" fill-opacity=".1" fill="#9BAEB8"/><path d="M116.76 46.219c1.696 14.422-1.407 26.564-7.065 27.305-5.78.758-12.05-10.666-13.995-25.496-1.945-14.83 1.168-27.485 6.948-28.243.675-.088 1.357-.01 2.038.219M50.595 81.166L58.5 68.5M63.972 89.489L76.4 69.565M57.116 85.223L73.787 58.5M61.553 63.601l5.713-9.159" stroke="#9BAEB8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
1
+ <svg width="48" height="48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.706a1 1 0 0 1 1-1h15a1 1 0 0 1 .707.293l21 21a1 1 0 0 1-1.414 1.414L23.586 3.706H9a1 1 0 0 1-1-1Z"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.172 8.878A4 4 0 0 1 6 7.706h12.258a4 4 0 0 1 2.827 1.17l18.328 18.327a4.001 4.001 0 0 1-1.424 6.573l-7.213 2.707-2.71 7.21a4.002 4.002 0 0 1-6.573 1.424L3.171 26.791A4 4 0 0 1 2 23.962V11.706a4 4 0 0 1 1.172-2.828ZM6 9.706a2 2 0 0 0-2 2v12.256a2.003 2.003 0 0 0 .585 1.415l18.322 18.326a2 2 0 0 0 3.287-.712l2.87-7.637a1 1 0 0 1 .585-.584l7.638-2.866a2 2 0 0 0 .712-3.287L19.67 10.291a2 2 0 0 0-1.413-.585H6Z"/>
4
+ <path d="M12.25 15.956a2 2 0 1 0 0 4 2 2 0 0 0 0-4"/>
5
+ </svg>