@tanstack/query-devtools 5.0.0-alpha.84 → 5.0.0-alpha.87

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 (44) hide show
  1. package/build/Devtools/OYHFZDAP.jsx +6711 -0
  2. package/build/Devtools/QBS7PB6D.js +5885 -0
  3. package/build/Devtools/QPWQM7BG.js +6068 -0
  4. package/build/Devtools/RZF5MSB2.jsx +6637 -0
  5. package/build/chunk/DFC6JMPR.jsx +1280 -0
  6. package/build/chunk/LOJK4LQB.jsx +1280 -0
  7. package/{dist/esm/index-7c6d68e3.js → build/chunk/MZOCHHZD.js} +648 -416
  8. package/{dist/cjs/index-edbb2275.cjs → build/chunk/YHTPXJWR.js} +648 -446
  9. package/build/dev.cjs +8116 -0
  10. package/build/dev.js +99 -0
  11. package/build/dev.jsx +98 -0
  12. package/build/index.cjs +7940 -0
  13. package/build/index.d.cts +55 -0
  14. package/build/index.d.ts +55 -0
  15. package/build/index.js +99 -0
  16. package/build/index.jsx +98 -0
  17. package/package.json +24 -18
  18. package/src/Devtools.tsx +1 -3
  19. package/dist/cjs/Devtools-0f2840bd.cjs +0 -6766
  20. package/dist/cjs/Devtools-0f2840bd.cjs.map +0 -1
  21. package/dist/cjs/index-edbb2275.cjs.map +0 -1
  22. package/dist/cjs/index.cjs +0 -8
  23. package/dist/cjs/index.cjs.map +0 -1
  24. package/dist/esm/Devtools-26de9f2c.js +0 -6758
  25. package/dist/esm/Devtools-26de9f2c.js.map +0 -1
  26. package/dist/esm/index-7c6d68e3.js.map +0 -1
  27. package/dist/esm/index.js +0 -2
  28. package/dist/esm/index.js.map +0 -1
  29. package/dist/source/Context.js +0 -10
  30. package/dist/source/Devtools.jsx +0 -1512
  31. package/dist/source/Explorer.jsx +0 -264
  32. package/dist/source/fonts.js +0 -7
  33. package/dist/source/icons/index.jsx +0 -344
  34. package/dist/source/index.jsx +0 -88
  35. package/dist/source/theme.js +0 -304
  36. package/dist/source/utils.jsx +0 -77
  37. package/dist/types/Context.d.ts +0 -28
  38. package/dist/types/Devtools.d.ts +0 -22
  39. package/dist/types/Explorer.d.ts +0 -21
  40. package/dist/types/fonts.d.ts +0 -1
  41. package/dist/types/icons/index.d.ts +0 -11
  42. package/dist/types/index.d.ts +0 -29
  43. package/dist/types/theme.d.ts +0 -296
  44. package/dist/types/utils.d.ts +0 -23
