-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathspdx-id.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 22.
1616 lines (1616 loc) · 59.4 KB
/
spdx-id.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Scancode,SPDX-ID
#Apache-2.0
"https://www.apache.org/licenses/LICENSE-2.0.html",Apache-2.0
Apache 2.0,Apache-2.0
apache-2.0,Apache-2.0
"The Apache Software License, Version 2.0",Apache-2.0
"Apache License, Version 2.0",Apache-2.0
"Apache License, Version 1.0",Apache-1.0
"http://www.apache.org/licenses/LICENSE-2.0",Apache-2.0
#AGPL-3.0-only
"GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007",AGPL-3.0-only
AGPL 3.0 only,AGPL-3.0-only
AGPL 3.0,AGPL-3.0-only
AGPL-3.0,AGPL-3.0-only
AGPL-3,AGPL-3.0-only
"https://www.gnu.org/licenses/agpl-3.0.html",AGPL-3.0-only
LICENSE-agpl-3.0.txt,AGPL-3.0-only
#AGPL-3.0-or-later
AGPL 3.0 or later,AGPL-3.0-or-later
#BSD-2-Clause
Simplified BSD License,BSD-2-Clause
#BSD 2-Clause "Simplified" License,BSD-2-Clause
"BSD 2-Clause \"Simplified\" License",BSD-2-Clause
BSD License - http://www.opensource.org/licenses/bsd-license.php,BSD-2-Clause
Simpliefied BSD,BSD-2-Clause
Simplified BSD,BSD-2-Clause
#BSD-2-Clause-Patent
BSD-2-Clause Plus Patent License,BSD-2-Clause-Patent
BSD 2 plus,BSD-2-Clause-Patent
BSD 2 PLUS,BSD-2-Clause-Patent
#BSD-3-Clause
BSD-3C,BSD-3-Clause
BSD-3-Clause,BSD-3-Clause
BSD License (3 clause),BSD-3-Clause
BSD License 3 clause,BSD-3-Clause
The New BSD License,BSD-3-Clause
The new BSD License,BSD-3-Clause
the new BSD License,BSD-3-Clause
New BSD License,BSD-3-Clause
new BSD License,BSD-3-Clause
# not completely sure about this - is not present in SPDX lis
Modified BSD License,BSD-3-Clause
"Modified BSD License - https://opensource.org/licenses/BSD-3-Clause",BSD-3-Clause
BSD 3-clause,BSD-3-Clause
#CDDL-1.0
"CDDL, v1.0",CDDL-1.0
"CDDL v1.0",CDDL-1.0
#EPL-1.0
"Eclipse Public License, Version 1.0",EPL-1.0
"Eclipse Public License Version 1.0",EPL-1.0
EPL 1.0,EPL-1.0
#EPL-2.0
"Eclipse Public License, Version 2.0",EPL-2.0
"Eclipse Public License Version 2.0",EPL-2.0
EPL 2.0,EPL-2.0
#GPL-2.0-only
GPL 2,GPL-2.0-only
GPL 2.0,GPL-2.0-only
GNU General Public License Version 2,GPL-2.0-only
#GPL-2.0-or-later
GPL 2.0 or later,GPL-2.0-or-later
#GPL-2.0-with-classpath-exception
#doubt on this - shouldn't be written or later, because or later doesn't exist within SPDX list
Classpath exception to GPL 2.0 or later,GPL-2.0-with-classpath-exception,Yes - https://spdx.org/licenses/GPL-2.0-with-classpath-exception.htm
Classpath exception to GPL 2.0,GPL-2.0-with-classpath-exception,Yes - https://spdx.org/licenses/GPL-2.0-with-classpath-exception.htm
"GNU General Public License, version 2 with the GNU Classpath Exception",GPL-2.0-with-classpath-exception
GPL2 w/ CPE,GPL-2.0-with-classpath-exception
#GPL-3.0-only
GPL 3,GPL-3.0-only
GPL 3.0,GPL-3.0-only
GNUGPL-v3,GPL-3.0-only
"GNU General Public License Version 3.0",GPL-3.0-only
"GNU General Public License, Version 3.0",GPL-3.0-only
GNU General Public License v3.0,GPL-3.0-only
GPL 3.0 only,GPL-3.0-only
GNU General Public License v3,GPL-3.0-only
GPL 3.0 or later,GPL-3.0-or-later
GPLv3+,GPL-3.0-or-later
#LGPL-2.1-only
LGPL 2.1,LGPL-2.1-only
GNU Library or Lesser General Public License (LGPL) V2.1,LGPL-2.1-only
LGPL v2.1,LGPL-2.1-only
#LGPL-2.1-or-later
"LGPL, v2.1 or later",LGPL-2.1-or-later
"LGPL v2.1 or later",LGPL-2.1-or-later
GNU Library General Public License v2.1 or later,LGPL-2.1-or-later
#LGPL 3,LGPL-3.0-only
"GNU Lesser General Public License Version 3",LGPL-3.0-only
"GNU Lesser General Public License, Version 3",LGPL-3.0-only
LGPLv3,LGPL-3.0-only
"https://www.gnu.org/licenses/lgpl.html",LGPL-3.0-only
"http://www.gnu.org/licenses/lgpl.txt",LGPL-3.0-only
"https://www.gnu.org/licenses/lgpl-3.0.en.html",LGPL-3.0-only
#LGPL-3.0-or-later
LGPL 3.0 or later,LGPL-3.0-or-later
LGPLv3+,LGPL-3.0-or-later
"GNU Lesser General Public License, Version 3 or later",LGPL-3.0-or-later
#MIT
"http://www.opensource.org/licenses/mit-license.php",MIT
"http://opensource.org/licenses/MIT",MIT
mit,MIT
MIT License,MIT
Expat License,MIT
Expat,MIT
MIT Licensed,MIT
The MIT License,MIT
The MIT License(MIT),MIT
MIT.txt,MIT
"Expat/MIT",MIT
#MPL-1.0
Mozilla Public License 1.1 (MPL 1.1),MPL-1.1
MPL 1.1,MPL-1.1
#MPL-2.0
MPL 2.0,MPL-2.0
"Mozilla Public License, Version 2.0",MPL-2.0
MPL2,MPL-2.0
Mozilla Public License 2,MPL-2.0
Mozilla Public License 2.0,MPL-2.0
MPL-2.0 License,MPL-2.0
GPL 2.0 only,GPL-2.0-only
BSD Zero Clause License,0BSD
0-clause BSD License,0BSD
Zero Clause BSD,0BSD
Zero-Clause BSD,0BSD
scancode://bsd-zero,0BSD
Attribution Assurance License,AAL
Attribution Assurance Licenses,AAL
License :: OSI Approved :: Attribution Assurance License,AAL
scancode://attribution,AAL
Amazon Digital Services License,ADSL
scancode://adsl,ADSL
Academic Free License v1.1,AFL-1.1
scancode://afl-1.1,AFL-1.1
AFL 1.1,AFL-1.1
Academic Free License v1.2,AFL-1.2
scancode://afl-1.2,AFL-1.2
AFL 1.2,AFL-1.2
Academic Free License v2.0,AFL-2.0
scancode://afl-2.0,AFL-2.0
AFL 2.0,AFL-2.0
Academic Free License v2.1,AFL-2.1
Academic Free License Version 2.1,AFL-2.1
scancode://afl-2.1,AFL-2.1
AFL 2.1,AFL-2.1
Academic Free License v3.0,AFL-3.0
Academic Free License 3.0,AFL-3.0
"Academic Free License, Version 3.0",AFL-3.0
License :: OSI Approved :: Academic Free License (AFL),AFL-3.0
scancode://afl-3.0,AFL-3.0
AFL 3.0,AFL-3.0
AGPL-1.0,AGPL-1.0-only
Affero General Public License (v. 1),AGPL-1.0-only
Affero General Public License 1.0,AGPL-1.0-only
Affero General Public License v1.0 only,AGPL-1.0-only
scancode://agpl-1.0,AGPL-1.0-only
AGPL 1.0,AGPL-1.0-only
Affero General Public License v1.0 or later,AGPL-1.0-or-later
scancode://agpl-1.0-plus,AGPL-1.0-or-later
AGPL 1.0 or later,AGPL-1.0-or-later
AGPL3.0,AGPL-3.0-only
AGPL3,AGPL-3.0-only
AGPL (v3),AGPL-3.0-only
Affero General Public License 3.0,AGPL-3.0-only
GNU AFFERO GENERAL PUBLIC LICENSE Version 3,AGPL-3.0-only
GNU Affero General Public License (AGPL-3.0) (v. 3.0),AGPL-3.0-only
GNU Affero General Public License v3.0 only,AGPL-3.0-only
agpl-3.0,AGPL-3.0-only
GNU AGPLv3,AGPL-3.0-only
GNU Affero General Public License v3,AGPL-3.0-only
agpl-v3,AGPL-3.0-only
"GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPL-3.0)",AGPL-3.0-only
License :: OSI Approved :: GNU Affero General Public License v3,AGPL-3.0-only
"http://www.gnu.org/licenses/agpl-3.0.en.html",AGPL-3.0-only
"http://www.fsf.org/licensing/licenses/agpl-3.0.html",AGPL-3.0-only
scancode://agpl-3.0,AGPL-3.0-only
AGPL-3.0+,AGPL-3.0-or-later
AGPLv3+,AGPL-3.0-or-later
AGPL3.0+,AGPL-3.0-or-later
AGPL3+,AGPL-3.0-or-later
AGPL (v3 or later),AGPL-3.0-or-later
Affero General Public License 3.0 or later,AGPL-3.0-or-later
GNU Affero General Public License v3.0 or later,AGPL-3.0-or-later
scancode://agpl-3.0-plus,AGPL-3.0-or-later
GNU Affero General Public License 3.0,AGPL-3.0-or-later
AMD's plpa_map.c License,AMDPLPA
scancode://amdplpa,AMDPLPA
AMD PLPA License,AMDPLPA
Apple MIT License,AML
scancode://aml,AML
Academy of Motion Picture Arts and Sciences BSD,AMPAS
scancode://ampas,AMPAS
AMPAS BSD-Style License,AMPAS
ANTLR Software Rights Notice,ANTLR-PD
ANTLR 2 License,ANTLR-PD
scancode://antlr-pd,ANTLR-PD
Adobe Postscript AFM License,APAFML
scancode://apafml,APAFML
Adaptive Public License 1.0,APL-1.0
APL,APL-1.0
apl1.0,APL-1.0
"Adaptive Public License, Version 1.0",APL-1.0
scancode://adapt-1.0,APL-1.0
APL 1.0,APL-1.0
Apple Public Source License 1.0,APSL-1.0
scancode://apsl-1.0,APSL-1.0
APSL 1.0,APSL-1.0
Apple Public Source License 1.1,APSL-1.1
"APPLE PUBLIC SOURCE LICENSE, Version 1.1",APSL-1.1
scancode://apsl-1.1,APSL-1.1
APSL 1.1,APSL-1.1
Apple Public Source License 1.2,APSL-1.2
scancode://apsl-1.2,APSL-1.2
APSL 1.2,APSL-1.2
Apple Public Source License 2.0,APSL-2.0
"Apple Public Source License, Version 2.0",APSL-2.0
License :: OSI Approved :: Apple Public Source License,APSL-2.0
scancode://apsl-2.0,APSL-2.0
APSL 2.0,APSL-2.0
Abstyles License,Abstyles
scancode://abstyles,Abstyles
Adobe Systems Incorporated Source Code License Agreement,Adobe-2006
scancode://adobe-scl,Adobe-2006
Adobe Source Code License 2006,Adobe-2006
Adobe Glyph List License,Adobe-Glyph
scancode://adobe-glyph,Adobe-Glyph
Adobe Glyph License,Adobe-Glyph
Afmparse License,Afmparse
scancode://afmparse,Afmparse
afmparse License,Afmparse
Aladdin Free Public License,Aladdin
scancode://afpl-8.0,Aladdin
Aladdin FPL v8,Aladdin
Apache (v1.0),Apache-1.0
Apache Software License 1.0,Apache-1.0
ASL 1.0,Apache-1.0
"Apache Software License, Version 1.0",Apache-1.0
Apache License 1.0,Apache-1.0
scancode://apache-1.0,Apache-1.0
Apache 1.0,Apache-1.0
Apache (v1.1),Apache-1.1
Apache Software License 1.1,Apache-1.1
ASL 1.1,Apache-1.1
"Apache Software License, Version 1.1",Apache-1.1
Apache License 1.1,Apache-1.1
scancode://apache-1.1,Apache-1.1
Apache 1.1,Apache-1.1
Apache (v2.0),Apache-2.0
Apache Software License 2.0,Apache-2.0
ASL 2.0,Apache-2.0
ASL v.2.0,Apache-2.0
ALv2,Apache-2.0
Apache License 2.0,Apache-2.0
Apache License (2.0),Apache-2.0
Apache-2,Apache-2.0
Apache 2,Apache-2.0
apache2.0,Apache-2.0
Apache License v.2,Apache-2.0
Apache License V.2,Apache-2.0
License :: OSI Approved :: Apache Software License,Apache-2.0
scancode://apache-2.0,Apache-2.0
"http://www.apache.org/licenses/LICENSE-2.0.txt",Apache-2.0
Apache II,Apache-2.0
Artistic 1.0 (original),Artistic-1.0
Artistic License 1.0,Artistic-1.0
"Artistic License, Version 1.0",Artistic-1.0
Artistic License (Perl) 1.0,Artistic-1.0
scancode://artistic-1.0,Artistic-1.0
Artistic 1.0,Artistic-1.0
Artistic License 1.0 (Perl),Artistic-1.0-Perl
scancode://artistic-perl-1.0,Artistic-1.0-Perl
Artistic-Perl-1.0,Artistic-1.0-Perl
Artistic License 1.0 w/clause 8,Artistic-1.0-cl8
scancode://artistic-1.0-cl8,Artistic-1.0-cl8
"Artistic 1.0 w/clause 8",Artistic-1.0-cl8
Artistic 2.0,Artistic-2.0
Artistic License (v. 2.0),Artistic-2.0
Artistic License 2.0,Artistic-2.0
artistic-license-2.0,Artistic-2.0
"Artistic License, Version 2.0",Artistic-2.0
License :: OSI Approved :: Artistic License,Artistic-2.0
The Artistic License 2.0,Artistic-2.0
scancode://artistic-2.0,Artistic-2.0
BSD 1-Clause License,BSD-1-Clause
scancode://bsd-1-clause,BSD-1-Clause
BSD (2 clause),BSD-2-Clause
BSD License (two clause),BSD-2-Clause
"BSD 2-Clause ""Simplified"" License",BSD-2-Clause
"BSD 2-Clause ""Simplified"" or ""FreeBSD"" License (BSD-2-Clause)",BSD-2-Clause
BSD-2,BSD-2-Clause
BSD 2-Clause License,BSD-2-Clause
FreeBSD License,BSD-2-Clause
"BSD 2-Clause ""Simplified"" or ""FreeBSD"" License",BSD-2-Clause
"BSD/2-clause",BSD-2-Clause
"http://www.opensource.org/licenses/bsd-license.php",BSD-2-Clause
scancode://bsd-simplified,BSD-2-Clause
scancode://bsd-plus-patent,BSD-2-Clause-Patent
BSD-2-Clause Plus Patent,BSD-2-Clause-Patent
BSD 2-Clause with views sentence,BSD-2-Clause-Views
scancode://bsd-2-clause-views,BSD-2-Clause-Views
freeBSD,BSD-2-Clause-FreeBSD
BSD (3 clause),BSD-3-Clause
3-Clause BSD License,BSD-3-Clause
BSD License (no advertising),BSD-3-Clause
#"BSD 3-Clause ""New"" or ""Revised"" License",BSD-3-Clause
#"BSD 3-Clause ""New"" or ""Revised"" License (BSD-3-Clause)",BSD-3-Clause
BSD 3-Clause,BSD-3-Clause
BSD-3,BSD-3-Clause
BSD (3-clause),BSD-3-Clause
BSD 3-Clause License,BSD-3-Clause
License :: OSI Approved :: BSD License,BSD-3-Clause
Revised BSD License,BSD-3-Clause
scancode://bsd-new,BSD-3-Clause
BSD with attribution,BSD-3-Clause-Attribution
scancode://bsd-ack,BSD-3-Clause-Attribution
BSD Acknowledgment License,BSD-3-Clause-Attribution
BSD 3-Clause Clear License,BSD-3-Clause-Clear
Clear BSD,BSD-3-Clause-Clear
scancode://clear-bsd,BSD-3-Clause-Clear
Clear BSD License,BSD-3-Clause-Clear
Lawrence Berkeley National Labs BSD variant license,BSD-3-Clause-LBNL
scancode://lbnl-bsd,BSD-3-Clause-LBNL
LBNL BSD Variant,BSD-3-Clause-LBNL
BSD 3-Clause No Nuclear License,BSD-3-Clause-No-Nuclear-License
scancode://sun-bsd-no-nuclear,BSD-3-Clause-No-Nuclear-License
Sun BSD-Style with Nuclear Restrictions,BSD-3-Clause-No-Nuclear-License
BSD 3-Clause No Nuclear License 2014,BSD-3-Clause-No-Nuclear-License-2014
scancode://oracle-bsd-no-nuclear,BSD-3-Clause-No-Nuclear-License-2014
Oracle BSD-Style with Nuclear Restrictions,BSD-3-Clause-No-Nuclear-License-2014
BSD 3-Clause No Nuclear Warranty,BSD-3-Clause-No-Nuclear-Warranty
scancode://bsd-3-clause-no-nuclear-warranty,BSD-3-Clause-No-Nuclear-Warranty
Open MPI License,BSD-3-Clause-Open-MPI
BSD 3-Clause Open MPI variant,BSD-3-Clause-Open-MPI
scancode://bsd-3-clause-open-mpi,BSD-3-Clause-Open-MPI
BSD License (original),BSD-4-Clause
"BSD 4-Clause ""Original"" or ""Old"" License",BSD-4-Clause
"BSD 4-clause ""Original"" or ""Old"" License",BSD-4-Clause
BSD 4-clause,BSD-4-Clause
scancode://bsd-original,BSD-4-Clause
BSD-Original,BSD-4-Clause
BSD4,BSD-4-Clause
4-clause BSD,BSD-4-Clause
4-Clause BSD License,BSD-4-Clause
BSD-4 license,BSD-4-Clause
BSD 4-Clause License,BSD-4-Clause
BSD-4-Clause (University of California-Specific),BSD-4-Clause-UC
scancode://bsd-original-uc,BSD-4-Clause-UC
BSD-Original-UC,BSD-4-Clause-UC
BSD Protection License,BSD-Protection
scancode://bsd-protection,BSD-Protection
BSD Source Code Attribution,BSD-Source-Code
scancode://bsd-source-code,BSD-Source-Code
BSL (v1.0),BSL-1.0
BSL (v1),BSL-1.0
Boost Software License 1.0,BSL-1.0
bsl1.0,BSL-1.0
Boost Software License 1.0 (BSL-1.0),BSL-1.0
Boost Software License - Version 1.0,BSL-1.0
scancode://boost-1.0,BSL-1.0
Boost 1.0,BSL-1.0
Boost,BSL-1.0
boost,BSL-1.0
BUSL 1.1,BUSL-1.1
Bahyph License,Bahyph
scancode://bahyph,Bahyph
Barr License,Barr
scancode://barr-tex,Barr
Barr TeX License,Barr
Beerware License,Beerware
scancode://beerware,Beerware
Beer-Ware License,Beerware
Beerware 42,Beerware
THE BEER-WARE LICENSE,Beerware
Beer,Beerware
beer,Beerware
BitTorrent Open Source License v1.0,BitTorrent-1.0
scancode://bittorrent-1.0,BitTorrent-1.0
BitTorrent 1.0,BitTorrent-1.0
BitTorrent Open Source License 1.1,BitTorrent-1.1
BitTorrent Open Source License v1.1,BitTorrent-1.1
scancode://bittorrent-1.1,BitTorrent-1.1
BitTorrent 1.1,BitTorrent-1.1
Blue Oak Model License 1.0.0,BlueOak-1.0.0
scancode://blueoak-1.0.0,BlueOak-1.0.0
Borceux license,Borceux
scancode://borceux,Borceux
Borceux License,Borceux
Cryptographic Autonomy License 1.0,CAL-1.0
scancode://cal-1.0,CAL-1.0
Cryptographic Autonomy License 1.0 (Combined Work Exception),CAL-1.0-Combined-Work-Exception
scancode://cal-1.0-combined-work-exception,CAL-1.0-Combined-Work-Exception
Computer Associates Trusted Open Source License 1.1,CATOSL-1.1
Computer Associates Trusted Open Source License 1.1 (CATOSL-1.1),CATOSL-1.1
ca-tosl1.1,CATOSL-1.1
"Computer Associates Trusted Open Source License, Version 1.1",CATOSL-1.1
scancode://ca-tosl-1.1,CATOSL-1.1
CA Trusted Open Source License 1.1,CATOSL-1.1
Creative Commons Attribution 1.0 Generic,CC-BY-1.0
scancode://cc-by-1.0,CC-BY-1.0
Creative Commons Attribution 2.0 Generic,CC-BY-2.0
scancode://cc-by-2.0,CC-BY-2.0
Creative Commons Attribution 2.5 Generic,CC-BY-2.5
Creative Commons Attributions 2.5,CC-BY-2.5
Creative Commons 2.5,CC-BY-2.5
scancode://cc-by-2.5,CC-BY-2.5
Creative Commons Attribution 3.0 Unported,CC-BY-3.0
scancode://cc-by-3.0,CC-BY-3.0
Creative Commons Attribution 3.0 Austria,CC-BY-3.0-AT
scancode://cc-by-3.0-at,CC-BY-3.0-AT
Creative Commons Attribution 3.0 United States,CC-BY-3.0-US
Creative Commons Attribution 4.0,CC-BY-4.0
Creative Commons Attribution 4.0 International,CC-BY-4.0
Creative Commons Attribution 4.0 International License,CC-BY-4.0
scancode://cc-by-4.0,CC-BY-4.0
CC-BY 4.0,CC-BY-4.0
CC by 4.0,CC-BY-4.0
CC4,CC-BY-4.0
Creative Commons version 4.0,CC-BY-4.0
Creative Comnons Attribution-NonCommercial 1.0 Generic,CC-BY-NC-1.0
Creative Commons Attribution Non Commercial 1.0 Generic,CC-BY-NC-1.0
scancode://cc-by-nc-1.0,CC-BY-NC-1.0
Creative Commons Attribution Non Commercial 2.0 Generic,CC-BY-NC-2.0
scancode://cc-by-nc-2.0,CC-BY-NC-2.0
Creative Commons Attribution Non Commercial 2.5 Generic,CC-BY-NC-2.5
scancode://cc-by-nc-2.5,CC-BY-NC-2.5
Creative Commons Attribution Non Commercial 3.0 Unported,CC-BY-NC-3.0
scancode://cc-by-nc-3.0,CC-BY-NC-3.0
Creative Commons Attribution-NonCommercial 4.0,CC-BY-NC-4.0
Creative Commons Attribution Non Commercial 4.0 International,CC-BY-NC-4.0
Creative Commons Attribution-NonCommercial 4.0 International,CC-BY-NC-4.0
CC BY-NC 4.0,CC-BY-NC-4.0
scancode://cc-by-nc-4.0,CC-BY-NC-4.0
Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic,CC-BY-NC-ND-1.0
scancode://cc-by-nc-nd-1.0,CC-BY-NC-ND-1.0
Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic,CC-BY-NC-ND-2.0
scancode://cc-by-nc-nd-2.0,CC-BY-NC-ND-2.0
Creative Commons Attribution-NoDerivs 2.5 Generic,CC-BY-NC-ND-2.5
Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic,CC-BY-NC-ND-2.5
scancode://cc-by-nc-nd-2.5,CC-BY-NC-ND-2.5
Creative Commons Attribution-NoDerivs 3.0 Unported,CC-BY-NC-ND-3.0
Creative Comnons Attribution-NonCommercial-NoDerivs 3.0 Unported,CC-BY-NC-ND-3.0
Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported,CC-BY-NC-ND-3.0
scancode://cc-by-nc-nd-3.0,CC-BY-NC-ND-3.0
Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO,CC-BY-NC-ND-3.0-IGO
scancode://cc-by-nc-nd-3.0-igo,CC-BY-NC-ND-3.0-IGO
Creative Commons Attribution-NoDerivatives 4.0 International,CC-BY-NC-ND-4.0
Creative Commons Attribution Non Commercial No Derivatives 4.0 International,CC-BY-NC-ND-4.0
Attribution-NonCommercial-NoDerivatives 4.0 International CC BY-NC-ND 4.0,CC-BY-NC-ND-4.0
scancode://cc-by-nc-nd-4.0,CC-BY-NC-ND-4.0
CC BY-NC-ND 4.0,CC-BY-NC-ND-4.0
Creative Commons BY-CC-ND 4.0,CC-BY-NC-ND-4.0
Creative Commons Attribution Non Commercial Share Alike 1.0 Generic,CC-BY-NC-SA-1.0
scancode://cc-by-nc-sa-1.0,CC-BY-NC-SA-1.0
Creative Commons Attribution Non Commercial Share Alike 2.0 Generic,CC-BY-NC-SA-2.0
scancode://cc-by-nc-sa-2.0,CC-BY-NC-SA-2.0
Creative Commons Attribution Non Commercial Share Alike 2.5 Generic,CC-BY-NC-SA-2.5
scancode://cc-by-nc-sa-2.5,CC-BY-NC-SA-2.5
Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported,CC-BY-NC-SA-3.0
Creative Commons Attribution Non Commercial Share Alike 3.0 Unported,CC-BY-NC-SA-3.0
scancode://cc-by-nc-sa-3.0,CC-BY-NC-SA-3.0
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International,CC-BY-NC-SA-4.0
Creative Commons Attribution Non Commercial Share Alike 4.0 International,CC-BY-NC-SA-4.0
Attribution-NonCommercial-ShareAlike 4.0 International,CC-BY-NC-SA-4.0
scancode://cc-by-nc-sa-4.0,CC-BY-NC-SA-4.0
CC BY-NC-SA 4.0,CC-BY-NC-SA-4.0
cc by-nc-sa 4.0,CC-BY-NC-SA-4.0
CC BY-NC-SA v4.0,CC-BY-NC-SA-4.0
CC4.0-BY-NC-SA,CC-BY-NC-SA-4.0
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License,CC-BY-NC-SA-4.0
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License,CC-BY-NC-SA-4.0
Creative Commons Attribution No Derivatives 1.0 Generic,CC-BY-ND-1.0
scancode://cc-by-nd-1.0,CC-BY-ND-1.0
Creative Commons Attribution No Derivatives 2.0 Generic,CC-BY-ND-2.0
scancode://cc-by-nd-2.0,CC-BY-ND-2.0
Creative Commons Attribution No Derivatives 2.5 Generic,CC-BY-ND-2.5
scancode://cc-by-nd-2.5,CC-BY-ND-2.5
Creative Commons Attribution No Derivatives 3.0 Unported,CC-BY-ND-3.0
scancode://cc-by-nd-3.0,CC-BY-ND-3.0
Creative Commons Attribution No Derivatives 4.0 International,CC-BY-ND-4.0
scancode://cc-by-nd-4.0,CC-BY-ND-4.0
CC BY-ND 4.0,CC-BY-ND-4.0
Creative Commons Attribution Share Alike 1.0 Generic,CC-BY-SA-1.0
Creative Commons ShareAlike 1.0 Generic,CC-BY-SA-1.0
Creative Commons Attribution-ShareAlike 1.0 Generic,CC-BY-SA-1.0
scancode://cc-by-sa-1.0,CC-BY-SA-1.0
Creative Commons Attribution Share Alike 2.0 Generic,CC-BY-SA-2.0
Creative Commons Attribution-ShareAlike 2.0 Generic,CC-BY-SA-2.0
scancode://cc-by-sa-2.0,CC-BY-SA-2.0
Creative Commons Attribution Share Alike 2.0 England and Wales,CC-BY-SA-2.0-UK
Creative Commons Attribution Share Alike 2.5 Generic,CC-BY-SA-2.5
Creative Commons Attribution-ShareAlike 2.5,CC-BY-SA-2.5
scancode://cc-by-sa-2.5,CC-BY-SA-2.5
Creative Commons Attribution Share Alike 3.0 Unported,CC-BY-SA-3.0
Creative Commons Attribution-ShareAlike 3.0 Unported,CC-BY-SA-3.0
CC BY-SA 3.0,CC-BY-SA-3.0
scancode://cc-by-sa-3.0,CC-BY-SA-3.0
Creative Commons Attribution-Share Alike 3.0 Austria,CC-BY-SA-3.0-AT
scancode://cc-by-sa-3.0-at,CC-BY-SA-3.0-AT
Creative Commons Attribution Share Alike 4.0 International,CC-BY-SA-4.0
Creative Commons Attribution Share-Alike 4.0,CC-BY-SA-4.0
Creative Commons Attribution-ShareAlike 4.0 International,CC-BY-SA-4.0
Attribution-ShareAlike 4.0 International CC BY-SA 4.0,CC-BY-SA-4.0
CC BY-SA 4.0,CC-BY-SA-4.0
scancode://cc-by-sa-4.0,CC-BY-SA-4.0
CC-BY-SA 4.0,CC-BY-SA-4.0
cc-by-sa-4.0,CC-BY-SA-4.0
CCSA-4.0,CC-BY-SA-4.0
Attribution-ShareAlike 4.0 International,CC-BY-SA-4.0
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License,CC-BY-SA-4.0
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License,CC-BY-SA-4.0
Creative Commons Copyright-Only Dedication (based on United States law) or Public Domain Certification,CC-PDDC
Creative Commons Public Domain Dedication and Certification,CC-PDDC
scancode://cc-pd,CC-PDDC
CC-PD,CC-PDDC
Creative Commons Zero v1.0 Universal,CC0-1.0
CC0,CC0-1.0
CCO,CC0-1.0
CC0 1.0,CC0-1.0
Creative Commons CC0 1.0 Universal,CC0-1.0
scancode://cc0-1.0,CC0-1.0
Creative Commons Zero 1.0,CC0-1.0
"https://creativecommons.org/publicdomain/zero/1.0/",CC0-1.0
CC-0,CC0-1.0
Common Development and Distribution License 1.0,CDDL-1.0
cddl1,CDDL-1.0
"Common Development and Distribution License, Version 1.0",CDDL-1.0
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0,CDDL-1.0
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 governed by the laws of the State of California,CDDL-1.0
scancode://cddl-1.0,CDDL-1.0
CDDL 1.0,CDDL-1.0
Common Development and Distribution License 1.1,CDDL-1.1
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.1,CDDL-1.1
scancode://cddl-1.1,CDDL-1.1
CDDL 1.1,CDDL-1.1
Community Data License Agreement Permissive 1.0,CDLA-Permissive-1.0
scancode://cdla-permissive-1.0,CDLA-Permissive-1.0
CDLA Permissive 1.0,CDLA-Permissive-1.0
Community Data License Agreement Sharing 1.0,CDLA-Sharing-1.0
scancode://cdla-sharing-1.0,CDLA-Sharing-1.0
CDLA Sharing 1.0,CDLA-Sharing-1.0
CeCILL Free Software License Agreement v1.0,CECILL-1.0
scancode://cecill-1.0,CECILL-1.0
CeCILL 1.0,CECILL-1.0
CeCILL Free Software License Agreement v1.1,CECILL-1.1
scancode://cecill-1.1,CECILL-1.1
CeCILL 1.1 English,CECILL-1.1
CeCILL Free Software License Agreement v2.0,CECILL-2.0
scancode://cecill-2.0,CECILL-2.0
CeCILL 2.0,CECILL-2.0
CeCILL License 2.1,CECILL-2.1
"Cea Cnrs Inria Logiciel Libre License, Version 2.1",CECILL-2.1
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",CECILL-2.1
CeCILL Free Software License Agreement v2.1,CECILL-2.1
scancode://cecill-2.1,CECILL-2.1
CeCILL 2.1,CECILL-2.1
CeCILL-B Free Software License Agreement,CECILL-B
CeCILL-B License,CECILL-B
scancode://cecill-b,CECILL-B
CeCILL-C License,CECILL-C
CeCILL-C Free Software License Agreement,CECILL-C
scancode://cecill-c,CECILL-C
CERN Open Hardware Licence v1.1,CERN-OHL-1.1
scancode://cern-ohl-1.1,CERN-OHL-1.1
CERN Open Hardware License v1.1,CERN-OHL-1.1
CERN Open Hardware Licence v1.2,CERN-OHL-1.2
scancode://cern-ohl-1.2,CERN-OHL-1.2
CERN Open Hardware Licence Version 2 - Permissive,CERN-OHL-P-2.0
scancode://cern-ohl-p-2.0,CERN-OHL-P-2.0
CERN Open Hardware Licence Version 2 - Strongly Reciprocal,CERN-OHL-S-2.0
scancode://cern-ohl-s-2.0,CERN-OHL-S-2.0
CERN Open Hardware Licence Version 2 - Weakly Reciprocal,CERN-OHL-W-2.0
scancode://cern-ohl-w-2.0,CERN-OHL-W-2.0
CNRI Jython License,CNRI-Jython
scancode://cnri-jython,CNRI-Jython
CNRI Python License,CNRI-Python
CNRI portion of the multi-part Python License,CNRI-Python
License :: OSI Approved :: Python License (CNRI Python License),CNRI-Python
CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1,CNRI-Python
scancode://cnri-python-1.6,CNRI-Python
CNRI Python 1.6,CNRI-Python
CNRI Python Open Source GPL Compatible License Agreement,CNRI-Python-GPL-Compatible
scancode://cnri-python-1.6.1,CNRI-Python-GPL-Compatible
CNRI Python 1.6.1,CNRI-Python-GPL-Compatible
Common Public Attribution License 1.0,CPAL-1.0
cpal_1.0,CPAL-1.0
Common Public Attribution License Version 1.0 (CPAL-1.0),CPAL-1.0
Common Public Attribution License Version 1.0,CPAL-1.0
scancode://cpal-1.0,CPAL-1.0
CPAL 1.0,CPAL-1.0
Common Public License 1.0,CPL-1.0
"Common Public License, Version 1.0",CPL-1.0
CPL,CPL-1.0
License :: OSI Approved :: Common Public License,CPL-1.0
Common Public License Version 1.0,CPL-1.0
scancode://cpl-1.0,CPL-1.0
CPL 1.0,CPL-1.0
Code Project Open License 1.02,CPOL-1.02
scancode://cpol-1.02,CPOL-1.02
CPOL 1.02,CPOL-1.02
CUA Office Public License 1.0,CUA-OPL-1.0
CUA Office Public License,CUA-OPL-1.0
CUA Office Public License v1.0,CUA-OPL-1.0
scancode://cua-opl-1.0,CUA-OPL-1.0
Caldera License,Caldera
scancode://caldera,Caldera
Artistic (clarified),ClArtistic
Clarified Artistic License,ClArtistic
scancode://artistic-clarified,ClArtistic
Condor Public License v1.1,Condor-1.1
scancode://condor-1.1,Condor-1.1
Condor Public License 1.1,Condor-1.1
Crossword License,Crossword
scancode://crossword,Crossword
CrystalStacker License,CrystalStacker
Crystal Stacker License,CrystalStacker
scancode://crystal-stacker,CrystalStacker
Cube License,Cube
scancode://cube,Cube
Deutsche Freie Software Lizenz,D-FSL-1.0
scancode://d-fsl-1.0-de,D-FSL-1.0
D-FSL,D-FSL-1.0
DOC License,DOC
scancode://ace-tao,DOC
ACE TAO License,DOC
DSDP License,DSDP
scancode://dsdp,DSDP
Dotseqn License,Dotseqn
scancode://dotseqn,Dotseqn
Educational Community License v1.0,ECL-1.0
Educational Community License 1.0,ECL-1.0
"Educational Community License, Version 1.0",ECL-1.0
scancode://ecl-1.0,ECL-1.0
ECL 1.0,ECL-1.0
Educational Community License v2.0,ECL-2.0
Educational Community License 2.0,ECL-2.0
ecl2,ECL-2.0
"Educational Community License, Version 2.0",ECL-2.0
scancode://ecl-2.0,ECL-2.0
ECL 2.0,ECL-2.0
Eiffel Forum License v1.0,EFL-1.0
"The Eiffel Forum License, Version 1",EFL-1.0
scancode://efl-1.0,EFL-1.0
EFL 1.0,EFL-1.0
Eiffel Forum License v2.0,EFL-2.0
Eiffel Forum License 2.0,EFL-2.0
"Eiffel Forum License, Version 2",EFL-2.0
License :: OSI Approved :: Eiffel Forum License,EFL-2.0
scancode://efl-2.0,EFL-2.0
EFL 2.0,EFL-2.0
EPICS Open License,EPICS
scancode://epics,EPICS
Eclipse Public License 1.0,EPL-1.0
Eclipse Distribution License - v 1.0,EPL-1.0
eclipse-1.0,EPL-1.0
scancode://epl-1.0,EPL-1.0
Eclipse Public License 2.0,EPL-2.0
Eclipse Public License v. 2.0,EPL-2.0
eclipse-2.0,EPL-2.0
Eclipse Public License - v 2.0,EPL-2.0
scancode://epl-2.0,EPL-2.0
EU Datagrid Software License,EUDatagrid
EU DataGrid Software License,EUDatagrid
scancode://eu-datagrid,EUDatagrid
European Union Public License 1.0,EUPL-1.0
scancode://eupl-1.0,EUPL-1.0
EUPL 1.0,EUPL-1.0
European Union Public License 1.1,EUPL-1.1
"European Union Public License, Version 1.1",EUPL-1.1
License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1),EUPL-1.1
"European Union Public Licence, v.1.1",EUPL-1.1
scancode://eupl-1.1,EUPL-1.1
EUPL 1.1,EUPL-1.1
EUPL 1.1+,EUPL-1.1
European Union Public License 1.2,EUPL-1.2
scancode://eupl-1.2,EUPL-1.2
EUPL 1.2,EUPL-1.2
EUPL v1.2 or later,EUPL-1.2
European Union Public Licence 1.2,EUPL-1.2
EUPL-1.2-or-later,EUPL-1.2
Entessa Public License v1.0,Entessa
Entessa Public License,Entessa
Entessa Public License 1.0,Entessa
scancode://entessa-1.0,Entessa
Entessa 1.0,Entessa
Erlang Public License v1.1,ErlPL-1.1
Erlang Public License 1.1,ErlPL-1.1
ERLANG PUBLIC LICENSE Version 1.1,ErlPL-1.1
scancode://erlangpl-1.1,ErlPL-1.1
Eurosym License,Eurosym
scancode://eurosym,Eurosym
FSF All Permissive license,FSFAP
FSF All Permissive License,FSFAP
scancode://fsf-ap,FSFAP
FSF Unlimited License,FSFUL
scancode://fsf-free,FSFUL
FSF Free Software License,FSFUL
FSF Unlimited License (with License Retention),FSFULLR
scancode://fsf-unlimited,FSFULLR
FSF-Unlimited,FSFULLR
Freetype Project License,FTL
FreeType Project LICENSE,FTL
scancode://freetype,FTL
FreeType Project License,FTL
Fair License,Fair
Fair License (Fair),Fair
scancode://fair,Fair
Frameworx License 1.0,Frameworx-1.0
"Frameworx License, Version 1.0",Frameworx-1.0
Frameworx Open License 1.0,Frameworx-1.0
scancode://frameworx-1.0,Frameworx-1.0
Frameworx 1.0,Frameworx-1.0
FreeImage Public License v1.0,FreeImage
scancode://freeimage-1.0,FreeImage
FreeImage Public License 1.0,FreeImage
GNU Free Documentation License v1.1 only - invariants,GFDL-1.1-invariants-only
GNU Free Documentation License v1.1 or later - invariants,GFDL-1.1-invariants-or-later
GNU Free Documentation License v1.1 only - no invariants,GFDL-1.1-no-invariants-only
GNU Free Documentation License v1.1 or later - no invariants,GFDL-1.1-no-invariants-or-later
GNU Free Documentation License v1.1 only,GFDL-1.1-only
scancode://gfdl-1.1,GFDL-1.1-only
GFDL 1.1,GFDL-1.1-only
GNU Free Documentation License v1.1 or later,GFDL-1.1-or-later
scancode://gfdl-1.1-plus,GFDL-1.1-or-later
GFDL 1.1 or later,GFDL-1.1-or-later
GNU Free Documentation License v1.2 only - invariants,GFDL-1.2-invariants-only
GNU Free Documentation License v1.2 or later - invariants,GFDL-1.2-invariants-or-later
GNU Free Documentation License v1.2 only - no invariants,GFDL-1.2-no-invariants-only
GNU Free Documentation License v1.2 or later - no invariants,GFDL-1.2-no-invariants-or-later
GNU Free Documentation License v1.2 only,GFDL-1.2-only
scancode://gfdl-1.2,GFDL-1.2-only
GFDL 1.2,GFDL-1.2-only
GNU Free Documentation License v1.2 or later,GFDL-1.2-or-later
scancode://gfdl-1.2-plus,GFDL-1.2-or-later
GFDL 1.2 or later,GFDL-1.2-or-later
GNU Free Documentation License v1.3 only - invariants,GFDL-1.3-invariants-only
GNU Free Documentation License v1.3 or later - invariants,GFDL-1.3-invariants-or-later
GNU Free Documentation License v1.3 only - no invariants,GFDL-1.3-no-invariants-only
GNU Free Documentation License v1.3 or later - no invariants,GFDL-1.3-no-invariants-or-later
GNU Free Documentation License v1.3 only,GFDL-1.3-only
scancode://gfdl-1.3,GFDL-1.3-only
GFDL 1.3,GFDL-1.3-only
GNU Free Documentation License v1.3 or later,GFDL-1.3-or-later
scancode://gfdl-1.3-plus,GFDL-1.3-or-later
GFDL 1.3 or later,GFDL-1.3-or-later
GL2PS License,GL2PS
"GL2PS LICENSE, Version 2",GL2PS
scancode://gl2ps,GL2PS
Good Luck With That Public License,GLWTPL
scancode://glwtpl,GLWTPL
GPL-1.0,GPL-1.0-only
GPL1.0,GPL-1.0-only
GPL1,GPL-1.0-only
GNU General Public License Version 1,GPL-1.0-only
GNU General Public License v1.0 only,GPL-1.0-only
scancode://gpl-1.0,GPL-1.0-only
GPL 1.0,GPL-1.0-only
GPL-1.0+,GPL-1.0-or-later
GPL1.0+,GPL-1.0-or-later
GPL1+,GPL-1.0-or-later
GNU General Public License v1.0 or later,GPL-1.0-or-later
scancode://gpl-1.0-plus,GPL-1.0-or-later
GPL 1.0 or later,GPL-1.0-or-later
GPL-2.0,GPL-2.0-only
GPL2.0,GPL-2.0-only
GPL2,GPL-2.0-only
GPL (v2),GPL-2.0-only
GNU General Public License v2.0 only,GPL-2.0-only
gpl-2.0,GPL-2.0-only
GNU GPLv2,GPL-2.0-only
GNU General Public License 2.0,GPL-2.0-only
"GNU General Public License, Version 2.0",GPL-2.0-only
License :: OSI Approved :: GNU General Public License v2 (GPLv2),GPL-2.0-only
'GNU GPL v2',GPL-2.0-only
scancode://gpl-2.0,GPL-2.0-only
GPL-2.0+,GPL-2.0-or-later
GPL2.0+,GPL-2.0-or-later
GPL2+,GPL-2.0-or-later
GPL (v2 or later),GPL-2.0-or-later
GPL3,GPL-3.0-only
gplv3.txt,GPL-3.0-only
GPL v.3.0,GPL-3.0-only
GPL v.3,GPL-3.0-only
"GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007",GPL-3.0-only
GPL License (version 3),GPL-3.0-only
GPLv.3,GPL-3.0-only
GPL.v.3,GPL-3.0-only
GNU General Public License v.3.0,GPL-3.0-only
GPL3+,GPL-3.0-or-later
GNU/GPLv3+,GPL-3.0-or-later
GNU General Public License V.3 or later,GPL-3.0-or-later
GPL >= v.3,GPL-3.0-or-later,GPL-3.0-only
GNU GENERAL PUBLIC LICENSE v.3,
GNU General Public License v2.0 or later,GPL-2.0-or-later
scancode://gpl-2.0-plus,GPL-2.0-or-later
Giftware License,Giftware
scancode://allegro-4,Giftware
Allegro 4 License,Giftware
3dfx Glide License,Glide
scancode://glide,Glide
3DFX GLIDE,Glide
Glulxe License,Glulxe
scancode://glulxe,Glulxe
Historical Permission Notice and Disclaimer,HPND
scancode://historical,HPND
Historical Permission Notice and Disclaimer - sell variant,HPND-sell-variant
scancode://historical-sell-variant,HPND-sell-variant
scancode://x11-keith-packard,HPND-sell-variant
X11-Style (Keith Packard),HPND-sell-variant
Haskell Language Report License,HaskellReport
scancode://haskell-report,HaskellReport
Haskell Report License,HaskellReport
Hippocratic License 2.1,Hippocratic-2.1
scancode://hippocratic-2.1,Hippocratic-2.1
Hippocratic License v2.1,Hippocratic-2.1
IBM PowerPC Initialization and Boot Software,IBM-pibs
scancode://ibm-pibs,IBM-pibs
IBM PowerPC Software,IBM-pibs
#X11,ICU
Independent JPEG Group License,IJG
IJG License,IJG
scancode://ijg,IJG
JPEG License,IJG
IPA Font License,IPA
IPA Font License Agreement v1.0,IPA
scancode://ipa-font,IPA
IPA Font License 1.0,IPA
IBM Public License v1.0,IPL-1.0
IBM Public License 1.0,IPL-1.0
ibmpl,IPL-1.0
"IBM Public License, Version 1.0",IPL-1.0
License :: OSI Approved :: IBM Public License,IPL-1.0
IBM Public License Version 1.0,IPL-1.0
IBM,IPL-1.0
scancode://ibmpl-1.0,IPL-1.0
IPL 1.0,IPL-1.0
ISC License,ISC
isc-license,ISC
ISC License (ISC),ISC
License :: OSI Approved :: ISC License (ISCL),ISC
ISCL,ISC
scancode://isc,ISC
ISC license,ISC
ICS,ISC
ISC-style,ISC
ImageMagick License,ImageMagick
scancode://imagemagick,ImageMagick
Imlib2 License,Imlib2
scancode://imlib2,Imlib2
Info-ZIP License,Info-ZIP
Info-ZIP license (version 2009-Jan-02),Info-ZIP
Info-ZIP copyright and license (version 2005-Feb-10),Info-ZIP
Info-ZIP license (Version 2007-Mar-04),Info-ZIP
scancode://info-zip,Info-ZIP
Info-Zip License,Info-ZIP
Intel Open Source License,Intel
intel-osl,Intel
The Intel Open Source License,Intel
License :: OSI Approved :: Intel Open Source License,Intel
Intel License Agreement,Intel
scancode://intel-bsd-export-control,Intel
Intel BSD - Export Control,Intel
Intel ACPI Software License Agreement,Intel-ACPI
scancode://intel-acpi,Intel-ACPI
Intel ACPI SLA,Intel-ACPI
"InterBase Public License, Version 1.0",Interbase-1.0
"INTERBASE PUBLIC LICENSE, Version 1.0 by ""Borland Software Corporation""",Interbase-1.0
Interbase Public License v1.0,Interbase-1.0
scancode://interbase-1.0,Interbase-1.0
Interbase Public License 1.0,Interbase-1.0
Japan Network Information Center License,JPNIC
scancode://jpnic-idnkit,JPNIC
JPNIC idnkit License,JPNIC
JSON License,JSON
scancode://json,JSON
JasPer License,JasPer-2.0
JasPer License Version 2.0,JasPer-2.0
scancode://jasper-2.0,JasPer-2.0
JasPer 2.0,JasPer-2.0
Licence Art Libre 1.2,LAL-1.2
Licence Art Libre 1.3,LAL-1.3
GNU Library General Public License Version 2,LGPL-2.0-only
GNU Library General Public License v2 only,LGPL-2.0-only
scancode://lgpl-2.0,LGPL-2.0-only
LGPL 2.0,LGPL-2.0-only
GNU Library General Public License v2 or later,LGPL-2.0-or-later
scancode://lgpl-2.0-plus,LGPL-2.0-or-later
LGPL 2.0 or later,LGPL-2.0-or-later
LGPL-2.1,LGPL-2.1-only
LGPL2.1,LGPL-2.1-only
LGPL (v2.1),LGPL-2.1-only
GNU Lesser General Public License Version 2.1,LGPL-2.1-only
GNU Lesser General Public License v2.1 only,LGPL-2.1-only
lgpl-2.1,LGPL-2.1-only
GNU LGPLv2.1,LGPL-2.1-only
"http://opensource.org/licenses/LGPL-2.1",LGPL-2.1-only
GNU Lesser General Public License 2.1,LGPL-2.1-only
"GNU Lesser General Public License, Version 2.1",LGPL-2.1-only
License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2),LGPL-2.1-only
scancode://lgpl-2.1,LGPL-2.1-only
LGPL-2.1+,LGPL-2.1-or-later
LGPL2.1+,LGPL-2.1-or-later
LGPL (v2.1 or later),LGPL-2.1-or-later
GNU Lesser General Public License v2.1 or later,LGPL-2.1-or-later
scancode://lgpl-2.1-plus,LGPL-2.1-or-later
LGPL 2.1 or later,LGPL-2.1-or-later
LPGL 2.1 or later,LGPL-2.1-or-later
Lesser General Public License For Linguistic Resources,LGPLLR
scancode://lgpllr,LGPLLR
Lucent Public License Version 1.0,LPL-1.0
"Lucent Public License (""Plan9"") 1.0",LPL-1.0
"Lucent Public License, Plan 9, Version 1.0",LPL-1.0
scancode://lucent-pl-1.0,LPL-1.0
Lucent Public License 1.0,LPL-1.0
Lucent Public License v1.02,LPL-1.02
Lucent Public License 1.02,LPL-1.02
"Lucent Public License, Version 1.02",LPL-1.02
scancode://lucent-pl-1.02,LPL-1.02
LaTeX Project Public License v1.0,LPPL-1.0
scancode://lppl-1.0,LPPL-1.0
LPPL 1.0,LPPL-1.0
LaTeX Project Public License v1.1,LPPL-1.1
scancode://lppl-1.1,LPPL-1.1
LPPL 1.1,LPPL-1.1
LaTeX Project Public License v1.2,LPPL-1.2
scancode://lppl-1.2,LPPL-1.2
LPPL 1.2,LPPL-1.2
LaTeX Project Public License v1.3a,LPPL-1.3a
scancode://lppl-1.3a,LPPL-1.3a
LPPL 1.3a,LPPL-1.3a
LaTeX Project Public License v1.3c,LPPL-1.3c
LaTeX Project Public License 1.3c,LPPL-1.3c
"LaTeX Project Public License, Version 1.3c",LPPL-1.3c
LaTeX Project Public License Version 1.3c,LPPL-1.3c
scancode://lppl-1.3c,LPPL-1.3c
LPPL 1.3c,LPPL-1.3c
Latex2e License,Latex2e
scancode://latex2e,Latex2e
Leptonica License,Leptonica
scancode://leptonica,Leptonica
LiLiQ-P,LiLiQ-P-1.1
"Licence Libre du Québec – Permissive, Version 1.1",LiLiQ-P-1.1
Licence Libre du Québec – Permissive version 1.1,LiLiQ-P-1.1
LiLiQ-R,LiLiQ-R-1.1
"Licence Libre du Québec – Réciprocité, Version 1.1",LiLiQ-R-1.1
Licence Libre du Québec – Réciprocité version 1.1,LiLiQ-R-1.1
LiLiQ-R+,LiLiQ-Rplus-1.1
"Licence Libre du Québec – Réciprocité forte, Version 1.1",LiLiQ-Rplus-1.1
Licence Libre du Québec – Réciprocité forte version 1.1,LiLiQ-Rplus-1.1
libpng License,Libpng
libpng license (libpng-1.2.6 and later),Libpng
scancode://libpng,Libpng
Libpng License,Libpng
Linux Kernel Variant of OpenIB.org license,Linux-OpenIB
scancode://linux-openib,Linux-OpenIB
MIT license (also X11),MIT
mit-license,MIT
"MIT/Expat License",MIT
License :: OSI Approved :: MIT License,MIT
scancode://mit,MIT
MIT license / X11 license,MIT
"MIT/Expat",MIT
"http://www.opensource.org/licenses/mit-license.html",MIT
MIT No Attribution,MIT-0
scancode://mit-0,MIT-0
MIT-0-Clause,MIT-0
CMU License,MIT-CMU
scancode://cmu-template,MIT-CMU
scancode://cmu-uc,MIT-CMU
CMU UC Regents License,MIT-CMU
Enlightenment License (e16),MIT-advertising
scancode://enlightenment,MIT-advertising
EFL MIT-Style License,MIT-advertising
enna License,MIT-enna
scancode://enna,MIT-enna
feh License,MIT-feh
scancode://mit-ack,MIT-feh
MIT Acknowledgment License,MIT-feh
MIT +no-false-attribs license,MITNFA
MIT +no-false-attribs License,MITNFA
scancode://mit-no-false-attribs,MITNFA
MIT no false attribution License,MITNFA
Mozilla Public License 1.0,MPL-1.0
"Mozilla Public License, Version 1.0",MPL-1.0
License :: OSI Approved :: Mozilla Public License 1.0 (MPL),MPL-1.0
Mozilla Public License Version 1.0,MPL-1.0
scancode://mpl-1.0,MPL-1.0
MPL 1.0,MPL-1.0
Mozilla Public License 1.1,MPL-1.1
mozilla1.1,MPL-1.1
"Mozilla Public License, Version 1.1",MPL-1.1
License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1),MPL-1.1
Mozilla Public License Version 1.1,MPL-1.1
scancode://mpl-1.1,MPL-1.1
mozilla2.0,MPL-2.0
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0),MPL-2.0
Mozilla Public License Version 2.0,MPL-2.0
"http://www.mozilla.org/MPL/2.0/",MPL-2.0
scancode://mpl-2.0,MPL-2.0
Mozilla Public License 2.0 (no copyleft exception),MPL-2.0-no-copyleft-exception
scancode://mpl-2.0-no-copyleft-exception,MPL-2.0-no-copyleft-exception
MPL 2.0 with no copyleft exception,MPL-2.0-no-copyleft-exception