@volter/editor-blender 0.1.0

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 (58) hide show
  1. package/LICENSE +1409 -0
  2. package/README.md +17 -0
  3. package/contributions/blender-header-menus.tsx +483 -0
  4. package/contributions/blender-icon-trace.mjs +403 -0
  5. package/contributions/blender-icons.source.mjs +2925 -0
  6. package/contributions/blender-node-editor.document.tsx +1402 -0
  7. package/contributions/blender-node-geometry.ts +1138 -0
  8. package/contributions/blender-node-panels.source.mjs +485 -0
  9. package/contributions/blender-outliner-authoring.ts +1729 -0
  10. package/contributions/blender-outliner-model.ts +389 -0
  11. package/contributions/blender-palette.source.mjs +319 -0
  12. package/contributions/blender-properties-model.ts +351 -0
  13. package/contributions/blender-properties-tab.tsx +100 -0
  14. package/contributions/blender-properties-view.tsx +1191 -0
  15. package/contributions/blender-runtime-skin.ts +619 -0
  16. package/contributions/blender-runtime.document.tsx +232 -0
  17. package/contributions/blender-timeline-geometry.ts +323 -0
  18. package/contributions/blender-timeline.document.tsx +1056 -0
  19. package/contributions/blender-uv-editor.document.tsx +483 -0
  20. package/contributions/blender-uv-geometry.ts +305 -0
  21. package/contributions/blender-version.status.tsx +93 -0
  22. package/contributions/blender.command.ts +102 -0
  23. package/contributions/blender.icons.json +1247 -0
  24. package/contributions/blender.icons.traced.json +1561 -0
  25. package/contributions/blender.keymap.ts +39 -0
  26. package/contributions/blender.node-panels.json +2436 -0
  27. package/contributions/blender.palette.json +93 -0
  28. package/contributions/blender.status.tsx +263 -0
  29. package/contributions/blender.style.ts +271 -0
  30. package/contributions/model.layout.ts +53 -0
  31. package/contributions/models.finder.ts +59 -0
  32. package/contributions/properties-bone-constraints.inspector.tsx +50 -0
  33. package/contributions/properties-bone.inspector.tsx +184 -0
  34. package/contributions/properties-collection.inspector.tsx +96 -0
  35. package/contributions/properties-constraints.inspector.tsx +69 -0
  36. package/contributions/properties-data.inspector.tsx +229 -0
  37. package/contributions/properties-material.inspector.tsx +121 -0
  38. package/contributions/properties-modifiers.inspector.tsx +74 -0
  39. package/contributions/properties-object.inspector.tsx +215 -0
  40. package/contributions/properties-output.inspector.tsx +210 -0
  41. package/contributions/properties-particles.inspector.tsx +494 -0
  42. package/contributions/properties-physics.inspector.tsx +614 -0
  43. package/contributions/properties-render.inspector.tsx +446 -0
  44. package/contributions/properties-scene.inspector.tsx +174 -0
  45. package/contributions/properties-texture.inspector.tsx +300 -0
  46. package/contributions/properties-view-layer.inspector.tsx +145 -0
  47. package/contributions/properties-world.inspector.tsx +130 -0
  48. package/contributions/sculpt.layout.ts +25 -0
  49. package/contributions/shading.layout.ts +99 -0
  50. package/contributions/texture.layout.ts +16 -0
  51. package/contributions/uv-editing.layout.ts +93 -0
  52. package/host/blender-runtime-host.ts +1256 -0
  53. package/package.json +77 -0
  54. package/src/layouts.tsx +48 -0
  55. package/src/looks.ts +14 -0
  56. package/src/node-view-state.ts +125 -0
  57. package/src/timeline-view-state.ts +154 -0
  58. package/src/uv-view-state.ts +125 -0
