@iamproperty/components 7.2.1--beta2 → 7.2.1--beta3

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 (62) hide show
  1. package/assets/css/components/barchart.component.css.map +1 -1
  2. package/assets/css/components/charts.css +1 -1
  3. package/assets/css/components/charts.module.css.map +1 -1
  4. package/assets/css/components/doughnutchart.component.css.map +1 -1
  5. package/assets/css/components/rank.component.css +1 -0
  6. package/assets/css/components/rank.component.css.map +1 -0
  7. package/assets/css/components/rankings.component.css +1 -0
  8. package/assets/css/components/rankings.component.css.map +1 -0
  9. package/assets/css/components/rankings.global.css +1 -0
  10. package/assets/css/components/rankings.global.css.map +1 -0
  11. package/assets/js/components/accordion/accordion.component.min.js +1 -1
  12. package/assets/js/components/actionbar/actionbar.component.min.js +1 -1
  13. package/assets/js/components/address-lookup/address-lookup.component.min.js +1 -1
  14. package/assets/js/components/applied-filters/applied-filters.component.min.js +1 -1
  15. package/assets/js/components/barchart/barchart.component.min.js +1 -1
  16. package/assets/js/components/bento-grid/bento-grid.component.min.js +1 -1
  17. package/assets/js/components/card/card.component.min.js +1 -1
  18. package/assets/js/components/carousel/carousel.component.min.js +1 -1
  19. package/assets/js/components/collapsible-side/collapsible-side.component.min.js +1 -1
  20. package/assets/js/components/doughnutchart/doughnutchart.component.min.js +1 -1
  21. package/assets/js/components/fileupload/fileupload.component.min.js +1 -1
  22. package/assets/js/components/filter-card/filter-card.component.min.js +1 -1
  23. package/assets/js/components/filterlist/filterlist.component.min.js +1 -1
  24. package/assets/js/components/header/header.component.min.js +1 -1
  25. package/assets/js/components/inline-edit/inline-edit.component.min.js +1 -1
  26. package/assets/js/components/marketing/marketing.component.min.js +1 -1
  27. package/assets/js/components/menu/menu.component.min.js +1 -1
  28. package/assets/js/components/multi-step/multi-step.component.min.js +1 -1
  29. package/assets/js/components/multiselect/multiselect.component.min.js +1 -1
  30. package/assets/js/components/nav/nav.component.min.js +1 -1
  31. package/assets/js/components/notification/notification.component.min.js +1 -1
  32. package/assets/js/components/pagination/pagination.component.min.js +1 -1
  33. package/assets/js/components/rank/rank.component.js +250 -0
  34. package/assets/js/components/rank/rank.component.min.js +230 -0
  35. package/assets/js/components/rank/rank.component.min.js.map +1 -0
  36. package/assets/js/components/rankings/rankings.component.js +48 -0
  37. package/assets/js/components/rankings/rankings.component.min.js +17 -0
  38. package/assets/js/components/rankings/rankings.component.min.js.map +1 -0
  39. package/assets/js/components/record-card/record-card.component.min.js +1 -1
  40. package/assets/js/components/search/search.component.min.js +1 -1
  41. package/assets/js/components/slider/slider.component.min.js +1 -1
  42. package/assets/js/components/table/table.component.min.js +1 -1
  43. package/assets/js/components/table-ajax/table-ajax.component.min.js +1 -1
  44. package/assets/js/components/table-basic/table-basic.component.min.js +1 -1
  45. package/assets/js/components/table-no-submit/table-no-submit.component.min.js +1 -1
  46. package/assets/js/components/table-submit/table-submit.component.min.js +1 -1
  47. package/assets/js/components/tabs/tabs.component.min.js +1 -1
  48. package/assets/js/components/video-card/video-card.component.min.js +1 -1
  49. package/assets/js/scripts.bundle.js +1 -1
  50. package/assets/js/scripts.bundle.min.js +1 -1
  51. package/assets/sass/_functions/variables.scss +30 -0
  52. package/assets/sass/components/charts.module.scss +1 -27
  53. package/assets/sass/components/rank.component.scss +111 -0
  54. package/assets/sass/components/rankings.component.scss +66 -0
  55. package/assets/sass/components/rankings.global.scss +84 -0
  56. package/assets/ts/components/rank/rank.component.ts +263 -0
  57. package/assets/ts/components/rankings/rankings.component.ts +62 -0
  58. package/dist/components.es.js +17 -17
  59. package/dist/components.umd.js +17 -17
  60. package/package.json +1 -1
  61. package/src/components/Rank/Rank.vue +24 -0
  62. package/src/components/Rankings/Rankings.vue +33 -0
