@zambit/elevate-ts 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. package/CLA-CORPORATE.md +72 -0
  2. package/CLA-INDIVIDUAL.md +71 -0
  3. package/DUAL-PUBLISHING-STRATEGY.md +571 -0
  4. package/LICENSE +610 -0
  5. package/README.md +77 -0
  6. package/dist/cjs/Either.d.ts +67 -0
  7. package/dist/cjs/Either.d.ts.map +1 -0
  8. package/dist/cjs/Either.js +147 -0
  9. package/dist/cjs/Either.js.map +1 -0
  10. package/dist/cjs/EitherAsync.d.ts +139 -0
  11. package/dist/cjs/EitherAsync.d.ts.map +1 -0
  12. package/dist/cjs/EitherAsync.js +171 -0
  13. package/dist/cjs/EitherAsync.js.map +1 -0
  14. package/dist/cjs/Function.d.ts +153 -0
  15. package/dist/cjs/Function.d.ts.map +1 -0
  16. package/dist/cjs/Function.js +110 -0
  17. package/dist/cjs/Function.js.map +1 -0
  18. package/dist/cjs/List.d.ts +134 -0
  19. package/dist/cjs/List.d.ts.map +1 -0
  20. package/dist/cjs/List.js +243 -0
  21. package/dist/cjs/List.js.map +1 -0
  22. package/dist/cjs/Maybe.d.ts +64 -0
  23. package/dist/cjs/Maybe.d.ts.map +1 -0
  24. package/dist/cjs/Maybe.js +122 -0
  25. package/dist/cjs/Maybe.js.map +1 -0
  26. package/dist/cjs/MaybeAsync.d.ts +115 -0
  27. package/dist/cjs/MaybeAsync.d.ts.map +1 -0
  28. package/dist/cjs/MaybeAsync.js +151 -0
  29. package/dist/cjs/MaybeAsync.js.map +1 -0
  30. package/dist/cjs/NonEmptyList.d.ts +86 -0
  31. package/dist/cjs/NonEmptyList.d.ts.map +1 -0
  32. package/dist/cjs/NonEmptyList.js +128 -0
  33. package/dist/cjs/NonEmptyList.js.map +1 -0
  34. package/dist/cjs/Reader.d.ts +53 -0
  35. package/dist/cjs/Reader.d.ts.map +1 -0
  36. package/dist/cjs/Reader.js +60 -0
  37. package/dist/cjs/Reader.js.map +1 -0
  38. package/dist/cjs/State.d.ts +71 -0
  39. package/dist/cjs/State.d.ts.map +1 -0
  40. package/dist/cjs/State.js +94 -0
  41. package/dist/cjs/State.js.map +1 -0
  42. package/dist/cjs/Tuple.d.ts +69 -0
  43. package/dist/cjs/Tuple.d.ts.map +1 -0
  44. package/dist/cjs/Tuple.js +73 -0
  45. package/dist/cjs/Tuple.js.map +1 -0
  46. package/dist/cjs/Validation.d.ts +53 -0
  47. package/dist/cjs/Validation.d.ts.map +1 -0
  48. package/dist/cjs/Validation.js +77 -0
  49. package/dist/cjs/Validation.js.map +1 -0
  50. package/dist/cjs/index.d.ts +12 -0
  51. package/dist/cjs/index.d.ts.map +1 -0
  52. package/dist/cjs/index.js +25 -0
  53. package/dist/cjs/index.js.map +1 -0
  54. package/dist/cjs/tokens/config.d.ts +43 -0
  55. package/dist/cjs/tokens/config.d.ts.map +1 -0
  56. package/dist/cjs/tokens/config.js +162 -0
  57. package/dist/cjs/tokens/config.js.map +1 -0
  58. package/dist/cjs/tokens/cssGen.d.ts +18 -0
  59. package/dist/cjs/tokens/cssGen.d.ts.map +1 -0
  60. package/dist/cjs/tokens/cssGen.js +144 -0
  61. package/dist/cjs/tokens/cssGen.js.map +1 -0
  62. package/dist/cjs/tokens/generateCSS.d.ts +18 -0
  63. package/dist/cjs/tokens/generateCSS.d.ts.map +1 -0
  64. package/dist/cjs/tokens/generateCSS.js +83 -0
  65. package/dist/cjs/tokens/generateCSS.js.map +1 -0
  66. package/dist/cjs/tokens/index.d.ts +13 -0
  67. package/dist/cjs/tokens/index.d.ts.map +1 -0
  68. package/dist/cjs/tokens/index.js +12 -0
  69. package/dist/cjs/tokens/index.js.map +1 -0
  70. package/dist/cjs/tsconfig.tsbuildinfo +1 -0
  71. package/dist/esm/Either.d.ts +67 -0
  72. package/dist/esm/Either.d.ts.map +1 -0
  73. package/dist/esm/Either.js +136 -0
  74. package/dist/esm/Either.js.map +1 -0
  75. package/dist/esm/EitherAsync.d.ts +139 -0
  76. package/dist/esm/EitherAsync.d.ts.map +1 -0
  77. package/dist/esm/EitherAsync.js +173 -0
  78. package/dist/esm/EitherAsync.js.map +1 -0
  79. package/dist/esm/Function.d.ts +153 -0
  80. package/dist/esm/Function.d.ts.map +1 -0
  81. package/dist/esm/Function.js +109 -0
  82. package/dist/esm/Function.js.map +1 -0
  83. package/dist/esm/List.d.ts +134 -0
  84. package/dist/esm/List.d.ts.map +1 -0
  85. package/dist/esm/List.js +243 -0
  86. package/dist/esm/List.js.map +1 -0
  87. package/dist/esm/Maybe.d.ts +64 -0
  88. package/dist/esm/Maybe.d.ts.map +1 -0
  89. package/dist/esm/Maybe.js +113 -0
  90. package/dist/esm/Maybe.js.map +1 -0
  91. package/dist/esm/MaybeAsync.d.ts +115 -0
  92. package/dist/esm/MaybeAsync.d.ts.map +1 -0
  93. package/dist/esm/MaybeAsync.js +150 -0
  94. package/dist/esm/MaybeAsync.js.map +1 -0
  95. package/dist/esm/NonEmptyList.d.ts +86 -0
  96. package/dist/esm/NonEmptyList.d.ts.map +1 -0
  97. package/dist/esm/NonEmptyList.js +128 -0
  98. package/dist/esm/NonEmptyList.js.map +1 -0
  99. package/dist/esm/Reader.d.ts +53 -0
  100. package/dist/esm/Reader.d.ts.map +1 -0
  101. package/dist/esm/Reader.js +60 -0
  102. package/dist/esm/Reader.js.map +1 -0
  103. package/dist/esm/State.d.ts +71 -0
  104. package/dist/esm/State.d.ts.map +1 -0
  105. package/dist/esm/State.js +94 -0
  106. package/dist/esm/State.js.map +1 -0
  107. package/dist/esm/Tuple.d.ts +69 -0
  108. package/dist/esm/Tuple.d.ts.map +1 -0
  109. package/dist/esm/Tuple.js +73 -0
  110. package/dist/esm/Tuple.js.map +1 -0
  111. package/dist/esm/Validation.d.ts +53 -0
  112. package/dist/esm/Validation.d.ts.map +1 -0
  113. package/dist/esm/Validation.js +79 -0
  114. package/dist/esm/Validation.js.map +1 -0
  115. package/dist/esm/index.d.ts +12 -0
  116. package/dist/esm/index.d.ts.map +1 -0
  117. package/dist/esm/index.js +22 -0
  118. package/dist/esm/index.js.map +1 -0
  119. package/dist/esm/src/Either.d.ts +67 -0
  120. package/dist/esm/src/Either.d.ts.map +1 -0
  121. package/dist/esm/src/Either.js +147 -0
  122. package/dist/esm/src/Either.js.map +1 -0
  123. package/dist/esm/src/EitherAsync.d.ts +139 -0
  124. package/dist/esm/src/EitherAsync.d.ts.map +1 -0
  125. package/dist/esm/src/EitherAsync.js +171 -0
  126. package/dist/esm/src/EitherAsync.js.map +1 -0
  127. package/dist/esm/src/Function.d.ts +153 -0
  128. package/dist/esm/src/Function.d.ts.map +1 -0
  129. package/dist/esm/src/Function.js +110 -0
  130. package/dist/esm/src/Function.js.map +1 -0
  131. package/dist/esm/src/List.d.ts +134 -0
  132. package/dist/esm/src/List.d.ts.map +1 -0
  133. package/dist/esm/src/List.js +243 -0
  134. package/dist/esm/src/List.js.map +1 -0
  135. package/dist/esm/src/Maybe.d.ts +64 -0
  136. package/dist/esm/src/Maybe.d.ts.map +1 -0
  137. package/dist/esm/src/Maybe.js +122 -0
  138. package/dist/esm/src/Maybe.js.map +1 -0
  139. package/dist/esm/src/MaybeAsync.d.ts +115 -0
  140. package/dist/esm/src/MaybeAsync.d.ts.map +1 -0
  141. package/dist/esm/src/MaybeAsync.js +151 -0
  142. package/dist/esm/src/MaybeAsync.js.map +1 -0
  143. package/dist/esm/src/NonEmptyList.d.ts +86 -0
  144. package/dist/esm/src/NonEmptyList.d.ts.map +1 -0
  145. package/dist/esm/src/NonEmptyList.js +128 -0
  146. package/dist/esm/src/NonEmptyList.js.map +1 -0
  147. package/dist/esm/src/Reader.d.ts +53 -0
  148. package/dist/esm/src/Reader.d.ts.map +1 -0
  149. package/dist/esm/src/Reader.js +60 -0
  150. package/dist/esm/src/Reader.js.map +1 -0
  151. package/dist/esm/src/State.d.ts +71 -0
  152. package/dist/esm/src/State.d.ts.map +1 -0
  153. package/dist/esm/src/State.js +94 -0
  154. package/dist/esm/src/State.js.map +1 -0
  155. package/dist/esm/src/Tuple.d.ts +69 -0
  156. package/dist/esm/src/Tuple.d.ts.map +1 -0
  157. package/dist/esm/src/Tuple.js +73 -0
  158. package/dist/esm/src/Tuple.js.map +1 -0
  159. package/dist/esm/src/Validation.d.ts +53 -0
  160. package/dist/esm/src/Validation.d.ts.map +1 -0
  161. package/dist/esm/src/Validation.js +77 -0
  162. package/dist/esm/src/Validation.js.map +1 -0
  163. package/dist/esm/src/index.d.ts +12 -0
  164. package/dist/esm/src/index.d.ts.map +1 -0
  165. package/dist/esm/src/index.js +25 -0
  166. package/dist/esm/src/index.js.map +1 -0
  167. package/dist/esm/tsconfig.esm.tsbuildinfo +1 -0
  168. package/elevate-ts-vs-effect-critique.md +806 -0
  169. package/eslint.config.js +104 -0
  170. package/package.json +139 -0
