mepcli 1.3.2 → 2.0.0-beta.1
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.
- package/README.md +11 -2
- package/dist/{ansi.js → src/ansi.js} +17 -9
- package/dist/src/ansi.js.map +1 -0
- package/dist/{base.js → src/base.js} +82 -70
- package/dist/src/base.js.map +1 -0
- package/dist/{core.js → src/core.js} +266 -320
- package/dist/src/core.js.map +1 -0
- package/dist/src/data/countries.js +569 -0
- package/dist/src/data/countries.js.map +1 -0
- package/dist/src/data/licenses.js +480 -0
- package/dist/src/data/licenses.js.map +1 -0
- package/dist/{highlight.js → src/highlight.js} +77 -69
- package/dist/src/highlight.js.map +1 -0
- package/dist/src/index.js +66 -0
- package/dist/src/index.js.map +1 -0
- package/dist/{input.js → src/input.js} +47 -41
- package/dist/src/input.js.map +1 -0
- package/dist/src/pipeline.js +273 -0
- package/dist/src/pipeline.js.map +1 -0
- package/dist/{prompts → src/prompts}/autocomplete.js +58 -57
- package/dist/src/prompts/autocomplete.js.map +1 -0
- package/dist/{prompts → src/prompts}/box.js +86 -53
- package/dist/src/prompts/box.js.map +1 -0
- package/dist/{prompts → src/prompts}/breadcrumb-search.js +110 -98
- package/dist/src/prompts/breadcrumb-search.js.map +1 -0
- package/dist/{prompts → src/prompts}/breadcrumb.js +126 -121
- package/dist/src/prompts/breadcrumb.js.map +1 -0
- package/dist/{prompts → src/prompts}/byte.js +69 -52
- package/dist/src/prompts/byte.js.map +1 -0
- package/dist/{prompts → src/prompts}/calculator.js +79 -56
- package/dist/src/prompts/calculator.js.map +1 -0
- package/dist/{prompts → src/prompts}/calendar.js +167 -127
- package/dist/src/prompts/calendar.js.map +1 -0
- package/dist/{prompts → src/prompts}/checkbox.js +53 -49
- package/dist/src/prompts/checkbox.js.map +1 -0
- package/dist/{prompts → src/prompts}/code.js +88 -76
- package/dist/src/prompts/code.js.map +1 -0
- package/dist/{prompts → src/prompts}/color.js +68 -50
- package/dist/src/prompts/color.js.map +1 -0
- package/dist/{prompts → src/prompts}/confirm.js +22 -15
- package/dist/src/prompts/confirm.js.map +1 -0
- package/dist/{prompts → src/prompts}/connection-string.js +59 -36
- package/dist/src/prompts/connection-string.js.map +1 -0
- package/dist/{prompts → src/prompts}/cron.js +90 -59
- package/dist/src/prompts/cron.js.map +1 -0
- package/dist/src/prompts/curl-utils.js +71 -0
- package/dist/src/prompts/curl-utils.js.map +1 -0
- package/dist/{prompts → src/prompts}/curl.js +153 -132
- package/dist/src/prompts/curl.js.map +1 -0
- package/dist/{prompts → src/prompts}/data-inspector.js +96 -91
- package/dist/src/prompts/data-inspector.js.map +1 -0
- package/dist/{prompts → src/prompts}/date.js +64 -57
- package/dist/src/prompts/date.js.map +1 -0
- package/dist/{prompts → src/prompts}/dependency.js +84 -80
- package/dist/src/prompts/dependency.js.map +1 -0
- package/dist/{prompts → src/prompts}/dial.js +49 -35
- package/dist/src/prompts/dial.js.map +1 -0
- package/dist/src/prompts/diff.js +118 -0
- package/dist/src/prompts/diff.js.map +1 -0
- package/dist/{prompts → src/prompts}/draw.js +83 -80
- package/dist/src/prompts/draw.js.map +1 -0
- package/dist/src/prompts/editor.js +234 -0
- package/dist/src/prompts/editor.js.map +1 -0
- package/dist/{prompts → src/prompts}/emoji.js +80 -82
- package/dist/src/prompts/emoji.js.map +1 -0
- package/dist/{prompts → src/prompts}/exec.js +60 -46
- package/dist/src/prompts/exec.js.map +1 -0
- package/dist/src/prompts/file.js +217 -0
- package/dist/src/prompts/file.js.map +1 -0
- package/dist/{prompts → src/prompts}/form.js +63 -54
- package/dist/src/prompts/form.js.map +1 -0
- package/dist/{prompts → src/prompts}/fuzzy-multi-column.js +65 -53
- package/dist/src/prompts/fuzzy-multi-column.js.map +1 -0
- package/dist/{prompts → src/prompts}/fuzzy.js +66 -55
- package/dist/src/prompts/fuzzy.js.map +1 -0
- package/dist/src/prompts/gauge.js +137 -0
- package/dist/src/prompts/gauge.js.map +1 -0
- package/dist/{prompts → src/prompts}/grid.js +70 -57
- package/dist/src/prompts/grid.js.map +1 -0
- package/dist/{prompts → src/prompts}/heatmap.js +70 -64
- package/dist/src/prompts/heatmap.js.map +1 -0
- package/dist/{prompts → src/prompts}/ip.js +56 -36
- package/dist/src/prompts/ip.js.map +1 -0
- package/dist/{prompts → src/prompts}/kanban.js +63 -58
- package/dist/src/prompts/kanban.js.map +1 -0
- package/dist/src/prompts/keypress.js +54 -0
- package/dist/src/prompts/keypress.js.map +1 -0
- package/dist/src/prompts/license.js +144 -0
- package/dist/src/prompts/license.js.map +1 -0
- package/dist/{prompts → src/prompts}/list.js +46 -31
- package/dist/src/prompts/list.js.map +1 -0
- package/dist/{prompts → src/prompts}/map.js +93 -77
- package/dist/src/prompts/map.js.map +1 -0
- package/dist/{prompts → src/prompts}/match.js +91 -95
- package/dist/src/prompts/match.js.map +1 -0
- package/dist/{prompts → src/prompts}/miller.js +74 -67
- package/dist/src/prompts/miller.js.map +1 -0
- package/dist/{prompts → src/prompts}/multi-column-select.js +54 -44
- package/dist/src/prompts/multi-column-select.js.map +1 -0
- package/dist/{prompts → src/prompts}/multi-range.js +70 -52
- package/dist/src/prompts/multi-range.js.map +1 -0
- package/dist/{prompts → src/prompts}/multi-select.js +67 -58
- package/dist/src/prompts/multi-select.js.map +1 -0
- package/dist/{prompts → src/prompts}/number.js +51 -39
- package/dist/src/prompts/number.js.map +1 -0
- package/dist/{prompts → src/prompts}/otp.js +43 -27
- package/dist/src/prompts/otp.js.map +1 -0
- package/dist/{prompts → src/prompts}/pattern.js +74 -71
- package/dist/src/prompts/pattern.js.map +1 -0
- package/dist/{prompts → src/prompts}/phone.js +107 -118
- package/dist/src/prompts/phone.js.map +1 -0
- package/dist/src/prompts/quiz-select.js +114 -0
- package/dist/src/prompts/quiz-select.js.map +1 -0
- package/dist/src/prompts/quiz-text.js +98 -0
- package/dist/src/prompts/quiz-text.js.map +1 -0
- package/dist/{prompts → src/prompts}/range.js +85 -61
- package/dist/src/prompts/range.js.map +1 -0
- package/dist/{prompts → src/prompts}/rating.js +29 -24
- package/dist/src/prompts/rating.js.map +1 -0
- package/dist/{prompts → src/prompts}/regex.js +50 -36
- package/dist/src/prompts/regex.js.map +1 -0
- package/dist/{prompts → src/prompts}/region.js +62 -56
- package/dist/src/prompts/region.js.map +1 -0
- package/dist/{prompts → src/prompts}/schedule.js +82 -75
- package/dist/src/prompts/schedule.js.map +1 -0
- package/dist/{prompts → src/prompts}/scroll.js +61 -58
- package/dist/src/prompts/scroll.js.map +1 -0
- package/dist/src/prompts/seat.js +164 -0
- package/dist/src/prompts/seat.js.map +1 -0
- package/dist/{prompts → src/prompts}/select-range.js +58 -46
- package/dist/src/prompts/select-range.js.map +1 -0
- package/dist/{prompts → src/prompts}/select.js +65 -66
- package/dist/src/prompts/select.js.map +1 -0
- package/dist/{prompts → src/prompts}/semver.js +24 -13
- package/dist/src/prompts/semver.js.map +1 -0
- package/dist/src/prompts/shortcut.js +133 -0
- package/dist/src/prompts/shortcut.js.map +1 -0
- package/dist/{prompts → src/prompts}/slider.js +28 -23
- package/dist/src/prompts/slider.js.map +1 -0
- package/dist/src/prompts/slot.js +117 -0
- package/dist/src/prompts/slot.js.map +1 -0
- package/dist/{prompts → src/prompts}/snippet.js +82 -61
- package/dist/src/prompts/snippet.js.map +1 -0
- package/dist/{prompts → src/prompts}/sort-grid.js +64 -59
- package/dist/src/prompts/sort-grid.js.map +1 -0
- package/dist/{prompts → src/prompts}/sort.js +59 -49
- package/dist/src/prompts/sort.js.map +1 -0
- package/dist/src/prompts/spam.js +80 -0
- package/dist/src/prompts/spam.js.map +1 -0
- package/dist/{prompts → src/prompts}/spreadsheet.js +71 -70
- package/dist/src/prompts/spreadsheet.js.map +1 -0
- package/dist/{prompts → src/prompts}/table.js +52 -38
- package/dist/src/prompts/table.js.map +1 -0
- package/dist/{prompts → src/prompts}/text.js +74 -70
- package/dist/src/prompts/text.js.map +1 -0
- package/dist/{prompts → src/prompts}/time.js +105 -96
- package/dist/src/prompts/time.js.map +1 -0
- package/dist/src/prompts/toggle.js +53 -0
- package/dist/src/prompts/toggle.js.map +1 -0
- package/dist/{prompts → src/prompts}/transfer.js +71 -67
- package/dist/src/prompts/transfer.js.map +1 -0
- package/dist/{prompts → src/prompts}/tree-select.js +83 -86
- package/dist/src/prompts/tree-select.js.map +1 -0
- package/dist/{prompts → src/prompts}/tree.js +69 -67
- package/dist/src/prompts/tree.js.map +1 -0
- package/dist/src/prompts/wait.js +79 -0
- package/dist/src/prompts/wait.js.map +1 -0
- package/dist/src/spinner.js +105 -0
- package/dist/src/spinner.js.map +1 -0
- package/dist/{symbols.js → src/symbols.js} +32 -7
- package/dist/src/symbols.js.map +1 -0
- package/dist/{tasks.js → src/tasks.js} +104 -79
- package/dist/src/tasks.js.map +1 -0
- package/dist/src/theme.js +29 -0
- package/dist/src/theme.js.map +1 -0
- package/dist/src/types.js +8 -0
- package/dist/src/types.js.map +1 -0
- package/dist/{utils.js → src/utils.js} +196 -152
- package/dist/src/utils.js.map +1 -0
- package/package.json +16 -13
- package/dist/ansi.d.ts +0 -36
- package/dist/base.d.ts +0 -60
- package/dist/core.d.ts +0 -1072
- package/dist/data/countries.d.ts +0 -2
- package/dist/data/countries.js +0 -105
- package/dist/data/licenses.d.ts +0 -2
- package/dist/data/licenses.js +0 -109
- package/dist/highlight.d.ts +0 -7
- package/dist/index.d.ts +0 -48
- package/dist/index.js +0 -64
- package/dist/input.d.ts +0 -14
- package/dist/pipeline.d.ts +0 -39
- package/dist/pipeline.js +0 -54
- package/dist/prompts/autocomplete.d.ts +0 -22
- package/dist/prompts/box.d.ts +0 -21
- package/dist/prompts/breadcrumb-search.d.ts +0 -14
- package/dist/prompts/breadcrumb.d.ts +0 -32
- package/dist/prompts/byte.d.ts +0 -13
- package/dist/prompts/calculator.d.ts +0 -17
- package/dist/prompts/calendar.d.ts +0 -33
- package/dist/prompts/checkbox.d.ts +0 -13
- package/dist/prompts/code.d.ts +0 -19
- package/dist/prompts/color.d.ts +0 -14
- package/dist/prompts/confirm.d.ts +0 -8
- package/dist/prompts/connection-string.d.ts +0 -18
- package/dist/prompts/cron.d.ts +0 -13
- package/dist/prompts/curl-utils.d.ts +0 -25
- package/dist/prompts/curl-utils.js +0 -41
- package/dist/prompts/curl.d.ts +0 -41
- package/dist/prompts/data-inspector.d.ts +0 -22
- package/dist/prompts/date.d.ts +0 -12
- package/dist/prompts/dependency.d.ts +0 -16
- package/dist/prompts/dial.d.ts +0 -10
- package/dist/prompts/diff.d.ts +0 -10
- package/dist/prompts/diff.js +0 -101
- package/dist/prompts/draw.d.ts +0 -20
- package/dist/prompts/editor.d.ts +0 -14
- package/dist/prompts/editor.js +0 -203
- package/dist/prompts/emoji.d.ts +0 -18
- package/dist/prompts/exec.d.ts +0 -17
- package/dist/prompts/file.d.ts +0 -21
- package/dist/prompts/file.js +0 -210
- package/dist/prompts/form.d.ts +0 -18
- package/dist/prompts/fuzzy-multi-column.d.ts +0 -12
- package/dist/prompts/fuzzy.d.ts +0 -12
- package/dist/prompts/gauge.d.ts +0 -21
- package/dist/prompts/gauge.js +0 -130
- package/dist/prompts/grid.d.ts +0 -14
- package/dist/prompts/heatmap.d.ts +0 -13
- package/dist/prompts/ip.d.ts +0 -11
- package/dist/prompts/kanban.d.ts +0 -17
- package/dist/prompts/keypress.d.ts +0 -7
- package/dist/prompts/keypress.js +0 -55
- package/dist/prompts/license.d.ts +0 -9
- package/dist/prompts/license.js +0 -105
- package/dist/prompts/list.d.ts +0 -9
- package/dist/prompts/map.d.ts +0 -17
- package/dist/prompts/match.d.ts +0 -19
- package/dist/prompts/miller.d.ts +0 -15
- package/dist/prompts/multi-column-select.d.ts +0 -10
- package/dist/prompts/multi-range.d.ts +0 -9
- package/dist/prompts/multi-select.d.ts +0 -15
- package/dist/prompts/number.d.ts +0 -11
- package/dist/prompts/otp.d.ts +0 -10
- package/dist/prompts/pattern.d.ts +0 -22
- package/dist/prompts/phone.d.ts +0 -41
- package/dist/prompts/quiz-select.d.ts +0 -10
- package/dist/prompts/quiz-select.js +0 -104
- package/dist/prompts/quiz-text.d.ts +0 -11
- package/dist/prompts/quiz-text.js +0 -82
- package/dist/prompts/range.d.ts +0 -9
- package/dist/prompts/rating.d.ts +0 -8
- package/dist/prompts/regex.d.ts +0 -13
- package/dist/prompts/region.d.ts +0 -11
- package/dist/prompts/schedule.d.ts +0 -20
- package/dist/prompts/scroll.d.ts +0 -13
- package/dist/prompts/seat.d.ts +0 -17
- package/dist/prompts/seat.js +0 -165
- package/dist/prompts/select-range.d.ts +0 -8
- package/dist/prompts/select.d.ts +0 -15
- package/dist/prompts/semver.d.ts +0 -6
- package/dist/prompts/shortcut.d.ts +0 -9
- package/dist/prompts/shortcut.js +0 -135
- package/dist/prompts/slider.d.ts +0 -8
- package/dist/prompts/slot.d.ts +0 -16
- package/dist/prompts/slot.js +0 -107
- package/dist/prompts/snippet.d.ts +0 -19
- package/dist/prompts/sort-grid.d.ts +0 -16
- package/dist/prompts/sort.d.ts +0 -14
- package/dist/prompts/spam.d.ts +0 -17
- package/dist/prompts/spam.js +0 -62
- package/dist/prompts/spreadsheet.d.ts +0 -21
- package/dist/prompts/table.d.ts +0 -14
- package/dist/prompts/text.d.ts +0 -17
- package/dist/prompts/time.d.ts +0 -12
- package/dist/prompts/toggle.d.ts +0 -8
- package/dist/prompts/toggle.js +0 -47
- package/dist/prompts/transfer.d.ts +0 -18
- package/dist/prompts/tree-select.d.ts +0 -31
- package/dist/prompts/tree.d.ts +0 -20
- package/dist/prompts/wait.d.ts +0 -18
- package/dist/prompts/wait.js +0 -62
- package/dist/spinner.d.ts +0 -33
- package/dist/spinner.js +0 -89
- package/dist/symbols.d.ts +0 -33
- package/dist/tasks.d.ts +0 -57
- package/dist/theme.d.ts +0 -2
- package/dist/theme.js +0 -20
- package/dist/types.d.ts +0 -503
- package/dist/types.js +0 -5
- package/dist/utils.d.ts +0 -81
|
@@ -0,0 +1,480 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "POPULAR_LICENSES", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return POPULAR_LICENSES;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const POPULAR_LICENSES = [
|
|
12
|
+
{
|
|
13
|
+
id: 'MIT',
|
|
14
|
+
name: 'MIT License',
|
|
15
|
+
description: 'A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.',
|
|
16
|
+
permissions: [
|
|
17
|
+
'Commercial use',
|
|
18
|
+
'Modification',
|
|
19
|
+
'Distribution',
|
|
20
|
+
'Private use'
|
|
21
|
+
],
|
|
22
|
+
conditions: [
|
|
23
|
+
'License and copyright notice'
|
|
24
|
+
],
|
|
25
|
+
limitations: [
|
|
26
|
+
'Liability',
|
|
27
|
+
'Warranty'
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: 'Apache-2.0',
|
|
32
|
+
name: 'Apache License 2.0',
|
|
33
|
+
description: 'A permissive license whose main conditions require preservation of copyright and license notices. Contributors provide an express grant of patent rights. Licensed works, modifications, and larger works may be distributed under different terms.',
|
|
34
|
+
permissions: [
|
|
35
|
+
'Commercial use',
|
|
36
|
+
'Modification',
|
|
37
|
+
'Distribution',
|
|
38
|
+
'Patent use',
|
|
39
|
+
'Private use'
|
|
40
|
+
],
|
|
41
|
+
conditions: [
|
|
42
|
+
'License and copyright notice',
|
|
43
|
+
'State changes'
|
|
44
|
+
],
|
|
45
|
+
limitations: [
|
|
46
|
+
'Liability',
|
|
47
|
+
'Warranty',
|
|
48
|
+
'Trademark use'
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
id: 'GPL-3.0',
|
|
53
|
+
name: 'GNU General Public License v3.0',
|
|
54
|
+
description: 'Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved.',
|
|
55
|
+
permissions: [
|
|
56
|
+
'Commercial use',
|
|
57
|
+
'Modification',
|
|
58
|
+
'Distribution',
|
|
59
|
+
'Patent use',
|
|
60
|
+
'Private use'
|
|
61
|
+
],
|
|
62
|
+
conditions: [
|
|
63
|
+
'Disclose source',
|
|
64
|
+
'License and copyright notice',
|
|
65
|
+
'Same license',
|
|
66
|
+
'State changes'
|
|
67
|
+
],
|
|
68
|
+
limitations: [
|
|
69
|
+
'Liability',
|
|
70
|
+
'Warranty'
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
id: 'BSD-3-Clause',
|
|
75
|
+
name: 'BSD 3-Clause "New" or "Revised" License',
|
|
76
|
+
description: 'A permissive license similar to the BSD 2-Clause License, but with a 3rd clause that prohibits others from using the name of the project or its contributors to promote derived products without written consent.',
|
|
77
|
+
permissions: [
|
|
78
|
+
'Commercial use',
|
|
79
|
+
'Modification',
|
|
80
|
+
'Distribution',
|
|
81
|
+
'Private use'
|
|
82
|
+
],
|
|
83
|
+
conditions: [
|
|
84
|
+
'License and copyright notice'
|
|
85
|
+
],
|
|
86
|
+
limitations: [
|
|
87
|
+
'Liability',
|
|
88
|
+
'Warranty'
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
id: 'ISC',
|
|
93
|
+
name: 'ISC License',
|
|
94
|
+
description: 'A permissive license that is functionally equivalent to the BSD 2-Clause and MIT licenses, but removing some language that is no longer necessary.',
|
|
95
|
+
permissions: [
|
|
96
|
+
'Commercial use',
|
|
97
|
+
'Modification',
|
|
98
|
+
'Distribution',
|
|
99
|
+
'Private use'
|
|
100
|
+
],
|
|
101
|
+
conditions: [
|
|
102
|
+
'License and copyright notice'
|
|
103
|
+
],
|
|
104
|
+
limitations: [
|
|
105
|
+
'Liability',
|
|
106
|
+
'Warranty'
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
id: 'Unlicense',
|
|
111
|
+
name: 'The Unlicense',
|
|
112
|
+
description: 'A license with no conditions whatsoever which dedicates works to the public domain. Unlicensed works, modifications, and larger works may be distributed under different terms and without source code.',
|
|
113
|
+
permissions: [
|
|
114
|
+
'Commercial use',
|
|
115
|
+
'Modification',
|
|
116
|
+
'Distribution',
|
|
117
|
+
'Private use'
|
|
118
|
+
],
|
|
119
|
+
conditions: [],
|
|
120
|
+
limitations: [
|
|
121
|
+
'Liability',
|
|
122
|
+
'Warranty'
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
id: 'BSD-2-Clause',
|
|
127
|
+
name: 'BSD 2-Clause "Simplified" License',
|
|
128
|
+
description: 'A permissive license that is similar to the MIT License, with conditions requiring preservation of copyright and license notices.',
|
|
129
|
+
permissions: [
|
|
130
|
+
'Commercial use',
|
|
131
|
+
'Modification',
|
|
132
|
+
'Distribution',
|
|
133
|
+
'Private use'
|
|
134
|
+
],
|
|
135
|
+
conditions: [
|
|
136
|
+
'License and copyright notice'
|
|
137
|
+
],
|
|
138
|
+
limitations: [
|
|
139
|
+
'Liability',
|
|
140
|
+
'Warranty'
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
id: 'LGPL-3.0',
|
|
145
|
+
name: 'GNU Lesser General Public License v3.0',
|
|
146
|
+
description: 'A weak copyleft license permitting proprietary use. Requires preservation of copyright and license notices. Modifications of the library under the same license must be provided under the LGPL, but applications built on top may be licensed proprietary.',
|
|
147
|
+
permissions: [
|
|
148
|
+
'Commercial use',
|
|
149
|
+
'Modification',
|
|
150
|
+
'Distribution',
|
|
151
|
+
'Patent use',
|
|
152
|
+
'Private use'
|
|
153
|
+
],
|
|
154
|
+
conditions: [
|
|
155
|
+
'Disclose source',
|
|
156
|
+
'License and copyright notice',
|
|
157
|
+
'Same license',
|
|
158
|
+
'State changes'
|
|
159
|
+
],
|
|
160
|
+
limitations: [
|
|
161
|
+
'Liability',
|
|
162
|
+
'Warranty'
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
id: 'AGPL-3.0',
|
|
167
|
+
name: 'GNU Affero General Public License v3.0',
|
|
168
|
+
description: 'A strong copyleft license that requires releasing source code when distributing the software over a network. Includes all conditions of GPL-3.0 plus a network use clause.',
|
|
169
|
+
permissions: [
|
|
170
|
+
'Commercial use',
|
|
171
|
+
'Modification',
|
|
172
|
+
'Distribution',
|
|
173
|
+
'Patent use',
|
|
174
|
+
'Private use'
|
|
175
|
+
],
|
|
176
|
+
conditions: [
|
|
177
|
+
'Disclose source',
|
|
178
|
+
'License and copyright notice',
|
|
179
|
+
'Network use disclosure',
|
|
180
|
+
'Same license',
|
|
181
|
+
'State changes'
|
|
182
|
+
],
|
|
183
|
+
limitations: [
|
|
184
|
+
'Liability',
|
|
185
|
+
'Warranty'
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
id: 'MPL-2.0',
|
|
190
|
+
name: 'Mozilla Public License 2.0',
|
|
191
|
+
description: 'A copyleft license that is easy to comply with. You must make the source code for any of your modifications available under MPL-2.0, but you can combine the software with code under other licenses.',
|
|
192
|
+
permissions: [
|
|
193
|
+
'Commercial use',
|
|
194
|
+
'Modification',
|
|
195
|
+
'Distribution',
|
|
196
|
+
'Patent use',
|
|
197
|
+
'Private use'
|
|
198
|
+
],
|
|
199
|
+
conditions: [
|
|
200
|
+
'Disclose source',
|
|
201
|
+
'License and copyright notice',
|
|
202
|
+
'Same license'
|
|
203
|
+
],
|
|
204
|
+
limitations: [
|
|
205
|
+
'Liability',
|
|
206
|
+
'Warranty',
|
|
207
|
+
'Trademark use'
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
id: 'EPL-2.0',
|
|
212
|
+
name: 'Eclipse Public License 2.0',
|
|
213
|
+
description: 'A copyleft license based on the Mozilla Public License, designed for programs and libraries. Modified code under the same license must be provided.',
|
|
214
|
+
permissions: [
|
|
215
|
+
'Commercial use',
|
|
216
|
+
'Modification',
|
|
217
|
+
'Distribution',
|
|
218
|
+
'Patent use',
|
|
219
|
+
'Private use'
|
|
220
|
+
],
|
|
221
|
+
conditions: [
|
|
222
|
+
'Disclose source',
|
|
223
|
+
'License and copyright notice',
|
|
224
|
+
'Same license'
|
|
225
|
+
],
|
|
226
|
+
limitations: [
|
|
227
|
+
'Liability',
|
|
228
|
+
'Warranty'
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
id: 'WTFPL',
|
|
233
|
+
name: 'Do What The F* You Want To Public License',
|
|
234
|
+
description: 'An extremely permissive license that allows anyone to do whatever they want with the work with no restrictions whatsoever.',
|
|
235
|
+
permissions: [
|
|
236
|
+
'Commercial use',
|
|
237
|
+
'Modification',
|
|
238
|
+
'Distribution',
|
|
239
|
+
'Private use'
|
|
240
|
+
],
|
|
241
|
+
conditions: [],
|
|
242
|
+
limitations: [
|
|
243
|
+
'Liability',
|
|
244
|
+
'Warranty'
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
id: 'Zlib',
|
|
249
|
+
name: 'zlib License',
|
|
250
|
+
description: 'A short permissive license similar to the BSD licenses, requiring altered source versions to be documented and restricting use of the original authors\' names from promoting derived products.',
|
|
251
|
+
permissions: [
|
|
252
|
+
'Commercial use',
|
|
253
|
+
'Modification',
|
|
254
|
+
'Distribution',
|
|
255
|
+
'Private use'
|
|
256
|
+
],
|
|
257
|
+
conditions: [
|
|
258
|
+
'License and copyright notice',
|
|
259
|
+
'State changes'
|
|
260
|
+
],
|
|
261
|
+
limitations: [
|
|
262
|
+
'Liability',
|
|
263
|
+
'Warranty'
|
|
264
|
+
]
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
id: 'BSL-1.0',
|
|
268
|
+
name: 'Boost Software License 1.0',
|
|
269
|
+
description: 'A simple permissive license only requiring preservation of copyright and license notices for source (and not object) code.',
|
|
270
|
+
permissions: [
|
|
271
|
+
'Commercial use',
|
|
272
|
+
'Modification',
|
|
273
|
+
'Distribution',
|
|
274
|
+
'Private use'
|
|
275
|
+
],
|
|
276
|
+
conditions: [
|
|
277
|
+
'License and copyright notice'
|
|
278
|
+
],
|
|
279
|
+
limitations: [
|
|
280
|
+
'Liability',
|
|
281
|
+
'Warranty'
|
|
282
|
+
]
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
id: 'GPL-2.0',
|
|
286
|
+
name: 'GNU General Public License v2.0',
|
|
287
|
+
description: 'A copyleft license that requires anyone who distributes your code or a derivative work to make the source available under the same terms.',
|
|
288
|
+
permissions: [
|
|
289
|
+
'Commercial use',
|
|
290
|
+
'Modification',
|
|
291
|
+
'Distribution',
|
|
292
|
+
'Patent use',
|
|
293
|
+
'Private use'
|
|
294
|
+
],
|
|
295
|
+
conditions: [
|
|
296
|
+
'Disclose source',
|
|
297
|
+
'License and copyright notice',
|
|
298
|
+
'Same license',
|
|
299
|
+
'State changes'
|
|
300
|
+
],
|
|
301
|
+
limitations: [
|
|
302
|
+
'Liability',
|
|
303
|
+
'Warranty'
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
id: 'LGPL-2.1',
|
|
308
|
+
name: 'GNU Lesser General Public License v2.1',
|
|
309
|
+
description: 'A primarily copyleft license that allows you to link to the library in proprietary software without releasing the proprietary code.',
|
|
310
|
+
permissions: [
|
|
311
|
+
'Commercial use',
|
|
312
|
+
'Modification',
|
|
313
|
+
'Distribution',
|
|
314
|
+
'Patent use',
|
|
315
|
+
'Private use'
|
|
316
|
+
],
|
|
317
|
+
conditions: [
|
|
318
|
+
'Disclose source',
|
|
319
|
+
'License and copyright notice',
|
|
320
|
+
'Same license',
|
|
321
|
+
'State changes'
|
|
322
|
+
],
|
|
323
|
+
limitations: [
|
|
324
|
+
'Liability',
|
|
325
|
+
'Warranty'
|
|
326
|
+
]
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
id: 'MS-PL',
|
|
330
|
+
name: 'Microsoft Public License',
|
|
331
|
+
description: 'A permissive license that allows you to release compiled versions of the code under a different license, though source versions must use the MS-PL.',
|
|
332
|
+
permissions: [
|
|
333
|
+
'Commercial use',
|
|
334
|
+
'Modification',
|
|
335
|
+
'Distribution',
|
|
336
|
+
'Patent use',
|
|
337
|
+
'Private use'
|
|
338
|
+
],
|
|
339
|
+
conditions: [
|
|
340
|
+
'License and copyright notice',
|
|
341
|
+
'Same license'
|
|
342
|
+
],
|
|
343
|
+
limitations: [
|
|
344
|
+
'Liability',
|
|
345
|
+
'Warranty',
|
|
346
|
+
'Trademark use'
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
id: '0BSD',
|
|
351
|
+
name: 'BSD Zero Clause License',
|
|
352
|
+
description: 'A permissive license that allows for unlimited reuse, modification, and redistribution. It removes the requirement to include a copyright notice.',
|
|
353
|
+
permissions: [
|
|
354
|
+
'Commercial use',
|
|
355
|
+
'Modification',
|
|
356
|
+
'Distribution',
|
|
357
|
+
'Private use'
|
|
358
|
+
],
|
|
359
|
+
conditions: [],
|
|
360
|
+
limitations: [
|
|
361
|
+
'Liability',
|
|
362
|
+
'Warranty'
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
id: 'EUPL-1.2',
|
|
367
|
+
name: 'European Union Public License 1.2',
|
|
368
|
+
description: 'A copyleft license created by the European Union. It provides compatibility with other copyleft licenses and supports translations in multiple European languages.',
|
|
369
|
+
permissions: [
|
|
370
|
+
'Commercial use',
|
|
371
|
+
'Modification',
|
|
372
|
+
'Distribution',
|
|
373
|
+
'Patent use',
|
|
374
|
+
'Private use'
|
|
375
|
+
],
|
|
376
|
+
conditions: [
|
|
377
|
+
'Disclose source',
|
|
378
|
+
'License and copyright notice',
|
|
379
|
+
'Same license',
|
|
380
|
+
'State changes'
|
|
381
|
+
],
|
|
382
|
+
limitations: [
|
|
383
|
+
'Liability',
|
|
384
|
+
'Warranty'
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
id: 'MulanPSL-2.0',
|
|
389
|
+
name: 'Mulan Permissive Software License, Version 2',
|
|
390
|
+
description: 'A permissive license that provides an express grant of patent rights and has no attribution requirements for redistributed binaries.',
|
|
391
|
+
permissions: [
|
|
392
|
+
'Commercial use',
|
|
393
|
+
'Modification',
|
|
394
|
+
'Distribution',
|
|
395
|
+
'Patent use',
|
|
396
|
+
'Private use'
|
|
397
|
+
],
|
|
398
|
+
conditions: [
|
|
399
|
+
'License and copyright notice'
|
|
400
|
+
],
|
|
401
|
+
limitations: [
|
|
402
|
+
'Liability',
|
|
403
|
+
'Warranty',
|
|
404
|
+
'Trademark use'
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
id: 'PostgreSQL',
|
|
409
|
+
name: 'PostgreSQL License',
|
|
410
|
+
description: 'A liberal Open Source license, similar to the BSD or MIT licenses.',
|
|
411
|
+
permissions: [
|
|
412
|
+
'Commercial use',
|
|
413
|
+
'Modification',
|
|
414
|
+
'Distribution',
|
|
415
|
+
'Private use'
|
|
416
|
+
],
|
|
417
|
+
conditions: [
|
|
418
|
+
'License and copyright notice'
|
|
419
|
+
],
|
|
420
|
+
limitations: [
|
|
421
|
+
'Liability',
|
|
422
|
+
'Warranty'
|
|
423
|
+
]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
id: 'CC0-1.0',
|
|
427
|
+
name: 'Creative Commons Zero v1.0 Universal',
|
|
428
|
+
description: 'A public domain dedication waiver that places works in the public domain. A work released under CC0 incurs no obligations and anyone may use the work in any way.',
|
|
429
|
+
permissions: [
|
|
430
|
+
'Commercial use',
|
|
431
|
+
'Modification',
|
|
432
|
+
'Distribution',
|
|
433
|
+
'Private use'
|
|
434
|
+
],
|
|
435
|
+
conditions: [],
|
|
436
|
+
limitations: [
|
|
437
|
+
'Liability',
|
|
438
|
+
'Warranty'
|
|
439
|
+
]
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
id: 'CC-BY-4.0',
|
|
443
|
+
name: 'Creative Commons Attribution 4.0 International',
|
|
444
|
+
description: 'A license that allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, so long as attribution is given to the creator.',
|
|
445
|
+
permissions: [
|
|
446
|
+
'Commercial use',
|
|
447
|
+
'Modification',
|
|
448
|
+
'Distribution',
|
|
449
|
+
'Private use'
|
|
450
|
+
],
|
|
451
|
+
conditions: [
|
|
452
|
+
'License and copyright notice'
|
|
453
|
+
],
|
|
454
|
+
limitations: [
|
|
455
|
+
'Liability',
|
|
456
|
+
'Warranty'
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
id: 'CC-BY-SA-4.0',
|
|
461
|
+
name: 'Creative Commons Attribution-ShareAlike 4.0 International',
|
|
462
|
+
description: 'A license that requires reusers to distribute, remix, adapt, and build upon the material in any medium or format, so long as attribution is given to the creator. Modifications must be shared under the same terms.',
|
|
463
|
+
permissions: [
|
|
464
|
+
'Commercial use',
|
|
465
|
+
'Modification',
|
|
466
|
+
'Distribution',
|
|
467
|
+
'Private use'
|
|
468
|
+
],
|
|
469
|
+
conditions: [
|
|
470
|
+
'License and copyright notice',
|
|
471
|
+
'Same license'
|
|
472
|
+
],
|
|
473
|
+
limitations: [
|
|
474
|
+
'Liability',
|
|
475
|
+
'Warranty'
|
|
476
|
+
]
|
|
477
|
+
}
|
|
478
|
+
];
|
|
479
|
+
|
|
480
|
+
//# sourceMappingURL=licenses.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/data/licenses.ts"],"sourcesContent":["import { License } from '../types';\n\nexport const POPULAR_LICENSES: License[] = [\n {\n id: 'MIT',\n name: 'MIT License',\n description: 'A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'Apache-2.0',\n name: 'Apache License 2.0',\n description: 'A permissive license whose main conditions require preservation of copyright and license notices. Contributors provide an express grant of patent rights. Licensed works, modifications, and larger works may be distributed under different terms.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['License and copyright notice', 'State changes'],\n limitations: ['Liability', 'Warranty', 'Trademark use']\n },\n {\n id: 'GPL-3.0',\n name: 'GNU General Public License v3.0',\n description: 'Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Same license', 'State changes'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'BSD-3-Clause',\n name: 'BSD 3-Clause \"New\" or \"Revised\" License',\n description: 'A permissive license similar to the BSD 2-Clause License, but with a 3rd clause that prohibits others from using the name of the project or its contributors to promote derived products without written consent.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'ISC',\n name: 'ISC License',\n description: 'A permissive license that is functionally equivalent to the BSD 2-Clause and MIT licenses, but removing some language that is no longer necessary.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'Unlicense',\n name: 'The Unlicense',\n description: 'A license with no conditions whatsoever which dedicates works to the public domain. Unlicensed works, modifications, and larger works may be distributed under different terms and without source code.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: [],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'BSD-2-Clause',\n name: 'BSD 2-Clause \"Simplified\" License',\n description: 'A permissive license that is similar to the MIT License, with conditions requiring preservation of copyright and license notices.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'LGPL-3.0',\n name: 'GNU Lesser General Public License v3.0',\n description: 'A weak copyleft license permitting proprietary use. Requires preservation of copyright and license notices. Modifications of the library under the same license must be provided under the LGPL, but applications built on top may be licensed proprietary.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Same license', 'State changes'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'AGPL-3.0',\n name: 'GNU Affero General Public License v3.0',\n description: 'A strong copyleft license that requires releasing source code when distributing the software over a network. Includes all conditions of GPL-3.0 plus a network use clause.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Network use disclosure', 'Same license', 'State changes'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'MPL-2.0',\n name: 'Mozilla Public License 2.0',\n description: 'A copyleft license that is easy to comply with. You must make the source code for any of your modifications available under MPL-2.0, but you can combine the software with code under other licenses.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Same license'],\n limitations: ['Liability', 'Warranty', 'Trademark use']\n },\n {\n id: 'EPL-2.0',\n name: 'Eclipse Public License 2.0',\n description: 'A copyleft license based on the Mozilla Public License, designed for programs and libraries. Modified code under the same license must be provided.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Same license'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'WTFPL',\n name: 'Do What The F* You Want To Public License',\n description: 'An extremely permissive license that allows anyone to do whatever they want with the work with no restrictions whatsoever.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: [],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'Zlib',\n name: 'zlib License',\n description: 'A short permissive license similar to the BSD licenses, requiring altered source versions to be documented and restricting use of the original authors\\' names from promoting derived products.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice', 'State changes'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'BSL-1.0',\n name: 'Boost Software License 1.0',\n description: 'A simple permissive license only requiring preservation of copyright and license notices for source (and not object) code.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'GPL-2.0',\n name: 'GNU General Public License v2.0',\n description: 'A copyleft license that requires anyone who distributes your code or a derivative work to make the source available under the same terms.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Same license', 'State changes'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'LGPL-2.1',\n name: 'GNU Lesser General Public License v2.1',\n description: 'A primarily copyleft license that allows you to link to the library in proprietary software without releasing the proprietary code.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Same license', 'State changes'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'MS-PL',\n name: 'Microsoft Public License',\n description: 'A permissive license that allows you to release compiled versions of the code under a different license, though source versions must use the MS-PL.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['License and copyright notice', 'Same license'],\n limitations: ['Liability', 'Warranty', 'Trademark use']\n },\n {\n id: '0BSD',\n name: 'BSD Zero Clause License',\n description: 'A permissive license that allows for unlimited reuse, modification, and redistribution. It removes the requirement to include a copyright notice.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: [],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'EUPL-1.2',\n name: 'European Union Public License 1.2',\n description: 'A copyleft license created by the European Union. It provides compatibility with other copyleft licenses and supports translations in multiple European languages.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['Disclose source', 'License and copyright notice', 'Same license', 'State changes'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'MulanPSL-2.0',\n name: 'Mulan Permissive Software License, Version 2',\n description: 'A permissive license that provides an express grant of patent rights and has no attribution requirements for redistributed binaries.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Patent use', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty', 'Trademark use']\n },\n {\n id: 'PostgreSQL',\n name: 'PostgreSQL License',\n description: 'A liberal Open Source license, similar to the BSD or MIT licenses.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'CC0-1.0',\n name: 'Creative Commons Zero v1.0 Universal',\n description: 'A public domain dedication waiver that places works in the public domain. A work released under CC0 incurs no obligations and anyone may use the work in any way.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: [],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'CC-BY-4.0',\n name: 'Creative Commons Attribution 4.0 International',\n description: 'A license that allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, so long as attribution is given to the creator.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice'],\n limitations: ['Liability', 'Warranty']\n },\n {\n id: 'CC-BY-SA-4.0',\n name: 'Creative Commons Attribution-ShareAlike 4.0 International',\n description: 'A license that requires reusers to distribute, remix, adapt, and build upon the material in any medium or format, so long as attribution is given to the creator. Modifications must be shared under the same terms.',\n permissions: ['Commercial use', 'Modification', 'Distribution', 'Private use'],\n conditions: ['License and copyright notice', 'Same license'],\n limitations: ['Liability', 'Warranty']\n }\n];\n"],"names":["POPULAR_LICENSES","id","name","description","permissions","conditions","limitations"],"mappings":"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"}
|