@@ -1,264 +0,0 @@
1
- import { stringify } from 'superjson';
2
- import { css, cx } from '@emotion/css';
3
- import { Index, Match, Show, Switch, createMemo, createSignal } from 'solid-js';
4
- import { Key } from '@solid-primitives/keyed';
5
- import { tokens } from './theme';
6
- import { displayValue } from './utils';
7
- import { CopiedCopier, Copier, ErrorCopier } from './icons';
8
- /**
9
- * Chunk elements in the array by size
10
- *
11
- * when the array cannot be chunked evenly by size, the last chunk will be
12
- * filled with the remaining elements
13
- *
14
- * @example
15
- * chunkArray(['a','b', 'c', 'd', 'e'], 2) // returns [['a','b'], ['c', 'd'], ['e']]
16
- */
17
- export function chunkArray(array, size) {
18
- if (size < 1)
19
- return [];
20
- let i = 0;
21
- const result = [];
22
- while (i < array.length) {
23
- result.push(array.slice(i, i + size));
24
- i = i + size;
25
- }
26
- return result;
27
- }
28
- const Expander = (props) => {
29
- const styles = getStyles();
30
- return (<span class={cx(styles.expander, css `
31
- transform: rotate(${props.expanded ? 90 : 0}deg);
32
- `)}>
33
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
34
- <path d="M6 12L10 8L6 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
35
- </svg>
36
- </span>);
37
- };
38
- const CopyButton = (props) => {
39
- const styles = getStyles();
40
- const [copyState, setCopyState] = createSignal('NoCopy');
41
- return (<button class={styles.copyButton} aria-label={`${copyState() === 'NoCopy'
42
- ? 'Copy object to clipboard'
43
- : copyState() === 'SuccessCopy'
44
- ? 'Object copied to clipboard'
45
- : 'Error copying object to clipboard'}`} onClick={copyState() === 'NoCopy'
46
- ? () => {
47
- navigator.clipboard.writeText(stringify(props.value)).then(() => {
48
- setCopyState('SuccessCopy');
49
- setTimeout(() => {
50
- setCopyState('NoCopy');
51
- }, 1500);
52
- }, (err) => {
53
- console.error('Failed to copy: ', err);
54
- setCopyState('ErrorCopy');
55
- setTimeout(() => {
56
- setCopyState('NoCopy');
57
- }, 1500);
58
- });
59
- }
60
- : undefined}>
61
- <Switch>
62
- <Match when={copyState() === 'NoCopy'}>
63
- <Copier />
64
- </Match>
65
- <Match when={copyState() === 'SuccessCopy'}>
66
- <CopiedCopier />
67
- </Match>
68
- <Match when={copyState() === 'ErrorCopy'}>
69
- <ErrorCopier />
70
- </Match>
71
- </Switch>
72
- </button>);
73
- };
74
- function isIterable(x) {
75
- return Symbol.iterator in x;
76
- }
77
- export default function Explorer(props) {
78
- const styles = getStyles();
79
- const [expanded, setExpanded] = createSignal((props.defaultExpanded || []).includes(props.label));
80
- const toggleExpanded = () => setExpanded((old) => !old);
81
- const [expandedPages, setExpandedPages] = createSignal([]);
82
- const subEntries = createMemo(() => {
83
- if (Array.isArray(props.value)) {
84
- return props.value.map((d, i) => ({
85
- label: i.toString(),
86
- value: d,
87
- }));
88
- }
89
- else if (props.value !== null &&
90
- typeof props.value === 'object' &&
91
- isIterable(props.value) &&
92
- typeof props.value[Symbol.iterator] === 'function') {
93
- if (props.value instanceof Map) {
94
- return Array.from(props.value, ([key, val]) => ({
95
- label: key,
96
- value: val,
97
- }));
98
- }
99
- return Array.from(props.value, (val, i) => ({
100
- label: i.toString(),
101
- value: val,
102
- }));
103
- }
104
- else if (typeof props.value === 'object' && props.value !== null) {
105
- return Object.entries(props.value).map(([key, val]) => ({
106
- label: key,
107
- value: val,
108
- }));
109
- }
110
- return [];
111
- });
112
- const type = createMemo(() => {
113
- if (Array.isArray(props.value)) {
114
- return 'array';
115
- }
116
- else if (props.value !== null &&
117
- typeof props.value === 'object' &&
118
- isIterable(props.value) &&
119
- typeof props.value[Symbol.iterator] === 'function') {
120
- return 'Iterable';
121
- }
122
- else if (typeof props.value === 'object' && props.value !== null) {
123
- return 'object';
124
- }
125
- return typeof props.value;
126
- });
127
- const subEntryPages = createMemo(() => chunkArray(subEntries(), 100));
128
- return (<div class={styles.entry}>
129
- <Show when={subEntryPages().length}>
130
- <button class={styles.expanderButton} onClick={() => toggleExpanded()}>
131
- <Expander expanded={expanded()}/> <span>{props.label}</span>{' '}
132
- <span class={styles.info}>
133
- {String(type()).toLowerCase() === 'iterable' ? '(Iterable) ' : ''}
134
- {subEntries().length} {subEntries().length > 1 ? `items` : `item`}
135
- </span>
136
- </button>
137
- <Show when={props.copyable}>
138
- <CopyButton value={props.value}/>
139
- </Show>
140
- <Show when={expanded()}>
141
- <Show when={subEntryPages().length === 1}>
142
- <div class={styles.subEntry}>
143
- <Key each={subEntries()} by={(item) => item.label}>
144
- {(entry) => {
145
- return (<Explorer defaultExpanded={props.defaultExpanded} label={entry().label} value={entry().value} copyable={props.copyable}/>);
146
- }}
147
- </Key>
148
- </div>
149
- </Show>
150
- <Show when={subEntryPages().length > 1}>
151
- <div class={styles.subEntry}>
152
- <Index each={subEntryPages()}>
153
- {(entries, index) => (<div>
154
- <div class={styles.entry}>
155
- <button onClick={() => setExpandedPages((old) => old.includes(index)
156
- ? old.filter((d) => d !== index)
157
- : [...old, index])} class={styles.expanderButton}>
158
- <Expander expanded={expandedPages().includes(index)}/>{' '}
159
- [{index * 100}...
160
- {index * 100 + 100 - 1}]
161
- </button>
162
- <Show when={expandedPages().includes(index)}>
163
- <div class={styles.subEntry}>
164
- <Key each={entries()} by={(entry) => entry.label}>
165
- {(entry) => (<Explorer defaultExpanded={props.defaultExpanded} label={entry().label} value={entry().value} copyable={props.copyable}/>)}
166
- </Key>
167
- </div>
168
- </Show>
169
- </div>
170
- </div>)}
171
- </Index>
172
- </div>
173
- </Show>
174
- </Show>
175
- </Show>
176
- <Show when={subEntryPages().length === 0}>
177
- <span class={styles.label}>{props.label}:</span>{' '}
178
- <span class={styles.value}>{displayValue(props.value)}</span>
179
- </Show>
180
- </div>);
181
- }
182
- const getStyles = () => {
183
- const { colors, font, size, border } = tokens;
184
- return {
185
- entry: css `
186
- & * {
187
- font-size: ${font.size.sm};
188
- font-family: 'Menlo', 'Fira Code', monospace;
189
- line-height: 1.7;
190
- }
191
- position: relative;
192
- outline: none;
193
- word-break: break-word;
194
- `,
195
- subEntry: css `
196
- margin: 0 0 0 0.5em;
197
- padding-left: 0.75em;
198
- border-left: 2px solid ${colors.darkGray[400]};
199
- `,
200
- expander: css `
201
- & path {
202
- stroke: ${colors.gray[400]};
203
- }
204
- display: inline-flex;
205
- align-items: center;
206
- transition: all 0.1s ease;
207
- `,
208
- expanderButton: css `
209
- cursor: pointer;
210
- color: inherit;
211
- font: inherit;
212
- outline: inherit;
213
- line-height: ${font.size.sm};
214
- background: transparent;
215
- border: none;
216
- padding: 0;
217
- display: inline-flex;
218
- align-items: center;
219
- gap: ${size[1]};
220
-
221
- &:focus-visible {
222
- border-radius: ${border.radius.xs};
223
- outline: 2px solid ${colors.blue[800]};
224
- }
225
- `,
226
- info: css `
227
- color: ${colors.gray[500]};
228
- font-size: ${font.size.xs};
229
- line-height: ${font.size.xs};
230
- margin-left: ${size[1]};
231
- `,
232
- label: css `
233
- color: ${colors.gray[300]};
234
- `,
235
- value: css `
236
- color: ${colors.purple[400]};
237
- `,
238
- copyButton: css `
239
- background-color: transparent;
240
- border: none;
241
- display: inline-flex;
242
- padding: 0px;
243
- align-items: center;
244
- justify-content: center;
245
- cursor: pointer;
246
- width: ${size[3.5]};
247
- height: ${size[3.5]};
248
- position: relative;
249
- top: 4px;
250
- left: ${size[2]};
251
- z-index: 1;
252
-
253
- &:hover svg .copier {
254
- stroke: ${colors.gray[500]} !important;
255
- }
256
-
257
- &:focus-visible {
258
- border-radius: ${border.radius.xs};
259
- outline: 2px solid ${colors.blue[800]};
260
- outline-offset: 2px;
261
- }
262
- `,
263
- };
264
- };
@@ -1,7 +0,0 @@
1
- export const loadFonts = () => {
2
- const link = document.createElement('link');
3
- link.href =
4
- 'https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto&display=swap';
5
- link.rel = 'stylesheet';
6
- document.head.appendChild(link);
7
- };
@@ -1,344 +0,0 @@
1
- import { tokens } from '../theme';
2
- export function Search() {
3
- return (<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
4
- <path d="M13 13L9.00007 9M10.3333 5.66667C10.3333 8.244 8.244 10.3333 5.66667 10.3333C3.08934 10.3333 1 8.244 1 5.66667C1 3.08934 3.08934 1 5.66667 1C8.244 1 10.3333 3.08934 10.3333 5.66667Z" stroke="#98A2B3" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
5
- </svg>);
6
- }
7
- export function ChevronDown() {
8
- return (<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
9
- <path d="M1 1L5 5L9 1" stroke="#98A2B3" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
10
- </svg>);
11
- }
12
- export function ArrowUp() {
13
- return (<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
14
- <path d="M8 13.3333V2.66667M8 2.66667L4 6.66667M8 2.66667L12 6.66667" stroke="#98A2B3" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
15
- </svg>);
16
- }
17
- export function ArrowDown() {
18
- return (<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
19
- <path d="M8 2.66667V13.3333M8 13.3333L4 9.33333M8 13.3333L12 9.33333" stroke="#98A2B3" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
20
- </svg>);
21
- }
22
- export function Wifi() {
23
- return (<svg stroke="#98A2B3" fill="#98A2B3" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
24
- <path fill="none" d="M0 0h24v24H0z"></path>
25
- <path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3a4.237 4.237 0 00-6 0zm-4-4l2 2a7.074 7.074 0 0110 0l2-2C15.14 9.14 8.87 9.14 5 13z"></path>
26
- </svg>);
27
- }
28
- export function Offline() {
29
- return (<svg stroke={tokens.colors.yellow[500]} fill={tokens.colors.yellow[500]} stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
30
- <path fill="none" d="M24 .01c0-.01 0-.01 0 0L0 0v24h24V.01zM0 0h24v24H0V0zm0 0h24v24H0V0z"></path>
31
- <path d="M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4a9.793 9.793 0 00-4.49-2.56l3.53 3.53.96-.97zM2 3.05L5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24A9.684 9.684 0 005 13v.01L6.99 15a7.042 7.042 0 014.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3a4.237 4.237 0 00-6 0z"></path>
32
- </svg>);
33
- }
34
- export function Settings() {
35
- return (<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
36
- <path d="M9.3951 19.3711L9.97955 20.6856C10.1533 21.0768 10.4368 21.4093 10.7958 21.6426C11.1547 21.8759 11.5737 22.0001 12.0018 22C12.4299 22.0001 12.8488 21.8759 13.2078 21.6426C13.5667 21.4093 13.8503 21.0768 14.024 20.6856L14.6084 19.3711C14.8165 18.9047 15.1664 18.5159 15.6084 18.26C16.0532 18.0034 16.5678 17.8941 17.0784 17.9478L18.5084 18.1C18.9341 18.145 19.3637 18.0656 19.7451 17.8713C20.1265 17.6771 20.4434 17.3763 20.6573 17.0056C20.8715 16.635 20.9735 16.2103 20.9511 15.7829C20.9286 15.3555 20.7825 14.9438 20.5307 14.5978L19.684 13.4344C19.3825 13.0171 19.2214 12.5148 19.224 12C19.2239 11.4866 19.3865 10.9864 19.6884 10.5711L20.5351 9.40778C20.787 9.06175 20.933 8.65007 20.9555 8.22267C20.978 7.79528 20.8759 7.37054 20.6618 7C20.4479 6.62923 20.131 6.32849 19.7496 6.13423C19.3681 5.93997 18.9386 5.86053 18.5129 5.90556L17.0829 6.05778C16.5722 6.11141 16.0577 6.00212 15.6129 5.74556C15.17 5.48825 14.82 5.09736 14.6129 4.62889L14.024 3.31444C13.8503 2.92317 13.5667 2.59072 13.2078 2.3574C12.8488 2.12408 12.4299 1.99993 12.0018 2C11.5737 1.99993 11.1547 2.12408 10.7958 2.3574C10.4368 2.59072 10.1533 2.92317 9.97955 3.31444L9.3951 4.62889C9.18803 5.09736 8.83798 5.48825 8.3951 5.74556C7.95032 6.00212 7.43577 6.11141 6.9251 6.05778L5.49066 5.90556C5.06499 5.86053 4.6354 5.93997 4.25397 6.13423C3.87255 6.32849 3.55567 6.62923 3.34177 7C3.12759 7.37054 3.02555 7.79528 3.04804 8.22267C3.07052 8.65007 3.21656 9.06175 3.46844 9.40778L4.3151 10.5711C4.61704 10.9864 4.77964 11.4866 4.77955 12C4.77964 12.5134 4.61704 13.0137 4.3151 13.4289L3.46844 14.5922C3.21656 14.9382 3.07052 15.3499 3.04804 15.7773C3.02555 16.2047 3.12759 16.6295 3.34177 17C3.55589 17.3706 3.8728 17.6712 4.25417 17.8654C4.63554 18.0596 5.06502 18.1392 5.49066 18.0944L6.92066 17.9422C7.43133 17.8886 7.94587 17.9979 8.39066 18.2544C8.83519 18.511 9.18687 18.902 9.3951 19.3711Z" stroke="#98A2B3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
37
- <path d="M12 15C13.6568 15 15 13.6569 15 12C15 10.3431 13.6568 9 12 9C10.3431 9 8.99998 10.3431 8.99998 12C8.99998 13.6569 10.3431 15 12 15Z" stroke="#98A2B3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
38
- </svg>);
39
- }
40
- export function Copier() {
41
- return (<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
42
- <path class="copier" d="M8 8V5.2C8 4.0799 8 3.51984 8.21799 3.09202C8.40973 2.71569 8.71569 2.40973 9.09202 2.21799C9.51984 2 10.0799 2 11.2 2H18.8C19.9201 2 20.4802 2 20.908 2.21799C21.2843 2.40973 21.5903 2.71569 21.782 3.09202C22 3.51984 22 4.0799 22 5.2V12.8C22 13.9201 22 14.4802 21.782 14.908C21.5903 15.2843 21.2843 15.5903 20.908 15.782C20.4802 16 19.9201 16 18.8 16H16M5.2 22H12.8C13.9201 22 14.4802 22 14.908 21.782C15.2843 21.5903 15.5903 21.2843 15.782 20.908C16 20.4802 16 19.9201 16 18.8V11.2C16 10.0799 16 9.51984 15.782 9.09202C15.5903 8.71569 15.2843 8.40973 14.908 8.21799C14.4802 8 13.9201 8 12.8 8H5.2C4.0799 8 3.51984 8 3.09202 8.21799C2.71569 8.40973 2.40973 8.71569 2.21799 9.09202C2 9.51984 2 10.0799 2 11.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="#98A2B3"/>
43
- </svg>);
44
- }
45
- export function CopiedCopier() {
46
- return (<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
47
- <path d="M7.5 12L10.5 15L16.5 9M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke="#12B76A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
48
- </svg>);
49
- }
50
- export function ErrorCopier() {
51
- return (<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
52
- <path d="M9 9L15 15M15 9L9 15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke="#F04438" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
53
- </svg>);
54
- }
55
- export function TanstackLogo() {
56
- return (<svg version="1.0" viewBox="0 0 633 633">
57
- <linearGradient id="a" x1="-666.45" x2="-666.45" y1="163.28" y2="163.99" gradientTransform="matrix(633 0 0 633 422177 -103358)" gradientUnits="userSpaceOnUse">
58
- <stop stop-color="#6BDAFF" offset="0"/>
59
- <stop stop-color="#F9FFB5" offset=".32"/>
60
- <stop stop-color="#FFA770" offset=".71"/>
61
- <stop stop-color="#FF7373" offset="1"/>
62
- </linearGradient>
63
- <circle cx="316.5" cy="316.5" r="316.5" fill="url(#a)"/>
64
-
65
- <defs>
66
- <filter id="am" x="-137.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse">
67
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
68
- </filter>
69
- </defs>
70
-
71
- <mask id="b" x="-137.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse">
72
- <g filter="url(#am)">
73
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
74
- </g>
75
- </mask>
76
- <g mask="url(#b)">
77
- <ellipse cx="89.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"/>
78
- </g>
79
- <defs>
80
- <filter id="ah" x="316.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse">
81
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
82
- </filter>
83
- </defs>
84
-
85
- <mask id="k" x="316.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse">
86
- <g filter="url(#ah)">
87
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
88
- </g>
89
- </mask>
90
- <g mask="url(#k)">
91
- <ellipse cx="543.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"/>
92
- </g>
93
- <defs>
94
- <filter id="ae" x="-137.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse">
95
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
96
- </filter>
97
- </defs>
98
-
99
- <mask id="j" x="-137.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse">
100
- <g filter="url(#ae)">
101
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
102
- </g>
103
- </mask>
104
- <g mask="url(#j)">
105
- <ellipse cx="89.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"/>
106
- </g>
107
- <defs>
108
- <filter id="ai" x="316.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse">
109
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
110
- </filter>
111
- </defs>
112
-
113
- <mask id="i" x="316.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse">
114
- <g filter="url(#ai)">
115
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
116
- </g>
117
- </mask>
118
- <g mask="url(#i)">
119
- <ellipse cx="543.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"/>
120
- </g>
121
- <defs>
122
- <filter id="aj" x="-137.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse">
123
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
124
- </filter>
125
- </defs>
126
-
127
- <mask id="h" x="-137.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse">
128
- <g filter="url(#aj)">
129
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
130
- </g>
131
- </mask>
132
- <g mask="url(#h)">
133
- <ellipse cx="89.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"/>
134
- </g>
135
- <defs>
136
- <filter id="ag" x="316.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse">
137
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
138
- </filter>
139
- </defs>
140
-
141
- <mask id="g" x="316.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse">
142
- <g filter="url(#ag)">
143
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
144
- </g>
145
- </mask>
146
- <g mask="url(#g)">
147
- <ellipse cx="543.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"/>
148
- </g>
149
- <defs>
150
- <filter id="af" x="272.2" y="308" width="176.9" height="129.3" filterUnits="userSpaceOnUse">
151
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
152
- </filter>
153
- </defs>
154
-
155
- <mask id="f" x="272.2" y="308" width="176.9" height="129.3" maskUnits="userSpaceOnUse">
156
- <g filter="url(#af)">
157
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
158
- </g>
159
- </mask>
160
- <g mask="url(#f)">
161
- <line x1="436" x2="431" y1="403.2" y2="431.8" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"/>
162
-
163
- <line x1="291" x2="280" y1="341.5" y2="403.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"/>
164
-
165
- <line x1="332.9" x2="328.6" y1="384.1" y2="411.2" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"/>
166
-
167
- <linearGradient id="m" x1="-670.75" x2="-671.59" y1="164.4" y2="164.49" gradientTransform="matrix(-184.16 -32.472 -11.461 64.997 -121359 -32126)" gradientUnits="userSpaceOnUse">
168
- <stop stop-color="#EE2700" offset="0"/>
169
- <stop stop-color="#FF008E" offset="1"/>
170
- </linearGradient>
171
-
172
- <path d="m344.1 363 97.7 17.2c5.8 2.1 8.2 6.1 7.1 12.1s-4.7 9.2-11 9.9l-106-18.7-57.5-59.2c-3.2-4.8-2.9-9.1 0.8-12.8s8.3-4.4 13.7-2.1l55.2 53.6z" clip-rule="evenodd" fill="url(#m)" fill-rule="evenodd"/>
173
-
174
- <line x1="428.2" x2="429.1" y1="384.5" y2="378" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"/>
175
-
176
- <line x1="395.2" x2="396.1" y1="379.5" y2="373" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"/>
177
-
178
- <line x1="362.2" x2="363.1" y1="373.5" y2="367.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"/>
179
-
180
- <line x1="324.2" x2="328.4" y1="351.3" y2="347.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"/>
181
-
182
- <line x1="303.2" x2="307.4" y1="331.3" y2="327.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"/>
183
- </g>
184
- <defs>
185
- <filter id="ak" x="73.2" y="113.8" width="280.6" height="317.4" filterUnits="userSpaceOnUse">
186
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
187
- </filter>
188
- </defs>
189
-
190
- <mask id="e" x="73.2" y="113.8" width="280.6" height="317.4" maskUnits="userSpaceOnUse">
191
- <g filter="url(#ak)">
192
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
193
- </g>
194
- </mask>
195
- <g mask="url(#e)">
196
- <linearGradient id="n" x1="-672.16" x2="-672.16" y1="165.03" y2="166.03" gradientTransform="matrix(-100.18 48.861 97.976 200.88 -83342 -93.059)" gradientUnits="userSpaceOnUse">
197
- <stop stop-color="#A17500" offset="0"/>
198
- <stop stop-color="#5D2100" offset="1"/>
199
- </linearGradient>
200
-
201
- <path d="m192.3 203c8.1 37.3 14 73.6 17.8 109.1 3.8 35.4 2.8 75.1-3 119.2l61.2-16.7c-15.6-59-25.2-97.9-28.6-116.6s-10.8-51.9-22.1-99.6l-25.3 4.6" clip-rule="evenodd" fill="url(#n)" fill-rule="evenodd"/>
202
- <g stroke="#2F8A00">
203
- <linearGradient id="r" x1="-660.23" x2="-660.23" y1="166.72" y2="167.72" gradientTransform="matrix(92.683 4.8573 -2.0259 38.657 61680 -3088.6)" gradientUnits="userSpaceOnUse">
204
- <stop stop-color="#2F8A00" offset="0"/>
205
- <stop stop-color="#90FF57" offset="1"/>
206
- </linearGradient>
207
-
208
- <path d="m195 183.9s-12.6-22.1-36.5-29.9c-15.9-5.2-34.4-1.5-55.5 11.1 15.9 14.3 29.5 22.6 40.7 24.9 16.8 3.6 51.3-6.1 51.3-6.1z" clip-rule="evenodd" fill="url(#r)" fill-rule="evenodd" stroke-width="13"/>
209
-
210
- <linearGradient id="s" x1="-661.36" x2="-661.36" y1="164.18" y2="165.18" gradientTransform="matrix(110 5.7648 -6.3599 121.35 73933 -15933)" gradientUnits="userSpaceOnUse">
211
- <stop stop-color="#2F8A00" offset="0"/>
212
- <stop stop-color="#90FF57" offset="1"/>
213
- </linearGradient>
214
-
215
- <path d="m194.9 184.5s-47.5-8.5-83.2 15.7c-23.8 16.2-34.3 49.3-31.6 99.4 30.3-27.8 52.1-48.5 65.2-61.9 19.8-20.2 49.6-53.2 49.6-53.2z" clip-rule="evenodd" fill="url(#s)" fill-rule="evenodd" stroke-width="13"/>
216
-
217
- <linearGradient id="q" x1="-656.79" x2="-656.79" y1="165.15" y2="166.15" gradientTransform="matrix(62.954 3.2993 -3.5023 66.828 42156 -8754.1)" gradientUnits="userSpaceOnUse">
218
- <stop stop-color="#2F8A00" offset="0"/>
219
- <stop stop-color="#90FF57" offset="1"/>
220
- </linearGradient>
221
-
222
- <path d="m195 183.9c-0.8-21.9 6-38 20.6-48.2s29.8-15.4 45.5-15.3c-6.1 21.4-14.5 35.8-25.2 43.4s-24.4 14.2-40.9 20.1z" clip-rule="evenodd" fill="url(#q)" fill-rule="evenodd" stroke-width="13"/>
223
-
224
- <linearGradient id="p" x1="-663.07" x2="-663.07" y1="165.44" y2="166.44" gradientTransform="matrix(152.47 7.9907 -3.0936 59.029 101884 -4318.7)" gradientUnits="userSpaceOnUse">
225
- <stop stop-color="#2F8A00" offset="0"/>
226
- <stop stop-color="#90FF57" offset="1"/>
227
- </linearGradient>
228
-
229
- <path d="m194.9 184.5c31.9-30 64.1-39.7 96.7-29s50.8 30.4 54.6 59.1c-35.2-5.5-60.4-9.6-75.8-12.1-15.3-2.6-40.5-8.6-75.5-18z" clip-rule="evenodd" fill="url(#p)" fill-rule="evenodd" stroke-width="13"/>
230
-
231
- <linearGradient id="o" x1="-662.57" x2="-662.57" y1="164.44" y2="165.44" gradientTransform="matrix(136.46 7.1517 -5.2163 99.533 91536 -11442)" gradientUnits="userSpaceOnUse">
232
- <stop stop-color="#2F8A00" offset="0"/>
233
- <stop stop-color="#90FF57" offset="1"/>
234
- </linearGradient>
235
-
236
- <path d="m194.9 184.5c35.8-7.6 65.6-0.2 89.2 22s37.7 49 42.3 80.3c-39.8-9.7-68.3-23.8-85.5-42.4s-32.5-38.5-46-59.9z" clip-rule="evenodd" fill="url(#o)" fill-rule="evenodd" stroke-width="13"/>
237
-
238
- <linearGradient id="l" x1="-656.43" x2="-656.43" y1="163.86" y2="164.86" gradientTransform="matrix(60.866 3.1899 -8.7773 167.48 41560 -25168)" gradientUnits="userSpaceOnUse">
239
- <stop stop-color="#2F8A00" offset="0"/>
240
- <stop stop-color="#90FF57" offset="1"/>
241
- </linearGradient>
242
-
243
- <path d="m194.9 184.5c-33.6 13.8-53.6 35.7-60.1 65.6s-3.6 63.1 8.7 99.6c27.4-40.3 43.2-69.6 47.4-88s5.6-44.1 4-77.2z" clip-rule="evenodd" fill="url(#l)" fill-rule="evenodd" stroke-width="13"/>
244
- <path d="m196.5 182.3c-14.8 21.6-25.1 41.4-30.8 59.4s-9.5 33-11.1 45.1" fill="none" stroke-linecap="round" stroke-width="8"/>
245
- <path d="m194.9 185.7c-24.4 1.7-43.8 9-58.1 21.8s-24.7 25.4-31.3 37.8" fill="none" stroke-linecap="round" stroke-width="8"/>
246
- <path d="m204.5 176.4c29.7-6.7 52-8.4 67-5.1s26.9 8.6 35.8 15.9" fill="none" stroke-linecap="round" stroke-width="8"/>
247
- <path d="m196.5 181.4c20.3 9.9 38.2 20.5 53.9 31.9s27.4 22.1 35.1 32" fill="none" stroke-linecap="round" stroke-width="8"/>
248
- </g>
249
- </g>
250
- <defs>
251
- <filter id="al" x="50.5" y="399" width="532" height="633" filterUnits="userSpaceOnUse">
252
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
253
- </filter>
254
- </defs>
255
-
256
- <mask id="d" x="50.5" y="399" width="532" height="633" maskUnits="userSpaceOnUse">
257
- <g filter="url(#al)">
258
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
259
- </g>
260
- </mask>
261
- <g mask="url(#d)">
262
- <linearGradient id="u" x1="-666.06" x2="-666.23" y1="163.36" y2="163.75" gradientTransform="matrix(532 0 0 633 354760 -102959)" gradientUnits="userSpaceOnUse">
263
- <stop stop-color="#FFF400" offset="0"/>
264
- <stop stop-color="#3C8700" offset="1"/>
265
- </linearGradient>
266
-
267
- <ellipse cx="316.5" cy="715.5" rx="266" ry="316.5" fill="url(#u)"/>
268
- </g>
269
- <defs>
270
- <filter id="ad" x="391" y="-24" width="288" height="283" filterUnits="userSpaceOnUse">
271
- <feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
272
- </filter>
273
- </defs>
274
-
275
- <mask id="c" x="391" y="-24" width="288" height="283" maskUnits="userSpaceOnUse">
276
- <g filter="url(#ad)">
277
- <circle cx="316.5" cy="316.5" r="316.5" fill="#fff"/>
278
- </g>
279
- </mask>
280
- <g mask="url(#c)">
281
- <linearGradient id="t" x1="-664.56" x2="-664.56" y1="163.79" y2="164.79" gradientTransform="matrix(227 0 0 227 151421 -37204)" gradientUnits="userSpaceOnUse">
282
- <stop stop-color="#FFDF00" offset="0"/>
283
- <stop stop-color="#FF9D00" offset="1"/>
284
- </linearGradient>
285
- <circle cx="565.5" cy="89.5" r="113.5" fill="url(#t)"/>
286
-
287
- <linearGradient id="v" x1="-644.5" x2="-645.77" y1="342" y2="342" gradientTransform="matrix(30 0 0 1 19770 -253)" gradientUnits="userSpaceOnUse">
288
- <stop stop-color="#FFA400" offset="0"/>
289
- <stop stop-color="#FF5E00" offset="1"/>
290
- </linearGradient>
291
-
292
- <line x1="427" x2="397" y1="89" y2="89" fill="none" stroke="url(#v)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
293
-
294
- <linearGradient id="aa" x1="-641.56" x2="-642.83" y1="196.02" y2="196.07" gradientTransform="matrix(26.5 0 0 5.5 17439 -1025.5)" gradientUnits="userSpaceOnUse">
295
- <stop stop-color="#FFA400" offset="0"/>
296
- <stop stop-color="#FF5E00" offset="1"/>
297
- </linearGradient>
298
-
299
- <line x1="430.5" x2="404" y1="55.5" y2="50" fill="none" stroke="url(#aa)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
300
-
301
- <linearGradient id="w" x1="-643.73" x2="-645" y1="185.83" y2="185.9" gradientTransform="matrix(29 0 0 8 19107 -1361)" gradientUnits="userSpaceOnUse">
302
- <stop stop-color="#FFA400" offset="0"/>
303
- <stop stop-color="#FF5E00" offset="1"/>
304
- </linearGradient>
305
-
306
- <line x1="431" x2="402" y1="122" y2="130" fill="none" stroke="url(#w)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
307
-
308
- <linearGradient id="ac" x1="-638.94" x2="-640.22" y1="177.09" y2="177.39" gradientTransform="matrix(24 0 0 13 15783 -2145)" gradientUnits="userSpaceOnUse">
309
- <stop stop-color="#FFA400" offset="0"/>
310
- <stop stop-color="#FF5E00" offset="1"/>
311
- </linearGradient>
312
-
313
- <line x1="442" x2="418" y1="153" y2="166" fill="none" stroke="url(#ac)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
314
-
315
- <linearGradient id="ab" x1="-633.42" x2="-634.7" y1="172.41" y2="173.31" gradientTransform="matrix(20 0 0 19 13137 -3096)" gradientUnits="userSpaceOnUse">
316
- <stop stop-color="#FFA400" offset="0"/>
317
- <stop stop-color="#FF5E00" offset="1"/>
318
- </linearGradient>
319
-
320
- <line x1="464" x2="444" y1="180" y2="199" fill="none" stroke="url(#ab)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
321
-
322
- <linearGradient id="y" x1="-619.05" x2="-619.52" y1="170.82" y2="171.82" gradientTransform="matrix(13.83 0 0 22.85 9050 -3703.4)" gradientUnits="userSpaceOnUse">
323
- <stop stop-color="#FFA400" offset="0"/>
324
- <stop stop-color="#FF5E00" offset="1"/>
325
- </linearGradient>
326
-
327
- <line x1="491.4" x2="477.5" y1="203" y2="225.9" fill="none" stroke="url(#y)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
328
-
329
- <linearGradient id="x" x1="-578.5" x2="-578.63" y1="170.31" y2="171.31" gradientTransform="matrix(7.5 0 0 24.5 4860 -3953)" gradientUnits="userSpaceOnUse">
330
- <stop stop-color="#FFA400" offset="0"/>
331
- <stop stop-color="#FF5E00" offset="1"/>
332
- </linearGradient>
333
-
334
- <line x1="524.5" x2="517" y1="219.5" y2="244" fill="none" stroke="url(#x)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
335
-
336
- <linearGradient id="z" x1="666.5" x2="666.5" y1="170.31" y2="171.31" gradientTransform="matrix(.5 0 0 24.5 231.5 -3944)" gradientUnits="userSpaceOnUse">
337
- <stop stop-color="#FFA400" offset="0"/>
338
- <stop stop-color="#FF5E00" offset="1"/>
339
- </linearGradient>
340
-
341
- <line x1="564.5" x2="565" y1="228.5" y2="253" fill="none" stroke="url(#z)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"/>
342
- </g>
343
- </svg>);
344
- }