package/LICENSE ADDED
@@ -0,0 +1,610 @@
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU Affero General Public License is a free, copyleft license for
11
+ software and other kinds of works, specifically designed to ensure
12
+ cooperation with the community in the case of network server software.
13
+
14
+ The licenses for most software and other practical works are designed
15
+ to take away your freedom to share and change the works. By contrast,
16
+ our General Public Licenses are intended to guarantee your freedom to
17
+ share and change all versions of a program--to make sure it remains free
18
+ software for all its users.
19
+
20
+ When we speak of free software, we are referring to freedom, not price.
21
+ Our General Public Licenses are designed to make sure that you have the
22
+ freedom to distribute copies of free software (and charge for them if you
23
+ wish), that you receive source code or can get it if you want it, that
24
+ you can change the software or use pieces of it in new free programs,
25
+ and that you know you can do these things.
26
+
27
+ Developers that use our General Public Licenses protect your rights with
28
+ two steps: (1) assert copyright on the software, and (2) offer you this
29
+ License which gives you legal permission to copy, distribute and/or
30
+ modify the software.
31
+
32
+ A secondary benefit of defending all users' freedom is that improvements
33
+ made in alternate versions of the program, if they receive widespread
34
+ use, become available for other developers to incorporate. However, in
35
+ the case of software used on network servers, this result may fail to
36
+ come about. The GNU General Public License permits making a modified
37
+ version and letting the public access it on a server without ever
38
+ releasing its source code to the public.
39
+
40
+ The GNU Affero General Public License is designed specifically to ensure
41
+ that, in such cases, the modified source code becomes available to the
42
+ community. It requires the operator of a network server to provide the
43
+ source code of the modified version running there to the users of that
44
+ server. Therefore, public use of a modified version, on a publicly
45
+ accessible server, gives the public access to the source code of the
46
+ modified version.
47
+
48
+ An older license, called the Affero General Public License and published
49
+ by Affero, was designed to accomplish similar goals. This is a different
50
+ license, not a version of the Affero GPL, but Affero has released a new
51
+ version of the Affero GPL which permits relicensing under this license.
52
+
53
+ The precise terms and conditions for copying, distribution and
54
+ modification follow.
55
+
56
+ TERMS AND CONDITIONS
57
+
58
+ 0. Definitions.
59
+
60
+ "This License" refers to version 3 of the GNU Affero General Public License.
61
+
62
+ "Copyright" also means copyright-like laws that apply to other kinds of
63
+ works, such as semiconductor masks.
64
+
65
+ "The Program" refers to any copyrightable work licensed under this
66
+ License. Each licensee is addressed as "you". "Licensees" and
67
+ "recipients" may be individuals or organizations.
68
+
69
+ To "modify" a work means to copy from or adapt all or part of the work
70
+ in a fashion requiring copyright permission, other than the making of an
71
+ exact copy. The resulting work is called a "modified version" of the
72
+ earlier work or a work "based on" the earlier work.
73
+
74
+ A "covered work" means either the unmodified Program or a work based on
75
+ the Program.
76
+
77
+ To "propagate" a work means to do anything with it that, without
78
+ permission, would make you directly or secondarily liable for
79
+ infringement under applicable copyright law, except executing it on a
80
+ computer or modifying a private copy. Propagation includes copying,
81
+ distribution (with or without modification), making available to the
82
+ public, and in some countries other activities as well.
83
+
84
+ To "convey" a work means any kind of propagation that enables other
85
+ parties to make or receive copies. Mere interaction with a user through
86
+ a computer network, with no transfer of a copy, is not conveying.
87
+
88
+ An interactive user interface displays "Appropriate Legal Notices" to
89
+ the extent that it includes a convenient and prominently visible feature
90
+ that (1) displays an appropriate copyright notice, and (2) tells the
91
+ user that there is no warranty for the work (except to the extent that
92
+ warranties are provided), that licensees may convey the work under this
93
+ License, and how to view a copy of this License. If the interface
94
+ presents a list of user commands or options, such as a menu, a prominent
95
+ item in the list meets this criterion.
96
+
97
+ 1. Source Code.
98
+
99
+ The "source code" for a work means the preferred form of the work for
100
+ making modifications to it. "Object code" means any non-source form of
101
+ a work.
102
+
103
+ A "Standard Interface" means an interface that either is an official
104
+ standard defined by a recognized standards body, or, in the case of
105
+ interfaces specified for a particular programming language, one that is
106
+ widely used among developers working in that language.
107
+
108
+ The "System Libraries" of an executable work include anything, other
109
+ than the work as a whole, that (a) is included in the normal form of
110
+ packaging a Major Component, but which is not part of that Major
111
+ Component, and (b) serves only to enable use of the work with that Major
112
+ Component, or to implement a Standard Interface for which an
113
+ implementation is available to the public in source code form. A "Major
114
+ Component", in this context, means a major essential component (kernel,
115
+ window system, and so on) of the specific operating system (if any) on
116
+ which the executable work runs, or a compiler used to produce the work,
117
+ or an object code interpreter used to run it.
118
+
119
+ The "Corresponding Source" for a work in object code form means all the
120
+ source code needed to generate, install, and (for an executable work)
121
+ run the object code and to modify the work, including scripts to control
122
+ those activities. However, it does not include the work's System
123
+ Libraries, or general-purpose tools or generally available free programs
124
+ which are used unmodified in performing those activities but which are
125
+ not part of the work. For example, Corresponding Source includes
126
+ interface definition files associated with source files for the work, and
127
+ the source code for shared libraries and dynamically linked subprograms
128
+ that the work is specifically designed to require, such as by intimate
129
+ data communication or control flow between those subprograms and other
130
+ parts of the work.
131
+
132
+ The Corresponding Source need not include anything that users can
133
+ regenerate automatically from other parts of the Corresponding Source.
134
+
135
+ The Corresponding Source for a work in source code form is that same work.
136
+
137
+ 2. Basic Permissions.
138
+
139
+ All rights granted under this License are granted for the term of
140
+ copyright on the Program, and are irrevocable provided the stated
141
+ conditions are met. This License explicitly affirms your unlimited
142
+ permission to run the unmodified Program. The output from running a
143
+ covered work is covered by this License only if the output, given its
144
+ content, constitutes a covered work. This License acknowledges your
145
+ rights of fair use or other equivalent, as provided by copyright law.
146
+
147
+ You may make, run and propagate covered works that you do not convey,
148
+ without conditions so long as your license otherwise remains in force.
149
+ You may convey covered works to others for the sole purpose of having
150
+ them make modifications exclusively for you, or provide you with
151
+ facilities for running those works, provided that you comply with the
152
+ terms of this License in conveying all material for which you do not
153
+ control copyright. Those thus making or running the covered works for
154
+ you must do so exclusively on your behalf, under your direction and
155
+ control, on terms that prohibit them from making any copies of your
156
+ copyrighted material outside their relationship with you.
157
+
158
+ Conveying under any other circumstances is permitted solely under the
159
+ conditions stated below. Sublicensing is not allowed; section 10 makes
160
+ it unnecessary.
161
+
162
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
163
+
164
+ No covered work shall be deemed part of an effective technological
165
+ measure under any applicable law fulfilling obligations under article 11
166
+ of the WIPO copyright treaty adopted on 20 December 1996, or similar
167
+ laws prohibiting or restricting circumvention of such measures.
168
+
169
+ When you convey a covered work, you waive any legal power to forbid
170
+ circumvention of technological measures to the extent such circumvention
171
+ is effected by exercising rights under this License with respect to the
172
+ covered work, and you disclaim any intention to limit operation or
173
+ modification of the work as a means of enforcing, against the work's
174
+ users, your or third parties' legal rights to forbid circumvention of
175
+ technological measures.
176
+
177
+ 4. Conveying Verbatim Copies.
178
+
179
+ You may convey verbatim copies of the Program's source code as you
180
+ receive it, in any medium, provided that you conspicuously and
181
+ appropriately publish on each copy an appropriate copyright notice; keep
182
+ intact all notices stating that this License and any non-permissive
183
+ terms added in accord with section 7 apply to the code; keep intact all
184
+ notices of the absence of any warranty; and give all recipients a copy
185
+ of this License along with the Program.
186
+
187
+ You may charge any price or no price for each copy that you convey, and
188
+ you may offer support or warranty protection for a fee.
189
+
190
+ 5. Conveying Modified Source Versions.
191
+
192
+ You may convey a work based on the Program, or the modifications to
193
+ produce it from the Program, in the form of source code under the terms
194
+ of section 4, provided that you also meet all of these conditions:
195
+
196
+ a) The work must carry prominent notices stating that you modified it,
197
+ and giving a relevant date.
198
+
199
+ b) The work must carry prominent notices stating that it is released
200
+ under this License and any conditions added under section 7. This
201
+ requirement modifies the requirement in section 4 to "keep intact all
202
+ notices".
203
+
204
+ c) You must license the entire work, as a whole, under this License to
205
+ anyone who comes into possession of a copy. This License will therefore
206
+ apply, along with any applicable section 7 additional terms, to the
207
+ whole of the work, and all its parts, regardless of how they are
208
+ packaged. This License gives no permission to license the work in any
209
+ other way, but it does not invalidate such permission if you have
210
+ separately received it.
211
+
212
+ d) If the work has interactive user interfaces, each must display
213
+ Appropriate Legal Notices; however, if the Program has interactive
214
+ interfaces that do not display Appropriate Legal Notices, your work need
215
+ not make them do so.
216
+
217
+ A compilation of a covered work with other separate and independent
218
+ works, which are not by their nature extensions of the covered work, and
219
+ which are not combined with it such as to form a larger program, in or
220
+ on a volume of a storage or distribution medium, is called an
221
+ "aggregate" if the compilation and its resulting copyright are not used
222
+ to limit the access or legal rights of the compilation's users beyond
223
+ what the individual works permit. Inclusion of a covered work in an
224
+ aggregate does not cause this License to apply to the other parts of the
225
+ aggregate.
226
+
227
+ 6. Conveying Non-Source Forms.
228
+
229
+ You may convey a covered work in object code form under the terms of
230
+ sections 4 and 5, provided that you also convey the machine-readable
231
+ Corresponding Source under the terms of this License, in one of these
232
+ ways:
233
+
234
+ a) Convey the object code in, or embodied in, a physical product
235
+ (including a physical distribution medium), accompanied by the
236
+ Corresponding Source fixed on a durable physical medium customarily used
237
+ for software interchange.
238
+
239
+ b) Convey the object code in, or embodied in, a physical product
240
+ (including a physical distribution medium), accompanied by a written
241
+ offer, valid for at least three years and valid for as long as you offer
242
+ spare parts or customer support for that product model, to give anyone
243
+ who possesses the object code either (1) a copy of the Corresponding
244
+ Source for all the software in the product that is covered by this
245
+ License, on a durable physical medium customarily used for software
246
+ interchange, for a price no more than your reasonable cost of physically
247
+ performing this conveying of source, or (2) access to copy the
248
+ Corresponding Source from a network server at no charge.
249
+
250
+ c) Convey individual copies of the object code with a copy of the
251
+ written offer to provide the Corresponding Source. This alternative is
252
+ allowed only occasionally and noncommercially, and only if you received
253
+ the object code with such an offer, in accord with subsection 6b.
254
+
255
+ d) Convey the object code by offering access from a designated place
256
+ (gratis or for a charge), and offer equivalent access to the
257
+ Corresponding Source in the same way through the same place at no
258
+ further charge. You need not require recipients to copy the
259
+ Corresponding Source along with the object code. If the place to copy
260
+ the object code is a network server, the Corresponding Source may be on
261
+ a different server (operated by you or a third party) that supports
262
+ equivalent copying facilities, provided you maintain clear directions
263
+ next to the object code saying where to find the Corresponding Source.
264
+ Regardless of what server hosts the Corresponding Source, you remain
265
+ obligated to ensure that it is available for as long as needed to
266
+ satisfy these requirements.
267
+
268
+ e) Convey the object code using peer-to-peer transmission, provided you
269
+ inform other peers where the object code and Corresponding Source of the
270
+ work are being offered to the general public at no charge under
271
+ subsection 6d.
272
+
273
+ A separable portion of the object code, whose source code is excluded
274
+ from the Corresponding Source as a System Library, need not be included
275
+ in conveying the object code work.
276
+
277
+ A "User Product" is either (1) a "consumer product", which means any
278
+ tangible personal property which is normally used for personal, family,
279
+ or household purposes, or (2) anything designed or sold for
280
+ incorporation into a dwelling. In determining whether a product is a
281
+ consumer product, doubtful cases shall be resolved in favor of coverage.
282
+ For a particular product received by a particular user, "normally used"
283
+ refers to a typical or common use of that class of product, regardless
284
+ of the status of the particular user or of the way in which the
285
+ particular user actually uses, or expects or is expected to use, the
286
+ product. A product is a consumer product regardless of whether the
287
+ product has substantial commercial, industrial or non-consumer uses,
288
+ unless such uses represent the only significant mode of use of the
289
+ product.
290
+
291
+ "Installation Information" for a User Product means any methods,
292
+ procedures, authorization keys, or other information required to install
293
+ and execute modified versions of a covered work in that User Product
294
+ from a modified version of its Corresponding Source. The information
295
+ must suffice to ensure that the continued functioning of the modified
296
+ object code is in no case prevented or interfered with solely because
297
+ modification has been made.
298
+
299
+ If you convey an object code work under this section in, or with, or
300
+ specifically for use in, a User Product, and the conveying occurs as
301
+ part of a transaction in which the right of possession and use of the
302
+ User Product is transferred to the recipient in perpetuity or for a
303
+ fixed term (regardless of how the transaction is characterized), the
304
+ Corresponding Source conveyed under this section must be accompanied by
305
+ the Installation Information. But this requirement does not apply if
306
+ neither you nor any third party retains the ability to install modified
307
+ object code on the User Product (for example, the work has been
308
+ installed in ROM).
309
+
310
+ The requirement to provide Installation Information does not include a
311
+ requirement to continue to provide support service, warranty, or updates
312
+ for a work that has been modified or installed by the recipient, or for
313
+ the User Product in which it has been modified or installed. Access to a
314
+ network may be denied when the modification itself materially and
315
+ adversely affects the operation of the network or violates the rules and
316
+ protocols for communication across the network.
317
+
318
+ Corresponding Source conveyed, and Installation Information provided, in
319
+ accord with this section must be in a format that is publicly documented
320
+ (and with an implementation available to the public in source code
321
+ form), and must require no special password or key for unpacking,
322
+ reading or copying.
323
+
324
+ 7. Additional Terms.
325
+
326
+ "Additional permissions" are terms that supplement the terms of this
327
+ License by making exceptions from one or more of its conditions.
328
+ Additional permissions that are applicable to the entire Program shall
329
+ be treated as though they were included in this License, to the extent
330
+ that they are valid under applicable law. If additional permissions
331
+ apply only to part of the Program, that part may be used separately
332
+ under those permissions, but the entire Program remains governed by this
333
+ License without regard to the additional permissions.
334
+
335
+ When you convey a copy of a covered work, you may at your option remove
336
+ any additional permissions from that copy, or from any part of it.
337
+ (Additional permissions may be written to require their own removal in
338
+ certain cases when you modify the work.) You may place additional
339
+ permissions on material, added by you to a covered work, for which you
340
+ have or can give appropriate copyright permission.
341
+
342
+ Notwithstanding any other provision of this License, for material you
343
+ add to a covered work, you may (if authorized by the copyright holders
344
+ of that material) supplement the terms of this License with terms:
345
+
346
+ a) Disclaiming warranty or limiting liability differently from the terms
347
+ of sections 15 and 16 of this License; or
348
+
349
+ b) Requiring preservation of specified reasonable legal notices or
350
+ author attributions in that material or in the Appropriate Legal Notices
351
+ displayed by works containing it; or
352
+
353
+ c) Prohibiting misrepresentation of the origin of that material, or
354
+ requiring that modified versions of such material be marked in
355
+ reasonable ways as different from the original version; or
356
+
357
+ d) Limiting the use for publicity purposes of names of licensors or
358
+ authors of the material; or
359
+
360
+ e) Declining to grant rights under trademark law for use of some trade
361
+ names, trademarks, or service marks; or
362
+
363
+ f) Requiring indemnification of licensors and authors of that material
364
+ by anyone who conveys the material (or modified versions of it) with
365
+ contractual assumptions of liability to the recipient, for any liability
366
+ that these contractual assumptions directly impose on those licensors
367
+ and authors.
368
+
369
+ All other non-permissive additional terms are considered "further
370
+ restrictions" within the meaning of section 10. If the Program as you
371
+ received it, or any part of it, contains a notice stating that it is
372
+ governed by this License along with a term that is a further
373
+ restriction, you may remove that term. If a license document contains a
374
+ further restriction but permits relicensing or conveying under this
375
+ License, you may add to a covered work material governed by the terms of
376
+ that license document, provided that the further restriction does not
377
+ survive such relicensing or conveying.
378
+
379
+ If you add terms to a covered work in accord with this section, you must
380
+ place, in the relevant source files, a statement of the additional terms
381
+ that apply to those files, or a notice indicating where to find the
382
+ applicable terms.
383
+
384
+ Additional terms, permissive or non-permissive, may be stated in the
385
+ form of a separately written license, or stated as exceptions; the above
386
+ requirements apply either way.
387
+
388
+ 8. Termination.
389
+
390
+ You may not propagate or modify a covered work except as expressly
391
+ provided under this License. Any attempt otherwise to propagate or
392
+ modify it is void, and will automatically terminate your rights under
393
+ this License (including any patent licenses granted under the third
394
+ paragraph of section 11).
395
+
396
+ However, if you cease all violation of this License, then your license
397
+ from a particular copyright holder is reinstated (a) provisionally,
398
+ unless and until the copyright holder explicitly and finally terminates
399
+ your license, and (b) permanently, if the copyright holder fails to
400
+ notify you of the violation by some reasonable means prior to 60 days
401
+ after the cessation.
402
+
403
+ Moreover, your license from a particular copyright holder is reinstated
404
+ permanently if the copyright holder notifies you of the violation by
405
+ some reasonable means, this is the first time you have received notice
406
+ of violation of this License (for any work) from that copyright holder,
407
+ and you cure the violation prior to 30 days after your receipt of the
408
+ notice.
409
+
410
+ Termination of your rights under this section does not terminate the
411
+ licenses of parties who have received copies or rights from you under
412
+ this License. If your rights have been terminated and not permanently
413
+ reinstated, you do not qualify to receive new licenses for the same
414
+ material under section 10.
415
+
416
+ 9. Acceptance Not Required for Having Copies.
417
+
418
+ You are not required to accept this License in order to receive or run a
419
+ copy of the Program. Ancillary propagation of a covered work occurring
420
+ solely as a consequence of using peer-to-peer transmission to receive a
421
+ copy likewise does not require acceptance. However, nothing other than
422
+ this License grants you permission to propagate or modify any covered
423
+ work. These actions infringe copyright if you do not accept this
424
+ License. Therefore, by modifying or propagating a covered work, you
425
+ indicate your acceptance of this License to do so.
426
+
427
+ 10. Automatic Licensing of Downstream Recipients.
428
+
429
+ Each time you convey a covered work, the recipient automatically
430
+ receives a license from the original licensors, to run, modify and
431
+ propagate that work, subject to this License. You are not responsible
432
+ for enforcing compliance by third parties with this License.
433
+
434
+ An "entity transaction" is a transaction transferring control of an
435
+ organization, or substantially all assets of one, or subdividing an
436
+ organization, or merging organizations. If propagation of a covered work
437
+ results from an entity transaction, each party to that transaction who
438
+ receives a copy of the work also receives whatever licenses to the work
439
+ the party's predecessor in interest had or could give under the previous
440
+ paragraph, plus a right to possession of the Corresponding Source of the
441
+ work from the predecessor in interest, if the predecessor has it or can
442
+ get it with reasonable efforts.
443
+
444
+ You may not impose any further restrictions on the exercise of the
445
+ rights granted or affirmed under this License. For example, you may not
446
+ impose a license fee, royalty, or other charge for exercise of rights
447
+ granted under this License, and you may not initiate litigation
448
+ (including a cross-claim or counterclaim in a lawsuit) alleging that any
449
+ patent claim is infringed by making, using, selling, offering for sale,
450
+ or importing the Program or any portion of it.
451
+
452
+ 11. Patents.
453
+
454
+ A "contributor" is a copyright holder who authorizes use under this
455
+ License of the Program or a work on which the Program is based. The work
456
+ thus licensed is called the contributor's "contributor version".
457
+
458
+ A contributor's "essential patent claims" are all patent claims owned or
459
+ controlled by the contributor, whether already acquired or hereafter
460
+ acquired, that would be infringed by some manner, permitted by this
461
+ License, of making, using, or selling its contributor version, but do
462
+ not include claims that would be infringed only as a consequence of
463
+ further modification of the contributor version. For purposes of this
464
+ definition, "control" includes the right to grant patent sublicenses in
465
+ a manner consistent with the requirements of this License.
466
+
467
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
468
+ patent license under the contributor's essential patent claims, to make,
469
+ use, sell, offer for sale, import and otherwise run, modify and
470
+ propagate the contents of its contributor version.
471
+
472
+ In the following three paragraphs, a "patent license" is any express
473
+ agreement or commitment, however denominated, not to enforce a patent
474
+ (such as an express permission to practice a patent or covenant not to
475
+ sue for patent infringement). To "grant" such a patent license to a
476
+ party means to make such an agreement or commitment not to enforce a
477
+ patent against the party.
478
+
479
+ If you convey a covered work, knowingly relying on a patent license, and
480
+ the Corresponding Source of the work is not available for anyone to
481
+ copy, free of charge and under the terms of this License, through a
482
+ publicly available network server or other readily accessible means,
483
+ then you must either (1) cause the Corresponding Source to be so
484
+ available, or (2) arrange to deprive yourself of the benefit of the
485
+ patent license for this particular work, or (3) arrange, in a manner
486
+ consistent with the requirements of this License, to extend the patent
487
+ license to downstream recipients. "Knowingly relying" means you have
488
+ actual knowledge that, but for the patent license, your conveying the
489
+ covered work in a country, or your recipient's use of the covered work
490
+ in a country, would infringe one or more identifiable patents in that
491
+ country that you have reason to believe are valid.
492
+
493
+ If, pursuant to or in connection with a single transaction or
494
+ arrangement, you convey, or propagate by procuring conveyance of, a
495
+ covered work, and grant a patent license to some of the parties
496
+ receiving the covered work authorizing them to use, propagate, modify or
497
+ convey a specific copy of the covered work, then the patent license you
498
+ grant is automatically extended to all recipients of the covered work
499
+ and works based on it.
500
+
501
+ A patent license is "discriminatory" if it does not include within the
502
+ scope of its coverage, prohibits the exercise of, or is conditioned on
503
+ the non-exercise of one or more of the rights that are specifically
504
+ granted under this License. You may not convey a covered work if you are
505
+ a party to an arrangement with a third party that is in the business of
506
+ distributing software, under which you make payment to the third party
507
+ based on the extent of your activity of conveying the work, and under
508
+ which the third party grants, to any of the parties who would receive
509
+ the covered work from you, a discriminatory patent license (a) in
510
+ connection with copies of the covered work conveyed by you (or copies
511
+ made from those copies), or (b) primarily for and in connection with
512
+ specific products or compilations that contain the covered work, unless
513
+ you entered into that arrangement, or that patent license was granted,
514
+ prior to 28 March 2007.
515
+
516
+ Nothing in this License shall be construed as excluding or limiting any
517
+ implied license or other defenses to infringement that may otherwise be
518
+ available to you under applicable patent law.
519
+
520
+ 12. No Surrender of Others' Freedom.
521
+
522
+ If conditions are imposed on you (whether by court order, agreement or
523
+ otherwise) that contradict the conditions of this License, they do not
524
+ excuse you from the conditions of this License. If you cannot convey a
525
+ covered work so as to satisfy simultaneously your obligations under this
526
+ License and any other pertinent obligations, then as a consequence you
527
+ may not convey it at all. For example, if you agree to terms that
528
+ obligate you to collect a royalty for further conveying from those to
529
+ whom you convey the Program, the only way you could satisfy both those
530
+ terms and this License would be to refrain entirely from conveying the
531
+ Program.
532
+
533
+ 13. Remote Network Interaction; Use with the GNU General Public License.
534
+
535
+ Notwithstanding any other provision of this License, if you modify the
536
+ Program, your modified version must prominently offer all users
537
+ interacting with it remotely through a computer network (if your version
538
+ supports such interaction) an opportunity to receive the Corresponding
539
+ Source of your version by providing access to the Corresponding Source
540
+ from a network server at no charge, through some standard or customary
541
+ means of facilitating copying of software.
542
+
543
+ This Corresponding Source shall include the Corresponding Source for any
544
+ work covered by version 3 of the GNU General Public License that is
545
+ incorporated pursuant to the following paragraph. Notwithstanding any
546
+ other provision of this License, you have permission to link or combine
547
+ any covered work with a work licensed under version 3 of the GNU General
548
+ Public License into a single combined work, and to convey the resulting
549
+ work. The terms of this License will continue to apply to the part which
550
+ is the covered work, but the work with which it is combined will remain
551
+ governed by version 3 of the GNU General Public License.
552
+
553
+ 14. Revised Versions of this License.
554
+
555
+ The Free Software Foundation may publish revised and/or new versions of
556
+ the GNU Affero General Public License from time to time. Such new
557
+ versions will be similar in spirit to the present version, but may
558
+ differ in detail to address new problems or concerns.
559
+
560
+ Each version is given a distinguishing version number. If the Program
561
+ specifies that a certain numbered version of the GNU Affero General
562
+ Public License "or any later version" applies to it, you have the option
563
+ of following the terms and conditions either of that numbered version or
564
+ of any later version published by the Free Software Foundation. If the
565
+ Program does not specify a version number of the GNU Affero General
566
+ Public License, you may choose any version ever published by the Free
567
+ Software Foundation.
568
+
569
+ If the Program specifies that a proxy can decide which future versions
570
+ of the GNU Affero General Public License can be used, that proxy's
571
+ public statement of acceptance of a version permanently authorizes you to
572
+ choose that version for the Program.
573
+
574
+ Later license versions may give you additional or different permissions.
575
+ However, no additional obligations are imposed on any author or
576
+ copyright holder as a result of your choosing to follow a later version.
577
+
578
+ 15. Disclaimer of Warranty.
579
+
580
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
581
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
582
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
583
+ WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
584
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
585
+ PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF
586
+ THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME
587
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
588
+
589
+ 16. Limitation of Liability.
590
+
591
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
592
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
593
+ CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
594
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
595
+ ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
596
+ NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES
597
+ SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE
598
+ WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
599
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
600
+
601
+ 17. Interpretation of Sections 15 and 16.
602
+
603
+ If the disclaimer of warranty and limitation of liability provided above
604
+ cannot be given local legal effect according to their terms, reviewing
605
+ courts shall apply local law that most closely approximates an absolute
606
+ waiver of all civil liability in connection with the Program, unless a
607
+ warranty or assumption of liability accompanies a copy of the Program in
608
+ return for a fee.
609
+
610
+ END OF TERMS AND CONDITIONS