package/LICENSE ADDED
@@ -0,0 +1,1409 @@
1
+ NOTICE — WHAT THIS PACKAGE IS, AND WHOSE IT IS
2
+
3
+ This package (`@volter/editor-blender`) is the EDITOR-SIDE half of Blender in the tab:
4
+ the Model document and its presenters, the Properties tabs, the outliner, the
5
+ node and UV editors, the display transforms, the sky, the status items, the
6
+ layouts, the finder and the Blender LOOK. Our code here is ours. Its ICON
7
+ ARTWORK is not.
8
+
9
+ THE ICON ARTWORK IS BLENDER'S.
10
+
11
+ Blender
12
+ Copyright (C) Blender Authors
13
+ Licensed under the GNU General Public License, version 2 or later.
14
+ <https://www.blender.org/about/license/>
15
+
16
+ `contributions/blender.icons.json` carries 346 glyphs. 197 of them are
17
+ MACHINE-TRACED, byte for byte, from Blender's own vector icon sources —
18
+ `release/datafiles/icons_svg/*.svg` in the Blender tree at this project's
19
+ pin, 188 distinct files. The trace is an affine transform of Blender's own
20
+ outline onto a 16-unit grid: nothing is re-proportioned, re-stroked or
21
+ re-centred, so a traced glyph IS Blender's drawing. Those 197 paths are a
22
+ derivative work of GPL-2.0-or-later artwork.
23
+
24
+ `contributions/blender.icons.traced.json` is the provenance file and the
25
+ place to look: every one of the 197 entries records the `ICON_*` name, the
26
+ source file under `release/datafiles/icons_svg/`, and the sha256 of the SVG
27
+ it was traced from. `contributions/blender-icon-trace.mjs` is the tracer and
28
+ `contributions/blender-icons.source.mjs` is the generator that consumes the
29
+ provenance file and emits `blender.icons.json`.
30
+
31
+ The remaining 149 glyphs are our own drawings in Blender's idiom, and
32
+ `contributions/blender.palette.json` is a transcription of Blender's default
33
+ theme colours. Neither the traced paths nor anything derived from them may
34
+ be copied into an Apache-2.0 or MIT part of this repository —
35
+ `packages/editor`'s own icon set included.
36
+
37
+ THE COMBINATION, AND WHY THIS PACKAGE CARRIES TWO LICENCES. Our own code in
38
+ this package is licensed under the GNU Affero General Public License,
39
+ version 3 only.
40
+
41
+ The Model document, its presenters, the Properties tabs, the outliner, the
42
+ node and UV editors, the layouts, the looks, the finder, the display
43
+ transforms and the sky
44
+ Copyright 2026 Volter AI, Inc.
45
+ Licensed under the GNU Affero General Public License, version 3 only.
46
+
47
+ Blender's artwork is GPL-2.0-or-later. Exercising Blender's "or later", it is
48
+ conveyed here under the GNU General Public License, version 3 or later. AGPL-3.0
49
+ §13 and GPL-3.0 §13 each expressly permit that combination: a covered work may
50
+ be linked with a work licensed under the other of the two, and the combination
51
+ conveyed, each part keeping its own licence. So the SPDX expression for this
52
+ package is:
53
+
54
+ AGPL-3.0-only AND GPL-3.0-or-later
55
+
56
+ — an AND, not an OR: both licences apply, each to its own part. Downstream,
57
+ that means the whole package must be conveyed under terms that satisfy both.
58
+ Both licence texts follow: the AGPL first, then the GPL.
59
+
60
+ This package is NOT `@volter/blender-engine`, which is Blender ITSELF compiled to
61
+ WebAssembly and is GPL-3.0-or-later in whole (`packages/blender-engine/LICENSE`).
62
+ This package imports only that engine's wire TYPES plus the one tab-side handle
63
+ that owns the worker; the process boundary is the package boundary
64
+ (docs/ARCHITECTURE-CORE.md §Licensing, "Blender's licence stops at the wire").
65
+
66
+ NO COMMERCIAL LICENCE REACHES THE TRACED ARTWORK. A commercial licence from
67
+ Volter AI, Inc. can reach our AGPL code here; it cannot reach Blender's icon
68
+ artwork, because that copyright is Blender's authors' and is not ours to
69
+ relicense. `COMMERCIAL.md` at the repository root says so.
70
+
71
+ --------------------------------------------------------------------------
72
+
73
+ GNU AFFERO GENERAL PUBLIC LICENSE
74
+ Version 3, 19 November 2007
75
+
76
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
77
+ Everyone is permitted to copy and distribute verbatim copies
78
+ of this license document, but changing it is not allowed.
79
+
80
+ Preamble
81
+
82
+ The GNU Affero General Public License is a free, copyleft license for
83
+ software and other kinds of works, specifically designed to ensure
84
+ cooperation with the community in the case of network server software.
85
+
86
+ The licenses for most software and other practical works are designed
87
+ to take away your freedom to share and change the works. By contrast,
88
+ our General Public Licenses are intended to guarantee your freedom to
89
+ share and change all versions of a program--to make sure it remains free
90
+ software for all its users.
91
+
92
+ When we speak of free software, we are referring to freedom, not
93
+ price. Our General Public Licenses are designed to make sure that you
94
+ have the freedom to distribute copies of free software (and charge for
95
+ them if you wish), that you receive source code or can get it if you
96
+ want it, that you can change the software or use pieces of it in new
97
+ free programs, and that you know you can do these things.
98
+
99
+ Developers that use our General Public Licenses protect your rights
100
+ with two steps: (1) assert copyright on the software, and (2) offer
101
+ you this License which gives you legal permission to copy, distribute
102
+ and/or modify the software.
103
+
104
+ A secondary benefit of defending all users' freedom is that
105
+ improvements made in alternate versions of the program, if they
106
+ receive widespread use, become available for other developers to
107
+ incorporate. Many developers of free software are heartened and
108
+ encouraged by the resulting cooperation. However, in the case of
109
+ software used on network servers, this result may fail to come about.
110
+ The GNU General Public License permits making a modified version and
111
+ letting the public access it on a server without ever releasing its
112
+ source code to the public.
113
+
114
+ The GNU Affero General Public License is designed specifically to
115
+ ensure that, in such cases, the modified source code becomes available
116
+ to the community. It requires the operator of a network server to
117
+ provide the source code of the modified version running there to the
118
+ users of that server. Therefore, public use of a modified version, on
119
+ a publicly accessible server, gives the public access to the source
120
+ code of the modified version.
121
+
122
+ An older license, called the Affero General Public License and
123
+ published by Affero, was designed to accomplish similar goals. This is
124
+ a different license, not a version of the Affero GPL, but Affero has
125
+ released a new version of the Affero GPL which permits relicensing under
126
+ this license.
127
+
128
+ The precise terms and conditions for copying, distribution and
129
+ modification follow.
130
+
131
+ TERMS AND CONDITIONS
132
+
133
+ 0. Definitions.
134
+
135
+ "This License" refers to version 3 of the GNU Affero General Public License.
136
+
137
+ "Copyright" also means copyright-like laws that apply to other kinds of
138
+ works, such as semiconductor masks.
139
+
140
+ "The Program" refers to any copyrightable work licensed under this
141
+ License. Each licensee is addressed as "you". "Licensees" and
142
+ "recipients" may be individuals or organizations.
143
+
144
+ To "modify" a work means to copy from or adapt all or part of the work
145
+ in a fashion requiring copyright permission, other than the making of an
146
+ exact copy. The resulting work is called a "modified version" of the
147
+ earlier work or a work "based on" the earlier work.
148
+
149
+ A "covered work" means either the unmodified Program or a work based
150
+ on the Program.
151
+
152
+ To "propagate" a work means to do anything with it that, without
153
+ permission, would make you directly or secondarily liable for
154
+ infringement under applicable copyright law, except executing it on a
155
+ computer or modifying a private copy. Propagation includes copying,
156
+ distribution (with or without modification), making available to the
157
+ public, and in some countries other activities as well.
158
+
159
+ To "convey" a work means any kind of propagation that enables other
160
+ parties to make or receive copies. Mere interaction with a user through
161
+ a computer network, with no transfer of a copy, is not conveying.
162
+
163
+ An interactive user interface displays "Appropriate Legal Notices"
164
+ to the extent that it includes a convenient and prominently visible
165
+ feature that (1) displays an appropriate copyright notice, and (2)
166
+ tells the user that there is no warranty for the work (except to the
167
+ extent that warranties are provided), that licensees may convey the
168
+ work under this License, and how to view a copy of this License. If
169
+ the interface presents a list of user commands or options, such as a
170
+ menu, a prominent item in the list meets this criterion.
171
+
172
+ 1. Source Code.
173
+
174
+ The "source code" for a work means the preferred form of the work
175
+ for making modifications to it. "Object code" means any non-source
176
+ form of a work.
177
+
178
+ A "Standard Interface" means an interface that either is an official
179
+ standard defined by a recognized standards body, or, in the case of
180
+ interfaces specified for a particular programming language, one that
181
+ is widely used among developers working in that language.
182
+
183
+ The "System Libraries" of an executable work include anything, other
184
+ than the work as a whole, that (a) is included in the normal form of
185
+ packaging a Major Component, but which is not part of that Major
186
+ Component, and (b) serves only to enable use of the work with that
187
+ Major Component, or to implement a Standard Interface for which an
188
+ implementation is available to the public in source code form. A
189
+ "Major Component", in this context, means a major essential component
190
+ (kernel, window system, and so on) of the specific operating system
191
+ (if any) on which the executable work runs, or a compiler used to
192
+ produce the work, or an object code interpreter used to run it.
193
+
194
+ The "Corresponding Source" for a work in object code form means all
195
+ the source code needed to generate, install, and (for an executable
196
+ work) run the object code and to modify the work, including scripts to
197
+ control those activities. However, it does not include the work's
198
+ System Libraries, or general-purpose tools or generally available free
199
+ programs which are used unmodified in performing those activities but
200
+ which are not part of the work. For example, Corresponding Source
201
+ includes interface definition files associated with source files for
202
+ the work, and the source code for shared libraries and dynamically
203
+ linked subprograms that the work is specifically designed to require,
204
+ such as by intimate data communication or control flow between those
205
+ subprograms and other parts of the work.
206
+
207
+ The Corresponding Source need not include anything that users
208
+ can regenerate automatically from other parts of the Corresponding
209
+ Source.
210
+
211
+ The Corresponding Source for a work in source code form is that
212
+ same work.
213
+
214
+ 2. Basic Permissions.
215
+
216
+ All rights granted under this License are granted for the term of
217
+ copyright on the Program, and are irrevocable provided the stated
218
+ conditions are met. This License explicitly affirms your unlimited
219
+ permission to run the unmodified Program. The output from running a
220
+ covered work is covered by this License only if the output, given its
221
+ content, constitutes a covered work. This License acknowledges your
222
+ rights of fair use or other equivalent, as provided by copyright law.
223
+
224
+ You may make, run and propagate covered works that you do not
225
+ convey, without conditions so long as your license otherwise remains
226
+ in force. You may convey covered works to others for the sole purpose
227
+ of having them make modifications exclusively for you, or provide you
228
+ with facilities for running those works, provided that you comply with
229
+ the terms of this License in conveying all material for which you do
230
+ not control copyright. Those thus making or running the covered works
231
+ for you must do so exclusively on your behalf, under your direction
232
+ and control, on terms that prohibit them from making any copies of
233
+ your copyrighted material outside their relationship with you.
234
+
235
+ Conveying under any other circumstances is permitted solely under
236
+ the conditions stated below. Sublicensing is not allowed; section 10
237
+ makes it unnecessary.
238
+
239
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
240
+
241
+ No covered work shall be deemed part of an effective technological
242
+ measure under any applicable law fulfilling obligations under article
243
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
244
+ similar laws prohibiting or restricting circumvention of such
245
+ measures.
246
+
247
+ When you convey a covered work, you waive any legal power to forbid
248
+ circumvention of technological measures to the extent such circumvention
249
+ is effected by exercising rights under this License with respect to
250
+ the covered work, and you disclaim any intention to limit operation or
251
+ modification of the work as a means of enforcing, against the work's
252
+ users, your or third parties' legal rights to forbid circumvention of
253
+ technological measures.
254
+
255
+ 4. Conveying Verbatim Copies.
256
+
257
+ You may convey verbatim copies of the Program's source code as you
258
+ receive it, in any medium, provided that you conspicuously and
259
+ appropriately publish on each copy an appropriate copyright notice;
260
+ keep intact all notices stating that this License and any
261
+ non-permissive terms added in accord with section 7 apply to the code;
262
+ keep intact all notices of the absence of any warranty; and give all
263
+ recipients a copy of this License along with the Program.
264
+
265
+ You may charge any price or no price for each copy that you convey,
266
+ and you may offer support or warranty protection for a fee.
267
+
268
+ 5. Conveying Modified Source Versions.
269
+
270
+ You may convey a work based on the Program, or the modifications to
271
+ produce it from the Program, in the form of source code under the
272
+ terms of section 4, provided that you also meet all of these conditions:
273
+
274
+ a) The work must carry prominent notices stating that you modified
275
+ it, and giving a relevant date.
276
+
277
+ b) The work must carry prominent notices stating that it is
278
+ released under this License and any conditions added under section
279
+ 7. This requirement modifies the requirement in section 4 to
280
+ "keep intact all notices".
281
+
282
+ c) You must license the entire work, as a whole, under this
283
+ License to anyone who comes into possession of a copy. This
284
+ License will therefore apply, along with any applicable section 7
285
+ additional terms, to the whole of the work, and all its parts,
286
+ regardless of how they are packaged. This License gives no
287
+ permission to license the work in any other way, but it does not
288
+ invalidate such permission if you have separately received it.
289
+
290
+ d) If the work has interactive user interfaces, each must display
291
+ Appropriate Legal Notices; however, if the Program has interactive
292
+ interfaces that do not display Appropriate Legal Notices, your
293
+ work need not make them do so.
294
+
295
+ A compilation of a covered work with other separate and independent
296
+ works, which are not by their nature extensions of the covered work,
297
+ and which are not combined with it such as to form a larger program,
298
+ in or on a volume of a storage or distribution medium, is called an
299
+ "aggregate" if the compilation and its resulting copyright are not
300
+ used to limit the access or legal rights of the compilation's users
301
+ beyond what the individual works permit. Inclusion of a covered work
302
+ in an aggregate does not cause this License to apply to the other
303
+ parts of the aggregate.
304
+
305
+ 6. Conveying Non-Source Forms.
306
+
307
+ You may convey a covered work in object code form under the terms
308
+ of sections 4 and 5, provided that you also convey the
309
+ machine-readable Corresponding Source under the terms of this License,
310
+ in one of these ways:
311
+
312
+ a) Convey the object code in, or embodied in, a physical product
313
+ (including a physical distribution medium), accompanied by the
314
+ Corresponding Source fixed on a durable physical medium
315
+ customarily used for software interchange.
316
+
317
+ b) Convey the object code in, or embodied in, a physical product
318
+ (including a physical distribution medium), accompanied by a
319
+ written offer, valid for at least three years and valid for as
320
+ long as you offer spare parts or customer support for that product
321
+ model, to give anyone who possesses the object code either (1) a
322
+ copy of the Corresponding Source for all the software in the
323
+ product that is covered by this License, on a durable physical
324
+ medium customarily used for software interchange, for a price no
325
+ more than your reasonable cost of physically performing this
326
+ conveying of source, or (2) access to copy the
327
+ Corresponding Source from a network server at no charge.
328
+
329
+ c) Convey individual copies of the object code with a copy of the
330
+ written offer to provide the Corresponding Source. This
331
+ alternative is allowed only occasionally and noncommercially, and
332
+ only if you received the object code with such an offer, in accord
333
+ with subsection 6b.
334
+
335
+ d) Convey the object code by offering access from a designated
336
+ place (gratis or for a charge), and offer equivalent access to the
337
+ Corresponding Source in the same way through the same place at no
338
+ further charge. You need not require recipients to copy the
339
+ Corresponding Source along with the object code. If the place to
340
+ copy the object code is a network server, the Corresponding Source
341
+ may be on a different server (operated by you or a third party)
342
+ that supports equivalent copying facilities, provided you maintain
343
+ clear directions next to the object code saying where to find the
344
+ Corresponding Source. Regardless of what server hosts the
345
+ Corresponding Source, you remain obligated to ensure that it is
346
+ available for as long as needed to satisfy these requirements.
347
+
348
+ e) Convey the object code using peer-to-peer transmission, provided
349
+ you inform other peers where the object code and Corresponding
350
+ Source of the work are being offered to the general public at no
351
+ charge under subsection 6d.
352
+
353
+ A separable portion of the object code, whose source code is excluded
354
+ from the Corresponding Source as a System Library, need not be
355
+ included in conveying the object code work.
356
+
357
+ A "User Product" is either (1) a "consumer product", which means any
358
+ tangible personal property which is normally used for personal, family,
359
+ or household purposes, or (2) anything designed or sold for incorporation
360
+ into a dwelling. In determining whether a product is a consumer product,
361
+ doubtful cases shall be resolved in favor of coverage. For a particular
362
+ product received by a particular user, "normally used" refers to a
363
+ typical or common use of that class of product, regardless of the status
364
+ of the particular user or of the way in which the particular user
365
+ actually uses, or expects or is expected to use, the product. A product
366
+ is a consumer product regardless of whether the product has substantial
367
+ commercial, industrial or non-consumer uses, unless such uses represent
368
+ the only significant mode of use of the product.
369
+
370
+ "Installation Information" for a User Product means any methods,
371
+ procedures, authorization keys, or other information required to install
372
+ and execute modified versions of a covered work in that User Product from
373
+ a modified version of its Corresponding Source. The information must
374
+ suffice to ensure that the continued functioning of the modified object
375
+ code is in no case prevented or interfered with solely because
376
+ modification has been made.
377
+
378
+ If you convey an object code work under this section in, or with, or
379
+ specifically for use in, a User Product, and the conveying occurs as
380
+ part of a transaction in which the right of possession and use of the
381
+ User Product is transferred to the recipient in perpetuity or for a
382
+ fixed term (regardless of how the transaction is characterized), the
383
+ Corresponding Source conveyed under this section must be accompanied
384
+ by the Installation Information. But this requirement does not apply
385
+ if neither you nor any third party retains the ability to install
386
+ modified object code on the User Product (for example, the work has
387
+ been installed in ROM).
388
+
389
+ The requirement to provide Installation Information does not include a
390
+ requirement to continue to provide support service, warranty, or updates
391
+ for a work that has been modified or installed by the recipient, or for
392
+ the User Product in which it has been modified or installed. Access to a
393
+ network may be denied when the modification itself materially and
394
+ adversely affects the operation of the network or violates the rules and
395
+ protocols for communication across the network.
396
+
397
+ Corresponding Source conveyed, and Installation Information provided,
398
+ in accord with this section must be in a format that is publicly
399
+ documented (and with an implementation available to the public in
400
+ source code form), and must require no special password or key for
401
+ unpacking, reading or copying.
402
+
403
+ 7. Additional Terms.
404
+
405
+ "Additional permissions" are terms that supplement the terms of this
406
+ License by making exceptions from one or more of its conditions.
407
+ Additional permissions that are applicable to the entire Program shall
408
+ be treated as though they were included in this License, to the extent
409
+ that they are valid under applicable law. If additional permissions
410
+ apply only to part of the Program, that part may be used separately
411
+ under those permissions, but the entire Program remains governed by
412
+ this License without regard to the additional permissions.
413
+
414
+ When you convey a copy of a covered work, you may at your option
415
+ remove any additional permissions from that copy, or from any part of
416
+ it. (Additional permissions may be written to require their own
417
+ removal in certain cases when you modify the work.) You may place
418
+ additional permissions on material, added by you to a covered work,
419
+ for which you have or can give appropriate copyright permission.
420
+
421
+ Notwithstanding any other provision of this License, for material you
422
+ add to a covered work, you may (if authorized by the copyright holders of
423
+ that material) supplement the terms of this License with terms:
424
+
425
+ a) Disclaiming warranty or limiting liability differently from the
426
+ terms of sections 15 and 16 of this License; or
427
+
428
+ b) Requiring preservation of specified reasonable legal notices or
429
+ author attributions in that material or in the Appropriate Legal
430
+ Notices displayed by works containing it; or
431
+
432
+ c) Prohibiting misrepresentation of the origin of that material, or
433
+ requiring that modified versions of such material be marked in
434
+ reasonable ways as different from the original version; or
435
+
436
+ d) Limiting the use for publicity purposes of names of licensors or
437
+ authors of the material; or
438
+
439
+ e) Declining to grant rights under trademark law for use of some
440
+ trade names, trademarks, or service marks; or
441
+
442
+ f) Requiring indemnification of licensors and authors of that
443
+ material by anyone who conveys the material (or modified versions of
444
+ it) with contractual assumptions of liability to the recipient, for
445
+ any liability that these contractual assumptions directly impose on
446
+ those licensors and authors.
447
+
448
+ All other non-permissive additional terms are considered "further
449
+ restrictions" within the meaning of section 10. If the Program as you
450
+ received it, or any part of it, contains a notice stating that it is
451
+ governed by this License along with a term that is a further
452
+ restriction, you may remove that term. If a license document contains
453
+ a further restriction but permits relicensing or conveying under this
454
+ License, you may add to a covered work material governed by the terms
455
+ of that license document, provided that the further restriction does
456
+ not survive such relicensing or conveying.
457
+
458
+ If you add terms to a covered work in accord with this section, you
459
+ must place, in the relevant source files, a statement of the
460
+ additional terms that apply to those files, or a notice indicating
461
+ where to find the applicable terms.
462
+
463
+ Additional terms, permissive or non-permissive, may be stated in the
464
+ form of a separately written license, or stated as exceptions;
465
+ the above requirements apply either way.
466
+
467
+ 8. Termination.
468
+
469
+ You may not propagate or modify a covered work except as expressly
470
+ provided under this License. Any attempt otherwise to propagate or
471
+ modify it is void, and will automatically terminate your rights under
472
+ this License (including any patent licenses granted under the third
473
+ paragraph of section 11).
474
+
475
+ However, if you cease all violation of this License, then your
476
+ license from a particular copyright holder is reinstated (a)
477
+ provisionally, unless and until the copyright holder explicitly and
478
+ finally terminates your license, and (b) permanently, if the copyright
479
+ holder fails to notify you of the violation by some reasonable means
480
+ prior to 60 days after the cessation.
481
+
482
+ Moreover, your license from a particular copyright holder is
483
+ reinstated permanently if the copyright holder notifies you of the
484
+ violation by some reasonable means, this is the first time you have
485
+ received notice of violation of this License (for any work) from that
486
+ copyright holder, and you cure the violation prior to 30 days after
487
+ your receipt of the notice.
488
+
489
+ Termination of your rights under this section does not terminate the
490
+ licenses of parties who have received copies or rights from you under
491
+ this License. If your rights have been terminated and not permanently
492
+ reinstated, you do not qualify to receive new licenses for the same
493
+ material under section 10.
494
+
495
+ 9. Acceptance Not Required for Having Copies.
496
+
497
+ You are not required to accept this License in order to receive or
498
+ run a copy of the Program. Ancillary propagation of a covered work
499
+ occurring solely as a consequence of using peer-to-peer transmission
500
+ to receive a copy likewise does not require acceptance. However,
501
+ nothing other than this License grants you permission to propagate or
502
+ modify any covered work. These actions infringe copyright if you do
503
+ not accept this License. Therefore, by modifying or propagating a
504
+ covered work, you indicate your acceptance of this License to do so.
505
+
506
+ 10. Automatic Licensing of Downstream Recipients.
507
+
508
+ Each time you convey a covered work, the recipient automatically
509
+ receives a license from the original licensors, to run, modify and
510
+ propagate that work, subject to this License. You are not responsible
511
+ for enforcing compliance by third parties with this License.
512
+
513
+ An "entity transaction" is a transaction transferring control of an
514
+ organization, or substantially all assets of one, or subdividing an
515
+ organization, or merging organizations. If propagation of a covered
516
+ work results from an entity transaction, each party to that
517
+ transaction who receives a copy of the work also receives whatever
518
+ licenses to the work the party's predecessor in interest had or could
519
+ give under the previous paragraph, plus a right to possession of the
520
+ Corresponding Source of the work from the predecessor in interest, if
521
+ the predecessor has it or can get it with reasonable efforts.
522
+
523
+ You may not impose any further restrictions on the exercise of the
524
+ rights granted or affirmed under this License. For example, you may
525
+ not impose a license fee, royalty, or other charge for exercise of
526
+ rights granted under this License, and you may not initiate litigation
527
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
528
+ any patent claim is infringed by making, using, selling, offering for
529
+ sale, or importing the Program or any portion of it.
530
+
531
+ 11. Patents.
532
+
533
+ A "contributor" is a copyright holder who authorizes use under this
534
+ License of the Program or a work on which the Program is based. The
535
+ work thus licensed is called the contributor's "contributor version".
536
+
537
+ A contributor's "essential patent claims" are all patent claims
538
+ owned or controlled by the contributor, whether already acquired or
539
+ hereafter acquired, that would be infringed by some manner, permitted
540
+ by this License, of making, using, or selling its contributor version,
541
+ but do not include claims that would be infringed only as a
542
+ consequence of further modification of the contributor version. For
543
+ purposes of this definition, "control" includes the right to grant
544
+ patent sublicenses in a manner consistent with the requirements of
545
+ this License.
546
+
547
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
548
+ patent license under the contributor's essential patent claims, to
549
+ make, use, sell, offer for sale, import and otherwise run, modify and
550
+ propagate the contents of its contributor version.
551
+
552
+ In the following three paragraphs, a "patent license" is any express
553
+ agreement or commitment, however denominated, not to enforce a patent
554
+ (such as an express permission to practice a patent or covenant not to
555
+ sue for patent infringement). To "grant" such a patent license to a
556
+ party means to make such an agreement or commitment not to enforce a
557
+ patent against the party.
558
+
559
+ If you convey a covered work, knowingly relying on a patent license,
560
+ and the Corresponding Source of the work is not available for anyone
561
+ to copy, free of charge and under the terms of this License, through a
562
+ publicly available network server or other readily accessible means,
563
+ then you must either (1) cause the Corresponding Source to be so
564
+ available, or (2) arrange to deprive yourself of the benefit of the
565
+ patent license for this particular work, or (3) arrange, in a manner
566
+ consistent with the requirements of this License, to extend the patent
567
+ license to downstream recipients. "Knowingly relying" means you have
568
+ actual knowledge that, but for the patent license, your conveying the
569
+ covered work in a country, or your recipient's use of the covered work
570
+ in a country, would infringe one or more identifiable patents in that
571
+ country that you have reason to believe are valid.
572
+
573
+ If, pursuant to or in connection with a single transaction or
574
+ arrangement, you convey, or propagate by procuring conveyance of, a
575
+ covered work, and grant a patent license to some of the parties
576
+ receiving the covered work authorizing them to use, propagate, modify
577
+ or convey a specific copy of the covered work, then the patent license
578
+ you grant is automatically extended to all recipients of the covered
579
+ work and works based on it.
580
+
581
+ A patent license is "discriminatory" if it does not include within
582
+ the scope of its coverage, prohibits the exercise of, or is
583
+ conditioned on the non-exercise of one or more of the rights that are
584
+ specifically granted under this License. You may not convey a covered
585
+ work if you are a party to an arrangement with a third party that is
586
+ in the business of distributing software, under which you make payment
587
+ to the third party based on the extent of your activity of conveying
588
+ the work, and under which the third party grants, to any of the
589
+ parties who would receive the covered work from you, a discriminatory
590
+ patent license (a) in connection with copies of the covered work
591
+ conveyed by you (or copies made from those copies), or (b) primarily
592
+ for and in connection with specific products or compilations that
593
+ contain the covered work, unless you entered into that arrangement,
594
+ or that patent license was granted, prior to 28 March 2007.
595
+
596
+ Nothing in this License shall be construed as excluding or limiting
597
+ any implied license or other defenses to infringement that may
598
+ otherwise be available to you under applicable patent law.
599
+
600
+ 12. No Surrender of Others' Freedom.
601
+
602
+ If conditions are imposed on you (whether by court order, agreement or
603
+ otherwise) that contradict the conditions of this License, they do not
604
+ excuse you from the conditions of this License. If you cannot convey a
605
+ covered work so as to satisfy simultaneously your obligations under this
606
+ License and any other pertinent obligations, then as a consequence you may
607
+ not convey it at all. For example, if you agree to terms that obligate you
608
+ to collect a royalty for further conveying from those to whom you convey
609
+ the Program, the only way you could satisfy both those terms and this
610
+ License would be to refrain entirely from conveying the Program.
611
+
612
+ 13. Remote Network Interaction; Use with the GNU General Public License.
613
+
614
+ Notwithstanding any other provision of this License, if you modify the
615
+ Program, your modified version must prominently offer all users
616
+ interacting with it remotely through a computer network (if your version
617
+ supports such interaction) an opportunity to receive the Corresponding
618
+ Source of your version by providing access to the Corresponding Source
619
+ from a network server at no charge, through some standard or customary
620
+ means of facilitating copying of software. This Corresponding Source
621
+ shall include the Corresponding Source for any work covered by version 3
622
+ of the GNU General Public License that is incorporated pursuant to the
623
+ following paragraph.
624
+
625
+ Notwithstanding any other provision of this License, you have
626
+ permission to link or combine any covered work with a work licensed
627
+ under version 3 of the GNU General Public License into a single
628
+ combined work, and to convey the resulting work. The terms of this
629
+ License will continue to apply to the part which is the covered work,
630
+ but the work with which it is combined will remain governed by version
631
+ 3 of the GNU General Public License.
632
+
633
+ 14. Revised Versions of this License.
634
+
635
+ The Free Software Foundation may publish revised and/or new versions of
636
+ the GNU Affero General Public License from time to time. Such new versions
637
+ will be similar in spirit to the present version, but may differ in detail to
638
+ address new problems or concerns.
639
+
640
+ Each version is given a distinguishing version number. If the
641
+ Program specifies that a certain numbered version of the GNU Affero General
642
+ Public License "or any later version" applies to it, you have the
643
+ option of following the terms and conditions either of that numbered
644
+ version or of any later version published by the Free Software
645
+ Foundation. If the Program does not specify a version number of the
646
+ GNU Affero General Public License, you may choose any version ever published
647
+ by the Free Software Foundation.
648
+
649
+ If the Program specifies that a proxy can decide which future
650
+ versions of the GNU Affero General Public License can be used, that proxy's
651
+ public statement of acceptance of a version permanently authorizes you
652
+ to choose that version for the Program.
653
+
654
+ Later license versions may give you additional or different
655
+ permissions. However, no additional obligations are imposed on any
656
+ author or copyright holder as a result of your choosing to follow a
657
+ later version.
658
+
659
+ 15. Disclaimer of Warranty.
660
+
661
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
662
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
663
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
664
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
665
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
666
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
667
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
668
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
669
+
670
+ 16. Limitation of Liability.
671
+
672
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
673
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
674
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
675
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
676
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
677
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
678
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
679
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
680
+ SUCH DAMAGES.
681
+
682
+ 17. Interpretation of Sections 15 and 16.
683
+
684
+ If the disclaimer of warranty and limitation of liability provided
685
+ above cannot be given local legal effect according to their terms,
686
+ reviewing courts shall apply local law that most closely approximates
687
+ an absolute waiver of all civil liability in connection with the
688
+ Program, unless a warranty or assumption of liability accompanies a
689
+ copy of the Program in return for a fee.
690
+
691
+ END OF TERMS AND CONDITIONS
692
+
693
+ How to Apply These Terms to Your New Programs
694
+
695
+ If you develop a new program, and you want it to be of the greatest
696
+ possible use to the public, the best way to achieve this is to make it
697
+ free software which everyone can redistribute and change under these terms.
698
+
699
+ To do so, attach the following notices to the program. It is safest
700
+ to attach them to the start of each source file to most effectively
701
+ state the exclusion of warranty; and each file should have at least
702
+ the "copyright" line and a pointer to where the full notice is found.
703
+
704
+ <one line to give the program's name and a brief idea of what it does.>
705
+ Copyright (C) <year> <name of author>
706
+
707
+ This program is free software: you can redistribute it and/or modify
708
+ it under the terms of the GNU Affero General Public License as published by
709
+ the Free Software Foundation, either version 3 of the License, or
710
+ (at your option) any later version.
711
+
712
+ This program is distributed in the hope that it will be useful,
713
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
714
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
715
+ GNU Affero General Public License for more details.
716
+
717
+ You should have received a copy of the GNU Affero General Public License
718
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
719
+
720
+ Also add information on how to contact you by electronic and paper mail.
721
+
722
+ If your software can interact with users remotely through a computer
723
+ network, you should also make sure that it provides a way for users to
724
+ get its source. For example, if your program is a web application, its
725
+ interface could display a "Source" link that leads users to an archive
726
+ of the code. There are many ways you could offer source, and different
727
+ solutions will be better for different programs; see section 13 for the
728
+ specific requirements.
729
+
730
+ You should also get your employer (if you work as a programmer) or school,
731
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
732
+ For more information on this, and how to apply and follow the GNU AGPL, see
733
+ <https://www.gnu.org/licenses/>.
734
+ --------------------------------------------------------------------------
735
+
736
+ GNU GENERAL PUBLIC LICENSE
737
+ Version 3, 29 June 2007
738
+
739
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
740
+ Everyone is permitted to copy and distribute verbatim copies
741
+ of this license document, but changing it is not allowed.
742
+
743
+ Preamble
744
+
745
+ The GNU General Public License is a free, copyleft license for
746
+ software and other kinds of works.
747
+
748
+ The licenses for most software and other practical works are designed
749
+ to take away your freedom to share and change the works. By contrast,
750
+ the GNU General Public License is intended to guarantee your freedom to
751
+ share and change all versions of a program--to make sure it remains free
752
+ software for all its users. We, the Free Software Foundation, use the
753
+ GNU General Public License for most of our software; it applies also to
754
+ any other work released this way by its authors. You can apply it to
755
+ your programs, too.
756
+
757
+ When we speak of free software, we are referring to freedom, not
758
+ price. Our General Public Licenses are designed to make sure that you
759
+ have the freedom to distribute copies of free software (and charge for
760
+ them if you wish), that you receive source code or can get it if you
761
+ want it, that you can change the software or use pieces of it in new
762
+ free programs, and that you know you can do these things.
763
+
764
+ To protect your rights, we need to prevent others from denying you
765
+ these rights or asking you to surrender the rights. Therefore, you have
766
+ certain responsibilities if you distribute copies of the software, or if
767
+ you modify it: responsibilities to respect the freedom of others.
768
+
769
+ For example, if you distribute copies of such a program, whether
770
+ gratis or for a fee, you must pass on to the recipients the same
771
+ freedoms that you received. You must make sure that they, too, receive
772
+ or can get the source code. And you must show them these terms so they
773
+ know their rights.
774
+
775
+ Developers that use the GNU GPL protect your rights with two steps:
776
+ (1) assert copyright on the software, and (2) offer you this License
777
+ giving you legal permission to copy, distribute and/or modify it.
778
+
779
+ For the developers' and authors' protection, the GPL clearly explains
780
+ that there is no warranty for this free software. For both users' and
781
+ authors' sake, the GPL requires that modified versions be marked as
782
+ changed, so that their problems will not be attributed erroneously to
783
+ authors of previous versions.
784
+
785
+ Some devices are designed to deny users access to install or run
786
+ modified versions of the software inside them, although the manufacturer
787
+ can do so. This is fundamentally incompatible with the aim of
788
+ protecting users' freedom to change the software. The systematic
789
+ pattern of such abuse occurs in the area of products for individuals to
790
+ use, which is precisely where it is most unacceptable. Therefore, we
791
+ have designed this version of the GPL to prohibit the practice for those
792
+ products. If such problems arise substantially in other domains, we
793
+ stand ready to extend this provision to those domains in future versions
794
+ of the GPL, as needed to protect the freedom of users.
795
+
796
+ Finally, every program is threatened constantly by software patents.
797
+ States should not allow patents to restrict development and use of
798
+ software on general-purpose computers, but in those that do, we wish to
799
+ avoid the special danger that patents applied to a free program could
800
+ make it effectively proprietary. To prevent this, the GPL assures that
801
+ patents cannot be used to render the program non-free.
802
+
803
+ The precise terms and conditions for copying, distribution and
804
+ modification follow.
805
+
806
+ TERMS AND CONDITIONS
807
+
808
+ 0. Definitions.
809
+
810
+ "This License" refers to version 3 of the GNU General Public License.
811
+
812
+ "Copyright" also means copyright-like laws that apply to other kinds of
813
+ works, such as semiconductor masks.
814
+
815
+ "The Program" refers to any copyrightable work licensed under this
816
+ License. Each licensee is addressed as "you". "Licensees" and
817
+ "recipients" may be individuals or organizations.
818
+
819
+ To "modify" a work means to copy from or adapt all or part of the work
820
+ in a fashion requiring copyright permission, other than the making of an
821
+ exact copy. The resulting work is called a "modified version" of the
822
+ earlier work or a work "based on" the earlier work.
823
+
824
+ A "covered work" means either the unmodified Program or a work based
825
+ on the Program.
826
+
827
+ To "propagate" a work means to do anything with it that, without
828
+ permission, would make you directly or secondarily liable for
829
+ infringement under applicable copyright law, except executing it on a
830
+ computer or modifying a private copy. Propagation includes copying,
831
+ distribution (with or without modification), making available to the
832
+ public, and in some countries other activities as well.
833
+
834
+ To "convey" a work means any kind of propagation that enables other
835
+ parties to make or receive copies. Mere interaction with a user through
836
+ a computer network, with no transfer of a copy, is not conveying.
837
+
838
+ An interactive user interface displays "Appropriate Legal Notices"
839
+ to the extent that it includes a convenient and prominently visible
840
+ feature that (1) displays an appropriate copyright notice, and (2)
841
+ tells the user that there is no warranty for the work (except to the
842
+ extent that warranties are provided), that licensees may convey the
843
+ work under this License, and how to view a copy of this License. If
844
+ the interface presents a list of user commands or options, such as a
845
+ menu, a prominent item in the list meets this criterion.
846
+
847
+ 1. Source Code.
848
+
849
+ The "source code" for a work means the preferred form of the work
850
+ for making modifications to it. "Object code" means any non-source
851
+ form of a work.
852
+
853
+ A "Standard Interface" means an interface that either is an official
854
+ standard defined by a recognized standards body, or, in the case of
855
+ interfaces specified for a particular programming language, one that
856
+ is widely used among developers working in that language.
857
+
858
+ The "System Libraries" of an executable work include anything, other
859
+ than the work as a whole, that (a) is included in the normal form of
860
+ packaging a Major Component, but which is not part of that Major
861
+ Component, and (b) serves only to enable use of the work with that
862
+ Major Component, or to implement a Standard Interface for which an
863
+ implementation is available to the public in source code form. A
864
+ "Major Component", in this context, means a major essential component
865
+ (kernel, window system, and so on) of the specific operating system
866
+ (if any) on which the executable work runs, or a compiler used to
867
+ produce the work, or an object code interpreter used to run it.
868
+
869
+ The "Corresponding Source" for a work in object code form means all
870
+ the source code needed to generate, install, and (for an executable
871
+ work) run the object code and to modify the work, including scripts to
872
+ control those activities. However, it does not include the work's
873
+ System Libraries, or general-purpose tools or generally available free
874
+ programs which are used unmodified in performing those activities but
875
+ which are not part of the work. For example, Corresponding Source
876
+ includes interface definition files associated with source files for
877
+ the work, and the source code for shared libraries and dynamically
878
+ linked subprograms that the work is specifically designed to require,
879
+ such as by intimate data communication or control flow between those
880
+ subprograms and other parts of the work.
881
+
882
+ The Corresponding Source need not include anything that users
883
+ can regenerate automatically from other parts of the Corresponding
884
+ Source.
885
+
886
+ The Corresponding Source for a work in source code form is that
887
+ same work.
888
+
889
+ 2. Basic Permissions.
890
+
891
+ All rights granted under this License are granted for the term of
892
+ copyright on the Program, and are irrevocable provided the stated
893
+ conditions are met. This License explicitly affirms your unlimited
894
+ permission to run the unmodified Program. The output from running a
895
+ covered work is covered by this License only if the output, given its
896
+ content, constitutes a covered work. This License acknowledges your
897
+ rights of fair use or other equivalent, as provided by copyright law.
898
+
899
+ You may make, run and propagate covered works that you do not
900
+ convey, without conditions so long as your license otherwise remains
901
+ in force. You may convey covered works to others for the sole purpose
902
+ of having them make modifications exclusively for you, or provide you
903
+ with facilities for running those works, provided that you comply with
904
+ the terms of this License in conveying all material for which you do
905
+ not control copyright. Those thus making or running the covered works
906
+ for you must do so exclusively on your behalf, under your direction
907
+ and control, on terms that prohibit them from making any copies of
908
+ your copyrighted material outside their relationship with you.
909
+
910
+ Conveying under any other circumstances is permitted solely under
911
+ the conditions stated below. Sublicensing is not allowed; section 10
912
+ makes it unnecessary.
913
+
914
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
915
+
916
+ No covered work shall be deemed part of an effective technological
917
+ measure under any applicable law fulfilling obligations under article
918
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
919
+ similar laws prohibiting or restricting circumvention of such
920
+ measures.
921
+
922
+ When you convey a covered work, you waive any legal power to forbid
923
+ circumvention of technological measures to the extent such circumvention
924
+ is effected by exercising rights under this License with respect to
925
+ the covered work, and you disclaim any intention to limit operation or
926
+ modification of the work as a means of enforcing, against the work's
927
+ users, your or third parties' legal rights to forbid circumvention of
928
+ technological measures.
929
+
930
+ 4. Conveying Verbatim Copies.
931
+
932
+ You may convey verbatim copies of the Program's source code as you
933
+ receive it, in any medium, provided that you conspicuously and
934
+ appropriately publish on each copy an appropriate copyright notice;
935
+ keep intact all notices stating that this License and any
936
+ non-permissive terms added in accord with section 7 apply to the code;
937
+ keep intact all notices of the absence of any warranty; and give all
938
+ recipients a copy of this License along with the Program.
939
+
940
+ You may charge any price or no price for each copy that you convey,
941
+ and you may offer support or warranty protection for a fee.
942
+
943
+ 5. Conveying Modified Source Versions.
944
+
945
+ You may convey a work based on the Program, or the modifications to
946
+ produce it from the Program, in the form of source code under the
947
+ terms of section 4, provided that you also meet all of these conditions:
948
+
949
+ a) The work must carry prominent notices stating that you modified
950
+ it, and giving a relevant date.
951
+
952
+ b) The work must carry prominent notices stating that it is
953
+ released under this License and any conditions added under section
954
+ 7. This requirement modifies the requirement in section 4 to
955
+ "keep intact all notices".
956
+
957
+ c) You must license the entire work, as a whole, under this
958
+ License to anyone who comes into possession of a copy. This
959
+ License will therefore apply, along with any applicable section 7
960
+ additional terms, to the whole of the work, and all its parts,
961
+ regardless of how they are packaged. This License gives no
962
+ permission to license the work in any other way, but it does not
963
+ invalidate such permission if you have separately received it.
964
+
965
+ d) If the work has interactive user interfaces, each must display
966
+ Appropriate Legal Notices; however, if the Program has interactive
967
+ interfaces that do not display Appropriate Legal Notices, your
968
+ work need not make them do so.
969
+
970
+ A compilation of a covered work with other separate and independent
971
+ works, which are not by their nature extensions of the covered work,
972
+ and which are not combined with it such as to form a larger program,
973
+ in or on a volume of a storage or distribution medium, is called an
974
+ "aggregate" if the compilation and its resulting copyright are not
975
+ used to limit the access or legal rights of the compilation's users
976
+ beyond what the individual works permit. Inclusion of a covered work
977
+ in an aggregate does not cause this License to apply to the other
978
+ parts of the aggregate.
979
+
980
+ 6. Conveying Non-Source Forms.
981
+
982
+ You may convey a covered work in object code form under the terms
983
+ of sections 4 and 5, provided that you also convey the
984
+ machine-readable Corresponding Source under the terms of this License,
985
+ in one of these ways:
986
+
987
+ a) Convey the object code in, or embodied in, a physical product
988
+ (including a physical distribution medium), accompanied by the
989
+ Corresponding Source fixed on a durable physical medium
990
+ customarily used for software interchange.
991
+
992
+ b) Convey the object code in, or embodied in, a physical product
993
+ (including a physical distribution medium), accompanied by a
994
+ written offer, valid for at least three years and valid for as
995
+ long as you offer spare parts or customer support for that product
996
+ model, to give anyone who possesses the object code either (1) a
997
+ copy of the Corresponding Source for all the software in the
998
+ product that is covered by this License, on a durable physical
999
+ medium customarily used for software interchange, for a price no
1000
+ more than your reasonable cost of physically performing this
1001
+ conveying of source, or (2) access to copy the
1002
+ Corresponding Source from a network server at no charge.
1003
+
1004
+ c) Convey individual copies of the object code with a copy of the
1005
+ written offer to provide the Corresponding Source. This
1006
+ alternative is allowed only occasionally and noncommercially, and
1007
+ only if you received the object code with such an offer, in accord
1008
+ with subsection 6b.
1009
+
1010
+ d) Convey the object code by offering access from a designated
1011
+ place (gratis or for a charge), and offer equivalent access to the
1012
+ Corresponding Source in the same way through the same place at no
1013
+ further charge. You need not require recipients to copy the
1014
+ Corresponding Source along with the object code. If the place to
1015
+ copy the object code is a network server, the Corresponding Source
1016
+ may be on a different server (operated by you or a third party)
1017
+ that supports equivalent copying facilities, provided you maintain
1018
+ clear directions next to the object code saying where to find the
1019
+ Corresponding Source. Regardless of what server hosts the
1020
+ Corresponding Source, you remain obligated to ensure that it is
1021
+ available for as long as needed to satisfy these requirements.
1022
+
1023
+ e) Convey the object code using peer-to-peer transmission, provided
1024
+ you inform other peers where the object code and Corresponding
1025
+ Source of the work are being offered to the general public at no
1026
+ charge under subsection 6d.
1027
+
1028
+ A separable portion of the object code, whose source code is excluded
1029
+ from the Corresponding Source as a System Library, need not be
1030
+ included in conveying the object code work.
1031
+
1032
+ A "User Product" is either (1) a "consumer product", which means any
1033
+ tangible personal property which is normally used for personal, family,
1034
+ or household purposes, or (2) anything designed or sold for incorporation
1035
+ into a dwelling. In determining whether a product is a consumer product,
1036
+ doubtful cases shall be resolved in favor of coverage. For a particular
1037
+ product received by a particular user, "normally used" refers to a
1038
+ typical or common use of that class of product, regardless of the status
1039
+ of the particular user or of the way in which the particular user
1040
+ actually uses, or expects or is expected to use, the product. A product
1041
+ is a consumer product regardless of whether the product has substantial
1042
+ commercial, industrial or non-consumer uses, unless such uses represent
1043
+ the only significant mode of use of the product.
1044
+
1045
+ "Installation Information" for a User Product means any methods,
1046
+ procedures, authorization keys, or other information required to install
1047
+ and execute modified versions of a covered work in that User Product from
1048
+ a modified version of its Corresponding Source. The information must
1049
+ suffice to ensure that the continued functioning of the modified object
1050
+ code is in no case prevented or interfered with solely because
1051
+ modification has been made.
1052
+
1053
+ If you convey an object code work under this section in, or with, or
1054
+ specifically for use in, a User Product, and the conveying occurs as
1055
+ part of a transaction in which the right of possession and use of the
1056
+ User Product is transferred to the recipient in perpetuity or for a
1057
+ fixed term (regardless of how the transaction is characterized), the
1058
+ Corresponding Source conveyed under this section must be accompanied
1059
+ by the Installation Information. But this requirement does not apply
1060
+ if neither you nor any third party retains the ability to install
1061
+ modified object code on the User Product (for example, the work has
1062
+ been installed in ROM).
1063
+
1064
+ The requirement to provide Installation Information does not include a
1065
+ requirement to continue to provide support service, warranty, or updates
1066
+ for a work that has been modified or installed by the recipient, or for
1067
+ the User Product in which it has been modified or installed. Access to a
1068
+ network may be denied when the modification itself materially and
1069
+ adversely affects the operation of the network or violates the rules and
1070
+ protocols for communication across the network.
1071
+
1072
+ Corresponding Source conveyed, and Installation Information provided,
1073
+ in accord with this section must be in a format that is publicly
1074
+ documented (and with an implementation available to the public in
1075
+ source code form), and must require no special password or key for
1076
+ unpacking, reading or copying.
1077
+
1078
+ 7. Additional Terms.
1079
+
1080
+ "Additional permissions" are terms that supplement the terms of this
1081
+ License by making exceptions from one or more of its conditions.
1082
+ Additional permissions that are applicable to the entire Program shall
1083
+ be treated as though they were included in this License, to the extent
1084
+ that they are valid under applicable law. If additional permissions
1085
+ apply only to part of the Program, that part may be used separately
1086
+ under those permissions, but the entire Program remains governed by
1087
+ this License without regard to the additional permissions.
1088
+
1089
+ When you convey a copy of a covered work, you may at your option
1090
+ remove any additional permissions from that copy, or from any part of
1091
+ it. (Additional permissions may be written to require their own
1092
+ removal in certain cases when you modify the work.) You may place
1093
+ additional permissions on material, added by you to a covered work,
1094
+ for which you have or can give appropriate copyright permission.
1095
+
1096
+ Notwithstanding any other provision of this License, for material you
1097
+ add to a covered work, you may (if authorized by the copyright holders of
1098
+ that material) supplement the terms of this License with terms:
1099
+
1100
+ a) Disclaiming warranty or limiting liability differently from the
1101
+ terms of sections 15 and 16 of this License; or
1102
+
1103
+ b) Requiring preservation of specified reasonable legal notices or
1104
+ author attributions in that material or in the Appropriate Legal
1105
+ Notices displayed by works containing it; or
1106
+
1107
+ c) Prohibiting misrepresentation of the origin of that material, or
1108
+ requiring that modified versions of such material be marked in
1109
+ reasonable ways as different from the original version; or
1110
+
1111
+ d) Limiting the use for publicity purposes of names of licensors or
1112
+ authors of the material; or
1113
+
1114
+ e) Declining to grant rights under trademark law for use of some
1115
+ trade names, trademarks, or service marks; or
1116
+
1117
+ f) Requiring indemnification of licensors and authors of that
1118
+ material by anyone who conveys the material (or modified versions of
1119
+ it) with contractual assumptions of liability to the recipient, for
1120
+ any liability that these contractual assumptions directly impose on
1121
+ those licensors and authors.
1122
+
1123
+ All other non-permissive additional terms are considered "further
1124
+ restrictions" within the meaning of section 10. If the Program as you
1125
+ received it, or any part of it, contains a notice stating that it is
1126
+ governed by this License along with a term that is a further
1127
+ restriction, you may remove that term. If a license document contains
1128
+ a further restriction but permits relicensing or conveying under this
1129
+ License, you may add to a covered work material governed by the terms
1130
+ of that license document, provided that the further restriction does
1131
+ not survive such relicensing or conveying.
1132
+
1133
+ If you add terms to a covered work in accord with this section, you
1134
+ must place, in the relevant source files, a statement of the
1135
+ additional terms that apply to those files, or a notice indicating
1136
+ where to find the applicable terms.
1137
+
1138
+ Additional terms, permissive or non-permissive, may be stated in the
1139
+ form of a separately written license, or stated as exceptions;
1140
+ the above requirements apply either way.
1141
+
1142
+ 8. Termination.
1143
+
1144
+ You may not propagate or modify a covered work except as expressly
1145
+ provided under this License. Any attempt otherwise to propagate or
1146
+ modify it is void, and will automatically terminate your rights under
1147
+ this License (including any patent licenses granted under the third
1148
+ paragraph of section 11).
1149
+
1150
+ However, if you cease all violation of this License, then your
1151
+ license from a particular copyright holder is reinstated (a)
1152
+ provisionally, unless and until the copyright holder explicitly and
1153
+ finally terminates your license, and (b) permanently, if the copyright
1154
+ holder fails to notify you of the violation by some reasonable means
1155
+ prior to 60 days after the cessation.
1156
+
1157
+ Moreover, your license from a particular copyright holder is
1158
+ reinstated permanently if the copyright holder notifies you of the
1159
+ violation by some reasonable means, this is the first time you have
1160
+ received notice of violation of this License (for any work) from that
1161
+ copyright holder, and you cure the violation prior to 30 days after
1162
+ your receipt of the notice.
1163
+
1164
+ Termination of your rights under this section does not terminate the
1165
+ licenses of parties who have received copies or rights from you under
1166
+ this License. If your rights have been terminated and not permanently
1167
+ reinstated, you do not qualify to receive new licenses for the same
1168
+ material under section 10.
1169
+
1170
+ 9. Acceptance Not Required for Having Copies.
1171
+
1172
+ You are not required to accept this License in order to receive or
1173
+ run a copy of the Program. Ancillary propagation of a covered work
1174
+ occurring solely as a consequence of using peer-to-peer transmission
1175
+ to receive a copy likewise does not require acceptance. However,
1176
+ nothing other than this License grants you permission to propagate or
1177
+ modify any covered work. These actions infringe copyright if you do
1178
+ not accept this License. Therefore, by modifying or propagating a
1179
+ covered work, you indicate your acceptance of this License to do so.
1180
+
1181
+ 10. Automatic Licensing of Downstream Recipients.
1182
+
1183
+ Each time you convey a covered work, the recipient automatically
1184
+ receives a license from the original licensors, to run, modify and
1185
+ propagate that work, subject to this License. You are not responsible
1186
+ for enforcing compliance by third parties with this License.
1187
+
1188
+ An "entity transaction" is a transaction transferring control of an
1189
+ organization, or substantially all assets of one, or subdividing an
1190
+ organization, or merging organizations. If propagation of a covered
1191
+ work results from an entity transaction, each party to that
1192
+ transaction who receives a copy of the work also receives whatever
1193
+ licenses to the work the party's predecessor in interest had or could
1194
+ give under the previous paragraph, plus a right to possession of the
1195
+ Corresponding Source of the work from the predecessor in interest, if
1196
+ the predecessor has it or can get it with reasonable efforts.
1197
+
1198
+ You may not impose any further restrictions on the exercise of the
1199
+ rights granted or affirmed under this License. For example, you may
1200
+ not impose a license fee, royalty, or other charge for exercise of
1201
+ rights granted under this License, and you may not initiate litigation
1202
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
1203
+ any patent claim is infringed by making, using, selling, offering for
1204
+ sale, or importing the Program or any portion of it.
1205
+
1206
+ 11. Patents.
1207
+
1208
+ A "contributor" is a copyright holder who authorizes use under this
1209
+ License of the Program or a work on which the Program is based. The
1210
+ work thus licensed is called the contributor's "contributor version".
1211
+
1212
+ A contributor's "essential patent claims" are all patent claims
1213
+ owned or controlled by the contributor, whether already acquired or
1214
+ hereafter acquired, that would be infringed by some manner, permitted
1215
+ by this License, of making, using, or selling its contributor version,
1216
+ but do not include claims that would be infringed only as a
1217
+ consequence of further modification of the contributor version. For
1218
+ purposes of this definition, "control" includes the right to grant
1219
+ patent sublicenses in a manner consistent with the requirements of
1220
+ this License.
1221
+
1222
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
1223
+ patent license under the contributor's essential patent claims, to
1224
+ make, use, sell, offer for sale, import and otherwise run, modify and
1225
+ propagate the contents of its contributor version.
1226
+
1227
+ In the following three paragraphs, a "patent license" is any express
1228
+ agreement or commitment, however denominated, not to enforce a patent
1229
+ (such as an express permission to practice a patent or covenant not to
1230
+ sue for patent infringement). To "grant" such a patent license to a
1231
+ party means to make such an agreement or commitment not to enforce a
1232
+ patent against the party.
1233
+
1234
+ If you convey a covered work, knowingly relying on a patent license,
1235
+ and the Corresponding Source of the work is not available for anyone
1236
+ to copy, free of charge and under the terms of this License, through a
1237
+ publicly available network server or other readily accessible means,
1238
+ then you must either (1) cause the Corresponding Source to be so
1239
+ available, or (2) arrange to deprive yourself of the benefit of the
1240
+ patent license for this particular work, or (3) arrange, in a manner
1241
+ consistent with the requirements of this License, to extend the patent
1242
+ license to downstream recipients. "Knowingly relying" means you have
1243
+ actual knowledge that, but for the patent license, your conveying the
1244
+ covered work in a country, or your recipient's use of the covered work
1245
+ in a country, would infringe one or more identifiable patents in that
1246
+ country that you have reason to believe are valid.
1247
+
1248
+ If, pursuant to or in connection with a single transaction or
1249
+ arrangement, you convey, or propagate by procuring conveyance of, a
1250
+ covered work, and grant a patent license to some of the parties
1251
+ receiving the covered work authorizing them to use, propagate, modify
1252
+ or convey a specific copy of the covered work, then the patent license
1253
+ you grant is automatically extended to all recipients of the covered
1254
+ work and works based on it.
1255
+
1256
+ A patent license is "discriminatory" if it does not include within
1257
+ the scope of its coverage, prohibits the exercise of, or is
1258
+ conditioned on the non-exercise of one or more of the rights that are
1259
+ specifically granted under this License. You may not convey a covered
1260
+ work if you are a party to an arrangement with a third party that is
1261
+ in the business of distributing software, under which you make payment
1262
+ to the third party based on the extent of your activity of conveying
1263
+ the work, and under which the third party grants, to any of the
1264
+ parties who would receive the covered work from you, a discriminatory
1265
+ patent license (a) in connection with copies of the covered work
1266
+ conveyed by you (or copies made from those copies), or (b) primarily
1267
+ for and in connection with specific products or compilations that
1268
+ contain the covered work, unless you entered into that arrangement,
1269
+ or that patent license was granted, prior to 28 March 2007.
1270
+
1271
+ Nothing in this License shall be construed as excluding or limiting
1272
+ any implied license or other defenses to infringement that may
1273
+ otherwise be available to you under applicable patent law.
1274
+
1275
+ 12. No Surrender of Others' Freedom.
1276
+
1277
+ If conditions are imposed on you (whether by court order, agreement or
1278
+ otherwise) that contradict the conditions of this License, they do not
1279
+ excuse you from the conditions of this License. If you cannot convey a
1280
+ covered work so as to satisfy simultaneously your obligations under this
1281
+ License and any other pertinent obligations, then as a consequence you may
1282
+ not convey it at all. For example, if you agree to terms that obligate you
1283
+ to collect a royalty for further conveying from those to whom you convey
1284
+ the Program, the only way you could satisfy both those terms and this
1285
+ License would be to refrain entirely from conveying the Program.
1286
+
1287
+ 13. Use with the GNU Affero General Public License.
1288
+
1289
+ Notwithstanding any other provision of this License, you have
1290
+ permission to link or combine any covered work with a work licensed
1291
+ under version 3 of the GNU Affero General Public License into a single
1292
+ combined work, and to convey the resulting work. The terms of this
1293
+ License will continue to apply to the part which is the covered work,
1294
+ but the special requirements of the GNU Affero General Public License,
1295
+ section 13, concerning interaction through a network will apply to the
1296
+ combination as such.
1297
+
1298
+ 14. Revised Versions of this License.
1299
+
1300
+ The Free Software Foundation may publish revised and/or new versions of
1301
+ the GNU General Public License from time to time. Such new versions will
1302
+ be similar in spirit to the present version, but may differ in detail to
1303
+ address new problems or concerns.
1304
+
1305
+ Each version is given a distinguishing version number. If the
1306
+ Program specifies that a certain numbered version of the GNU General
1307
+ Public License "or any later version" applies to it, you have the
1308
+ option of following the terms and conditions either of that numbered
1309
+ version or of any later version published by the Free Software
1310
+ Foundation. If the Program does not specify a version number of the
1311
+ GNU General Public License, you may choose any version ever published
1312
+ by the Free Software Foundation.
1313
+
1314
+ If the Program specifies that a proxy can decide which future
1315
+ versions of the GNU General Public License can be used, that proxy's
1316
+ public statement of acceptance of a version permanently authorizes you
1317
+ to choose that version for the Program.
1318
+
1319
+ Later license versions may give you additional or different
1320
+ permissions. However, no additional obligations are imposed on any
1321
+ author or copyright holder as a result of your choosing to follow a
1322
+ later version.
1323
+
1324
+ 15. Disclaimer of Warranty.
1325
+
1326
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
1327
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
1328
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
1329
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
1330
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1331
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
1332
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
1333
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
1334
+
1335
+ 16. Limitation of Liability.
1336
+
1337
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
1338
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
1339
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
1340
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
1341
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
1342
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
1343
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
1344
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
1345
+ SUCH DAMAGES.
1346
+
1347
+ 17. Interpretation of Sections 15 and 16.
1348
+
1349
+ If the disclaimer of warranty and limitation of liability provided
1350
+ above cannot be given local legal effect according to their terms,
1351
+ reviewing courts shall apply local law that most closely approximates
1352
+ an absolute waiver of all civil liability in connection with the
1353
+ Program, unless a warranty or assumption of liability accompanies a
1354
+ copy of the Program in return for a fee.
1355
+
1356
+ END OF TERMS AND CONDITIONS
1357
+
1358
+ How to Apply These Terms to Your New Programs
1359
+
1360
+ If you develop a new program, and you want it to be of the greatest
1361
+ possible use to the public, the best way to achieve this is to make it
1362
+ free software which everyone can redistribute and change under these terms.
1363
+
1364
+ To do so, attach the following notices to the program. It is safest
1365
+ to attach them to the start of each source file to most effectively
1366
+ state the exclusion of warranty; and each file should have at least
1367
+ the "copyright" line and a pointer to where the full notice is found.
1368
+
1369
+ <one line to give the program's name and a brief idea of what it does.>
1370
+ Copyright (C) <year> <name of author>
1371
+
1372
+ This program is free software: you can redistribute it and/or modify
1373
+ it under the terms of the GNU General Public License as published by
1374
+ the Free Software Foundation, either version 3 of the License, or
1375
+ (at your option) any later version.
1376
+
1377
+ This program is distributed in the hope that it will be useful,
1378
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1379
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1380
+ GNU General Public License for more details.
1381
+
1382
+ You should have received a copy of the GNU General Public License
1383
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
1384
+
1385
+ Also add information on how to contact you by electronic and paper mail.
1386
+
1387
+ If the program does terminal interaction, make it output a short
1388
+ notice like this when it starts in an interactive mode:
1389
+
1390
+ <program> Copyright (C) <year> <name of author>
1391
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
1392
+ This is free software, and you are welcome to redistribute it
1393
+ under certain conditions; type `show c' for details.
1394
+
1395
+ The hypothetical commands `show w' and `show c' should show the appropriate
1396
+ parts of the General Public License. Of course, your program's commands
1397
+ might be different; for a GUI interface, you would use an "about box".
1398
+
1399
+ You should also get your employer (if you work as a programmer) or school,
1400
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
1401
+ For more information on this, and how to apply and follow the GNU GPL, see
1402
+ <https://www.gnu.org/licenses/>.
1403
+
1404
+ The GNU General Public License does not permit incorporating your program
1405
+ into proprietary programs. If your program is a subroutine library, you
1406
+ may consider it more useful to permit linking proprietary applications with
1407
+ the library. If this is what you want to do, use the GNU Lesser General
1408
+ Public License instead of this License. But first, please read
1409
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.