mixinv2 0.2.0.post29.dev0__tar.gz

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.
@@ -0,0 +1,240 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ **/docs/_build/
73
+ **/docs/api/
74
+
75
+ # PyBuilder
76
+ .pybuilder/
77
+ target/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+ .jupyter_ystore.db
82
+
83
+ # IPython
84
+ profile_default/
85
+ ipython_config.py
86
+
87
+ # pyenv
88
+ # For a library or package, you might want to ignore these files since the code is
89
+ # intended to run in multiple environments; otherwise, check them in:
90
+ # .python-version
91
+
92
+ # pipenv
93
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
95
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
96
+ # install all needed dependencies.
97
+ #Pipfile.lock
98
+
99
+ # UV
100
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
101
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
102
+ # commonly ignored for libraries.
103
+ #uv.lock
104
+
105
+ # poetry
106
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
107
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108
+ # commonly ignored for libraries.
109
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
110
+ #poetry.lock
111
+ #poetry.toml
112
+
113
+ # pdm
114
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
116
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
117
+ #pdm.lock
118
+ #pdm.toml
119
+ .pdm-python
120
+ .pdm-build/
121
+
122
+ # pixi
123
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
124
+ #pixi.lock
125
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
126
+ # in the .venv directory. It is recommended not to include this directory in version control.
127
+ .pixi
128
+
129
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
130
+ __pypackages__/
131
+
132
+ # Celery stuff
133
+ celerybeat-schedule
134
+ celerybeat.pid
135
+
136
+ # SageMath parsed files
137
+ *.sage.py
138
+
139
+ # Environments
140
+ .env
141
+ .venv
142
+ env/
143
+ venv/
144
+ ENV/
145
+ env.bak/
146
+ venv.bak/
147
+
148
+ # Spyder project settings
149
+ .spyderproject
150
+ .spyproject
151
+
152
+ # Rope project settings
153
+ .ropeproject
154
+
155
+ # mkdocs documentation
156
+ /site
157
+
158
+ # mypy
159
+ .mypy_cache/
160
+ .dmypy.json
161
+ dmypy.json
162
+
163
+ # Pyre type checker
164
+ .pyre/
165
+
166
+ # pytype static type analyzer
167
+ .pytype/
168
+
169
+ # Cython debug symbols
170
+ cython_debug/
171
+
172
+ # PyCharm
173
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
174
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
175
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
176
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
177
+ #.idea/
178
+
179
+ # Abstra
180
+ # Abstra is an AI-powered process automation framework.
181
+ # Ignore directories containing user credentials, local state, and settings.
182
+ # Learn more at https://abstra.io/docs
183
+ .abstra/
184
+
185
+ # Visual Studio Code
186
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
187
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
188
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
189
+ # you could uncomment the following to ignore the entire vscode folder
190
+ # .vscode/
191
+
192
+ # Ruff stuff:
193
+ .ruff_cache/
194
+
195
+ # PyPI configuration file
196
+ .pypirc
197
+
198
+ # Cursor
199
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
200
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
201
+ # refer to https://docs.cursor.com/context/ignore-files
202
+ .cursorignore
203
+ .cursorindexingignore
204
+
205
+ # Marimo
206
+ marimo/_static/
207
+ marimo/_lsp/
208
+ __marimo__/
209
+
210
+ .direnv/
211
+ .devenv/
212
+ result
213
+
214
+ # LaTeX
215
+ *.pdf
216
+ *.aux
217
+ *.fls
218
+ *.fdb_latexmk
219
+ *.synctex.gz
220
+ *.bbl
221
+ *.blg
222
+ *.out
223
+ *.dvi
224
+ *.xcp
225
+
226
+ # Local data
227
+ data/
228
+ trajectory/
229
+ experiment_results.db
230
+
231
+ .playwright-mcp/
232
+ *.local.*
233
+ .envrc.private
234
+ .pre-commit-config.yaml
235
+
236
+ # nixago: ignore-linked-files
237
+ /.vscode/extensions.json
238
+
239
+ /inheritance-calculus/arxiv-submission.tar.gz
240
+ node_modules/
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: mixinv2
3
+ Version: 0.2.0.post29.dev0
4
+ Summary: A dependency injection framework with pytest-fixture syntax, plus a configuration language for declarative programming
5
+ Project-URL: Repository, https://github.com/Atry/overlay
6
+ Author-email: "Yang, Bo" <yang-bo@yang-bo.com>
7
+ License-Expression: MIT
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3.13
11
+ Classifier: Programming Language :: Python :: 3.14
12
+ Requires-Python: >=3.13
13
+ Requires-Dist: pyyaml>=6.0.3
14
+ Provides-Extra: docs
15
+ Requires-Dist: sphinx-mdinclude>=0.6.2; extra == 'docs'
16
+ Requires-Dist: sphinx>=9.1.0; extra == 'docs'
@@ -0,0 +1,17 @@
1
+ # mixinv2
2
+
3
+ A dependency injection framework with pytest-fixture syntax, plus a
4
+ configuration language for declarative programming, based on
5
+ [inheritance-calculus](https://arxiv.org/abs/2602.16291).
6
+
7
+ ## Documentation
8
+
9
+ Full documentation is available at [mixinv2.readthedocs.io](https://mixinv2.readthedocs.io/).
10
+
11
+ ## Source Code
12
+
13
+ The source code is hosted on [GitHub](https://github.com/Atry/overlay).
14
+
15
+ ## License
16
+
17
+ MIT
@@ -0,0 +1,24 @@
1
+ # Minimal makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line, and also
5
+ # from the environment for the first two.
6
+ SPHINXOPTS ?=
7
+ SPHINXBUILD ?= sphinx-build
8
+ SOURCEDIR = .
9
+ BUILDDIR = _build
10
+
11
+ # Put it first so that "make" without argument is like "make help".
12
+ help:
13
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
+
15
+ .PHONY: help Makefile
16
+
17
+ # Catch-all target: route all unknown targets to Sphinx using the new
18
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19
+ %: Makefile api-docs
20
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
21
+
22
+ .PHONY: api-docs
23
+ api-docs:
24
+ sphinx-apidoc --implicit-namespaces -o api ../src/overlay
@@ -0,0 +1,189 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400">
2
+ <defs>
3
+ <!-- Lab-harmonized: RGB L*=50 max chroma, CMY L*=85 max chroma -->
4
+ <!-- Main sectors: 56° each, interpolation sectors: 4° each (Lab 1/2 midpoint) -->
5
+
6
+ <radialGradient id="gradient-0" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
7
+ <stop offset="0%" stop-color="#F00000" stop-opacity="0"/>
8
+ <stop offset="32%" stop-color="#F00000" stop-opacity="0"/>
9
+ <stop offset="32%" stop-color="#F00000" stop-opacity="0.5"/>
10
+ <stop offset="37%" stop-color="#F00000" stop-opacity="0.5"/>
11
+ <stop offset="37%" stop-color="#F00000" stop-opacity="1"/>
12
+ <stop offset="95%" stop-color="#F00000" stop-opacity="1"/>
13
+ <stop offset="95%" stop-color="#F00000" stop-opacity="0.5"/>
14
+ <stop offset="100%" stop-color="#F00000" stop-opacity="0.5"/>
15
+ </radialGradient>
16
+ <clipPath id="sector-0">
17
+ <path d="M 200,200 L 115.495,41.069 A 180,180 0 0,1 284.505,41.069 Z"/>
18
+ </clipPath>
19
+
20
+ <radialGradient id="gradient-1" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
21
+ <stop offset="0%" stop-color="#F59500" stop-opacity="0"/>
22
+ <stop offset="32%" stop-color="#F59500" stop-opacity="0"/>
23
+ <stop offset="32%" stop-color="#F59500" stop-opacity="0.5"/>
24
+ <stop offset="37%" stop-color="#F59500" stop-opacity="0.5"/>
25
+ <stop offset="37%" stop-color="#F59500" stop-opacity="1"/>
26
+ <stop offset="95%" stop-color="#F59500" stop-opacity="1"/>
27
+ <stop offset="95%" stop-color="#F59500" stop-opacity="0.5"/>
28
+ <stop offset="100%" stop-color="#F59500" stop-opacity="0.5"/>
29
+ </radialGradient>
30
+ <clipPath id="sector-1">
31
+ <path d="M 200,200 L 284.505,41.069 A 180,180 0 0,1 295.385,47.351 Z"/>
32
+ </clipPath>
33
+
34
+ <radialGradient id="gradient-2" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
35
+ <stop offset="0%" stop-color="#ECE901" stop-opacity="0"/>
36
+ <stop offset="32%" stop-color="#ECE901" stop-opacity="0"/>
37
+ <stop offset="32%" stop-color="#ECE901" stop-opacity="0.5"/>
38
+ <stop offset="37%" stop-color="#ECE901" stop-opacity="0.5"/>
39
+ <stop offset="37%" stop-color="#ECE901" stop-opacity="1"/>
40
+ <stop offset="95%" stop-color="#ECE901" stop-opacity="1"/>
41
+ <stop offset="95%" stop-color="#ECE901" stop-opacity="0.5"/>
42
+ <stop offset="100%" stop-color="#ECE901" stop-opacity="0.5"/>
43
+ </radialGradient>
44
+ <clipPath id="sector-2">
45
+ <path d="M 200,200 L 295.385,47.351 A 180,180 0 0,1 379.890,193.718 Z"/>
46
+ </clipPath>
47
+
48
+ <radialGradient id="gradient-3" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
49
+ <stop offset="0%" stop-color="#8BBA00" stop-opacity="0"/>
50
+ <stop offset="32%" stop-color="#8BBA00" stop-opacity="0"/>
51
+ <stop offset="32%" stop-color="#8BBA00" stop-opacity="0.5"/>
52
+ <stop offset="37%" stop-color="#8BBA00" stop-opacity="0.5"/>
53
+ <stop offset="37%" stop-color="#8BBA00" stop-opacity="1"/>
54
+ <stop offset="95%" stop-color="#8BBA00" stop-opacity="1"/>
55
+ <stop offset="95%" stop-color="#8BBA00" stop-opacity="0.5"/>
56
+ <stop offset="100%" stop-color="#8BBA00" stop-opacity="0.5"/>
57
+ </radialGradient>
58
+ <clipPath id="sector-3">
59
+ <path d="M 200,200 L 379.890,193.718 A 180,180 0 0,1 379.890,206.282 Z"/>
60
+ </clipPath>
61
+
62
+ <radialGradient id="gradient-4" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
63
+ <stop offset="0%" stop-color="#008B00" stop-opacity="0"/>
64
+ <stop offset="32%" stop-color="#008B00" stop-opacity="0"/>
65
+ <stop offset="32%" stop-color="#008B00" stop-opacity="0.5"/>
66
+ <stop offset="37%" stop-color="#008B00" stop-opacity="0.5"/>
67
+ <stop offset="37%" stop-color="#008B00" stop-opacity="1"/>
68
+ <stop offset="95%" stop-color="#008B00" stop-opacity="1"/>
69
+ <stop offset="95%" stop-color="#008B00" stop-opacity="0.5"/>
70
+ <stop offset="100%" stop-color="#008B00" stop-opacity="0.5"/>
71
+ </radialGradient>
72
+ <clipPath id="sector-4">
73
+ <path d="M 200,200 L 379.890,206.282 A 180,180 0 0,1 295.385,352.649 Z"/>
74
+ </clipPath>
75
+
76
+ <radialGradient id="gradient-5" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
77
+ <stop offset="0%" stop-color="#30BA7F" stop-opacity="0"/>
78
+ <stop offset="32%" stop-color="#30BA7F" stop-opacity="0"/>
79
+ <stop offset="32%" stop-color="#30BA7F" stop-opacity="0.5"/>
80
+ <stop offset="37%" stop-color="#30BA7F" stop-opacity="0.5"/>
81
+ <stop offset="37%" stop-color="#30BA7F" stop-opacity="1"/>
82
+ <stop offset="95%" stop-color="#30BA7F" stop-opacity="1"/>
83
+ <stop offset="95%" stop-color="#30BA7F" stop-opacity="0.5"/>
84
+ <stop offset="100%" stop-color="#30BA7F" stop-opacity="0.5"/>
85
+ </radialGradient>
86
+ <clipPath id="sector-5">
87
+ <path d="M 200,200 L 295.385,352.649 A 180,180 0 0,1 284.505,358.931 Z"/>
88
+ </clipPath>
89
+
90
+ <radialGradient id="gradient-6" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
91
+ <stop offset="0%" stop-color="#04ECEB" stop-opacity="0"/>
92
+ <stop offset="32%" stop-color="#04ECEB" stop-opacity="0"/>
93
+ <stop offset="32%" stop-color="#04ECEB" stop-opacity="0.5"/>
94
+ <stop offset="37%" stop-color="#04ECEB" stop-opacity="0.5"/>
95
+ <stop offset="37%" stop-color="#04ECEB" stop-opacity="1"/>
96
+ <stop offset="95%" stop-color="#04ECEB" stop-opacity="1"/>
97
+ <stop offset="95%" stop-color="#04ECEB" stop-opacity="0.5"/>
98
+ <stop offset="100%" stop-color="#04ECEB" stop-opacity="0.5"/>
99
+ </radialGradient>
100
+ <clipPath id="sector-6">
101
+ <path d="M 200,200 L 284.505,358.931 A 180,180 0 0,1 115.495,358.931 Z"/>
102
+ </clipPath>
103
+
104
+ <radialGradient id="gradient-7" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
105
+ <stop offset="0%" stop-color="#36ADF5" stop-opacity="0"/>
106
+ <stop offset="32%" stop-color="#36ADF5" stop-opacity="0"/>
107
+ <stop offset="32%" stop-color="#36ADF5" stop-opacity="0.5"/>
108
+ <stop offset="37%" stop-color="#36ADF5" stop-opacity="0.5"/>
109
+ <stop offset="37%" stop-color="#36ADF5" stop-opacity="1"/>
110
+ <stop offset="95%" stop-color="#36ADF5" stop-opacity="1"/>
111
+ <stop offset="95%" stop-color="#36ADF5" stop-opacity="0.5"/>
112
+ <stop offset="100%" stop-color="#36ADF5" stop-opacity="0.5"/>
113
+ </radialGradient>
114
+ <clipPath id="sector-7">
115
+ <path d="M 200,200 L 115.495,358.931 A 180,180 0 0,1 104.615,352.649 Z"/>
116
+ </clipPath>
117
+
118
+ <radialGradient id="gradient-8" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
119
+ <stop offset="0%" stop-color="#006FFC" stop-opacity="0"/>
120
+ <stop offset="32%" stop-color="#006FFC" stop-opacity="0"/>
121
+ <stop offset="32%" stop-color="#006FFC" stop-opacity="0.5"/>
122
+ <stop offset="37%" stop-color="#006FFC" stop-opacity="0.5"/>
123
+ <stop offset="37%" stop-color="#006FFC" stop-opacity="1"/>
124
+ <stop offset="95%" stop-color="#006FFC" stop-opacity="1"/>
125
+ <stop offset="95%" stop-color="#006FFC" stop-opacity="0.5"/>
126
+ <stop offset="100%" stop-color="#006FFC" stop-opacity="0.5"/>
127
+ </radialGradient>
128
+ <clipPath id="sector-8">
129
+ <path d="M 200,200 L 104.615,352.649 A 180,180 0 0,1 20.110,206.282 Z"/>
130
+ </clipPath>
131
+
132
+ <radialGradient id="gradient-9" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
133
+ <stop offset="0%" stop-color="#AA96FC" stop-opacity="0"/>
134
+ <stop offset="32%" stop-color="#AA96FC" stop-opacity="0"/>
135
+ <stop offset="32%" stop-color="#AA96FC" stop-opacity="0.5"/>
136
+ <stop offset="37%" stop-color="#AA96FC" stop-opacity="0.5"/>
137
+ <stop offset="37%" stop-color="#AA96FC" stop-opacity="1"/>
138
+ <stop offset="95%" stop-color="#AA96FC" stop-opacity="1"/>
139
+ <stop offset="95%" stop-color="#AA96FC" stop-opacity="0.5"/>
140
+ <stop offset="100%" stop-color="#AA96FC" stop-opacity="0.5"/>
141
+ </radialGradient>
142
+ <clipPath id="sector-9">
143
+ <path d="M 200,200 L 20.110,206.282 A 180,180 0 0,1 20.110,193.718 Z"/>
144
+ </clipPath>
145
+
146
+ <radialGradient id="gradient-10" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
147
+ <stop offset="0%" stop-color="#FFC0FA" stop-opacity="0"/>
148
+ <stop offset="32%" stop-color="#FFC0FA" stop-opacity="0"/>
149
+ <stop offset="32%" stop-color="#FFC0FA" stop-opacity="0.5"/>
150
+ <stop offset="37%" stop-color="#FFC0FA" stop-opacity="0.5"/>
151
+ <stop offset="37%" stop-color="#FFC0FA" stop-opacity="1"/>
152
+ <stop offset="95%" stop-color="#FFC0FA" stop-opacity="1"/>
153
+ <stop offset="95%" stop-color="#FFC0FA" stop-opacity="0.5"/>
154
+ <stop offset="100%" stop-color="#FFC0FA" stop-opacity="0.5"/>
155
+ </radialGradient>
156
+ <clipPath id="sector-10">
157
+ <path d="M 200,200 L 20.110,193.718 A 180,180 0 0,1 104.615,47.351 Z"/>
158
+ </clipPath>
159
+
160
+ <radialGradient id="gradient-11" cx="200" cy="200" r="180" gradientUnits="userSpaceOnUse">
161
+ <stop offset="0%" stop-color="#FF7C82" stop-opacity="0"/>
162
+ <stop offset="32%" stop-color="#FF7C82" stop-opacity="0"/>
163
+ <stop offset="32%" stop-color="#FF7C82" stop-opacity="0.5"/>
164
+ <stop offset="37%" stop-color="#FF7C82" stop-opacity="0.5"/>
165
+ <stop offset="37%" stop-color="#FF7C82" stop-opacity="1"/>
166
+ <stop offset="95%" stop-color="#FF7C82" stop-opacity="1"/>
167
+ <stop offset="95%" stop-color="#FF7C82" stop-opacity="0.5"/>
168
+ <stop offset="100%" stop-color="#FF7C82" stop-opacity="0.5"/>
169
+ </radialGradient>
170
+ <clipPath id="sector-11">
171
+ <path d="M 200,200 L 104.615,47.351 A 180,180 0 0,1 115.495,41.069 Z"/>
172
+ </clipPath>
173
+ </defs>
174
+
175
+ <g>
176
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-0)" clip-path="url(#sector-0)"/>
177
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-1)" clip-path="url(#sector-1)"/>
178
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-2)" clip-path="url(#sector-2)"/>
179
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-3)" clip-path="url(#sector-3)"/>
180
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-4)" clip-path="url(#sector-4)"/>
181
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-5)" clip-path="url(#sector-5)"/>
182
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-6)" clip-path="url(#sector-6)"/>
183
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-7)" clip-path="url(#sector-7)"/>
184
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-8)" clip-path="url(#sector-8)"/>
185
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-9)" clip-path="url(#sector-9)"/>
186
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-10)" clip-path="url(#sector-10)"/>
187
+ <circle cx="200" cy="200" r="180" fill="url(#gradient-11)" clip-path="url(#sector-11)"/>
188
+ </g>
189
+ </svg>