@@ -0,0 +1,111 @@
1
+ @use 'sass:map';
2
+
3
+ @use '../_func.scss' as *;
4
+
5
+ @use '../elements/type.scss' as *;
6
+
7
+ *,
8
+ *::before,
9
+ *::after {
10
+ box-sizing: border-box;
11
+ }
12
+
13
+
14
+ :host {
15
+
16
+ display: block;
17
+ text-align: center;
18
+ margin-bottom: 2rem;
19
+ width: 100%;
20
+ max-width: 10rem;
21
+ }
22
+
23
+ .rank {
24
+
25
+ position: relative;
26
+ display: flex;
27
+
28
+ aspect-ratio: 1/1;
29
+ width: 100%;
30
+ height: auto;
31
+ max-width: 10rem;
32
+ text-align: center;
33
+ flex-direction: column;
34
+ justify-content: center;
35
+ align-items: center;
36
+ border: 1rem solid var(--colour-info);
37
+ border-radius: 50%;
38
+
39
+ .position {
40
+ margin: 0;
41
+ padding: 0;
42
+ line-height: 1!important;
43
+ }
44
+
45
+ .position:after {
46
+ content: var(--rank-sub-text, "Your rank");
47
+ display: block;
48
+ font-size: rem(map.get($heading-sizes, 'lead_fs'));
49
+ line-height: 1;
50
+ font-weight: 700;
51
+ margin: 0;
52
+ padding: 0;
53
+ }
54
+
55
+ svg {
56
+ position: absolute;
57
+ inset: 0;
58
+ z-index: 1;
59
+
60
+ display: none;
61
+ }
62
+ }
63
+
64
+
65
+ :host([data-position="1st"]),
66
+ :host([data-position="2nd"]),
67
+ :host([data-position="3rd"]) {
68
+
69
+ .rank {
70
+ border-width: 0;
71
+ overflow: hidden;
72
+ }
73
+
74
+ .position {
75
+ display: none;
76
+ }
77
+ }
78
+
79
+ :host([data-position="1st"]) {
80
+
81
+ .rank {
82
+
83
+ background: #FFEE56;
84
+ }
85
+
86
+ .rank svg:nth-child(1) {
87
+ display: block;
88
+ }
89
+ }
90
+
91
+ :host([data-position="2nd"]) {
92
+
93
+ .rank {
94
+ background: #EDEDED;
95
+ }
96
+
97
+ .rank svg:nth-child(2) {
98
+ display: block;
99
+ }
100
+ }
101
+
102
+ :host([data-position="3rd"]) {
103
+
104
+ .rank {
105
+ background: #FFE798;
106
+ }
107
+
108
+ .rank svg:nth-child(3) {
109
+ display: block;
110
+ }
111
+ }
@@ -0,0 +1,66 @@
1
+ @use 'sass:map';
2
+ @use '../_func.scss' as *;
3
+
4
+
5
+
6
+ @use '../elements/type.scss' as *;
7
+
8
+ @include max-height();
9
+
10
+ *,
11
+ *::before,
12
+ *::after {
13
+ box-sizing: border-box;
14
+ }
15
+
16
+ .podium {
17
+
18
+ display: flex;
19
+ flex-direction: row;
20
+ flex-wrap: nowrap;
21
+ align-items: flex-start;
22
+ max-width: 30rem;
23
+ margin: auto;
24
+
25
+ > div {
26
+ flex-basis: 33.33%;
27
+ flex-grow: 0;
28
+ flex-shrink: 0;
29
+ order: 1;
30
+
31
+ iam-rank {
32
+
33
+ margin: 0;
34
+ width: 100%;
35
+ }
36
+
37
+ > span {
38
+ display: block;
39
+ font-size: rem(14);
40
+ line-height: 1;
41
+ font-weight: 700;
42
+ margin: 0;
43
+ padding-block: 0.5rem;
44
+ text-align: center;
45
+ max-width: 100%;
46
+ //margin-inline: -1rem;
47
+ overflow: hidden;
48
+ }
49
+ }
50
+
51
+
52
+ > div:nth-child(1) {
53
+ order: 2;
54
+ padding: 0;
55
+ }
56
+
57
+ > div:nth-child(2) {
58
+
59
+ padding: 1rem 1rem 0 0;
60
+ }
61
+
62
+ > div:nth-child(3) {
63
+ order: 3;
64
+ padding: 1rem 0 0 1rem;
65
+ }
66
+ }
@@ -0,0 +1,84 @@
1
+ @use 'sass:map';
2
+
3
+ @use '../_func.scss' as *;
4
+
5
+ @use '../elements/type.scss' as *;
6
+
7
+ *,
8
+ *::before,
9
+ *::after {
10
+ box-sizing: border-box;
11
+ }
12
+
13
+ iam-rankings {
14
+
15
+ table {
16
+ display: block;
17
+ width: 100%;
18
+ font-weight: normal;
19
+ counter-reset: countItem;
20
+ }
21
+ thead {
22
+ display: none;
23
+ }
24
+ tbody {
25
+ display: contents;
26
+ }
27
+
28
+ :is(td,th) {
29
+ font-weight: normal;
30
+ }
31
+
32
+ tr.current {
33
+ background-color: var(--colour-light);
34
+ }
35
+ tr.current :is(td,th) {
36
+ font-weight: bolder;
37
+ }
38
+
39
+ tr {
40
+ display: flex;
41
+ width: 100%;
42
+ position: relative;
43
+
44
+
45
+ &:before {
46
+ counter-increment: countItem; /* Increment the value of section counter by 1 */
47
+ content: counter(countItem)".";
48
+ font-size: rem(32);
49
+ line-height: rem(40);
50
+ font-weight: bolder;
51
+ color: var(--colour-primary);
52
+ width: rem(48);
53
+ text-align: center;
54
+ margin-top: 0.5rem;
55
+ }
56
+
57
+ > *:first-child {
58
+ width: 100%;
59
+ margin-right: 0;
60
+ padding-right: 0;
61
+ }
62
+
63
+ > *:last-child {
64
+ position: absolute;
65
+ top: 0;
66
+ right: 0;
67
+ }
68
+
69
+ progress {
70
+ width: 100%;
71
+ height: 1rem ;
72
+ }
73
+ }
74
+
75
+
76
+ @each $index, $value in $chart-colors {
77
+ tr:nth-child(#{$index}) progress{
78
+ --colour: var(--chart-colour-#{$index}, #{$value});
79
+ }
80
+
81
+ }
82
+
83
+
84
+ }
@@ -0,0 +1,263 @@
1
+ import { trackComponent, trackComponentRegistered } from '../_global';
2
+
3
+ trackComponentRegistered('iam-rank');
4
+ class iamRank extends HTMLElement {
5
+ constructor() {
6
+ super();
7
+ this.attachShadow({ mode: 'open' });
8
+
9
+ const assetLocation = document.body.hasAttribute('data-assets-location')
10
+ ? document.body.getAttribute('data-assets-location')
11
+ : '/assets';
12
+
13
+ const loadCSS = `@import "${assetLocation}/css/components/rank.component.css";`;
14
+ //const loadExtraCSS = `@import "${assetLocation}/css/components/rank.global.css";`;
15
+
16
+ const template = document.createElement('template');
17
+ template.innerHTML = `
18
+ <style>
19
+ ${loadCSS}
20
+ </style>
21
+ <div class="wrapper">
22
+ <div class="rank" part="rank">
23
+
24
+ <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 164 162" fill="none">
25
+
26
+ <path d="M113.837 140.677H51.0228C50.6806 140.677 50.4062 140.917 50.4062 141.214V162.419C50.4062 162.716 50.6834 162.956 51.0228 162.956H113.837C114.179 162.956 114.453 162.716 114.453 162.419V141.214C114.453 140.917 114.176 140.677 113.837 140.677Z" fill="#44352A"/>
27
+ <g style="mix-blend-mode:multiply" opacity="0.3">
28
+ <path d="M113.837 158.549H51.0228C50.6806 158.549 50.4062 158.272 50.4062 157.933V162.339C50.4062 162.682 50.6834 162.956 51.0228 162.956H113.837C114.179 162.956 114.453 162.679 114.453 162.339V157.933C114.453 158.275 114.176 158.549 113.837 158.549Z" fill="#44352A"/>
29
+ </g>
30
+ <g style="mix-blend-mode:multiply" opacity="0.3">
31
+ <path d="M113.838 140.677H94.6358C91.6716 153.291 75.0064 162.953 54.8906 162.953H113.841C114.183 162.953 114.457 162.713 114.457 162.416V141.211C114.457 140.914 114.18 140.674 113.841 140.674L113.838 140.677Z" fill="#44352A"/>
32
+ </g>
33
+ <g style="mix-blend-mode:screen" opacity="0.3">
34
+ <path d="M113.837 140.677H51.0228C50.6806 140.677 50.4062 140.954 50.4062 141.293V142.094C50.4062 141.752 50.6834 141.477 51.0228 141.477H113.837C114.179 141.477 114.453 141.754 114.453 142.094V141.293C114.453 140.951 114.176 140.677 113.837 140.677Z" fill="#44352A"/>
35
+ </g>
36
+ <path d="M118.6 159.649H46.2544C45.8248 159.649 45.4766 159.998 45.4766 160.427V164.28C45.4766 164.709 45.8248 165.057 46.2544 165.057H118.6C119.03 165.057 119.378 164.709 119.378 164.28V160.427C119.378 159.998 119.03 159.649 118.6 159.649Z" fill="#44352A"/>
37
+ <g style="mix-blend-mode:screen" opacity="0.3">
38
+ <path d="M118.6 159.649H46.2544C45.8245 159.649 45.4766 159.997 45.4766 160.427V161.148C45.4766 160.719 45.8245 160.371 46.2544 160.371H118.6C119.03 160.371 119.378 160.719 119.378 161.148V160.427C119.378 159.997 119.03 159.649 118.6 159.649Z" fill="#44352A"/>
39
+ </g>
40
+ <g style="mix-blend-mode:multiply" opacity="0.3">
41
+ <path d="M118.597 159.649H97.9688C98.3987 159.649 98.7466 159.997 98.7466 160.427V164.28C98.7466 164.709 98.3987 165.057 97.9688 165.057H118.597C119.026 165.057 119.374 164.709 119.374 164.28V160.427C119.374 159.997 119.026 159.649 118.597 159.649Z" fill="#44352A"/>
42
+ </g>
43
+ <g style="mix-blend-mode:screen" opacity="0.3">
44
+ <path d="M62.731 164.28V160.427C62.731 159.997 63.0789 159.649 63.5089 159.649H52.2856C51.8557 159.649 51.5078 159.997 51.5078 160.427V164.28C51.5078 164.709 51.8557 165.057 52.2856 165.057H63.5089C63.0789 165.057 62.731 164.709 62.731 164.28Z" fill="#44352A"/>
45
+ </g>
46
+ <path d="M108.658 143.924H56.0859V156.587H108.658V143.924Z" fill="#EFCA6F"/>
47
+ <g style="mix-blend-mode:multiply" opacity="0.5">
48
+ <path d="M108.658 156.259H56.0859V156.59H108.658V156.259Z" fill="#EFCA6F"/>
49
+ </g>
50
+ <g style="mix-blend-mode:screen" opacity="0.5">
51
+ <path d="M108.658 143.929H56.0859V144.26H108.658V143.929Z" fill="#EFCA6F"/>
52
+ </g>
53
+ <g style="mix-blend-mode:multiply" opacity="0.3">
54
+ <path d="M93.5215 143.924C91.1343 149.009 86.1704 153.422 79.5547 156.587H108.659V143.924H93.5215Z" fill="#EFCA6F"/>
55
+ </g>
56
+ <g style="mix-blend-mode:screen" opacity="0.5">
57
+ <path d="M106.66 155.554C107.158 155.554 107.562 155.15 107.562 154.651C107.562 154.153 107.158 153.749 106.66 153.749C106.162 153.749 105.758 154.153 105.758 154.651C105.758 155.15 106.162 155.554 106.66 155.554Z" fill="#EFCA6F"/>
58
+ </g>
59
+ <g style="mix-blend-mode:screen" opacity="0.5">
60
+ <path d="M58.1601 155.545C58.6584 155.545 59.0624 155.141 59.0624 154.643C59.0624 154.144 58.6584 153.74 58.1601 153.74C57.6618 153.74 57.2578 154.144 57.2578 154.643C57.2578 155.141 57.6618 155.545 58.1601 155.545Z" fill="#EFCA6F"/>
61
+ </g>
62
+ <path d="M58.0898 155.443C58.5881 155.443 58.992 155.039 58.992 154.541C58.992 154.043 58.5881 153.639 58.0898 153.639C57.5915 153.639 57.1875 154.043 57.1875 154.541C57.1875 155.039 57.5915 155.443 58.0898 155.443Z" fill="#44352A"/>
63
+ <g style="mix-blend-mode:screen" opacity="0.5">
64
+ <path d="M58.1601 146.885C58.6584 146.885 59.0624 146.481 59.0624 145.982C59.0624 145.484 58.6584 145.08 58.1601 145.08C57.6618 145.08 57.2578 145.484 57.2578 145.982C57.2578 146.481 57.6618 146.885 58.1601 146.885Z" fill="#EFCA6F"/>
65
+ </g>
66
+ <path d="M58.0898 146.789C58.5881 146.789 58.992 146.385 58.992 145.887C58.992 145.388 58.5881 144.984 58.0898 144.984C57.5915 144.984 57.1875 145.388 57.1875 145.887C57.1875 146.385 57.5915 146.789 58.0898 146.789Z" fill="#44352A"/>
67
+ <g style="mix-blend-mode:screen" opacity="0.5">
68
+ <path d="M107.562 145.985C107.562 145.487 107.158 145.083 106.66 145.083C106.162 145.083 105.758 145.487 105.758 145.985C105.758 146.483 106.162 146.888 106.66 146.888C107.158 146.888 107.562 146.483 107.562 145.985Z" fill="#EFCA6F"/>
69
+ </g>
70
+ <path d="M106.66 146.789C107.158 146.789 107.562 146.385 107.562 145.887C107.562 145.388 107.158 144.984 106.66 144.984C106.162 144.984 105.758 145.388 105.758 145.887C105.758 146.385 106.162 146.789 106.66 146.789Z" fill="#44352A"/>
71
+ <path d="M106.66 155.443C107.158 155.443 107.562 155.039 107.562 154.541C107.562 154.043 107.158 153.639 106.66 153.639C106.162 153.639 105.758 154.043 105.758 154.541C105.758 155.039 106.162 155.443 106.66 155.443Z" fill="#44352A"/>
72
+ <path d="M70.9922 132.859C74.7229 126.073 77.1129 115.631 77.1129 103.918C77.1129 102.835 77.0931 101.766 77.0535 100.708H87.8525C87.8129 101.766 87.7931 102.838 87.7931 103.918C87.7931 115.631 90.1831 126.073 93.9138 132.859H70.9922Z" fill="#F5B718"/>
73
+ <g style="mix-blend-mode:multiply" opacity="0.2">
74
+ <path d="M88.3672 113.602L76.5613 113.56C76.5613 113.56 76.1116 117.483 75.3281 120.798C75.9674 120.444 82.2606 116.818 89.5749 120.798C88.4719 115.506 88.3672 113.602 88.3672 113.602Z" fill="#F5B718"/>
75
+ </g>
76
+ <g style="mix-blend-mode:screen" opacity="0.2">
77
+ <path d="M79.7441 100.708H78.1941C78.2252 101.766 78.2422 102.838 78.2422 103.918C78.2422 115.631 76.3556 126.073 73.4141 132.859H76.7092C78.5788 126.073 79.778 115.631 79.778 103.918C79.778 102.835 79.7667 101.766 79.7469 100.708H79.7441Z" fill="#F5B718"/>
78
+ </g>
79
+ <g style="mix-blend-mode:multiply" opacity="0.2">
80
+ <path d="M93.9179 132.859H88.1988C86.3292 126.073 85.1328 115.631 85.1328 103.918C85.1328 102.835 85.1441 101.766 85.1639 100.708H87.8566C87.817 101.766 87.7972 102.838 87.7972 103.918C87.7972 115.631 90.1872 126.073 93.9179 132.859Z" fill="#F5B718"/>
81
+ </g>
82
+ <path d="M69.3322 96.5528H69.3209C61.8623 96.5246 56.1263 95.956 51.2699 94.7596C45.4489 93.3284 40.8216 90.9667 37.122 87.533C29.1939 80.179 25.5 67.8301 25.5 48.6703C25.5 47.8387 25.8394 47.0411 26.4419 46.4669C27.0443 45.8928 27.8533 45.5873 28.6848 45.6241C28.9196 45.6354 52.3107 46.6593 69.1908 45.8871C70.0224 45.8503 70.8341 46.153 71.4366 46.7272C72.039 47.3013 72.3813 48.0989 72.3813 48.9333V93.5038C72.3813 94.3156 72.0588 95.0934 71.4847 95.6647C70.9133 96.2332 70.1383 96.5528 69.3322 96.5528ZM31.6377 51.8438C31.9997 67.3606 35.0856 77.3251 41.2713 83.064C46.3852 87.8073 53.9597 90.0559 66.2803 90.4067V52.104C53.4393 52.517 38.1686 52.0757 31.6349 51.8438H31.6377Z" fill="#F5B718"/>
83
+ <g style="mix-blend-mode:multiply" opacity="0.5">
84
+ <path d="M69.1919 45.8844C61.0997 46.2549 51.5085 46.2125 43.6907 46.0654C43.6766 47.8869 43.7077 49.9347 43.8095 52.1692C50.6826 52.2964 58.8851 52.3417 66.2786 52.1013V90.4039C60.6726 90.2455 56.051 89.6912 52.1958 88.6899C53.2876 91.0432 54.5151 93.3794 55.8926 95.6676C59.7166 96.2475 64.095 96.5331 69.3163 96.5529H69.3276C70.1337 96.5529 70.9087 96.2333 71.4801 95.6648C72.0543 95.0935 72.3767 94.3157 72.3767 93.5039V48.9334C72.3767 48.099 72.0345 47.3043 71.432 46.7273C70.8295 46.1531 70.0178 45.8476 69.1862 45.8872L69.1919 45.8844Z" fill="#F5B718"/>
85
+ </g>
86
+ <g style="mix-blend-mode:screen" opacity="0.3">
87
+ <path d="M41.7858 47.8645H30.3702C30.0393 47.8645 29.7734 47.5986 29.7734 47.2677C29.7734 46.9368 30.0393 46.6709 30.3702 46.6709H41.7886C42.1195 46.6709 42.3854 46.9368 42.3854 47.2677C42.3854 47.5986 42.1195 47.8645 41.7886 47.8645H41.7858Z" fill="#F5B718"/>
88
+ </g>
89
+ <g style="mix-blend-mode:screen" opacity="0.3">
90
+ <path d="M28.3396 47.2684C28.3396 46.7848 27.9464 46.3916 27.4628 46.3916C26.9791 46.3916 26.5859 46.7848 26.5859 47.2684C26.5859 47.7521 26.9791 48.1452 27.4628 48.1452C27.9464 48.1452 28.3396 47.7521 28.3396 47.2684Z" fill="#F5B718"/>
91
+ </g>
92
+ <g style="mix-blend-mode:multiply" opacity="0.5">
93
+ <path d="M72.3801 92.6135C72.3603 92.6163 72.3377 92.6192 72.3179 92.6248C33.4948 98.9718 27.0714 68.7953 26.0391 60.3213C27.326 73.0096 30.9323 81.7948 37.1209 87.5365C40.8205 90.9674 45.4478 93.3319 51.2687 94.7631C56.1251 95.9567 61.8612 96.5252 69.3197 96.5563H69.3311C70.1372 96.5563 70.9122 96.2367 71.4835 95.6682C72.0577 95.0969 72.3801 94.3191 72.3801 93.5073V92.6163V92.6135Z" fill="#F5B718"/>
94
+ </g>
95
+ <g style="mix-blend-mode:screen" opacity="0.3">
96
+ <path d="M44.8264 87.7207C44.7416 87.7207 44.6567 87.7038 44.5747 87.6642C39.8116 85.4354 35.9621 81.0541 33.4391 74.9899C31.5469 70.439 31.0633 66.6008 31.0435 66.4396C31.0039 66.1115 31.2358 65.8145 31.5639 65.7749C31.892 65.7353 32.189 65.9672 32.2286 66.2953C32.2342 66.3321 32.7151 70.1562 34.5535 74.5629C36.2308 78.5849 39.4213 83.9391 45.081 86.5865C45.3808 86.7251 45.5081 87.0815 45.3695 87.3813C45.2677 87.5991 45.0527 87.7264 44.8292 87.7264L44.8264 87.7207Z" fill="#F5B718"/>
97
+ </g>
98
+ <g style="mix-blend-mode:screen" opacity="0.3">
99
+ <path d="M31.1819 64.5372C31.72 64.4497 32.0853 63.9425 31.9978 63.4044C31.9102 62.8663 31.403 62.501 30.8649 62.5886C30.3268 62.6761 29.9616 63.1833 30.0491 63.7214C30.1367 64.2595 30.6438 64.6247 31.1819 64.5372Z" fill="#F5B718"/>
100
+ </g>
101
+ <g style="mix-blend-mode:multiply" opacity="0.5">
102
+ <path d="M31.6413 51.8439C31.6413 51.8439 31.5479 50.3816 33.624 50.277C35.7001 50.1723 66.2867 50.277 66.2867 50.277V52.1041L31.6413 51.8439Z" fill="#F5B718"/>
103
+ </g>
104
+ <path d="M93.5138 95.6647C92.9396 95.0934 92.6172 94.3155 92.6172 93.5038V48.9333C92.6172 48.0989 92.9594 47.3042 93.5619 46.7272C94.1643 46.153 94.9761 45.8475 95.8077 45.8871C112.688 46.6593 136.079 45.6354 136.314 45.6241C137.145 45.5873 137.957 45.8928 138.557 46.4669C139.159 47.0411 139.498 47.8387 139.498 48.6703C139.498 67.8301 135.805 80.179 127.876 87.5358C124.177 90.9667 119.55 93.3312 113.729 94.7624C108.872 95.956 103.136 96.5245 95.6776 96.5557H95.6662C94.8601 96.5557 94.0851 96.236 93.5138 95.6675V95.6647ZM98.7181 52.104V90.4067C111.042 90.0559 118.616 87.8101 123.727 83.064C129.913 77.3251 133.002 67.3606 133.361 51.8438C126.827 52.0786 111.556 52.5198 98.7153 52.104H98.7181Z" fill="#F5B718"/>
105
+ <g style="mix-blend-mode:multiply" opacity="0.5">
106
+ <path d="M95.8098 45.8844C103.902 46.2549 113.493 46.2125 121.311 46.0654C121.325 47.8869 121.294 49.9347 121.192 52.1692C114.319 52.2964 106.117 52.3417 98.7231 52.1013V90.4039C104.329 90.2455 108.951 89.6912 112.806 88.6899C111.714 91.0432 110.487 93.3794 109.109 95.6676C105.285 96.2475 100.907 96.5331 95.6854 96.5529H95.6741C94.8679 96.5529 94.093 96.2333 93.5216 95.6648C92.9474 95.0935 92.625 94.3157 92.625 93.5039V48.9334C92.625 48.099 92.9672 47.3043 93.5697 46.7273C94.1722 46.1531 94.9839 45.8476 95.8155 45.8872L95.8098 45.8844Z" fill="#F5B718"/>
107
+ </g>
108
+ <g style="mix-blend-mode:screen" opacity="0.3">
109
+ <path d="M123.214 47.8645H134.632C134.963 47.8645 135.229 47.5986 135.229 47.2677C135.229 46.9368 134.963 46.6709 134.632 46.6709H123.214C122.883 46.6709 122.617 46.9368 122.617 47.2677C122.617 47.5986 122.883 47.8645 123.214 47.8645Z" fill="#F5B718"/>
110
+ </g>
111
+ <g style="mix-blend-mode:screen" opacity="0.3">
112
+ <path d="M136.664 47.2684C136.664 46.7848 137.057 46.3916 137.541 46.3916C138.025 46.3916 138.418 46.7848 138.418 47.2684C138.418 47.7521 138.025 48.1452 137.541 48.1452C137.057 48.1452 136.664 47.7521 136.664 47.2684Z" fill="#F5B718"/>
113
+ </g>
114
+ <g style="mix-blend-mode:multiply" opacity="0.5">
115
+ <path d="M92.6172 92.6135C92.637 92.6163 92.6596 92.6192 92.6794 92.6248C131.502 98.9747 137.923 68.7981 138.958 60.3213C137.671 73.0096 134.065 81.7948 127.876 87.5365C124.177 90.9674 119.55 93.3319 113.729 94.7631C108.872 95.9567 103.136 96.5252 95.6776 96.5563H95.6662C94.8601 96.5563 94.0851 96.2367 93.5138 95.6682C92.9396 95.0969 92.6172 94.3191 92.6172 93.5073V92.6163V92.6135Z" fill="#F5B718"/>
116
+ </g>
117
+ <g style="mix-blend-mode:screen" opacity="0.3">
118
+ <path d="M120.169 87.7207C120.254 87.7207 120.339 87.7038 120.421 87.6642C125.184 85.4354 129.034 81.0541 131.557 74.9899C133.449 70.439 133.932 66.6008 133.952 66.4396C133.992 66.1115 133.76 65.8145 133.432 65.7749C133.104 65.7353 132.807 65.9672 132.767 66.2953C132.762 66.3321 132.281 70.1562 130.442 74.5629C128.765 78.5849 125.574 83.9391 119.915 86.5865C119.615 86.7251 119.488 87.0815 119.626 87.3813C119.728 87.5991 119.943 87.7264 120.167 87.7264L120.169 87.7207Z" fill="#F5B718"/>
119
+ </g>
120
+ <g style="mix-blend-mode:screen" opacity="0.3">
121
+ <path d="M134.951 63.7209C135.038 63.1827 134.673 62.6757 134.134 62.5883C133.596 62.501 133.089 62.8664 133.002 63.4045C132.915 63.9427 133.28 64.4497 133.818 64.5371C134.356 64.6244 134.863 64.259 134.951 63.7209Z" fill="#F5B718"/>
122
+ </g>
123
+ <g style="mix-blend-mode:multiply" opacity="0.5">
124
+ <path d="M133.364 51.8439C133.364 51.8439 133.458 50.3816 131.382 50.277C129.305 50.1723 98.7188 50.277 98.7188 50.277V52.1041L133.364 51.8439Z" fill="#F5B718"/>
125
+ </g>
126
+ <path d="M42.0744 30.8223C41.1014 36.3999 40.5781 42.2746 40.5781 48.3416C40.5781 84.7463 59.3165 114.258 82.4276 114.258C105.539 114.258 124.277 84.7463 124.277 48.3416C124.277 42.2746 123.757 36.3999 122.781 30.8223H42.0744Z" fill="#F5B718"/>
127
+ <path d="M42.0744 30.8223C41.1014 36.3999 40.5781 42.2746 40.5781 48.3416C40.5781 84.7463 59.3165 114.258 82.4276 114.258C105.539 114.258 124.277 84.7463 124.277 48.3416C124.277 42.2746 123.757 36.3999 122.781 30.8223H42.0744Z" fill="#F5B718"/>
128
+ <g opacity="0.5">
129
+ <g style="mix-blend-mode:multiply" opacity="0.5">
130
+ <path d="M122.783 30.8223H107.699C108.31 36.3999 108.635 42.2746 108.635 48.3416C108.635 84.7463 96.9028 114.258 82.4297 114.258C105.544 114.258 124.279 84.7463 124.279 48.3416C124.279 42.2746 123.759 36.3999 122.783 30.8223Z" fill="#F5B718"/>
131
+ </g>
132
+ </g>
133
+ <g style="mix-blend-mode:multiply" opacity="0.5">
134
+ <path d="M99.3358 66.7123C99.9213 66.1438 99.5988 65.151 98.7899 65.0322L89.012 63.6124C88.6924 63.5671 88.4152 63.3635 88.271 63.075L83.8982 54.2135C83.5362 53.4809 82.4953 53.4809 82.1333 54.2135L77.7605 63.075C77.6163 63.3663 77.3391 63.5671 77.0195 63.6124L67.2416 65.0322C66.4355 65.1482 66.113 66.141 66.6957 66.7123L73.7724 73.6081C74.0043 73.8343 74.109 74.1596 74.0553 74.4792L72.3837 84.2175C72.2451 85.0208 73.0908 85.6346 73.812 85.2555L82.5575 80.6565C82.8432 80.5066 83.1854 80.5066 83.4739 80.6565L92.2195 85.2555C92.9407 85.6346 93.7864 85.0208 93.6478 84.2175L91.9762 74.4792C91.9225 74.1596 92.0271 73.8343 92.2591 73.6081L99.3358 66.7123Z" fill="#F5A01D"/>
135
+ </g>
136
+ <g style="mix-blend-mode:screen" opacity="0.2">
137
+ <path d="M56.2262 48.3416C56.2262 42.2746 56.5515 36.3999 57.1624 30.8223H46.8415C45.9816 36.3999 45.5234 42.2746 45.5234 48.3416C45.5234 84.7463 62.0471 114.258 82.4317 114.258C67.9586 114.258 56.2262 84.7463 56.2262 48.3416Z" fill="#F5B718"/>
138
+ </g>
139
+ <g style="mix-blend-mode:screen" opacity="0.5">
140
+ <path d="M81.8544 32.1233C103.823 32.1233 121.631 31.5407 121.631 30.8223H42.0781C42.0781 31.5407 59.8859 32.1233 81.8544 32.1233Z" fill="#F5B718"/>
141
+ </g>
142
+ <path d="M98.8035 132.858H66.1069C61.7907 132.858 58.2891 136.357 58.2891 140.676H106.619C106.619 136.36 103.12 132.858 98.8007 132.858H98.8035Z" fill="#F5B718"/>
143
+ <g style="mix-blend-mode:screen" opacity="0.5">
144
+ <path d="M66.1069 133.444H98.8035C102.925 133.444 106.296 136.631 106.596 140.673H106.621C106.621 136.357 103.123 132.855 98.8035 132.855H66.1069C61.7907 132.855 58.2891 136.354 58.2891 140.673H58.3145C58.6143 136.631 61.9887 133.444 66.1069 133.444Z" fill="#F5B718"/>
145
+ </g>
146
+ <g style="mix-blend-mode:multiply" opacity="0.2">
147
+ <path d="M106.615 140.673H97.8722C97.8722 136.357 95.6377 132.855 92.8828 132.855H98.7971C103.113 132.855 106.615 136.354 106.615 140.673Z" fill="#F5B718"/>
148
+ </g>
149
+ <g style="mix-blend-mode:screen" opacity="0.2">
150
+ <path d="M75.7566 132.858H69.3022C64.986 132.858 61.4844 136.357 61.4844 140.676H67.9389C67.9389 136.36 71.4376 132.858 75.7566 132.858Z" fill="#F5B718"/>
151
+ </g>
152
+ <g style="mix-blend-mode:multiply" opacity="0.5">
153
+ <path d="M58.2919 140.676H106.621C106.621 140.195 106.576 139.726 106.491 139.268H58.4192C58.3371 139.726 58.2891 140.195 58.2891 140.676H58.2919Z" fill="#F5B718"/>
154
+ </g>
155
+ <path d="M61.2558 43.1035C60.4101 40.5494 57.1348 41.1604 56.7727 40.2751C55.8846 39.913 56.4984 36.6405 53.9443 35.792C51.3902 36.6377 52.004 39.913 51.1159 40.2751C50.7538 41.1632 47.4813 40.5494 46.6328 43.1035C47.4785 45.6576 50.7538 45.0466 51.1159 45.9319C52.004 46.294 51.3902 49.5665 53.9443 50.415C56.4984 49.5693 55.8874 46.294 56.7727 45.9319C57.1348 45.0438 60.4073 45.6576 61.2558 43.1035Z" fill="#FAFAFA"/>
156
+ <path d="M67.7497 50.4149C67.3169 49.1081 65.6425 49.4221 65.4558 48.9667C65.0033 48.7829 65.3172 47.1056 64.0076 46.6729C62.7009 47.1056 63.0149 48.78 62.5595 48.9667C62.3756 49.4193 60.7012 49.1081 60.2656 50.4149C60.6984 51.7216 62.3728 51.4076 62.5595 51.863C63.012 52.0469 62.7009 53.7241 64.0076 54.1569C65.3144 53.7241 65.0004 52.0497 65.4558 51.863C65.6396 51.4105 67.3141 51.7216 67.7497 50.4149Z" fill="#FAFAFA"/>
157
+
158
+ </svg>
159
+
160
+ <svg width="100%" height="100%" viewBox="0 0 163 163" fill="none" xmlns="http://www.w3.org/2000/svg">
161
+ <path d="M11.1391 17.0021C8.10198 28.0742 31.2824 53.4622 41.9612 59.6599L48.1417 48.8032L31.0614 5.99609C23.3939 8.70311 16.6995 12.323 11.1391 17.0021Z" fill="#1993AF"/>
162
+ <path d="M45.9917 82.1174L37.2018 66.2054C35.3416 62.8353 36.3664 58.5724 39.682 55.6587L56.9748 40.4643C58.2838 39.3161 59.8913 38.5553 61.6252 38.2625L81.157 34.9469C84.398 34.3958 87.5672 35.8971 89.1001 38.673L96.3801 51.855C98.3034 55.34 97.1006 59.933 93.607 62.1549L58.855 84.256C54.1529 87.2472 48.3169 86.3286 45.9917 82.1174ZM60.5602 43.7627L43.6177 59.112C42.323 60.2861 41.9383 61.9741 42.6732 63.3032L51.3052 78.9281C52.2238 80.5902 54.5232 80.9864 56.4092 79.8266L91.4655 58.2796C92.8951 57.4011 93.4061 55.5381 92.6195 54.1171L85.2247 40.7313C84.5989 39.6003 83.3043 39.0003 81.9895 39.2414L62.4146 42.8556C62.0644 42.9187 61.7285 43.0307 61.4156 43.1857C61.1056 43.3378 60.8185 43.533 60.5602 43.7656V43.7627Z" fill="#B0B0B0"/>
163
+ <path d="M45.8477 105.47C45.6467 105.106 44.7138 104.316 44.0937 103.794C42.3484 102.318 40.1696 100.478 39.3313 97.4986C38.4701 94.4414 39.4347 91.5966 40.1351 89.5297C40.3762 88.8149 40.7408 87.7384 40.7379 87.3653C40.7179 86.9777 40.2499 85.8984 39.9399 85.1836C39.0385 83.1081 37.919 80.5245 38.5075 77.5247C39.0959 74.5335 41.1772 72.4925 42.6842 71.0141C43.2211 70.4859 44.0334 69.6936 44.1913 69.3577C44.3349 69.019 44.3894 67.9109 44.4239 67.1789C44.5243 65.1149 44.665 62.2959 46.4936 59.9592C48.2849 57.6713 50.8713 56.8446 52.9296 56.1843C53.6444 55.9547 54.7237 55.6102 55.005 55.3863C55.2663 55.1595 55.7715 54.2725 56.1045 53.684C57.0805 51.9673 58.4125 49.6278 61.0449 48.402C63.6543 47.1848 66.4273 47.5839 68.4396 47.8709C69.1229 47.9685 70.1534 48.1149 70.4778 48.0604C70.828 47.9858 71.7036 47.4088 72.2834 47.0298C73.9341 45.9447 75.9722 44.607 78.7481 44.6587C81.5355 44.7104 83.8292 46.183 85.497 47.2537C86.0855 47.6298 86.9725 48.2011 87.3026 48.2872C87.6385 48.3618 88.6375 48.2412 89.2977 48.1609C91.1292 47.937 93.6238 47.6327 96.1213 48.8383C98.5986 50.0325 100.008 52.1425 101.142 53.8361C101.532 54.4189 102.121 55.2973 102.391 55.5097C102.663 55.7078 103.599 56.0178 104.219 56.2216C105.996 56.8072 108.413 57.6053 110.233 59.7324C111.999 61.7993 112.435 64.2135 112.788 66.1569C112.915 66.8488 113.104 67.8937 113.282 68.2181C113.46 68.5396 114.244 69.2572 114.763 69.7338C116.221 71.0686 118.033 72.7221 118.842 75.3172C119.675 77.9869 119.063 80.4614 118.613 82.2756C118.455 82.9072 118.219 83.866 118.242 84.1961C118.28 84.5434 118.71 85.508 118.995 86.1481C119.781 87.9107 120.858 90.3278 120.55 93.0606C120.24 95.8164 118.656 97.7656 117.49 99.1981C117.071 99.7119 116.437 100.493 116.322 100.817C116.219 101.144 116.227 102.198 116.236 102.898C116.253 104.879 116.279 107.603 114.841 109.992C113.405 112.371 111.186 113.382 109.392 114.203C108.764 114.49 107.808 114.926 107.564 115.176C107.337 115.426 106.915 116.376 106.634 117.008C105.807 118.865 104.664 121.423 102.247 122.984C99.8072 124.56 97.1202 124.44 95.1452 124.354C94.4706 124.325 93.4487 124.279 93.1243 124.377C92.777 124.497 91.91 125.226 91.3359 125.711C89.6795 127.106 87.6041 128.852 84.7133 129.15C81.7594 129.455 79.3022 128.074 77.4994 127.058C76.8621 126.699 75.8947 126.156 75.5359 126.096C75.1656 126.053 74.0604 126.314 73.3284 126.489C71.273 126.98 68.4396 127.655 65.5948 126.561C62.7414 125.462 61.0822 123.042 59.8737 121.27C59.4344 120.627 58.7685 119.657 58.4556 119.436C58.1398 119.232 57.0317 118.968 56.2997 118.79C54.1783 118.282 51.2589 117.585 49.1288 115.228C47.0505 112.931 46.6543 110.109 46.3328 107.847C46.2209 107.046 46.0486 105.835 45.8477 105.47Z" fill="#B0B0B0"/>
164
+ <path d="M50.6844 102.801C50.4834 102.436 49.5533 101.65 48.9361 101.127C47.1965 99.6547 45.0263 97.8175 44.1881 94.8464C43.3298 91.7978 44.2857 88.9616 44.9804 86.9033C45.2215 86.1914 45.5832 85.1178 45.5775 84.7446C45.5574 84.3571 45.0895 83.2806 44.7823 82.5687C43.8838 80.496 42.7643 77.9211 43.3499 74.9299C43.9326 71.9473 46.0023 69.9148 47.5037 68.4422C48.0376 67.9169 48.8443 67.1246 49.0022 66.7945C49.1457 66.4557 49.1974 65.3534 49.2318 64.6243C49.3294 62.566 49.4672 59.7556 51.2872 57.4275C53.0699 55.1482 55.642 54.3244 57.6945 53.6699C58.4064 53.4431 59.4829 53.0986 59.7613 52.8747C60.0197 52.6508 60.522 51.7638 60.855 51.1781C61.8253 49.4672 63.1487 47.1363 65.7696 45.9134C68.3646 44.702 71.1291 45.101 73.1328 45.3909C73.8131 45.4885 74.8379 45.6378 75.1623 45.5804C75.5125 45.5057 76.3823 44.9316 76.9593 44.5527C78.6014 43.4733 80.6309 42.1385 83.3953 42.193C86.1741 42.2476 88.4591 43.7173 90.1184 44.7852C90.704 45.1613 91.5881 45.7325 91.9154 45.8186C92.2513 45.8933 93.2445 45.7727 93.9019 45.6923C95.7276 45.4713 98.2107 45.1699 100.7 46.3756C103.168 47.5697 104.575 49.6739 105.706 51.3647C106.093 51.9446 106.682 52.823 106.952 53.0355C107.225 53.2335 108.157 53.5407 108.772 53.7474C110.54 54.333 112.951 55.131 114.763 57.2553C116.523 59.3164 116.962 61.7249 117.315 63.6655C117.441 64.3544 117.631 65.3993 117.809 65.7208C117.987 66.0423 118.767 66.76 119.287 67.2337C120.742 68.5656 122.545 70.2191 123.355 72.8056C124.187 75.4695 123.579 77.9354 123.134 79.7439C122.979 80.3755 122.743 81.3285 122.766 81.6587C122.804 82.0031 123.231 82.9677 123.515 83.605C124.299 85.3647 125.376 87.7731 125.074 90.4974C124.767 93.2446 123.191 95.188 122.034 96.6147C121.618 97.1286 120.986 97.9065 120.872 98.228C120.768 98.5553 120.78 99.6059 120.788 100.304C120.808 102.279 120.837 104.997 119.405 107.377C117.978 109.748 115.77 110.756 113.982 111.571C113.356 111.858 112.406 112.291 112.162 112.541C111.938 112.791 111.516 113.738 111.238 114.367C110.417 116.218 109.283 118.768 106.874 120.321C104.446 121.888 101.77 121.767 99.8039 121.678C99.1322 121.647 98.1131 121.601 97.7916 121.698C97.4443 121.819 96.5831 122.545 96.0118 123.028C94.364 124.417 92.3001 126.157 89.4208 126.452C86.4813 126.754 84.0297 125.373 82.2356 124.36C81.5983 124.001 80.6366 123.458 80.2778 123.401C79.9104 123.358 78.8109 123.619 78.0789 123.791C76.0321 124.279 73.2103 124.948 70.377 123.854C67.535 122.755 65.8815 120.341 64.673 118.572C64.2338 117.932 63.5707 116.965 63.2578 116.741C62.942 116.537 61.8397 116.273 61.1105 116.095C58.9977 115.587 56.0898 114.886 53.9655 112.535C51.8929 110.245 51.4939 107.428 51.1752 105.172C51.0604 104.374 50.891 103.166 50.6901 102.801H50.6844Z" fill="#DBDBDB"/>
165
+ <path d="M56.8167 99.4122C47.4469 82.4496 53.8513 61.9187 70.2312 53.9842C85.7011 46.4919 104.478 53.1173 112.926 68.415C121.377 83.7098 116.988 103.133 102.411 112.241C86.9756 121.884 66.1864 116.375 56.8167 99.4122Z" fill="#DBDBDB"/>
166
+ <path d="M56.8128 99.4126C47.4574 82.4758 53.8733 61.9047 70.2274 53.9846C85.6743 46.5037 104.486 53.1435 112.922 68.4154C121.359 83.6872 116.964 103.147 102.407 112.239C86.9976 121.867 66.1683 116.347 56.8128 99.4097V99.4126ZM59.7868 97.7677C68.1978 112.996 86.9316 118.043 100.86 109.44C114.091 101.27 118.138 83.6355 110.477 69.7646C102.815 55.8965 85.7317 49.937 71.7718 56.7864C57.0741 63.9974 51.373 82.5418 59.7868 97.7677Z" fill="#B0B0B0"/>
167
+ <path d="M69.5505 103.438L69.9409 102.999C70.627 102.232 71.5198 101.782 72.3637 101.63C72.7886 101.552 73.2134 101.541 73.601 101.618C73.9914 101.693 74.3646 101.833 74.689 102.077L75.0679 102.339C75.2832 102.488 75.3148 102.835 75.1368 103.114L74.8239 103.602C74.2756 104.466 73.4804 105.051 72.5905 105.258C72.1513 105.356 71.6949 105.356 71.2471 105.258C70.8021 105.158 70.3801 104.939 70.0012 104.632L69.585 104.268C69.3467 104.058 69.3352 103.682 69.5591 103.432L69.5505 103.438Z" fill="#B0B0B0"/>
168
+ <path d="M65.546 98.9719L66.0168 98.6245C66.8464 98.016 67.8167 97.7576 68.6779 97.7863C69.1142 97.7978 69.5333 97.8753 69.9008 98.0332C70.2711 98.1882 70.6127 98.4035 70.8825 98.7107L71.204 99.0465C71.3878 99.236 71.3476 99.5833 71.1179 99.8216L70.7103 100.235C69.9955 100.967 69.0941 101.375 68.1755 101.392C67.7191 101.398 67.2713 101.3 66.8493 101.111C66.4302 100.918 66.057 100.62 65.747 100.241L65.4082 99.7958C65.2159 99.5403 65.279 99.17 65.5489 98.9719H65.546Z" fill="#B0B0B0"/>
169
+ <path d="M62.5013 93.7815L63.0352 93.5375C63.9739 93.1126 64.9787 93.0609 65.8198 93.2648C66.2475 93.3652 66.6436 93.5289 66.9738 93.7556C67.3096 93.9824 67.5996 94.2637 67.8034 94.6168L68.0531 95.0101C68.1967 95.234 68.0876 95.5642 67.812 95.7507L67.3297 96.0723C66.4771 96.6406 65.5097 96.8531 64.5997 96.6808C64.149 96.5918 63.7271 96.4052 63.351 96.1325C62.975 95.8598 62.6707 95.4895 62.4381 95.056L62.1941 94.5537C62.0564 94.2637 62.1941 93.9164 62.4984 93.7786L62.5013 93.7815Z" fill="#B0B0B0"/>
170
+ <path d="M60.551 88.0908L61.1223 87.9645C62.127 87.7434 63.1231 87.9013 63.9097 88.2745C64.3115 88.4582 64.6646 88.6994 64.946 88.9893C65.2302 89.2792 65.4598 89.6122 65.589 89.9998L65.7555 90.4332C65.8502 90.6801 65.678 90.9815 65.3708 91.105L64.8311 91.3203C63.8809 91.6992 62.8848 91.7078 62.0265 91.3519C61.6017 91.1739 61.2256 90.904 60.9098 90.5624C60.5941 90.2208 60.373 89.796 60.2324 89.3252C60.1807 89.1472 60.1405 88.9663 60.0946 88.7855C60.0171 88.4755 60.2209 88.1654 60.551 88.0937V88.0908Z" fill="#B0B0B0"/>
171
+ <path d="M59.7969 82.166L60.3825 82.1602C61.4131 82.1545 62.3489 82.5104 63.0493 83.0329C63.4053 83.2941 63.701 83.6013 63.9163 83.94C64.1459 84.2788 64.2895 84.6491 64.3469 85.0538L64.4215 85.5103C64.4646 85.7715 64.2349 86.027 63.9077 86.0844L63.3364 86.182C62.3259 86.3571 61.3499 86.159 60.5835 85.6366C59.8256 85.117 59.3003 84.273 59.24 83.297C59.2228 83.1133 59.217 82.9296 59.2113 82.7458C59.1998 82.4301 59.4639 82.1717 59.7998 82.1688L59.7969 82.166Z" fill="#B0B0B0"/>
172
+ <path d="M64.8107 77.7778L65.1724 78.1539C65.4939 78.4811 65.7092 78.8227 65.8671 79.1701C66.0193 79.5174 66.0681 79.8648 66.0595 80.2092C66.0422 80.5537 65.9332 80.8896 65.758 81.214C65.5772 81.5355 65.3016 81.8455 64.9571 82.124L64.561 82.4455C64.3342 82.6321 63.9524 82.6493 63.7113 82.4656L63.2893 82.1383C62.9104 81.8455 62.6463 81.4953 62.4683 81.1135C62.2846 80.7317 62.2157 80.3241 62.2386 79.9222C62.253 79.5203 62.3879 79.1299 62.6003 78.7796C62.807 78.4294 63.1314 78.1251 63.5276 77.8926L63.9754 77.6343C64.2309 77.4879 64.604 77.5596 64.8107 77.7778Z" fill="#B0B0B0"/>
173
+ <path d="M75.2288 97.0498L74.8499 97.4776C74.1782 98.2297 73.7878 99.111 73.7447 99.9635C73.7275 100.386 73.7992 100.79 73.9571 101.158C74.115 101.525 74.3676 101.832 74.692 102.079L75.0709 102.34C75.2891 102.49 75.6077 102.383 75.7857 102.105L76.0957 101.617C76.6412 100.762 76.888 99.8171 76.8938 99.0191C76.8995 98.6143 76.8479 98.2354 76.7302 97.9168C76.6125 97.5952 76.4431 97.3111 76.1876 97.1072L75.912 96.8604C75.7541 96.7197 75.4498 96.803 75.2317 97.047L75.2288 97.0498Z" fill="#B0B0B0"/>
174
+ <path d="M72.413 93.8965L71.9537 94.2352C71.1413 94.8323 70.5815 95.6131 70.372 96.437C70.2715 96.8446 70.2629 97.258 70.3433 97.6513C70.4265 98.0417 70.616 98.3977 70.8829 98.7048L71.2044 99.0407C71.3882 99.233 71.7269 99.1957 71.9566 98.9603L72.3613 98.5469C73.0704 97.8207 73.501 96.948 73.6675 96.1672C73.7536 95.7739 73.7794 95.3921 73.7249 95.0562C73.6732 94.7175 73.5612 94.4046 73.3488 94.152L73.1249 93.8534C72.9957 93.6841 72.68 93.7013 72.4159 93.8965H72.413Z" fill="#B0B0B0"/>
175
+ <path d="M70.2718 90.2405L69.7522 90.4788C68.8336 90.895 68.1274 91.5409 67.7542 92.3016C67.5734 92.6806 67.4844 93.0796 67.4844 93.4786C67.4872 93.8776 67.6021 94.2652 67.8059 94.6211L68.0556 95.0144C68.1992 95.2412 68.5379 95.2728 68.8135 95.089L69.2929 94.7704C70.134 94.2078 70.7339 93.4413 71.0526 92.715C71.2162 92.3476 71.3167 91.9801 71.3282 91.6414C71.3425 91.2998 71.2966 90.9725 71.1387 90.6826L70.9779 90.3467C70.8861 90.1544 70.5703 90.1085 70.2718 90.2434V90.2405Z" fill="#B0B0B0"/>
176
+ <path d="M68.8908 86.2433L68.331 86.3667C67.3435 86.582 66.5225 87.0643 66.0029 87.7303C65.7531 88.0604 65.5809 88.4307 65.5005 88.8211C65.4259 89.2087 65.4575 89.6106 65.5895 89.9981L65.756 90.4316C65.8507 90.6813 66.178 90.7846 66.4852 90.6612L67.022 90.4488C67.9635 90.0727 68.7042 89.4498 69.1635 88.8068C69.396 88.4824 69.5682 88.1465 69.6486 87.8193C69.729 87.492 69.7519 87.1619 69.6543 86.849C69.6199 86.7313 69.5941 86.6079 69.5625 86.4902C69.5108 86.2835 69.2094 86.1744 68.8908 86.2433Z" fill="#B0B0B0"/>
177
+ <path d="M68.3427 82.0869L67.7715 82.0927C66.7639 82.0984 65.8481 82.3998 65.2137 82.9366C64.9008 83.2036 64.6568 83.5308 64.4961 83.8925C64.3525 84.2542 64.2922 84.6504 64.3497 85.0523L64.4243 85.5087C64.4674 85.7699 64.7659 85.9393 65.0932 85.8819L65.6615 85.7843C66.6605 85.6121 67.516 85.1614 68.0987 84.6303C68.6872 84.0964 69.0202 83.4792 68.9743 82.8333C68.9599 82.7098 68.957 82.5893 68.9542 82.4658C68.9456 82.2563 68.6728 82.0869 68.3456 82.0898L68.3427 82.0869Z" fill="#B0B0B0"/>
178
+ <path d="M79.1856 104.628C79.0909 104.858 78.8699 104.976 78.689 104.893C74.3084 102.903 70.4962 99.579 67.8408 95.4625C65.1683 91.3517 63.6956 86.4831 63.6641 81.6375C63.6641 81.4365 63.8679 81.2815 64.1148 81.2873C64.3616 81.293 64.5626 81.4538 64.5597 81.6461C64.5941 86.3195 66.0122 91.0101 68.5901 94.9745C71.1507 98.9446 74.8251 102.148 79.045 104.072C79.2172 104.152 79.2804 104.402 79.1856 104.631V104.628Z" fill="#B0B0B0"/>
179
+ <path d="M111.142 80.3639L110.645 80.4471C109.772 80.5993 109.04 81.07 108.558 81.6585C108.311 81.9542 108.116 82.2843 108.004 82.6317C107.889 82.979 107.829 83.3465 107.875 83.7254L107.906 84.1589C107.924 84.4057 108.176 84.6038 108.469 84.6009L108.98 84.5952C109.879 84.5866 110.665 84.245 111.208 83.645C111.472 83.3465 111.667 82.9876 111.785 82.5857C111.899 82.1867 111.917 81.7504 111.851 81.3026L111.756 80.7973C111.701 80.5074 111.426 80.3122 111.145 80.361L111.142 80.3639Z" fill="#B0B0B0"/>
180
+ <path d="M109.517 75.0564L109.052 75.2401C108.233 75.5645 107.613 76.1788 107.255 76.8563C107.071 77.1979 106.944 77.5624 106.901 77.927C106.853 78.2945 106.867 78.6676 106.982 79.0322L107.094 79.4513C107.157 79.6896 107.438 79.836 107.722 79.7728L108.216 79.6638C109.083 79.4743 109.784 78.9777 110.194 78.2772C110.395 77.9299 110.516 77.5366 110.556 77.1204C110.593 76.7041 110.527 76.2707 110.381 75.8429L110.194 75.3635C110.088 75.0879 109.784 74.9502 109.519 75.0564H109.517Z" fill="#B0B0B0"/>
181
+ <path d="M106.951 70.1336L106.535 70.4091C105.8 70.8943 105.315 71.6263 105.094 72.3698C104.979 72.7458 104.928 73.1305 104.951 73.5008C104.974 73.8711 105.057 74.2386 105.238 74.5773L105.427 74.9706C105.533 75.1945 105.835 75.2806 106.099 75.1629L106.558 74.9562C107.365 74.5945 107.95 73.9659 108.215 73.1908C108.344 72.809 108.387 72.3956 108.347 71.9736C108.304 71.5545 108.16 71.1383 107.936 70.745L107.666 70.3087C107.511 70.0589 107.19 69.9843 106.951 70.1393V70.1336Z" fill="#B0B0B0"/>
182
+ <path d="M103.522 65.765L103.169 66.121C102.549 66.7525 102.216 67.5764 102.144 68.3544C102.104 68.7505 102.127 69.1409 102.221 69.5026C102.313 69.8672 102.465 70.2117 102.704 70.5102L102.962 70.8604C103.108 71.0614 103.418 71.0843 103.651 70.915L104.059 70.6164C104.773 70.0968 105.221 69.3533 105.336 68.5323C105.391 68.1247 105.353 67.7085 105.233 67.298C105.115 66.8903 104.891 66.5057 104.598 66.1612C104.486 66.032 104.369 65.9086 104.251 65.7823C104.05 65.5641 103.726 65.5555 103.525 65.7593L103.522 65.765Z" fill="#B0B0B0"/>
183
+ <path d="M99.3391 62.1176L99.0635 62.5453C98.5784 63.3003 98.4176 64.1816 98.4951 64.9767C98.5324 65.3815 98.63 65.7633 98.7937 66.0992C98.9487 66.4494 99.1697 66.7537 99.4568 67.0063L99.7754 67.302C99.9563 67.4713 100.263 67.4311 100.456 67.2158L100.795 66.8398C101.392 66.1795 101.684 65.3528 101.636 64.5146C101.584 63.6878 101.179 62.8611 100.462 62.307C100.329 62.198 100.192 62.0975 100.051 61.997C99.8127 61.8219 99.4941 61.8793 99.3362 62.1233L99.3391 62.1176Z" fill="#B0B0B0"/>
184
+ <path d="M93.5331 63.5035L93.6565 63.9771C93.7598 64.3934 93.9263 64.7407 94.1273 65.0421C94.3282 65.3407 94.5808 65.5646 94.8564 65.7397C95.1349 65.9091 95.4564 66.0067 95.7923 66.044C96.1339 66.0784 96.507 66.0325 96.8888 65.9206L97.3309 65.7914C97.5864 65.7196 97.7759 65.444 97.7472 65.1656L97.6926 64.6776C97.6438 64.2412 97.4945 63.8594 97.2821 63.5264C97.0726 63.1877 96.7855 62.9236 96.464 62.7255C96.1425 62.5217 95.7722 62.4155 95.3961 62.3868C95.02 62.3552 94.6268 62.4327 94.2507 62.6021L93.8287 62.7973C93.5876 62.9121 93.4642 63.2279 93.5359 63.5006L93.5331 63.5035Z" fill="#B0B0B0"/>
185
+ <path d="M103.751 81.6234L104.256 81.5373C105.146 81.3823 105.998 81.5172 106.673 81.9134C107.006 82.1115 107.282 82.3727 107.494 82.6798C107.706 82.987 107.827 83.3458 107.873 83.7248L107.904 84.1582C107.922 84.408 107.698 84.6118 107.405 84.6118L106.891 84.6175C105.984 84.6261 105.14 84.3506 104.517 83.9544C104.198 83.7535 103.929 83.5238 103.733 83.2655C103.535 83.0071 103.395 82.7258 103.352 82.4186L103.286 82.0713C103.248 81.8732 103.455 81.6723 103.745 81.6206L103.751 81.6234Z" fill="#B0B0B0"/>
186
+ <path d="M102.588 77.7858L103.064 77.5992C103.9 77.2691 104.752 77.2289 105.481 77.4844C105.84 77.6136 106.159 77.8145 106.423 78.0757C106.684 78.337 106.871 78.6642 106.986 79.0288L107.098 79.4479C107.161 79.6891 106.986 79.9359 106.701 79.9962L106.205 80.1053C105.329 80.2976 104.459 80.1943 103.779 79.9302C103.435 79.7981 103.128 79.623 102.889 79.4077C102.648 79.1924 102.459 78.9456 102.358 78.6499L102.229 78.3198C102.154 78.1303 102.318 77.892 102.591 77.7829L102.588 77.7858Z" fill="#B0B0B0"/>
187
+ <path d="M100.732 74.2283L101.16 73.947C101.906 73.4533 102.73 73.2408 103.485 73.347C103.858 73.4016 104.203 73.5365 104.51 73.7432C104.814 73.9499 105.058 74.2341 105.236 74.5728L105.426 74.9661C105.535 75.1929 105.409 75.4713 105.144 75.589L104.682 75.7957C103.867 76.1603 103.003 76.2349 102.294 76.1115C101.932 76.0483 101.602 75.9392 101.332 75.7756C101.06 75.612 100.824 75.4053 100.672 75.1326L100.485 74.8312C100.379 74.6589 100.491 74.3891 100.735 74.2283H100.732Z" fill="#B0B0B0"/>
188
+ <path d="M98.2553 71.0855L98.617 70.7209C99.2485 70.0779 100.009 69.7019 100.767 69.6531C101.137 69.633 101.502 69.6961 101.841 69.8397C102.174 69.9832 102.467 70.2157 102.705 70.5143L102.963 70.8645C103.112 71.0654 103.041 71.3668 102.808 71.5362L102.401 71.8347C101.677 72.3601 100.853 72.6098 100.138 72.6299C99.7767 72.6414 99.4323 72.6012 99.1395 72.4921C98.8438 72.3859 98.5768 72.228 98.3759 71.9898C98.2984 71.9008 98.2151 71.8175 98.1376 71.7314C97.9998 71.585 98.0572 71.2951 98.2639 71.0855H98.2553Z" fill="#B0B0B0"/>
189
+ <path d="M95.2378 68.4755L95.5191 68.0391C96.01 67.2755 96.6817 66.7387 97.4051 66.5435C97.7611 66.4488 98.1314 66.4345 98.4873 66.5062C98.8347 66.5866 99.1705 66.7502 99.4576 67.0028L99.7763 67.2985C99.96 67.4679 99.9485 67.7808 99.7533 67.9961L99.4117 68.375C98.8088 69.0439 98.0539 69.4572 97.362 69.6237C96.6587 69.7931 96.0128 69.7242 95.522 69.3482C95.4301 69.2735 95.3354 69.2046 95.2406 69.1386C95.077 69.0209 95.077 68.7224 95.2349 68.4726L95.2378 68.4755Z" fill="#B0B0B0"/>
190
+ <path d="M107.819 88.6252C108.038 88.6625 108.227 88.5391 108.244 88.3497C108.663 83.8313 107.817 79.1636 105.864 75.0298C103.93 70.8904 100.864 67.2648 97.1176 64.6984C96.9597 64.5922 96.7416 64.6611 96.6296 64.8505C96.5177 65.04 96.5492 65.2754 96.6985 65.3759C100.321 67.8561 103.281 71.3583 105.153 75.36C107.039 79.3588 107.857 83.8714 107.446 88.2348C107.432 88.4157 107.595 88.5908 107.814 88.6281L107.819 88.6252Z" fill="#B0B0B0"/>
191
+ <path d="M79.8763 38.2971C79.9022 39.1411 79.3223 39.8817 78.4955 40.0597C75.6392 40.918 72.783 41.7763 69.9295 42.6318C65.4743 43.9695 60.9444 45.3187 56.9715 47.8104C52.9468 50.3366 49.7719 53.9909 46.2324 57.1142C45.2937 57.9438 44.355 58.7705 43.4134 59.6002C43.0173 59.9963 42.3829 60.0221 41.958 59.6576L40.2787 54.1402C22.9658 14.3272 17.4628 11.6747 11.1388 17.0026C10.668 16.1501 14.6553 13.0469 23.5687 8.12374C23.5687 8.12374 41.1025 -1.56182 41.1054 -1.56469C45.885 -4.20568 51.7526 -4.30903 56.627 -1.84601C59.5837 -0.353276 61.3492 2.17002 63.1261 4.86556C69.3468 14.3071 73.1676 25.2156 78.3147 35.2427C78.6907 35.9805 79.8505 37.4474 79.8763 38.3V38.2971Z" fill="#1EBEE6"/>
192
+ <path d="M83.1535 99.8309C83.0071 99.5783 82.9669 99.274 83.0415 98.9927L87.1322 83.4768C87.8183 80.7756 88.068 77.8131 86.9686 75.9127C85.7974 73.8831 84.0865 73.3148 82.143 74.4372C80.1996 75.5596 79.6025 77.0064 80.3517 78.8924C80.5527 79.3977 80.3317 79.9718 79.8609 80.2445L74.8487 83.1381C74.2889 83.4625 73.5684 83.2386 73.2871 82.6558C70.0921 76.0447 73.2814 70.5704 78.0782 67.8002C83.1305 64.8837 89.888 65.0157 93.8753 71.9254C95.7958 75.2524 95.7585 79.8799 94.6935 83.718L93.1405 89.1435C92.8649 90.1052 93.8983 90.9118 94.7652 90.4123L101.572 86.4853C102.103 86.1781 102.783 86.3618 103.09 86.8929L105.817 91.618C106.124 92.1491 105.941 92.8294 105.41 93.1366L86.7762 103.89C86.2452 104.197 85.5648 104.013 85.2577 103.482L83.1506 99.8309H83.1535Z" fill="#B0B0B0"/>
193
+ <path d="M62.2568 72.15C62.9457 71.8458 63.362 71.0937 63.2328 70.3817C62.8797 68.4268 60.4942 67.6546 60.609 66.802C60.0837 66.1734 61.6539 64.0347 60.9592 62.232C60.7066 61.5775 59.9947 61.233 59.2799 61.4196C57.325 61.9306 56.3691 64.3476 55.5366 64.3046C54.8706 64.8758 52.8985 63.5037 51.0613 64.339C50.3953 64.6404 49.9905 65.3753 50.1053 66.0672C50.4268 67.9761 52.7377 68.7397 52.6171 69.5837C53.1281 70.2095 51.5751 72.3309 52.244 74.148C52.488 74.8111 53.1913 75.1728 53.9003 74.9977C55.8581 74.5155 56.8198 72.0754 57.6609 72.1271C58.3326 71.553 60.3593 72.9797 62.251 72.1443L62.2568 72.15Z" fill="#FAFAFA"/>
194
+ <path d="M69.8844 75.8084C70.6537 75.7969 71.1475 74.9013 70.7283 74.2784C70.3408 73.7014 69.6432 73.3913 69.6863 73.067C69.4853 72.8229 69.9073 72.1397 69.9389 71.4249C69.9734 70.6585 69.115 70.225 68.4749 70.6814C67.8807 71.1063 67.5276 71.824 67.2089 71.801C66.9534 72.0163 66.3047 71.6402 65.6014 71.6546C64.8464 71.6718 64.3555 72.556 64.766 73.1703C65.1449 73.7416 65.8339 74.0516 65.7908 74.376C65.9889 74.62 65.5669 75.3003 65.5353 76.0151C65.498 76.7844 66.3506 77.2265 66.9936 76.773C67.5907 76.3481 67.9438 75.6304 68.2653 75.6534C68.5208 75.4381 69.1782 75.8228 69.8901 75.8113L69.8844 75.8084Z" fill="#FAFAFA"/>
195
+ </svg>
196
+
197
+ <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 136 135" fill="none">
198
+
199
+ <path d="M123.81 18.084C126.325 27.2539 107.127 48.2802 98.2828 53.4132L93.1641 44.4216L107.31 8.96875C113.66 11.2131 119.205 14.2111 123.81 18.084Z" fill="#1993AF"/>
200
+ <path d="M84.3817 73.7839L55.6 55.4798C52.7066 53.6396 51.7105 49.8333 53.3034 46.9494L59.3327 36.0321C60.6022 33.733 63.227 32.4896 65.9111 32.9461L82.0875 35.6921C83.5234 35.9346 84.8548 36.5646 85.939 37.5156L100.261 50.0995C103.007 52.5127 103.858 56.0432 102.315 58.8344L95.0352 72.0127C93.1094 75.5005 88.276 76.2589 84.3817 73.7839ZM82.2634 39.7671C82.0042 39.6387 81.7261 39.546 81.436 39.4936L65.224 36.5004C64.1375 36.3007 63.0629 36.7952 62.5446 37.7343L56.4203 48.8205C55.7688 49.9973 56.192 51.5403 57.376 52.2678L86.4097 70.1131C87.9717 71.0736 89.8784 70.7455 90.6368 69.369L97.7859 56.4284C98.3945 55.3276 98.076 53.9297 97.0037 52.9573L82.9719 40.2449C82.7603 40.0524 82.5202 39.8907 82.2634 39.7647V39.7671Z" fill="#FF9B3A"/>
201
+ <path d="M95.1556 91.3529C95.322 91.0509 96.0947 90.3971 96.6083 89.9644C98.0538 88.7424 99.8583 87.2184 100.552 84.7506C101.266 82.2186 100.467 79.8625 99.8868 78.1508C99.6871 77.5588 99.3851 76.6672 99.3875 76.3581C99.4042 76.0372 99.7917 75.1433 100.048 74.5513C100.795 72.8324 101.722 70.6926 101.235 68.2082C100.747 65.7308 99.0238 64.0405 97.7756 62.8161C97.331 62.3786 96.6582 61.7224 96.5274 61.4443C96.4086 61.1637 96.3634 60.246 96.3349 59.6398C96.2516 57.9304 96.1351 55.5957 94.6207 53.6604C93.1372 51.7656 90.995 51.0809 89.2904 50.5341C88.6984 50.3439 87.8045 50.0586 87.5715 49.8731C87.3551 49.6853 86.9367 48.9507 86.6609 48.4633C85.8526 47.0415 84.7494 45.1039 82.5693 44.0887C80.4082 43.0807 78.1115 43.4112 76.4449 43.6489C75.8791 43.7297 75.0256 43.851 74.7569 43.8058C74.4669 43.744 73.7417 43.2661 73.2615 42.9523C71.8944 42.0536 70.2064 40.9457 67.9074 40.9885C65.5989 41.0313 63.6993 42.2509 62.318 43.1377C61.8306 43.4492 61.096 43.9223 60.8225 43.9936C60.5444 44.0554 59.717 43.9556 59.1702 43.889C57.6534 43.7036 55.5874 43.4516 53.519 44.4501C51.4672 45.4391 50.2999 47.1866 49.3608 48.5893C49.0374 49.0719 48.55 49.7994 48.3265 49.9753C48.1007 50.1394 47.3256 50.3962 46.8121 50.565C45.3404 51.05 43.3386 51.7109 41.8313 53.4726C40.3691 55.1844 40.0078 57.1838 39.7153 58.7934C39.6107 59.3664 39.4538 60.2318 39.3064 60.5004C39.159 60.7667 38.51 61.3611 38.0796 61.7557C36.8719 62.8612 35.3717 64.2307 34.7013 66.3799C34.0118 68.5909 34.5182 70.6403 34.8915 72.1429C35.0222 72.6659 35.2172 73.46 35.1981 73.7334C35.1672 74.0211 34.8106 74.8199 34.5752 75.3501C33.9238 76.8099 33.0323 78.8117 33.2867 81.075C33.5434 83.3574 34.8558 84.9717 35.821 86.1581C36.1682 86.5836 36.6936 87.2303 36.7887 87.499C36.8743 87.77 36.8648 88.6425 36.86 89.2226C36.8457 90.8631 36.8243 93.1193 38.0155 95.0974C39.2042 97.0683 41.042 97.9052 42.5279 98.5851C43.0486 98.8229 43.8403 99.1842 44.0423 99.3911C44.2302 99.5979 44.5797 100.385 44.8126 100.908C45.4974 102.446 46.4436 104.564 48.4454 105.858C50.4663 107.163 52.6916 107.063 54.3273 106.992C54.886 106.968 55.7324 106.93 56.001 107.011C56.2887 107.111 57.0067 107.715 57.4822 108.116C58.854 109.272 60.5729 110.717 62.967 110.965C65.4134 111.217 67.4486 110.073 68.9416 109.231C69.4694 108.934 70.2706 108.485 70.5678 108.435C70.8745 108.399 71.7898 108.616 72.3961 108.761C74.0984 109.167 76.4449 109.726 78.801 108.82C81.1642 107.91 82.5384 105.905 83.5393 104.438C83.903 103.906 84.4546 103.102 84.7138 102.919C84.9753 102.75 85.893 102.532 86.4992 102.384C88.2562 101.964 90.6741 101.386 92.4382 99.4339C94.1595 97.5319 94.4876 95.1949 94.7538 93.3214C94.8466 92.6581 94.9892 91.6548 95.1556 91.3529Z" fill="#EA9047"/>
202
+ <path d="M91.1528 89.1422C91.3192 88.8403 92.0895 88.1888 92.6007 87.7561C94.0414 86.5365 95.8388 85.0149 96.533 82.5542C97.2439 80.0293 96.4522 77.6804 95.8768 75.9758C95.6771 75.3862 95.3776 74.497 95.3823 74.1879C95.399 73.8669 95.7865 72.9754 96.0409 72.3858C96.785 70.6692 97.7122 68.5367 97.2272 66.0593C96.7446 63.5891 95.0304 61.9059 93.787 60.6862C93.3448 60.2512 92.6768 59.595 92.546 59.3216C92.4271 59.041 92.3843 58.1281 92.3558 57.5242C92.275 55.8196 92.1608 53.492 90.6535 51.5639C89.1771 49.6762 87.0469 48.9938 85.347 48.4518C84.7574 48.264 83.8658 47.9787 83.6352 47.7932C83.4213 47.6078 83.0052 46.8731 82.7294 46.3881C81.9258 44.9712 80.8298 43.0407 78.6592 42.0279C76.5099 41.0246 74.2204 41.355 72.561 41.5952C71.9975 41.676 71.1487 41.7996 70.8801 41.7521C70.59 41.6903 69.8697 41.2148 69.3918 40.9009C68.0319 40.007 66.351 38.9015 64.0615 38.9467C61.7601 38.9918 59.8676 40.2091 58.4935 41.0935C58.0085 41.405 57.2762 41.8781 57.0052 41.9494C56.727 42.0112 55.9044 41.9114 55.3599 41.8448C53.8479 41.6617 51.7914 41.4121 49.7301 42.4106C47.6855 43.3997 46.5205 45.1423 45.5838 46.5427C45.2628 47.0229 44.7754 47.7504 44.552 47.9264C44.3261 48.0904 43.5534 48.3448 43.0446 48.516C41.5801 49.001 39.583 49.6619 38.0829 51.4212C36.6255 53.1283 36.2617 55.123 35.9693 56.7301C35.8647 57.3007 35.7078 58.1661 35.5604 58.4324C35.413 58.6987 34.7663 59.293 34.336 59.6853C33.1306 60.7885 31.6375 62.1579 30.9671 64.3C30.2776 66.5063 30.7816 68.5485 31.1501 70.0463C31.2785 70.5694 31.4735 71.3587 31.4545 71.6321C31.4236 71.9174 31.0693 72.7162 30.8339 73.244C30.1849 74.7014 29.2933 76.6961 29.543 78.9524C29.7974 81.2276 31.1026 82.8371 32.0607 84.0187C32.4055 84.4443 32.9285 85.0886 33.0236 85.3549C33.1092 85.6259 33.0997 86.4961 33.0925 87.0738C33.0759 88.7095 33.0521 90.961 34.2385 92.9319C35.4201 94.8957 37.2484 95.7302 38.7295 96.4054C39.2478 96.6431 40.0348 97.0021 40.2368 97.209C40.4223 97.4158 40.7718 98.2004 41.0024 98.721C41.6823 100.254 42.6214 102.366 44.6161 103.652C46.6275 104.95 48.8433 104.85 50.4719 104.776C51.0282 104.75 51.8722 104.712 52.1385 104.793C52.4261 104.893 53.1394 105.494 53.6125 105.894C54.9772 107.045 56.6866 108.485 59.0712 108.73C61.5057 108.98 63.5361 107.836 65.022 106.997C65.5498 106.7 66.3462 106.25 66.6434 106.203C66.9477 106.167 67.8583 106.384 68.4646 106.526C70.1573 106.93 72.4968 107.484 74.8433 106.579C77.197 105.668 78.5665 103.669 79.5674 102.204C79.9311 101.674 80.4803 100.873 80.7395 100.687C81.001 100.518 81.9139 100.3 82.5178 100.152C84.2676 99.7315 86.676 99.1514 88.4353 97.2042C90.1519 95.307 90.4823 92.9747 90.7462 91.106C90.8413 90.445 90.9816 89.4441 91.148 89.1422H91.1528Z" fill="#FFA84B"/>
203
+ <path d="M86.078 86.3362C93.8381 72.2877 88.5339 55.284 74.9681 48.7127C62.1559 42.5075 46.6048 47.9947 39.6079 60.6642C32.6087 73.3314 36.2438 89.4174 48.3166 96.9611C61.1003 104.947 78.3179 100.385 86.078 86.3362Z" fill="#FFA84B"/>
204
+ <path d="M48.307 96.9591C36.2532 89.4273 32.6109 73.3104 39.5983 60.6623C46.5857 48.0141 62.1653 42.5174 74.9584 48.7107C88.5029 55.2702 93.8165 72.3071 86.0684 86.3342C78.3202 100.361 61.0669 104.931 48.307 96.9591ZM73.6794 51.0335C62.1177 45.3609 47.9694 50.2965 41.6239 61.7821C35.2784 73.2676 38.633 87.8724 49.5884 94.6411C61.1239 101.766 76.6369 97.5868 83.6053 84.9743C90.5713 72.3618 85.852 57.0057 73.6794 51.0335Z" fill="#EA9047"/>
205
+ <path d="M75.5268 89.6711L75.2035 89.3073C74.6353 88.6726 73.8959 88.2993 73.1969 88.1733C72.8451 88.1091 72.4932 88.0996 72.1722 88.1638C71.8489 88.2256 71.5398 88.3421 71.2712 88.5442L70.9573 88.7605C70.779 88.8841 70.7529 89.1718 70.9003 89.4024L71.1594 89.8066C71.6135 90.5222 72.2721 91.0072 73.0091 91.1784C73.3729 91.2592 73.7509 91.2592 74.1218 91.1784C74.4903 91.0952 74.8398 90.9145 75.1536 90.6601L75.4983 90.3582C75.6957 90.1846 75.7052 89.8732 75.5197 89.6663L75.5268 89.6711Z" fill="#EA9047"/>
206
+ <path d="M78.8442 85.972L78.4543 85.6843C77.7672 85.1803 76.9636 84.9663 76.2504 84.9901C75.889 84.9996 75.5419 85.0638 75.2376 85.1945C74.9309 85.3229 74.648 85.5012 74.4245 85.7556L74.1582 86.0338C74.006 86.1907 74.0393 86.4784 74.2295 86.6757L74.5671 87.018C75.1591 87.6243 75.9056 87.9619 76.6664 87.9762C77.0445 87.9809 77.4153 87.9001 77.7648 87.7432C78.1119 87.5839 78.421 87.3366 78.6778 87.0228L78.9583 86.6543C79.1176 86.4427 79.0653 86.136 78.8418 85.972H78.8442Z" fill="#EA9047"/>
207
+ <path d="M81.3692 81.6719L80.927 81.4698C80.1496 81.118 79.3174 81.0752 78.6208 81.244C78.2666 81.3272 77.9385 81.4627 77.6651 81.6505C77.3869 81.8383 77.1468 82.0713 76.978 82.3638L76.7712 82.6895C76.6523 82.8749 76.7426 83.1483 76.9709 83.3029L77.3703 83.5691C78.0764 84.0399 78.8776 84.2158 79.6313 84.0732C80.0045 83.9995 80.354 83.8449 80.6655 83.6191C80.9769 83.3932 81.2289 83.0865 81.4215 82.7275L81.6236 82.3115C81.7377 82.0713 81.6236 81.7837 81.3716 81.6695L81.3692 81.6719Z" fill="#EA9047"/>
208
+ <path d="M82.9803 76.9619L82.5072 76.8573C81.6751 76.6742 80.8501 76.805 80.1987 77.114C79.8658 77.2662 79.5734 77.4659 79.3404 77.706C79.105 77.9461 78.9148 78.2219 78.8079 78.5429L78.67 78.9019C78.5915 79.1063 78.7342 79.356 78.9886 79.4582L79.4355 79.6365C80.2225 79.9527 81.0474 79.9575 81.7583 79.6627C82.1102 79.5153 82.4216 79.2918 82.6831 79.0089C82.9447 78.726 83.1277 78.3741 83.2442 77.9842C83.287 77.8368 83.3203 77.687 83.3583 77.5372C83.4225 77.2804 83.2537 77.0237 82.9803 76.9642V76.9619Z" fill="#EA9047"/>
209
+ <path d="M83.6078 72.0517L83.1228 72.0469C82.2693 72.0422 81.4943 72.337 80.9142 72.7697C80.6194 72.986 80.3745 73.2404 80.1962 73.521C80.006 73.8015 79.8871 74.1082 79.8395 74.4434L79.7777 74.8214C79.7421 75.0378 79.9323 75.2494 80.2033 75.2969L80.6764 75.3778C81.5133 75.5228 82.3216 75.3587 82.9564 74.926C83.5841 74.4957 84.0191 73.7967 84.0691 72.9884C84.0833 72.8363 84.0881 72.6841 84.0928 72.5319C84.1024 72.2704 83.8836 72.0564 83.6055 72.0541L83.6078 72.0517Z" fill="#EA9047"/>
210
+ <path d="M79.4569 68.4187L79.1573 68.7301C78.891 69.0012 78.7127 69.2841 78.582 69.5718C78.4559 69.8594 78.4155 70.1471 78.4227 70.4324C78.4369 70.7177 78.5273 70.9959 78.6723 71.2645C78.8221 71.5308 79.0503 71.7876 79.3356 72.0182L79.6637 72.2845C79.8515 72.439 80.1653 72.4533 80.3674 72.3011L80.7169 72.0301C81.0307 71.7876 81.2495 71.4975 81.3969 71.1813C81.549 70.8651 81.6061 70.5275 81.5871 70.1947C81.5752 69.8618 81.4635 69.5385 81.2875 69.2484C81.1163 68.9584 80.8477 68.7064 80.5196 68.5138L80.1487 68.2998C79.9371 68.1786 79.628 68.238 79.4569 68.4187Z" fill="#EA9047"/>
211
+ <path d="M70.8246 84.3805L71.1384 84.7348C71.6948 85.3577 72.0181 86.0876 72.0538 86.7937C72.068 87.1432 72.0086 87.4784 71.8778 87.7827C71.7471 88.087 71.5378 88.3414 71.2692 88.5459L70.9554 88.7622C70.7747 88.8858 70.5108 88.7979 70.3634 88.5673L70.1066 88.1631C69.6549 87.4546 69.4504 86.6724 69.4457 86.0115C69.4409 85.6763 69.4837 85.3624 69.5812 85.0985C69.6787 84.8323 69.8189 84.5969 70.0305 84.4281L70.2588 84.2236C70.3895 84.1071 70.6415 84.1761 70.8222 84.3782L70.8246 84.3805Z" fill="#EA9047"/>
212
+ <path d="M73.1571 81.7666L73.5375 82.0471C74.2103 82.5417 74.6739 83.1883 74.8474 83.8707C74.9307 84.2083 74.9378 84.5506 74.8712 84.8763C74.8023 85.1997 74.6454 85.4945 74.4243 85.7489L74.158 86.027C74.0058 86.1863 73.7253 86.1554 73.5351 85.9605L73.1999 85.6181C72.6126 85.0166 72.256 84.2938 72.1181 83.6472C72.0468 83.3215 72.0254 83.0053 72.0706 82.7271C72.1134 82.4466 72.2061 82.1874 72.382 81.9782L72.5675 81.7309C72.6744 81.5907 72.936 81.6049 73.1547 81.7666H73.1571Z" fill="#EA9047"/>
213
+ <path d="M74.9395 78.7375L75.3698 78.9348C76.1306 79.2796 76.7154 79.8145 77.0245 80.4445C77.1743 80.7583 77.248 81.0888 77.248 81.4193C77.2456 81.7497 77.1505 82.0707 76.9817 82.3655L76.7749 82.6912C76.656 82.879 76.3755 82.9052 76.1472 82.753L75.7502 82.4891C75.0536 82.0232 74.5567 81.3884 74.2928 80.7869C74.1573 80.4826 74.0741 80.1782 74.0646 79.8977C74.0527 79.6148 74.0907 79.3437 74.2215 79.1036L74.3546 78.8255C74.4307 78.6662 74.6922 78.6281 74.9395 78.7399V78.7375Z" fill="#EA9047"/>
214
+ <path d="M76.0763 75.4292L76.5399 75.5314C77.3577 75.7097 78.0377 76.1092 78.468 76.6607C78.6749 76.9341 78.8175 77.2408 78.8841 77.5642C78.9459 77.8851 78.9197 78.218 78.8104 78.5389L78.6725 78.8979C78.594 79.1048 78.323 79.1904 78.0686 79.0881L77.624 78.9122C76.8442 78.6007 76.2308 78.0848 75.8504 77.5523C75.6579 77.2836 75.5152 77.0055 75.4486 76.7344C75.3821 76.4634 75.363 76.19 75.4439 75.9308C75.4724 75.8334 75.4938 75.7311 75.52 75.6337C75.5628 75.4625 75.8124 75.3721 76.0763 75.4292Z" fill="#EA9047"/>
215
+ <path d="M76.5343 71.9863L77.0075 71.9911C77.8419 71.9958 78.6004 72.2455 79.1258 72.6901C79.3849 72.9112 79.587 73.1822 79.7202 73.4818C79.839 73.7813 79.889 74.1094 79.8414 74.4423L79.7796 74.8203C79.7439 75.0366 79.4967 75.1769 79.2256 75.1293L78.7549 75.0485C77.9275 74.9059 77.2191 74.5326 76.7364 74.0928C76.249 73.6506 75.9733 73.1394 76.0113 72.6045C76.0232 72.5022 76.0256 72.4024 76.0279 72.3002C76.0351 72.1266 76.2609 71.9863 76.532 71.9887L76.5343 71.9863Z" fill="#EA9047"/>
216
+ <path d="M67.5521 90.6546C67.6306 90.8448 67.8136 90.9423 67.9634 90.8733C71.5914 89.2257 74.7487 86.4726 76.9479 83.0633C79.1613 79.6588 80.3809 75.6266 80.4071 71.6134C80.4071 71.447 80.2383 71.3186 80.0338 71.3234C79.8294 71.3281 79.663 71.4613 79.6653 71.6206C79.6368 75.4911 78.4623 79.3759 76.3274 82.6592C74.2067 85.9472 71.1635 88.6005 67.6686 90.1934C67.526 90.2599 67.4736 90.4668 67.5521 90.657V90.6546Z" fill="#EA9047"/>
217
+ <path d="M41.08 70.5594L41.4913 70.6283C42.214 70.7543 42.8203 71.1442 43.2197 71.6316C43.4242 71.8765 43.5859 72.1499 43.6786 72.4376C43.7737 72.7252 43.8236 73.0295 43.7856 73.3434L43.7594 73.7024C43.7451 73.9068 43.5359 74.0709 43.2934 74.0685L42.8702 74.0637C42.1261 74.0566 41.4747 73.7737 41.0253 73.2768C40.8066 73.0295 40.6449 72.7324 40.5474 72.3995C40.4523 72.069 40.4381 71.7077 40.4928 71.3368L40.5712 70.9183C40.6164 70.6782 40.8446 70.5166 41.08 70.557V70.5594Z" fill="#EA9047"/>
218
+ <path d="M42.4238 66.1635L42.809 66.3156C43.4865 66.5843 44.0001 67.0931 44.2973 67.6542C44.4494 67.9371 44.554 68.239 44.5897 68.541C44.6301 68.8453 44.6182 69.1543 44.5231 69.4563L44.4304 69.8034C44.3781 70.0007 44.1451 70.122 43.9097 70.0697L43.5008 69.9793C42.7828 69.8224 42.2027 69.4111 41.8627 68.831C41.6963 68.5433 41.5965 68.2176 41.5632 67.8729C41.5323 67.5282 41.5869 67.1692 41.7082 66.8149L41.8627 66.4179C41.9507 66.1896 42.2027 66.0755 42.4214 66.1635H42.4238Z" fill="#EA9047"/>
219
+ <path d="M44.5448 62.0865L44.8896 62.3147C45.4982 62.7165 45.9 63.3228 46.0807 63.9386C46.1758 64.25 46.2186 64.5686 46.1996 64.8753C46.1805 65.182 46.1116 65.4863 45.9618 65.7668L45.8049 66.0925C45.7169 66.278 45.4673 66.3493 45.2486 66.2518L44.8682 66.0807C44.2001 65.7811 43.7151 65.2604 43.4964 64.6185C43.3894 64.3023 43.3537 63.9599 43.387 63.6105C43.4227 63.2633 43.5416 62.9186 43.727 62.5929L43.9505 62.2315C44.0789 62.0247 44.3451 61.9629 44.5425 62.0913L44.5448 62.0865Z" fill="#EA9047"/>
220
+ <path d="M47.3901 58.4702L47.6825 58.765C48.196 59.2881 48.4718 59.9704 48.5312 60.6147C48.5645 60.9428 48.5455 61.2661 48.4671 61.5657C48.391 61.8676 48.265 62.1529 48.0676 62.4002L47.8537 62.6902C47.7324 62.8567 47.4756 62.8757 47.2831 62.7354L46.9455 62.4882C46.3535 62.0578 45.9826 61.4421 45.8875 60.7621C45.8423 60.4245 45.8732 60.0798 45.9731 59.7398C46.0706 59.4022 46.256 59.0836 46.4985 58.7983C46.5912 58.6913 46.6887 58.5891 46.7862 58.4845C46.9526 58.3038 47.2213 58.2967 47.3877 58.4655L47.3901 58.4702Z" fill="#EA9047"/>
221
+ <path d="M50.8516 55.4486L51.0799 55.8028C51.4817 56.4281 51.6148 57.158 51.5506 57.8165C51.5197 58.1518 51.4389 58.468 51.3034 58.7461C51.175 59.0362 50.9919 59.2882 50.7542 59.4974L50.4903 59.7423C50.3405 59.8826 50.0861 59.8493 49.9268 59.671L49.6463 59.3595C49.1517 58.8127 48.9092 58.128 48.9497 57.4338C48.9924 56.749 49.3277 56.0643 49.922 55.6055C50.0314 55.5151 50.1455 55.4319 50.262 55.3487C50.4594 55.2037 50.7232 55.2512 50.854 55.4533L50.8516 55.4486Z" fill="#EA9047"/>
222
+ <path d="M55.662 56.5966L55.5598 56.9889C55.4742 57.3336 55.3363 57.6213 55.1699 57.8709C55.0035 58.1182 54.7942 58.3036 54.566 58.4486C54.3354 58.5889 54.0691 58.6697 53.7909 58.7006C53.508 58.7292 53.1989 58.6911 52.8827 58.5984L52.519 58.4914C52.3074 58.432 52.1505 58.2037 52.1743 57.9731L52.2194 57.569C52.2598 57.2076 52.3835 56.8914 52.5594 56.6156C52.733 56.3351 52.9707 56.1163 53.237 55.9523C53.5033 55.7835 53.81 55.6955 54.1214 55.6717C54.4329 55.6456 54.7586 55.7098 55.07 55.85L55.4195 56.0117C55.6192 56.1068 55.7214 56.3683 55.662 56.5942V56.5966Z" fill="#EA9047"/>
223
+ <path d="M47.1988 71.6028L46.7804 71.5314C46.0433 71.4031 45.3372 71.5148 44.7785 71.8429C44.5027 72.0069 44.2745 72.2233 44.0986 72.4777C43.9226 72.7321 43.8228 73.0292 43.7847 73.3431L43.7586 73.7021C43.7443 73.9089 43.9298 74.0777 44.1723 74.0777L44.5978 74.0825C45.3491 74.0896 46.0481 73.8614 46.564 73.5333C46.8279 73.3692 47.0514 73.1766 47.2131 72.9627C47.3771 72.7487 47.4936 72.5157 47.5293 72.2613L47.5839 71.9736C47.6148 71.8096 47.4437 71.6432 47.2035 71.6004L47.1988 71.6028Z" fill="#EA9047"/>
224
+ <path d="M48.1597 68.4243L47.7651 68.2697C47.0732 67.9963 46.3671 67.963 45.7632 68.1746C45.4661 68.2816 45.2022 68.448 44.9834 68.6644C44.7671 68.8807 44.6102 69.1518 44.5174 69.4537L44.4247 69.8008C44.3724 70.0005 44.5174 70.205 44.7528 70.2549L45.1641 70.3453C45.8892 70.5045 46.6096 70.419 47.1731 70.2002C47.4584 70.0909 47.7128 69.9458 47.9101 69.7675C48.1098 69.5892 48.2667 69.3848 48.3499 69.1399L48.4569 68.8665C48.5187 68.7096 48.3832 68.5122 48.1574 68.4219L48.1597 68.4243Z" fill="#EA9047"/>
225
+ <path d="M49.7009 65.4796L49.3467 65.2466C48.7285 64.8376 48.0462 64.6617 47.4209 64.7497C47.1118 64.7948 46.8265 64.9066 46.5722 65.0778C46.3201 65.2489 46.1181 65.4843 45.9706 65.7649L45.8137 66.0906C45.7234 66.2784 45.828 66.509 46.0467 66.6065L46.4295 66.7777C47.1047 67.0796 47.8203 67.1414 48.4076 67.0392C48.7071 66.9869 48.9805 66.8965 49.204 66.761C49.4299 66.6255 49.6248 66.4543 49.7508 66.2285L49.9054 65.9788C49.9933 65.8362 49.9006 65.6127 49.6985 65.4796H49.7009Z" fill="#EA9047"/>
226
+ <path d="M51.7528 62.8749L51.4532 62.573C50.9302 62.0404 50.3002 61.729 49.6725 61.6886C49.3658 61.6719 49.0639 61.7242 48.7833 61.8431C48.5076 61.962 48.2651 62.1546 48.0677 62.4018L47.8537 62.6919C47.7301 62.8583 47.7896 63.1079 47.9821 63.2482L48.3197 63.4954C48.9189 63.9305 49.6012 64.1374 50.1932 64.154C50.4927 64.1635 50.778 64.1302 51.0205 64.0399C51.2654 63.9519 51.4865 63.8212 51.653 63.6238C51.7171 63.5501 51.7861 63.4812 51.8503 63.4099C51.9644 63.2886 51.9168 63.0485 51.7457 62.8749H51.7528Z" fill="#EA9047"/>
227
+ <path d="M54.25 60.7143L54.017 60.353C53.6105 59.7206 53.0541 59.276 52.455 59.1143C52.1602 59.0358 51.8535 59.024 51.5587 59.0834C51.271 59.15 50.9929 59.2855 50.7551 59.4947L50.4912 59.7396C50.3391 59.8799 50.3486 60.139 50.5103 60.3173L50.7932 60.6311C51.2924 61.1851 51.9177 61.5274 52.4907 61.6653C53.0732 61.8056 53.6081 61.7485 54.0146 61.4371C54.0907 61.3753 54.1692 61.3182 54.2476 61.2635C54.3832 61.1661 54.3832 60.9188 54.2524 60.712L54.25 60.7143Z" fill="#EA9047"/>
228
+ <path d="M43.8293 77.4025C43.6486 77.4334 43.4917 77.3312 43.4774 77.1743C43.1303 73.4321 43.8317 69.5664 45.4484 66.1428C47.0508 62.7145 49.5899 59.7118 52.6925 57.5863C52.8233 57.4983 53.004 57.5554 53.0967 57.7123C53.1894 57.8692 53.1632 58.0642 53.0396 58.1474C50.0393 60.2015 47.5881 63.102 46.038 66.4162C44.476 69.728 43.7984 73.4654 44.1384 77.0792C44.1503 77.229 44.0147 77.374 43.834 77.4049L43.8293 77.4025Z" fill="#EA9047"/>
229
+ <path d="M63.0096 50.2266C63.5802 49.9746 63.9249 49.3517 63.8179 48.7621C63.5255 47.143 61.5498 46.5035 61.6449 45.7974C61.2098 45.2767 62.5103 43.5055 61.935 42.0124C61.7258 41.4704 61.1361 41.1851 60.5442 41.3396C58.9251 41.7628 58.1334 43.7646 57.4439 43.729C56.8924 44.2021 55.259 43.0657 53.7374 43.7575C53.1859 44.0071 52.8507 44.6158 52.9458 45.1888C53.212 46.7698 55.1259 47.4022 55.026 48.1012C55.4492 48.6194 54.163 50.3764 54.717 51.8813C54.9191 52.4305 55.5015 52.7301 56.0888 52.5851C57.7102 52.1856 58.5067 50.1648 59.2033 50.2076C59.7596 49.7321 61.4381 50.9137 63.0048 50.2219L63.0096 50.2266Z" fill="#FAFAFA"/>
230
+ <path d="M63.2842 57.0186C63.9213 57.0091 64.3303 56.2674 63.9831 55.7515C63.6622 55.2736 63.0845 55.0168 63.1201 54.7482C62.9537 54.5461 63.3032 53.9802 63.3293 53.3882C63.3579 52.7535 62.647 52.3945 62.1168 52.7725C61.6247 53.1243 61.3323 53.7187 61.0684 53.6997C60.8568 53.878 60.3195 53.5666 59.737 53.5784C59.1117 53.5927 58.7052 54.325 59.0451 54.8337C59.359 55.3069 59.9296 55.5636 59.8939 55.8323C60.0579 56.0344 59.7084 56.5978 59.6823 57.1898C59.6514 57.827 60.3575 58.1931 60.89 57.8175C61.3846 57.4656 61.677 56.8712 61.9433 56.8903C62.1549 56.712 62.6993 57.0305 63.2889 57.021L63.2842 57.0186Z" fill="#FAFAFA"/>
231
+ <path d="M66.8757 35.7199C66.8543 36.4188 67.3345 37.0322 68.0193 37.1796C70.3848 37.8905 72.7504 38.6014 75.1136 39.3098C78.8035 40.4178 82.5551 41.5352 85.8455 43.5988C89.1788 45.691 91.8082 48.7175 94.7397 51.3042C95.5171 51.9913 96.2945 52.676 97.0743 53.3631C97.4024 53.6912 97.9279 53.7126 98.2797 53.4106L99.6705 48.8411C114.011 15.8656 118.569 13.6688 123.809 18.0814C124.199 17.3753 120.897 14.8053 113.515 10.7279C113.515 10.7279 98.993 2.7063 98.9906 2.70393C95.0321 0.516652 90.1725 0.431063 86.1356 2.47093C83.6868 3.70722 82.2247 5.79702 80.753 8.02946C75.601 15.849 72.4366 24.8834 68.1738 33.1879C67.8623 33.7989 66.9018 35.0138 66.8804 35.7199H66.8757Z" fill="#1EBEE6"/>
232
+ <path d="M66.8683 85.1242C63.6112 90.5282 57.7055 90.7968 52.9696 87.9415C48.4857 85.2383 45.9893 80.305 48.4952 75.2054C48.7306 74.7251 49.3297 74.5515 49.7886 74.8273L53.8849 77.2975C54.2534 77.5186 54.4175 77.9704 54.2748 78.3769C53.7946 79.7416 54.2796 81.2703 56.2695 82.4685C58.5852 83.8641 60.3445 83.2507 61.2527 81.741C62.1633 80.2313 61.8851 78.3912 59.5695 76.9932L57.4393 75.7094C57.0066 75.4479 56.8687 74.8868 57.1278 74.4565L58.7397 71.7842C58.8443 71.613 59.0013 71.4799 59.1891 71.4062L64.196 69.4424C64.9021 69.1666 64.983 68.2013 64.3339 67.809L57.6841 63.8006C57.2514 63.5391 57.1135 62.978 57.3727 62.5477L59.6028 58.8484C59.8643 58.4157 60.4254 58.2778 60.8557 58.5369L75.0825 67.1148C75.5152 67.3763 75.6531 67.9374 75.3939 68.3678L73.2756 71.8817C73.171 72.0552 73.0117 72.1883 72.8239 72.262L66.8588 74.5848C66.3072 74.7988 66.1099 75.4669 66.4404 75.959C68.2877 78.7026 68.7227 82.0525 66.8659 85.1313L66.8683 85.1242Z" fill="#EA9047"/>
233
+
234
+ </svg>
235
+
236
+ <span class="position h2" part="position"><slot></slot></span>
237
+ </div>
238
+
239
+
240
+ </div>
241
+ `;
242
+ this.shadowRoot.appendChild(template.content.cloneNode(true));
243
+
244
+ // insert extra CSS
245
+ //if (!document.getElementById('rankGlobal'))
246
+ // document.head.insertAdjacentHTML('beforeend', `<style id="rankGlobal">${loadExtraCSS}</style>`);
247
+ }
248
+
249
+ connectedCallback(): void {
250
+
251
+
252
+ const position = this.hasAttribute('data-position') ? this.getAttribute('data-position') : this.textContent?.trim();
253
+
254
+ this.setAttribute('data-position', position);
255
+
256
+
257
+
258
+ trackComponent(this, 'iam-rank', ['select-card']);
259
+ }
260
+
261
+ }
262
+
263
+ export default iamRank;