fedverse 0.0.1__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.
Files changed (35) hide show
  1. fedverse-0.0.1/LICENSE.md +21 -0
  2. fedverse-0.0.1/MANIFEST.in +9 -0
  3. fedverse-0.0.1/PKG-INFO +93 -0
  4. fedverse-0.0.1/README.md +43 -0
  5. fedverse-0.0.1/pyproject.toml +6 -0
  6. fedverse-0.0.1/setup.cfg +4 -0
  7. fedverse-0.0.1/setup.py +78 -0
  8. fedverse-0.0.1/src/fedverse/README.md +36 -0
  9. fedverse-0.0.1/src/fedverse/__init__.py +0 -0
  10. fedverse-0.0.1/src/fedverse/extracted/LICENSE.fed3 +121 -0
  11. fedverse-0.0.1/src/fedverse/extracted/LICENSE.fed3bandit +674 -0
  12. fedverse-0.0.1/src/fedverse/extracted/PROVENANCE.md +27 -0
  13. fedverse-0.0.1/src/fedverse/extracted/__init__.py +0 -0
  14. fedverse-0.0.1/src/fedverse/extracted/fed3_fedframe.py +766 -0
  15. fedverse-0.0.1/src/fedverse/extracted/fed3_loading.py +97 -0
  16. fedverse-0.0.1/src/fedverse/extracted/fed3bandit_extracted.py +292 -0
  17. fedverse-0.0.1/src/fedverse/fedassays/__init__.py +0 -0
  18. fedverse-0.0.1/src/fedverse/fedassays/fedbandit.py +1426 -0
  19. fedverse-0.0.1/src/fedverse/fedassays/fedfr.py +1010 -0
  20. fedverse-0.0.1/src/fedverse/fedassays/fedpr1.py +1237 -0
  21. fedverse-0.0.1/src/fedverse/fedassets/__init__.py +41 -0
  22. fedverse-0.0.1/src/fedverse/fedassets/bandit100_schematic.jpg +0 -0
  23. fedverse-0.0.1/src/fedverse/fedassets/bandit80_schematic.jpg +0 -0
  24. fedverse-0.0.1/src/fedverse/fedassets/fr1_schematic.jpg +0 -0
  25. fedverse-0.0.1/src/fedverse/fedassets/pr1_schematic.jpg +0 -0
  26. fedverse-0.0.1/src/fedverse/fedcore/__init__.py +0 -0
  27. fedverse-0.0.1/src/fedverse/fedcore/core.py +2079 -0
  28. fedverse-0.0.1/src/fedverse/fedutils/__init__.py +0 -0
  29. fedverse-0.0.1/src/fedverse/fedutils/fedlog.py +144 -0
  30. fedverse-0.0.1/src/fedverse.egg-info/PKG-INFO +93 -0
  31. fedverse-0.0.1/src/fedverse.egg-info/SOURCES.txt +35 -0
  32. fedverse-0.0.1/src/fedverse.egg-info/dependency_links.txt +1 -0
  33. fedverse-0.0.1/src/fedverse.egg-info/not-zip-safe +1 -0
  34. fedverse-0.0.1/src/fedverse.egg-info/requires.txt +11 -0
  35. fedverse-0.0.1/src/fedverse.egg-info/top_level.txt +1 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 William Rubio
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,9 @@
1
+ include README.md
2
+ include LICENSE.md
3
+ include src/fedverse/README.md
4
+ include src/fedverse/extracted/PROVENANCE.md
5
+ include src/fedverse/extracted/LICENSE.*
6
+ recursive-include src/fedverse/fedassets *.png *.svg *.jpg *.jpeg
7
+
8
+ recursive-exclude * __pycache__
9
+ recursive-exclude * *.py[co]
@@ -0,0 +1,93 @@
1
+ Metadata-Version: 2.4
2
+ Name: fedverse
3
+ Version: 0.0.1
4
+ Summary: FED3 multi-assay analysis pipeline (SSPsyGene)
5
+ Home-page: https://github.com/willbrubio/fedverse
6
+ Author: William Rubio
7
+ Author-email: bernard.william@gmail.com
8
+ License: MIT
9
+ Project-URL: Source, https://github.com/willbrubio/fedverse
10
+ Project-URL: Issues, https://github.com/willbrubio/fedverse/issues
11
+ Keywords: FED3,neuroscience,behavior,operant,SSPsyGene
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE.md
24
+ License-File: src/fedverse/extracted/LICENSE.fed3
25
+ License-File: src/fedverse/extracted/LICENSE.fed3bandit
26
+ Requires-Dist: pandas<3
27
+ Requires-Dist: numpy
28
+ Requires-Dist: matplotlib
29
+ Requires-Dist: scipy
30
+ Requires-Dist: seaborn
31
+ Requires-Dist: statsmodels
32
+ Requires-Dist: pingouin
33
+ Requires-Dist: tqdm
34
+ Requires-Dist: ipywidgets
35
+ Requires-Dist: ipython
36
+ Requires-Dist: openpyxl
37
+ Dynamic: author
38
+ Dynamic: author-email
39
+ Dynamic: classifier
40
+ Dynamic: description
41
+ Dynamic: description-content-type
42
+ Dynamic: home-page
43
+ Dynamic: keywords
44
+ Dynamic: license
45
+ Dynamic: license-file
46
+ Dynamic: project-url
47
+ Dynamic: requires-dist
48
+ Dynamic: requires-python
49
+ Dynamic: summary
50
+
51
+ # fedverse
52
+
53
+ The purpose of fedverse is to create a unifying package of libraries that concern themselves with the analysis of FED devices in conjunction with the established workflow for the SSPsyGene project. Currently, fedverse inherits functions from fed3bandit written by Alex Legaria (https://fed3bandit.readthedocs.io/en/latest/analysis/fed3live_api.html) and the fed3 library written by Tom Earnest (https://earnestt1234.github.io/fed3/fed3/index.html). Additionally, this library includes code written for FED3Analyses by Chantelle Murrell (https://github.com/KravitzLab/FED3Analyses).
54
+
55
+ This library was created for the intention of of automating a analysis pipeline for the WUSMAC SSPsyGene analysis of FED devices.
56
+
57
+ The pipeline created by this library is meant to ingest L1 files alongside their key file and automate the process of creating an L4. Anything besides that functionality is outside the scope of the intended pipeline.
58
+
59
+
60
+ ## Sub Library Architecture
61
+ This library consists of sub libraries in this specific heiarchy:
62
+ ```
63
+ ├──extracted
64
+ | ├──fed3_fedframe.py
65
+ | ├──fed3_loading.py
66
+ | └──fed3bandit_extracted.py
67
+ ├──fedassays
68
+ | ├──fedbandit.py
69
+ | ├──fedpr1.py
70
+ | └──fedfr1.py
71
+ ├──fedassets
72
+ ├──fedcore
73
+ | └──core.py
74
+ ├──fedutils
75
+ | └──fedlog.py
76
+ ```
77
+ extracted:
78
+ sublibrary extracted contains code from the fed3 and fed3bandit library needed for the analysis workflows.
79
+
80
+ fedassays:
81
+ sublibrary contains code from Murrell that conducts the analysis of different assays to replicate the openly available colab journals.
82
+
83
+ fedcore:
84
+ sublibrary contains code from Murrell shared across all assay types used to read in processed data.
85
+
86
+ fedutils:
87
+ sublibrary contains utility functions to help deliver structured messages throughout the library.
88
+
89
+
90
+
91
+ ## AI Attribution
92
+ Code was written with Assistance using generative AI.
93
+ ver: Claude Opus 4.8
@@ -0,0 +1,43 @@
1
+ # fedverse
2
+
3
+ The purpose of fedverse is to create a unifying package of libraries that concern themselves with the analysis of FED devices in conjunction with the established workflow for the SSPsyGene project. Currently, fedverse inherits functions from fed3bandit written by Alex Legaria (https://fed3bandit.readthedocs.io/en/latest/analysis/fed3live_api.html) and the fed3 library written by Tom Earnest (https://earnestt1234.github.io/fed3/fed3/index.html). Additionally, this library includes code written for FED3Analyses by Chantelle Murrell (https://github.com/KravitzLab/FED3Analyses).
4
+
5
+ This library was created for the intention of of automating a analysis pipeline for the WUSMAC SSPsyGene analysis of FED devices.
6
+
7
+ The pipeline created by this library is meant to ingest L1 files alongside their key file and automate the process of creating an L4. Anything besides that functionality is outside the scope of the intended pipeline.
8
+
9
+
10
+ ## Sub Library Architecture
11
+ This library consists of sub libraries in this specific heiarchy:
12
+ ```
13
+ ├──extracted
14
+ | ├──fed3_fedframe.py
15
+ | ├──fed3_loading.py
16
+ | └──fed3bandit_extracted.py
17
+ ├──fedassays
18
+ | ├──fedbandit.py
19
+ | ├──fedpr1.py
20
+ | └──fedfr1.py
21
+ ├──fedassets
22
+ ├──fedcore
23
+ | └──core.py
24
+ ├──fedutils
25
+ | └──fedlog.py
26
+ ```
27
+ extracted:
28
+ sublibrary extracted contains code from the fed3 and fed3bandit library needed for the analysis workflows.
29
+
30
+ fedassays:
31
+ sublibrary contains code from Murrell that conducts the analysis of different assays to replicate the openly available colab journals.
32
+
33
+ fedcore:
34
+ sublibrary contains code from Murrell shared across all assay types used to read in processed data.
35
+
36
+ fedutils:
37
+ sublibrary contains utility functions to help deliver structured messages throughout the library.
38
+
39
+
40
+
41
+ ## AI Attribution
42
+ Code was written with Assistance using generative AI.
43
+ ver: Claude Opus 4.8
@@ -0,0 +1,6 @@
1
+ # Build-system declaration only. All package metadata (name, version,
2
+ # dependencies, package-data) lives in setup.py — a [project] table here
3
+ # would take precedence and silently override it.
4
+ [build-system]
5
+ requires = ["setuptools>=77", "wheel"]
6
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,78 @@
1
+ """Packaging config for fedverse.
2
+
3
+ Classic setuptools setup() — this file is the single source of truth for
4
+ package metadata. pyproject.toml is kept for the build-system declaration
5
+ only; if you move a metadata field back into a [project] table there, that
6
+ table wins and the value here is silently ignored.
7
+
8
+ Build and upload:
9
+ python -m pip install --upgrade build twine
10
+ python -m build # -> dist/fedverse-<ver>.tar.gz + .whl
11
+ python -m twine check dist/*
12
+ python -m twine upload dist/*
13
+ """
14
+
15
+ from pathlib import Path
16
+
17
+ from setuptools import find_packages, setup
18
+
19
+ HERE = Path(__file__).parent
20
+ LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding="utf-8")
21
+
22
+ # Runtime deps — every third-party package imported under src/fedverse.
23
+ # pandas is pinned <3 because the extracted fed3/fed3bandit code relies on
24
+ # pandas 2.x behaviour that the 3.0 release changes.
25
+ INSTALL_REQUIRES = [
26
+ "pandas<3",
27
+ "numpy",
28
+ "matplotlib",
29
+ "scipy",
30
+ "seaborn",
31
+ "statsmodels",
32
+ "pingouin",
33
+ "tqdm",
34
+ "ipywidgets",
35
+ "ipython", # IPython.display, used by the assay plotting helpers
36
+ "openpyxl", # engine for pd.ExcelFile / read_excel on .xlsx L1 files
37
+ ]
38
+
39
+ setup(
40
+ name="fedverse",
41
+ version="0.0.1",
42
+ description="FED3 multi-assay analysis pipeline (SSPsyGene)",
43
+ long_description=LONG_DESCRIPTION,
44
+ long_description_content_type="text/markdown",
45
+ author="William Rubio",
46
+ author_email="bernard.william@gmail.com",
47
+ url="https://github.com/willbrubio/fedverse",
48
+ project_urls={
49
+ "Source": "https://github.com/willbrubio/fedverse",
50
+ "Issues": "https://github.com/willbrubio/fedverse/issues",
51
+ },
52
+ license="MIT",
53
+ license_files=["LICENSE.md", "src/fedverse/extracted/LICENSE.*"],
54
+ # src-layout: importable packages live under src/, not at the repo root.
55
+ package_dir={"": "src"},
56
+ packages=find_packages(where="src"),
57
+ # Schematic images resolved at runtime by fedverse.fedassets.get().
58
+ package_data={"fedverse.fedassets": ["*.png", "*.svg", "*.jpg", "*.jpeg"]},
59
+ include_package_data=True,
60
+ zip_safe=False, # fedassets.get() walks the package directory on disk
61
+ python_requires=">=3.10",
62
+ install_requires=INSTALL_REQUIRES,
63
+ classifiers=[
64
+ "Development Status :: 3 - Alpha",
65
+ "Intended Audience :: Science/Research",
66
+ # No "License ::" classifier on purpose: setuptools>=77 treats the
67
+ # license= value above as an SPDX expression and rejects packages that
68
+ # also carry a legacy license classifier.
69
+ "Operating System :: OS Independent",
70
+ "Programming Language :: Python :: 3",
71
+ "Programming Language :: Python :: 3.10",
72
+ "Programming Language :: Python :: 3.11",
73
+ "Programming Language :: Python :: 3.12",
74
+ "Programming Language :: Python :: 3.13",
75
+ "Topic :: Scientific/Engineering :: Bio-Informatics",
76
+ ],
77
+ keywords=["FED3", "neuroscience", "behavior", "operant", "SSPsyGene"],
78
+ )
@@ -0,0 +1,36 @@
1
+ # fedverse
2
+
3
+ The purpose of fedverse is to create a unifying package of libraries that concern themselves with the analysis of FED devices in conjunction with the established workflow for the SSPsyGene project. Currently, fedverse inherits functions from fed3bandit written by Alex Legaria (https://fed3bandit.readthedocs.io/en/latest/analysis/fed3live_api.html) and the fed3 library written by Tom Earnest (https://earnestt1234.github.io/fed3/fed3/index.html). Additionally, this library includes code written for FED3Analyses by Chantelle Murrell (https://github.com/KravitzLab/FED3Analyses).
4
+
5
+ This library was created for the intention of being used in conjunction with the analysis pipeline for the WUSMAC SSPsyGene analysis pipeline of FED devices.
6
+
7
+ ## Sub Library Architecture
8
+ This library consists of sub libraries in this specific heiarchy:
9
+ ```
10
+ ├──extracted
11
+ | ├──fed3_fedframe.py
12
+ | ├──fed3_loading.py
13
+ | └──fed3bandit_extracted.py
14
+ ├──fedassays
15
+ | ├──fedbandit.py
16
+ | ├──fedpr1.py
17
+ | └──fedfr1.py
18
+ ├──fedcore
19
+ | └──core.py
20
+ ├──fedutils
21
+ | └──fedlog.py
22
+ ```
23
+ extracted:
24
+ sublibrary extracted contains code from the fed3 and fed3bandit library needed for the analysis workflows.
25
+
26
+ fedassays:
27
+ sublibrary contains code from Murrell that conducts the analysis of different assays to replicate the openly available colab journals.
28
+
29
+ fedcore:
30
+ sublibrary contains code from Murrell shared across all assay types used to read in processed data.
31
+
32
+ fedutils:
33
+ sublibrary contains utility functions to help deliver structured messages throughout the library.
34
+
35
+
36
+
File without changes
@@ -0,0 +1,121 @@
1
+ Creative Commons Legal Code
2
+
3
+ CC0 1.0 Universal
4
+
5
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
6
+ LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
7
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
8
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
9
+ REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
10
+ PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
11
+ THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
12
+ HEREUNDER.
13
+
14
+ Statement of Purpose
15
+
16
+ The laws of most jurisdictions throughout the world automatically confer
17
+ exclusive Copyright and Related Rights (defined below) upon the creator
18
+ and subsequent owner(s) (each and all, an "owner") of an original work of
19
+ authorship and/or a database (each, a "Work").
20
+
21
+ Certain owners wish to permanently relinquish those rights to a Work for
22
+ the purpose of contributing to a commons of creative, cultural and
23
+ scientific works ("Commons") that the public can reliably and without fear
24
+ of later claims of infringement build upon, modify, incorporate in other
25
+ works, reuse and redistribute as freely as possible in any form whatsoever
26
+ and for any purposes, including without limitation commercial purposes.
27
+ These owners may contribute to the Commons to promote the ideal of a free
28
+ culture and the further production of creative, cultural and scientific
29
+ works, or to gain reputation or greater distribution for their Work in
30
+ part through the use and efforts of others.
31
+
32
+ For these and/or other purposes and motivations, and without any
33
+ expectation of additional consideration or compensation, the person
34
+ associating CC0 with a Work (the "Affirmer"), to the extent that he or she
35
+ is an owner of Copyright and Related Rights in the Work, voluntarily
36
+ elects to apply CC0 to the Work and publicly distribute the Work under its
37
+ terms, with knowledge of his or her Copyright and Related Rights in the
38
+ Work and the meaning and intended legal effect of CC0 on those rights.
39
+
40
+ 1. Copyright and Related Rights. A Work made available under CC0 may be
41
+ protected by copyright and related or neighboring rights ("Copyright and
42
+ Related Rights"). Copyright and Related Rights include, but are not
43
+ limited to, the following:
44
+
45
+ i. the right to reproduce, adapt, distribute, perform, display,
46
+ communicate, and translate a Work;
47
+ ii. moral rights retained by the original author(s) and/or performer(s);
48
+ iii. publicity and privacy rights pertaining to a person's image or
49
+ likeness depicted in a Work;
50
+ iv. rights protecting against unfair competition in regards to a Work,
51
+ subject to the limitations in paragraph 4(a), below;
52
+ v. rights protecting the extraction, dissemination, use and reuse of data
53
+ in a Work;
54
+ vi. database rights (such as those arising under Directive 96/9/EC of the
55
+ European Parliament and of the Council of 11 March 1996 on the legal
56
+ protection of databases, and under any national implementation
57
+ thereof, including any amended or successor version of such
58
+ directive); and
59
+ vii. other similar, equivalent or corresponding rights throughout the
60
+ world based on applicable law or treaty, and any national
61
+ implementations thereof.
62
+
63
+ 2. Waiver. To the greatest extent permitted by, but not in contravention
64
+ of, applicable law, Affirmer hereby overtly, fully, permanently,
65
+ irrevocably and unconditionally waives, abandons, and surrenders all of
66
+ Affirmer's Copyright and Related Rights and associated claims and causes
67
+ of action, whether now known or unknown (including existing as well as
68
+ future claims and causes of action), in the Work (i) in all territories
69
+ worldwide, (ii) for the maximum duration provided by applicable law or
70
+ treaty (including future time extensions), (iii) in any current or future
71
+ medium and for any number of copies, and (iv) for any purpose whatsoever,
72
+ including without limitation commercial, advertising or promotional
73
+ purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
74
+ member of the public at large and to the detriment of Affirmer's heirs and
75
+ successors, fully intending that such Waiver shall not be subject to
76
+ revocation, rescission, cancellation, termination, or any other legal or
77
+ equitable action to disrupt the quiet enjoyment of the Work by the public
78
+ as contemplated by Affirmer's express Statement of Purpose.
79
+
80
+ 3. Public License Fallback. Should any part of the Waiver for any reason
81
+ be judged legally invalid or ineffective under applicable law, then the
82
+ Waiver shall be preserved to the maximum extent permitted taking into
83
+ account Affirmer's express Statement of Purpose. In addition, to the
84
+ extent the Waiver is so judged Affirmer hereby grants to each affected
85
+ person a royalty-free, non transferable, non sublicensable, non exclusive,
86
+ irrevocable and unconditional license to exercise Affirmer's Copyright and
87
+ Related Rights in the Work (i) in all territories worldwide, (ii) for the
88
+ maximum duration provided by applicable law or treaty (including future
89
+ time extensions), (iii) in any current or future medium and for any number
90
+ of copies, and (iv) for any purpose whatsoever, including without
91
+ limitation commercial, advertising or promotional purposes (the
92
+ "License"). The License shall be deemed effective as of the date CC0 was
93
+ applied by Affirmer to the Work. Should any part of the License for any
94
+ reason be judged legally invalid or ineffective under applicable law, such
95
+ partial invalidity or ineffectiveness shall not invalidate the remainder
96
+ of the License, and in such case Affirmer hereby affirms that he or she
97
+ will not (i) exercise any of his or her remaining Copyright and Related
98
+ Rights in the Work or (ii) assert any associated claims and causes of
99
+ action with respect to the Work, in either case contrary to Affirmer's
100
+ express Statement of Purpose.
101
+
102
+ 4. Limitations and Disclaimers.
103
+
104
+ a. No trademark or patent rights held by Affirmer are waived, abandoned,
105
+ surrendered, licensed or otherwise affected by this document.
106
+ b. Affirmer offers the Work as-is and makes no representations or
107
+ warranties of any kind concerning the Work, express, implied,
108
+ statutory or otherwise, including without limitation warranties of
109
+ title, merchantability, fitness for a particular purpose, non
110
+ infringement, or the absence of latent or other defects, accuracy, or
111
+ the present or absence of errors, whether or not discoverable, all to
112
+ the greatest extent permissible under applicable law.
113
+ c. Affirmer disclaims responsibility for clearing rights of other persons
114
+ that may apply to the Work or any use thereof, including without
115
+ limitation any person's Copyright and Related Rights in the Work.
116
+ Further, Affirmer disclaims responsibility for obtaining any necessary
117
+ consents, permissions or other rights required for any use of the
118
+ Work.
119
+ d. Affirmer understands and acknowledges that Creative Commons is not a
120
+ party to this document and has no duty or obligation with respect to
121
+ this CC0 or use of the Work.